libgit2-28-0.28.4-150200.3.3.1<>,ctc!| p9|SWu{]B.KerON?T*{8펶NRXy3Y۸ה(|xk"Rq,s2N|^X _, $KȭHM?0asldQXG[Z ŠTD"v6sFՃ'A}: J喨 < 6Y_gu3KP2{Y]>cJ#bqW t=9b%N>@?td  ! /  9Zy     # <X{x( 8(9: >@FGHI X(Y4\`]|^bJcduezf}luvwxyz$(.pClibgit2-280.28.4150200.3.3.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.c!| s390zl32SUSE 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/ldconfigs390zl32 16631388290.28.4-150200.3.3.10.28.4-150200.3.3.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:25921/SUSE_SLE-15-SP2_Update/03ab1dcc5d9f003aeaff77a85e9772cf-libgit2.SUSE_SLE-15-SP2_Updatedrpmxz5s390x-suse-linuxELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=5d8725388c8ab34542c211208964402e94bebe88, strippeddirectoryUTF-8 Unicode textUTF-8 Unicode text, with very long linesASCII textPRRRRRRR R RR RR RRR RRRJx4iݬfꥋMutf-823105bed6bd20fa3bfedbd506129a3948c7c00cd39437da0d380389c61a85838?7zXZ !t/dӅ]"k%f0]dٶiqmT᩻Sv1/QLi~uOj['ko*FL~3C;MŜIh}_`TB1fihu QXqkB>{adph6VK}O zH@Xs~̽|̢l32Ir-Jk H{k57K] 5Cڍw 83nWT ΙMS4<.vuӂxk}E~:}LJQIQ sN8`r4^Q[hxUB:u˿h#M#k,ˊirͩ,%6-(i0Bp0w\IX]\_x2(m+㉢DsA bl ;"Aav!(SA V--Ēg[5`GXiV;`gH{m bh"uC];y Sk4gg[#5jtܜl 3ʄ#g0\BzD%怀.wV@k[Yi߆Ǧ/2s:" ;W]7SI_V`QoՑ'H4%6xn. Q$۲qo*< kaQ kkbT&va 0$( Iߛ6@"_qV&iU"Ey4 bhqtYX2H;e$a~ h%0N&?d 鹻kǻ0o#:N2g%Sڡ* A\X]oo\G;G2&eUl\)W&ʒaܟhZb["1<,x7G hn*-wǃ]S#n5n\#pZ:Wj1B8TӠy:8򱒡[ F;29qbb+iRl%EW=ʖY5Drz$WڤJbo44%׭Q"uAʺ S+Ҕz~E^d%Htm/)˰N%#[p47gM~e;Kucq{wyT:e;Lmv#i_\pi-ޛ`-D蜨2Cxde,^@&&5}׬=X|rPxlлzvv_G^-5 ?0Ea_ ɦ)$DAn]Q<]Ղ:"4_g͍4~5]ڭԌ>nl(iib҈3֋8n!r 1b{CS<[Я\qN|8 yr0t;y4%yqұe!s,ų`L܏AyL`P6\lbƨHR;EI[{W`TM E:߹zqt᠁M=F{6inpƩ 9f/PS{O!A3lRq|&)h)49ODŲkW`?b L -pBCIhy)rda琇=BZ(9KS0W R&64~_uoZ9GeY"E*%Q /8l"Ya+202!9<`4ps/m!vCVG~YQ^ 5ؙ9W;؜=$rCF |9gD(նT?<g_qQ9[B^arwk%3"OfrK`8ECa؏/ly{{L`7-';j ssrLF=`*i+M }"f{wz8 -/^)Ql60aX@A&VH_Y54V3S./+@G҉je>BP}<<93ʣ>tY\˴œ-*/4~7;Lhykh]U:4f!:|9D- _/<'MP(܂WD? Vpěa#ɘg!BBFfX`y{h5q&}A%r[M h_g80J9&hgrB T,-i bX_aa(%RX6bsU-).K=5`jbLam̚͜x%W"r߬ Il&G'<\bVf_>Oa*:dW&[+QIOEyT$+^ Ar ׯWϺl5Y{JCP>o*Zdʶ(% GR$ŦSNݮl̿_P).a-32DMx7.>"0:4iVU#_Zž(e2t<`Qza!E]_E,cg]3SZةyB F59e8fu5ML+et~,Rs//%Ԇa=Yq%ϸ/`.݊3vH%Bhپppxd*\j!qGŋ؄ :[ogC}YKi8k8vJ$D uQd+EH12GIU+7hHD+MK w,Zͭ ̇HBi\k%-_B_Ra`N_E yO+$\D$8\1ѪO)/dcHGAs(Q< <Aɜط7>fNdW" }n&LCEӻ} i+;<히O6\#G9:/f-b_k=CΕ0aA!mmozTZbRiO)Tخ;et6sײ x v ̬* Ah^^2()|1?i4 ࡫5I0Qk]$[ea,m`%9),`^პ#ݷ$I5⠸-cFF7\s; XB1EAFs 7fbz](ISE]/ )y^id1UP#niBo$)(8ZYأ+1*QLv^`QxiL &HcP]WРBxw_`(InVᖍ\4!{Y&f" h*Iy*Y/_G>U(NpI٢`~ZU2)Dz7N'N/˂IV!a*r/ex؟Bˎb_BJIߛS9dikc7x}s8jO&Z;rb`  t\!|ka4.Df#&XqN1c"_RoWDŽo``' \-.ubb.q|!h)!7h;Aj "߳4\!jx}4nf:Ӱp-Kourws#YL@ lI+3f^Ss^<m@S 2{t 1\/N Fc'E|k5h 33ge^aƋ*MfkOjB8Z~Yhiz.{#3FVG_ [U~BNZ>/X(q[9,I'@yhXnw?u`MDjݐIct-&ab2Z@s3NǸ<I eQS9,2xǞ$Ozd.>Jv]_0k| D5L4kݎmv)29*~lJ,!X,=[zkG^UYE=D &\^> l-d J{f@ U`l^^ÖJP: ; ` ^RA'5OFA\eEDR&_~v %GJVWw2ɨXLwvm 9tb–yͭ{eAp'tu*tȸ>[hoS >־H#')t4wW>qmD8K2yaO0O)KN("HD`bP"O4`?`%fmI9bh{96-< .n# (;ohjU޶_E\c+;ċ̕|Y7棝IOMA9[cLq"n^v9WEL !x7wy &Gi9BjS/JpJsuD~슟ՆnIuC#b7t :U?>>R?%8i݅kE]c> xp$gHT`@~{ױ~*`fLR#uF'pzODF[ڪ% ^ڞVmlEnX9 s[XDCqa_NXD&%t EuUhdv+)TW_S>6wX.99ńsQ.}qTF,WA_-_VPܟ #'J3%5gU'd@7Y6UۃZ!,|~(Ta\ sEdḂ]PNy+>zzf>̞)]"Bҧv5(}qwPGUr VO0/٤^T'T0É@#V4C~uAJܽ$]SqPtض/M's٘3U iD>#q5CF6R".8k ^k_:xz΃Jr,gE5槿,Eİbn2-"NcV [W唓IT|;5K)s[Y[)A&xzY5'Ю4*qiD:KrVG9${ĚpJ_`P)]~[-7Xb8`h>.cD"y2A}Km]AVF9-N0l80.(F/`(Zsw0HUcAHvKVٻm$ ԏ e@3Ti Ê ߲@_BghJyJr"WEH>Z̒ 7:{/xKqZE e1$w.",ۆ@s~mD^rF@~BlMܞp*R)ҲB;ANX.ˌ~Kv%ޓG v:0G ރ@ ҃:XF u#6qdgA]_(skش &3姬+յV7~z'عjdֵ,'&Ne%A_хej95Wa_d->]};Fv:zeռ]|8^4~?`ɾ٭!d٨Y9N},*{$H쇄}'(H=x[*d! ˆodGi*;RL4ӌw s7uB*ς Wzǿ'[^ 3cPXr~P+2UMb;a<@5tLJxh^R?|>vZkѥc>h@&A\Tm2H9H/p $ѣ'n=nd6^ ^5%@Ҋ=]/:|{&biP};d/s8 O%i:m}-5hz4Buk0fKrD 7m\.;Mܣ3&Ixt"k7L^8\Dbi~1=? ԴRl.e0 &?QukhB% ܕlżfрFtj#9m25#-E]+9醻7%]7lPIî|xDU;A[=@ބsN}m-ЛSodN[lm/ת/l%vIK5gQr0_ߕJRS]4v rbgyoJJ 匑{V*ᜒITJ]8ß*l"st#HyZ)tl5T'H=lŋ}N۩3>PR`lYgk8Q!!G Ɨߢ$<)ޯd4Rt7lQ_ ꉕG* 83f `fnR] oW5Q}$]˦9LqO̶BMm~SÞɸ?:Զ$~A).K=4n_Hm&FAS?RZFЌ,gitw(Pkˋ8E)y/6֍9>~TEut7KBE='Pdfn=P'nxUwwVDt=8"EL(FWi.pܒP4LB4w_JUeX~apMe1lyؼsݳIZoFHzF C# jx[KZh4 EX瑓eсܫ@0S?9I3ㅞuͲXFqLl?*PSvTpu +Q6.%|+)U!I@*,wRgu\*Nk!"n߼9z "\ɦ42 xՐ+G9})FجoV El._yhLsZ>`]`?,,췎QfBFh^@^g`-sQCZa7X̢I(A5~~ c蠅j R Š Cd7x o LVj &84;,i(KGk-=zΜ#jϱaNV겏Χx$"J.aw,adwR57#=Jb.I}wX"Vp*TZp1bYRSqN8ef5ϽsmӃ*r3jk(4Ƞ8Ԇ)n(Sa䓁H,}_칟.c: XNP`P)FddY3B١ۖhg 3!i/䭻&{kǞYBc[$S@yh[cU%N'\gFg]/_ ܬɽ Ҧ1}o0h%9YpV+ՀIƸb#gd^{T&7W8gekMx2ޭNf'֢=8|$72a"ɍ(C9\ \dX}YU_n6O5 58׮j܉d+?}f9y*n!.(z<)GM=;&%WNJ/TybG]{ MT!ŻnJ64>J&~!:"sIg$,-d# FRR!Qd]W:#dWttE;ȔEr1v|_#4rcXOn. Ska5 󰓌!BwekMBۋ00q8*pL߆sOs$tDDG#炙G&ve $18dTF@yDkאTAAƤUb2}VvĂ=LgEz;Hj-fd+ jn`+'$U>c59ɓ30ኹyk _fN\,7hxy'ή,KH̎[-k}?$g yCA'yJ5 d)̱],i]FI gu=/P,5vTBF!2s0ڝyGV4E~B E&ȃ|^ ̺h(CgL/2CnR%;6dV vLPiIׄ޽tq4szޓD4/zSdޑwgP1VRMGaaU& %0#G& [J\I6˒N[qm#3KBO4yeu'oehul&!8^an;ϔ{kp?'m5Hū)ꐫWP,Rӯ24ْ.Ba?\ߐ>Wn\H[vHϭ NB" ?7ˎAc f~Ho҉>h *nĠѠg`/_ǂ;BV8O?Ku}aAT-b{Ny@ta ژ++6"Dt5NOӥPm3R"~$DaMg;5DA&[$խR(xG[# J5v lӑ..ɿ@˦MBx0I4nQ5_ә 354 )F۔ҵ 4!Pկ $[A䥚Z3bڶ{qZl c|3Gg|6:KJK}_ Pq߄cQVi eIBK@2sӿ^Y5Gd)q@%>־oPܦ^y7O5R^qx[f)݅Xpq{{22P]#g&> 55o~|DvOEn Ǫc&ೋŶ~0*]>?Agi .1ܧDɞ~D;, jlDw=q`C6:bkхY m"F,_pw`eGtS<94 Pτt_pDnϒ:yrk_6bt b^(3=0m!' KߟtaeQk0@sq}\!ŵ\| 끶|wV<5؄+JSj=u\֪b\ͯ-s=F,KM^'WGp3S~( Dn7?,:_rϗc]v5@/|T|")W?= jpO,Λ:^2*?1QYQeZ N OT{JXt,[@*G`T0l%AG ΥsWNM;&HMXDkT5î_ܤAE`F๢#,q o|f0Lh8]T=!.έ}-Sk^>k&ǻ́tEsqev6sY%`AqbLm$|(A:kʯ~0YEX"y gd"hs v̲!pzm= _NVSX ZおH­Ψ%XՇ{bY-@aKVWx4_B.oK[Iziv԰!fM[,q*M< PW8-ZR{wx^ 2[?ԿZȻ{OmlgO.Ӓjc{ۖ1+6Bs]ۡ_G1i r̵I$2 `JHp+SO#9W8fL48cux*ȈT!0v,%%MP/}׼b&=E4qH86 }8::I}Č"JA um 0$5 kn ǩV0D3@*8[iLu=LJ 2yk&zy#gkZϥCqTQ;} ˿S$֝Tt5+x-qUo{VGT-ag KUͅaQJGCٗB2!My@wKH0Zcm z𻐷e-PSɝEF;~Ლ,bR54UG,ES;zķx$!JJJ@-P~q {8ۃK̷D liAq J緭h>.l$}߽8h/遌bhp܏$_<'ikG9~'+NkB4uh9SocK`r;ffppOmu2#8:85wSUi6<'jFK B+܉f\Ů:7.-qowȬaEi/x]^Y|g\c}Q )+_dPo 2\f@RUS}nfm+fVK`oh7qԄAq(,jvQUӠO:W; !jøcGTs.x+ C"qˣӦq1r546\H1l:^;L9ehW7)pqT,Y7rsPI 0t.BgVBٗ:)EXL0HGjŲndZaYl4#xf|2P#Rv B6 @aP7F^~vؼD<mFmxǂ8{ +r6gݪVwv><:^NSR|aY>Y"Q&B6yZvV," 'LYM"nMs,p^Oh3u{ xYB҄@hg_ע7 #],)"ܖ1epJO(CUzjał*:&QB-NJw. /$n`NX]Q2 r}8 ;+R7n1r!w WWr#MDz$`Q X-2f!ܡ^G܈(g*ph{Q$j i Z\,Y8g27zʐ.XЉ߯ߍ^*GD&\$_וlu5Lj-~9Ȑ|o"sֲ?xbbXB*׆=985OOG@u![5!ޚ\=1gf3r3ޑ/ dcDINΡ׸רH'{d E K%@}ByF<ՈF\n$0nBE/K&ot¼SKupZ.D<$iS_zuO!W5};2wHhUWo-BE0290!f~:t~9?W}QK~ᒈS(<$c|ߝU). HpH)X": )C3. X ×IJ ~3P%n<. Fx7밾YjfYߊ,(c1'Z k_{ 1`Ɇ÷Ym>ږy2̵yL]+,RHjqZ7 ٪5B?_s NxK{ m]G}<ڶ%1j[>vMPyu#̛zӉΌijW֫_Ss N9@M9 Cʀ5iG삕UYa-/bvXV5nlF&C6vRS`z+Er_NMQ6(͖h=ES \^qPvG&̝<&)2a P8Y]>.o*аk2lwthB[*ܮ}xGd1a-F$ؠۀV2Jޑ%.#y3eE_u(bEV-'f,- @\M͊sQyݙӸ㻶Yʼn!D$vNP^3x11+ؒ湐zˎlIA8/h~+DZ/̾AKvSbe5gOs'mpmZE2ZYߌ7uNR#1a$uɓi aFn"d,1cȸ]*6jy9pk}N#;̯gZy{]P~ YZ9 bK .(cKc:@XJga]>J1Neq ;x G Ew <YX="yV@<$.g,b05rjT!͉r)=}&~~JG7F}CGלOPwbk&Jfω]owu Uwwxz"'wQN#t3Ipf& {dHɰL*?%n[6;]DuΫ`9[s]̋~G(PQ07f3f'qq픱 %QFĐU]3FKllצaW`e.ԴKY .;Ts8* "GEV"EVb"VU }x|)hK܍3o*hy=9VTc~z[{.sGYX MIc,*#2qQ.3L rԄ|sW߫;Sf2W&"sGFM;V'q*Gg4:sG4"JK.z> ⟛Ǔu;GBڪP㱘FIb.3V}T?ˁbNJ|J% =VHv07Q:j+0Olq.-(?|&s~厥z_6C?]ⵄU㥩>-dȦu:ؽ9=γmI0;:t)^+>s?OV1B{Yj#AV7~h7]wz? 8lmu2@$'oCա~F.]5`y/Ґj蕙-\pOYBA; kb.6[K>?@\ qw[ǃᥩqj^017s^S%PEjQӅ&Pt@)b1=?ݵu?)-i:ׂnLcκi5bD2J'a= "3[%Yh93J3nX*/٤< {A{ &h2a Q Z5O^K3Q7rFa{ t> ^4M5V\|þg*<%}`d<7b8cn`{ ;޶tZMA_RQ繎[8€m*ix q4UYљP~~F垱~Ax"ȭt֫ }ΞhQ@sGtG}I`ZZ] -@iVOcj@&%d ׍L>=dD 9x?׸RFFb xOS2F\ =ޟZUavfKazM'|ҤGh WA($ .kݑTv0C1?QxPn`ե.Ovk Ua«>O<+Ȥwe?$Bll\ hS!G^'6y$ cJi ~'^ѡԳ bFS8d1\#[S@.GI RKzQm~:[~ -3iMw˳'Y(Z}FILJ) iP^˷Scl R[L WMƯp$Q˛ {ǖZTъh};3 Xv1~S9Z<6_ !Cn<͆&vbD%nˆJ9R5%rlK&,E!BS#ӻX0鉇}|qx"Q"t:ll^iwǎ5z5d*)2PC L┉]]D+4h59l`h _9h:p>p'aY9$G[n:草GOn‚87wLw<s++U1־o2OFNR!vm8N\Eo64N9 T؜~(>_ ®.:Ø6E s#^:giBS@ 'wۘ),ᘣv7r/QR3=YP\~" DMnf9E!o RXẓ̼tߖ4H})m0\.d6~O%sliZi56!뾓zܔ_SEn IeBV_8e׊ǛhO8<G[rV/̭n!s{pg[J8oCq9.-a}y 輅: xzvn BE09Dcm[FJmsb1ֿ4UU`F֌)f:7Iًp!>ѶFQ!r7dEv;e՚꧅\B_G}t<T΍$C1) ;?:y;p,̻%d5J)xa3OЃ֖2]$ʿFg@wEH@A3c|_cQyݨ1`vq,R[/qEx2qkslQY43i]5ƅY֥ZWq]h{*{2jI'Ǟd =F-xF]|FLgTڶϥx>pLw?Ӑ,WfC=_ sڗ/m[mb-sY3?tP=LiWIF/#NQp38ajzG=Yd YXBBЁˌ* DahhEM8Aİǖ𡝮Pg, +ٍ#V˶m\Ds,(%'S6(\yugV}N5= fj:v7)|F>VZC\jYܰ+ŠÌȳpN8zlIQLY~UaCbC1"2dTnr"dQVYzG&.ۓHMCq1d _sr񒡤^YYѥ{GOf9SEfS!Gf5r[V0Br8o}=@ˎg02ߌEy0`:s0R\ z~Ϛl}Tz <1񚘦[-vEWݫ(a]2tn"dllQ @DN՚9q4gV`+ bQYɔ?c1`5[zVmEMT}R~E'~|qפgSUYQdq&\P5LF 624}.= $,*uĂ3jd]jڤ3cM$} N/dyH&;8 =\ss0uKX=i"i eDe~x pyr? զk;( 0#ȬTFҙh9އ s0;WCþu0Kd{|nzhIGiYQ빢iѝu`al8SKiQZyiZdž[۱~D j\V~we߃9O>V_* Q^/Vzmo7d܍zsSnh,TSx8k-؋[Rnv2Sm"-W3(Ӑx=ϒ1IqfvwiV$SR禖}Ɵ BYS#'+j%i[)G;Xw Yn_m S:ů×{tFO`ɮAq݆oZL Ѹ~,R{Ү-n{݌gnS"k~q0,c]# _q\Fu锍DT+ \xNgQmGeO aq nIkr=5둪ʈЏ;ƒ| ₚbuaan02E(,|^쑨=Ԅaf=]^ɓ'K]Xѐ_Ư2gmx0?Qf#s\AAhS >O1g-r5UpzFʷ5}s-Ûߨ ǘq@c`|#3LUqN)Ik1M! w6-rVf;2m-Jx$|s`)Ԙɰt,TIJbr*]ch^ Lo'޸G$.g.h} # u(M~o`2i.3{9nFLΤIOuҚ^QTv^sF̨jf*#Bw_b P&ڒbG$jg*%>{sV&R(:ecJue@ 98e>؞I[4 7`3F6L DVcLiؗ4 L'8͟^V1_.sS>@qfNƧhү\JE߆7*L"+з Qݦ" QM@@W0#ѫLOQl*s kPAx̳D_*g̴CCgkT|2];TGW A $ ׍ gYSe73ߵ$俻cyxjA=#HNHU,&WdX 62#&E U*Yr?n_7 Ƹx6?7`lEޛ;ǃAIвH[ e C>ڸ7Cè[-Rpx h] Ij E4ɾLU#XQ'/Ks>fdW;z]D?&K }$9XB+P*;V6G" :Z 2Ə*wHÞD0ZHQ/jܣ..R7 c ce2NVPx;9J²~. Tǭ9)l#WRe^ItK[)GI({AcEr]7i0HƠ#`rŏ>URA %ɕ<!a2Yʷ^V{Xyͳ. {?2%sp RA\aNP_Z#I@}OjtvY;= +z$a0d¾R)e fﴛd# P vCCψAD1@hSpm~|#&ەG/.FG = u $1C#-kf@d$!abr1" ԋ^>!ex ˎ U~9@N;//.)XZrAe ڇ ʿ؛ֈfeț.Ϋh.&]_ovݮbnæxA*REDUImEԤ+톐Z6?lщ1elXju{v|?;Jh 7*,H c#~)48ׁ,J܋dbvzqy${Hx= k[݂xc/ӟf+yAM3`B'D{'Ecm2t\xAv'V8( gwBtdvW~ҔD*%9{b%@tǻԽ-U"_r?Z-Yb(v8RcG8tP 4qX½1;C#(ِKcrl:q95 0jt*596HSUHhs =һq4)w[l#TfKUT1ؓXtHuHʙ&f6Ojz Ӌh+,%D@rZ[RHfKYsڏ7 9jli$Ԁ+o76tQNWr '%oWzycMqb3摋\j آ ΩS|nlпӀ|9$,hѩp]hdR7${EJ;;5 Չؼ3i5U6xn 2BړY אn\gK^r:kx]K?,\B2wmyM)/2)(4W2;N)@b5-%PVg8L Byyq+`[qkoLV#ʖUv, o pS_ 7 MdNe9u~#)9ěE._]lljů3[=6_tVT&a{' 9 InqAζJSu`"zM bz4W%~_F*gh[R 1a9ֳiL/%nQouȍZ|֓ p{, 9rcG05$PIIӷ&_ $J_#GTXu&ji;r-ϵk{j VQ0OYjaܹ Nxr8VA҅a@+X.̉?cs@ ^o_܃C.="E{8YkA%O5,d`>|ۀJ@`=S4͈<x|zq[ݨN,>'g 4 o'j&bl`V׏r) @lD.xhL3Ա{|DbQu+ơK[G)d7ԄзgftYW9OmG:c[@z-R"g?S>hJ~oȕ";]]}nZ< qe]i^CNcmp ݗƉT!Bb.d1DX|e)Ie\"$BI+Xx£uՁ!u.L͆)G\@[uEy nf>4$b]zEP*LAc~סA7y^oO&&)AiYj2M/<%1sh8hjǾ2Jn3{RI):^F ] яxHw1\}6MILU{QQF(a -MԸg=*%gr'fKIEc8cB/eC]G7T[l 5Oe|!Tt& NTW)-hr}!W:;JgpГL|yWK,S~OK9Q#:R'lXЫk]Xp~hWPT-e^ԯjZ% :'3VWPX_9$Xp_WL?. - $4pGT[7[s)]ʉujRFѵ2ck$Վ)q`_8S\,(gAd ؜`|o2+coȅ8{vX 纮렣q# !!˪.¢@c̷fO_3Mm{mҙ9F$Ha"J۾tntMŽGFP\\PUMu{N;nj%_JbD~OGIOh4NfN֬Qy\GKF#+tMpP;-zO>ps ٓ:az,$GWn(ְ!6kEǁCnS:<^9D۾=/gUA .TEs_=)2{%#.mXk1Q=LHbQ^z13t".f*-0*9Ys@77Rougȡ:c%~[-G@#)0f$CAb5%0S^8еԗkݏ'w.;vŝL:#<Q灷[55" uFX U ؅pїպE-*_=-O*%:]11)\$G`!_}*7 ]U ymbiE !t,Slj!b!#zɝ i9֧ ⴚY񏱏"x½$#w)jS0'z9O2Vy:)@ZGq0]ءֱNmɹ5!EV=s$ʰpSzȓzE:гS98JUP,cfG.ld7*&Bm44KQ0%Q⫁; wqڎsA Ɣ{2{[ v!g긚Q[d?ڌ=0oVogD1[cW牛f20Dru^R_9ZĞhײx<I,M<-$C6U[cuk#(\6,\=@ M!U3`;Ua0>늜0G}:)m uݯ6#1Y7[ P~oVAFGODq42O~&m+?ԥBE}ɦճS?EV ͯ49җd)My G]ff?[n&'y"umBoNѡJap2IyhDRCowx %0gPX~+=~ "b@ꅋ9ՠoQa.ֱ]Tua/%#2i[KDž5GPSww:&/?_LVe=4b\(D|icYE. V@o˃%ҷoj ONBtW^5z4gdXA-tjaIm݋Jڅ؅4.u,t_Cn|~ۘ#xTBi:"ydҥLpr\ sdDط(|ɇ׋ѼA"bua.Q0)r 6i)6=YYz?n_~ ِ6=Wdzkp :xÙRJ xlR@vYmd7B?>e֔L*/t@B'%Y`e>i.SR?Vy*M#oqy՘ Q}7 tӺW~|{b}ϕ~rZ =;[1vŔ`0smp_4Q#E gQ-?R}:qՏ*^N|;\6`~2_Z9grF3#!up"a6{AE.*XW+coqbF&[XKx x:G)1;RV\ڴW|pXJ,ӧ 4?n=Ry^ /JÆW-+v{Gٽ|uEM5'Ju5}| \H~Ur'*=]cʤI'vĈoi֎Tu} GdQa;N^1z8|_5ԲM&#rckhV5[\xHih_4SDWQynHW#Գ{Fݤv7]vېpa-#V}<}6#mkTFR~JzL(a[G=ɻ҂oHS@IO~Ԁ z+&8U`"o*P< 9!>bD}A1#_^u%SK7a8߫\= =wJ"!|K/I #AaA.fM-{aW]<2{*l]\SQєIɈKF;sŽNWCp t#g Ѕdnqh\a1^,yZ`ylfqEY+:3H;ǭݽcd~S Z:,PoVé=L P pO 3ka}h&05|>-SVwdTe'oRw{.US.{.7Ich/;5=Z0ALN*&O#HCDUETk.!i4A`y5.ЭS0,ҝ$cHT5{? k:7 hc4!zNOtgk"-xia*^rLq D|D/t[DbԿb oFD< 㺴30ʐ'?2!&0' l<{Zc'bӕ.;eth欢$wܿ a;e8 %6z+ROE)~Uyv[hdL3[2N&{ z8PkMպ)r4/XwMD| Q ͳW"P`Ћh';ʬN+5hQ.{X³O&#Dt-?<ȫ3]?X9֠}\kA5H| vOT"!5./7"UjG {b;6SZ +L)RX*7Rh믗:gTҮU-  gWJ" x9- }&7Jւ_^>S`)4,lQcI,p]~@QUދbg4.>8pm| f{BU0Q5nVyy.lf^ USwRYe[7xn9]tgD]DȋنG 5Z ?(5o*לjxٯ0󞗌Nv|]" w=O N@B]k4NdR 9`K[$ ~$E.UMR$  wel~ޗQ/a9KCԯy^Bsgd L)Iev6TBXNc9I !%w?d 1kwQ(O@;6bw^'zۄ[o@lǝ]E֓tn#60> rR{zӒMVd?`JMp3q|/qQmb %rf~T6[p@Z!POZgOD<R~AsWUSsI0Һ GqjZ8a=.;'>x.Ǣ2! J*4pJ-ګ$zr/|dk}4Ӟ,ԉOAAb C6byk.0.*KV SzP'_nͣ9A49f IA=H"}os0:U+XMفǦCՑ_ ;]RA>d`J{;]t;ci47ЌT#oPpT_r?70366n(C{mv%cb}88hcP O!#"HgZ:Ǝ1pnekS)b ŀ m6|wVj&V6)j _[&)M ^+k3zalCu~"c}W4j>E}3tj&(5B?>xG1ڲAؙЮVOD gn[̚*p#54TDQZ>%= hTGCw]ױ,\B[?-)K޾zÍ$aI^p"o:zme3v.6oL2 7 oA= JRV ҫiOey51nqx0jv5zݿ$p_w,O=\U{n,@v/]V?BS;þT2Aq *Vp*vxJгДhrsܒN2_!;jW+Y$ RSsLGh_3B`z*&sAaYj'7;I @Wn*;s<֬nt2J>"bևbs2:Vjib fo@ogvNE/ ŋWw$&үKknow}+u&]|guqowaCb2+Wb c m})CwG+-0^N;w`~C˝B?K]wӭ 1$zC\ʈ)7[=r)JtiyutUE^9L}_yw#݄5 Z\A{=ym:Gt#^Rno_%{DI{'1J:n%kH[(*IGsM} \9X8|$I NÓ!4+xY<>^ank ?&6N<Մ}. =tqE۞d ԫm#'N>:qlivb]jE^g+y5ϺDʰ]CIoB OcۍJԥOZǏ g~oв|Ӈ`"J?X@`׍8!_ +\o|aVlUErıok2C"VIOY% !jޕd pwxGB✒c>d`X 9WFXiZx ~qvQ)"-hwΔZ@uщ.>rA1R#I_u"] ylLq^/ %!VP|"⭇D:]md!aY긥lW ;A5Rs_r"͝fSS"`z_}uD0#(ol`8T&2aZ$Lξ\']3tm$!i $U/S6"HCׅ0[{Dc͠4A#L Lgw($ck2V€pMpbq@AO}"p]U3&s|HRa/8:aGx}G6v~^|:{9_>[͋~w~3?܅KEjKvF=N| 3[G3+-Ot~Բ*TʡC( mFAFA){Д |4'oꌄ D:ӔN7 pgM6 Fz/jJ\N4^q MNF%׼ld=0ԪְK5E `Sǐ_ǫgxru"2 96)7dP:twg-sr)`12\O fƸl~w?[Kt]anCz1'O͙=NKm)HLR,BlOKH! eLt'3.fQ}<rmO gsytEP{y6z*,KrC=.0bI+!(2b]Ï:91KhFZI޺Mo&4}CY|(CRm‚`\QE2]jEB "!Q]v0l![͒PShT"unʻ>z/!6NJ&jqB?w&>6JrjHNuu>'Z_9;kʁ 3 Z-ZB98=qF ՚T l-*\=i"Ʀ 5 2aG` ŽiKI[zup2,F@w&{鍪HyVLF#<5OٺA `ƪ's5L;JAE!`#Zy2DxJj6{r[TX86AB!4`, F^GnX7!,4v5Q9ToK6!睱&؍[w=~ 9)=y@ٛH'Ja%ǎ&(,L6ܘShvbÉچ1r}WF/9.'L{MlL=I!WM @Bm!~P'Nc;mN{]L}.^"mŕlOK>\Pm`Xڅ"Z <deKO#o>D$Tc4:`Cfm9SҺ-K8+[M]xKN|#wHq{jR^Z e˙pE{p5l}|1,X6Ctjz62)1hPv`nEFUt'-WOm$4 fvA nW6W9v3>O#y:hbPI}[_0̃k4T9V-f' 5gC'qE"1ShI=8Y59zv!> cC:yѽu|E[U.?|]rY&V<Śva wHz˗b)`8=WT͵JnjR2!.9 wߑ,`?&Ι(iGSy?i풭wf̌Ag P:̾S9xVy("n(k='P&Hh{Ǎ)\v[0]IPbz}n˄Na҆ÜفHTt1SA1xWړr!;<,_ƫ|]p!z˟"Dq AYCޚ+-Pr.*v+9Lˍ&0fA+ԀDPHjŞ/ nT}V%,Ӭgތ 41r|dhBʝTFg?^tDUX-f*Њo*S* |3&?YpőcoAnL0vNXo&Bq=Uj-u/Ԋ]QrfT1N2;*fOm'S?܋&Ī+M޽S5'jAPG H>[Rx[kl)1ƉI^-"  ϑ'#ߝ "a8CDPbxO.HT,n1#.;cA-sӔCon 'R?"tF?wӣޫ K|)w;=jnW*m7nN JЖ<sѥ7S6@p} %Hw(宖ix-yz3(7JFkE_@l4`É:dFLpGgq}x:$}t<FZ,q !7nOK<+Bʷ4 ˴7GrBu[%ҁ2 gٕO"]$ oo"UiE#*NolB1.)xJ4\; S'kt"4 iO G`E YY %lMo>ZvYc&*"ֹ<:YH[$ \&jv'~@UXwJd\C1/&rE3y)wbS_h<W MZkl\O`_cE, սDtԨN5|L]d|2HCCp5ݹl†k{e<4Nt~uڎt`%x0;W"bP<: cibZb]a%pF4*aF{E*_ YO*͎f`tG8>Lhqs ěmʩ8 S:/{ -I]ZO쐨1n ..ͪ1|T]9S!Oz+Ȯ>ⱢOcI,rw_>p #R8 3+ ^Q~vIa<3q魦3ɟ??Kv#iRj9iv!l5 VFkH/:oDNR(@DDԊ\6!qЎ#]}W)ǣV1Dkz Y3+?Inb]]f8{R7lq TՑk W r253,V ' d;J qG,QtVTdW*[n7lb.' ڽLUIPS|eNiZ#h2L DM 0& }pȔ@٣w-s3ZWx͎lKjp&%u<В7dI}L59sGiE؅_19) !f-\o53mMY$C`coܶTR͜D1^uԮJ٩֒:q<ؕ1Q<',:yFI596-QnCH;Oc\WnE̴ ZTԀ!Ga-LFK羒]-K] qȇqUj|+}MhZ}#8>fߑj#n)¥xZ?hn!g{MdJ9F3+w̞BF?&TB۽ϤkIqUV,H%\6^;t&)򖠜< m3ۅqT , <0}_qɟm3;&j'%T)pB5A":*@8Kc.9}ѻa560'QdT5@ T6|hƕ1]zKA*m<ԯPfܒힳOcVtYK󩊸HWb" ز%P0>ZVT:͋PMj +NIlACs  b3YwB*a1} =ONA,TQ9>]m6yau=* .4(D,rAVc 9[9W}JmoZ};;?;)cLbgV8Q+L&jŌFьeN,ٖuǨpaQ gMòkJ.B{F5yM8͝" ZWN`aǓj:~I5vp pH.Ċ8)Ş'@Xן;\>Uc7kG-NN]=r(bk-H[i&߰*G rξP2 4;bs?tIW( P4qWuZQ^V@ *}ʙ6xFzH DD=^ӓ'Ξ`3Pgx)%뻳fO,E]A|!?3S ZRp-q6[ >4<ę`e)2_W5~_JrdAJ%ٲ_ gAk#kw|U!vQ=\M]>Iu{tUwJm-̭)gElbSo`3()`"Ct֭R=YIdbJQnCG$N/"?\mBsMюJd3(O0jHӀ*;uiU.8h!^oY=*/ܞUUaH&=!f{V]2h9 _q67==f{r;T:r=?9t풃B"Aů:0Biv^SK _ў)1TK_.Wc%2m-,r֕PG}AƉ|&A,XYycJ?)݂B2 +ȋ/>hĹc0*= 8;_VBmҐٞs"}§@PKYg |v!pF8?/b񡚖ޔ^UزHDOO+P[M ^ⲞF4qaZ ;j%"{<';2 ]})_^j[r*q?H"0@AS-ثL lꨉh<`OsqJ̽ռ`mB4+xIGh<(@H驳-LJ#=ˢ)yq"ʤ_wDP7SVU{ x9D*m: N؃v9:BfDp'70`rR[Ùp8 /ѥA+j/'g>cYUdZNaB4F: cd_Nb롯Zu+A\/Aty-|JE\9PJ0tv؂/P~SNUrxWZ@ol{Q,_}aGQ(?xOݮy$Z?eCc{Q O/fÐn :+ ݗ5a)DdQ1J<ʴr.//߷7R0%ZЄǧ7/d7Z捴-!T5ϋuf_Q8&Kj4 PRSzN@pԤV dK0 H|oU8:H$۲)v^4' jyX#iH8Gn?w$u\aBQn &UY" /(+k;D_cbLzPg*TaT7d7t򋬜>@ڐ<_/OTX§N)@hPἊ$%!!+4eU~|v̂;yE$RsWE {Į刟0VOBG21DS:Sz2sWy~n!اWʂ8BH4~`kzؕRi#kw`OlMs&zZGV'Fe,#m\/ɞHh IꞮQ [D8eOzyӬ&eWeF@qqN^"/jZ8^)A opss$+`di]a{I3/rS,^֚B%tA T7M{qtv$@ziL(S3朆k-z<t4|U+;^cA Z$6fӓ)e1-q[o< it|F|@ >{#>\_\0ZMK_ZyfxY7cT.h٤,Xq~s3 8>멄ǽ<., =67SNE;9 ȬݞL㨎Nxi$XeF*(Ox K6=bsoT0xF3U!ӈVfR{=\6#E}mq׳}IZΩNciƀn^ zRgI1{JpᢁMUoo:eʊ2Z/>'?CM:v)$N1|{w4&ILCg<%{rLnYuV]]zƏ^ e3N1ᤠt'3(L%bFsm*P-RVx1exvdT(-ȣ` 5zR"8PB r՞U̡S* g"VUVB>+3'U;ݹYE=ai:X ' .'RgBaE+[,f}ΔPi)' =E X%O'ρ]ln/v.'?(ާEx Ikv)ač.3 *$k殲kϘ-nj#5;upV#D474z~ehrc֘s.%Ӿ~8Im$ٍBaDWDVr6EH_FhNMU[(-i[(G,B<^Z0{jw ErVVDx_c:TjA.Bf A!͠/N9sIH"+/6D!2-&.PBI5 GkXh@w(#nG4lr=yֻ s^C] U] ֘}sه?Gcl;No[d./ ŅGIGecAkǿ{t[`{H KLt#K>.Z+, kZS"sb54HK4\Ӛkhiyt[~);7p"чws;ŕ%enRi8YʂFƆeHXv cWf$r}| ֒_"U4M-liv+ ]_*C 6\lsLL v=2,XG:p[F3N;Po|Xc+6 D;;ҧ* ~ޙ[00q6 .5N!Lvnp "PL}55DdIxiMw{\u6[]h*.#Aq/jDٺdn1 |rXr":VAei y&zR7H[?嬒5Мe5רz_L%=$֓Vk!G+EwH  YZ