parallel-netcdf-openmpi2-devel-1.7.0-bp155.2.14 >  A dkMDI%z `pRfKMOI|uP!%j=fcKv/ﯛ]6wj`<%35nzr'0 "0TPU {U ^00d3bb615be02658a931f24c0d706d66b7a530e246f73ac008c686762cd136281dfb9b176e3cfb43da26259c99f2ce27e8767a40;؉dkMDI%z Tyx (HrG`bGsy;o@Lɳ'k~-eRk 퇹kLok,5wjb8o+:A*b}ݔ8r**i jmmW7磯Pmx@|cO#ɡLXÓ )>˵&夆W롑˘p,nʿ^Ї^I{ &DllIŋ"Ra-?l{qî)>& exo1ka_JtŊɍQQ)yyv?0A5?жj~pj`gV- 1sãWѓuָl4 ^R (V`AdЮv!gFz%}iL ċDp;?d!' 2 jx| ,2<T ` l   8l(8 9 : F5GHH`IxXY\]^b|c%defluvzHX\bCparallel-netcdf-openmpi2-devel1.7.0bp155.2.14Development 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.dkM+lamb07 SUSE Linux Enterprise 15 SP5openSUSENetCDFhttps://bugs.opensuse.orgDevelopment/Libraries/Parallelhttp://cucis.ece.northwestern.edu/projects/PnetCDF/index.htmllinuxx86_64+kvFkdkM(dkM(dkM(dkM(dkM(dkM(5c6c42b49161fdecdb0c58319a52dd4dff042aefe7a5a62193afc0674647d4c34b7f0c3777e5f75e4bb0e2cd6cb4b57f35530cf1dc84288599044a03f6b25b4884656549af62fb5b2451e399008a90235e03d2dbfa5083b4b26bf927f45148cff4bb2affdacb95839b9dea8c22009ac79bc782b3adc1131ed34f06dec9d4700ac0a6fad35a893215f8d8fb121d546679ef9b47378e7c96ee382d2de83174c0c6libpnetcdf.so.1.7.0rootrootrootrootrootrootrootrootrootrootrootrootparallel-netcdf-openmpi2-1.7.0-bp155.2.14.src.rpmparallel-netcdf-openmpi2-develparallel-netcdf-openmpi2-devel(x86-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 namelamb07 16847537071.7.0-bp155.2.141.7.0-bp155.2.14pnetcdfpnetcdf.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-SP5/standard/802ea42c5be8a164224c366aee5aba7f-parallel-netcdf:openmpi2cpioxz5x86_64-suse-linuxC++ source, ASCII textC source, ASCII textASCII textASCII text (gzip compressed data, from Unix)pkgconfig file!Rd\bA6utf-86d7d063ec3552a7b0f4f078825fdfe4e2fdb288dcfa14145fba2f4f01374c468?P7zXZ !t/ ] crv(vX0ٱ浤} DmUkJ)G[kMɊ M?lfV?dv }U5/t jpj/|'0~EX + *u?g=UOְ&TKdmuʅLgVǦxVjC]P3 @ND#r.gJ}6_2:8;ߍaư#_GMnTZV:#b[䱥TC#[uV%{|h=G8R{öw%$o5V+ˑ3ͭPQ!m[GrBZ}bnE?0[TK-0FjH*ICٷbkR%jdK" 1 y- .MԼӓt7c8Me=p?UmA.!TTVnprnFS=[g8K̦#11T/y}>0?(1Q2tLjҦJEC"2NjAŢT`(NsrkNz3gx)R mI}>K`I_')"}#V: K5m# GBF>O3%p3w&*{$-%r-quɄ&Yj & 7>EAaazIWBFFo6 5@n?( ,]JDZMqGKlU-ȴ69Ybjl!1 b{q~PaNVL%\/ m/P ؎-fƮ(,BN o#@FyuTQ,WJ9 4N+5>U^~M?r&5Hiej. +2HkTU@+wSRaIidϘi1ٌr̸Ӯ jMnYq~S:bք|Z b"XD Myr?8͐8"^ai"dfh.Ň08\[UԻ ìouwNuI9HeOW8m+NE <m%X V$S+^-8 9QoAičoȐ`,>@hc&6'QKˍ Ah_)^8;^]E^ "x+OYk;Y1{0\8{1{%'f IӍ<@H<1F96nIװ:Z+94g!B%rT9n;p̅M8HFPEsx<]FX &TWm?V {n`43`V2z  /?@] k#QR7锂BX*I?D̈́?ًOi-q86l2 2<"{*baw&ף9qX$h%g8ǩ!]?@U|wDUT]T$|ӾlI0NYƪFpMdO].?EzU@xSoW q*IhPPE Bv=]c?2{HO~8'o WyoA|T*OgKg+TB=[`= <*bvR3 w* ƭ$}N͸>kH쨳+ԥ~۟ =$ss;] tx2wXz$ نn4hp@rgpBzSݐ95s+8^ W.n7V8}DP2o@aKsL?ZO SSTF!X+>8ӆn0XB{$ĕ;]uۋ^P~No3w%,?w!Og2 cM˨!p -$\\n?AEˁcpc1A#Ų /zrg<]>9VX`1,y'y;ͪV]04854كr_+eU D&`t|fڃ"ֲȜ|\ 0m ḙ]$w]ia쳂uc]31Je2cY0򒉍KOB Y)"K 8RmY j?x Q?N AXȊ ˔Z7aynz-4T7WF_u㜒ˉ-">GstEoYmkh~6X@z>|(+V]04hkL*\+"v= HBl~ {s뙊\D{5\, F]xaAh>M:p"[{$ Z0 Ne)AL2j;^a'hi?>nAgN|1i?ytK* |8.iƽ盚S~Hd e.L_l#Qw1O,)o U$E{M֞o+VȎ ~s'>;633TkCp}sYe?1!LB 1ݼVw5$ݰ_yOZf:x5Kw2GkF0'z Gn8vFWIw~ aUZFoG +6W{1[ȑi|1u3aB'*_HAy$̏hi]1Ði@ +efRUcEPͪ?h7?1zW&=\Vcl)sւ0m!{?(oǿiZhVX5r.; fETmE=QpCW (sȉ 6ޮGdW? J9٪C6gՍs&D cB#hP˿^>@gf-•ݻs_fIK) RGaȧXc 4='aȸ26#.vT<KV1F_#Α"%e:ܳҖW܃%S带~1 b @Q6ٌьg zsŔF]-?bo5fܐG2Knv2s|B1Rcz;Xf\z IJ)Q^ù:P?=[DCsR W鳛5T(H!$m_Y67& ?g9Cljyvko E(9y\$s~ޑRj15э'12Xށ @;%$[ uiw5cqc=kDo?: 'SPNV(#"D<+ xvY_tUT15(s+c^PekXv%Mz~ţyD3c,zrݪ @L_I؋]ǔ|ёW`@J]$A|Fs*F'0呥&;yCY|Xs TԖi ~DBm.L$W #Cg OΪEuRlH"E.#%1@&])m㣧Ɏ{ݪN]@v޵u$/8*FΙ&Ҕr4@n7EQg#GD |3lUBtFKw@||B uF78\m1hk1^I- YDI/w|HU,1jebvۥ6MR9ԚBوXT pCX?51a8;i:ŌLr-\4IP>\&WɌdw0yG8"v-~_&i\ i 1/TUA@r^g&Y 퐑Ts*pP"uȺ]}HR$~3ZmS.ChhY+WV7,-|R)0a&ElFX'F;3?nZVU%q!pxQ}7|3\(r~w[/y8AL{^G^ }LF;hT$0ܶαPVIR"q57FY"X5hk(7~zə |%{Ro%@PlD'ue})Nuo CΠ :)s32w'drاOvZ O^6-\a|J\M|˱m>R^ˇxMYQDjv)LwngJA ;ߚ%DCg/w#'[N5WYX'hvT Rk}2n؁ryxY_sւr,#855wiag4ݻkWg=wv?Z_rQ >gЩټ>$ iZг$sKՋ~gV 5kyE3dT"+4es|*M +0 ƢT&a`fb+a,cyC۳ˈr0"(T<>P+#m|W:dp ="Wޭ@%"2'nj͑*4oT:u].F,ȦΤ4Jׯ&q,ODOw**A) 0|29RwNH+Dtyp7-Pm,:.nn2&"['fwA `1Fe lNaq+ԌvX @(B Ŕ)[,r~)=VL#lh:Gi K#ԐP׎M(>*%7v8`}ZZB`Dx-u}k@ǰz~8(?2ᖨ ή/4x5 Y?{;tI^2a\n]K Poa~ߩ'@Nd"g;S0p^=v[Mh;IFw d #l#k:4Q3Wlv]zlҫ2Ud2?=lzNS;dLOH7w~GL[G>|  6yLZ8|dmSӯ_St1֬7q?m$Ji@IK1텾R<¿bˤ ,\"kA\ex/]!~Jb57h"BOׇAIEU:3?wt JM-+͠ u H, ` JY=VS1vٝ#_x}]R0ڪpDܑ8YI˩v~C4rڨS`8X } 11fC8 ɨƀ1S?gkyǥϔmM$6-L#^M$d,N0?<:k&O;:)C- 0ҙ ,ٌB-^boD mSg?OOK:PHs9V"E%ٮ/ng/eWRl1V `hjH c>ˌaj g7nY6˧E@-R-=BEe,1OefS)H/^ٽe{R D8o:m}$UN#}1*3LKF9iXS<$T@ET~!<XIO}f.`R'M@0!2yeRi[xv.dU׬Dp1|&DY}>iZEcz,Jf|a_} B=;BV=ْw*fK!_<`0FޭpAPOPT[Co 81۳UqHx,&a!dxv` N;6ޫ⒐͖njgvZKsd9<¥yE(1Ld6QJ)AMEԆ2sߖ} s t-[vuҭ.YC-k'ΓL5#ı\/t?M7WBv;\L 5+ H9sB?tHT`mYчKh# 飋COŌT4f[Z+Sp `+I$l6c)gt4hYַ~: ]T7ᴺ-Ә36 z{if]9יGWzV(#y9>_'}NFok QتU'o@-nħDj^LC7a d.$gGMbϺ.ܴJHac<>ėYı(^v]ǥ[S-nQuV`,K@B<YBjQ҅9((,f1-˂rڢ8fżH^teChTڜ^{^ApLvs|f,?V}à UG,ue3<@mX'Qn,:Œ!_Gأ5VuJԃƢ\S}'{̪ Mh&k=sN&Q\k`3x>:N!#4#/i>9 pT ;H3__ U0f3eK#1AocMܤ[hiB.*dxk I-]؏!::6yH'+&uʖDd-W%- )DMvfZ2MAl'RZMۥRH<~K 8|Y)[[k]pކ^Li e|GH['AhՇaG#OHN65*R3`x)[CKKH.^Kx}ͧmC73vCYb¿34{e1L4G?zAeN :,Iu~1m3q|! {D`( o43% []tkr)[)mإfIJh h66۴,]52\sFV.?gRj mҕhXBf"BZpN߸ndhĻRHGYwz n#K" ?%WM -{L;%2)J4ؤz_u 9hL:a[G#y0N%K\`AT9fYySIa-IyoP;% D~ݭŢ /Py 甩fTG5b:zi8zCfۀKbBlx1׷P\D;Fڀ*GRZY=3!;X4M:NȫK X&Au叨(K.CDr k=16<џ3*iIܳQיlz}R*dw1ATi37ulݫcn;*vJ2Ew'#h1*TKn0T-KʅPWZ5oB B@hG@m',+Dbu)f~b)_G"qh]tSX38NAX_%^p>ɗͶQIʹ%Eu~i2mQ.g$JLFϏCeޝ hlQu|긛:(Xlm/ñ!=O s)lz'GJßX}hD=S9D0X܏nc"Qb ~8[oߥp g:Uu:LLW6xDon-h\(%dOC_w쿝 ?tIkRũ=nh~ 8YcAtprr0 d8Ju"2DZx!jU4rC.\&:W& !9SHg5|z7Lnm(#P,λUWպ-T\GL\/'کJj*Vowqu}>S{rC~6v;](?Qag3kEưX`XW[v)(šB}dϿy= Ƿz۟@(A51$ޏyY8BiKEq1MȼG#T=d(!cOERB ؖeb}#l .[GY"d6xZ0Plp%$F>{`I8Jƣ/HT\5ml@^X&mUH-o{407}DӅ_9zhvSN096@/'sŎSDN5q=YUPM7h@dbfa /UAFt||-GMdžyڏ,vaV6v?#\ 7U?&pǃ&2Rv Ѩ{νoz^A`"Sn6N'+9d BΙ%+J 6|)9 -\ D mK\|7+q&.vBZ/BkQ8^Qb]-|m" 8+] !IsFT؆"5;L/^ϩs46{԰?G++E9K?"ץQcv!J{cӘrNy,K,'[ &şC X4[ H/sZͮ(Yfϯ>.4*;HHXKzw>ksY?0$rj٥lEIͺ1"i}ݡY%|0era6*whz{K!`K-ُ\""ݫHr~ [WA1PF-Ԍ+a- ۦ[ק&:P! Y ّ6>冏7uFS?Sc^n*PWdE}Qjfz/uedPIV`DΚ4!ύ4F֖$O[]>Hth]KneHq4Ļ5u?3?OcHoC:s3Nwn;7$0 4gRsl~5/Ǝ~ZLto^`at-_JQNsNU"DO:n#v!( .PfCB; 1ZҤrV]) vOaG/*m%^XԭJiQ Y- -`~ik,fw:M{v~`sk%~d6UIՒyobGhr]=e!Q!@7Ul(UTGs+8g^^D<'00uha1qbf{2 M@c0v|m|1\4rՙެ/5r xҘpLϪ H&PYLӌ:侖MĬn>1jڞJ\DyǏ ܮ'*ҐWwԡ(loK> W07ʂ`>jrkhzyZGdz`/bY8N% !  ^T|2ق([M oY73A $C#IٵCɳ94dVѸҝr|'mqo޳2v`ͺ8_uLֻ3ic7Ru77FJs BIE#@A4QDow1n`5U.Xڴ_nbBUxѷGR:lV(xpj1g41Ǻ@ Zs3*3jsUGHih") ۱.z'"7k_;ɫ 5QV[dH Wa {.,F!%ڣ⥶a ߏWcܜew'և=[}`e]f|ɷ W#آn`.T?.iI~ܶӹ;{ W(yPF‰oܿbCq{>zK%*'U8ՌvQ_ȆQPկXh5+- h("~*㷵jL]S88ߓ(<\P B >\Kq(/=e_DBԟg c;C% k bЩFbygH=qSλ?*IK߬dj(DILF-=!k3U"qu2""xE`S> FKqiؘ'.ҝdaHG~X?U1`鐚AN`0!0ƣq<˫̎7i:ަԌ\F]8K@|c̖Xwđ@ I%;EO @]g \Aŀj Q8P0qC@O@}̠&$0 $W3*c0D;\Vd`E ^]Ge S(=gA4[C'ƹWBĸ4 :Q-]*h4.Po;HWj D։CB>gT_K z.hy퀚 0ݐ]SfR=}ztbsRe{dԂb_=ʠSb/CeKq>lcy9.m9`RQ"U@8f ,c8^жEIylo5rg9PTE1<4 |zuP2~8-{\nVȖF&˟UCDw]c8V*xcu3+ /C&x?qVBb'bH1ctN+ȭ6e@C{,ɟxnʴitYWTty)O3D,dv$+&:@/['5/wq~o(V/bYc\`XF eEsݩw'}åیSz`I7F[3V"d'ۥ\`UTpx ُVJV+Lڕ툮SwyGGfZi[qԝby>pB[m]A'|Qg^65#v)y s#m%䶪,z0f?\=r)ÑQux7QBqL ^vt{ݣUd^ W4T8bSio1$řl6Aӌi&]gk8CؾjCޔ"Ŵ2zQ[-tq+20&SDzsOV%-CH5E!e]p܊ȄÁN@Ct3;#8p ãv-zQm pS[ \"9L~ߦE(+BW;ckL;y?;zea_߫KYپU^1j/ϛAnꖂр<;1\)Fŧ$@f-;R+>n?zZ>Qz ̫eˊ0v9 N ;Ud p1{BT:1tx +ژR̒(ٙME&sJ<锰v3<ȃlIG~i M<.I I?_m|YShVA#26AQYqFN[5̇e>3v>ɖ3O#Yfrn_Y/*&'Oe^KtTFD4#~) ||9WHL%4^o٨"5,{X.t2oA`nujr;"U"?{ D dd+"h4~rxF16%A(&N=i a%=1; χM-wm&f IdDQ\zTѵ@)4J״'@I1wܠ~K:*؃ʹG'#NǡMgyB߃N' +t%'j*f@QwX^tYmvp;Z) ؛#䬯N9ea%G İ\ة-Bk˯>kX~E`5çFzs(Y_]*uA3@ڣ5+k: :@=Bp89Ɯc=9:F-zJ21Nracs=Q돦__ѪW FP5òˊF VĔS!(Ģyu7zە|$!cct3]JLZ6]'"Owːqp Ȳx QN=KVȼdz;uFk+:a_zwKԲZ (Tf(] #/W_|?ZIe{EϧV^< k8jtj$ ʻVYn nA3aVީ"!ߒh+WkHXYB(C#4ֵ_U(uF2CT 뷠.Ā*CD !lQSk`"3VnECD;+=]F殷?Fdk `L4sl06,MWYyiuEjUy]֤;Hp郴zY s-qvxJprX q(uk& 'q0`J'g 67F(܂Ww)g| *{dS^jIk(Cyv!Ԍ!u=Jdx8Ce<[ $ :诬Bx6"+ `8aRpd%'@ˑ6IMqπ%91,Z6_B_ :Y֬af};S`?7=4((4tekPbMN8&NJߢ4/\x :6t>es"H= R8%rE@P#LTX,|quS`<;.TZ~6(΃ut$:q-e8TNFG/ƞn/LsczOkPz%y?wB1N xM;I>]{=K[̮`זa&~aIꇍe:TD\2g☍pUbLB@i~D K!FOC23RױXJطNcHO3e9k1$|ugm5Z:x% $Fk]{7QP ,Y}mzpOro?;!R ! O~D:+CBv / 9))yiHn!_Z|J0fG6;54l3AфlL8 kM"EsiQ;3}QԾHmJst^DW*;X.جѵ边VyݿaWϬe #GӃԍ %0QjM&5 $Gk 634݊m$5U18;= i,u$էe>51H@x.652o-Уv};+fH{GL٘N'7>NU3h2nslۇ&@ϸh#9*עURK2MQ[ŸȈMϩ bX)ǤA6{~)\wSwRKM\|^?{ 5WËzj%97'eܿ},ncA 37ffT3$>GTh[% {h1 W+-#lU3qsTpiCK>q5$S+x 44}5g^[k}ߨ[ 7B I\qkn1%}(ZB$|$h:Buهrϥ xYf4! >t'(^Wdl"&Y{+)yʃpx YKj0g‹KHhAhzPnEIF [/bR>SD1@m`pb& ,#YZza l{̨o]^}sY Uφh3,62reciïу^|xF6ghzGYk[EueCG z}_`c5Q_&vZxEGX*\㫡B;!EcFAxv7oKPTh$AKv31F$T8tP0hZ%!T9\t6T,XEJdN}'O,[5MliR +#;r*k _ Fr$w!Ԥ.WA%r*jh:ay,/R`mnE`5q= ?q ?ܴ}KRc N56_ LJuchzpUT(QʻؾޒZtzDGҬ=ez # ١({!n/^6"?D&dhDsSV1LvtPp],r~Xz_ c]fwK֊iD4}IY৻WG\I qj٦ߗ<8432XaJb"mhZؚcZ7ߧ3`HXX&݃`Ҩ0 "DrRoᢾZ\ocn|H40'(N@Éł[x@aRE_6]\Y: *>%2u2p#1Z@ȼdQ1oŭp}h3:&{HhvPœ{2i}9pXK**hS;urz5} .L8g hgW:_6*I|FSgNΨMqL~Χ!"fŽܥsBbnɋO2C } ~#ܿk1q[6_c8:>C3޾49bg>[L%r%"㋧nZ[`ч¯Oz2 UnC-r"||c캘ĤzQy욊,jh242?oϕq `M.TY`c'Z/ĠZj?Tl+Cl)G1ݓ3Yd巆y` qf!&Jv7('av z(ЖIf fꉗ^Γ'\8R3ցb<M\f055"97n{7UώHP80خ`ZMMκ(ZTEUh^齲˧3ir5\|Aj2'Z@ .$gy*E=twr{YiŎe罘lmCbynkqǴ L 'n(qU0ޢkn˞gHz\zy)RcV.X]x(mdQ^LHV> f#߹L8A!F6{q$[J'{`(󖀦%~1V&3(` 袅hͭJF-J%Ya~kٍcmc/'wi)|9Ara)ouQހ~T8iL<t=_SapΒm& \`- 5 ϦKȮީLRuamL6(K?;[r̢O$>>xCN'dzT lss%P$e@ذQcxr$ j?SGf%"\ ;ŨCXP-HT>f>< PgY9"oT=9D ;CDܾ-.nxy>Is3{sGbTFM&9W;UWkǍ#Vx_*sl$ԝ0֍SVGGȴ!R zA_DE3*B 5%5sa@w2 z>O j~xp "IݬT[wakr GeC#w0)4Ь\޵:{Pll ͻ63#[e8>Ksy0I^Os8᝙1TgɖpaeMD3+q)o_ ۸y*_nڕEywֆWjr {eܛ>$RQfr(xS'9E< tDŽTe7^&YO!c-Uuc_D6&M,W#xicrJ|$0Rz(=p6;v ƴ2gφG'V$v5 Z|+&lHF<(C>$ %#"~OeERw/ -\\|s9#I>n,?4Gpii V"lBSB0ĩ<~ %N]MTQ!I1gR:f̣G~g(~qC9tnϕs79mJ"gN@!V;|@^dz-մb ۬{)J`b@6Ww̘$3p_CORRv2~[Ym$^ȯM |9dc9u)䵩ZNI!n0ingN ăⳝ [.=7(Ipwl\oFX$bOb5EQt7 D?gLpwh@Si.fupmP4F|66_MTz.izSwJۊôY ٝOԿJҟْ (W6x~ag`p <&a@̬*n?K{uA#S3Xdg̢7 rGρI.35 Eϱ*K'2j>C;טDcA?%~+ԷuwD[i3J8  FkL,s>'.٬ٍ4ZtnoawһVy pgcAZ}dtgBçԿ,T,&C.Smd2U>pupN6AsZ5wqo~ԍ?llf>*Qzўki7.[jTOgȰ_ͨ՚ļͥG.I*ecIS]AWܿ8~MC4 +%T&omM{,BF7gPImDVVsPmN(+3'TDe@ ѪKRv@aCp>aI`ʰYO@Dlb5u ~hٞN1HJ! 7xg@T ɽ|iI#'Zj.r22N$3`գ8ήA~XmFOЏwv*Y >_K YeMSтwc5 }9 $n8WăùzhC(L5򯏩ɵ93NS.*j8Ɔߺp[9L _!Gel$+ĶFB渷v:5TQX ԪˣxoJ4>낙 sS픤=켈Qؾisa0$[&aC JRfo6<ةI0dX$ՠ+/`zMTvh@rb!iPTN`$);cM_9ha9o#pәX0I^PEm);EUյEU!%]5ΰ 5"7?z ve$\ ?GS&p Yy#8}1_DN63 ߡцs+M*0xu?|KԴ_p42}ٹJ]_xyt06H7npyG~޾wɻL`L$ά)RxI{gt :kO0> ^3b 箺.ygxU &1"T`!PxԈה =<}b@3*P@^W9a=^}Qޙǰ`Pg //1{Hi: v ܠ"QY#{j.nPy*2d<~7 NX^_ x֬w"m1<7AwmPLy:`RyVQA:44(J}#0%ς-vfۃ֞h9حͲJɖ=V4#Vl90O u #̣峦r@Vv4t$vJ1Wg{F4f"AO*tQ`FJ,]8&. {޹{lnɋ"ؽhUy^RN` <+\3)KSxna>:\$/0Pm\u,7_&BxiO6 mKn#!F0h]nߗCU=[MBe ɪ),5# `@0oQc餛,9%L* ms@?Z1J)(gUX<؇N.=br$Rc,1~-}:Z)d7On_d1KF;Vz@YR^/@eyZ)2{19ޤCzE=ь8(uP>`yO[C4-E' iU-KGr j&kB Zh9[ rftI:([xU7FUV5!HKYfm$q欈D;^s&B9/B$䔪2#՞:9tȝė%yt W:&$i @ZNrNĹt8i>} oWRZ49-<cqZKkWmh8F-za'FT4=4rjPpD9[fr2\0θrɀl̠m|1^/7Vmu_?K],In"7H+a D#;fAN37tJzH SO~hMOӈr$'h/2TZޭq"5 G d2>[¨Gc.6m~Su!K.@Rig_޲pK7`lu/L D{CsM]49˄TiZIH!.K/請6r,~|L [iڸiySO&di{fE iЪQOI`>ahVɯjҵz/h8Cpa8.7.l,Re 7Bq?Rf".%>k=j/ h!XȖlbقpG^>}~GJ]Eu ,V#o1_-z ##hr:G-|aa;d-8EL pS9m2o 6b3I.XKgϛAT-[3ڪ?..fR)5 YEXʚZMb+lH1]]%A8|y<)H2hF/ JC«~FjTMJqRhpI`Q,)>v}}͂7sݠA=x:0w|MP\{JW\Ra[^Ms4> V6ͭ2p"͒"- XeR`zJ8t8N²2'}WtTA(JO(n%-pṉ5 7+jʔf44uc: ?nBB9C/E. whH({'ƖlJ8VWXCg+1aXߜ_ݔ7mA˳n:y~7ͲVw)8 'KOnܙ11gW{1Y۾ouVҮO{{=l]ji7nzk=#Fv\(օ߄cO#sX lҸ7"1_[[@YvZVǻmj]&P>C^1YO#Ks6ufur`9¿}%zď:p`,NҢ?VD1 PpՈ)3';aVLj|RS {Pvt쳟bg?c= N}a X:%g޾GF 4̈́|@V3 4BV[H=~MElJbgu*3xRPڲ\hB3>Pȇk)Co_E;9D <%qvʿkW 9>%an jۍ9'8 u51HdrRZR.u]}˩zҹJqkKޚ%ԓ>£ dܺUb]<4.:?G&ۍRjfXjênhtXI[M2f,a]y4s (Az}>&G5g/_ ' F'QgKj^ҙY\&M]. /~~%e x,fz ˣQB 2gDAVO!6C$/YI(=vRJA2XI@X$bWfC;41Z,jHt~Vq"秐 zMd@X "oh5/B{lF|Y "h XMa&,&Fy@IlSf]jQS^8ì +P~];+}> yCљ$\ӓ}P7 ƹ5JX";YRUp.Ea/ES9C p E YpjuH P31>2KX il.ϣ@÷0g$~eWU,IܹlMAJԇc; (EnVS*q]d=yO04q*AFy`R:iOr1G摏hR|ݷEtFր%9?(, 8; ߳Xdw!bZ.8g^"  j܇A" -ݡ`E_| s|cft «JR-EHI\3\*A?aF i E 5b+fWYz_n5D*jά10h5lfw y^",H4.yp=t-4RڐkDl=yVS rM+? .;/.:jkAtěJV,KE7^U@zPE1A'~RywȬS*_p d.?~ oؾALS/9o Aj09w̘q 3tlŮysNZj-eʳ;C}c~/N (N/}x:>;y@38Wv띨yf5_[jK.a$خ#a$lA5g7./K]Yg ;L|с}@W L6sx[* Ci̭Caiw6%W|բ:& eb!>զ\P]# vw\D;'R*cʟ m"ǎ&Pm$3 IJJ^=;+^DȱH}Mv+A*[*'s6o;xAVILj] 4E7_۔}W.Wc8ъ!l? nn|tNMg@\cB%JՂR P{UnBsj_k()HZ| %b:2 5*\&pV8 p\Q!zb8m~wcRI,W 9"xq$HpTt|+)5$C Tfl.^YZ,]U)2ّVcyɸtVZ*b]RN&KDow.0gdvu[w+X?t#<~wZPx͢.$=tE/cП1EABQIELحjNiH'Y#A0B4ੜǻ[ ;oUk~tޟU܏xH) M0!Y@ώ MJy}5@=E.¾{Ue[BlCk k c|[<_ư~6oAZQ>Ehv)z|y`F"htPj2y#Bg;Wu:2:UZ jYMsn N,2?PW1oa; v^oR646؜ pT!U2vN[l\Us&sɆ4o/)<>$)v()B$=`uJ~Gy(voa1;ђ_ T~mI=O;O@fkD Դڊ&v*[*hZfͷWRgam=UN4bdXGF; 4uB˯uRDJoquJ'm³(՜o7n/ZG}0w<5_5ۑ%uG)8h7[:cF{1%E"sj54y^%C]k 1#&wm0n%N{s a6p:i^X |rCsK)`gS,`ef \l.J_3C?Kd 6z6'²|xlJH>KʣiicG3aדZ8MX9=ybiAQӍ옕Ac,!MɅu!!kfF'tS_eٝ'\&‹v6PthW$BF4"^yq,?6\!;pMw2`7{\G0,ދ9iC'sG(C !Ua$a,ΌB%°pn^ L i"m nȸ޷ psWًy2h=" iX|pci -eb~֡jpk-jv{'@q=n\inѹ{@)e`iNz)#V:VHT8eI|.:ݺ `~Ȯ!\m@T܀}_G.x%ܻ]YW'bU`|T[ U+խ:sA-KZ[]K0x%׳2ef,n ieC(] #7Nۻ^K hQaig.{ wCI`[ *nx -N^2hg r;m]*m)6`}K\Rc ;UѰfwOClGF@44? omk"s<5TѼKN԰7,8Լ6NnڹuyOzLH{7<Π\(Dqc݈ blϹwS&يߎ`zfݬW9P-?|Z[j{Lݛt-ʎ e8|ci_z+7ڲ,x!>T2 ~IYgr*5Rd.$@rddZ K@;n ZH3p#GOWy @^_~w7锼VGAv?eJkrjNE *7o{ 243x̱HTl+"6!̙j] <Ȁ#|-`WWwhoFoQgMBAqPњ.8O4oR 1 ip&-WlS1X>U?Q(2QK ReˡmT%bGrJ {N=2X }i>1w"]ǜKn5sSQ*HAX`I)Hz‘c!!qa_v,+ 8O-/[W^!Mހ/)wDSp$}5@ 0 y-7}o ΀I `@$)v>VF7z/De74 [:GmӻA?gXF}-.b ip$|m+/.wά!BbFn`6ęs7Yf1LhyWs<ꘪ0,n10Φ"#:$ /E?QҬwݹP$ rXu QXiʅG? PɅzP} (D61E-8}~U % m* c W &R:|qgeX0\H`Œyq -?pD5[#E\ M glRӉ qn3(61#q־Os9``ʣ:6u#T@"'HX(Dg/ ^ vM3WQ"8ҪA!JfgjWOk5Ja/1>zW:)h6pC`B)9t* I;4/U N>w@h̼=lF+&9)μ睇fww_݉Wjs"w%nYM}VG`P.,C x2N 2\!0OVj91-,%B hT;X 2uui-"()[ l`e{rez oJ[BqۍfWO,I[o<YJ}opUkvZ ˝=VۀcCXCPCviyM=WEki!yMйK#Nt]IJ3>zhe^̫09c)a?-ǣY귭`NvЅ*"\egZ$ @Wa $ } dCS0Ctyiׯ7X8)@JWl"܋IxgPzShdm\SCQ7j:r?+WQx4Ɲ}mR{3:cj@l"uo+|)dž} ?'xhMOiAuQ*cx">8m0\;8ζeDs)a&Q-zV\$vBeƛZ‹%8,U9 ˟M;Hjd]k9B~4 vbۇ t !]Cnk%Q@: dUKƜҩcAKCRZԯ"8r͘F&E4Xe1I/e9!Ub\sC}.9/4Iڸ5x\։NSwANcxVj A\D^69rjC֢֜L͕!Zxն1u+/08:{Nt_]-K/+yBNT8z9קx6釷q%<{/mihPCiӎxo86ra%g!B-NE=q `B!glH)9' U?ň#W?rE'Q;b eρv>t{*c*:\ cK[Ne,zӭ:MV<@ug b[Z@s "E޸R An\S>7;1=%.U P4H&4V0 G-eᤑq3pv|c;4֞]4=`ߪ (iZ;⥕WlO$v %C@s8 ԳY'ѻ72ljqQO߬kl kп ҏn%P?%fn ƢءVA:`ДqPs]ewFUi<3rI i*Z%ɎQ ɘBnx9jرmEuc@:; ʕ{+R(U$"v |[ስ #`hAm;HSn}nڲ\sg}&f|+WH11:HQbA…ĺgue\C:@].ђ赻:2Y5ԕrݟ]{zAח"<橨en}CDq<3GD՗wZ*v'jի5؊T|r{qf^ %2/!p }G3vڿȐ>;!"^Q52V~줰̯ bPcSv*ްg L`zR+$.@"z+Q x-; C>5\ƆUR$ =Njl #@-$ejlϯMU? 2Z-fv5G(?ox[<Sٔ{W`%*5U  PJE`SOa|٤Kl.F09  v4O9F0̀CRwf4We,ۯiN*s?8?R~98BT{w er&1˜+7OsבF6-CTc#ُQ1MƴǢT Pa[c{Qz`Q 337(Tt@+17T0C1#2 `lz\e$KI$fxԓ!^>17 鸥Im1cKɿFx7> uzh5jv0Z/ep-Ђ$-^x2 8]I'VV#g#RU1cˑHϓڂTߢ eNE usT)&D&`@4I8\p{ z?2q0!U]tk>4Hz/_oi4Yq ѲXny3ŗ4Vھ6S?oFrqls4]XzBӓkqR9b0Iyv6uz -;BUi2ĬpY֊աI~o ~hӽ*dxC,=ߢ,w='0rѿh,FZ7AF#`6oJ1_4W҇pViLZ| 8Q&,TwQK eN%͈PAQ^.jہg6?8F!0\3໩5p֋݋`1:` UBnR o1EA=CQk ZT~ ᥺ Y.;"'!; GJ0Sc 7gR:3ygd\ef"1k`)}7]ZQXI`$א(I_sNsuW-I~D$:ţ "&,2Pbp37e>죥Ry̍.ADŽ!Ċs)vu{?Ge7Eg[G7Ed@VYXS}yW+czGY,~BF޲7ݳ0vӁ5sͬٙN$,(k+S}Džs4UFsCq˂+0n:h^Oψ7&ْJ6 ɲ3#tȱ6ZWM;d\ߩsx;JFdDҨ^@xli?Wq򅐊:Da\Bz+װF|G<6$aejuOǎ̊w4Vգs&y3mTwsS]d5-Onn7IjX^hA|(P?"!Ps%J[z$*I+(tc[ ;uy/=l0Ƀ &[5aO:;+O߻{1u9GcɇSG" ԸNhdŸ[J7P=Ѿ偘hV |_6quw `yNft([RPwi$+g6;G) z!+ B(RN̢XNTf ӟbC'<$ ɹ6ݠ)b&DߛQŧ$ע*Y:#^| #"5bώ*ZW{xH'Uxgo:@45ڈH?WA"̮qAlMYYáEjQ79W0/;cl"Emm_ݼ>M儀>iRI /'ҵ(Ú'Y!> Pޗ6>aQU&,)yA |PeS-ċGD)cead(g'םDŽBMI(D$߆y0Z<vлr`˺F(pO ' ŕNn.",v%Zp;T8L4ӼP t8 {hdԴNcw|,M\Z^m5%}#Aė8 ~#V'G*S`wX5*Lӳ>~$=Ypyt*xSpE_VG V#B 駛-~]6ޫ "\ȯQu WHi`R;m!.m3?uDr}rrG_220hm2Qu|BkQ,[ >3Ԝld;R?rDr 2!aR6?Wz|Aڟyx6j+ڻ,AڄlEP _Dܿr/|ނH_3*FrrHcU:Z4JN5r:^HH{΁Tnlk[xե"IbR5)Fx= ."E~K7Z̦f o;tUYbV!$a1BSCؽဗ*B?kǫ zHE4I,0Hd-uo`n]˗VI`PHme#>P>SO-^#ef+D{PuأKtZ2z$V9Ū}OqBS DluT 1j]E=g:.]&TМ}푿+& ?Ķkđ>偺WϚg#ԭZS;FWNɚ U(OARql5 \ opNZ̎%&2 // `{vt8yYZaYjQh,"sV"֬F Q>*is}eYJ3 4*)NRi 1@_Ug+3*\6Gb'b1y 0_IT`&K]\Jf#<ևn L9߶!)=5X+`\'p+} QtCSpgP#t*2SM.>aius=0oj]]$}b"ۯ4 0;h$ai"v7}Lp(`J-BOޫ[ΏRJyoSuh1-Ӛ:vZ$ ){:f@8ޮ  ϮD(M Ё{h:<1XKY:j\b;јo$_ dol]4"'W/sj$sEgD۵qn!R9dSf p}D{KkNJPcÌiD-n <Ʋ::vLW}W]h;Rvͷa?U]P ʼnY2yf@uŒL8ml/~QM4}n"8EU;>*Mܱ8S5򶝿ĘmEIy$ٺ{fcE{LC6I 6ҽN?ѣ36L,H)MBajG/"C:0d= .t֛5ヨS׀Ad\ /̙dvm0S4c z1R/_[2R)k: 7HUT)ES0>Y$&$-VJ,2DEn>K(O| b [zr1cۚ/0^ZRY@бPP(l|L9Xpb*_'bM#;4}s/dY VLjIJ=lI۠]HO`mLq䣐D)=f&T"Wi!1:mJJ4&`!ra@}Ѿ'Eo~(Ot!W; nxv8ȕ9`z*H~%T5.sH"իܧy$FלL4Z`/k2Ғ"~sWDגqҙB+ <OKI"I}SRvgq髾Z&Z)!l^ T#jVt%}#%x,ߣpuY{`ix,ln* ;vdQ5oKki0Xg;.ny呣ق̑Km-=,[# Dd];7Ahd$e PZ\%Uq!n-G2Q[Zm7aJGq:n'ˍdۄ.s^ Ѿ~BDh|uFlpTDz/2z*7M1-`z}dԡv*f-9b 5 |d=)(l6tN|%o˹++iPG0ihnn͹?{U8 { CPeJf/g,n tցIɝoI[YV2$d7LD( Y 3Q".KuA[Qccժد}G9!B㬩y۠ ZTQa%bpR 5l +vxbP45U 5oٮ?XS|M$ody0wZlcϿXE\6rDP_}%*@N`ypy3}:DC}ܒfN\LaXA'7~'I/7-7?/ :7TWH6679dN4;]93}O-^ZcpW.qߐo -Z+}/ 4z3'r /<Noǃ]^;ox-; 6j+Evmj1O%b (1>N6Z2`8ZAw#ɡjH5 kE(k< 3 +T>cY8.>"e+30BWS%>RmmzN49,6]= x<!B%ĹY))~]'sM4^1KOX \ S. pygW6{N]"X^kB xL@zVV,3eyanp_,DxȷA2G~诚_nmf/X,%3;.Vvo["1!,.%8v)] QPjHlCy"^zڶT&^ÐM \NzJ7[ʟi{V@m=iLA2 aAfQB~NrxC1W`I["%7xاվ.Hk)QD>@Y{̘5n0Ȍ\b802bm*4>ݞ[^? D2}rCt-%Yk@~ѷ2')J1, Y0Ž_N_n2FM:\_Όβ<.O"(ٸ';6β~XVγ Õ:8ply,@8v0G 4%r*TIbLc;∗w?M ‡&="8a U7KU/sdO&;c/rv zEl\0۴N)G+0UݰYNOQX})"}/MG:LN:wAl0`8 X gӁ.}x?)+uX%y'dx ɭw٥nޏEBi,:zS7*R4ŀRn'UHv`h EOM@ 3~Pɺrj7Ns|PkF,~Y$ڧ#GکS&x."x CrxYK3Y-G4wUiy g#X :45iVNhǦPBo `&N/03<<זp%wsV$~+P/%٧ⳤ3?'CGAk3sZ_'xpQBMwOyɱ68|Iw u<3$»9ADK{VpzL]. x#فjrm{Is︐ocL+ų%b,7 JVEĔjKf8ScAfj[~O۔?)MC ]HvT74HLUo)$n~h#|Df{,#B\;,Mdc1}Lնc}=a78ȝJU9 [H4mX8Kaڃ|?5Wε|Gv}eϤ2z?fWA ne`тT- ~q@ -T0>83 IT]1kyOde+J[fʩh:&Nr))Z޹)/lxԟZL܊Ͱ*~nۘ.M?tBogф]7 G.@ %'P#/|~@|}I0۳V9{=;BPf;\)M ƨkb&oz$hv?a6?U+g e|ݣI.øidbWLhYwGR8WL]C1U,`sl̈́Yu y%\9yTdQZ9AQa }엙^Me O}>'VX$zpfJ . 8xClb"c`X1Zcy:?ad}w|&&*gu6*<&WPr?8p$y;g@c+E~dPL2G3u~PNCUmX\V]c`- Rn:F4EP28'燶m͉#|.ޜMFCrtЩ}gOU%d6^wi.4(M-/4PdyBU:Pu`JK$l~0㺗iNJ@l8H&K0|*N~F  N+_eVo@ED٬0Ae \p̡1h$Tn+s+oY7>>'2IK"VBg=A qD&51"|!5m= y٦A>R66`s,Xr'ښdI p޵2ݿS^Sh*`Y1>R T^U$T?2wMnym/݆~2[Хx$heviy-G٠0VB s=xo\e 2 Lh|i]Ǯi"HwN>X_z>[a )Zz =gCq[XN&j=#iЗiDF^deݿ"=f}kA.zn BΙonZ\YeW ܑ=B-FJ;K\'~nxao;^2u րAeS6ߖ*W(;^qh=9p_Tj*6Kv2=0|+oz.o R0gWʠV/AqvAZ9K2ޫFQm:[+>}B-&BГ|a8sLjM%u7})>*].Y"} '&x9VFFc̎#3i5Dz"j}&V^(zMدB*U9P9i8>U BNH#+aoGYnDhiY臐AO ޶gm͞M>J(S=l*D` ثq}+;î h&7Z 05%#y\' 164gEA܄v7V6VHɞ{\,]/T-H(JwSXiE`4 MCٹ>*v>>~Yf#dOe/~8(905ZĈ*j) r) p5Ϸ){``U/sh[ *kOn΂1gqg| ]9J=FXwE?Z$E/B-0d gK)!ݫ&Ie:OXO(?PР[oiH0 J?'da0듫=ŸU{e(.Ʉ,k5?Z.OhߴYzCb!Ca=d%Z=Ftb lQYbu$h굴<, "ItNCʢաV[+Y>_e T>X+ЮoEr<<6oƜϭR1wg;vys|w =忁`J Ee UM:e=+oTPHNQ47{g1+5YΊDucFhq Vx' s~ oU9F}hN[$C =^3 }FgØ0kc==pSKL$)9t$'_IǠ\Ki)S!Nj偄ov ZW"iC ݆A=,,WS`Op#02 >:|̽S}$Aqx ]e @_!EnuX»ʺ>l#n$$fr,泝\kU/S.`]t~/)1n `Mu]lS^^FPrt՟1NbvM6S_d0Uv5@WƟ c: >_ *n\m+O^9)ٯD30wdR7=|YJ2ٜ+BWm1%1η< 9C~Z _ Ԫ<ߧGA]Obo fEaQ ؍?Ly0d*l8̰ Tc<BYv'cxsGdo_UȅޯSSkrM*nzjڻF ykw[ȡ\A6t1e{M ϩ"ɮ6];a (g߰ŪG H|ע%6*3n?ՠ0%%OVЕL۠&`\Rc O"_.ʕ;{"0T]ȓiJtlVQ9 d9nʿm"8:sCn}Ja'ط'CR/$&g4Juvkij$;;ڇjv+˻Uvt. fw51zUL  8"-oh$ ]4kzJxgoFGޫqDJɖya4uVzNm(4-]Cx$!ρ=(=V/m dip-]Zu`y8L(ٕAmF^>+ OV79`j:'IDjpۦsT?x YÇ>Ek[H 4:?Bqtݦiv8 >Q ΤJ7zzg{V8Gt/\8aiʇ5AT^+ vLH8iUXq F!fvqzauuTJN TʍOp3'1 yXv&Z[{+m-<秸mM.(YY!5~QnxUOMJxi-@n/L8_Bb26mlqtBr) I`'E8]y~:š 6Me ˇ(5d< p:*Y߈"ٹ +eϝ!Gw (!("zGXe;TC\@k܃s<:57{3XZ7G?hWcpwUV˔B;*7W6N~Ŵ\RhCΦ;"awq;/U^;~40@ի'r O"Eͭdk @4u]ac.nh`ʺj|Q#Kuihut,ۍ(汣of(17-nsB]T.'mn^ÏhI6J*8U6K$Epo6ҴxCGrC ?C\9MltijWR~iajՋ:kyA'<; 2$3 641ܵN95lKH=#Ԃ'DsUV2Tݎ e_61q98>;e.xN nAt-fetqC\EUv&A(E6_w4NbHi8e玄czRw#ҏ`/7ңr ԁ *&6PrduX>G+o2_a)pI'}c9g Ma^L5zUZGCb2hBՙ:JG u$+Ba` Kћ,មs?<,"ځM9(׿y7djn%]xOQ-*bx(b a{@%˸0SXFCPSbOB Po#i*i-2ް wDS lb5Ƃj?VXx=GA’ޙǑpOy0S[دPR{֧rٶy $)縅 Ѱi5Ft+#k`H|`(C$)ؽ>gRv\O-+t:*WX';-+(vyBݖy? 3!oeSh$ibV=C B^`i%O*v^`TVk]521ENj,33玫 q4bxݻ7HgZxJ?9(X0 a:".h3ӮE1 ͗ʤ!$BZQ_G V_+*zax[e"_ H$&cLc^X_l\z^R>8d~8n1 d~F58+}^ ;Sr~*s;?J! jL'9I}p* j#[P*?pOH&7OoU17߶=?zL-yAR qJoUg qB 1hθF} 7 F.ߙ N9*Py` d/,&낞|5HR:epۑ Ҷn8T+E2Ͻ}Sˢnpve:یj!P!j@"?^AyPU>“ 閖}EÞw18B逨;kvұfgxENSYWBr&57QLmd;@1bx?9P> ȗ-y aJ ʋR%G7"%dm"b"$J, >]s(V5$RwD2MF HysMp1HTҍA葈Q͖3<ۯ6n';c6PTcr+`[} .X~}nTQ] Kc\=AeyΡȤ eB9NI:-HdY z~EXl~>mz$MaW{HIѼ! u9A.qƒ`ϧ(jy{lwwS&y]`ߵA%z#UlqhBN'3Ф̆Z?!=s!?5t=ί=SGA <[IFΧ8ׅj3ƆIaDnBr7G~ 42aUCXju䔸I imr_pϥ )^0riT9QjId ޜ  B~ ص~wɣǻO$:GNLXAgnkc 2I_]ʌ 6(z}4^dOpu@D?h%cTzFMRt}']R 7ԑ5|T7!~@v=á05h}s[i :1ͽ=VFHdRBHTZ߀ttyӜA=S&x3; Z;iVV΍_M&fqMC){V6&뾣ZIm-"vW]e6\!2B4,ڄrBl%*>BIQs؁,,6V <0q5(p© E1Gs$f2XSk^Qs{~TIx#Erw&[$57R/:O./f cG $aD}\Yǯi@;1KP}CpU`4 ]lW$)1҅Ψ4Uibn%Wޓ;?ͫ"_J,}LØXqO#ɕ)1ȘjU|OVjEG8BkƦs7Ya9xܺqUy5ncwl{κ)QkΡu L ^0{>5p4V0BВ 3H*+*-[HAκ_[ʰ8۫Nyu?w'"Ao\2o#Ahr$ _6_T-tŵoBl4j=VmwbTn 閐bp渱 GT+KwT]:(Ŝ?!ξ 7Gs^tp]4 /ILz3݂dBlÉ7طd -BzdjEo oQluC$EhjJEv(vq9gP)_!ǫv{d\RvvXÀ٨k0+1('q~OKm+b wy|b& fK B PN/J i/2T:VtmOr'vWha/Hw.:s;NB 2`%b$] ᨢX3@nIzҕ;Q}v0~{9SnVJ`~۱P{^ (R,, g;ɬΞBxoz1e&e[IYKҴXN)xRgtIkGT;Kdž&J)HngokUocwR>\pL2ݑF =*7gA@[:\ y)=nY(?>8F铲*ӡ`~aHD  [Rl4.qRXgLCp?*8+:I,Cz )0ə} NH~(^;ʋZeݳA2,վv t?^j8ki <͜:`5/dbڇH"|(:5b]b:%~Y23wF{_vvꅊWqaրpCjg3C)`,.F9 B0l惝x r5RϹ !ekcA\.>{%Vܸ/Hv_y!=j%Ǝlk7E^A >V4̵н[}gEiIHS(Ymm ({~:AE -uu'qavH쨅~[{jKmFQhݔr'90sTHԖ*dZG-7|D5`đ1fdv[ PD6}iq5]2^+l7Cu)Twu6oϼ Ak @./< XMHC'.aYJ_@6Z)*RZZ"+эMdT!*-[Zx;9Kl$%K~T0+{ItGv 4}]RȳX)g%F]XA4zF6Ѵ-D}ZvMApX7"5pu$bIŞ'Jc"_uFB9$6'?-{قl/{ڴqfRYVNOcC-r'WMR yG )>E/]S4߽J-t` 'ʉ_3 \a\jmda'_Vʂ.Kw20!@( n6 rHT%GGS4o# KQE$&66' qH`ћ7\ZMʶ}@-q#:5NJwz>$DJ,%,seL'O?l1;(3ҫsW=|[40<> 7t ?݀LId+MȣX&D b INڨ-++ xߢʳئMцb窵l3B8weYn挒 {W׷3"GS``quh\z(|~d uO!1:"Sl _,b\(- ru/o$ _ziQ M+.&O⵨HN<ӹ!'YD2Kw˔/CqjW@-ntYQ} 0Y))}6l66A,"Pp2K?Fm }Gƽc"TG^_$\ hjt~IoUr^z{ܟ%з3S ҕgaK . goP!ō:]<0GF[LCTKeg+Zmm>zQojoPJsRaar6 e_Eo'6x]"9rr=L\s.΃s8B L)xq` Tg_柌=ڄwh^ߜu#7r,2FuBJyn"O˽q%GLQU78Jp~~!h/ckLX5c~;oMk ~ ,)u$cfy¤`A1SIGe!zU8l!.H^-Zn*怛GV1"3}f[!!ar1@hǨkv[6>D[ .YBmzpEeR {fjU$s}lpuVOĉ&]T z 2q?~Wt1LFXB͞.N5EIbHXdP7|y7;sG=oyZv![8I^j&\HMW}\e% I -{IT+Yga+ 6#c5u7]K\%ħf/pΣdY1-Vo]!#{F!L}6EwP9nոsX02 "Mz4!0#, M&9 Kt!=C`˖,gAE*Mq9)pjx*/e>Íu Ґƪk8_fq,1"CJTNDlQ¨3WTK]訟FM3x`bD qԾi%61ls`z98B53 k||k~ +9()~굙Y[j|Cȋ{ to]]u?*cG뢼v-Q3Yǔxq&ǔA{}CX}QI /[?N5HasJdΗz>`qD?hAEHkZ#r4O8s+3QGRc.n{^G;*_ʗՂ7ΤkozSp=YӏAy36{ب.nul{BKzPj _WSB Kjp,^Nۄ4+µ4"ڹ-Ļ.3V.zцqd%=1TWf;du#@&(9Ph卝G?ܮ+=V*s/OST߷7/JFASdwI6dHLffW;QthzT.joԟ혼slOCU:Mn\6$aCԣѵ&x2X;u4s_Zw!\MI~.4sF@BDji'>*]ȒEzaAd(uz.]B3`7kĂ ^#eLu;/ݓ gW84hwx)g3ky'RcpX.Xx!]]`N)p_O^XfMV~ʩm9xmݭ2%Y,EtE^mg&hY^ SZjaY[᳅:8%FC2dc.[lgZ;u j`0LB*765 97FE;*ׂ\p-eFq ` tRŜnHlW=?13 ]7gN7DG*.G>N9OsYtf7-bw\ J`![e]_!1Jd'f.)tDp{Bjӻ]Kv_p^<>ZRr1KSֆh^ 3atM|m7t)/XNJ*YJʈ)eTW6 4D~Uڻqqfc(ڍ>*3{͋;wn~7 {T/k~e+1 u} SK'j,}/&&^8"|Ts;<ȮAӂ*fWOs0umY=nVu .-0,6D&~Db|3r{uMs+9DKK nmOW/3mw)ŽvQohЎ?$]:jcV[F)bF (&X`yV \]T.>.~!wr'ߕ -נ?mxׁfD]4el4Y(a2+[yo(i }X&ambRQʡ9=aT狋דÅ!Xxem;.MN׽@+=A7HؕwAarZJa;> v@xNQȣ2lz]2@dUr~nxµ].,[qQ,9 >0M9L8YITZÎmΉs>G*~O:F3b㉌{qFq&֩so [VˠZnr cs燝:1YHţGXP)# )W);0]Z>.&u"ӧ=!uq6LU$<#"ʑlfp  VIǩ`i:W(#(wAzQAAn6NA4֘\Uu4@J7sp}+oS~:АSN᣺!4Kg V_IvpHV/6-JFTb ԫ8X~^G孳W sYX#@+"zwP-&7=$!EN_?e>R ,7H'hٱHDe9N I@^I-PH,թ$WΥP_r"&A㻺^b&6 h=#E\7z=f)[Z?d>ˢ7(,M l4:jj<4KUt,C+@UC.b02Nup7yڳ) fGi)O256L~xs1'ݪ`sNǙ@dsՉ P#F,k5 c{f.}"/KwbGn-kQ}Ec$̢h-&hgr/`6J^UAJ3V$L!M6n|}nfuQ `St6iLQ1}7Sf8}Ȗ+Xzzk Im57g*7)wGq<59fʘ1N/Z10  ᗐ{ʄe!2Y9.?M. f_߼R ?Z H0 ŠR9 @Z!j0&I8=㗭֍$_L++,REF_**=Q鯁A !س7W9_DPW?\Hg;R\IM.<6[^iyIqT5}fDiV8]}C2(]YW<-Jnh-!`kO8+pks1 d>[B"y2苔Sr3ˢrm-Is0)Mr5!}iD f2Qϰ N'f붇.Tc${_'0BoM ywн\$+m`j[gH",ڜ Sp>||#0,<^6Xrqq.3,1֫I>fVv[,/Ct'4ϝhLb_LcU `a UzU%i;6=ZJlHsk>7zf OjL9틴/,P4OlOlA2sO7IyąS BEf#Js煅Bq>cA>37t66ql!vibJ6v4M%G1+*," /GXe|;±azrozg$Š *b:cMT)V_8ʏT|ehFCnNSMA}(̹9I&dƪLG!2.bx'/_]628E4H&jtP\;D-ߨ!vПBBnsKrH-eut88 hLhF}rcq}c[n\ =wGзqXg5h1LY+KFo/,ޔuYX.g$§Htx,jrLG JcJV\+/hlWG4 *]n/ӜՒ%=mm$uԑG}|+L:Dۑ:}4GZ nNF3Ǻ(0*,HcLI~v#܃9(d)C3Bq)SNtJg M\g51 |gԥ"5{JAoA+,p[VGYê._0AU!¬gI_V~ ٱ`T\|^H$"(bae);GPtScH xFKF+DA/=nP<>UMi#W,<&TNvnG݁OLMwZUYj +U4hP'Zo񓷵O:uU8O xytbV;[ԭJ"k\9)pYpg fl&J/ [ sȠ#Ą" >KW^nYHlEbBO 6[,92mVʤJ 2ȮB-ɉ܄SAϜc}NS{ga`~iNwB5ije#ȷiSf7Gp%jֻ_a.d|AL@Lp?FYi'My18Ġe3O)FYxSmA'b {iU-R}Gۜsᯧ0nPp&W9"is\}ɲxmfz. JQMF8@GGz9[GK~n4-rNrccں)^g n0O(TWd@: #ʽȟK@AkAALF HF-FW=eR@^|1a~\3,/q+3);|8+5ΔP^iW-#U VLQX*ّ DO~ٔ pycbXjt6p~uҺ+N6hwB+%91Jn݉VI#?$H[?BGw@-\iղL݉%SL|~,-_c;g)Bޮ6qGt鱠^z߸y+cRs16ש~Q| S+y./4Trc \x#= ig-t~TЗ}d0FO*I_jF"R(?T(gm)T)O\˪PUJS64İتlmc!Qk7p}c-f]a[@,B[|=.\u^nE1|7cz>PS9^%-$'!xѸjmbmY.oY/v#]J䴷iC H WblFY&݅z78"cN';̦BPR29vI{;F &᧳#P:&G}L0: ivhA"wo(<Ef'78=e*w|CD4Ѥ5b9{_'ЁRf{n "x eK+P#W@џ[RCڞdpSp>ߎ(GfS )Z mPxc5_k/jOy{8\PRdCWd(ѨI4xb?g[zy2*<4zn` v\*LO"]yف 7BޚGLRpX莈{MӦ~>|w 9\4&;p/ AN IDLcư$R\0؀P' JW`nR1 \dQkqQ]ΕP?tM 8jӀ,Lt'5/k"3*ox\B/`y€(TO> dMDCɠ.mUy]W!WDŭlnockH`#)m};"9PAyZZXa(T]مT <ŵWfG`s&Zl(*νLM.\Lc}adpYPZ͌)֪!rfty($C TR1;fꖥHlŐhVVI)tyt&nfS Op1t;g) _>d'[ˊD{\h|Dͨcc~n/FCEqU2eU0bUk8x09͛~/=l݌Q6/*.P0+J>} b ?7j2 _r{nMKZz$Z_+!( -p|G]# LsWoeА<$JFm8nkl. F2> F;|$IMR˳jEXW 1hMJ~ .9 zYr"#7 uDj @J{sl.aݝkzezݱCedn`֡z.۶L D#* ٰlŠW!# $TcWofۻVB3VP6V>BF0ɰ5a!t^>'Ԋ%WvJN1]^nmd&]CHHz q1p9!gTl 1$&Bf-T,PYbl~ghTg5Z[咂I~!=&[oN8 /xi-4Ƃő1;8ZA?Dcf-(@L>_F@i:0>GӛS=ȏ]{άFg*7x)"LøwGD6H}ҴŁE>6xLJ;[VE7a { Wf(^+xj\K]'12r!2?ՙ:~HE fHDp&15^Rp>MU2dp9%D֭,JXYb*ݱPvs@gг5ˆU cOrXCs?K IC&l735@ޜ ȶۗ:-:q8+g1EGlB%4i[T yAՆ~M[O<>kO|^4rPN|P#X=? b12qzqP||YMhw<`0%*8U M@,  s]i4yF[PV4q?zBGNLM0vB+M>Ǣϩ M DSVE[򝮤dKh6ER(ekK6ByQ, 5a#mbGr1IQ)֐?J AosďjZ{a+IrH/ 0:G&*3͙F0^CѰi<0Ё8XJc̍Կm8Xo{eIZ!mWPFlg=V9mK^ ;OJ1;/2xS9@s#8ӴcgTzOKswWDŨWf ֊.4gy`E25w;?5-]ydՃOB}V.8AS[.FǙbV+24n-ݣiTZ<~R&Ք#H9g;_J?tFlӥϙLcs,'ب2H+Dz޻mJGn7'P[|.e V(uޘl|g9R O,aKss%oZ!ҁ,sdS "'hA&v YH$tV,r_N=->v[814MJ/bC;(r뺳q*+췬tpH s1 |֑$X~e_,JY$?( s/ N ߘRc{AI(FaM}4.T[}x[8AS6m|\W3i0xGܲTjq )t)KpC8:x_2\ږ_H@-raZ\f6rOȽ}$"eddQǧp^BRgq- F7#7LKԅt[bJ>ò{aG@({sv묁YV_[^JC>@I_rp B6߳xr&IV3 #rW Hdթ><;^4C"34 ×MhL iG@HOFÅ*j,[ӵ`c&/-'`:<0MjCu6UJ3YꨭstfجPc  i^VyZB7gNԭ0ѲzQ FfjV/AH&20S1ߪ GN;`~G(\Arre _:3\ܚΘ?b` Y(#vBs҅%قK [r|5x{g߆g3iNytIV-lx[^TYwS[K4DϾvkF,?D| y7r .]ac)yl*D^̫QyuSx P1 `.kmn [}uuf($ q]p3_9? G:E۸#-C7f{ mI)yySVg9fm.{^a%Lz㵡Gq07CvڠnT)8FuA'`∙6kcv<ʆ4V<&F#]FuѯÂhvA xS :_4أLjrs-̓vjY8_uYb>[ T2pą4آ;/`n?R6OV%7gahhf-4=Vi|EBIކe>wy"OMA(al^ցtzBO_n9lH8v}{1c${ee=̡^/±z кOI?NЉ)Z +T%q́=m MPT<Ƀ@]_QoݚE{c3{>V`J*[ q}b~O CHz \8&x٬2BN ؼS^Jt<`X\-9:y) ,|XDa,~Ɵ;lbs>NfuUf}(6ǔ&dgd{ 4j1KD+>EtEt],{Ņ1c 3Mh0tW>D 1zf@nweNXS4s$Ar? ˿uų<& Ί\4>eňQfeZq%vT!pC^I 1Pߤ辑QmudKXhG!g ; 룳(P5YQ*aBH3)Ob|qA! ^2OEPYҖI }B+Ix㾆wZAk;՚lzeRT[uЃH7=~EGH<, ?15~At5:r9ƛuW5!U pa攟k75R0QW4+AG?1%sШ8P4cc([PjCZ\ۛ ꤜ>Hh\(ϵ/zlюTfth܍k0nQq,zefKX^6̪ ԡpCk|[dt Oι~;h:%w(7O!6n.$MA =aL<+LUB c%;ѕbC[Wx!A/I$ZXK:CKYZd{]E2O_$'b\w8j!<a,0/ꂸxZ[r[Vj]. ղAhJù[?֎82 AKbW8h9@ wG5% xP^6 $hF\v=K U)wsv iu$gDT X!kuGVFz~7ZBmu$ )1>HcAn،<rXR 0M"CuNޱ":`p %y`7]N-/'GCP8Y>Wq9vRx"RŌuLc) kڍlq VFK}i66_x kLœj*dmDˤh{`<Ϛ&D,.*v<9,Rc^53?{ޒյ)y dZpJ[ 2qը&;f.gU7S9lQksQyˋڜ.Xm2*#Mh&ɼU3bJpi8WtOO6PJK R^1.[X8u/+ Yq?cF $E*uIlZSLXvFp8Pr}@prnHg{,SQӰċri`8\bՕlNTZˤ7 2]h}@(Ϟı3Jޯj(  H2B܄ZΎv(wJBf %w=EJ9| Jc4Zvv6Ys'!`*ukc DlR:ةo U@'Wo".5/ ~Rw:frO蘡#wb?^rFLWlu" |BBkB:5h?ɟl")K * `WyPs3yqPtB?gnqZnuJ)JV6ieZSD䔤EwL_vMڍ TC$T*H3)Fs&)0M܍|ws<}0*bgE_K9yW?/>OV`b_:`ϥwy0af03Ҁ{!V-[LM޴ ~!<6D뽃WۂjA@%mTʞOsKCnZrR14&L|9S K6`N݌tD/2'''a>%u "ϑ̴}E@X?<9*-JO"oOZZ݉CV s_3=6S{xDzR)f3 _+PA>͑ؑWeGb~{;lu@7tRˌ?3.\k# ʎkid)YQ8>U4$Z #@NS~#F?`qQJJkt3xY85N֬񮹒oDD?L|; nLey{ۿJ_Wnخ1zvFd9=y1G!!b,դ%tUJR,W+.0E:[q}R8' JE!"@0$-<\ 7ZێDrM$nD`y,@$q!d MbJ06oDJ+‰Iw]] +_.U(QGSoD5Ai+q*%Sk,qczmy~ b,Le=h&U)7ϑYhV^pkoh䨠(C h1!̚wTѿ $ا#OHOhCu̐!::.Ei2\I7r9ܕs}G{Vz`4<+5= f~ UQ~qɃhkJWsFAF_wWvZ28}/`5ɬP.c$P4XRi{Ay4+-5H8ᄧT1j)F$ %$] `wW%sw M7bdZl5?|Vw`U;: 30W=xkN-sS5$犔j=B4ۄ\t+iU`ŸP/n5s={X]I,*yVrJĮjP,x[mY{Os~@2=*N6()HVJԛ?uV3q;/D>փu{kv2_޹ dn1 b"Hق1*o?T&h˟wrHzX#+t. M!B9\c;=cHNl Qr30Ox~Q9S;i?,/]@;ՇozcqfR\x.MNAc6b'Mr)B64*\FY{ c2Bj$I`2&HxP ^ -B~az>J  ̉CH{!Gi'VтYȃ%ZaC*`b8a2@\ (<@'n{t|9ODezLM*rRac]&n°Fn>S8`-eĘӺCqt-o9vt@gd8b{s=΃81g? `B%JW8 +-NE&@80` mq mhBщ POXɱ!2^b Fi<.uBܷ`5_9pDicAKX@k<.2(7NIAfJ0$>}o'\hxX?4-=] cNݽܓ ppJ9[Ͻ!ͯc3WR2ƦyS(Ǥ' 嵵>iVp793N~bTǦ4t,\j;~OQqRٗ`Oc``rLHy"~1 z=A,$$!O{9 i9E'V}oSwV+(hoޫM,=^d*Cޫם? * ХiP]ҘUF!i7gXJsXT70_$#bŜH=$aC&z5s,f"-J; YRmŷJCH.F 60n,j_XS*h_M4m)= pԜ߷Bʋ}z.Ia>@[X^%;\eiuWu /朞hb,?+n81_5$&|0{p'3L3x _T5ȥL&渌 ,t]%so ocL m Vʷڜ`ܧ!ۼG NXaF'mG#OX|ƲM!YP;2' {-+*e Jv˻> H[Ī7j$7R5i-{_+u;u aw}dEFSXґHVT Ѩo@ğ&p-A=%#JjdR>ק"w+bDqSwg/]q"LjoMYFЩ?~+ YW2,1%뵯 ۧAzz j%?F`l76!~v)y)cXL GG.de8`h88 9u0i 'ʄ~tA?h5~SxDFR lCfwHI3A 7L?si7J2h{Z=бh??xKL؇H$[^)t1IxJ V|X-}jl^2=A܋DIAmZ=[q@E>}`u[yGjc}ɉ Uq f@9b) >T**lH%Q둉`&}:h{|TmR9 yӧ0ɗa<?ЙkIw` a;/? 5YtZ2{8_3Ͷ; D$:qʚaYE|#ӿ6 uԡ;[miTb8\~'_Ne\=SرpV*! w؀RDo ɅLj/ Uk) WMz4IO[cYq`# pr|R]% 0߭e|PZsoaMe}{;s.83)9(t1t(jXNŀµ&j4 4J` n csO% FIJYE 9maci'3maS +EDGKaߐW5GME m-poHgru!mh8+}g5pcadI!AЋ+lk=~(Prʲ򶴛%42_@z8JȲ5~sZP@5]Yr M9Z [ەeRCR̓-Zxq,<eu#}ذ65v_˦6 T7HUli2/4di!19 iI!30z޳x1B_(;|) "z,h=j`SpK$,AMJj*4;zpgD;[y++>q@'s+,snKD.LwqnM22*9E?(y )v_!4BƠ4q&QKw)IC}w+;uRdF `@@ 4O-:뙕8M b5T-89sq5i0qŸaL9HMIݡVr$e/qLSx)iQZ\:>(ߔKoa,uLbOq ^ YOHI#Ñ9m;A hBg')֪6=T8OjzVO MSrh &:'I:n&chXvbŪ}]1o'U]wezҨxRj͊ncĂEM_sU`]j] 8m\F dxd*+Ũ@zKJA1Ou$A&n#^AdP ]KvBB3F+09xN]I.Q<<8&yp. =EWRyn@u‚p ͺ>7L;=UC~Z RfB8Gȇma1sEhC׿ DTI%^ì%>lkNV<o2"mǪFA y_ eY 򪜧܈AHn-XYDͩ.`=@\l *vc+}00#;>8by3G}'ܣE "BQ$`v(h{ a[l!=3l[\v ]Z]3}UgkzIU%bZ?i # AaJyGQ\vNEЭW`gXvU Lg3;5yswhp(%lgv=^%] ~Jj}=?()+BX60ܵF«J=%VB껮eH[3UƻI9Q '9fw^E |ehЗlfG *&Yԋ6рNV`4dQqd7{% 55^?X>) Q1iwF:qJVQ,PCh EW 40ĄJM)3E[Wtc~)tx)\IY4f6 N^S&7L${LE4|i5DmyY ɖ^+DR򮹏's^{i"][D.Vq>(fFw99%yb T@<6o~"1!o.=3.CfEc3dz)vW 3â=g0@!&an4n X7xˡ -N5P|"|IQ7Wn#;WA<~QhFy5^!Wde\zfqښ6-iOOu,UTkB:W7{N4yk$G7g|:ł?谖䩀fT%=8)!&lRu eph@-ѥJJ,BW y<kF.C6t"7'm`󼏥 VV&ZSgu|}- ]v : 3t,p6&~822H1h`4=f4Z?Ǧ>C (O[%CuRѭ>v,*:>f1zi,9 Qv忭]n'Tp~ɔ ~pN"%[=_N2H/L폙z&X3 Nڼck?ă%aĤU?q?┈mpZ&L-vcUϒ!'ؗηQ)ďWRXc R}6y~Fc%fehPR%Ј!YP^g5v~9ڗOGln(ݳ#b0ƶ/돨6+mqsp*Yq {T|)\HzIsNy$\lИ(8 -];W75)?4HI-,C$r#"bo o۸F94!xwTx8"WɁafg S֦F ~&Ok\nM9@7`4C,>ٙo~>jT/^>YWrjxAxD O g*t n …I90 )F7u|?+uvު&.:*8{M Hy wi㚅|L{ݣwΊC ͆jm(&s|;K+T@/POլ;B쎎lѦK@܅6(S.;omD@#د.Ճ#$/}.8]eIo/ReEA~^_׃ $}r2"Q".@kJ[pP/۪}\GOdР!4:u|( ӎOLrBv@K')B1cx9 A9l/si>b>AWVKnIE{n WXyY-^ HưGt{$j4z{(=>ch&+b>TF.+^GԩCV0&^YPl ; !"ۇ߄"???'`5x3VI4U؈tjb?ByJ7)?%)gSma *d~rY i (.7n`v,zu($閹@ /V09 .r$& N2|&"$J1R !@~GB{Ƅ@~E yl5,F߼"g 8guѭ5r? 2WMt/kD\mvk^'\^5yk\|h43) F .JN`^a5άj-qp|,^ Y~H7UriOқ ]V"= So9;\reⱃ%X ags9b$ Lx?.PS˅nOsݲ/_(a@-H[V+ո4vNm_YE%⭢W6rX y ~&Ӵw{y=0hLX{up5ηP4AmJdnZ?[(crE6[n}nŧvB"Pbك:X $VUgtPm R:F7O0$'4OsRJ1N9#, #q1ssROˣ 6j?ILuu8׷1Q(@3m gVA+KN.y!^A5^~P% /ID>*r*+Ws䲙 U%ƴl^}`SG;;m#&IOJZb`Ѱ-ixEs&#N+t"ؿC!6EelRH;oZ)D 6Tỏ/:ym"R5#;:$x-C:^_ >wmow(ԁ*I:f>0 fW߀M4ad[d3oVk>/dۂ!CU:?7^`:c{ͤDΙ9nHn nM߭1o/*IC"z-td?w 92Ec1Y]A@8wpv & Pej86<},5MEulVK S 8WʎnyUbhڨ&?A 7'Qʼ@t Qofߓ1\ pWNOk6R̀dBnOvoϟZL6x$DTUtq` mvy8 iyrԗL萌i.p+P)7 s[x]<:L ]Be lw&Lx[誨&^\]irf.ptBovmc!YB'JjSg˛T+>z}$MŴlTWp >'G'=zm0DHym|hljQTUπ|aM]N"aoQ] 9ޏ9Z/}xᲶ^? E0M&=Q᩠N =oZ:XR%}Tq$(8}[ .ޫD8єq=לBd(fUSȠzīP.gSP�А ?]UT \EOG oQ_!dP'íqH٭1/L\SBۭ,;NZ $@Xgl8Xt ꝵX 1ŵlNfӂPEyw\!p?@#\.F`p,mzb ֚%n!Yc>r.5jm?c)m1:ň^iͬy2#v ū6= q`sGfM@.%c[v=OuK&tQd֍%y&dA1д UB[2'_9&!2Aؚ 3@y'(.,JS"(^sRQ8o譏x$&;T";o_jCeuFk3Z_1ߜ GN#dn/ozZw=2 sXIf7PtKݣM8ucqr.m[}aPV,{ ?n{KMG 6f'jrzP ecPjXۢ3+u<F|޲I$ʙ>ވ1Sw٪:Λ-oXfo^Du O2 qL1?q%K+};t];F oތ1>8l:[Qdʂ1aء3V"|54"T[3f7/vڭ⑯0BGuy()N}r_"1%mcY yUF¶aDžS#|)@Lxnx;%4xdml}K2U۵HtpI!獩\9У"i'\eF {Z'4$1W!{,/ -Cic8sqC=Zd|65I LEʂ $Zܩ(AcP3ȩs7ό{b ˻*ZSb" (dE_fJLߎ`)<K 9`&"d# Ŗ\&mAIhoa=Ƨ=,!g6C"S)jwmLjZU$:<6ߠf.??L!;dD'`qRufS,իHǥ_ͪ򔠯7Z AuԕhXqU~^BazrarN?:ӆ0j>v).-A)t=j]RfͲm.͚+hU>T 3qA g9Kw0X/"Ѹ".f&7PH9.jƽKxYvј>@ 7\6)n W].4vrFɎRZz{X6L7Mã3ZY{IiFخI{=dy]P8}zhT0<D4v'L" حܔ~b#)4քIPFu>P.mnnR<ߺELAZn3檥!P1WHhv )f^0γ\TțXXLZ"/79K9d:@V NIQ9W ^trO}Y7/BUDL%Мʼs1`)#LVw^Rrm9hg-Sz EhbqfX'`F1L QtP^4(A=GK_Uʓ1QEzh_^B>İIe[&|4>r5̪?+f.0 %2=tin]t9#.@ԝK3 bl͍{4K'Ĉhׂ~h0xGOZ78!j!ؕ@{+k(VCJL(weme[˓8CZrraEU%z/ LZvQh]$/=%SM DzQknNݽɼz3J؊J{}BSGB\0/Ioo. ¿A/((%kDa;\w 6M[{|N|:MXl)ݟ˜ɬLc,[MRRgrڳ \,[:OgC#XL91lýKF$Dg—vu{s:j.Nb5nCLOQ`&k`Q;ߧж90%l&@|@A!/$mlu+qtiofl^{o?GsAyubt8d/@pOc`a^D=!$+i ) ȫPc2]l'| 2qJ wyemW~=c47 XFw}A%|5y} z)TjRhbl4Dn N&-93hQ2%?HtNN#_9^opkT.=ڈ_FbI᲏ C8?HйX|B7N&%D/Ԝ`Z27fGg- %p1YbS ^e2=͌%AĤt(g3lґ Nuǐ2u~F{t:hEF ؞T%ٓգdՒ)|Q*)#TVA{,rSCEt46{\8Id>LL<0 \!5Fv|~7]$Op$; ',CoAqy]9eKL "C}=hZRWNCސjvz<;LJ*cH>bZh(Qudk؏5hcqCf{R7NbǎM1Ȱܵ+r^d"УJaP1,a(*^yIv0"/ux> 7ڠm(W Qm֩H0uE&彪hСdS+MP8Y9D2 &'vhܛ<q޻g- h.z~zxX5{߃9 ʭ2c:+@(v(z&U߳GZ='_ǜ}~y:811Ex: _p6yНJ;I9|=Ka&[^˜eސ'5^ Q1z[L*m϶'XD}g*"Dw(l V@wGW~kE9zpkKEMc Gr.ҜC5Ώ&pA:s@{lm tD*u] ; jUBT+ ʫ0hTp[Э4{U I:6UL=;bqvNJp7xV,mHzFӢ љ#Y7sgK3cCDQϔV rQ|GE# ҵߎu<|y)Jjn*oQbm$4Wf̯-@Sħ50tAx}ttt7 yca^FdJӅ ڸ"*v^?+h\xL7?Řb~`[֭@-YGހGn1>ֳ[Jn _#ipDvSM)hopq1^"#Fec'w.ǁT4V<[:(1~*pCfJe>l.k5$|6I`h'^Vwl= K'qsE>S 佼]7Ąld\c "5 -'MRn|n({N@qRi:a#"9\Yzs*A!mmPYA[娟ua t?uK"g!6Fd2"{JzZb(e1ҫ*L%-`$Z+ry`-5őKXfC~M,?łu7%2tդy޼Ȩ"d@!kK:RO98*G"ѯB5LN%5mOT A%8J{[>m~IJJN׵Ծ& Р/@bl VA yc(zre!Nj&Fm"!`tByk5_IyQwBYqjhF'1˛is9 g:ȭد蠿l&8.#mÒc>݁m_%nZȀ$&蠬uKvU Iu2 S65KU~sEY׎>TڦixFH#? ^9ezdr ߸E*etЮvҀgUpCBlź޼F.,@4T_l׬L~ÇS<;[72_wJ*ny aS fcn[7I+{8)&C‘ ZC:3|.|lPP[B.)Q`U|+_?US[Q|܋A%% _Dyy9K6{lX2KJ0sH7;= Ħk1'"&RpTbV4xep %#jqT:7o/ 몤iHYqLNjme 䙿^Z' ʭ#߀b M]Iz@wZĺG}N謔U`{h%O?`dߞQBsIiFh y9W:uʲc._0^bك2V ZB{z/s .ˋ}S. U%,/\z-`TK%J$3[痗 cJPn=G;R*WֲyUP,/;y_'|N3D+4$yN:3ɚg}LޜP(6󙰵m49 !;qeTeo P%+|S׶'*(xli\P^ּG[-#Ӓu-s{ x$}Ε ^ǐ^e'3COq$Qkw ^+"Ard2!>̋tOf){K},&֧OLRXWdz81Q*?9vi 1Μ.jjD!k90fJv0R&.|n DX5r1` v/z^/HcPLWI݊M$v,,7+/z̢2~?Wbj3OŶ J\hUФգ^R] ssY`MqKˑxIʆ)9q$oG 7yܭKEIԹ}w'"w90\sEV>:VQ90:׾]cocwiDE-.3*KBpwDc\6~'7ϓ}3'$ m=D!T@hJ9#v(R2ַEuOOid6T{91^SCs_G?d67K:_̃ :e92|kbL/|lne<#2p}1ޏK'OS A{*.롬+⏋^m:3N<e9c; ӱk rXl@#XЌVX-m6*!3NRU\U{;۽ߧXEtX5}0bf⁼SL'k w[ARAG~H6K!kqÃS=4҇ê;`}ɳhyD w!-rԲAL\$Z.AEꛮ4H OFx┡~싋`\)5`DzGn£$,& [ܪN @OiIP#K"Iƒtʋ,M]}#uͧcnz5ИHJЌ efz-}+>BSpc]xyNњOZͭXAղvбw}Q]RGϵ* ;bu괨K㭨U\wjډ(15=C7i?jl>1 2#b/M |CJYlhk慣{.Rꇺk%3;xD5z1㬷6(Iwgݠ݂k@#:5i^BJRʁ(>jA@Bs_:7U' "V4T=d{,U|c,$^T90,S 蟭-}.¦+5=/" J ĽB![,TӺM,?fac-bg"7THY>܉iDzЕ%īשּQ/XJKz/+MnbSj@>XRO:XP"C剏?MVJ9 s!4O:.|îo0ۄCAC+Of #ª|GQf<=bZ Tc[ݚ|7Ewݻ'C1ĝ`'d\h!Gb9=0%9ܞQ)##=τP` ꋑ݃L/\bsin5|wsUNޟ!.!`&_55Wxr:vzI>7{>4P怋4Cn%HCCE +(z1KcKZHwP} cΠ} 0N'1 J[9k7(r{g|%aw<|kjd0M'.4Tf8):אvIτ&k|wHýپg!=8IMQWSV[2fDGP[7 : iO#8ؑûu`6߉|GKYkŃI!HcWb1vѧ9Fp0Q~BKGЉ`}_kTh*#P7&Q7Vlc"Fd_n~JєgS yn )ygc]# &Y%U7b O$6^fS8VSۛ YYyFd)0a& BWkVfeAXG !mefCWpzEX ߸BӞ77;2@yMqAwޱ\o.Hw[`I\޷3<8` |TٻU(oR~'OGbK$x-7?̦{?x)2ćMB Nh{N{Nc{R)%eu;ޙYP ;Cqef)Kn 6bKkwv n6mq&g[u6 $$3O#,4l uM 1ʘ JjIY2Y [Z5d9Pl:݉VNbG 󷤿9DQ/?2D]j jigb,:s/=i2Li.g0*.aZ76yNַܓG%%V%5 (Jh+`ХL:Gm䷙U<KuAKVCu/qOݓꢖ)S^KI|^cQHxdRj?6;bLЅ&?z@cynH*l ]c\/pj0ex|6 ;߮گ[t xy@@q 7.)IƷ0}>~i-}PBg0-mPSy*ZxVPk7>7vZJu$}5t X.HG@cAQΎP[c"i:9#%jđ2MUW.FAfjC(Eo-)jřGͩr6ʦb9 Ȁ)ߢ zVX^|;8IwuEk2'MδY=. CN}qE<&f*>3^x3εM:_l}hhIϧqm{t+֤jhA5D t;ˆzO2ʤT0NR:ziݔO#]3Ŕ]ܲzk Ξ%X`OTC3l(L2cEP{\1uZp@A#<~:vJ$&;_'KPd^o T,^pwK<;iw4X \r݇/|j xkR5GQb^ڦD7'Fa Pbr=3M44+Ԇ9-h+6ǡ6v-f}ebކNrO)!xϝ{ %O UY2Sfhe̎ oE^cN(ֶf2+xI,"6,Q NÌ 4p RHͿ|LBuu{ ^q,qCƅZe_bu]-aNb@DLzP:69iF/y rTjy1bM ]0Hi5"`|n _ $%n8@ٗ5*Ϩf^֠f;V ~߁Yʼ ]Џz8;.}5=E ܭ-~:$ !k&˔fjQKgD~$ ní_X{pD}|@J?n?;?*GK sK`U}/A1L!|^6o/'؉s"@HbR앐|X% B.\LJNHZ=n kF2ߤ IK+L{LxV{ IiBksįްlε0̦jq_#?0_OAa;x~N_Z綌Q<ѾZ;kkdz"h~8[jcQկfGHZΓ̹Œ̈́?MG^^zTC1 r@I)NCꅭ 5zszضS38l4c3YKe.0ZPt ~@ D} d_ W+RH'N{%z! ˌt,ub3]#&߫Q\gRuKO|a(xFvk}U<%5h|oX`#/#Ky_swj 3Q&tLU=Q" Xv^O]A('=yr)=k rC^Wф0L;?`\R4uR7YU*xsQ$Y;Ve8xFs)Lܼ_RS,j%thlp( gj㛂jdzfoFAlGPEnaPQCό"Jc|* Td&'tފGgyӺn괿kZKČފv Psf3pu:(Bm_~^]{fp }H0}籃'cE>%m=s2Ԛa4?q5\Fk<m‹gT~cK>38?ƕgu"'ND$(')a|L{{j ?ЫHlp) xZIXr[J#V̳Hٜ `pVB>c|hE( 6ψ HWtaMr ys+O"o|zR v;HI$'wek2TgEIJ8BɈ#F?~!$&7?iB GrL'@]`>VtiOCf"{Q4M,O"*QxDX!zbD 0Kﴋ| u`5Z& c ,˴;&tyCT#%@7D`PLD Y J :EnX}]3FC[S6R ) yY\{OeﯪJUul4iOӍ"ч3B`60' > ~=G4קw2a/:썶9Sms7/{VWϓ&S8>{*|9 {_ k9f)nfP"w._#>nW_Þng%- 9i٫t~p!(t_,]9i~8@I| $ɈGJҩ_UD;_瑚jdۍa4зp$;gJPм|0^DO8QCw.hW)GNQi:OkWjݳPٴ["DҘZSNm^_1")߯ND6ۃCm~%ti& x5!y&ڴ{KքسZ2KwP")_ X-dC;"?m]wSh!}֪Eڸ r.`M/bj,N^i)8033{Zsj,T8@D*0BPi|{ Jl߀'#EJzʐMI-1q~Pe`U-;0RaA3}5^9r3J |,xN`4_Ƃ]xFp5\lÐ 1̪5zeO#- |@Oߌ(*CP33>UA^mz2Oܧ*Gh{#,$+ĩP!W Ȍgd{ _1#m1{}( %Ƴzx ^?nf\,y^kBʹ/0 >zZ#ަ&=SړqS0zSHt N{wЏLg[}r@h0Ya\@ mǖm6ΎyhE3 wвoB)GL̉clV'#3yE S8O3; %_~ϖtz{5?)dEW)j.}@݊ Bh -eΞuk 3'|MUg/lP5j~ف]+95`%Tp抝@zȉD5C8 {Pf-E^:x,= 2_f8k5P#ۚL;$#-Xy7bcV͞KZg< i2W>[ YI<f^ ءس ƍkl9ZG[ ZTo o^CvXqh=n YTl@ͥڀr<4wDQj?x夘Sy :;fh908kj>=T"y{EYu+;+2VR%n~ C٩$p LX)'q4=]V[*wW"̳".o9 P ;Fn.+}g1CGZ]x2*Iʿ<dՍ pZ 5^?Xce)s;6S|BaYS'_sy1?H%MgAXR6EP!Taŏuerj/;HGy@hL,z`rU4[CYl;@f1”RFQg27*CU;Db Jʐy0ӜVCVKqZJ6L?Z0EՌ'{ ucV{3j!;F9Q:WcfjkR{wJ`12'E>S ?4Fm)Y ^tay/2cpH{t'q?XM8T&{֘V8֩gQ,i8DBk.q_7W۷NAjY>ʸ5ّgZxYwV}j{޳x8f0()wz t+2' ǹw*oaJ }2[7.Z5(ҼZakJрE!㜍.y:Lj l?"HF\~FM}S _曍V'xNMoMt\n^c(V]OK%^ɜ}}-fP ~>‚$Fqlx;R ,L 6Oj!X!_Z:1l;/k k"5S0t*"3M/ݵyFQcmeLZf++L{uӛh<gg#4I4zkX|mȹgOowzkfgN7{ժe<^Tv)W"S&Y?b+?+BRѝ(㕵W5OZAypsdMV'3Q+D ܟ8"꫌)ya6[8u=_J걋l3t_h]ٹ>4mZP-^@}[Sj\jٖ1ZǥX'oGF!{7^soبI٢>b$B Wĺ[pjBqTMH+[{;TVg g^±r4>Ao܁MU˵j#Rr$3 8=ɟaL!wT[鐐NPBfb ż쨕-=Ȭx EXIlݑJE}riUVΡ9 0f#MiHQL$|yt@CG;P_Xp NOBq3 M={yrZ3 .%%&@궻6A[Q, "HOX Cn`uϘW@`e">q8JCFBm1(_ЮZEoyCдmKyⲊ?e}ZwbA$GNvsV~ ĿHmƬ_\KTIEKĎXƴ$X~Mgs⵮.sS|FNzmBhbd*Ky-`fa6YkO'2*F3o19W"5h-MZklED8p+f'k~l(:ڱfbwuD4q o WUs6o1J,ҀRn}I=Dcw2i'|gZ Bd%Rwy"v lюMإ0TUh}uRt>0?If׵Wg0!>ޞz&iw2DJOBB ~,m:8!\[bX@RŴgrxpP4j!+2l+m<17(LuGweN}nFۀ]USj1.ޝWk3DZed̸#-4u8p-dYd.ah]\Q:p-உ"HYAB:z7FaAVB147 wBWp7N*Y&8ْ h憐խ<"zd;f-K~x u[$%GϾt\~ ba}ǎ6I&Ƈ7Z/9}҉ezry!C:inz5b:y2f$bPΚ;SR'u䭇lG##& "u/h siէvQߦu2Ex} kvhRPALl">Ցi”Õ?_s9se^Yx`wŧ:/F ^hu2yn5Z8Rn_(R.9LEnC#|F<_-#-h~ ka @.x0 ,|Te5ȩK/8!Ԩ'4Ww:lLU܄4QN_syʛ-7S;=گbč`LM !/PN- !~ιT#BޚR?#qs(jBx֞m{ ?$B3>v[T~W5~]~mqYg\R: Oa*=n?ūwwsSt3Von:8GEd]6%X;`(oIcՊ<\)?5e!`;E K-L_v fi/2Qn'u䫖6 $ԸsE;P)*Lul-xa( yJ4[3ZL .b!,^'nx ~ϙIЭ[;Կd(+,vw \@]ЮIx5'CR0΄BidUG,B9zȭ6-f2UIerjzrprBXTex^XMĻ[ q+ecUZ\L߬<1hDX3 X;ȑj;"ZM+YÀT$;g>)f_ K$2:LEKVl!e*'0+Cl`@,գXKٯ죋W3G[شR|ZȔff״5a[Sv-+"~{!fj}`E-%}e-^>\gC8(v 1SGýuT&d ~(* bϖgc wdP.4q/.A*:g?eRZOE#"= '99x |T{EfuOIu'L- #P<En*+-px9qQ,>ћyxܖ4ʏza[D{Z&\.t-M) .MPᜟoĥk;c|%M[&p~FGCme)+!/kܧGOKIiG0\lCZ,ÕZ&։=GmuʣTfTUs3_7]ļ!J:"Ð)3 i/\&ml\abD)_β,H͔PQ'* Ikec5Syq:90f7yy6e|'\$2].<'Bn2!-D{tl2:졕| YhUtH8xzb&IiFDP__Oay*"(|3fty%[A 'R{YJZSwf8Yp <{_-SC(\C1 &%eyoŌ[xgD-swDznI VMFT޺=LL )8twh6 /G yJNEu8Mߊ|I7˷U}* Tq/u{mYqDcOܒELЀ}h⮢Pķ tYtCBΣTii9NiY>39paGx6J DL՚z/޴HKVL EK,|.'>bwvyz_Cse1(Ldo% k< y>'\ke\B#das|XpHnEZMhkAϏb?PϱFEr;Ln-̽p[dtx@#X8Yqܧ!>3r JgVOyXnrm ҕn,?!֨jKOG.'u16Q-rPƑݽ#BFM}RXG-lf`uYC#ӿ߳hrޢT4bDj_yOB*QFm E9] Eju kG4͔]m?^,F^Zr~BAY}*%OI4p E9y{ Q2)1fw r^\o-zc{FyC{ 5Uq#uQqC2+Gi q;F]0Lovvh>z7Hm^rooƭTԶ3К< -I ~w)uV,5xۯnzq$Vaydђ|!# DCz ;qox")~Zm`amb1@j07?lIv"o0~wT44s&"T{a4On5B!i<ˍe![7ѩՌ,KP dkx͎{0x7:O NB8 vwFhl/8D,rkV ey.Idż/ޛ]9%^'[ M1>EӠF-m+伶 oK{A>0 ?>j&@ 18U3.UMMn>أw6Z*֏Tc?,"03rIm&_=ͺ]v:-Fp~' {l:.{t1SFp Y!zؽ`R?\3 h6×R k=>F?O*C捦,GNԍC^u\u]>} b w̩N){׮[.L!ȴhfb d> -aL:CYǒk,: 3ZK_Q2Ȭ]Z!b ۶o _mSإgrCX+VI3> '9Tۜ*!"}ꈶܠS(Q:+@WӚ%yS/pFVXBBB$ZC?;ѭD4e{USDct/-}ǻ˳VI =UM %M$rl.hdH4k@R%OHű;| cY A^:V-ϏX#pHs%+Cg`ܑw:f.mW*'_)7t*9Ĵ|=AH*Ϗri[ G1!UqYZ|nXܡuW+xtq6YF)&Z`r;(q8fG;NLPd(n'٢>)#as/ĦR+]X"jFA:`=c<'z jMA<, MBxѦ+5`~~_0j0,f݁d̰4L %^+I'dL3&8d׬rwebkx95 s;5ܾ 73W1U0A֎蘡5fML`i͟PZ) _wcyBP*~pɮ+|Vfr[It8ek1$9 6tVJ,o̝9(ʳ o0UB)*̙Ìprrx|(WV\Cw?v 4?O1\Bג#.{.#_-lފzWUQ6*,y?'08] qީ*rfv5:ݑ/tQk3l On ߈FgxnKcݞ4jE)~ގ +}twxL-XTS^eI59d^4BO\-M?7 e{g'1e_4f7hI;- i"ZwV$[O$g*WtW sӎ}::*Cd\ZtE aﰇĸ4H((h~x$yIjog({BT 仸&rF DLb2Amo),kg$wH77)75_C~ 2f5,2yV@}T+ٲ%V4e>[& I˂NNQA~{''po&;^04d,i6pZqO*ڃKCY#4Lf,|/.WOZz/~sK-Dɥm&!{zRd|WQu`xq+7\qZ%үH:✝RX y- U9׸ mz*O>2>\b[XpfTxl1r P5i+ t_#,?n;^}ʝ*_y͕J@cv73cwp͉#$/rw8,~Y;\Mo%wVü O6W;[& LG6ҹQNkzk隆H@ wF ߣrmUI+C&,BҒ 鉔gs+Lv*wEǞTB׳e_8r.vMXG= 0LJDMnLe],)[5{(Zƣ]8A}DA}=AĐKVӜb3DjJilǦOzgbॣ݋WyQp|nW=΁3(jM`wxHwec9\InWK,n%L`;H~u޵U)Rf5diGv(*S"Lg񳖩L1/IB{'?.lXmLH|Y9Q-Lě@,fzc\ :IJQ($J¾F?:bX3r5q}Y̆ p\I7$ȇܣ^4o&U9WN!O̮gl&*;.Yg׸[J7ynissl&b(h뛭4}8Т9BHB0p?^DʻA)D.`q$lNTz؆j(A*ݭ/ũ䜴7=w9Ng@ DYc:/j" -3(Ny#}"hEz9!CEC;㦘Bh*:4}}:^<#!fH[eHb039-xEO׃z匟zGETT7»՘^e 5*ch/h3 o}ۓi`n4{J B+5I7GzFCMB5,)2FuI킯 W[z[ GCsZ*ZNk6 _PK zF+5 vȳ+ 0iOHv7 TeO=LiOJR*T? t +෕2J$"lVGnsL.#XC^-/zoC Z⒪["}ҥ $%9:ծY1[/pɍ0eU͝$pI 63!6WEEs6ӃzCpNULbVHh*}b\ 8,'yĀ2 V3dI-r0ʏNW]<]퓝Yt D"֧1tj)4vEWmWoMXk{ HΫ%+o~LGkO{Bd[jh`SwIû28@0&(yxh 4 lb'L8 K[Yj> ij7z 6Bh[!^Kh)S4g{s:Ɍs&ͬURBGS'>`hQ%ka'OkCs4 6 HȩTN+?Sgq!Ұr|wkNܫvqʾ)`B]],j,qb58+Rhs?K>y _SaFηm?G7xR聗df9sciE8ghc H2b.ƇX( ݻNlJvYV 9d(A]SO;<0^ Ia* s`9]@l\cQ4O LbG}g5ԃm.Zbvp%\Mo|EQ83]sm*&/ s (HK-bE1i!gm!^(ο0 :$rT,S*Bе g7=V͊ 47n&;ѿFel친*q292P '{:M_v[?Ƥ1c?$V-/2m1Co(<(ɽydf$# ڰ>9ѵj,sDRhI7XXU3)Uj`eWyMN{(VV/E`xɼoSґc;%0{J"ǻ \u2P?Mi⎏{ÍꐊX 4f$t)zQRS1NKEWs"!4n5\'Tptqx2ʻIbXw4C*. i)xOt >EP{t#;*,={9q㸺,Xtwn篺l8GwL-)G"*M+~kW)fO_v"?)X&06>aE.Ǵh ޗ 5R?k _#(|XU\M,p]ss8e$SDvMSI-\vc\󛙡GT&1=!T^Zb1hNҧU/S\/ӈ!.Z¥Ѡ.L@4T,qɣo4E>jڸ>LZEr!+% /Rݐ Uj̰(ƳxOz>ɾ<2*5Bk)6gwB_n)4NȰp/[<@_?*Gt-k`B7rz@&fcNoj/Wf8%Cy46Z(ۨ !~tmEKq +MաVa^4A@jc)ˀhdD]4y n ~G̮GB,v–EНUU/RI&k4N_+StDrj+c1?|_J}Wy1fRN,<9_NV@4z-PwY* Up6ڂJɦVbTR,Q"|* y+a1,q/bH Ay,-A䧡)o5 FٞE }SP'b<9eFPh`$Bj5}; 4l UWw^>zUhڴx,]M8#|rNA:*7XC\D Y*X}nڑ6` /s웣˞> #f&Sʯq*?|qC g@I:9yI衑v/[]#ۖE#V2! ܶכL3($X2=[SMk2; M_]#|a'fzFKnH&(?)}ZT̏))YƏ %IIy7 bm'4757ɣC IUD58f],W/^tM N#:47bSF0vw Q~+i6vA{6υ+G=h{4??=H!3+Esx?Tsʱ0P -zt)k,?%ke^!R<b a$JeXg]TO\{Iu2S9tp `NQP!}#hV &3-yi.,ђ 3Ti2).LQqʾG΁,;(k>Ԟ6NW|#X?K;Y>%2`)'0gqEpZWHr"E걺D% /fq]ԞG«DpR:| )BIE[;?r'y,9\_f+1LHE~R:^@N|RJ(5 f ڠ\r%niE:ӌ. `Siy<*$#e xD-s$v.a15|#l}}ςXO jlY֮q:A/j>4͂JupL0.|MBPqB)Ó,!zn # s3K P> B^lQ揫RGcvYAh @%N`u;Ԍq4'57P޶ZZX]#b7 B`(j};lMUn/cmVQfXfҥ !(LXރ΀=/%ɥ4X9Su0 .]K_'zmf=,hVh DZ;nxPhm?[CGYlIA7db":EI&]Tu0o5Y,aD3#ߧ@ G1qN?8ͯsoFg2_5]c\#q2pIy?U]mI4^wiLe$X )M ^e4M `iS`ZuG,60aUw2w_& 4G"f _(8b Ll"8?;n%|Ճ+X`(7 q1 YOua,> ',4^&)(38݂j!o/u^m :#G #c 2|]U:`;HɇS?7q+ǹ]zxBplB4 CmIDI> 0'|wT:cv:&U?D>47Q.@:տ,80tH-Q:`@@~lVT%~;8K[0/-!fEI+yzm"eQE9lUK,ƊwH?)뉻n#:|'yM\O'%sZ_@/4O[s҈-a, 1,BQ /(ebZ#ޱUFu:0twF| g1e78^? 1N!,=CH|8 !q 8_#2"m%Ug3| n/4<j\8C=7?RZ&tP@iYBoE!W"r͆,|="5dU?LxhzLq^yˀr`9Us|,NOf+^-&Pp)N58ΎF$lP[s %\=iMEc5Vh]\K1R)VE4šrEl{g^KcoBn;hS@ce&hT+DzUfF qs7fIw P'K܇9BpI?g0IHp51.3jQ^XGɘ4` l2,{tS:w{\eozžnijHNWFR޿-E6>Ya.E큛+N+PBz)"NC>pi[.yqŘhcvc-Դ4F7-^xks zWר ׌3sǖ T )L͇b#ی=GNh+шl":KߏX]>GD H#mMdHUCb6.cE%H-iB!P(Hn "G6+'cCWGПDqP'rVo2M(Hx{ꡠ,GL;uvt\2n\UAMm!LĹ`$u-> kςALv覒:-q >$n?S}]FPQ -desЌ-MQ pDs6'IjX}HWUL]dk h͡TVrJ0 ! 'ʥ ?@ 2č8su^[-ң@1nܮkzO'*(5r2۸}8 `M"rGN IQf)W}öI(7c;1|xA.yؿuUԋjkX@6ף(i8w2H] !ڤeY- />ζr ɲ͛Xa)LH` 0σ9ASO>o]. +n1jw4]IU !^R41m,SO$?2F 5ˆ"pYGE[JZ͜">C~s mc% v<⤴Qr8TܸcK0dǎrط4Z Ah`BK%ޔxU[[Ah~]Cuf`*XL9% TngA5t ǷlcOU/uv*>Mm<5 @b`$hhzgaӇ;#>@;JQaOҞç y<;#zRH"F&,wyH$[OoeGvfJ劺T4i=k <M؞^.(ItS&kZmڂFJ)vQ=KDl~s[ jx\ P 1|ŃHs~y?jۿisy &?7v!y QI{0'V} /_@Y57 #yVz?߅fyx(TB-yo6r*=Js(q *WZ=#!;uȤV15vf;c5gf5>_C1oDų_|B1V x-,#N&\. 4)[K8ncK4W5)wSE&| :datA7x+6LT[<:~;]ш_\ت?d_ TMC BlCb«߾3*Ƥ)ˤԛtfG،7ߤkk1oYr0IV ۮ@N(*z#/EG.c%jX/X_}CM_&]?zZpAXҥF4yO#h׈k;:t.)ScC=% (8%ܻe/Nje#GaE=LY{yl;PCӸN $yuӃ$)brQ*;3[+9V.jFcpcP >YMCҺv[q@skIl?C691/d`w/$mP}.+JYwevAո g}kOM@IW֯p mͦA+p G7dViedGSf;1i­WM'܏+/1 ̯ϔ.z|ujLߴJ[U,$f!&{mT9,Ss~e-rr4& [j 4(TQ׬3K<.WuojvJmS?UV^e*UWDD;[9|uTT5@fcoj,dK!o\]j?ª"{DV]b$ЭSP<\kN(-\+|BIMgq")6k Y:~QTF:q2P2Th72[l԰PCV#RY.vDenkEַ)5 PW2;Kaݗ6&< kͥnᬎ* eUE ^T-B27s1\a mI޿LbaόL5ӣ!Z@Ipt]yl@Xc5䣑g!0{rBseg̏Jry>] DLdP[0bCߚKxgKi #t 6RbϤ={m =%QہUҵ?NUԵR7T Gv9BjRk\qIǥ,-q|qsCnݱWtW9+x;缄9qsDXp6oS7'r&'X#q-|b+뚵?3:vfq|-:q,@OV\ $`;0t LX2qR~_ϭ٢Ȓ"6{iqw_$G+3k` ĭ{m Lx˼AL<:t[Mmu.dq̢rj$sEGtUa0oFlZ+ yKymd:yxĪGR 5,_`HNI ۋ^D;@/#sqv/PV+:_$]C(&fN9$y l/*C6O40p>T7'qi9G5g0&+(6>f+Wl1JޯgGc#(g &b_"O' KLhTSh"_ 4hVnvf1q E叐$~c;e&]ƳULwOmϾB"J<űCCN:5śx[ W1^<7SE):^lRSmqe`P3V#yn abGϯJ63떟)Г#ꘈxuy։rwڃvԺ.&5ۯfGl] h% IAά6{t0۬CO `SRU(ʗsLݺv(IRnh[ 26ѕ JkB9z+-%m͙E" pkFfu y2gUSxBW鲘m*?Ybט)Fj 㷏931 P2O/pzh2KHl f[]N݉i !? akz>tP݇Tqjk+]j#1f;=YK?$@v0`$rq)-mu.Z;?fcE͏-ЩHe6On#hHP9H  J= ~儤%WT!GD7l> ͶEKM l8aI.WpЙ.Ns֦2US@Bd_XY~GӝDiGFf_B[20Rd.VH%p%x+^}+n,>"dՈD,uߏ> $l!w ~;hbo=ɓ7elc:h 28}bw}H@d 5v}JiKFogZu(=Tfwya+!/a& _&FEc,FJL3LȩESk}.55 $cv˗2!a ӡ_*77;6nrS|ĉ 0֤/lZ=sEl=ybHqϣî$g!|CK ' v> #eE 04eiu:ntm%Vw2Q3Yq\v;+pN`+`,#;pU&^}Nd{X=iLd{E1 uK@XR=kEߘ(yc`DXrEt\I'+` 47~(!k+Ckj(LR{[Cm8KCThavjW%UQVBRv Nuzz بf;Pap~7HH5jG({H`zW:~}9#ANS~ c?'i2]S\S\Alqx 6< -׊Y(zqC|I$fpk#gZKA RpҧT nע"` t/D?=6Kӄϣ::"DMy(jkb-]o8B \Pn ꊛ!msf]uKumbt2Us[8IZFw[?yAIӁ:+Ϗ==D5~coi7Uܮg'hz<8*50 hMs &Uxw&1liϣa e>my7Tt[ hLLƁR6;P*'ʌn 'FƻUg/>M[ꦴF:klM|öW)IDn0{٥yU/W~EAWʸ-ZЅ0@gkG0eZ/28JsCi?p{Iʇ s|jIS]tz|Vm@\-ayMtfáh½!Y#L"LG7!>ڥ y\ݪФKsLf<<wbl8ݺ`s.$#Lם7'a:hxx. +7vu>n*Ď?PZ@zӟ+#k`ٝO_w!(1 ̆DT[zՍhV*w '=[ջ1by)H\wwgd|WDӻ`<G%*DBet _L- Z>߄9Y97 fZ?/_V $` ; ڍuiǒǬJrE)&"O8[>P͔^38jM\ 'x?y$f`H~ /C(KYDX9P?8(A^)ƥj ŴKC^Y31zf:+2H>b|cp+l?;m݆s!QAj'٪$"{Vb!;eL#60h)-= W@jҟ\@,Rqiq%Z(ڤCah,' [;˲9CrghD"}0bĀSfb (|>lYx>Sv|/lFx:Z: h}(5U1ɊXV%%xof֚'+zEAYsK"nT%#@RN<7 lϟ6Xm^=i.(YfSUiA(l?QM.7zEK0!=|-ƚ B7s;KCeX[=wGB{lEL9є#5qtfep?nxh\og |}~6HvD=r{RFȇ ͜'#n*Gr2CNg|gIb?V\hã=CkEx үh8EsIV0TDE0ݷa;ЦKдV{~d C&z7k?E#!AGq@cLAo{<u,a( {ȚPe{d,HF20W<#A>&4r'գn80(wңe B T!< P7g#yzHѿ;k[qӭxJu:$!R`K[NOCj)(PNCVDHfa{H5mώSH2eU&,+8MOH8:rJVԫ1N WGH3)ZVt[y\e:2tLV=+Uأܡ/=j{r)~8"*j2ʖԭmUs6ў]װmh!kX*ֻAUl:4F $R~ɧ_;*UXƘY`:n_"q)?} ۘ_! B6_GeX@*,;ov&Vᤐ,kѤ'7b󤯻rn/-9泈LA;aVQm ¾"J*~bt)2Û\q\VC:(cR8y9pxM$pxRd䑳tv)S-ckH|b\cIk=(T w{^Djos0ot[nxk[;9'd0tɾL?Le`,;8N!Eb8?kU"; cǘEojeTes1e=΢^7_֟ugK?TU#4 L̠rx8* ]ȉ9P<4xS9*61v^\(GPf7n(HXȠ9!{Di 3C"ޛF;f!FA!A" ߸i@:\i~6d$￯M!a3$i`C DnV[ քSd|4xY~DR10LC%+K#]iGP ԡ8 ٨if@3x[⾼Ds-&~^+X39>->K)_/,..KB$[lS*9|FJ)f~N&(l?ޭ~a R!O\Z8Uu?Cr3u'g_PB_%=tv,Z2띝Ivq25i L\\GD4c*|x%S0Di4 B31`tK1h0!a)X9J;EW}-gЂm,/c{NWE򁇵)h o reFrnwgQ iEĦ+;J|( |5{Եj4d3ڡy%WJ @"4l6[,B,7v7^NC'tїq"@vӍZX>0v[ׅ )iyuPj{OǤ3F [r`Qⸯ/W @zHAӆxrpfhL mARcY[15Lķč|12] dk<LarO (+M3{7?A+rfuzM+TQl/ _ܟ*JCjJ0CUF3G##p 2qNnRí†K(ܓJuKeP!C0O7n@3wGӆQZZkkd>^J7WL(e/ _sNU)2,( âZcrG|rEaі+m&5q݃QIpĚ2'w7EoŤ+J4ѠzJqg=kH.gGKb,X ϱ{ ʚ><")=r{e|~3`F>S1DqLbV1HXJBXTˈ+k75l5*pҎCq\Ma. j?;nك>02HYsED܏}>Jv'~~Vl/=G]i=3SD-I`Ѹu,{S8`Nɘ6ֳAQO6${ AנÓDA-BIzm%GveQn.34ʓ ۧ 𾆚/԰bO[A* Y$bUhYHJ.x Θ 86Rt$DVp7,Q,ϥ|n`((vtxk߯D_-Eo+SU_K97p($mFqmK;~'0ӚI,n#cHs)>_!LQ oP[lO PՇZeoCмV}_a 6&*l]J2. Z}H^U(@̬gӸ(@daÊlp5\ԚY[^%rGLgr]m1bU-H0Ƃ/JG;#}v8GEf~p5RU_^_#?BqXx~cFZ>u*(*iuńjgfdhLE3݋RmFQP K7ijb+%^eq>4ۗS۸nD*h)댛0J-agļ\ZO.],2/1}df}=}_I*ї3ڨAӾe"v2B2ne&2_(t xN,<‰LE880TQ&9EP/&3ֻĘ"4m/|ac`R6H>coUf{6p:w$@,M1ŗylFmKw/" ]a/kdޚzDS"k0f \E_x"hnrEB~Rӛ jCzv;ef|;Mޤ |`,<4v8RdAH|tXa5==E2HܐFJ9?>Q*VVi#Ԩ>?Hr4SyJn:R$s5! vδ(j?-j]7{Vu@Aq4<#Ѿ Dq~!ª(ٍT _=2&A8f=&DY:c ##guΗ McAſC?p;h > L*=[vx{J*`R 7Looe0`Qʫ */rn9` Sc"KKi*A3k pFVUǐj%'r\R\BV3{(Sso>y0xyݒVM}; 0u~LT7QRX+3&?bt$ "44ܷ^sRL icX|al9A.z-ANH?nܫB{8%,BF2脲(O}ΑO /8҈l-S¤e9E*v GIpBcn:6/6iEFooM'^LLFtXͳ6@&ɌE|Fza=HÖ]{s?@fyHqy6qe*8pD7ܕ& aW>BEѝȣk` SJOnB>nSٰݯ³5OR`oGo6|Jg<,8Z^&\1P$,u;_8&n3j]SUp?E(aх眜ZJ4G.\/I(/ 1((0`d8CLh/,ic*!$%RMY\tx7#ۃkhf-k"T`s"/Z;16,> -<1U xò11«pʯ E(G2OB\#<V^x;(b_Bm=K9BTm6ΪER$ 0~۪~ǝvwѭbDk90U'/z$S ys!L:'EzRf'8>_®Nkw9N =`Ñ-M ٴXbq =-^|؏>{JрG1 @ {.7*an ,Ѡ s᭔%%= %45E$װK\n4M 3opWl. 89'󔳂|Qⷠ3¹1R G';UfK$%h[ wa!l Yq . ط'ѻ-u(r|i:G`45#4@ d1RqB?oK -%4@m==ZDՔxºFdn{o.ui6o*8tSc۞Dal7cV)}u4;6BMRЌ!$ Ʉޥɉ,PsUD'e5?C ӻ!gXPt8yN!yx]L6HR}}6V콁SەV0F|I/%V,QpG dejNc3$TG/^}KkSB»X%צU Ô_\YsaW1!sBt~/z@w ck5`Eq"x6zR|Ɩ;ur&2hdTz>S=S.R68:"1b(wS3fzmcN|7swZ=Peԇܸ $"#~Xw}G@AL,*A  x^`2&ssq؊ o[޿spF$*6VNqr 5rsf[Zr4dC)0^djX89,[;DW⇩Y2B`Y#G.jYPrIEtxAh@y$%>3[!fSt\Zqg~۶y\o*\GK S DT(8l< 3;dTX`(YSN,þ7eݞ~x%:A??#s\8:F6x 0ȕW=ԅYG31=2ቷoHTaV=ZPLoM>ir,iBZMSiw3XaIz/+mD<=7"Y!FGt>/:)qha䞼uTmn0(IE R0F$}*/-0-ܺʔ^%n{xbH2H1?Z_VS n'6{m{ENg M.n%HdV0l=SNା*NX[jδa'b"Ij!tĮ k} {X 6`/ycUBD˔|>kK (>(L^*9] ⏌#-##$#^$6+.&LORU! 1xpb 7~nzEXP}P)tE] u/7L8(p ,Co`zO}KcTXhJKWlf&@bOF0īOquRVāltHDsR"+&EtƏg#bQ=Q9.UYÐhw׽Կ/ ?I6L@gBSI;v[]I+8[aҳ*\PLD@Sm?%o6^ c K#z b~XN/-/LnJ 7ݡˆy5mƪ5)1u63ZN^FG5q|} (f d/(*/l!:.]_u6gˈ9~!GݜيX_IMˀ\TM:~>RWe#\ěcHgB͏x5( AyYZ+;!Up1Ml]`BH(NrsL]Tq]yH t:!5.C 3gH zugv2CsgU:MY X06몹zRyԂr \>VRhP4V|w UtZZi ,Ӂ6<d[^5!PifiEYgmJ#К}pnӏRD0>%?EX yV I$2 ̮SlIX1F+J`MɽY7Rn2C Q,iyz@B N4ܬz˟&x)'tÐL0C~"Tݺ nPJWuV_oGD2ƍ&4!do4YNX_vl^sè;y}q0ѭzN0AoOAq.e?Gic5'b83$Oq6aA%"JVQQY74Irl)SXOoHSv#Jp>g ?5C`]gvk2ϳTxqvL SHQ8TsqKO"U{"w)FSOgxY7 Ġڤ>wBWPpg"]`JVy;۲2Q;g̍M~~,|ljx =@ 6Vg|ծΤcC8J "6+K dtNU bp=W4z-r#M}:8=TߍU pitHgˮxD 6F<qh)Rt*_Ln/3˼ Fyyڀ-|Wmc-G$JWWWl,oZa#u GrњC5^Q/@CK $C`/TWG7Z)#jr(:5* 5 ^?X$ .w1<MBE>ט#xthŢƂ-Fi*@\7M|̫y>76(v h t1AJKk]nQUktzi1sdC5dr"8.X]b7і,b ytG5kV5H7O1ˍr8s)#@ G?AWo Z*d#%7O]+kpsXV>^+N ?ltL4%#n% ^8j-4Wô7{r ?ź2uB,wIJwCqu~x:yR's}+NX`Vi(}=& rXwh=kL^Vm8܏&RF F fp$RԦЖAP *$Ed$dMܥH7ռ]ٳ<$Ֆ &@~6ӚSarTF֊w0}T9q]MZo' QիmVK,}<rPCį{C840g]x,7Eq0nݎAd\C"ԩW& ȇ&|{qN$rj?J-Z^q lCF}NBp$E : krsu\_6?]WgRt\J&`؊T cs"9=۩y3]l;eɵ&/NP 6f7m= 2zn8,}c|x9p4EChvg[IݜR(kE[7`ύH1XM^duaC/7F @ >vV͘'~16xEVJoscɄUvچ#+|:|E ۤ 9 2Ouv1jѩ߿ɗ\O]D4WpJ:%y M%rӪ5w(:r,]H.Z'79 H?hPp?1ǍD}^R5B @uˈ+y2Ws` aUi&qN}uه(o{;U8FJ{[8:,CJ lثق6ϳiN6fXD]_)٦9*x4Z.CZ^\1 P*SǵlErQFDzCoLaP7!qrF)z4fce+5hxO39PcgVl+s笆\B _]jwot<ݖCݯKIU1ُZ[3r?$] p)e-Z0) 9jg~ɆDsvW<㓎u 6FBe2<)iSۇ̴YT8¢PBdCM} =JNpwwGLȚnbW-( kH!\7t !BxHn:d0."̋4VU' lBenK~W]_nEEs4 r)DGѼSbA>}i2co:]O" M|'~@G za3dq>^$$i=Zw뀯`5(UXaL@z>8^5+.D*wu(d#>40{`e<9vUUT!Hc޼,%{x޶r(rk(ӣ&!,K/MJ rpi7Gٝ{(_u%ߐ&$Ws<* Tq0)dc27&I,ˡIU8P"Ju,*؅ostbu.L -?H,̀`M*)&:rRZjn8lol /> |+4e!ڠ 3qjzt3dyBcIea~Y g6%n<,/boM=ӎwYTx@`;N}VrO'z6;"z:jn]Æxp#-&ѽ6Յ+˪?-¤y]iBp4@KDZؤ`4l:Sa5-Y}O ͻ=~;fp囀~?ϋCtЍvl{R@)TM RD,arO"yHЧD7Q%%؀z[qlZa(dMkiwNwp7E_\}#{3ÃywJ:)>h[+ >|^B|4zrxGpv+9Ovl#j˜]N5WXT@iIXZZM#<Z`FF__6pF%IiX+JL=k&@$- U>"8z>]bZ/!YtYpwhJP"uuTm;NXx4J$apE6 a7Gh܆cD~!#1 7^D~|oE~ xF2\#쒌gjʩ~ Rmv[eCk!qX=r`IY~J~YTh[10Q'dM26>۫J@6l` a޾o[T; H: ҕH6/Z[HMA&@!l- Fg%ig޷ b,EX/Q*-ۉzn dsTٟN^Q9c f:%pЀEG\5Q ֭ iԓo#QyR}Qdj% h \#0yGyFV~Ǭi`s~uʦhOKdc6jܽR8BN^~TS3ǯsx3M:nA ]#<$̒i*fG2!*cAs+aZ]Oqji=ׁ)Ѹ,~}cˊ =!{ v) |MU"p'\CB)G+ rzW9. Lͮ|L Le7]AHKxcJ3~GJ1vֵk3QFb-7i?${bhLMĽOÍa BZ#>{@?XTy ]lVPQ$GdcHay>27A`#X [nΖ7ne^)J@%@T66ذáATvh,C(UB^u23$~ <Q)1羭ܢܚ%ѩtO}^hlL0hMfkCl[Ũ8 Uu[V S uUʻt-Xc]Ik z%~ᐞ/'uavFZ&yű)ɷ%@gjUGe|CS ).̊ hD&N9ZFdy\|*ԗ2QKwia3_.]sݻS휍٦1VZ QƞVi p r %^?̠g!tYA?ֆ=7 N]s`/ՁB]2%r?'C|x惿Ԓ hn?(d|^ 5;PL~x9Wty S˫5t }z)†ųJo'ۺ=645ޥ55qnJwRE|?DQ$ ѯn"iፅeɟHf[vQL)Xt& zr/?zq9IsDQjh{$)űHLdiDP3TNӊ;Ղ҂g+XYQ|[kH֚=kSo>@L9lS²ܚj"Q>s |De2PUn??2 rܡՈTOUB]_F) ?r8٨.r~MQ!$e ^%#l̈́E= 8F8y e~9`s#3 a8.q{p&.ugvȱpNB#mtUXWcµ(e1SۣáNv*$ UpK6򦇗:?kȗg҄3G-̩nx3s`L'/[MDf'sbN7VOȍ mL%+DZ֦14!I7-~PVlD)}\܃I Tq UjYi]{rC7{bY]l] WĊ4EU(ҵEn@r}uU@K1^Ӿ*WD+ShU@Bz~ % '"C:P 3[~0U(3Nmp_oOo ݖhvO$䮤AT1 N7 ڕ 7#兵 P l\Э2Ci5ړ솷{ߡ٬)C:`aAl5Bw]xүضdX$XNef hѫОC"мIZ(!>G{<+Fw^$@[vk PW UMFѳ@uΤ& Ш-:V ʧ*@^ûgj~g̝4q28 {7?QѼU%YWo/ҿ#-}P.s&$L;7 j(D8yu-]v#!b4#L'Y2ͣ>!J 2:xߥ= 5Bhܣ{ؐfǩ.C΃Aq}e^Rbj)F^:ny,Ƒy.䉍Wj3HtaH4MC_عP1FL^w5kjt9# =#\v絒gC\|bpi4؆TwC>Ep4Ϙ$pkzW$>hEBhaY_%xOaPn(UubW Nh8_gØ!Sv"]al/=MVq oȯ9A2KN>;8q;Lo y㱲@ ͜ʅZ:%S7`8mNb$@ڠ466PEuk݋A שׂ-Ӷb @=$Z!\׉2%}^=Q LX!o!7<Gz_rLƯz}/RV/XT 1Q^~be ,RͶ{T\2Wi+aX!1n9*ߠAKԵx,Y'#YُRyJm(pq1xx1F60 #<7%e,No8:^Ox6 J+FA& B5335)޲!-mèUS29YuĠMܯ-ds\W3%c]S\ßӗݒ Of%xKM7" Ȑ)Baw¨m4HΔ}kȣUO {tlzŜ{rKcBF1ee cZs.Z1IZL.fIm6ōp~;^@N]JeW̟P9,s:a/^.[1U526*&]>lA"}EJdw- gvNFGm ;^Y0~I=-׽Oom؃ŻxW X{Ѐ.5A l̀/{ DwW H6+ba$$\˟))]4#h;QMXv)\>lm5ŦY8Y24UFRJa/T!gVghN;Έ:5J%U=;䜚n}>~ 3F8&Z5l#Cg~BmM^0O }y5=V:b(D饋$|EO19ȁADϔJ`s^p:4W:0*>YG-`SE1YIENG {̋[^i!A@tT^j*} j!H+8@ɢ^~ =,1+a|mUNY}`Bhz3@"u9m.$`=:8EYTy5U:OFyR" ƩOuE-G+Do3. R@y-])_Ja:0јz?@gFh]9EhI *əoNKi~@_G|2}2$!`2 bЁ 4j"1Ll|Qh\mqx/ c,%dQ8ě:ag+_ a 0*@5:ƅLؽɢQ$18=gK;L7 lכ& \.%vujVʃndLI\^ cM!cգ2'8 jwtwof1TcL,8)lӥ{'s현W-ða $2T,$#xv1 dq4fьlr^dŕ7;uQ׺E+hS} J٫8̛ 61_2MdRhKq__#,^G?P5,SIe d*LK)vkZErJgi?@:HP]Եº4oM[қd>S{NXǣ?}&0bϕqӥ)sk,OQcΦƳb˿Jf`_!L ƨɘN^~|\2#8Aњc kF];j{ڤѮ/]kmC_ LSm yz6Ւ[o@z3G"h4/t?vY۳2UZ2e 1RcrFD-D fxcƁ #B8G}VrΏ[b~w3Tȣ$x{Ab_g<8Mp F8w6jՒD柑k&ls5&J`}`=;5"S-nnBdd́"eL}uW>Zc[N= #TN2߱a!vh?XI^J!2 xc.ѨbʹA0jC4)=y 爹L<ޯp&ߞWcT20 *m6޼4eSDxk,-Єb~n5-(5Sio(sXsגg4$*sjy[킖{{%jB9z,O)1 ]vQ]-h0y(I.q0W\1'\aXvy8-}ڏ 0P* e-y9d4a؄qͅ {[kit׿]7)!߁KyLBۗdzt1B7…-1 С̏|,ڵkft.@q䄸vUXh&hkSwq݆v1x :,8gvH۲ȇ3h2WTC;G?eƻR?]cq'.E&Q^a6y hl%+L]0ғR ]O#EW,0z+vjr|֝ZGm:Elr[f]ྈCEk$vWʑ%8mQNл1)m{ ~o(avAvj[3wZ\&2!jtzlePpg0 6f")ˎZ4%Pʌ1 +aR,UG[\2bkO*v֯L;:'yG.y-HްW{qо.5tʹjz/#Ȱ깋K6E4|8 :bp|_GVVժ-Az۬AZ|<8ccCْGe(-x]-ڮpY Ds;4)k2pN~ڂz˧wE{Q5H)ldlch:BdmEg%N/}sRZpE%c M /BTqT .Ä*pOǨ$Ǔ%?YdƬ$ܬJ45ՈO~? ?eZ:? SteiHal})ڼ=pzDι Ezjay->$W]JNtH]![ |M6 =Ķl5ȊfZޜ#9]ߧ`QRe1$=URz4n偦 :̽>eg0RjiѴ YHudʛ/a~v9+f)؄ʞ^dLmWy F2OF\؀n9z-" e!+t-Nq 6 `(;"Y/y '&P C4yz"4o; kTrQRi<+ޢI?Rzײ wXn`VbM^[ "F<{P7C!M__㊑oN}&Ūa)^ ?R /Y -РU1oh`6%Wv@C,5R&]H\G^`!e`#=x> }fvz{֦}"B^TG*fxVhU}|'EKr&R+3G.%; x LA~PbcӐDTWMPN,۔Mm* =5)@k+}G!C3C*dU \N)u =-A!{DL;=[./a4?S5~J za ]RsTrKbҖY׋Xokֳe J]xk9<~L2K❄jܻ 蹨OŽ_aVC9+8)xEG2<_NMEVȠ.B. 63LT#rg3uV爈m';}0NLy# Cbfݮ 9R*A5$#&J~L@r[5KF4W4jDY&e l!P MD̓eE<Ȳ$<.:n&BEI9-hZbmݓ!̴epE>_W;q tw̮k ވR8h"Oet9󢼗%@~v$_Xf FͲްP|/7K)' 1e*;ZU\ZzT0uPOUf? `ч&[LoYȣ&@2St|!#\dI!wF0rO+Eyư>lQ;>! !t$vr,;?V)35,/|9;]AtY2'|9ըm;6s_+꼢/RLb , m+KӓUh!lU|8+27Tdc;lRJk[g~|c[}c7<'ד.jGEt^ċҊ~yY8me|zF5nZYR NT1ls_e&5} Ei"IT炈?c^q} tG7|aKVI^'4H]vqРQ CZlm/IUo% gR][Xk$ܤlPh^-V=%íG7t1QQbM<@=3!puɤi;nKZAYI/\r95;`9dP?*(etYAr~|!4qTEJ"ZOe(R/~ѵ"5݂浱 O  O.ٻ1~?JHͲ'@Er4iqf*7sp<W1BWQko/'}˳Z$۟Xzd}(:Pפ\rK1/J&4JUV̲.-k5Qę:G00$ĺT |=, ;vj;OF'^<_zzZ ̧}:gx<v~ Ḧ%~6K1$;'rQI1vDM='T-YM/Ux ?=N_sdŁ󫂘Ʉǽ6g7OAiEcJRM%L*WOۥ\Vaxt#OE Ζ;04abBڿIWs;Aea6m:=(Gկq" 'tӕ^8( M8Rc̪.E]95QJʼn=LSn SwX +Mz+4K~62{^6V]ph p @.U0|nw"P`.59z`f>_=2 SOPIt(8-3M5lw--+ "5\|Y8zYJJ !+-(&RƃuM9p 308l,Oؾ_41~3~_ZÚ 4a\bXN5R|eFq=##P1#b6(ȋ9㯀13T,T `0,\4  ٪l;"C= DH55 gk/D |oJ`ޭj4ߋ&<\qf WfPYtZΥ'|qSH6AybhH\RGcfr!gvFmq8E ";!xHB}gw#DsòHivJI@|;L S#JV͢B Iyj0c9B~GXP"B1eu _g0){B ΠR@ϰ߯5E6n,>ޤߐw\[ЇhqFYN2O  yǨp뙳بR߿I@u- i}Tz<͆oʲYpS7lۆ%AeI뻝6B/ۇTĻiII}D[f1f~V>pXTUf=xOfD孒NQf!GVL6~N#ȥ@C{ یX9VB.;l?@e:Zhsw*q| ˺a+#@CP^JJajfLH|8p5wKϮ ~8pR6X\BodĈp5 >)8oG@: fJJ-k/YRU>/d;fJz{nG, wɶz€y?lVNjex@bIu5aFo/G]2MJ/{_3ig"HD#nQ.1xko@s*x+&-ksc%r^h"lWB$`\zI|ы̵T'|M9dM gLS?SN§-EA oEv)a +Ό`e8Ml (jD4-T5']= 1RyoĦ欵):[T4oIHDGӎ_0dJvD X&pvԌ2hvE%-I :ݡjގ m*c* CT!U9{a\#sw y3G^⹹rCjKyT5hr$4z!c`9ᆭ[MV{Q'5H #uI>QO4bt=”IVh`RMmճEݕw %D}9|B9$EÝ<oXlH ,<.T/M9< 7֍c'J! 9 ك ׼xRgoUQ'.!@r@(xĩ<KGfO/$s˂8kSknX+'uc =Yxm-%?^UOadWm|W~b~~fGJ`ǚi=@|nA~L bSr|\b%X·UܸmQkFP2r,vH XK|s"o~pѧe+zJ*&Biç$E JKsM+ l[cW#`I].3஖'e8O [3Y:LȀ8C>X\ @xB*0[l.5tD}:NHR]Yz4xmI1̞ϮwPw\5T;!Ls۩a5}ތS,٣xh}M<Y^6 ֖i֌Ks7d2[ MΞn "QmЕgO$nﯲ&[;?y\|$.*FÜ' ˊE%:Cƞb z$pF(f 8(f+WwsdPI/6襛7q@6j8vT+6t@~7?Q4 a$T[_~6rӏ,Q|рQcVmw:ݦ3%ܻ`Li4M&;AVٻeڛ$i|S9E+5gJb$}?^;1 >fJaWxMbaXD;"?n19v:<.n1!ԋaudy)K[l@Xd B EU^}Qe$݀!un5iR^9ž ;tKy'e<[4a5a!"YUcp#M8x ;-lpm|