libgit2-28-0.28.4-150200.3.6.1<>,̉d lp9| kdU0ZLk5]uфW]aaJgOzb)v?=BR䌴%XL,2Q{YRӚo`{IݏH0 xI4mHc"ojՄ~pD7 Ee%e77X]5kA!U^te5_%$`\b^|puyHbb'w?}DGI8D j%OljYl `ZTS,}>@? d  ! /  9Zy      ' @\`(<8D9:>R@aFpGHIXY\]^hbcdeflu0vLwDx`y| zClibgit2-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 lcabernetHSUSE Linux Enterprise 15SUSE LLC GPL-2.0 WITH GCC-exception-2.0https://www.suse.com/System/Librarieshttps://libgit2.github.com/linuxppc64le@0= 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/ldconfigcabernet 16795595320.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_Updatedrpmxz5ppc64le-suse-linuxELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=9ee70d2eae1ee2fb02f531925192a50c5c9ca457, strippeddirectoryUTF-8 Unicode textUTF-8 Unicode text, with very long linesASCII text PRR RRRR RRR R RKU6'ZYMutf-815a2c3cf1c3520cadde0c4a279f93293be59fd7c136f69f145c4b820b563b6b5?7zXZ !t/]"k%f0]dٶiqmT᩻WC=*M7a6 8Vc,O (6 Hӌ{F60h Z$5.bx?̈B7Z{Ѡ9Ͱ55lbnHHA,jݲʘ>hOn*x'ن%l:/*OC[1k?)ߪ@?]"gw`8CStd#W3!(/9SLUѩIe1c9)JYA)٧v6&:IBu8_l*SMhߌ}5RAoJ4%bEp'es'noWc;<><,$lfZLlWe{^'jy8}Qђ"BƷ`x=]',YE@?:I$nV뉾7wosDށSCo+R^Y3T@gϙ4}l7ϋ &H5O`: Ɲ~5G-ejWһvRC'#ݵ7y7'?)fl QBb'[鍬 QtXwQP2]— (nZtXѮxS2o̓Ci =Hg[;5y.7VR+A5| 9m-6d#ݚ!)zqYhO` . c vK`kQUϰ T%|j_le-d3s՝c;j|-:FNi-Xt2Ľ7Kɫ0}mw #)Ȭ˫ʦ Hz%'`qGm&;q"A`=r5.Ds$?R6Tw:ЃxP^ ƾVZ"!V7u/PwQ?l0OȣصZƺsaMwRζB k~b=r15`V:u0JG`4֥kZx+87qQd'X2<3$ɚ΋(pfyID^Y&v7uz2TѲkqcPps&o4ҔGK`[ 5$ˍ`tr  g׿k.旨bb2ܿF5H+ |)͍Č80v?E%}|shB6X{G)v"65SqĢGq6a,-@㤄8R|SnF& J:Y/_ L'8yQVx{(G ^b(*)^* zàY؞& 8p|KTu&_ T+̝=HMwyб]B:2l?KhOxK@Ex㉂),-vɖ0A?-ǹH)^'SV 8zB4P֯ag]4yZ- 4I>ǒ-D2~F|c 0=G\A_v(9bBs@8E<ʬ/a/SFOFea-C5~EAr(8X.G=p7uI^vyL}G.:Ol?hVvC".ZET36$EJ5xT1~mH-.&{ɂnh8˻^R8OH?nx9sŋBԵj )(B '} Px$8 6=N"oٺ !G$PdiV9~M|2n ,i* ?4$ X t5JW_cV(uڇMm#ʸk*.6hooS!eu b ůha{A,F%.C5s\~:fn@EPEH/~=wf] {d:r`7,}vhfgN~0up M^(,ۣ.;(0 40}lsI>*+,X3s_ Q{2;pih۱֫ɝ'=ְ p+ƅyUF:DNi0:o] nj{sCse&&- q/wp3`Ӌ_LDbvYul0k?hAhg2z&yjíU-1z/hAKy hs YS.A",ZKybd=E|]j8(Afj}YUbo'%nJW&.6)ҁJA3x7b#eoCa@Ƒxoo>=4_7^:_<Ԕw&w3swG;07UWmV6+Hݣ?[^͉u l;bU|{ز~Ax@r;ւA5\U<&JtUA+GCOb<Lb 7"a֭4P |P{c->|<="Ʃ%vkCsu8~aQXjnρq-FnpAСLm8àY\pj6)f>׷rItSYYʱ4nȃQY c-: F补ۺS1ºGR wsvuIȕo]%)dcx&r8SfJ_uW}&s2'RY/&$׆cS kƹC2Z48dѵmh $i'ԺC.A{$팅~[ڼ$9D8J(>@C}\OS-hVmgQ4?sg65/&4 sJXE6oqR:E=wM4LY ɕb&Ō`#2Q{S%'Ay1_k)ﴉt5wn#$<niY\4vW+$y.B UYѻQk8V8Od(% uHTõZV jTVۍ@j4XM$/H[84u2Q>+'`gēAgF;CΥ%F~3m9F7s* 뚈Jjm>U0*]̖5;'GW&6\K0r.4:Urȩ^Ⰳ$JC~ OpAZYKqpTN#)bU>g >A!ݷ5գk7d>?N-؏"e"/"۽!-SX{C\k.mWl qt%R:f=PΪ?TE[ ##^A< EyV^d.~ q*\z/:̚tfb1=qW}ڌyS)?,O %A^[u(қޤ _PMt.rUQp jzY&xTĴ)&Fg/>0%Ɉ0F^1Y Q@ P /`)OJ F@`j;RK.-x6`C*V#NDQ-B\{n2] 'kEOE\rrc{b%/p{΂R{2ΑxަuMm&<g& vsKJުU/\MÍ$ ?9jF)w}#zE0\$@%=y'k! HTKca8lx$"C$>خafmr@QPU\r;I i[˃~6^?Љ9\*gwե),`2ı˘XM#nU;!;WSF i|{,y Z-e(_z֩8;w`P"4?'-粡OwBA\L \IӪ7M_rwve2}KZ=XYJT) ctogE.NWl +In2RM4Q6U6aTV?;/LgCa 0?9;t]þ,^zX# h5BC! ZFmG(^] (dзl,Pmf7wh_egi{3)|4+z{x34af뙺Z yTf04OQEvu&\=0O vKeQ],$d8MzOJ_k_M|+pF^NOOAN!F1ȫTIVG߄`ĦУޤ&Kvk`0H2 iL#SUG]fU sR$]{e,4c5IA@@*ith꒎|R^9w2|{gko'z_sbRjLDar/lc40 i:Z7eTDbUg>&1R꤀al@ yw&G:o7޸T$tdCn<2v<>޴ҖM G;b͝xʊ $Wy#&<|l)~kp RӺp?O, ;0L+C|OeZ;/Q&!7}E4.I9DK;=_R%j!GD0̲5m6yrk}! -ZW%nDlmOؕ-< 9pm^u #qç<K6xܪatj <ўr(|ߪ?\I!T#JʴyXdȇnV$ 2be,#6Aމ=[F=,Z"%&l1~pBCHvg.J2,t;1]xht!U=I? /+]\"a)HɺR獣RK얲0x{GLZ*ckj4z2_I_lٔ^zvm}e `c0EXOѨ@FV_FZ2h=)2' D|7>]c;b),wӠ IЄdyզAG|Iei_y+01p O>y&'N*6eN(-6Էv`ݡR"XUPrX p+v~'[ [2K{c=7*H~p,ۑV ,Yb.oaJMd,cgFId62ɾ%a JUӄh#pusݢ vl֭x y~WFpۻ3VERi@PPb)LYo(/î,7oOj;]RQi?c㡆vkV>s1X:c)K dV9dڝh "sw{|77ĩPSt#5udkN%Ɨhf!4_L^# AoN_ڎ4U1ó{DlvciF4`{3&O |TV̍OL.f%\ Fw(z0LvX0-"i[N'gOo}fW=s=+(%캲6f~sZSE8WM4 ><ɫRNc?I!J$^jbޑ0J̺k&|xepPr.xjnz~6"m퓵_<1 N6>ۢ*jLq4;F$3 ^¦ڝ`Q҂kKr#F >:J̫}Gf0v \eP{pHw$5vm^濫_þB6>{6"K 0X!y@?VSʒʩ'cnu靘S[P${/hʹ C_LmLL 35Ʒ7 }}x>JAiAk^`v!n}sNKkGq(b+䥸d 'x)6, %vjZr˴iY0!8 QT0+6ՈPsJ'r;Z:6{PRV|c'drsso \o(Eh^"dE5a~)yk>}$4Z5FDE$}Oql*1} ړHҘoB3(ϑ8+bi¡#tַ`x뼂s9li۾v#GH*kF(% {Y *u3BJCn&X.w{r L,zyF&ؕoP Ŀ|֥_nRwa`w4%*fAP&1,h(Ec^xToy1'0*-" qגYn^Fөh5 YW4(ۻ ՝m!8isOsxbl?:&qQʠI~yS_uPBݢ. E;'7#; 8'x|ıW4hp!1o4l4H^N,qt!Qǔl|u+YQjI&ҜI.!VmZJͪ} 6^S _}!ulZ5{[|4Ǭ-uyc* @!|ԙwnb? *725L-M]R٦#i!:pN9sBȜTq&ryO.@n:0/r1+Dz"d9Re* 9e!7mD⧩5' 7G.E}89w"Hp?w,50z`\\m]IQChW."IC(.df1c!]ZN l+?//z ?ZCq2yUF'&ƜŃ ;˭_`ߞhoT4Qn0?Hs  Huh#N:$X#Ddy >++)u J'\w֫c*#Cfv{ Ho~)YCb-n6"_;}YGF@[6(q| ayb\#,KvdIo/צ '! c(Uz!;7 СPpzL7vO)lNw$DG \eC`GQ`L",[;+dseؑ~y0/%T` :o_oXJD@F xHG`{A!d_ pJHoL>GkJLDiKݑmwHiF=ZW^/0hf ą\_'hhE8ZfL)'&^9fwpc*X*B0V66nUj#RlC1o׭i‰fԱ CS8 nVx-NtyPZ׎eЙj2jnMQ/=򄱪 riBa^XD~6-l,L^Ə^<:S(zý↬?JlUK[l)-b ,g{1rʋZu*W(7Ys{[aB,@62GusldB+Vg'5yy q +k_o"ɟL[N:-˜L$qQ(NTx1L'˲?IƤaxw{dVld`dg(.l 3! 3V)0S9-3{8W ԭ  LI+7H5G$FoD@fAaZR (WCb]ZVfHoy]3љwspi*~ S@#jE&`,W#}G2K[cXB;mΒ*__e[AmaUj0G]ש'6 獼ʎs0]M/~ڰa@ogN%F }hy]ܱUEyʇb\x LB o+(JWC:VR |eF#Bu]/9vvAƷO:@:Eh2Хd._sCε\tlu/*vN( E-R"9;Z(x-]4f|ޒixA7g_ϗJz/֪Le,X#H. H>P)(ɰ^iO}GhAvL!+9X&\-v mgZ&u;F7AA0\JˎD%ïCF&Jcr"ϧ{EO\;yiǝw߆ ]i8El<']ʵD@[x3H03`Tc)$7'>h 赺F迥ҡnM1iSn#w`K5g'1/N"Gg3iHБ'0 ݑOGd굔b3Lmb.U&q#хNj`H[H*7U~Z5+.>xkͨ! Ο~=rZsKw4kr8}z8@hAC_Ͽ*mCs>B@B ya'3fc+ "D4EF R^Dv~L [ VxV.WGbf3hgrI!. ]<1s9 4'zGTN"KJڶu;nۆ!Fduu]`ˍ~;"QvZNo(~49Tʛ=$TgP.1LskW@r] gY*X rƍqO\,> KتNX>XE"['vؕ^%1B:zsx;Ny8S~5A;߉T*3t9'}W2~+lFӪYɻ4V(__gJsjJzOlzo# ۽SҴ(j`WXvNW`b%Þ@/eU'S!4ެxTda^롯aORhG {Y{U{*m"HcL=$u= u.>1ٙ)_ɾ#wC)m_#96iѢZˤqXJ(r3*=d"!>T/W\fhbjIO͆`^7N/kBEcPM U1W-O"$~f? D{hLHGTD mMt]f@C SYtVi ;&T#A~('_^<*|24)1-9tcӼO-N %}L:H ;}T`5La)I}:h[`;i&7h=eK?@=.EC70'>#?YGǥۖЌ?{>Maeưִ,bscEyՔ\ōoW^m7o f4HOq=ACzGae0h_tnfd =I~ycR䲞(ԓbH]ge WWktU;!S Mqo1b3 Gm YG0OKV;]jz5Ag(5TQ7WjlL~8]"wv}厑,NӤYol?E/IEaxwds.H$9VcKCt7aj֡&%P嗦@7<m:)H(@%+_sU{RU4"3gOFrXz%#g<,9vt%o8Jgq<4s {o3vOڦ^Z'E$S^ǰ9">[eP-v<*J6Sujh:ψDS6d#E-F~ϧbTu+ rR{+]G1D5/+\z|N|x*5 ,ZᔬBP %Rg8ZtvĻR"\BVؒS6A$ A]>IJ^R6(ϯƔ`lY ]Ffc=3ǘ P=ogPGR;So.%$r><3bġB,2l.ٞ3&O')޽DPT잼EۯFb-8ҡʫnl = m|gQGp4-$]Tc}{BEa؂)}y$yJbs^aaJK@vV$"z  Yt=Q/<}u=Y-(N~zie5Ӵ"0m(iKHIupFI2_O?]]D;S@l8m֜/|~2vs{n<ب9,t+#DIwj ,wJbK0g+azkN "Pe1']I8-{\f/f<.NƵSIe WyCe]YJ\nȯE1s|f7MdC- qJ6j—>\\NYx7p+6܊?7om~=ސou%V-#\~WyGME_z0[$6M%42uQkꖹBRLJqh eF;y6(\-Þ[iF6)Zt sKp8w]<'yIH9$5ºP:u 2AM+{Z{mOW)Dy9r0ԶvM=PZ<]$Fɼ*7_v 2 qmN, `s*(7&Ƥ[̞PʼO{WgB# JG [e|$:Qy}4 _y9IOt3fp%$`%_,fVhaPB_淕|)!ѳS,QKu>n[m#x]fxZl0e{"q7> ᴳ{e\+Gy$C" e{!n)|g sg6c㔇K1A/ai$zXfc 3%&A|U 4|9*F[į{& Ê`dYfV0"2kN,] DAҨBY^EsXb?JJm{J~LQ^q|p1X9J/#wmjH0jr"BWJ^U;?x/\`.uKf˥hCBnsH4W6 kE*("렍]4+0V0\0ŷho` )͂4$r3D_04!3+ VZL<^z08ޜ3N(E M<cmÕ}Hkf17P|u/R'úWG7Ͳy0aSj(bA3c%CX4x eY?UE9*A 9BkJ`)9]<. 9z~WLZnД[F-}0c#=x0Mj8j |,xf7#љhٕ}= yPƪU dMխ)y\3C s0Y[v5J#XtTW3_*.R U9Ls/i}NC:Cvޠ{`6 ʎTnQ]O[`u$K V㎶1tڍV\ bj^Pǻ rz5Jf.TQpr-`7#hbB&pK!֔r%LFdM~ #8Pn wMJtܒMgPkիMW̯%6T@˗D~2:SY㧴R阶pyG ΪYƉ]T #UD#Dsv7ʑ6yKT+!%z20c<CNBfQ@ԫs$Ȝ%pQB?j(L:*nSIlWRmQ_XbErğ-hcpƞX ~z@xP k`Gk-]N)gtmMBG` 93'K7r \Fט( <yKЩVyrM4۫"{d *.&5ؗ""GۑJ2R2)V|K:Sg f(y4@YB'}MWGL#ֻY'8 hwC`fj/fY !GP%+2W4̯epxԉdR - ?e1LCb-uXdtlnQRn%o_1]<Q<yv& h6:ZG(Ƞc=v~.oM"),Z`h Wz>Q[K44\{ < * @>E * OevˍJT^u@ŚL({TU77!ʂ5zG Nwe\SOkG C+H"΅iS^~u\ܟ6p5rκY̎pYv̋^=Aj qEAt3`e ?GY6n5czc-=Rhp7O2O[zpr #WNǀidQ>GI>xM?zu;RG;9xYEf[6Do?.dQ4aFw<de] .}²fX hdeT- rϛ25U_0_.(G5KEoٚRzujL]K]~oSnJ0KLV!mD]Ĝ[1len+FkɦY7$:VmӁ,׺)}20 Ϫy{c͕`7}" ''aV7fREX#Lʖ13m%X:΁,}&2M8=ض}qyyїCgÿ@ntKjyE-$nIhFYUghzt2c|_B+Gg-cB1 ƠDŮҟ8HL-&4J"Xe$vƝ*@'TM@vlu5k bק>3pMz"DƸ(i|MXaܙ MS!A4<"cZ9@@Wl:"!ӭ4(XB Z$k:Q,I-Y:ҭ&a{6eCw<}JoAU+Xaӌ>]waU ~VQ #U:$%‹$( ;+kUv޷7C-n@L*pBo^\-+@x ToV-xfj6pɟAñk"Z=,^ؙ~r{0ہIS-#zx OGl \PeqeL{B6j}# ;yE9 .!qPG,꒣hɑ)h*}߯045VOg8=9rSod>qjh@vT+N@kOjL z- ȑL m͞]& }Wj==KXѩܐc.vS@E 91k{i !F@GZL#7çwRmmU"t}2\LHg`ʡ|uYPhss}rK,Uw3Bsk''F\͔/LQRzBO g,C]UwDI%G'tqKE(&}BoZps2õ$~Ȗv geqc%UC +M[.,0m4^&[[lBU!$=F-kVs &U}zE [ |u]Kmb~| +nO}?Pm#ٓ~xQ@-`YxgЄՌ{WNeRѐ(k+p '΅C;:Tэݷmte?B)}ցm JŔ?g"#y9)J"*ʖXAӊ* `V@ՌR?Gv-'y4Hֿgbo;]"CCv0m)یZb{*>bI5 )T؞B%*OpjmY$Ӵ4;2gE jh(kѦ=2@5,\!U@>:kvJ1hݜR&WfmF1I4^S,D0gLz;CWL9gA8FJe3z&yѦyu^67o11`p!4Tzޫ*r Za3'{h]*DL%L՞'IrEj6jXdh Br%*YGz8;+E u3=N@?9tQ|C(Xr: # :O,F[g?2Ro~5v9W땁Ҷ[XF@M\210t؍SGtI6TL=a1i|&unGJ>:=k!ěu/!>G7ͧ 3櫧3Y8kZ4(﵃Ƚ" D2>;t+R32E붡IIk4)c qQWx_7Ivڏ~olWLƣc;G+i69b Q8/릥6wqǺZ{r3dYUi +`Ͽ_MF߉˥!ѝmDn3ZP'HsE*2[8Ӑ:gJFI'E^(^e`.a$S;q3g# )E8dìۼ $Teçket㧈hJ=ĩrrAP[^Y1\'JQߦ76'F#׬Qkh]H?0`KVC_N]}kx`k;჆y ͣ>_NW H",mJ;DlAE G0@_Bw-g:ߥh B/|>P-eϮm"ToS;`2\9aoP_޸(Ypr]LZ.rZ^/:}4[7t{V'i2]yO^FW &[ݚ0"! VpAבy`R"FJXƗQ٘ƴuL=,QlgIN G0zGn1'ICO9iU9,{HA\t3Mf+B.f7} VqSoguI#^ڢUSU V-VS`@bXޓ >_ͫD"*0dyF~88*NIٷ \ Ea`f*=9"5+(O EZpnAc5הrʧSlO gIy HzEe ,`38;*A_62e:F׹ [eӟ5⃩jyF$UsyMDpݯNzG4s6c-ގc bjk&02݄aJV͞3 |/l(l",rUϯ`Niesͤ]pFbǨ`7~b.fEsytHծjw>E464:6NC| qKfGj` A4;9o0)fT;AJ`M !9͇L$݃P1M{P ǕN!pu <3{,c({O-UwV,:,kDlZiv2d]ObKԤSx_x=prlTW;PĴW $2 b.:B`뺗>ِ)ǖLT| ֢:7ܙT%)<jUͺ ]ȶDɓ mXudvm)[ {3{=PB')4|XnM]rjbMmK u`X,Bbb /GLo@ढ़r=sիOZbb-L3 #;/m^:\|Q1M2lyY9݋b,g@{szjhy-J*:"ߏxni1hԚ8PJ/6@D|HizUl`]'YpL| ӇRK@ oS4~T ^yRJb4T&APꞿC@ɇDuݥmhxKc7Z~$bi<*;f)id.!IX.:Gn +}`ur7݋'0,.{KxOO^t{e9wPV!s~hV/s <բo\XiCȥ={=r3hlY[*% θy,^ .OB[IXRVݾ~璡`rdJ(\uwfz %bJ%oǢO8U>q?N=fA_ua@^Iihj%x)͑ =IY"Y9nR31yoT,)gW:HJ #JB*Y>JQI7$;ө <;qopp70p^, kw7~MX E6;D}F=G>(;T,]PC?Mlp]99%mFHNc8%DֵډQQ+f ziпn$ |j+Ki 5JğVItu7Л)VF(HHDkY&=jQ/Z,B,>'FQ ] 1 t澮â)FDR•/FS^i90L^Y FslI li #FHoIjTYnԴU9O?oL@Jd<6^XȮAэ:PIc"Գ*K?]ymGIxt\ V@tEyEtn[7,掐4nk!CnBTlGtŋ[l[N~˜gagypYfIct {TDLe;“rܶ}i }*?d >HЀ >օLR_?26\Nh|KY A;Mƒ pɶ $w#:G4R[fEӦrR]L6;3!ܺƻEyL2 a$0! Kr=[U<^2%o9b&)-.-m9N󚍋E$ŵALYXIg"+#V>} @2x҅:9?t}0aUbm\MGlTpdj +BmDR^Z{weWv,͈hl)<`/O0A}@~Z-FO6ku|$ge?Nl1(ZیXd&^֟tqqшZv;L>0 ~9=z\bQv@X'IVl~Qߑ̅URV{< QV>'9[rw;,(*t;v~[|N^[0Q%R.ēgĽSrp9;T} GN/8 LtqOqTRHTJfJ~r=Yp08~i G7W&PI0 m$;Ls >!\̘z?O_? ezuT[kHG|y<*k =,xUh(yNCkhF4I8P%'PjL6Zjx0lS \&E;㕗pQQ"m;8'DeHaهHXWQQ= .O&`ѢFlI6w f.FTtBZ僴R 'BZєn/b~ )xҳ5 (0(S|o&ߣdʲɝ:UՁnQXQ#eA 6PH,+|d? z(ՋsLSX`'\;NZX݃D&5Ż;tSMQg큺Mt=hz3ҀR`HJǪL?"kPems>2oSXD!aySIJJ:6SkyoӦY=M?vp-d˘X3dIL Y M%I,ǩ>0H4-:&,4FCF&U## VgH-kى EJ$Onec󹈻°l<ļsPy ;;?N<[7M'Gry-tD!'ztylŷ{J4ay&2V%-'hBg$W38!YR&_ىB'ԱYα?2oay@?t-$ae {`*9ST8P"{QDufʼn^| DI-4&>.TA&}!GlPK3N\\)jC*&T,6lGҫn-ayO 9 u-N-y~1l8#z nϭ3dlFbuSF:AJBb5)4^=Q`>%a/lxX2@:_Z~o> H2iR8qbp(i꫽h+1J(X֖:1ܘ_~koD4%<وA=7iw@ͷ9gH,:YQ;N% ցbWl z]GѨ_ GCBʄx68ӏj wFƍH GBb@N$X`gG bTd#+!8`U,l; tPʴapdWPhEE6lXs*+ȒD2o>hG 0Ff}gNQ_ Nr$P/ݲui@tڝ_XO:$k E f(Aqbg膖K!4N0gg:4LJx;,y?J㘠K8t&}/9낔ᤴKL2YTK3ʞz1Βz&{uƒ_Ic:w uV xȮ %/rG#Kht^'hN }"  [#$kb׆{SL aLG4%5_(v`;9 !66=}t9dp<&oeCtw}V;NJd#Sd /_Q <`h& Jq>[ FniYZYw&\-)H_' |'c3Y!fJcl5_GN+7.qiր^(VNls?,|Tr?H4;SC_9BFTNe?=`Dbu)8&o#r:I$*{ {@;g.I4wއ[;])c8^@-Ï =go=a`9Z+Ƴ-bҗbȓV^8)4:tUߩB+Y V֠ZdT {HI,u[a\V ݭHl h"mڬ-KoX_4'W+ZCyi [pՙ3+_l^HE~ O 1RFŜT,Z]}=E,Q:ׇvY{ 77ԩ x 5LJ$KzF^xDѦy3:_/Wk83s a #pIsO1Ј劲"6K?]Zxyol"=*}'+6E+YLhyC%0M#Y/!* D9՚Bhc׋($|PpwW\t*qe/Z:ʝXd&UM.;"y9ZCt&.T03})Mdviɜ\7 G'3nRM J'woiǚW^Dv5 <+>zdaѹ]@TT_~:Zi=z~ DF2;PU X&J`8u` ҿ4RrV!Ln^座JI<~'k]t(b2"\nB|CK.1ЈO*$ZWͷÊ.͡(|7F$XS#dfk1y_v7?13Cӆ}?wjc!aP!`q`֔-~=_.[E3DD*8<\!)a[I$Iaɱyyt4bpxK܋x3 Eí`񐎆Et[ 5K\6cDKo:K7>&W [LnlQ?AvpL=MkJ!htWf`{\mШjj;@>(fPN.8Ԋ!$]eif{ !GڥWh'ovhYvah)muHU]!guQ!p g,Lq>:_A!\j`#~!,uSS[Cr@.c$U}f8BwT ?3C#w,]"fov t:PL a]˨"| pGA*`!^WΉ@~R}mbaY!# 'h2\ u|c,ݨv.c[c Q'8a=չ)eA!i} =r Bcz;eRz8OmgL]FA^nǯ)GM,4 cC/ `R5?*C'Tjٜ" 7 ,v>o[+S4kR.=ψ=ˈMhJ`ft%ۺE5Ç7EU>M!TPCo3[kfG6\ag5 SY[&rn v` '?z շǩU0PUj65 kp?:jAeӄRoYdѠ;$Vd[H?&nx h:KWlryԇב˹]D%:Ds![2~; ,Vj~(7GN˦ pkG| @B0n}т *#Wm`;ԍǙ9ʌNb>|YK=Y"׽:!x+KEy%f g^vEv< ̏;zBu^I Bni 6'GLξg,v{jst,| \h 6N,t֓Hׅ- 7HեgF|s^{CF0HVЭhљ':nm»ʝw<ɰU>.oYZF8 047[,0.{e4L+ F/k& uz \Qck(Z;TanR€7O@@^A 6WN6X#%֑" e̲*:Zx@@Rm`yud 強'zbP? p Ǘ5cƴѓCK.Y]|9ge%*rlwk lBY bo7ӜqPIFU]UhlCpoIM(v"K/ gd9g՞xiSOBDֽg:}+Ic(y{҈.NA;1>q j &$犨d #8T+㍏/W=zv֎+ 8ҥpt;9dEKHS/Dخ\p# G&\lΛnz&eO0B~[p[X,eT ];@x)#/7ķ+Wٻk`y0(a_81 +ߪ:95 u4Ì5O[.OU92IۉRP,7R`Au"BE5@rC22Qh0w{P:Z] |RmC,!8ȧ컚̆a`x}# WŒN0, ڞ'| 5ɮFD\gFkxSTgSMo&Ε=v5FVkƭ^G5UwEÚ+ '̣x%4Yc~u `d G<5QP,0?1{eӇ 2u2tQ켜gVNFSl HNSpE:%u zMޑu@JbCd 5d9Wę1fQ=c(t T4 f:ј(wْ~rx1gKŃщ2g_)ά y捗QaxrЧi ~[CJU\!նي!S0av=̹C$+w4:wQqYb)X>05}~K_j~U:kb7 9qzҗ%v3ȹzobo͊QH_O$ѕ9bqPGww^{\u5 BA~ w?7Lkoz ~-~8?=my;kDzȷ¾pPbgYO1}c$ Թ~ Pgwb.j-"а-{t4\H2ue6KN`M*x0RK7$.MN~,.__%q5dgI!*ÐMɋ)~ [$+z͌ZT^= ǯzk~KcAH/-mjN*3 zv'(-na 6$S5.npSM M s00ofq΍FˁM{݊riiyv$87lxX=.UtwfUk uʒ%\\m!Q`zhS׷+t# Ssf{V] oIVZaO v-pzNa)S&;'`K2ԟ@dYҶeRx/r׽RPo=WqOCX@6i"9W@*<sbI~*a[& 'ZXO0޽OeB~)RzEv%!E"gCBd%!\$eHz ?Qsd4+ѼF3>1 z3vXQ+oN&yB%*Ě~ u ^{ٿ*BfSs_zIӭ|h 8Su0a6*u'b.FbrTD͛A vhi+YlǨ(s #e}>Lf%gF\n$!2QB<&Ž}A==#A9+~A1aXhjC5Bt 6?qWoS_hLH$5ܵ!9<[x Vsr]OBag gPM-8ay%T"2j?r]C.c01`X5{(#vUQՉOeUgn c;+@Vד S8 k_DHɟLNĠbR8T29$a",&]|;"w?9i :╷FqӼr?hу^|OQH2"k5C-nVgipх%zON~d|˜w{[j,m7_)ȸvгh?Yp(r, ~{hYT"n@vvGWO2HD}ׯ+u1DIM_Ao$TB1|0MDϬzo`֔$Cho(&]]::sq5"jx"bSɘ p;+O0yNp#me AlRzO1}[NbJj&H=~)oI'~L eŔdzn{_+p>&M- ^)&*O\~aGYL*ec uA+\ʘLӤP^ +*DiQ'C3^̫| >xjԵD^`cvDϋ!v { x 0a@U/&<ݱ F% \m":<2P%_Uh:g(QdF1gSij`hPl2NLV27rܫ95PS/~Tc}":'-Tq , {@bO/ֿJY@gP-jn,#)K! \rLY U2m]8-A(u}P^_&.ߜԺ|GӳmRJOC -7SxR"&gYãl[79lqgNJ.\qy\#&cBBi E_{c2é # -R!ʗ,zp}YFC̙H:AbʥJ$3Xkt ALe` tC#Өt ~oC$-ېfY]Mt<:VIUob[6 0t5h[u^^}:CBxޭse<%"b +c 7VL~@%dƊ:rO$H-l߮.&=ᗫ)Ud]Ȝ#*enmڟVzjOD}܃*Eful$am3/kWQ,6t/RA +?*a֧Uw:RHG1|uTC"df/Â]mYU_xcfN"1ܓy=0t,n뚝/'8|߭%V FT{x,TʄQOcP{fj<)c٘YeE-JJ{ 5aj'Z׵` ,=di9ӥD%>4Wj͓r;6LUyŜmvR){ŀL5S|^ E*Gb) O2EN5J6!\EgOB;QUwF_('x$X5siJHώkSݨ' HL(3!Z\6&̙9!Ό?;TF=*$Kąt~)D5#i 9Z=7BSCB' [<|ѪDt^g*RQϔ~[H>.`ŮzG+IRr[A0^Z :8{͙{n.#Z =rnүO(7D^֬Yu3͸C·Buێ3b!-`b&sQ*TG s2dbBZ' ͂ L) ԶQ| >j@٥Bi3*eOoJ%]?<.Ix(Z&t}uƖC6E*3[Dfcv2/Wq\Pi4_%/$\J|w!//Er|j~LJe){ AG,iBٱ͊4X1jGV4} v7cA@D3ȼ"a+.D:}+gMhT%3IV0g~fG}eW U{, ok:"bFu {c> {+1X]S;(^p.Tq9n.>Ann:e!ܽ, 1x齬cυ{rڶD@'RB?2UOz4d=c';mL$x~m>ěю녫)rCE"G|(gSUƧ7>_Pob*\:T~H0˷YoFsTt8VyViCP"L 8u,Rtn=ѕiMkac R qk2#i6?]?_7d"4h n%vSNP)2kv{*% 𒰫<}Z m mӃ4T,~N)F yJ{D6B?S!K)BxuՋo-łPv`pg4x4OGU#l6+SH,*':U{{ɼ =FcZ1(c#-@rH!xFSJZ'NN9S<.#ހBSkqO\OrM/`YKt?6mb[͠QY 6;t /ϲ|Y5wZs {n 7ʊ {TJW|`Ҳ,ce>Z|[j]^[4:?.(0|6wA3U ;Pm(-P ,۟W3| K/0Q EUpGN,@ҼW]nF3{Y *)Ӄ9i! {G4{; $pD^8`>.eoTBF}͞A&Նo"}52[_Tp4'9)6Z/X:I؏d 8P:(M:(jd d3ܥhJAi-||lcCFIHB_bM󣮵3@u.@YdpH~fe:{Fg믪_x| , 3pw&9Ώp)y𔵝=[t1ԇ;nV P-+>3v7$=EcaM02z(Xůdž◸ʺ8T8rLjc|T2WDž:Eg6^/pdidj0d^q9G,+)3Q"eeZ[Xc$y~ê1Ϧ˝ݾ#=@t"qƆƔ*9LѦKJrF0RĪYX*c+ ZjLnv""LE^LAؤ>0L 3ChRl`nw@\i>)-!{Eڏ9?MCS~81A^p0Kڿ 9DcDiK&cqM=ٱ4֤qݤF_r-6E -/}QѢ;1\P%Ɇ)ѡL:f~Xx\b5p ]~aK;e'DG5ϜCY c'L)q9LR? ۘ-N1Otx3^uKzň;FzKYiP5WߦA;^O4k20>|?(uѕLM9͝0n Q D-mujj(/z(QӭVΡ/37blk%'7Bhg- cn~:i?,_⧣);IԳUml2 Y7@-Įn喍" )W`JQA)禟.|SN@|!}HF=%HzC ׼1T֕o06ӖJ``C D&HPZ>JÏYB*EM Ѡ^6b:£֣h9HE(7Z"^\Umtd}bE$ś/9d <1  A :ƾR AτՕ'k7r61O?ṃ?suQߣFaV"E(rƆT:ByHȯ$hl|ya>_.m DJ$&HAkM$.R,Oq,)8K9=lVg2 2 fځp:^67 Č}6{9Og '}c HF^b++sѴ+Wթ&/ʔ坉t} b]l!(itlyAWL*V+ЅbNݪP]w1qb|X[6s[ SQei@Lmɽݴ/ B(0i- OJlwf]*؎l "_6 jX\u~s8+2ې;m#ds#@yd LjLo. [}!<C([0bӱ}o3ECXxqGO pZICgA>Z`+vd};-V.k82} cCNd _;Yb%23soA;7{>hd_2 zڷT me}+"I³17/1ƒ&w,Z;9_eS׎w ZܻTEpkm7".08RtF*MǣIx4|3{Bo3~7zv[zzGF=pxbʑ@w^m,5 fE鎧#^iex/r"g~6h;Aʞe~*zF1kv]Lo4Ȓ4 Ka'7Zw˜ZL -'čc4M)8 [`*Pӧb#\)+uo%DDO5N mWU4ih \Q5Y{?+Nլ^%@7Ƒlӛ9 }Q £3z|/d**#}PT킀)4S@'-9'Xa4¶v~)Dد }6.w>fAz?ن~6Fѳv*=gj2v[y`/rUCk)XI֬\^ xA1>$Z t, =}#ˁ]{ײ`N,[~grc 3vv}wtuhAmP/+ں27EXΪB,ٙ%MsT$uB ,\@y?0bIw t~[^W yN?*J>`Q H;&gF*I*͑$< 'PHC·?ѐ};?!j&n%E8+ڵ#x@v.Fc/v*/a_6ޒ%r { vܸcRοGX;hkX|;I @%Jb T7WP_m(t >opDeHZLD6BNE1װ߽/NYy^?A."de:9?j?627&Z-9AzvAa?Qم K'ZPҐ8zkGTFlH2.VX2ђ29ò~f$}fDms`jqMm R"I tW m<*ne pG9 vf$J/inmbW2ڠuKP\sd t"?ܚ[%pĆ֥\˖z\js呅'=1˚.( Eյ%7DSN(Έ'Ϧyf0nYѺ4hڐ$=+4zc))M4˖6sE@G,/>֣Iydy X Nkl71(?=*>5~ ^j$ nJSmXKE6(Yɤ? ֏m%Z_+[o>=r$MvaW{]3n`oWf*pSxXTgdϛoůrIC'7cyQq:u%|->vIcބo|ƇTUd> k#Dk5aIQ&]֌@*Ev^:P32=6xSwwE֐ "^%7'V!w me,Zbsj/*{X,t/f^)J +\UZA\IvO/i XmG Zu27Ffz<73prd5%!ec{6%+[XjjG<#lH{QxдZ.RZzؗ|2Ռ6I!Cm+[xG-N&Gc7E3t0n[VY"v_ P^ "C-*,E88K _x4GLk_*iaP.u SBv3Z*.ZI0lMsIMG8i{a(୼ƀkWW{ Hv`LY,ځzw>J'~~JhD6o#U IR@"kJ`.`'8'֔$?$TCSy|16yvt4è |;154 b^6hcY~]<6PR+GjE-Mcƛeh;5G]{ZmAT \ Gf;m"j֯3P֕D)2\.Lr]  vD2ľeg;*s!{Ħ{\EJ-WeHYEsόpXEò4">Uz6s$pu9z!q7K;d{^ d$@\SvE_ЯD ֳ -R۷ QGl񌌸0u\N HxCE vX5SYԚH\$OQBZ9ZCvΨ^dUyx5~F,W7b{Z GXʍo||U)t7T4%^Jͯtvp80bczMĶ8i:31E~eZC !@[ŽDvK,#xLwz:d;]yRCtAB_rϖܨF?OA[ܞҘMw UֵUN{ͅK8g=z+]1׮[Uޯ"uo ֍ZV1q#XMKҟ VOBCV-olJwK33?$Fx89DQ^BthVJeS/iԡyx((``]eTہDih_D)ZL.2ɾwD(49[N5|/>;W8IPv8FʤNSP.љءrY_߇("\+ Y[S{7ÃH^XϳQg$B9'@4HϚޝ#;tF9;oURDBpvN&j&[e /!Ekf>g7W͑+~_羑;kx3/ :a6Bj,LJBk -7'/#|4hM_7jz Ҩ]Vew+zhoNEOCY# ;\?v$3bfw6 NьL:=8q_Z:1H-1O$'~ezV쇇?O2zz鳪QngLp* bU*|GVe O;m/NVWfNB\.pgPIy﵉_5KQmF0M }m+Ĝ R2?ejTOR4c=!W[uD~Lq:aIc9ƉMdc]} A?Nv7*٣* uV>ݮ(\ 1пCT,p-~bV`Nv_$ÚXA=P<;TUt}<ճSF$|_Z(IWA3h'!6q^t|v ,2[4wM"2[3$LFEd-d[wj:CeY:ŴI_bQhXSYCYiB5O_(MYkຉ/Db9^qwAZ,!(zfWp ˟W=P<+PBd~Mh3k/T E~wd5 Ǜg>dlXSBlA@Rzc>dEy‘R,m^%MESmO6L&&P5!@*r+{/ٸ35-dމSe"XKT ՞tyM|P ,.y $:?o B|6IGǟ6}o6 A:U I#\M/ | m9A]Ɍ0 W%iF(fصW*QʶI|춳iq/O<97|~r ; ig7ho$TC5 }чhZiwܣz) ^$ s;. .V ڻdF`'U ܒ^8JFä~Xq'_!|*_"|S"?!ȹ۾Uy$Y߈NkP:vPmYcP/xг|xABp`ǜjz6Mƍ0Xqlp~Ppm(G3*oڕ]oN< $OWU0rK5<|ʯȻ9ɞ-BqXB<8?:R@1^)t^Ӧq,Hy>Nc[!ٍ!ؓ)yVFLI9,|Z6d=q^ŢN嗕Hg]V­G⍹RLڽ L0Id'pgF 8f 1Ca6Ҧ?DQDTj%y< 5 *>/'[pyX@$z#:,cVw\?^C b$[c U>拼nL!1D+4bCMVETh▼?;Ķ9yƟn0'Z%WFYV|vo808:K2sK~w/0jZ}7rO4 7HOeZn' jF=_R]ںB|({6Dyjqy?(8]11S+v|UM{)1!5H1,,nw '8ZD,ڄgG2sX:s5Wj$a1I¥5S))DU fyf@7h擐 ;a `cմH=Di.;Y a.clr  [wQ!'EF b;BM ^4$*Z@ˆb@( `*ұ(2f?}Esiv?[8D/Q,[}szcINUip-r)NiT/Y8bffߡ:͞a/%y!'=d09 fWe$؊޷m䗥M?=k/>_UtCRy .|E{ZH~9/񒨃HLa\eLkea NO5q .ތ޻V(4`/1mo5/Ѳ#Eq sHo2HmUkDQz{u "]L'f;j+[ĸoFx>@ax)\mx*%*il\|WRy^:*0{E#ofDJ^ߵRߔ+7 yZԔf>gJo]m;Il"ƁUz]>+?n k]cwP)z( Xj 7uL` I:4 :FN3E gj(Գ=OqK\#_gYiNqF(?u>ӈ{Y9ժeL`,Ogu&@nx^)XrNh>{RlX!B Kν'Z8W7FIʹ>:sl6Q*D+ H(v{OicM8ț<-𕌮Va "`)Df86[G{pVXP'f,/e'mAddr}8[5 EuGbw!Um%ijuJrmy *m;ٓq 9,aK$D,N(n >nvJ]M* suKHy4oP z עzx i^$6QB| "4gȧYI835ybHT_X 9@Tx|C΀> x՟8yyɒaT<){_Vr$Ɵu^| E¨&ɱ35ft<~(OJa|N rR M#$Br/<$t-xà*V$sa6>_!%H~SCK?ugwF J Cmybξk31:RZ4"IA}^59;A YQbX& /W(k|4|nQ]Y7FeyrHhǩQ$BT~7 R +IcC: L i"#eh`6L&stBSJבTZľBF _9 Cޝy6Y%oɵts|5+w!=_l}-RÚ+Ɍ!{bD!u_}LCC"vDR 0mΜ]pt}m9zڂ e;2e-.cڅrljVbYZj3D|7P/e8Ӧ68g Rܗ|NMZg4y:_ O$UڛaDp5~S_>һVt&.45) B@BHiCPɹ{K\@>yӟSG@6aG'U2 ;"JVI}z CA=!gt盓ߥc6}]Z{zOv*[}jQ|>)DU:8>/F|>&dDVEM[7bX뭴?/.U/COgdΰ ݬ>qȞx0ERaƊhll_TcW xs)2"o܉2KפZ9f5MhXG`U6sT ޟizvpݶWIR?}dYe,m;Ҫ벍$7 7FƠ` N%}Py'ͯ?J_E<һ}5p9R觎Ďp.p;;Oqi`&ky۾zYeᘺ l2kJJcSleVCOQNn^ ^1_ ,2k "E 3Tjp]LQ)҈=~w^fG^圴64وsHzu UsUI6z<j ݶD>ͨ K~w%].:<MQ͋owMĻ  %еް!&+r\&F\W:̞|yybYpଐۢ~B/9 >?Sɺ%Kf$c{!MFZ[cE}&D]i甞o>*n' Mf .RGU˿4W.0nSޔJ g 9wQj@)J'P'{X59rj*g LdC.*o}T+Fsuk8Zsh<2܅l%EH_[ R-EWwSJC:x!Hp?-pJ$~b*07V)LbDCTd$)tqI6Ԑ,z>,tvk!'痢NmmX1'<9oCGP^GץfZC!zȈC@o&doeqE EMb-UPR)KEu֓ /`t'R"<kt&kLxuǛ[I})*& !)x LA}e{5l۷IhNh:د &o0~sJ ԟy8P ڴCIqVMQ_264S75^|hp(u^hg+x4됑XϤR4@}+0M}OSbQlr31~)a^̒[[<=Kr/bKAQ݅bgFRd+ՠ@ dI&؃?`HRc|Rb{ u{SOnB/zӆLcکW;'O1O oCXd̨^Տ*q(@kF N$uhF1'23-7$͑VRci(мq l(JZu9[ 7pdĒn)2Biͳ=Qr-b-Y͓/31v7.?IřS!6ڬzJRwD1>@[L9ke_T!ޛŕ &HfkJfC97N0" VMf1 L${85tJC^I"#]V Y{D #_&Mߋ^3$Q)]%`9li›Ѐ抱]9%RXU /̑*[Etlv bJqy 3g$b=YDu~FqT#h/N-0lM总`PDb:/񜅉9q KEvύ_0>p'8tc,j!cXXPpt 9@ld_3,o;SGRZWH{ |Ӏ4лS@f PIP_OjLșiTݎv+-^='%WXR yUdV5$,hIWW,_qׁȴ8R(do_`[q5R9ғD3ɨ9X'M)L6RzPpVkK9w#,Ru@?%wvpg@Al^^ı@ s}حFU/-rH-zDeЧgc[L%GP?ZAyPԔRJAӵp6}+I紊h#r\n|c3R΢gJJ|@M}j%E 3)4?}"x2Z=*FWJJMٜwGEa rpD} ~$7:1-{`ylf1 CPBt'[ӫXkGoƽ ٧-rKg,ӑӛkY tJEjapRHdd~oyqh yrc}h0 b>CztLC/e~FQT{ pk]nurxխ%Ye8uhC=^%хñ$ӹX`Q0mUg d}S!yr7mmu2P(E U'OJ#exT9;W P˩IEez. ;dQoLՏȅxNK8faeAzH}wf_֓N 3bZ~?( l,::L%y#鵉"-@\=X@iF YxV)g۲%׵hQmynjEWR(L n5봿eH:jE4}oޚxkj#[t F \<j[ɅW|ڨw1x}"}&6/lDžI)[Ꮎ-Akm^VeoFyʯiK[  {es!(DHb:ܟfyO*s?=#7,&K<,9;6{1gB}O\w3^ (_qa.1yQVQ?5I}AD[G_(^a4=Lq0|Y(Ú8c) eN a֥cXhԗ71`vt_` Bp~$b.Z㗳;g%y f3R$Q2o갊g ]5lq RO=& \nfܺO%_|o. y}8R)ձ.A< }G4A%$!0S5hq"/C.Fi?/Ě- W2܌J;gߟX'Av[ (7r-P Thȋ?fUNjg+[plJz萁I:Ș3;5l_}D9.5K$sjSu!&\><@޼ ~#)vAeWTS w8lfrXuƽ _[Gy8=|9Ō_b.@dʊpQ4NwpI@ CYCP7T"Ƌ4^'jfñ:_F$D}2:~N,0%qi P$k5Μhw>|ZҾqsgMbx^~ӽOW] Cjr wz>2X})h{tN%砥ϷFWhwh̎dGw?Гk z6bJF'[lа9.FІݰQWҶ#tCFs*IEU0%"jqAkR#_UM zWO+NA6Fy:Z![nˬ5?)“)A> ~_ǥߢ1{J\/*df",@`vV8*J #c7׵ v䫇fXvj }ChI!u*8JȈO5㶲ɟdGkFXG>f[xJ:W"$r ͙NHyIHѬCԴmAo0 'ۻkoE8Q\E[Br)jPBߨ#yŖ` V#.d- iAqIOEm"<5$){k uml =? 2zmgT>&dAcZ 7 [ RME0 Npz} *|}nV)[TmWAB)KԤaxԒd~ DnTz$A-s )&L;"??uVUcO6A =Ka5Kʽ szbR4 -mگuAʼnǜ\q,׉AT4N(;S~a]ƈ~x瘩+WTTe=<@=9).=&NJEu]qSvSU4áZYٱYM+IhF杣ı5+C*c WKQ);hUEU]fy58@$~n|dž@4.Y?b6 EM52`ߨXf&.I_w645#۷ۊ`EDI(9["p/ tN!H8jC_hlGH';jG磞wnTLő.-G#eg(ZzAyEgfYb&%L8AHG^,Gݹj*mrz]J7 B-Pj]ժKg (`rXenyEt|2R `щɆJcQ3 9tGQAQ@f+%ZkjӔx'=CnYKHC6gpI&a^; III9Mžf^,E4Y8P𠙱TT̥"Te<˫] 2=Y#,CQ z !/ {.#gZN(`dK9֤8y0BTkV8ԞT ".1/_u5znF$Ӏںi""o-)Vnjx?P*LԦ A VDj9D!RxsT'=\Zp_b -a:"nH&#Is4@ Z; mJkR”ٞ7&ݳLrȮpRM/xn]Ekݤ2uf$2uq,ysb^>.8 C F°?\2tw&/]G_o4<6d[b?k .>0 Wа3\7BD8 bx! z'6F`b$ /6=0A@x7cqu\+1c>JJy% 8 S S6+}v`r;D32 :u>1ئvIscSf05tBñ?0'pѡDŽɗc),Ihh3}1Ua0\2rVx3Il/*"-ЇigXyRMQl3AI ɳ Vh$beGK.Z&Þ7kX+x̿aI cED;NNž:aR$D aRQ.sRM*ݺrK3mp'KM {a QO·ik<2!*N}NJ~4̟ orq'Rf’;%5V( 5@{yF؂ՌC20jQٿ2b6c(sKu N#+5QSt~MF  4FsV]g-pF `W<֛'pju"} .]*L#+Qmć2ApiߋIϟO2@\KˆQ)9ol2G SijLO1׆X|PqВ邕웤kC6RW)_ȄPㄹcxߎ0oq+t[AN7>d[',i!50͝BiX{Ru*)¡ł/Q9@g힊pUp*#:{I Wĩ^}_Qˮnw֒(,Ĺ so"p` o]SN$[=$^\R-@vruZp?J}},)qE1/AIr<&l€H˂Pkc8oPah :""At:npL@]*901lkIvIX@oAM8ۏ -C",\ x>Dey76CSr w kƜ.?XuI۴'[8N[ {Y3[{I6ċY*M`0AQE1d 92'ۄ}ϋd P3d?FW%a iŧ1p#ʠuPIo>2AĸWC\cKR$4ຓˈۙق˙t.a+`|\I-ND0oSp`F<{P9Tg:_]-l/)E} VVjuz5w[Da=, aFeAs5ƣ4؜GÈi.pP_FћiJMCtWk{q1B.c &01h VUer:L!qz *vX&ڴ+eA-'ߙ {-cAUpyuz"3>ǝj5Ko?J|,):qlG53ezaJ!?}ȹphn8)&ou'gfkWEr($:˻ )+TErzSseN*|5t˗7"5L==FiJ/iɖ: T@7]f}i8?SDBcfOux T}_vIG8yMj:XS lJPA2o4\p6]Z_1vMkXn [VVtd\; .́b,pM.Y< l$pqi yAv)FyKB+'Cab;ۉqw1J^{~*".G ge|][YSB;Aj/q^2= % P LrqX{EV/L.om0T//>يS§ӑ"a0H^=XjW:uւB#")%#q3<`QB4|8s)%2^:1ΦYbfrm¡^<{|KX}FG2lVtQZVg)i KtVhmy^b PO7Pr6qqwF tL~ 28Z Jod <w9qzDBt҃(kNFhwiGBpyq0Ԅ%/k+oE@m4Y5jT=>\ǪhPbaC] ܒV7t BA8,@<]Sf;YЍHNܻ}EW,"|X疶i哀wW/C gĞ8aD%P̀0M XV[E3I*|hfP[P p^V]>GTs0ht.NYzLƄx?m:@꣮?dWN<d'LPbX!:%6i~f'Cw.xGNNL/_c;'Jxe}$ :hAYaOݡdo||FsSRdL@ML{B%XP$8|Č'7b .Α\{b,hYϗ}IjAV6^x[ 'd$v@/&t)f+s0J{ T/ nv&e} 7?LGӌ!`'B_U?zCX]o]ϝ©UBߦ#,fjLGTit= ϶[(kS%uW gOFg$\7, #O*ߡ=Q]'~K2_5{ "^C_jTN)\%pбW̛Ԣ`fh:ˠ;m,9 ThhQguMEk9kTi wςn%Q7M40H׭/> hV}C ԂjZVs(|f@'3AlQ9 rML^*TIyP$xYV].f >q*e=U%@@mf Z44V y `[Y})Mte|W_Vj Jd0̶sy͙Ee]?)>As,` uh#F~cPͱf>Q !a /ߔ3ڏvO|\__ߓ]c ʠ^b&=<(smp[HcFGW\}RqMV$/B}?67d*~.SϝGny4oKHNKyso]B0}v6]7c(jѫ!D {Ut"pOA{9]3[rq Źn.xb11(6Kؔ'Gej|l僂zא1ST4dr^u[H{qBô|ɮw n 6o>a6~Zw.N;yBZȍf+vZl\` `j5\ƖE]gQ@SxD 5K[dqUE 6}&A~6wv.<}90/R@qĂ}䐰3C+Gk$YL8|٨2J>% gn%ÆVOkZz]i]GŹ;0lKx~%g7u`(0jc']#>s= wɞ`b$,h]f C`-v9kyyNG2wlV$IDg-HWķ9L[^¯G}_CZD<"_d%uV~Q_0K":'t934RHÝ苣")'ĉ@Zg8>=1` yx_7)H-fGu[T~Y%\"{Od"'Ps_M shGF5n=Q՞MWÐUr ݨ:"T\~e=V29DuH:꫄@ ZAf[$*Vx#.1)5d_gIHJlQٷI Z)o䛧H2o>#9ȸd]f/(#\mG騼oF禞H+5v.B=gD.Ar)TZ!8{`TLE'x944RXN)FםdnT S7z'ɑsg)M'L'٠[2ݩ4LTBEjq4mU1F>8vJ1[ >&d6Zm *)Nx@]g&D*_3UN %(aTx)`C| -b:wmc{W:<`.P-b5}@(Dg-H`%LSSd/߻$"COg~vRFZ`=0OfeX\n1bʳOu3dlw/vpbMA Ĭn=P\ YZ