libboost_mpi1_75_0-1.75.0-2.6 >  A `CsQp9|#<ݐuG LmucuUM@&>vkc-9 OSDۍlPJDa2H<ҾJyPE䥾'bwzs7}`-W<22{4h廍,V&rfos'"@N"x/p7y!CYi^ T(.bW LalgWDYpx?Y.ds=!e-^F22c4b4f09ed30411407cdadc6736e69dfb15acea940d9663aa52aa49622e3fd527253973fbc3f9fceabd5018485eb258ed6793b7d``CsQp9|"3!aV}]!rϋyB/~l7.Oy4p[7teW֪r Ί,.N7͸[ZDg#`~LpX Ej'’7œ;&Yr9i@"[q} qG8JG6SFg'U&^V3Gl } ژ6./ЮnHvZMoCc=403‹! 8>p@h?hd  :pt|      Y \`ej4`(8N9N: qN>e@f FfGf0Hf4If8Xf<YfH\f`]fd^f{bfcg0dgegfglgugvgwhHxhLyhPzhhhhhClibboost_mpi1_75_01.75.02.6Boost.MPI runtime libraryThis package contains the Boost.MPI runtime library.`Cnsheep23 (SUSE Linux Enterprise 15SUSE LLC BSL-1.0https://www.suse.com/System/Librarieshttp://www.boost.orglinuxx86_64 (`Cgde6876f52128fb6cf28eef5bd2c18bb765cdf660ec95f66ab83ff16d8c15187arootrootboost.175-extra-1.75.0-2.6.src.rpmlibboost_mpi.so.1.75.0()(64bit)libboost_mpi1_75_0libboost_mpi1_75_0(x86-64)@@@@@@@@@@@@@    /sbin/ldconfig/sbin/ldconfigboost-license1_75_0libboost_serialization.so.1.75.0()(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libgcc_s.so.1()(64bit)libgcc_s.so.1(GCC_3.0)(64bit)libmpi.so.20()(64bit)libstdc++.so.6()(64bit)libstdc++.so.6(CXXABI_1.3)(64bit)libstdc++.so.6(CXXABI_1.3.8)(64bit)libstdc++.so.6(CXXABI_1.3.9)(64bit)libstdc++.so.6(GLIBCXX_3.4)(64bit)libstdc++.so.6(GLIBCXX_3.4.21)(64bit)libstdc++.so.6(GLIBCXX_3.4.22)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1`"y@`__1@_H@_S_s!_a@_P_G@_?@_:q@^j$@^Y^[]}@]X]]m]@]x]w@\"\\@\}\Y@\@\T4\HW@\ all libraries except the parallel ones * gnu-openmpi2-hpc -> parallel versions with openmpi2 * gnu-mvapich2-hpc -> parallel versions with mvapich2- Simplify _multibuild flavours- Update to version 1.69.0 Breaking Changes: + Logic: use explicit operator bool when available + Boost.Signals removed New libraries: * SafeNumerics: A library for guaranteed correct integer arithmetic for C++14 and later Updated libraries: Any, Asio, Assign, Beast, CircularBuffer, ConceptCheck, Context, Core, Dynamic Bisect, Fiber, Filesystem, Flyweight, Function, Geometry, Integer, Iostreams, Iterator, LexicalCast, Log, Math, Mp11, MultiArray, Multi-index Containers, Multiprecision, PolyCollection, Pool, Preprocessor, Rational, Spirit, Stacktrace, System, Test, TypeIndex, Utility, Variant, YAP For complete changelog see https://www.boost.org/users/history/version_1_69_0.html - python_library_name.patch: updated to leave Boost.MPI python names unchanged. - dynamic_linking.patch: refreshed - baselibs.conf: updated to 1.69.0 - cleanup spec file * removed no-op conditionals * appended -impl to all unversioned named Provides: to facilitate introduction of boost-defaults. The defaults package will provide upgrade path in Tumbleweed for -devel subpackages.- Stay with openmpi also on ppc- Fix build on Leap < 15.0- Update to version 1.68.0 New libraries: * YAP: An expression template library for C++14 and later Breaking changes since 1.67.0: * uuid: sha1 detail namespace header redirection for backwards compatibility was removed * signals: Boost.Signals will be removed in the next release. Boost.Signals was deprecated in version 1.54.0. Transition to Boost.Signals2 now to avoid disruption. Updated libraries: Beast, Context, Coroutine2, Fiber, Fusion, Geometry, GIL, Graph, Lexical Cast, Log, Math, Multi-index containers, Optional, Predef, Program Options, Python, Rational, System, Stacktrace, Test, TypeIndex and Uuid. For complete list of changes, see https://www.boost.org/users/history/version_1_68_0.html - refreshed patches: boost-no_type_punning.patch, python_library_name.patch - dropped: python_numpy_retfunc.patch - no longer needed- Re-enable python2 module build by default. Still too many things depend on it.- fix packaging of Boost.Contract on s390 and other platforms without Boost.Context support. - fix build on older SLE SP by owning /usr/share/licenses directory- Update to version 1.67.0 New libraries: * Contract: Contract programming for C++. All contract programming features are supported: Subcontracting, class invariants, postconditions (with old and return values), preconditions, customizable actions on assertion failure (e.g., terminate or throw), optional compilation and checking of assertions, etc, from Lorenzo Caminiti. * HOF: Higher-order functions for C++, from Paul Fultz II. Breaking changes in updated libraries: * atomic: Breaking change: Changed the result of the (op)_and_test operations added in Boost 1.66 to the opposite - the functions now return true if the operation result is non-zero. This is consistent with other test methods in Boost.Atomic and the C++ standard library. Users can define BOOST_ATOMIC_DETAIL_HIGHLIGHT_OP_AND_TEST when compiling their code to emit warnings on every use of the changed functions. This way users can locate the code that needs to be updated. * multiprecission: When converting a multiprecision integer to a narrower type, if the value is too large (or negative) to fit in the smaller type, then the result is either the maximum (or minimum) value of the target type. This was always the intended behaviour, but was somewhat haphazardly enforced before. If you really do want just the low order N bits of a value, then you will need to mask these out prior to the case, for example: static_cast(~static_cast(0) & my_value). Note that technically (to avoid undefined behaviour) you should do the same thing with built in integer types too. * spirit: Removed `with_context` utility: header no longer includes boost::next and boost::prior as they have been moved to the iterator module. Instead include . Other uses of are discouraged, it's better to use the header for the specific functionality instead. * uuid: random_generator is no longer copyable Libraries that were updated: Asio, Atomic, Beast, ContainerHash, Context, Core, Coroutine2, DateTime, DLL, Fiber, Filesystem, Fusion, Locale, Log, Math, Multi-index Containers, Multiprecission, Optional, Phoenix, PolyCollection, Python, Spirit, Stacktrace, Test, TypeIndex, TypeTraits, Utility, Unordered, Units, Uuid, and Variant. For complete list of changes, see, https://www.boost.org/users/history/version_1_67_0.html - refreshed patches: * boost-strict_aliasing.patch * boost-aarch64-flags.patch - python_library_name.patch: adapted to not append version number to library names, like new boost is doing. - disable python2 builds by default - use regular Requires for libboost_header dependency- Use %license instead of %doc [bsc#1082318]- Multibuild requires versioned Name: tag and doesn't seem to do this automatically. (bnc#1076640)- Update to version 1.66.0 + Beast: new portable HTTP, WebSocket and network operations using Boost.Asio. Header-only library. + Callable Traits: new library and successor to Boost.FunctionTypes. Header-only library. + Mp11: new metaprogramming library + Asio: * implemented interface changes to reflect the Networking TS (N4656) * functions and classes that have been superseded by Networking TS functionality have been deprecated. * added support for customized handler tracking * removed previously deprecated functions + Atomic: improved compatibility with GCC 7. 128-bit operations on x86_64 no longer require linking with compiled library. + DateTime: Fixed an integral overflow that could cause incorrect results when adding or subtracting many years from a date. + Format: New format specifiers added and volatile arguments can not be safely used with operator% + Fusion: * fix compile error with std::array * remove circular preprocessor include + PolyCollection: backported to GCC 4.8 and 4.9 with some limitations + Uuid: added RTF-4122 namespaces in boost::uuids::ns + for complete changelog, see http://www.boost.org/users/history/version_1_66_0.html - refreshed patches: boost-rpmoptflags-only.patch- re-enable Python 2 by default. It's still conditional, but remains enabled by default. This can be disabled in project config.- build Python 2 conditionally- Use multibuild setup - build no-dependency libraries in the base package and build the rest of the compiled libraries in the main variant. This should speed up bootstrapping. - boost-devel not built by default anymore. - libboost_headers-devel now provides boost-devel for legacy dependencies. If you need compiled boost libraries depend on the current compiled devel subpackage. - run %fdupes only on the header files and documentation - drop build dependencies on gcc-fortran, chrpath.- Setup MPI environment prior to building boost. - Switch to OpenMPI2 as OpenMPI1 is becoming deprecated.- New upstream version 1.65.1 + config, fiber - Return a continuation from functions executed by resume_with. + stacktrace - Change preprocessor file extensions to work with the installation system. - Changes in version 1.65.0 + stacktrace - new library providing call sequence in human readable format. + polycollection - new library providing fast containers of polymorphic objects, from Joaquín M López Muñoz. + For full list of changes, see http://www.boost.org/users/history/version_1_65_1.html - 1d862615.patch: upstreamed and removed - gcc_path.patch: obsolete, tr1 module is removed - mpi_upstream.patch: upstreamed and removed - boost-1.57.0-python-abi_letters.patch: refreshed - python_library_name.patch: refreshed and reverted upstream changes to mpi/build/Jamfile as we are building python2 and python3 versions of MPI separately. - baselibs.conf + add libboost_stracktrace + update to version 1.65.1- 1d862615.patch: Fix regression caused by refactoring of serialization code (bnc#1038083)- make python-numpy optional build dependency - fix building of mpi python3 plugin- New upstream version 1.64.0 + process - new library providing cross platform methods to - create child processes - setup stream for child processes - sync and async communication streams with children - sync and async wait - process termination + geometry library had some breaking changes, - ublas_transformer is renamed to matrix_transformer - explicit modifier is added to constructors of rtree index::dynamic_* parameters - strategy::area::huiller replaced by strategy::area::spherical + context library updates - deprecated API:execution-context - fixed bad assembly for fcontext on ppc64/sysv/elf + Updated libraries: any, atomic, config, container, context, conversion, core, coroutine2, fiber, hash, interprocess, intrusive, lexicalcast, math, multi-index containers, multiprecision, predef, program options, regex, smart pointers, test ,typeindex, typetraits, unordered, variant + for details, see http://www.boost.org/users/history/version_1_64_0.html - Build PyNumpy module + add build requires on python-numpy - test_lowcase.patch: upstreamed - refreshed patches: boost-strict_aliasing.patch, gcc_path.patch, python_mpi.patch - mpi_upstream.patch: pending upstream fixes to OpenMPI build - python_library_name.patch: we are building python versions in different stagings so drop library renames. - python_numpy_retfunc.patch: rpmlint fixes- update python macros- baselibs.conf: (re)add python 2.7 and 3.x libraries- Fix dependency typos.- test_lowcase.patch: downcase Boost::Test usage of uppercase variables. VERSION was clashing with GNU Autotools define resulting in compilation errors of various packages. - recombine headers from various devel subpackages under the libboost_headers-devel package. Not all usage of headers that have compiled parts pull in their associated compiled symbols. - general cleanup of the spec file from old, commented stuffs- remove non-existent dependency in the boost mpi python package- update to version 1.63.0 * updated libraries: atomic, container, context, fiber, fusion, geometry, hash, interprocess, intrusive, lexical cast, log, metaparse, move, optional, phoenix, python, test, typeindex, units, unordered * see http://www.boost.org/users/history/version_1_63_0.html for complete list of changes - refresh patches * boost-1.55.0-python-test-PyImport_AppendInittab.patch * boost-strict_aliasing.patch, and enable -fno-strict-aliasing for python module - baselibs.conf: * add libboost_locale * rename python to include new soname - remove python-2059618.patch, not needed - make build condition --without buil_mpi work - allow building without python3 bindings, for SLE11SP4 - remove versioned build dependency on libicu-devel, apparently not needed. - split out the boost-devel package into individudal compiled libraries and their -devel subpackages and libboost_headers-devel package for header-only libraries. - remove all the -mt.so symlinks, probably not needed anymore. - ship MPI python bindings for both Python 2.7 and 3.x * add python_mpi.patch to allow proper compiled library loading - dynamic_linking.patch: first attempt to remove static library generation during build process.- Revert upstream change that set default python version and ignored user configuration. python-2059618.patch (boo#1006584)- Rectify groups and description- package boost-jam - add missing ldconfig for libboost_type_erasure - fix EOL encoding for documentation files- update to version 1.62.0 * new library: fiber: framework for userland-threads/fibers * new library: QVM: library for working with quaternions, vectors and matrices of static size * see http://www.boost.org/users/history/version_1_62_0.html for complete changelog - remove boost-fix_include_config.patch - upstreamed - gcc_path.patch - fix GCC search paths (bnc#996917) Boost assumes /usr/include/c++/x.y.z/ existence for GCC 4.x onward while our version of GCC only has /usr/include/c++/x.y for 4.x GCC and /usr/include/c++/x/ for 5.x onward. - migrate to using %bcond_ instead of hardcoding macros for different Boost features - better way to limit max number of compilation units than by reading /proc/meminfo and guesstimating.- Fix boo#994378, boo#994381, boo#994382 boo#994383: Fix build issues when optional_fwd.hpp is used before including boost/config.hpp - Add boost-fix_include_config.patch from gh#boostorg/optional#19- build it from "boost.spec", but create versioned "boost-1_61-devel" packages- build quickbook also in versioned package- update to version 1.61.0 Details on http://www.boost.org/users/history/version_1_61_0.html Obsolete patches: * boost-1.59-test-fenv.patch * boost-deprecated-type_traits.patch- rename package to boost-1_60 to allow multiple versions- Fix build on systems with GCC4- Added libboost_python3 to the dependency macro. * boost-devel will now correctly requires libboost_python3.- Add boost-deprecated-type_traits.patch to fix deprecated type_traits usage in boost/graph/adjacency_matrix.hpp header.- Add the following patches from Fedora to fix underlinking in boost::python code * boost-1.57.0-python-abi_letters.patch * boost-1.57.0-python-libpython_dep.patch * boost-1.55.0-python-test-PyImport_AppendInittab.patch- Updated to version 1.60.0 * New library: VMD. * Updated libraries: Atomic, Chrono, Container, Context, Core, Filesystem, Flyweight, Fusion, Interprocess, Intrusive, Lexical Cast, Locale, log, Move, Multi-index Containers, odeint, Optional, Predef, Test, Thread, UUID * See http://www.boost.org/users/history/version_1_60_0.html for complete changelog. - Modified patch: * boost-disable-pch-on-aarch64.patch - rediff to a new context - Removed patch: * boost-1.59-python-make_setter.patch - integrated upstream - Add libboost_type_erasure subpackage- Add support to Boost:Python3 (boo#951902) * New library: python3- Add boost-visibility.patch to make members of basic_xml_grammar visible (boo#958150). - Fix redefinition of _docdir.- coroutine2 depends on context, disable it if context is not built- Updated to version 1.59.0: * New libraries: Convert, Coroutine2 * Updated Libraries: Container, Context, Coroutine, Fusion, Geometry, Interprocess, Intrusive, Lexical Cast, Log, Move, Multi-index Containers, Predef, Program Options, Property Tree, Boost.Test v3, TypeIndex, Variant * See http://www.boost.org/users/history/version_1_59_0.html for complete changelog. - context now builds on aarch64 - Import two patches from Fedora: boost-1.59-python-make_setter.patch, boost-1.59-test-fenv.patch - Drop 0001-Fix-exec_file-for-Python-3-3.4.patch, 0002-Fix-a-regression-with-non-constexpr-types.patch, boost-uuid-comparison.patch, boost-unrecognized-option.patch. Fixed upstream.- Remove unneeded dependency on xorg-x11-devel- boost-unrecognized-option.patch: remove unrecognized option -m32- update to 1.58.0: boost docs remain at 1.56 since upstream hasn't updated yet * New Libraries: Endian, Sort. * Updated Libraries: Asio, Chrono, Container, Context, Conversion, DateTime, Flyweight, Function, Functional/Factory, Fusion, Geometry, Hash, Interprocess, Intrusive, Lexical Cast, Log, Math, Move, Multi-index Containers, Multiprecision, Optional, Phoenix, Predef, Random, Thread, TypeErasure, TypeIndex, Units, Unordered, Variant. See http://www.boost.org/users/history/version_1_58_0.html - add 0001-Fix-exec_file-for-Python-3-3.4.patch , 0002-Fix-a-regression-with-non-constexpr-types.patch: Fixes regressions in 1.58 - drop bjam-alignment.patch, boost-gcc5.patch: Already fixed upstream differently - add boost-rpmoptflags-only.patch: Build only with optflags - add boost-aarch64-flags.patch: Avoid using -m64 - add boost-uuid-comparison.patch: Fix regression in UUID operator< - add boost-disable-pch-on-aarch64.patch: Disable pch on math library to avoid compiler segfault- Add quickbook subpackage- Use $RPM_OPT_FLAGS for building, force use of the GCC toolset. Be more verbose and fail building with the first error. - Add boost-gcc5.patch to use -std=c++11 when building the coroutines module which fixes build with GCC 5.- Revert the python3 building: it resulted in BOTH libboost_python libraries to be using python 3 instructions, resulting in failures of all Py2 related packages./sbin/ldconfig/sbin/ldconfigsheep23 16150319401.75.0-2.61.75.0-2.6libboost_mpi.so.1.75.0/usr/lib64/-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:SLE-15-SP3:GA/standard/b77e22e44f681854178f83ae29c5b20e-boost.175:extracpioxz5x86_64-suse-linuxELF 64-bit LSB shared object, x86-64, version 1 (GNU/Linux), dynamically linked, BuildID[sha1]=56797511307372ec722cfb2de459797e3a1fd6e0, strippedPRRR RR R RR RRR RRMS~2/Cutf-8e71ccc2f8903e29a8afc66c455c2c44907694737a7976c18b9b8e6498f8a79f5?7zXZ !t/ׇ] crv9wJ)Q Rz#t=|h.xa!mͨ ڿhNi*4ӛ KEp׫ޚe/KS*E־Rm 0#zptсaV[TUPT}j'1 15ԛ|L?/e]d-=g6*!F k䚡dɫ)o)fFcJ^Da?.>[9^c<.m"!R%!n_Aw1s؎֭9N/*JW9 [y2^a-Psf"Mb~4C<(,ClA85_ׂz ̀nOT0JjHJ-.y:YvG *Ʀ=,'4ߢayO#GT=}Z[h.? aj,ČE]c\+NbAMT xL(ClUM\LJ{u&YAFX8+j6l:SqzPlJ̈_rϫi;N Zs,;&bLjKdlK7Pku`;3V}~rTkc7mcz_ot(<]4[7mS>$qĺDI~$9U٧bLE?xd Cc^6`:C$px@OsőWĮ&]Bu߁>]Yl\~[9TܻO^bRbL3wWQ_si y40)[x`$Ƣ nn96@ "?XLe !ꈄLPC>8gkpX=^ی Sž7Y4X DIpO GAdeB&E ׼J2n^\*җ ]_kEWnh6z3dp5e&`R5b&YhBluM\u@v"Cjqh7w4} Z^Ai|` /v 񆕱~KBBkO$s1tc8*ƤgGǭK )Mg︀a"iѡQIIIG91~<bWH hQd1*n@$b^{7)OWz.$2 9/8ʉOE47+U˷ C,m)LAP&|0w^f:=Vg\Z"E`aS|B  59 D -j5MߩB}[`(R I{t+äؖ(%w@\0ev@vwi+:_NHVL#-7TL{[5UgR+79b>6ҳ@BV'e#=_DMBE?؄Oq5^dWj:sk/'${lQ/8AD &)O;5peEG!ցRX}H\D7L7k߄+ѩéA bX! ]&cuLKXbpE>VL>t+Ucռ˝ep($7uPR(45'PV/r_&L2S{E)MOzƴB,Yhz&dQJd5Ru \b*NDުZw:]Gc,]֫`x  lڢWGCT!zGll,S2Nʪx &y2Z12H,xq'/u9}9TuP$8AiaNiIW;;F# g#"Jh-wcF;SjӞ{(T\ax@yz|Bן=0TNTjY0{^ *(h>g۪ y()^#S>wU5 ~EzsyalR:m}Pށ=Bq|L{@_c:EB&gzqycAC{N׺l%n;Ɔ#`LÃfXi S0G XB,*YVv?maG BY0hDm@Gh$*gSA2Xu:T`?=?_~œ%Y-yه?"kREkz]lAuv}#B// g=>ۡ2[ϩ ܵDIN3K 77)T8~m-or^4=q"p!]gΑIb݅͜._Ao><]M W>^P.Q's:G[rI`um<'klоzz?c=NDU.y07ÍU2헊 sgēv'2.dJe(8Gޯ'0RV97P#S,8^z //E14b+)Qflo:3z+x$ٗqD5Zj6T7$)T Bg HaeL`[ۦWT1<0t!67˘\⦚I/MM5GU(ET ym ǘsxtXӓioSielԯ®f8(_bqaX[> n })P̾u;YяXDX/d_ z{^;"hN(-1鴌iK|oB"$fyv3b+x k:i ,b`$K;tA-SnYR/NIb瞎޺s=甚oTÈ*:%q'": &|7v]&_vwU$S jk2k }"SW`ks1psvA$E!P8ڛ@<It&PUQʵVmKڑ,~T> \p xM4%(f~472I)P|ۯ UP$ C`m2FeU0$]Qsv_-K6A)SrCldb8\:yuK 0a t)~$ϫV|Be>h(fw!phېxX͜IEt\8!6}o.hm-UȝPTz$oa,;L ,Ptn0$yfѭ͢jKLs ҵ6l#zt+8,\Lmv8'첐j` y~y'BaDcy}y?<V'%^P AqDD(xtM8pJ"GV`ml=N>4FhA 0Yt3F8uQs^1-a[{߂,~|h/j %|/ jͩ"b`q@ v!"Dzo^-d8C7W& Qov$I'ȡ6B'햓uWXuQt2|ma9,=q ``T`"V)u^JEEy@Zϕi\k,Fy}3&ܴ\W#% ,| g# DQg/,jt [{_yEzOE&O1q&3*fM^kxWgcKbۙ>։xeIuR.E["A1و}rAl t>H WUHz>M`)nǧZY1Bd bD/w<LL*vXքr93ܽh.8UTTW\o7џV!Kɰ H̘:4-Z?^^Mݮ꺬GUxmX:^rF]X5V{y]_p[,{Lb9SCvR"> q 1* -ܔ|}Y "x 024deF@% _"_R G7-rA#I%Nj˿vn:ǼB~ 9SY _Qr'`RѾog.)=V@Kzdx$2hdF_ɖ@ +W%n|˂QH?*q=To\yP=ǼL5.0"B7T;l<wDd<" =a(0 M=x?V5.:~{M4i1.nHs7\\?(uRʄKyJtm,ג^'&y`qAdX/($$fkݷ\:@axg!kwՆ/0eBݬa⮼)L6룐Q:sc=>MUďޮ݊#Etkai}Yunm. w cWWp < K:0NX,1?Wqc#'γP&)hCNNVcB>[obK-L>ޒ'Ҿ֚ԋFxe'N6el[To\hdxx =;O %Rީz 3E,,=p Wb@a#PQ[S; ShD`f\oso+QI.=2eS'~g/6\Ed]\ }9%[D`mlktVVV.E[4f.ECq̷n~"hK# 9T[_r~ .O>^Y?a6CRъD.i !b~$GmcZxsB8*n="zheRV~Lw_pXUfS`^T1sEj28-oԀnF^hB/GE%)$L {<`2r'3^žc$q Wi%=潷?tՒ:xc[BEZdzem%@g]0Y>;Rvpya1#Q#7cX [Fc}WYD-40%}CO+hiN3m dBY.^@3q+eihrLpXxq{h:ztH?8|Pghz/*&r0H' JqD5ܾ<<s|vH[i8ٹ?,e"\H&fl2AbZ;Ě0vf +E𒴌5AEf|kZsTR11CtQi-|xI|Ma,AB@nuB Tu0A&?>w3-bU@ye #{ 2"58Al p?K2*:m9a*PWr*Aȫ0?#zWxvB *sW/b'7%>jpȒ|a(Z qcr 5Ԝu4\k./L$e 4$Hh}!8 ٫ 8cjqn5@V3awdGi#[sܚ'"[  7PH&gH:㺗n3ȕ BG]URi<"^@TUO='[e-RR9f(Pb֞GbqL/;вDT@ M9GP4cUPP/mJ E66<ӵa횟_ǧ-@ {Gwk` _5gkQ#dW9W l*!1i\(N/s}Ka^3UeSw(/*oɫ"CBA+Vi.ĽaW|)'D~X}%?^n9/o~UW-zI>x36 KJ+=pK#s(LĈ v&C :BչJ){U!~ڱ^UlWbA+' 74DBn7S+p 4wz4x5ּ#s4qSTu`-[G$] տԺ 5LxV¢,}ʂyt9tzhOI%P2&*}I2. DaIiSvtM~CϞo MM. 9n~z27rm:Ѳsh!W.*A)c3=y8N' 9[Ǩ'Qkq C@4N-m? 4][,5Ե myc l(X90ڷ(TzEo+4 N2{]\gUgt,JVW%iti镍 U*Yzqن/"@W%.-GUZ`+:#xJ&bT6~FQ 6z9I~N;H4} ٤h"!>9rA׬B<1 rS[&݅4 ri5lI i@p;gi9{X1t %'rM;p}jiKkMû#$Od>7gdbV@Ӊ.g,7ˣ_ 3 tuN>F M)[E8oP.Wv۱Zɑl{Fޒi[p[&hw+.I\bdW"c2aw a?zKbt Nc58K~E>)R,o|(qg#M0nLn<"|(E&^tɀ@q"QH nF5vqOAE4w_v^rZ8FC]PġzSMXT|r}. h>H' '0Dы v;| =L1(A |{EPs/8}Ke@YX,40?¯̪T &/3O?=>Kǖ(x%JNs-c8(1IPv"c_+Z0}K@x 70gSAV -xwAQ ʏyymc{qelֵO(] ruJf\}|aD /$ :QZVވ{N;47Ƿ[1k[UF^bѐ; қ QT?R')[W^ϣD@JA^EQ%[黥2"Z-} cS>oJz R=MzF5$r]j=YmVgJ`F-]Jja& ih{,h.ȶVerŏW쒘T9=S(?'G+98-25K[ִ'h޳Xf}T8kL%Lx`):?9| `6%HN$Au9"^_CT?c [F=;m3X` 8mp>x*5ct{fn攏eJ7 1殰p)KxS@2P.CS|p'B( Lr4CvPGy1\dcze=tRaO1 JڛK/Qacxa*/vA^hT%uݘA&ǮYL2(E[{o #gBޞ}[&>"M@59G[׾ⳌHK~ !%pm@'EgE[Hw/1,m8V_WgnzzVlyoQ+>>c7Y>O}OMi6QLheO1~v o%7͊uۨ0RUZ; [vM'uz |W *s&+󇼝kKʽBiRIgܵ&TGlgkϠ 44(pBBR ǩ{mHAWi 7wJLC8gbE_e0?h /!M˙3.g7.[VO?Ԩy.fAa {"ZLJS=^Υ(0苲`g$EPQv [ ٚ+ B pE_.4:uVU# iKז|>U~ aU18A!QrAhB%yɊu !$C@aM?ϨBڲ7%8]YvZ^Y˷GF8QS ]$R.iV>HTDldOu7Afң?¶E3F(*(hЖ}萃YjEeRfK#mXƱjOx"xmjH 3ZF'Us-JJTc4Kqx8./m釬/v>0|C<ߚrNwXN5RWФQX6 i%Yң1=u>5I9oHp0;FܕD K7W;VW  u|&*\ϵxH_CY!izK?= *yhLL  }$e\M874mݮ] {l6ߤdFg?-"eaLG[Rٴ?b7p˫J'%*nګ]|ly{9d_rJ(~9: rUم98'j>(=\vp.2nW1S$ {3~5v%Z)-F=! ~_GًCotYYښME}QDB5 'q|gJM]Dt%ك \&/uES WܶMz$X}k㢡Pg[+˛K_1X£ _V%7x.nI, /7k=+\ f]O5ɶFeN>4B5Lx#2)K7ǟ0HD )|R$}r-H%e%Ve׃8<hcHhٍ -ARR[ eia^ռG+!v¢O&wvDsT xЫo@-M|eGm.Zk\E>d|ü3S N4N`G"dI+4ޖ|n "]"%CO\Dom4&N6NϤ?ͳ*!5޲v--tbܕU'ֱ_(?7%ܠ7 ¸'k+aYf^9 BXZ(md `#SAѶ+Mj XЙt+ ¶Z(,V 8K,XiI~;?AhD4LejWco=X/"a"ׂOvcȚ;meR̾5K7~mJ@AdZB#H5ǔް${y*L-{+`#)U`;ۆoZQ&Y!;],?`0!0<̔ tU,V='oO\*o}<0O󹎵=Pcʽ,y/M\ Np^S%M UB2" IY/;J dte~5fOO9a ~5H=V4xᰫ:O#4+9Ԯ&|LDGWEyxcǛܽyx.o&u'JgUJLuMX↶Zӎ&l9[ A&OJ)i]JT4gn א8NE(A]ef}%QC^XCgm\xR3yX~Ti0zs 4.;Q<_ ,߫m='SKTŰuNxUsωMu"7z=H &^D|eL(PY)I[Z3vA}www]b-0^T'tIf`ZQdVx׫ 9/[BT9t˥u>a1+7myڹt?^CWӸ4#K!j^j[.Ke[3E;$ŷ_; ƺaH|GI|?(4 6̩+1ck~H2 n! J"l OvC )h]b9i/l+wdvOd uLh60:e(/i|z+t2z6`^Yt):8'tɰTOA|,_[E[ eB ~D}Hm\:advyCufV.ੑѐӷ1;9!]{x۱YE)&V%n'ڭWkOU7RC: #[ ϔx$Z J/`IXeSyR1sQ+9e][KL I#~w<ָ \2(wC ؇̉Qͨ'|[d3c ?SiJO+x:i=*²;\XNUɴP*b=6u.s5urQ ޾$) }#'(LwiJ˂IĦy{DgS֑LodESN7N+@-{ 0Ev֟Ƚ`@˹mwzAS$.Oxح*r"jBf6,0@TsLJ!pe66#6Z13Q BV/;ʈLJ[v`_~QN}@cȳlkyU 5Cf?cDWp bj> N "өBYQƈ}S T=W! WLgrPdA3@$a .Bzw*I`P S6t`=:}"\uݹ1^lY%8\D?\Lro<#翄Msr9&" 4\mOEn*eë7b/ږZ7JD p2N;AaJ3,hy]UhHb ['I>Kh0v# o~iUJ Q`H +-, xxIS߲@Xn= +ޜy ooXEۿp  #uFp,Qa0DT~Wv]8pʒwHc&> qX}*U Nt:pc=V&^uo(c&qQkk^z $WRq?偣myE90,!1a3OGcF|3 $-~1uz)0*&qrYf=pShsQ(-0$1ʃuΏVT]Ό}ck:,Z7;(73寷 >\cάed`W{(S5}*K&EL>>׻Nem~Q`P 9y:i"U4=2 \(vG4XWbZyEdwDz#^K[bKSZ1o"GwdZn'\$ xx(DWe*IzfWUdfQ YLikx4)±cH¶Gc `z]En{3 3N7# ;/l8WQM6STta2;]UhKi(~ӱو 4VD%>+e~g v;Њ⠉VLf5 *0poNȘg]v$}g"E;dfJLN7:I¡ N nJ`5r`ۜ/;L?&LbbS1,Q%ӯVyPԬ%رS=fG-@hhHdM#-db#Xdl8{}pemu!h1j7 %>ǝG`%"$5pH2"Eoxu3~K/54om7eT]&K:uulNxݥq}$+6Mt䤌kqi糃Dqs—x]p%3BS/YGޤXIYsڗNicl"x|-͡B)8f73<W5fS}0tF6w̴Y>$tBTY96)CƖ霨8PrAɋMCePOrGܜ>N%.ZZ3KtR}4G"I*Q19nVqsu/u5 LdwDD|ŵ'A/0T7D cFhXZ:Eq׏ чb [a k3*aK%TOV"pOmŭ85Ƀ ňҩl1fمM,^9v^tKN(F8?Th UYxNjv8>t szGؚ l r2Ó 31̔.QW+(܇($mv0'JIC]рi77ݾ_r!/7MO{Tz3^ILBmÚwt[-yAsw 4P'=%gq56)a|F<tg@(JQrkf3@A>:p͕vTNڟkXtE)mA-F%|rd–]V*Ҹ 0(v E3 rV:&3'*̪r7fӫ,wkƝw>: $XϨ2 H)E_,j̯;6(9k q:PZB4},{Ŏrz'Ȧ\֥\V*Ao0^Iw4^5O(/2W\)<%mA'ni\g:#bRָΓXfn|Ҵ4O(^c@ W)qn(m #6 |\|랐~2:};+TQfD3 Q)]UKHyT;lO]E`bO 8e[tD.O/-F-7cґ-$0 J]0<Ou4dMgwZbieF&r\m`ؠg=wb;1^m6V̖hd2NX";*GZ+\MW~|F p{B1X ,Z&l=ibFG[&`ۊX;87HgtV 2 LWiQZ GHjw1ZN"p` +7-枃tG惭%U-`A\RUF'MC]'@ᄬcͩS*A@RA Щj& c@95heu;ıKITmhvm.}B,!:q!'n7ӽ~Qlxm;M-ER^Y''R9T֐/3οfwxQ9kR('c&[<F>| XRw.JH@pߧR·x mOS;ni.ҴDZI/hOe5  XҬ?xܖVotBGW8QT<` 'bxLDcNТ!U*_`P" gRř_٭Ot°H=_ ۢTe>ȄH a~ؓAf2J]J@apWdO.U̩pqN!CuȋLD2_5W2wz׽r*[NJҚe,f/ʙA\\e([4]m)\K` S/3CozN'L3I+~:{ ~,ӢWc$#3o}, SõUY- Hk 2R}a Rd sa`:+"3WtcerBj@ȶly&̿`.l1bN ZqW!"@0SMr^ʃX$T܋>OɎ?+GےR0cB-`rBV>[>.1!U|'r-W@ݵDx)E>D}H݅2hE {#=<юON9(9 w6z]*T'İ{alu嘅|иoH!كy"L2 /ӏNpwsw'XcnƦnY' I- ܭ'o .TDnRɹ, &-(wmqQr`O_冮|v(|I RH VĪe!fָuZ'5GlV (kI"ňu^URw3 awTy%Zb@]$D,u>Y0FloIoQ*6Ǚ` u& ) МWaΤ*SǕ*` \ey-t#H*h6A:8=mF g-yn[y 9>UFzٵ=*1q@^}9u"U YZLƨ8Հ&V~}D^O%DJ $2Qan(72Wu3|>ypWJr ޛa Cc wr"ͻXжTo~ħ}|CqJ|y} 'ILyop~eR43a`dZ:ՄBUզ;؃Ie訓 8>RC/[V_ѻqT-&@F&|u,#2$Hhjd*^cښ՘Cί[h%E  FKsQS%}\c>40`wS8pk4|GvU%.  |.~Z"jCy{;? | I8` Ay!/2BYȉpf5-7͔';/ /4a;ZSr 5 . -zVCMըzYoʉcUTޚW0t`Z l,jfQw ᆤ;Dg]QS]ЦKygngWYl<@$E J+Q Z>|)vET%%{WaLl1cKm6zyʱ4/x@-1km3$1 L5QXm nPfD&:_x*Cro2\k2O}YTcBiX<.SڬZ /_:y0 7m{X Ƴ շg"UÌ{X^.=?7)YC}13(^ [n趄< %#w37_7 ; `+GUcOC)s_&tD~&[n6%lfK0`f!0xMrFNq^ J?K5L~r}u!,rηg/4XLQgx 3Gtin])Xq<   ap nWIo2@$eEtexνoTocL2k$5(C -9 Fi<@CJ /M>5l焬%[~2W,:"cx;7683GosPNF$&hQk*] R9 hޛz*i穞`ǖJwXsފ%e:=;e{, @֘:֯Pkb_lq~ :p3ѱ?3`ՇYo~Xwqb)g\p~'>UqJ4ddCƶO94=Py8 B~)kvھ+;-{@+ˇT4`,q=v_z\A .JEfEne 1z-l3 @4](ΫʬxdBs=F :F[JRmA)b0Ԫz]82[G#]Zqhɕ0LiU(%Sz1ҠeZp@+N'&@@En O*JU[_}֣ұU 7GU~Kxj&%iN75: |~aʄ+Sn[xi;`{=IZJ_L*EuEr.} ʙ~x3/HEjPO᫳)}ꍱ6K:MC`(S$Ovܧ&3<2L g~dZ^K2eqd^׵.bZTMSI0.[[P똞 5WDLca6, A{}gYhg3۔E:@Z n2 >lОYv>ifލMwJse#:$y{8Kq@A"RKAb-FTX;wAh! wBLˁQ]C7i4Mns21/S!Zu=l0&Zt!ihW"wUpQ+Hj&ABܑ|IJtp(<׮@_1#۟؏uU'3AB/ޠ8osbe~,pɫSor:#ckd2ERpǔq9OT@F9?Ԩ42eYѰ|lɨ"DR;:rz˪$s@#SkMpؽt2]mSrhז%vYYbQwN*Et")E,f9põ?9 8&Mj{'.EYI1mOͱo.=YVx$PNKJ.WP4Nd.tԬVgVK >A3o7'Dv*V]")7=|w-}e?aLAЫ@6C˝M(Jr-TTȅ-LJ5:hŝ̏\Q3[pxnG%!eBAYE2-!4Q B'燁 t](ubYWzLO>iTK[dFY;p(A}6lQ SFV(|L%u[Il ?KR4m~Dkk6gP:~)HPK@}:,oS9$7K/OƄOܵm|. @|1}S1=%Ļ)"NvDVmpqR9B m>vH \BS;`3 I(BBV}5J9)fnw#[ezcY'B5&|gt/ J"_hcE'g`p7ݴɯx&`Slو=--b ėO83Ixѡ~tR=2}k"p-i!)3Si  u\`u9%lܼ1cH ]/4\yms-r]`k~dC-醹ʡPda_8e%6lPꛏ"@+z΢Ӏ7ĜM6˹y~aݓ$*E=2’R*_\c;='$[@mTVmssy r !Vs~zºyx?!]N>OgIޑLKQ.K>1fR8`n)l M^/<}SˁQ?5bf7_E 3yH_4C`0@›˼ga rKo2rͫXKbCjkϏQ$SfTNg?!^LgdIWBFÉu VEgmQ`Ug %,bsm.S$"24#xih VK'l]q`:_-uVZBj: Is MśM˲ 3~OEncW74V &ͣdc<%ӭS{ޑ`&R:Ixi5\E*Hn'lĈ.*\\~>'NAַQB/&O@OiCz+ k~It4ɏUA'.,QT1 #k%f -46-DoV&-4]p{V</ɠ?0y|«QPFcmݘCk7ҔwK(s%_A?wq#IRceSt>.5j~|ytf9 ɥ:?:5wATgl\w=x[b-ٍ&'8/ɏT,S?)qg(I㔮6!o?;z~Ð焇 <ё{Uf\>&ƸM\٧-wDM0XGn BBɓQ2W?n۴C6ƕ:!sr:XeCZ*:PJBڙ ;43x<M{M_97׀7 ڡi*nm{5h:(ҡrYN3s|-42\‧5K8̅.(_绩.qo;]etjX&gMrŎ焷e˃bJ!n St䨷#(0`O9vsOpRdr_ʳn[6iIW.7|bzi\|ӽWr?e;c`HPdX3dGPz9GIh]և_8~?le[61?ϩϡ5ߕZ$}bV׷N7$H!޺ctƼ.g40ThQD#C^Ӳ{}񋇍hlRہ)u<.JPڄ~H (zMo@U9MlQV> [KBcOxLSWm$aHƓ$@!-ѫwe9'M-ʊIμvw$M5s=aK6SfhQB2wt刊}WBCNQ7{4y| o_qrU>+.@%{5Wl*[7">`ee}-.`(B> }? 9Z٬E2C͘L56J cֱ#=L1#S\P=r)]8-%( bYp2n&3/׸#*D *l߲^S DƂmC~_x7x 19`\ߚPCm,C<6(ZfXp24s -x7dcC 拁]Xׇj ;6 g=.\D?I WY&whĬƶvL>N;F6^tFBK4, 9.hEgA!zy) p݌Q7VWߟ6:8>@CD虺WiєDC$L.?/tԗj{3yAGfWMQ-)ec'g.!8UޖZ.8١Er AL/u"lGm:=.Bzj:qnTfuH׼zh'RkvrnҬi֢3@ +}wY+AI oeiC.J`0ixZd`_q_)I([WUE=ĀzO1RY% ">ft uBH;_K0#ol5bX1-"bd 0Hmnk2AwJawUŌQ׈rW=%+&% cfr5 L$U1vɸ؝Ҟz?tr<ӭ|jOT6et{R.*]}Xjcv, : kgQ$2Ub[ J oZPiW,!1Q!ԝ[fc44THW0}hxKaJJkp~ ߒk6 +[` ' tPgPw1-MAq!*OW#/3 eBSt_7kGv&ˉ 6J<;=?8ą3䱬5iM,?č+..\Xu˭_U̱qQݸsXR=|H+ثSkdMˌ/Ή3$PdP??&w,~=i9A$2rT%B_~<.:}[?s+diuDC±OE>s U)G{}4,IۂA*#(tmRᶃyߒ+/撜p6HR\9.>K0g+͜rަ Ӛ%ځ& s@Q]1Y63 :*F{-³{QNeF|׸-tb&JDZB I.o2. R:J/Q%:ۄǶ\NW>= ਸ1;_vΠ= ^&'N5B?\G6QW$(o>,@QՑ3"m7”I"|}85j s͹+;o-AQb_^%j'B9*-B'6uE2c<Y*|ӲHyQ_͒2Nۺѐ572*^{Tqz3BF_M:n#Rh*yY$TsnB fC?RD.ckӢ+ Ӥ m|TWUxJ.ƻrĹ-Z!fUVc=M6'7|)} Ay/u&l׋74=;͎WU> o00j/= #jnQ%<RKXl?T ܝH"is0S{ᅔvGED~' !-+u%2Ukoej %VץsFMS6cTo1΃\|'w䈌O`u-D\oA+`7b>z7rqa$!'q"wG78 _ŹF7ӫ&'⾌3:/3f 2qqn%՗鉣_L@*dsdQF5U_",zM=f< }dZuze~V[ڦVxyAь|p[y@O3R'Ǧ8,ZR2IVz WIN=}5qtn[K9;('ɵ:DqSI`ɼV/8Gl׹FK+<㷪E! Z_ij ̔u<Jj15% mgSՄ>+/]XajѦcEu#Ԍ/sSCcgܒ!`c44-< cjZmhPaZr: sR핯wfϒd ¿YKҼRm/h,O58|@KvQDrcn>i-.tu'r;NcgZEVE4:6:޵08.ħ :ؐܨ$N$V*AGA|tZ# J?6:ۉ<EDn)J;|'URk I:+nM{#PMWˣ%>/Wǥ _tl|/t:*$+K3CSP^2msj|Xjnigj/qG3.{V뛠[F95_q_YE[@Ǭ/&JYI0VOl/bMɹ-G:6b˪wH\ y3T OoZY6Q#s\/.X\;|:)L֓/7 OTJYð-m۶`+DU䬞=H1""b(M]]K![xȹֶvPJXpS?P/C|a0vd?Oy3Pmņ*t3t"/GU{Hܪ V&*ff ѫ̐b`ƪ0*~|X|i>#:'~'>< 0Gm){pאV>*X79:电>ŝm؇(-qmhݶXTX+1`DےW-0`;DD9Do1ƩDHUs#Lr+aرf4:1] 3Ol#(s7ƞ B!^X*_,GND6kcR:) C>emC&ʟ-n vV;1|OטRϗDS#ktۤ[0m- .cw#k3=4^t1|ٴ^sB'PHeM&n9PQ2ڎ6`߲luw1?b'aN8,,!;EhljbݸuO.]k2Mh!Ĭ/ъd-|FHgwŞ ԕhb4;ɟP ,/YBQtN4SP$&&VwIhpDdG0?|(.( K_Hd qD$# gV~iovd o4vZuî@lzI.\FGN6!KTn <,i?xS%)['QYP:5kLWR^ ^yG/B7딂,ڀ twF$gY?p2vps%Ps/0Ys{k(b#YBV,&R-:0&wFNM|Ta*r -fn^'LsBt 2~nd &`r|!z}u! 4G+t+,3.3@M$IO[ܫ$ `% 9W@ އCxѰNYywZ*:jdVbуwq^W0%/zDZGY"!I| w-}8"g퀋fv״N&KNf%ru%űOU4G޿G"y tө+R Sohq|]4ߺj_|h9K%~ ѓa԰t}Yk^ʹkqh+ 1:C'`ɞ f25+4tP kFa[*6D@ɔugᖉ p|4]`]Sϥ}VPT;=µLf[k9ip[T?oA[7Dq@}һqo#PGg1|{0s!iw` Gs JCL$gSߙשې(d]\XK@AQTIDг_tDŋ<FBqn\y _?;7_taplo`sfz VNv).i|?HZ{xC[4#ȧ X;s@L+g;BB`ɇJIn 8(S iwbM` ihNUuI>?`v "#)O0Y-ն%5װƤVml>J*wCxFLusܖ C-0j#nOMzm`LH2; [oE`Zng/`%~rGT`5jA׽.#5{F,>Hn\zHv#ĥ_'L~]Ka>ba$ /[ L Iꢥ'e[.Wo\ϘDzkZ#%/!buA5V!jXi:nǻOG܀۪OigX\˳lWߖ'Qi 7)Šp");A"i=@.;ł'Skj.:f)q> ñVcYSx@f8un4tK 82uT~FXʼn^>hDp$<6=p*ʹ5H֢*>JX#g4 Z ИwYݽeoz*Poʝ4L_oQlL~on±-o΄FP Q,2|U{yѻjs7~A1iED.X"@}MT"oi $:g[^_ROA$jL\b<%$d\֜wHҒ1DP]+xU8m_nRгYp t 3/ǭ}k&Bܔ$^'\yumNzq2 ++Ht?MP Vwޮ B=oV8w>/ى8UW_H+6I}uo>4VV.ʕK~atL;ߪ*fb*ѱ,,j>:VQ:_q:4oWuNZ̏QACDfFIQK,Q7l˝=(`jq\~ X<)_IG}P, C5sHJH'--@Ƴ3g@[^:QvbO5wO:\j#R5U 1O,DR=Xrd/DW6#4]B!a^^e]c7 f3w50Em=XCI/Kɰ;v|&x-8sCD0­D9}b4d0$ ?#F&&FzN|.B>>2a8 UO}.!1IWAI/'ulk3p;MCG.%ó"< 3:䢐t9&Bc27blk>ϐ~md6W.Z%IJKrZl+s] A3gc`"f=GR™|9pք!3.hI.r풂J:+6T%sanl6}@X';0 ݒ +"i4'g1I}uYQP,U1C95Z@v^g@wA-`wLstfoEoUq1ՄKQlKXLӬPI7䙢iTU<脁QҞr@kwv|#Jo re! :q@Oe;T?*AiƏV,~i?X)9 W=dxᨸbX 9bYjpksU[ 20c4E;ageM2xdf_k1٬k+mr;%̷TqP+Hm Sk"6/ϴڔڭdC|Ŀ,|Uu.(G"ebgú ~Ê1s+S*'8\'Xi^P)HWksB-PhyR9s’N$|yg1%/1|APƪqRן nN(]\gc]y"$U+<ұj[7oXqĹKzSNӼ| pPac<]5xQF)(qCo%KIjH3 p>z $[_qv vRD_ЁIGՙ[u{;~%cx?e?u@fӹǑBpyΗ@xٯA|UcD*`\Ul!/$Ўx0m'Z˷m[ n.sZ1Ai5턓+TTN!_zѦ`Z6z~S\_Q:&S_ܦhlWӃ^[cqJ4VKp-h3C"\ԬqRH#ja0۪jA2*v-{JIG=.=͖"}xs&4|HO+Je"$3LWm{ F3ũɭ/;?-/2l.X0PYm?u ;NQ}6Jޖa=_.U(' @3  e',D4'b{C:׫FDm g>Vb)6V@-TZ-Bg*#B_*CKzI=?.4{3cr'2_nhANcN\r5cXnz7ס_dMĢyy=ܞHi3@]!ܻ/b9X'ObvE9rԼ}ZʅX+IV˔fax[n>K2pj_A$tV:gٻ{~l/ %,DWʝi$ଋUShBd%`GL1UŇ6av2A%@ӯp}vgӮtPrNnf:" "BNG7KvMrNGL!7`> >kl쓨0в&fOT ̄)hX?* qz@ōE)͜xF?.8A%B7`c8Sp% WI*GN?jx̝TsKB51^;bkVU߮ٽ$59k=Kb>`,eM Cr:|A9>Cr)#bpWFݾte=]K~\/jzޭn:ګ-~C]4ʆğ 2yb<쎯UymJ(ui=</ MIԼQ`IYw LPk}wqeYj:'&d#<1LZN!OBfQ#sGP0+# s-&Az"QM(f/U܃ 3>eW&WL@+5CC4:XPSH/^d#X_>xۨ7(f "*ޥi>lag"6=(r6qIyJxkg $Wi1o_!p/Hv ?69םld/JF>en$% dzl K|,/Sga72] /WCg}FJ n0$9Gk-|OE=h`5a/^ oYF겎]]D򯢨~v{xAȞ_u]XL5mꗵ@+"}cxqtF`+b?sn(|<՜i0sd@6K/=3?>7j@ۿ )/ v.zBXy LQ1k CJF$tg;jp>֭`Mǰ4x aVsL'Q_JQ!>ru?Gb}nҠ䊗5ERiKa%.$[SCCN5ojSjtv9n.*ʀ5r5- @Hi bqo ~ 4 M5yD{ 㲘xl;`㢥D+Г!\ *VvI6h^.{G}~fffbfgRx`V=ܐ .ڔ'aG5@diY<?t61mI,-M_~p Q)8sl5LY)Y,Rj')(do0WD~rWv >n(H~")oqDc-ĶPF#w<eJ RsY5'ZUF}s&ZY%0l̉l<`SGE;$ڃJ/X ;ֲ$s!aE?q PbXr_:g׍TWr^?]ґ~ᚬqv 5*@e-aؒwő4bd0;=8K'R7뜒NEQgmX5-j S*n'8Q߸9+Ȓ ex'GSL/96D]]ˍm tAD-rJ)D'ޭ \Prg%Uo'dDV/ 9Ȋr4wAT"LвY7MlI'w-ڻ'6,%r2#*߰…S*(wW-Yur;J+ # ! a0ږfVԆiuA6 [&h5o1ttLƿmܰH:jf!=X}|nY\F;,qˮlMqar9-5;2VPIiuᦗJخIʩf>W N4m0 m>Z``‡ !aDWb.ݸ/Xpuu.2mqMhּtfiZg}ZTOS]F?f IYxM$@1.gQ?\EŢگ&%dgӁZr\IVXݕ!@>$-fzؔ%_ԺxqPCdq Jίi(Oѥkd#k )g$QL`?Dt zd8abib'R"uxU~jHhҒ2"1M(zl>Dqt/ ML(yEb}Hs/0 ;%z;+R_Hs;=ZF.գz^̜L_s!(HhIL(k8 Y}..`LЇ6RQ&ݜjx1Ҙ] yjD4ÇR5Y$b ]N(xO" z7T*z:| yBJ c_"E2|V8c߁^cˆDc'/= 5{s2 Lf΃{g&,bP?IM}ۑy&Tc4mi_O@oA 1+m@qkf2az).gNra21z$%o6 OrDPݿ*65or#1S2ֹVV$XcV_Χe_u VSb,^J([#KG~h춚[Klp"slIۋyxHNsX15g^3w-~h؄0ۿa4 ZOZvj},v8{Otfi8c~[ʒqJwЩm~f?p 3:<^! D?z}ğI6C(L>hO`VҁȂ[YRYWehȱh^ʶ92iB N/hRqQ@ hpEѹSex83 Te[y2|%$ ؙCML/V׉Դ@Fx^8ʀ ;prC1&5orZ}V%|P [5el r r77PmTMXoNYi۵?W xC%:zgYBe)pރ$;W p&6.D""RnRKG6yviI9\vXy*!;~qϭ* ƲAt*Ղ ~v7ṪX] p̓mp{0*SǑ"yF5R%ƭ ^Ӷ/G5Z>f6~hT vGث~*m j$}&ȥq_f;;A-ÇqDLӧtOGA Ws 2NRAgrG)q5r)\8Ξr1ne]skzC8ȕto 7$$v g Di/vGT$*yݠON- z0j[}bHqS#?M*~ s y_Ӈ( nE\0 PLx;+ 6#Υ%b&K;ncUI0ܘX1aֽhxm? wrjS1PC&p pEY47O:sY T渰&=򡲨NkucR4ђHdwe$==à c;u+m>C?deM05~P,NMu~~_0 q4X+=nT| >7?lF0Ppme.|MS.0m$iDj?۶= 7O)P c$ ÏvR6A0vVػ+>'q~|hbKH6H^p)f̡KZ4ɱ;i}ŎxK#üe/fюS9 %;sJD|f:2T:ew$؀A=r/h2paz:W:ÆR](aeўdf$k !(ͷlDkK Njʲe dѢOAzه}W!޸n!v7x.zlQ*9|5nQ&(:+iެ"NVr+(r%ڌ? >sm^3E$KA0KZR͙͢~LClk+$? sۛ:"mkj5x_^I=@ވ)@5?b50 e^{qgAc[s) AOtX]f!DŽS ׭u(|+ FArJұnuuVÕ5[Uđxy0jb9pXk"}TW3S_Xw?2RG %Wu _Lè[9;2;;wu DPqtgzij+|'Fޣ:M^jl_jI[=*nU9İ/v1]*\D.Ny)*{KDbdgt$?2Ӌ>P=7Xmv7Iu |P_em%Q H1CLP d h3WpQ2uƆߜs4o8#:zڙ.[ fu/"K:VoXe(p1_?peA/Il9w ʏcC]'lTЩqz]&[Z*me!oQO#FBg%ޔE]5YƧM3YJ {_ jJ3byP,n"9~ t|]H> SQ}krtW#@ vX#U@hb8?n6&(Ɓ2`^wuhn@;yYv,XwFOTjo𯙺hlWBo6gea!o`~3'L}٬Hj4z-t89u]{"wCa'lޚ8m~_gfcIT[DX P];jW계1l:yu]j'; B+ +l0ŚGHWlƜ&+>"Rʙ߷6vk- &кsЕ**HqS SEorQ׶w"R-0(žDyF^ЌY=|fBwˌs$ەunmb]mͨ$j|<`` //FqQ8ySPO7\j( GN!c`İ}$q;V%&hsu&!vq“SP3drˇIq>ŲP,d;M"nQJ/@HbsVϕCr2u8/'FEفw2 (+[b⥌F$;-[`cD;ĵVqO E<OaXU[:Dzͬ7&̳lP#2DRt\gtLuaI_E-Kѡ1ٿDJ}âr4_+Òjz_zv?vފ ‹,[ M}5#7!Eʲү{$f3-brd98VX9&vMD6Ny_ܝ {Obt]RajX5(Xo(%xUNeT,* Ft.yZ]pPioW~a8REy=U[cT"'Cntokc{U41)u."GjrA}*,*+.V֋ e ˀܠrpY{>EK;Fs4HL 5Ӂ%/َFůzd=9xwgjgtGua/8F;+h@woBx+#aW2Z3|x 4 \yF>\PJUpĔYH1Sajt2VlNV4<1xS6_2j i߈_~e:Q='ve<.uY-Љ7&CJ9{?^T7u9) :L@VL..JBV>|_%UX(BQjElʚAn>r7m4DR꾎2#ɳ"3ZmfӛضWHLuH ނu!J](a4b0 gU^ &qK(Y{q;!lms}ǯ.w[ euvR}HiOiy4{Q!"©D={YnNvxN "#ƈPC x H.i刊gXR.y|!Fݴ bL?qXiBQsDL1'Ig8r; kH(ipBbF~=*xmҰt}*ę0.gZ:؁ 2H芌Nt5Օ6Xg6 OXrG>\jY"`υƆR5?3"ET$ŷet jSMyOS-=_qPտOaP0."v}a*nz y9!e!03vX]  KLJBYxG+W&ٝ>l59h)8m̿@!?sb9x숎Cx(Y(Bun.Xq9谶H^3ys]4WtD@njPQ@-^JL]`B \I60R.=PLȴS|(_Rx;'ˍX ֛w)k ۣtO2V -a(:/'{NBNnLHHۏq Q <9buz.6Q|X 3sfk8;8wu wSO,2$%dzW-dO&{ug'>9iaJPap;{RĂG;Bj ^gM<1$0^{˸{JcEHbPT0#hٜ.jxR:<X̶) $R;q(> '9qq/3r5R.BெGy]d3"~E;Z=rGsJKrȮm\SFx?Z᥁`hQ+4GS;g |`F4=e| !W\m-jFywpv@Ɓ2:r6 lX*ɶ8Μt2zd`D$NH8i&r6m*4=+zQ1SR]^Ԁ堏-N3GZ[6mshYD㕀@/'J`3k-,=:+f-n4ꎨi2ˌ [noZ.XV9{=z7{$d$u;-o'm>(A2 X(^^Pj4<^3@BXΕ`dpl@.FWN} Mb& sjo~ I,?Gnc瀏Ĩ>L,py~ψ@ɿNi ՑM N29ɵhV@zhVe/nJZ[*Y ŪmHhd>5VDq1/Vqy<%WD51]e=Ddfݻ'SβDZx>W$g-'ܶTk $S)v}uD׶x׺{$**7$LPΩa?՘K6qy22>mlƟ0k&J⟘NV1pL3-vS)?G:x mZ<"[P؎8ʒ)fh`}@Pk0De)RUF? (|nIfd\rTxIqz5@ ܤqSUGLDvSVFO$;^h/Ws]`gܘƏm,= ~0‘BuT%L\ x*\4֭"J(vuAa|_SK_nםÞF-ӱpҴ1'v`Nj]Z7A`$\Mb)ºY}ɍ` Fz\_rL&jY f&;BUAtFW>6Lan,I&m6Aguiho^}.eL{O|`?蔌͍uDGW>w͵ʏj/r)!q9K:{%j-<Μx5x%wQ xzQ6CD H;3U޽\8/4JxukIg5Ʊ4W! kLB=>MfSeՇhz0fW~OQ[&"OY/NMϡKxޭF- βZJץ8tE҃<ѥՃC"F}5C=7Ą"31V.Rq) UÉp/$pq1?=G"o@e;cH3Bk~UCz \1aZZgA/\dŎ*KPRGQ ݗ$st9 ׍n ]R):i1m$K":EnQ|;oet~]noqZ 6C:Di0: c~co/6H mtsmvZ3ă (;RաJ7lA^syUSP=ԤS?fv9t"{ta=9fLsξ=Zw*] rHаA۳m{\dþ9zTE|fN6د|-F1|٘uni:0N&$׊vKH]9o oV5~5-xY?Z+rR"43? Oe@p`(o^]gW+cÁnh[Ӈ \zMF;0b04qxjDVVh-0*o r˗ pC$V"H9o Y)Ȏ* ^c"~6滗\Q+n'a?P*3RS 4zA73 uO cm3>Uo6ӻh1ArloδyG<᫏xOjv a-=/I']лwZEx7>t=Ӻ.5bD9'd^e[೴FKKhMJ*L}z}M-׈"U<98&H>ލ [[,yB3%*`O,_lfԯ7(dZtnU;=DOT\'WVטI'J2eT2nÖ3}hUnO"m=&YIMnɍ(9d T ɟ:7|/%=m9/*@^ /k {ͫǑjShF}"Ҕ;b Rt1B;Ԃ+a\n3~Tbh_nCDVFڲ1]SN1#dWV>*F>ʍkN:[9׵U5-`HD( ~mL<+Z?)}~a?/זKc/uIǥPAv`D0b&20Иg3++ eV[SdR資;`z ^|vrؾpK]W_ |"Gr]i֝yOɾ)Dtpwh_wAJ:c9ӨXz)Hޫ,{*f pO%Jъ2:ˆt?xXhA"5!_ėOUeƴ3WKCW `Nbl3S]T̏7+˥hAVj]=,8# e[^ZG)|Zd|QO' G ܋x1 x D~B;C$"Ybd>)=]M4~3]s.V  fXԲid"58)ac.b9WiYjoƈ[/C H#-5BWma68X_*AÀ3ᣲcB\rp0!V'd+BvV0ڛc(J4),.t51gk]V$؇[)rD9TwWwnM7*n a@:#5˨`) !|ruά8k:;?$c$o˞}OtWܷc+jW[I:Ӆymhք d`fڥZ = GG5My9o X35]Ŋ8Yz I6ҡr&5G/008^xlHi%[Vzx> 2',"VK谿^-n__fy  7TZ/x33^OT~׏GgyImE6k# "TN4 cBLw#'{"!mz7nM0b1u}Tնi{Tő(,2ͬD$նrZ{(IGt' ve'}C G]/;AکK҂3. η9/\(#:bф=>uxxij<}@jٗ%=B&vIIlߔVھasWWCя,Fŋ.Mls^A0Ă1GG~԰0azY"L=1"jxvFMxtYa~_\2pu{]C>xB4]2Aդ8]KwԍJQ՟eO.!VfP`9*͟TKח@ La+mfŕ2;p !a#3Ρ -9Y(eOU#]g{|\Pem ԀXkZ\BX ?9Dį n3>!C s-)Z069mx7uE?l,#8#Ep ,2}oy+Oȟ晞Dh ݍJGE,YYxӰbAhD~8MtĤ^AצXmma4mo 9 I{LȊ1oGK'@ڔXNuk#D=+.=N7:JW=CvAqOh~z_A-uW#I0aM(*N8ul؀GV%3A 5D>5Hf"HqK-nS8ceT%図Wwfi w&q%֢O$%p8nc%p9˂vh~UH#`#qXuᯖq.0^ X` 9Soiln7rs;!H&S7)FiTTzQZ4Ջ.o ۣGК(f:ܤ IqlUP<$,\ڴy8/=B?x xɠ-=ǼICJxُ[6-$am 6^?-LVWpOWuv66L&s+ϋh^kiyq6VwrN8 B$&R~r=Zo=^gb;H X{l-;?1# K٧7d:d?#*^;#7Lo q)ĥUe@xL0 :th-m !IDU);odXXTk8"$/[Y Z 7p^Ѣ8 N 7rW3'Fu=:x$>v@ A+N4Է,/z0^ǠY8fJZ|gs/LI[-ɧv~HY%3j^cc;{;)+< A;y?26aUmZrdĜ̩u drdɡrfE/|Ž sE "YܲgpL}#Qyio-^(¡<$ 7n6LCoDa(Ċ $cc3;5u: `[p 6>Ã:;JU* $֙f{.7x~ 4<ڱХr2￶ 8imT/](C/X{uƟ,ْC74f{wı^Fohi)v (?}]_^&w 50^ZF9P l_'n"0pƒnkf FK.Z||MWu'RAƟ@k si\I/vNgBm.1O -IWqo춹`$thZMq".O /*9.Z;@iN0pºuFyB9>喼_Ɯ끇DPKGI;֖6''}ʷJuꀤeo-j7Zq#:zsv"ז]u d٪XVcP:9~{͈F0]_k6tKK ̟]П klrsiX(P!*d]luĥ[<ڂ= ªTN2eG_!vUTCW EJ xu:rT/P/V:KP:* px' z^Af]9AM Z"q$ B!epofKfH4ҿ^%hUTQSD@6A|< VhBg,'t6]oe3. tܹGǫxIKG#ʱU3GZtaY ]V'Hgl)Qj.+0*N;H|: Nllp$Z0=[&`BAaUdnrD e'9Xm i9Hͅ յFm,?+ H :Ti֟n{1 3zi홇K@ꖈ@z8&gZ*@3{ED:4Gv xwc}jX/k|{q#Qϒ&p3*/ XeEj!zߥbAaT³>asBǭM#{I$-QfÛ4 KyR0K"ƪ^Lkn)g˶?͋/!KW( ve(ᮚ,:5tNNOU2>-xkuo4ܑ7z 92@`~12T8sy[oyk v!UAr:x)K{1SHM,cH>F]~` .Lա_U 0NZxO,y8VʥTT'ܽJ^ <oδVx:Pr$\w˅Ϗgc C5% /O"ghdY~ ys.Cd~n LhEW.g>|+m3^t(ǖ*/x||hcD+枧"fLU]?vjI?u=I@Aqv1G\}}X(S;0l 硠qn)wgZ2!A௡v_C*,N [))'{xvjo]Kbڤv3FbH2`AVYbq1jS~Ul 7 ıvui oq {4^N&LJtZ]@@n$OKYx$drwS9qpkCW1D ) .uH#`٬mSi--4C25@ yXTF 9Dz^&T%Gڵ3u37aG9rmo UK~G P8uB jޙn[+YgφK>ٰg"evw~Q!EL;hQh{O3hgqmܽ&1؉| z[q ߵ>I~ƭѮM ja-q>=ws6Yu8`ږW?ȅ^fx`([[~'q^ӃCa#.0w b2SeBХV*./?rR#&DV]+h}UvgqQ3!]yM$)6Ve';aS#`aa]gb疊VMx nS3 x}8ڜ ZE*3DGwRyuS0T1\eYS=!`=K:}*m"Jvnq.%(: Ws =mÙȴm[TK۹Ʋ泍=>%f%H *-0b[(tM1*͂vh X&E yzCJsD!r䓕sI2b̈ǫ탁3;Qnj+ _ɵ4g Ϊ8bfR'\ԮRd^tzFa8+΁ xE(,c[7fRг/0ƈH ^~3׭3#YE@N݇Ju3DzxQ)8f*ޚ:중ob~2-^>_&\|Ƶ~XԄSGc+|>X nJ=.t+|7=~C_q$` P8p Y^@S*N֘UU:N m䈿G?yɅ"*π?=*/#_*OdivKxsw9dbGlK[zrhIUK-Շ;D s[?r ip@VӾhOϤpR!:(cڠOk9QJNƊP/ح@قSG3f[;?R b~9_47a+ѩUrcC@dibq %za Ԫq6y rvuD$ң_lmB lmH##*X$FE 2?9%Epkte](0c:ύ/Zmc}2`ف&z׎:kUA41qر qQSD>zÒcAcLAE@,35= b7 ʢ\4`#'Et 1SKNeHx:[0z.S(AInKb=̂yX=tIU@n k%˞>T91O0# $"DsaJq[+ LX[_d08╝'Z}с|eX *ZN=" LIRl|Rtה9f&]8U dg2C5`6.R{Cpoyۄ[N E]z$G q[ /V Ͼ9q;kkKD7aVMW/1p]I?5&y_ UJvxBBX"+_H6C+z_{f7,[O#(6 -]B EjWh>y1:ǎ\ӾjI]Rg2b$H[%դ>‹]dpX10XvޭU1kIwTpY%6RuW2"pt0=tkۨz̎){Ȫ?'Qn3%+񘝄LhZ з0fx(Ҥ;SZuWb+O -yјϛO$Oʬ83C1]ro7!̳ ]<ؾȼuhzT:ԌjٻS1OO$7S O61Y~![F3"Kd!twJy8!4}B&er\9qI}WݜvIh9|Z" o+#3]IQ(Q1o_qVn*Է88z!B~ 5mYx?##(3R5B5qߥ7ǾEJ}%*pK9VKL>x vA ~sHZAD3)-fKxTNm vB&&4Sj2ȧqzW=ӑweT8[w@&ɈOG օ9lbJv C'txWVXra޼azǭ9eAڣ>xP>{Sa, YK/&Y}cƆx *ru40tr Ư t$JK͑mI OBp'u[mn3a[{ͥM]^Fx]~yնK/YO@:}t߹cbNHmP/?jMM 4`ϟDXk Nm?ùpF^{^S5T͚Z}$4jm Qq N8d:IZʬD9da1~H*f}>p$i5ȏ`x~|~0vn=mXL#GH&{@"JtG 5zw6q-eC \T9Bo`8njE팘ru}nWWju#G*@uX[gۮ^1W}7e: Yik9`eTE~7cۦKHIib kv}\0}F%o[㴰ߤq>kFEκV߻ }()SH&BA><ڔgs3@m['51Fd?aHQJ((JTt%Tpch6a w5!nҰWDպ6@ |7O{lU5.aLF,^o"3CBDsқod)*$0M²RN (wy-Xq68 C8 59L6&7"޵\چdp @$$#o"`6uިxqOI>@u*$޴KjBoC{5-A{3p`p~Xϱ}f.%V~(+l!{!Vz]nr/-L^:lLѵdIE35SC.OrUV_~+,Snޕ<[È\F>}P ֹ[͜kN(w&SG)~3p*ol?l6+ݸa3Q,D1%K(C9oՎ[B|E^%=dd|,׎(>f\..1mF n'R@]Bj)b\bSQ?ՒM,UlU4tN$!;=1D'(K9yf;\уaHt^xg@''Kx%9b`s0Q& "q8.wٺJODpoyߓ 6Vj, MAA%ަz'mϵ4׋I?E(BAA: _M-B^!D?评*TmCTHpmTrq*)t[?xSq$;ܐ[i_p*hBgڒԵk 5틅[Dn\*ъ64;ԌI&M9m8vA$Mayݠ%{\`4C6D`cDymuKL9 !1#Zd|;0 cͦ$fdZ1]wXEvl.%{Ljw lH,' B{G'!-r$H6 C3[C"xp,WMe$=7X ?&5 L 7pUk 22lNpG. sx!jǖҫn${P 6^ebPxCfϯ 6cq\ٻ/+~b d6GjDzW\#%4nQҎ!Ysc0aD҈c^o@}y>ⰺ fHOŘGF9ӕjY5hnCj̠iUiS MlPެ|&oqwKG/(y)ыƹj/[PP6e<R|`%Ȓ=^ an.:xD tyX2Tf[ bg#QyMdS5a?*JˠU;-xLLwp"UvGN+u=i:p2X!dq?J:O}"^/I6(7yOaU6=õoh/a86f9"Zs~9 Hj5 s}[hbp bf0 1|zˇmvbd5hwʝ] 'fC잨zՕLJDaBpps@2ȘϾ%7v78%vl'[ڏ S)cuczEJضAC589Dݖ$vQwSآfḼz'>sh OԠ@1Y#h)d+XFe8D1ݷL"^\,/%aTtcI~pjlཅ|:[j)en"`2NJEI?g2e3G/ok+*1-QF{:S`^5 B#/_U.4)sY C褟(Bsf%oxvj&c1fnW"^'L{j0v@L,Cw)jrՉ۟U{MWv1Lg?˚#h9|p}"Xik:yuO)aK ~ȓAW%^vy!U%iwa꺄ꍃ~w 7SVWrEbnf׶J392yuQ:pIпf>#IMm(|o[L ^ps(ЄTwǚmEgaD-ex >𮵑@uTSbspy٢.7=^MPc:?/8;,SlBd,{xgTZ9H+jQMv= )4ϧñ܅̳kVccȘsY񃪚Y)]i{B3g$;.4nTtėlw}%EHt4K r/bx68ѷh8ecV(jw,p"7pP+;wbbx H #xaO#Ft9%3/I=kU%>n0:p:e($ɘ? ;b}MZn/1g}~ b#&&F( 7[w[fiĬvs_7\-D´>9rg٢=˲QCgv&ǭ'^wR b c#p.p_yȿ@6Ryxv\#y:~FC~qϘJ?0ն+H!koIj0Q)mȠ6]\ Ў>mð4u;1:ͩ_a^EsĿθ)B"X@_HT$FCr]ڪVO&D0gϙ/EWj-0 h-V)m;c931Y{Iq18TY94&Zb Q.*H 4yh` ;^yqv*ĵpʀ&ݾ|;X Pa ?|/~Z#y3GnR Lzdj}wEg-):kVr.o`B 2Q39V-/4X5Lޘ;w҅NwЄQ_BuٰC|r]<L&$\s̚k{r6sj2ZVl}g:Dycoc;#-snrl!ڰ«5p]|3>"*#CHсA6-QRwu=J~|;^ t0[?:^|-vE; K (9٢jl)[rYDܤ (|قn1aXߪ|YyF7ծ>se[!0EdWh R{/S& b-gH!+GݷU ;bmlx*ަsD:g;Tsέx)ƵЎ9[ JsN_xQkET>L\pǝ6ˆH6ЂIv̊I#N`9U QGU~%ȶ&V9wE/*h0 1cxEyUKͧ2QVj/ 5Uwsbz<yWAtbXSuVSFamIU*WjԒPflЀmaXtejNMe fH ԫ3czU^0gkA69KT(|\##lulne`-c\{4сq:a:=0ؙ6>`g?'OzWGؑ<ʟJecY͋s*0prL_C)2Nd@˹-_ÄV1= GB^XA;pMKfh`}9Q&IWͳxljƣ*@ӹc=ネ~vݸPtLrfmɱ-EODS87鈂 }VQ"U\욹K6 q[޽8ہXԮiYy~GYd<-`29{qV-8D5Ucs368GMǮ3+R -І2 O(3K~Y97/7cƅL?^REL帢k`f|z7P5~,4)*Q}C9ß:S.x*$7nYգ RՑzT"[<̄Ԣ\4I@ 0<#gxxv'^ H[{k[lr6U/43@5⩵3&. h=.g[eF9f҉%it.LcU}IAh ~U]@AFZxvLQ]#ۏUkqT|yW@]`+[_# ܲ8AhoTK8?3(濓Tg~™c-?Ne_zշ;JOF̪m5[`ߘ/槫fdyo?% ?imUTЄLۡ:KNJ<0YF_D70-6 Zx^qwE)q E6&@ MvAQ\3%^0$M\Hj~H"JvWN&y{R!RL#csIBaqô%48+&;ZbQ71uGXpd݁o^s4d5G;*|"}!<>F} V6_Χۅ${n S-=&a22\ ЋMCzDyj`^+JL24J "kb]x@;6h b"߉h(kw++xXY!H}ȐJ Gǽ%a~ +]nt%(#3*LWMt (x!T=aMz_ 9}ŗ#dG-ɓ<#^GZZ#xeXV4E[3QQ<7##ܽXp8"21*$\;=_dnCIZ{܃f-o4k;^Ib-ܭ|u_}*X8hmv;Qg9v9:#SX;6o-o%;,>8CX}!|Ϙ"UzW5"?&В$ߥO@20Q +ꜗz:5ZD )*~HGFodΝ^fWZjņ.O>,;ٴDtA⅏:%69N`h"\Ӡ<: 5L)y{Af8i"_#J:Ar h,:htoV[tdcy=h"nLo] ]~Id m_-x%wCt_z=7 @]/FF?]MPor#Nms$|ʹR O^f̙]mՔ1_>[`~I$MɗDX.$BW;AқߧJu]Yd5F5;4rc aT`'nibidbHVm#RʰAo4|4(j{'sT^GD)nr:J+*K4qvIpCGR|@NSDqf|HndD?I"o3p~ʳn刱 (`K8nEW6%\ dWgf?S cc?O=ޫֿvX 0nQI;&59s#[LĒ~Փ f(J5;݄my I-8m,QP[ϣ'ӜB|E0ibR-m׳l"c|gvs a6~dG]}2`^={꼻c5+>,F InWG_U4} TI~wfu_`W{1]m70[ܙ'ZFD0L5 'wWYV+>aj0#wB}-o,מNu7i8'5]#'u}ikTNaNjmR.\~;!"L^ltwa4='2ވFcRnX8䙞5jjt<iYQsCi̔J>՛س񮀷sW6E^<$6+N#h(:XױRj贬 TɆZ>&%0=KRZ