parallel-netcdf-openmpi3-devel-1.7.0-bp155.2.15 >  A dkMI%z OoOӏx{oG\RPE(a=@ϾyĈ"bGjBG}.DEٹTZ$y5$gsg} &AŌ6q`;41Dł _&`x/SMĪ܂?VC=F:IozUftioI2>FG7*GR+/`[bq{ (͠Q;Ke@<鬴A޹>=܈ aHzhvc/ hc)Z/iur]bh#(dZ ]eД=(Y0U(z`@%[%p84daf68131dabec156e3894863004852d930f360273d496a62d6a845056ab64ea88eb986412f0517db139929cb5756a3be4c2b10;dkMI%z h_kB.Kc~mop$7z +Z=jv)@D2B&,8>MQisB߹Bw6),"8gun"ds\. vak>ƫU/IBEF]4}~uG?U vMpWV5TKsE7%HC%02LZ:<]N2T |Wql/Bp;:WL8kƏ\w3M qzΥyW^~pEfn`3}5uJqd1IƗ4?Z3o2$1_MAv;sB$ ږʭ<|~uR^lN(EвqN۶ ?A&Z hEKF=ؔ_>R`7O' E6EMLwly _4M< hvָot~Bս7p9)N8(ݚV>F|e 9#+7nFat&w#pzaeD6 >p;?d!' 2 jx| 06@X d p   <p(8 9 : F9GPHhIXY\]^bc-defluvzP`djCparallel-netcdf-openmpi3-devel1.7.0bp155.2.15Development files for parallel-netcdf-openmpi3-openmpi3NetCDF 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 openmpi3 version of PnetCDF.dkM~old-cirrus2 SUSE Linux Enterprise 15 SP5openSUSENetCDFhttps://bugs.opensuse.orgDevelopment/Libraries/Parallelhttp://cucis.ece.northwestern.edu/projects/PnetCDF/index.htmllinuxx86_64+kvFkdkM{dkMzdkM{dkM{dkM{dkMz5c6c42b49161fdecdb0c58319a52dd4dff042aefe7a5a62193afc0674647d4c34b7f0c3777e5f75e4bb0e2cd6cb4b57f35530cf1dc84288599044a03f6b25b4884656549af62fb5b2451e399008a90235e03d2dbfa5083b4b26bf927f45148cff4bb2affdacb95839b9dea8c22009ac79bc782b3adc1131ed34f06dec9d4700a15e9b9122a0f4342362f89cde95f2657169333802f39d5cb8f1a6f08412aeecclibpnetcdf.so.1.7.0rootrootrootrootrootrootrootrootrootrootrootrootparallel-netcdf-openmpi3-1.7.0-bp155.2.15.src.rpmparallel-netcdf-openmpi3-develparallel-netcdf-openmpi3-devel(x86-64)    libpnetcdf1-openmpi3openmpi3-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 nameold-cirrus2 16847537901.7.0-bp155.2.151.7.0-bp155.2.15pnetcdfpnetcdf.hpnetcdf.incpnetcdf.modlibpnetcdf.sopnetcdf.pc/usr/lib64/mpi/gcc/openmpi3/include//usr/lib64/mpi/gcc/openmpi3/lib64//usr/lib64/mpi/gcc/openmpi3/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:openmpi3cpioxz5x86_64-suse-linuxC++ source, ASCII textC source, ASCII textASCII textASCII text (gzip compressed data, from Unix)pkgconfig file5h:!3Iutf-8ce20ccebc0e727ae2ce6f8524a4ded9a656a3b34d8a6e4506a1f9a5bb4b76c01?P7zXZ !t/] crv(vX0ٱLfYG}Hh~Px6au8c |$(p$PV|yT7Ͽ E볛Ij>aKoUNfQA>儤9%YX@>j͌FeA*{̬/Xߪ|Atˌu6`Lv꺱Bsgg}.Zb8I C P[{NYlb{;4w\ ^ gu @1чRl^ kmH2e IuQ쫪+$ӿ!n1va.!(U&;A1/y 4gqi=!e>T|U {N-`5X @uP=(s@$5fps:R~SLD4gɔsFjaqKY/09]$ qug}Xl7f Pxf;>DZhHv(4Zq܂FJ1O2/JȆ|68cTDf"C(*ʛ`3`:]3_+.s lsDϧ7$c;n f}厝!QBCky yr7 Rv/dmk.;`(EoK* n u"֖ТpX`%~-xf6 (~lQ2e2譝Uth70Ľ"T1OkgwsJD!{3O]IRR%;̆f^􍐏#Mz˧xK%C}t{ ՗> \RVZV]:YZ6v66". S-< $:uR߭pnCBCC%6'F>WS~{R*`p`+:9d"ɼX5܀_ʩ%,^'t`1u|oM(Fnk"lCːZ'zCQe Q R SP@'6ucԳ c4ixdGƲ| ?]ٿЗ/B{k,WzYC<ݦT &|i$Je1lJ428VNu= ºxm.+fVtM;et 8YRY,-"A5nQ]ͧ $u^]n**]2k/Z~fH< +MrO NmW6T䴍X|~JB4 GID6 &!BSagpXJ#tJvGU3l*Z KgS b9S'KUM[9eCnD;W MJ)OGbzrۓITB#L!) [v/!paq{Yyφ{XQ2W L/?unpz8ËJ=McE>=adLLDILn3"6yU/v%^{3^)گI\6d\{ MS7D> ]#8!@ݘuE=^|O4In ]nt B^mgwIU1e"f9[2bR \PG?AԯoFf"Ag?X:<Bml1KZ9s$Kf#D =H3ϔL*uDHѺ9Pj g_l[a/J[$^5KxZhJѯ:AH(QK|$64>^ r܋H5U_XevG*&t *rc^dG߇/ @*oi#ykPtPOglj74m~;òD<6#XHX6k&#i9!r+9 L3̢7\vas-(qSUĬy@c&K{ZЄ*& RIU Fu@MK1t8IyWUr]Ԁqւe#0-+1~s7;ݻ'gMy z E'GeVzNs J#c&dk\$кU8Zv9#s}ݐVL\'nՙ̷?"ZӹSjerHL>aSO tWlq e驳d[>|Ɗr2Ԥ~F'o)ףUi|ϯNd؄ɛ4ϸ nmEQ;#(Ϲfy~r *;lKh"b/ lI-`ʄͼf Z#ý_j8}#-Sﴥ Ia[)<@X }L^f ս_PF<{)DNC`D7\ǀ6Wid-yivl$'4qd 88*.r\:JF} \/DETŴRq[7Q'0zWˆ"ge)nFF|ExXF M0hqA;V Y-?;I+ pF )oS$.h`33- @%Pܡ 1Ah (<9n=;B_ s v+U^XH۷q;kG|= ]HWәHl'&bszPǓ ococʆ`B\ޛJ;}*_r4w{,QHa)9WjH+LvR;.B`lF YvFx= l> 1IhdԤ*2=C0CMYwGܥ>^I+u#iIa ^%kTܭ i}ƏbxDXY2KF^24! onx4^ 2FR]T6g>I >9?*pYӦ?JKm's@p!ڇ8_ˌ\1ň j]/LRJ{IyE7SRw.ꩻˁ lH;'gǞXV~9GE{ˀȚ*",-o~@uG,H f ʒ sʈ6*WtGa17/bo{ӷ<]ixRك9{=9|xcw$q?2YGCaf|0Vy-dg= ) HNB}?coc."+L; .+BN:L/icfg"Rlmq̷M"+~vWEt}S?Rr Qզ?r6" 5-HM*AJ++lu?-޼& ]T iue$uY4?Yjh+AGiu`^aU+}%$A%yVܿvP2HC3V KYP6I@ƀ//VOT{{9i-l"%fr-ag*M[*ּۤg$tჸquԳ/0~+i ]=Nݼdo_mxӾM4T 86y>{zW٪˓}z`,5d6ckc7Bi7fbv7hӞي-9φO% i w\VUbb\BUN`[ԍ\%4=oN\!W"jӕy3u{d(mM2m: (Nm4g 'tCS`34N m`qol~? .Aτ=2e쳫dT Hý|6m`؃|i evkN0ϖ80yu@&]Ŵ[/?9l${rp⧉R} 믿Pյъy59+ AI'c*9f*$h^z )g4Ie "we %bWoKt E:^쟃>2 z9=/{Ņu7#w4D^Gu yA<<DŽwϳ?Hl3e<'qC 8.rxL9!5P֫ceX|̻ i#Rd&3봾 a &'crT,{2[AEu f3ImUTA]I;HBհc'xOzu<\H||J$c թI?ܽݸ1L*V-U| t~Cebb )|:Q`ՉL!م@~ 9T-nNg Xe-5% #i5: Du*Z]Ce^nGH,1~b#+ ΅.Be`iR:[3C}9 |ZW]ߋ au8y?=+،١1q}V'fҹۉLg;hwE2&5Abڪ+_V9d6omNFogp9!jCօh+ۦv|zŪ4n˻ %\̞åUײ{}lh4qQ&JЮ;`LOh%rp_iٞ(&2 ZGOOT4K  7୿s\8 u̅Y>zrT  |QU vL/hĦ`I_y&_s1 1@{%fJqZE Z8[~0q|J7EZqM/ahi9'y^!̝H%_.)t< CɾgR!BjE>AP8;V!ӥ"+)%yo ѷPc#c2naFNrԵ'b&xoy <> ̮!%uKt+nǍ{[{]U'MUJ0Q&}~t)+슎xȖ8͔ yBR4q\w]]n|bx$ڵB4:/F||X_{ -]vpߦ8| M@] ҩ*K{/X'((q( UL> _7FDC#yκWۢN*Kb2X"n Mq9i|6o]A*Ueq +։(HIj$ɮY ?GF6=w3t{|x6`&THQHqTm!BP?sI0aɊjk0g蠄Q]5Ey&`QoC՝gPd]~?jݾbBDT̀;32hEEu avow2<Rn@F.$ {Kw5)C?h/zFrD=Cj_*SHz13 ,^SM*i?شcZdݶs~8wb`+mf?nxd}e@aid,)̃E%?Z\8)nm1HR|7{ߥ%U_,d֥4M~m<_}%Ea~Eh[ ^M3cB7뮥W.e11#Lh:e/[=D=%(EsVMK,}6T{ؚ/]sS}ndZ?b nPL+;s@B`x݇\aCkLHÄ]@aIPAu"M\jl]Ww9YL+W`%*PX"ox 7[ !&b58Y*a9pSm`-jZF>dЊpG隦M@j陌UBkFM##A]:hAO䯰B⃪N%jF Y9%FJ}4|n0j)h!#UrIm/5nOt78#/jr zG&l$4So/͡Ոzy қ7#ŶK,r i_E*p"W1k~QIGL-gu:j:Ŷ {p]9S!&'wdуNZ}:|:EH B3nfSۃY.)Ėń6$kc>q=!'jCnH&ZG]Amr25 n> F8rG@,Gx^f{keKoX Uh2)B77 Voč}IXJ}^]m!MaJi[8!\ߘl>BO"/ fԧɟ%W4/4F Rd} J~jť\3٥txIa>6CLMaFq_]r R2jp+ }ТН̛N-5h9rո$oᝋ$[i]3dV.W8!~#vzJ%[!X %2hܹE 8wI wL%IbSrxr&  )/vd&gP}E⢂9E'Q\PM^/@j;f4= n W1j38O᥾_fF b \a\JE9-Q?Ϲ`?sJόdaU%/JgY0-Ӌk=5;Q`-щ;Jur|)~IT'n_nz%JRl5!QJ@ ̈6vi(~':?;E73HƋƺ@L1v )糨;^&F `gGW&4h o_(K3/c ^4 !Wb] YP'XK.`m-Z qSW7S3r~s#U>KMsbȑ3:-2G.s!du!<5]BsHGnʷ|c-Njא/_t+ts# { ]gJ|{a)¸tt ݹZiV5Ih*hP0= es/ ar@,` Y0zp0{ YIt_bսd _-L<4 =$.?1]6aNEGWk[;ԧFΚX- j)_kacxIy$*پdMپy_&:,uo H^-2T€FAV pUT@Ǐ ~= $*0_yN倒Va7@gHeƷ6jY/5s[''`h'_*Q뻂3s"Ky|W hq'\vGUnܞ"7< *eB1ėy LOSx_)bv"5_KXmIE`DH#(l 䮬-^ݥAxBӲhQh#ڋk_1ݨH +pPAjYg/ X)j=-q7Whlظ2Ƭ\6#:ICAM7t|E:Qzx -1wiYX7{'~,]S` P"G @ hۼ(me'XCѣT~4!5=3iV"]R *~kfiTmG)ޘLlʵ>PteA<^JQMTh=/\7˦ˬF:tFmg CqXn]<qҁ ӑwx^Os%~lRM+)k2̍kɦ+Z^S]lZX˱`]q _E=\z5 s7R-]aM:??k>2rYZCOx ]i.&A*CdfsOo0ЛeyK&<(دߵnFE 'U[zd o(.4EnaVv֍ؙ6rG $p𥉉s/z#ht$4?|ΧA顠fB,G-?5c &lOfu)%P_N8-ƋS~-PKc7Cx7yFd%%6R7S}+w 70UhNNv߀VM%_hf$ڱnwWM5]]<Ay~ALGĸbx"]ʗSE@VMye{]p CԂe@Ԙ=F +SQK#9{>jA">$QVQItFa㳦z]w\^2eA'%`  No*lIsc뀝F棖JA@\k $zW>:J}hɁhyVeN^h[[7cʒ PL|K`+vj?2fgL=ZIDB.S%|S6uI0e!ח3qFot<6a,d C5ggC %/ _u,]mKIP|(Wm/6'm i|e0KGm*ʊa6g$^{2i l3s~H@|xa]~8>g_ew TǤ&H9amy_i:Sn%HUsg}0<5^x^](ounƈSJ?/ `V3.Gqe?[*mVVLU͓[i~K7"Id=8LǿW cLmuoJN>`%nh-sDa(KKk7f:>, A##VR (CDէl`ш~Y<}![LU|n?6~YC_BdګO5tsec=~'oiM~G ~|eԞJWe*  VOqfM\9F Ny0':ȖrWl4[{\_4H\½ bbO^JՋqgzu UiYrv(lY+zfHTi8+85\sSp[^CIvN 7ÌGH4YڿeY2eE(l~#PGOVt!y8]p_P1*܃1CNOX2;=6c_D/mY%7wv1 \Ę b-,ώ\[q(!T#jJ kF<ޕ zUz E6ѻt@e8ٛB%%7pQ 1Aa娵w2OӔ`qKorpS?֭D/?"35(7λ̒.Ţ0'(b#G˸A->F]ٳ ¸U 3(HPx]d "y;쟓Pb[Z;fapɘ-ЖW:$Wc(c\lMb{Lrd]9biwӂH8L59׮t1+jv8NyM|j=lEdqJ+%2_'Pf#N_>\.^+m: ͖O]cM}o< ɬ.t lS7S.] l!N8K*: 7\OylI{~B!~&uR0ˏtU?FmVC!?$r!Bc th㽔<~ɋ >P@ e=f˗RUOVpmcAdqKJn-S騧_O=i\\'D[V Ԝ.ǷAQ67{04B!ZC!6OCYtoͬI^9̯NPۭd,Q\,QSDfbD\uO ?NF 0@7c* ӹ a*F@ᙠ":(sDR6O/Lrϫ~mLʄo UaV+T>n1}7FI^3n̾=4rT@ "78hZ1TS#i*04րUqMYWƯhwkob Flw|1W DĈ`1LD5䱬:nX m4n5kTmjҭX+ ^iHYdH$pMKs% gy\ȳVD[YR']V!Vay{sſsZa?Np-G;S.&lKCIdI{3/p!׫,-UğZ9zH0@҈ZmMNb5?6\uo kp|ZIj843n&2ڐ:;ȤJbU\Ip}΁њWY{PbCk zZDy| F[Bv}d P;G# 0N:YbWNP.&*aũʟuI'o$״0ѴO{dQn{{tIKQmaɳP2VZ"1GR $̡i(>&zQG{?Kfjh{>) P]{Rzs)\; ʍui<}+ir,'4VcրV:3 "J&LT L1DYy*1%ڷ`=6c&9&n @_xetP?+x} κ*58 1Ǭ,%78u:0@T^It~P_puN%u[}ZۨCA@؋V? M5}Ok<0Cs[-ָ[Oy$2bHp^tfk -X(V4먍p˺HfyKyuU $ocnPs:27HȨWσf`~YXn9Ak< Lx_8'oRkvuL%Y}qz*T00*ݽPN*jP,Th{2Gj*"82m]dUpŻK1krʊzu 򉈩 VxSľ3 tz)킎 /M4{6v[|@9Tп'p]=,"YYyo(#;vq$G¢1>%M(~Μ4ysXIs?v^g^e> D`J`9\w{ =C?!>(*$[Xx{5)? * 0>p`b |vc\Y9Gӫ~E&!֢%mׅIfpw's:!"`YAwDs%h(~J䷕D *RWq~pڰ5Ji΀L,RUmyWmD!hnK0Mm7?Т2h&Cxڦ!w.yS[pu`anSRxkob韃ɫ ,Y#:KYp?vwa?|(F7B1XRrplw[<<e{X<(fᢀ#OAAk|xx [裘&PSppvJdfT,UCb/ d_DT.7OlEeO֔;^x2[lw-*K;xXBnQ.t;5 `l!wUsP+^jZ )*m|Dx|,=cJ"rM?cu(}aCS^tťS%tcZ̝Uk ;W[ 5<Ɍ"byPT0ۦ٭wxSd| ' fYainl *i`;%5=JyiI_pR\?tFG*CL1>B{39}.!=T y=242Z04m䔗ySYțs[V;ł%b7ȻsB$ƫH).K(?jᗥ QNti(gQ5'pAŐCҠUU1u=ZQ b ]|N 8UvX;,*C.>kݮ>[Ԕ kxI*IL?wBp]%څƘQ 2 .an%2qeKY>`w|rRFN)U|vJNcA>g۠hE?S8gQ3*(e5U ݽEG:r+C<89c\\r Q̞ȝthCPR?@/"}^ŋ&|a8J>Fݻn04؀F?rKkw #U3bٜ,t'^Ϡ.?24BV*kSY@$-4Qu*(VnjנbMM_F|ٴҳL7_=U7JOиJwm 87byi[XJ,Wc"X]pw-6N)M{9׫,$,7O:fJؖ/bX8,lԇN|/(IB̢+Gj)?,&M : Zqҡ':}cB5\Ztb퟇y|Jb \n^ Y<+pf)}kï ߎPFwԵ\gqROfFEuɷ|"`^q`1jK@082 `T342G4IQhK T{z|Yf$5HױT\߀~;?FDTƝ(G!-iljEbgO'yWzUљ?(u]Ϡ2'<^\qk%zpU: ST tUWbC TӤIۉA ӉE@Y}vgM`'v-P=Tj09i0Av"x) 5V[u8fz)Wdb4PsGY\s |36~GCe  *CSsN& b-:z9 V!m ܆b$I--C-dn~R4eG'6W5Rr ʫ˙* z7]UuÓkD%[ajcԶd+Glc4l/?ٗyt]4_E/#P9yw>'}{L`A 6P2 ot(_xFDl&v&3b&U;OY'N+9ZetĊtse>AT|~ik}wr`)\þ]og%GOX $ sQa)~<Τ0'Q{{ޯ!WJpL|(>t`2ؗC,-eO)}[$+ox |>8)_VVSmlm()}ִb7^fhvGT R)uc=I0cle6& We~[lk= BR xO-ؿօ;>b]imȊ"q큓Sè@K@rYt|)N9+:zCvB}+.qU9cI{][ߍЛ؜WR]CKfRrfᔼQ#/{ ] 臀%5W ;nveH$Z֊e}c~֝T#L}@F?Qӊ|ͲSGyMdA֋S蟼?bD Av )l/gBrD;ᔇ8t-t65ܬP0X?dr\ךY [Y|)Elχw> U(۫7:qBa?>_AÇ6 д+8PmdŤk<~RN0 Z"Xeq opnv&)'|TշQ1:cD9JC3Z[W; 7L/[ohx}~X~%Ƞ`^c;MjTiOÉuQ~_[X-QT] NRn辴En6h&ʚŒ1k]X+۸Q! #QFMlb5paَ/l~xd\zXI-+L~ khoA3 'yuK #K,;8eɅTb)OTdHĹM ?{Ť◳bц)PT؎7mdJK*8^1IRe?dN p"D%$22K3`} X ċLqgk4{/k+]?Sj坒 *R~wgiD'-EC?3H>,mIZ_H&-i-Y#@16Fۼw/j \"8F+ms!5u-V^g!o-5i]@S][a :D(趩Aqmʢ dQ.˫qL"YsN,3C{}o %akXɞYZ ~@% tOR#L; %ٶIhЇNt?+b-+J\=샺t`3^zD~Am~Hp*ja6 B36YT1#;M&Y9Q~ 2fAv?)南dP$,ֽ*+>㉁KgoڃC3Fh8=_#ƣ/XmgјM(l\F wNi~m][pb<& 3aW 2  i+qW i#Ǻp]A{吗q$i"!{>1v#z~Q^ 膛 YfׁNSETl7A,!mM4zμҠ3SY2a'v~9G Ak93B}3 eA#;C'Ž?Qc [\$4}PE2`U$)&`2#ՇZ8 70+_uuv8Gp'>h98Y|w-GsDӫ2Лck+Umg|Y^U]73.zMynk۴9.2jh.5J{(4$5vyv!ʾ5xvfV^+X 0QhY%"g*Gz Bn^3 Bϸ=CXd;j~0t¤(#!Xşn!H-|W^:&U&R:8-'/L&7m 6QS7G b%ܓQKFzR;:X=A3T;YyTrK4Lz1CJ:D*ؗWOWeKYYjEd`׺薨jZ&\özsಔSeB(@oV3S8'Hꬣ^BNK?&#!CGT1֪<^F$SXJBzCJ1ZXlTz*P*6l!VWAla]x L6Fh^yKvH,Yzt;&QɍM@c6- r{.2,@bX #0_TXjhn+"+ɕ ^yoź(YNܯlYL"xEg.#Urׯ|jEeW yIH\'` ח>[K6Qк/,yPTNI-roBw /M^H+C` GX}o?,idȘEs [dwWӘ mhᵽ8ж.ԍ g8+{W%vxz4ӂ/ F}Zb* ˕ 5OHrqOX'n.2 'lmwP^! :KoA[d1 .x2Ly IVpa!}Up󗀥W(>a0(۩qؖ. "a;fB>QsU"cy7gc10/} !ZpY2֎UNZt;=* (S[>)ӎ6V<74~eiXDjǧ4*qf žxYOCn`sogE *8G4m՝JaJ',?2vK$jƪf(b;hg׶Ebs; Kyp=q( >e]H9y41G&F|xirs+Vr$W~*U};"b FXwzoZxܷc+F+Q rT2"`t*='rB̎dpu2t8ŚJt8Qz}~܊'JA mv[ ̝jwyfcjwqY>?[iY5- ,sV d^%ZP*JmmyQ3_?s! |׽Lܦ.0rbW6Rꩣy׆WMn(5 ,6*X21 |p[7Buf4?5צ[8t!ІXֻd Zz[Yɉkd8&KMqtԻp0r ]M|!}q9]QJ*C8S$24aL wgg]]KN8m3! ARu]ʵ\?# ꥮ3 qHJI.F%ڳHKU#9пq їEuZ:#b|&"îX2ļ㵩 ~X/ϕWaУҚoyj%-?%/N.WGD\{ y% @+s@v/%97lєX7O58|=!ڕ\T'ijvfqU\JT@{/Hў.ejtg+Ez\.͡WF26fc,C8R!5Ey_YTFETZQuS#ݴjkZg ]nу`Lo((k9!15&!.+s,2rrv3QfE?Vʁ!}t'#؎g޶[32X T\˻5̚_u+S ݅u G{ 0t'EQܿ z8q0>x ؑ3>"Hķ݋ľY5l sk!%lNzg5WKw,6z#؂F`Zuا.E#I1$>$MCg-!D' zWGv<$ťQMIQ[u*!ֱϜE4ZܐtB"ϑ5z mdPpBGE؆x.C'jk-,Wf^xF\(2pIN57ӯy3Ìl7Q'"sgpf,h.bhQ"2yePEYGj[dsM}dTMX:4j,H(s(!0RET,xULqgE| qu^wuP͟4T0?p_8hhɓK+e!V05m9v54cv!yA>S_Gא!wH_c"j"Vi Aѳl(9֚S\VѼ!\ta,gR5 f2Iɛ}EpDŪBj ;^1%H y]F_hx PCXm>j5So=8ljI8CT]ψ+rlTw\=tQ>RKeG SkȘ9©,۷о}ݯ$2GI.pO YdS6ľ/ѓqk@#/fXΆ5d ;錪cdʯ!`DhE" OQ).h([ cܭ wlB*qjj0l'F+xAq+}腆q($x>ajfD>1$"vLAInC"Xޑfΰ{yE(rm}.Fk)lK'OhB.*_.bX[V#^&(4P9;FOjn#iEM!4; o~u4묌PؿT\U{}[몠;m+r6&(,0mӬE w{Xx_,߆61f՞-yMO3U }-PWݰ*T+y2YO>O'"!uͯa1bFSn usJpK SF㼃}.uqN;63Z8WÝM,g68\aXR(pӽR!Da&Qt! y& NƟ~e=r:\p=ﯣ#*j|s_EQh Ve$5K L/&[;e0P$bؕ4дؐ&C _/[!vb$FQe؆(dgDYo+)F? S\Q ԕC#kSAvբ ӢLB.Ahhx>ߔrZ-ŷOuy&Є2'TT3c]L^)cJExM#bDdyb'wz *D}:Q+ԢD0A *u.p^tvXuBvJF_#69U&Awa P7Ӽjl KNLԃܸY6HPnf+HꌛoY-Ŝ7Թ6@?U8}'' _9o+`dMoEp%hEEV0{@:K}Ic1wo"=bO:N{֬簉ВeG9EPw5:oDm S ޺!vkMׄЪ*\"lRMD쟻؆g!3e7Ń @Hޤ|U u=ZCjG֔#n^{ٯ!7UXBU+xyG ^y|.#IlYT];mI&гNKP!} eg9C@6s@abkڞO I}wi!ojJmJ2v*ߪU-shK'v;{l0@ɏԍĵA&V4|,GH,)rxpYˣBOI}9c{c^;<޺PߩJ=gOmJKB ѵIe6/yk0P,̗o$U/xLp Xp%D zh}<̺?-q%0,AnEdcʣǎ#F77< &Ww| Co?o?[w+; y\ts,@1M84l8QW^U*k˜%=/_[iϱJ3GTvATl6_|UMjmSI;ln}:5CpTfxݺc.ocs=)+Iy @5 ȳmӕ+!VT/O$A l\>vH6lK7&A}gEmcSX 7#H{%C?dڋ*9-*Reӎ`hZ4ASS#wn Ũ1}jaԫ?st'ҭu4kA֘b'fD:왌3AxcT2AQǿP/`1-@AOBƌ+hrO)%]@pϫo ]ZY~_XHd.by&Ŏ\шiXj;F`Mu*'>kRy )`Ǎy~z3PGm>D$)?^O!FJ4- UX[2àPgmo!wULCGS7!q_7GK˰AGٟ_ъ&.KB= 0ʤ{lueR!I"lΫ v g+3=($1pR6i /M[I!qQA8d0^l2ʂ'T8[:㳢a͸ny=(侤f+ңgͷ<os8x}UMH w`JN3qwS)cEӣpf=ج3 Dt.pr1J z'L1ht5.VʄK GVXe31U}b(QHy,2NAr <~V=ٲv. C)bZw;`jC-0Zp L?=;N6aJwoJsNA0Rys%5J Y]tw1&H?D+6)%bA ;:hs Yk|apf"$9s܏}nSY [qsGE6gxF{X̲հ î4dWM?lNꠤ ς!8PJ0v _̎^AcՈNz ~$'n|GLB*Y`%P"賈H&uܺ,ARMN>Q"+kh(81Qw>ǯQ$7D@Hu|f`2[4gK}[{f}YsG Y:| t2,܁J Ke|;ѕd'΄ s_Y?I{m? =G W!t>7_!* :yvOuH?o) O7t?u}i0 L*h<~"{ݯ e;]J%+1l.IQJC hxᔘGUUyyZٙƴȰfH ^YQ _~c܃3Y;t#5ȿ+O^֏ٚ?؀{ n4o;41Yp':Wdʃ Ct,%G7/`? I,s /yMI{aMi¨iZHi 8}h0Pi~PMp3EhAE6<?W :?׹hx6f>9mO&TMGvq;7;BPr=sFhykL\]33YN4 9: y@flk&"+Iu [ԡv;Qs{Lˡ˛)FUL&CdR8T8m]vp.$1cE8*\ 1=,Ao,(]QksvVn`B2]PZQ<`Ii[+ Du:e A( |xZK#*:;2j(D%緤[3-E dV=1Ɇ¨o׆B-@G\WP*}:Z xv6j43)Γ|=H3I~U^l((b3jDH"hhOj0Fօok`jVR>ԛ>6Cz|q$O0'|<2W(I_sAA$:|xM׌cK}Xz'@[J]}S׵ƭ1ۣl&@L@%Ptw̸\W&USEN!#1K? T2U UmrNXٵ깟w /,F*Ḧ>8aPn.ޙvyazdfZYƗD.*7]"zihH)Y"Cj$ xh^ƔLc'k `9kwfV}.թ2X~dF?4fW`)#jxzR P6ԓ[ ne!ꮊWJ6:,w:P| &Q˛8m4)13hi"r,#kKʟIq2у熖5 \X,fPiABIb4Ɔ6f֮ba\#셂}+Mvr>i Be`ũZTWHZ0=O `0nnu4$~+Iچ%zY°cܙF!VD1q$ w]$7(.'R^'{s{4 =ϾIsoeK`~LBW@ 9#@_rCn7 >:sJGur.yaSE+2Unz^2.D[ **K DI0k2ܿ$J}ʲЅi, >q Ũpz wq5ْmx9 mJ_FՇOJbe̎Q5+di|bو#Īgo%2m5$4w8\(sfS~0 Ruze#,,p21;HZQ2b`MѥS<9Ƽp/ $:PHJ{5vXKa0_8<w2@]=9vmViCXV⳽Po} y{?ql!Bmg;Dɒx-|{.7(_ lnuzy,QqxMn@*7*4k,# N=i&jݛP2wƮl:H-3d}lug^;I aW~g{zew>LuDdc0OtW.6@(KVci^LP hNwtGC.I*+yLZ&` @Zu‚͜FźkNڎi\>״1s슒IͲ@HFţ_{@ w⋆FyA:M _BTP0=av2>w`1D'w">=r\blTHp؈W\9r,ѻzq1R±6XCHlqu؆86xBf΃:YJw(8߬H4 ަ\a餢KgG=L*uftΝ_}U) /Y}]O w\P u#wi t*jQ(aCeo?`D_Sm2@o%S-©UW@ԀHF nТٮd7m^|,Mn3 jNsBddJaecJs,02J> &0V2V`,i׺*@MUB y32>*ѹf4#sh#UoHJ ޙ~솮ѝtVS)Qٱ2Y׈'$䑨!O˛a7ˌYq-Ss^BU=n3^: .}Ȧt<.Rd J#Ԋ@ltj&+Y& C`LY7Er: K4ƴ'`(#w) %}|IVG T<$s ^ߥNo8r[Tb!ߺ`# 7Rqk3Y+vցA%цDS'KEXDwxˏ2EGPV~]yIf* ڢR>.h@;+oGחEsşn&P"61:S٨#: N(vfay|p{=nhUO4xn8/NWNw'Т|VmglȌn= i46<T L4kmɬ+9bz+lMg@F"\irѝPAߐgj5| ,$&/AuL˺,K)G.:$G$f,++1I:\7tg1tȩ%}9/8z9Nb:9o"*QRO4+/+Be=>MKʑIE߄/;"SBEEPhek[L,n}HWԍ1`i|kMՁCa哿нaM'ycp;Ys<#Q7ׁرPI$5>ɬ.(l3iX㳏aԡk*.Gʮ .KPl, E 6ZrbACd{SK臊?Ej:+xvKA,.i72b/1SE(J>0޷Pj:Ӡ*/4ߺ1)QYvU",(ZOw؎M),ŗ>{ MlPj W%(풙˜lǐUBOr#oY9Qei2bbV B箬D$G|Q] ϸP? =8ẞAJ62D1Io#6v,fAJo"g_G'ibCvead Nb8{.FVf*t !"aqqsBmNV)znT fв(7D9ګ^[ ҉7]p~c,=:KtB}ݧ3(w(ᣞvbCX7|`nwk$0X(a"߱1B=Lu0jm(.80[ޑ\E蠁n"[bJǏ6tf%-z6 |uQn *թjwKeI WפBĻ>y j^pS4ĊjɮMRb74G0HM)X`5m2:eFw^hqށW.x1C6=; :KesV;mǐQir,l}|i&``#E%Wxe~04fm`O,b Nwf5{PE624 BQrQ@UqY&LÎ6IۈMJy yI@CǐYbL@S Gw@J^֕e՛'x4 fyB@Yu ^2Щ$IbeX?ڃlɴiGJ[Z1p_& ԢR4;A+gUJCw!/ y[|,r`'c?` c@AAldCuߪʘCFqOKHеpxM@&$kS9]~͒;Φa^\m< $`V -9zR=P]~+,fIbr aJh$KN yZoT 5Alөi'm$4 vP: kRK&{@sfZ fQ54ۡ<VݔEjӡtJء)$H,i 3E[" *'Ohͭc,w7t+)DXjv#O@؇z7!?mC:bw:ŦA٠(m ØesW\2ғA)A(AFwdqUXZ3^Ui**UL36BC yVP)'k2bg9(TJ@[ !5cwv}i(X]k7wIvd+HJT W1yGoS(.C1ď-޷ugš^#U]8$zo؆h ;_ʣ.Pr)&g˵p ƉCa_~j;zvJG(#/nl[ZCy lR?ѷt2luJ)|5 ,-&sGAj絊C{lZ/? ڦ7bɲ)r }UhjdNy?gWgykz=+]`DֆAlġiLХLc%47K e=b3C\νiz4~ ;d1x&ߙcEA杲^ H;),P,$)q:ؙ؎P7QVrc Y\zYS6gHm0~SGq7d;J[eJF:jƨD /O;9{\1Y/x_ghLu- HybxACp,qS"ɚ EE7C  k,POڋ D@o||m;b˪7e|"=9f H{ δF &&[, 枅NgA/+eZҚcaSFUL7Ct'DŽ%~Tu5hr7!tGƊ"1KWybђoZ`SI[W6ˬVv:Vޡ썚eB4&)E#Z8a/5)6Ê&'nxFb!0fϊV\"m. XO: tHn}(# OCko}ٞ3wz;:5f@[r1tnm|b^4HoOtp zS@w3~l`'-Z`1*^ƕzA*CzUٛZZ7Vip(x-uǔ;-Dx3zǣ`|2( Q/J]xE8N͙!sJ1o~_MIKI6K)v13/W+.`9_GJ5JTy )L!3oXJ_61`UqZ=f$#*wDXЌ[Hmݘ4}"6RP KLH'VNg?Y7uo%uf8TwM~!io1%o0JeUGA7>7U!t3[q4,$~#h᷄GK7)*b8vˋ>~dÕ?r6$tC2Y8d^Ǟ1kG FO9F Qdzmq+q(  En TD'`&Xڇ'Kܶr/2>5Bme2Q vaWhqtZ4znk+[ k$ppX[zDL\宻2K %6m8D,,> ]3t1>6v/ؠs@a,BQzi8gmM!0"/,oR'ک ^2a'IӼY5J5Z䐟|#QB |T82|{Uֹ]3Ev,N +TkLH ݼZ!޻iF*hnnA,W(cIk,f;;½u`/.Dz朷 2\cZ] ܯC+m_*ńC.._łbwNqzP~POA<=DC[CDiku FTek0KA'Sq^ HҾo;=nQX˃c|N ֆ۩qݝrMBjVqNI-%9zUŔ2oZgŏ_׆T4$a \B]6ǯ?D`u Ƶ˾E ͵fd:TƶUdk3dۉgcf&|A+NsB~u y_B2pU.rN9VByOR+bk֑: m<-9R0٩:CXZ@ (Vc\bRP_#IR@,jcfgcRâsݹ S4{1sBEȒd`\aRY C)v)i=?7Rtx]/&˔e-T1{huh%I@7}ZC7p;ըATYhGx7ˡ,<}|G2+#6.E|&% U.Fe% /x]DɎ)>2Fɚ6Ɋ4  cEz5Jxȭ|nTig娴E^n ҡv$#)8 &YM)b/`g}?64-9}z$_.NUg۾r C{b*HOxSq7r5hR ;[Vg'!@tX53 `H}=*|r>[7]g4{nb^GAy3-^3ڶ?Tѽ!?iW/L_r } ⴯fqLgLEILaM ^c3H` ـdDW= JN9 vo۠qlUJC!C7L s}GKqN ~%/8Η\sW賒>a>crxvS3>QXK*tIk3WRynU઺!-<$]I݌բm`&A=iVq/= ̭Zݏ}fE8X…8#\OnEKe遮]`GɎ^YṰ`"BPAzOOK/jЋ8tFqVZ:krX  Y2O,DjTS|XJ\ -x$i 4"C'{.fHҼA0Xƀl= X'nUS&k--Ə)n>VԢU|r ̂Eeh[kd F!,Z Hx[F`щa7V)x}&/!r#E#'snjPDJeBKcޡWʾ 3B!ڷVlӑy=t0EmnԌzn>|K(MxI6D˩ v3v"7qlAosųb]9~NvrqGѥ8%UAnөPokd23{缷2kvBX9Ae7J 1`{QZ}b`RޯVrt"ܫjC ~&I##뻠aF*T$:HQ(*A 8P}h{eb@ee^k%8 ׮NMZ(; .@D巙%l]uSw|LڪWwV"3~ qcqLSB8y3fq_k:g0P[V޺w~ܞbzha1Q:fwk&lE]n[OUNgaI> M*]+ѯ zhvG='֡)'.q>Pn'NUoXtٽh5K:wdJϝ,bs ׂ+It 0HxQOhJ9&rNjKc|F 7S2ڷ]K[Z\ ^CRj#-BGv}i56*ؒ~n.#Pf[V4Ұ7sdI] {|JIWG9$l#7%|RS[gHh]_D+[# =?n)!$KOZXIQ/븶$jR ͦ?HM _X>٘"H~ qIk= D~dV3*tgRs>lKukeb[+&i"?R;P.3}ߛR:ojgLITQF ʃbiZCIO >՘bgeU'3Y!YRR(_f!4GelUfї`y2tځz$;)UKV{|8#?kER(oZ [Kz.hN3ߔ2q_grL8_r\%(Rq-(} ̀8laGNm_*u;a ]ӷT ~b{- ը\ _S?ty.rm<^h/LWCؗrڮ(+"申V  MI 烛q{Fl!EfOM6,V_z}ϱ$30F4 hQ+&?Ac ߋ<}WVh'k2<C[/LQWM߉8;"1׾'KO7ko0f͡<[W!IjaD~EY׵8uzz9 Tc-MW;gav٥iq8Ǐ]@S7~' BG"S8ňhCGCϰU큡6lbep/24$Dipyu`B ᦡanC+>j{18T֠OZu`&Vl輎3STQ ,CA=5>5 ]'~6 bhhmR *51hWHb9X3Uo Mes>bHՈ^J>B>tl[2yȊ)ypQw啘?^Ch$$lkt{@B/ $Ȧ֕Na~5Γeb$&yйaxrpkvg㌡´!d#Q/a;bF?^'7Dz$=xi]Uhkq+$1Jppڔ;;llo{Y~yXSO&P#';o E[Ņy>xMYǿy˕Zc<c*sUߖ!zU*߯VE: |(8 Ң0COc!5Yufӿ|wK?z0nm<HD枕y5?ˁ:l^A<'5gX<,Jk6л!^df3jD vlE]G}H+0:Oװ0fQz>hd"Wa[}1`c8 j]鞕+ǟ+neW{0E/jE4|o./j]qmY+fv3c qĜiѐ3^SCĥ;y,4T5`mKjz]FZWQ^b+BUu߄Z oޥsGLcڼ:KZRgDPwX sXd n_x7%j#vyDRbZej롣(%]vBIƏA F?ae>ltڙ:nyFQsP s;ɥm\X{Yt0A?58I^Y CYOQkue ɝiwVnh,=ڱdeHJ*MJzJq͑:QW;Bʃ}I*ѵ_~N%y9Jj8Ի)ږsoՃRdV41aP fQ(=y-or[fGֻX)~ۛV#] 0ḹOL2E;~MZ+vહh@ԃbF)Ne&g.ߓ@'C;'Cf)j%"=E@8,&H)`0}nQާ^+:7kDL&Y*m>]JzEt2/O-|ƹG"%1|=JU׫c|.B[<˻9}TqҴ,XpS 8CB1@5'UFL\F!b̆˫hh_\|18$x9.c3&!aAٹa)MKxpmL#,7&RCTG~R}1ƶ?dA3<' AZ1pr2#UdT, b=swQEب}wH&c[:A"s%-UDDWP6!5 $Tyz2 ٴFyF{$D4:`އ[enr=qQt1 }'Osw0\,{.pTfoÕ޼=#Xyl~єEO$%XPAz,(Sn]oaG}DR[ۚs:uïOx-9V Ct2 L~pqܺV+)-\jX%_6NҽMxt6s8L|vfy7'w!-@ Kr3_"sg}9fhS+>ay'lqXƀ/pl=\PG( 6 ̴]-eRo@%&p[52d۟>3K@uL6Ҫ;δ:q׬@/a#wX KYBb kGEcĐ3]?QrФp/g yMi6 d/>k \v;eKOr}Vz)c9mS{˝SzZczmaUNb|i;gn3r EZ,?Iޥh azAd1=8h„䮻A *#XZEp8I1t4g80([vjdz^Ηo=DF72^EJx@f4@(ЋnI( "okgo{UI\Du5D8 .eOz| \7:h3ƏOu[3(GZq@nFF 0T´Z1 OA$Cuah|?G kD. 񢎅iv,LQӫGG腰4ߤ' HVo>2syjճҘޫw%[c8/+q߰Gk49T{)ؔ2.-İ\i[MftL65u\9- i;VM/*ߺ2ăZr{Wfld܁rhɷ\Z:3ϖ V۹PgE]!)g׵ea}L~K XVRAoukHA4[OA H1 ¦ԙ )Ţk_@xgDQM9UDZf(1l< [b݅?%E{ Z{\Apgb)4ZDm+X7xn=R]ڙB7WEuV9M O9!P7Jߪ!h~f7SφE1kɴC#߂T7X.aUqٕ+RygjmT_/ MdP{*CmȈd ur1]|`?X3{❌p6J箿`=:RH' _ǩrڿoƙvQZzJ{7!ҽ miCrcQj檸qDmJ$N@HV|o#sb}A?C7Ξ|9o:#p͆f: >Oˎ'zNN G(c"$"{ZSJ_ь1R#680% nmI-pUxf N b(G #aT|eδ^džnJQ^,)n[ aJ$|i[&Clzu l"# wiް?K-]u@Vd{{ iBzi[^ܷOU (h,!X#)9EoڼI9teI>,6OqyrdoMe]o9*Řv6Kdc&JˑvjXv3d| j*G& REwo ZUJ`. ;pBX{`TڔO[Xmg:J *un:aNKQ_&R~0-- PqZ)EqBs;Vhql×8ȓ/i|BtR:h Cl52ExBSJ_B3R"畻/MmG|BR ƨVnJ _CgݼjpvLw(ɋ"&@rhF7>a7)KM@(SF :Joa=[$Z/PјSEG,`54Xׯ(Ch3fk;pL5(@w05Gt՞#8, cbKCƤH<|N& 𦗎Ke1A"v8v֤SӤFJE8lSN|2?+<|/lӎIl蜋 x"*aCOI5Kj*ZP{͖SQf$kCfj/rRui}YE \USkT&@hi l8iz){Cmm#MXH(Uch=-N} %FRQ8YQ@K̝uRMg{?/sϦ2nFH<9?wOv&dFьBmMiRJF[ژLLAQLL2m~ۋrQ!(գb3/1Wwy88 ğ;RzC;o{ېTT|ffL6 OzKUEG ӎ;rmp ~Sd2TEW@]AK@*sfKQ R=>$XtEk? %>Yu+aCY0=C!UX!x92ψP1܈ u;'Bjewz?lj c2쟒7J]zglCiYeX.=g%󳙇'_Lp@pQFiJ9,5n*/LsAnhC wY߀wW#b A%x`0{Nl~rRJ9\-#F1KqCAv"[{u/}R 6Ŭcͩ,q%>Ioy#:|gLam_{!lalbTŰt`n\9a'jZ+=ǀ?R(vCӀ]\{D$د+h]'"0><`Ns@S٬(q:q}%+S'_'֕eV*Vd)uj]%D-i1wӓ(謪j^sCE)zPգ JHг-t}9 p5oVj)0Xf`}c,h5Y"mpaC߫ b7#uf:@,cPw|<-0pG44'3DbQA݈'Xt($V_0u {h?ǁй Êվ˓]L,'e%R t5j0I[@.EbDPkͰ0vNP12cL1,?Q_piڔ:00 L">Ɏ;k'3*<~ʃDxW~5͙ZjUlR !ei뼠Q8Z58ą1%EA5pLXCx:{yֺszHce  q2 K3xty3aHQ8v5o|Uͮ/12wkd5xCkexd_UQ,/w仕j|CLY=KW&5"!S H 龵.5}\Mt[|3[|r epE $}waԽiJ4GV7d]0^M"eKTZFMM' \'3͙oTe!YW{-3~dZ+@a'i<7[^΍Oc7EtWvYA4cdX -HC;PS{ʘ u4 ".:?\K?b"TcERLYW +sگSo2l7 c'BԶ;PVm'3p<2z+Nw̑8˳m[27\epDb=Ŕ6G4lp8qW8> Pt='-w$˕ [M? s2\a$"h/yWUlxOP VY(yMA=80ͯ{E!%g: q؅Oz^SL3y%ꖭKe[LB,H_=1ly=I3}%oCp^Oq8΋~j43rdJ8! ƚ{;o1CvnUHPzuW%|CIL؋`IBŮLΏpA9k V[C98l]?/҄XSHCG)MGw93yb wY˭pr,c]ulSW V4!E+x\Nǂ.ON͍xw9kO5hQ?'*5_B(YC* A rٷN笳{ N[$5_f^M"$`l:l3XCqKٙURϦ^iyq'#6|/Y*z&5n{Sm ֧vC4%޶LyB=J0:|6GA5kE=$77(z_X~\ȷYrl{*TuanЁk2")چBاΌJQh4vťS| Q z{Ԕҟ2ѕG8{{K*֊̿ $JccQZr&똓ZCmjtdT?k!1Hv &Xؑ4i~< 1YL2ЙS}N0kĝ ﴤznAaVz[{<]TMt~QxN's.1VHŎ*f.5`p@8}s Ŭo#֞/e9(>RW\N i =N<2b[ṋF^@j(AlE#``TQ+$/(7WO8@pubcu tGJ< 67=NQa>l ҵ^|/1fQW.DYMWcɲIU⮦QARa#ͺ _u .ebFratآnvg K#mX~cB*F$OEDq 䥻*PJDePc/=9QY/ i||@U*+~dQeP+5.wYlsK5(Ȟ-䴠7z9~FT}9s=ȅ3OtZ%ec|'v\#g~ NQm؅N$;+?Tֱ~:gj =Xn]G4h"f@ "uMDH BL:حz 죈u#~YrɄ0z`nuVĺ\-֞9A{.j-8P,&'B[N0PPASmVh4KY7Y4"JE3K @;:ԬR3[| ՛mBiYo6솹xV7=̛m^iG]lrDnt·M5+RhR_2fyB D o,Kd̓1@@8WP\Kq{= n`o/]\טO ӀvCw'&*lfѐOWK"eYS s܌,M7 c"6~8 Q-5WCɔ -A ]ɯnn p  P"~yzlBp0u&Κmez-?6[2qcSA(Ʊ[ls7^g]z%iw+6ÚXk r1#PƔ%m*X_.ߛN+Dzӿf\V "Luo6+ 7|CHp*Za ْfS{%_wbZHu[ 6欑t#E d,meP6&6Sa ~q=d&-@b޴zDvÊxUۛ/C|)1l3u7NC3'EH`$v:Soم"_d#]g]uv]Rծ:-lBg87+l=]KȤ C d8jtE*BaFC)v BZ"PhNϝF.vH[1m!QS`ɂ7=Kio$Oݳd.<4 Ǫz7GJl/#伥x;H®wROD^C"3|~3fn0mѼ̸&$T3w,H.'b_XEfmLäA\B\r\Y$LyDz>OQLu[δoP,o"zsrOAB~-/-7d.XZt5Vbf:LVL!3NQvO!e8gmxJQNٵ^Ge[bFxyUedZΎۄj^M(*V^8 pX[#5Hٕ佊T-@ Q适Df{QiBX5Spz۪!C{<\Cp]eL$È^^7cFPƉN5a=SCfGg=":q fWT?ځghN+||" `$mBhci> |[4l+\Ǒ`b]=8eGVd΄3+A(!ӾŘQJ6/1}P-'o6L8cWl9ퟟ:}7tQR"c:pL-?z{t3&XS[Yx.륥ˡor-\]_M8&Zf- ;"g7S`:wc"\CηUWAv[[oh=.u+䤷*QH  >Mœ0bo#z<|rPo Be@U}Q\4I X2x+⸡R6aF)+j'հ0əDvMYzc^ˇYǾTwv @ι*ѧ>\Ǹee^CB4y{়d}qAt/"J7 < Lg bRbd>s%*EcD'?_.tU~_;h/,4^˥W}12g;xP8k1 >OoI ` ݸp?M]BWiHWZҿ_|DvTΰD.Ǜ 0tlBd3j5gP8'L.MCs~i!y 3mؑnBx|}Y]ݱw,4 q LjP<^y`t=gG"'%Ȏ0H_be$NQǵf8I\zSD@C"9A)Hyf{zU^U~h`y3L<5"2}*t\+Ǝx-iIނʛq? kZJ{e~An'SovX{=j\ןEP7Ë-m qĘ_̡7it]!xu[5`@⌆KكSh[ ݰ X"WdLG))nP]xzqGY. xŚ['裷>8|{?U'Rnʩoo/cp>DO|_H hk!C- ~((?[Lre嗲,EEP\yӄf_˭S:{bX-P XFʵX1Eo{ iWIH֓ ];y:AiKbbi?b W4ടF&ߒ h$s(xLDE>-haGWH|$]ZE76O!sxk]ѽ.;BJVOx *H𰠤"]ܬip`Lsax>!Xl@o;4X~#_'&f*P]$d]7N6j1]>: u6#` Y߮^SۜUKJ͕"o4=ѐ_siPJk [Nv#P$iL/͸*tM8o;7ptCRͦ:A(3zH^n`fN X+uq| Qxq+Q`KuOTULgQ[:7@2R&3k,R_v00of1|R[P@߷hK9 -:d JUL(+ƛ21uEѨױy4c'*Eh|?+0|I=|e$ÍrP-mSM)~4c&Xsc8'rw|ρ^ F*鲴khmo=ǷObt9/dSϳcYw*y؇g~xB^,a>JٛǷGwn-yP$/5Kujj Oy+f1Mzfމ;qKȓb TX-%Mn~NfYxLv+2qxMFm i6IΖ0!rbӃjbuo:5d!!8W^ɴ AeqJcv*Kفpw_aտ]ypLªt&߭Kz%RXe8[J_Ɇ2jIacr>(v衄 Gឦ`}T|}briYpWF]Q Md<XE4muE,"/H8VCu}@. /_'/6wpx1a"89>Wu~x!eQP cVK>:-jy1z|Ub[_'v%N`cߖ_EJ C]n5%]IGX8b,>\f6 5ubA~yLY^#fs^dʅ}p$!<孄^TXv˔نl?&_hh4*-^#nfLΞ&]"ҊJvN1b5I6XQ\ C%\ QT i K:ךѾ #?rafM,d!XL܅s3Ҋ-e.u%.8W$ 8GچϐGVc&\%WtK6|ǼC@V.qYAS f;&B]:Ta@ d^4 έhV)^7lm9[fN7PYdG6[F8.f/qAlRsV?}cT^ +L*ѭVoIvE U' 0]s# 4"ޭ$]F2ʸ@oXO (X((P*m=Ez bss9|ڵ_D2C1GAMm'j H A yONUngZ .E"TKy1iW^e"ؒ0M 0ٹ 8h 7oO~a ʘuSEnX-G8HMDm˹؝mLNmi}nICg/LN{wpv`IMB ~]q@u!UPS* snpk<1CՑp{ UA7u"߳vӶ'nJ9A?~#m0dIv; ,J\S{6>$e4m7W)WB wm@j|f{a3z>nVYQ\ퟰ7@/ޢyl$uO@ōwNYy4ǃ B%I5v9 ]EX*ͷ\-ofإt0Qr#;꘱GLmtc2$ 8$CfY~y d+?iV"i./ iBs8njCTtܠ 'ThW7]4px}}KW 3)D53Hf lV+m 'In: |h9M9}.JFËIm!}G_34߀~@d?ς<=J -GYcsȓS-|6B\H * 9;F s˭5V5c&Z z#Oޥ5nN-Nbʐ<5w >80TUwfubOCl۫UThVHI]PuH JjPuu|SDYE"T͎~=L KS1XbJ3vF8RH3r\]x|'^Fo9P%U V9y)FhtPei:zB·\mcT ;PcM^ׁ'MG!ViLur%O3m!2k60#ߦ]CR]Nt_U0iId"|Lؗ@bVvL [pz@$&BQ9Y)srJSpCq>zG]|nJ$68^>hQKU2첺 %`J\ɔU<{˪)P -G82PF[KIPrS/[HM\ rH<5=!?7֠G.b14`8AO^ee+ Ze V%fXխRܶSҩܔ5@I?GDtuD;'eAefAўU QObFccLi6ȂIm5Ҡ8~+ɮ7%Jtg-]\ UuM4$djIЎ1ʁϱu%=ol~8U3b=מYCTD>Gy@$%I&,q.W0VJ@\u [ڕPd-*Q Qփ!i= MpO"YBX뵉^r]r|jBr& nj˚b9=#)3{g;imT%u_Wn4V3/ZȱBlz</XSu}(*D-jP'#Ѳ 6Ԣ&`<*^zˉ!5LWTo0s'yyNT_g] }cNHC}m=zXwbt.o]lT6 2>tJ_aIcvNKDrL ݛO)l -ȃ z 8 ʹxF<69i9vͿM<.6sTu >]\}pM9vμtv\ *YNֶ9gБx ЄD`>ZS|sUlyi*<ʶ|;mnlv c{0&yERUO{a*OBUSݪD `=xV{?MumџUtl Һ%&~vYFAK&j UG m+=9ΟyomaLDi{tQ$W`_4vG{WJ;*z7hQoR8'irLHyI(ďhS74Ԑ4)^`'t´33w h'yȸK_#hqXXմގ>_h$&%Ifo\1`1CݸW :ȵ,7\`T|٩Lcz3Qkdz1}Adma3h] /!;G; uT'$+n$` 5FflJ=*u> z\h'M? ƓAH: Ei8LJPtɼ!S%Mi6^vV0sjPN[ld!]!YH2,e?xxHÖg,qʐpi:o_iE#I˨&tDk!4DkP'RϷG=?#!|o M{79BrACV&P'.r'цX(Z},(;Xct}~_T)FVVR M mĦrDݺ)wi"|Nsi1) Vn9D`[ENYqi<!o]6vaG!:o}<;e(4=1.yDǠH{Qr@ogN&Iq\?gcy$UnթE=4PwmRҫ^`UވdS̙CSPDrddfBY_et]1I!'I#4&GKP-XWi<(W-T\o)q/}ֽ 1Aȝ*bHjR.k1yr.Ql:. 6jNMw4~eZ7B0Q! 96dT);ۦИ\i+SY g'YȔ5 Yg5,q\e$23l["tBt~ΥW^& YawO0ȁHA:һOU.d؄ڢ:' xVh+b  nCCtta 0tC}s"ĤIZ[p=\C#`)| ORe9ԤmHb;DG%izxnfo6v2w/M-C)ZzV l֣e PRdN3U'|($+bH|YhO'- .s9c *s:MJ{e^8O鍐cʉ9LNx&/K[hAE]QRv97Ǎ_[=D\ѭ'zkO*: <<$P%[24Edב1t5ٳ@;C'{T=t`y兖?tN HJt A/ DKy4=Ł]c?v11R~+x,!vP@Ɉb;$-LJl\#7UVlAMYۥ{_s.%Iݿg[tXBĕMLacc_@V?|ehH?#"RܼewgxlY{ӅE!(uF0ys>ܴljXurVH{svm9՟A ap) Ln@ZJF&aU{y9 q lzY]HFH?`B~vk7ՍP7d%Q睴݇I xwk c|g8։.z]|q#PgJ5h@OҒ!g:U[dl}p\͜`jWhڵ79!O%RT!JV.OwַQ*g2yaqAx|HsКPK7ENK;M+єm H\ff>Bt4}NWO4R3V̍B">Vr rbmF?$"<Y@lABŊ sL!_s|/)vŞjB<9W&j(l sT#7D$+ PSX Vnì[5%ms[2ANH{-9gK!~d*WQe:d;r^1=ڧ?_L͒&|( 5\?@U"HwL$1׮0L_db./_@!復u5vf*HwߧZ3FbTl͋I-QnDd b$G*R4.Z4ڨ^Ͼ4B!a0KϏaeUoOhq0u~6@Ǩ7]Yb;$MLe~:&hL}AxlsPHJPYcы zN#IV>#Ri|yA|Y7$!IL_r<ȗ&g+upvZ80v uEöǖz FmdcvId 7Q )QZc6'2amȮ|YU? T?RH-vk$Y.7&Nчhsz#!r=ۉ y}1l- SW@eJjT?WE㦺] JXE~A^م2Cw7^*3y4}Ze#Ξ c8|+ϐ2] ?q(|ϽJU  SO[!J1?\ $^RV::TtZ*nӦ,M?"㲙7򒧴u, ,%kYkR*Őİ5OR` ?KڰoQY*֌Ŏd[1T$#[@iNNYQm+՝$cP 2R CQgx|k4є We[ 9[5 txWOdXʲ%7;l`S46z01.BPV(m:mtD#OWC8TWLITjIio$&>⮵KQ|:SKkqpLBJl&BHm˾,fRPJc%bjɦc%[ÂIѳwh,f]E}LR?_<|ݎ$WWc9DMI[֜0㋘0#d悰Q.-2+w4(,'6j~ 倶rS+{iȐ墹X r$G}>fF6F tB`8> 5.*LXy1<V=!BK ]fr =900C.(8׀mBV6gYcq#4 ֕Vbm7KD!Y!t5$9nk+ʶ7QP&{_\,:UЅN*ZC'ɰ`~INv {yjm])d﷚$b%{M)Fe UJuH_ T@ؖ鎘k#:B83{pH^c^zKcAfWl9*p]N?(WJ3m uO˴?X |s3T}䝩E8nG]V=Svbam"]gʳ~:=Ўɓ5ِB޼ }ķ4_lc_#BO~ǭ躰ىT%*~tW)|gBm_*`^o*#mp7N_KByK{Z-av v# 7AXyɊpy,$k{sˮ[Nb[/܅1ySYGDRX%ܩN#njAaV|^#RC@>~LRGJ l9u=|>œNFu\ M],B6{&(;&"^o.',V]R4yUk,Kw|:fKb-İNykFۙ.O[?+UWsWp-xwx"xD0Sΰ]0DBRO F})dtvusePh|`34q<ʎ,ʃ&,G\(2e?_Px\GX/2~`sx eNjxh|Q%fus2q؛*} Ne`Nx|QuuG  3:(н<#M,(oʌhcnU77CJ񓻰-`cL{sHn@KgwR93 VտTJ[R\ai)Ӹ!? Qh)#XcyZ^\M˞N޻wh+qtmIn $eu1-w[p[O/,1ur= /= kl!CJsI,Oz17NwS^+Ύ+ƺ-ˡyb6nEkQ[dQ0Οa&7 gqdPUc $Û(r=S>H̯ upRcW*È85 !=x^PXV̓P}h`EPrXi-fN$r"/ppYc0[Tʣ0Fd$3OL^ghVE [ پMJp>R<\'9[G&_Qۛ"7:7]2z5(XI/`5l>"rL+*l-@FR({(5 :'q׾s=lSBARH \lQ 3v#Pw9:Նm Q#Ed@5=8&rCg\qFk 0bjb(-Ѵ5F`"ڎHW-#Lf#5ڳ8(|ji"7&xXӂPbWRaIkE+փ_Vil@uX;4B]hM +h)pojmM[s t}`&\S帢n|~d'{~7&!>AU<0̮$:>DW]7e 5:4Z 9*{'UȦ%#-0Nq2q9.,lܔmMf02aMC,k0k (YaU2YăU`Ǥ yƇ#qq-st|q+*PLg(DU#U<y9IGzӎ%w-[7_OL!?9*zV2ag?Ѿ]ͯV? K/$GI$$}@VsV'}U~26 'bzH3I>)<\ ˣ>k糶IXG¦O;(c`"M_nTB,"/,9NBD@ oRVŐG0wv:?YxhWw@4@pS:c!Ȑ.ؾMF,[<*ޘ틉ĥ?F|h oċ0%bܸ$^ѼZskك#M@s'P@b<;ʲ%gmS5E:V2mUsKXp2U.@@":h`F(S15%r\76CO~rT?6'kwKa}fP@S`b|ssX|N4 tpάf&!4%hXdu0O.UOL*vp9P@Xn]My.cBؔ[3CY_ḿH$'WOD)aS6E *CII `"u&DRB;[\BR|/w=vz|5Q'*'w%,9bԁSMg 3˴9 Ci696K6̥ myOUۓ$;#c}B4лam.թf4nA:ۡ.1\5}2540 /bnG߳杮,K 00 tR Mk[D ΅fߔ+H+յdi3.9 x_6O->Ot+R@zὼ:8q\.#="L.q_JZmj;? ΒJaYK%I>[ʋ ^Jf {O86l%Z놲i6(c 9+$0Ӆܤz"Q7e!.n!Y% @Cb^2FQZO-]G%(P g [|igSZp9.@b`=l̯(wff.'Hg6f2K̾Hde~zww,&Qꇳ= x6:4Hp}y; ICE]‘QjM* &&ۄcDqs cɦ1~wn[7X($gŝzNJ! A}vaKo n XN'!Rq׷ݠ S 4rʫ|}%8>g9]H}Fnt ]f=Z3/z?`ױ^; j*ʊl-UX= '_A;rO}Wf=Um<~ɧa)w-XٟŽt"Z7 N'?gƖGTwu0TM=Tq]۷]VwhYV?af{˶H Kv]'*\ ~^A D m>'WbCue)O9)Bń#00/_VRHR6qh|(A,Ư!dD852{zCfL݇y3;S@ȝԒH]0it+.#G~ũ6/РA/'eȞd>%{2k{V@w ƚ7]yTtV+VM+zƽ*wVbQb&1i[ N#VD*~MZS. #Ik*̓<׏At/r*.quzE?H Њo}hWg\Pn!VJ\89b48D[j4, GHzYQ򖦷F9m-\\QT,ngv9Vb:.7,,RmUCKz?n.Myen-b @}fޣloCt1Զu5ɗQu B4Kh:]otԀ':;,'M~42o̓}>B>]S|_"1΋ ~PY^" 5_?. M۾A"-ͽc*=4FKDEiUv$*Pf˰>ln9 j?.&j(D ).1FPA7RUvx5x4t4Mo0EϞ GYjq(;IڽiT[h#";MF$hx _d@Bqױ˺ ڿhMC[L6O nUd %_BD(vscĩWԇ ;Q껕BqlfrgVW@3]\Ty-5 b4{YAJ%?šbk4O=ko>\&dHLůwepa(SNFky<7x~O(_|`RC"j?y{{d^^qX=,90JΆ!\0כѮ!|ϧ[JM1:11E\NN7 r6y~-p>2 D0Ԯm"K 0iYBtد\ S`!i'ʗ`k_(}L6P& "ErNv%` fkP1dGq)%^V7uGΓf%wK~ô]pdna6BWr}):QxFM-p?ьlFKk{AJ PO[p=+~J\iDȜq47[}-#g8޾\@Dt3LIzA&ݕWT×&;P2 !\*Z#VY5&W2cuJg0s= r(VHI۞Bk/oXOOhKt6I̬bu`QV/c@;6onu.8GopRdvǸ~JE-R0"MԮWSl<߀`0foCxW*~ɻ8|pluhꕓB6^>oai!c%SlqZmsf8WEscm 9H?/#ts6Rٚ' D 5F c8Va]gDm!<)әQ  =M8Ϻ#0S|φbKl&ҝu!,X essn2aQgG.3w3.TDƻU& U*q*j,3A~R;icMӷFr[Ny%-O `{ؠ&.,o-iu"0g Pc59 s1 GP#ET}7hԈ=?YZMd8Yɞ-A c3_zB6Ae dBvϠ :U4XlLwA~]M`y﵊ܞ\ 5 3-tȲcx@.*DR< 47cOy-qJg酱$vܦ8-#o!E~I3B2[L&p0K*5ls HZ'~Y8,ڎrQlI'I+y&pГNo_X׊,'摒*{N`m6VTV`?y_7}-txa2m ,D;ik.Y y-u |ړ!4LEqtr9ͥ @G]iS#4=WEɔG~d Ӿ()LS ;6ifYz+}g9,7 ÄNnc*+Zj"OGrIׇuc6d Gfq6by6 -2u?qF5R⯾BWPh{șۈxF9h =n|Q@ $0ЇgPnoDH8b=wڔ&8L X_/L_/HڣN6U{Vo1琙9W'*[@'~Kڽ`:!cc-cˡ&4'_c^6ଖ+wb>#s5#D/;CtG) y%SI"_'CsϛAD\ux|#@aFRQ՛r؝&^s+r.ݷ_$R_W'}`^ T߭އ5][ڐgP٪LfSjUA^i4 ƛv(>>c3? >`.mA /a0um@$޸Q%Ixhe֯wMs5Wr,VO?%qh*#q`Lk.cX ķ7/uogbݸوwrL?=8(,OkHIwi}6|? 394P':e+ h{ ʜzsI:hym;C暑6WMT]UYJ,6bNas&19;ORU yѭ~'|ze3Mih,q3 C'pD$ mX2Ty IM'#\չxY;6LR&?s z 'ԯ&;?oR!گDER_}AqQގPuړCkKDKO™7hX0?Ss WMl6P07;t]!Vccrg.-PWx:J(Jߕ_Wu(Zl`6%),0ehgq$Rb[XY blesh{0ׯZ$CsxQ%o:iiOMzT/pq|4-ARbY?y!XiNxR>KhEcov\%r!}!jIuu.ik:˛70"I\ECG}6-@y^H57E8SaLin҉cWi!֬%KCG 6 E.߻| #Pe'a};Z,&@| zcy肻|1F%v ΘvrA5e`h]@P8}8RPQwQzYb[24+md8|z+n8A635TRXXhm s۸YA@ǘH9Jd"w '|W!Au5jF7xN'?q~k%;=G<`OzqzMn{[S83#:S1837V9:$T'AdE <6`E#i]eLgMjcZ\Rs s-LvX=Fw Nᡅf|UBoW6 5O{`W?C@FɧUe ˝Vƕ93WޯBJ_0W7>UYT P\}&xW b)Y­, LyxDqnsDÄ4xHW~,~&У|rVvpck%Gê]F}Id"ZDt>74v^gpڪo·$|VɶwBFz JgJrl"vmع._#r,3x\6fg:ګK_~xDZx@Ħ_,j95Qhl'6juR-BeEfkaVq-oQW2G̨'"Ed-iG9Kov`e}&|hyoɶim5}@3+1JCt$+v=:>#7=?g@cmմ>cxQYEi1i#8 4Wkp3Veݘ*n;W߫]5b1~:ŝBn/fU@̠#EUۃyoK'*1GXN]XFvYp@2`h+Pr3)g42e[!J%,S7 &;_ěQ&m艹_G}6<Tb ٠ݹ,fWyZD5(%[zݡzR?L3<^wN8aZ/g~Zػ WWU{oB)iCoG}OwTe"po7#7:MS:ܷR薛ƍ?7V=  zv/J>`>0%@k?RcY7[OU}{AFCƷ"W#;GЌn\C6(]-o"=c.dSnQ}\*cݝ΋ B$Ξ1l W3Mɻ f[a=wdq, =$Ǫ^8uuAkA&㴑UMB2жF1!;΀*hNsE\~,y ˃gDǼ(/0StD$ĠGR\SʤAKyT|U^ 6Һ)#s[jVB< ;JIB~u Z3E5ɁFK$zJČ݈{>[ j\%[Kb2P71.mip^bъ O~)7ZaTu)8x ݈U+xTHTG2;`n.$5:C~*!J5y.*|gXd;HypYjxAi"0(k@n!󕱰>0yE똍-1zҒũSN!%J1Oّn0PcNQe { m_Dzxo)/~|9+ V%w߶n~LpC7@nT5϶WtXBFTB\2'D嶭( F\om}lKK*gz. !{%}Ug_3^!œhcLO!Y|5n_"YpHRx }Ktn-h|1pHΒ8fQ!D4b2kjVfNpfqԜQ+086UĚw2[]i`pJs5^pe${2ҽ}4Ibg!7.gO gtݑoGan} ;2M|^NNډOPpiP2`nc2 %k( ElMyNт+4KZPɓOq aW1vTnUp'[ gnh]zH6|'OKZYmǤ7W :>(Yyms*[Mi %6ꩌ¾>0La%|{ay`v:%_RL,h7A\+ #@C4n i6 '~xxp[GА&Uv`Eo`$q|Z#9ެβŹpqEiGM#T勣|4OZs HR @:O>8HIE-{**B1=93 Y׍zO]+bgm Jxbb* *~wc,)bÎ_L#hyɨ9N}-9wCeLC+y+}`>$?#OYg-F>ZcC_jV ]JJN- K%sv AFm q`Ǐ)x"!J:y1y{^#SE2YaiyB6Hk3h,8ie4^oxQ\E]-yfd?iu5\V.0U^Su\0 )vnRܝ\f&(jMӊND-,: E ۻ![ [٩ҞDD?$'R.b= RnzHz7KHcJ=ZkǽoIy+񑧴9&aEQ۫o(>w[%qc,ei\G8:8jg4ƒ,`!;-_̣!]Կ 1Ǽvfs!C'~? v+g E.熬MZ/.doDXvp03mav.΅0%!B$i >gO+Y϶_!YnoPSqoSR("-Wom,4]g2E y\]=y+SB3.Ǜu /|hd(Ōo AAI&[鋘>~v"Qez♒O`ӳ_f#*&[nwP߂FXP|#Q (֋R`Jf:4V8Zac"A+T6/s8U\ǂ2!6IUAN!D\98CTڲc!'/Pܡd+ɰ R5=FNJS53֍|6o>4' P,,йG~USȁ Yz:? C,؄B7>b֕z9_ ba1AQBzۀXW9ˑnE MwǖB>Q>_h$LX֏.f ~&*w0k K|XοڨXjF['NFujD`Tݭ 0~EȅְZCCZyߊuLqZVZQwsʮh qq.Dr+$PɖOl8qh;\rxWq˘K@͑,'[\s:ec_?ӷ; _r} .{~[Ma<$I8SqvutJ<\tÔ%9 } _T$e,Ń/=9`,p9S%v3+`i&↎߄Nj">vt$#j.qw -ԶG ş OD.\G&c5a=􊒷:<r,FQʴR M?b&j;By+Z5~Vg[6ԟZWR ևlDn <,IwWyns>TF2CvO>4? pT˝?q%ENti*>񆅃8ʜj9VغP7{&Om͢9|DmC;*մ'k3kYmtdXUܚ:rAÈT񏠙=l}wP錉¥HAnf84V ->"}yt8wLSݖY Cjid52۶0|ArIueʻA Y֪(=%9ޝ[@PNԌŴ}r5 cD2=?T%$(m6õ}6V2nȩhwc`f@5)?g'esm(=lAA }*IZ Үt ĜZFGƶGH3tjwKaКDCu9ʐG7(p7ڼbT|\ OS}\xЅU2n?2($ɇHh~D6S/D[m|>g*O n2jFDn!>%虱s='#(NUz ~T,\Er!S27{B ZP&s8BQ8ՀVtE%>2hBӄhA['@yV`J;4 WͪOJL$xoҼ(} ,6ֆtO*&nAlo;.% h :Lur6*Jm&ܡ+]D^YC|pڐJy_?x.,jdW+J..1̻y==wz $>'xHsw  纒%cuwaЦ.ŗg zr.A3Isߧ};G8,uibY"~0#l猘&y5Q[~}]k/27<|Qq?г0b+4rnܾM&j9$~j!m AQGyLh`hVE;vu &`.'s)ti5ǔzuOgS\aWl%ݘ&e@GՂDsrkFOTMCq5p, *>@Y]ֺV n__mqLLDlȯjt@-*酹|zbײŊ77YWa٫r6ӳWm&l:cϺA]CgFDž0!`\5bv(z_~}I.kf/Zĥ,i,E}>| V1 L v_R$#U `M~`JQX.(_IGCW;0[c ːp^O.-JNL8x!698p݁(2B n_T5EU^rr[[_g:G -~[߭=m6(ʖ٠ʫQ,H*ǭ!}'Ƨ_m$g2'q͌ňoiq7`Q<:u)k Q&RjRm1I?sv~];jm.IU* Sb[V#Q(P6*]l=(6Fn`CWfK87[GKc=BIda`Zc-C2ys%XDMXV{DHOG}/. 9G}Tu17]!-D-A);Ueʡڈy*탁lCu =D5\ވu5I%,;Τ*p)JV$IٍZI 36c^u}3{vj+hɽ(uΩv.)f?~] *0U~)%#WeqS{1C;y?U"!kXt~qI7:%pЈOpK!!ڗW8ħ8 GO%J?^A/*m*5-!"*+!˻oqa& /u@ۺp­`W%2SO ido8FW9xC{ˈhy d2pFm1ک9qa(fILx5AMHYba?=ӿ}bccwdLxgi#!D4CzCx^8qHR[OQ")qJHF_N“tj0Y 鶥'o7$zaicl5ZEJL92bDٸ )BA ,5(PlPQCɱXU ?2,EfkۊJ5ijwrLީ]ZhPN+G:-=on#aQyeV eӮ2)_ UeLȜR_ ' 1S$ `gɴJ햵Sv4 - /)}NEho!]#exGA&+v5ƿ"`Vy7(hOeSш`0*0||e{_5#r 32a)'V~jv,r@h"]/; \g7p/Jt q8ȥbB@&8ic$Z0d0q]_/o^½E\Niǯ,)eyOO;`Rkq=\~ ZNIq*pUBaUW|bq\kchj'5?ckIaZOY#8S=+yED}X\<#b U8םoa\c8w hdNx,H6f264/ƃ\ǜ~ZN\cn,5p8U6Ѡ34oWb0 Lj, sx}HHŝwXL-| ,0#m;&5g~8Yg&U@+z|  n_@idœ8okdU.CDO4M7(dF"Az Ά{]D-{Cs@RJ SnņZ|_Į̏U': (N',#72%tpv=tۼ4r-<{ͥU: /&:kw2WkLV]>0x*d6:蒫I4`s<E*5BJ$t/UԚck )$MjE3b|X!eQGRLJ;eEedgt0tj tɍ $Jmk)5j rڊ6'd8"2ɜ 2%Ӆ5:CMJ-K`6~ ~6/@HƤQI XkgoW0ǃAYÂWeoULMoLnm{ظV.n+厨L6gNilw8][Fépx|R޽7w`957T|U(iO+|Q`&$B?/0T4\T@KR4I-1 Wj C U7U+tb6~(4$6<'LǑ{\[=/qJС${9l)"JJzwsnEݚ9EYaqvkF f2e W&( BcdzZ,1bQ*EmMfY8h;1$GPyO,k9Arp '* O$ұS<( ]#>ksVAdb.T,X@>X(q;¡+#9x2D  <-DO<كUb^4ɻT V86=_TJ a~_ZH g\rzFY|yKhPN?tUZB@׸"ZRJ4n^JNL^[*`dCC5e&BD2~ER8BW2bKWb-}6j OpiIr!\ͼӪI`2KF DQ>Fs6J& OGX,:[R7T:Ĭ?O}GFr+0`JԏSᰃ'_Ka9&‡pȹ|(5UN%WHJm'u\el'}󠐀z_qԲN}wҨЍ %7&4fBDo\{j9|[]h}h'i)6h$a Rw|: M4uw5O~Ďl<IBn&>V/71f^߁"}Ű jgu{xGzz( 1u.0oEԭL 뮫"w}P==Z")Q-8NN;dlr:қ&NWgJ |dF6j Pi.h7T -5ڟG>B)w\UPr~^oMS+f&U`ê <3pET/9u5Q޴d!K9Lh6vi qMEӚT*"ج. c;06ͦ, >`U[[Qq"&Y*+8Lt4oG[ ļ[۱))]4`0.=I%kX">Kz}JȕH-sՒDY1ői0rB 0Wjwk) }7* _s{[%KRVhfIf/7JNSWy¼'G Q}GHC$̛2mBq;2>@R"MJ uPL=٩F1vH::R kpT;:{`.%J-SN28ZkmIe\Ғ67QN+ }⭜"fazljBJ寨@ÒhYvTxM!ɀG+0cڣˎv~6讎ֈ4&)aQ W{9rj1᥯N3{SF`/JK]-NOGo<0Ayc|3M ů>u7!h$^S"ߋ@,Kt]; +ߟ87C0额v5 g6Y7q,X{E,; g(ՙ£яD 9ƉR Q6ѸH6YMnCM"^(%Ah`$W%GϧIaۉ'LK}.i{, gC* `I76nxāh58=dP|a9Hm+iuv90s±+r>:xǫ>]]!(H(BB9Vdtub!tIv|H8+rZRnY@M6+%xçlO+̷KU6 j4F u( 6X10@$)qL]p8oR]fee"-E[CQ(VڿD?bBꑮ =[Hb5%MXG|-tۤ.$0mUb^!Ō+xFh>NIZ-ʢ')[w{QH%4Hz%!ltoԐ0~劻~3G )-t&^~|:bc $ ]_aT/DRv>q}>ˁMPnc1ɇL*&uMGEl;5:*+aó@hPO%:?+=_ X{Ӳ 3%If2&!9b[FܾE4Aqﳃ$1Wv\.vjpEw#mzMsn..9z{BKQ(R`+p.@-.5:$Ө\fF?[uOi;Ogep[_*Xvs ^!Vj5hI>p,|?%GcJi*u|@v;zt*41S=")x,zN"Q%RcL+ *u\@"k'l"V;I92'aI |^:~^QEѪ3ԖD3ٛ{:}2!7}nh:,kKx`c`HJ~wMra3>3''$NaSy9܋vJ({XrqMP6G+mkI;T}Jm0>>}+u~׶ir" 7&:8MxԚCc C z QͿW m\܌<(Avd]d+,ג:s&ZRl^N һ'or=h{/#cVX32]!Cw*?<@ h+@Ȕ9ڧ~5o#nrg'g?1z}ZF8DJ_9B/`_mNMf=p|^zrse &,J/ 5#3W*٨nq}I_ tuC>VˣR&ڀ[q {+nOB C.ȩUafdLʏE[_^)@VGe*^WtׄvWqP* VTtyYcx*m/H a X+:3ة%?R\2!:w?S cpǔ%6%ϐ"UOjd/E9k i=ғnx12ڒ_@<&—!.\:^P`P `]#(Y~k8+>Uv(?~Y}?t*USS([8`eMD#m@wtG)ZvЖž_fN /2o;};]գ!"?U9%' ?z%"jmwП5o DRV@+,hCMbbjIh_IՔ!.H: ,CrHkumv%|dɳaLwW[@5yB߃[LP.pߔRxGk)[y]_X97  "<=EbK>ՙXeBMv T _Uʒ觴"UH[$C(yǔ@ kkRd9 2gqM7ªкa!1֙B2gm| yi*-%>wh{ֻw{h,Ul}?H 7w2$tc<Ƀ.x}WQ{ &3R '{{`0M`jz)g~6% @-ϝdjڜfӏ+ s$Efow$:,p퉬%V֑4)_1uav&7b=ckա@jŜVc'd/赥N/Y̬K1 _oN@@s"mXAc;Ŀ+5ٚeLŶF X%ށ 9BSNM[^V^K y1RI*'5in7D=Z( ^}ɧHjZb8>J~`ahm|>+]=du&OH|xc}.PvaNJD(z^B-D!xaUf2̵fKijZ]`\){A_^ŘB ?Ezv4OuyKo-4EU}ܣ-S}Ś Hƙ/:ɄWcnE(eu\H/MkzzycNV9? &H^D3oTLX5c&^?0yBHȫ F9Op%@_$ESom}nJܐ!yY#&ȄdQix5Mx6bK[ݒ໭B>|zWJ3SgMD,+"h'~8~*c9BھP/y*]IIJ!$bۛE4#;Dj-7j0ĉϳ H4vAT"|č OW3D΁@kӏ|bR%3S\gp-6 Ii^):lK)TN*<,5B2QJ~^C:Jz4a^ECNQKk}a舣6Kɬq(ݲ5ִS^fvŇ(OSDkS$ ᫆̒qZyڙa"[`|X})XX<)I1A&@Pݘ!z}d'&AUI u l=ޓ f+b*AueF*\qKn{5V"BoOf(8`; x.VwmjݞirV=b|ժw3vuL^<\l >ˡ-+53ELC@U0iz$㦘N\b㛡 QiMW3Tq{jO8?R?mR}Y:7Oc 8 mUs~dVJl[ė}pc`;M,17cA^[iK;e.xh]QT=5B—!*ς=hF"% 5gT VkޫԍYqy^3}jh1vSF㶆{xl1ԘpUۅU"k? Ŭ^K]|SҡQsd"(7o5X-B /?P>p+X* ƕqgue!uåR>;EwF9ā.z1x.[`$Cr(>>=Ꞛt'gAc׎fqgǻlAbR[!ܸTUiHQٖ8h JDsLM VZ]"aQh e$g4 k 1xFzhwrO 6ķF穙(=>7QJx##Lٲr Md S)|{׼T1#ur=Oź?ak~qjr蔎y'O,y aE'FAj2ȄlMwU!h0徻g: `H:$m QҦdFAt )eaJ $0"+`hݵV?R;"m@r_$ P03Fy9 9mMT?\U1V.jFZ-24r#CBK\1?RTfg/&o}(sd7zMiByF2z8+X3ٜ|J`|;GuZ``x˦7;^NUƖTQ׏ˊTcs{K=5D $ei=ޅ;pV(A0V6B!e ޹]sCqrʿ` ͹_i[xj7ḿiB=7}V.:Ww(˔tk30/}-믓C8$ Y4FPhWC:L裐8`;OzDSFmElՓl?uWy;s4 Ȏ {H<+JU.jKH$L?Vozk&pvh_3'M1g)_s& .5 QzeoOT; t~rU/?P`MCB'iw.G5:d-boG#Q9DM8~H8* x\,}֭CbҘE~:bmqȥ'xf)qClu_L тn`eFL.aXj@D\q38{{~}ocwRb#u>@ܹС hEX$$u#ZȜW;j9.z L|[ 8D9y:]Hj>g[tTǫr˃StJ'd[7*rd{&~ MiZ2,35\h:_ak<׎sVEt˿nPAe ,+-#,bQ&T2EgOO(,@nʃFpo곭[e_$oχG(4+6~.:4KBJ!WLRU7`րm)tO{轕e}fItZ端mҬnEV"X5δ V}R #%E.QWL9P]ˎD:ئ~%OZGqLZӗFqj_Zgk)bذRcU44 &Fs։W  0eI][NUt|1,ͫN E7&=\\}CHÇQIbIJIIpʶpZq8]LeӶZ$ b?[`峦)HJyӥrB"1mG U ZL}2zu*̯1'7S$%=&˼HY{?$FI~n.BڸKN~/s&7jǺ*q|۠V 7w#.}*ZYBjP0LjS5?c]i880ޢ#S󖧸l<#wD 4QIZ'$"82Jy7gUgAxX}K_5pMqk gF> OTt"ցl^MGS!̉a^TzN~y-YVi@tQ`0W 7OM*-j>OzV~giѡ<7ҥ:KQш?)(B Zyf!d.( gEL"C;=8a#u.6?ނ zӗ5lǾM˒wX<+ǘ[q:lERDk[T+B} |8N'.!W*jt7 t!fjIar1}<틸ȍVsaN%Uȷ3 5!HJm15Ea<8ŅWǡ?V633 7hEt-Wd i)c IS#ό8¼qn*E%h!{&ZUm*ճϩô."}$R 1]ey9,ybc悬m(50 ?s*9jDED7arYW8,ţ1awnXґ,^W1KuB"Um\w}PMqmZj|-0\Z>ca<,'EqI狊 mv*i!gɜO)FlB8'ٚ_ٚA7]ZƽG.C`oi:8xۏi,x+(D8CK;y`hwdw.HeGM)Fܝ1t iU,rV\yt𧻓 ܮqӑ0NS"a+mം #;&! ~R3uT,*mgF`[J-.49Q~MD_#\Yt콈 kCR6Ueǚ_-( XFx^^Q*soPC0u*F\V䘼pUzTm_SZ:ÇB|#:c}Fjp {Xy_4=t6r&wpA& };V*˹ &"xؑLb1IzqطܿgZԍQ1G]Սv 2_gd ߓAaJUڇj:irW}N]|9yxB7Su>kRX?ـ4e7%ɔ$vK{%;儊)]̤'?g\be9À.l&Ĕr'r4o:%o;LjY4VDQﴀڕim%ϕ1 / q2"'͍tޕɅ;^[¹6eeOY ǛclE> +K.?s.m2,VFcUaˆ{Ha2*^ 3652gR{,#$D,,Y/TK#_ \2V aJΖ@֨à :48HϚkpY -5c„@GApe __PXOmHLP6/Sl%(5: *ʓ 00yTBƌJ1njT"Z{櫉+V(2@b-66ˠFԵeLS%zf[F%B5)+=K&,dD:`Opc1x_<('&'z?X ,u;[3iwcOz,D4}J^> C*0rxAR4oʯy5G턴h"[eg …, o}ƾ-D@Vn(k-j X{J)͂a#>PJfL`V(%)$F)C XUhfᘐ:BfZBw' .zFp*hBNa8p{o^i}LL%myj?`0lUd+&6ᾚUJNڼv.e:`<}(eB4{0`q7J#j8o4T]eL%ڏE{;떿kd7A_h>p'A} hp'nk=C2⒪{=%~cƝ5#qIf6HE>x}˜!U1TGPa# vxQ*䞼M„/L,[Z+PfBqծܣޤ}u.I퓭|j%wѭ8o|î8??6T5KF0W1#V}a]-|̪߁Z 'P`@9jr+c=@21^VK0.h*wT(Y :mTRzr6Mj'iMػmdO tG~XumjH#)}}!p29U6ry{(k{x6:D'&`0di!PIarchiIÜ:38#A-Lv}sb}yn}Ey$JE@?VfE)vZ07&2f\Rn#1 e\ƛ0RtN: 3L[xxvBkT !~[ܻ, |Ӌ5AUnmKVi}2RRbg~wsz74 n:!es}hr戄2'&?,йX4iLP&_II~v~ք{>I ݒyA ghwz仇R ģ^¹6uˊ'4}& BC#\l"VS.mL:sԎ0Bc|!nk`2hS!c99[Jn( Nz<=QV?fcgA+Han!.A)$2N{z)! Sxej, 'l{kz-Ͱ@Xi[ceVhXvSn@'" H@}G"QCq&$sހhCÇu` ǭ2 LtMkmҋ,UnƢ/i^ 7K3(O[Ytإh@ޜ~2Ϛ EˌCJWмvZ0p6z[5u-@A՛X+~Tyb!3~( [.VsR8I>)٠KϙИT&dV5ǹ놪J<lF WMtjF cbPAsJ1+ar}㠪)ꡇIW+IF)s|t32 %}?O<*< V6[iV9g~)qNw,ƚ9|:f~$fKzt tV0Pvg!?G7%ּvXsɀ)$C(n s֊= D?d$I* Ki%DIO 1};%= R*-nᎢ$dMCE$A?Oa2v=]Ya $K8ڸ"VXH4ѯrHu1mx{:.~σv+ɖ„Nl{!mOl_%O6=Ls5l~if t:GY" ux~ ILCj֥*uV9vDSQFo+BC&V䚝 ;N>m9e&h]% (;RLU]nG/5AVpT5}속c?萔&W7Ʒ-j"G^u بB)?+X# 8r=H lضH85^,^j6HHN.i0EKк'ԛRĮ[эنV89!Lˢ\^[7gN8˩)zpqn L(z{vd|Q$mj3RC!pEuP,蔅do%}.mu1a=ǫ8[)w{WǁPu?$kу 1h x\L%Ẍ߻}:ٿ_]Ι.c&{{cRǎM3Z&C]A+٤5. &1S^B8J0FjgnfpJJⶺc_f*%X4h7[S]D8?)é=+UտL؄]H)oZ.d $փ|' wvak*r و[R=3KHg&soF>v-1 q]Uq!䑚LJV l|.BVOxKVdlɦzvP<)__\}mO\7(w[fuU~vs[PfiV3J^BGl|榹y&Q;id;vKhrD4Ej _6 L;uDD|¢"fĝ"?bzK٥giibڲdz4mA 0f.~_^⤈z- 4`Q)t@@("uv ْ}j"yª1_cr=}o0 ZMďH,Ex`qktDAמUcEh~\Ibhw&&$YSrO=W%WAxjS(!0M4S}7a :\;"U.m0TO"+ܡX_=ΕF3x%o@|wt@sNX{a&X3|lwa?xk/KxiXF*'% d:d?`{t]SkROb*~Gi.%ߔLFD)mr&Y[j!i޵1IS@CZ ; .- \h&|~vRSEXOb wA(t67iUMlN T2Y]qw[lo[O`teuO:%+ƝA?h8%̇ZrmֹSMt_;oC g|4Ɯ᯶IyX tJ~ȍ)Y(TIs,9vJ#~#*K=ڡ~*{FSDC-5e} ŔZZ[P1}-4.lhXfa|/BASS&W2-4zo)QX`v[sZzR O |yܖH'ג:E%Fs@vdB5[̋:hIw-SyuQ {FKE4 KwBJqm("t Āx~#Y[]o((ҺD}X]Y#h}/oW3ɭP3M͈&Ls'bQlZMz;rM63Qt ǝj.49\ v GR S.EOHTho_z8 &PC<޽YFm]h̝X&X9D2^JTވ+#k>mb/{"ΓaPO/ *xe&E錇mT."za𕵽#FWʹSSa[&47he 7V1Z 0U+]n<'tcSH?/٫c3̺Q%涟OH qb#oȐ߈tRcpx=1o(. mz=PsH=du>$:Ds@tyqXs7{`V85` c{脢aC_=)&px:^5Z'JY.Sa+R|Ob I'f;s÷qw|x}6]!>2h%x֗Sycr)iWwIi'Y:TaMi Q aFR13U֣d(+q9m?4teOZ$h`eyjꨦn|1c nm Y3#gu S1"XΥ5wuHW8ЂV#vwғm-|Z[a2TQS||J:>,[CED#]ÈG[דD//=5i3Cpk,_: Z'$H:J>Ip4@3;&CLɇ:!0Wy-ds5<v.bQܒ'GE_aˉ4^ [xMTcP0%媬CbGUXRY*,/">c_sglK- vVr@x&0MiǍgMw% sǜ{Wm[\U֋}8?њR'䚴Bp6`F>]tĐ %ZRaWzP_NbD5bzINFo-L;R FaxL"~yEb8$2OJ'k;!R!*1vlgU,ٶ^SOKȺ:C%_N_d׏"YםۯwXHRbFJ\p ^L]MDŚ༣xmk @; 栾yn9fc3#g=3۔+ae̒'$XK-/ K Q1g|pVaT$p9]Է],Lk^sOWu ~Bt5"Vu+Y2thh ]M!8I%,Lp%byvV ܷDsd[SǑq[9|/J^Xb܉B9?oC.L>! +{p|1sCp(`BtvQ/#,X焋kskHRnVG2M"\P:{^/za0ξFs c1wPmB6ј|rdDb(kr}R:XRJ(yVf2Js@Q=ɺqb2BIwĩzhJSPaNh'B.PճW5YVEey-'}ז孶9ex N}lG̻PL U;BL5jg)ْtfcu.;z,D/"@2(T{ke3p>>E~9vSUG1},|ow.O# SJ ju@%yk!oӓ]Im1p4k{'VDs8ڌ U[P)_ޚuAZq@:}jΐ_>fnX+"K0 |3U\6{tȣ[[+n @ NJЋb7-"ߑ>uWşg'pIKt)z]g=2*&ʉA<./[Qj˃zRe>Ҭ?Gk_OdaVZRQECITZY;0v :)![Xщc w 0=*>N&&p*`2G6ى i %-bWλ2L`]p lSCNDW j BR@%ꑫJx@ =@5:j{|&Rbk;XjDݫ.? mz- a `,aϧ%tx 827i)핌R[(S|Qڣ'&QuY9JiWN;YO9z̵ '.{ 省H.> O ݹ&Wi 0NÅ;6im8eC;#c{N6=hJ@(5* "i$>\g'z2Z[4Ll~ibv8= Ub}'"(Cf7H,wѫ9{2cz::ui"Ep{n%y Ѡ%Y0 j66ZLu<m,z#] @qtpiqѠ oun-=8t95Ma(vVRNG)yr0 5Ui!~Ԛя4<ówo 4(!VI>{ɵE v]M.8ƿjϑxZ|Xݿ ʨg:T IaO+*sۥF B'1YA8ζG@)ݬz|gp8+:Yz pu=JDEG)'D=Ӊ YѴ0oЁQ3yr@v PL 'oݨZ(]d5b1\v_l##ԩM%s<+Nҁi|;e1H6(|oUKZ;s0yBW/tQ~$.B7ǵL."kJAiu-{?jqGiL:`t-.`6_}wRe~þ'ZfG|7wB$!D A}b3^yqs..#vqEic;@]?HaaMwr}RM J/)wq`T4+{C(W쫰ny2(LlƿrBkF|[U7hE&}`]0͉b!1䆮xh]0hFe/%uÌ[!.BUP1qi[A4M" )ճwPfa P2bԔbno<@7zm|<V*}l 63B0 w9}(uWЌHT~% Cv>o ̹,N &HױQک?CI'IvE=X:Fr KVt_?8.@- 6XyM=1JLZ-+ aY`P{Op+g/\-l[ypCp߭ O4 ݭ`ugjLaL_%EXY5`Go W xrRD4PWibE©Km$u)*'ձplL*]˞rvL?N,!EHKZ-TAنUX?>[r{oƆEj=l@Ӽt(VXė{oV1s $B3T**/ {pSL$q݆BKX٣">Q`NV"HbTC:j[FEJl=}%y'd:[EGu\YfHHjQ'`3C{Qt=Bl{eS< ض ˃'~%υ+RHz()\a  z{_l;QB/ QQ <X#TECsH׊dpFUоPP1rO\'mPM?Џ щW:kFo'ːҥE$zcYd kQYB,^O3#|5I؋tjm Zҫ5C1kE Aڛԟ}+&~JeJqb{ޟVž@{Se,3/_W!/vP'(5kA|o UL(KF~?V2"E)>һ*W~z8& ײ@P^F>;HFaQΘxk m|kgD(tgOu&ѴϪ]89*r Vp䱸ipX$pƱ9k%_\oQh2[p "U9 DiT9~BX4=u,'6+R 'CLpU;}𺏞TƎUC2'ÛQb~`ސw$6]AIjr|Pn9cw}I0B|2(c8`u6}͌*b(A\%iϚ!f5]]BDk@৅C)\k E1  sP<BLHtEV{H*9#4ZeĦ}/Wo4G.T6W]{%z/7{sNȋֿ rgTjY '8;6mNR = Rg?{:T(qƿ;VF`X= Qln ;r7Ӟ k=qEa8\رQ-μL'|K9c 5bؚ}>y|GNh[}_6dܯkd B{y1p38u9y49c[x1GPeu(j*W$EԻDp|CCH;@N]qKs׷Fz:My1{p?#jL{D^u4@!*U};vF(y͎))Ni3Ոヘɐ[-WIʲ5O>f%Eg@ jWkґ~jdUg2bX'\9g=޴ފ|" vc;ų;)N}2Wס|40yJ_)p(Pn7~B` <Ն a'D^KsEuPpcxR:ꆌAPD8oB}|Կ+\Gk\ ,ӌ(lBhk&? 1L(UpVO!/B]<]Z!HXY'S W-=oLOԭoʁ\ ]=U/ILl޻@%ח.Urd쯕·kO dM 9x/1-U龞jw.^Pp/^& / RwgQAhY߂8s@ T_-'nM yYEI%k\bZuT@% OO9DGW/.Cc5mxYY#_0Hi5Oeh/K/FP:̌uvV=/W(S4 -W0aSֽXJ.?H>Uk.%/4aQv(ʽ, r Z.̀c8Sȓ UpV*C&-^J!"$g8\ tbڌx/,YgIR^#|_VkL3rPħqRFe_Bt1zoﯰbE^ұ/uYRSD$o'W=dz&]HO"OzRp4&d<ĮO b `ҏ[ċ=B^B҃rۚ#,_s8Ƨ譌HVwҁٹo4& bM@<>" l%ҫ[B: ?\IF;r$z o ;q,n!q?j8/f!IB*;n+',,YD@#q(Ж=A)WjA) .7xv= (Mt {M];AUV9VGqPI$P&`OΧ {!N6#Q0U#RL@;NTPڶ12xU[=Dj]Zn O;m(ݓ[ӯ2D-q:HPe=MwGLQ3dό+3r՘wz_ZG}AÐAWC>nfzm~DTҰSYNnRt]j"S^َPh0iPO,!7peol,/F[ J^Z5Mz:\q.J5/ӪseZS/A7m)Ց0RDы~uOq#2 L%7o$Z^ٻL :ǵw%b65!7/wux7)>9n;eN7ނ\F#G?Nj P%4>N;dlIRz }E1O~}s7.U\C24x")\ Uw HwױA!{OYēH- Nm 0ZiGQBנUIa!d/5? $®D&? |ĖK(:'8 b:%C,L;u.uh3,5L@=>98S*\AQ`Ki k:^Ld [qSui @w"5P>XV呡 W'Eéx?uR_i}{dGOOApz Fŀث "aB<)$IHZ}$3mW :(kQ<`5x2m1?4T\-e28ED1}L/`<"p6\VjA#I|Ly;/rJˬ[".=f2PTԂ%񴚆i2I ".xNg;.S3Xx2Hx5iTB;$fpۜ_57VwvՆ;`[lWIXU#WI!*)jj0!j%J/LάW'V:{>IOS4Fw) m! IaqBPqD-Oϖb_1t[2q0V|^}8ุM76KD'T~+\wax/+\Y~O0m*U+!: ?'~+)X`S`ᖡpyuYٸ:pȠXt nсace`G3{WoOQɣt_lvJ[B;XP"wgA6L# ܳ ~ 7Cᬹ-u}Gb Ā$ie%zVb‚TcJhYJ9%TԨb/nLY󢢖@ { 94@U ^,QE28˸:m%Y1 V8 wK:ےΌK|};-:Nګ:˜gxZ rbHxfkpΈsfwWRC?%X>SeYgy<{DL9?R@\ zAp'/DM~ܘ=HXoHdqU}xh}n=#DS*`.?C~C|JNݴW#HIŚOanwX+LK)&.ۯbF"5dY6|}#/tA{s^3Hαp@ʬ2tZwgMA>!:Ĺi\;sp8Ĕd=86۷T㍸Hڠ/ 6orj9l7#0(<*ae&vo &]"&  2򷩍u_A ^20ՌUHcj ' xKF+j"mi2I ͦM.^ҿa]dejpvgY7hp^hxnv38|z@e^ˇ /BZ)L@ãϷ 1.s5{[$Hq%A7]V0SĄ Iy/uzDLrse;|; Zc2:A-.s׏;J{ӷ*m3C6 g1/"l'eΉa'ڹrKS #<[ՔG%|83鎽ȚaI_6L^<=!z+QC xgN'+SD~rnֆx!WYQN:jSb=XdK%%Q8cg,,S8"lK9!}jUTYҏ:fo2]͇^)s K0>D=5) ,;Qͅ95Fq%rZ1mHy}&!iߞ%kQlK!˸>/Z {"N R|Jaw2b`/WƐ.$N/,~zG=~˙Эk#IxIuZzjzbMfbmQ.քd-3Y9ܼhVNzY +Z5O<ٹIAigd'$o\? BZOHǰ8ʸflU FhfYWT?֎[0OHxAFeKHI TXɳO;ᑔC6g`ʿT/wh.gzX}$d͉&r&U]T@-p0>+^bsu#c5y4 zkfTEu͗15j<[ul5:e fJXzW*.;"9 LgRF/2-;C~s ՌF«T7`UhJn}PA?̷Pc/v##xĜ<}ng{axKG\*@63zX<2!Ϗހtwč.;4N1$Օ >=wLu&Dr'z | oQC͖ѥ|pIX}KJq)e${ o4cOffGv-p>;yRfdVd;ޫ|(ADH,<_V'7Nbj< kIβ U4αv3O <锰t+ aF*Ev>b?f6mI&fH2lh; =J~|$T2~2ifzŔ度\l kE-S:JkNOْ&9XL3LBs o*(מ{|FVX,rP՚J8>+M MiʮUT]{wӱrkַD-&mIZ$w$g7sFЎ^p1&4$䲔sG6r/e!mR03ӞnCU@tQoLeZ #82]DŽ\2HwXYNNr/' n/& %d2Ipm1Kp$Tn' nUN|L^1VTh_ӝK_3?0KE!߬(KEXyUUxjJ;w'%&nK]KYC ,#8N!X ЌOdjE-C|L0~\(8`vS6}yٝS:y QՆ4)CZG7<[(f(0go }Y'#8tws '(?tq <LB`3J?*B[j_(@D1l|31F6hpOXE#Nr3v~ᅧJz\\:H*PDS)^9d3C*/Lg a-*v601IF9)SԀò-nO?ɴc=>/q+H87܃K!pcel|Lv ^';i3Ӄo _oWdBbyqқ?0O}='*?M( `0V.P_ThGwkꌚhºϕ]%0-'"5?vpWy$qj,[E?Ѵ) ̾$#{nIť0Je0G<|Y3E$51ބKi(*=o#TN79l4ST!lkϙySB;wD:d i{HaыiVRyIk&eO pslj̐_OWϱ‹KzW^{U~m<2+k:Lɉؓ'RdervKX.!BQ~DFRH0UC7ߥEp wXE| Y:pu:}JTϴM. 8& 3$Յ<.B4vU'!ғʜfGNWvqH^L\eR3,6Ot1[Ra(R^*[iy4V6V8oAoH/e8#Z5sRb3D&T8*g\|D$e+8KAZV| C6ok3,/ִ8pӻ*Ѹ Z[i5*NJx/>~E\}-x>w\2Bxe7@.J ^kFgVx=ѨZK;de>Y4Db{@gL^_ݭ{3Kt5?:_ uG>)NX"ɇa"LY쉾 w[08Uu]^gR!{/9XILE`("KgEnҘ; p޸Fp~Mş, ͈5v?gBn $@S:Bv*W +V8нf;!ru%z~O!8!eA+*%4*"*"=A*DߏO#XRUC>Nb7E]yNDӛRKܪ)IOԺFlZ?Tlл F"UxNov#ሕY nu)/>}W~nX([ A9X$g­Q3eOcn-,=FM?aF aw U \ng{F-Yw9m)j/>oGӥ_jYcK 8/ڼlIcy#y0ld FFj "Z?Kpe blL~ j =9zwmG7xM՗G)O0# >` uIK4] J^ު 7\DA(,9D ) j0p/ ܍KPQ|} ѦYIF[:'oEMFt?u_aϨW?s -q[ҋ=VpN!GPOv\V3Xtgr_pFwn);μz3WdP//6A քd*Ljӷiz,E<> Q 2ÂbzG:y%J&ɨ? "{&"5&BN&Gd7ϰVHDMuѩ0E۽LEBR(?&)U"[$\Go&FMԒ% EuJShayMHЕ#4,󌾸\eOܳ |hv9=h`:x{,P^Gu߽kUFXG4Ẳ* q.saȚLȯdz{GYNq+sH6e^niǞ],(N-ǎpdQ0xQVoNP规=h| 2r3# 3Aܩ?FS)T"ok`K(YJ'jbȮw#ih?6qiЧ2L2V'5t&R&b'>%@p& FTzBm~H$x@Gѵ::=hC-U\#5IfgN*H몡U۾\8SR&$A }GTl[->ߛ":k]{;j#ay}A[o-V Lm#EXitd=<͇HʏR JBp؜}D|X:hچx|XMj `&tX/=Z+?6 rQȟu2ɺ(Ia- &21(wJ OI ``Kjτ=&UƂAѫ>HwnCPCZ3`*)U5>_ٸDY\;2 W|CYK|LfKjWSf? K?@#:)7ffD&;pQ'*3f\jbDܟB1oiFkWCA&RYƐ)tNnTޒXS$\meM%T.,r62|ӱDv"`^GPΗT Aȉr-Z kX+ЂL֙S7[2ޖ%pTB<}<Wq}E>| LzS .pDW8 C>ze]'H? # "G>ka|:C3ңg6y2 ˒,ykńâb;o qg=)F&LMۑIFWqSt\Ÿ4LBڕǺPN(e. L圃)3J `DWD@m""p"؊_w7wW&%OڳoPG<]VZ༇N*F#^EOCsRnٲ qVP|Eloׁ+5T⛚ oa_sK#ȟUHE=S:܊4|ΪOPUH;4暺jP@k $Q`"Pr8-bV>< qŠ,n*F0=5Axwj 7ɻG=@LogjSyg ]GvNu6Gh)44y#&Rs՜jq+gm\tJGHlcs1ztZ. :W+NVzEK}uЦs+M r~TH ?sJwb`#"v-ԼJihOðx \m66)ӄI8}cbB°YTMCn9W VXʟ)H?=Ǵ7OGٚ ˿?SsrJ8 hL.|PN,ގ|@*Rg!UEַjqď&.tq Mde>B~cm=%A2"$aOGSf|!sƽÔDEn2,o7̜ ItJ_| 99'#'|cnU:c[83&! OY(\H̶Zn҉o>9KMTŖjsq97 n)pƦс75x"̑zJ4VX-+3$ӓh7T$vC'sZ3~r R۽=.'mg {}Oԗ2'TpLoaFR=! i|pӂ=TV-|Ad"Gqq,.TBf2qnR`CkaQa3U4/섢"X#B58%fK<ARrRCsJHhidi%H P3Y%Q,UR-`v`w[O}SiܐTy@nFfD!5*C>7t)zvx AW:.ױ9D9Hi@xdͣ9itU4>ԋNS: BnX-/8IS٦Xך3HdMCA/PZSU UV`"rsuQkG'>v,˿4T]'Cݿƃ*k:pft%4_QJ(EAzD&x~LTEGE>D}Gpb+fHNJeL"kɽIcXX~ApF9Ginwh}5131@ʾ$p%\[oym3]MEK& =!~=-7 4'F ޴y)y8"X;|Pl,a%/ݷ׊\ƙq% jS#tx@XHoçŨ=DV?W5;x]1*Y›*z$ni4gwgoǜ\?N + 3q<),N ݸ`cxۮ!/_GcN1| ¥g4a%vfQDG3(pW/MKYJ]n^)$Hʈ!ڰc1o;F~rd0#+#,ٜk3C`аJPu7j_W;C)Ug$LPV W''5\Ilۋƽ^[,l+ Gn_,-=j!X^ 9p}BU=3Vvx#Tq 궫3 Gf֧ftaZ梯;ӎrI ݔk RJjTI* d0j*S"A;P_ [nWyL`n+`o\&jnbN+=;V滳ԤnHk:Tb-hV+ۭb?|cZ,dտEn|; ;2@JLx߃x_"ZL ciŴMMW }QcH*hZݜWd--Ɉ!??Wva:0hi}oZui ^u5*:WJkGޢ3Oj' %f= Y{6?_mLfb ѩ8 bؾ)2(ID ~_6Sʸ鉛jŶɉj)3p QZ[@W$DVHeo=,滭'[6"43BzvCFcx.gx;"ctStHK no^|IO$e c1M:}\]Ċ"1&e!W̜<%=nk߅BeS2Blqh& e5[E̷zY;e=͘]Nօ &Uj,ZY L[΄ ;p ,eI 8}| !]&~u>LpHQ9^Aa)/{]SNWRʪc)69Dus@Gf0cd0  E]?D} `[/m/]s?U-3Fvgv\2cwssG,6: /tTߖ_\N=; ϶xh8[=^/ZEZe%`#õQB6L @?`=Hp$˗⶟i7OM;ԍuXlp! 6+`aЃTW|P,_l/mn +mwP hF4򬎂*SyׅGX KiQ~xh Y0;V!tGQ3K9rY#"%h&//O_$K@G?Eb;gZ04TI%QGZ[̽oO`h$W  ͣ) } +?}̸֢IS[Ya[ qJU2b B[>0ua78iduuXw4mkƒ$?dp|c^fGa6v*wRZyc!jJA r%1&CkMZ/MN{Rq{I|e -i,٤tb;lev6%T"I*SERe| ʇ, |uxIvB [ EQWC_ŲȏBA~3|0 ;.R?붍Uͻ F'gDΠ *x-yZ,;q1Njx%sCcbfm>6%~ ]Qmy0gBÓ￰)kƻ'xD@Ja'LRvCv:k˾w4!q0plc{e:䒶硽p{H4hDSaf Z)oaS3G/\ -)ե-c]Jb$npTnaIy3RU*|#/Wz <~)} BeBtToq0&q1RAFSRM:#$k'*R?OvޢOXLQ۲_h#b#ŬE]`ƭC}u2?ʍ3e?vj6ѫzI%,#.p .M@:a:sՋRq"0~߂^Y d0"bQXVN%b*s'@]"/C[}"Y;;KR>ЩFVCB3.14VHqa8,kźd`"fb*2?c(5^_,+ʢl(U;#)yM O=bl$=I{EqЃi};멋'pj-oכ7c_]m,/P.*p-uLPlC=CwsBypdp@43X/(ζnVl-AoOOtRE ZQ'u-;|o,CY^DfYz0 ~!Gr&ȱc6B]a|c0 7HОԀ8~Kt)hlgeYn"?YwS?,&Iڳ8%h͓'p>m}ܴ-[[U~xJW<Jmuja~|8&G^PpЂ;T kɾ2ځ9:8I<-c8~;o: Swhviҩ`2kK}yғM HU5sF %8' ,X8!36C,p^VFmyrP381_$~4u:!h&Ҁ\@S陇isZ9nR`2_ h)E5ƌDJ|ڊO%}ARF(7i0;M$k_ً4-AsӚk7N7xJg~X̵P?AJ. uFj-('BɺS NPWΠB.uQ󗡵.=8Ũ;%^Şd/bQBN_3px$ΐcB9j4q iC/ ⮀KʉK2SFILV+@յA݂s_8/.CT;Ab>t?Q:q9B9z h> <#Qer4V &؆KK|  ]3FKa矸a_ &VnB3cdzilֶԗFo;1 ?Q/Èw-~7Š+Cyz%H}&(r6q(~9&RqyWG a(y| G+7܆Ih))>N UO&*[tT `M=^|[2{¥4@qjwVߏ8VȹNyYڙ27c vVαVj8WXh7H> ;xkq6CZ6DBEC#XIM1TRhHƿEye%a3¾}mF+W=vl,GO & z:;ų,%Lr@2bqs p,ĴX&֪E23{K +>_5m#-KB -n{b,7(7yqj76-B_c,u&p: Xz[!>Յ(bOJ+ ڊo^5,2Q0 Ns=14 8N;]Ԍ, G6PR))Ehsd2w`}>n#.$s]RVpo+9ن H<(&N#_c Ep/Szк;>(qjTH:\Ȝ1FJDb?Ǻyb]m@zP|Z:= 5k%^Q 2vkV{Á.𸋝 Si-haN3(h6B2C^kރ BBZthAtܭ#Lsp 8ck*&0R)N |1LдLV|oO)2]bZfA?L[X-ӡ`Ȓp;`n#^XvCܣK=d QY 2lD)5/z;i`4)l/}GiZeA+˱I]BX[J*UX;sXe H,sڕɠ~ @JYX pƇip ɣ'e\l٦tн%PH@$5Oo&cIcH?iE#Į}N*PK NnB)xEWyXS*=ڈׄgτa.f1;Z_Yo1y5+ a *aq3ﭴ*76icyLHL |6\ #zAQFI|tU^x(4ƒ|z$ρ@"E6#ĀN^u'>Q:໻(y[༕ꑫnxEZ41ڍ/[Ez'R%XpnM b;#. ĆuZ`ZR6NGD7ohtSy(@iߝ۵]#F_˘}Jym[2_;!Yi.J=V4ַ?22ӟ2zUr5ޱfy6@twMЀ V٥@žB$* K fDɶvjdmo#T+#lڶ=r?Ӈҫ߸rMHQsA:k&S htd;qL4 ZOK]"!!Ů`X uZ&}莒qlI [KX{dKPh5u-f$Zz\?:}[d4] Q}4׮& Rn@P} VJ%.PHT x0E w:t~zȬ-㼐Y 6ka0.Tɛ/i)kKD//wq'؛y[(k ]͞~0xazR~@.N`ݶ,9g4u{RjjϫXx]j܄M;o= Zcج{s}G_-=TQnK^SB3yt-2d|yhUC8"gd5(6Zp>Зp1pOs rl(hl*Ѣs7<C'ݰ:(d>#g @@<5p r]H2S.vٵ8tvY54v¼>[laQ!$iS3x֎ \(lKg@ $E0_u/." D}HZN#ݨ1S昧2f"L⩻s&^Hh䭰%f>bW s'=:-Z"^k-,D=5ou&c›)c,0<4_ٙ:T@$)U&H V]1Rxdy5I"yGĄ7:mhj8$d-iѐUԈ"l:HԾqffn-c/x n뷏rz_Hjtb%VqBkj)eF+YU01{ {iAnIM.dqvk(o ˶U[|Y/Gkiues@veNNmW:?&yڝ 2:/yayQpN^rD;Of' xwDOXcjQ{`dx_a $ywO ~A7XwM)4+&u_h6X 6k`CRTw}iN: >n! xb2 lV`J6%&7>z]m4؂S鸖^H+Ite9P..b\3VO9omc,!doJ5-{=iɁ&V*yrg#lό3j8P0yg/ 7ZmľtG-N6Fe)NĒ㞵u מzBăDLO-)?(EC#jBv4JۖV'ՙrXhPk'hӆal<1kn)AE1st߁TGNB4 ww=*vCYYC,Ɂِ^]F`cYU%#_Pj>E _Itjb@ֱ͎^/) +g#@ڌd=vQ&'9)lN.E}bF)}N/V`Կs!-M2W+lFh,pfW?l(ƋK@Mle _ٙo= n&kPȗ/9kOK-˩k!K)hNNέKP|_ 2FTMt[ߖ ARv<&%>-zI#%$,ԁ}m`$vn&KO,yX^Y!u U]PH=xTpľ͒ROFޤag6KTuo e߽Uov[xpvlݥyUA EM2z/phOFd3É9Orņqkw;O4"o㈭+ZVy,ec/FZ7cn 6,`M0C2pfՖŐGu 3r/2 7+=fQΫN\AbVuпdp)ӾOA@h"0[tF).}9e$Oj˄,Y<"y#~=cY79Pdlastn3]vItrmhX^=lu[L=Sy~J6k;%G!:@Al^[h(,r]q ßACXqųPo$"DH4'-kME2-c YE0eqؑ`wc \~'E#N&f+43 0N<s zCoR^,~L:6xz%=n8Ka;lM9F`L-h Z񾖕"}pSj0fCf_Z4++7<I:F̒W/"]U+~L̔GrV$[i zI ΉyL` QF'ƫglȋPDh2]|i$k!s\ } W,]ݮ]\ᗜyYwPXIm0-N"&3sߚ:幫i} RBTZme".GtV2RIZzwmvkQQꏷzϯ[o'#{*? D2R" !6&1@+"ApGZmybj]$k˹z&ӝKx'oB8*`~ 1w79q>#Ƥ22T3!͞m1*v?x-TՖ8 c˞rj޺Lcфd1 u` ,{4*.@/X@cgރ dBnG SyDަ8y34.j5tRpf"Fa) ɊV 3brڷK$YH_DžWy l"/..褗QE^qF1u#v.b^Vcw^QNu[Bް@LjvK;O1o s2!Y3Z("P&ҍ P\cU?z"O{\F1>Jv4WkVQ($G7>fOIKH[/ap7jwɋ ~Q1r+H "S7[&3Cfhɽ>6 05P?geFu(}Zj`)9^0'ƚ;R89Oq#a0swk6T('U}y!jN4LfG3DOkUW4~{"T<&g szzH(&Re μIIٔfB?Ee浵ʅ'$miiMąFt ];lc h{_L3-W887fTyK7p \/ wۖ)JDi 4:3U*"79 ž=O(\ˆUOU|QJ%1v]ȷ$C>x })]fIg]|D]a8TsEC:'=.0J~GW '%=tW7M,{ߗ1{"iqE ;fBK:VxwgĨiPO̿O*cѳW1x>XJWTAjrI?p}}F!A}[#RY = ,'?wdnnڇ ';=< 8'(&}Y#ZeDLva=oq!-'7I#I1ҕx(R 锋?1jܒit͢g)79kYoBz@[`Zԩ %x|TۮpU03#. u*$C6 V-oz7GK.&\=Pj͓֛erJtM:E[ nԀϗ D(pgTāfp3^(֝=\@qN:T<&K au}NR}KۿU dCXM;`]nK8Իq5ϰ (/jccY~9ɫF (>/^̬ZN?en5f- <5&A`5FSV W:mK`X?K|X2TtJX?v榝_esGhи1ݞItL.F3cQ)_L&W>.no48rOM-hSh;l :iJTic$Zc%k r2(ЄHMdodBG},◤A%ʹfXOQ1cG6hnC @o;a@a[QP̆.୭ 3 ĄRx%6?]<{p\=3I>ST0U8v i3Υ_ZY&Y#\I=R/5jj_J$V Dhӝ=${2Ou&D{/j3m[Xs]ռrcva'mkVsrL 4.A딗IN}>QYҩC7k6kɣ:Zdt0۩`PtԱϑ{gx*.Y? Cv_쑙90İ&N4F 0^.Zrpݢ&k$YP#쯴G#"DS<n=VY$cHɠ: RY#D, L8Ρ,%Ym/*Ժ13en[ucvA&H =\X19s#- f( iDgTu%/E}-/ɉW0f3"z Kf*S<)wK^q#Th6Qu|X'mB$5\QѾ}s$H_]/n}ș%oBl"Qщ&`LOQajQT[}}˷!jk/%0⯂?1E]k73ȓEѬr^&bW[mZwfЌN=Wb8U&0~B _Te\"dRr2} 0DZ?ꍕ5,x4煵?_zOOS=QB}(t뫾GjJ8fBj, H8C,,k0h(3`0DB: jn\5xBޔKB=I3gȲZ ]%qZ"RRmlP7weʬ4_D:GGn9"yyMNGpǃ@(\ U6\aBϜ2&nP1"-z>ɈBnMʚ2)hP庖b?M5w6ѡuU{ӄiV0xlL@zSf%˥X0Gy[C_cW2 W>Blpe⛁B$v{zG9и%XI?^?[{ckcdGۡOE 0kN+qWTk :զ+HiO,zR/`T{Z%I;:vh3 hlhIUCz.KD pIGݿ$S􂇱 TϒeY44֧L0UU"̲~yPYdD<*W]|`ɂ~v}2]12Ȕ ,@hb!ŜC^P=L k' _*P4&o"[ֈz] y$ SX;H):z (yBLZX*k<`2Ѕ!}R˺w"X%&Sqn)ӽ"3X6&eS-Nby,!jJX۠ /൘xyĦ}rlodIIzv [r!o&63l$K."4Xx&p`My+z+ GiA> [< <1E#ѹ]RA5߬_5.s">ˢ/VQOs)؟(4J yUYr~$ OJ|2UHeN 3d!ADVn$/utHDA +Dt7YB r"s훲huEw Ls"~ᶢ7!'Y#L?3Ί:ynZ'nt [r4,s{m*ĚLK͏I'"z{mA~o+DVkM7XL*H06dj?tKJ3\}ф526Mdբ!|pΒ ⎬B-nIUQE_Xfp9.DbY;CƧnY7pq%~.$l Husb!`6̔\6"?Q4"@vMn +ڠ~5kیE_r.<$ v?+>/G{4qƆ CZor*m<6~(O :D(0#­;*xYЬAPzt~>K:<)(' px./.ڒbKzr5sXR/˦3U4 Q2mz O)7˕?;:qb+Eqe%jCU-dJկS8[ꕤݗ(g~cR 2n~T]6MkCvqM:^Pj`nhq}~erz դ_:6*z ѻ=\2Nk!qiO2dxgW0c\jPtxTL dzq>v"HhӒjX8Q`Jt DaW~ ;e%PCe?;785'uDlݣ`c럴N]A}zӾCx]&\#U`NY$yT0ˤAnV_er,\!1N,yB{%gRq"z+~UY 1. ')GŹAoU YF JRN7܏F% v =臗S. iB!N!Dzӫ5gt +$AktVc#gf;YK;Pp]! DFBگ, aʹͩdLN(]5ʂxaZoʤA,;hEc$;inIVcs{k4ԫl@gKɌK i%{X{Ki=Yh;8#+g ~7Ϩ}Ңnle NƋGޜo/Lk^Dm`YyApIQP:mKKZ] 8u-I!1zYUO?]~8Mwoe4բ!BTܮ EpK(ჯΊi@*`lS/,imnGm5/gvU?d+Gg800LOAjY" 毅[ayM M^%H|P=.Oj;`B(͑hGBn[٢OwVj9sFy*UCj@u86M11+`1)ѽ8g߽k#y[Eεfg%H6 O $yπ,Ձ2׎uzRœLЬ)OFu1:当;NѶfT,]ϒ.՝S#\gѧ͈_7l+N!XcNIPEp3FB.o^?O:? K0%@i<_.`tZ a-iߵp )U^ЂE8~l>NalWrj\J~`My顅! WkaO1I[`e0(k)7?6,<iɘLbr܈ TVrw0]|DvzLv&}L(b{CoJF $n[smfiM719a/Tj6ׄ eE`vCQJ !?=[YvmBc~PGl5ҫ|E&Ղ$y',J7} <`ㅅ4? U":|6Z LBbN>O8b|dؔL)'6z:?Sj-XIr'!$-CzN]qF$,b-u-.%rx3e% E.M!4;Z&jQܝt=}Rљ@Gt=Ĺ]ׇ.TY1~vu'xڠh ;fe}Ώ1 ܁tCCɉFBƈ^UeZzo3 j?aʞu=Ywt)e# 7”Qs.kyuF[РZ{7 *g-  H_{E]-(:q*!,RY@I!便q誘>York/JӰ<3^{," R\")[CVÇɤbE.b$r,:0HvwNjOf? Ğnf֌mV{fW7@.16^o!!믛!BF.2+l a.uK{TuǃLN`ޢ aZ(i49F|X9>FYU@͡RqegM$]ܑӚcUvţlZ"<)gIJc3{To}P޼eõn$Db*-RhELf1q2u;7Okh%DO\/ib_IΧ<=jJEf!- ?ZP4KK7C{W%XOV_(/=--Сl!bn%iI2Nw@Ō*a8.Z 8yT+usrǺyɿn3A[cZnUרA U ǞAM~3Q8g#!gϪuX4-)Cg o3z t-5-剰ӈӵu}*F/}̑#ƭ|[}yutMDDPz 8b8ӛ\֒p'/i#,; `ٙvҫ͟e-Fo1:W4;V<%vGB#h*FLr7 /R(L1 ҩCw3vb>cK;pK-87LePF%m1*gqmDxDXY0%i"T+Mqǥd*# }xɄOdn6Le+^bWYa3j[uO=9I( ?6q;Z效 &)1?OIW]ntL$ Sɕ0AVFGE2~ y0:,fsp^?tci[7Kd]R %B_Ў`o(}³&{8UB-'r>ڨǐ m/cȆtz7<j![j-Umm`F#<ɣ Gb@"op{1wϼo{ A|v2t_NhDe_J?ܸ`۪8ON5+w@MgfP aȥΜ?~d+a诬ʀ|Y=ܢ@@ AMƒK%=F漨)SĨgQC?HI%QW/Bfv}dE3e|*UlxߏTFУ\/ >G6nJZ\ fRr`>nS, tSoǴ׵ VmyUYxL˱wr|'dsoڢ@Ka]h:ɻrʼҥ 51?z:,SlћdP/VK$1.PiؒLJ+cjetڇ>nmKDI-t;Ml&!-[ibq!r{UqψZ#c>vBO1!c8h+zx3eİևIJ7)|ybP!gI'IA7q.IE2I!`$h \i_2Zsk[E`Iub| RZ9.,PJBUUն1y_V3“`;Iq0 J6 C9}ZW  8g W 즘ȸ$^i+Ǿ?Iu.a;#-}ԃR=)ٲƁS}1ݛͨPz',޼2}{ɜw`pbD$$P:(OMRneٙ? +m}qfc, _xAیX2A8Ibq"+$ƮRg ͤ*ڷg@05 ;wj^?->-RCp9Y6&wI3\TnXSSخ\d۸L^񊹝s;oۂ-$uw>Mܓ>4oJVOnA.ym_)|~Э=}1'ZulzKy{E5NQs%ml(qB,ђ7N@w?/KM*N | $l dt\@PD]82>ϭ3 ?o[حAl#i0;ns6QdRE 9JrZ}! -(bwRRUl=flbt;d.<Ⱚʋ#45q:_@Kd)V}5IkX 2(DTL)M/W 3\92j{rp]Y؈#>1J;\J/DנU3B*Ǐ0TEȸZn+$X%aQS^▖՚; u_!PӪ1:b 2'{Ax@ȗ5Lo1&QFyHUDzlEs0Ϟ-_ko33ّN56M / v:-=v1ѭbZ]ljIYW%zP4B:a'@u1K a#{k-I5V x 2 E==vQ| g@EV֙9ӨLv@_gZ㳕A,DceBRc+mw`0gCDPsVE .|ϣl_v%EVbsr~ $[NcTd)tP g:Ar\:ȘS/G7u=lO ub6ffx\.++A9S`m{]v!}: lOpM46w~&}6n K]_7`paZYcM jbw͟*ÈNzyIM*Ѭ.;CJPX$YqfxS<$OQc&*y֪@*BbʦUŵqx\tB-U&%Vw,&m@ʝLAō2T"/_ IkJ$ ı}vh; D ߟd`ӟ=C bZp 5˲qβslIre .,y_bgQ}_%bN+?>5~oX='|r88HIN1`pkx(TϿvT`AK֯iy^E7ҙQ4%9Ȳ#nB 4E0anS|sRGaDByn* /[׿FF t`@K#y=e^1++5 hv.8e>?e=ya{^AWCho)]s'2L | Q;W  JA|IV!Y @ 6asÐ+)G]T>@˟b@sx|C[JhH)S]G$sQv3j$#~uX=amJK^egJ}rT(ig8S@^ ܽhE0bw;qIX^)30#^qr8fh`yizK|s1S֟}(UE0gP} ~"f4 ͜q{d,Ԏ91Ej8랛m6=7O,ठPqy>' +OU7 ] 8OۚK5tzh&O)"8AĪWag `̆Pj\Q(7\-0I_mDVIB N,j! `ؔbY%- nF2܅>dKS,"фA#wَۛ0V;11[~%\k/!&>zL\uW<4aM:zX鈌f $ = <5j_vWu<N۟-=)F Z=^%}AS= s(0 _=y ZI9ި޻Yr[Fv+S5N^̛I$s,I˟.+)AȚ=d`V *z=qxcc}vpF/^bK]JϵDv'OF,~cYm/`2Z8p i*).ïwu̺ ,k'Q;zxrݫ=J~~śV(v9 7Ra<[r6:.8L$#dsetH#˸IA~cK3B*D :"_Zb]R!e?v/6f UhI#먾g-ɐZ8/sa.[NLsC'1k8*X;.)l&qϭ7.EfDunDO ZZaDޝHY܁@>udS;&TjRh*Q~tJ<ݜ(?"gX@ϼĊ 뽶 "6W@TfB_%Vdv7{H'wWHwN\qUbWx\qPxVJ0Up#R&a3+6&Ib^L-#Y/;'k 1=W9mʐ2;`k1r\. GH2ў/z74btP3ԡ|2b1G5ݢ*CʖN#AH_sm SHcP>7kՅ)["g_D/r￯č…[j\2j\ pm̩MݻE;i1g68,we b/@l_WumȎY,&l fA:Qh6Nv*7='0IϛЁ9QfN_dgfؗâ|+ן/B8FxF"zbnH,RVr[0R*x lU:)ͭGhCHz#J&Ua)NK:=ќ!Sfk$ϓ%LQg:dr{\&ϝJ[$~93d< r;t*`I7ɦ<c|gZ}ZʼϩU {SI@b8Qyq^/V2N"ѝڥz_ڷ-C af" Y,)o#l?VluUSz5܄P̡G&1huVě/]f:c.i3Qkoaq|HC+5nl@9etI RsU30/군XlØP>>.ޛAּW`t->"ޅBm j# Oآ>]".\RR#ͬ=C(+&,td~OWA H_@ 뫤1o߇8/ٓnU)%|m?!}ma|rg @]00+ܺ.Zf9 s~tvB:9D\Z9/H(:۵D4!$" 9h(g~ي_L-%*rފf!`͒z㐇]^zbЁ֨l}&y}3ӎSM<3!)/IPc؝cC2~Tj]z[q| 6 ᩑ#pMIڊ6RdNeWۄL;Y$rWČs FPa![IR`!C5PD[*JTH{iWEP)8|x &<x4GQOVI|PIE^-|F \,Po~|mH'2k\CyyD1Bi,N&CxXDY{]35WeuŇaki5q ?cgl&YwM x1gz4ϡYq$s^l \Br.#z]XAKQQ.kAA qc2ENN紪. ɝ;!DyE shj]5] R干>[^ty9CJd &"[I'8"qji"m*clNWLa[Wmh_( 9ޫ\Kf 0UTlӲZ~Cdi ȵ Pcc$#L0NھbmK"чWj4Cd$=z\p4I1ᐌ`C C6qQC.7A&w; Ηo@Ʒum;yL*`O~9H~[8u}-IH:,r-.K0QBz<;+1L3ixS_QLJ[z.G2(X FVL=+?Uk@ Xtw"'${v*w rBf{䙎zm5gߋIҹ{ y!C HK\(5M\r%c݌'mpְUfo6xbӒGDks;#ΤEΙv'@aRaЀ\贾^QRGN?dOKaYDЗ#Y#=g9R[T s(4++(J傣7;ƯC cJ6afشaY u+K;2;uFXNvJ<(".>K{'0n+)uhe"~<)b9!> a-@Ycd1aǰiL +xr&峡:e巁.qyx#|!X=/ Fx@fa ^uXYګ 7StÔ=*9ŬVbl&opBfh# 9+@MED?E}UR WFP|i5qM܈"3gNԁ>b+a h4>#Qiz< ;SVb4'}E&4#F0pwl=8 miY8RvK|]2 T> 09i_䮣7>MH2K߶Ś57jlpMrQ }@Om)-BnnC"G>eBTm ?ҹޓj#!_᭐Blr35cB4(Om"S絃2 <ď!EWO6wt[50xzboi󩌨v:Yj_ 9d|yF'T\)ɮ_aPsqqXsoUװ_H6䤺W ~;|YE<#d㒆SM;%cq9Ħvy?~a yN&2]A@ Rr>tg:pΏE zgT~Y>ʖ@.<R7Uz`i}ف?/^C8f<M<9OvVCf#dpyrdꖐBj3 i