parallel-netcdf-openmpi-devel-1.7.0-bp153.1.15 >  A `CR!M@eeeZ~}hd(Ntc%^$5n޵Ye>R{Xkh:|fDNyU|C\ΐAMR#xu=U'EhkcaX9$WFiyٹ4Rr1'Q5z#V3-N#WTwa \;M> c5X;85v7;lnRϰT*?d؊R3!(!D_ςac8a306c91bf18c7b8ecea708771ed6a13507e65d328ce058c26cf917abaf1baa4a6f61a4627c0300c7d6cf7b7587405d884bc0c;`CR!M@eee&b&.SF,]箏e2Aꇁ?u sISq;UK ˨UQAϸ <6?WҾTLemEU;O(En1I9h;FeEBOHwQ'[o1}<ۨdE-sb ֊?-\pЦ#z@ B$k92LBWԑ.\o13TA`!%rFYmq wě!g5(4*&‘p?> >p;?d & 1 gtx (.8P \ h   4h(8 9 : F)G<HTIlXtY|\]^bmcdefluvz8HLRCparallel-netcdf-openmpi-devel1.7.0bp153.1.15Development files for parallel-netcdf-openmpi-openmpiNetCDF 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 openmpi version of PnetCDF.`CRlamb26 SUSE Linux Enterprise 15 SP3openSUSENetCDFhttps://bugs.opensuse.orgDevelopment/Libraries/Parallelhttp://cucis.ece.northwestern.edu/projects/PnetCDF/index.htmllinuxx86_64+kv6i`CR`CR`CR`CR`CR`CR5c6c42b49161fdecdb0c58319a52dd4dff042aefe7a5a62193afc0674647d4c34b7f0c3777e5f75e4bb0e2cd6cb4b57f35530cf1dc84288599044a03f6b25b4884656549af62fb5b2451e399008a90235e03d2dbfa5083b4b26bf927f45148cf9fed96bd7fe626e5cb4107fa8edbad5c53c1afdf37a51bbc3166350df334a65675a51e0de9fc8c42f5868d9ecb6e9d046c1934657e32340ac85adc952354ef19libpnetcdf.so.1.7.0rootrootrootrootrootrootrootrootrootrootrootrootparallel-netcdf-openmpi-1.7.0-bp153.1.15.src.rpmparallel-netcdf-openmpi-develparallel-netcdf-openmpi-devel(x86-64)    libpnetcdf1-openmpiopenmpi-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.1]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 namelamb26 16150247921.7.0-bp153.1.151.7.0-bp153.1.15pnetcdfpnetcdf.hpnetcdf.incpnetcdf.modlibpnetcdf.sopnetcdf.pc/usr/lib64/mpi/gcc/openmpi/include//usr/lib64/mpi/gcc/openmpi/lib64//usr/lib64/mpi/gcc/openmpi/lib64/pkgconfig/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protectionobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP3/standard/802ea42c5be8a164224c366aee5aba7f-parallel-netcdf:openmpi1cpioxz5x86_64-suse-linuxC++ source, ASCII textC source, ASCII textASCII textASCII text (gzip compressed data, from Unix)pkgconfig fileӤ2O`:}B utf-84413f1598dec061e769685c89ef4b4e73598b3a95421879ff530addcecd321da?P7zXZ !t/#] crv(vX0a'_1zVj yy9EfGI>$mũ&H9y^bO&֭-S0C$7B~}*b6 W¦*-14QNq.!';O쭂N&/JT~ߘ "] d-O?nhkAXPa:u0J0d,̟{ q+vhDzUS i"-$AB7eJN=ӻȓЭ{vJx^o .="TR[>+=/(2i*+ _fIRл79y@l0q"Pg\#@$y9jjc:GA##r .,2OZF\Y/TvխV. &];W&<\lL选v.}v$q7Cד ipfoڻL6Z~=m!rP}c,"~cz}J[|;dк,f^;FHhiS+-g?-,zp2p $;~TRۭPy`dpm]u83ꓻRnnQ?3|eԟlHq"W%fT; x$6Z&KGmritߟq cUX*FR; zS% R6(!6J:,Ҵv"LQCFKt`q<#WgɠkR`X֍z5͎sxc FpXV`w-@Uy|`GQ"Ӑ_iYfD/И k+7!ά̜]aPbDɐ2-P*Qjy%04I"R9k.ecaA)Z8[J9A\NYjzt++ǧ2!˴$т}$iH~KSE͡xM%zto;c϶h1u @J{+Gb,xKy D:Kq{Mb-k,Q 4Wc9ʘbͬVY]rs0灐73ki_:޵R}HQ*popk֖5o\F1S:97g3b|P@z߯+b}<CĂ96ag΃IR?A\Ρpv"TAV\0fvhS}L1/%=cJrL/IHTP~ⵟQq߅ƽDc;.'?s7DRfلBtf5]\deP̄d?VHcȮn lEwF*Ӧv- 7u T㕯ϯ{ȝOD/˘lᥚ4U>A:jh q3i dY O!OZ0]h\7/0Id|qv1C\"1ajVek+.Oz9]Fpm9ʾF5u3}jJ.=` ɡ9"l/;+Em)<؉'d gz3<7ȧ +C)ݝ>$x{i55(A6P)g]c Eq4â9k1.%BiO1N?] ji{J9iD%p @0:yCmԉ c޵5PJtIn0kPJ)b0>Ԙ`aX@86…V>P_/',GU O1F_z boAQTx>YgRy,_};EYj@s^qx B !GPi^-k ̀\}LsMW 1`%.qRKѿ%;*( Y:a-cx_\=F,OAh5'ȈT|BYA:*Z2'F9Ng$]IFHjDGkl_"<*/Yadވ q5Os=bn`,v.ۥ>'}2wׅԣx3Y!MP,,}85'2)&>=?p+!mGlI3lh5]q{rsmMސ>A-2*_a$l9̓U]@6ͣ[so,v֒qҜzas% @_O֧Kj1H/#zTeUDeDo~8,Y߫qKG?86zͲHAdY,73\l(^=j%4f hd(ҵZe(Ta%G67qK?JDKљG~q zݧdR=?Y&|Dz~psDp@gBߥѮR܌wx˃Q;m:!]lƋ!Pvyi$ kJoRlw}'.Ġ/R9G. ?8da:odEMHsVBp?a~b0gШCAX mh;d%,@CHk5+&sL$ X u1B܁YbJÙ>Az5l1}bH51fvxH.w]_ggc@2i";3\ծjjK|8\x_ 0Ҽ}ˋ"*шRt@x$#K-ɻC9菦=1F*HLC{Yc9'sC>Z3=i<uQ@UMt_4'.YGhjkWEl?ng͘h:ۧi&-ީXڅWgDr7ZօI5P(lQK7d!,K`3x97U}tƮ/2lm 9#n4>hyAQ,`F:ojB]ب\Z?69€dANZ 2eD?){ꓻQEu( ϯH@@]n E4z/Lg-<;O+,&-r{ ߃P+y ,:=9(W":ÓQx! 9M#۩% s-Y=Y4g< eT!M#N<$ހF^!A`UXZ~ϝEmUk:6s}KN[}Ŷ!2#8dyd|>H4s 58:G6aK2/7{s/:DP##FrLCr;A_L@x7GyeyQ|j%EOf)LYlAqKc`&j=*{𘲪qIe}A=pdիWWD`hd/-Y~hx@R,4jz5-&CVܩD£dP<qȗ1raV`D>H硡j~mV%KK.B;&Q\=jhrJMuɹ=g@'I~*gb&_}>*ՙf`*RO1dP4vdPwZ4/0n8_*|V;TI(ZnCNT96ך4 - HPAp?dIj.!Twڦҁs]pg `Մu=z7ݿv(-~U|n෿٪"1強(1 KnX隝}vB|lusnL ,j"jն,bQe8_0X.nQ q*RȄ]23'M,o?g+ʟ/yT ?DҟM?EWl&e_c],%N`dK%졾_W*57]խJI ٮܲ)? ^- 7Rj?Y_ JHoE1@}ix˄j&v˘-K{ JKӹUm׀Nvlᄡz{앧bݼ O qz0K5jsWyILn~םILAm& {~ 3k q{a{օIS$k|ڐL{a!U3Zկ^e{si7#O$KG'*½$|8+`!zΣ⵲" Atlw\8 aM?؈ϠJv{F6 v}|X٬J"_ Lynck*lm%ȪKU>HtURєGWf$Rzl㍄>ebG)6<>\4ІR DQ2}*,(f:bPk"n۟V%|:oY\En.䋕IA߮ڽs:M+KiOS n\[N+sLo-A)nSgRq lRT0A l|NBvx~\ǩAXBR1"otEPt=S;Y^.J=JF 7<]FTk*9 9Lyz7`4 2;rİ]mx"Op ehWRdsxSuWVxcCk0siՀ뷮{}!? ,AHAFW;EQS,oj&4uۧ]Zyb}F!ʥMp$:&>@h?S8j1QF]Uev k0Ib *5ޙeI؃L\eӞv-@~n%44뤺/ukE֛L$3\!`au}2#u Lh # U;%r+zU:fMemXرl~_vqXlm3߬I(czܼ:R?4TDW&Gw89,:_N>xUq'Jf/$~9&+Q^i]i6ΜJ/vċ%\DHKrښ!*oi)Ds.6,ařj $$5w6Y*Xa"Ɓa$Lng-1(X pNyiC&6GR*y7r>E4s/%][wd_2و@:pEe׵Ú >1 KP= lCÁG=JǻA_4at"jCZI*N5lDt&9];~̸g, V3GN-ba=$2\>_~0H0Vx!2"ir}ό,&!U/f0;a{RJ>zfSFt>7CwXj*E(j2``m}nJ;dwNTp tFA9M'4]!\O}j٬xXNr{+{9gGcߋID7]0M&)"G0U XYɧVp%ʙt*W]d3"W>$i""S)4-*O"Ko Gyko&/{G; _RPE0⧃:=A1O}=3Y A@/ޏ 3?:*u|P) I^I@.3dsÖGSrs`"wH;=mPPyZD, 2@,kDݽNcTk `:כDZ"QO&<)A&ʼn8w~oN%#5 %eJ Ʒ!3~"Ϗ{z=!\dl%ȃ|^0 ]o'/lB>vhx?D"5BWX ޗ kīZcI;Hz-C~?}"$} ^RXQ\n=nkh^{c;= ݡ1drr1wquPQ ˁF(A6{ѿ4mַsAe4e5UznBmnүT7K "ZDex s_ƿ#Ȯ̷rXC|Řk7ȳ'$c&sټn2÷4g`cGG)?O 8qJmʬ-ԳӪJ"bˣ\'e%)&AS}VW\زp^&q`m=$ʵ  K o62;70 54,y|OC >Ame5%4M8:lޡʬV;%Bi->sP[37g<#l+$U2N4l`L`?jϴ.6ԍOcՀ*Ӹ[`,6'&3.,}"rh@e8YTGZεtNy7vɠf  oe $H౹j3#Dn3(m=jyuw n82I؛av{pZj'>miU/u_{vD+TG'^SPYYFfZ2.ym4=Nj0)8|v8~~?=`%s \7Ƨ9d߮EWyMKYCb3ztB2 e7f<`bռ1=ja5Q.N8o=+&v(67Ge+[>!C׆) :%T@|ϳޱY͠ӉWJMn*{ -xmZrĀUW%#^?ؿΙ|<ˀKn`L.A'?#@׳{]n2g;|(l t \D9x8 T$1QCPF˜R+C[^0nj^r(bīɉ!44WhEFdLP~Q EvېZ^u0{0CLx `l[q&(D_JvXāLq1;WgRΦ=Dk PLga|%JA o}L1:4U|l7?򚹕uĈ,]AP2 o :pJ^S0)ŜG޺<{ O3M*OrGWSuV`$a6*rʖ#_{]F?)quwwk*> EK(c\3RQ^ !Ab=e>AMv~`tOȱ^գ|04!dpe{g?4GT14e Q\SRMpa- !CknZ4.̀!+';Z)O~ڻo^t% WϪk0}|Aปa8Ad`iYcÌa.m#craos1Z5-L9zsٚ&p`Fg+QYT;F^׊<dqu`@$x^6B()oΠ+TqiOnMR#OѬVcGij(^3R25kan򪚞fp7-o\K`{yֵD /(i5u?Jgձ/3@^maƽ|gnC.1o ? `q.OIRVƃr Y\nqY]MUfh)Ii &h4e-yn:n,>SrzZ@g.k'QPOߩ{ J.حo;/-vX߷Ns,EG3z5r+jyjĦF {琱00!5F \S&l׾_-3tR#aAgqy}*a:7;^#OxFc- <@ܖzj8i.蜙7?1d>'c;)(mSh҇#.2kQrS#vg" `ꃩh%+ptBTiUO~"fq,d#G ʭʈ˂Rh3h *g@=M_rJuJ`b_Pm)s%S8+2vA.:<0NQ/D< /tH^1%x2gK  Nj8%J ?3?jk@er]a_H(!,jFd1YIӐpk;Cp0)Փ=~?J"C6bѺb/W!@{:C{?Igʰ(r%jaH6።$IK+z!+ɽV,q$gĭa#b-90HwY׼Rq 7A٦0c:~⠘5WK)-z%`,M17b s6 1Z9 !p":5?;~9<ϋ7?`FD*%}L8eN/E]AX[f0b<ߜ-ufUi? >~V4yƥ: Dr~U(~qwmu]7ɏ)6֪q^YKSE ğf9jEyM.kvf[!!3,&ޙbu.$ðk4)s_5,f@I6ARt({z-گV| %{6쓅O{|ŠhV|dMALT~[T4:eψ9ZHzq_ 9*'w!?rNVBzr ũEf&H> T|"5ELOY5F_MVRUcWM4>ge7jmWWq@ -r* f $JLjHH_,`:@x C unc*2qԞe! |vK%aYA,cRKA j4| 6 "hx7M}N }#GF%-Dh^%%:)pvə%|(jFXxL0)A4ay ÕfndlcДchy3B'V/Hxp:.|XRj'Sa3t mVRsՋ-,lܯ0'}."*: R T6"l/ Hhо#;lbRL5svċrZY͓ H)ֽ:mh9 k}E# #x-A}7VCOi 6W+onԦG,E.‹`;\2%#X/~CtMdC']eu[x!3^pE*ŅZ]:Y^\ %,0xc ѝ. D !֯ *c@ߩN`eWCäUqUNհT둒 !s!A/v%r 坛*y47 x 6|&(0I$wVQWY=lo7חIsx3䈠Eb0tw 4HisAsjGy"5 x;/U`! 5oh1 6kmy Z"q}M򁳪=tcAg"Xpr 6M:H?011mŰ{b W]}9B0FIVg(R .30Q*_QE^yk=W|42Ai Ϲc9uΑm&f:3R+ca۸luy(nC^r۞ -.Q\V`y2@l &uA)yEO,h/)d_:!Y/ǝ Q6mӛbNYl ϿqG v 뮼4Hg1;teiI3U.¤ߣ*5iǨ5W&8|wTf,QS68OΆ-:ZmׄoXSRnNҘ|?v^!'v2pjT\{픪~WDo3]ӱ(9ό?P"06`E'fkCwILTKА'Y,qZj!% ijCW)FN—&d!7s tpBo!t5Iu .gvML n~ҏo)4Or1ڏ&$Hva]Q NӜt LV׳Jm=%LRh/V/D-5{/9$LB?-Gc0b3`$hKRLuƋAaCaj)v ʸHO<@KB/̶z ._q߹hQCZ/{' P?gєCJw7jhk;bSm3h0pLNPv}zm.N^ !LX]mB$,_eqf*?+LjvONCٴ `kfo#>a`dQ_FIJ78һ>[:Lݷ`@;$)&KRnզePVHj%fuQ?7us_ RO.׳[0 ba6yֳ w)s>yz -z)|&( V7jk'Ίzb 0 Fy;Y3Z.hAdwy鼃X5N{3<@IDŽZRE<*] F'.zi(}3̤A'68y U=؏[ P,Kb)!Λ1EZtQDrCt QإgATX!c6u/Z |;qqTJӠV/kJJMX.߼`Qg( yc# z{L*kg& o|p<hLshP&@ف{ u96tfy@ocAcw&,F'$fW3hF\HdDK<cw8ÝRfx![F=X2ZG](J|/RMR (g+c`Kb-7n +l\+}rkl1iɊy rѯitx|*."tE}g7vL6>,} ,uSH*5X3߿{/ōĞ7n} k\aA$ݫxQL A*yVSww6]1}%~5/_)++i"(f=F#2f"J*AJP6Lbr3ۯ֝6a\!1um65Cu* Jߦ fTJK' m*$nPUw)ń̅'D( +Sύ.[J%!o4Qi~ /OK1ZzTwf.R 0qf~9g $՟)׏&x6˓YMFW<,+5"8'ՍtHi}7cc `woU GK=ŷ( jataO wULZqS[,>_HK/SDdV}:ҽ[[;w/F$Ws''n_A:nq!B;ۼ,IE'vg}Ѹ .&tOWRFsY~.r]/xGd,t(`]oĨ0_re!bU`zՈ[߮i+8Z 9TN+R4ť ?dF[*7ӇdǷnhYO)"u Hz"3L9'@]:YBk96v(RgRm>l21}\ʥWj5awc 9Y07tQM"j kYK.j)EvgAFt@߾Al#[l\; ~MܩG:iO[= w򋗭VztA>#]4^z J0)o}V [e/2"گlօ#YrDg2C+R <r4%q=\w윮jt#5}O$"e]I\kr)SYvlk|s}Nj?)칏lWڄe܆XaC K8.U)^[0&5WJXIi~i|rm,'УAo5g I Kzw*UzR)ZO5plHɲ@0s.*BXj:PI?ͅsǟ}ɓ \h]+_jƜƴvi ]u6ґO)pVҰG^3e -|XeS D3Ll ڸ0Q'\a8GZ~{ԸTјE&IÉgͭҖ3MTcбEGlޫ /* .JL-k,Sn[A,%<$,+)Yp;J/zq3w wV~('f+MT˿!"]2O2tWP@-O IJLoҨ%ylw n/줖C)8P؞fgͮqq QQ4akjaY'q@} ѼƜjPHN5,DM J==o ~]H" ɥ#L n(^bSɊ'yu쀕R_ xy.5dt54ߚhUnom,g LH_2FKޯ_ξȷ͍hHѢ+7{.ؐ[nM#[紺ztuQv57n 詎p | D{R5q*ntm6ǼݻʰTؠ_4$?7Uc5@>jE9UzJȝ@ 2\/07TrFY?I\w993 !uY&W6[B+HS5m0ִ7g7rT?@taMaeY ;})JA X.(xu][;G=ZӠ7Bl7/|mDbR(4"L;ホV(kyy(aiOQ>-L_]ƧM c"Jh !!cOBYy1lp ,`#0fEyS fL|3hC\ݕ66b{ &;֢% +Ekl6P$E *&މr+iKj&=XYLn r&0搿.4u,ǭ׀Rv߅r% 1(..^^Bgz5 gn1)WuhuY> Q/VDc!P8BD6:K~r {Xi 15e]kow,!rG\.ѪQĖqv9$?d-Z[ڧ0}OunUq41lH7,J'.hj{ 6v:MРNY0e5fRq\%Q[w@da)3xiT_uN?J\%,eR+xVm h}4(ߔvVr?÷MB=cm3UDq[h2sʵ:1XAX L5,e/, iGSofiK?GJ388#~p:9Tq_iS0?+''S8\"; 3iAzj &/k ɄC1Sk!|WX5p7þRMN Q+_*ӕC-!r:G;>*0rQ6 ߥ l!])H)(.qQT>ngB[ 6[v]҂/zeG=XYցHBvZ[#v/eO_OQ[k|||"B,:fb@yO -zwbZ&AGyVz7< mï ?tX/T^Is8U(Bd@&6t_#]6޻iTڃԕjhRr AW^'m^FJlc4?m9l-/e]_J wﰁEFȳ$"ũ"|>%bJXb{n(/(@-+tܪĜ~h4u"(ڊacMv%J*, \ VR!O̜`d<jͳӬhs.Fɗֺq1ļ49H 7z-H 䇓)&tAO~#Ec֤*Tݔ闖jRaV R;|%e2x"I߂ Uy}bN`H',+^,iSSɠ oqթ?~};?k/L*p提U::tgex4Ož6Ѕ:vkB|\P"S(PGtK )vKBsF"p+P QEy2Qz)Fm9Р*@7 ;}Ux0'\f8͏Z"ţ2YBKOeRY?aVHs*n9dSxL-Zu-ϔ΢Kls޵6v ji`\ۼP*3"? Eg+3hHN-$N?Q%;6+0`1)fDb桯 svvLUT'%;DK AWjVG6CBD[nU@EsMZ+PEJsftur]Uawyr ,tKI4hd^k &x*yb1+zzvx k r qU(({; Da:s}uXdks]`.|&ia= 0ڒ),zs-^N ȮAR=Du (Ӡ<*||[' jPb~1 cw"R |Fn}CɎ%τ:oUL~d<]%EIkk ]%[G Uԑm_qFUzQ]/; wrܡӲa50qEQ53 PdlArvUlX|.|N$qCl}&08 Ni`$ |ڤzbFyFhP֟HU~Ӽ c^&%}GHl1?!wUe$X>ͣ|W( u|Cl}-i8V@*C5jU38*5yǐէOEe.3)ɩ'&Ko9z:}?>~"*=5RC|Lpt7JmӤ} .VV+j9nkPЮkWtqӸt4aKyw?D m& Ma@ONh%QuZ7~qXi| C$ez- 8Lnd2\)`gJl{F{fwQïXRP8:0$fE_hv;…ζp{ir- oW ,`>c҅Dh`2Ѻ4K7To;8|C" {!L-i}Ϗfw.ŊJ+k%` . I?s2dcg X?R)8/MSZ5Ѣ(8*C+;!zY]3?$>֤" ڏej{eC.M,ݼ/%ͰZ^GsНDfvx JF hok:[ }:7}NuKٙMQ#!PFy-P "8U7)* _"ǗI %71kmʫz࠿o M$f Te  Ni~M!'sF*RH>_A&)Ř#S.z\UI&/qyJ BFh @El3'+'L7px%LE/T1,_Ka讙jVVnd,lФ F5Gǎ=z[o44ņ1 zI7;,9 )] hDgCeh OYYJXU_HBBBԂսz_w&,TTH.ToREw  HNca48tGF׿!\ #y Fy&Fmy,LAwv^puɤ>gV$f[dktR?Ի z}7¯13vKDfԘ5LVYIoɚy #4OhIהE^:{zY1ȾK`kJ p)aGA!xb[*xL!%z O`ק|\nmt 4{Uz73 $v(To$ WǁsO-vE~0mq=֕qY絆6u}σhYԵOn[iī <% RmXg jVAd<'^ JRlFT@&n; -'m ;EQ{R]|g$@MϿwdxeV[ ~3+9[K:ZYvؤS՟(x:|`!ɉa ˎgksĐF&J@)?-u2RPrsu)K^AJknj9).!a2٥Q0BF@c#-^|ylT%rO7U!B8 ~"5(RSykq~d vAV9B -rM[ @w˥7]%,PjTVq[K3OJXo&ONeI|0rRgD{װ U4+gFҗpe[ƕB+vo*K#pF/ Q';էҌ'JCذ Sؽߡ.{ 3^f̌fu1׽UpKpY;LV78A2bRdki|M016P;:_"-R. z|(;G02{ [t0:}$j*^<-Uf:oƉ$"&}/k?Ѷď%!u9BD"sYb !^!8bT7KoDzN6W#BPH+v!>mubs$⦄2{EZԔZ\"_88ې(}lhZq:+KX0>N)5{%/,%K+IFg DeM?BhA8I+(q-u'Y#4h=n+,B* 3w#G$ mxaKljLa+}窾j(ԻDb|F>ɸ{Nlvw>:x J>|)|XE[/Sq0)cTé'M;1ljDUOYBT҄eLM ^=> 'K}<笡UKrJy2S.$(ؕtXPLI :.& $?4B8|MT(Jzh'~m;x [f^bzm~ S UnD`=@&4|6Dҋe".N1UW)<֒xMlnI_T&ti"0vq\#)?~4ĬM|^'߆5uxpy˝W8qxugHiBiŒF5+Zi,H%F',f&G>Xof!?dr{ο(1CFWNJПE!@+۠ȡz˲^M/ϟƻa"CPefo^EѡDEq876{ա lcYb>uH%kd9($ "OQ<Tv@±saHHPtӆͲ^K(D(YǞ&c &KŻefH ӷH_9 ?d4!)P Q2"ʼng6&{;3)XD4]ay%K~<]6p3ښKx⇎Tϱ'*! GX4.dJRO""%e쁦4t_<[ mA6#a48s+ m!ϔ=gDjaTP3I;w սQ_ωBe{,r3EZ\rXWS4t_bOPlY(!m( [W3>N=ϔB?(Dx9˺fls2]ɽ3E. GyV39o3^8 .ﴝ3S^j#.#6(YZ]8:-6MwΘp:EeR"[dcnzXYdK qw};E𰊮9s~C~?J !2F6cSG_zFk6$eh/O=D{G^?3G|yT:Qu>k5%+[ϭ՜Z+:p5jt%зNl EVuRy9VN17=eoWV"1-¸U]-b&YW@so5_URo7h \%6c({uǍw?Fֿ$"H9. b [zy;$uNցS]X\ tle~>\$GXUwbWq=}]eJ(ۅW= >gn{\\7@ ANu.rb''津K^dM٦1 A*0.~ʝ|-z0tݏׄ}ӲK{M$eEɹL7R^ hhc8dw<ǜxG®'gdA7~e_^;qAtde5LGNO`3$ʺ;lC9W@}-N`dܛc|]Jr#Yts_x9(ڠV1\\+N)^hꀬ7A?,ͶT<\_rc ÃVTݪ M%~*w'[KSz_o(QБSgV9DUB1@RKJq8A W󚃞OI!X>s=̇0~\,e,j۴IFT+_6r/yU⫦ PZB5e'1NUz{jnbJu m.Zɽlq^N5|Vdܾˆ6X).=9;?wH8빃wxl0_*!u<5=5nȝv~wH@"HtsI6Jޤ{i :]0% l@Aupp'N}:o(> Gͅ]@BSIs`=d ̿A 8j$,H}p\T%c ?>`YVtxhbxѳ.&2b]cC iBzS/T`/c]ou:{z-O"9S܇gm@)"kGpFxCLЇܰqƒG|Fi&l/ Gdadn趔zHڽ^a_3g_v6JtN(\QPsGo( hE lI7`]G.t7 eҽԈ I Af8;No7!?Yqa1%5YT 2,(8~\MTvܱU<}9yaZ^W>]K@"&"jͩX ,˳٤nÌf }>ET: ~d*2*X[ 5{GkѯgHhEQ[fdN ҇]'4tA(ذI wkz/-0R$52U@pމ#}fp}z;J+nvT=9C}I'q1^`9=F,0ƾjzX؋;R1Bnj`ky9o@)DQTq`_gw._~X`%o|L9ŝ9;Й:&me{4EyuiIcBPy N ( g곥W6F !16lߢ8dP|e?PXE{Y():w\x xAN,ƭ!&n3Ȫs$a9_ӥ`V{ʢ拾~-Zը(M*'RѭǭeKi>SZ} f;~^Jy r.~C?—0t̮l8pҡ-ʼmZHe1u |.Cŗ`Y0˕P?Ƕ Ay$QnhB+$}Ұ[M ,aY{6(7Ǽɮ? ,>WHB`xUO;"ǝ̲7[mi ݱSB1!Y4.B pCpPk0i: MZ.ORv*HX۹ɗ2#:jD5XqxUa1GtVJ4ѝx/) xr>pqUW^q -+z\;)-J%S i[ ;v#-yxƙQD=\VJ)לR<$t3|0Ґ'SVkpt_и>q1͓B6Po-:VHܕ$ܯhXVլWǛaWRͣ@vqA3Pjv~ 0EuXQ 9z3w_-ZjT͑@[OypF_>8_hJC21C}܃]?4 H jJѮKKG =غBp`7|uJD3k';1Z6@y00Hs,0hF6g:-:x߹P <kҺĮAPCZě^#[2FwG>w:.*%OWQ`%ED=F}̍Dgyg$x"[1sMJo4r=loMZb0؍;!P wa@MPGt'<||RCcM=QI0}E|abhVy3fn`e."imlXRK*}ȼuXIl'fװm/>>)/ vɺK沖-!~4*RRK@I{GLDq=Br h ?]eևvFXc:-[jq}A# p(NzBHֿC۳D`C|֟:_1k^J îh;"סbMj1Hd6<V5G"vLA{MpCjQ^ QL*=s(WuhQl:T2h*:}kHUti& |Nk" U{of ?ݾ&Wؘ_VntU.YI[&;꣓nc%[3Xm0Z% Iq=!/7E4Ƀ5.y&Ӛa GgY!z . oc״$ ȫd/w*mn޺<蚛Đ*B/2]]Vw]aS|<44wKvfug*&[gK=uɇe3qU, 11;7Cbz*d}meQ'ΈxQ'#Ql A8"\'vZbKG^%qzК`P8!e4@L A5CyUl29t" 0]I )G 6w%9sVXuOCZt5D_Js>K/RK+~1~S1@r˥TF~RE=zT3g915mUu- s$1j@/ TJ#JHŗ!Obg.PwS:i]l2Z[5V&2B3ȹ4|(x4d&،dn#.=qnjӺvŽ}nåKNHp[{b^i^ZEހ&r{$Cid>/;;]DDQb oڒV*,#`#'ګoz@ \/[jxXmJAYқd}dž1rCZ $Mou/Nٮ;=1/Ӂ&`RY!*zt 7ęǘzpg ]|͘]Sy+SM9sQxۚyZo a~Wo.ݪ#N}l6g8_)>z.ϥ=t ,+Q@iõ ީ0Z4щ[tt0s v{fm^b&GmbMWgA-zp=/!aUl3izcENY /zO&Wj6PC_D$a,Oe+)5wC:(>%3g_M?)#b=>~dFrbm}{ADCOKd3QCL%uE@`FOD3 gQ1u&Sdà9M#~:c\F8E&~/]aيWJ/6$oZ1b iꦲɇl[< ӑ).tYYQBFVÚ. x!bRK$ĝ\#}^sˇ w:n " Ӛ-BȤUsaN0nhtjk_M/EniG5LOE09= @"\]GQwxAL8ɯČ=)N`3 '犱xX.qSۄ )zܧ2Arc{NаY\0HF\E_p+!2lSF@hVCFW>d2GQދ\H凚M|B9<-]lw4ͺ`=3hcv d^3*,+k,JWsuK?skcsoT\ I#dJҶs&Z\3vۋӽ,G$ʼn7!HsF-6=QV&/m2 L̫e"M%Eko'ѤVv0ʙ%F3jS7q@"$p 4t@H@&pܿ*C̭K&D{7n?G=[5}ӓ,5 Nrz폩Q!Rn,91xde{BϫGHTenm -:Z}:dW eHlotI$vJ6M^y>=F+--vPӹPCEF-aI6cISOKN{PߓEH5Sl"vci*荋Zd9uDJ[8) JC#=b3ĥZo:|聄 %p)6ՂW1t{ө+ÄxThdжJhJ>YSrFhݹ%?Ckv^\wنOe3"SE{=J-h=VVTJ?ͭ>ym/)[=WÍ#0Jb>z[UH(HZ@lYuH_; O!>IDxQf*3=ML]>SW8%xN+9 #9X\58B:OXG.)2`< O0&RDrۮnǎ7\=iʃ.`sU) ) R<9Ke "%[cl+oux9~<"k>LXkLp RHbij*A! 1D;6u 7к5i[A(9Z!dG&k: ~bm{-̳Jt8XuPXUb! wF phT m ǃ Stw{Uo^פX:i :k7X6>+v!5Bs h y NR -W\z% C3>9JX?YN!x:ML$2%g\ĦXF"zUln15+4v`Չr{m*A`RAc6}" G~ C$x,QŹ.^q^i^{!ڬ Sl%̣zjuA}|A[=t*yii O|=uM̈,v 50"/L)V HiPNB[,t|U$* ӑfqB)tQt{ire ^L=.n xR_$3bN5_w̡ |f=[ R"Z~L2T;g ªy ZRC"O814Kz B 7X!iR+S{ (x RZ HI,Hw/.֝o㢟'~qXTdwE9^ o@8Rb}8 9?fЯ޸9%mi9 KO Skh"]Z<ˣWe{b.nK( H&Tu;z[`pYu'3a,I8Pps +X*h9"Bsen(NG~&'S)u5ƋV"G ~^8.4u=1DK,'리=YΈݧO $ų NF?:#?a/n*wd+eQr%ƪTnٝTWy5 ZwihqKegeL9뒁#QBK,vHT0)}eJ^ P1sJE6pAJ5 <A'-L}Srař?=7[#aal$NTi3,~Rva__nU:+%}U MXU7&wWpgz(nil9k?bv@ή5y! vO;BD*fuG18xNTmo 3-(]#g|B&dD]Z2)X0QJ VK|Wc`/ԙk Qg&k?wۭMr:sB~/b:oo)~お 6 鑥>b q/;<+ e!rK6s3 2&J霠U:NNJW ?gINPP1uSbjh/[oW*Gl^$pL>"Jqs+. 5/V/O$$-҈XiR )/D޻ ߮I'w r ƪEѫDu 8̗Kdxgp`GemqYTmhZ_^C#Ϛx$/@\܇WӱFdS %MlU([;LP;΄R_1G6!]qr`-Xt48cڬ}tQ/704U @ذ=YLzxnj"rxE,G3%nO6 \ M >m*y!F6Y[^0'_ǖMazћ7ٱФO_0ST -ڝQHG4y>t CO\&ҢshX SFZME!_| jb𾓚 eCuts פt+Py&-wzS!XzS%q'Yv2܃m<})F'D-rdpF̾ β_ifekCQ5%B-/dxҴUQF"h+%u}y:*[D͉iEcLcN*É&dbkFRH+$gjp!rbß7{ 1ʁ}U lE^0R,w*;JR~#LH)(RXw< ~~5@6-tewmǫH`k<wdwT@Q#1eB&!&VwX@䘅JcM6-(ilZ:/)=9 &{D7B?2V;S>NcW*[j[XՌnOY&!ށW𡋍@y mfC+}y^RpMl'C 5)ՊX|!M+^KVX(pOV-(!k¨d4Şx\{{jcۜIf3RPsJQX9(kE6CG BŇ;ހg?u%x~*`d-hөJ(xгmgu|t{$] - L ի&|ejLkU&*a \e!<G'$\2'lȈi\⛔ȣq ng޵2ZZ^L ) PNOK3T)moiFDvg=˞~:8`%3_4肹ڗU3Pc#YGpA4 *q^|ATOwkd<)]]QE*ŹyϢj*cA/&*vE9) fNVv+WAÄnj=_\qpC@ʲ8%Zxfl뎣9phGgxGcLrgKRs#\V؝1zNxhRu*rIQ't'cssI1-gtd+îJ .Vi[q};hb2_x_wܘ&KK=ċ\V̰՛4=Ϫ֏0]E goc@V,ڱ,&շ,j%0/Fah"D#a R0ۻ]ULdПr"\Y5mZs3U WI /̄rQnBC L;q Fi}{}2Y*1vpmL >Nn*R gm9|$}/J:A| hG=+O8MьmVeդ-fZI /aL/=q0D;BtMʨcV'Bt v!( >18  :ހ4# o3+|b HtM1AsyKK` m&`Ѻye9TQ:{zw:u3!`X|T[羕/bịf? '8x8>=SK=!˚u)z-e_m.ftWߪM\-tZG6Kk5sNs,.LT۱ yH@g[LgO@1g:*lߌLaHT蚟a4](yW-btdODA%$zTs[FHmO^+6-# 1|~Z9o7&H,̱PwFC8d-Oqlh7]WP_pB=*|p!޹@M 5͜ @R(7WٖW:}\(H.;|so H5B*r:l-j׻oƉa#ΜVTJHiWA,}a_BFD9gc"lO4 x[&&Lگ9Qb0RA*!w "ls |w@G_ܻHeE"NO*L@Y3XLݱN뉕gqh?-KL_z~<&gGK,Vϵ-_P̜I1gɳa};}9#CАi|Y3vJZA3=f׌;y|g8 ~奴 k!I+'[B )ϰ>C__mdR. '{Fo)0>#26x } 4w>hʴ'JV}9=p<m&&i& ʒ]E0â5ZO[EđЦ(˿Ё4)PUD 7rlsѲJ5N|RKSWaC1Uו7JnቱWXep7zIpdL8[i 0f^Q]{[AI rAoĹ#\m֘ S:}_h90B>J[p紭F*B $钟OJ'Hm)EEi1uӹrgi6)/.յn;c" Kr7(, kun1n=( 7{fz覵 %pT(%L\FxXS]2ST0hfeiBEΞ T{̕}L4Onh ׂM}/c{Uc{.6>-7$eeWb3u).۸>+ :> ŧ=#JhjM޴gKw`}P^8f5+o^rz3"R˓ ޗzpL!5 IXw6MIeQggAd1WlLY]b&s0uSh.mJV=KT(jHHodGjO+? |~peaT?ÃC%H:!vÜ{? դsoɛ3WU0fh2SEiGAU !K9= {oxC% p~ldhRfxQ9vUnfqF?km),H2}1(QXnILQ!O`\ gO/1¨kɂ䈾 Րm <{Fb_.LBdid qF"R}PD#"*lR!`:L31NW{;,^Nr#S(HPxb w=6֚y\^ z{]DD%rMA =S{"[q{Ѱ$HݑTHrٌJĖ\eQ-"pP-ozqcˆ.,~z@ 0 놰EpOs*U$V6Z(Y%ZWjެlqj6B5 %em%ӥJ 4`CNK?M'*?]< (j=2*o|6.曍lɩn-832c 2md8Fī؎.=S[D;)wՋBlu;+"/U[qvh}T^l &H鶶j gMIV)<3pZqD2st% ſ4"!c7]'M_V7HpNΑ;Jj\P!*닜Q{F,wKMNCAZv ME h#ez#ی˙\Q-CH$k̫x5$PuYH$}k40 ST)DR*sbk/LkäO*ߠdũv2 'ӫgDtRN(} jfZCA<oGc/ 7~At"˫{|f^>Bf8i֒[6 *)䵮^7g SubMåj$vc Cpv,j@!OƳfg]z&30f"K <1Z:! o9qѯqcuV0߲\@.^d +m<䆑" |8fG"&hH_IW#bx DBd=VG3a񇌺'hӊCGO(9A0c0i_P~i)dvJ06/LWJ2z~ũx\PUS(er)Ϗ-}#X.0QUAӺn巛T}C9eEkztQ9:rՁ2n8{wP2.dž8>_yIk]He*R5(w}LWQ}Hr]"v.fq*!_q :Η*@_sѝ{tvs5ABĦw*#g> tQ8g<[8bolOD]!]qoU_$L&I04&/Ѻ( r OK)|\d!~ȗNϮ5Zi} -I . x$c24w'T]esV;R6-0眽h@җgDFEcbYD P!|")x3HT=v5\{9iHV8dO KmEs]$*A0u nyP'7UbFřzg RxDn1fy @h+[jrĈA)ZqPNa˼(^6HOv8X|*ǚ s*)ҌgƱ%AZg7i*Zқw?@>4\h/"O Ws@gɠȫeN gՄ&\20!m##b4Re裸mx]Dy5-U*2ps]v V^U9 1d1#va?h P3KqAaU2LB+;!ͨՒR\M9}ng✃5նB}>쬓pPs/ܔ"dfsC*%'/)}vrT6O]_+i"w˥.m1r6?9'"{G'x7j+)ya'B[2gtFw@@D:Ove7.Rq0OmH`4O i`$a7D ̞EL6h? n]o`$ejOHt J& q&6%g8}%N60Ӌ8n6+?*z}':eh揯~ AQIj3b'Ҕ΅ͻ!U i9Y{oi+u7ZZ =Qߴ/UعHC$< :Z5\d\%$e\~wL9o͍ _Ɯ%*X=Xe>Ԭψ_{,uLƓ'TrъJIK?qO3 4:hy}@zֹPz0y"'p"BXT𶁩_jU@3pKc*f|ܻ}2kCLoRbW>Q;k,5ij^!V|z_<FWPOQAtc| d*;eHC.~ -jdvm05W}l6/jd&y5:).0d^ǵ-v&'>SC/u;847*Y)f 8i9P۝߾$Y3\$袠 J! r2¤`^„;no DnQendk deY-^CyA (jpk/n\0=EC@LJY%,T=PJO@KG<ҜNvGuhpճbpk~N|.Cn<Qw(80_؍ 3tKol\={8 k/Ӱ/_hԺe6U>qxi6PR \9r"7-7勳оW (  r:6;H5I@Yq.32\*y= @5RLXcPH0 l bӬq=>*KGRxqnpYRτqH#n d jkP0 o7K˼$Z,kAF)3R/N'ڀz+&ɚ ?˪e{nd&~ ^> OG*gw+8L.\ﵘ aVE]@ YS0vG|*oLΘ Pҷ% Exh\ $,[+4Zg>#8ٮX.\}Ѻϔe!)Z#M$s]UEzp'h0?/J(֞G)w5!#BDN[MJRPGtɪFƚ:(R\DslaG`r|Źl@+ :`C% $@ĠdX29ajo zCj ^Oc̀pR dF/jm5LC&_7Ffh;Q {N?l7jd:RzOF%BH!|d+X[Д|$:ϱ߉Hl oS߬OE=n Ս7$llz>[U$ bdfhk\HĸNJҀQƚ~3!IKK7tV 7HT @}vӉqv"E}k&e]ڿyI6+N27f4Λ LzGrD4"(]q-d(YP Xt6]M}-Qful)xN+ !S n0NC\w,HM |::ZGǺC)"M_O*YxY-v.>"l@SW V[@x!a?tf+2dl2sroRGɉhJo ɰ{I]D 2z{ Wr IlKсcלyCfХayʥR0[܅{#x l`b|zk(fT'ެ 3OMۧCܻZҶ=k]~Ym ށq 4 ?]5)o4}A>$ (ot#Yyx!U|}QMBJ{ר+oD!IL4P Y. I]4gNY[juM0VOGo: Pm+f"8t[*PO' L{hܴT_OdR껖*|Tv ]62A qX.eiF 93wF7,צa$%Omc)Wmf^Um5 weJaAҠqh Syw8 l-N+Ao"G_6/5 ~zzFXe&b: UO*gEp_">҂ՂZ݅3 &,mr6p1V TVQѝo⒜\)^;(#wF"1>9X x T 0NU<=#s-"f9{ ɝڛΉF7\#ٵMkϬrzVhp<ŻJ2|q!}hHJN]f1}y&iI׳Q/McB0$@tVQ&=(k Av ԩorJkh8dl>ǓE3&5 /ۙUڬf誢; x#@hhត!o7"TLYծ顰=OԿ i.gt Z v@޹| _diAT牅-nhgzHwc=ԙƱH1Z+4V:MZ% }''i5Ww,+)rI&6!&= gX51 P{k=.ve$Tk:㤕[_)>,Rw4nY]}^UBa6XI!w6h PvjW^\n} `])yUq!+ 2;^/7 b|PJgZE0u(DHbʘ$)&eL=?YDX©BuEuᗜ >bt:1_S ČA0iI$IN$9w{[)=j9%%.7ma';r!lƜs4DkS/o:%%dTlL|zYtdVHlnqTlxnιio ,5Iڵ;,9lpH/#|i(lu%G*B6<}iv}y7dd!co&Wj{ȥ8zRPry󪄮21-l? *V$cyM ?h$>H O}G+"]ye9&kȉ席4xƄRwE{8%c^xi(b=@@> I,R/; : G_I%PtJHF0eRuizmDZw5Ʈ 5lDB/PJ?0܈2+Dک~%p& m̏OКĻ|[S62йNNO~U%pc<9P?-M8hk3SFj)oqLX`,ɔzAy^a# T\Xl;J}@\N|LڀE- ڇC -n-p!Z8p|5$p^ltt}U'|Bk +kG4 s彔R{mI|YEۥd1b % `-:{ĩk- E@}1<屲i! cʫ[+Wz[$S J%CǁWq* P `bG@u4E0=Rn7W] HxA,f])0r :J+\8|uvrݦeTv,͂Avp[uxb .O̥N}## V+큐 W-R`)#Hڠ1 qs%8hyR=I((ӯ8;ʢm2CytCІWMhBJn- o3 aW%{MPA |RKOa7Z -nCT7+ULYʲG~CݫXa##9Dž.+q:ݐ2jΤzq~d&Y&˽O>S$QҦ7$'Cr?Ij0tgB(@>c L^yZ=@x7 8Bo?  $}l۪'w=SMK!<N_L£8X Fn5Љ SٙZ`p`4&IDհjW0'XDQc欏gpHMX& ^|gF!ES6pvStQvTB7q,7Y|Շ܆~fXb%/}'n2n&Y ۉyp|"I0%e\"6KS:wME*IQx,aD|`nAzI/6 qxd(@>Em},v s p$KTΘh K=gXfQ>s'x))X0JTӂS]tdY^u;i6Xki8 A3V\a"Ytߗo,c8T:wL5 tA,H\e%ᨑbӂ%Ι7sEH犄&eZ=d7J\% ., x? [x7Tq\f8%\0LA{̳ӫuD.wﬗdaxU)Xzľ2_2CϘÖ 8!3D?w:Su׽;+Mг Pvl;Dх)8/2rJCy?(|"[DfhςmïM;_KZfGuP'dkafP֠"` Z?v^N5U"O Ob5v뙂PHUWKnf"yѯXL{U%{|aҴ9W: :U2#Jv‎2DNJQWSYgQ3aǮnλo>l/EWٛw7Hζc6_lhAvfG:X9GMq׫'݁~F*tDBí{%BiF9M%O*>\z3N AGإ_ Sr^m꒒ sk&>skBYߏjlrlvzbZ25#g)sF X`\|DhnB̋*M soSIh&awMZմV*-"4)&(:gwKcR[Rl/)ri}q)UnWonW;* "T/T6*ebi'gP^ѧ<[|աʽĿq䗼" g O…Fm3fʳT'$ htBW(R.[V.%bE2l13t5!X;q׃ISJ~"(V/iE2DKB}噈XTneh a[A!T2=.pppeH˾nH* =bP'`.v+P]k %pַϣvɎA,[yƯۉ|ƙ>i=D|­;U-i< buiBi뉪fW̞K 2Ȭ`2 Oן~25ӥ@:Ve4VYQJ3Z'z͒xJgvNE/PMj]e|?gcw74Nn&dW<泲p.آb_v@t`ycwvfq7{w'Cƈzmf`Hr+6 2PhxM+QV7f emD3CK\m ҝ1&wa O1C$/#y+]UHCoK$}@LM-rxMn vlM5N]&[Yo T)VwU,)& >>%:d'>HQF^Ϯ[' +Y*A-*#IXDb\"`P)@ _L}5tBUj@aaj(C,?d}bkؑ%'nфeUT8ԝ 1f7µ\4FVXEhS\?$ Pid5PnOf`MX9@8C7OAhǤKo#pWri4e֛6d8>Fu1ʼǁp>`,1*+2C<ӹnuIQz`1lomՖ\75 63._5hio3ΑvvmPG=ž'K345_m c(z [(9 Hc>xBA {,-QZg3i95BQ$moį+/UW5yTJ2@m)- "͞: Zs!7-֯Yk@bUtco|e}38g܌EhS,bU1 ϒQ8tҨ !4I(~1.TC;]}V#(?} gҊjZhf8Q8{ZUT tW>ƴCɲ_[NGA8;g0zC}U.tn&\ȗN\( HSrBA+AF(;W _P`N\{tt <\}Ș&<W(r6 0;y°墐IP`a>,uwge2fs6"ӵອkq~,Ds;[;t^>PV,F\X!8]&x#@|@ ;lj^usӏIgSٜfp+1s?j.+xv 瞩& CrvK>@aꭕrN1a9Nae+֮8tS @yEܛ|]ɯ_|,y}{pp,G}<g7[LhS/m'wgy/8^`kbhdZ #!t7~7YbV)xkW{D7uih7DfioiI$XI(^%D)qǹv N vT g/.bbF3~ 84'*:HR;00\QNEƳ)m-6?) UK!:8$L/p}!{tDN0julYv^f [ A:wb-W`>UDP:`kJ[_)Ux|MfX@g]  I5^c^3!DaJ?q<\W&aY"|/3k寇SR=~Ep9.M0R,VYt;@zjĹqsy(V,ťhE 9^'S_|sC;Q@ Jc}~| 糗CS_޻yIeLO f#6WBN\TLNdoc ZL-ÞLan~#cwOy $eV fve=n(C"L|tk\O_(s>]<k@[9UJzeO`iZSrq]iQNsqP9i˱ 2FdH[ r1{B L4ύ} &(:**quc=\~veeg],f۔+TNAU8EWґ,.^EnF7AEl҄Mxy4%:)ȓpB_[z1zo[)solC TLRE[ħ"4ӝQo ",ksBR\ЂlCx)բ#=A0-kzI@A¾]ڿ_(ʩ&AvR3dSsN8S0NpieC<̞_lڋWIRinQy1}#:/ B1QB xse!Ϫ󌮰%X IFKomG9N. ƒi&B䒱Ǩd`,@k˥'NHr,dVk17>'ZbLQ›0n (JW5%dQvZCjvmA~tM%Ho<-:R VQ/9vp̧XZC2~ 2NQmDk@]`YaǷkkW>5$ǀ<>).}3-2[wcûJׁ[&]|>٫0WGnkVk%[SGvOY6;岛Eaejǯ\{9Gaz3p/ʄƾ;ɴcn9Gk\?r\-I3td 4n!TKxU*+s;7=/ йL :4/jq ʢfj)fJɾDO(;z#61ˑ:FgbJQV⡎dQ,"^:n=]Y (~%O,I1r"\, -2A %X&b Htn VlQte-uuKvxD>g^V3TdRCEX١*9ދW-G_a#ёY>[.LJyx~TBHaq:W9:cB%`T Ǻ8Qѓ)Ac-ڏ<1 ^N wԽ5w/ /?@Y 3Fڡ.ِ~#AXJ̀.Rdx/OgZ.a@رlx@-I\D_HgU)ʐcT럻"LNQcu' *wShY>.G$+&%BSѲȏbi1HM>@VuRSO)N|W&H?G_ zL Z:zthn~o0MD6k}^\CFv%7oq.7ϻ뵺 hFMz=wm{,7['Mа+19r3SmHgY'NW@%Q*X8 IS2(FD3W`e _77ʮPWaԘgv7KPz'nr-wVFhؤ1v|m2 |IJw2h pe `Bl2ہP<1 +K0ݦY[|Z[(O*O@uwC9v!9@w;G MK@kN5(5O\%U(4!n҃";W؟y(Y:z%|(d:3{`MQ9-Yb1cf܊`c=d B +_JVg,|N`L{% h&[<9m)FX>ūHOlʙq'iptͬ.?ެ4ʉjcj>7DI3"Q䖃]D"y{az_fpN Of<ΩJ'Y¨~ =+=t`iP`k|y+F7azmq E&)Uo/B<; Zg#8#UJh+@K\Q(HDS_=wkbw>dfk`z5b M/+=D<6BEOի۠IAJpe Fr֢K+hI'\<7}%݃1.Oq۟店)&Ƀ9Q:HGqM W}u$5ʱmHkpI|p>\s} O+zb!ȹ5i$k2E/<,v#M0? $گV|)DÆ8 iH!ڳ\ɷS .ZV V 6R;$@R{-2U80dq9)G~Eܷa-U|մ ܖ?t#Uxj+rNbW6Lf t^Z4dĎkrFDΥ|B=g-Fr.4ݷD452RK63;y";Q3qlQXdU> Ҹs.]F~ w`"ĵ@9Tmod45I<&RtpW*pCP}6R܌~ϣ0hPjn2{{tά .e4)A;TT:!_•NiK L(sj3%DTpsb5e,ߺ2 5?oaca[ ^7u {}`O!5]֦|qO]NGx\&"6 '`:|;-?إ%]R-eJB@mu?a=6=T*%0 xާHLDīwe=Vd-Fohf:>"y fwkkz9X}b}`xsHmsc7~F@oP}JdKEߧ) l Cʓ5ᆗpoq7x+v?hV%D`2uMTwv)a-G^dE_\pQ1"{%#10i:G#֩|ɳJ;VQU.u\=*; Vli[N/8qH.D3H|amm]e0ݗ"cL=~sH03NZy綩rm !@:shi$rl$4{l5pr?T:%=m"DfYMudUOUG*eD C~J_>f2ݥGY4d|H;22eӪ}vf8U*z?enܞ^BC}u-K[iQi3hXKy6D%"qXKϚoDyR9!کzNG4 ?'m$Პߑ\t揄MlGțl3`'4;s~1'!mkګbo<'􄨹~[?ز{~ɼ:WAJH5&ڀ7 J=z/4S[Z:tJ+wXK|:+86@其CZB:cZ#xg{8x4m Fo<,Z Ê:unv}.4\[}XsVn7 `N>{0 `.ʫ+VUsTC;aISd916|y`4ObVcvr髇+&NUKPu6Q9 ̜.| `Rkcv\35UKPTk{,މα5|}1݉M6 c._"/OpXќ$Wu2 ̍sZ uq +bM6?pJ4NYqp)'ӭȧ.:1UvV !>_z`B~Rp[%NE$O*Zwn>:JUI_$27>Gzv<^Q"9y8狌PpzkM[JmPȹN-jU.4>(Z͜" .@Xwno]@{ N~lU!,v-c6^x0Q7SKxdsWЮ nI|M,QŤxľT?SɾafFM_j*MR`r7qL+R}_egsc,T^K{Ne^EdrbQ͹UrJw//v28}EYYT@tL 5xV!YKQ+=G#ADTw%u_9~d# DAJ/P-[x{tDvl~ `OPnn,hg ss+{}VޯG4 9ޔ.`}^i\2̣ fN.ъfFtrLsED}Й| LТgU%͗xK>%a4Gyo6&Њ=&ך[보-odJspP0wp8$;X\gG@YfZGz#B"pn=;uFGA)͎g=Ljc \S NPJB9j"]6R%tKPvЀc7}uDM0%1+L־DQD-R"Q zgRFVT1u:>%Ɂhzd rƸ^`9o pvvY%dUp:'/ͧ-)GCV8UMWp_M>o'a삂kE"pQ.ԩm?rڌ LMMZ=6<`Y6} kSRm82:J^![]+ys׺FD?L! E\4 SSbrG?HO%Aj _yqQ7ukU<[ Ԧ=Jkp`Wm1vh GMj{^cKQy|yD w`om 1v9F!J8 hKuU0…5JyL1U 0/&]jgl&̂5yn,qiXw՗iq"fj؁IXONv>~lKttf&i,&?Z0όC+Q+aks n*h˳*ZvsؾE1/CҌIJj2P0|+K7 7úzUEQ*M;9l uJJVĻ6 VRC }_/؞Cwh]>D`EGu^pyj ^B5jh(yeA\pX[ůkh"w* RBX`tJP+,KOg oeh}s >J鸡%G=-dy])$FS+z&(X]ĕRq^s.Vwkn[#cg:QQc}_5dCbUM ],! HuAm~ #x -!r/޴jNQݍF6[{k(J8qm73uIqRPd|1 D7&@4G$_ =逺E$(=Wp50Cm#[髯_FB|f7;XJNS-X0sh燣)z`F/6K&)LE-kM5h'-!'.?GRP"~Eɕ⋧'QrK3ӓZ{2B_+Ʒj člUՎ$ِzI*l V`GHX`T@*&ʣ̬\lKL'xC?3Y$\mҞTpVHK|\12L1`XS[$,[9=fɮ #jZE{0 CrTȲ7-OpN;=8ep4c2d.'p"'1 h1krFɼ|[Ϸ; |̴=+]ط22PVj$3k3.U %_)ZNb rgBӴFMhI|5s |P[iRd#71<$ȀW߬kj12}ekUR) \gK%^U,${_>&Ryr\~+cs=m9P5k*%B BW]^2}mm ح푠0xE*޿fv8 LS/~\?ߏǸi .h%ykv ȘEpҼ#{(]'7qӋ$^@0_ wE%Y\)x^ȖIA${r+!gGS99Ƥ‡׸Ң2^.B$Yd ,1@D@A-)7(*EqeDPRaٻB+}Z6=Raa U5֞?F4Ũu>3BRM& 81 6j&ƗS W@T=׼k$3aus7T)!#5 󿗸g~8s$Q 7 9!M 2WB`IX㾸C+%!s" cW2zXpů P쉭"je;QB/:@}nmˆx{^YyH]vO}^ r;x@`l׆5 U͏v~X]"Ӂ>Suyہ0yc˜}[a ? =9 G&Idr>[jfգE 7-Am(\ 3x4p @t:8ugso Xף8,=-z 4}^Wy o6inVQ'A`rwrޗ@sW#,goȺR^^A]|]0oq$͟'"fȡ2ӣѧۯeb`^M:%t1Nzζ J ^fΊZ8|ρ)#pЙ߬@sNtkP|@PP)xi:"bLo\$ dG9 hf0N=¬MS}> vr!HMk[9Y=q=-G94OaU2@3Z@N"hP@M- vYq#^^A*aDK҇2ŮC1-JJ0z2FGό_-&~%y(x 0%Z_w'{*HWrEkz%Ϲ/XwU1*i;ߖ{eXYy)ȯ8 r˳JU#X3LYt@yWe()޶1}#S[i+BĸFPPܓĤ<ͧ)0&1vTX tLe ๵۔ =  1eWxb:rhسt4c$ Ĉ-54w&TU0\!_;!枻^oWKzu }uʳDSC U>%x:IO044uYj#| BJCJq'[ՂQ !U(rs8w?cJ _qo\4咪o$c&ڊT> g`O@aH3W7qy5;yy0+sU tm9X:3[\^ms5GR :|aMPظcTye񤬸q8?+hں\W&y:oޓ /KVwIqx?} *enzBnXg%-XOV+/{hN+,#Fa65ڬE v8'5W]O 7)"Or,b F,Yn5" էNi'i<‘ 1,Q"gL'nVA#^<|r,Rk3/fC$L,Wڰ Z6h`4g'+f`⻌s ô󬄘k~.~ooWY-gf!TRˠEe1ѯS}ɧSV)+#}O0s Q/qDib9Gv-YyJe$HDK;;KdbA!ݯ$6q Cy~' eIt)ʨ ۙOH]^e?HBjxoAY]}H<~h{O}s8gY!›~⃫=\6NvFLҽ|F),\„B-)ʐ.i!8|_upf:weZaw0]]F1d VJ{yFj`gF C)>YkĘ:wM{F?/_k7$C0|8r}IH*3q1\76)>]f_^%{ RZ:jBv;ōpK=P'۲e>CL$<;۴۲P Î"yG?mՌz 3A[Hc# =\Ϥȅ3 \ 8;0a65x4k]՜*vh[r"Z)xs\8z^>nr_ZKx##,89{]<aoð>u<;˽to d:݆$NwLRwYӭsh/dɯAh1g~جh`AMyIXQhZ?ˮAݦnRwT *=Ƅ+j I[=THd'Ѡ?DU4*Kbe8xNbHlɁ-׬mokl?bi 'V΅22욅Ȑz.;a`i=/"=Z Ӛ;ʚ i L1wp-@DC<, bRuEGR* 6֘,Pg>Q1c|D|r39> 916@vcl#A`U6Bd[oIB9MH0mIN%&aקQDȿšQYu@&E޿3]muk$g#h 3IƘiu,*9C?l7ރ'r]}@[6&ncTpLaojs05Xq.8;?^ ϑ.Hibb]^C#uo9ٷp{®  7 /orDs̕| &wh /k,P/#A\ʙ x JeVlLIEv+e ]HtVH kIebbD;1M. ZDaGS 141^ԛ?”i?Ho~+0eV JtpM{L*w1}G6웁4FUI|۶JIo)!l~T|z 4UҌƖBNHjd/yǤz7w 9$٠U!L&غ@L6R\ j+TÓ:|i>Þ~o1N3-*8]xa| F9~߼6 +e+E_ g`CVʎ0=<>m!Au =l.aꎤ(, bq9RV=w3H@ԟ.@VwՏvA<)vNQH_^pP|ڪ<0A?$K-2C}1"_rGO)]ʜP{6x72[oB3[ aQ%!kA;6kƳaDscGmsVM#R~=.pH~t%irY|a .A?@+4-֖(Ǚ/N] F?ٻtƮE1"_k/m!)п8'}$+<ʖ54bMpƦ4o%6:Hb$L԰ĎmCmۯ a&}CNeҦCK}RSi}Cnqޣ}Vq^϶ "C+/Dy,¥5{o'tL:x-)*!8HT S75Mp̈́e&1g+${ְkmۑΥ avœ6T}^s]V8VzdjsJ~|f% J%|Hw1(!QPb>*Tװ,}u3w*cM#\))&gBK o=oFd :hf7w%;6 !~2k)P^&pE!) (inW#.MH|?}["V{ck6բ۳9Rq} ~%1G9%ٸ :1p}n )kg2 Ȉ֐_RHϊ Y4_SjҗFHwS1<)g5]\ k@8\xZ/r!K CsԾA eP3&\,Il1la!NZ-H$KD*(?bGHj6ZC,Bx)OZ8@=GAOryCGV1/ I,qzΪŵ@8" 0ճhu]{=^vώ` NӸRDSU4d֘}&n|X0IUk;|:M6!uOeJ! +;u ū̍e:+ LfQ#%ehÛK9ݢyY(Sf 0!(L(=]wf$nQYW}9fљ!'G3ƛ*L;rc_  IZ*T} [=ҥh髏f6H+-0}ײ/JWBS!lwU [M`s^k ࣻ/n=f\;x+с%9ṯ̌1XRhĞ;2e)i {VYFD#𘍊@-uq $wy!fVN3"~f暡j7 VٻHUʢoA%Op:!7ժE7 ($uR i%[|B ̮TNkMTT7Z9~I"{xG3@V1/qS*ۗRpfIt}@py ; і3*j(n @GqPC1Jz_$8~vj b8 ץީyzSN~C@^񃫏y7;Ï7/6)$Rz8S#-ת0:OAY9|-HeIEiE<|p9Z[Eڂ%<0?OY?SIıOYaqc,TYJF@I:VDxh~3-Wo+MFbAgrNidߑ*%1D<ش@Yޟ]NH>) tN`ٞTf**sT]c}J`StxwV0Yw\|ncK^c >1G#,ٓF4x:5q}mo)Zm1@r6brUw\7tWrF 5HٲSr2Y f\0b2Bq:x쩲/y K>Bp;2Ǭƥi+4):,cYQK*T_<a7JZ4~%z,{{D֨Ix+{gdkA](yr>CoA6HREÞu5i%7IV%AG4g߽*XBT]KvN8e C}nl\ eW˳7r- ]l_c)VX`Z$q^xtS5)+#ދ"&:dqRwm,ˌ/*s,b-]GmJ3=>/6,>پx *o>9+x_.Mu?E:ʍɪ9AI3H'Bw-~t9g$G$_+Uj>Z-3ŁVdfnQ  N?> q`l9h&1pˈ4sU+BMƉy=O?Dy-,;"EAI +ˇ夸"6eFν Ւ &;җ7R>^ۺP7l8ѯׯw16 /|AtrXuWL(Ј%``34x-\Ͱ6Cn1[m*ZG󹡵}# ?R΃B h wG΀  V0G"tqF= K^Ҩ+:V+hgj R7g9.@K h"`4PF(fEjH}2)b%+LQM[%i+F*7bR~Fj,'2i TX?86XH@|#[t3 10P:nLh Len.Hq FxK{hV{'cCάF>M:iB%ZyFҔ >u :9 ){(EAĿ%޸ nX܂5ac^*9w{q:&"Z; w~.ȧyjJ=!!eB{_tfvV`lXu\c38l x!14\< ^[2-Zu ?48-'|`Mv'~Hz?w9 ʏc39f"{Y_K Tȉ:JӼk@PDs՛&547x3YlmڤFV;\w12KHYFrFn~D@Q-[C# ,,f6<`ǻ˂;Kz[GL0z(iX}'Tq ܂뾴o&,˻B)Ʊd\Z'FXɚȰy;UP{瑫pM8A@H*KFSQ)cs}$0ʁEt* .M4zsIJzd[~pa/5zi^1'? 1> xwL6d®8KU΢$z@=?~zopMki%: ِSjWP#x&p:{ұcNV]yv=sbu3,D<*#&U+koY5M$<Jlcӄ/w)<" On bT愶ցYthF8ӕ2.* iPݲC5\VnH<΀L]ɎGD1@cv_~Eg6l01U.ڪ [ק܇.*ۊ$Uzs)K-7;qmSx&M  nbƺ>(]O5s9MK( :E!}[IPQ';-Op&nwZҒADTd2Fщ.;Lؕ&GE=/UgKƯ ]V>X`AɰH[u;y.!%.Jx8l(etO9% 5܀8Q5[ +@=#~H>X@`M p3Q8jNR-#D5}u:I3 + lJT} /?k䕌[H^s5ߒ&6;U X[ww@n#1dB;g+K-D}x3mGSfN Ў.M?鲲i72(ˊӨ˳X:\YŜr@ ]fImt7+?+G1$[#qEXj]Y-cGW!]&k/Ze37/\ ͦMA ԴgixqZO4}LC @Y1;qٖvyJC%&D=w pٿmƿpWm)\WX?i-IJ ̵4ƿ$s - 2vP 5C]Dozs^%R KiXvaAH==/N̢WTI Q쉝1(m|x(-lwBqiR&L'x>A(㷂uP^{)m|7GG x8B UF|eMryu/WGdq< mҸD?T t)-C0rT3;;ܿ>!.LC`w!$K@n49X+\gmdF:;6K Kr Nri'O@:6%o0%H$6Ԧ ReҘTd|.Tz2di,uans݇aabӡ@婭\vYq9Y?o&iłƕs]+ *K՝m dό2`(%K:' X 괓e35Lk\=E0Pf9k0ky/YS[ S;ld`kAmγ7J3P 12,b50u*†`G83a0[LvDS Ey@@pL+w6`(6'T&!^8Y&d2-=ߏB6lddcX V!4\5.T&#1K.z)Y*JG.2|Vw-==!Tt?7TʥB#/JCۉVHʦSjARP.5V Z'c$m"*祷jEvC $FQKsTEO$t|Fe%tQI!ofDEifX̖ϰ.6Ѡd>$yT9\L(Uiun-Ajn BQ_> i6V7fLrwvt̍7O+ib։oxėAgPVע:p`4O6ok-PІ륊+UӼ^MiJԴHg YPG rVV bi1Q,~r( ä~CoZ͌ _('ݙmC!XZN!}8t8 m<\="\W8o11)^|z*HVAHqc" ""r JeC?V'yJ<~odͩޭr,,Bh~CQ /&яS ҄QU׮UD+=/tcUJ!aaI`FYUqeBIhqH}hMeWFB\U1UrjbnM^(XCu` rLq,\E8?|S3]~V)8c/;ݩ_rKi;Φ"p&mO~YS2.ȓ?'FN!Im $&tRAɍ/i(p.Us=)%t$:x|fxmN YNbҦW"Z|;HXnP!(4{Yj{֒FW'ёӬjT떉  ߾1CS,zRBCZJm2*_,Mɻ0+*)Eyu W.2(>=w7D؈7Og8n0m4ʣ;*e?AXhK#Z#ORNo Nv]oCɪN=d =s"s?/8xQ`:l'u^׸tv<P2guFݥ1>Ў'UM2/NR$=2g/dX3`ݬƉ[H銩> 5ՂkLR4㞳bLS?}+x[ɳs+(=~T*}%-Rg,"dh3)ۄ%buz7xh)KV[SsJ8BMwLᒶt|it5=,a/R7<VUH\j63u4m⦘o:Iُ\Qdid]Q~%Xv [k$q^xcܨx+xm_u)o$e&@Ɍi1D"  Xµ [e}̹A}?u똖eHTްpx 5SYkntdyy˳աnIylcMcABekBs|=Q)\v :huX?=gm?hت:X}|NYO=5=" 3{&<FbV4Pc l1"naP~Gp*?;HC\ݴϺ w값-!8v*N< c$N:0"ƽjGiev<ѡت@max$i_՘j{8urd5O7T$o`@D|xj3ɩ{Z#0GO`XlO/{R`h'MVKh^fS 5ݪ AF`ޑt(Sc!;4k$j፼q'pid4?ԠH4 $?o\GVy^۴GknMJoX $Kz (pͷI $Q"PȎg5y iti4<|6tQDԹ8sY5,zd>Ka`s4}Tb#yxzo{V'ݗ"B[.fGG ԕ `VsG0K#;fpL <^噍윊_q&#n?YP]z(>٧ 6 A!yǩMҺDUeT[B%^A^엘|M=g\5bb]q1L-a/Alc%5d A_~aOȹ:`"9wRf+e+"x;w Tn{2zx>ucR8Q 3:}ΕLŖNTr"T4ۇ o-UX2uYQbQ Á*9GU*2]&2X L'=@. Gnxo0\vǪq<d?zڏ'%RF>W{l܄L1Zr s𹊂W/RC I&AH(?ԥ >䴓QpncSp$I;~:80BܐZB=}ŎBLr-z YR}'_X +yC‰iXFA{gToN(dPPSF{̥aU.?8K2%ީ+Tiu'˓ޢ,ZDc^ \aGWC:C퇏Nda],f l;qzkqsGԭZE8BvY"./QF+qeÂn%RN\h@kѧ3yZhlv~~,p9VNFZ@Q1F dE:`h.֊\q"S^#!Z{~.fv9N3/*,ᴟt27lb;0\ bm(*xsKBuÅɪZ ftuMfP'Z7s65^ƒoRcgy`jGo]0[ K2 A ;;{4bp8demK~4*:Mܾlg٠OO'JqŐ x ZwZAvby?נYvYg|.bJ.FOu݂Rd!qp>,WjD2"8ƈ] (R=dq8y2Kٞ5 7*@{0ͮ0ieK>QGmPXuJd="!WvHNEb:efm-%UӉ1H gt$&tacJl!M%3lT*5Nb-  fZ΢5bau.,k-LWk;SXF dx544& 8|6BjNxsXp !}N<"݈+VhW `j1ԃNqRTMoI1,$a zx95ߵ|BJ=3'Ǻme[;@]Lh#\PuhE 54۠ok<Ղ7to>.A\U&<͑l鯸S%^B%'2Jɭy.dqƿIA̭E {@f_]4>M` O"6u#(`%'YC^LrhXn 퉠S[a [}s@\!<k$p|T87ǝhs<0jh@N[sLE' JZEL[ف1CXfKT7m   &e'xZ!Oull#@koQH8\..LjBɭ@oI'pl 9%UYߛafIcw0+P1 [Ũh<u~pBnS4 ACvoV+v<KPSy!Pz z//b> k Uݽ__&Y׈7udAk s6Y{[bCi=nS{SzOv0AFU0ؘ l]>J@^ 14Նb^r$sh~YYWV,+pc1,4m0O#xK?d<ߝ_}Fvt>/EzqMiSؑk;2l;Ι,w5ٺLGY#S/kplͦ,11Pd&SU@a_ԕR3Ѡ .ĺ })A*D1 1u,҂UpZs08Od@*BU7NE{"ߨ!Efbыm9H%\6k/ -0.iˢ0ة[C(BVPvt [+v5#LmfԵ eС6UUDK'S!>2d'4bBj!$YA>Ԍֽxt.rj;e;~Gܯ:Nq}f N/yDݼAgW?JqiRiYJ4Ѽ:.^Q'_!1??49KaT A\A rVϻ觱_jrx- egowp}ۛ&-Xg&U62L$`zٌ2^x_hvHΝz6u&LG)8Ʀ>}!TbE Z.jqnTg|;sH(C&6h[~h c`K9? u:MdDDɤ.i"qvf(y1y0e4ХlhaUD9P—#+9h5cl*H-]~p5uP=f__1ԝ#FkJ8]uٝE޴¶L+[ܘ_Ye>HE?x{j ]ۧ5Jw6MlRa*bL(Q^=k>X9RDt]Э]'\CG)o1Rb4 yLVCd_u digRM\ˈYk,FP(E%TXX/MT^p)6O2& Ih ]'`'kڂ,D.%ЮY bG}i'eol SJF qL4yMuNkg"MMGaީcSgKvRq'q2F.ܯ;F}*;bmȎ$:HΎ N+p!ElV>L-Mޠ6 $+Đ]mܔ0I'[Y[kGDڱFAlBBf`0{Y@[sxDayM1ܐfrW(p"oC3g\ %,G@*ݝz:&xIoF͞>7u(Oj_̭5[~EVdIe|M=$RKdڍ`M{E9Y0U:-`&w~"me7s)[8][sPaէj/'^K &ڰF\ncnk2b(x5طD/Fm{s38UT͋ ffi @vl'|0x գ(B+yqnpJ*cg6}yڰZE\QBau[LO\?k-񲮽b BDTSո`lv=X#`XSA.l||#`53'A+9w!Y9sh:q?qtnIv\-ɞhd&%a)h5`/ǥJg`M1|n}"M4T3‘ шz+4-yCֈ\%}+Iwv2$ H){[M8Ir~C/S}_" Bb۽v9&_h>! ERbI골0~EqyXCL Ōexm.ÜL a}dTKXZp}~P2lBoNdYiNw.Do֬j 9z#yY do ەnI2H% ìWS 4[M}cֵyVVx]7tܑ0H0}eϏrχuM95^ s&2y#=?˛n)0_1~FUGoa+)'d&E5+#mv)P/s"3s5l@ߪDoԀwhV^J* Q{HIb"!5GNۘM֊`<ώv9~Y D[ OJOvW~9hB(3H!Ȉt~& ];A 6T2d5h! G)~r]fQүJ5Yf{cY*7`\ɔ:,=aFL $[Kvd)(Ąhm"NxYN0dFb6vj%W^l,"߽ՀCe)6CXZ+j7\Y *zHtCp~>< Yr[hC)iIASUch?f&B_V a9|Uz&KgD!F7]2 $SO#R>05[8r\"]RkqNBz>nۀL iy`,jD@gy /t"N )x2m"% [0#ױ&j_l=OH@"Wgf6E.sV1w6$ivtê&pj}>f3L /h@STcA昮VlxUz_Z6.k\łir۝dGV?GCNF=ᛢ+vZeR!6fF>BG%֘_WkgTO$P~1vqw#`ʬ`.ojyW$1]ʋ]P-6*Qgr$WFRew$@gl/+ n]#TTM%$ .CDM=M}n]w獻r(0)/ l:EY+rtanq;!;uv] Ruw-2?R6C5 $OWkY!W龿>-nѕ} LZ8 L3IlF`z3r< C: WA:ХfTXC8eQ?U"+CTB+#<Όl}(UԌ&~!7NбKX ҄Ewv \z,Bަ5 fFuBOyѕ$},U:pJ ';#g׸LL~963_sb_zoZ_?B- ;O){xDqr+l (+L%o.X]QE)j٦\r{gF,RQuP28]_;">Ƶh_i\k1ʪoAg+H=R RVnH&nG@gzW ?"K+½ѓZ~V^h~.i!e_JD/c%$8emBCջoЃ[U6إiq*,cmP)TSs7#_z5=dE)RYT`E@a,B1Q0_xZBE@w7Ղ?eS}Qnޑ7͸yk Gg|]Y+A뭜5 (!m=gt͂蒉J7~e<?B=wDa82-TN) f#8p~vj.ToP =c;UӒyLLka(KxDѲ'&Gļ\F\M_;"_| nEDpTQZ3 a&kaSFr'.֮b$nWs*?[Js΅֘UlTe2cb1%;Qv2ɜ5VI(PfޱsbrGLj!w&?ek Of#Q8 J@>\x=CŧZ~2 R/ ф&o.f#2̱H$^GՅC9N{4ˬ@/!hAٛ S"[drxc9AUPJ 7ExiŘc uӰҕui O,,sb ˄ɞ1i#?Xj< "nG(^:&UP+"9,[&둚7?߉p|ZPBe}Ƶ!GpX@S-{?f4b6+g&fZU;/mf 4gdc^P宁v S?#2m f=ۦ "_ Q̈́;rTw!Q}◰Xh9WSD$`S}^c&^t(׽֣wNrV,FX94J'>` ]Onݒe2&)z p4dbԵݿVb{҇vZҝ_oS!ʏc/H ϵrm-TM{2jucRc R #SK"w8fK9E|s9MQNZ4p.-u>4+ h#f7xܪw`šTA$R}cAܐD4@ "d2V%M->4xrӂ\K⏅%Ǭ2zxr{DNj5V`mo׭^0[٩UUiqT~"L(O2U {=DY*D4`uj+&"B{tt!wy69tbK}K02gnBK@$wyǡҨD'Q 4K$ 5) 0*H h!xuH( '̾.oG&Wd.G:l)TW\\L,8]Ucrek4-*^ӳw fV")uɶ(0^:W5ʺ7wWGEΘ1ca9 o`pl^.r8(Fя'/&֧$w3]7uvb^ljôdMk 8F{lQi߿mNOBU_YL_{*gCđgE | c2kwЮd+HsbySJY0]mqi- D"HʏUJ+xIp$|'OGeIۿ|/;"(N7E=gjCqW;bGdCY囡O+/b#d1|װXv Eyy?!klYYMez!~!;Ɇ>m߱H"q NCD$PcK]ӻY_L6U,D5(\;.%{(6Og*Т"H| K e!X$.cɝ+ QXou#.~]x@ڄ!RpcH6٤oy L@q^{jֲh;ETSD$6&:rc'ԕ" @#jHox %~@ʸO;5w[6(xUG+oM\PzwO uNNdqȦO,s F3,fNBlз}7j0@;b(bnV,nbCM)Ӯ>m{uXUE2*)^ d bsp/G#ԕ WݱI(3x"%XV+s\b ֏Q!p3?ԍ1t1H⩅r҂_|A 1MY㾁+y&N< ~7 "XF}}i$0 8&Z2 yME],ՏU&\YKldÇ ,YQaMJ @䳅`95x #{te/. #l'qevNu 0w-d~ڮejoْܺksj{+D7<8dݙ;dL'O=jxc7.YJUkR#ܤͦz~@cG3+P¯m@QX틓0('bi|_{zn 爎^d^ypR!nTo+,`aa`n:ώrWQTc1{e}wXg6'j ayN遭%Cc2떢`+R\Gz`d yGx˴VW _]I[A^sVE.ވ&xJY T+L|TpIܞ= y ACl,h|쀞\pKa#2\a'-]tsrbD n6P{et,/'%[6c^J)5DS%4+yO ze^6No$xqN|\bscḑcCzRht1& T}]X†Y(>I[WA] %MmbHN f9r4y}\1{p`Vِd7"GGEݔE$5z*vo?ݬz|,3"_ 7o(0j"$xD1 =zQ]/Ñ"ЭK ,')K|^SHYBV!Ec[0>4|+T'(;DF{|v}jdvHHO|!ĉ)3HH l)uڬxo,5xs8v{FDx2qcߛx5K]DSD.texm`K+IAP&#Yƴxsuuê>|P8)UQP- s|# ur3]3 d![г rvi0앝~PEMnCi« Bym9Tߘ5fXӃB5Y#ϫX?X7.!A}ۇ0ZlU\8O>b6ώv|\9 pb\{ ʴEA eu*A^V{_u5#T?(Q˛6E}QSjKD)e[QtP};'|aRj7MN))LCgp6Uz$&o_8)6 ٫6aO$~OLbVTpNpkXa_rS561%g4jR3q!0*iq Է&C.z0KӘ/ !s5Acwukݎr݋zʿL&ӷ_t$] _Y MXLuyB~K;:Ͽ bE=G .5ubLgG.9=$ F} m p[&O6&w / EtBssKňzl|Ui{[>c+r ;oZ欲:FC]|p Mi'aF Vu/_\Ё&Yc#- 7>JY$婉,L"ӭ"{ @ݺip"؝n"o6Ynd䭙F\udgBiP&HP}2O҅ubo1aU`MPqg*S.X`N}+޹ r^q_9 m[ otaL?th_a"Qmέ#+X,@u[+zƋ׳陸 lyX$`a`BEܳTc[P \U#GNkfEܘdjf e{(l19(Ʒ>+fݲﯭ&s`7Og[nó",w?N@KaoA2rV}]>v($^uc/ ;Ҳ* ޜt)P5)eu:' {q~Q_qY2s:a/P&|k藱<mG@ݨ.z4$`F Ơify`*rY3GIMMVlm? ᗳruر2dk3 N h^K}K4Ew}YwYPt#{V_Zrge[H Aku b* jrFDMJ_ԝxh}צgqx*I΄G4=R)lv#M`#Ş}pƝOB?7H@f݆xsm-N3aO?[+4Ixh G!C4[¥1o,gZx,,իڡCG 9%Ea8t 43WwenKrq#b_acl6۬,OZ@7`ӝFAݤ$kq=$gi@&$iVh/rӌ'Ԛ~X{^9gߗ|[Pz dMJh|r2]9CCYũШ-[#*k=O2&|Ő:AKh K<ؓpr0~ Z@i|>7,D7Π!,Xŕܧc R`RiqCeqZH!c^zřj @7FNam=ww-cf3 qJmE5Ggܻ)AQ6X&I-{e-u}v@ rS!W;y_*є%mR1u']Z6Ϭe])B A D ?HO,9B~ƹ(}[%X~] .>9_Y;=n{L@p)pUqq b޳wpB*D0" wkcϺ[(\q&NN K=n|Q( GFН&Զ^Mc7rTL!bW u#TVLa#3W>lcTzݍ2vJP[Q3|XUks0*V'hWD{8lZmHIƼbg̡RdfKU@ʩDϤ.!ۉe*l:AY~,Kz 8k܁ Nb}@^) >^T;ߑliiycFprKR4]$ B[T~LȪ62f 2+S0HÛF- <&QFu'"*H_ȳy^$mA~.w&4|C1M^ȁr f\J"!uH/6zJiPJ;NvHdB Hdlް+zHhA+[taVjw|^ ֹ7+Ê{&>+,'^ȱ* y|3p [m*}_LaEC|_6ܽzQF_<#sLs;Vƿ]..ZNىeE_Pu,P?YK.3dP* +¥\/7o`|AΛ]&(ߠz٪(@hiiҷ37{iOK',mόIu72wY93ՓMINϑ}1<id3Mf.? iLMY[Ҡ@<&AyN} *<% _'Hgk0MˁO.d [Yxx6eNT0mهt}HZSV+:1A{ٜqN{K_'cM%VzAQ }E˼ ,ݐ{yCh'&[1eݐ)̀ Gޏ42Fr`T۩J}ɓ6Vh0&{~jƧrdTOSSlyfIL7N ?tzAK@m;ڽ{O<?z"1*b^͐Wqg`\|PbVH_P&f=~S_7^YhbO.r_g}t:ET& ٬rq mo4PGڟ_aC@IqgR$+:8bJ[6YVtTvDζN k^'3 zPUo2`^$tN"|R@Nn4Q# ؉G {]kS5ͮjz,.śITI?V{DNg]Q'Gr-Krp"yٓ)sׂ5뙩B_$%}ʁeSVMn1ENUo^;P "8iæݺ@{o섈/Ndo3[ ɦ*R f;v瞦# f$0MvҚU?=Iyܜu#ɺDdGol\x&HɦUM%3`:^x'׍oq1 aF#qDrsPIf`-D D;P=GkJ&Fh,zZ6!:Qq|mh@yymFZ0pҀ?;S\Wbߓ)y o< Jwa')kW>cܮGXqh{Ŧ7 ?Ba6Қ "=]+Œ@SߴJ6(w|pGvb`{r>3X%(3PLʏ O-/IRp8"B46֏zHQ[/NF%ݜΎy h<ҪjU7?t9q3Ee Ϗ"U+@IeuSpQHI\@ ^m~Cf&%UٰoJWFQ "˷xJ6:Pp7:SʸMuKQrgjHN k[̫W-6"pN!ũb}as ݹ#!K4xUr,T'L㒷~ Ge4Mt#eiZRgu3ga9n_1>1OEWxZb,X )nMSO^͞L3X5,ڕA4\SNnGWUڟl ~C7iW.Ԧ9uqL|q|QUAlܛwWB垖725ɶr0Ѳ4S+ERh:#\\Ms!HA|eA%MZh~@Ϳ@i&:pȌX2Xf^yX3 hAmկr}18-w\3!7Ϻ @yi[)xN%9R?-Qͪe߳}HRutw! UT1˒viLɅa1xM,P=SўRdѲ I3f6vX4goT#DcVtfu.v]&@L#a/YF\Mxj|SqT{Ǥ`2~׹u>:v  6CceƽyC$gaQޖq֤}Kɢ!hm?x>` f[^!ֹfa,7n8s&|ȼtJЬ aXMIL<ρk [& hLsg~*TG4D37r_x#\E+؄s MP&zvzAa  vm=<ӊi5 %]{~qˬKԁP {k/[8M[៚:muB)ؤ%RրA T f~$@6l_y^h7Wb7A &Lɇ9hR7-:"['b;%??a"LowԼ֩xrc"6};uwomZ,ZD`lr  H* @#Kguz&|b gzoHe)yN7"ع֡ĕi*ç p8ZW>D~9Z;OjIAHBa%O^<-G-h<":RH#\o^-wG ֳ?N=nD wd ط6 F9<{rYk֛VMk~`eX*sa| jPz<ͧ_AY 4P4[B  96N:K6*?@z(6ҭ5MA M N+=3E]nF+(ϺEQ!lC*W}<0q>|Co1F .]e- Ov1C` 9]oqPki2vZx:}hT$?SA^Ͽ94 1d/63jbB#Гk}qJ[Ҙ=d9vNIh[WL :U*%grة*S&}.06Mm؜R(6>SCFn*x(~gQ3S6C>s)LG wlk8!I &)=SCbl #z1g I%ͫ }yӦ5^?GVz3+x-ԡG=l̞AϞǺV~?M͙_/LrC#M1hXBD­SjJR_ҳ*nL -M^{MށN*P#z09PIRS$-Dl)r >(€HYܛDVbxCHen0a۴sO(ȽNǍ+,rbquS <0ͺpgVkWEuibf/iV&g)ok^/QĴy]Г\vD).tc3[CʐN,zwgbeM Li[-z/ޯU3"Te24Uѧ@p,{"ā́'G7>aD 3GoA1v|:y8URĖuU`ݏ,Ca~djt'P`OT$]Ojݼp꺶;- ܩ:p^aDMlnق0՘ƅO2;IݫV##'!.%oB ln힑 rrV&q9+8HڧNZSr&iQG+Y !0z޷1N"G䍎_ba,swcO!} Sд梏+91wIhU8_/7{˙f1b8喅ISel҄F#Ok]z㯮R /?d>H^WTgy٠ a8H z =MgvC8!gvP;«#1~a<8ޛ_?/ԝ|R]{`Zر_%[bR0hWZ/.LE_Pbb~_%Bs $i,erc'tKyG~|}ܨkJz:}tWf xckSB cɺ!\Xevq1>'wQ!o>ZwMg?2y=_&d"A ҅(jA4]XO%w/8oiOUТJi-1}01 -w\IA>Jv139khX  J-ʵw_l\Ӑ2a{H0TU(ٍ2tAԿpYw^8YqM PA-[gL[1k!w\P+%w Y'̙(IFS]ynW LCXm_1i3.<+TnJ(PWCo4jX3x s͂@P"_Co$_'UbeO (жJ=0#a %^ε f~GvUtbonIa`AYBcurޓin㯽\%:ye#x[5ʯA ճs Rg'#BI 5RѵDe>-hu!6(]hP8q]Gz]8˜: w谈6+tG1>B  ,RX]֭cgJH)}͊>9{x83_."m dmy握_aNI ,ط ՉDDENQwYX/+H;{[N SF(RÞ!)ï\Fdh-t1<cR`[%H]>6Ohѧc)=m,?ޭ>#j H.PG 1c+m\iѡ8.۷B։/yyX>  !C/[U#9m6rU=ĝJtܿ[o9?57%aTsBϴx/J@[́ wy{p1 \*pD7L%R].kl0;?w#I|3fIq|7(->eX%ޡvr&2avsY6>tww+Ty`ԵEiSJVx:ciS("vL:d-n.&]aT!xYsO/4o ^F?.v %NSf_{Iό=s_0X5T`{wSĺĿ]A OݪC.NfD=襮'=c$D9^nm+żǤ8iW&æGp!DRZ5gWd:0+hyKg>s51&YL.bul?#UAQZ'RNw(7s.'QdSgTֆ*_RQE;]b僮o֑"/f_tXo&D*k8 kp2RړzʫdD>W6CHd+rˍV($H&!f^+BK: ƶ97rǍㄕHj~^/9Y.T  ь|ve #/D7ެ6C1&Gi4m&`|b2c;B8H͎m]𶜄;fq^֨XZ,{.ұ 0wsaU|vwZ*6HFJ\?.?J-'VgK}i0WAce'yTL !ZF,Nwަ4WaGvx>>x Pr|p{Hu՗5 Gfs >ao`)qsezځ ^$9;001?*tBWDNԨP_޶c{ö5hf-Qʺ#̈u<:AuFX1tz;7Jo[wpShٰyh?p=o_5,{ؐ#)1BXѨ-^U4LJLq+zI\7# ^Ȗf }OAղͼ*ԣNtz.51em"eb ) vK` o5W-G<:=T.4pVڢYbr=7rdkIWӠX^o5𸙵7wv/8(z)ɲ+.[O1iK.BsVӺ^ddG/-}Hcp{(jNY@5%6aW1a+].VRN-wE EIweh4C!*緆,tX&n2eCP$lBzt%Rϰh:>Ԡur%^>X;6wcqoSۼi8ݟ%`]BM]ŧv~,+HA؟cb0w=7IYZ֎[ί@Q΀]gqM"ZЌ݇R5@iΗ\ Đʃg%]vqL6`wSZ p5[+*`J<^ YHgM[s#ϭڻ?йBYzrITG~? >EVtFDŽ214u_[ ՚0 Z$o ʞyUPfql<OoSP\ZAQD>x|j*Ù]a3z/SwR~J ڵ(p^} 0DaRo[k|.ZpNM9ث }G`|*cŐO A]rObn;FWɰHD],,LMf\6(G&wE  S^SpgN8[ztMKԥ=F,m̯]qk{ս)(OOKYvRLX6ޭB:6Oסm>XWߓ 4blMx28޺ ~Avп0 v;vZ {ù&[Ktȍ0`3g81(Ś:Ư P5g#wra㭸9g.7~T Th> eVAԷy!81(yMo@*&&Ap r- M9ZC!#`iAsnp \i$Ί熕X+\JGT߾ &_Aǫ*tJNuMLFGJ _垅siSd^?GJYEgQ@A#ϵ7ӱx蹺Xyc?&4ӡaT=B\^kv@r0*5D^L&H(tQqswV_׈DS,)!egPU)p(f~+gbYS[bo+ʫk_Y%faq.F 9ga- bD 짧AZM)P1B%OLՓ'9~ t}k/S`zywLO%U F _]AZk_| sVJPu(jOVN}~皺EW3c}_eplScP"IyJ9O *"AgӘ(o;|܅EvïE * A8܂ /^#A9eND.:ʕT{z0]N$!`rrƀHjnAr6׉o:=x&pJެ5)yqB%@Vkm?Xzr&ʾ_.ZuU>+D+}6@(hKo'?]NZ_CMJD1B䄝Bb:yHi|P5֩j@Lp.Nu祂?X]C#1ġ5D@Zڗ# N[ _dԪ.Z 9a_q4!ad]XvHO/6ZQ=ŭ%,P[@"Đ{wQ36a4~cߵ^ {\b'Ki. QA7HrQ=熹Fy/} 鮢Y aї"MlrEdT~)z+Dw!EXT4hww1 Rїð}yF\:G1fE(IdIfTOГdє/jK2{cDx /IDZ@X:YӰA[˿*ڴ9nؠ^PVb`3um%}9 hf ȝ;b"-Dq'[}5)idN.+ZagK{15%5B Px@ImB)`ciP$Wkw7= 6Q$B~֎ <D4Ԇ"uKg8NGO894auxJx^: L'W.hFQY/V/:wQKv0{/IPTݒƺ =: |zbMMvV%δw`D5v]`ˍ K#j뛩#D1i(AaanVt;{"{MAbv?b2Z,\Z'BrDiB>hp[] OfqL}rC 6U'wphv- dt:Yeqܴ\%zggóbG{53MbS=#Fj96,D&S""4;ג1sjD`-(a)3g/z:5 Lm#6 B۩;<ЎZx΍UM JGd~ƅR^1_3\TQ0D,&pU6VO4;~Q6!Pj·t. d e@}2C ,Aj3Jwa GPGgaÜ0is^K'=f0C;w}!ȃYT (\.QYƸpI5k/%J]dcܣzCv/X3h:,*|8 -sr=e#tbf_G&ẫ(Ʃ~ ʢ9DIٟQhzAob[0JtD̠$D8TѾ*xh>?[BI* CQ:)aENsĐl,ȗ{%c\Wa1De9 QrKJV<7\Xxpí@Ik,uoEeU/$ysJynQ6 `46&~L|Y5{u@9C !⨇"|5e[}$[{N;eiiaCg鬺 lP,.!ȪAt.R½#S*!0}ߢs}6@Mose{ȫ`׃ﮫe,Δ/."FO/Jy+oN3ĈFj[hU@uI+\3AYK;>1(#Vb)߭|D{!lGCQbY} ̮k%nmjvOrfD_͹V;#`eNZ]63֒0Xި /?=C<2Z4OD% )p7ymEh+]6u(4Lǻ?X]k[ʝ͍F6Iп%tGIݡ:]M@*p=gh̀V'zz8R1J+x}'`Iܺ4ioB2<|]q#$8S樽=:~qh8NV1 F5b4'k#=QH`Mkv05ցuM%fghb~ u,]loyv`+"_D›̛O9> |mƠa^¶C-]``,g(??IrS "wH.5)܎\cqBypi9So'z2Z3whE{g)%9+E8c*Z tYYd^tFI<#`bxgo=U2䐘` 6ʝ; 5$s P09i1}x;)98月N E8=\oW+zC jA 93GƆTDDA}oȖF .\=-IĠ)Ov[ktl+#HK . Wp 0|7̄V$' K|~ٵ@p բnv'zk߂(BɃCBM4.IpG%ak3yc(rWԡ(tΖJJȂ,?לAoѝӵTY7E|1=ސ^OTJxjwdUGPfYɼG[v젩Nנ/gpr5xB'f~-jp]L/o "yfYg%Ix؛ԙh%ճ*JB`V%>s~- I\I1a( */"|oWo]ybQcޝҹ~8/?_ #vYUm;"dJGdv.z/+k1Y&gPnV'Y];ٓy| vxNo2\;o?zh6$&̋ҵyO!Y{wU= rAvU[ 'cƸ#> ,`А?UȈ20^f\,7/'g#swf~|fBse/ЋA@yKdg3fM$>EGㅟSno58] K6]xGf2*cQnz&nЪi0˚5a[_fc,%fpq?79vOx>VG>[i Ԧ$5_ɶ%T;y߇Ha媃QP 'c?Wc}?RIh ɭ]3b*ϟY(h/覭}b#Zu=ɹhyG>5.Wr ۝.D\ ToD9BDߥc<EuN3?:O"y 8'mG°ǰQb̙ Rܭ1a..0qkN\ T9)g8Z q=)V9Wl迷S7c#}R:@vԏ~W+ZG$tָ5ؾ![8$woT?~"g9hZm& utMX+f/|9 ӸCɮ$'QOmPS>H.7Ҷm푗?  +z,rTspb5<`>#f%޹=1Zj2 ؓ &ft7&AcΐOֽ=I5ݡ.iz3 cӶL31'Uu{,z-~<9/X©ZRj̏E+}J}BEiH~AbnV9<0M` 4*k^)8,066\*MdU^׶dam1.y$ϲgѱJ" n(lg8E` !)E`}6BK_GlWoϊyǡ(j|M njlF\@=;̰4:S@#aW3O;)6V<jF5ę'\0nSB5W֓V1}Ǎ4u^[_zآ/_O.)f\TE +JP5l!3W[NI &jBҕGlvYHL'[ m"**)pʆ_wqjoq>jHc8{6P-M#q!Aqxk8:<-{|vdda]Jin*=۰ˆ`LbgTdU\6t x mpe_%*!qr/UuJ/HnAvnKݍ?-U3J0}Ís1y)n9/}wcY:񐀿T9]2(U?b,Ȗ<M sxAB!av.\ŲBVV^"*2!+g08?#|\34){9g4MD`i z5~%@w}fԇ(G%vS &\YUU"l3!]o =VPx!RbTG7 3*唉CRMq ;CgjPO(ǖ95P[NpQ΃b2ND}-c)x éґ% Ggw&nNi1?ﱻ Qr@`,r<\E.*-[ L-VKNlKp7G;4/#asL#\.Qb=K/آ'ezsp'ٽ$#ƁB!T"dw *f Na*iYZ8-TT2T(2s{1q°-#pH%%KXu٤jF_QEғ(۬5~?R~N]xxw.7j!VTZR:j!Uj3R"׊Z H\Ҭu 3/AY9lԓ`|@fM:G$6wyX w\^~<6t xڦM=BStJ9#p5o`UzUQCDNrK LB-jCK$jn D~"lJf-Xjbt;P;a/ӝXRSuQZzHf &$Hžm& uR]WONYFK _,-]GW)ym@-:bEP2Fe2S sHj&wǁqW?'U#*\/+Vmzw-C1Sz4x@~k|b#yuN{1M CwJdT VY+f!d0at}dbרjX %n4@CNg ,P\O"h|q?ixN^M Z넨Jeʆ2k$؏Fi`U9rg "_Xy۴hAK_ɶu@eq]S(썳՝^ﶙ6g!y+{^?ՑtJϟ4+;YCXY.8)"NE{K1esfE-\6ArjofX)ZQ0}5c]Far(1Z?(2uE xJu'|C4O.[p;ȗ@̡X.0mysgeڥ1-XVC4Jq["xtxsTAyW`dWH"whrNE3k\&?U"Bz1!$ 77&ba]YlX~%!ă$f g#pk;EB h#$IGo}\xP[f7OKAa <{ĶƪJ[r5P)DvLe>e0wO)u غBua-#ßOVYy+ul:Yc D̬"d6-|XkskSV.!q.+uV(XT I?ٚI{VB4iʨ.?۾^zsՓbW:iIO>~kBk2vJHB=h_{w?$W|\3A8\.$rFsk9>T03?:w {H'OఆD 0YO0>~ 8HLR@L(ɠFaݵ d@/3U `;gkw^ M:rˁGڲڛ\@*yh 3#bٓ}2e^,0C{cѺ4M\EV:ɡwyO,Jo_gsl(ӝ[ 3*wK|M+GNG2;H^ hhn:gZŊM10miڠ&67KɣӭEptt Y[? 7,%~m;%.+i=rV! $_2ct˿ױGvŴZ>U~-;n9N)3iT:p@J!AVJcGĩy j<0B\jU8bﲋè6\>+87*{FX5m7^A W ܟo ~l"&#@±6?0 6 PmSEv1|ew=5D Ä_7?;e]{=)$e95m vg f}`űء~P{m \&wPch/'k1<%ȷHg?_g'Ur_HU5R@evP>ӞVˉOeWgv#fFaNgLKӓg)zI:/d azDNs{gc~!~̋5F fâ?#+E`E!McO}Yt }oE]!;.$.3,w9{v#qڹˠX!mFaeqCy $d{[ZZ>uHGǥ@rI^3mf^ʗQfg"5Yq0C WsⰳO6Æj)%!Ӏ^1*so ",_%l/F:ejkP, o\vcl SMO(ل_qIp}# ٘pq&*M==IUwxNrI v5RYMCuTj#} % q۽*ov*_'0G/Zu9qIpX>_X2Tʜ ͈Q(C$0[(WC3k l%FDv힥qR,iŠQiiP8ƙ@li oiae!pk6Nz@qB%ŊZOTozz$ >"huD[gjW|cT =s# 0nZߗu]jd"[ JdžwC*0PNc)fhgh/8*%R9ͫeU kVZ#O)1%,9aNA00>QHKەNh_wpHA Ӹߤ(Qg^. #LNпe dv%ZY0Lխ%%#e>D .Z-<#n} s%_GC_͑v{-SX;Qv"0"q%ZBlźBV.|}JTXlzZjK Q o9uEiz..G$jL$/ ȥJQ#]rIOlz_blVzb,2t%c89؛SnSk]t[BNŜݦ х C.w&DE]L>I)xa(HKBC}]66dKڊq8 uϑjor=XfKgebGګ=OjGeY H!W[ywNlh‏(~FШ)O3ߝT2@ uflNu 90i #0f 3ݦZsj[`Ӈ~+bu6 rCҶ'g 2FְVz,˱t1(QA["̷56=^IˣV Av̤A <עDg,0`}9ɀ;+2O`.?Z zr[Yjn%G_eBwd&޷!k, 0[Wͱ+U7ñv;2{+l6 BQtN7o \*7@q&O3ng2˴?׏`Dpge4#{PKN6 XUSB G}Bfw\9V93I/,[  y>πIE\k֧Ah=qy9ܷ' HR/DlSZ>Ƴ9&ԟ<\8o(Jg!ϥ*۹)Tk cgnzmu=*̾j|)b~'y!͘!ĆΏi9@@TlUÂDhSN uZCf GP4 PwcC"=a+1WOK@5\><}O8[J˨]I^I9ڀ)n#(yPQackZU cSp7/;kTܡwYdGQ |`l}L xTI\yl_Ogx]<6W_{@L5Z*WM/-?|>pfdBNFg>šiQQd5` t D$6[^Ҋ~I:G`EZ-^c43ʸ_׵Ƶ,(Bh66[|X欅Ru\%M;ȜZZet6H~Я] N G(P"jxWGtTA>q:d23걑QZӠޜ'K]|ѨPi:f,ejXP}B:`PM-utQ/< 2ĸ7+CK]G1da'87lSA\?;11̛~+d0&5b =Wf%i,ܢ @賘 X]E gp<Ѭ&+ A 8C>@c')/4Mu4u}-"\@ \obO[cB!0eN7:ói?"FFY[[ɢ{d93T᭹oY |aJ[є9U?޴_rPx#O/Lou+#P#bu,}!]Locʹw]]Xm :xG3G#le^:sJP|@挺<҂*Ի_Kh7Cu̬(mBH8dWJ#.-;gJ]+Ky>AD*P|zjgƨ}#%yʵO32'0JyoE˜` 0<,$iP¨FϺ%)1ө#(ksU $JZG5Wr:3ONC%g2S=D_(v'yB%I4m( eg'(h$1Z+ :{ Mm3:9p !JTo=!WasG?r/q1%U`xyIxo(,7u>^-3m~кʵSy;'RiӒ{|/2)Ye4V3:#gugaMїIUо /ŋ+Y(φL:Ji])T>)&P\sFv[g^DZ:ȪdK\=)Ox7i>_}\S18/g>tFP*%rkJo&h"D".뭀#Cyg@CcIOo]a\/lBYR(!#*ZqW?kpRh'ętuQCLpZ@'(N=,ZxkKTHBh׵I't:pJB8oDhbV6U4m. ^~ w VU]˕e0_!9WN]՛Lӧґ(jd*p&-U^ nG4q;]͚DFb(̏>`0GkeVpī;e2B9T/H+jmaCчLXBK}pT)b_AF=%! D5Ut!Pz/-NEu >vFyG7iô%.ⱗM7|"'W;wlJp/bHk^3icB/mrlqF0M,{f)FG>k1^keXI_~څ]pxɭ@0@wZv퀚 ϬX34rgym4 _;}mZcડjn'`O:opyfǬO+3g̞}zeֽ DZ 4fEOQ1dkʤbJ*ْ|}<`d={6߸6r[%zi׆$n8Z\84,!F#ݗ:ٻ/ހ+))D2,0. .LG cW;TzQP[NXJ+Wd"2Rzh%dsԌ^olb'^Rc(iDV+Tԭ2 SdѼrrܴ]mLYĎFCs۠6Q;fmȓt"%/Jh7z\D%ɷWݤ]^1qF؂U ~DE f-ǖQǺy8}Hb4k6 lHǨ{G*}-/Յg}9҈kKéݴ4=B!SXzW Kt?&zI.= = 4 )Gnhc N''%ilJ# 2H pITc^]Vp}esBr1["FE#f}G ~dE!ϞZkq2cQ.Hu1 ZpF5,R{W'{.ګ:k_ L+0̿9t6 17H4pJ!_5%ܪX`v$,$&rqvY;٘"a.MS,f0ru|VrEEM or ?vZ NgnN 6U醱Gw& u!$s^M\^e8|Eρ[R6!`Pf>^=^nٻE_/M3YLq\)ԖJWE!T~GALtɞ`:C([]WŦ4{cro(Q Hvsu!Ϝ؃F>W,u5 FC-d^E[ $Me[{cW +gAQy^WKZHwY^IE90O+$~ΰ{~e^H^#y 7O):,%×^uwۼOkdOn`Mp_eUwNG|EvEfbL^c$/*w-LOLHK͐As,PM_b;@VB{~!꩜* Lg֤f:WND( i[(kV].7J~fT_=a)9sy?$rcMTx#BP,5l:ҒB N>Z~Q@KЙC% F$`Y@A<%:w%U6~.6R;3h ΗU}B "`[<@м+?XvĚgr? pM@QeQF2:"1rf* yuT%nhqһGΈ[d~"Yke{a3yh f2J"Ǵ[,މ]$j;W'&egt`栀jd:<[rT2?<h.0 Nm XJ١Ip 8!Z!2|3 2 gb\M,\;PYF'Lɠ ɣ#!Y76cg=niJ۴$3;/K [AͰZhz"oDt[LTa㞷Vp:5PR#>#Ϗr.JK^>II7:pSsD왗,|Sz's5&A*P;خc;1cSX;C8Ŗ[j6,뜣H~4[#27;sPL(4E\|]zӘUѾv0,f÷ZI?[;wyq qOkY: Z!:˱1MtKnIXl?Πf$Qm^dPح8fiBOϱ A=@ҶMdV,S:'h=ҍ0Vu|e (ۅl[dk8 w/ZZ~3M؇ٝΊEGX͐m ?oFe]iUKv@pPb rn}oqP.},3HK`s[:v?6Xqg}A*pt;szؼjʟly:ni.4R.kNW ]ч7]:E/H4 ʄLkMXyQ@a4A?"l`M]*ybIU2/GEJ2 t(yeT8S_jY ظ1 x/+}U9[)5[GT"zyΦLP848/vAm٢6ڬ/;V(3|୦̲ ?"QD}85i #C&3FVD O+,{v=yDJm@WupM.{+X3 1 #=DH Is,WQwrw܃e8 ~vtq{CAMcVO< *\Xj 9Qry5~n$w <\[b`\efO\4 =Nz5kBqZ $ =WU]b@ 0!"(_C\[Mj3*yσg 2ρEUR1-txCI=?Iﺋ"e?B2S>AGp:~ВˋD8by/[X}.,h4#A+m)芄OqTNVKƷ?f!)BGwZ4jAN1*lHTbYD$QhǤU( $(*fhXʙ ǦТ+76+@j*}a=Jl?nl.1[>6ȣ[k6`$=Vg\u4U@ z0sal T}jkŜ&b_N3/1wLcawbo"d=>@{޷&@jk4Jp̓-[vujkP$32sHc*<}Zn9:Dn8<=(/u >lACeZ57[`Kɓ=!s ށ󕓛u/+ꉝviȋxJI)~,z‘6!1I*,K=M^gñ `CKkVYm}?aItov2  |>&~?ܓ&j#?V9.=*ࢤҮԖ`}/G1MhZ#|/{pM<i)RYou7%F#_]q2n_%L\6V/yZ(=eK>@/Jȣb EA<&XB><+eH.q9(8S*+q r+'x}z-(_%a 1@0 'H`#w/r ̧8<+)}7W`yGġ(/ ?/vezPq Uijl\T:p,~*1irACàI!CVSُ6~#:= B;|_~yOd[Yl*d@+XB ŖmpNj;3?f49sd?S[grZpEyqjZȄ .Nڷ9Mڬ{1P MnD^/"W` xP:toqnڹ${af5ha͹bky뿨Y2? .HdnޣW]WpəYEh1]iƒ$bJca_69HD !: `IV@ݺr߰CiB d*dCgF>*3Sd+(&t ?f1ᡕs]~OVqK,BBѺ&Tіe-;jV 2 obwRSÀM_Kʴ*zDp2}R$m="n ph~\A"q[h؁y*^ e]_y3GVa)y"nwG?AΉ+Z]F1~"@ޓb0afYjZk;-yxDt4~GzBBuMai^-\Ii~jko:)\ B K*T4ըF}֡ݦKq´S3{4PKnH=)Xsb!aSBl[[q ">3e\Cp|%.CʻP5EPa xv֓ ۞^3AWn\7zޒ8/Qz*& A9VIĮ+khRB,FO`RH24,|whY`'юMd}cVa+(H tiG:B NDPIzВTk Z$*;Bԗے;<5F40k s"݉ ?9 mc)|9P_͚ʽ߿{àV5~f_6bVE>KnBxKѹW3FsMhާbơq>fFhϒ"1ى8x"a0?< - 5#(`;A9禆K\[m%1P.IT̷Ӹ03o۱To\O-]u'$ɐ@hx#t)i4 U#x5Qa:|DҰS% Mc| GxY\#&f1lv1[^hXΓoqIiD90,VxYem=miyQDvoqtKlkJ&Ӻgߗ-f/?@{:II@ogzbtAy TqLyLmLxsWI.'j?Ac yB* qV,~9O q-Z?YI(aUSM(3ӷ7?:`?}tPY-߱dIndL8Dp * J?7Fg:LCj|Q`_hG bĮK`Z 1W;jsR/fҨO\RK! m +~j> JjMu:gqV] aW?x#C}hHT;}=/!3 ~;boo.88+ G#|fuH(&o!B3?2?uޞD 8BNB ]EȆ)beֽZVw̞HD::jy:‘KQ%[W v5ʱ ٴB.9tW W3}"T/lkaiUӹM"ζyϠʞx{3%# z< 0L( f0z`dU /8bJIQj>,KfFB@p!bzލrʕ+HrS[)50.9hݎMi׻Dܓobp>B8S1v`4P;KtQ!,ҨZD&Xz!P1fOVL'˿qfz,s`s6ǚؖ^LU8擘*n)CKEK(~ ֡ƪU@# yB:*]#bBnl?.FWaAľF8%yPvWs+&U`tv5[K,Z AgP. j'֒}*ˤ)Ljү5qS"`*QLIq/ lN&sM(u |3%Ӡeb,*#tXpBlQЈ&DF.Ot+zo86LD6+#5ɅSiIe`\v4R; Ƥpy! |\Q.)tlQ j- SQ";XUȡ/iD#>xڣ^goc7ׅScdƳ4ϵEgGq

z-PB! >-&]$h@2HVj:q;r:r+HM܂K8 F&O;֊BuY|ʗJ貟ȁdS"T$-oa['TםG\oc>gy;uʳ^&uʖ5bʯ,sBTg/EKh6|%f,DX_YR@A 5s><ȾaJEbi(ٶ2G߁))$؍/)L,Edtr`^y\p>.uFۨ\a@-)ZC6?⋞ẑL'8q).: 嘁hsig,?ddnxCy&$a!3{L;D/;|-PP7FV}T, oőd #(GQZ#YQn]R@D!-џVqE;!9 fP l U40RFI*@` A\i7Wsuѽ\W"ƟchdBR9ӹ|05sl+=b* c8.Rtp NIL /kYXvahm):  \ b##~7vq@wthTRy̧Qj6 3*|tq =Ya/CO4gDa?=5Z: 4C3@fga ִlCv9q2.NpSL5`pI,&c?m. @QNe|_5{$lfxHxGThcN^ʅvcbON}SdvW+%/λ4"޺)[FFԟTmdkѺqGHlѺM 8Uj> O+'|=;#%?JÈ 6w5ăE&V6+ɻ_W0Bqx;!|t צ ~ލfT3qPe[0ێגfʶpcwg@*SL~GkBp>,,&knMXx(kd AQ0%_&=H֚q?GL'ff1 ,{l͂(v]_R=RDq\`N.uHJ#k njh uR2\sSM^7`+©])x<'Z- Lmo5i(-]l5=WN@ϼg `P Z.3!eޒ kgc+u r@zyCu"C9L9ÜW)I.KBMU^/8cG@}`-P>\^VHg+f_GQN`/'u78 Rc9 -w%SrJm!x|kDP3H8WWYEۃo[5^,< <1e֮2-vsxU54_{?%[@bCzИC=S+{aMܜ%_i(AaJ~^mXM6/e<2Tj' -4qGui9lkUrt2JEn閙%G)|l7:d95[CT*X7K[d=6[}pyz>+?gJnZIrb^ Nto+mwc- fψYEBV5ט՛(9Ј@ V~1J. re.0rOAq6w[~>iy geN =,SV}Dov~ KpbZE|bݹ1~ \El}=揓a{QņJZ*oPJzɋ#"k]&Zk˷VJ5ha`7,6.*nwe5s1'G?;l)&j׊(t7 CUj6ְ@ ҮwˣA3*x4)zޓc[nXFnH/L2+B"}@ aB͆~~v. cm@bȧNp]f],/p|{G=ĥU Kf%[ѥ_K["(8gqV:Gp؈c+TsΛKtN2D'34}n 7hV+ofwP.ʦ]~zt'Bl^sϓլc=yc+D*9Nf^F1|r o>#Yaazٗuw̫kpO%>ӡ+8 Kan΀KLYX_7UQ$_M{P^8FBQbT'(@{nncmx ={Jiou&׉}HdxzAn-;^bw<^68ğy{^v=Dmy]1TֻZtRi5$XZAc!׹d;\@HC ۋ%%˭(o6r@};L R(6\Ȉ^qwΌ:WS)crk/4s݀hٜg!Y?qDFxw_l"wJ!0HŽ[|ٙTG}W^,k#WZ{%v^<v6hQ@.8(Zs`|œA:9Q =2P뱏dJTDntY\+ǟ]';[XbˢU,Uqgkď# .`x-y~]=EX*{fKY LרPV H@XrA=e/A[ X&MO*A!_t#Bq?9Ǻد++VYwA!"h"\|9^國U%7l9(ΏBXS~x6"7"6mހXX}]F4:00 ̐?PdN"i&8mVWBj#H!Njٲ}&Ykj5I',fϱ}P"LD{ Q2JdQzEogAl+[A/O/J~/p0JE H^@KьkRVt4KV]-8  !y1# =(Nv)(ͻ=W)NQYc.oSF(8ILPdOj:)QS^h< m"o>aBkr&ۺh:WsvZU=KpU=l;BiLQ\n9aFm܀ЙJuSpƶlL4Tҷ/ C#ZJ˘[^fgКw7?ϑMᨸlߍ|Օ#7Tmbت ЙʢG0M눀]y7.D;e Y"ޙ]q44'!w^@UDVQcgAP4>@Vʱ }Ւ#M<:x+*~,hu& * 75<~܅ξf~'/,muZ|K)O$?7$[<s]@!e{ҽqm8AA."J nj>Ղ7s$8P٩F3eBlN?p+R“R`Pÿ_*d}xyvv\&h,&$<"ׄ{~Z2[xb11=5HZǐh݅w0l]n/F~d^X UQl!(NZy|Lx ΤF65 E*SnY[9\ý\Wa#Z7E;]Ϭefd|TNၠ4pgIsGBbj|_~fH-SƣGƅ8dS=1ؤؓeOjJp1/& bl Nk8zX:U0m}jqVI?.I_=8z Usb#CeM5A FhDhS1x||t ߘ?Ht( .E^<; dl41 $Hl¡!J 6&=0Dg0Ӡ<7c6_ ֜80lR&m_Ouu.4ڨUj޺G2:N.f" y[AraoR xed_ ]ǹ4r-si96Hn#+kI;b06M*“VIBO#s@te#ˋ{9Î.8+ފJ jQ҄?0LԄ]&,y^'Lz?J^[RBjӢ{ 4jЍ H3.b4yj]b=t 2-delѠӖ3FƟdT  /E,0^0 HkK[?hogÆhzF23 F.*(Fl[Ijw->:"Ez)oѡX'?n"/ ^:˲8DMEonJ$0 2r@02 <1Ik8Et$'d񌫄@L]\QwMtTlSm33$;mOF oKS(J$CmeX2J9\~mhxٚѳ{aI·VVA7ͷ\P &kK<]hNQE5C/j\f3|`߫yâqEGmt%܅ǺUJ@Èe6n+׹@$t-^` Ng5S`TV^WV$rцfb_<*R$~ Bx[߽[ { 7lf.Ʊ(3QW 5죒C KT!S`}tJՇ4ǥOBK)Q`ENhPrp/WpP!® s zuGEee}+?$=նTa$#`6MK0b`ٟ0l㜨8SSd@نQu%0Fjt/H*๓s k KJ,(n.8hz'$"Iխi4AWWN{k?Uq)VZOev]C{Ɵ 5X-Y#F \jй-(>WcvqoeȬ!:"12x4ǫuO+1qb \ߙB% cP7RX|=!Vg@4APV }<ף,Z` }җ#=S(c/IpM^ N28Jr2-."J"?_>Ah-O9*u]('rͲ[$i?Xͫů<&b{.Usi -1'[ɎO+P~+xkdڧ?AT*=ؾd}>Uߟ# PkV$ dt8o-e[m{5^ۧ rIWJ;X˾! -oIڶ"+FÿPS@ XVno\2@IT|ibGc\wGw#1NL5V4- !8L+^K_уﻻ%kޥʩoi+E0QP XyGUܰ e\hj If)A(^`ú0a_#5;!C/sue,Y@D-▦u`jK#"‹{"?y"3 9Y g@)@o0eG btKkxX,K/G2"s%ʄݹ(F_&2ۥgvS8WhfNPa%3y,P6c¥Z>hxQ%U::D2` }ňyC׸4m2O<>uv*G+) Z; |?Vl{TCPD*%cDhŅ/xe'#GLæS|kQp푖()OmZGl>6g2uHucVwgWlظgC^P6Ej$p):NJݥD o0InjOF5 zx,ԟF:ɊdӦD#Sjt}inHˣdZw-sGӮ'G>u%mˉg+ɟ@}C 8UBM4"U2++q)ʀڎQ{7!5=| lUL:xb,bﶈ RꕔM>gPu=T;^68h5)h7PkRuM6(N:YWeR+U']no/ݎe LdÊcIfZ&_ᵗ_2?;"[\(εAPfv"7m;<*CU,:Sc@4<% fZ7!`Yq?um6r|TaVs_ XhެɎ"{d@Slc] IZ B7ʜW?ݔ?U fQ+7>|[@bACRG(^vU<+F7Y1z[;cba^D5H(jҙK/s91N?F\xUsd۸POx 1FH@y䮍r7ݪw4i<ŕ3*-h\oB9=BciBZi~"4+N:Cr~TG`.< PW[l@S?(-mM482<3L[x=0"浙8ЊمE?A#dWI[(dbCGB[O8N^9b1':vpBnym\Lvy2.V~Y˂ϙ9gBi-,4וȨ}`Kv%@HD9Jo !o{s7 y;zԇW["LF0ѩxl(rpDr'v.#=ef[喴ƳR.q+ˍFT=q{pA߯PEvYrK! Amiס/U5Ro* {tV[9 |":4Rtx[%&[ѫ|M_6>?SG<qWu7N=FiHVWHqjDY'1h&᩿!ڱ \Đ.禧Nek}WbNE4$xeNGRcZ!OfSm}HXܮRV Q]?8tb*v;gZ W#@BOa)_v(V#=:Q)qwKؕ2VjwEkþ޼c6gm!Un~KDD=-uV_Z=݃e8sY8B&5)!ف=,϶.d韉 A蘐{1)Å~Q3B["‘̙Зy*%8)KDxoC;MMLNw\ lUBɺ:< ^twk)oty%[")_19ԙ9aDƺ]lIh6Xyt2B[O ~uG aS(`?QdHѝW@5)jCQa'$HIqICƄ{#g}p :x8HsP_gn,xwO?L x?W%y(=L XD=ODxZX/>@ƲFڋ iз3*W7n.嘞I~ yt ЀXtP2=>WFGRQ&t:ڞ(wEs5 Q79Be_fR4yatWB9$H x36K֥*mߺIw%1֞qt8;&+љ_y)و#Jvhs,;34-e z+ G*>pFR!iEI IS @Ȣ8:rd ܡ-gKKMZ b@1Ű?U^KBe Dtڶ 27ֆž]oY\-ƺ%VQN姀/|ȓK.SUMsɭAߠQAb`UK-nSU?L\Ăq9bٓAZemh: ox!+/ Q rxWY@;(Ж36|XP&@Trw6:vBԲ7<࠿i2wнnE>֒S ͎FA!cfzHe2Mx0VKɹYbGz|G)mϘݕ)dАRv˛#6Op Li7 D|[IC?@amڠ2O+B1yY#;Un3WuJ‘U4(VU](tA5g; &cb%Od!Ĥ2Ȭ;1,0!_EQ3a-{ᢌ:fY B* Zׅ[Nu>%ZҘbA8S#"Fr]`'ſz<ʊ! ?EoqǾOu.3k~{>>xUʋ U ͸kI"&3e6GmX_#HpݰV14.>"wT=ݹ:0S0ypRe=_/361 pe%kCV|羳P0>a21sέ7Px|y&v9 pqd gzxӧ}0Jyt,ԗq4Kk"1iI1İT}-:? 'T1Bu1`9"Yw5_b^xV] El5ovӕgL2"9iڏDC!5:-H6޿neH.iI eZjNٳvڤ^w$WoG)r)&U(銍ӫ@0- #xJ/0\v\SBHa`$_9W+# $PI'VhTU"mz3y PLj?T'·iFmjӑkFklf=[q_|j>9uDxH21۹3Ī14Bz]_S`[*龍Ed[R=U75oksL<@unG7 K7j{/vP.ۚzsFt GR7}:*v% HvWfen\PzU[%&T5b ;%3K=*Nt5Oc3t*лju59)!XTH-b |E^CxVU6qx v*[,+>(' &nf>aكNȝoV76;&KЊjZdj:p{](ŷ)uQ?FW%d~~BMFP\0\w]Ɓ'? -sCqh)ԐY-{2,&7@ǝQU4?#v f^jМfLe#Eh-vj6ߜ`(:j:89d6pcxu7 v&3<>; k+|Ag0GN)EhHĨ ܌ßs8 6T0vflݵ5?{j $Gf[spB̰TfYýJmh)ŘSO]rY?1Åܰ^LqdԪ&sWFXd0(q_o't>w"J';%[G;!ܜ\2BiFZ̳SO=^> A(;Qkkxl{]Ys Oz[$UsyB:E5$!ּ91>謮)`hBjղER38mZA&&TJSi}h%;ŏuoN*-95vrXB0<^d ]oVe[R2 Ttp5Z -Y_`-e/|̼9310Kcq4NE|EMZKgyadi($#w3XCzc? رtAZr-0Aq$ "ӄ8ʦA\א]u=f7vz6ɞ b}>a[KA C.~G3=y#&ԇ`=-7,m!^/̞>a׬NٲڥeݙRK&q y]1HR7+IböU|)'걱5yy =H42Hej=+OVM娫/$3RJ&OyXbH\ aH? oQϒDnp+oo_i͗& vq &l 6dό~eF1WHT;=d:lަ ATuhTt}xZHEKLPHV{‘?Ou񜰷]y٩z4C\p#&=Zmzr9t:ؤ&4o!#~[ v/O˖7nMxhDNw\*mTWWťrvq!ѳ7|ҍꐺD/ \MҐ̈n ģOF&@ X L5`1I__CyNpaEB#3)ߠJA L_SrhM U[# g~U! "a Kd7Qbr6wJ V^?4K,/FzJL@Z28H[VWӸ){p%cJE *S,_bIjIG,l|OIG'M ?D=xa (!Gq6&%jR' 5T؆Ҳ oz&x.rÿPÖ}Z:#ٔI! ҜVIDkΜ\Uh+ڣ#F AuYM^"4Xbݬ:s7,2U(1RhQi{ˆ+tvɗ Պ6%$ogj1* Вykw?{$S J?ŪdI+( bh3Qx!ۅKg3oH'ӁZ~Aܩ}vl(I="1('c>Mײ@6 K[[G/l͆,p+W3ab,#BjN`Zܣhm`؃fsWԣcDP`AZ/25KE^$!o6^KLe ` 54WzEEuUi. H.EOq%i)M?SӶ!+Q]6_/@2uy=Pn$+_θ/BVn"+ڝDR:elQts>ΐs4 M^X]fv v(+hteCC,}E Bqi{} I z2>*hX͑+Un35kFAA-Ol?zgC 2̱hGpLZx9D{p䢢fX$"V9(Ww&%]F];)qC|&5$ J(ff1l"f`ɱ/!Vу\` s=KYt= ܶ@2H,KhbBNW?Ni8UC__!1CqNbU?V~"2M\'xź1A] Ϩfց8k=WB@;l Gb3elWifؕU!y|v$m̰ME8Ef5Fc6ka;-z-.sL/PR~u(b|z1"Ŷ # ?yϣR$1'2 Yǝ݀Jw؁^R hx~y1iˠ]܉ fhصҢ' "Bʪh]ntO @(U?QO\M`xHFximT]|*&`}oŬܥ'vn2Q 4[\Ά+Y yC~l'%|rU-`p궭[ ٱ׎$@M&oS!b_ \g'4iX _0V~[03k_R$dU8@ϸV%l A) ?>]d7bl}{1z&涚~x|x%ː|=F1;"u$!7`j)\I+ծ͈_,s}K o=SHpuVnA#/ 5O0 =Ve1|eD92Kim{,]2}Wz@H}/c8tuV@U]mt֚ϬUޕ\ݷZ*OJ.PDKS%98S{xlq"*_LV9PzJ&sm8ڃ3=\u7qYW?eIWO^Ny!C<"ȫR !VA:3r)F>&<.V$xsՋ1ǽ+YO櫨7",Ċ)/(t _L9r^Z Z8Q38gϏ\xS<$1nc LGgSLkSce Ѭ%c[~yUy` YqQ]Zc8N|Lˈ8WYk^lER$y)gB"1o42-s+Vuy%ꇨdPGfl iih3 my  ̳2Lfp&Ĉ:J ¢5WVS:@JC:"Ût4drͩGNXua?˟.}~ &rg!wgԒkJ'r{%XgNcmlh1L&J*ih Թ}ZDy. V1kB 1ދ  2tEJ\|Ly.Bv75ty FaFŎՅZDy|9yebNP<'B w bXr -|.AotIG.JpyO޹`ZYP#$d  屎oLQMsFh~ckr_`o:C,5}3b~!hZln)8sR-ՠjE_^ Gr,س~XxYcH [;sI$Qx}%U`,t_D9+AB%0SJZofw0f&Igt1"`iKm[’f}\v j;;3*Z3bFk:ޯQT\5ٷt còw?~ZĿ*Ѡw]R8|5o3d!]`=VsʂW]/OcZi ^m7X_洨v)Z4vb13Ok^+? Vu(]!}xFL=dτ8r=|KpxŨ?J톻LkYg(Y YG% _r8gQL=_Pщ=uZNd-.c;eJߒ*Ҹ+q6g+=N)BɎVN.͝GGvi43Z%冿ӎ?׌?89Sfq.%Wra =G0sä쾠TY? f;j i|R$ CMKiܬx;A9} 'e|Mi^!O 1ìPE-&3ƚOg^qV/o8a)΁^@ن3i^xuf%PTfeg"S9޴5Oٍi*uxhT3MK! l<&U-%P C{t9_ XyJa\2"6ʮ.#r܇cf)->m-"J9K Jy%BSp]6Gyh/yo8{LٯV͞o r.s0 X`:gMW!F["QZw#a`԰іrqՐtNB!ܲ˱ Qn Ϫ=T ޶SAp3DˎMB:tRsѯRLmFuFO) BEѡOf#veш|D6 iCSĝZBՅYwA~%?60xьB#Z! cK"STxw{.Vr<~q{ղ[q3Ydl;C.Y:j0K.dl2n$7סg7VcңЫXB(~ȯꌏeҘDú C z-U7޷I gVe6kN>H1sBӾoMԤMSU(=IvH GHS[(e 'u RxGғMmxѩWMT ockpAr7ϝZ΂Udu0\(*;ЦYK_/61૾5p҂3plS-рddƵm տ35EsQ#3|y¨q/h{zڄ9??QZgJVjV;}JT*8ȣXzs2!Q=@"7E:&( zP4o&F˅Γ^qMMˤg*;< <դ*[M/\pQ#)^EŴ1 ;`۩u"2*'gC_JmXwT$ Ax,y fr2vb$\Ux&G!jXK!ƖߚMXU?OH 2!*_ԞPst7"5=b94T->h.涨zDuZ3@pNJ}`بCD ᱭvRif"tRbd`t At A A玞OIc[;;7'F/Qo0K .>90@螙<\ $čc7ϒ%>܀]C.^' i;"A$KRb'u}8OrV|}>{|[_VD5$(> mY3)P&0{V25e=']` =ם*9FAx} S K &Ki YZ