libgit2-28-0.28.4-150200.3.6.1<>,+d lp9|0%#F bĝ}cwqDJO<᭫ ]q~0!UV8E&LWO08 }C2eR}鏼H ?[ ?nW2Ϙw0a:"T^QPآOo-Fqѝbcf`)7fBko;M0yTȅ#3os&'#ÃS6-oP%IZKѥJ/7,JM.aW>@? 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%]dٶiqmTvT6EpVcQ Ia0AÛ}2$׷˶qM2"?$7ۯg߲0l+&Nkp6fՖL0ɣ[[qP~uӰ+!5U펖CH$rMhGނF1be[r:q/97vpۀqVܸ`], yD G:'̫$,PT`kPxđ]h e$j9\ZZ0Ԡ' `ܵT@r'b!M++ݶ͍=xcx4_&,H²C粀=:vB_0 *;u)驺.HFo,H&Xm-v0j'Ƹ}Nh?MdnS LVh- &R/cZԸlz/A7P'/)h@c~:d4q 0&TPETى D6m\A"ǯϷ1@L_1묓 vt-5% ӟ? 21콟۰.&1Hr.O2 ]RrIuI|$j~2O֢o6»ۖ@~Jr5K G"Ա|@rbF4۟vPTeboCRcsvyۋL9=amTYa| N$Áw1LFb;`iUIFκ[tZH({ҡF ; ?D׏hojN9NߚMn>Ae*\'A{s_:L;Bgז-y 6~OiXZ 4qco3J=;_]C"K2/ZOsF-;! W51QkV‘o'(10*NQROI)ިd^r5!/*1ybq) 8L JkSP"7'a!7W cry.nyΞģ&Z5z'+Ŕ: V[c]Z"ar˟_C=].НNb!DXFiȇOόtT6Vj',_Bņ.E ޕB>U7RÅ[#cC}f]@7v7C~jnoxn?+~VGBh$G%JWcOډI9-'}֙N-In->n@Cw~%1|} E`Wst {q[ vg` :4V}pq'2m*AUk7G@9 lVɮ=l{W)r>ʐnjyBJ).2@s_vN?Bx}!/ nXX}E#/ 'ad86j*F@_9*τ8^Qt lrR>ӗ7z򀹼\P؅qCMItWWN_9Zp#: (́5)U g( 9QuTur7QO,ͻE{KCoS@³CvLX*Iv;:>Z=sm ^2?zۨX=h ] J+S͖ O8\/.硗V :^"gɭ c*ȐTQ)h Y]@xNe/oogF^v9q{kAQUR\8m /ַwua0F%mz(➿gLdSsd$tdj ^Xi፶j<%9ͫb/͐aPbK="7 c#zA6Lw@jtJ̦Nsa0o?˳ [YhuCo|7UhW~}Θ4B530u*_G{~N3sC @7ߕa8'Ϩ^H퐕AOP,M?ULw< D@2tsmGgm5U\ %PXcGa'  'ZRf ; RYV΅ZB\e +Լ o+z6"lmG3Y";Tpyݕ 3=ڟFQ`Ie*,O]W)xP~]gV.&y _YS }DsD2JM`1hr9&_͸qzG]*09Wz3o_q 64)&?3Oo 2މy(tX BVdafZ}kf)6PPH܋]KUYZ׸%q^5Nܞ|7'ٍṕ+?).|W?:4BX?pw+^enFfrOZEot0:gpvCRoVw-BLlT8[ 6Rʒ_tAow.` df?0ӟBpF SQ\l/|J |5y*ҁqܛhrrh] |"Ibn5'\yeξٰp[T?KI_l켷~VQ?wwSk;3!S}:pU.>=*gpڿ) q#8\Y!*d7=P+ܚY ;"/$OkB@m]ҧkm /%MVZG{~)sk 8X\CS^҈-q%:+'۪}J{H*9&<s< &(5lO͵/e=AOv&BLAZU+C܉ق|tI\K" pL>'&j+'Wcsnof̒PkPWQU֪eQD]6Iĺ+Q (¶١[$\q, .<˄뢲o۝W K,&1R3_}q78F6\>fkxx -Qٵ.w0SnI=:(< 8+C:^"Vr=uZdH,+,riǤ}9K/"h)_a ŏ2W5Ao^BGT/#rްÀUj}p !kHprJ:"O92Yu g2r)k+i'` I}|0D+5h詟f9g.'S4Z_ Mws*Hz h]}彌O3F*p"U_fJ }irW {!i_U _+Y ЦzX$ҥ}+|5lhs+) cq,iw|A\K-dͯDT2 > к٘,~&Uxo,yxUqT}e Qz#ٳwB/XKqt,{S`3R.U9_tzضinv_܌Pf# 3IV\%\s.]D!IodXNK'%W ^64Mgz%!wZDuoj$Tbg\Vӏ%b]bTF(ZT ԿGb!B awZD{KƵ)uT1hǵo+9u)fPcbaqPlO—SNr ~ؽx,3x~s!qm2"{Rt!AXvHy-DMFW8J+Wo4Ek)[ @-Q[Kuv!__:G_K57k>- %YV7t.\:ABtHnz>jxQ"C )L,"q !_ ҞR'{&m!"ʌZCD-o d12A5[c<,GYِ+!8_Zhl!lV# œRzermI lu;^P㽏#e bp*K"ӷLͺמ 5vCuy1YܬNT;|-X 1)L$FKN2MƟ_֝3ߴcn:? ǙBQ[O)F/Oأk<\35JH|T-Oƾlج5pEaujK):K!!OC}[0 vd@*XH<B(%Ε\b,C5MloL{SY|A7CT@"ˬ^[uř(hoE~Hϓ)N4PjA6:=d{gc{7+csU853wk-(v17;6{䧣#!ބ;N:-eڏ:k-w`vs8@/7֫zM܄5jc`:秅lj_k48uow<˾'4(\'b-*}˷̫Rp/{.g_ЯW?x -+cg8)) !ffKJޮ``¨CEĤgd{JӝډOx xCs-eTj`k)drxYjZ9֏dRtל@N\OCEVq2[LMO龬k;L@qh#6o#;{vϲaDf{AN6J7zsP7͐Lm"㸈Q%Лc?og@?_`MZ7CE^·S;`Vjb''~WQ4}v|fV{\swՐӻf/ \ÊsFw&%hk@m`u`Q"J"׶׾z1SM0[x3vgX˂CbV焕Htd :hb2<PqmcFЇ \>IIF5wBPXaץnjj!є0fIʇ Msд3P᪄m0Z63 ϩ\-Ror߉KeRPEm)w{B˽U]~7BD ,2QN-/3|ֲAfeext =fy=ٶ %!WKZo/Ot LnS8s=< JR粶B"mAJ41./G07QB?-?RTj]4=lS'bG۹VgHjt~9݅jGCe_ޜ=1%9G+:kR?auk,m1 𔭙*>?l͡(x.;zkPzMn_IdTΞ)\$1ᠨ[]{aˠ/%ְnɔWԘ@(wd<+9 LSbʠhy5XUPjsú*u Qv4#_N ̌R']_J=) w"Q')l08_txv}D߸<mW'4ş3h+k.@>٦$_=nJ}{kWUn A.Q]D]v9f*-efy~ctmk.3^-oqڟLఁپ{!mlP'E5;kP< K1.CUlv,zE~`ERNWSn^ ?˷V7gUi%nLxXCk।f0VVP:KP Վ+K?'6ŢhVԃ6aZ DžtX33jݷZwr3v[1k6Ԋ jV -.b1Ŏ_DAcY+]1/ZmdOA%Qpp,d,&M'-רn}U(S[ghJ{4.,+rwR(@DEan:ao-lکvlכUQ)wxdjGYsx BIl62LlOΟ_'ښneU 43ݧ.#Ÿ#XAm{ {7%crHz9W&(=^Ugdqc%̅~T z8-CSvSZAۦ`F/#j]T !kjOZ="h?E - 1+}} 6. ř῜P&R[ , չH ^0Z(z%1P@"Li̟'Q=]q*!,<+-r1y2u@sꁏn?Ȇiu(93_t+]kl!raǾq[?Ŷoݟd\G6JCM}jc}7w9&eo3y^ALw.К$%_A0Χzvϸib>>$8 =feEGjR.pr$x9p1\:;(zP(beWAe.">^VD[Q'DсOCqm@&HnlēO^կ_ 䚊ھk+sY $C> ˂7"8' 1ͳ7ZMKM@,J$ebP{y}ѶYsr^kwFp֯K`DoOgJ{ǁO(iߩKbSf= 8'ݵ<{qQB>Rl_VQ5T(=[˄F#:0(T>ߤVbά.1i|< * ;IӣiZcϰ2`h@0uj6.GC[ez:chIxWyof4|sMu $6c:sz+W´ 7'[ #{-7%cyMM5 y Y4)fZ)KPn#QyQݜB (6pUq_nhEl_Ί%h. Aי?vN⿦H pF]2J L=,/%݄$}D7x!V{0Slʲ㙩erxhb*JZy^X#M'1A=-x!6mj6KÆo`*]D/afk ֪Z9~[Kcr/!Z㩁:*GUŸѝK8n>IV1xC/¯y{eI JGN {o}v ݂D Ln[(>WǜZI.}h8bs~!…η >Cr:N?m7aA:~ H@ yJPfel+̠{Pk΋̓WϾܽϪda: ͟K+ə1 w3s(5,> x,ݢ.BF86šJ)~!J2N`<D\duzCse$A]y~~u[F=Nh ڳإ6zhZÒGRAW "K_[.{*KWkne{KmoЀrtxAv_JTX_{S E""ȡyzuHuDZ|ƙ.nwDj*{og)VTdaFm1ڇ{Atᕡ`w~}%`nr#|a&$Śܢ Omؙ I-5 ?E6 m]" Mͷ˭ (7֣+: Z- Vt}0 ^ͩ*""Vx7JfkD]oJd6^5^Yvff3Ʌ4.=N2$tqK̀;!*FXNLH y BvcuӢg>!: ϟ[Ą[x?k֏g,0k=.y :P'lAS~% 6Y=e dR6&%wq<=b/ d~ώLD7?řb,r];^,"_G?n{c}bѩf;ٷn~^5 ĕc:gz[;jZ% 7/b3f9!5_ϻy}{>B`i%.Q7p$~zU=܎JM"r v'dv?ԍrT H@#\7m01ZnT\yL>5B&0^F/N\r@ċ ܿ!@fXGT43LhFP$'OfD?]×.PAPnZ%u w)Uꛊ64SSWAgrcEa M~$2Hֹ\%#\HEMuKxr>>n0QH#tP$27_qgS, xݥǘ !!`"mw"ۨi9V]H[DOfV/2*9%LoSFj]:b@=/AA$u#$ wk:&tAOK jUgCod }{ڑ6[wkdl_r(} )Gv*mX>2Zwq,C)Me- {~7F֏HGϦU} A.A=UAfuw=qNG`5M3.X̐)^77>^^#t#1_HK..XUpN1{RmcW)egұN@_NH\Jq.fZ@QOlrNM} 8wIkx Pr2]Lg^ȟn<gQT}Uˇ顨ѫKA= %2"mje0m^bLvMLp՜a{C֙[}〤$joW^Js: `ߨJMD(\daZc=8|E_I8.4VPtK/bqWN| tgYo)T)g2ܐOnh66Ҥ@Ef] &ٝ/l&ےԘlϓNxxnnXjs' zwJG{=Y ^ 'Jϫf ^IDI!G[)ȧjrbK#z :NE67q'+rA;G>'r(ݘ;O>{WGg=e(ɸN⤊NZ1 *77ipv\t",̐IAZly+ NyrsTZ ~?8gcU><`*Gn mwliH6>dG[|̣1^[ >֕nLO~]??k E8hhY3a }6,<r˸kB4Arc#uS|?/8hYM*q@&QKBLb};;w/1i/Gdr^Ɍ$o&0WUhZ(SU$&1gRu6  0xKe.5WZ8,t!njXD]p 뛶š_vFpp"ߥc6J(\0W'i"l! ud(FO 4$~.-^y2#LئQn` )Z׹kAG/u^ T%XŸ#lP^`a  + /|'$175-U |pM/n'y ĶmpSݧXC%ҸxBc?nmYm950 =R,ala&Z3]@Y,VوqSX"$ϫl` VD9$pxDn,TŊ# ťU"tP(9Faw᜴eHȜ> ojɹ1eB0$74lK)CziTFD!.3y]be`V)+peK2,2n%Jl["ili 3Evm_UOw !"L |TWTr7_za2~V.֣ۢJ ͤDF5=0o;ATrkFBəWZE;o줐Q=+%e3瘄:@鞉L[?̎4uK8bվ .<2SԻTԍ~/5|.]< ،[4 <͙^;Z% 7S&?ʵ#'H 6 `|J֑[~0%MV"O36.>ip0]sTU8ƍji%Om;sDpuDTw.ޗ_KŨdh)z&[7/$o}* 0Q/Y!F]r{Y|JG&$k^39 ɤŴeFS魊7=~8^y|cgd ?q#ر/$(t~zA.YІt/uL$>[V:7qyW@ulY:>6LuV'jT)KN-L cQ6l/X_ݷ9Wi}sɮ:)Ÿ)q?vWtrrS! >+9I7c6P:IBhN k>7 1 $LM a`Cٹ;A]\@`M8thZ_dqJyN9'2RsF,5! O{H~kFXQϷdM=Jص"nS_9:ը GODT^ɰg/u" hdf\ˌş-ʥ*I18r) :i*!sb(bp1 {vaGEkE?5tS@P ӷ2UM:Bn?/Pѥ`b`qp!7~CI^6 @qx8Ji  灜إjJ˸bG#F>c$PGf{ۗRvB-~,{ ),wrLiP a݀9C4Å8uߩ0)C(;ZL$Fkm*L7]9ŶlߴSn2鲡]+@AD:h6H(1`K\?Sٶn/UMz"v8eԭ/%y}Wv*ŜWqJH zbJX$)gtSԂw={SmdwMzP..M6{**1 5Ā8$d#@:gθzf)Uw ά h,O;3)(.3]ک?}h^$S&b z쓖6=e5(~6 ˱*^y[d8am=6Y/8Xc$ȋM vb\Um$PpZH-t))L!/ywc"gSXAdrTd-x0X!T(B!7#'D3f5;fR6e"\ZuJfG9)V) f<n3ܰ x;_$$fԮ#lJQl~GyUC̭Dk%.Œ@N6_F)|anᲅ]fb I >k?$BKDҚ {6Xu;rGG|$8z"}7&E 0MaScTHhvsD2xUk)eΫvwIR+%x1EI"U0;;S+i؅$} ,59tdDVZ]$'Ҭ (+}&,^s p(`M:a] L2 Hx9L׫b^N-wIisǺO)/i#e0I:8% Ԩip+>gW1S&;|؋wnUNźӸnrpIV8{& fGp.W6`pՙjViȤJsCڦ/ 4'Ʀ.3s=Њ! 0/0gM1+7+ Kp=mcl0&iM2L,3*lELbKܔ4f ,yO dˎgN"PqQ ެ)uOO.C{uarx2N,eEeg!ɓtFSKit!|kSnջ M&sm&h~;!˕q 6JR^mnq`OmUY0]J3tX{~'w ,qn,%o0[bu NIOй+gZvVZ =f=Ò8`# "{2WYJ|Xdx"Ƒهe+rWg0vy6z-[LۙC{6s\Y[4FܮяOFC>&C&`A^ (I5RVvZnr "χN'>Vj '2+@,Xs/Zg--/NpKemCaؐFQ_ٔ w,JNFscH' G|8eDŽpf i[xV%ʧh}y SsWϮa͈˦t4 =-#ϼUb! >-Ɩ/zS@yQBϟ۹J>[a =RtFsaC¢țR4doTU:\΀/yP?K%D[C``A=W|KJAzKEqbҋ8qDd;kC;< u"~nP~FRi$oHĉ=8B2t :@o}& TǨ/^2C^Hꋵ;?Ûq86W5χz "%yS t.~̴f./|Ǫ'XIEK *ă \]j%>;fA4`TKL"jl%n0sJ!K1 !Cp J_l&;x-lU|zK.5bY=m(7{1!,Kٰ QmyJ5wTs/[)/:*գ{l4f=RS *4%MU]q9)vXxoY68{$9Y=/E7}YD2ҷϠ9j_$4ԘC.I ohM&1Y#~BbXӲ=\(W0{z}1/7hNJ⥔[KI{S\cI  ˟VχvеpF #mϮ|сhĂ)qDi_JwvjsԊIp0J,[G^k'㥀^%'\hsJqdt>f^m:7d_t'-O}0&y ËGAH0Zy6; ɋ BiZ#?I]B "Dԯ _n֒[G"IԪotY3?T2U;8kx7֮L:ʉ(b1e[zЫa6(]zcn^4/|h8E@n/bO>SQ=g ۜ=JscKBfSxE!48| [K\^yxW=jQX,ɖ /w/I/I'.HIyUUkEWlUArVD6zk`6]91E&xpmkVp+/sOhjTe!rtT) ܔ)! )8;Gz\uΚ(Oa~2w#Lh0QJl&A F#H假ΎT BG='6ld0޴Փx蜢!? !=*XQJ&N B? S8k8 qt{tXvmT`8?$M<zqM}l#/vIdĤ2?n 3/%G׿` K6w}b-Mj{xeb%#͆ 9?.fvEhPmeIZ5@rﲾ+G)"$;_5i}Yt=hTgEf+W< bm)C {/ex#sn~sTBgZU=_ډ X#xNLIh`{3k/ARy/v ] kPű2mpJ`A BTSp}4 =bsuיuΉn!5 @!1&"oHr w(2 gzzCWͿY#1IzQ8/p#Yg9@42}u~hז1 )VP > Z߹hU=&p,Cع2lH L׹E4sƯɬj>.L[ Lh:BOZܸ[aFyJZsr[`+w@R2 44b޲`՝X&&.kʌX" ;hv;>COS8E\.,Y -Mv˜C iKp `rPrr4\(MuGUT= TY Y\oJW4(C ]v1QEbMPVn}dC]{va Z ӣeE&cUh v?_H!UM/SG_ow}q|E8P~dէ8-Ϝȓ-rb";+86UM˱'\ҿO<] l[yVyM4L񄺑§ H蝘B*Ydѩ uԚ̙dp"ܷ$Jo(Gޥw`Ȑf % ߪ6. .$.Ԗ@2Cx2*lo%s(f?BQl1(K>e2u,g V3Z+mڨjfpY5tC>%4p ƨzz^mVwSN+u ) "Ɣtq!㫄eWm&)]u:3YCГ9 FZj h"Ba[ܴld(y&^ +`I]1¯#=`Dp/@@BBϭ'A!2MM6b5TPVo%I99.ݾ,c!K# "]I8 uV.K-B: m/Xsd#Ey=.I 5rSje+ 'Wy;-'!ks0,5曄/.+>ZM +ʕߒ RtWb@2q~9_Lgwtl,AzKm[?IK&$YW?#ʌ*SԾȑxgyo{ba& [,լ{K1N7R#3yb ՚:܆Y_0x]n %|.r E9Qlg}+*l%[%(P]xM qd)m =xѨE;\yzJ"ϐ!G.sQ~" )juj/KI܏ 5)nⶮu Ro$QV 7^N67.dBu˶TXSңeȻ:P^|ͥ)ZuN~mI:$g$3z2z9:;AnL nmJQH*R5pwW)u1o3Xi.|\ћ|$-\N8:_Q-1"٦Pi>Զ,gdV+3!ϲ5@@d䉱o?&&,╊G~z<}FJ,aȈe"ϛ',1Ӕx2J~] 9-5#v%!R᷻6YIOY &IP Mi0^2lA*Ȩ!qx syUp5}8T=q&Zgcbu­Ӆ{-ߨJ*^scYFgz9fqxy;-+쥋Myhe_T0F_;'mx/jtӈ^}/FTHdlm:,HsMțt u>$!r؋s.|UZFLT2M%@AH %g*O:-Je -_{DOHeERճ섲y]T26~Ya%NotV w˘:PQt`ďǕeA.`gw`~lLW)UBWA)s/6˭Ft@KܸeU|%q授$ ԣWiNLG%jDv%O8=T+i1+(NF@`{_(*Aa?t$&!cIR[(;\8!I$z97jLHZ/0zIEHӕߍS?!_qDBaN=+T;]p'mE&v_|Q Ծ'4uf 92 ͸]t g.Ç}fї8c&3TasotC1̊z%Vh'-}NyȚ v2N8& ȼוZ2 (͜9$Qbv#>DMϦ]^ML,<V[k9űQqR"xz?4cN7S|VM_yIW0< 0#Tʯu~)>>!퓢W"X{g[XYcP:C07ٲ@O8 "VG W*f^&F/; !o ʩe.}2"1,X? c YzaɂV;Q-WP#J'<-I /Z;d1q~ʭjr)JxUQx-7fg..UafA!=o ~W%Q'uu(Fǵu=^mt*u .-5_MZ[l$.{t4,SExp{mc~ :#n%͚[IIgMGuO+Q=K4'84\28W aYR$˫ 3"B R+piE΂esUH:1y;? 'W2s+@`*調yg/C8G.2Uy -7rZ Ȃ%)2T> ;_ys{wmnY=ߒvCx,i\+/wHVu)pb_:GI<Ҿm9qao:'%Ϟ 4:@r_hdY?RAstյ\ULWb0n4D۲Y;/gպSX/sVV(.Z]wiw"ᵱd؞]T+N%ٵPb€ v^$f`_ɯf&p:tH*P;5lF';h5qME.qL?a(_Zj(2 H"ez9CVeJk328X}"Y\cH눗p~>}E@W68VKUUHcg6֐>e?e7c c趇:08TY}DșbJ,ssxۯyy8HU? 4GT><kr8VqcbOg-#|Ʋs[4/kF\å|nLq. n4s=72MD-1}%|*P o-YN]#/_)?D۔h7An"%MȽo_FhpzEd*gqv8im:%Й3q Q#=_jl~4&~ U/lY}JAU1fnS!ST=Z4z-ikԋ%F\}ۮALs( ^6`$Vk5ZYFkG =KL59&z[ :ُXjc]4g|~>.6m." ސdEN˳餾<'Zl:WP3ޟElJ^6 A꘮*%-=͢ ?1Ǖzzm]*n$x:lX\n^Q~[ևCU-EJ&wYd qD+`*qNZ+J β5zK:d(¡v4-V׊X)INv^L kIvʖWhtc*ǐުo-}ѱ }mM"v0P;n!q^=`jV_ ?Q_=> ]2:bD/Jf#gM*MSbM=d10|dW^/"ۃ!fG\=e63$fjٰw\gc‘]k{@ѩ tyeԿ%n Evb;61$ZcP 'R o{{NÅ}{2%[į8˭$3~K0iṢ蒰01GɑUݍd7ʛY_ PK>l$;^c+MJ;rR]gTYrJ Vf1Èa@z䛲cBh}|N=#*$Fk6ԥ: @KʯNTgpat詣i2lxtYs5mlv?θ79]aM-r6pȱXMzbyKo1_ : {p|>mΨ/8-~Кw'{^[Q%}calvK!_c4.i>%vx: ̏1!EWcZ睆(yDC9fL&G 3p~E,0SXXİ䠉sCi,҆>`O2HCEKctdak)3,,=$6o$g(X{ɱY҅NT"g*K~K#xaBnG8O6r54ffPw8,}DeKack3XvJRG@k91X0G됒gDlǒpJ?-c"(;PiYA9٭g`K#|) J[s=L^rj- A`(YP?u"\Zd-5Rm1T m[&9KrW 6A\ ޲J@!0-PĒ^&L}}i=yD* y4ꃚq52j[,-k 1Dse*MŤzss@%F6IYb3֞(R|69༯6 ͠ϛQ MGPCU)WVۯp w?'w}u8op͢i8bxkL|*X&$02Vh z`mJ -yT iEOYf/cMnvx0 s3%lav;\"T[Bd|Z!LH@33J$zzSyc*A-ՇssBȺSƆGMI2f֖Y '(}+cs4E_&ryDrE~.r"ߩ0c7*p%-fޠ.hv- x}pӶf1 !Q5_wȳ ?AsH,Sp ߃Pudg܈^Հ Ú}vQp`*{ ̓&yLu(0v~ԸKR?a>@ҫ#~T 6D;?$=P$PL੺p57V߰BdͻsXF}Ϟ ˂G{t:atٖceJ3'ϸ~q_Pnܕ6s1pӱ}PV`F{6]#!7QYo^@#-IY+ =9q >%$kWe\aivA 7BMĶ{EmISnnMdboo@0o|^Goe>!]Rλ1&䆂-@#uaTc mGmʞ 7* Yć^lA*DS L*L27}(3#9IB Zd>^LYqm:Y~Ƈ>ۄvrz4/Y3B[Ö[_/y4 >PI`E+ռ`w_0A6)>Tsn: %WCAQq-Z͉ ɟ*Nf7JkauG:Ͷ*Vբ\`lOS}HJ\cF@(| ,k+X~Ľ`m\fQ\TW EYYwj5) *%#K=: 3c7&ʉ-) dnÖI4zd-CV| %?5Fqe;*t`!,J-PK38 49&5z78vO'Z@]v0rS,X#~ 6Fշ|KQקV/&:>DGk@K|E;>׮Ќַ  3Ck^D@T.Kےh^9sߏ"Jf.Wi?YN 1+x" ϡ~̻HN]a]wUfJ@ZySQLKqXAҌ2ݒ;r-Ê1H fRbўZ£4~[w; V_<avꭜ R3pPFT@)d!3Z8н. X*k^<6]kf7! Äy+ X0\ڙY st7[,>~U(,r0 QEA@@BNkqn ح{4xl' _eonV#ӰmIYjAe#<‭mdʜHr+AE0$%nrհ;Hq}+c\g)/sbC7$BJߗS`Ti V*yL V,+]_Jv F%2p&C֓a8 TQ{cV+zmuV!HnG[ƌ|_*eֵ`P!bη⹵k=40=q/hȳ Ol5e I( DRx}9VAzzU(a·ˆ+6'KI ƌ zS^Zذvwa/_="LkZL7O`[X0(7e8PG&=⼕60T'֬CVM9>#,sKcH.0H3Ґؓs$ }W`aHALwLxzእ:g&T-c&Υ m/QQ[(RA 2(4PٌF^߰Ǚs"w5j׌DW ,t2e j w!A/Y^&Vs4/XPxρw׎"BLxg/E@JBNԶw&L<`5$C aH̏ i_D\վ`XYuzc,75E鿏KbZZ[RR U?|-e+A"S P*F7{Mc!Q;ɡa$pt"ps1%c<\}w%5!/Z,/ﱸ{X}c.%iPi=IHCd;(M). =lSj1e2 i@-"pm+}|=/=D.s܈#$Gom\>љXB-9u5%y*P))7kmr>JBcJ\S]=y5wo3467K\nSҩ;yc"j-)[́ !2d> ZK%@T7SL 5LcrO{Br $MםVJkv]{җlJ@M1Iy96U=Y["8ƴ[#6pN{@LY{Y+@Hv UpJ;86vC WJ$=~ToTZ7GlO6yo7&#;#H-qm}njxRϻb}wW_n`.wx נu1 `|{,GW 3X?k1 I_2|t$4t =IX.ee9d = ch>0QQu~@!‹ )Z课 ErivpGq{ {0]k0=,je 7[ըrdʪyp>V_L =8?z6:K6\ݼNUr'M {Fل,v»1)Xν{%wCϿk f.֤I+ kCz3:lÚHh4 0Y8I8aSJN#!I.J4XvH/Ptp)륉 U"c4SfࡀQx//ӷQ^y$̄{%W3U#ӯ2 "6S6) "\|\$.HxTidg?cj7BSINQC7Q 2ɱ+@A˺~ra$p%F \ۼ`BWZu{1۝#)] }ؓ֌ٸ d0H973cLmjRȜ7gvSԍTSA:UqHŽhd{].zJ;2V1KWµհ=͋|wby-|T|M5g_ut9(LE1E , GWLmQk2sF›!r1B3j ˨Uk<>/an)ղǠg!uS!8vmD< qSADx׮ɇ0NmxVZafVSch78M@ҽ#ءvۇdD%ZB9Qݝ)’-n69 |CHMx#gSAp0%`LBUT=>7ȽhdzT|hᭋeIO0X>8@WXa}tkvPFkqy0GjuZF-F-!kJӥW+ןs K iHC I& ~ܿ|Daw-A>F?M#iytna˅Rԕ0;D }UU ҇3P0&d(Ǫwt9eH"ɒ>Z-lwA@q"i9Z \MIȤ:]^88Ii5"ڡs3NJ50qOލA"A͏L{T\VRp2MPO]/?pzv'zlݙ&U5iRky%> DOҢ:5, u0m6dO S,Ҙ,9Ul|iFD^19؂v$0*IU:r݃U57̛< GɹS@ju/3#rN% -94ˏ+B_< AK+:ڗM )3_寈x JlH/BF\c,E|k̩pD, nx]||G6ϭ")G|5?7{ G~T\ϰtdo~ḾL68uY9$_K޴SyƎqJՓ}+Ӻ)rrvhعl6> jybq ,O5.YoP :nv/zhRNF _kY5@W_wJg\,G΂R 6۴ <r$kPsvdDTsәop7޵eΣ,!?U*qW(uo00f~MJMlxq oaP.P(G\쓄J+ ^pifD ҋko[X>G8l6t|Ts8"Pm#Usݺ[Bs[!V;G󌼪b N/I:<% ~!iVgRU@fuLV21GnWhon'GJi<->kn*GT:NҮ ̂wC5s$(nDx' $9~6:uf+R6̽:N蛖 ߭ *&+4J E@ENN[꾷X_g?=5VcF5'Q[H;D=\$q`j$ i BR6G{ZK`E9dzăMP #!3 `"+V)h6W3~3Ά`ɮҚT*Xkp5y{PgZ߾wAܐKR)]o{</+ Lپ?8 }gC dQ@:xR -D_䟩tFJ }4k:lVQKfx~#7_/5QZAaދ䀐Ƃ񜙹u* GA@FcʚU5Zr5*lčt^;)*H{C}6X Q軟^r erp*b6Pg E+Ձ Gތqlvw=?#2t>kÊOh6\]˅* \Z?kSL{aEAoxXepw dX kaF>Q -5%L 7 -])唣 Z$ `'+?&O)C~JԘ~O1cPu\CLUl+jhU=aۿwsxZDܤ D/B\VCU!rICU O'!yDObw= tޙ'fzN4ޓGk|/A=d}OTKW8 .l*G:p* >@ɠ};$lWyqy-owW )Ղgt2B? [جQ#挨4Eoᩕ'+¢Ck4=m/uR,|22>" E NDcAF'ķ'R b7!%2QK !'UXSIٚ_Ƶ5- N $$Df_op'%/ڝa/-1 ߀5?C Wx#//hO<HhFYFCV4x< 煣5C\ҭ,Vsmyp'&-QBXBs:;;n-[5(jlZJ Y W^158b#ϊQ=oWK)Ke.@ 9 ?oP\(xxV}``dtU@ }ӞW(ǯ0_Z\i!fb"%r^/}yq1cDR,A KA_ov[4ȅZ@Nz[g>.Km5sG]CiQ`٨gP=Ve_k-ӶdDBSydR(Er+NPd67BeSȖ.qqv᭽*)0dǭ sPq(QE: tڵ Z5B8kW0@yKfP˾(78{:֩ʾ{AZÆX,"H). *$[voRoSd*dI6ب"Lʣ|nŒťL>iz pߕ j^( /6^{,|{\@5)=E8 QA* tѲC߲kQ|~Kw.o^1К\8'V<3Qu(,G !Ht;!ߠо'f(ky=gP٧<˟wżh Оb1S ^g0qHR<{g >ܧz81a(l@o8Mx48;$mjyX9 b^V~X~5c?oC0Hb&[ xW ZY~44\0ăDxA&d鈤%ӎ] (/ɚL0΅oxdVbׇ#2sGsXMy I ~|wDxN#Eǟ}#X(19AQ[z5Y$6cK nl%Dx`(n)Nă%x\ {͢Ch{\//`e $Ȼd?LCj$l0usz_mI0JgD#6g|$KM鍿DR֚j2`X7H9-wtN32f 3;hlD!6''jkH"zWʦQk] zE)3$c> l&Iz H2SIȦZrIDh!/,OeDdle X '+d*眴QB:d8i27$n;?7C%#e4a!#TQ`k!\$Ur/V di w,ɷb_:ҭev=Z''zu.:ۓe,nrl)ym"P#bƴҢ~-fF1Ɩ~$&0W,\g5K'^LcA|x0*Ҟt>dW$Nm&8j:e[ЁލVg S.也ްntd ~ 6 n.P:qeIxzqcrJ!/h=CaR/JgdgSaR9J6 kl-C S~| &ɱ9#TWbC%{xEXIu8n@{:lzԩ.oy]D%-e:@s'v_!:)N#_&iHPӑHOyWv]0qHD`} *f`ϟPfYA͠ШϵMm Dl [o~_ӡd`__\4 %dC* T6бV"YPD !U@dzG*%h͍X?^i,ݫ O58i7|zrIcȰrI' ;ډnP{ӟOe)A<.3E= P;*:QCڪR=uU VRXܐɱfP֭ n_hS2 QqWy/ɧkf_+ wrWd.0`a]ue3h©}-KuӧءV#X;猥]aׁ xRMIvc-|=>j|~3irRq81M%w10^Z(AǸ ˛@n;Eg1_ђ=)ʩćerἻUou<61mPO5ԝZz-߼Ix)hV/r]Z$C t-͍;YKBL *ŴErl9 ŦLe0O*\C݌C0: CA72懡;݋ dJxcM*+Ƙ|Ncd5ᱞ*Gz~h\L6Bܔ[ @f %<ᘄxn*?TE'mkICq~rdînnޯ !0/]IBLw/Rjcf b(F҃*&9:rҔX:>d/?l]4I8đS%D,BsR**>]K׮dWl=&< YZ