libfmt8-8.0.1-150400.1.8 >  A bvp9|W<{R|0ײdN}FmzU YʍYävE/1`S?zmKS ZLnb&IN.l*EQEkhνA?<bY7DzUu >,c'XmU53,smQ_[q,1C$KÒMqx/}jXL WI7x&L^>qE=Ѐ͵;~+_Dm~ˍF O}u35443f751d5fe13ae7d5a07b1ae20db0abdb41052935838db9202b79833725ca087b045b1a6a0872313c34ee2c814998a4a50bab dbvp9|"-G2+5O.ڌML?=c $3.%/(v>p@]?]d   8pt   $ , <   ,<l7(^8h9:L>Z@Z-FZ<GZXHZhIZxXZ|YZ\Z]Z^Zb[*c[d\(e\-f\0l\2u\Hv\Xw]x](y]8 z]`]p]t]z]Clibfmt88.0.1150400.1.8A formatting library for C++Shared library for fmt, a formatting library for C++.bvibs-power9-14 SUSE Linux Enterprise 15SUSE LLC MIThttps://www.suse.com/Unspecifiedhttp://fmtlib.net/linuxppc64lehA큤bvbvbv`ߝ9fdcd8b6dac239f1096fff472a7e3d058c2a3e71013a870280fa0ed47e7e7d19825c9324e70f8c839c8ba910543dd4a7daee243b86ef960594c11381a19980b8libfmt.so.8.0.1rootrootrootrootrootrootrootrootfmt-8.0.1-150400.1.8.src.rpmlibfmt.so.8()(64bit)libfmt8libfmt8(ppc-64)@@@@@@@@@    /sbin/ldconfig/sbin/ldconfiglibc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)libgcc_s.so.1()(64bit)libgcc_s.so.1(GCC_3.0)(64bit)libstdc++.so.6()(64bit)libstdc++.so.6(CXXABI_1.3)(64bit)libstdc++.so.6(GLIBCXX_3.4)(64bit)libstdc++.so.6(GLIBCXX_3.4.11)(64bit)libstdc++.so.6(GLIBCXX_3.4.21)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.3`Q@`@_G@___@_-B@_!d_c_@^^@^^]@]@]]@]@\\9\ @\ @[valoisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comhpj@urpla.netaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comaloisio@gmx.comolaf@aepfle.derpm@fthiessen.dejengelh@inai.dealoisio@gmx.communix9@googlemail.com- Update to version 8.0.1 * Fixed the version number in the inline namespace. * Added a missing presentation type check for std::string. * Fixed a linkage error when mixing code built with clang and gcc. * Fixed documentation issues. * Removed dead code in FP formatter. * Fixed various warnings and compilation issues.- Update to version 8.0.0 * Enabled compile-time format string check by default. * Added compile-time formatting. * Optimized handling of format specifiers during format string compilation. * Added the ``_cf`` user-defined literal to represent a compiled format string. It can be used instead of the ``FMT_COMPILE`` macro. * Format string compilation now requires ``format`` functions of ``formatter`` specializations for user-defined types to be ``const``. * Added UDL-based named argument support to format string compilation. * Added format string compilation support to ``fmt::print``. * Added initial support for compiling {fmt} as a C++20 module. * Made symbols private by default reducing shared library size * Optimized includes making the result of preprocessing ``fmt/format.h``. * Added support of ranges with non-const ``begin`` / ``end`` * Added support of ``std::byte`` and other formattable types to ``fmt::join``. * Implemented the default format for ``std::chrono::system_clock``. * Made more chrono specifiers locale independent by default. Use the ``'L'`` specifier to get localized formatting. * Improved locale handling in chrono formatting. * Deprecated ``fmt/locale.h`` moving the formatting functions that take a locale to ``fmt/format.h`` (``char``) and ``fmt/xchar`` (other overloads). This doesn't introduce a dependency on ```` so there is virtually no compile time effect. * Made parameter order in ``vformat_to`` consistent with ``format_to``. * Added support for time points with arbitrary durations. * Formatting floating-point numbers no longer produces trailing zeros by default. for consistency with ``std::format``. * Dropped a limit on the number of elements in a range and replaced ``{}`` with ``[]`` as range delimiters for consistency with Python's ``str.format``. * The ``'L'`` specifier for locale-specific numeric formatting can now be combined with presentation specifiers as in ``std::format``. * Made the ``0`` specifier ignored for infinity and NaN. * Made the hexfloat formatting use the right alignment by default. * Removed the deprecated numeric alignment (``'='``). Use the ``'0'`` specifier instead. * Removed the deprecated ``fmt/posix.h`` header that has been replaced with ``fmt/os.h``. * Removed the deprecated ``format_to_n_context``, ``format_to_n_args`` and ``make_format_to_n_args``. They have been replaced with ``format_context``, ``format_args` and ``make_format_args`` respectively. * Moved ``wchar_t``-specific functions and types to ``fmt/wchar.h``. You can define ``FMT_DEPRECATED_INCLUDE_WCHAR`` to automatically include ``fmt/wchar.h`` from ``fmt/format.h`` but this will be disabled in the next major release. * Fixed handling of the ``'+'`` specifier in localized formatting. * Added support for the ``'s'`` format specifier that gives textual representation of ``bool``. * Made ``fmt::ptr`` work with function pointers. * Fixed ``fmt::formatted_size`` with format string compilation * Fixed handling of empty format strings during format string compilation. * Fixed handling of enums in ``fmt::to_string``. * Improved width computation. * The experimental fast output stream (``fmt::ostream``) is now truncated by default for consistency with ``fopen``. * Fixed moving of ``fmt::ostream`` that holds buffered data * Replaced the ``fmt::system_error`` exception with a function of the same name that constructs ``std::system_error``. * Replaced the ``fmt::windows_error`` exception with a function of the same name that constructs ``std::system_error`` with the category returned by ``fmt::system_category()``. * Replaced ``fmt::error_code`` with ``std::error_code`` and made it formattable. * Added speech synthesis support. * Made ``format_to`` work with a memory buffer that has a custom allocator. * Added ``Allocator::max_size`` support to ``basic_memory_buffer``. * Added wide string support to ``fmt::join`` * Made iterators passed to ``formatter`` specializations via a format context satisfy C++20 ``std::output_iterator`` requirements. * Optimized the ``printf`` implementation. * Improved detection of ``constexpr`` ``char_traits``. * Fixed exception propagation from iterators. * Improved ``strftime`` error handling. * Stopped using deprecated GCC UDL template extension. * Added ``fmt/args.h`` to the install target. * Error messages are now passed to assert when exceptions are disabled. * Added the ``FMT_MASTER_PROJECT`` CMake option to control build and install targets when {fmt} is included via ``add_subdirectory``. * Improved build configuration. * Fixed various warnings and compilation issues. * Improved documentation. * Continuous integration and test improvements. - Bump soversion to 8- Update to version 7.1.3 * Fixed handling of buffer boundaries in format_to_n * Fixed linkage errors when linking with a shared library * Reintroduced ostream support to range formatters * Worked around an issue with mixing std versions in gcc- Update to version 7.1.2 * Fixed floating point formatting with large precision- Update to version 7.1.1 * Fixed ABI compatibility with 7.0.x * Added the FMT_ARM_ABI_COMPATIBILITY macro to work around ABI incompatibility between GCC and Clang on ARM * Worked around a SFINAE bug in GCC 8 * Fixed linkage errors when building with GCC's LTO * Fixed a compilation error when building without __builtin_clz or equivalent * Fixed a sign conversion warning - Dropped fmt-7.1.0-LTO.patch (merged upstream)- Update to version 7.1.0 * Switched from Grisu3 to Dragonbox for the default floating-point formatting which gives the shortest decimal representation with round-trip guarantee and correct rounding. This makes {fmt} up to 20-30x faster than common implementations of std::ostringstream and sprintf on dtoa-benchmark and faster than double-conversion and Ryū. It is possible to get even better performance at the cost of larger binary size by compiling with the FMT_USE_FULL_CACHE_DRAGONBOX macro set to 1. * Added an experimental unsynchronized file output API which, together with format string compilation can give 5-9 times speed up compared to fprintf on common platforms. * Added a formatter for std::chrono::time_point * Added support for ranges with non-const begin/end to fmt::join * Added a memory_buffer::append overload that takes a range. * Improved handling of single code units in FMT_COMPILE. * Added dynamic width support to format string compilation. * Improved error reporting for unformattable types: now you'll get the type name directly in the error message instead of the note. * Added the make_args_checked function template that allows you to write formatting functions with compile-time format string checks and avoid binary code bloat. * Replaced snprintf fallback with a faster internal IEEE 754 float and double formatter for arbitrary precision. * Made format_to_n and formatted_size part of the core API. * Added fmt::format_to_n overload with format string compilation. * Added fmt::format_to overload that take text_style. * Made the # specifier emit trailing zeros in addition to the decimal point. * Changed the default floating point format to not include .0 for consistency with std::format and std::to_chars. It is possible to get the decimal point and trailing zero with the [#] specifier. * Fixed an issue with floating-point formatting that could result in addition of a non-significant trailing zero in rare cases e.g. 1.00e-34 instead of 1.0e-34. * Made fmt::to_string fallback on ostream insertion operator if the formatter specialization is not provided. * Added support for the append mode to the experimental file API and improved fcntl.h detection. * Fixed handling of types that have both an implicit conversion operator and an overloaded ostream insertion operator. * Fixed a slicing issue in an internal iterator type. * Fixed an issue in locale-specific integer formatting. * Fixed handling of exotic code unit types. * Improved FMT_ALWAYS_INLINE. * Improved documentation. * Added the FMT_REDUCE_INT_INSTANTIATIONS CMake option that reduces the binary code size at the cost of some integer formatting performance. This can be useful for extremely memory-constrained embedded systems. * Added the FMT_USE_INLINE_NAMESPACES macro to control usage of inline namespaces. * Improved build configuration. * Fixed various warnings and compilation issues. - Add fmt-7.1.0-LTO.patch- Update to version 7.0.3 * Worked around broken ``numeric_limits`` for 128-bit integers * Added error reporting on missing named arguments * Stopped using 128-bit integers with clang-cl * Fixed issues in locale-specific integer formatting- Update to version 7.0.2 * Worked around broken ``numeric_limits`` for 128-bit integers * Fixed compatibility with CMake 3.4 * Fixed handling of digit separators in locale-specific formatting- Update to version 7.0.1 * Updated the inline version namespace name. * Worked around a gcc bug in mangling of alias templates * Fixed minor issues with the documentation.- Update to version 7.0.0 * Reduced the library size. * Added a simpler and more efficient format string compilation API. The old fmt::compile API is now deprecated. * Optimized integer formatting: format_to with format string compilation and a stack-allocated buffer is now faster than to_chars on both libc++ and libstdc++. * Optimized handling of small format strings. * Applied extern templates to improve compile times when using the core API and fmt/format.h. It is still recommended to use fmt/core.h instead of fmt/format.h but the compile time difference is now smaller. * Named arguments are now stored on stack (no dynamic memory allocations) and the compiled code is more compact and efficient. * Implemented compile-time checks for dynamic width and precision. * Added sentinel support to fmt::join. * Added support for named args, clear and reserve to dynamic_format_arg_store. * Added support for the 'c' format specifier to integral types for compatibility with std::format. * Replaced the 'n' format specifier with 'L' for compatibility with std::format. The 'n' specifier can be enabled via the FMT_DEPRECATED_N_SPECIFIER macro. * The '=' format specifier is now disabled by default for compatibility with std::format. It can be enabled via the FMT_DEPRECATED_NUMERIC_ALIGN macro. * Removed the following deprecated APIs: + FMT_STRING_ALIAS and fmt macros - replaced by FMT_STRING + fmt::basic_string_view::char_type - replaced by fmt::basic_string_view::value_type + convert_to_int + format_arg_store::types + *parse_context - replaced by *format_parse_context + FMT_DEPRECATED_INCLUDE_OS + FMT_DEPRECATED_PERCENT - incompatible with std::format + *writer - replaced by compiled format API * Renamed the internal namespace to detail. The former is still provided as an alias if the FMT_USE_INTERNAL macro is defined. * Improved compatibility between fmt::printf with the standard specs. * Fixed handling of operator<< overloads that use copyfmt. * Added the FMT_OS CMake option to control inclusion of OS-specific APIs in the fmt target. This can be useful for embedded platforms. * Replaced FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION with the FMT_FUZZ macro to prevent interferring with fuzzing of projects using {fmt}. * Fixed compatibility with emscripten. * Improved documentation. * Implemented various build configuration fixes and improvements. * Fixed various warnings and compilation issues. - Drop fmt-6.2.1-fix_pkgconfig_paths.patch - Bump sover to 7- Add fmt-6.2.1-fix_pkgconfig_paths.patch (fix for boo#1173270)- Update to version 6.2.1 * Fixed ostream support in ``sprintf`` (`#1631 `_). * Fixed type detection when using implicit conversion to ``string_view`` and ostream ``operator<<`` inconsistently (`#1662 `_). - Drop 7d01859ef16e6b65bc023ad8bebfedecb088bf81.patch (no longer necessary) - Spec cleanup- Apply 7d01859ef16e6b65bc023ad8bebfedecb088bf81.patch to fix kodi compilation and probably others: https://github.com/fmtlib/fmt/issues/1620- Update to version 6.2.0 * Improved error reporting when trying to format an object of a non-formattable type: * Reduced library size by ~10%. * Always print decimal point if # is specified (#1476, #1498): * Implemented the 'L' specifier for locale-specific numeric formatting to improve compatibility with std::format. The 'n' specifier is now deprecated and will be removed in the next major release. * Moved OS-specific APIs such as windows_error from fmt/format.h to fmt/os.h. You can define FMT_DEPRECATED_INCLUDE_OS to automatically include fmt/os.h from fmt/format.h for compatibility but this will be disabled in the next major release. * Added precision overflow detection in floating-point formatting. * Implemented detection of invalid use of fmt::arg. * Used type_identity to block unnecessary template argument deduction. * Improved UTF-8 handling (#1109): * Added experimental dynamic argument storage (#1170, #1584): * Made fmt::join accept initializer_list (#1591). * Fixed handling of empty tuples (#1588). * Fixed handling of output iterators in format_to_n (#1506). * Fixed formatting of std::chrono::duration types to wide output (#1533). * Added const begin and end overload to buffers (#1553). * Added the ability to disable floating-point formatting via FMT_USE_FLOAT, FMT_USE_DOUBLE and FMT_USE_LONG_DOUBLE macros for extremely memory-constrained embedded system (#1590). * Made FMT_STRING work with constexpr string_view (#1589). * Implemented a minor optimization in the format string parser (#1560). * Improved attribute detection (#1469, #1475, #1576). * Improved documentation (#1481, #1523). * Fixed symbol visibility on Linux when compiling with - fvisibility=hidden (#1535). * Implemented various build configuration fixes and improvements (#1264, #1460, #1534, #1536, #1545, #1546, #1566, [#1582], #1597, #1598). * Fixed various warnings and compilation issues - Dropped Group tag- Update to version 6.1.2 * Fixed ABI compatibility with libfmt.so.6.0.0 (#1471). * Fixed handling types convertible to std::string_view (#1451). Thanks @denizevrenci (Deniz Evrenci). * Made CUDA test an opt-in enabled via the FMT_CUDA_TEST CMake option. * Fixed sign conversion warnings (#1440). Thanks @0x8000-0000 (Florin Iucha).- Update to version 6.1.1 * Added a missing decimal point in exponent notation with trailing zeros. * Removed deprecated format_arg_store::TYPES.- Update to version 6.1.0 * {fmt} now formats IEEE 754 ``float`` and ``double`` using the shortest decimal representation with correct rounding by default: .. code:: c++ [#]include [#]include int main() { fmt::print("{}", M_PI); } prints ``3.141592653589793``. * Made the fast binary to decimal floating-point formatter the default, simplified it and improved performance. {fmt} is now 15 times faster than libc++'s ``std::ostringstream``, 11 times faster than ``printf`` and 10% faster than double-conversion on `dtoa-benchmark (https://github.com/fmtlib/dtoa-benchmark) ================== ========= ======= Function Time (ns) Speedup ================== ========= ======= ostringstream 1,346.30 1.00x ostrstream 1,195.74 1.13x sprintf 995.08 1.35x doubleconv 99.10 13.59x fmt 88.34 15.24x ================== ========= ======= * {fmt} no longer converts ``float`` arguments to ``double``. In particular this improves the default (shortest) representation of floats and makes ``fmt::format`` consistent with ``std::format`` specs (#1336, #1353, #1360, #1361) .. code:: c++ fmt::print("{}", 0.1f); prints ``0.1`` instead of ``0.10000000149011612``. * Made floating-point formatting output consistent with ``printf``/iostreams (#1376, #1417) * Added support for 128-bit integers (#1287) .. code:: c++ fmt::print("{}", std::numeric_limits<__int128_t>::max()); prints ``170141183460469231731687303715884105727``. * The overload of ``print`` that takes ``text_style`` is now atomic, i.e. the output from different threads doesn't interleave (#1351) * Made compile time in the header-only mode ~20% faster by reducing the number of template instantiations. ``wchar_t`` overload of ``vprint`` was moved from ``fmt/core.h`` to ``fmt/format.h``. * Added an overload of ``fmt::join`` that works with tuples (#1322, #1330) .. code:: c++ [#]include [#]include int main() { std::tuple t{'a', 1, 2.0f}; fmt::print("{}", t); } prints ``('a', 1, 2.0)``. * Changed formatting of octal zero with prefix from "0o0" to "0": .. code:: c++ fmt::print("{:#o}", 0); prints ``0``. * The locale is now passed to ostream insertion (``<<``) operators (#1406) .. code:: c++ [#]include [#]include struct S { double value; }; std::ostream& operator<<(std::ostream& os, S s) { return os << s.value; } int main() { auto s = fmt::format(std::locale("fr_FR.UTF-8"), "{}", S{0.42}); // s == "0,42" } * Locale-specific number formatting now uses grouping (#1393, [#1394]) * Fixed handling of types with deleted implicit rvalue conversion to ``const char**`` (#1421) .. code:: c++ struct mystring { operator const char*() const&; operator const char*() &; operator const char*() const&& = delete; operator const char*() && = delete; }; mystring str; fmt::print("{}", str); // now compiles * Enums are now mapped to correct underlying types instead of ``int`` (#1286) * Enum classes are no longer implicitly converted to ``int`` (#1424) * Added ``basic_format_parse_context`` for consistency with C++20 ``std::format`` and deprecated ``basic_parse_context``. * Fixed handling of UTF-8 in precision (#1389, #1390) * Added a CUDA test (#1285, #1317) * Improved documentation (#1276, #1291, #1296, #1315, #1332, [#1337], #1395, #1418) * Various code improvements (#1358, #1407) * Fixed compile-time format string checks for user-defined types (#1292) * Worked around a false positive in ``unsigned-integer-overflow`` sanitizer (#1377) * Fixed various warnings and compilation issues (#1273, #1278, [#1280], #1281, #1288, #1290, #1301, #1305, #1306, #1309, [#1312], #1313, #1316, #1319, #1320, #1326, #1328, #1344, [#1345], #1347, #1349, #1354, #1362, #1366, #1364, #1370, [#1371], #1385, #1388, #1397, #1414, #1416, #1422, #1427, [#1431], #1433) - Dropped fmt-bigendian_1.patch, fmt-bigendian_2.patch, fmt-bigendian_3.patch and fmt-bigendian_4.patch (merged upstream)- Added fmt-bigendian_1.patch, fmt-bigendian_2.patch, fmt-bigendian_3.patch and fmt-bigendian_4.patch to fix tests on big endian targets- Update to version 6.0.0 (too many changes to list, see ChangeLog.rst) - Dropped 0001-install-pkg-config-file-into-libdir.patch (no longer necessary) - Switched to MIT license - Increased SOVERSION to 6- Install fmt.pc into libdir with 0001-install-pkg-config-file-into-libdir.patch- Update to version 5.3.0: * Introduced experimental chrono formatting support * Added experimental support for emphasis (bold, italic, underline, strikethrough), colored output to a file stream, and improved colored formatting API * Added support for 4-bit terminal colors * Made std::string_view work as a format string * Added wide string support to compile-time format string checks * Made colored print functions work with wide strings * Introduced experimental Unicode support * Removed undocumented basic_fixed_buffer which has been superseded by the iterator-based API * Disallowed repeated leading zeros in an argument ID * Deprecated fmt::visit, parse_context, and wparse_context. Use fmt::visit_format_arg, format_parse_context, and wformat_parse_context instead. - Removed upstream merged fix-fmt_pc.patch- Do without em dashes in summaries.- Added baselibs.conf as source- initial package for version 5.2.1/sbin/ldconfig/sbin/ldconfigibs-power9-14 16519625758.0.1-150400.1.88.0.1-150400.1.8libfmt.so.8libfmt.so.8.0.1libfmt8LICENSE.rst/usr/lib64//usr/share/licenses//usr/share/licenses/libfmt8/-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-SP4:GA/standard/9c71b2011ec135dcc4539d02e140f216-fmtcpioxz5ppc64le-suse-linuxELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (GNU/Linux), dynamically linked, BuildID[sha1]=3134957d0936450d1fdb0d52c9cf12120e1b163f, strippeddirectoryASCII text PRRR R RRRRR=b8"qutf-8b2240a3906c35f238e94e899aef3db9a8926b00677bc3cd42a3d01f520b597a7?7zXZ !t/,] cr$x#FT9F:u$Mf ܙ{!Ta]Pn#X58I_H(m^{%6% :g+Y:uV,~bV޾7yg&yŃeIov* `  ~, R@h֞2 -}?]9•"ܾݽQ+mO$-$Kĭ8,xM̢^=Qlul%1pm&> f>+%e.'6cXC:zbڇͶw`XQǥ§Y#N(qk&7NS= Ҿ WNZtglt /&l-}ϦK"vЄ *fUB_[P4,a .@ئ!>OVݚ@xpAMxIk]]t]%U5f ԙ|>eM8{yz@"`A :yGY^}Y>*CdAÇ2.o@9gڠPŏg8͟Cp5DVgHCo׷ɇGS *䅆&EhLnDG Q^i &b y6+e ƍ j@0}er5d!Gcfdi"ɣV"BGBUҜ:nh!4C gUv dw9_WY^ք x ѩjJRc}4a2|i"9ɧ跲`XkB^xEIyrwܳh_=fQ!1\ n K8QC)(%[Y`Qw0@nZBq+/4zyUoI3* !<)qKϕײ̷I)bSpAg~dmŁ5 A"@'LE uҳƍT0p_aAI:(Q?_(^6ǘ?m9`ITa@*ט _O@I ډ`\ȉ60kH^|xzLsM"ߣ@Ȭl8(ޞ=iSkf AUjWR,DU'l8a`N@t+OLeZ::D蔸*ьĞKT9+LTw"G>Pμ-iϖ6gCz; +WH$ |O|y9T.Y!;Ϙ[v/eL^Lnn]xFiMdn$[]SDtgi7Vw`>@|0!Nk'L2$\wsÃZo yE[H$k^?6/&Z.(Iew6:x}]< *y6eX=[fҡ#m_ Hse"3Хʪ23sfͨ$;,q@Ì-l5X@4(w~؀؈MɍA^915|{,ʍ'qBe BʕBNΩj#^W۾hnb!\5Bn`2FdM[m"hsHlwk*!~?`NKg?`By~;殭ƴReԭ@w=OA㒙^=@)6RJ/oe V0F1Ƽ{F8 p=B,~$טGRSp.t e[A׾hud; 'BtZ4vzNkmƦ۲$W]^/lz`H*F鎪̰3_~^-;2>WN|%\0e U '~6ISshR~1CZ!A1rStzo3O`:ߊ/bUC-م)j~L!!:EdLPWXcS>O\7Hډ#Õf(xS@:l1V 73{ϩo5 (AƞĊ=6)=Jك:4Vbz'wQSkF&809\)CP g˂ kuQ$oW1ЌC2u-tE/pP^/_:p.Ȝe|:^!,˜r*QAt߼bd>aR]CC*p=G rTxscr$orB\w |f^B7-\^b2E@+5ZZrMϜwoϟV'6Z 'uwF'YϱDCoü_txF͟ta[8 :=n?D'_RR/Qm9H'8\TPj[@B"wc\rdj&dq |>؅ p9Olߊ^auێ/ܞ,q[;4pysSVp50g[tA9_|!fЊP%v] WMo,}Oh$3v+ 9Q7S!Sp]|hl5]_,7EQ.$̴"Mht$/DNc3gl $.ewL6:5gg>KFwZ&F}W 7PV%Y٣rV]֛wN3ȠzNwvo<0~Q٢aR|ف[5פ,J}xH-FKh(OCb/sNgB][&PwvRԋ6ֆ]&˛2 g*}n^;tٿZ' *UGnzShϤvDͧaNWk!;l~ĈD|r?*G@ع"b~3"3ћLnXB*S鴈^gUzXU{ pB^ߛGD*Q~0,#~g(c{s/ cҮ-gD*)n>Y_AATh+##9?rB1R歾p2w1\DWRnalע #9*ob^(Hyr 81FH犡P" Jj䶾15*`##KHWZ$d8dЁmz1NCb=ϓ&-GpGJ8Ҵ\X ӥ|܀xo+0c$NI܂z[iY>c~#VZvVkW `(>qeh[PP5HUv+d}fo:C*; ^d%~ɘD5O)MK9ӷ@ai2uX.zYݻ=փҖUuێ5V06+)3 ;`0I"+PG,uUh]4`li5%$OJ7O4%p6[x8q 1VyKK^'K͸4j^+Us,\y9T_&6+QHLFuGa4 ]x37+풕 k)pi旼/fv(Sr潔+di'u;b =b[ъRx|ѹ3ߜ)tO@l Xt~C]kFA=bJ $Nhl_\zNpYj1&-0%֬9*]8Dkg0H0%UhZ k !["J## t' h_.<ѿ^_ZE{odY˭澦]E݋;\IN~ؗ K.e)nSFYl_W("|H L*?5i*P{郠J''ꅉ4)ᰆIoO0, Ǥ C. F# qy\U "O1Ս*@*l}btG6>W2&Sͣ<頋:-Mbƀk9f < SVRd|P %dԷOT(1O.8nJX>bGzHfu u1(d{ c/ͦid%HL!)ktXdlYk$p˪J i&8mg>ҿ(b47RGgWMk_k ڗ#Vm` Rpxt86,*7(4_ 4GP%s688\~<1])i X{((^z6Lnk/?*<`ieP8Q ߛAn7$w6 i؈#$;I%ز$^"OٷeZu'CKJ16UɍM $G7vR,%UP>MsĿܪrQ+x=>[͊2nw?iCEĵi prƚ@΂X|\_͸z7 /ZZt1fh@b-GVs]w6\ݭ@`(b2p z-WkO˜ʱn&$Z.]"O]uxDp>T+WtK,)ZV>I"`Y05ׂlijy7 ٍGFbUq և U7PpHlW $"[1@O`JHL"OZ0ԯ6̪?VԔp\6nIb)8ƙ`;Lreec ^kX}pv3+F5X/u!A&y?;2RyW(18[9IG!:nQ"xj~؇9,YVso?QIXe2w=c],Ws"GP0Csd`} l{KzZه;jq-ll:'K3?)qC^Xq+ss?]9=f44.zN?B$JPçĐ,@G20tNHK and +Xᭂۯe=cӜgȐVX}ϧJ5`XAB@h3ߐ׬N$IIsjykjuiR9:5_jkfw@ Ρ`(yfaŋ+B0f'eo'=mHHâEgrSvK)wB RRjPd |ז_0#.T?pM5QKlZzUDgi7u ghݍ^|: . lvP0SAUAwgo+z'$ l4jf*d[ \p^D("eD֋PVW"R > @ܚ}bף:VѶ  "-<4.O5.鿁ܮ2J0+z\X8o$Z5׉MThJVTqsB <ڬiH#I+,!cuϿgmұ .OZ5?[(Zw8d GPhd.Dvdz:ռ5<udȯJ h'[T 3ꖭ BZ`'Of'٢qr; F;mơ./(t7iN`LyuQGg z.S +;aE#h|N=iDalweRAn_Ǭ0if"-hy#:/b~Ȓ]X4U Vr{kflxh9]ȭ`ā]׎pY5!-ѯn0'ck -n`%$`P6]6~WZWQ[1?X 5}2z"s>@lqث,_0B| ƅ. Ή _6V(wZNy+$CFVu.eyD[&/eV^Q-to_4}tZeؾ7Log^hl*_uQ/_Db)>4$%G,=[~ZG O*{V{nϚh(8,~ spm[LW_;}<J#3Q$L&e2ܢ|AS: h_EB1isw+|kQCb! ѯAӟ&5ԥH 8QS[ðoC dc_InF`xs Y0:k'={*:ݶ* fmo&)( a E]wA풟/ S8]h({jO)ӺOy٫>õ@*DG69D]G6)z䨹|<K :;S)tp::p{v5g7M2^1`_EB`VRD(w&3h+ -r1U)Z/*p$+&6 sڂbR5VTܟ9~;=D4mmn8(HQ7!}qY!I1R}*S0^.Ɵh[#(hBPW߂C~h6F5(7ShӸdT`dM65u6L|Fܙv7 ꌂuARr,+?RoddJ{uM-֜BzhC1kr$`[N* W/rԆ$5 >[Z8 ,t`m~7^<} 5`,>oZ_x_^zC6ڮߨ;G`@B!\Qxz.@ Vl^6yBE0!ښY2mGٚhZk_REn iӰ@*#>%vzP-&#5oYM5oG@F#W+.~4tMCL9~ޅ*i swF?|4ɸi\˻4UY D'$`6RcEA R37&{5 aIwNs]H woʥ%H0*^24΢6:@|<*}LOeTAo/:6+zw/BM] 7&?ữ1rb#ޫ{}9^ :ҟ0aU=ґTn’߭PS=c,v_,ca[ exı]KQf/5i#@%ʀdkE&#үpg #+j*ʹ)+Map%x}(kEZ=Fv 9COqY]tX P^xU m:Uƀ^㐑m"|KH~6.MΝsb,G祄EypsٵHi׷.1GVMto1s*XȣXvÍd C7Y1BGנ yO !{qxz(G|֚m%u ]=bi1;q-txA^=) sWvz.Iǘc9 =>b z yb:CϺ ̖TYeܶy*b`/q)Io,8 r4ɩU;. ceR-YQ]FHnS3!XSw[@%2!@OԡD?58؄rZ"2sU=$7+%lAn8t!3Vd1VD[ !-aڮhϟZN&Tܺu[Tf>Q1]}G!Cr0h3nwZVWG"0gS3KN )K8(gkp?ǹn8p t:Vk*s-iwZέ;@ZmIìP[Dr0!&귚΁ i(IrusfVwQ!P6/",⠄F"g pmy7:hJ'gXBWɶY PIVY)p׭J˓m$zBS%S+iD ?,,.A(^3.7Ҕ$θ-"(?}*|ojA||3fRr2斬÷^dZ0ĊQ2v娏\(sĠKtO2h|lU*;V%J腹5P 0OTp)i\vJ<)HmI*t|@ ^t#.VAJƗL̂IGSR b{s6 :2C%>$}2]ЅtZ BrxBL,fuKH,k=Q ӵa_-}Y멻fP'זlQ?sSv؍uNӖh` _ፗcmaK܏tHfuh8C2Ff~6m꼹⋜z2; uC h޴U=RvBhCΎ,Kb]:*sqKJ;QǘsK4l0>]% $LVּFy 6ceЫLl-M3xl_yΐdN~6Z9_*B ea)>E_| ܉V ws\|ǝj)UF,n7<`i_ f`_zL^=$ "+Ԑ6 [/ߔDUaQ|͢Jf Uj% T/^:n5&kJȭud8-RjF<2d$b@}ݏ"U)I E6m]@:Yk=; vl}*87gqFkq\$WFgIgŁ*,$(tX xq6ZjK\0 p:oDdx 9S&/w.D" tp <OtdmL,TPvh$@M)לI+=KNFk"7k2>~/nFG3@5!T+DF`2HF (Tn7@ S l* 8[`;Ɉ'+=T;p^;vE!9UV)4)Kh<ĭs%SOsrm x"ΣC߀oO2lAF1vOm??F򁹆%*(Hc Ք?*ۖ\(@X!c[*Y$ ,![d.ݣ vio1G61#Y~MYAسI0HN aN,,cզvⰮ8fX.N"= Жj~%%5 >~#bW=qs 1ܐMwp(66O0-MxNx]'8Yw F7i~aY!gHE{] ?7HA$/M'L̀0Q헯M9Zf!B c! 4t7aUL<7-Wޡ5a?VQyB$wP.n T;ܹkt3 i7J:,q٦?>%ҩ_?& fE}=rmJ_XC6][:0h$HH4UVHyh_Ӿ/ѳu0ri{i޶Ry%爜ȸ2b@?S(:d* eڵN3jrfm s(e*;O,fd"Id,ݯ/..wAG1~q)s]@f.^lO6*z?w0;9ry7xMjÒyDarc@4ٝ)±6A}I/Lkp`$**.pT`K{'~/fhgD̰(iY5&=_q+⟱dcTNZ-6~?`51z"E^Vg>k) i(NX-+Fg?Rq5pȶKR|A&)s7Ao.myH8'K&lP^-M yk7~!ԅ\P 冞Tpc8-  1a,<䞧kŞrŊ>FL"& V+TVjЁ+Ȓƣ/UUXqQ}r)r7ԄEdAdW1+cAF&zV+Px 8aN 5ylS#-wǿsb {-ߦA)8P 6/ƓףΫ.:_Qː\ܗ0eˠ_gw6DR\OAO4k]ژ~Uh*&}% k)9~#EFi 4 jezuJv^ W1=QԯsZĽ?5V'I)-oS8 eBW#Q5Dj&Jw`kU+:/oL$\+WJp23OӠ"N"/n@U œW*!c<8e3ɓ7k6MQ sݧ|J纰)^uT쉽%UjuAX'A:r2[BAR6@cv P^&V5+r(ro[L>yl lv!'4r3Ae<ĠUixI̒.N䢾`Vm ПxQ!! /S(% mǮ/ ՠYzL͡>,eǖ(%y\vcKDV!Vr-B6hX]oc,zg8ʦ`hҙі;P)RijJIpqhyHʑkct%S%Fnކ.nQ 75}2_&<) ' 2v4GI[4]t*M $Ѿw49ZWO17tw/,8.Rh<Ӻ\DnPs~NC/ucb>o\7@k>бoI:K^w\@Ni2]eiqrEE~܍hQ^289܂:"7<LO %2")R娞}<β]*Lv~Ͼ$7EP$۞V޷n{,v¢b(`NC:IOCj.=RXA"3 }h8Ev" 30L]ړQgskqiXձkjOꛛH=JSZ/YW;.fR{Nnf^dm CZ-Ÿ@x^RA}! h &[c5U{HS[ Ȥ>Er$hb2/a:h#9>*t0mXB39D˲\G艪OZfB7ρwxM,2]Hxigp#od,,˃R;TL >'`^Q @s~Hm2z43)"Ŏv,'g hq.^w}x$R#B21FIN0Xvk]?" n՛մ+,nQ(L f dVX}H[JH'J1@}hJy2a>}a*uD|wmʿ *{d=]9 ͳdЙcݰj3DߏNf0YO~tsmELZՓ|@% :b"EyM;xh ̤ꨳHnm8OfkR/|س*,99{Hz" .!l~d,ߧ9*do\;3`U+7hI'm+n]^;ߴ,gWqdwl^血K51VDx1JAvH b“݇1F-wxpOC?pOt?l $2x#%KH s'U!d8iΦ Y :~EhL5x(Xpx9}뚹aPFCL.Fpw3 *t!f#[kL KCTRObyG`=/Ik\uw!Њ{jC3>k%hh$o[2jQ-+a_n|#UX݋LW-Ū`.̏ D$OOHr?_~HXWQT(-enDQەLk&-dgLm T`C3>8G/78Q{~nзidsʉj'zMvj@صzoh"ܞJ^Vk+둪Wj] gUM2rS= 9=rv\n= NRȞ,3[ K-ul!+)*;O,"{P[aJ>|=W.ڂGw9 5[h<&}1˒umtCPjkt {'/' l"u20'+3黅$ dXrjdu˹GC[JݻFh4Ut y pP^e٘j N赟`;|qly0:®Ev5ϹCWك[+h9;IV q ރb?@ߘS,c8>qHA9v0jZA}^ik?hG1sdulP~)8rҁ@gʽPp̞2lVi{ *-3tKFcȄ$MPo"fڌ\a%۸ 8۔خM7– 1ڪi|uψ2%ZuWtLAƯu>gi5\Ǿ4w L7zH2K%ңYBs(?qړi-3c_J|q Zu"lZ Z?L2_Ղl Lj0umNg<6v6k l@?}<¶PT;`:XPn,ސ$|>_KIΓ4[_}N|sRԶY%œQG2%cdXAB\+ۖn{ LӊfiޝsQO%2 ,##eeQ#ϲϷ)a{w xaؠ ,^(!_0d /aK:%Ӝg : ceq(Hυ0v/U} aOf6#eѾ'|O|j`Ftq +[L"Oi%=6v=^o| qġAQM&Q1v*k|(wa ץ. x|H$7(M핛c4|iDΝtӡQ:7vW$Rk|kZ!qGŗ%V`cmޏ:^p+%y{'UwYZ-\@3X6P]Uσ,q:yq:iҀ >EA"vN̈"+ ܎k5E&Wa!,At.b8P7nG%8{rk-5=SR|CROT1KT(ւ,vنVmpΥQϐ*!F|j2$s\y"ԁG;M_Po@H3)T+Eɸq ,Pvw'tˣ;LJwJ9U -4a?c~i.Sj([u죬vËKe3 = .Bc 1\?^)(|5ׂVRF*͞5+&~g0\l]B>kC_sQ(S=o-U@Dx^[%l&fhԱSSQʼnmY=$rM^*Xa)eon/m-+)q8 trí'= Fu3yX~en|9q1!E<)!NGwA}zJTJ2gLO0`&PjLS9²9R  ! {|$v/8 |:quY@b݌_ӵiO'5!zx,ޔ0ܟ"GDq/cq)B,滤pY  ^Hlqa +sE9H67/^nVd5{-qJ6ɛ$HB*D1Ww&̽Tg6˪Cb&q!w?{uj+Gd?^:B#6.gbjN%-* l|/V:U'6ґʂO%ЊEZF>c`G X:[Oa>2i}=N)&}*5F.&e"cYѐF5賈~ SE<*>H{{Vȳ7{P~r 0-e(cIZXRPm~\7m/="뉷tN}< šanqDqߴj6uG R/^a }bh'$O%ۢ?N6ʬƟP-X(!8̲/U"b@|rfC.9LvW!b9|EgX-7RJRlT2A)boTِS7T#=<-[A_?lMx"%LPV&Z 7n1Qc'o' a*I/*$"ctN`爻N+T0I6-FmASRQpܺ48- MW gMM0*F;# eM2櫄%a#9Vu\B W ] md}B8q`|8YH!kp0 +8{SIy)߬SdC,}Eǂ1%߱_Ա,$pI ehSGa  0+zH`rGN<' WDU``˵?JU铿DсI;#(6Yӗx۳aC0_ qLdš׋'PJ{U"UP ߕM\wZbhy٦vO6>qu,ю42 qļ'$txq(AOr==|eK !̪,y L &^8宼w0tD!L7XW>>:)HAy'N[r_\pyyKX=% U$n88vF B :x;GS `% R PyN;:n/įSv }d4/hkP[rt7S4s':ЫB-̅I Lqq2ɋ,°RLCՌ!*p:IGَ^Q8z٭ȓlqrw M52 [OugOjf7- ̢̽;a/qw1~r cr_Q,A? tJ֗j~)T\}sToscBFc?t.2զcy‹ݑcXayRO~WZ-_GzP-3;z݆)_ REj#y+|1Fl,ȵTIN?Wx:89ہ(Hy!' E,BBbR9~ 3ضXT] ԭ`Z^g9;EUFN?u߼ AC)@(WӽR!w[ "1*'G&aKv)h{P΂xlrcYV`1w)0(FCף'66ܯmCH'=ۇ%~3YRQT"1q/WmܦK#: BL @1lmW)gY~2 %5'" t6r6X_+~O3i1)rNQk)Fׂfm#qɖ%`|4N|-SG^(íCF= $3ۯGc")Qf͈Up:BCQ A4>}1gluظ$wt}V=7]@_ )֪`B swvI ~ngJls9i $f6U7b6̦N=ThނNzpn< Hl-U/qRFۏD*m.m8 ^R_05kkHuD2jAtZ"6J fCU9)ոra7L ߴ9+pObMQ|vl1MUS]슑VTG;b`NC+xiYDZ|!.=a(QLs2 =4@hq -F]x lGjQ'qZrp*^/gыkRurƅ^lk 5yif`'9j(L+ՍW5D8gL6LZR~憠\ n-ߔSLu*8)A${U$ySƺs"7j\ͭSʎ!lmu8f)Fȟ!J't`Nw/.Z a k8j,YmPYy(eY0ROTU.12@b>p=mWy](5(yhx{֪9RHD+7Q] VHL,Ld+skƘ2K"|Gdtae{L&hJ"יhFEo|)Wa{>=KDF(r6J,"Rh6u=܊PMoUr\lw}/KGu,?d %jOMlTb!%0Es%];bm{oߑa;܏:4>Hu ~}1S,Ig?t!VҁN/7Nr2]9x㾉ڦ~iAq!-m[R&2m Hʥq* G 2]QՖ %rbj=1˹J]٦5/ɆT$J^] c1zݹszX#e^;.8ůۤuKҧV%0фC 6ee ]Ae~h3!׭&No%_4f pʀ9o OFvU&48%,KZF'wsEvR9x_K;rd,dL_D`_ 鯲M}?r1oi9 J}"FwE%gn`3fr#a~Vu5R] ku6a?NvחMjxQGHrN6#06Mf4V;[_3 =TibK辕FWƸXݑU3'=1,U9Ŭ8eZ#SBݒ6Y^*)B/;&5noԤc wDH8D}=-M Պ#%k3Nu~||.h&ԝ9aʘ_ n $]2p[I):GY3FLqd, YG/YV 3Ԉ6!.(C%v1{yl@ѩ`;\K슿Bt3O|]˖Ǯ6{Г]Ўm|H1F0YM n6 uY3m,_%B#z1J.۟j;oOMP7Ja2JJ>GurF J]nLb$،'7NxB x(9]r n 쎋vˍGapCkJњGR7ip:[YrB\e8Vx#C+$~n?[u k7/ȻIv 3|[Em>Bs,%65AVh\tƠ>g?Ƽ񕩗Bԫl"@htާ(߻~G]^·`5F^x4B0Ǎ)?M40PgZ9T"jǪʙxI6"4}+HY Oڨ& KO;'&(c/{[ d'][ 14@D[`:w˔х4 u7a 6ǝ60IIgB.{xr9.> xU eS΂ q$?ְ)Dq8NXOfqz#oGZ0iڭTS]]ܑ/$]Ŗ.[vo(:RC6 tD417Mc6ػE+XT|AJp[nX ZI|o^շu/;Fxͣ`G#aIڇ! [-}JCقأRpF̡ sT.npU$%)M=+gЅ8 1Q~$Ppa$ NA)2D2kA'!80'élfCu|:Ti譧J48U]N3'$~>4\S`f9>H["=;>,y,+C̍ Wjqإg/JY6%\2 09/=GZ(ǣxo3!>Tt*Ғ'?8VR0L0>#hn(6zRނ)zgܦƎw]ϼfqS|LCosլt:/&%9 Ч'v}kѺ[iM.T;qj爑2s:+7h՞̻.YD?ZdiXު\ Tw,&\| Qz4v^IULsZ 'ȕg⬩N=Agj2HSZFyԓZa5L"OEQ;f ݍ'Z^igd8c!k g~@WGo'Pˌ &-r2Jv;w u[5uSdz|1 c MOb:Ytj7"JX;;E~_p0T_|.i"n'̄e⽁EjjZfM ,Fwr}&#@ԁ2(V{pw\ضGű'{m  \1`Eӫ4M"αger nfSň u9:a[7# kYf%X6KזtTgq OpWiDBv `q(ϟP<Kϖ˿\Q˵!|IɋSW/0< b7 bxLb\aC)ED-H65Eiw6t8OLm7fɎ\hψniICԪYQ~!E37}gd 3%€vĒН6%}Xs@弍Yk/ ;DҌ]`Y/czOOso6r8ULԍМenl9:y' /;a40ƙ93f=j\{3c D`"Ad=LQ cP\~ D ed6% _—`=S -/YMV]F& лiՓ}x5.H+K|NZR}fTBxFb!F=Yvr8SۊM*du<. *fQtg Z&"8%|VItKčIrpFtCS(gr‰*[rusAE|VrBr٣c= Tг12LJa688[#[K;~㋏(cY ?B Tyx(`F(Dҋ3>O𔽾OGɱ .i.nC_:~,Ar}hg6wT\s_sD#aV~W@yDLg~Pu&D<'!^iDYy%WQ o^`|r<;Jl|a]g-lOuLi[/-hn oz** ԗAb 2b \)WSuyDz8~Wd?THˌֿc"jF}=0+b$Z6Α\B.T3^r&hUiqVT-`G0Kߔ4> l֌}}{T;v+߲vfHvW#P@8څJY_ 4d1㋒O+Iw4BD3" - :|['O'Z #mTN*E?[?-o2}թ8O¹;űL Tp&؆j=<$8cZej7[CM&lIgbBXP_wAT6Ōa8LzVWo 'n%79l<.CQ҈~w;7l~juBVMy C'q =ciP@ˌNi㋌YĠڞ-9\kF[̶Z炊fA,f([=VVjHcl(Ra;hA# q :3\?!Jņhd;F9oiߑS;ĆHS k ێH{+PXr0 Mjp ʆneDt):fτx#&NWdpD^ۗ\hx3˜|1| /O,jD $2xrӈ}zB'N P@1~rA{]<J]x%+>]MG V 6`jafտ4#At$}dp8ćgSwmγ_ϢkFk[I7n-p$@FX( kh"`" 6y-%ȷ,;*Dӌ {LgϐHzm`fs<ºIw#%t`]W (woܢ-c0qD[GuGіr6v^TзiH&,oB~8@bf?L'~e /v.m1\h02 ]Ʀ~[ ء@%Q/9&#S8Wm#6 u4B@y^U1h\]<{~P5Nܻ?4^)Y ,#88;Stc@ɦz)j3Uǜ\0n¤{MRPT9Lh{0)Aǡnm t3\L,Ex…򑗝rhDS:=Cꡍڰ̩tYl]@heh`ߚ4%.o6Ǥ' >ָJF.OZ6/!s#4|?ߎl1|Z='9"|` Ї S8a;EolcI1Nî\ڒDck*!>; (U樽ؤNZO-7?[z C3~ Z 23xcz3SsP,_L֍<`wbe㠛(foJ^gR`};b0@FI$-6ABGUۉpGAJQs|Y2Y={ Hsz?^G<|X\hZYFJoEg`kc "{5P@E)=p% %Tl`Yf';c[&qcK9&l>|e.K$oXҹo)=)sA> C Q(yXiҚy/l鸊w_]& OI2E\L@VfI|k&W`exD&|;(v7ݳʹ͑}P]3⽏J0EFr-brij&;*D-a3H>[`VۖNևdM0Qvߛ'g=&?v+ʹ!2d]HYjXҰFJlD@\M=1F4?HV52o,̱D*HhKGEX]RkZ47t΃Tͅ},]gE b%(;7EؼpҀ'R,+6R{;zƧ2 Uzn!qds{ M,<fE?)"94_M9C/yb_6 0!Zsl 9L(|tt)ţi)\q(4K3cn jJd@$DzӰ@q!UgE/]V@oWr~dLMb)_T4fEOO=5W?""p&{"(OaZ{hmÂ(|ywi"{Yt,:sEb[0hC6ĄNUAE&ZW㔣F(!G7Rˊ<V*`G0e8e<7qدg7q~ӕcه~0dkEp$lAMw#$U =LutZ=b/7125"y`p憲2m)l^߽$>2d |6sw?޶A=. exjp7K^z1y_"HZ2L 0J]eDB#.y![̃&3:TyNϘtW6q4KVȷF~u/DCk}ehO32ᆏ*_ų&XzKR Q-fMd^R o@L&&+i~E[(n 1$%0'"V(TIJW,`.'Aa  ·iZ('DI ?dZ4d6 s'P~\шzh=J7f$&X޹y&,D W={`ybF<@'ˊWv9^u+[٬xDdsO,jaN mk+56뛴&f/GI~2^nTNye,Ē>IՖO&bH Q(ᄬgC/0$ ƿeᤕڅryJDNvr,Os͏ۑPm[b",[OoIJ^I__V6Sv9* O 翢1uzPS|&+k;]3GE98ޘlXhBA/ TR;=!\xH2nSJ0# ORn=c+jҁA&EhrD)+;fcF8T)km,)zF{eꞾAu (0"<:eQȞiĸ>K"\2`nwFGqT@3BkrP´0w6`%䉓m.4X~oaI%˿}řzqʩUId(;r4~^锲[8@ x/WBo Yx0-̷/RraΣ_yqdtz۲6 <\#zơkKy1DP _=P0IRj:zg}#M.-f/xa^/ _Ä[h4/d "?d'oR|tD3,ihQcAk*>3NL;y)tdLV*+Ba3hP,\k) |NjX!/OR @[`!'/ XyLZwhcC G7ْ?F$ogIm"Q3eGDeY2 & N1 _A2=qko/ɠL®wlT9 \(5bJp`տY'7vVX.VgGu&Է7l91Ck&'FpXzwcf{?oDb%HkUqVj*Hd|Ca|$Iiy:MܹqJ4iA c EZa)e\h/]xǼb+SB^X. :r6b.Vk5p 'BZPĬMk`ED+!\T .Ic~"%ߊ-XI߿6g!Nݫ;;t 91Q(P6!K/ 'a4pI3>zf2 ""T/3tӹ[ci5npsOՙ1&$ۯKw~Y]1|s.3lnVP{lB,8~нZ;jy=w$ 15k}'d 4~292Uwht`=.H{hB^z\=]z ԶN^QyD)/x>pۨ枛t'dct"e;b᪛:$ɗ\- #QXUTJ.Cix48nzPhb=L)+SGN9HhX?[!a?S╒^Nj|U 4WV= |!GhZp~P>xQf󏟠bBi AW }\(~z9,{w #U"MiﮈX7~βt蓬.ҡ[`AbWҪv&A7`@k%fSM x/~=WKHduD')K.jQR:yމJkM']%6R$ }A8o"Q",ՄbxNG{G$? L'CdLCT01&J}}3|Ѣד\A.3iKe͐T YRTvPTE`8HFE\us5]I;PWu捣S]0n^!9,ZG,6I adٱzVN+~$(/xF'UٓIkS,&̷$x!|q.¬}Q15=ǔ8唝I'P{%OCC|%(篈>K޷ #͕LQwsXK*B흴Ww@h@'[ZpC#,6[#R":<2D0ْ֧kc:\ Ea7dmFb2pt@ z捎4!zB3\2R ]>1͘.E7'*:p|rtz2h B"vQ%o寧[96: ptmy |Ԙ&I}[ x2y჈V Yq07T`yM|,r/'gׁp-)ޭ1 bl*+g Lfjgߖi'OزK%$4FT(gR~91ƩtT7=+ qKug#.)Y{"!Q90NRGj`RjύhPCR((59S;K冃a$8۶]Ö \ q{#Ueb,nA-|Ÿ́FB'BҎPeڝX?:_(VU'vX|^~]-6KqݽIaG-` L$kLB#5IcD~-cB't_$F71"@dSlu,q,eU_,;,>*@bfG#ĀW \bUS%{',<|;MQ@'wԚK)G-ic_iPc6Erk+Rqz sRHSt)XԎғ= zöGlނ#Ĩ'6!Y+q첉g7M%Hܰ6QZ4E̵ 3ճ=[u2PB% DQ+ȉ?}%6~UK2a1W+ CX3]_,y 4%|jei 4}-CZw"|^J5|ؕKtC ƻЬhg[TN3]-x[5*Rqr7e.ӺBJNzop=MiQKբFp2czpk~ljT $Y靫 =e޽ sz)XɅ"B g"a@w//L-}>zi KMb Ϙz'#a)!+@$gxL+anw,+fF[e2Z2Z?$Q;KtA]x+QSlA'BCHabgS1+XXL4'Z=y 0y=Պ̽{VN'ede@_,bޛ[@gGlc݃(ʖ+jÞ F^ *cWϪ;@yxuᘾ93w,a&tI;+&`| "fUgJ}4Q,|x=Gv$ƥ|ZXsa.w!eIci#zVCBQZ[\M昞gmaMX@KWam5ER:PK.߸Jb-2P=*͏$ġICXYSEpI}mYm?&yh Q,yhKb4`\8I8A闦жAwf`!t|hZ0pY$P+9X ̃dWg. q4i4v$ʣz; ՕB-Y>]ʪ+Ųj*}Ү|K+l~$5q"xSHe_!p&0,kb9BTb~U`>)"1ne'L7]xˢmB{udB̘RUx#t!Y-2O[GMBG2. DiT :k}CMK|EyL9Dl\!g],&_u&91f)u>+!wz&E1o$r2Y'hj6G=^Ky,0^aoPQ -n5٩jC/G'Fb `ܣn|^{#,IԔK^a.f۽j ߯@Qw}^ 46fT.,A 8P _SDin N T:60.z['@_)T}X ҧ")A M\cTYa\vZfN &t6~EP ƌi %=Y|ܱng*Ls!e |D}xW7V9nAgXiHo=vT"hx fD])P/Fy:pbGɍX1c@96 k iGOKMʘQ!zWnk0#̡A)zٻ;Y{2۫X4Xk+BD_vA]'@2n4 0KBDRHae7RKW#P6%=/OL6 .ǂH!~ܡw+i\83=r := (qrmlw$@R\MiGȋSJ"5p5"W6~v-?@/,RgH_?YHz(kڽN]Fyc0[-PۇQMqJ4樻=սA-SPYf\|omW}`@)"wz-AȩJ驡qKsH+E{eg lw]Lk 2,-pv01/OX. x},(Zā"Y)Vu0aݑnݒѐQ*yxvw?3is(OzGٔVƱ{s`UWNAopHO:ofPV9㹰aˇu6"fI4ʨ5Ih.l(ێ$}C}u2s2 JbexS~0v1ĬoՇj r!ї%[_weΪWhxL!h&]y{Zhj~0`$bT $dVksnڔS Ocr2mSrgITssI!Y,&{tq9Z!y- Oia6acǥA<͂#hexp*Bv !yq Y]+ppye`gJz(Egj!ZsZbb׌SLQ6Y;Y^|Dkav2eFIkr,Zu{y;nMb*C(I ߩJj:{Тt̂Qz@yLi۴ ;:b^/ma->MuQ"EP8Oxʽ}YdPl%O[8?|Q e| Me9i؁]2XK>E4_Hp j igl'>Z(2eU/+IY`$Т'woE5}DJAӭo5nYJʞz'&/ ;Rb0dnPÆ\!.Vڈ YAOUM{Z&*T vj:dH׫^y$ pJn K:`x|a E/<["V@OC?w2iݷ~W c3ĻN("6 ¢గAOj!^d>4(yC"*Q)OFxo[9WhDJVQSv-p?b)d- ҔY=> J}e:8+,ZٲC1,Ce-;: łExOn[.=-yM+ 3^#L꽡%")Ÿve`Ah!JY|♓,:4| |\GXX (l.+r\ӵjyq$<tT~.\?vC[>gumsBˆd2&鲌)~jP@4VWo^~70۞ϩTLs^,W`Kw$uε5њ KkpE:\ʣlKaI-ؼ(RlqoWn-Erqv9mLo.JX0:SԹ=fxe4޵r@ЛKnVwٺ D9jw;ϩ{H ^)Ħ~NEy_mm^J ! c{xT,Revrv-AEX u]{FgfSHLD&SOhW| 'A+C4.(I'*p=E`ҧZ ꛃa-F=$veI K'V;&vzoU6CMT'~0{hʳV@y݅P΃/g?Pשk=$I8_6S&>2Et7([$ӡ`y)ݫ/ϽOۘM^y.C7@{9㺨ZM h!]d-hsИDdX cb󉯕L@TAvssv @q^4m$+ GqVUqqf#N?JMG5<)SPc' dOh[llmY&eKXk*dx(H+:b0ܽ˾SIKOnjaKIHG :V~pe1h̫V$T _t2Vͣ_ToDx.L{*B5_''pEZ% ~jPtPVOkVofxXgآ/a:9[uܼnCM߅LoOWC`=lFb?F}2)w3v;9dӯ>ֺ`1WU8ew?[D<ʼn~]Z/9u"U O6%R~b]z7-yw^ֱJ)"ENj %!&p^\ꅲ1u*pW&LG+I2i& h||8g/ =:k5HFUS9᣽s>,V˅ghw%i-wZ 1Ԕȑre^>/#)YƔ >2\n;ab$~vDsv/ALM8v|LجE p04AcZbfg}w*'SQV h733k{|6m>6ֽ`FQrPaajO2QtYj[>}ᠳ^>zkX/ۀq)ۢB|;kF -nZvr^n=7&#e\[~m  GUe3͝E3~k\,0bټ]N ŇHIU:KMUa ,[8y3L d,b^/ohj=~Z,mKAqT#G FЌѩ3j\P=A;C-D(ݻ3׍>|+gZ@DD=` Q a@\ 2~Q Ӄ^ U:Qz|5 F@)nJ~_g.}K)ն(E9e2##oDQV-_po}gH$O*>^$`  YZ