parallel-netcdf-openmpi2-devel-1.7.0-bp156.3.5 >  A espI%z ?-`WAv)^]N+c4u(+[꜄5gP"wS'E65Sh6d`Hcm0 :Z4"c$bd- .np"=K_yZ_<)" q iYy>AD+iDzg\A\$%C~DI >ee^b8v8ԭ&jhE~ٌ*AN8+#7k^'311'ևwy9lur1D&e茵&J38D0@* /R I$BJ^K]S19>]ƜE @zu QVe]}VN{P͊GdTH+?dy"rTX=hX3;'f-NSX|#/La/S> ^H91AbJw-,W/FYn U902feb47aa3d7bf1f7355cfd8c3b8efd572913a3c21c9870b11599137c96fdb1d59f1fa8eba3e0418481b5c59b5ed094e5a6bdf4:despI%z |$[B>^=3w"2M2+M{O/'3%IvoTIb ƞl]O3>{aq1p;?d!' 1 ix| 06<T ` l   8l(8 9 : F5GLHdI|XY\]^b|c%defluvzHX\bCparallel-netcdf-openmpi2-devel1.7.0bp156.3.5Development files for parallel-netcdf-openmpi2-openmpi2NetCDF is a set of software libraries and data formats for array-oriented scientific data. Parallel netCDF (PnetCDF) maintains file-format compatibility with NetCDF. This package contains all files needed to create projects that use the openmpi2 version of PnetCDF.ess390zl24 vSUSE Linux Enterprise 15 SP6openSUSENetCDFhttps://bugs.opensuse.orgDevelopment/Libraries/Parallelhttp://cucis.ece.northwestern.edu/projects/PnetCDF/index.htmllinuxs390x+kvkeses eseseses 5c6c42b49161fdecdb0c58319a52dd4dff042aefe7a5a62193afc0674647d4c34b7f0c3777e5f75e4bb0e2cd6cb4b57f35530cf1dc84288599044a03f6b25b4884656549af62fb5b2451e399008a90235e03d2dbfa5083b4b26bf927f45148cf420913b6d02c80ff4bca7de1e96977bb7421f91d0911e3356ab639e4e4300c4fc0a6fad35a893215f8d8fb121d546679ef9b47378e7c96ee382d2de83174c0c6libpnetcdf.so.1.7.0rootrootrootrootrootrootrootrootrootrootrootrootparallel-netcdf-openmpi2-1.7.0-bp156.3.5.src.rpmparallel-netcdf-openmpi2-develparallel-netcdf-openmpi2-devel(s390-64)    libpnetcdf1-openmpi2openmpi2-develparallel-netcdf-devel-datarpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)1.7.03.0.4-14.6.0-14.0-15.2-14.14.3]Y]]w@Ws@W~UWUnU@UK@P:Stefan Brüns Stefan Brüns Christophe Giboudeaux jengelh@inai.detoddrme2178@gmail.comtoddrme2178@gmail.comtoddrme2178@gmail.comtoddrme2178@gmail.comtoddrme2178@gmail.comscorot@free.fr- Add convenience provides to allow e.g. netcdf-openmpi2 to pull in libpnetcdf-openmpi2. - Also build openmpi3 flavor.- Build MPI pacakges as multibuild flavors, add openmpi2 - Adapt to openmpi -> openmpi1 rename on Tumbleweed- Use -ffat-lto-objects when building static libraries.- Trim descriptions.- Update to 1.7.0 o New features * Nonblocking requests now can be posted while the program is in the define mode. This feature enables applications to add new variables and post the nonblocking write requests without separating the codes by ncmpi_enddef(). Note ncmpi_wait_all and ncmpi_wait must still be called in the data mode. * When using immutable write buffer in put APIs on a Little Endian machine, the in-place byte swap operation performed internally in PnetCDF can cause a fatal error (by trying to change the contents of an immutable memory space). The solution of copying user's write request to a temporary buffer and perform byte swap there conflicts with PnetCDF's design principle of avoiding internal memory allocation as much as possible. Since the size of immutable buffer in most cases is small, PnetCDF now compromise the two by making a copy of write requests that is less than 4KB. Users are warned that using immutable write buffer larger than 4KB will still cause the fatal error in the PnetCDF default configuration. The way to completely disable in-place byte swap is to build PnetCDF with --disable-in-place-swap option at the configure time. In this case, the internal memory allocation in PnetCDF will increase. o Syntax changes * In ncmpi_wait_all(), ncmpi_wait(), and ncmpi_cancel(), the API's third argument, array of requests IDs, is changed to INOUT. Upon successful completion or cancellation of individual nonblocking requests, the corresponding request IDs are set to NC_REQ_NULL. o New run-time environment variables * PNETCDF_VERBOSE_DEBUG_MODE environment variable can be used to print the location in the source code where the error code is originated, no matter the error is intended or not. This run-time environment variable only takes effect when PnetCDF is configure with debug mode, i.e. - -enable-debug is used at the configure command line. Set this variable to 1 to enable. Set it to 0 or keep it unset disables this mode. Default is 0, i.e. disabled. Users are warned that enabling this mode may result in a lot of debugging messages printed in stderr. o New example programs * examples/C/nonblocking_write_in_def.c shows an example of posting nonblocking write requests in the define mode. * examples/C/req_all.c shows an example of using NC_REQ_ALL to flush all pending nonblocking requests without providing the requests IDs. o New test program * test/cdf_format/dim_cdf12.c tests defining maximal dimension size for CDF-1 and CDF-2 file formats * test/testcases/test_erange.c tests if the error code NC_ERANGE can be correctly returned for two cases 1) get a NC_UBYTE value of 255 from a netCDF file to a memory buffer of type signed char and 2) put a value of -1 of signed char to a NC_UBYTE variable in a netCDF file * test/testcases/check_type.c tests if the error codes can be correctly returned when conflicted in-memory and extenal data types are used. * test/testcases/put_parameter.f tests the use of immutable write buffer (e.g. a buffer declared as PARAMETER). Note the buffer size must be smaller than 4KB. * test/nonblocking/i_varn_indef.c tests posting nonblocking requests in define mode. * test/nonblocking/req_all.c tests the use of NC_REQ_ALL for flushing all pending nonblocking requests without providing the requests IDs. * test/last_large_var.c tests the special case when there is no record variable, the last fixed-size variable can be larger than 2GiB in size if its starting file offset is less than 2GiB. * test/testcases/buftype_free.c and test/testcases/buftype_freef.f test the bug in r2160. * testcases/add_var.c checks the starting file offsets of newly added variables from re-entering the define mode. * testcases/attrf.f checks NF_ERANGE is returned instead of coredump. This is particularly for NAG Fortran compiler that may report "Arithmetics exception". * testcases/check_striping.c checks if the file striping unit and factor returned from MPI-IO hints are consistent among processes. * test/nonblocking/column_wise.c checks if PnetCDF detects interleaved fileviews from multiple nonblocking requests and correctly breaks and reconstructs the fileviews so the combined fileview is monotonic non-decreasing in file offsets. o New optimization * Filling variables at ncmpi_enddef() is now done by aggregating all write requests into one MPI collective write call. In v 1.6.1, this is done by filling one variable at a time. o New utility program * ncoffsets reports the file offset information, including the starting and ending file offsets, of variables stored in a netCDF file. ncoffsets is compiled with gcc if gcc is presented on the build system. Additional command-line options are: (-v) reports only for a selected list of variables in interest, (-s) prints the variable sizes, (-g) outputs the file space gap size from the end of previous variable, (-x) reports whether there is a gap between any two adjacent fixed-size variables. See the man page for descriptions of all command-line options and examples. o Semantics updates * All nonblocking APIs now take a NULL pointer for the request ID argument, meaning users do not wish to keep track of the request ID. If NULL request IDs are used, NC_REQ_ALL should be used when calling ncmpi_wait_all/ncmpi_wait to commit all the pending nonblocking requests. This feature relinquishes users from the responsibility of tracking the IDs of pending requests. * Using NC_REQ_ALL as the 2nd argument "num" in ncmpi_wait_all/ncmpi_wait APIs will flush all the pending nonblocking requests. In this case, the 3rd and 4th arguments "array_of_requests" and "array_of_statuses" will be ignored and thus these two arguments can be NULLs. * Using NC_REQ_ALL in ncmpi_cancel() will cancel all the pending nonblocking requests. * Using NC_GET_REQ_ALL or NC_PUT_REQ_ALL in ncmpi_wait_all(), ncmpi_wait(), and ncmpi_cancel() for all the pending get-only or put-only requests, respectively. o Other updates: * Conform with netCDF on the maximal dimension size for CDF-2 file format to be (2^32 - 4) * NC_ERANGE checks have been removed from nc_test for text APIs and variables that are defined as NC_CHAR type * Add README.K-Computer build recipe for using Fujitsu MPI compilers on the K computer at RIKEN in Japan * Add README.INTEL build recipe for using Intel MPI compilers 4.x * Build dependency rule is added for files configure and configure.in * PnetCDF checks MPICC/MPICXX/MPIF77/MPIF90 instead of CC/CXX/F77/F90/FC. If MPICC/MPICXX/MPIF77/MPIF90 are set, PnetCDF will ignore CC/CXX/F77/F90/FC. If CC/CXX/F77/F90/FC is set instead of MPICC/MPICXX/MPIF77/MPIF90, PnetCDF will now copy them to MPICC/MPICXX/MPIF77/MPIF90. * Enforce netCDF convention on error code priority: NC_ECHAR trumps NC_EINVALCOORDS, NC_EEDGE, and NC_ESTRIDE. * Return error code NC_EGLOBAL instead of NC_ENOTVAR for APIs where using NC_GLOBAL as the variable ID argument is prohibited. * All Fortran 77 test and example programs (files with .f and .F extensions) have been revised to conform with 77 standard, and was tested using pgf77. * Now provides a pkg-config file (http://www.freedesktop.org/wiki/Software/pkg-config/), making it slightly easier to set the correct pnetcdf include and library paths. o Bug fixes * Fix the bus error of invalid address alignment when build with Fujitsu compiler. See r2171 and r2180. * Fix the bug for the special case when there is no record variable, the last fixed-size variable can be larger than 2GiB in size if its starting file offset is less than 2GiB. See r2166. * Fix the nonblocking flexible APIs that fail to save (duplicate) the user MPI derived data type that later is needed to unpack read data to the user buffer (a call to MPI_Unpack). See r2160. * Fix Fortran 77 constants nf_fill_uint and nf_fill_int64 (thanks Jim Edwards) that pgf77-based MPI compiler does not like "_8" modifier. See r2045 and r2051. The same issue for NAG Fortran compiler is also resolved. See r2089 and r2093. * In the example program examples/tutorial/pnetcdf-write-nb.c, the write buffers used in two iput API calls should be different. See r2095. * Fix the error reporting mechanism for NC_ERANGE, for when an arithmetic overflow happens. Overflow checking is now performed before I/O.- Fix license- Fix building on non-x86_64 64-bit platforms- Update subpackage groups - Make subpackage summaries and descriptions more consistent - Provide rpm macros for version identification - Spec file cleanups- Update to version 1.6.1 o New features * PnetCDF now supports fill mode. ncmpi_set_fill() can be used to set the fill mode for the entire data set. Note the differences from netCDF: 1. The default mode in PnetCDF is NC_NOFILL. 2. Setting fill mode for the entire file or individual variables must be done in define mode. 3. For non-record variables, they are filled at the time ncmpi_enddef() is called. 4. For record variables, users must explicitly call ncmpi_fill_var_rec() to fill one record at a time before writing to the record of that variable. o New APIs * ncmpi_def_var_fill() sets fill mode for an individual variable. This API must be called in define mode. * ncmpi_inq_var_fill() inquires fill mode of a variable. * ncmpi_fill_var_rec() is a collective API that fills a record of a record variable. This API must be called at data mode. * ncmpi_inq_default_format() for inquiring the default file format for new file creation. Note the default format can be changed by ncmpi_set_default_format(). * The above new API are also available in Fortran and C++ versions. o New error code * NC_ENOTRECVAR when attempting operation only for record variables * NC_ENOTFILL when attempting to fill a variable when its fill mode is off * NC_EMULTIDEFINE_FILL_MODE when inconsistent dataset fill mode is detected * NC_EMULTIDEFINE_VAR_FILL_MODE when inconsistent variable fill mode is detected * NC_EMULTIDEFINE_VAR_FILL_VALUE when inconsistent variable fill value is detected * Fortran versions of the above error codes are also added. o New example programs * C/fill_mode.c shows the use of ncmpi_set_fill(), ncmpi_def_var_fill(), ncmpi_inq_var_fill() and ncmpi_fill_var_rec() F77/fill_mode.f is the Fortran version. F90/fill_mode.f90 is the Fortran 90 version. CXX/fill_mode.cpp is the C++ version. * C/ghost_cell.c shows how to use varm API for writing from a user buffer as a 2D array with ghost cells on both ends of every dimension. o New test programs * nc_test/tst_nofill.c borrowed from netCDF * testcases/ivarn.c tests bug fix r2023 when the request IDs stored in argument array_of_requests[] of ncmpi_wait_all() are not in an increasing order. o Other updates: * Change the chunk size used for moving variable data when the file header extent expands. The default is now 1MB. If the file's striping unit size is known (from MPI-IO hint striping_unit) then the chunk size is set to the striping unit size. o Bug fixes * Add missing F90 function overloading for f90mpi_put_var_all, f90mpi_get_var_all, f90mpi_put_vard_all, and f90mpi_get_vard_all, when the user buffer is a scalar. * Fix when the request IDs passed in argument array_of_requests[] of ncmpi_wait_all() are not in an increasing order. See r2023. * Fix C++ compile error for converting NULL to string. See r2039. - Update to version 1.6.0 o Format conformation updates: * Conform with netCDF4 on CDF-1 and CDF-2 formats. The only difference now between the two formats are the OFFSET item in the format spec (32 vs. 64 bit integers.) All names (variable, dimension, attribute) now allow extended characters (eg. special2 and MUTF8). o New APIs * Nonblocking buffered varn API family. For C, ncmpi_bput_varn_() For F77, nfmpi_bput_varn_() For F90, nf90mpi_bput_varn() For C++, NcmpiVar::bputVarn() * Nonblocking varn API family. For C, ncmpi_iput_varn_() and ncmpi_iget_varn_() For F77, nfmpi_iput_varn_() and nfmpi_iget_varn_() For F90, nf90mpi_iput_varn() and nf90mpi_iget_varn() For C++, NcmpiVar::iputVarn() and NcmpiVar::igetVarn() * Blocking vard API family takes an argument of MPI derived data type that describes the file access layout, as opposed to vara and vars APIs that use start[] and count[]. For C, ncmpi_put_vard() and ncmpi_get_vard() For F77, nfmpi_put_vard() and nfmpi_get_vard() For F90, nf90mpi_put_vard() and nf90mpi_get_vard() For C++, NcmpiVar::putVard() and NcmpiVar::getVard() * Collective var1 API family For C, ncmpi_put_var1_all() ncmpi_get_var1_all() ncmpi_put_var1__all() ncmpi_get_var1__all() For F77, nfmpi_put_var1_all() nfmpi_get_var1_all() nfmpi_put_var1__all() nfmpi_get_var1__all() For F90, nf90mpi_put_var_all() nf90mpi_get_var_all() For C++, NcmpiVar::putVar_all() NcmpiVar::getVar_all() * ncmpi_inq_buffer_size() returns the size of buffer previously attached for use of bput APIs. With ncmpi_inq_buffer_usage() one can calculate the space remaining for additional bput requests. For F77, nfmpi_inq_buffer_size() For F90, nf90mpi_inq_buffer_size() For C++, NcmpiFile::Inq_buffer_size() * ncmpi_inq_recsize() returns the size of record block, i.e. the sum of single records of all record variables. For F77, nfmpi_inq_recsize() For F90, nf90mpi_inq_recsize() For C++, NcmpiGroup::getRecSize() * ncmpi_inq_num_rec_vars() and ncmpi_inq_num_fix_vars() report the number of record and fixed-size variables, respectively. For F77, nfmpi_inq_num_rec_vars() and nfmpi_inq_num_fix_vars() For F90, nf90mpi_inq_num_rec_vars() and nf90mpi_inq_num_fix_vars() For C++, NcmpiGroup::getRecVarCount() and NcmpiGroup::getFixVarCount() o New PnetCDF hint * pnetcdf_subfiling -- it can be set in an MPI info object or in the environment variable PNETCDF_HINTS to enable/disable subfiling. The value is either "enable" or "disable". o PnetCDF hint priority * The alignment hints set in the environment variable "PNETCDF_HINTS" have the highest priority, which overwrite the alignment hints set in ncmpi__enddef(), which overwrite the alignment hints set in the MPI_Info object used in the call of ncmpi_create() and ncmpi_open(). o New error code * NC_ESTRICTCDF2 for attempting CDF-5 operation on CDF-2 file. For example, define a variable of type NC_INT64 in a CDF-2 file. * NC_ETYPESIZE when filetype size is bigger than the variable size * NC_ETYPE_MISMATCH when the element type of filetype mismatches the variable type * NC_ETYPESIZE_MISMATCH when filetype size mismatches buffer type size * NC_ENULLSTART when argument start is a NULL pointer * NC_ENULLCOUNT when argument count is a NULL pointer * NC_EINVAL_CMODE when invalid file create mode is set, (e.g. cannot have both NC_64BIT_OFFSET & NC_64BIT_DATA. In PnetCDF 1.5.0 and earlier versions, if both flags were set, then NC_64BIT_DATA triumphs NC_64BIT_OFFSET.) o New example programs * C/bput_varn_uint.c and F77/bput_varn_int8.f show the use of nonblocking bput_varn APIs * C/i_varn_int64.c and F77/i_varn_real.f show the use of nonblocking iput_varn and iget_varn APIs * C/vard_int.c F77/vard_int.f F90/vard_int.f90 CXX/vard_int.cpp show the use of vard API to write/read record and fixed-size variables. * C/transpose.c shows the use of ncmpi_put_vara_int_all to write a 3D array that is dimensional-transposed from the one stored in memory. Six transposed 3D arrays are saved whose dimensions are organized as ZYX, ZXY, YZX, YXZ, XZY, and XYZ. The C++, Fortran 77, and Fortran 90 versions are also provided. o New test program * nonblocking/wait_after_indep.c tests if ncmpi_end_indep_data() returns properly when nonblocking APIs are called in independent data mode and the wait call is made after exiting the independent mode. * nonblocking/flexible_bput.c tests flexible bput APIs that use noncontiguous buffer type, noncontiguous imap and require type conversion * testcases/flexible2.c tests flexible APIs that perform type conversion * testcases/flexible_varm.c tests flexible varm APIs * testcases/varn_contig.c tests the case when the fileview is actually a contiguous chunk. PnetCDF should be able to merge all. * nonblocking/bput_varn_uint.c tests nonblocking bput_varn APIs * nonblocking/i_varn_int64.c tests nonblocking iput_varn and iget_varn APIs * test/testcases/test_vard.c test/testcases/test_vardf.f test/testcases/test_vardf90.f90 test the new vard APIs. * test/testcases/inq_recsize.c tests if one can correctly inquire the size of record block from in a netCDF file. A similar program in F90, named inq_recsizef.f90, is also added. * In test/nc_test, the test programs below are borrowed from netCDF test programs: t_nc.c tst_misc.c tst_norm.c tst_small.c tst_names.c tst_atts3.c tst_atts.c * test/testcases/one_record.c tests the special case defined in CDF-1 and CDF-2 specification that "A special case: Where there is exactly one record variable, we drop the requirement that each record be four-byte aligned, so in this case there is no record padding." * test/testcases/modes.c tests if correct error codes are returned when various file create/open modes are used. * Under test/testcases, varn_int.c varn_intf.f varn_real.f90 test varn APIs * test/testcases/inq_num_vars.c test if one can correctly inquire the numbers of record and fixed-size variables defined in a netCDF file. A similar program in F90, named inq_num_varsf.f90, is also added. * test/nonblocking/interleaved.c tests a combination of interleaved file types. This is to test the bug fix in r1758. o New optimization * Prior to this release, PnetCDF wraps each MPI read/write call in put/get APIs with two MPI_File_set_view(). One is before the MPI read/write call to take advantage of MPI's fileview feature for accessing non-contiguous file locations. The other is after the MPI read/write call to make the whole file visible, as the root process may write to file header later in the data mode and it alone cannot make a call to MPI_File_set_view() because the function is collective. In this release, the second MPI_File_set_view() has been removed. The root process's fileview is changed to always keep the whole file header visible. Saving a collective call to MPI_File_set_view() is expected to improve some performance. o Semantics updates * Header consistency mechanism has been updated. See README.consistency for details. * The use of NC_SHARE is also revised. See README.consistency for details. o Other updates: * The subfiling feature is now disabled in ncmpidump and ncmpidiff until a bug fix to allow reading the master file with the number of processes that is smaller than the number of subfiles. * The attribute names reserved for subfiling feature are now changed to use a prefix of "_PnetCDF_SubFiling". The leading "_" underscore is a CDL convention. * The flexible APIs now allow argument buftype to be MPI_DATATYPE_NULL. In this case, argument bufcount is ignored and argument buf's data type must match the data type of variable defined in the file - no data conversion will be done. This extension makes the flexible APIs be able to correspond to the netCDF APIs whose names do not contain a data type, e.g. nc_put_vara(). * Type conversion between NC_BYTE and unsigned char no longer checks for out of range error (NC_ERANGE). CDF file format specification make a special case for this kind of data type conversion. See: "Note on byte data" in the format specification. * Conform with the CDF-2 and CDF-5 formats that names are normalized according to Unicode NFC normalization rules during encoding as UTF-8 for storing in the file header. * A new configure option, --enable-large-file-test, to enable testing I/O on large files and large variables. Note the testing prgrams will run very slowly. o Bug fixes * fix the bug for flexible get_varn API. When buftype is noncontiguous, the bug forgot to "unpacks" the temporary buffer that reads data from file to the user buffer using buftype. * fix the bug in blocking flexible get APIs when buftype is noncontiguous, swap is needed, type conversion is not. The bug sets a NULL pointer to the read buffer and passes it to MPI_File_read functions. See r1815. * fix the bug for the NetCDF special case when there is only one record variable and the record size is not four-byte aligned. In this case, NetCDF spec says the alignment must dropped (no padding). See r1791. * fix the bug in nonblocking APIs when requests are resorted into nonoverlapping groups and the first group of file types are interleaved, it was mistakenly identified as non-interleaved. See r1758. * fix the setting for PNETCDF_RELEASE_DATE in configure.in. Using read command together with IFS does not work as expected in bash 4.3.11. See http://lists.mcs.anl.gov/pipermail/parallel-netcdf/2014-July/001586.html for further detailed discussion. - Update to version 1.5.0 o New features * A new configure option "--disable-in-place-swap" is added. It disables the byte-swap operations running in-place on the user's write buffers. The purpose of providing this option is to deal with the problem when a Fortran program uses a immutable buffer for put APIs, e.g. the buffer is declared as a PARAMETER, and in-place byte swap on this buffer causes segmentation fault. See discussion threads of http://lists.mcs.anl.gov/pipermail/parallel-netcdf/2013-July/001498.html Impacts: 1. It takes effect only on Little Endian machines. 2. It only affects put/iput data APIs, but not attribute APIs. 3. The INTENT of buffer arguments in all Fortran 90 put/iput APIs will be declared as "IN". Without this setting, the default is "INOUT". 4. It has an impact on performance, as an extra internal temporary buffer will be allocated to copy data over from user's put buffer, so byte swap can be run on the temporary buffer. The default setting is to enable in-place byte swap. PnetCDF tries not to allocate additional memory space, due to performance concern. Users are discouraged to use Fortran PARAMETER buffers in put APIs. * A new configure option "--enable-debug" is added. It enables a memory allocation tracing mechanism internal in PnetCDF. In addition, it enables the PnetCDF safe mode. (Note that setting the environment variable PNETCDF_SAFE_MODE at the run time can still overwrite the safe mode.) Default debug mode is disabled. When enabled, a user program can call three new APIs below: ncmpi_inq_malloc_size, ncmpi_inq_malloc_max_size, and ncmpi_inq_malloc_list to obtain the size in bytes of current memory allocated internally. This feature uses a binary tree to manage all malloc buffers, e.g. tsearch() and tdelete(). * Add three Fortran parameters for PnetCDF library version numbers: PNETCDF_VERSION_MAJOR, PNETCDF_VERSION_MINOR, and PNETCDF_VERSION_SUB. Similarly in C programs, these are defined in pnetcdf.h as constants. o New APIs * C++ APIs are now available. They are developed based on netCDF-4 C++ library. However, users are encouraged to use C APIs, instead C++. * ncmpi_put_att, ncmpi_get_att, nfmpi_put_att, and nfmpi_get_att - these APIs correspond to nc_put_att, nc_get_att, nf_put_att, and nf_get_att. Note they are not the "flexible" APIs. Flexible APIs have an MPI derived datatype argument. * ncmpi__enddef, nfmpi__enddef, and nf90mpi_enddef - these APIs correspond to netCDF nc__enddef, nf__enddef, and nf90_enddef (with additional optional arguments). * ncmpi_inq_file_info - the naming for ncmpi_get_file_info may cause confusion, as "get" has a different meaning on PnetCDF. The correct name should use "inq". However, ncmpi_get_file_info is kept for backward compatibility. * ncmpi_inq_striping, nfmpi_inq_striping, nf90mpi_inq_striping report the file system striping settings of the opened file: striping size and striping count, if the underneath MPI-IO can find their values from the file system in use. * ncmpi_inq_malloc_size, ncmpi_inq_malloc_max_size, ncmpi_inq_malloc_list report the size in bytes of current memory allocated internally by PnetCDF. Similar APIs for Fortran 77 and 90 are also available. These APIs are enabled only when PnetCDF is configured with option - -enable-debug. When this option is not enabled, calling these APIs will return the error code NC_ENOTENABLED. These APIs are usefully for debugging. * ncmpi_inq_files_opened reports the number of files that are currently opened. Similar API for Fortran 77 and 90 are also available. The API takes 2 arguments: number of files and array of file IDs. If the second argument, array of IDs, is not NULL, then it will filled with the netCDF dataset IDs. This API is useful for debugging. o Syntax changes * For all Fortran put/iput APIs, the INTENT of write buffer arguments is changed to "INOUT" on Little Endian machines, if option "--disable-in-place-swap" is not used at configuration. Otherwise, i.e. on Big Endian machines or PnetCDF is configured with "--disable-in-place-swap" on Little Endian machines, the INTENT is "IN". o New PnetCDF hint * nc_record_align_size - aligns the starting file offset of the record variable section. Note this is for the entire section, not individual records. o New error code * NC_ENOTENABLED indicates the API is available only when the corresponding feature is enabled. For example, nfmpi_inq_malloc_size() returns this error code when "--enable-debug" is not used at configure. * NC_EBAD_FILE corresponds to MPI error code MPI_ERR_BAD_FILE, meaning "Invalid file name (e.g., path name too long)." * NC_ENO_SPACE corresponds to MPI error code MPI_ERR_NO_SPACE, meaning "Not enough space." * NC_EQUOTA corresponds to MPI error code MPI_ERR_QUOTA, meaning "Quota exceeded." * NC_EMULTIDEFINE_FNC_ARGS corresponds to MPI error code MPI_ERR_NOT_SAME, meaning "inconsistent function arguments used in collective API." o New run-time environment variables * none o New example programs * Example programs now report if there is any PnetCDF internal malloc residues yet to be freed, if --enable-debug option is used at configure. * Under examples/C, three examples are added: create_open.c, get_vara.c, and global_attributes.c. File examples/README contains their descriptions. * Under examples/CXX, several example programs corresponding to those in examples/C are added. o New programs for I/O benchmarks * none o New test program * Many test programs now report if there is any PnetCDF internal malloc residues yet to be freed, if --enable-debug option is used at configure. * add tests for flexible APIs. The tests borrow from nc_test/test_write.c that tests nc_put_var1, nc_put_vara, nc_put_vars, and nc_put_varm. Similarly for get APIs. * testcases/record.c checks if the number of records is updated correctly. It writes to a variable's 2nd record followed by the 1st record. A call to ncmpi_inq_dim() or ncmpi_inq_dimlen() should report 2 records after the writes complete. * testcases/noclobber.c checks if error code NC_EEXIST can be returned correctly when NC_NOCLOBBER modes is used in ncmpi_create and in the meantime the file exists. * Some test programs are developed to run in parallel. The test mechanism for parallel runs is command "make ptest". Two environment variables can be used to set the MPI run command and output file directory: TEST_MPIRUN and TEST_OUTDIR. Their defaults are mpiexec and "." (current directory), respectively. For example, make ptest TEST_MPIRUN="aprun -n NP" TEST_OUTDIR=/scratch Note the keyword "NP" will be replaced by the different numbers of processes used to run the tests. The testing uses up to 8 MPI processes. * A sample PBS script file is provided to test "make ptest" on machines with a batch queue system: pbs.script. This example script can be submitted from the build root directory (where you run "make" command to build PnetCDF library). * For cross compile environment (and batch queue system), the environment variable TEST_SEQRUN can be used to set the MPI run command. For example, the command for testing sequential programs: make check TEST_SEQRUN="aprun -n 1" TEST_OUTDIR=/scratch For non-cross compile environment, there is no need to set the environment variables, as long as one can run the MPI executable without mpirun or mpiexec. o New optimization * none o New utility program * pnetcdf_version prints the version information of the PnetCDF library and command-line arguments used at configure o Other updates: * Revise FLASH-IO benchmark to use nonblocking APIs for both checkpoint and plot writes. The control variable to switch between nonblocking and blocking API is "use_nonblocking_io". Set it to .FALSE. in flash_benchmark_io.F90 to switch to blocking APIs. Using nonblocking APIs is now the default. * To match ncdump, ncmpidump now only supports one input file. * Makefiles are revised for better recursive make and fixed some build target dependency for parallel make. * File creation was revised for handling NC_CLOBBER and NC_NOCLOBBER modes. On systems where Unix calls access() and unlink() are available, they are used to check if a file exits and to delete an existing file. * subfiling is now enabled by default. Users can use --disable-subfiling to disable it * man page of ncmpigen is updated to add the description for option "-v" which lets users to specify the desired output file formats, e.g. CDF-1, CDF-2, or CDF-5. * flex, lex, bison, or yacc are no longer needed for building ncmpigen. o Bug fixes * fix ncmpigen.y on parsing CDL file to get the number of records. The bug failed the command "make b-test", due to getting a wrong number of records (current value for the unlimited dimension). * fix the update for number of records when writing to a record that is not the last record. - Update to version 1.4.1 o Bug fix: * Improve pnetcdf.inc portability for fixed/free-form Fortran programs o Fortran API syntax changes * For nfmpi_put_att and nf90mpi_put_att family, the intent modifier for the put buffer arguments are now declared as INTENT(IN). * For nfmpi_put_var* and nf90mpi_put_var family + On Big Endian machines, the the intent modifier for the put buffer arguments are now declared as INTENT(IN). + On Little Endian machines, the the intent modifier for the put buffer arguments are still declared as INTENT(INOUT). This is because PnetCDF does in-place byte-swap on user's put buffer. If user's buffer is declared as parameter, then segment fault can happen when PnetCDF tries to byte-swap a read-only memory. o Subfiling * Subfiling is a new PnetCDF feature that divides a file transparently into several smaller subfiles, each of which stores subarrays in CDF file formats. The file name supplied by the users serves as a master file that contains all metadata about array partitioning information among the subfiles. Because data partitioning is made transparently from users, data accessing is kept the same through the conventional PnetCDF APIs and the master file. * To enable this feature at configure time, add configure option "--enable-subfiling". - Update to version 1.4.0 o New APIs * Fortran 90 APIs (adopted from netcdf-fortran-4.2). All F90 APIs have prefix name "nf90mpi_". The APIs support function overloading. * get/put_varn_ for reading/writing a list of subrequests (each is specified by starts[i][ndims] and counts[i][ndims] for subrequest i. ndims is the number of dimension of the variable) to a single variable. * multiple put/get requests with explicit buffer type names: ncmpi_mput_var_type(), ncmpi_mput_var1_type(), ncmpi_mput_vara_type(), ncmpi_mput_vars_type(), ncmpi_mput_varm_type(). Similar for get APIs. "type" is one of the followings: text, schar, uchar, short, ushort, int, uint, long, float, double, longlong, or ulonglong. * ncmpi_inq_nreqs() reports the number of pending nonblocking requests * ncmpi_inq_header_size() reports the size of the file header * ncmpi_inq_header_extent() reports the space currently allocated for the file header, (also the file offset of the first variable) * ncmpi_inq_put_size() reports the write amount committed by far * ncmpi_inq_get_size() reports the read amount committed by far * ncmpi_sync_numrecs() a collective API that can be called in independent data mode to synchronize the number of records in memory across all processes, and update to the file if NC_SHARE is set. o Syntax change for Fortran put APIs * intent of buffer argument in all Fortran APIs is changed to inout, as byte-swap might be performed directly on the buffer. This change is for performance consideration. For example, if the buffer is declared as Fortran parameter, then compile will fail. o New PnetCDF hint * nc_header_read_chunk_size: PnetCDF reads the file headers in chunks. This hint indicates the chunk size (in bytes). The default is 256 KB. o New error code * NC_EINTOVERFLOW reports the error of 4-byte integer overflow. This usually happens due to MPI-IO data type constructor APIs' arguments using 4-byte integers. * Error codes to report metadata defined inconsistently across processes. o New run-time environment variables * PNETCDF_SAFE_MODE environment variable can be used to enable/disable the internal checking for data/argument consistency across all processes (by calling collective MPI_Allreduce). Set it to 1 to enable the checking. Default is 0, i.e. disabled. * PNETCDF_HINTS environment variable can be used to pass the I/O hints to PnetCDF library. Hints include both PnetCDF and MPI-IO hints. PNETCDF_HINTS is a string of hints separated by ";" and each hint is in the form of hint=value. E.g. romio_ds_write=disable;nc_header_align_size=1048576 If this environment variable is set, it overrides any values that were set by using calls to MPI_Info_set in the application code. o New example programs * example programs are now categorized into C, F77, and F90 directories * nonblocking_write.f and nonblocking_write.f90 are the Fortran version of nonblocking_write.c * put_varn_float.c for using the new APIs ncmpi_put_varn_float_all() put_varn_real.f and put_varn_real.f90 are the Fortran versions * put_varn_int.c, put_varn_int.f, and put_varn_int.f90, for using the new APIs ncmpi_put_varn_int_all() and nfmpi_put_varn_int_all() * hints.c, hints.f, and hints.f90 for using PnetCDF hints * flexible_api.c, flexible_api.f, and flexible_api.f90, for using blocking and nonblocking flexible APIs * mput.c for using ncmpi_mput_vara_all() to write a series of arbitrary start[] and count[] * block_cyclic.c, block_cyclic.f, and block_cyclic.f90 are for a * -(block-cyclic) 2D partitioning pattern * column_wise.c, for a *-cyclic 2D partitioning pattern * put_vara.c, put_vara.f, and put_var.f90 for using for nfmpi_put_vara_int_all() o New programs for I/O benchmarks * benchmarks/C/aggregation.c -- evaluate PnetCDF's performance on I/O aggregation across multiple requests with different data access patterns. * benchmarks/C/write_block_read_column.c -- writes variables and reads back using different data partitioning patterns * benchmarks/FLASH-IO -- I/O kernel of FLASH, a reacting hydrodynamics code developed at University of Chicago. This benchmark can be built independently from PnetCDF release. o New test program * test/F90 contains test programs adopted from netcdf-fortran-4.2 * test/nf90_test contains test programs adopted from test/nf_test * testcases/alignment_test.c -- test for header and fixed variable file offset alignments when entering redef mode * testcases/nonblocking.c -- test nonblocking APIs ncmpi_iput_vara_int() and ncmpi_iget_vara_int() * testcases/flexible.c -- test flexible API ncmpi_get_vara_int_all() using an MPI derived data type created by MPI_Type_create_hindex() * test/header/header_consistency.c -- test header inconsistency and see if inconsistent metadata is overwritten by root's o New semantics for attribute APIs in data mode o New synchronization for number of records o New optimization: I/O request aggregation pointer). o Other updates: * configure.in and Makefile.in have been revised to detect MPI compilers and other compile options automatically. * A new configure option "--disable-file-sync" to disable calling file sync. This is to be used when the underlying file system provides data consistency control. * add build recipe for IBM BGQ (e.g. Vesta/Mira/Cetus @ANL) in README.IBM * add build recipe for CRAY-XE6, Hopper @NERSC in README.CRAY * add build recipe for CRAY-XC30, Edison @NERSC in README.CRAY * add build recipe for Endeavour @ NASA in README.SGI * add declaration of flexible APIs for Fortran90 * "make testing" now hides most of the stdout. Use "make verbose_testing" for verbose output. * ncmpidump: add the command-line option "-k" to report the format of netCDF file. * ncvalid is renamed to ncmpivalid, a tool to validate the structure of netCDF files for conforming with CDF formats. * Fortran type NFMPI_OFFSET is removed. It was merely a shortcut to integer(KIND=MPI_OFFSET_KIND). Some Fortran 77 compiler does not recognize keyword KIND. In that case, please set MPIF77 to the MPI Fortran 90 compiler, e.g. ./configure MPIF77=mpif90 * configure now automatically checks Fortran module compile flags * Support additional Fortran netCDF data types: nf_ubyte, nf_ushort, nf_uint, nf_uint64, nf90_ubyte, nf90_ushort, nf90_uint, nf90_uint64. * Error codes and messages conform with netCDF's o Bug fixes * Argument unlimdimid of nfmpi_inq() returns -1 when no unlimited length dimension has been defined (to conform nf_inq()). * Argument varid of nfmpi_inq_varoffset() is fixed to be the C's varid plus one. * For collective APIs, many places have been changed to prevent program from hanging if a subset of the processes got errors. The fix will allow all processes participating the MPI collective calls in the PnetCDF, even if errors are detected on a subset of processes. * set the nonblocking request ID to NULL when the request length is zero * report error when bogus request IDs are passed in ncmpi_wait * when entering redef with different alignment hints, fixed-size variables' file starting offsets will only be changed when it is bigger than the old ones * Fix some Fortran API intent in/out argument declarations * ncmpi_def_var is fixed to detect if CDF-5 data types is used on CDF-1 or CDF-2 files. Error code NC_ESTRICTNC3 will return. - Update to version 1.3.1 (September 24, 2012) This release is primarily a bug-fix release, tidying up a few issues and incorporating some early feedback on our "buffered put" interface (see http://trac.mcs.anl.gov/projects/parallel-netcdf/wiki/BufferedInterface for more information) - add a new API ncmpi_inq_buffer_usage/nfmpi_inq_buffer_usage for inquiring the current usage of the internal buffer allocated by the "buffered"-put APIs. - bug fix to make bput APIs properly return error code NC_EINSUFFBUF. - bug fixes for ncmpidump to avoid residue contents from a previous read when it read beyond EOF. - bug fixes in the the tutorial example codes. - add more in-line comments for the tutorial example codes. - add the error string for error code NC_ENOENT. - Replace parallel-netcdf-1.3.0-destdir.patch with parallel-netcdf-1.6.1-destdir.patch. The patch accomplishes the same thing but is created new for the substantially different makefiles.- fix shared library file names390zl24 17020718311.7.0-bp156.3.51.7.0-bp156.3.5pnetcdfpnetcdf.hpnetcdf.incpnetcdf.modlibpnetcdf.sopnetcdf.pc/usr/lib64/mpi/gcc/openmpi2/include//usr/lib64/mpi/gcc/openmpi2/lib64//usr/lib64/mpi/gcc/openmpi2/lib64/pkgconfig/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP6/standard/802ea42c5be8a164224c366aee5aba7f-parallel-netcdf:openmpi2cpioxz5s390x-suse-linuxC++ source, ASCII textC source, ASCII textASCII textASCII text (gzip compressed data, from Unix)pkgconfig file_nA}Dutf-8c123ca2c6cdf9ad82a88e55f586a08a2af2adb193f5f27215a6e82daafbcc1c2?P7zXZ !t/] crv(vX0yhZ֧Pkbȯq )4[ʓ.R0Bko2]x4KE*>l.\'$*dTn-eQp J@o-!SSE zf0S(G昭 /-=0O#A0ݹ6+>$ *e(e2":orN ks?A~TB}dݫ_@\OM\4tDMc}ķ0ҙ'2[gGWWFGso)4Y5}'8H2ke_$aSY7AҤ o *yhB~ƳK:,'ԙ0҅MkRXb/?gp)*sKַ;l5j7ՕLn4?r{N:=֍XBXevid'&Zk/#" ACÓ3;}m|SP1O}ޫ1B Klr˟>nsonқus"`\юPT@S9{\ڨ Q(\T+bDXSz`kO8dUmV q>cj s/P(b.Lc;P2IVL*-i/%o =(k22-ur6MUy );át%I N]Fn{ULO)65 :HJmbйu.+i&C${q7umr5VRx}__h]7}ٓOr L%S,$|i*Impь|&bɒ)%G/!.)LE/\Ȓzw\p_dId- #߲tVgv n`I س xmG!R\I6G4<㥓`  Vb/Іg `/qjq)vUq8r6%J*hb#-}w'GM1[u;}׷'E@0qHkY^ G>wSzf|B ⛐ k<֐X>[z᧜Kfeh)T] <[&bTy1_$E'HC(xP3ڻˢ@M Ѩɾ"ODY *A ( =Eo~y :!c9Q$)wߵ}Cq2Q*fJDKxđo'5|2G"~7bD/5}62`RLWkp؀F " Mv T?T,QWh*oG]) F5 .;Jj̥|`'Y59ЪD 4efҶuEFAx?i[)LhrO4.y,Շ[ AQѱ.+Y50Re/j?qwY8՞m  խKTo%Ք_!;/v+YJ`CQTUL䭘nAo}7Ւy%:fVz>fM}Ou+a;F?Zgu~v*_)~ p#΍g{A #YV_=cܲlRQƔ:nnh)i`b?*S0z.Gq3gMŝ=Y ȲpYS$J〺X>N,*J`^/SJAIF΀&=ÖwwZK0P$Z_'6|Bgt~N}&2hD[%l6f9+#.Gmՙ(1YlfX(PM i}TR.#~6>oVaʕxJ}g6]UEm}E- s]61YU"m|ٞ4MFʒwe;zۅp?1S-~"$P@lmjUV3х=P1 Ϡr+ #{\W'z1:"tXʇGрk"I-K~rı܌u LoA8'[{uJ0h T9O57- fL ,;kbUd1 ڀb{ʰOܚt /:f^28RUn7:`%v^Ƈ1ɕfww\?gb╻W..L_s[Rc$T׍*2 Tq`?Pzw/l([+o`]{ n %&my]WVUUiSZM<QKĕd{n\ֱg6Ųſ%Z7X1O 1N!n#u-аF1_XnT'=y1C΍*Fw䫰g}HFLf5 taU,)͎^XI9+uΌ[m&bX6\{( (b,xtQ0̀zzsIƨ;;zB]}&8*йڥh0շw a(\=k!l"W zyEVDTB IhG1P 1F3BZc-{Hm'ZL/hY 0|ެ]i\獖@(c,ujipN*ͬFxqz܊EĻ}ҢWCV)a})hNnTLsܚ/p-M&u>L1 !&1Wڊ-VE**+Mll#:An,-RYOs#?ɿue,Sۖw}x(ՈpMHWmdigfa1#9G&3Ks& 8T ψGk\ obRO娞'Ikl\M3 kiA: ܁ z|Sy b *1ؑžG}Ihd7合^(X>ƗKch{S=n0qӅ%U.#S4uH"y0И65ut#e7L 9ld##d:Ȇឰ9%C7p3i85\$\[W5 c_Ƒװ?^u7 gݙ4,`0tݺKCWZf)Ji ?.\WpU$L{gaOѻ~N 1 3JU,l+A |"L| Ih ˌP^oW[liR~b ^}d{ dψ60%+P!bFuZç-yBP|=gzG}YS,U:#:nDӣb4PQKNyanʗ!% hnkCɻqvD23c/Ya3ɞ(%M_٦]8XSO4pbH^F@F(nKzf!YL0%0 @i[7_fM2'a*MCO~GCuxoݞS[Y`K'؍I$㬋oQhk 'Q2R(z'AH82yo̗kAd"?$]mkW8C4`{zb1 R0! @gTOq:=бeBH-O2O@yc˜Մ叺g+b|? rlO&+i;r}ƻ:VBs.;dRJ1:U"2(2^ &t*F\A筇zHvK-bG_Slϖ~s̵oS-vey#@8*u@|A\EӌaT $3Yށa_T8Jr/p[K8CksY[>yP/_HJ Ul(SnOTp>@t=17b{HsJ⬿ u%CqԍC(\|fE { ۦ8I.FSեnښh>g A\C >ts*zŴ=F$gdtpO]qOz[fQ&g}u_ YBEr mM.ToQԜ7! *]5_ÍܩCR p4E$^]EA1k2\#:>6->cH~9G.[jB̝lNL2wRM zL9[-rG^8sfbeS_ƔP4rCDv3W1zK6TS yyCl6F _kޜdXˌ*.%Ze}TiHҝ' ˃ALrG>!ƒ :$T͂BaA m/hݘTۨ'\-uId#Ix/ax1Hz1T~6^NIIf6N,=gTYBp < m[ δ[.i=0\cejuJkEӋ5aɗv,2,dL.Ȁ>Ü\r,9 g<"C&iŵM.xjȟ] {jFC}h9 ~%t^|^Cݴ&̈́jnMR[# 7oCSoB: z"朖D`(R-wbZ<}F1FJjhq'ĺ Z3.2:Kp2xVNS@fHX~_/O}xy"ic`h.x0yeaRDŽc ^8ϳ)qa C{(W#P(m9se0_ky+A1ҷ*3]Cz`M+k7%Ǫ;o!TJW雼ft )"`eˆt&jyD-=@g$˝(m7 ?)o ä J'zx7eJd!{'C]4o;=->ynfpBho7! RTv4CtTKVWy,W&05##YBXG58x *PC@MUV*O=H\9i~IS˒!TƟ`QuH9GB:ٹVmTၒZDbޘzHϱ^fJTtG2s9zQ$1gK*Q'X.]A &uAqHYz񲌑,bo{P(0)R4 I M *dYZa;zOV3@9{G dčMDD I/;sŜ^S ќtR`WdJz*r+%+;e*皺*C:bx`!Uq 6hc1//rMo 7^Y f嵮*?_+DINuM!a)6@TZv>eξL""`vYp^:OJKyy}cVj;h\.8\H~j>@<#v[Vgԅ<犊|;"ŗ4%37b S~F)n@cbq'WL[@ aIOs0rޭd"!@UBssq0 eĜ[9u/T9jI''*\= ~\-TFfg/"нg*Ԩ=[]'la0_b 5!52vcv}2s˝/<>ekN&j"A٥8-ɸ*H;>i59C?E~^$[6ߙ#!&D}T I@>fzBDO&hndt&ѧKZY T𣡸s.%vQ 4]<&d׆cd"0az jPHWq.&I" [hj!Ӥw*#ZD%ly|<I^8xvqM(l3WuNocnn#wv;e-X:?$"m1G-B|{ J2I1/MUV24q_̲}7వeYHZfdeN_; pPqDr;ʹP;e:lnh>Z9B̞'hpP*2P`>r~Sه6+;ZYp:u *jn[DR/M"%e,jpCzhqp[u R"'@p9F$r>~R᏶|\Bp&@\L{XbV6Bb17R"zZ{j? Hރ5:"5j"D5r^ծ"=p74#%:,dtw%F͛P*aW*HWlt^\ZqWE0c 㤀pu:J[ws(fs}:p\xq4CI |E#t'0={=yQZs5XġPnG[F ~m Vy}D6u"o+#CS$-}kdC嚮DRv޺\{g,w<ȀG*e7\uh^fh"K߭̑po&2.{YGߘvW[,)جE>6A,?,ZPؗb?=4pl|_ǝ_yZ-7#upi6%B5IO qƞ-[)Qi췁fQ8b LkP7>Q!^1t5n62;Ny}CԩON ShcdY,a%`|Χ:w;)cPW[Sߴj?KB͞KW띹}!KXf2Bg2wKcX"nG:MFh@z5tTVqM>9yl+P P XK+s>E욶^ SJBDdII6ϼ+b <),!ߛ\4#2+GeLDNmGH|\Vy3%};h)r`a Vy⃪R z6(K>8O{ݿx%&tYF0IJhB4YUQW_WFIg4hoTYzg79kU֧{Dl>;=It9kz܀RK o:!H$zўYs+P}Q<+_LnWRyIY< *7ꬔ\mU"ㅝFjzêFGɳB5A&Li?J`;o̘Us;@rPqˉT هoN3.;#^IM@{K`+[.f5LC%'eA77Rۿܰ.ݸ/:ʶ^tIߠm puNJxB#0z]zLN(Qdnஂ02Ez=}-7+ÝXQmmEVFhi!CS%B|+iW:qBrQp!=:G3\9E /m!Ki&#-Q$"ɜ sq8 )X03/p\W8dJT>"gZ.U4}hW.8V,k"4AW;gqQF_HZ]!rB1֚4~+V+m%F񫞌&5s=c)XȞb TvP?8@nfrNzuOҲ\oL\ŷ7!ba:I+p.6#*BPG0tL>"h&AWcbs"C[a溾B>})).22E!N]Ni@/1v3' /A1)tO)Ll8_Z-j߁HIر=<2 j$U38@F܏Q-[V12j}nI7w$}-hDQ K<:ۼ/:W+'fĜK}KTw7To ƧTʴ~q8Oe:kDeΰ.qdWRjY7ٷQRhU(l{SB!vtڶUjQFRjOfQ; ·07UϻX ^IR?(FuVಪD@7sIזp W,u(ZgQGq{oyzr 9.u!yjfpVA}Ƕ ]aiR%/pΉg 6n|$G4q0' 0}-gxF9ThEvGCʯ< ymÙi#sa9Z@Dur}m rQMkJيF㍛Re9F,se]T[oXr{DS&TChQnl'pRg/+Mv)|8ۮ ?9M*m!n!dkk-XvcObm/=Ҩk{:I `3& YϹq'ݤ]UAmdrgzYQcwo|$$RtqM |矒>@<ߣ90 < wGlPNsa&n`NÞuC{yFiy"XL_((UImE`H,`PS[C2E? HADM=~Ҫ;zN4'/a|iZO~'_͂L&IX0s[X w[ж?7a>M )k<.K@m4ۧ2NH fP"ʛǀc)}]!Hmjx?0`k-RQn6.&r-txLBzǷSv#+I0FKx)OI"uAM}+^C D0yDj |/w$ul|JMFNFG|h^콿Zu 2$Ik-EuY ʖ)DE%|dy Z[6RcW^*fK-l/4Eyʁ3ٻnH텽2`Bw]m'͵u)4\sЯ/+ۥV,t^9/?u߲;Y4>-O0B\a̖ 27ZN[^ԍE!Wv\j5U$PikHuN su%Y XmG]natL),W:2xg^ [?!khzh-8]ȪT^1}0&|j+IzdÍDxA$p$:/on"kU,QM#kW̓0٧iQ֐,DI󳓚ei|ȤTG{rJѓ)ڂhbile}pB-#3Y% Q=Z Uג,f("x/(8Scت<ǹU{;HkFaP=123d!Z܎߆P&Z#gޏXrqݍU3A @Sc͍tPNg՞V8[Ѻ+Ow3yQW@_隑q;Pauio*Vd!{`}BYËawTxirA-H8Xl 9Ќ!PKyK-Ȼq3fjV6ʹ%>U^ʝv("Ħ1k ~`T3/ns&DQM[r|l`)Piۣs٩Ji13f7Waz{R%8>Dz CCbڻԦbh!q! P= s"61b/TVLdK[4:ipAqDɠetA/ݜ2gLe5Fv&S ]=G dc\B@nNYLUcK(ē$YF.& k|]xwVMBqS樹}`n]AkM|2iUm^AXDQ='9m>_.SArҍŝXTGɇ>=B{c/A( 1 fdt'#w.XHafE/dĖRA`ܑW5 `tǍGgF eCq WAR)v_:*tby7A(qx }oޏ+$-(i2AL?f)K"inS M:%Ϫx]Җ*"2.Yu.\o?vF(_YaCF V[ D\]ǻCz*&x H@k:" Ø-ʸ׬u͒->58/](->6y[?>r3*8GxJMkc@FMק a dHj_m ~>cA|x8BJElDkrN;m m;8" = #?p'„ٝؾuj#L5lrſhbv&9G5Ig>~Ǔr''4 ڬZ|ilO 9_rTGQyVˁ*4xX&q^$W+9*&ojs 1zd o4A !^nUہ $:sr)ᩈ) %t_Qm/O2Cg"Fyrm"OKBPE}X,v$>s/Bxm\b*OCԩٝ ez<ʨĦA*aXn}?/qQ/PxLr4+.ӭ_7kH.p^r!O*2f[5o/Fe"m+uR9W{M_AS . KSꄯ86j5E40O1ٽ>\;=Cc}j.WV%/7r  lb? qm I˅fs[{'N4QW7}GqMrl}i~|L DvºmY%ƍ"xu:|6C̿]+R+!N98Qn9 !c.8,$EL e#浝`d=א 61{)8fT+n9y˥6Jr?61TB™.4 fY zm M$r+23I9fz!ܴt4CvKB{ X'<6:S|dkD؞Y]3qLWqE bV(0p%'_jy &?-&&p B|Uw_a\e.i(GYbV*Ǭ`B=;.D/?3{U@჏;oUxǯԨ%p7Εf 9xfˠdWN>y-Tk +=d75T[p^vC7(VPSkA ֣V^$r OC.m ˶Qb7 9;VU8<ukjS}EO'Bg,+>cqSMt8 aNq SNz:i2uܟ_DO}۾y$s(s\Πi [@AKY6 ;yBoR $ mpY-f: .3KBG5 w o#L#%/W [R?gbXfI]m9P9cDPFIys3&gX4Wlۀb7I=%퐖ʃPQ5ǪY7r^<Y,'JbZI=rR<8*G; Fyv"5 ы0R6:dÆ|[5h6͓,9!}FgA N p6U(gB73|[ykc9&JmWfN\'v\w 9Dp6 /ȍGPED'M[`*uJ oI)'dS;By1 '@{*iE}qq/'Vj³&`*BJT\{T:p2v&8g~)m3֒4}`K\65*/ɾwKF<ȿ<A,,%KBBDdTv}:h[C Id "XWdn9iFm7Wj$Oh'aQcq"[ԴS©*bc]Z4k!!M^.556-BƯ(ȕyOMUGdn|6ϡ#z?~8 2O~|,SZ9v_#pa?m=.BgO]^u~={Y~g$ZuyWkQz*74C "~򿱚\Qf]͝L$ʑ!%6>4(W6iGy-G6 usbB j o_[l؆ALkSM̻Y (OAaD0hDEˬlb"9a2Þx"lPUc=2w׏IA0&K~^hu-\ʁ[)_ez>]z}i$7Y-⻉?Ѧ~%Ը% hE6I(-Iޟ᫓by fe90B,%:[/KK;SΨW<-6aPx. ߠiP0cQP4=Lxt; L#z; Yzw&7V#SwLݦ!􂋍#}3iI<`L^Hdodw"n}Q9X)]_B~UwFE T9ؤɇ/cĠ,ht8Dҿ^h2^6<5UڛWşy- s,fo[Wo Zn9z@zDpZLj4[HݟGGI!eվG#ͪ%t;P`ZW^h)gZ^rGC_.T'0r&Y8CnakUC5)cYl7׳pAWb x[btsp?ALڱ>/ګtF4E%G+'1MnqJ]RɆ8JoC$<^pt ؘym6ۅOxf dW`F:0{ xR0>ER|ѣz+Tf$@V ^^aۚľ#)5I$StJcnb|PVP;!`m2h#.jᑛ8>YjYQx0-%fťHkH[\B M&V9z2J,ɂj;gZQ#d1s&p@:WE&|{ ! );cae4JtM򓞟:pw6G. 5ڗ2ާYٍ@@COy;)Au1fH3 XzI+:n5hRĎ_S遀iS3.?!.߭FQCEvvffz\y=5S 5du6x j\XoqZWƗ7fdk:AFԺ {tib>ݸF{|ѿ_)_GqP2sp?.5~z*o“1Ӊ\c!)sQw<{KGEB`:8xTltC_Ɋ}GWottԱ#:Y΅" B.u>ܣ%& duJgzīeݓ3pak-=v\ψyOv*M3reN"nabh;-93+ibr޾Ds ȫ/l0> gLTG>&6-Ksu''faEq3_I c+P/)kPBhWvtH:E@e.5HX&>5?ԓmX;H uB!~Ǻ] ֻzy_r-Gs"&>z0t`Ef-~ߒG9L}5rLbճ:/+u*;g5iU+qnKJğ_X-zyϯqI0G݋dnڄp[x$KX D ـ?cMd.Jő=k2XȜKLɷ^=Gĭ\>`6A}2'C"~̑Ӟf0uv/<۱s[wDQWT>'ހdAhNRPmO*1wl)hAƴldR[&"D8an񗍱QzCT *rF>ej\Fa+B_`@&>ݵȏ QC8`w4< ݬ<\%(9T bh\1SyЃ~l `gA4!@[64T}%~@|#;≕YE+hRQ^Wh>b]UUt^^hxYۊ8o,Ywvy~<t]R9Oa^DB;C2tUǾQ}fMPMlR<4p.6b dzX㍫xLB40r>HÓ720cNY90oq?& s ͉Eqb3ݠl׵Z3#SΩPh# u# & j7=IU\if:HKۆ S_zQ!;ah0 d.B'G! 2LEMٖ\[E v M_s1t5.u Q =MhT 4I}B+A+dاt&XnN+.y[?X|< e+[ _zԻCi3pa!W*d er#(oX(fp[B?6bWJ [\<alJďY:=T ?Y5 6ytl T ]4#df=)LqQ^VVG\(V L!=s= U!։R*\*5 I&@xZr,Z8g^x7j|c#!Md\Ώf/;Nv&;mϽO+idԮuT.ֽ\Yo@zu}rL+mUI5k>>3d&&) ЇK R8>KIwş l/v la=nfۮ(qZB:<.jrm 1IFfjl_[֧ ܿ/E'b?w+nY(z2۩@ACkmwEߴԗFAk__ڡM1@Z) #LoXrLTw}˫3[arUywY]NwKvt+;1:~n !K$s(D†wN7"$~dĸ)+̫D7B C}m&rho_f2<54>> erMd:|O byDxUAA+O:~iM>칐K*F&LNR?S[gsAEQTxc;Un;%h}"G$wnQR[ #_":-kX]- !Daai;5 i]x!?pcYx3(__aV!z3*;\=Im?Lo~[%֢)l4_eXTgpO7C Y| ? QO_{@ءM>OGdHZc؜ F*v`R T|ϊJSY¡p2*+`ANNpS DQb,}m F|x1Kk67y?i"A6%rG϶MG 1U[DEwqb4|/Γ?[[}D U<Y{ /-`ɭs˱Ӷɾ"zfYupsN?6_"j7$?8Ki%8w 6]?ǣ.C{ȁuKԲ5l "sF%vlnI r5al׵HVAI`*t̟P)o3{zD ߬E;W9**qqln1ju(hԋ-PQGn8|;p޳rDB2+E(tCoFVoAL$Ffi -/ Uw^j~ak/^L#I`r_&#孰À(6vVYD&#) 1@Zih) ך9enu"^o4膱Ȩ:nd"NW?նt& H[G_ |ޯ빨/4̕~c, x[Ӷ(>#AŤS`TU]H#U>Ҡg<( }@gKSr07jsaܪw-w*O'b!=!Kr&y4JW@sBКŕswZZ`2Vj? ^%dO,٫AR ` v6T=nuQG[Vax=sS#3[8s9|1?{,3C|m+zգN"~R?b'+oٱ+Oy&Lyck$kt<lf❺Z(T`bT& ̄rmwugLFqcRe!U=OqqP=E[kr !V].G˺0`K6 @I@+F4C2?½HM6ԅc 20DTF$ho6$W~xEpL+EkpB%Wϙq+ƻ_0ŵ/X$ Ě.9_ !'I}lh J$Dzje"y"zYQ@3L2C+D>Uh3+sXԨ#VTf'$􂝛&mˁzlI]Zp1dFl%UEs?Hɽ| A@?BB=ˎ$+>8rmcޙi]ޟE8!M >Mڠ+x V2tR3>Zp.$y"F꾡l6ISYIvȧ"̵OK+sOm`ĴJNgz⍟a]Hx"W,GTÑQSkz(yh8%4P/Ч5GH ijB$c7^f^^@)iUt%ܢ_T 6"MA٣" R cB[ [k;ot }j>7 `69c- $45_OL Va'94nLL0)Rd́/N=yYeU AJ#ޞ֛RUp;5Zl"jwAa.-و=,xKn޿p{i494Eы2~p2wrzLQmv6щ}'_FzƣI]u-pIqNpQzv&J_? Gm "fAʁx X.@j@T-FY|ZZ& DX>/ekN,c6-Hk=V!b(Bzm'^"h#qڴ7/Jw5+//C%SZF4`ܼ`םp㎹uͱ#iL#@$\U_upz~SVXjzcv_;cqwKڽ1U!T\AAaNa;'xB8RݓPAf8br8ce{@pI uy趤Amypk?7e(W7^`7{ uk[Juu-cEsw$_,CepX[FgKi,CWuȨiie3揀Psl62PSKFӋYHr{s와)xufq5O@/TykP_N1^b ȸ]6whQȷؓOT;]MjJ$V--os}##BHaqnLp8؉gȍRa_QHjBvI S 8{֩)`FqI(7J w-g*s)Y6Ɠbn.1 I4ēB.K aNn #ouU  _>|WF{_0@b1 =E01"Iz,3%e5jj:Fh~%nV`0Kf}7i1}wA.z8 -m3(ĢŸoS+ߑ u $CnuXO%B~K 6WX3$O "ZI^e&/݇tU3'xC"!)`Ndĥx[tYu>YF^@qhJ(FYG`["DޭV. p1PBeMT)1y A>=`]c52#|=hviHfBJ`Upй)08DMʰ}$ƭ8,bI[Wc&K>au"1A3U!VKU(oWnx&)-]x' DhӸÁy^lߚ7I'w-L{չj_kM8>̋Bje8 i[ +\G* ;2:M p5N5Ʀe}Z~:CgIXP?yQTZ_V>rg.]>(W3E5;Q m<S~/{*{NHL!4j_aa\(ϸ|m*EphunNqQR#33M-'ؘl S{ǯy\2&hS%_֔*bA~B5Gk?+I-\=4߉u@tX6%j?BJ 55t26c׳S(F і& H%1&E҄:B`F |O(Wx1X81R<}^ehLAxg:>Y(U^3x%ZL3ץ5u^d_++`!xtS!/dď1?T%B2߅Tl9 6=ÉWĻu^E[8P Jw\I(k]`D[ T官Z@KdMi8ce(sP!w37 R  +fg1Tz(It8wF w6,y7C-o))_~M`;Z~7?FhuFh}`UtD6Wx dy 7U<E(aOfNBϹ}0ggF%!N9{`.:9[9zh}G j|2 #h_V$y_>:{  C Lb o$ :#X6zNFa$W`Ř1ZpRWTR0r1('I#"_'7AĤǰPG6)1@Q#w֖0T:rUzRNZDG^ϖ6)ed,v<_[$[콻Zv~ya>aph/G-hɤ˅%IPĉ% S͞pOoJ$Vn#PFՄ} 3&-%_uP^bw[5Nd25kݽgT:KpXEfc[: |JV'tp\JΘԎH_ !H٫:jܙ:Bz = ^@_$^-'u^;늆Yn$kӵ G2$k@++G^-vsm!DZ7pO?pR7pIM {dɵc h{*{DE l>f5 6:8YRb /'-}Al,I1]7#I( cbXj*T(΍urNAyz@oIqeVA$bܭWUQc&uQz)РB"v$h x|y/ߊ Y|$hU; M3c[,=l'*ݥL\ӎg[/; YG* ]cb![v DqpY^GKиWfmmoTW| aU}3EX'c0λ8+2dT, ^깴;"~AΤYaN2c3fEK;!=τDPm2р!:<@C{iJk,;ktXS7c*r -xGǹl!i,4bovQ_/|7!30 ="->BViRWQڔfѐac0¨L159ظ=YȂYђ;>=ә­aU;7ۉ kiR( Jy:Hڰ@0Ċ/+QTGg3"EA ʰ80a* Hp!]RAd/YJUCPGpz6X}!Z֠A㈩} Ly2#?&.6s8 t{E/p)4߅iLxNwXdi <5颥8.9@ {X30󹯛.[!_:{IeDoWZR C:e'y*5] Mb.GHF]C&`0I opv+mCEl{T@2"c1ip.RH,*9V'=a^RN|o[>a.T.TH722Yud=mu"/#Jڮlۭ=$?;ڊ'3gH;K#|=*Nٻ -EȲ^_'FԁT:lA̓ d`Zl~ 4 h^O>Q@+wvy_~KUb7/8IVV-yr}hjT :|<|LΏ!}7cj\S Sse)z7|56MUξTq7E=P ;8cLp~Cld@ 7i(/52h;:**s>]~d|yDނh Z;5AIc![H(uHste΢`4Ι7$ m_Dًsh S71-]\89ە][`,iȅ@YUZƷ!.9/T\iV'3^ðRnenEgI}n\uvN)l_0ye).8wAAfv'ɣq _JL[G-*tWvqɕG]\Jz|2b0CXSVދdSp*ϳ9.ч{O_d/Zt#X]EWÙ)CTSh3W@ KG"NacEZAًybó|Qa+[:!OwνCU Hwi=#zK%P5=[oS?1<4wT;wYҖua q5AL%4ӏי$ PV]X$ԠdBrAb1mG"aMq1/m88)GOI 6L=P>D9Z.tm(r~N?|QW\dIG lJɮ='xCM8FNo&2bM.= ~p3>5ZdH0UqSٵ d(@N\g=ud Ia[0 {pL Wʵȁ7&.!&|tD:^'pLgM*_<~'❍?jLo&f`IYpv2ڷ11Uܦ>"WQ_ j XvU{X .OSA )Yu/=$A_/U(@BuL_ ɜ~UԞ[f Un7cدܹ^ݶM@13L|\?2 hvf7+AHe'NSyH_2؟Hzn@ĤaVg_sZZ6uP+kJLO'ƓB`%kݚPp)9N Ifְ4ۃÐ@>\jtq Aś I^z=_7GBt~ >A@gnNjE> ~:FX̧n_8ӯ%O1ڜ7YlEq~ƜL {)EagQ릆G١/70lϯj^3ڈcPm Hc %LX6a)~3 ׉ƌBBJzJ=u4rOL1I5,;t܄-C6#B-{3Pbo^*ă Lnuץp KqmFp> P7ף>Ƿh(%| c+m·VϽ4hM&^ELKQbx blN]muQ/Mʘ-en2eD9c9B0X*Iͽ K|<)XM=3ZEA 'TRi7G{{4T2ZO 'r=Õ:(Ŋ[-I|rcICEut zuy,eA&0KgTZ4@m?h ;<?Wc:xS#vS#;JtԊn=;&w}Z-.2> 8HAgf p ,|@xtTӮή`s!LPsXK]Je3Y,`6b͖TRTV$O,тcG)rL

'%xWd*%?u[l.E4kф$ɵ>IJ^ )j#?9R 4M(X[R  9C#ܤ{sx Rfs)|bm`N!Qa NL8@,$0dߐ?!i ktfV_+cu mIy=$84t0N.b`k}vGZB@ywW߆.̦ o—­8-u*řBV90)2mWmuȣtFVH6bJ+E0<-3|ͷ#uC4)P&1Bs"l8A|UUA; 0d:80/ 613  4wGlkJKSѢE/ޡfWѤ73ۣB-VL_a|bh/rm\V,:nSe@Ac'(&/5@A\]$fY(1 }:EDmeέ$ORͷՏcޥX3ǓQwu8>kUz H6F{\R .P0Y;\g PƇSAi휮/;H<a> |WFHLJr |T$qC֗98-XbULIA_kPo-g$ refiWBöP] vRoZ&. ᦐW$"V (eA{Ygwl~2Nqv|*ܭlپӇv ̄fˠ0#lzFMa8GeJ)@WpN‚YpJ~tn5rqz0 iiXf5yNJ1)ؾ(#SξX =aOvbQiF +sĊ"txz8ߘq Q-dնӯv! ˙`zJ~N  ᚳ/XFШu9#GZS dd(wrބ"0!%Ć`opKCƒf({XYVOfS?7/h2+$8jfsBf`7߅YY1̌} ko=_=n1Bar'PT/娑 h'O! /idc#9[oׁМ5ȰSCo3yQZ ˨@tQ2G7CS\>P^~5ϧ!p*H61ؽMZJ[ d3'T܌<+;85 `!sjJ uXK 8@Ŝ uPo7it#CteA;~l\xF5 dip&썝}4^75ح ) KK|,+/jbӥLlXMݏ}WG#&JnPyOgyJFCsuSaܑZQ(?;\`|"eV,W&̗K,G6+I10`фDQ8|< -׹k Mcv{7nT&rCIZ /ѲE9 |dRPW S /($R@oΣTSe2~PJq  xGPQ!<@)G(>-x1)_!Y b핝P^>,ôk\+5R|-Yzʰ-I,eMJ~u I^Js@GF'%-0QӒs\[WhJ9-6gJC7yKX1,vߋ =(%q6Wuus\Z} xM'9"-ݵimu  (ZӐ1Ii9uYsdnޙh?԰aq1㞳-&_?%w_[ku梆D;|q 3#k"]X6|a[9QYj(>-n=Z%y!eZvAyNy6t',]6TZsal9~t?6] Ժ(fah%PyVxm!BèA+QG{Kt>YyB-C|ai^,P@ٯ'>餶8O^p[6F?ljmb}}+5z^Dއ()Lz E]krÊHރ:*Sv\! qF>w39|]i$(iy%&N5=q5}kedޓyLKZl4QN\/Br<{ "x;J`o]WZJ!7CzR^Uzr9n͐},~qQYpUJE~=6{ =e_fɂf==_7ˋ.z9ïvL6U]˒]lhKk,=WuƾI7?ςɂDA.oGws{\ K45]Ѥbj,(-[  bT;KIYJpb%z[ϧsQr,G[0sIO5 ƒ ԣ>0 9 P!FhG\ jj=&*1nKYdd]}~V  ޹C*|;yfosIz#t$U:?5pcщ:m#I8TNDOtё4(z2ecUMX<|ԗ_8UW v?uSs/OlYW%zT3jR0 #ګػwݵPG{u)u+z> G5h:m,F\rf}`)_&G?\\|;t1qEbQ뵫 )>_; Ac 8㟄Qe:eU6n@i^?!ӉʛY'z^/qOGT^7 F7̓N64Pow9py#td'a~ iQhv&A%UhT[水0iα ŨJ۫C0j[~ѐH"I\p{'Lj`-cug>`2ۋYEVs+f  /={?4+v0fCOEóavk6'\dKbΦO MM] WR>ACe6tUypޞ C(w]+r G-fW֤ jzrP蟨d⮥eˆqq"mۍ .9|#W'm})Vmzs$.fmks >cߖue 7-tt6η9G+ʠahˤ(uګ#L ;Kʇ'x?Ѿ,&Њ*H{e)_SI4Ap{$ ~;:&gi{sMCXCEwcv0T$ ?r.RNC~ r/ W5ȗ漙rW WZ!;.✂F2#`dr_Jy#NAX8ͷi_>i)?TԪL;ȋb,sDfkv_g+OZ 5l&.I":H+J\`ƾ F0TՋ)[2}*}h&26A+f9p;x08\oTT^K} GCl8HDdؿ<lA6곑5\;u+;؂ܭ8o&4OU\/\ #u/WwJq7&M(z.X& /aIo_Hf[>-qҳ*FZ&b4B]pD1wVZh_KeH} J=+8Baxe"LHX2~[2@<+ O+YWkC'RFQ֐֓<[dѴ@{8Rj+3\7]_Y[.((ZSpn9Y$q"G;|+s{h]^#%5=j k2=!h I% oQUsK9X8w>q׺cf<.D'uCEIeX}=^VWzf_Qi|'ݵ@\%;}Ա\1ѳ էUGsd!%5 3^l!Sfn>oz]Hv^c?gMzs7>9τ]_{K&r[q* *U f$mB9wl=~(}+hMɖ g?rr} 0ŇqQ]h@?0-۬Cs O楪+f6:an5܏ٶ=c=sΦ=_s%giJÐ>u ww-[>C =v.ؑߜҧ埉8FG6[*y֥o:ZS1Z+R$S*;6ɉK.Xav#"M%2:$ufgYN[Fݵ0Qɝk2Yq:'0^ch{^R8`"~")yuG<+Z+Y]z8([s>:Ym3 kYtd|KkΌ޵f0=-|)Fp0x`CrjF9aaԬ9Sfl?!Ztޡ70$b(d?Nu}/\ƱX7o!,J/*&$ܓ;^L<}=FcY "BX34lIA~-k;ejU3+H6#V`:`~k&(m{-A6dzw| Qt/Ę,/[Íṙ;ڣք>U,E]l t'QeQ`=nP7Yٔ4B\Ip06m\pCzX5oBx:G3>\Z!$j)QSp=t0n84c$\Q ka8$ ]&LECŒ믦7U+Ȃpk͖)rbShL䏤pt -`pJKbC%jA)lNk4:~+~--p4;Cؘ_h /$&)@ϵ JVT2(Z3&.HS=j|WZ`#wihzFWY,Lidpk+9Iʿ%[($B귤>@geͳ,FxRՇk3KxmI. /OgFj DA֪[p=ǞoE)m%̸ ٣ XE}ImX~]6E\uF"kTU#>8%oo>`WTv#79*֝c};ecPk+FA6ׯf%HξxKVL~#qL7eﰳxcXi)@4E،eX}))s0U,>,Vu;ha <ȹ ״O֯CĊ>`vK:n}^a2u8 FaD%1.:TĀh5< 7l'iL 9֙e?>~à(m|1 z94Jzu3bcH=\ݣ1hIyyv9h6R=MI;؊ 5#?HK7ӈ4 /#*R>s3Y! BYc`4_:cEF)j 'y죽h9E TBRQADTU.UXz+W=\ݦKhUUd~&N[S`d=M%4V Ua8 04?^h9Q~tKYSCC4۲}ʏ$Zz++ܤ&9}oJa͙E'1&,MIP]dA.ؼyÚ'H3%x0jN12!b8#)ZRUu_0B}M J~XƷi`.AQ)k"ގ%4 ^3?S*q.ضq-Sd>s6w4ĺje!ڇA\_QkUfwP17 ko$ܦ_V;Bv :Nsll[..QHHFu~(L Ϡ ;C FA*lWũ$Hj0ڔ~Qԥ2 \ģ]tzK$`}"1w46 J?#f NY@Ks ܫhT~~XXhUI_ȅEf8^O[RT^wᅕ;Ol w@i5o+ͫL ]\e&Zpcifh9OZ F*cqڐ> NP6eSћyӤ9_Lhx@cl>.I'>K9&o[ןgw^@40恂FHhZ;dXY*T>EtymILlyi|ZH:NNISlپ^+gZBHخ\ß%l,RP]W)ulu >G];1CPU}1$ӧ)/~qtwcBg|2%5K΍2) FJ%&FO>䦆Boc3Ma GϨ/ҒAetZ52j/"Mt֘{Q|]Gk]`ݬu䈄%MVʜHrY"`*z$BSâW(+QzV^?8gy.d%¸?ݍeB+0;j8QOY:X d!4KB_rK=1*BmoA=fS0fWHCII44{>?>"Vf8eAi8DmpRY$-Gz7Q*;t`1 @0;t1|CJ"OF 0/iR0GByQl(}Ide|~" vHZ}lavNS~ݜ`El>$gȚqw$ER;y& ɭ=ȿSdYЩzO7Qm&Ѫ=:#9,bYW=EwZoޣ3Q8FLcGui=Um*BٍBk~-wf<,wTZz@9{d$7VAwgr'fqDU NJ,!AJ&b sl-#V89]Z NkkWkx\JeGRF*[ԝ M\FUI s/T^viFsQk8=iup8-4@4tIgο$-s蕩XG)#Fp%no'"i*6Dإ|D w(fZP 2)#<LzƏ&m7f'PlY$p5-"wɥaKei,ˮ;ɢ/*3:fi&loq,S:p$9k\Xa@VSOi5CA|yzDapFNyI.ܿ9O|D 98:#nva߁&}юe(f]\ҼHNbŷaSB8~g >ALE#yfB 5>?{DJr#_2tcn8[nM83g]N~v;)# ~YWWa&VAod]9鶦`\-וPnK ncޢ23%b0bONnlwESy<[ԯ[.!>Y78L 죟쎤Ri4gFbE(^SuHR6BIB:L/DUU%q\eCb%oa1i6@,ȔҢ}Ai *c9%' K f dq0ᑐwKՕ Gr<(,:$A:.C#zdR Y(Y+/]:m6]MnD '+fy0bԽ/H/`*e1E<+aNVtu^UǗlpdBP.eIwYO2cZsUAwE0[k" k\yݍNpr?׬bȖ.K3}O3=+`J#|<z9CjuO  +V%Sbft ^ -59 7*UGB馴V<3K?p^(z:jgM3^ı^I5]ƻH2< g+(]#q~}px(7ZZQ!+191,qSFE\r>~ >3Z6JbPw`f/[_6bРnnlllD-CpF ]+nHa=+᯾W$΁,0FxA Pbd%2Ǫ~Pr%Zq9 e$F?~YNMj1pi>&rh7{ꇱ6x 3`fQw۸LvWp#lĭh8`EpX HHH0_{LǷ7xɮ> _K+f.Y_'͝~Lj=SWkӵ]i2]o&?OP]DN F؉1\҉S.K  vB y3p`7heN-聆tqe%s^|[ɾn2S黸+ӊ5 ݛrE sLl1pmYZ$\D0,8 +Ak32QYu@ {hϞӂBrH?z@q: 4מsbPѳa5+QKѡmr(bsC0p "UUU%yG$!ei> D1l$Ey0=Fk6@SHl q͇wg`cm<~wzG=#ݓNڄX$f;鶠ibӏG_Gwjr'脔PtQQYFl"c%ȳ‘mCzƱ%2bh>g:ߚ4Sl[zi~֪LTѲD_Ixp7;9&.j~Ӄ?!{F}lhհqڵL+=馠Č@ Q8ˠථk 7zLK= "z&*{o%UWYnj'g0C3a`Æv˭۱.М_u@7 ,0{x;eoP)@U鰧GȲf*$m ɲkOWs=77Alq`X.oTw/lF0fW>[N'ӑGo6Mk^a /6Kc%h %M &( fmՒY̽e=0-?W?{J [1  )[ ( AHf-t &JTp.*[,{许`m1]LU(*We׃V ~dD~C=3̺Dm~ch!W@VrGZ&r"_%Eѩа-a D +*u!+IPTn'k$^!a/jR77#PV> 5V@Ztjc!\SnԺ;RXe_Ը@VV靼:A2vNVhvK ?IqVUeXޖHzqXb!T 2RX ۮknjD1rkQG&E,5|ڻ럮d9#ot!! _h{X_)vݦ.!B4ҏJMJ񭈎#溭rنO-d 5xYU/ӭh{Bycݕ{mhl8f{7F:0k{'H -=B|GkˮldUDup_9,z;i\"ߜq)R_9g\5!Y,@EGxȘޯO"IaCk+h)Fc="E{Y< )6ZǛr0575CyB7w"Ge?#:NhLJ5y/jQ|a`:qJ4lE gkj/P}orw/Gz `?Y't?z-^lJhl*j~yu<.y̩bo]Σv8"ITb#S098bs䊛f7}oiV(2sڽI\;PB'|եKCևJ9BPXE:L }K/p޻[t'XBy-_ hS(VpLmS!I \<}M%B4uyԆ$XG'{VӸ&˂u/tuzOP1`Ãt@.{.0|)i֘a8Q{:!3G[`)p#*Pp" D u$pxX#2 +1z Z}pXi6R ױB(myUkM[P̗ +Rɗ+O˿'~^ZWDc'"]BzaRlOU {Ӭi5¤2+ ޤy\R`mp`.W1>SO^<| E9 :q|qeBw aEN;m}Sm;+_=iArQ\ N-8[K50 dCjBaN沘)0&Ҝٝ }HX 2ûeE9l[ vKcGXM{SjJsDiUK8R0)Y2;44pP ):ry蚋$yUuAQ!Ilhªo]R]BطPirP]vu1}PHB0?V; [=Y6q㶢m f\cj l`Ih*&L/ǜ \ B5A9O$GEa;I/|mR Ù\e9` 2Yٜ\% Q+r7Ɛ_@tB1Fj)ٳm$&5v;^ ;0O˼<0AɜsO2_VqPWSb0W)A*aP,AO4XG~,6pjMtƅk%3wXndGGD|e XL7N1dVRH kJvzCi:G@YUܺ X5UR r|ULrn3Xӧђ۶{6 0 0|h?39"[w5"To ''|ِ?IhH4ʻ\ΓqbO'";+ J]exҔ=V 98,!b`UzZh/˳T##^%S'/űAOȜd zbdx؈L̛«/,flĕ 'DA~O:nGxCwgN:6ʝ.#"Μ?^SȎş~ , Ef&![p9U=B^R:O}3 J,fU$h-Qy/KjS\R0hiHt۩ԔE0i 1!ɻ!z p3Ec|qL =x-{Kq(ecflةʎRiD0gBg[\nzfkKELXU3iJ,2$wrY` YINB@pC sq ϚP((.GD&.k8I ^DwztºdRV5Svf3'Te>lKB0bL;*ْ QX7*[J@ǽs Sl]U#s|\WP"c١[Ӓx0]GTԿr4VaZG{ ƽ7iP .CSy0E]{V<,mYZo#Ä{?<*=)*?5Н u]A |ܩM:Vg@nb>sx&yxq7Ϩ 8s+}T994:Y&kmndeWe5;E *͌ Cފ\6`:k0"uG%ՠ {1+dRE//8NMp !qpR@h{E,%,Ѥ>-L~P 5Ovk)v+ 2; ZurJ_Z4偪^qw ѤQ~f\KIƀ(fic p)eyM fs]R 8FxsD<0e%=h7@Y0nUBt|]8` PGXzI2-aP^(<0z P1iTEsR-`Wk)N~_D.b[*l,rR<0ZiA$k2=X86'Cqi6dnni8 *0yC%QI|:]yxCʪ#\}z}ZүX&SHv: G:/1K:i"3VC7uͿ`0~K?ˠ\D99Jꁜ~I&FY8ݧ}c*"e2H#@sGv>0^$2b9n5v0GT:DF䃣DUSʉz*cp#٫lQy@ŭkV'αqpLnŸG.gة!kr/u1Y_UupguЖnB?X58u._ԧ ?xU823{B哭E%B}jgc4q]!B/p_z|Υ /cr=;ʠX%1pS5{,]nk3N䛐EzV͈7=Ͷ=+G.{Aڥ0/B7|<!u^\ّ0r0%;uE~맇W^: i]>b aMI`7ZX}+0T;u:b~b_%m8͹{c !Qmת&/ $С;)߱ZwfwfaNe qXf.Yb7u9 FV4ɇҊ$ṟĻ#) +۾;=κdLЬh0d*z_ dݱ)&uG81o7Z<:Rᤋ9o[y }5Yp$K:fi`b NhuŠ#Zå-].rz.icO:_XD-2a SAIm W"zi*D n*EjMqHpj^?rwuy.C4e˵WX51'H}f?qV7HN;$;k]>aՀVs,r\Tu<߭J 0K] ЛȞ|Mmǽ)#04̭,>$Cc գeb*~=4l]q΅E9<-C1Z$[btے[މ11HHrPL }j.udg v" |%!\ۄ@(U`8Z>KjyS/"\zdyg0fjG59C!)E}_$x;Ql!™=jcFt*ɨ[yKۡ pM6*2Β)k8w$UOIbYLpLe# zzzO);:H:O=I 3s x}åG̦ԊRuxR#07`Hv/ʊB{YT3o`RY@%@Lvbw0bM-SAL~8oաTGZ$qdI' \?7[A~)Pj mKD0َQc{uU+fzl?ou"BVev1 ˓<Ē d b2}xkU.;1kz 6fe~|~bX(#ŀ5VTc.,V#Ҩ+/0^hzK?CJ01d}ԤV$iqDޠݠ-1LaȺo;NMH]5  4 Q`n+ ^6h_άt[{HEwѯr&E $.^:5ͦ|>7~KDoT5xcp.9N"'VХ2EuH<ѕ3 m(a*\r^"<לWfk̈́es΃Xk&}vi(4ޒ#B ?J8@2\~:#?ԦK>OHQCN6[Ps Т^I$3՝̄ '{uauW0Xr"ئyq*{%HG~^WlTMpף+r69|j@dްyPʂ$y%o#(ƬK Z:s0R|@ O Խyqb[v5y4>r;lGbׁKU.[kś4"05rcJQL-Topeijyʋʜ)IJxȁ\>2H\wE+h頀& Hk踂= npAB7GbW%4/},X8) <;XYtǤEٞ*V^!A21"T8VuB&;}.BBJW`vKeث'G ,9}@ꈏdjG, [IboުvTPnr/3(g׎N#ۊ3˩hHV%f~ n 8wiBwK.9_ ~F 4bxe)ͭ٫ԓ~h*qT~|PdG\"h#4 -5,ꟹxK䔪DĒ 6/5'Xd~>Z숫:f|_l+C{s"s~OJ;\M6ڋN0)(H㉂)PUi'/Gz^`%2Jj9|zdΊ\z8%W̸S '-6P@^,YAs3ۉ>5|چ%pjTS=o`3[Q 87 #8)ɴH~xce6P*B^s|s;,p7D5:w4!ԢƘgnCE wr;_T<=[]:%GMɎ}&: 2ڝZ(³#?OܛjR%_n]_٭ú2$bN J' 72ogRpBj`n֌{3mxj3\l#TɃrUHEruc(|BC8ؤvo*Rj˖hps'Ψpkվtl{ H5z|Z9ʎ>Wv_pMH1õܹ&˄/[@J{X}#1BFG>DfS*F&Lߦ2 2Yg |ARg=J2؋YEJde :xt,3aew6%Ҩ-E#v/1WSVoud͚,l€듂'؟.-gh|UX`naAWɪCԟ&=*Y0j$%z=[j=/&?эஓ4)"Xy8ޙl܈1<|zmZsHH&? cuNQQ5C. qk)hQֵg+wI=)It9p64su}㈱-1澣=ev$8ç/!`Ӓ-n+DqJ]aGا5kpGZEKt= ȏ`5@uı$PQ~B5Op V[Glϟ+} мv4lUo5WkL:f9٪uV^ۓZ.7/6uϚ^ʶkJ{?!>+E}Bх) ZMq|K/vJf_dU;0)J*" f'%rݥi$5) o~8??x͇c #rc5hժ6q-+6@' SpڮS'\qphýŅ)4YP*Kf5Z6\HjPFP54/NȮ۳'-qڟ>1\+9:᰹s<Sʁwh|hv}L@ {q"i<)J\s,fmO5,/B2]5_q NEƖM9a<>zV.~n^&Xy'CewwGӖ k\&tcW 2ý}7|+Jq7cs |™w\Gu釣F&.'E]%vJ6q5c>mO[O< yS8[6.|9ѸwscscJA߰͜1 _Crjr8Qalfۣfz[5~Y턫W\,&?c-.n00`6q_NHa lcb/ĴХɠ ^h".%yyږ,q˒TdTG`42yz̛.Q' &.Jz CǀRL֐Q; 'C= &P+}&p,^7 /IF'z$P s3i&a7&Ew|[[%9!C x:϶pz^:Vˋg]ki;1;'$"; *~#;G4դw)zk)#<N^DEHhbҏ=&2QZ끪DS(Z]/4;bE` -OUCFg"lY.2G./מ<2eb'[FX))\;NʹurqP;Jb3}bRS ͒_< rikgƵ~5XnS/M؂ų8߉1FDiհ P16?V[󌸧;B ;"C3nǡ&2#RQ}NFtQLiO)"9G~QSLvʨr 0[]梾TQO\JPgD}Mz j|(a͒ehWaJ=Kf${GHdĖ!Ə|]2ݴYctr*>Tl\n~L*MB-H6oɀ(I|SEhc#Z]I+h{NɞO GyMp FyQ2AU_^.+&^𪣬|aqW(۔5&t̘ψL[`tXWde1X=K1iTIDb?L_rhh؏c l8 ̒!s%6*PFE0e(8akBka * t_/W!T{> ڭA 'c)@^ XGZc\,Cj`vb8y ۮya%mSQi U!cZnDlX$٩`B0s?V$ S| 3i=N>~X}+Oť ,Hi9d7  A z-ŏ@~M$3]O@cOlU9: MnU)RPT45A !,=e]aޜf:otPn$X?X-Hvyo,qP FzB8-d}Q6[=LVQJ(%oU2Z`M6a<td"ܖH9R2wXlg5"6i"h \wfm$;R9{/lPLR3s(ʐP|<B}/z0*ьĕY2TY+ +[HSY)j'X9g{ yEmML}@Vn/9s˛ǾÆz,]vz7(U:>A^`.M8~[AH`2mpGj BQ`ѺVzY @U\,00+eErc.U4Ҹa@˔ = P|[~OGi'wa2`;$C}Sݒ#w%OIv4~XDyEMsC0=@RD$Y+Ob6-fVCI*ѷFsU31˦16\Sդ[}T(P̎g ̳@Qo,Oof^Q:i fC Hn)HSo3^ ЮoҌ33Ń3GA#?J %9>迼̗%ۿ'w>[yB 1mjzJL֔xBR~WUM vipː&?H=B<`OzP@5ri9u"'q!7ĥ3)Pe^ k*VE iO2l5OD}G&zo}¾|¸c{dT2LZ̔j בm [iTJX r mc`? Jj!bnTJ@%j*%GբT;+E#-t]e=d`}\b`gd/r_a=CJP5R?ar}yswƲiR; C6+Fl >4H{hK 8 HRh3 UG+I]':Vu6;xa` Ìrw̴|Yr( ߨ/t 7xEkƸtUMy[nx"A}̷ \q4 lF(M4H|t=Ph3K*^ƣ,>BC9L IϰVɅ'NYUy@DX䓩 [2jO҅ݚLA9b_ ևP=r?+vbq; *.f'꧄ _,wm3|9T6QO[¡kHWīƪ g I Xp G;B^ N%ٷ$z\@RxTnU4U>tV\PG2͸e6BsT.+RhTY8bt`4Bw_:=ڙ66򒗻S-i=PE懒o^oVL0|Z 2|"UWQL+g*޽ɼ%&4z+n,fلL-)L!KxjKH٘E S^2a"rY ~Z95Ut7uBO". OyfPL;7{2(hju|KZDy[TסLNxК$E?Ijyp<%DD8?:ʎɣO`gG=MC]4մT*BGLƀVkK߭<`uk\@{ sp<"" $fB.?1DB#2U?T78F'q`پXL0,u,n||:Vr4N'M}A(iԳK_ryb٠$< VsՃ.PӃw<NM 哶lfnzM*nb3=R8 y꾟;l"(5S"~PEx[`WBS:/dD*fl.0 e0N1}@`$U!=krr+|{FPF)_¤3DN~и$Ě+|M+[H.f8-PMz4Tb6?HUI-eK`;9΂Dxֲ<7cOFW@jUNr,5+QC7 am;MU4r:fW;kM1+ TgnYP"$XdHX 'QYȠY8ZaS&,צ LώOW}-\W4Uy %ޒc`J8yi20E]U̺ 5Z+h,Z`r1 2qPÃY3MW"g-<]-:58OBd?M]5;A,n!TOJ!8x xkVvya\ Ǧ*WX(&xڡ}?OE~.x?\ϤtiSH`Uˡ4kx/C+ƫb=Q#۟0J^OߤDŸZ=^t:S|V"Twua-c "6Bӷzs@9+ށ6ӶQ6~74?=,ĐajԫKօP !HWEd5 A^CKV•:VKu[Yp-_HJq 4\oa@@u@H՟G}{ $h}.)geUr.dtX:#_쯹t?4:TWLo'M2"'äYNxݨ “Jg/>ͳx>|ȹ|u6-P3sp:PF׾U~XwjBh,Mn03]]ԢcQib (|oC`R<2D^%q=c0@V8bSCIQmBIr5X3ݚcPƌk^\R0X6+IzQ`iHw+܍JF9Ap*ᆢ:i E@RnٶGcΫ4;vSe3[[*'TuWVn<Ydg-`?-N>m.XSy_@v庡ޖũ eE;@M}e=>icǥUB:϶g) 5( b7'Ҋ+poe쏦!Iv8H jCc b+*@ѯGTL 2$p:帝ZbjW(?+J./00a/y6R{7_4c ~U98WʱVs7XDy$[^\֗#NUBW 4pcޟjȒgv= 0s!Jչ8|(F\aQU1cO]UR@U5 r}\o iBGᕃ{W%k Ͳw?u񟺺Jxw2+s{Ƨ=*Hu:Yx0UUEy3 9@]ؐ\ ʑUvnk "SwC(߫?h >G|20BSg]z}ٓz72zëF̲$@o i؜$T0ʲSayffHLTI+<7텭DoxHmIޕB=' ivmiz+d5Uݾ+~T—d1p/$QTҴ9@كiHG5}k 6(mV2HjXR^l-R揤aS.mY7B3o|$&5[Uw #2ko~ҞmCRQ#>XUb02*1⚒KAA>@@f#o.|vFO 8B:5NR &'uyҪO.>b2F7=G/9Mcn tfA_g }-ћd(X6z~ll5е~MϏozW(v͎ϸOT4$gwMƘ—{d&7j];Qtվ*$^-[y ʯ׽kp_tm@l-0O~C\@CZ<5#2oT. 5@JiݓHP,R]-"7g/U-2|_v3A"|5WkIλu\ZmȎ9pL9+,P<33dV[GUeMJšmJ:'lդV>L-}0>IفR %CCa3_N-:zPU 15)"Q|( Qo=IX6pK0'%=p\Yz6N -ޤ6% ĜĺL+ qx_kh8Wɶ5'M/_)L"*0qV ǽ# ݔ@oeC?4[iy,2-jpuVʶRY`~-#Bc,&ug8;9c+YO~:?fhYvEy+UcϞni/ l]]!NڤoZD`xhL32N16!ͱ;%*NU&bSڱS\0 sQBYV!3V\0Ǖ(wׇiht tv ,ws,(9dm} l"GL^%tLz[U2 *VV $0VGR!X]#SY|Bq>ZߍfJ*Ko߉ C{_l.&h|ǽwjTϲ&+>IYWjJʩ Ei[p:՚)NuwPYl+kn` X3M.?IC|PJu[GFЙ lܯ5VLTKHq`V~Bꆜt7'"mP!kImFji F[szvd$CK읯P,-14}ISeE+z0{Fw#&+Dwҡ$-%=|Yn|!L4n\2aUy[(+r*PHFD%l]ÌOӯ)=OFJ:t8}|&]*#hCrW$k=F]o!1:*$u_)UiK1G-wJL*pzSZBq7_ddw$VtH CFq5#lmgs^|xD$g HT~ɘ:=-6ZH0!Wf<.ZK3tq.yp$H8}Vb[\_҉]gt!~Қz' J`٩˖*_A2,J{b5o:BnGržzQ; ܚSe}%SEq$b(~r@b 0E!kND 'Ge @iUGf7>Ӌl%>+7E"F2SvӛrK؛!w!t|nXT5NZyq* ;?!aoxr_>\|)W}"8uiJThhY fߍ)hm8EޣB,a~"{cؕ?/҆hK(vJl}4OYGAuI' @uWG5+rdNzq/Rl8WX;왼лW?U"-xC,CF"L-[%8XՕ ;vQ U'Sm$ADu&dq=a%/KqH.*ٴk> |KjYL'o'%Br F;,[E /63E^N% r9W_ӟ-?DT~2Xzz,| Z. ,MW}\DJHZM@i䠰; x+[onauʵ7A9Ó>Inu_S?Fc{g'N"b"_?*AE2sn=k eG_B^ 7ɇhPO*%qsLobyK]Dt:Eg9 7B˓p R{ IN-`9lؠi{IVrbVg toiEk1$I8K!/wܐߙ[ݍS(%N#u}֕jz@!#2*yu*gγY|ړlK`h( nЛ;N%qUWg1-S]# :DiFM}ѦiswlMqy _!h7X҃E2ˆp }ŐJGûi*6+Kڠf'_wS٭HKX!Ͷl8QV"F#„3d zS\k 9װG:3;i!_y\gl f[WOu/>|oYU" k-[HG1Pr"(/BUuDdǝ?HXskHkn2x, (9Pdo 㑧"Μ4.'̕D-dNk0c<{w)nIyΌLk.lF:Mt%p~'!m{2-x\)%@P zt=āV#hK`nOY%},g9` 0C}sy 3{*,O ;zLVA Jf*Sfի2˾;IL=9K SBl\xR[b߄gh khcI_MCz#v9ꞅBm&oGH/k"C_\8Pdj'ISqulUttYb]HV[EHCu¸>g[4ڽڊ3t5>Aq)zfi]%CY{2w%&b'SH(24m] <"kme,k!2i4z{BH>?N", |-eI j0G0*^?=fSX]Ӌbx~r zv{Ɨl.7l* yWc1T(V/|•9(acYdj3?v2U₮&Q.;Lޥxrpwvu4*/۳NEom43ftw4yIMC&ziPȻ~͍/KPB kdP'vӑs*f/p "QIj}&O`MxT؏eFr,KȬ? փkeM p2>&1MF<ɇU;F*-KklD<yPv 5xސ&fn_wXtu\kqYyX ¹:)'''UP.OŨ.3:+ vT*=!р\e^r.# EOik H8-a VztwwRk'#%oCn$`bcND?xsw,|)5`}K XB'=ā,~cCfzCp5NwFY82eꞄy[QA;SvIw[r$ym "y WKFO k2b#iGwˋAاsQX#xqTvyxc6kM((5 )$ëT^a̐}? 7QZ{PbC=E\iAjD뀼(GZO0'44|gžtޔ헑KuHx (5h{M0f"c-M{9vO1CLd\~."p*uKsH|ux@~nE^Q+0qqO#)'3R`V;%gu0(cF[uz>-o;fƶL3b*I C\b&kozn_*"{Ƃ૬pDةzK'^#j_>".1!f%=Rn-O/!Q8JkIpxZ :8b_tqEj[= i-2fΉZm>?'[h~ K 4q(w]g_5n5ΓDHQV?؈v"4,+I,uHȆ6Ho.F+eyk+ŃII8s_7qF M bK%Y%nV5^ #r4 ws!9o>(%0WQ)INN|?S''22[q0o!Jy843CLeQY9cHza5\G6~߫1ZWa!N&'a)"DN?"&nXXa!N{hǯ I̛;y `\n1bKfq+1a^ި䛛M=TCzju߽bU8Ȩ0A;&CzU/Hk?` Zθn3c{3u_X>hzbL2 0BJ_8)x1dä!94Y^YD~ OHZi)dY :*f6>?ҒGTDfwOZ%H lm n@7r,FzFfi[`f QKdfA}Ʋcp8&  {G}KM*VDjS=/x2qLN7ڏ&:Q&sA oH [ +sge&>YML:#wٽj6 )gh5MUS+a iܠ4 gUYzM38R$+(IR4ϝjEN9{Q]}r)"!M5[)ˈNw|;$=BFe gۛPC\L_ "Ii5k$̘m7u/qN%gHR;"bK,BBŠcmA J9YORkC,(, |~m)o|&ߍb;{3AtaRVKdGhL1WE|l=} xaiz_(/yRaD V4}][`r7(=ԠcH}f/+ez)R+ToKiĘO jXPCy澢/p9VѰv{&ûWrK8:NM5DHqA=V&I2Kݹፑ%O`f,EgO9sV4 L "Rn6һ(Nv_+?^^NM3e0pbYRIGEB[]X#=ZHU/ڞy7:PQ *9[Gf^^*iٕATB&'k36#j#ZT"ī@P>5g՚͸'[s'A.yNak+RjQDz8z<&/ &T9OЖ&DHj@D  ]QF4?FQ*؉l%SgD<1+%52ŖNn%4@. cnH/N80ffXu 3}/ƒo?^}qܪ OM ;~c^0h)n]@ 3|\$9Gsh0p_XYךV nPdy&j88ˉ2 ɋurCg=EL^i $/3)FI7 ӓInl"pjZ̈;6^pCA`ߊ7ܖ467d gԉxHgXHf:icA.dl:U3䟎P?Ku\1zWÓR 5쑵^^yɚDr»ц(I񽕀ON E^|=@I+goПe}BM3aݴo\Ke>A)+Ei!榄p>>x`#b"NG>{,%'$O(n>-{ |Z^Y3񓿂ZSjdžx"MoQh-1pQɣ|v00dæu~`Y숺I߂j0B"RfLMh=)3 d 7Uz9R#jVa9ܐOp _ȩ@`<=>J5#w& ay ћrJ2QK'üf:K&B2oݘ5*#;{T5L$ǏYZԿ7l`1#;[Ho ̒Qr"N>M7- `չ_a2g)&L)5s08U€1ɾ%bPJ' <|u3ϋN%*+̬y"/+ʫJwҁ})am\lky~y.% wgj#= aeK6av8Y }̖xU!C%5׮ g;^Hl)̺ 3!X34i$OEҗgHZ.届՞ :P ji9ڍ3lSf:u67pjOC@GL1*?ƣW;\PX飽4YyqK6Y3VAJz%i'; 8^L_3 rGX} v=ǭ3仂E7:i (@0`9W9OH&~%q Fp6d%sfY HH6GvƘ 4r9 m]f 9H^KX'@ɳBPwYWITT$.TdÏ̓qGüQ;#$TM *wu=鎔m1h]iDHU֥K>01xD{p8}k~dzm$(_v%M0;K}h*oX_,^$A‘$eU1z G>JQ/3:viO\2BG?zHcNC,uԌS ,˓PĶ+'VT0OEV4evP4h^Uf| Ɲ%1B&IoBk1/Jtw`b0/>=KNw8/jlfQn`Tp{Q lY`e.tIS>F &IIíy<o= -"VTwmᖧ2.sNAFAUbc+ߠhݶzhiQcRwP 2{tp9[E;PkN'+kX&8Yeh=!&m<\]; hMcpiOX~OhY-<"bǴ2Zqy#T8jn8u5e1q Tz vմOs  ".f{$ufh\p5VC`o`Me7HII#<  6ϵfXɉ`fY?wD lm7юlUptP5Olbr +|.Zs7KviaTyo S S@{4f5Kv)ǧג̹!/'[ ޸|1-׬<5ٽ/gRreTZtCJ*nimT46+V$" ׫h .zK Xi`t9@w?ٙ'ɠO7ɐDg`&+k [Gq/:[intk,X44u/\ aE0R-e<= G z  y<罣eb{pf+ӳće^`FrÄCA!fi,! @Cc|(m& ޘ8Z ">+sz潶mv6yƤdVzv@>[O[PCjkks:- Z^U*6@_zalMf }I,y-t2B]B֌ t!*"6*EpF>,3=N7:2ϥc* ΁e6[^xlԆ/*%0M|˯,% _F6X6 w2`؊Clm$A!Lr))0e3 ~޵eM*-4*?ꔽ2sؿ 4+nG?EM[ eL P"">%=)ćwl!T9ߎwTC0Xxu 퓨k 1Ѩodc}^!{{Ǔ Q`IiB7Fi^UITƴ5(<&_v<p* 6R|2A$Ua dPłѭS/a>EOlv(~Bgen7b?@ `;1gS8AA2q"w5xUB]x IJ# Ϧn@8 P`P14ؕ IIЇG$B e1%~W`+biAY3dRJfN\ã,ZqOZpaGT5֢ۨ7wo?8rtB|XqP ;UOF:N.`qHaTa?,@%+F NYv6_gJ91QM!CDe*s AUKBt f:C"像C*c*j7 _!*F -"jp^|(vmfXy [j@ <bA1SQdܦ-Tb줨(Bm$^OH#ߪ%ǮG}5]¼M_ ٴAx&0 \YT'MXs|=(j\"jJ1K¨DG{yk_-kȏ>/ܝ?}V 7Xbı#7oSv>oL ?t{ZY8B"<ᑖ> lqS u峱(&=eb&H1 1OoBdIFoKp;ʹM>ڢ׼&6F%K"|<UFɹ~vʤb3g}2*s Ge0JN/) "0@[VYx!*;~4~=(8( f=wIyX );J:: 0/4K~{w@2Q3RL±б[m(WR>D.హRLhEDfS)(<x,J:c"E`a%A%8p5?v@dB tގ=Q]ޖ{}T Zu%X> Xks]K@v@nFU霛:){K;!ЗWG_etɂ‰ +1oKE8`-Ȃ ՗*((T\xWEtXsD# SF$x)`a68'֢"61[ Kx ,7Vl6`GB~faʩ0k6a˶Bu/3yBm#;~&r{dH B,8l$a5>G0su\ j Atn,CVơXJL&񿖂1r(H[BF@#PIߤu[Z$_),6\efOs.Sw,cY,';O]hT.>-x U{7C$~0T<~W !Aj6.e8]]:Ɨh3)2c_S( t]$\S#g 4+ O_'[r5hs| 6|ĝbsT,i,gEEX{Yf;XDSO5|\KM^w~^3Xz70Zʍ.S¢x| "=;X*h߱Ǧd#]8ޔt-b^wo4D#~ȹX74Ov,2v D-F@{yr. vnSAC b=gRF"Yl6H&YV+Y]ȆHS6s0pffHsJ,KA{=V?kelpq݀W1w@hbDn€f%,Z7Y1gz-1Y.gNWc`<Ύ2'i#~0q1?|>F2n9xBH"#Ak]*s߿iLu4/5]6,7uʽK܈c\o CN OqX=iVu|E=sӍ)7з}EVݼXNi]10nkyh(=1c(02!~ m8)ҭk)4jPeJS }{Ev5d,!A$L ~&)s#*+W[ߢo3M# Fc~KrZ1A% hPBp3@5MxP@VI$gJ<]6`lS$_,Ȳ/gpzO/BuLIm@box> SW"_ wn^{=0sSnEØ\Ƚ`W?uyr7}0]W!1F =c_Ӑ`\<@5Csir:]y/HKx Un`..J 1 I 1(k>ŋzdu#yEM[[(nP>9,|t[gÔ ¹:!!y4zd34mlZtQ϶t2<짃+*v, /?ۨCxQ{; JvG.7:~զ*)K&-_82{/nBzne|pWwNbrs4UϟPE5:|֪ʨɌՄCgC *S$8}` ybڳC'j/Py,KO:~{ o* |C?TnK(rypexXv|2iP[~ּv׈?m \E{Ħy=U!R#< ! a:%um fwj Jᕳv! ܆6pS 74g&zJA2lm9˥|&27)/ɦq]4@vlk;I-"W}򭠭 ;9"6#ۑ !(n*<1QLӦWUwkԧ-{Ӧ Ű{i}4XF27rPIPń<% e)J"qaNTO,$u(OA\ h&~_[&-ڍWcR!97ؚL1FKr鸜qkdf?4-TEY<]un2VbB^T`)b9RZa_"N!֝Bio ǓehZyҌ&-m)o)+3*XBըI`f;B `p^7o/Ԏ!='_ť︑^.]Hǟڇ~HUOczYM1%d6l>kαs1kq7\ӂ#kZbeNvok""ۊm^h,O><\!8R-uÃ,Mv?k83LuCё `*4LWlBs;ʎi3 `^x.$ypSxtc $߰P3١ƂKVSJ0;܊[Q /Nmmq^h҄ 珞/7rm+bS@\t s9vL4!f`s|nTժWQrikf?GMWFO*HT``ϭ`T[rʬRs"RI]y-DOv^DiKo1=tCԼ-pByԐnФ߶PVh3XBޔו`p|K2Fel^"? q{z 99h"8,@ ?*y9 ?9XbT-t)F n?i'罋v*K,/m e\qw4VWfq+/v96t{e9QB#+t3@=giA IrC6ZpL\{q&Bů1NxЍ^|PY_z3 Q&VU"'F뀕Ώ#;#x#]ax5|>?$r5%؃*_Cז\)q+TTn YDq7)R{'m*}e Z<{uFё =ܫq(J'ߊJqI,ǷN8#P=?幒VyF!ZFMkuwPx|:8k 7iRUzDF7]0U"WEKzOKOXekB . %#99mIQ"%teӻ=8#/2va%G'!{(5Ox`op2T70o:em۟Ea+:k\YBbmص oU)퉞 Q9wsAkhj k5(Y\}e0yd .xӂ֐ޡ 5;IE*?p㠼/I&OZDcaޗ!\7lD7ʮ@ Eݏ-b kZZ ݹf\?$9ѝ2]dW1$훠;+3MwPKfx/sba.CVIEp#I>y^8@OzUFh+3a1/IxNa}J56g1m ̒Pe[uI^ KG-&)MkQ~YPҶLp+: P9ߚ1W¢j8OYXdeIb Xu4=h3D[0яK~uwCBAu=[~pBgPH12U3P=ӟ>!"ђ{Y97![DV!u|ƢbUkE 18.]<#ad{q+ Q.j7{JEm#ؗ6&xk e1">BS{_j!!J 5Q\s/"[?v;?!30(ksDJX0]4;EQ{u%Cls;@a <KAH}Tp[CX, SX>~ɐvKlw,>QW#u0~0 xOrTc*\4Bg_6 $Џ5_TZ"r<\hg9/grnΝsQfĖQ[:N:0m0rp Ru"8 ">4 +OCBמ RN = \:)kEfyDVVF*+A (K&o:ܯJkw*N I*RBI 26~* JK})ɴIC@J {7("zt;]|hxXZf)Y& ^rY࿚I9dč@$L; n3!Ќ%ÀJ Q$q;(81H *7W_JyTIGpE`7Te-&E[\d娯k/ eyq~kgSʺZƯȎL@BNL%a} >k];1v3a6KU:Z*g5tImRJ3f(tf,28+rGC8$͕3\=36D/t`q{$lzNASzLܦ@ieFIP_e2{Sh_;#V ))Ώ_674=S9-LYe"9LoYN8,!F}ɎXI#'v-,bk;vdԽ,S};+&WgTvnFFԖ"fqSV+0hu}8A#.wz,]ӾV9$*C*؁{F gґz\ˉIx@rc|Ǟx ` X75F\g;)+#ܕzdi1y0`%UЧ}|3t9N޾Hmr++w>i1!N)+EŇr(7PO"mُqCIELz?C(0~z{nmˤhF= C*)3`;f: <l*rhlnA2̠ &J](%= ;͐rqJXF4d tc$#)Դ wS[[bl'1R:)8lБtVWMeŸrO( o>ALabmӟ=kqjxA&s`ߒ^_ѩ#H}Z95t&ɽb,|Źѳ *y-. hvG+ ,KS90wSX<}mr %jPs'1>/%QakqSjp0n^(e|8Az>OuC-yCDw E ռDMj;D _*9'=H%U^6ljzo]}XXȪO8WW7=D7_(b8=I&N;g227#FQhu<b|J귘`JX R6xv~nQ7sVEd]ˡ)t 2F,D4ՂB Hخ3L@u<E 8!" "E8haQ4mT+<[p.SñxI`lʏ6jD$@55:I/Q8$(Z4.N;? -M`0d*(Hގ )$60j:[t7_ܩU;f3nS#l`_f}0UrMh̫-q"C[F1=)(hƋ0Լ`pue$nx 'V#}.=Z: 6 Kݳ$P@F}]ô)󘍎O e):Lۭ>_ oܙ+45pE7F"6Za|_kIfZFoO37qn"b[5kߎe5<Ѥ'84(aCTT kKXT 碕̮ц wpځ=H2=F)0i Gھd|N.Kh5.l>dʏ@K$O=,`&#ƯXM1oơkUp`6!Ku=; 9l͸2~S8X/}]~Ӽ%fSGtӗ9& ^I(!I: HDm˼b[#&z \6 )|g:ٓT,=ss]D*}!H* A}IgZ&tQ%ikhª,Te ;gqr*@I X|os,6ŰgtfGC xi2?ԸJ"<|ն'CeaZq:zBkHg_D0Կx{A' ru%-F Küxc,2\^ bVQߩX/]X^L-cB`Ia?+}TM&bFדl k.2=mLyF˾G͘:Tl+hyf;%hg%LO62r(MU / ת9j$8? J}y"0r˫^ƆK}0q=UƏToH9Ȓ"&TT6L{ W~mt8>|Ǝ9az 01j Icst6DluҐY9`"vc<7DTx2~69Vȍ]Xy,.͈ @a U'O\=Շ  pgH}3>bw+ P(i[+yBL+,kh?-{VH̛cVGd Hޠ,Fm\,sM2M5͉qJ#!n^ḱ\. 菷-d:fzms0RK=j[,ێS + Nw~mfy|-w"U.:.ۯH~0BCV&3#/@s^v8Wz@y #w:G){Bى $2}*b $ɔ+Q~`3>}9b;4F" e0" 'a߾u[ CJ#mZOqJ〥qKQD{B/ V v1+FHh5^bJS?}9}kzjD4U=1>3(R. ElĝڡǫH1~x~`7l`GU}N:&Kc-RO9̯r[4,:&w]G ȩ( ێYudcUl?:6:诧d.n:~[W$DTU\8m(:'4V`LS(8*'鼦:Ozz8hs-sZ hc[eg̖k =&KHl†B|Y~-T$QfB@[Ǖ( {B .Jīa\o4wO(:$[_+\@Zz8ӂmV2I_'e,9"AX-U}q'042ht޵^sJM2͎dC܌6n IRf,(9Z1\F_`P׊J:O]nT;` aR9ә_55Ɛ߲J}<1}qٮO NӉ@&ٴpLbmbFvsSI d74&r?r3UC^ r[g"XWr|IE}G̱-:eH㇂{,cRNPDAC_N꾟lrt $UI*=聐''D0 Ed~)j{W}dA/eq@N|FX[E4@Zm29'2! f\nq\we*|&3;S nc,-p&|=C73 9Hi g)X=+O0D~c DT>t8=h̶\ ֺ7 Y-Y8t|⨭|yP &,3(O|n@u2\9ژFEME6-Djĥwf:+Ӂ7ܝ.V rv7,LzO(|4޽\cЋ6snM#R8ѧwa@Fq޳?U<*f4 7m h2~6's/s8B&-i%BْySjc0urS.|Ejl;2"VQ;|7~{7%)R'/Z4Iu ',vf?i L vhwT Pӹiuנu b|2Mho}`8b0L+L~Sh~ê]GB2,蘗;έ->`{d9wkr]\}W *٪k:7S8&o_;ph$e3ArIOPHPc7?3C4RJД!މf7Įl͸JF=vV)F|޴kGa἟~e@vb!K>kNLC(ZqfyiVFPSd@.?@FZ϶̵Gn.?D9Fs hε[{`XS~TͳTVz>3Ɋ(cnЗSn4iuX5' ?Dm3A9~(sa9ʫkʖY8zPɠJ%v͡u-Y"7DsOUC~'1zg;G+\;F;oԌ \uB<}0J3p6!vӕ#U~jdp_#ެ^QYВx4U8M<ܱ'e϶w0L듥vƺRK~5 ۻ<+jϢYu9ItMN72ЏN1qv%ͪ'J|8LMlSDDR}pn"w]JYY3jF(t/tLw\g$inm{Б"\ y06/4]#!5{3tSD, ]%PLY6œfR:ԡag9qC!BȎb.%j?3h F34^n@@1Ż7a;y,K%ÜiZM6,#Dxd8,Bj_5!(>4 Ѹq֒V#sƒʖUW NH39mm2.jyGv#ް[S b (Ӿ;j_Bp)@\:d5b_Ѹvsڜ;b5wH/Bkh8hoZ0)Xs{?K)pC l߱YlJ-'=f)Խ8?_*xt$DJ{e9rDyD@nTd;!m0I}u[kcR>! Ě`Cz15YIG_;)3qI;d!:axe8J> 7O@pIQMDY&kS6jtl8RwF횓HHotK0ۧ|,#6(]QEz$I[32]J]RQ@ڽOvDbiש*Vqy꠫a47?j{Ex$R] <7v;Y$n(Ġ?sG 9sRTL 3{X+y碅_ 4IfO(ÞzZR;* 7A:`!R cuh͜Q^ ])9>4Zms Vk 6K2'm΋RW(;ݻEֶv"J@ jd7 ΃{n2G%-AXOKTG\np?Sm~.TU0a ddPG('=+)•NDŽr%oW&{tGs0Xkq} @f$(6oTq# b$I`mm֯n3ə:=ftduaEWY$$N>p;oio1,tKHbZg#f?9VxuF6/꣪穻DڅGDZ * T#O\ZSHװECsuN'HiȂf$STEWYf,Gxu۪@[vĕGEk^sk*g~*RR~?uh^tiㄆ YA>d4z\ ohZE>܆rbqnh =cgjv3I :=Z@O|ޅJzH5_BYt\[0́?Du'J费MEhw1w M&Uj&lVg" TR:f|+;|QTX puH Ά4AUJc7&U;̞Hag )Y!]1y ? WxsP,tIK\^sԽDQ;g`P_D:cu^vwsge `Ҷ)+4ݨ5oICwX|#\يr1By mHRtQBb@#QMLi ۡS(:"^E;#/|+&T2ht<: ݾb7-sjC>Rt8S.deuB3CYڠW[4k:_꺾V Rp=ƜZOe)p>khG%*H#yYѠQ;euc B2 NRmqms˵_qDz%37%Y z.a #d3]+^ ;t4Vn/F#t?H~ERuƃ1xP`; \Ѱ 'TalOH'73nrJD-JEd.}Zɤap.wvg :Mhz ⓳vp}>`ͬ\/Qh}HBN;05?_a=`/m\P@(K{zJywžg1AĞ]÷o}qw[_ d_ud1\[u m2?'6Dy3TtoR_9xY`׋X>$e(ms`wa*0Ғ `uf7RLFy,09&ac|6g@ybϟowS)%!Pl̼'؆(QQ:_:%/Q;NȷVsgrd\ps'cYw ['+rB0A\0;$RǬh'V=Z$f}j(3h66*0)GPnfŘ-vbh 7sFma@] m;oz{(>} fxX'v(_>jd)IXk"d Rz؋sAnrNC2?|ܟ#7|R(76(.:zf$7a,A+N5Eb۳*9E-x!Tx3[e>GcU{ȳ7M:-MLH@תfܑD͒4ͥqчKwcU#Dl+4=:^Q(YoSE04l5hweMYSoy:^2V-|sg!4cY֢#Zf~F /ߪTY㺶/< D[JS;Y("[f!v!,^&3[u1=sO<ҹ1Gj'cFV8hI5NAeA3H ^Xn6Omja^ {? 3:hC땡wL(Z檱d#,$ׯI}^_ \],niثFe=:>) 3[#$" C)54,J%z;qt v'ZLRjU&%)!5ݲܼZ5oM`[<~k"n . Hu{/Ǣ)} zb{oFG2 0$&I~M %,l)>+QÓrpu=Ѣ/fQN@х17Vndy?-)T1IU}U"LJ +*bc dҐ8$>p@UGS.h ?H"' ~#0X}$ c=)w!br#6^-ټ53VQ{:\+".ӡ\\|ӧpZ;g .+h]:(7 U 𚗀{Dio+]z*6ZIU!q="y֯\qD[ 㷧 *ـ_V{\tg$#h=>1w2LX^jK~Q&H=U7EލڴNg=,!&@75튇LB 1$"eS8ͼYdg+a:JySiX?<`]^kI YwĻ1>!UWGGC"THO&ZG#Z4d~|(x?bi">#. Wta) ВK0oZ9pqe:hr[z_w T-K,Xk`$ZjGlGy [?Gk\g4?IO:G6Cݚ pz!4T {6L҅'q%qiP喱z&lF L0kO4/^G x(5,=o``BsO>(TV:X*[kN(?,KVlAˈ̼y<(%%:2y8HES:ԇ{D^sJX k<3 FO*3!9PJn4uCD,:824BUiziC2\%~ad8$^{h!v/W2Ҵnр7X"0+Mc8N+'mc!:f6FG%昵B32mCJkSEbGuRG.''DVٙ3>.lR_9wg:}#ُK46K"γMߜ+1M#U¶دG47w|ODbg'e7Y&rzl=("$Ui`!tP>py|[wOnl,%$$ P`sUc',)ɰCGRěYnu_j3xDa Ή\"tjS򬦤6&/+̇+[֠Is",  %|Li5΍38Hƍ$p7< n'I\XIpSۣ4u O>3tLmV"ݧchDC+_L)oqCG,?E`E\)ܦhQŒhThpE qi=ƹ?ǴWBH d! d\CuJ3YĻq/{ww+b#X⢘UW=qxOTQ/=zK[6kMG&o% F@RM]QogiCU!kwnJBfRl!l+[5f|8my9mx!4-Je_»%1 jO։ϓ{]yC=vOzgrɢN㉗-Ibc# B{"K20SM,sbj%\ݴloj!9DAKJUxQbݐW4,G&t?iWaiGk$ְDc*skf4ʏ!NmQߏ.M(Ff]h'l+`qn/4w(:SgWp)\3RIpiR\pfT'yjb}V{J+*( w"u2$ԚY v] $}E C"F10"nz_cSVq!CzMHNY)V0E=?j/6d4K 5 t}=UU1:Ŵ%AkB\k{>B'r!mGuQHu_m_O9nAkՓ(*k?a k dy?fv|i,W#úaPXmZs& \Ɩ)| ٷp8zR*3!Ql$RҴhjy,e5+|\7ttD =O3ࢩ^x}k7s8jG#bZFZ&3xEڂLdj;uh0IlW:$>ʆrDŝX:Rzhrv#Vw;ɮ.ؐ&ɷ`Y-VJ@V1h=ve.zqCt=ǴT j%>o6XoT)ψeFTLhP[YP0VV7|\yX̋`E?T8,/fՐћ<ޚc\OO.ڪm;PVi>d.H5k䋂Z8QVbK!h lG!?[%p  s2%hK[=M% IlD Զv.<ֳ|l"dX42W*R`Ji#n]+lx e5B*[z{YF8Ue)y<[}K-2ub;X1ۀK)4j˚;Cx@4U 4;!V#XKXNsW|~ EdN51Trm;O{M9];RB=lQ>b|wC8zS=\Xa mS"}S o|nj<BQlzt[ '8Hq$gX_ҲXIL/AYOx=%%d-Yris%B>-Z 5CyV9u[Ď>84|ZI5)"AniOiI )ɫɼVN5r+U'R+ktMG `Z?86q H-m6֘CbRָOhAo;EN\Ľ`,F ep1>Ȁ`l8A74S%9xuA@]>\( Qp~Gڝ z"k/*%OSS, Wz-at _;E+ԣ wt59:[` IXXW#Z T;w"g.v!'w%= 5wP`u 齆uJMnu h<%y"nVܑ78BLx]*1 t"}3.c {`X2n??HģmэsS ԂLΎuaK4M?Coucjʛ)ʾިܩߦW5VӖ2yH(X<]MWQnvVjT""H2Wgj4>F֐wgpݤw ڎupL'&M 픨`},ڤjwO>]FB QG"7KY~ pc1F</V?Zı6 AoJ3S -RƠ'Zw7UaDFd>VB{mS:Sa t ݞ]-CD)Re58ξIm^{ꖿطeY4\< cEML=FaRƝ_)")hDPdlq}pyP@z"pJuOq1-S.\Aw&@,YP)|x{轣8ﶉO$(\7KpC>lkP-g_ `=7;׸DW#?݈FaϮPJn$/ 3ۯLu@号|f- mND ۲v\zmF/V,Nek!@b܃9s(V;6>PbIj{b;{!iE+QX\1^gꭜQ|_] "JjICRJ;'奋SoE#:3F Fsg7eϤ\I R<CnoΫD}q_jQd[+S[zcb3mq@(y |Cc8bR_ԶJBeobCO|_3VL!s5ۄOzogT#.r++_zGYZH8l}2|9#A2?٧$N*'Hs܋8nu{@%;| Rh^5n;c0 Nzv-"ahE,# [@2oG@ӕ: @d Ak^xUV b5F#Xr(Gҁ6௱Z6pTk0VwK8<*"7#@=N3ݢNMTӡPe2LO, mA}6j@=ׯ1ʸXɾ2x qF~N(V,}T Dpcr):%oOLYMhlʦq-$j]w<4gu'MĤfl .L+Fh+Kw^ը4S̰*JXH>C[%UX^6Lk%\pfח]64wgxek~LyX <>1q#`ӵeX0rcv䍭R~f rzXRkȫsC(s")җ*68mc(o2:<-t 5';ra)4;>&;[ԫc7Qgݧm.E50'9s ) Z *bcU^/_jMBtG]voQL臑 azSeI"!ʵN:He̢ Rυ*īB/ Ӈp`mTcЯfgFZCfMkZTiFE._ ;{j"̇\0vxsr$b~gD9,mc{mr|яnIehKrW- a1 6,iL`\Eo[3Q]$ۄSDx"#M1K *Q/lFE3ӽXXoS:>)=ͮ^twC)C Fj\:YX(E\a>Ҟmi E&<1K)9Ag),G~SR[R]<,SBY`/W;E-4q/p6]HD9W@fDIQA#}@<= HmzHVB7b@HZ$jX:N0h^-ds2ݘ챇i?t@.H{Nv-`chE{$Iwhb*)⛁nO_KvIi|E1D7f~Aqg}!{ ZbD; kyu=_ğTMXe OqNA1쮍 ^NuYADh~$k~ 9O,XOUPa,0s4bCe.Y>MB7=E %z7'Jm1uOA DN } ~r%d)ŸȮ[5⹔13QJg^e UƈwګqAz/-Ա17G Sm|ѵ'שTGORxk9pib. T]?r)QUvKA5 bE^ =$f7`G[2Ch(}-ֈtIFSMFݘ B!(Ws8D%" ˠ4ktgUyv.t_ QX(gyxc8s9=㹢d+vzP|ϷX37ZDÄZ S$7I`*tiTӺh_dC=_{擖N␎ڟrʼnG14!s<ܽ]4HF5>+HOR1Lχ?y 8eV谮b 8?CXA+M{=sxTq$ËK+ø0z#J uդܜe M?p}"Gr&-6z[Ö Paxn n-AV$̅MTﱤ—o',MCkcMn۠^Up/V F;C3\9X5]NuPcrEf҆բr[޹ۂ8Jx"o1*k Ó8uS|D4x!Iy|\m2,{yG2j6/LR"twJiMyHpkv>E =[*b;>LKѭu\xhcԇ@ptb5e)ĝ>8]k)ǀ-ׇ$׼~SJp8+W` d;& }מR xA)ǜ~3ȦJkYcD=3OQra㒽ST\cBhQRN/d[?n–btxHAX:#)w+6 ' c~f-gu'@7JWEI(Qscr-O˺ 7gq{&VQ)9/A=}wkM6T WUb6zs|jƁ°9t:(iK՘HbD0p)4$K- ywhɿRy_~Fq]beD}^@RHel<PD=eWgTv?m oJc͕aM} ųaNuyxagok|(T^gۍLp]V>Up53ZčeY0㤤Ms 3^c_(:#(qdFէ=,#uAR<(k%_E!g$I25M+8<J@z 3ԎqPfƯ%1vxk vT#PxBXrl raPY$ eoj<%Rtݫɠ6e pyCfWk2.8`(+Hs;T%{n9Vs}_ԍ=T[cJL6E: w,WʰU{~K\aba 0)M@$,]Ήxct_UD(Ĕ.MJ%Z}Ip(N5iv82C}tYTUM=4}} mBq cP*D%@e1ڙR 4_CL !C"7j BC/ד0] 6lx`tR=] ʹQƸDlGR?;;sPH:Ú Ap杝%k΀@l݂x5ʣ7f)t<™L3(_bNZ Ez J]aWhJ?Ch6d0FiW@jY>iI8' W=0oj m 6+ylڐu=jfV2Ga)B.A u.@.qkYu?9^ رT0}w4j:"yR6gU.EX$&# irձ,Qijz[/Q]/^.b򙷠,Rp +2~W3%esk(ϋC>*p؊fL As_I<;"98zshA;#9@qK*hi 4Tj]iQ1=E4`1P4oTwlbP1|;\S+0?LHvFM (ƸD..z]2boͪKeาG3hխGD⪗R8H83J~,!{.-p}GAsj" ~D|qxާhOLMme"!/O$BJKおV":]9'8'lg9{5?% s+qz335P0ƻlp+aTE4pmF )NJ[9Y{ h(tKcW]dhsg%-Nϗ ? x$;?W;C)ֵڽ -3qX5gɱX'uKm fCCt_Qoab̀8 (eV hLmSQ@Ab[- t#՛AEU#=| P~L~0^IaJ Xp` ׆c1+q /e}ˑnemSWpzM8V,m`qr& *LP<*@ICsѴaYBJʫU~FU,r7vISCٚiaaVJS]xJ@j駼!hLx:(fgX{c ((l7&f~|Azw._B-.4Ng7f  Ϲ-kZZ|#uNj¥K}]!}^d*3 FQ /$/ܐ{ڧhELBwDć !7_ ☀XnSS4.L".ӟ1%\\^sb @,KƢ75xGsd"WCFx~HިuA68à !ώKt7k_$ ^MGqs_<x?!(HD_{|Uux5@[%b~T@5:} paK'kV#]SK P N왩1ً7N8^<$a={v2}Wc IB ,<<8Ϩ[SJ( ^NLz3Rg0diʷ`8Ϲ.%3xvd\Ϣ҇(c惾`O˕@|`p]%Eɕ`m?q1 UIjmg̎:&$i:0iJ/ɳj _i=Rs>sȠ{dWȗ+OB $fJyāCm B%3L뀋a <-l!e&EnXB'|zOZ!yiL[о(a ys [*j7UuQݛ!҄C5UComB㄁1SoI4+vød-v+>KD *8EcϞOf?}[[/I&+9r=۽_klo,:(' ,1bQoV Dʘ,bҕɒ3`13fUX(W)I؂'6KA$3\:T}536Ԍ 0B\v}z>a̹\\Rv-.0qY(ѧC,yaRSQ=M F ta%_uӄhFע0(z29&FBoWC$L*-'.#*"bZ ,CwKw;q NG~,zKot xCYm.c ĠE]H9={F ɺ/xvXMs=#"1MrqIG3Nygo6J gCgFcH׃au^:a`UN^[GqiRkƊَ;R۝T,PvYMihE*f3?T>wprĔ-fuT7ugFNe.30ltDɪ?WkssʞlvYd9G%hed UO80zxd}W=A:XL:sNBe,RHkaĻ =3:9;cBCZφ$lT%yM\`aWzYΤ.Oa (,Z+nՆ;81 STRA{*ɔҖ_CŨ SmkD n|lrEtq<5vpE߄^G0,.֥m(M>4>'IrbDL z?Z%W +Vć,f1}&5`|7=$)D=ao@vJ?/=3NQw=f=賟TjJ;+CLR^ئ\A!&ko4m=(J J6g$[ζ! gd|(Eh\m,cTLOnZ2n_$mu;dZiЏجkGz[h? d2Q-:O2#ʧhLƲ笩U7<٪RD`$G. iߊsbaN̯93DI;}6__q[<e)vn?^ᆡV;Ef)Z}^]p)lC' XyӤc |QԘsXFoMM@8!_/3MBF\r#ԇ%SF{ǐ~r{Y|%ao>5Na 'hAG6bdOi(%SG(El} Emffb6?:UvOc0k)>ټ1Z- xa9'd>M7{f\)hzH<%K`o3TZ-y㌼Y]c#AYi)bYsQجΝ x`ɖ gұhτI33jxJщW; _' o,\jҼ=YVĝ"2Q9_hLfD en pΐE/(]t~8aUZ@B_6)c Ɓb48B?uw_5Ana;4_fG<|pn՜ih]#`sW_a\4gwPT`R_t/oa_[e=l }\$~"6 pKzIfۏXXgOרz"3 ݪɹHu+7xHJR:H9asbT{߹*[0kPA5*M<kJ"9Q2N#>;cP$WUT/+] xrdrOʀQ1\8/P|+|k/QȠٞ2NK\iw.G,7 ))7c?Ę긍#mU hd!=¤/\rNr{݌[7kY r} J=/(,eM xd45WuHA8<8QF*Tw}>=Cpm:>&`3Emyܦ_Ytr"(ކ wәB*IaCD9"[c$7ѧ,rZ椌a%9.<:ڿa]5Is54*%;!@I/bWI+gBꢌ`G hD/2</+0&=Εᐧҿ+`&I"9&z(XWxhcyi7#NVW!t\.7Enzsga݂Iz -bbY6>$2 a[ n"+`$Sp2@|/ц6Ew|mfI־\9gX3_r j HYǭ/Xu7He -g#*KᒦU0Q/fo_mVJ-g[fǼ6D[.]af\a*yq~#IK!a ͦПoRN}weSسij*m~;[IG]ވ&;x,Ќ}ym|U*ʠH82:b,# Q6DLE$7s㤁ks׌28(V5=:e*u׮E+ ˧%@ ə<_XDe:_& -DŽ5 w@X(^evw>}eTp76$(QԛI-+g]RЋ#/bȴ#J$M:[3(7m(S!SӔv+Z}X!59vB&¾Tvh" g\"#\@G1ٓ"Qס&vY YldldLN :BnhE 7 99Aq(w2.9J(U9 ™ |@e& c4^9DM7LϷbOBa*zyK/LJ?p|RlO9| Y﫞:_NH6<8iaRv ! YV/t;1f"M!1]*_ Yzzjѭ9CZ2pg<)wb@4w|:cH?5|k!uG0wF#o8P0.uVB.-]͒"rJ#[iY{c8CIQyQbHfI1iR 9υlla⸦(xJњYe{C K4 H5IYRJ||ISq [@1BVqW">3}{vo4VaHk1&<?>0W ܀LB'{q˜I]EZ:o0Gd o^l"cV+ 1 Zgͤ$yEb|Ŋ5uVTH36NŝIZ?cY5m̰Wved!_!|48£7~@Vg}ӵՍٷb 3X]cnlٶa=P%='ұ_aίyz{TiMUH`Y}iP'U-dHYNW:O߀&%EO_T*Ÿ/\G !!}S+#<&#a}yjT *1E#_tqJBJ4ҳ/ s{)KO;|oS8e* ⏶?Z0.*b[Q+l'#-ȩo.2\wE '> dn 'P@*7>,s 8v)_%>ŒQ•!!i9U,LiW| rGo(``tךKܒc6^N:GW72~#O7iXaCeX˻Żezًtt%.LqH`ԁQ 2uWhZAIXr:ɡhQF_ #Nv4~yt( Qr|-ۓj_֌Ech aZޖ Z"1˃5֤8t|R9ZX32Ĺ5 ?>2>ⳉ'?A}s3FșK&AΒK(nEZ}1AN5F;ٲ面I6 bv2!sY΂l^sC9spUy^ X#v0ԐB )nbrq67q{:EֿDY kB㡆 X;]Oh1뒣25វhryʮ9 d6Kcu$c}s< v-63`,1q^V}>RES>2*Ė"R`2%qLUޖ%_"XL̦C`e#S&a{mܹ3~m&)VEv{ryȯԁ|fk~R)T!P@o\zf1.Yƒ X? ZQSu;/KFf8>|ˁuʢdR/1ܤV9xluǒJP37H ,uszjrGv;Ij vHiivgAM@UݴA\?08^ lN,^Wý\$]k.al716CƵBCj^:b}u o8rZ 뺥닠ۂJXx_uBoIanaF+{A ^ygTj(; rN@oqn/\mU> Gd8o*w*̳ެ TzFi D`ylB\+HS>t6.<`i'Mjx8!}/7fzrSTwڥ 79$!X%&9A)Uj !U 9O4#Eazm=IҾNqSDيL\U36 ĵ(d'`E[۫oG.WgMfX˾ujCKFv4%d_mHZpݢmI:>6wkhd rAv`S־oYܣgBB qǫVFo~vd vS N(;MB)꿦, _ 3Bo_BA_8T6\t@gϓjDK)/7&gI hGOhH>/F"#NbJxt^`H#k%OhJ7y캫4_OˈvN oԠ2\()IӦkRFvʔŭnۚ."rypXOf]rm=iqV:s7B[2w}dRVAOqKj>?egE %7R+T,)z!yL_< $h #8{4E,*7d) [5>ܔ ,X-Բ4]t(9WS5FIaWw,%SKB+:AثR#ʲo"HzP'7t;e&g^Cu:C뎾JG'WRfhߠWޣSks訪Dڧ2Jw♠\6 t ِ;Dœ5&Xd̕ C˾sDz[96;@L'qtW~@tF+1uoB,)C|5{ƺՍ9`íxoZH_ W^`؜*gP&8#~RaYn|Ut;g1-|и]eZFBw5OviTw[w\(GUvRX#>l$Ar&ZZE64at#ZC LF5_&Z.BXJRFRFbtZ-Fx.$AD n Tu]!$&`xZ | ~I(S%_]7esd^8 ؤL^Sy#A)uM̥9sxL:EJKɺdeCxѼˬ-a49* x&}3e#vk {fBI}_&Wa9m bY,u ɵlX%F ^KM__2ݰPAs]bB )l+%Yxx/ 97e3[UmkC:X,Y/-M꼴w~+YZdz[6Blޏ%d *+)\-Gy~Z+mDbf20z.JW[$M)&G f-zЭby cmOQj8SI?-~C tR/VF*vD:`%u!`sX4 6IGcތ]6;p>Z!xJ#zd+v0W-$N?l5 *0TAx{mnj C ~Y rVƉmd5*m&9+W%. /R)cm!(gIcJңTmx鹶Z4K  A|EH܊Ph5^Q)'nL%lfn;a4`Qcvdb_2A 7/*;:{Q$׆%@G3pBda ე}Hz7#~ut *!^t3ع-˩oQOW[zk"/ Y$ ƮT\T3N 0qMg?(J})|X݂c*ꋄ gy]2Rfq2M$%~F4ILK_VV" ~7*0t9rI7Y׸M 2osb,C +b8F*j@7ծ"ҷ} $^KG)µHI/تP/ qmVo{+-ȧqw+AiPæ˜>{:lSRk.đ*K `4+6=/z2;3Zs٭H1jn0q2L72|oսG&B[#3uD[!.-@ńEG*_#& MLkz䀜iLk$ >fgUBC}"u&1]Š_JK魵,vɠ;덿_Kvo$]qjn(j yア c dϮ]% @+!eaKvƈ:pF &iĚBʜYYْ}-w#SB_bGo?4 o@N0FO* M}k]]Oa;j:N휈[𢴯%t6b 4L{,g ͱ[fJݤbkviEw\ Á̹I!`<`Xw]l%B`0JOa (!iiT~Kq֌`olKHgnJ*i_iV\ 6w0֜n`SUlVTSg[WFq88fQt`6etrP(2 1Shr0UsI=BeEaG$8,z׹_,񟸌hˍyAnd 󯹎8wzQ3oT^|gSVrnK\z V^ 9&2i4hL~ft/ݰO` ru`ܰ6*'AyE$VY1{X}~$L/`=}Mw*دupD֑k>oB`Qu㨫CET&t OGOi6t7!vFM#n,sT3FCġV>=˖hאp"( @;5O>ur0(H~9~&ܕ+u% yK,:|Lx(i5M9E((м{MX薅GHkN0ftaPYsPZCq"}?I~\wʎ]DZ>GZy-(I5_IfQW= Eģ>3 )trt`_٘›Ф`_oFhm5n]@ʪBY> VWoBxT_E e=5Cn071]~)> l|m]P&4*,Y@ȑY?Zͳx}vC;ea"l@׿.Ij] vhZ!elE{fJ9p`'0ux,[/i΄$9vWp@#~_ X |@ad]I‹̠ @m,_*1YXFۤڶA3>3$zA9*@XHU+زc|ߍNq̈'2³'(2V(} KⅹsjhhIO3ӄ'$x1^*TBʲF|h}1`ؑj!'W 鰠kzW ˪Vm E, >Pj.:_5+o/-&/[yJʥd-LFXɔobZ2*8#hBge5W:,ePZ٢ga`QҴ]3AT2#nzE.U-xwD2QE/EI6DKKK,,Ki8¶nrGEA3͚d(X5L :V5WH&!W /9-FV # ڿ[|1po$gc3m0V]KZJp\:X ܞSHHuGZ3R.z9؆Dj,ziUq-#Il0GZ*mމl,)5W|#yxxU囂`XXE% TVZHfDdKɠ7OZIʡ>̺a+MH#:_;?31g~DKΟL32||r#&~8~8$,SC%2- nTBo.}B`H/ ʴ-H!J?dl%LXn~"gBS ^Z-~r.'Dƚj~܎;JŚ4!lqH=@36&H ~D&ڴMMj&*:]5FjǸZ$xڗ>oMbk{Ȳ63eAV+/*nu'3NI^W):YCՋulNͮ "$q`xG[3W`Ǝ-FC=nKD$b4]W\؊G^"$lo4-uu;ύ|>_w9Y_{i`x>T2t硌&Ʃ4z٬g-G7]GYݹ>!ͲS((<,T/^ˏux%Zb2BE]} Pýn!d󼾠OMQpRP7WtSLŹW.jl[ 'rRagZ><9&h2u h:0;QvэC [ZƒA=t\$; nڜ4QGwFtݯ kPN)W&~z2GlRSojP6젚*MKBsTP*Jv, #xܶDkb ~ȫf8|u`ݬ06dB7(Mn*jт9cl% ^X%.h q@i[Jm0<zF;T]whܗȸ X'uW&F7i<~-%R,![`xJueQ5UoϭnbQ G#{%F o2ym#Ш|6 KRWu&|"ZI1B* E,2EQ] ϣyʙ6g@Kt?_.!HFՕЊ6۩TcQS侅ptx R<>ȶ`[ꆒDtuWޚb3>"oE@pozH nLyS>{ rRq%c[QUoEƧրhTIq6BV ;xbOvHQrC2ǜC2<@= 5OU'ᔣf_!vݗ`8o9z+坱)&#=@!pdobPTcioptO2/)j{YxM_~۲0tt;&OI%Kד&5k.:Q`&~` >{fv67~Y[\lR >icC /DU6"ULQc2b$rKJ4o(U$dy7qlz?Yl;@ FBi'#P F")#˫- xHHH3GVW/ElEzUxQWTwS{\;,$_ 7,ƈ{lLK6#al ?(İtG> ߊThU|pxd oAls[etcp '9#' 6/ݵM8ag&`W4hlEp#hcep'{ǹO:=.D:I ,pi]-Mb8B}҄IJ?k8Dh!Kn?cGQ)V2d%hbq-!t5@Vպ))}HfcN+GWk 9As(quZ$ /z;_A` }K՟=TJ }ؐӧw'K6ʒ'phz` iN09DӾ/MhwrD'jAO6Ei?HelySpϳApmy.>_(.WS{^`TQ?#^ɠ!VȂx 4 h$`<=rta{O,'I8..P5_O͌yvɑ%@92z [ 7=z BmY;%%迃u5MX6ʫsRX\ii-JƜjn ) ~WD6`Vj.jF9qsjB c8rBP8~O1 GM) dS1 LL5S3rg,KeQxyDŝ|1딖+>)1)O ZA\OTत_L.[)/8}Fo<(SށF_sUvj:eq㔃=2LaYV h*8ΪO1kyBnc-<Éx}Ƿ?A4 C(B'Iэ^Xg} \l#>1uHKGLG\iM}(hcj}[zk q?NkzD$ih1| edހx48GUڱQ}J>x\,Pۥlg.3iS.qR'Gb% z]_!ril\)0ޑb:Cz13O+GC!ұR@krU97#6epwU׿tGƦpufڷϐMӈ W*3naMOqg=N=^ l^.Ugo|lDXvOKU3ntfE}b2w9hBkaW-#G9Lc`C;i ^RA,Ⳝ??Y)+6[%rY #a4x?SJ'J]njC-^nբL6,Ș4w'sG˂xyƅOJiCYE Qi)3wBLGoq+f>"mU<xWxw]g!7LV˲ g㔳ΏuFg .t? }KjC׋u.#%U;Յ,2Z=m#HNm⩼S8=ǽߺS`tAMNeYZ#JKR @ `lD|bS6Ejp*'ݸrvXq5pGlyi*OFPnѭ,]y}< I ۾mAqcLM- .<(qF.%Ґ4E v`lS2nd4 ~$&&TV2"œ2/JvR?w7W1iP G6ѯa, L)Qsi+J(2Fdr8Q{dJA 3H(`5װ9f4(X'fO!Ë\ŷ?b)~YQᆹǼQ ".z[UVƶxFfQ6t%:Ѵw4_=Zl%ʮkua5TZb- "mxii%h2<^p!H^1] Pm$9 `I7Qx1,Ve]v}p{B}5#5g1ZC?wȣ,s ϑ\7#w=|^+#-e> '+zQ>w%G&T|Y?z%rqf+ˁ\HjwPw??τZvm69FA^9jp(K -_> =0<1q$n %*H6,r25y%X I-}yfWO']=+.Q7B sGCZ^8py3SӗJRtޫb-2QM;ܘ#mtՉ=<'Ygi3)'TuSoRk+sdu?55`Gv&7x3Vzls'ڰ1g} /\jsQm6K'3ĔGBDe<mWRS`Wu67DGz8AB)fs {UȖ9˕UY)L xӅCϒS6C@f;51V*Y&>.E_۹o#îFI[]KGB?Gn5 gS.Q Dh O/X;2'٪duQi-LszGkxo:~xч.0V!)*)"lNTrE޽UӖ. JQ,^nSq'I)t>2kKЄ\ OL*"q qd@xyQn9d:S\H** ! ç淍v-M{WmNCkDvbT(E%-4p^+'0O]-ebWgSIV4|cC5̴a} [);JM ut3O/R[z\}re/ˋ]y!).P.1}9=FG]~fXN^Ԓ;Z' Kh [6EtEo\?d)OU:Bb+Cb  {uyImvlsv_[@tWV>E,&y4' ;(2DWSY"!&lEC[~[I;!@|_ qȜ_ 4'Ce·A6:#c>Yd^Y՜TXCyD&a*G Ad~WJK Ƞs~TcP&/2o[f08Im@T):m7-U[S^[cn=.\pٹ9nFoh5f;%-x'áҕ`N(]yOӚe&4$O jSeP\0bt8/wE:m:F 9()tRX{COj\P÷O;1֪fFO8puMn) tS>J 08R}B@DŲ&9@0ez,L(qCEt< ukcuD2ʳ6cm+)J`{%N2_r]{a9R[N (!\K>5PQH+$1(^ sBbt̄o0Q!(n=Lr*1z~Kz F[do('Y?:LLT.ݗ-}tgYnBU%!ӫgS*קAĞ5^iiȀ& qX)^Z6#p C)r1\^+6s2*xuL\ 6plK S"}$Pv׉)kQx 6"t}moIv{J=2;-jR83j>?ғ! !R~g^%@I@hafg`v\""",@EH֋D>bܔ7gVNbTU"BX+|ZkRo%|ww{tpњ:8Dnk؋$Ɉ2T& 7,EM6&#W}ȆcWF J9Fe֬觛?5 !H!϶`MN-3>v|G>nt.cl|<[$ ILԒ)OECWK{YO6J,VłrJyij&SNKխZiFwH93_ &ORW.1'u@3Tv5Ո_1E\J]^9.Ħe?)k [*dHTn^!!MnΈ]SrWxLqz'i1)#1OU\6U@..&UǿƄhQHگÊģYROoՄ1OG\I\A9$cțtq t`}i.)y baWhJ)P=9 nN 34U.s5Ą `{xV[)MƢH8 ft gGz,BUuޕ޼AF؂13pEn%&b h` 1y;\`Re KK#kWD$*tK_;#y0󖑔u Sʇ3yH "m2vxE¯u`0f7k!ʜ\X;TՋ?s'ǂWQHc&+2?1ugL_c` Lô ~,_yk۵"G6g2m7Zz~߀O2V42Ai3Z?+s\Q"Uy1vr7)K m)=$8>Yw1|I]=&o`J$Tqwe+0oƿ2YCatɣNX g@VIPPx%p'LY?~<uu 648hVÜ(1dL*G)\6h~Ohn#SvtQ IR`⒏\凼wP ;X hmm @a-4R#`I.G\WaHC .lߍ nWņ(PQt "4,hbaQVB1'2ޖܘEun:2W1F;K9%v kߺLUtT|s?A..v"JH`z^;*ƿ ΋4 Jq|, ]4skUwX~xޚ:}m'NT[TuGNfX6>U vcىD17ci@4cۋfE,jB\x沨h$5#3ަbG=+m<8h()j#1LUkۂ>Ih_ :x}FҸI|.oJ?L®_@VgWYYz,QıIH=LslȐ:;&J 'p8F;)|Thrz+{FFw[ڪ>8)5<ۿuT.agֈS ʥ΃WYyVAEXk{r`E{_l~JD!Nt[7tT7s]%V:$o$1t OV)bz3eD}4뼥u|QW)^2) ڹUea}i6aPŦDPfع$@m&ߙ)ũ2VFM*Fy1RŀTw_)ZD ZQ/@ 7H l~ԍ C OQIŁسUMS/Th(>I۶Hzr2vF>cN33)|wgOЄS\1gB Ƨ4kk XJAo 7EPUmTeI}n˪hP(ÓK(-_L u{ZN2I6P9i*uٗLYU\gPtFB Askq}ylA7i]&MID~)N`(_,ܢڞ _+_MmAuldkP?_i.nY532Av[N] x$-8伱W*4gY48|!oDE3uJVG~Ҟo`jaLL\~gv 3lW[o}wPkVk `<\\]P;NZ'AomkbEZ5&8Y:HQ{pD /3wҒkFBLes"ݫu- y+]}B7Kt!0u v^1ڐyT_сSfdohz ˊfPN#z%KLekЗJL{FX'lw7Zna,"#-5Q! n@ysd.D1 fs`'L8[5" \#0OFc= 5 3xiFuJE?$ =Ϗ<@|[8-FNZj{0wDYoI0V>KA'7? Q~MpV]Wݗ+f|'i]'X_ ߇N)&n{3͘;9%,1uLn~%{mIci8!6o8hwvp_ă,R-dpohuX,QDLtM >spм~qiGТ>5eJ2kȸ_5 bcGz_$ Sk&&ؔؼ"aCo9\Ǿ-![$P?L J%SEw܋"Zbԋ6J'O茅Brxl{\7emfҖ"RBo] G0cܢQߌDy]%bJ͊GpΞ Š5n$c-W8/_ 3:iDXwJ;9aBqc/?vMz$lߠCzz<6sdZ+I m?FV,+FMj36$VIr$ʋtK\XV4`s)p:Q7y2mT7t тψd=:Xl2* ֤_8^!}%MӽaV7 <ԟ18J;ax`26lvzFwe#ĂUm]}nL!B4fWEWt+؟ztK\HӥIExopAգ.R9JPK* SqWv&b)Jn}{ldqD,fCdMsgB0遑~7H3NjJ!YRSlmGΑ1"fbWsL-3BP6₈ꎾPF*G"igA;!xbț'W7D3$<%vkR;Pz9Rh/,KF|nZzg ϥ!# 2 (;{Y`U6 c-˻ _Y32vc95x/h-:`AGzr$ |/9XOg}=V!uY87)תBtȎ[~]#YM kUnd#T!lֹD$fAX\3_{e,qH+jݤk N u6odI]M!Oj8Ug\[Ó k1G9?&$ X5o8Z݁AGqowP5S8/!C q&qS>NQuAvn@)܀q ^Dڏ<8i  jn>Z VܤLTFeDmYKx3s]*d p6%^*`-[̆e%rRy``J{(u9ޛE^_@x#0RhT-`_&=Q҂K%ӣO7Pg#t,6j^Y$pvjxCibp\;<.a'n{TpڥUqVďO7 l}-GH n^+M P/-x{۬:  MHX(̺dXE`|pKvgU"T;cm1S䙑v߾%~f1;r#1VmA;3:6..S(ؘM2 0qAjYNVl;:!ꚪ5@FNc9J:cc־3*Wn'?2U֪rIaY&<^G>88]b/$B߮Su@KU{wL{`@~O\M{AԌ- ]R~)fzֶ|jo48 v@\1 v[OR1=e?wMj?cėYv3[I*Mq G{1yf 0@ekb7B:{~xĒfcSږQq G~y0}C1ŗ̐QQOڷiiCM~NJJ(zDzdǍPheU<ZT6ZL,,@nˇh Hg(񏴢ެ^C`L$No*qn#myh~WYd} )lӋ׸f))P+iIfrP.-1|aU"7P·ܛRS5=$ƛ-]C[#WRRRmƩ Y@JܯiNw8E~PHpش"Ga`j.aUzs\G>>.%߶@ #o#/S'vPu*)B?H='ƣ/8E'r#NC,0o{= EÛzNzgDg0bZ͇E-y*~@2V6 @NR o+y/(fYJ;ìg Mt|6Tĝ/^ϖoX0/&&fO^Iٱjw~*|SgmL@[9cQ4)NY'GNZ[ `@͈?&aTXKx 8q&r=[闒j{C~)ƲEsgؓ >i~3+A_]%5fH0U+I8htTg Js36aDҚE)zVaX/#1g`QRzߔu=Ž͉! tRǒ### O/Oc,l _ΡI -т$Pp%,S[\;^o @Y}M;>d~=\:`tn[H֞/Mr=ج/na{R(e4d݊5=w h48b5YʭQg*r,n'k kn :c!8M"Tμpͮ|2:on*6xaJeȠ q9Q?x)`) '>Yoh[QG\%QkM;WJVM(p)8dZT*,_/sT(z֧2u!X£Q s*0Ԧ.(D,9,rI! !(ck/5:VfWI|'Z%=,1M}-:Ir8SK3؇wDqK}~֫s_-!P(2U?~MՁ$HX 8Uڵ/ C?g)`*dGJoMEZ~Jzzezj-,NρJ , ZoҫqM9s~'^cjEIm[x=*7az) $գnb4O')ݴ6 ;;L6.It7w  *"dy$jTV"qe=JC;`6RH<]yx: ij+߱[\t ie72טEct!] ΅)-8B1FTꙘBkQ $@~)]n%g F@P^dh8 -mIsVG4-+h!ĴYU׿j9vH{6ǽ&%u{q ^=F FAqLSEo8CL #*X TVT1<1x.BB>Ƙ+R.猼7<;/&"GCuu) olt&97ճ6aƑWu]1;x,(Z>I:ٞL햶sRd_,XYPО PR"jf'*.|Auϋ2KƼGu1$)EGJzPNz0b>,OP {O,A}*2;& +q( c3Q⣁7_& (X.;*%0َ?K۰uͥ.9inVE\Ksrv.:gPo|*y`{Q.z6e>\N,쎛7T x`O ov[~> 0o b wRɂ`xwF-O=VPps2fq V?9w1@0MY\h5VdB@hc!B\ڢL]rbdo."G6˒qGW⫁3a }ϯB%@7XŭLH ܾWL}}q??Pn ~ʨXY ,\{3h,bA^{v/{txꐝK[2-2|9*޻IzE@.`[KjPUvz&#(pv @/4b ] 0LkٜqzWm MPO b_B}LTp$౿*|um%I' FmMl\:,bO1Qq ns= z魰zgByyH L->+9t* B[U)z"]<9bva=$[Ƈ9FRK&I𠁀`Y]UԀ~κ`pUԜM'b[5U<[QcL_Y`BN0/qpj,e+(mꇙǘ%Ď@[IYqlɎxR?,sy={|,nt [,2L~V}zű*qvã/W@j<*vCHe!%i*;f]]j%M`?EsȖnYlnHʒPHgwQDQx]>8+}9;!%^$5B~* .10;e_l_:rb.]7|um"˛罷I1䨳9`=i|TZ^~~MԷ5ZX(e3PD)"|/t &|Q4ׅ{=05H9M&:W=*b~9.q*^9&Ж92Lt,dF~g`GwYOT l vz^nJV*lxϸ,F! ~  qhК$"i95U7xͽ"xG^ʼ%.&pϡ.N=$*.qP5o:R>Mޮz>ݨV߬>4B0tDš呼Y6<@$AQL4 Cϊ6?ˈc;]bRYg4`}RNGSV$c3ڒL6]'!>x&9(X '۫:mOb:1&E@zߙ4iߠaTNd LgmJ:ZCi$7%xZ+5:tסq0UYMMN_EC AK*aO:gAK< y2͎aF߁S%Y UhM$}g+B@%% 4tj#*փ[k@ MrȢh$%粕FRY qNX֠N&rJ3ZF$E2C|\"X!dAO#Jt EJvZUŇI*U #zpŮ7樋тŬBDc@`M:/399Z_ 4]}婔Mיۤ("5Y 6pS$PV"ś_ TLN٧'ؘۦ76!^D3_L]%bW=n,-Hk;m8U7>ǏR +FLjI/Ӕ+ѯ{ I.?_jH[LE7aKQ- ?kVekO(O#͗Kmdvfs s%!5o#gNZcKv8۱q4piRQܙf72Q[8 i,fZ6 'AܪI (nmm㛸PaЅK#q9FՆOќJOE!!PrA ඍ1BnzITf,GWݔXMmoEX_iǀ [C dN|+< j#cxu`F4p'9r