libgit2-28-0.28.4-150200.3.6.1<>,0d Ip9|2@ӟaۡob,j2ԇ;,,1c'}r{ u1ϲi`GzM*>|تp5vɟ L8Kf D/zcFaRιl8zU儾T*0 uwz_ &Ie#ш(`G/0ȴkyz=R}PॱO=YxYX؋h8ۇr>@?d  ! /  9Zy     # <X{x( 8(9: >6@EFTGhHIXY\]^Lbcsdefluv,wx,yHzClibgit2-280.28.4150200.3.6.1C git librarylibgit2 is a portable, pure C implementation of the Git core methods provided as a re-entrant linkable library with a solid API, allowing you to write native speed custom Git applications in any language with bindings.d Is390zp35SUSE Linux Enterprise 15SUSE LLC GPL-2.0 WITH GCC-exception-2.0https://www.suse.com/System/Librarieshttps://libgit2.github.com/linuxs390x= git 2.9) for proper interoperability. - Symbolic links are now supported on Windows when core.symlinks is set to true. - Submodules with names which attempt to perform path traversal now have their configuration ignored. Such names were blindly appended to the $GIT_DIR/modules and a malicious name could lead to an attacker writing to an arbitrary location. This matches git's handling of CVE-2018-11235. - Object validation is now performed during tree creation in the git_index_write_tree_to API. - Configuration variable may now be specified on the same line as a section header; previously this was erroneously a parser error. - When an HTTP server supports both NTLM and Negotiate authentication mechanisms, we would previously fail to authenticate with any mechanism. - The GIT_OPT_SET_PACK_MAX_OBJECTS option can now set the maximum number of objects allowed in a packfile being downloaded; this can help limit the maximum memory used when fetching from an untrusted remote. - Line numbers in diffs loaded from patch files were not being populated; they are now included in the results. - The repository's index is reloaded from disk at the beginning of git_merge operations to ensure that it is up-to-date. - Mailmap handling APIs have been introduced, and the new commit APIs git_commit_committer_with_mailmap and git_commit_author_with_mailmap will use the mailmap to resolve the committer and author information. In addition, blame will use the mailmap given when the GIT_BLAME_USE_MAILMAP option. - Ignore handling for files in ignored folders would be ignored. - Worktrees can now be backed by bare repositories. - Trailing spaces are supported in .gitignore files, these spaces were previously (and erroneously) treated as part of the pattern. - The library can now be built with mbedTLS support for HTTPS. - The diff status character 'T' will now be presented by the git_diff_status_char API for diff entries that change type. - Revision walks previously would sometimes include commits that should have been ignored; this is corrected. - Revision walks are now more efficient when the output is unsorted; we now avoid walking all the way to the beginning of history unnecessarily. - Error-handling around index extension loading has been fixed. We were previously always misreporting a truncated index. * API additions: - The index may now be iterated atomically using git_index_iterator. - Remote objects can now be created with extended options using the git_remote_create_with_opts API. - Diff objects can now be applied as changes to the working directory, index or both, emulating the git apply command. Additionally, git_apply_to_tree can apply those changes to a tree object as a fully in-memory operation. - You can now swap out memory allocators via the GIT_OPT_SET_ALLOCATOR option with git_libgit2_opts(). - You can now ensure that functions do not discard unwritten changes to the index via the GIT_OPT_ENABLE_UNSAVED_INDEX_SAFETY option to git_libgit2_opts(). This will cause functions that implicitly re-read the index (eg, git_checkout) to fail if you have staged changes to the index but you have not written the index to disk. (Unless the checkout has the FORCE flag specified.) - At present, this defaults to off, but we intend to enable this more broadly in the future, as a warning or error. We encourage you to examine your code to ensure that you are not relying on the current behavior that implicitly removes staged changes. - Reference specifications can be parsed from an arbitrary string with the git_refspec_parse API. - You can now get the name and path of worktrees using the git_worktree_name and git_worktree_path APIs, respectively. - The ref field has been added to git_worktree_add_options to enable the creation of a worktree from a pre-existing branch. - It's now possible to analyze merge relationships between any two references, not just against HEAD, using git_merge_analysis_for_ref. * API removals: - The git_buf_free API is deprecated; it has been renamed to git_buf_dispose for consistency. The git_buf_free API will be retained for backward compatibility for the foreseeable future. - The git_otype enumeration and its members are deprecated and have been renamed for consistency. The GIT_OBJ_ enumeration values are now prefixed with GIT_OBJECT_. The old enumerations and macros will be retained for backward compatibility for the foreseeable future. - Several index-related APIs have been renamed for consistency. The GIT_IDXENTRY_ enumeration values and macros have been renamed to be prefixed with GIT_INDEX_ENTRY_. The GIT_INDEXCAP enumeration values are now prefixed with GIT_INDEX_CAPABILITY_. The old enumerations and macros will be retained for backward compatibility for the foreseeable future. - The error functions and enumeration values have been renamed for consistency. The giterr_ functions and values prefix have been renamed to be prefixed with git_error_; similarly, the GITERR_ constants have been renamed to be prefixed with GIT_ERROR_. The old enumerations and macros will be retained for backward compatibility for the foreseeable future. * Breaking API changes: - The default checkout strategy changed from DRY_RUN to SAFE. - Adding a symlink as .gitmodules into the index from the workdir or checking out such files is not allowed as this can make a Git implementation write outside of the repository and bypass the fsck checks for CVE-2018-11235. - Bump sover to 28 following upstreams changes.- libgit2 0.27.7: * Various improvements for handling repositories * Various API correctness fixes - includes changess from 0.27.6: * Various security fixes for parsing integers from buffers, and buffer handling bsc#1114729- libgit2 0.27.5: * CVE-2018-17456: Submodule URLs and paths with a leading "-" are now ignored to avoid injecting options into library consumers that perform recursive clones (bsc#1110949) * Avoid a buffer overflow when running repack * Avoid stack overflow from unbounded recursion in configuration file parser * Avoid heap-buffer overflow when parsing "ok" packets * Fix heap-buffer overflows in smart protocol parsing code * Fix potential integer overflows on platforms with 16 bit ints * Fix potential NULL pointer dereference when parsing configuration files- Use pkgconfig style of dependencies, refresh dependencies - Use more of cmake macros- libgit2 0.27.4: * fix out-of-bounds reads when processing smart-protocol "ng" packets (bsc#1104641)- libgit2 0.27.3: * CVE-2018-10887 (bsc#1100613), CVE-2018-10888 (bsc#1100612): Specially crafted delta object in packfiles could trigger an integer overflow, bypassing input validation and causing the object database to contain copies of system memory. This may allow denial of service or, potentially, an information leak - includes changes from 0.27.2: * various API and correctnes fixes * Fixes related to handling of .gitmodules - includes changes from 0.27.1: * CVE-2018-11235: insufficient validation of submodule names from .gitmodules allowed writes to arbitrary paths (bsc#1095219) * disallow .gitmodules files as symlinks.- update to 0.27.0: - Changes or improvements - Improved p_unlink in posix_w32.c to try and make a file writable before sleeping in the retry loop to prevent unnecessary calls to sleep. - The CMake build infrastructure has been improved to speed up building time. - A new CMake option "-DUSE_HTTPS=" makes it possible to explicitly choose an HTTP backend. - A new CMake option "-DSHA1_BACKEND=" makes it possible to explicitly choose an SHA1 backend. The collision-detecting backend is now the default. - A new CMake option "-DUSE_BUNDLED_ZLIB" makes it possible to explicitly use the bundled zlib library. - A new CMake option "-DENABLE_REPRODUCIBLE_BUILDS" makes it possible to generate a reproducible static archive. This requires support from your toolchain. - The minimum required CMake version has been bumped to 2.8.11. - Writing to a configuration file now preserves the case of the key given by the caller for the case-insensitive portions of the key (existing sections are used even if they don't match). - We now support conditional includes in configuration files. - Fix for handling re-reading of configuration files with includes. - Fix for reading patches which contain exact renames only. - Fix for reading patches with whitespace in the compared files' paths. - We will now fill FETCH_HEAD from all passed refspecs instead of overwriting with the last one. - There is a new diff option, GIT_DIFF_INDENT_HEURISTIC which activates a heuristic which takes into account whitespace and indentation in order to produce better diffs when dealing with ambiguous diff hunks. - Fix for pattern-based ignore rules where files ignored by a rule cannot be un-ignored by another rule. - Sockets opened by libgit2 are now being closed on exec(3) if the platform supports it. - Fix for peeling annotated tags from packed-refs files. - Fix reading huge loose objects from the object database. - Fix files not being treated as modified when only the file mode has changed. - We now explicitly reject adding submodules to the index via git_index_add_frombuffer. - Fix handling of GIT_DIFF_FIND_RENAMES_FROM_REWRITES raising SIGABRT when one file has been deleted and another file has been rewritten. - Fix for WinHTTP not properly handling NTLM and Negotiate challenges. - When using SSH-based transports, we now repeatedly ask for the passphrase to decrypt the private key in case a wrong passphrase is being provided. - When generating conflict markers, they will now use the same line endings as the rest of the file. - API additions - The git_merge_file_options structure now contains a new setting, marker_size. This allows users to set the size of markers that delineate the sides of merged files in the output conflict file. By default this is 7 (GIT_MERGE_CONFLICT_MARKER_SIZE), which produces output markers like <<<<<<< and >>>>>>>. - git_remote_create_detached() creates a remote that is not associated to any repository (and does not apply configuration like 'insteadof' rules). This is mostly useful for e.g. emulating git ls-remote behavior. - git_diff_patchid() lets you generate patch IDs for diffs. - git_status_options now has an additional field baseline to allow creating status lists against different trees. - New family of functions to allow creating notes for a specific notes commit instead of for a notes reference. - New family of functions to allow parsing message trailers. This API is still experimental and may change in future releases. - Breaking API changes - Signatures now distinguish between +0000 and -0000 UTC offsets. - The certificate check callback in the WinHTTP transport will now receive the message_cb_payload instead of the cred_acquire_payload. - We are now reading symlinked directories under .git/refs. - We now refuse creating branches named "HEAD". - We now refuse reading and writing all-zero object IDs into the object database. - We now read the effective user's configuration file instead of the real user's configuration in case libgit2 runs as part of a setuid binary. - The git_odb_open_rstream function and its readstream callback in the git_odb_backend interface have changed their signatures to allow providing the object's size and type to the caller.- Update to 0.26.3: * Fix cloning of the libgit2 project with git clone --recursive by removing an invalid submodule from our testing data. * Fix endianness of the port in p_getaddrinfo(). * Fix handling of negative gitignore rules with wildcards. * Fix handling of case-insensitive negative gitignore rules. * Fix resolving references to a tag if the reference is stored with its fully resolved OID in the packed-refs file. * Fix checkout not treating worktree files as modified when only their mode has changed. * Fix rename detection with GIT_DIFF_FIND_RENAMES_FROM_REWRITES. * Fixes memory handling issues when reading crafted repository index files. The issues allow for possible denial of service due to allocation of large memory and out-of-bound reads. (CVE-2018-8098 bnc#1085257 CVE-2018-8099 bnc#1085256) * Updates the bundled zlib to 1.2.11. Users who build the bundled zlib are vulnerable to security issues in the prior version.- Modernize spec-file by calling spec-cleaner- remove unneeded dependency (python is used only for testsuite, which isn't used during build)- libgit2 0.26.0: * Support for opening, creating and modifying worktrees. * Can now detect SHA1 collisions resulting from the SHAttered attack CVE-2005-4900 * Fix for missing implementation of `git_merge_driver_source` getters * Fix for installed pkg-config file being broken when the prefix contains spaces * Can now detect when the hashsum of on-disk objects does not match their expected hashsum. * Support open-ended ranges (e.g. "master..", "...master") in revision range parsing code. * Correctly compute ignores with leading "/" in subdirectories. * Optionally call `fsync` on loose objects, packfiles and their indexes, loose references and packed reference files. * Builds against OpenSSL v1.1 and against LibreSSL. * Improvements for reading index v4 files. * API additions and incompatible API changes- libgit2 0.25.1 - New features and functionality: * repository discovery features * Support for reading and writing git index v4 files * Improve the performance of the revwalk * reference db concurrency improvements * Nanosecond resolution is now activated by default * restrict the set of ciphers used with OpenSSL by default. * user-registered merge drivers * built-in support for the union merge driver * callers can now specify proxy settings * New API for creating signed commits * New API for creating blobs from streams * New flags for opening repositories * New functions for various git operations - Removed API: * git_blob_create_fromchunks() has been removed in favour of git_blob_create_fromstream() - Changed API: * git_packbuilder_object_count and git_packbuilder_written now return a size_t instead of a uint32_t for more thorough compatibility with the rest of the library. * git_packbuiler_progress now provides explicitly sized uint32_t values instead of unsigned int. * git_diff_file now includes an id_abbrev field that reflects the number of nibbles set in the id field. * git_odb_backend now has a freshen function pointer * git_remote_connect() now accepts proxy options.- libgit2 0.24.6, including the following security fixes: * bsc#1019036: edge cases in the Git Smart Protocol can lead to attempting to parse outside of the buffer CVE-2016-10128,CVE-2016-10129 * bsc#1019037: MITM possible due to lack of parameter for certificate parameter CVE-2016-10130,CVE-2017-5338,CVE-2017-5339 - includes changes from 0.24.5: * add support for OpenSSL 1.1.0 for BIO filter- libgit2 0.24.3, fixing the following vulnerabilities: * CVE-2016-8568, CVE-2016-8569: invalid memory accesses parsing object files (bsc#1003810) * various bug fixes from the 0.24.2 release- Add to the SDK. Fate#319349 - Update license to GPL-2.0 WITH GCC-exception-2.0- libgit2 0.24.1: + various compatible backported bug fixes- Update to version 0.24.0: + Custom filters can now be registered with wildcard attributes, for example filter=*. Consumers should examine the attributes parameter of the check function for details. + Symlinks are now followed when locking a file, which can be necessary when multiple worktrees share a base repository. + You can now set your own user-agent to be sent for HTTP requests by using the GIT_OPT_SET_USER_AGENT with git_libgit2_opts(). + You can set custom HTTP header fields to be sent along with requests by passing them in the fetch and push options. + Tree objects are now assumed to be sorted. If a tree is not correctly formed, it will give bad results. This is the git approach and cuts a significant amount of time when reading the trees. + Filter registration is now protected against concurrent registration. + Filenames which are not valid on Windows in an index no longer cause to fail to parse it on that OS. + Rebases can now be performed purely in-memory, without touching the repository's workdir. + When adding objects to the index, or when creating new tree or commit objects, the inputs are validated to ensure that the dependent objects exist and are of the correct type. This object validation can be disabled with the GIT_OPT_ENABLE_STRICT_OBJECT_CREATION option. + The WinHTTP transport's handling of bad credentials now behaves like the others, asking for credentials again. + Various API changes (additions AND removals). - Rename libgit2-23 subpackage to libgit2-24, following upstraems soname bump (also in baselibs.conf).- libgit2 0.23.4: * various bug fixes and improvements - drop upstreamed libgit2-fix-.pc-file.patch- libgit2 0.23.3, containing critical fixes: * blame: guard xdiff calls for large files * diff: don't feed large files to xdiff * merge_file: treat large files as binary * xdiff: convert size variables to size_t * GITERR_CHECK_ALLOC_ADDn: multi-arg adders- Add libgit2-fix-.pc-file.patch: Fix paths written in libgit2.pc.- libgit2 0.23.2: * documentation fixes * diff: don't error out on an invalid regex * http: propagate the credentials callback's error code * Fix bug in git_smart__push: push_transfer_progress cb is never called * remote: don't confuse tag auto-follow rules with refspec matching * curl: use the most secure auth method for the proxy * Forcing libssh2 lib location * fix duplicate basenames to support older VS - includes changes from 0.23.1: * Stage an unregistered submodule in _add_bypath() * filebuf: remove lockfile upon rename errors * Increase required version of cmake to 2.8 * Handle ssh:// and git:// urls containing a '~' character. * documentation updates * submodule URL handling fixes * index: allow add_bypath to update submodules * blob: fail to create a blob from a dir with EDIRECTORY * submodule: lookup the submodule by path if available * submdule: reproduce double-reporting of a submodule in foreach - note cmake requirement and use cmake makros - build with system libcurl - build with system http-parser- Update to version 0.23.0: + Changes or improvements: - Patience and minimal diff drivers can now be used for merges. - Merges can now ignore whitespace changes. - Updated binary identification in CRLF filtering to avoid false positives in UTF-8 files. - Rename and copy detection is enabled for small files. - Checkout can now handle an initial checkout of a repository, making GIT_CHECKOUT_SAFE_CREATE unnecessary for users of clone. - The signature parameter in the ref-modifying functions has been removed. Use git_repository_set_ident() and git_repository_ident() to override the signature to be used. - The local transport now auto-scales the number of threads to use when creating the packfile instead of sticking to one. - Reference renaming now uses the right id for the old value. - The annotated version of branch creation, HEAD detaching and reset allow for specifying the expression from the user to be put into the reflog. - git_rebase_commit now returns GIT_EUNMERGED when you attempt to commit with unstaged changes. - On Mac OS X, we now use SecureTransport to provide the cryptographic support for HTTPS connections insead of OpenSSL. - Checkout can now accept an index for the baseline computations via the baseline_index member. - The configuration for fetching is no longer stored inside the git_remote struct but has been moved to a git_fetch_options. The remote functions now take these options or the callbacks instead of setting them beforehand. - git_submodule instances are no longer cached or shared across lookup. Each submodule represents the configuration at the time of loading. - The index now uses diffs for add_all() and update_all() which gives it a speed boost and closer semantics to git. - The ssh transport now reports the stderr output from the server as the error message, which allows you to get the "repository not found" messages. - git_index_conflict_add() will remove staged entries that exist for conflicted paths. - The flags for a git_diff_file will now have the GIT_DIFF_FLAG_EXISTS bit set when a file exists on that side of the diff. This is useful for understanding whether a side of the diff exists in the presence of a conflict. - The constructor for a write-stream into the odb now takes git_off_t instead of size_t for the size of the blob, which allows putting large files into the odb on 32-bit systems. - The remote's push and pull URLs now honor the url.$URL.insteadOf configuration. This allows modifying URL prefixes to a custom value via gitconfig. - git_diff_foreach, git_diff_blobs, git_diff_blob_to_buffer, and git_diff_buffers now accept a new binary callback of type git_diff_binary_cb that includes the binary diff information. - The race condition mitigations described in racy-git.txt have been implemented. - If libcurl is installed, we will use it to connect to HTTP(S) servers. + Various API changes (incl. breaking changes). - Rename libgit2-22 subpackage to libgit2-23, following upstreams soname bump (also in baselibs.conf).- Update to version 0.22.1: + The following (critical) fixes have been backported to this maintenance release: - checkout: introduce git_checkout_perfdata. - git_path_join_unrooted: return base len. - checkout: don't recreate previous directory. - checkout tests: nasty symlinks. - checkout: drop newline in error message. - checkout: remove files before writing new ones. - checkout tests: emulate p_realpath poorly on Win32. - checkout tests: cleanup realpath impl on Win32. - Changes from version 0.22.0: + git_signature_new() now requires a non-empty email address. + Use CommonCrypto libraries for SHA-1 calculation on Mac OS X. + Disable SSL compression and SSLv2 and SSLv3 ciphers in favor of TLSv1 in OpenSSL. + The fetch behavior of remotes with autotag set to GIT_REMOTE_DOWNLOAD_TAGS_ALL has been changed to match git 1.9.0 and later. In this mode, libgit2 now fetches all tags in addition to whatever else needs to be fetched. + git_checkout() now handles case-changing renames correctly on case-insensitive filesystems; for example renaming "readme" to "README". + The search for libssh2 is now done via pkg-config instead of a custom search of a few directories. + Add support for core.protectHFS and core.protectNTFS. Add more validation for filenames which we write such as references. + The local transport now generates textual progress output like git-upload-pack does ("counting objects"). + git_checkout_index() can now check out an in-memory index that is not necessarily the repository's index, so you may check out an index that was produced by git_merge and friends while retaining the cached information. + Remove the default timeout for receiving / sending data over HTTP using the WinHTTP transport layer. + Add SPNEGO (Kerberos) authentication using GSSAPI on Unix systems. + Provide built-in objects for the empty blob (e69de29) and empty tree (4b825dc) objects. + The index' tree cache is now filled upon read-tree and write-tree and the cache is written to disk. + LF -> CRLF filter refuses to handle mixed-EOL files. + LF -> CRLF filter now runs when * text = auto (with Git for Windows 1.9.4). + File unlocks are atomic again via rename. Read-only files on Windows are made read-write if necessary. + Share open packfiles across repositories to share descriptors and mmaps. + Use a map for the treebuilder, making insertion O(1). + The build system now accepts an option EMBED_SSH_PATH which when set tells it to include a copy of libssh2 at the given location. This is enabled for MSVC. + Add support for refspecs with the asterisk in the middle of a pattern. + Fetching now performs opportunistic updates. To achieve this, we introduce a difference between active and passive refspecs, which make git_remote_download() and git_remote_fetch() to take a list of resfpecs to be the active list, similarly to how git fetch accepts a list on the command-line. + The THREADSAFE option to build libgit2 with threading support has been flipped to be on by default. + The remote object has learnt to prune remote-tracking branches. If the remote is configured to do so, this will happen via git_remote_fetch(). You can also call git_remote_prune() after connecting or fetching to perform the prune. - Rename libgit2-21 subpackage to libgit2-22, following upstreams soname bump (also in baselibs.conf).- Add baselibs.conf/sbin/ldconfig/sbin/ldconfigs390zp35 16795597530.28.4-150200.3.6.10.28.4-150200.3.6.1libgit2.so.0.28.4libgit2.so.28libgit2-28AUTHORSREADME.mdlibgit2-28COPYING/usr/lib64//usr/share/doc/packages//usr/share/doc/packages/libgit2-28//usr/share/licenses//usr/share/licenses/libgit2-28/-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.suse.de/SUSE:Maintenance:28344/SUSE_SLE-15-SP2_Update/259eb294fb124ca7cc48394a48c3022b-libgit2.SUSE_SLE-15-SP2_Updatedrpmxz5s390x-suse-linuxELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=fc9eb8aa5e3c4f247a29f541a73b86e55102c293, strippeddirectoryUTF-8 Unicode textUTF-8 Unicode text, with very long linesASCII textPRRRRRRR R RR RR RRR RRRNU):Q^&Xutf-8f1e121618fcb74b95875039daab8d9babd703c19f6a42f3a27c6db15b226e81f?7zXZ !t/Q]"k%f0]dٶiqmT᩻Sv1/QL7d@h1~6~M(B]c[3_4 8l01q:u3tk`.yM܈|f[rz쪿l`Oj8h/h >y|xQok /To]p08}e@ ߛi3 4K.z-!̏V@O'Z[31A冲*->?V#0P4EHk-u,?3*@Nr {f%ҫELwCeG7PV ٤x987١\ P%y ց МwYn&؊)ųVdC|$GK}sv&Ӕ-8/8 2]}oB(%<7r{e]h ۄ;T ̛j|'B%i9I`@fJ|Xр8}Pc1ɂ N(/Eh.Ns.׻Ɉ=tGc+rNi1r{[#Nq>2D'7kPS|YJ' X}?4k٫ME ujё@Ϧތy2W$Ur1T ${g,tYC>+>J!s?;%=:_"5YƹX>f]ЂImwVdo=–/UIȝ9&kez`Ipۜ[3#:F8lP\WmI r=O=dHؑ>(!!\- q.Z{n3C w*<8U-ea[~£ztG")a`Ѻ;/#SxI૗ןT2-CT uU=~Lm۞#np8*bkSyAk-؉AMڌC'`\8e*p"Z ~P`WQaNZ79%~E y1N=|Zjw|Kb0)v3jt1,QD )Rɹ3Q&w4hr<_{REy;0v-zyP҃u U u qⰍ¡F }+&˴ިsye\fj?F~b/SecF87<b)_C3tNUGG+~<{ssȗߵ(еe!q o+f1kL|6}@?J|<[|_ad=nB^9SFoGZ$An9*a&Ɣb}p`''5~*+x!.d$,M] ڷ ef[x%)Q G(AXR~c67~1'Kag4PA2NdSGG%_{0"Ɯ }Fl[U 9Jo+T4|@X4RT5v0V\W-eF5 %+g?)0ܛQtEoV;a[kPN/nGyDpaݛ_YE3N9mx9ѶLI%0v}@P]y!?&#ІBM;wdϔkb90g6_imW 5UŨ{g yV>K$Y==H<,i,ƖhٙÔ+sFa2k%oSwoH?!vΛDji'7",#F^!([ZBAO(}@~'Ept*fCPX 9*^aCfUɈ%FY#rXXtޥ5CnXa4<.l&qzˆgpFgIP%IryEYTʺBa)><h86s\oY4w)nw *|wGfW,MA$[ vK $?:\l+\T:)EmC.1 J?^\f[.c]ζ.TʣYƜs^}Zi!;§;<=߉dAf!i>aPQȒ$З4f*ݱ%LmM~ xcpT3:P\=2eXYzY,Mb~F̔hnH-ᷬJz UOcGix@Wfym[3YؽaZ f1|ș&A]ISŸQ(-Ro SN)9G7_bxJpu=ZgUG~cU;O4|B!2S0U(!q%˹x-rkR)WWWCg>/P|U )e@>ViٝT[N_iVHI@Cls|n;{sձDaT'(z]M|_w<gByYDP;}j2)-ԽB2ۼ Fάn3f2^1pm\lCf@!B MO ]((}=~U_2"n6h5*sS&'hiPJR}#3Zw)>Aoo 959\"VfמlNRq(A"cDwTroFzqSVkXĹʼnJzh'h)+2d7dYqmt=Oo(]wtH.VÛSwLȥ ~QV<.OW}=q wyj->S3z$ifB6"3x<Np@[59DEfrlI;£ 4Zrn'!V/W!&QEAeN)J9j8f(q[J(/Q:(a3!dGB] ޗ ̈b)J0m g)pa$.=fuIJAϻ^/]G'<]rFm PTLJimEܯ ?oHYWҨDsyИͽ죹N(\mtvU 85 );BdQ:So`bd됱N:u.Bگj{,|,LںW^|X.L~uSijf5Vf_KY{ڴࣜ #p"9 Tf6HQg{\hmBG-f o֕gCgdd||nyhm>j*Zvn[o7/0qjn()jK붔(3}wkUP9xuM;H@%6`8.vOW0 Y*LVHJIPvUKOA_ZOSe($~=(Y-R6N|*j]j7ISeʋ2k/v#*Fв؋0ynQxhϪ'yRV7@ͷ]u{.쏗b҆LNor_ " fš`6*'eaֺZIp2:lJ- 2 J2w|M\^:w%%qyF1)#;T|sQ'p MDQ|EiЧ}Fݐj@JLPANл ay*{\cA"Oz!ގ[ bֿ6"n[*ZKV:}zwYOu(^ r8 Upn!@aRLM CPA-v53#V#8xu?_ʳBSŰ"9M߰?%4OA]5ک.vNR<=~HƃOL1YZ:ѸYQe젹A \(W<(|L.{'>0U0R,&ˇsrQ"9߲^!<r][i+N{}'׬&7 Ez!uŦi:tT. W]tB| :$:F)#O[0z.欕þS"4]iy{*'<-IGAa5M$uFP?J`ɖGQ`t۾ެ5vG)|dn rҢ,I:6 -f8 q2M(d3l``zt[|ΒfE7":+hHR{,czJ`Rzo1liYf~c?c`q(!-ZQVYpg0%KRmen>(*b{}}4ף:Ϲ!ww 5}W }ΛHE.Q,!/}͎I# fEmUp>(Xa.F&9km0&yG֧Osrf p'h-j7ĐifVN,w 4f{i?}9k@ޟ6m?FL_V^_u~R$Cu j_ #b Q!UX'I0xgL\YK*cqf} p3z›Ӥql]pֹ z-><ӜOQF/8߅G+:0`d8WX:Qk~~TN9) #@lHMKdrRҡMc}y(|Y ̀+,Ɗc$(_%Ŧ3Bm. 'Jg,j1soPZNt2 OT&3B >Iyy裹Gj"p\)?7Pt?HZ-C͗>d,a;myҥؽdԴP*]H}~vB=H`+5XtƏeh*_2N"No+g@(HjG*0;.ЕU d+~'U ەc>iK&zzi؋š KD&rM/3Ϋ،oi‰ԭ 0zƩJ2Pt xl-E+Ud5 ,p_gk9)xz<(Zˊ`-3}+ 7l!iʱeAq}Im'4 H>84-{ݸ'n ĭ9wJwwfިi+ Ь:̊}\FBVdz/u[ws_ n5GR\]O1qKOPHVh,CމGɝ> t }abQZҷݣrz|+^z}cr 2DC^C~@85,l/Fϩ߄o9E3O=Zr"LEg)U Y%6v煔5@e?{6F hJvd 0B%ؾ?;c2xW۟l|cN[[Qϙ'Òt @Q܂uvW АHl.4&}dst<ܰpBEuk5vVz 02̝ 3l1}U(9),rɈ?{hn,g-^XWhS~?9 9e*Fikkk9KQ\'"*=+X] mʴ< 8=A{s,)jಢjK%Ȫ$ IӰf Twg]DpW%$qYr Q;3J^dGPP(iGz^*`^ZF Y%"a},ОiwY~8 ',ÞT<Y%Mגr5 {BEa \%rC6P&Y&[~zmn^>J悙ܰ-  b.L:GtUjQWrb]0$_6%7zUW$Ȧ>A/Y]Ɏ%$·aW{'??LVOQNM̽n>~8JǓ,YOфv Z섗rw|)2P^U@@hjbl2#rvJc%s9,5uUьȯ4]gƓ(-Xl ; ך|4#UFI 9%vYu$l2GL}%&¿>!|y7EZ2Q$}up>GKG-w=?eU_طP밫d6op *JEX4 ުjbAX$|W$([!Lv+sV[p-# 6*.d#q<|Vf &]%lKur5ioF4h|n݂"X Lq<.dVP=sKsk'wu^TpxG}fxm ]1})Q(C-_`h4!r|S8r 'trO|X?'1&&t_vJ,DXD-IU<ÛRB}WQϿ?rL>ύ`iQ,49ūUs6a2?̱o*-g:5ږL9ۄJJ ElVCLԆͶ8#͛5GcH|N0#oƽ}2Sse=yg}a B|CƆrڙ>W&]5\;?y􋶪k@~T~5<#T *> I" L\?NJ>ܟDK~DTnwaOZv>/>93mc6gfzPjdLD/|?/]U>)vٽ\M6izBQd_g8U!aj 7q'ݝҾ9YlKh#!v <0՘~|D($3rC`׻M24FIg3/ #\v$ܜ${ ~^[ƈ.L_m'fk. Du4ъږ\Gp0BBJMThxu)f\e"kb;~ߩԢu]毌YrA֯3#jc/mخaK*[:l Ÿ.e"`䦿F~x>$%'蟼n+Xg2簗7:oFjh 0] K {/6>25(7cfNE-Ӯ /Q =2uõ0,LobAj,ۭox[z%2F^NyP3x[{ TO;l&!I=D#L2q(4i*(Yn7dv]˩Cxa$(T`_`l2!3I65?o)vD,pEvߧ&X=$ӈX l`Rs͟ZfKwlب%-! 24C87Bڬ|D+2D'SHi8L?g2)*֏t5B=?Nڒv昛ySv+ۅ.#-E>)d1F ̫Hiogck/rn$\u,徆^ћU$:hiG肴Hjgz)-kBTpɽ2.Ee^%9uҡ+wp`uz)o{X3gO̟c£ArWIRvh1$D񲃋5=IQ.FZYnB.|)} 0tWPR3Be^A!3l@x 1aW)5eDS^Uf#>DInet/O Zqq{\3AuXr8μ|; jsy%OԔ:qӘw![>J(_{fYB0E eK\2; Lg몼s:1<"OH[O0!p xpq Vatuڛەk/)+Cە8l-PtD"HV > w|lnd˯wO+y5n1xs<;uȲq as"1=L9b^f0:.y~%}N?1]-$zd~I &k@C2;Y.V 2Ɗ:/"\ULن10?R lt "pgSէ\$S+^܋^cϢB kU=4^W !.:?pw6~x܅Ip!}Bݲ[̬`wK~G!sQ O!P5^I_bш_ZѫY(4 y1^aԅw>Ac_ðpTa(mOc0_HJJm) ɟD.Db1z)V z834ÑR:%[ذPsdHM)]&>U;Ds}rcҜ [kX8$(KhO{F90^,@)hR9ӇefrĒ|ŵ[,M lUNRWBH(N ;[ņu}ʦC~j l&s$Igw'+ݕ)*srx?UEiXW3牨6f1xHBC3dtGyzD z#Wbf:4ϐn%6+>_7,"?ˮjGeYUȓykm/Wћ$V#cz#Wk2x${uR @3{xPsG٘27og?d%b(AǗ%M姨{R@,s4h(I,K)۬ʚHCnZ!`ΕʹhwfE*_a4efY*#I{IF,`x6j;lqae=~v LHdh4}^r͠Z8X-bUy|ش8=QUfR^kv0(zG>~,b!h-I]i%L=$tAvk~'X1}D 2׍ah7؇YxjfeB0]۩ >*Eϔjjhct/w !z)Rbxd{(&k20/T7i!)K2`YsG&YA$hƂAN05)X²H,anڻixkCҿ|[q[KItg K _y:&~.B|"-#~ -i-r-$̪aVK Mfii,Kt&IqF-H&D=M,J  AR`GʭȻy$TxS\?(st"qTKkbJ$eG5XƦtЉ7g92BwC̮:@'"SNHȘZO\Z u- kX^MT}r{Άv工^@KTBu(w$- m|>Bڇ*7 uܙ6E- Po*5 eN.g> F?8Hh=G릉^¸9E8kv8Zj%9ËĖ6vMk^2@Xn(cuImc>i"ײ*m ߿[HA5~e֯R[WK<4;NJ-yۊ@ROjEXMBPKf8p1xctQv`<gcՈWIyC9C}/2~UHgi'g6{\Z[[߯1gnAge;^{ϴ.#wQ】[H0v6vx(\k=J6;n9[Ꮀ{U:ЮT-첳G0l#Df^+Te&ra/@f/DIV5QwŗV_> KXXG}CBisS6˴M!o6·;~;ui"T`H0 -ゃ& nڒY8YԷqMZG;_r0'g>3&Hs\X&4VdU9W@vZ'?dk .dlџ]_|Tr{vǢEEB]ė+uaŚ9U6ٱH`cdBtJ'f A+OnJb(٭,K&5izc١u:+qyQ!X.Aq2EsSq =1#Вb|0/N{74bզϠ^7\U]XCKSy&R8h43 l!ī؂%96I;[䩳;5k:#qOTxTvfJP&oZh:?gbL XبDNmG([,/!I%/7M,J,IANT0YKAv--u84}VKcPc / {^Z4WXZ,׻Y{Bܕ1z!X JF1ցxv=j,j;>+(|zt n)dLr#)';2/ɇF2 +;xQB"3/pU_ )س\wۊfsaܽ+sa8hT5BlkCxyf Sa9dDl^iPL X!֑rMZr|.>\!cpFS_>K*r2dDD4sSPZ@oP#>h'I hiE^? :IHf/(Tϵvy0cHP;{ys=q)v>&J$yEڃ4ɇtL8ZmD$C3qn/[ܬMRs>F)&9yJ7^׃羾!Ulſ'@"#G=4VoD岪.S.J"熶K{(eaƯwZO>qw*o psx.I1[$Guw(ߊ0C N f`nBJeW*%4}LY'^S\W306pϽ6~{}wg[Ήby\ꗢyʴ""s3\( CsJ8?TGGXdM[V'̮UoʱB/zx9pgl`O.y94/#2vaQekr͓29Q@ѧ2^ vj0oD39! ˡm;B+у`눻v֙-O6M84gdZ` u3gbal'M{Ou4BͭV( ? BCR43%3<8+VA'UΞK:a0C';G*hcW I$xtϢ M^H_bRS-݀[ s:y`UΖ'u<k#˯ۥ?h0"A't ܫB!BGp$Lc} 8۔xq!:~YWS%!|ܜ3Tm1kKCx>XќToSFOwf2xG0_]#0t1|?H?Ic2;_BHD-fH :X  ¢:Ǘ_Mʸ9.a(qKWa~S zw w6,G?^ĸ[ 6v|,t o)GK -!jjb<~ 諸|ztB`6acr zZ`0ы~>Ԭ^痀2R-O8v^']PH1{)n,V:%zSgS7s}RD\p$5_@H(@1Uq24#+3Ӕxw|[eٵfcM (E5R"帾3xj1A/*Ai#WTp5ሇ2=٨Y#ERLmmW,zڴe_gkR( _Er/7yE ȥkUFʽ6<]qr*q^|"$Z :a)vCFk`C/j .zb= 쎗HH w9X܀W.7)/Ġ;zҝ&m~nKsT9q.&F_td+( /6<ɡ z7{2ЌIE1'Z:80Լbh򍔕q JC}fF4/Z/UmnS%Vpf1eЏr4vPQdfSmNg)ĸ &xwR᫻\9@;^6Z*QdŁ߬F.=͔O?d>'%PXMu,'5`;eE=L003QRUa.H?2V7}^ 1R j<%QGMkT4끸7m>?=L%=~ /郹6 bx[mSSɂGKcյ]Wkҩ>* eB5\$WF XlSlj ][k]7YdfHέTm mdX,&R=C} bh)/5XQP i=O3B=CD?/.3pə192%ZNּ(:l0fwPsY;b]h(!Epa}-f( Rfq dmr6+e;v WѴ|ތ~qQ e w]XjHݵY Lk鋃2.bd=y:lRo1"c{\[.9n<,~O5W{A 6+a0G>"XD&kH/Bq!Ty-{h&nd^ tb'_T0e i9u}yi4a1(_WC|cm3\uLɽ G=2D1E?axvQ IOv߂$@>:V* K{J t&L^]@"FuG} ru!;8>@@.In6)j򱑍76z袼eky!+ZI'U k74Ua7GBdjY c5sbf>;{5r[[>w KuZQ7wۜVD _)|1:騏]H'bفs'Pa tpaC5+;((X YjT^{t[Ursa6fӒGK+j1 >4 rn}yㅗڷ z]i?"Ar%凷nՁJFlT{+d bS˅x͝,֯y"c 6PT+lœteī6tX gc dQ.@m*xjme*cE˸;QSi#qE]{ 7t02h.vh2DIUX;T=[):tVuvMqmw1h>v=@aD&EFav?쫜MyY{Oe-=Z-RESF ^pKDm}ӷta"/m$ ^?/pÄL8N]!u`?-1S_vR7°κ)s(U䖥UPϦq1BQșc&98uALѨzXet@mDgY?!7,CG*"ƍPy09,+?")LkyL,rr#jqH\vRA駹pU޵~:=-)sdI,?Of'Ly)iaG˸$1a] ? `Ih XTsG"QzQ xGRۼ%wŚ]w<12ONC uTo .Fg G1a?|2AJ( WǾ^xlYo1NscejTCegf`64Fp|fn0Pa+B 1Qbᅤ&7*SV' @Xf*e]k:%Ѵsql?vx8X@Ip_ ~85ޘǛh \Q!C2jF W"J`B֫㽁8\eBhWvN7ZW'>f%:{Ge 6/~u(2*}ʭ!`:߮kEekW6#2I*y6b[}"hM"hc!)ԿBs^15lO%+FB17. [ciOX6i-w+ 8 m%4POnZ.ig#bI=Asq4zeIQ)r^[f5R20V BDk]Hg$ Kᾱ|}PmC:[x ±0i ܈XI3@b5<*krND}juu8@1WXiA?9P,x?ِ%:/,%x&S I-7[JOp>~*V(p5|fo0&P+B^zeo1a9Z3rvIAV> F{k%DOW30 LPhQ{8t3ժ+49 ;$Sο&8f JA%5hEz /ɕ*f汢6L 4ĝCIszMB$KfrрRJѷ&*Wbʽr)_m@f!:"ȵERN8>jN+Pk} w`q!`"'bLyvXa}1>U:mlANpKoEL!rx@'},阣m!M 2 ] >LEhv9PHmHs|,&ɨ/rBCP ]-X~ 3]U`f~-#8x [ j-ksrJ6-rJ-̒5 Lx%H)yu ~̓=ZX\=#؈YG>wuX@kW;WM>|Fp)T=j+cF%='#u{?U뛛uZCT+Ti $bs?x]L<5xeg_5OKMttE\߮.'5?pmW_թ];"3a?}uxgRwCjdis܅۟{?R< ̽V >>VQˠ./`M 6x4I8g&)V܌2m澧lQfR^E0Vricmw_,T 1NeRMa͇5e)^ʩ[Ɉv%fx(LF"`GFµg WFc| 3!wm_"xSRPN舁Qi1+x|FOi Y 2o>UUA3(S:+ =z@jC[Wrs j:6TaCJMD |(+Ər9V=$G45G)Dv◳}"p~NH@GZ>azEn09I+I!霍M"E眜[a |for`tX^}mo ~7,f##R}odzM{ArSzsC̻:o.wt&I΍BXIU󔾀I:VW687NnAaRf!g 9Hj4zQ3)~ BM6]3wÅ|׵֡p]jJq˥V8ɼ,Kb8`vTbZt_np䠐Qhȯk~J Vg!C[\WXsbZRus֛W͓O쬶Hdk2HI'k#' TBQс>!`vVCo'>x^ubDk]FJ{ힶEW`/.J5qdCB "kVcX||= t\#f,g3.NB,&1ĵӍ3eթ*S[w{c+e?AV6: frF|DpY+@4ّYi;Gu;}ޭQ#}0LINֆkr֦ IPc`1P"N*N]Wڭ 59y-J>0y|fha,DLû ]ܸdox H`8A Ok=iZk+jF6|T-癝yë˜_S05a熴N^05|JZ6Jgd%77O&^Xu;p<'[aQe;7UC,PЛ}'phX C yUlo"(Ee.~9t BcՅQ#;çb¬O0RbgU\a ŷFPf> dS҆([~t]"γ '|5$ѯzrWe NdA|Xշ,bΠo0:M ugZqA s|:[εbJDVl@aLY;: hCbdZw;n!BATT`&Z@W'\vi`YڋLews)EJ70UJ+ :?T`WRatKƏ(l"A2Gnyla4nQXT`̫6{PAck-84[離=JX"}|:b/\hy,*ʃ\ɦxD(b+tM#]c׉zgS pi,>܋z|,bV;_ؗruȿg+>VC2,dN'"sh3 $$EgLZZ|>a\cn➹`TaF.3d704!h8~'TS)ٗ׻'=\OC#]i9JyЉn@7|z;꼱N&t$^ A)nG\ֻOn/*l4b0~M>;+T7]M;(bxbL*Y@G{IsAa@u.%"(Y8›TpEM7f<5G|)'>խfPF!+,9nNJcQ(Җg]+%Dg{>$(I4'V']LgeHp0ˎ@pM4w6"7kp~ x@lT3h@s{н^ B̳7U;ݗNs;=޲6NV$pP2rZz+p 4an.?07~!u#>\8O~-tHruFZۦh'wQ>)tu2CA=qs E:z7WkN?ĹAe*`EEytfq#(uW)rgM1zIR*pPn#9|wvUS&(fd!5QKL7] _Õ=fDFTdbQHKyN3`工}TL"@ɉbW2-^[:ݍ :c+ج7U>n5;-2Wu藯j≄kh׭$,A[VEs2;uUŷNS5e,+!!gAʵ$`:ˁ8i/׊p} Z~o^BUCu$zx[B:sѻ. em%c R/]m/֡ջ]8]] ڤ`fGՅ_/'.\BkёȢk\]@% 3\>9B7^: {V$4?Z,%?Xa~A\@Afa$Lf[b}!+P*`Bl mGF3#^ؠrT"zw폜\2qHwpG`eo ` ^ ⯙sr)yYK~p#,]w4ox9a3d- q`cP1U^Fg^6I~!$*l0*B.= ˋAjE#CMpyʳvlB_~aXߛ`Jhgl|Bvi؂M$X:AcwQwu6Y"4B'9)RU$'YX3*쒋=.53`,ñӅP?Ǖ4gDu0PJPMFlEUP^%Q*k%h0U6A.UM-I N^m[ bfrFO %XVFvO]履'eޗ#,N9؞P/\ѻUSKL5 0\&۹va+3l{x,QdV.oҎdl˥*SёF}@3Gû I(,7 &U2350G?'!ӣUfKL'}Gg埔LٓcWт|A9֮.1@SD EQ [58ٕGIauE?GHL;ןlݎʣy >:<fb {\6 W֘] F6p< ]C2u]U #dxP;:r(_V"\TOha_BȢ3eQ|u{D{83zk\{x1qKYDӏ.M֒) Lk:.2BRRjI  4S䆨N}(I]-G b`UjavyIv 1L'IOVz٪|b&qӜِjֺi#҅1 9Xk$+]ˑͼ p8^X]}CQ/2z*Чb`ʫ%Aّ?1sz% #k 3/{sy@ZզdDhxԝkZgWߋ9$"9 `Y8<\vߡ6`}+lus{~N%|ay8p Ru 3R M?KanyNgkj??Bq%gcu=x]] CXoIXe]&%=LoIwe~Q;eozA!, R4;[S47+vy,` I4:) cg|J˸yY8w~ԝCC`,*cD(Nd4kMwy[q!zgO2AFR>: 2c 䍪,ZŊ YZKu&}ǞvɎ|ҕzPOV^`=?nGEʦ`KAۮ1= 2,5SVl˂k{/b. Ksߖ3GXZ Iy$WLw[{ Ũ7"mU2&O {ſ?zQCt_mM]ǂѻDMcfUzAcnjV )z_ 7hg>d&KZ "7?w*Ujj"kO,deą>\Ww?;]qvC!uWdOO6#[⒳T)/eǿK^3RE.XlLNzH8Lb$`t3 <\3&p7*19;v2}P-p:Jai<09doHX=.uQyqQ6sX<d̷~r1SE5ؠIݐBΩ7{xjd* ̐`ݒS㝻Fv<>F@jir':TR [d侊E QoDc,G/G6 Vd 騿 O-Ֆ,b,Lȍ})ōg,ن:WN;W ZE9[n]fC.uBVq$גq|jp!ϸ;2GpEtYġ"g#r9';55V,Oab_ PiXSj]pA f^谦>HE|"gX o?ݶ;?PiMRVo٣7YQ"Ml(u 73/]Ι^I7c t8Щ6*өFuwe8g |EE>hPA>Z'GKk%iڮcV+9Ta0ٝxAG|["cy @L"k* Zmk÷h9ՅX|xיkǚ;6U4LUe{БVcDyIђF#ɯ+F8[뾥rJ堲ySH8mCͮm,L}j-<*XJ!s9\<QRc@ 4Я`& Z}T;,S|>'p?END-ޏD)c35;Vq+r+ShR40l.?9ߨa[qw˳Gw efպ*adPDWfMawTay#Vͯ9z`f"I1$.&鮍2(~i+l'Lw$\vg}gD?~w6t./#]}Kd0haDͫ][ nN=+ewޜtnjbnhxW˵^H"lфYґ2T%zjWkV4NӰd_yKfq  9|(I&Ճ h <[A'# {b$⨮ιym ȸ}#ܬ|3Ӣm~)~ql4,%Íy'v/kJ9 -G ]VꏫNx;G˔Պ{? w(.dO9A_!Cey\cl&SVh=hY UaLA+#?s"VPwcUhfݹXԇ.@w7In|TGsOuHaqW+V[kykEIC3  {۝6huN_C!@@#)+_BmO3Mi.r|%xv\`EDP' kziک1<Zbr hނb#P:Q%3#ڀᙸ3tp`܁eƫcW!˸Pk!u<_:Q o+.' zotN)%,m 4Hƻ)N2.ϨB A=\/dC@X3󿞸FE$ G;: i3ƻMq*1uG,U qj%Y2R OԎOi}p#C" }CTm/Zu_F>x邴r6Il=Y^Ug26KhA8;*GKW-#h`9<s]{ueHB^9bMOC.+.0>vĤ%a^6@ .*/Z^'v?b<䔟 'p0T3x c(0^-0^!کIgT,+lVW+G$eeY`y(u򝏚4X= Kupv;oWt:ۈ$)q pSb!|(\.rzGzaG@%>"̎,ءm=0P1WTT,o3o0qv(TrkKkTsVþ*^o*pxhT,hXD;F}[#dRVLϬ@a8E3!/ls#+2fZ`jC5o,=$fP(xIbfwWYG ªޱ8w|U=I"ۡ3ۂ[@HX@IQ!ef _J(4= > .D)Jj ,B7Ɋ7X#~kk-"[xሾQt&2P>acm<6W@ar}vGSizqS=vKWW0v>1G4}-Vw3/~&qE֌G ܦ7Gh8|{2_S!_jAΊ;B_rRf&8&?Y 9:fpo:EC@K|7Zus<x, {*%&)"WC|"/rvias;c K03YW"!?Y]IoU d-~[Fԥb[@iO~"dvgĵi yS%wΪZɄBս*aPxfΏ>D|:H8HNKQ~η.55QD -f7Og^՗`6H>2tJ iUrN9{~p#H}DnHﯳ?:ENfӨV@YtW6-yn-KgC۵56hM2R;Z"^ANؖiٮaT~sl)pN=]nB¦#N\8l1> 5zɽ}],[g%k[3Y৚|Abb9 Y?uHsBʼB?((,)7@[Pr} uY$hhP$u"1F)z-]mgI}Xi(Xc֝^{3.% x˜TEArZ5ls F޼<9b`^Do1+T{XQ,kU1H0|[#L%? 2Դ ,N󘡺}RfK[Z*/509y  Pנ)BL1-~o?ks9̿i8꦳m;biyWu,ͤ^*NkXZ}){S.(娲5+> kshmvĉ Q ^z*{uVhww:+_ PƤ> eFhl=)ȟ.>N"GBr(: $[%T{T@InUpش68-PP,}Zԫ8p T99o I0 W_0 qDn|z殿MMy+W>qaWj:3yŪy+^?"2)^Ӎ+LܣRsErX Pؒ!pbO[!}lϲy`ehC n{YVmW~tAZ雎=89K H$4+<LDeܧԨpH4ՙ{WefDGwq#*i=W&uB3vho=r 匒ڑB@1KJgRx "nղG_`{VofchoS1 ?w]9=Yu -- ,fwټ5H_') :Ґk=F,yqj*i;M{8a|ż&"֊-AKsdrV!c39L>mV kޜ 9,ԏ!KG] n*c Q$ V yFiQWSAu5* v^-׉U|)'6/L4}ךC4XYȭ,aʎnQ$n2YɠC^ =Qe$Hߒ_Tmܴmfr0RBv9ԞhVXJ8WI>'$C_!Wc/mz0/Ϻᛕ`,EDbR򗴾ZLYܷZHQ1\{i ZI`E0M k-[/$k˧AF5Mgr0mOs% 1",'GSܗ72 N2)H6G ֿ2דӕ? m mh@L]eӶ8Y #}}3-ʾ\+s *'\f9Ѕor<$k&uIwkDZzcJ&f9ˆpup*&[pOS"A{&R9? &;S7 /P[f*aQ‰!rW&m* t3 ;7LI9"U̡;qTL/n4ElYYYkԢ-%i=(z#lPmdu&D>B ю5-^LEG;lW⁚\4M Nȍp?*. :``T]6w!t5W93hiEhRc+9he!#n "4ZPcCatj~lS&ϲjvjVxӱU1s 24t3dk qVG)56.4zlQ=u[pO LlBBL½lj^c 淢}#`|}ؚ|*iL켡 ‘pa,36<dCLtK_lVB6-x&FeO^{O )!GA OFsu˿UavάU@ nNDͪ ,!2J5-xS>)Fa5FGq.Vzi `n\!6{~92؞{13^V4?olhA\ݟ͉0"MZX y-|i՗CՄocU(.`FT?2;[!{˺>fBTz{⠿q npGQm5:/i[+7tMeTkf 3 fի+̓~x" fv {{ThcaX~`7FNKN4ުс;fPvjIkyh#i{LFL:7wTt ֪@ A"ZFXv3`T:Αz2@*,DP2뵖q\2c7`s@5Ci:rЅ+P ?SʛﰆiJ/5ͺ޿Y5 TN<#@aGeقw1 /<$PP>Cb+15̩)0| K*tD 4dA; v4 ev\V ;dU٬lj7+Ϟ%IC)&TF@8t17\o7[٦x})eӁvKT3Hx^|~BR4CU̙΀q ZGiɍW>Vߑbg߃oA 9GmjK%i YD؎SQ3Z:ZFJXr|BtI'$@$[kL-Jw'޾!h K»@Mb(/'qrrE(ݬ` 81+,N775ze|2B#H,栰 @v9]&1M_Ȍj(7_*pL.Wg ÐHI0VNz;묧nG?hoUvEaO!ql"m#!-X8P8ᨓYRA}j`9`BtQ./q7(!n`qv,EI:c.[2k!P|YHϙL #- ߗ,4 P(v|h@a;Ks*Re-=*t!xwreos4z<$~[aX53'*q_Jn]?Z۰-^eF"ٕ#y/,Xnn`GՓ(YRg8,1|I?/@*' eW; +Q3t~/`c7SU* b< cpy4Z\N!y 9 G'o:ժ7q[D}wnۼ<vUiI"M\CհF9xct Vv8ntP8@؍/ pVc2B|SU/;cfP_ g"zu,DRGԵ{7 5M d/Lўfɬ"P9藺B8 D7>4DK zr%Yު[7 ?r-|mJxdc`TσJ4~(ݠ9 XÀMO{Ɯ7R$X] (Cr-|J }jyy;5DT.8 =6kŧkvGF}j[ZTanqk8r2(ʈ"0@%ԑR,h򜾖u54l|%&ާ>-E\1i.dF9egǵp."m6 Iz!} BNMaZOJR܅?=f5}W.oP ' q5gєq&R< ڊXոq>3NtfV::kt/l~!:B!)֡Lw`r)eUQ3M뉩. TtO]y?' Ip~GM)Lq>_k-gI jGPm>olPq)Jv<y(AFoݷ:bR9~ HQkhfAkX9Afm(_{&}@^/n q8ho;z2 H+Dc %;YKs8~P6Ȱ҂ 8i_ʈy?tE-kQo8oY1BE-(a â`BOd/ ( HfHCmd^ͯRUnDGI>Ea737KuerId'ҩ00Dg aC^vSRhx䊶$ m_Bvn<͵j&w03fVT' UbpkۇფZ +ق'TdJcrFzf~ "x`c֜69uO`"K\t9Noo| E7lJ^^B%D,O@4QZ8-?l0!Ǐ*Zmuv0L76" lŨwNn"EZ tuLo\nLi5!<+uh,'JS=kGti|oh5ïTxq?4O/z4yFΟN)z93$5KRW>W|0d>f)@LQK"ͲƄjt" ϩx U-bƾԴzUw >MI~ euh2 ] K)W!EEo$"%or>ɛ c<ʾ"њW(}N;W?lP͇N}؎0CXjcϗ'0R1LdOABspIk~4ADfp$"66WkL\~N7әPRjLp68$6 R]D[~ X^Pq73/_BL? ؽpS,T?R6azԡU"obQ-cj!@zD(vhڢOw]=}A3wr]XrXB$R2)Y{C?rglTROUI[,z`=B?;ՀI3oQezʆX ݻD_`ʪBvks3N 0kQXɍJoC47P r&NzE;hAJM") {lFl7 aNZʦ _zGص@ >2q&A.Cs5W+(AmdYAp/5==: -6W]!z t}bb>\XȥXKߏE/>V]/_>ӳ E\Y7xUH0L*adlc2EUh |?A\@ +=v7+ jJ5{^9CL0MKWpޡ14;TCtqR@KwV0e #F,pyRQj97@?ͺKCFmXQVzN__iSJ8 ?UzJ.IFjMTG򧉃^4!?2=FOn|2VxUYP4]/AB?7RzoМvt9̷U9븹m`L%nCVxF ,AaV;I3=RwSHDZ@bGō2 Su|DnOSa#Kݰ*P:JlQeY%ΰ$lwmmkѨs [$UZDDߕRz2/U( tg[+9N< ώ,Pt˝qZK`#٥ϧ~Ssړ)g;4=W'Xd4\zX-S6]$4gt%8Y6k6WiQg$KJc %rUM]}v6!'2tGG3nF.XҨeTv ~d[A95qFcz7  b`E(*Dj;$p:Y;#ڪS @_ q2@6yRӯ'A$i"xҍu}RyeQE{ڙ뿎xĭ6j샖j.q熬Xޟx8 "G葏8]Vu[yM4bUIJ?Amm1Zn")ma47m!.*, -,$Eڳdy8tK(^ y&P D X߲=}䞉gql|cgnDfy{{ ,TQ`` LA37 s7ԼȾcL ^BLu&wo'R5C;'JGI.PHaJJX=j9r  pPqrW,>+5[rWvW'H<˥r[Ļs"єG>`a" ]S{6`/xϤ~+CvFb˃*jR邙8 _YmU[vLp4ŧtc`p#u4d_158䁅E]E͎-MGEUbݏ^@ w)u`Crex68i-YZB6{G9>n#uGsV!AhC Ѿy*8 0vmXnԴ} A†.A!ŞW,KoH᝺ v$9T9As(i t7ns@?An14/eCxh7ТʏA3OX%  =pp_6H 5/M !L ڄfH.+X??;Qm^<\H"^aaOh1J3Q_E|K25vKϞ3De\(Hh2<it~W5>w;r 5-BM$Q\rT9&vΫW]]鸷CsniҊX/0k몗5ԊS~`6#TMUen"#yM} %܆"apg pJ'"a[p}s17. Z3ѣ1ydfYA HmPg#(Rˉ3K"B!-vǵolTl3O!cFc'[W{Q[i8عRV=En\d.W0vVX,a9J ÛhUqt?`8I'@?Ys>F]d ~K*;].of}FD9[[ i ÏF.)猖C+ Qd]umClѰɜ`ډ~Dy))zv=%r\i40퍠% 6,4Me`ab`7Ԭ)@ 59@X4RޓzPi 7 j_m~NY- X Jd:?B w=p_7Yw{^6QWKӣmrB$Q]y8nwB*0Xh@{@gHL壭^$<_@24_i UY;2_lTYu|Z^\ "5Y' wm~+~\2Q"JnF/GOD Yڥq޿sEt4q pe+!42l6ѷ}SEͿIS\ych-{"l ~\mu4K8:': s7ݹF1q[SM~~.30ph/+LvNhk,zHNW/78.`\,2n&^pm6#O0,)O#9Ь޸C-@CZwBY 㑴2woMHRaϯSQᔔq2M⾧l/3ee\L&ph;C:XJqkBSpgnP6ߗc*w,؁a c,Ԟ,K,d *zJY&a(3a#ZĕML;BZ{Vf4oiBds3.,%sJ,0;6Qv7Jt?xz-ILXӫhǍ:"LF˹HׅI7w &W >MYx%A"4,+6o5#2d[{e<`##Sla Lg)DwZw|ȻU(v|)r-N)G{s04 6ȥ5ϯCX֯v|1gn*qg7>TT%<I.u K.Q:IlEձY{E@(M ٖ#дǚ22&Oz `y/=pRM9$ u/-j@bž&`30 7OϾ TЄˠdh81_[%Xt/ЭDJ,J@h3x#RgC^x715q+"o.5q%O[`'K7tGp0* }3quPk];yV*}j1ҽ߅֮~uAUB %.R;7;8MlJ0 ])':ƽl[g_3,L+%uq-@{6_(2dá^[V`S1K1onƉ$ZgxUvЏ(3x7|L5 Y&ĘOC:X$ =\Z.S`6Ur^G4zT">^0=;W.לTd* " X^aɃkKsJrV+$-ϩ&+g>(%7ʥASkϭ2yR Z$#M1^Kn*ZꮁsAlYByG N}@] *tzGӥۃpCy[H|3 FM }LlA.ߊ>uoZ; d(gl~SiQUUY!y$3fⱳ͝7ԟ9 _,ՈҞT>M{Ohop, "_vdޝK0?g=`4fAMwOkb'1~6i@fOjfAM'K5L Œ(ZIg4d&9Y ڸBF V=M"؝ y H?|C')lZ[[K~,uICןawoE|&'PV<ftR#aW=Ns?hv%A~~!T8e |^$˜Q𣝝>P{IIY5~[\pf. Ī4C%^0bHS(f/,W V d_4'* )˹Iq5){ pc^1}=q;em ; ShoRO;cc{+:IߊRQ^`,q'386 PGb.p_8:c5ˉMo% b-_6W֠G?ҘOyDS%ȻHY14V} y}A»8PoZNJp9T:NU_~moj\|;dPkTRQؕEfC= a5Y[!n;wX ;)a"ubt~ x}(+~*FIն 94^ǙeЇO C_WLY$͑j8Z񤌴c*IYW4><[NoRٿ72|*A@'>f*BJCrvOGj2'ʙOma?g33;)+l2~zP*ͪS QW( t͞WLZ#6LțA.%,6)V<=zJ :^]>H`'`9Y7]yY7^ 8, f}jСܶ<3ljE76ǝv,S3u%-7L YwbYf`eh$QVs>zE6dՃ2؜ E:4$/ˢܴ; U&]t;'aZ&6Ť"}WL+ݿwO J\jQZ"!lVc tAq> >dg^(Ap\((nKN`Wj[70gJ,/G7u`\o jB DpGy4:&4 Ϫ*D/  JK:7Ѓ~{#mEj kTmJ"$-zyqhV9]hhJ5ѲOr:3(C :^Yۃe 7w˟iB#n(30eh|3l({+}'gSyh-H& J`oS(M|/赕FЃJc0K1yd \y檶 ZVcu-?7YX׀.C}O0$f]# pquּWpϟE4$wJsex%KŇ$ӻ ^}kn5r1GgULv]8Dm;)5ϩqGju߾`?JVsA.XC8dDe~7;-y=v##Y&Ô|D1+^ hra~']a,;@a#O8렱爕"1?" jp'ec+'O}Pwр{6v}+g)lyFTIqQ/SG4czr"ij=?"~ 0fr8#/KY̴I=jֺ =~Q7 EngQ9^mOc~eD_̈?M/т#aRïWВ2y )+B-,P4)@YrZh8ŤVgKCud7gzU0/[l{@q?cR%/zXVF3AsN޵7?(tfsMPArNКFl uʘgi VJ!p ^kTZ5{#dY!sF%rR̆+؅;ι$R(ڽӢ*GRIB_GTB=Tn&ތZ<+h93յR}:C2Q1$q@՜U?6%v2 i$ jy2j15<-c u9],=i؛~ĥԱ)GHH%g,;QNE1’7gN0gwpC)mU0{9y*'Ybk&dV+Vo%v^/Bǻو3^h{j~jDDp+M.VlNuR]Gtn{yW߀ !εlZ5sSC{8QZh|8^U)~ ܗ1;< 3%ѹΊT$€K\7-pw6 ۞ТQ֑WapM[Q>h# 8VI92 ן,f{Lum^]zae .i7 n[۽T] (\z U%s_/ufn +\:ܰaq$u5r/ 7{ Et A TBsV,ak3F4.p!3%Yʾ=UߑcA-$|ɍb6&Q;z(X2Ԙf^9eX=8} |S0 r8R"pzȉ<? oT]ݸ6~uI:76boG[V) **vtnQT!ƿs?bp01V* lb8$fخ@Kڈt d53p2 s <8[\6 ~X*ur{'c bb52|:EXbAGڭY#TtX3\e4Y,o9>K-eDa+xo CʃDi5\HrQcC PKMi=JDmW1gvtm ڠyaY)\3#SƑ] E*>!Cƾ.[9+s6v}cJ@ЄS*3~oX1pdqرZ-ym1ܽ$/ڊ7I)~$"H<۰ Ue΂SS$pcv. C&ܵ{| S#=]<}bHcSg!㻔$Qԟ# k*e[MNDI@%ijuú~ua[BnaOkP]$E\37ҥAW5^Gb->oF-#59VO FQ֙hjpw6@xS+ Mb"o@DHY\t3n7R#Mޮk,Հ7#zKsi! =LCĆ*PF.{MK񰔊jb_<_>O~lLgFQ:yc'^;LrSנ凂ӵKd,,Fpo{ajHW0@Bo⾈HEAyQCJ (1INEF5p*6H7@ǛtK0Q9R5de_F @؝kH\謪0}wV\KD-0juW_ͦ A(Py F+82T<2\8_i3q6mDq^+`?qRoGz] JNA&cN꼼?bl+YL4e]{: tUϭ*6;M(nّ ä7;\4Hv}k~azW ]zJutH>G# O袄ųiRB r Ӎ)qo+#\,7nhпĝUXo4{Gk׃Old1/?) f% T=msrØ<|mTj>D+r G(U"f dcX%aHt':;a& Ϛp$zaOqI$%I#Ee<h5\k8EP5uH<ɂ󒝏L6eg/ `qx2%,i}릺ٝg<Ȯ[G?ãꁛVOY`͑I8ƈX{lA H}K]@5Rܗ0wXG,TߘiF~?Nv.^=wAH*_.¼Es%H#P a2ZPX"%d/> :"$s$Wmӈ4ȯ`7rhܠ~~Tq m.T\5ެҭ:F-$ÇBc_F2I*e6eؿ]x2}]G.a+ƋeO q{/Ҁa04dt+" +_*WWg茚[*NB0p<W6X59h}F>&;H%@X8?݊Q[i{3YDv#?QY=*NAHgR7YV V\2kw'#.oªVU^ $t6ETBTU!8٬4ƃ_>skiƁWo*sG;6F.+P#=Hr 01-O'RH뼰՟]*twaipP=Z 9b' 9VNc+Yto'UL yTm>%~)ydwInQ 92i|IYE{ C&zTL6 ƺUxTƎJYyU ; FM$A# P+|AH_)K5o:!µ5'Vąo3BbDmPRFXf?kQ>jY r4C" +G OMP;&>wᝥ ;Ś5#J%H::2 "UXOoFfuGQ~ Un?-[@>5|}_m*e|RRu^#(}unŰZ쉕N0NDZEh<8$TR%闽{No{/yȎ!@Äc UR0Y$;`Z-Z^(&}$ʲ#VwrZ] }TOqG~Vl_nITT 0cgoβX0!Y' qZ2/,Mq9LLa:)xiaҡN4neYdA=[g Cpw_$&gªw`h)kfA*gN<$0~0FVTQ : &5*[1I)e! ;'?Y[I ՗~37jGɉ|bӥCLʍen7c3zteqg 'U 9 >{le &&R^H_>2ЩpXB@1*#qC`~VUfF0`b{ϋ%Gy˛V ]ǡˏ$ց2im*;EN17p%Gԃ; 7ж3 X:22`Nɏ`[ia O#OLք) o?OO)X+K 79#W58lywq," c)Veig÷+B_<|j õ)ͼ$v۶мӹ3G9+jMTd.Qi3ExÆ ,v;&\Ύϱfh@A\ZkHW2Z ;}vJlG=)=Zڦ Jաn< 떢ƜE /8B]gDo<=>=/[a5M$ 93+3zRZU6qyQ&<#C"7ʐ]6ezUXMe @c@*.v\ID^"5 %!opIj-f+M$\Mmݙ8':QKBī L*`h4'~IK#/Qq2L{؜h~U|HljnϞ;|Tɍi3WjŪ%B>YM b-?>|9KOU㢉Lr,5U23hjlk4P<+ץ, "2.0$Ͷp1C:$Ny\jDpF(wBV̌*P[|^QYm &E R߶W2MF$ٸ s'7()&9u!6ѨgWqR ְ N~I*0-yE$U?1[_,_ߚaF]廞:ZY>r CKfEsb;̤ÏMX.^C6f{bf j^ cȄsPԦ!1%V{MDtW nLp^Nr3rzF4%]( Tٙ*GQV 1=$Xaz9u&)bL[+{ r6uGRDܽ Ҥ\٭c3HN(^a۫=V}}hQ9 *ⰰǡ[b&p36C;^0vF@+m]ʥ"LK ,$)+ܾA(-S36HkvwJV,:mJ /ހ7E7%lG:Q#oF0#TVD񻾐gz,=MlQW4__ yS;|İ?|zOI2k2wӘajnޱ k`woV{0ޚ{+,c% =L6 qi:rOx? M AU}5 Jd#]ϵ2o\^lHW. p &0fnzD({JCޱF]-m?BZ w%4aU5(q}ڄTD"" TD1n.F?ݢ1 < c[úe`s4WX-w㬳l5PPMHȭ}13 mC:҈@q >'E#Sd )<^lH!)m1}]t zMxƚu@*zydW}iByj\,WsKBL+5iԌtՌk*յ`%n%\qCjؕ铨N0ϡ ՖA aP/s?xPlyTȭ#1]e@3o`mil м;7`u=(Jt:dW'Ƌ|;BQpC'ylwG ?Y{s4%0XIqJHTA~#'pl#o{i?SS%(}DOQ-Ch՗ɶ[Kz%3A+2(^rϭ|1~1˴V< LYW0kZl=͛ҫb$rw>-uq%ɏ}K1{ U<ؗy>Lc;RW !aFi"{?O[\ܦ`)ۢR_mzRM{ eaˇ/UMۡ>Ҵ[~*#+ ?Y2xjm{㦰/Cԕf8޾հI[-;r@vPZD/2Ozs D"٦p/KDIVPUO|t/<؜d|>~Q2C5)%0XQ?܀)oP*=@J젬o/pv.x0"Պ (&H): B1cRlt2za ~"Q6ߢ<=w &+ab}#~m\_!k>-R" }c'{Q`Fh@79'4a:Kם' - .87xWNtBnKZː;/TyaNPƨ񺾨$ޜ7#&2i.V*WUU" k?XHC_x2`NIڅNYr?kḯjZxBHT.;;&~s$䶴y˘뮶u*VCI|m()>k)Ȼ+YEoޙfbXe6}.z*XRv׀[GޑO5 2h.\~y\}9>{~[$uXK^Ao g*Qy^_#|ӭc_HxFHUm 7Ap@L?dMPOn͐pD , E0 o,OVƣ8!%,1t%C'ƍ* -F1mˎ zL{Vrzi{KsF3ysbj;v0?* A9h;N^ݏKxHqx =_`7ll{HeJ6'AwLS,wc$i9ِ%EZ& O,Pv9\{8\WT\f^<4y0F58dPs#M@?.![ee nDǗe ݄ͻa zjtP9:KipH:P,G[O(y _@;wT%L荦^!\ˌ(]GK]ZbztYWk;|MR;O$^_&rМ Z၈9۪QUI4 1vJ~cTRQ>Q:/EBΣoެ=Uj=~D#G8N"U|vVzJ֗r9 q"y`6}E ,{QD+.-~w@aW ݠRK%ާ1al8/Q*ɼXUMD s5D*p0G#2m q|Ӳ忊@|$*L\2\\E!E \"E6:ux RtIQbzR,Mh {jW Q0< [\,l}2NMtgN~,⌉ uMHsqNAp4LD9=UbI}!8 ڻ0ѨC3#YZ!04] hӶ@USa7QVt>TJ:tҒP@ Fj70Ll7pjeԏ(Gؾ颇 ]KAyҍVr0J"^?N? ߜY&Jb$_X# 2ÊjGhpB!Z((q9i>/LC t,4|[/5?;kQveQhx|b0Q}i 󫅖zttĵ=m|}5xwc3邊 J`M,?6mpf 16ؤL#";zN,K1bC_1n~ R L_{DIA:s42-'QI1(%5XK4qfIU%18>#̷ :CH8֭cFy}M1$_ MT.X7זǫ#WJ'!}%b ϕO@j7KmBQq䪀f$/A6 79BrrݽOY,e |y`WQc#C|ؕ~,sqj S^GW;$jvS[ yO]u -`fwLyʪ0w rV7A)/ֺ$$ZRRFDڥ]9wb_qFz5E No$R+Tf,>"2vm9Mup:kτ_‹MdGZٰnAv;h{|[L\>3 HbkH^Ol!fI9x 'z9Ek3UD__^]t%r[^^ V5cɂA"pZT0X#]*] D>P9ŗYj,0-7 cd=-8e@O!l[ >%KF<}\#~WhC^S*^%$L 3d^|]'@V5M&>Aߒ[u CݍDŽ6Au= mАjN8cW!oKh[xɔir_:7:Oa-mloܐNCa  R^̌.AUм-i*b|l9R!4=ǩ^;lO֕`BZ0W+ Ȗlk17__a+ ЍZG }z<|>p 2ܙ_8xͱ gNkuAtv.2l"FҨ‰{[+m)rhF]ͣ?T#/pu""N/,WU]ƧR _Be- $}w,r5PP`˗~\6l(T3{bLs sG>͢YUː$+3DɣZEqME( (0,I>ƘGeZN3LRLaRgj]bBŖUynh:%<GRX #PPSXVrau'Ey_ۺ*tlhZFwՁ'lQt)uSOI}Nwsi? O9KФ (ŀ'AZޜDL?n39tVEbr'mň*=;lB*Y:흧.>X }Vz٬AXGe$aAodcDuwY#qm%}чH!bbNzC?HE"le#V2F_olE(!8C*l!~1j 2%`X7c$-u?-jn떦#U/vwhn%΄{)WeeI-?ua?4R_BΫ>%IlN1|H1ɨBo[)cN=дr"ͥ,tizGt'P&~o2Խͨ<5+7%BkJN :ϰvlWq,#ĚK B^!f*!o rG&@GGu2my6ג)sXR׫ 1AW3Dے)5=/A"]IN}t%֫IAo6s9 l]8xG[h@CK}G \)Q0=U(CtT0lB g_ߖBIVE%B/R7Iᇢ]K]{W)T5%, qn@墇>\[FR4ݵ 2@䭕DK/X,B)J^nvfD6.T@SB'/1̹_\$K-ĭK@F//;ZKX̬l ,Rmj['޾շ:Z]`ÅQ=,|u-}D>l;SՠB~y+.2)6zZ؝.o;?EerSe?(Pjb:_7(l !k܁6H ۾oh%[1o0y;kth"XcW.+DtB=KdzMk??c\M”Qڲk1IJk.&* 8^Yz(B?" T&YjM/:+ST'['ń: }HY]S'EzsUy7.UW&x>H#?3;̕>789d9_jH->aFhFȏrzZ4(Җ*9twϕ;"\0LO?rh܉(OAMvVH'+ #r&jxEF>]afCd(-t af47I}wb'_dxdkHv[e\O19v̧Z gw9Šfq|Rg@@ Lk`gDOα Α.nH޶(EO2Wtꋖ}f#͚3thx*<柱raoh]ȪW;1xٞ 釣@])~;#:gac@4/dxt8/wԉRY+]o^A{30mngRۯY'2Q+FF$dh6HY,|јirfH?$NmMGZ[p(JcIϣ?'z0Bvq^a)v՚aHǵSFK ,M%X\NStJma6g&(Lc~t5xlTw!ĩ(jiQ< F F N 2.HqPJ]yѺ\t33ډќI`NvqNhWDa Ɏ{܎j\jWkDć*&"{eλ42~erԲ εFÌ垄v !#^Inj1bU3v ?.F)whdE<4EZEę*bB"%ˁ>QN 58=}*`wWO2h{veAxUw)%Ypʷ:sVʕ{SBD)щJT RH9|.Mz " \ToE8&p1w_Э}<⭞Of ceTh0J@H?ښCd^$ѐUE(zca >NrBr ^0 D"/ij; juSLGEQ!CcS,|8a2gd^X/9'zu)}tjSc PRb`nPqCs.*s6Vn:.ɭ蕷{#&A$WQ'pMMhPG+]~{B  ;܎u1?OZ[ex^f; FBlg65B # #<3@xҶ?dR"i'׋}:0gJCS qdSн9kF9]b\y nEzcN_RR5-y}""C@9 O'(dt{?cyT ŀ֑ %e%xI~"_$ 'l-6uՙ?r*%|_c mvnL I`ɺR¿gkZӭU˻ gZk蜇;MO[>9IykZ=v;)~zeGG .M P:9дj;gZ3Wpes-n$QZٳEv_Jy*վxVqu` x1X^Bi,nᩔ>LYhmp[rݞּM?W0\b$'M?Qn'vϫ=㹱7̜ڏ)Sgos]ɜwnvQQ-Si6Cf)'.Rn-r@5kS,B?v ۤ1Ռ 8l6P3n~+?UO5WsJP֛Z}팘8=U &>k!/_Ed_amvN#y7~ +vV-Ȫ evGj-uXiH|gU~έ́^2j+YcF%iR|ʣ_+[ /JMqafuFStl0g̓: zĩ J]So:~qYAMEX9$HN!}\8i1ԓ8g:qco$S; ݯo[0Y0CCɣˇoҳ.| m =Y| ngm=`zmy$'[W S(UĤѣn[D4|GG{'"xt˯_vj[{xrS:J-0ot_7XTL#fUg<<{x>(.e0 )Njڿ po$At^jfkӍ=9YAz1=k1(BHҥO0:y|t -T|2ܙ+lP1rKHw(=c"(!`dc˥bދ9[}k0e*o읖R#KO?h-ZA`ZIYG#SWH/TZٳ 5*[?X;IsIczm^jIa@d'm1wLSreh@rvºAP^&~qgx?E#I`;+7Xo;6ˇ/ekȟ~2SOZbH#K6i#Y)-2rhy4].{hܘnuSFF6Q(53 dNʖ@EGo6*&<ʪa$ N\cpX@h)J>oĦlBA=X U#GO!2NdlUPdXHl9QvUպ OňnЩ9p͐!f@:`nL<+;3FDauhGi IBWFL1_+'wUsh͜;yN&qD6J.;K($3gboE%{St'׀ܽEb,̬,Tww3F^$w[Dr)S۱,(~ e zo_o@(\Mf%. G{kVgU|hgzm]?h߸@Aơ$SOz32`[wK%+ӱ,50pY@ i^cpFˡyZGWmkҥ+Ѻgj UwfSh r{xN.CQįSR\<Od&窔Nɞ[ w3Xvm'*naK@RJ({@a"-&`$٣A4RVT9c9q΃.}>0-NA܊9{7ٕH](SZV7 !]jsY. ߩ2Y4XƲ|jkݞ ^a_\X.b(D'(V굔ͳ9ied<ԉHwnnVj=nl_rIKPYܨQ|51eA,3[ y4Pӕt*ȩbkۖ1gF*z={C"MPW*2˜.ixu Fl#m9Bʞ+ L6K?(; 8_Ql噯C,wA TҩDW֟NԂb[52&뺋 ;ˈqqy"MnʃcUfYG҄o4F)LPÙ](RKٴH'&$ZUu=D w˻eDcXSz5Cjs (NIz }E4i8 `2\(Hm땵i#}(MX# .]^^8aÃ2fi/VX9y+lxe>um-wUO4 :KϗUnw/&x„Go|\KKDAͶM.vsxi N#hA65cD^m]I. IaYoz : :z ܢIf>˿{a4 |U<tJk:$gr SlyЃoO[Ug$K ;h v_5' \re8o+SAdsc@qX黸ǹqIB9Ҏ[Ew걥}j_K!F1(fP!K( '):It_ 2L_۪2Cag&` YZ