python2-cffi-debuginfo-1.13.2-lp152.2.3.1 4>$  Apa#)/=„bݤ TjA}[XEzo a %^G5מmSfUI(%ڀn1fI[kAC{gR/&-@F\op)皷^LI~*g|R:, _'JJBhfLF{'Bgb?4zk[X);78+'%d&)-{W '^d)Hc4aea2083ac90147f19ec75648f516d3104419f4440d89fefba62744522b04b5dca4267f7b092f401f387b0b9c7311f79e74e8bd̉a#)/=„ @U&"l렶}/.;ᏕCԉytq&hk61/s)kC3o<",KEir\7 YaH[ *߅ne?AvZ&J:+ijѾvϜ [y#g.f$)YpC.c_,i]*+~c,628ouH287>B8J\#]_ϴ%[ ⴭ>#]vqLW{d7E}eڞ =aśO1xӓ,>p@uP?u@ * U +48 Qc         N   0 b  0D(89l:FoGo Ho Ip Xp Yp\ph ]p ^qJbrcrds]esbfselsgus| vswtT xt| ytztttttttu<python2-cffi-debuginfo1.13.2lp152.2.3.1Debug information for package python2-cffiThis package provides debug information for package python2-cffi. Debug information is useful when developing applications that use this package or when debugging this package.a#lamb27wopenSUSE Leap 15.2openSUSEMIThttp://bugs.opensuse.orgDevelopment/Debughttp://cffi.readthedocs.orglinuxx86_64AowAAAAAAA큤a#a#a#a#a#a#a#a#a#a#b0fdba2f6d4a4c1a1db75bbd379ed5f52aa6062cb1629327ad7aeeda3b83eda5../../../../../usr/lib64/python2.7/site-packages/_cffi_backend.so../../../../../usr/lib/debug/usr/lib64/python2.7/site-packages/_cffi_backend.so-1.13.2-lp152.2.3.1.x86_64.debugrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython-cffi-1.13.2-lp152.2.3.1.src.rpmdebuginfo(build-id)python2-cffi-debuginfopython2-cffi-debuginfo(x86-64)    python-cffi-debuginfo(x86-64)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)1.13.2-lp152.2.3.13.0.4-14.6.0-14.0-15.2-14.14.1]҇]\8\\zp@[@[$@[@[:@[ZTomáš Chvátal Todd R John Vandenberg Ondřej Súkup mcepl@suse.commcepl@suse.commcepl@suse.commcepl@suse.comMatěj Cepl arun@gmx.dearun@gmx.detchvatal@suse.comarun@gmx.desean.marlow@suse.comsean.marlow@suse.comtbechtold@suse.comjmatejek@suse.comjmatejek@suse.comjmatejek@suse.combadshah400@gmail.comjmatejek@suse.combadshah400@gmail.comjmatejek@suse.commichael@stroeder.comp.drouand@gmail.combenoit.monin@gmx.frmcihar@suse.cz- Update to 1.13.2: * re-release because the Linux wheels came with an attached version of libffi that was very old and buggy - Update to 1.13.1: * deprecate the way to declare in cdef() a global variable with only void *foo;. You should always use a storage class, like extern void *foo; or maybe static void *foo;. These are all equivalent for the purposes of cdef(), but the reason for deprecating the bare version is that (as far as I know) it would always be mistake in a real C header. * fix the regression RuntimeError: found a situation in which we try to build a type recursively. * fixed issue #427 where a multithreading mistake in the embedding logic initialization code would cause deadlocks on CPython 3.7.- Update to 1.13.0: * No changelog provided upstream- Update to 1.12.3 * Fix for nested struct types that end in a var-sized array (#405). * Add support for using U and L characters at the end of integer constants in ffi.cdef() (thanks Guillaume). * More 3.8 fixes.- Remove test suite exception which was fixed by 7a76a38153*.patch - Add doc/*/*.rst to %doc- update to 1.12.3 - drop patches: 3184b0a675fc425b821b528d7fdf744b2f08dadf.patch 7a76a381534012af4790e815140d1538510b7d93.patch e2e324a2f13e3a646de6f6ff03e90ed7d37e2636.patch * Direct support for pkg-config. * ffi.from_buffer() takes a new optional first argument that gives the array type of the result. It also takes an optional keyword argument require_writable to refuse read-only Python buffers. * ffi.new(), ffi.gc() or ffi.from_buffer() cdata objects can now be released at known times, either by using the with keyword or by calling the new ffi.release(). * Accept an expression like ffi.new("int[4]", p) if p is itself another cdata int[4]. * CPython 2.x: ffi.dlopen() failed with non-ascii file names on Posix * CPython: if a thread is started from C and then runs Python code (with callbacks or with the embedding solution), then previous versions of cffi would contain possible crashes and/or memory leaks. * Support for ffi.cdef(..., pack=N) where N is a power of two.- Add 7a76a381534012af4790e815140d1538510b7d93.patch to fix bsc#1111657 (we need use to proper void returning function not to corrupt memory in tests).- Fix calling of py.test executor.- Add 3184b0a675fc425b821b528d7fdf744b2f08dadf.patch as a workaround against https://bitbucket.org/cffi/cffi/issues/378/ (possible bug in GCC, see https://bugzilla.redhat.com/1552724).- Remove ignore-tests.patch -- testing what will happen - Add e2e324a2f13e3a646de6f6ff03e90ed7d37e2636.patch from upstream to remove some warnings.- Switch off falling tests with new patch ignore-tests.patch instead of -k parameter for py.test. https://bitbucket.org/cffi/cffi/issues/384/- update to version 1.11.5: * Issue #357: fix ffi.emit_python_code() which generated a buggy Python file if you are using a struct with an anonymous union field or vice-versa. * Windows: ffi.dlopen() should now handle unicode filenames. * ABI mode: implemented ffi.dlclose() for the in-line case (it used to be present only in the out-of-line case). * Fixed a corner case for setup.py install --record=xx --root=yy with an out-of-line ABI module. Also fixed Issue #345. * More hacks on Windows for running CFFI’s own setup.py. * Issue #358: in embedding, to protect against (the rare case of) Python initialization from several threads in parallel, we have to use a spin-lock. On CPython 3 it is worse because it might spin-lock for a long time (execution of Py_InitializeEx()). Sadly, recent changes to CPython make that solution needed on CPython 2 too. * CPython 3 on Windows: we no longer compile with Py_LIMITED_API by default because such modules cannot be used with virtualenv. Issue [#350] mentions a workaround if you still want that and are not concerned about virtualenv: pass a define_macros=[("Py_LIMITED_API", None)] to the ffibuilder.set_source() call.- specfile: * delete patch cffi-loader.patch; included upstream - update to version 1.11.4: * Windows: reverted linking with python3.dll, because virtualenv does not make this DLL available to virtual environments for now. See Issue #355. On Windows only, the C extension modules created by cffi follow for now the standard naming scheme foo.cp36-win32.pyd, to make it clear that they are regular CPython modules depending on python36.dll. - changes from version 1.11.3: * Fix on CPython 3.x: reading the attributes __loader__ or __spec__ from the cffi-generated lib modules gave a buggy SystemError. (These attributes are always None, and provided only to help compatibility with tools that expect them in all modules.) * More Windows fixes: workaround for MSVC not supporting large literal strings in C code (from ffi.embedding_init_code(large_string)); and an issue with Py_LIMITED_API linking with python35.dll/python36.dll instead of python3.dll. * Small documentation improvements.- Add patch cffi-loader.patch to fix bsc#1070737 - Sort out with spec-cleaner- update to version 1.11.2: * Fix Windows issue with managing the thread-state on CPython 3.0 to 3.5- Update pytest in spec to add c directory tests in addition to testing directory. - Omit test_init_once_multithread tests as they rely on multiple threads finishing in a given time. Returns sporadic pass/fail within build. - Update to 1.11.1: * Fix tests, remove deprecated C API usage * Fix (hack) for 3.6.0/3.6.1/3.6.2 giving incompatible binary extensions (cpython issue #29943) * Fix for 3.7.0a1+- Update to 1.11.0: * Support the modern standard types char16_t and char32_t. These work like wchar_t: they represent one unicode character, or when used as charN_t * or charN_t[] they represent a unicode string. The difference with wchar_t is that they have a known, fixed size. They should work at all places that used to work with wchar_t (please report an issue if I missed something). Note that with set_source(), you need to make sure that these types are actually defined by the C source you provide (if used in cdef()). * Support the C99 types float _Complex and double _Complex. Note that libffi doesn’t support them, which means that in the ABI mode you still cannot call C functions that take complex numbers directly as arguments or return type. * Fixed a rare race condition when creating multiple FFI instances from multiple threads. (Note that you aren’t meant to create many FFI instances: in inline mode, you should write ffi = cffi.FFI() at module level just after import cffi; and in out-of-line mode you don’t instantiate FFI explicitly at all.) * Windows: using callbacks can be messy because the CFFI internal error messages show up to stderr—but stderr goes nowhere in many applications. This makes it particularly hard to get started with the embedding mode. (Once you get started, you can at least use @ffi.def_extern(onerror=...) and send the error logs where it makes sense for your application, or record them in log files, and so on.) So what is new in CFFI is that now, on Windows CFFI will try to open a non-modal MessageBox (in addition to sending raw messages to stderr). The MessageBox is only visible if the process stays alive: typically, console applications that crash close immediately, but that is also the situation where stderr should be visible anyway. * Progress on support for callbacks in NetBSD. * Functions returning booleans would in some case still return 0 or 1 instead of False or True. Fixed. * ffi.gc() now takes an optional third parameter, which gives an estimate of the size (in bytes) of the object. So far, this is only used by PyPy, to make the next GC occur more quickly (issue #320). In the future, this might have an effect on CPython too (provided the CPython issue 31105 is addressed). * Add a note to the documentation: the ABI mode gives function objects that are slower to call than the API mode does. For some reason it is often thought to be faster. It is not! - Update to 1.10.1: * Fixed the line numbers reported in case of cdef() errors. Also, I just noticed, but pycparser always supported the preprocessor directive # 42 "foo.h" to mean “from the next line, we’re in file foo.h starting from line 42”, which it puts in the error messages.- update to 1.10.0: * Issue #295: use calloc() directly instead of PyObject_Malloc()+memset() to handle ffi.new() with a default allocator. Speeds up ffi.new(large-array) where most of the time you never touch most of the array. * Some OS/X build fixes (“only with Xcode but without CLT”). * Improve a couple of error messages: when getting mismatched versions of cffi and its backend; and when calling functions which cannot be called with libffi because an argument is a struct that is “too complicated” (and not a struct pointer, which always works). * Add support for some unusual compilers (non-msvc, non-gcc, non-icc, non-clang) * Implemented the remaining cases for ffi.from_buffer. Now all buffer/memoryview objects can be passed. The one remaining check is against passing unicode strings in Python 2. (They support the buffer interface, but that gives the raw bytes behind the UTF16/UCS4 storage, which is most of the times not what you expect. In Python 3 this has been fixed and the unicode strings don’t support the memoryview interface any more.) * The C type _Bool or bool now converts to a Python boolean when reading, instead of the content of the byte as an integer. The potential incompatibility here is what occurs if the byte contains a value different from 0 and 1. Previously, it would just return it; with this change, CFFI raises an exception in this case. But this case means “undefined behavior” in C; if you really have to interface with a library relying on this, don’t use bool in the CFFI side. Also, it is still valid to use a byte string as initializer for a bool[], but now it must only contain \x00 or \x01. As an aside, ffi.string() no longer works on bool[] (but it never made much sense, as this function stops at the first zero). * ffi.buffer is now the name of cffi’s buffer type, and ffi.buffer() works like before but is the constructor of that type. * ffi.addressof(lib, "name") now works also in in-line mode, not only in out-of-line mode. This is useful for taking the address of global variables. * Issue #255: cdata objects of a primitive type (integers, floats, char) are now compared and ordered by value. For example, compares equal to 42 and compares equal to b'A'. Unlike C, does not compare equal to ffi.cast("unsigned int", -1): it compares smaller, because -1 < 4294967295. * PyPy: ffi.new() and ffi.new_allocator()() did not record “memory pressure”, causing the GC to run too infrequently if you call ffi.new() very often and/or with large arrays. Fixed in PyPy 5.7. * Support in ffi.cdef() for numeric expressions with + or -. Assumes that there is no overflow; it should be fixed first before we add more general support for arbitrary arithmetic on constants.- do not generate HTML documentation for packages that are indirect dependencies of Sphinx (see docs at https://cffi.readthedocs.org/ )- update to 1.9.1 - Structs with variable-sized arrays as their last field: now we track the length of the array after ffi.new() is called, just like we always tracked the length of ffi.new("int[]", 42). This lets us detect out-of-range accesses to array items. This also lets us display a better repr(), and have the total size returned by ffi.sizeof() and ffi.buffer(). Previously both functions would return a result based on the size of the declared structure type, with an assumed empty array. (Thanks andrew for starting this refactoring.) - Add support in cdef()/set_source() for unspecified-length arrays in typedefs: typedef int foo_t[...];. It was already supported for global variables or structure fields. - I turned in v1.8 a warning from cffi/model.py into an error: 'enum xxx' has no values explicitly defined: refusing to guess which integer type it is meant to be (unsigned/signed, int/long). Now I’m turning it back to a warning again; it seems that guessing that the enum has size int is a 99%-safe bet. (But not 100%, so it stays as a warning.) - Fix leaks in the code handling FILE * arguments. In CPython 3 there is a remaining issue that is hard to fix: if you pass a Python file object to a FILE * argument, then os.dup() is used and the new file descriptor is only closed when the GC reclaims the Python file object—and not at the earlier time when you call close(), which only closes the original file descriptor. If this is an issue, you should avoid this automatic convertion of Python file objects: instead, explicitly manipulate file descriptors and call fdopen() from C (...via cffi). - When passing a void * argument to a function with a different pointer type, or vice-versa, the cast occurs automatically, like in C. The same occurs for initialization with ffi.new() and a few other places. However, I thought that char * had the same property—but I was mistaken. In C you get the usual warning if you try to give a char * to a char ** argument, for example. Sorry about the confusion. This has been fixed in CFFI by giving for now a warning, too. It will turn into an error in a future version. - Issue #283: fixed ffi.new() on structures/unions with nested anonymous structures/unions, when there is at least one union in the mix. When initialized with a list or a dict, it should now behave more closely like the { } syntax does in GCC. - CPython 3.x: experimental: the generated C extension modules now use the “limited API”, which means that, as a compiled .so/.dll, it should work directly on any version of CPython >= 3.2. The name produced by distutils is still version-specific. To get the version-independent name, you can rename it manually to NAME.abi3.so, or use the very recent setuptools 26. - Added ffi.compile(debug=...), similar to python setup.py build --debug but defaulting to True if we are running a debugging version of Python itself. - Removed the restriction that ffi.from_buffer() cannot be used on byte strings. Now you can get a char * out of a byte string, which is valid as long as the string object is kept alive. (But don’t use it to modify the string object! If you need this, use bytearray or other official techniques.) - PyPy 5.4 can now pass a byte string directly to a char * argument (in older versions, a copy would be made). This used to be a CPython-only optimization. - ffi.gc(p, None) removes the destructor on an object previously created by another call to ffi.gc() - bool(ffi.cast("primitive type", x)) now returns False if the value is zero (including -0.0), and True otherwise. Previously this would only return False for cdata objects of a pointer type when the pointer is NULL. - bytearrays: ffi.from_buffer(bytearray-object) is now supported. (The reason it was not supported was that it was hard to do in PyPy, but it works since PyPy 5.3.) To call a C function with a char * argument from a buffer object—now including bytearrays—you write lib.foo(ffi.from_buffer(x)). Additionally, this is now supported: p[0:length] = bytearray-object. The problem with this was that a iterating over bytearrays gives numbers instead of characters. (Now it is implemented with just a memcpy, of course, not actually iterating over the characters.) - C++: compiling the generated C code with C++ was supposed to work, but failed if you make use the bool type (because that is rendered as the C _Bool type, which doesn’t exist in C++). - help(lib) and help(lib.myfunc) now give useful information, as well as dir(p) where p is a struct or pointer-to-struct. - drop upstreamed python-cffi-avoid-bitshifting-negative-int.patch- update for multipython build- Add python-cffi-avoid-bitshifting-negative-int.patch to actually fix the "negative left shift" warning by replacing bitshifting in appropriate places by bitwise and comparison to self; patch taken from upstream git. Drop cffi-1.5.2-wnoerror.patch: no longer required.- disable "negative left shift" warning in test suite to prevent failures with gcc6, until upstream fixes the undefined code in question (boo#981848, cffi-1.5.2-wnoerror.patch)- Update to version 1.6.0: * ffi.list_types() * ffi.unpack() * extern “Python+C” * in API mode, lib.foo.__doc__ contains the C signature now. * Yet another attempt at robustness of ffi.def_extern() against CPython’s interpreter shutdown logic.- update to 1.5.2 * support for cffi-based embedding * more robustness for shutdown logic- update to version 1.4.2: * Nothing changed from v1.4.1. - changes from version 1.4.1: * Fix the compilation failure of cffi on CPython 3.5.0. (3.5.1 works; some detail changed that makes some underscore-starting macros disappear from view of extension modules, and I worked around it, thinking it changed in all 3.5 versions—but no: it was only in 3.5.1.) - changes from version 1.4.0: * A better way to do callbacks has been added (faster and more portable, and usually cleaner). It is a mechanism for the out-of-line API mode that replaces the dynamic creation of callback objects (i.e. C functions that invoke Python) with the static declaration in cdef() of which callbacks are needed. This is more C-like, in that you have to structure your code around the idea that you get a fixed number of function pointers, instead of creating them on-the-fly. * ffi.compile() now takes an optional verbose argument. When True, distutils prints the calls to the compiler. * ffi.compile() used to fail if given sources with a path that includes "..". Fixed. * ffi.init_once() added. See docs. * dir(lib) now works on libs returned by ffi.dlopen() too. * Cleaned up and modernized the content of the demo subdirectory in the sources (thanks matti!). * ffi.new_handle() is now guaranteed to return unique void * values, even if called twice on the same object. Previously, in that case, CPython would return two cdata objects with the same void * value. This change is useful to add and remove handles from a global dict (or set) without worrying about duplicates. It already used to work like that on PyPy. This change can break code that used to work on CPython by relying on the object to be kept alive by other means than keeping the result of ffi.new_handle() alive. (The corresponding warning in the docs of ffi.new_handle() has been here since v0.8!) - changes from version 1.3.1: * The optional typedefs (bool, FILE and all Windows types) were not always available from out-of-line FFI objects. * Opaque enums are phased out from the cdefs: they now give a warning, instead of (possibly wrongly) being assumed equal to unsigned int. Please report if you get a reasonable use case for them. * Some parsing details, notably volatile is passed along like const and restrict. Also, older versions of pycparser mis-parse some pointer-to-pointer types like char * const *: the “const” ends up at the wrong place. Added a workaround. - changes from version 1.3.0: * Added ffi.memmove(). * Pull request #64: out-of-line API mode: we can now declare floating-point types with typedef float... foo_t;. This only works if foo_t is a float or a double, not long double. * Issue #217: fix possible unaligned pointer manipulation, which crashes on some architectures (64-bit, non-x86). * Issues #64 and #126: when using set_source() or verify(), the const and restrict keywords are copied from the cdef to the generated C code; this fixes warnings by the C compiler. It also fixes corner cases like typedef const int T; T a; which would previously not consider a as a constant. (The cdata objects themselves are never const.) * Win32: support for __stdcall. For callbacks and function pointers; regular C functions still don’t need to have their calling convention declared. * Windows: CPython 2.7 distutils doesn’t work with Microsoft’s official Visual Studio for Python, and I’m told this is not a bug. For ffi.compile(), we removed a workaround that was inside cffi but which had unwanted side-effects. Try saying import setuptools first, which patches distutils...- Update to version 1.2.1 * No changes entry for this version - Changes from version 1.2.0 * Out-of-line mode: ``int a[][...];`` can be used to declare a structure field or global variable which is, simultaneously, of total length unknown to the C compiler (the ``a[]`` part) and each element is itself an array of N integers, where the value of N *is * known to the C compiler (the ``int`` and ``[...]`` parts around it). Similarly, ``int a[5][...];`` is supported (but probably less useful: remember that in C it means ``int (a[5])[...];``). * PyPy: the ``lib.some_function`` objects were missing the attributes ``__name__``, ``__module__`` and ``__doc__`` that are expected e.g. by some decorators-management functions from ``functools``. * Out-of-line API mode: you can now do ``from _example.lib import x`` to import the name ``x`` from ``_example.lib``, even though the ``lib`` object is not a standard module object. (Also works in ``from _example.lib import *``, but this is even more of a hack and will fail if ``lib`` happens to declare a name called ``__all__``. Note that `` *`` excludes the global variables; only the functions and constants make sense to import like this.) * ``lib.__dict__`` works again and gives you a copy of the dict---assuming that ``lib`` has got no symbol called precisely ``__dict__``. (In general, it is safer to use ``dir(lib)``.) * Out-of-line API mode: global variables are now fetched on demand at every access. It fixes issue #212 (Windows DLL variables), and also allows variables that are defined as dynamic macros (like ``errno``) or ``__thread`` -local variables. (This change might also tighten the C compiler's check on the variables' type.) * Issue #209: dereferencing NULL pointers now raises RuntimeError instead of segfaulting. Meant as a debugging aid. The check is only for NULL: if you dereference random or dead pointers you might still get segfaults. * Issue #152: callbacks__: added an argument ``ffi.callback(..., onerror=...)``. If the main callback function raises an exception and ``onerror`` is provided, then ``onerror(exception, exc_value, traceback)`` is called. This is similar to writing a ``try: except:`` in the main callback function, but in some cases (e.g. a signal) an exception can occur at the very start of the callback function---before it had time to enter the ``try: except:`` block. * Issue #115: added ``ffi.new_allocator()``, which officializes support for `alternative allocators`__. .. __: using.html#callbacks .. __: using.html#alternative-allocators- update to version 1.1.0 (fate#318838): * Out-of-line API mode: we can now declare integer types with typedef int... foo_t;. The exact size and signedness of foo_t is figured out by the compiler. * Out-of-line API mode: we can now declare multidimensional arrays (as fields or as globals) with int n[...][...]. Before, only the outermost dimension would support the ... syntax. * Out-of-line ABI mode: we now support any constant declaration, instead of only integers whose value is given in the cdef. Such “new” constants, i.e. either non-integers or without a value given in the cdef, must correspond to actual symbols in the lib. At runtime they are looked up the first time we access them. This is useful if the library defines extern const sometype somename;. * ffi.addressof(lib, "func_name") now returns a regular cdata object of type “pointer to function”. You can use it on any function from a library in API mode (in ABI mode, all functions are already regular cdata objects). To support this, you need to recompile your cffi modules. * Issue #198: in API mode, if you declare constants of a struct type, what you saw from lib.CONSTANT was corrupted. * Issue #196: ffi.set_source("package._ffi", None) would incorrectly generate the Python source to package._ffi.py instead of package/_ffi.py. Also fixed: in some cases, if the C file was in build/foo.c, the .o file would be put in build/build/foo.o. - additional changes from version 1.0.3: * Same as 1.0.2, apart from doc and test fixes on some platforms - additional changes from version 1.0.2: * Variadic C functions (ending in a ”...” argument) were not supported in the out-of-line ABI mode. This was a bug—there was even a (non-working) example doing exactly that! - additional changes from version 1.0.1: * ffi.set_source() crashed if passed a sources=[..] argument. Fixed by chrippa on pull request #60. * Issue #193: if we use a struct between the first cdef() where it is declared and another cdef() where its fields are defined, then this definition was ignored. * Enums were buggy if you used too many ”...” in their definition - additional changes from version 1.0.0: * The main news item is out-of-line module generation: + for ABI level, with ffi.dlopen() + for API level, which used to be with ffi.verify(), now deprecated - add python-cffi-rpmlintrc: cffi specifically installs C headers in site-packages - add new test dependency gcc-c++ - skip the tests on SLE11 since they fail on i586- Update to 0.9.2 * No upstream changelog See https://bitbucket.org/cffi/cffi/commits/all for a list of commitslamb27 1629736474 5ab512e4903f90a36c21e61f956314091cb052111.13.2-lp152.2.3.11.13.2-lp152.2.3.1debug.build-id5ab512e4903f90a36c21e61f956314091cb05211b512e4903f90a36c21e61f956314091cb05211.debugusrlib64python2.7site-packages_cffi_backend.so-1.13.2-lp152.2.3.1.x86_64.debug/usr/lib//usr/lib/debug//usr/lib/debug/.build-id//usr/lib/debug/.build-id/5a//usr/lib/debug/usr//usr/lib/debug/usr/lib64//usr/lib/debug/usr/lib64/python2.7//usr/lib/debug/usr/lib64/python2.7/site-packages/-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.opensuse.org/openSUSE:Maintenance:16859/openSUSE_Leap_15.2_Update/7477fbe0ea57af7730775a2c3ad478a8-python-cffi.openSUSE_Leap_15.2_Updatecpioxz5x86_64-suse-linuxdirectoryELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=5ab512e4903f90a36c21e61f956314091cb05211, with debug_info, not strippedP f!pڞZǾpython-cffi-debugsource(x86-64)1.13.2-lp152.2.3.1utf-8eb76cd66fa89b1feef3c01676e64527677fcf00e0e93114a5698381d8bc3eb59?7zXZ !t/l] crt:bLL ٹ׾FhzA2+%ȓ~! pa댽X~[u?z$yO&IԖ"O-r?AW.ˁRE\5%6+FL0C(Ɖye 0Y ܾT6nA@bFxwT>8X ,E8R/FGCI3z@歠؟"$]Z2kjyXlÀK? Թ ׁvG]qdy Sćh$e{[fxp `zꍦN&'P]=a"rަښɏ7v؜oW,`b|\imqj~(50-|BO-Dgf?P*%nYe- 5l z_~*@ c5,}A6BTxzkV/ֶ .m3S ÚN4aܼR1mSp?xo GL""".-GU-9.|Ӂ?g.P_Rt͜o(t}Ӑ% |`B5HCXb'C)czH.JܝPX\vbq.jU)]K%~wB3K[O&Wj[3aVH]@rF~e-j7Lix ~ t=[]~#]{X`UKa16P< )Q Ya`]DbLtlTXw߶6<RERVKpD*f$~]a qGjAOy?I:eg¨iOԧ>PhMXɄ/●ɻjǬشCPZ?3:W]|'dKJ4`nZ >XRY ͒A^῰ɗ>>RNAY M`fZL;2=FK;{c- oL,~}!Qȵp]tαQ5Fe:9> zK#F)nX|ᕜU j\-]sOHV -"AҠ ;_u~kݏ/QBԵ%*|XݥY[Y=9Ue4Έ:tl ygG%.YZkQ+C828EH# |nGTIP,s{ 쿅a&8`EDJ8j @hO QD~Lj&o܈^RN>lI.xȣVsbP5$)Okjuk]p A.l_)/t[!eSlºƦg^"sǜIO1Qݪ/:QeIq_(`z9!$=%\?#`vw*">@[]Jfյk\t!v U]lIV;K9f.80(Ae@P+V{ s^ mt7xTzBi+Y^ܒquR{A_Mt H;+L`#\lku_z;:pU"ZY2=_O0:5#a֔ tSO,-0CN q#Y@>OU9snZ0x;9"qC>@fKӥ.j&joDw"'9p jnrK 1RA#}KfJ_n8McR ]RRк`!qV#?>$4G1@3l71t;#.Σ}/,ʀ&;_sm!*f$Hf^QX|菷uq?BԄ==Rԙm,H\Us<(?*LRLJ-sgs;WХ%Bi[C_ O*tLRIP[uC%ۢkŲY _lczQ DΣk]yxj|6NeeQ/hC\.nzcE%)n E>!1 [m2۽$6l7HfEW4)x<&Mn;rUn5򱢧ٙ lcyF}WhOG6͉JSxP_q鈫/|-j5߸x ۟CpCj`h]qRӗ;k8IUKEɉK* oUn DDͺ VU2TD[ n=y 79i u$Թ1Pm+ K䘁Pu^nвi 5chK7{&b9  ]pH2ͪ[+guOo`MwC7DT BGI(eNzr<+bqC!!_pz.:͑$) QWu T<˦~h#XA+ZwhɝtbZtq_osukCQ^I.38X39c$nNYaS"uk6 Өiڶ1֓iMC"q]({:)tO:{i*ےa~.t+y B@Ԗ;:]Z%AأTIzc?kgUa1}$;}}GnN52q4x8Lt4%gT']5=Y{whTF|q -BʪHiZ)/^ɒMq)PG,(?:;ɣpF1$_Xn!a{M ބ-pK"ܗfq(FiHduEŤN>Mq_Jr (Ks !m7ऒ]Xb\&sMOd+kt JhTGXNj9;(/h @bAoZěyF2gl]1DIDpKP& 6**h ]aWn@Blolx&A '_A`z[6Ó:h1?TSplY5JˏQd+˵`ɏN+,[ă>BnA?D]%aݫPV9U# -2C7ܾ4i%!Y߷2" !ojF9rO~}RkXL&[ﯴ>iz}%_z2hb 늛~(w,UV-`5`Hq{jl6:S̺T91C-M[[W!1|bpV4RvR 7J|\z9vT W@"bL&VĪ}RG̔r` @ͱw#ROMH%"On[QGu栆D]$mIa>_olpK.+ZߜZĦsM? $VI5躯V/ͯ) ~{?!(4$iEG늻(-KNTvi6aOvCS6uAW遟iÉ ᅨ+= $@7UHuPT]Vǣ&GXkwUw8_+S tL7-}uZ6L!ІV_LټE20 1ݞJ0 Y p:{ƌu*-\ձYEl琤0^/̈́BMt~zu;)?krA KԜSρ)a/O%-;%e7dRh2d{rJp'n·R?nclpKo:J?ゔe`7/- )'U"ko_ooa3 "1e z>гMS8-ha_O֯j){#M ߾I!="{%`M&J<ێByf_UPfzp{tD=@'z2l1+n-B_'Q}cYFȮxYm}[f&Pfukb _x2r"rX˕ fybp#5aUqxf^h[X4-?j3#gmp6a5hʣ 2BH]Űϥoe+Օ0 >Do]`sJWG@o?":I~>+嗭\'4- ކ螡| OmC1q$ VMbDܐQ} 'H K#ρJ5ģ, BI]lI#"0nO4TR9$hx,48hmg _ %ɋ4(j.@>' Ҙ&͚;Ms6)('`FGB/]t\bͿ;M1YY%[ˮOS[5OGj궱C|n#qVf*a`e~%+\ Foa!VM.?jȶŏ~eHj` #xjeXq l&GV,B݄&Bz@ !S bMsahK܃pStI<r47L'!6_Lԓd"7gwJk:EyYDTע2pc~B> z* zv2 ZyPl5Dڢ//vg?,'Joh" >e(б/:+(Ya&v}5oeaFB#Au\ 3\<L9b /%"c.~#Gsn:u[E߯;Geq1j*9ն¾+`lEg~ǵ)KLNE/c7S !7T;?}#l`:mfF 6p:֯:8q<@f5FXu٭j}Ί*{;Lq !(N"v.zŞiRp?:=W5>yJ Wt.X+)v@m%ERQ_v.J˴6aqjӊpgvؚnskQLڊZ=_0A1eѺlQ\٦י9R՝UX?ig{jX6G\ܰ0Vy ɩD]($/yt_qWYa/@\;[{ DZB>u@ :]?TPhm>J2(%3ҊV͏fԾxF%7/m>|NPtbgpwĔ| -jIBg49&7Ki16͑Y/rҖ 4ڐ*Z}"HX %}E` _J?u2R)x}C c8$ߞEJ FoV;c =;DT$%3 v׋ihu~h`!޿65Er }W% Jtwtv`(Y0xxb>/WTz|e4$ws hr;!8VqeFByc:J+իXkg[h)ÞN?ci]3[u6p'A#cw.P&~WNN ĢɁҾ,_ҝƇ Rq(ZNaLܔfAOg`Cg hb6NCuѥ ^KM輽1c^ꓤƛjC(DpjM$cOGK.*]R.lVYcC}Uw#nd$.TGzcv?2[YO%p%Dž~0oou\?Oɹ䃼# A+\>^+>~]hpx=bS .dfq0 +C#$Cȵ.N+Aq5jrf6InftNfB@.'Q/w>\Y`(Kѓ{B;`O"13ohɞsҟo,.GMYYq5yۿ蜽ހ [?֐lňb nO>ʀh8 , -l8Jm93H%c&. },ϱbZ rP; []N [Uc]z7~ afЄgO,h)83]U@ -Cu+s^#둿 *HĠ~X 'n4ARNrZҷ\3; Ie_:^EײN:voݵZML~gA%sn5!RA{mydt"|CŪ@Kڑ|e*[ c˺64JO FwAyl-qslÊl I7jL0~O>]o' ]% u~kAӽߞԂQj CjQ~{s.\G?8m9@HfHvN>C)¢A=>k& 7u j2 p&2+|L"{A <*E}_,A 頹Iz#l}~ɪ:wK˛9zf;Ypڙ&ׁ>lv+b̈́I7&('BZ9(?dCaSp,WP@[1ex;n91X㵿DF%g\WthI\z6u )/&4ǹӯpX\`%ua4DvKA 2s!ˤG\(=WyIV={&,hAE7rS]If~dy&m ypNge83`pPfbƃG %#O:CU8g6"DK{+eA|Գ`zkN,_FYkjnuރ|/R?V'U1kIr l/ː8ۋmiCOͨa3˃3ۄ$f'F-pmNz~)w쑹%h'Z߷N>e2 s?aSfWUDK–ExY5f~[#DmٞUnא{;P!ohpa,IusM}bı hXX|3nDfpUp(M< QVD涼5%9=1JC R#qTXtS#7=*`q-:#3^u\Eh#Ǻ?q$@V5:(~ A,cRHM}es3_0ܤ;|eff$⛒Ʋ h3Ix,;c+e4J}>O.'T^+їUХ/#~ Y~cgA~ETmTds\ *qU +Bf27<{K=ˁ`s%4.LF8"cu>"+ң9.Xm]"eVVEKKY1߄ <'c"WD=SAvL{_T}RKpGQ&gx#Ijכͱe]gcMݞe1c(oӱuHgu=-AkCvD'l,%SSpDڔXPAa9Zq%Od%u8 *noB\p}ΆFBy o\i>M.z+e!-Br$: If횩:xydԐu-g4^yvw:{'y+N*E t6aX 7yw~ڀ4͖&MNΏ >kZT"u +?TPPv+J`J| 0W+=uo59K.cꭄ4K ڟ^fKFk"9n?O?M4c~]ģ;- $p. ,q:e7G{[5xL1߆j+qwƻ&O(ۇ,'r(K"C\==:yJ(LFZiY@7DZZhە\G~# ѯX~ЎH_q  /@ ~%K٤^YKLvUy+7u"{Ai[L"U;ȲHEKpIHaLEӉ@,U*eMat JI{wi(2'Ew[S9.`*ʿ,r}z1`rb /͊v9=.F~rҴ Nn_[ Ƣ\ c%Lcm6lK&C 3MQdX}0dph(aM`1M%N t,&W-rKn=ɒTTihN{@!v6i}D *W/_}40žЋxjUIWBf_2ZbS*fRƆH E)L_\YSiR1/CGI6NR)'$w=Ry ܗEml8!ƈs ڮc͚SW=vĸ) 2:U2B?yNkt&9zRi;71ܰ%"l>1N±l եB-å+ڐmIXVcW3pe:5C4]ʇh_o48rA^׍<ʢA-0A>:/=Y\I} 1)چBMǂ2:LKXoiRS׭t`V\szI(]PY޾؛)(K2څx5Z1H#EZW&6ER9->Y h]ulIDАdG  }t%) 5l?\s n@ԙ `(_3@{]"JqGXOddBD djpZp]]BgNRFiGƤhj5$Oޗq㏾f.jQTvQӻ.)JSW>d|++4~9DnJP#ꦚ:Œ e 37LQ;+lõ0>`~o@xbϷU̚Sl6<䨴ƒd!U 'Zc7a v'oN:D4?89@Qi~dH-t1di?''. \W^}AM"﹣\6[ۺ@417NJ"s)Ѕp+j N5/DO0Z%v4WQ(?#p Yg#D8>(?{c E\ eU|m. WT{^zh)KjcM0j4zXpamS+aY90J!YTfN78RuֈmsB1gEEDii["j}d%kKt 9p]0+NQ$@"(z?+j>[Q`=xE6 I+V: \@S]GxlYES}*ډyt Wz ǪS \kOT~{sӲ vs,f9~T^Z~y eG(jyD5OﲴA2reh]KT #j[í{DvZ 5ObxfźwGTYba )3E޸^SLJ-/бn@@QH'v"?H.O$j1FE~lLv>pB̂CS9n *l-,ɸnPX%4vUne*`CmQ@ 潸!AДj3~F>SW+z0$5ƍMNM! + <|~(xj?)7q@V<=fu7~䗚 :>Ħ_%+߼*(7\y^233 x&,-l4ZW;۴:}K.ZwͰ[i{(+%sGvm(D!Hb q!6l!#~oo:&=Gϵsu5t#_)(8Ѯ?7#iXtԠLdY,|p\y$E!DɢRPMGUb}$[/ºdޑ;5yRinye'PN0R+_$FQ\7cuYJvU 9YN*:0Os,|)g}b\V\b:]1ׂ/ܥbtLsPЬ:3S#&pՀ׫j=̜z7ů,Dv<# N0l˔="}SzD3p1^uV0'y3[q$S)l韶yZEΑ("R?횉sCv3zM? AgrR\H0Phyz4ۉ)"`bD* (̧EWaXhX+VYwBdf/#;J|g3lr n}4Xv<7}1+7Ud9wVFܽi7ge(4VajS$pӷBy0b))P;Z+AOeQ+!K-P䣒?ܯݔ׆43cFRv6dFAQ*ল'&53ąTOڀYULuRhl6S.8zww@r˖}:s0klF1$ϣ[#݉~zbm6b * JM jNweoRL8!T\)Y ,2: k97 ,;+ZKfn=LWnJRTW?v17o|kĆF`N D4SdkM3fPԅÃ"-jY;pMjV>@5R(2*"hgOW[qoP{iM S@xR`lS]b:܄3Jz hSsehkRQBr X&wT  E,!Y 2u 0.~ +5Wd e><a/\k3|lUv|9 @{rL6ge}i5$ѴIW%>v%b'={n/"fQiҼ[Q @Tc-{CF" QI?NK!m`mEhAjX p6WFu|;cR_e5̉գY)9S=H[#~0®c^Q׾;>[!d:xx./`h T+ |CSy> ƩgI΍T .",-gRG%x9Xn?aVf[`c]w/K"!U5{UïR_,1Tv<)u}>n/D9t5% >lG4T= tS1D!BUf v-a>995sp-?׭V#C:ɵ{/DZ>_Y 9wQfb1σިfdn5jQn4rJ+6#ɁǙ1s>cz6/Vn9+B,ν&ȼW x*IEHbyUJ?>Yb|> h7av:nTy<[R9 θP=uC "CLA!*W$NE!y7)BdTJ3CL#`g'BS;Zws`:Ɖ ĥ9ɟH<1) Nu%n3*a.8v]J88S4TrD3eNo9vnΪBK 85G3Wkɗf胧|oR2~Kpָyb` ґ#َM0RDAєp}BO2Ȑ })k(laXf~Oj]/DUQR~5j+#L^aɼ#E xZpkzyZl?4%l/ D7'g=|1kwլ\9F˹~ |WVbc">&G$ FA5D]`ْW{g+yd?kK!pĩvAWj{;DZc7^kcKf( mKOd3HN/n\Z3my8JBA"<>y"ӻC VTe8~sjss>"f>}TRLMm;` >Lel}ì?tAg}젆jXV7熯E[\1QX=cƥ7"|iH[2S 1v >()Ed/> kI ^G'$K.~ LOVS:rzG`.nz[6_%A=cVF4|^Q5zr|tꠗu$}Vm[ߔwk7wˑmU%;{cwϴ@$έ <W`:М/nTuNP4Xd 9 &X!iӅm|޺|s,?fl?f`ﴣsg.b\[==<̆бH l%݄|l׶ ǖE4wxQkwӍTrF[1YaU-uk#_&R]]zE>Цa|D a\N9e QTi+i?BE~pǙ?ݩ+uIi7{EQK-BhtȾ*kHZp`vʖnNʮXMTD~OᇡY"N AcObv1gEh f.'o&`?W>PL`^u[vR05Īrϲw$RP}mZQɻ N$ޞN8&'llC 8#^!UGQihX9 T%sě<6'.Bo >9a=d4&&z,F*Z.?RbH F|}$%j KO;Js2?, Kcf7Uϻ",DfL3!1R8/_1K:FeŒ->&Sm}7t8ktѫ9)9BxX 7ʑzVyfļXK RU.#oe6aa@Ui ݜa#BpNni6uHdfjS: eon_S5Y(HapCJNwu$ox0| "B b0ɞAwwRV6X0 dEV119CgJ>V[.@U`/P:[زZ=?Prm8lt7Lb͡LmQM'V8)Ra}uRdB:ijnZ'n|1 諙vE dY!cE0wɮM_jϨܒ|Ccy>Lgj{:uY/ć-Q3GyJ2EF{X6METuO;#{~UDR5Ё߮|VpaXmQSD#cW 8/B}@43A t=ކ]ʓYEiYL`!LٽqvD* a9aKC/tz\66N RQvf! ;QQf-kשeaK.N8q!Q_E M1ԘDĩƫ&ktFOnU#TEwWRJ̩SEAy)Ut=XV 6%?'LW۷b?#`+g$Y!\;җb`͛_ˑ!N֬; ]jEtCW ۅHГ6IYL_!&&1 M3-tWsWەZ !B!qqhV ž Yl֜.w{kɼ(,Ұc$x :% 59pֹN˒_C=h\)U'd>`+<&Q6B 30z7)ʮ06ȦM`KxUl&I>( : &JgZCr ܣ8u XtJh̬RI'hꔠwd;[(ª@W]v>f5f51xBE~˽5j g7S}vL@#1 Fk1^iA6@i9OVE{WCa&μO/>7ϭoi3;u|(tcQ*0B FHN@dqJ59<n,Sdu1/z$T:j- RdT1okd+uiv+NنH܌ _~1 +QIG;k&^[#J1<؆Y E$ ~2\Y_8O{eD &L`ߋj3ΒX{W[tI=jsnI匠 CEYfdbܟ$ażP HF+ǜ:1ˀk^c4#3?G"'!vթ&«^sq}R4qcGan*kǜ` [)T3J|bk>Ne|d[+p]櫞%p"\c‰NĔt+e, [7gY^zFbĈAv @QK:=^Li^Rw8D;NE mI/avy>}[@pP&˧ Dԇ Wvr;+skTiI9NEI4-rB3d-|>|#t1b}{Z2젝ӝ+tC**)z4Do:豦o Eod#_RwBHƶH2&YhDl[ 16L)[nJe){ocuw*K(+BG񙦾L8)߂-cdhG8|$v+GwP^NFԨJ9 t뾷uru$oYh:Fh#HB NDL18qGJ\.5=JJ[D f<B\tǝ4cT֑1_{OvV>H\;7rU[VčbYxU[pٌܚNK nez m97? KXbm Mx{˅4#oZa[)g嗢9sZ| 'O7»1jiaY*M@nT sZiU75LBRVM%۪`Y"pAְ0~<^~(E ggoLܯ|]`)jĪa=kya da7O㤲WLJ5jfYA>8B`yH٢OgKgUs t9Bt&Wl09nl️B)bbKA] -1Bf҂z!s)0 {O(}0<+I4%$@~$ bLsrZK?[Z>V΋@GPjVH8Oۢ&Jݰ rfR4ڋ:t*hG"2r_u4s< 5r 7GWgdhN2Rċ7)$)^"J.M*`ydŠ1n nCG.SN +ƀiDi(5.ՈO>,Xq7tw| |2Ԏ"TǼWG{=0Ҡ8eC& "S3\/AlGs@y|t)0mϑCFVd3ks&#\M\W6/{\(wV,Ūx$ fSt$ [ `;Ӏ1;)``![CA-ElaW UR3jYށitlvҥrc ,R 3bXXH#\q'FLK6ENԝ Ŀi8LYM;^+~H A9ۜBPӠrW vV9f `.Ĉ1bkReZޭzQқZ·O. ] :RE1Uq{> Bք{S3!ajO -2ܖ1#G!>+`cBILǢj@YV4u-81T r؝ORk(uW8R0\]MgfS wi!an1pscX)Ɵ|3WJe++x`^b|;ȡ/MM 9EpsvQn!jq~"㕑}{/ٛTw}O+/^P摃׀Mk6yw`T'ǟdfwϚ Ϳyt\V hK \n@RG KI1ǖ|xV4YC .d_ԺPh=jPϓiC[}# a2-5ȼ]O%toX`(f1WƊ*GnOA >&Rf=P,Ew 3Jﺣ#x=qК.$[r-ǸkШ1g^*E ]DQYGlBS$$ @|w6a]E6r*?Qi A0f6Q& ((*_8+ғ0f>Z]Ne < eTWZIrهڌ')Xw 1كqP YB7RќJvĕ*Σ!B[uO_jAfF޳ټR_Z;zL ́,/F:dHqvx}MH~,qb D`(J ȏwݠ2{ub-Z`;HJ6t :֦akI =s\]K321%ϲT!Ѿ pcRr\Uoبw_ޖh\a$UC7Ł=̺!l 7m6*7ae"k](Y<, }.Fb&Bت /zJ{@A_Ao*+yOƯ+ {HI^Lގ xvC4/rPYdL5I GY(,GN(vZp :%0`󛶹*+0*?rRA(VXF>k:OJWk`uUtn?'VL[ZV|hNCf#A %KןHpoe7>R.S[@"V`6xdR5!WE-~d@?I/Qwb +&vA7%AC=B~=d\s ),D/3_V" K_#b=>˕ qY>m8@?m[aW5kq6-I vYrǿ'@sN{s ͺ$vl< 1ɍWc) "t1QBڻɅ QG+6ew3= W=zL4l4UV.Ȥ}{$ +Cgu~0a ֩Vx- E[ E7ĝ[>1X pʏ /|J_5_-lõ=fM C_%j文ǢCR)=yBܸizU65ܠN^$ײ|, (?;\)IQ L{IUDqs!q~Ę)q< lAԡayVzM=!rٸ}Ky$(D z/+;+fq pi^hTfٵT`ؓh_q)VQϕ1Lἇ<<&ax@jbM8qǰĮl:M*a-P:ޯ+R޽Iak]qaURz{vJH5)VNn Xkù2,fH&{c12N}V\ [1Tl8xa)zg3m^X4(^KX͚488L-HMy''j۶ݒf<$bM"2nE(.?4u"F'ݛݘ߯=^lee4胉W7Eq *~xe90 y(Y!,5eR0rΔO:mj@PH{ 81us-XN\>-xˆQM %H5Y:}]ul!`31V ϕR/uѹ ŨycG]p"i0ϔ%5_ҍi(\E\Pι'AO(V7 ԳC~EAԹ I)-s)t|5.nnX1 f!lqj8Ci SWtJigMe(+en}BRD1 m m[o@58@չGg)ܴh_ĵSbv%#QU,\"pYƮbb5;L0@M}TOGM~Zs$-oO9 TT+]cm "?K^13Bqd|QD͹x6ԜG#b5jןJ,ÞgB36O%qRt~w[J$(h8Ӎ9 ML:o!mu.H[y?f@Xq뗇saX>e VĘdi4A_X,7R%$jwHdѕg>ԅdĂ%lOR4 tLބ+Ԗ2g{:i–exӮG ޏeٓ]؜-#"hkÐyk8<ӥ`!;Ԭ BqȔ.c؁W+Ѽm-R:{.Fq[p6k ۲SٟˤD.ӷ([pP˖l$~anAc𴆌%>s*#7x7$A0>D̈́GA"1ͿXY}q%vWyCN=KH4fOAk{($HTdL dl#d3לfik[=X=Ⱦ\)= ݼP2ն=_b@ wgSTh#8ű8M7 N]cBR >o%3zj'ؕx߳X^MWiotqt=IRQ]IF2=b]O{{@2H43a/ڟ̯җŐN#ЮyuG~OVCP ݔ?ΈgsX|m|n1 Hl0\IF*7fA lU[+#K$Y&jv3L/-Z omb[xDZb_VtMIr͕Qe0SG{7qbwƞV0M$5tLEuqTx hz䵴`6BiO2K [)&z)JN~ vt$ 4&t.qrqz8ɦEmN<{-:&܀VCxY1Fe^H::Ui;DrLj'zْq.k}[a]qf&!MI7"*ڡygIELy=qMT :],3Q\3c=wٓD`Pniiz8El|,~6!uCu3qȆUc&tW&gO?G'wwHI]@{&tvZG)eLv|sv?FqnlG =' 51mGB8_"("";3\8<gA8"v)Wۢ:NZ A.BWڷ[2W Oa,l=vgQŠ.6 92,Agk@'pVFD'[ɶA:dwN&osҍzZKWL& c `MD>h :yn+"$ ~*t‘I6jfRrK yY2H_@ |EW(3(Z侠-1a'|٢ Lif)7\fh\H-MR*33+&WB"f׍m(Bbܿ A&}!+q^w*m\sU-t`xگv$8g:_T5>(w)zY@tWgoX^L? 1,!KAhZF^VYyΐf%k=!)װ7>Jkk}g´}Fq99$m vTl`BDh#\⠤br5Gzm#&Cf@J!fuIlaMpĻ%*N8sW3u%8[R8EWc޳pF}\J|WB6j|>LJk.ه>22nJbzkdXVI#^B2gȂZ7P#YyQKv!j.B/3"-odmU X!+XEbH !l50Z8=Â$d=kxb!؋!(F` MV)^- WWq(m$V9l aEoɿѪ AIaw@]㘨e^-?.kv#ށ-ٷLd##S ۓ`\UN{cW<]b,++EwzWPѧ&,`TV>rLi @$8Bė5<4^=)rviۚ Vt* +?J(Ba~ į6aH.@J\rb"~:kq@}$* =ށ ֖g[ 0yԚ *_/-zwkY8[ʦB9pC^gC>Q>WKT\2u $+-xz8#M?FC<Ӝ]H[b>t'*6EH%aA<]'[II}O&aGzPCxueޑjcp'-q{g RkHaDkҧ2>2yXΏ@B q x(hR5;JreŧiGѽ*%EB!͈pDϩj\*I2Wkpݎ%|"X׶Z(w0L[*G?Q6m9T9Ɍ:pMn}&مOZcaÙwPE4Qv)L1j-,dLQi _duU1X\YÊW^{XyR }Evbo(E\R'`إSnpry H*-U 7߄sJ@dҌ(Λ~~P#Eһes!N_yy/*k6|PfOLNLezKd8dSefޚ>t4tH5B|Dp5Z:)PxVkS|΀f2QJų!lԞfY n %Ck\gEˮy'Pn/2`JR$Or"@ǥQ,O P9MZbr0HK@_|iiЭة 5$wXЯ% nHZ̪>&';+rcIdpr04`2(TGvLSc+kQGRJNr&9( ,bgWō:o䈬FeS̔Ѹq5l-gp#: %. jFem< fQ C_+)xr x-JaWO͌QQɹK"789(Irp .G7lL>=c5S^5M"樗Ѡՙe]ňBƖ4)li񔾿SioedtyjafK A.zGC&H~$?T'{zI^e;ee=^)-'bqpNcvtF_n@e}lZ!W2g $SvV1л\+T81 ]g\]9{'pdsi4|sO7)S`DNߨ,Hڎ0 iRv- !,]׵B'6ՁY &7e-EU&Y+IhGU 3371|}zRN2Oei7CQ6uB!0ɛ[p *.'-<\M()mP-%<+sy!1I>tl\QZ?)f~ ͯL%h(|DC$bĚáM_9f*ǦaTnB㈓k6ppOf~m9`6lS?9e۞8skT⦯A )l@ߧ|讑~hAMf/'G0`m;gd<Ja4sa -eCPjRVuڋ>yn+ QBOѝ(±9WtXDO<*c"\rV=RDGJ:+hkIXM (m·OUۺMmr{o[ↄ61ҵ%~N#&w[MKi⧓j\%3"b:H4hh>ыn8:ṩ5ՎD#ylnd|WJVFԤsvj^W֕:V$z֥XH%*&R%33*Pk7̜9A7U9 n.qETI[=P*i<;Hq{ː߆}uF N&_b?#Z܃ZBiF I`odjB-LG"&V8f)Sbsr^-X^cVŧџ9zOH2"-KhfX|#ohhcjF SkCz=b9[;Ng/x"m\B#þWH79ֳ 20x|P@]ѧ8-BކjM(A>)@'"T)+i\g'`pd*D%mMx7_۴i`܇Sͅ\7Oґfƛ_ˊCj#m~8FA ob?49+ x^'X{+:D(q['V2L-)w1TX9_~*0M[QK<%lf\QF>̚y`'#=y]+K̬u fmPT9?![ 4<MpyuQ Mjch_jYa#'z%e>l\x{Ր}/"nm9 lڭY1ɬiv!@aGȏH}el cWpf 𷾉H̕a7w|so0c1d00lj$LkDon ?yDӔtw͎C%QTlȖ\2_g'/;_WFO*lg{Pu д >\?OP#+*KfI}c5({;P:%kYV2c<=&!Аi +y<Md ֤gh"Z:m8g:^-7Z ڋ0 ;?JD7n()u:`<T(N?rgqnl g_v>'pu.}{zkDRls }9ec 7%q 9fHH5.gs$+}ԓi'&4ygXvtDuryW@>/jkiDDilb@zt?*zgTx]HV|M0K*oA2iPk6 //xoyc}wE\ߟm`d/5ժΎ)IxWeH-0*(%c o•€)ν$þ:_mO~I'v_ȟ(CkA!Ln뫕]3Qq0-yd2oTKjYbԟ,ј'օ5"ԬcOYbڪ3y??qG:A7}T$B+ŵ^bIs73HguzE@61]LKTQ`IY$kJ Yg+6%EQoѾXfi0&(4sgF,]9oZC _Ԁxt?,U_ږD@[G `$>ĴmE%צ=D@zӠs K|^FhU)8B{Z UA8N&R:1ptOJ=zy&({3`{wRϏťB 9KB%GP>1 qJRtSGO~]dE~!ǽ*x;CޮP [ [N^*#H봌?o]ɽ84l67kDI6 ͉kA#]L$Lgw$Y: J[Q鸝 ԣ$'13$  _e]NgKpe6IOy|vR!I 6қ(7V+-l@9MI$ez*@\o\Q E^riC.ڟΦĿ&TSL2!C*2[ܥimz1Ь!$e!\aZ%5ǀ*. G lxЦ0F\o>rb_ᦲ&L1 {Ct}sBNx[`|PF^x ִ ^WrËAu0֒67~ۭ6B)EjgUjMb$xM3Go;`@pJ@/sE(W8o)/h,=Sؐ + s({^f}*aS JuWZza Ծ| P*MoB-JO.{z&Hr0 {R&l[iTGN_!ܖkA17;ެ󌩠ƞJP0i6"E8-d&g="=LH9})̿a)ßn8m|j 5,JU-h `.5iEw?ؕ(Ev~Y=?VMٶ|[Xd!(uާL/X\A_K^ZIH=8Hw7ـMpHpYq2gɴ(~CyGkH=B,*po}Α}@4fE ;6$H8EUvR %Ewbw6R` N yiJXU9ksf`|h:4y?j"[+B݃4S}-JvU4N'E$a; O-bA_o c3o"1R h?*,~{{5Dk2h [Ҽ'M.]IV#f8peߠr;UAE%p3aDJnJG wj"k>+ws)X*lBmv<:s׫`xl▻f*î8{@|$ϔĖiRN0_u )=PN^NmǖLD 7;|CZBcTfC}!1<~I0I>ICj`;)KM$gPEBҎͼ! l!=l[1{_Z`YeҸ-`J\1E7I+.R JNKzRM^0i{0/pv؋.K䓪kp"H"6Q%UOC/gn0@pIi2҄MJVB۵`t,y _S ]x&AiqĐj>(c֥Me77*1dF"6u&Mu+::I1 lYb]V`eױI7z`gu 1AwJOI˘\E>a@&y< R_7+_kD# QzG/?l2>n=gzȆms.gGaqQ#-Ao:c i Կo—W^!Nmlf. 8/);u x12ܩh'+@n%YomIA$^fY+NkĴiY=w%iN`4P7Q gЊ{>3Wj́ AhjHgrH1S58^iמo>R y[QL/I~64CÁp!(k.5%SedL.6 D4nWK5#Ol^(:ԂOx:{!+DӋeIKRgN=ֆ:]-hʑ+PT<2jqۢ-!2ukҜK(~ h{S"J̙ 7`@܏&Ѭ ʕ3V$? yŷ~jKlIāY'hz}tp"X99o VsG@"U3NTJ˻y7Jʄ85F??+ZkMO䨪u{w]]G|`9`eyU4̈́_GAw{}=OzH!U 5M1/bVtM0qyI=j).`3Fi̱}w]KuvО\rg`E'.]yJh֜ ;c#RAئ &I3([mY  S?,n66{o/WGX3@y=M@_^BH^Jεi_f5n %PB36h?&+Ozl(EG[mHT yV*7l\RUIKh9*8dXN̲{eOorl$KD A2m3zCu _w>>yy8xNɿVXw.&nPm,\?5TW%vL۳;ToW1xe<&eS#oQ'jQ8Nhm,S`DP92Fe9=Y)SFqBNA#K7@PChs@0V\Ams%c4?H~ІU.B8Q+5Hgp= Mdτ`<ԏ,S[ޘ'c9AM7ghBǍ ֙$Ǝa<4)lyQiߪ6a'su+oTP9xuTJ Wg0 >UZu`{Vn  FKz#* -d31: (|`Yy-N2a yu=kourn&1?Mʷ=Ir##dzmXeb:q9κA0I  S?㻇3zvds% z40Y\\Dۛc:DZqge ^L6=&vUqkmjD9csi~7 o>\x#?۳aMjE,?գ) x`X'G5Pfݔ"( (c;/xbw 3rMl/ a鴻``̖-Z|ss$-(p UD))(&s,^.:5oZsߛDl<6Ӝ{ Lr埶[j$+yG73ybD6h Oy^&)Nsz ( kb]m^D<O㗯2Cd&qUqtK#@4@r%D{KN(=lfJhjHv0xk-Qak&/J`ҍ'qb>E O@n>!*i#*$ U7P)d$UkJ۽3 Punm HȊCK< ioA'0Mu7"2wigꩈe8܋X*5g|GL}KpYAvW@e;ɳm[&J^L3]qt:v5Gs=FӾ4Pr{(#o-}!@^&Wk)gp9J΍ liin`ičRɩwt"l@`5_OY\tP 0ѹssм8۔4ZزH|žQK1n [Gr亄(( kk|oܵeC "2ZJ-WZf =JHE6?QZW_Nϵ,L 7\ߧ/@%U#6~fnu^[a;rR*_P-4'0M=Qpȅ_N7βmr AĀat72 ~T`VK\|=Ki Xx ڸ;߮B*14&K 7t&Fjy5۬D?Z tSܾeХs<ؘQ@%tv6eG>:49l9n-.֩3nڬ&ou QrED!tq6=Jm:E^Eu.ϑ|N.aJ烆IpN?vv B<^04;QA9i`|z~Y@OWOJA-L,[m#A(O`jw61 PN7m%I U!HGnqgwvrcx.")ġ;MXRHut q4GxL \ֶPe(還lځQlkJI/a/L(e^cc8nui8 uxW`(j#E\;(Z׋!JE3=[BGaN5uČEb8tMD;6t&$)aI`mNPMeZ)_O}D=> JxJ]pP 6r.~K D\^Ѣ aNґ !7y:>Y+d} IR΁ ȶM/HX򘵡m4 4tIs I]7#G-R c_)Zڳ"qt&bAb#DwS⛖ c 6q1YOֱ j/&e7SyxbR" 5~[Qg 6z=`Wƺ;8`{u疑tgI(h6D՘_d㬮崦I41; j96a$nefiFE[y.tEY xqn HƳC[0CY!V˶5[AAnJY܅m T-wÑ띪eN=ձ;̃uY,WgR@qEul յ=`Ӈzjw8M }>m;K >Zr睳Tō?J8 Xӂ!ľ#{ '?myXe5򳌺_7m=bf)h|yCaOV[hw 8n:={/ ' '"Hd1>;!/, <ݡ6(ە{g8_xêc:tdmMK/Pda|g}+]i>ڔC{q%HW4;\fVҘ2U@*}x+3*O6;R_ eN'(TX,4\8.*lG;ߨXX <YH<(<&=5 MӢNXlzjA5vf:$Z?rutzX7ĿVnJq[g.vy[Y [+t%+#Xet3` :aHRl1{A23YܧKEYCgb0'cs~1© Dd 7 ~U~-keƺ8,- kn|7r\uh됤0|QɩsE7ٛNj HIS@}G#h@*>AS^z#Tn#p{GBJ_,&e+mx~"0~Vǹ޼ҨF!Ix,D(8E0Hp .Ta--ˮɢG0+(!.(WUM( Јa?nQZ'+[ ܟ|0Ic*7O>"`N/*ڿ&Qx$Cu~)BWk3e6+zP˾}+/ɆTO wIl&aƶ]>AmQhN.|[sGl).jJ%O?]q8=sE~Ͳ! )1ل5c:MIs&ei)UD:k6/ A41|VbŒ5_hFe5~KvL@{,7Sڶ0dT0S/|ꑤ=6? r8 )Ȫe21T |&:EYi"YS1 k~\*Rf=-tw_et6 3"mL!f:GP3v]aWd phz=!X$[~40N6 bCX<;Wd( T&scr)@'m'ڹׇ;i8<}A@J5*w;pp GV]2) X;'3qU!;0|B^~PpH(7k1"wl#d cX{(,}n qӶ IN(flL$u1.e긆nU$M`r3?SŻ'ôisuF?Cv4Nw^LBMbi1'[CC%`sj&MGK<3C{P8.n(\S 6$>BBO%{RٌlI(KFUpU6ǏF}A{H(G"a72rdckE3JD3~TBMR}AK #x-6x岁kͷض$TGyk0әH0yV@ذ &Wmަ*J)ͥ\]Hoi-GM-pwL}:E ]x'JBdž>xY@ˡ'&Y.|Z=Xl|B8դ{X/{o D00sV\ٖe<8# {6oC=@˒e1eKT<(9"Ak$IG@ϓ#\ױA֠X 'l݁ʦ3ߝ5_kti䪄Dzl82E@[9π(UE-89l3Wq?׏W# 3 cތJ$8gBF4wY?lZS5A>LfL%}xRxkoC Y(qi!Ge3';vh(°tlâbzz#sowA;׌RLFmi1}h(1ȃh1>B&u>3SPI3XNzG1;x"9|1E蠚ШHvيHs0/ެ],Z18 %fG?=1%|G-M~-Q֪"U2}PM8ua-z6c -ylKkNӅ"7/v|#ֽC|o?aé,qti95|\+"81Acw;L*^} W^*>]-a*˜Qb2E)7~㆐̢M's&zEjkm.s> w $aBOh7%;V9mN':At_iNp&Qg 0^b/ٻ:zw&ɪ9EŖ*Ks#/y)*i~PK-J([ ?' ^w3pU6`QJ@lT%,,H:1B ,X&y>)w v(g.[C[F)pWХvim3z0A,YHt~y9< qߣ(qgk8=)>>2x2<:{6#GcxjeN.*7"Q!T1uŠ qBɪ@7 e+)NiA4V'\L? +v"v;SGVǩ(~f0H&Y>gz.+@:p{66U:?F S^1ڤ+ćVyi& V@dn)@k 'N"_Fhqcv,Y#oأ^*]IaO9jSsj/\eD' >DmUfc*LpxZ>O5yW h`c=7JϋTo/1GqE̾JQq[Tm$aJM,B$]mJ@' ԛזL[iDi/fϫ ;y$>ozXzt~M!MmPRMؾz5)Ces#:Cu9[ڔAKOZ_hZxކXe~CmI{L4&6 }C!I6܋NǭxhX=kN•~'n~|L>cz b6 m1ߔx,c^n10g)lx1]Wۭ/Dg '"VFV%G> 1tU#c-Zxf&=M`>!^;,25r,u}%ހxt*M!_`$8Ia^|syj@,aSsa_[`q 3[oP3V(d9f7XQfȉd&,?y^GP W?1<ɮo(fqRAVa LWm~JnłS`0ju׋&*v5uHtTgGO/Jxo7_ 5ºD<+J 2<٧V/>xkoǞA"P^Ź⻋- Vj]'|:ڵ8|ʧ 6}/0eetDE:Eڹi1OIjhx3,>@5@RxA ]q; T%[PI>>K>%Z! ԧƾBS0&owe{ X 5Li+P2x$]Ln+"vQbVmO´ѻ[txY0ճ9Y[D@̑qsAKYx5噲ò|`m7w'1PF5N)mS;{0DIyClDV3"W'{U迅Ȉ ?CaD>Vg쿏>Զ'FȘnH@L 洮>K}c:4f "<@Ȣ hɖ d+뭦h!"x{*rHmYO"~ST$-1,˹1r ǃ@"&a$8]F2tz ҁtrHR]DCTxS C}LJ8;Uuqtc?b\Fuh7?Zbtߨ ?+hܼ--Chbe(,&]zʬcM#}4Z1rְ_N4"R8z!b$B]ڳcM_Ֆ#xM2b5ch9.Ҁ iQ 983mbX1YrP:*G8%^$7 0f 갳/_͌v}*o)?쁦'{\>(qwڑodo:Thlp)01~V.s(;EGƬ '9K5-Rt"}ZQ[n|K0Ju xBGv⿋UJƄ6{9JŒ:jai{d[W {rp`w2tƠDF}UߧkF[Ao*fRQi1>+xӷ0ş1p?/S!3N׆Me G0}Yrm yy٨5a塁9juTqt4bqÍSˡgѹ7ؽ-Tw&k~p/$p4)pkM \ʐ!^ZA/uOB퀠)Xk㱜%a!X\YK }t!:U `Hʁ(PyA`{YM9(h?/.ocYNF"i/В\!A ]f7<4驹;Y,je~tT~dPځcIeDz˕VE,0.h.9Ph5^o"R~=^FljCoKZ c4J`) NN !|]ڂMV@ggK=j(luҹ\j-9٨Xa ]m9<]/eRAHGur%`jÈ :'B (J 1(xHg4wc-c-eL F'k+JeË99aؑ'U-+N.3H{׶AI %U/W qMfA9 1u9 @f1ڍ;i"h9Y%Mil0<_G}EדvLLq\ɖ5`R@uG  JGY/,j4-ey3ֹ_,ca|,lxciMc}$G<'bi@$Qi7kHecYq(Hs[q*[ީo/4cQ\nbk,# Y: "6s_K 08O0o|(m7aR_7›ۨm9;1bՋ+C }/X6lضYkqf╈|0pVZ1Nْ;Jk]r:doa9CӉ$J-C 2|OƾM2QfE St4T2ъ$u cʡg~.'T ҍԦ~TK:?n2ȯCw›T x|mMsvsiJR-yR1nZX Uߚ]CH{)嶒O݆@+ !r7! JI̦<:vq6zØ.+ӑ\Ɛ2|Si[ _@?ƈgwBY"3}ݘ)IKj <΢Ts] G[dfrWC?܈+ cUlZNק4n#{J\:dƔ}X:{i%~yƓ0Ea[?AB6ݖeӳ['Zda,;<k-}Ifކ`fpN 1/4rEɪNir]t s:Y]Cq}ײDMf'XҔD5 c#A/fP-c܊gzhaU{rVFb!øk(:=-)4,T.k򞱜э8OIg\N*> -W{>e8+?_Phz8r=v{q6Uf%ƽ௳I=3X6#ux8ۋIzA`8YEVZzi$PXD<,ㅅ7_=: w>^U#XtQCR^b'+sl>o3 ]"F씗Qv}ZƮZK@'<&߱iɚ^]y셂5>_Oܟ1~1^:jJHZU5Mig0(∬ܒ6{PK*x2U's9;4эLey$e`*ۺ0c N?;s-v7k;p1Re]nyX8PO`/zz=3O-|;%qp܋T8 .Lr/ߞ޴} XhJ,#%qWxǽP 3ě^d oO'kj՗6}#F >Ȥ  Fl:/wmv,-^ |A|q,յӠ-\yaAP V[8zS8% y?Ary<+f ė512"̨M* teyj6#@'+xg`b8sh(CKPCM9—Z ")'/u{ǝÌ&< i&PzOs=tF"NzUJJ K0 (oMgɟc?d~o߭%(k"Έ!h w/5٫ve͔Rhـܘ6 8f@ˬ=~{50.CH*xg^ϴM:(OK$QigԀBYJyǂj3 C枃Sək5YO9i }Dx@?jg.y4V46Q_}Kio8וBJpqfD񮘄ꂮ 77 N1B.cuG/ Ԇ0N1|VmKR7Gz]>В z\߼Q}\vPDryű\y(nTMK`Ãg-(.v;!hG(G=;>Vnn#Ts=ij&cmRYߟEJ?w,JS-n^i'Ms1fqCP|Äx-DYw=5p$M!M=`_@E_l$sow0 2 D8a`PKo ly&8YL`l[;'[C |p?ю΍u) !o5]8y?+zjʤibmBjlbsV 2֯\V}W_c= ~^<WYvW4z0Z%qxٗTs8/փssRm 9όrll,}#Wq:rBV&7ۺlnx,Xx' M{rkOm4meio. RMCGFy*-p۫ejiȐK.n6ۃԡJJa`*zzIW4oǜ$q @0zu2?1m쥊{مr}ZCCxו%ڏP%':X|(w]j!kW6IJp942CjgH+_ mA;FOsgj,q >+pjN]2 ( L<}|%k0z,p=a2ğ?C]]>ABeI]b^̀N)@ִ q[s1[:TK<%4kNN}HF!xvE&ꨮD+pp1B[-q{}<2+a qY/d#*$0=C6eR `g;7酂է҅G(JZiL,9>{Sn+#pX%ۧٗڿheДfr pSDSP`A#l\'k\'"#L/|LTMd漷`-FA- P _nׅ08$/u[Xw%91$=P$i~N̞wܖ&J*X>\2뀜AͪE rkH7L.I/o@6̩zb (=雠FY ,doP +t &{ A&Dɷ=@V?X>8?B-(M7Fq4=[,ܩOE"g-A),h{+cYW`mR^@ya g%`bj8ŗwqHcݐg6h@CI /sO3ؿgH"= VdBJ7NfAJE'D~P#-dСkނ)Y:dGp")꘢LGR`}@JpxQ&a7#,{m/$r78.6AZ!yy\v{h* 4[ l:4ϔx;Q1st*S ʆ)vSbabU/b?44re\X Ꮚ܋x$jo!sowWal,Wh7TLfūD/h(hǀ0I"ɺ.Ⱥ1nUˢف$u0dtm sMNz I- ;-@CbN0^BVz!`LC4hk=͢hbFư֢%Elk3͢(]*IOp7\p.9H| Nsd }}(UN:鏲~ȕL7~2Rd.3$X5GjrIw9#7]%*3X-q#B'd5),PIwi*;#t0(oe 4ϣo-qgǛF3tQ]}!nؒL!Selq Y%Wruh@r]02,1p ׏/qa7~l[Dt+#g!>+B 7vh sgv׬o[T>FR kb`A?t,=#%$o .!Ս.<L)Oaxm$^p8̄")Y(j4tY)Ƽua,k"Mԙ\( )!H|YuAڮ{H![|v%_m~ʡC\62F%䤌pz (\ TjD_; 7lǍ ~|MaA/셎l@˦U"'Q]_PQMp"3L,P!ec?rę}`5 `\ժ]:{usJzoj<®L^%I y̍n8ت>_ G@K&Ud\|* E3nRíӱ8. w)K|_%d%]He@4CE" 8]d@⪡5=|Z@ y ^`΍tRoCV5žLlEtڐΦ@.3I';ƈ浙 g"5?{^/%}~?&8@Qjׯ:׹"3`x*N|P-1CGHg h%i85VtyT](H 醍=nd[crUcp-VNJw]â_ұ%(l֟CՃMl.XSƮDNUfUUQsKhu V+?"A6' l SW̧m(T7gI5Msb-ުmC'oe`! `Cb>E;o>9DɭJ·R.9ncccn_ ?)VFy3 8mXn4oU`v0 x9ם\E 2N8M9[yƼd^gT޿cC8&0o֍s ewXA+EԸ2 ?qFp yqR4-h!4}D/UEs+)r>u"wYg`t}V0ϗa 9Ķb3ȱj>PU-OUpi* ;7.XbwOi=e e5 H PuİKP.3#RcTx,S! 0Z Q΀1¾d]H%dxx-.oae!:$F=N~ú=Dh]gܟŵۅo\ l6 %]LjDDBIĘ_SME׫r9:D߶,yi' x8yg4 ĺ =7oS`S !;Z*=EeXBժX;2w4tJf(f{agcQqX$bx2 5gvo_[Vuf].h~f_=euУe(B痜/PWҝ؜guQ&^)WPg:`dlU=0GFrwxv+1={Nr@&Rdf!Â4JY ɽEOBJr1V,3%jRa1G,܇Pr'g&@(Ӏ 1iyj v _B k?VA-" gMLDF Уa+əplrq8M^K@gTb(6<䁍=U?Z wT=DPC{щh/: x;`-?""xz(=Qh5ʲf Āܰ+x?yЩ>YbpkIY sP_ղN`Ys5xki W2~Eʔb_^:xcɪ Q= u3}iX Zh`8eKQ0vCrN(@QH&Ӏe6Hs/@7lDX,gr.."zs11G q)al1C2]{Ώ{[ X!B`_3)_\v=?h݆^fA B!%N_z{ Pq$6m-~ڭzſvV|K+{r3]3:ۨ N#1|`z^» ED]ncRkY`Z=({9JswԡeӋ8>&ˆaDݚkA']2d wcZ8di\<'LC Xs9Z۞"ÉuG@6fR;l&of— W"ݐwP@ ?Yʆ} W"y`1J 2EH8ոQq9Įu¢R {0ۡ^Ӿ'(*5 h28E{Y.k3Y%y0Skُm'ک)tDeb/]( E, r߫ƻ՘2yڜpe!bA1# =wz%nhU0k4MGoZ L0+$G<3aZZ%O@n8`06vO .]+3W~Ro> Eњ&ox@bBKZ qՆAj`}SR7H!1%F~3E$Ik #Pd©@{wğKޗf$P \kJs6fA85uc,Sc6ҹOX]Q@JJ&+p%XyFpiZڃfڀ+^@p띩Q鷲~uV]JzV61"2RRfFGjtC͢PF6cBaGUYnxb ìisSzBmjNk46]/ W >~#b Rõۅx 31 :SOU /?&UQ_^^J};UN 0Pxʩ5.:aX%x:h~ s*fUcJMr~]YS`{TE?a<\"ckpnۙ*mܸ " Q2B@Z4pm W6KS4ʳ߿8Onvrnc'TcQpSe'jԲ/Mg$q2rfFd㹷IZ_鍫?77 N #S6XlL-ID}bIw| 0[ 6l h#F1cKtG|֎N$dKdwp!ؗ+@Ip{dcde&^ﺥ[ ǥTB;=ĻM.M꼬eox]:p٣c} >27H.G\cFgOPzU¢=;ϫQzFi _p3TړhH=#P;w'WB6˳Z{X9;Ő)j7>=(G4&y6 2 M- # @Cɣ{n}ϽQ:cѼk%,6^P:_)g>f&u`0 Ɉ<' Lj5ƩyEj=.VȤq2ԳZ ܠ>!dvkͼ" LP@|Fj~,!8IH|*s|&xj`,$Za '<(ҀYER:{ EI}5ލ=4U 5cغk\0{1SAˋ28j~Zš2xJ\@jkDb(ƿ.auD*ٻ+OI7J@dͻ7C`5u#/rW8J6BFqltuDjZg"P0ߍ`b?,ؽ5:ĺ Cql },=<6(Ce,)p-"ȅLf \AV _%(&mjeWOņF)N>$7xλ͎N|2PЭ${ѭAAt8q>x6-> 8gt]ව'$W&6 EXoHV-nvIx1H)J q4WAjm1Y" P P4I;r@R%Mn6 ¹8|}! ˷a{L eü\Q=wgsVo_cȃ9YͨLKٱE'{0Z~(.;}.E$l0SC@۫KC i<>77.rbmm-Q\'] 2 [4y=rr_ Kep.}dn!`*xyw26 S=~Lyě@h|=ʼn}2>9,,3GK)s5tk8prr>; Esm5pzt~E-Psy IXd~ZIO̝u<$lTjvB2eʄ,Q` HUʖ 9SrʭGj?)\[o6z+: SYKOo5qFVt~>FFܓici(Ƿae7RRzQ2RK,غAPwiI=ى?s (@:C,A/m+i[}om-|h#,/|1lH-8z|D@2oxkx (Q&FaK2Ms8 U-o HhphvޓɨsCH۪֔eňNu9([+A$SqBp>D`<(<)t Z G сz`#m9<\5XHH S‰ʼRxg_)n7L%ka>>XNǭr{W-<▁{W?Л%acWe{AUچ=mNw&0tI9(9TRe~oHkSo z2Q+ӭ./qnA;/ݹN -?:* #u3$> ϷT{o7T-fcj><ɖGm{5 IXP4S1;SVcEv'`]?۶RdTIE/nw=OΗw,Ȣ70#Y(4a{e9Kz!*/*};涤zjvP ?=1jGĎprv(8rx?Sgsd8It4On4$X>^iOwcjcN"uAtH9u._q> ʊP ؍~ bOե'.[ 9K]I..Ч|V' m!Kl5 w ϝL^X7lƼ40q$ [j 7w5w#t/6Ja,Rԡ{air%dawFNYAq=M \^,ziӁyyHa}eЍ"7thWb/TO3uma"z$Iqƫzy@hq]d,YLmNbt7P;D|%Wd~)Zb`tJeCFkoN=Z0iN/|ǹ;cA:D\(80I{h o\ O$*ZW"_fj !Y $e#iT,ڧWMyȽ8Pv"Nǀh<-Fh~΅C{WV#PA[|7(wt(`ZBn+Jju"qkK5T)8 eu (b>>d($P2m, _x.½Jf%d&}.Sa)U,߅o# 0&ve,c?[w5[b-;&)UK1EE7 hNuUv;K^{ӌX"o#Uqwx yuAbV}J*G\D7k`'_A/1QSkDl/bnAGj /,*= 7uZǴr{`! \aaܵof> nYmE(?|R*Z xeO"34=Ϗ+$ iՉF,xZSej& >4N=se(сt–_B WZF|Y5`~nu$/Ȧ胛zQ6`j\gĞC~G8g:UGx|@'Np7v|>X"PﱈRt"_,Ȼi盉sꆋ:]XqAlrʋ&sݪӪ?8u:",%ԍ[:֪ +@3ǭALGwEX,wx{7g@w+Sd( a&y t J!$GxkXhIkw+޺!UVǡF0AK97WRo 8"nEfo0+ eHpBk&Jk `_ɦhZUzh|wb !S)\ rl& )DP{#ωFR ]9)%dջ_e(>轀#ܜ}eJꝪ׵ϟc% ] \0Yhx}5cV)s"Aif ٝ?ioR]ku\]dͦ`Ȇ^.wT̹.֖}H~L3֤V;U dI:x^zJsōS&=ĺ&oߩ ޷~9c2Eș" PpL&Tjz(m?CTveoܸɣgcu$KzSӉ3D~TtLɉW=j<>>; pDa‘3@_7VN{ݚ% >謹jg4h-|2,vgh4r< cPC?93o]=;FTO&f/m`DgFPsĊ+;YZ(2D;Zg CC`rJE^ 1 M,S 26%C%S|07PLD͝l4,1YR̀ ҋ}B^Z$n"޴9gHN#hh]>ӽv!%ɖ 0.od4 ]yEb*O_iz:8cz1>="Gpct{5Dqa> K|l]_TK'._|~V%D/t'>f_S!ߺa;r`těKTŇ;#Ek|p5y/Cyf$3y\vvTJOԯj)欁)\tֺ!A# p@'MG;?A9ӈp*qxuLLJUyp5!32u~pjylQ@ y󈧱扝BtPu aZcKHRJ7/{}˱mav==5EGROPK1-r Y5Ji z^yJNdRj&~jlcjW w~\3@ o4yrmNGD=&'Q -޶K}o | Zߜ[0B<i4br| w@*8ԗGD&˄"ZOe]ZXJҋ9bHո3mzf{tM=]`++- Q謓x䯑`tQ&}8$cMx8 ɹUT?WEjS,QG2V 7kQ3",*3ϡ1ӒӵYEcLKpNo_>(6/(;333[R_RQ 7xE6R1WrY$vBuE3η x?nDfu=qc;I0,(1~`R{P;ķF ey3@T64r_ NRkbhF}j/AnOL?6^tK C7En%=&W8:i 91%oh#a b*ǩ8mϠҨ䝧&{b2X%/;׸n޳= /dh @]bUvV&X\5fiԵ<(T8zs'NIJO-}N"SؘKE *h坚h|8C[Z7!B^a7B%r_bC22'}9`I;kMIeX2p  FDZs*%tL_8J!Iư?ƒx>[,X}ǙF,NNN$!q/$Ь⾮<Zʇlؠ6ķEL/0o2,bNWfiL+Xˤ%[&k{t\y#k 6~m_ՆjjgJ?JiYBɺe-3!G)<-&R4csH2tR:~Fѩ "bw3U.ƞP]n62[^Jq8" `͐-UaB"EuS`r F(x,["#ؚ--q!Ph"RJg!7iX f|0=7 JLr j YQ5\%Ql&Bp="` 7%tza)P-O0}뼪g]kZS@1"YHCB#-҄FyW5ps\"+bS\mHߖ )b Z n)ٵ;8{腚'ÿ~kx3'Sl,`[iSssx44%DtBpX'R?4M(zG dL-O67;0.c"zl+%L@ߥS&=SN[@.TՉsXۄw|c|& ,T QWNh߼=U䏽YJ #61RnaOKUyJ% :O[Uxͧh'ab`u@hx'CtO3 ƫ*53'63 {ʌ(8^EZk #kl߳2B=Tt !bP1hX@GL.K.Zo-`kЂ}lQI瞭bASJF2Vpa}_wkߖDy?R P3{ՖE9sw(vD iKh$))`EMb'(`̩ =879 5 77 i@p uWf? ~>)*`cy;*5kvq Jm`}:ǭF['|dc si# '#ct~GC nlLtLciCPed-^Vė!y$)ő_B>"wE-Ŷc pRrrbh/_lHXЭ2 V$xP;CY>Y?PF֣Nm;t^<vp@ŋ9}S~ZqWKC' 3f93fl.q~{M 4MFk*bAYDv]<@H m&~ytoGFwv8t-5P{jZ dU2GK XɓM8]1DsBٽ6'uϳ}'"DnDyv<%q/:{sU(h``5|IM'~eT'$LV3t3\RګH}xLʃ]+8XKHҧ##L8/yA wz/\me_rPf[}`s[xEX6j[CH1Ȟ[i>kxUJA~B"^ l&P⻲v3A-e s`˴ـEZ9utW}А8g W҄[񍼹ĦRO':oI&+ѯM~5P@l=FDg^ ܁꺛3MD͏*wu,GfGz$yY_: -oH[!")T9:PˊFc/질/qnv} (_.fQxOT)ynf]';ЁJ mjA7zdxҖ>KT֋dnUo?$AvM K%\;;1'w_:zL~{ ƦdZp7W:/7Bprj1h8qD/jf0GmRLq4i^_۩>>V u$ђ4kF!ғӐ8>iwȴkV~!aI?HQJ\Ld樻OcZS:p۳ 6h=f.fsq.x!})l+b'Y ⒃%C`/8% ~OS~o\>+GqX-nH _\sh}gMB5Bk Z/V| Ds0bg_)+a@z*&Xն ɘ3D[Pϫ~3<Є}"1|gtL>3dO-Ʌi}2\LvwaV6$]1t+Jl5ܮ^,^iGFUx]H&q%jٜzh,⾚_f>m&<tHJ䣱@Fs"'L7>9RYvKуr*:f9W efmxG /<[ta ”@1قtʄ=5P PfBФ@oIl4Ü X/8xzL18f"qp0C8S -+}r6/H]er=#1z8QeT悐28y)-~}x&Mq ً1l.m󎲫 W&FȳI)3.#BkzCODԈ(ϡb'ϓ,TK&zL}ۘm"5rK9ÿ7cw:s.Ö^_E9t\R,zf.9i{)NO[HXf',P*;>?w{Ses>Hc}1D rj'x WuNlTe.WIëov kt2c"y=v"2$ܖTؙ';5ϭ6^ yp֥[8r^%Ta&.5ʂ_ ̭FFȝ\p ȟ[_ZQphZ]S #h]zR&^]4Q}H5(R+"O]v!GTyD0>d-ݡ1(@y)чVaǂU[Tn=J!͍pY*߹Oq0061JX(inh&)Dۺl԰U x r@!kM( |mQyB*g8Ϙ ->XiA`ay©2㹦1m.]fZD%XkF|#L4UqP; dxfpZ ڈ>NgJ +KZx?;|@s )0ڿrYb~LUk;#T˸d#i&N:/ ϷXSf]Jh8L8z#cDj{`>E Hb+1>a*՟Ϲ쬅^b p:粆xaYEX5?Z??>N+\'$rԼoiq_muhA8oFG rOn_Xb#[?ºoN;v] _Dfw} {5RhO֮ UyDXLR׍H{z#fҢ~Mǎ(Sd#=m<% t%ؕ!PJ&ʘ0]3$BJWtA01蔥Gr_3"N.<̭Ck `x򆤟O'%ǩpί}SX!ԋFzkuqJ?Rbß(t,R=mulq7Xwԉ$P_ْ+aT:x]BIcԮ!3xa+*'!{8"W!F NyM]e Vtgs6DEx^f߇zKWd>ǫ}}='K\FmW O73GZ-0 }kfqU.U|_5[wvxlcNJ=3ehxJ؇R$~ [OdH\lO5"; upr#X0R^)ƿ$%AY_}EspL߉|.:gfCW ΚaFstWp\Rҵ`Q˰y 61dY2g7N5Q&%4;%aW95 1f]Sw6//hد2^]dZ@V9$ /TRt$Ul{pŴ'*{P׌7^948mLkLԞ-)US iR}u-#- YX˶wY5l'NX."?oeq).Ŋ73x TYQx[hczȑ33J3?p!i36Xw$)5X0?K)^)7Sg#;+,VRy=S%$)yۯzf!c:-2Y~5Kb &R9sEWpڊ8oUȹŕmVϨy"vDE+sxRYQ:W0EYE*T7zxU̒@k ?Kq{Ӱi:jb%ڥ&? kk fnO7t~q|+|k*%W|AX_w>\?<ŗU44V7H-~\%>!yYؒKrhpgfP(ŕUA5^æ]FOט5/CŴeA9};\hٟ1_-<7&X`+DPY3Z6:32b hU%StE0(28rX_m/b3c8Rҿx4݉3'C}~FeRw ˥l[ NVb[9b1:}Ĵ%V#bܕRfHɴBYyppE3k?fT@pMY8he[i>s\C*MY$\37`_=ʗhtQ`Sqn&eSv:mSWl~1#FZwO蘁wɽAsm)l#MG;F/ZwTg4=SN'Yf"&~5dIrew\OCgKVʸgH6w0骫imЉwڦ?]P QLg" y}- 07*P8[ ™vrKG2N:_:T0lj7q*8@|GyW}?u5r\Zb*-h7Tg~'e,R6'2?g+-: LG`?V)?)(kǵJVjRExj6C\8N^u(Ge:&f3Îm9H/|SLZyЃc!(T[PjI GcPuEt9f|9;`^$3/nO K. Rtrjoտ~zBm9@ٮ0Q\=y .ܙ]qGPԒ\QsntTUAWJƓBKX}I.ByU݉ 2"H9{1uVݠq!Ol%2G `GsD{C&[d$hl]j JRcDн$?忤RqWR˹>f:( UzTgψa!+Z$=4!{&rFpS@XktA=7p6Σq6Ds:Hꉧ6oy٢Vr-"Pݡhj0ENF {wd7IhxĵO90#F74/ZȅzTBV_^%qin kָz%-:wLr*iۖYڑ10rs\y8_8S5N~A˫D(5Bu)š,8CbwF[mr,9T1*@#LB͓Mr!j.yJL ؇0p fIt9)c$yvPOYep`aQaeMA\`_k:mYyeM!}-P2A"'u1B?F\-4j4LMS y45;sBjpU Xr:,@Xz& a $ ٗӡeT23(GΞWM-jۺ#>K\Z5 5 :nuNj_>A Nu(-<y0'$"P- |4E-uy'6zaGY]GT[;9K~W7&TOֵp@ zݜMw{Z+LJEc;ƞڿ= 3<+66+rk(7HujywC2(R% S OK@!P]/\S9BN@H6U|-8A/ 4z0[m FX@^aHwnI{@9xxdtUiV:zm?ry ɗ@@O9a{^ t LL F7|2,ϓ[ zekiKp3?7>&;\,y1§ `=<8IXx+>ā;͵/D_ aS֫^-߫1&s',`LVkOx[ųk7Ӣ^hXk(p.MHti}QFAm4 [Ѭ%]`%W (pסC=X0!6 l]_$1yIgX^ihMHJペ4x#6TЉӊdQF#zKB5I cZc }75"}W1 Xu}p[I Y($>D! mV^?c15"^ g1(QtŸ kNȯ+R56¢Vѯl.^miH(ZqG=o$<([RWtAֶ5&Czb#z= K֊&'O z3Z# =N k)EL`YCvZÇJ~&Z黎&9dZz<AU7@OzV9;L!ᩬszyAFΨQf #!"P#_:(O)LD(ޗgs&.B<:1$zVOŚ | -91 uUy( DK0jfm(6Qo+0EaEuXvF4=6z԰FRΒI4z7Y%@:=nRFp ~ߢ65G{y_b=-N6HTeGC4[W7l,Jkl`K0H^ȧDl mN(j3.<ߦFH{v7g|, p41?q$@nؤlM9(ZC*5)!"O&rdA):vV6B ?R^JrJ$2y9*}lzP0ǮSbG$%gc Z,oAV$eq cJ61G|G1"dfց:@joq_ȏqa?~v/ DJ|G&-`dxd.Xh_=\E@č'Jy xK^>b~1Jef /T׹s#%r).GJ2X}ilkjC;+]x{/(^H 3i{)7Mb@njmT č**n Nz1K..$8챎#.y<YǐZMC «eF7A3 @$9m@ ۛƿT:) U> ,],"## 똨JAّ#op@ݾ襪TJR뱜q:p"Xٖ5/|fR/ݰ. g<ÑESCHҌjE84 B`Nv=kE ͿMQ+naE& jc`o-5-2zRl 2eF\b'%c.˖"J7zC# 1n?QO 6M%M?k%945!9Xro7\(F znhx#J?Dso6䳫jO :DfkZvxLNLP1t30#&*E07_8C+k:kv\TL< 6Fɕdu\V'.h~o]U~|HY0PaVY\*u䒂,;`¸I4OA9X8m. O~]!Fdf[ >n٤}$}koթ >7qՠWٓG8bѿަQt]To]_l:tM(XL)p1gk͗R-NjD #ԂBg⹐Z|u%#Y@2̓^O &̖36N:wS"֕2PW#RU! lq(Uz5RUFw ;ra#幐 }y [EUѲZycofi?S+;o('dX'\]$V^=B74D!yDJh~e +sٻ .XN8jL:CѮWԐ2<92gǛې:WxV^#Z;οDl7/`iE/FțcU0& Nzd җzkg.+u1&2 ,wHY{ȸk NToy4'PJQ 7AHzSi  \]Pw &.lspcʯC/6:OOJ4»sQMM ^l i/̀H,"Ek! Oڑ"'wXW;6bDU0`yCӞ%xKSm|3MY%gn01SNޛQ$7[ፈfO^8jqf3Vнnobd1[ŤF7- FxƄ˃%/JNYnB(!G1exǸ1@IVxTkAw 6v.5H94 aص}T +pxGU̦`Cmvmhҽ"ý3(GOƚMz.| !37zy3::L}lK{\,,Մ5CJ&ial kT@1i!QEiƳ"B(f:H+E:YF֗`^z~{ż&ܪ˖M`V[{CBN_ ԎJnxYE67L&kkh#ǽ͚ Kk;! |Qɳ<{_>| {#zGy&OLffIDUmJn_*)A${nz}o5qARkf:efW3!eǵl tMp)iiYV-av3n1,;B1}[\IM;۱Aϛ^$ػ U_UOjwb@_Oy@Ɖ2ulA )k u؛;(27 q=Ciy_eHk ĺ,}] V[&DxEŒOT0qIŠh)t_cq ?Y(`mY/ÙgʆN48a8TSAܛN}*^9O`’AsGd/\V22d(:RRYbFJ@L{PNH X;_LYLEBCS]S;?G8i ƭHT:ā:_.V~m= !Mr |ѠLN%4'$.ݶdvō8'Y:{0O| *&Gp0@) D^7I<>vPsXZg6r^T9Y& &SQbCv#'mj9C*{B6DvtLv!}[Ea! ,[<'sG"^))g/kvغ 10o^4,?W<'$~ymz:\6)Ѯ܌UBu~/MjUC0&",!,Gr!>w +DJ7sȧxkmY{֌kVX}s"MݿybN) 'e55! /͆ r҅%B8 TrWTN͂LS{״yR 3 AP =:oHPNq^JNQϳT]&*@׋ h ZHSVEݱvn} c R`.W/ L(FUH2rvZިDSo~kls y&.mU0#8:^Z͙! xxk!U\Gܬv#ɊU;Q+cڃb;ZMQ%@vhB^yzpShR3-zKO oS!be@)AyH-/@cBsSJg4x=Fh1hr#yp.ˣ_|xy_Au/: I6S"]OKz2ͷ]m},v\&,u/.b/IF% 'qt2GNYW7dv飿`pcL>Q">7\Ww?P(}U{C1,pNWvtZҪvQtzT7]~P,V7.-Ž BۦwʲVa89d;c {aM2H&~E'Ԣi2:`L!_hJ@@n, e1wj(U"$2C\&A7PFkpB0;B 8}mVC^]&x˭%?q!$qub0lq[>DAv5Q3{rq;1'X൛'_gd𪵭fp9n<#lMkZ'6}nk|s6v1-/(x #Tj2o\l7ɆD9݋?_ ¢zvN >z@:zy.[IĀq.,xjC,UJkO[72u>HJ=X\ K 1v;-'7ƻ*6k)^"A\_p)@G΁.s$LJѓh>A y2>Y_ F.i<}@oV4X0i LCjs !!G8LRP.ϣ**t`+Ew f9CR ,Y" 0CRp0حbJ5Q˾uNimz<`48}LP'$OEcFM](๨hKKĜ_Q'aƕ>xw~E8:xa >1$hPBV8#KZbT,@L9ܖ*Q:L^+] |ԗ?WU_Oc~)ℐtTftE_߻s#5nh .#i?w kc녵 D\l3! V,~;on#5=)E7žߧf\冲QZ^B#Ӫ6H0_䘋IiF=Dp5e?mWVPLl犗) |\ڥjO)|K෣Pu TVE( bVͬ,s[df6On,#z~b^r$c1~Jb$Ɂ𒹼zOi;$ݲHu3]<#QoOi$t {CQzznIYJ#Ìy3 wT.MG%AhIߋ2^;`Hj$H0dUCsB>Jg.J&1:8+QFӢ{+%lasS@(0)ՅYY= \wb6KZDc [W/z^R Hܽ>4-1r wl uB=y40454| [%~ݘ]r$0]ex4^ѝ0 <$I3};A|`60R`HglHà~E$?SlM ػJVyjȃF]Ҽ@24v-VrȽ3lo]Dh:Kcal@Ken^$3-i N.[L̤pHzm|zsFLg͐fu G Es3i}N+/$7#Db2!NѠ_5gYIxp @F] sկNǺ,pqrΪTg(&HE^9mI1 |3톑O\#[BBM/>(mD9;)$}:3Bt ;؊~)Te0k.&9 :zQ,X>eyu)|AxZw]L[GbpQ#5+9 XD2< t6隼Bv t <)ݦX8Y,_ޓ>Z-yLW#,_|+{['δ5NZCc/ ɣq 2ٟd2 l^Dob 1\=n`VES)HOK(jn#^q=ſVm/shi?XXK[i>99׉%@^EPRk4{l4_8Gw" eA ۨ{pq etrԗaKHeC2ZGU#@kkhEr}JBl Xv*0}(ҟ~4WTe|!]spTL) !Y3P`5h!J0={{(uY}F %V˓0o l]c,Gm}Q `ޮ9*u6`cdT{de~ @֊+!T/$e۸dl^ *dGm"ɤpiW*"È m?ַX]"OW!QTf{@e-%H3Sc5{ޮȔ fK\@s"xrC)fͺ~嵍y"q 0iEL 덊qQ?x7I}>0PX%"|L+=~Xа6e.@i|²O,0nubE' VHRB_:y[ ~8g3ܓw#,;MCgl @zlퟫ䓳Xk_jy/R w_QvyZW6ŹSV o Ix6+ \ m_ Wī BzI}VW)NmyZRDcV,s c& 9#91mNty3O_x\kN`"C$.=RQW2Xڅ{|KljLQu'O$Ki~#NG_~V= 1Qpy)P[=YL{ DLG ‚z N+=A11@: UIS| Q uzg f NӠKv~e[W+kʘd1SXd]!%Mʹ͗DA8'3,87[J@d#H7K%|9Gy.Jg zT@  ,hx Ⱥn`/Th%Xz@'ٰ,ކq;z'{.WE `x'+0e?c_&Y25 ׮2vX1~5A94kɚOM!D0j1D{9ɩ YG +]X:v:?ɎjIIsqE7`soG=}}-$n/X!"hd SK-ϒr_֤mQk"_MJ8ntqk*@#+@PZxdUAyp1eT ޹&I`\R A 6-qʧ@zTӸ9mZE'U"fn.^&tjft/b1ҁ Z18rMfAgL?@eth}n*_ z 8i*Fw|;T4Ӽ%]/~>LZ5'M71B2@7!f9Bx=US 0w:Ѥ;keq$= 6g怳>J1Ǣ. VZCt| )n2/y!,cm-}4X srZvBK81Hc|^2 $n3dbn:c`\p5iwk[檥^L\ZS7)9EX=㼲9 )@wҭD fc^$c*e4_Uo`ⷢ6ZIl9$/7xaN+40DJ;3U5qr2- Qr8?SqaĆq[5eK D1ylr*0lⓆ76$SGVy. aFqKK+.^IBA|pTߔ,晻T+eu..֣񩙰Go4ӘAG.Gtۦ:3uq =Largd-4SU @&(DD˜ӏTyb}ڟȨtzɐ^g6)9to%M'O |KeLE4wkv}tRx4h~>jc-J>PߍS+|qxzJY70d1wj#h^Ӝ;19CߎRN^.I f*6nUDgtO"UrSBsqvv3rAD[lҨ66EieNoa<L@L[BefGW 搇JD_(lH2+-t:Vy᝖ܝ낁o[O z`7bZ 6ia?ӘǷeoT0젙` `S?CP0].Z7w])9"<[.]wT)ҷKg#l oZ_IjhiY LaI#FQ ~gy^dK|tuAڬOK.bO3< φ+U{JUꥇI,z:5C 5'ҁ0]mpqE?cCEڬtg?G'4`Ky"-oh頝Y-7M"Gc-$5GY>'Ѡ.haT. X[ a@RQ _ɳ:JK嬶PN,㐊!ާ@t/,/yĦz2-(%Vw:2 ~_o,KĮ?Ț<T̿ϤvXe19:Wa~.*1IA-=3 K-mn(DU<+^*6w">44AUvegwKpe/9i+8qkbr5MɅ,q&fс{cVDtJ>p.-@ўEd)K]_1vCǶ{C)sgRBn3ozּ7}:L[\1ּܫ=:uhEjӟN8jC%Nq\ApHfTl~{-+9ؤ[ $JB^}UvnYJ;)^/)Ca194!ue.D̰K0Ew2ԋoGH Ng_@_w-!ԇ\o@}WFic0 #܌R\dj5ҡ.DOIL:OF2k uu> ,#aO쐙–@ im2Z3r_ؘ-,UqAN0L+>zH G4ayjUzmV޺.]RbZ,@Q]mWd2UZ-Q K OI:f̬O}DjW /4.NYzv " C [FjQWXmr NŒ2H &jAW)Ǯ~ ԖVMp< (OCPd&'.K.-?r-\Aa~ )ɫNɍ]~U flV=P.&#nt=ICt0QV?۾C >7ciڷ7gR5Hx۱Ƥ0',Y؟6_ͼQ#R6< ?[ُ9/(طoqHb_? 2znڴ)7i|kKvwk(>{ FpB䍅\a'#BJh}zd&RU)4=0',-.b+i7fF(A[0f8DͪB|I#:F#z!S4Ѡ'UiO)ξԻ`AeRD΁KQ4nS*C&9(=~ڢO!0:]}j/=mJWͤ##Q?|JYbb& V%Ei'UNLsקH ןq$D\#yvrx0z@M9 ` SXk_1wBr!U73cE2ŁHZ5q n5k< Sz:ȑKe"n.aXf-`9|鄡Ӿ'=;{jeF䡂e8vq3Y$ )="KL+螣İ}C K"I>&3BO\r?zZK"zbc溵yfz-<6hLNa߅;0Sףw{\;[{ڐф0T֢ w{ԗbSzgv(Uy%N>}Pp^D'쐧˫nb5`oj3TwM:P ~HU)3ye5vRhvbfQ1iܙK%85ѕ3BzbUtDŀ v"1 9+)l 2ocOGAHQvbQel++2;kwmwz8$tIoJI/cD| `,"}|12!U.ee w^/:G/t# <B0JK7vîF~51@ce߈c 5<^56UC${8Hupm/9ok?!V$Ϛ!oHv%!gguM]pĞk(bx[5#ꮑX>p\+JGB3|Q3ؐSD$1pa!,p\JuS`1΢^Pw'%,qwL+}E,K)4ɼ?'6GbJ}me &3}0s (J5j(VOFψ=Txp:&qB&,9Yr{tֈ+ V:"~Y?#jˆݰF0; {q%. {í9Cc[ ls\",mX6laYu&F<@_+8uU OgE7=V3&6EƠWnW0}XN͑~(S[iZvȀ;Z .!cN,32dE$i2-AǼXjW+ܠ3mv]C^檋;{لl3}2‹2m.'2i6dތ2_a#vs'Y%?Ec_Ꭺеk4Qv*W#͖%l/#-UC3*Nm.;Yy/2İ갩Ù[>@ܮ ~/c9ëMbF~ ;c鴾 `G rXِhŠiy!/cӼftm{'W,P>ӎSUf( ryIF0#`?)60VkVi@4 3b[MYmy_Qd]qWC@{_z6 egl{ƙ,AXPȕ$7ə-U̹vE\2va{#x^ŝEm[#{:,:pQPJ8gN~ѥ+$qDIFSdb CާZQڪƮl^ k'Z-H8/4!N*7-飑Žn1pʩ1OY4^V NAzp8Wc ط| b.[?:G߇ A=jro,Gn9{6|L3bj޼qex6cӐEzz Xn2 SM"]=#eO>@/5{xMp;VXnu 5̜Rb :%k%%#ܡ|» L+pmS=SBRkk AVs:׃y2?/+񞸙M_~?k3Z_rj]1nj6B}j'2{拝,ѨfFUk) kw1| WEũhq<i }p ;u@:ԤĵhXmGvGBB\%줖mo;FdDւQ˞e$s&jBfN&SglI1<44Q; {I"d( !6;L߻JN=6ÌVr Nٍ~NKs2O۳~SXV"P Zcщa,]|蠾fHd/ h749!ۂ?3ܳ~;Oi*2< * *;|}(dq飽܋-:wRnB"' _@V:'w"4q抦m{LM GX3e+9V=)Jg 1>@6avB`b}1Uا0e?UMM\xfzFЎLt8AvUEE B%Qn?e d7ZJ,5]Q<})*V31uSAl@\OcQ/_h"E8?=\YeF.њYk^WŜQnnz2ĭXDW'A?? @'KFϨ4H. U[!؂>!/aYᎰb}s4I meùK[T-ԧ D]0ye*= cZl_i[Mwy`SkM/b+]<įzFulWVsŢLkڟ7AQ{5?^Ea eU ; !l@Z0?K2V8E׸5l8,H6)RS# ȣfV'{WcSǵ*c}4JS{ ea=xǯ)}y >>IW7l 8Ea-,cxŸfka´wv6C;܅wp _Ѱ4T 8$̔ydWB.: u@O1m)cODWA+4JCw@&il gDηB4V@9ou?Æ B̑^`V@1ƋȦ]/m VTB'?C؉M.44 '97fѺ}ncb>\MM(A;=in^u`^9|rb5'AMgsY*ʖYMocHiɣ2w~Q6RJl3>'Tb0^W _'5J ڈ6d,ʦ:˹l3(1V7*opUW)"G}"ksq#q}wU;<:XG ]]j)v}،9PPZEUF$>)F d*C Wx (Qq݋? IfX3mRDɋ뤘Wl}] AXM2 <}ZCkŊl|G#bm:] E# C/kg{T -ԣW RZT2wմ.k{T7撀4O }]? h@~w);_dKz \EWDִM-u7Xm qaJ/:cR  f qbI e@88U]`޶0#?hߜg7 A#sUjvuĤb\V0̜]-GGWDAU5 3\®y9U{!Px . Jq8 2 .f+AҶH?+5 'ڦH(5 +=)ۼ*~ʫo9K' RݪJ#Ƶmx.֓F4ۄVfNPaVZ(UG &tc9h0$imH8}(dg ll&J*F*"Ϋ ujÙɛO5V i-9mDta<%q 3:FZ)r#Oa6[t{ $ϯg|TgMyb,O6EHZ,Z QGՂ90hGF87o1{gES!n¥qo4W "ƭ$ϡ"򗞭u54}i f6l]9#/ՄEo:rAq)G*ZUԁ"9JZ %h*}"{&р[ )*4,%)Vu*"FxCC;UiWRQ_(Ѻq-X_vw4ӏfKZ)4!} tu9')w/WuWZRW1JbDo/G>pQ^&2.B+(bvp7`rsD&~8(<}3;_s/Ϣaܰq18@ɉd}D‚së+4PE F䝍?̩lR@(=ǑZ#W$U+ޕ£=Y8>uPBq]/'/z}UVH1^2SS|dx]P9>%/oK_81#K:2TviӎV[9MG( Ax ڪ9TbkMʘku:+aXUӚ`,,51&Zwz1 D1rQ1~: J$pTF\g8Y?lfNlUilUsf:'2]-gA|3%J筋A8K< A8sL+x=;HSp:eYcv14\JhN5rJZ7NNB$zca҉l Y=@jUeT1ElR.I<EW/S'=Ž6J]=L˺\qI(bc!2!mG)J/O5('p[֫& uhA s`; t^ /jM2`"94u bp߷;]mąI=i\q fWmtܯph)6w8}?F(ˤC:q^Zߙm[_$.ٱUC\`fW_FHB>[{nDdEcP"#\Z9B#J{vCAD;ݕs |~tr LöŽvj~d&ޭr9CK_27=˯nPpW!԰U>D2qkiU,*]aG`>`ͥZk^b4=a*=qM+zI8 ]@J -T}IVJZoDؓ+p?0f鲾| O/D픢Re9k,Kfgi:'#gWpԢ ŘtQpp 8%.Q吒G1֟T1yLD+ϒ?f{>? ~f5nceK*t?$il= ^#겨Ho?XCIpƣl&~JxH_6*\ Ts)4lp-,@`f 8t*F3'DoN?+Bx/ %J͓v!7{}Mokԕ>n=i%|CY2ZG)/9yv&bR m I צ5 c93RD8.cۓrj;JWF -ălC*ʩGkyұذtO3D8P1NADQ 7ﰷ8+Cr=6׎1P{R .$'%l 80ZTiWPq΍% Ά?lm:'z.;fݸ\^FD/0kԫmFHև qp:kx`ƩJ7eBW³!fBlFEЊcfwxHbe.uel&uv @gXjCTm$q5pK`dW20*qS u}s9whd5! s-S9]z@-922L ǔXo C4dq<4/rX ^E4&uwE+~L]{ǎXy#E(mNeJlxRteo[^f3נn( o˰I/s–rS50G}>atICLf:@"xPlrtEm t$:a[Y+oG/ Pq+şSCh 1J$'TEk~< EMg6w>kYu9ɧ `RC Sh"ȹʼb*BS.w=j`*J]6`IjL~7!:ls$ן4Z~-Q0&!J3mt_X;X[z? /8v$ӓ!qt٭B*`J^o9WM*CF,*mՔiK4{ 'aV~룮n3;dcȏFW&!Ԍě`k,4uهP" r4fӉ#w s [L&Ju,7~pA(,ޗ&!,5 Ror% Rr6),z)YN Rӯ!v2 e(:fXeC1^wzT=pIx24=KC$9}cl`{IVQ(٠ c b[T S`JA1[ ;ig%d4Hnc1r6V"_(n w9Cu:|<b)j3VO3 Br[ :#.!)kR3,E86%s^JS ٺ”|1 bZܪV Q$H&uZSy8f¿IXn|cH0h}utJvFJ,$Ҝχ^<ܗx4φK&j˦}T6"L[cl66IxK;ˬ/O6at#@"VQW(}Hg֘-޼D$ZGȭګ:bx3Ӟ߉.nF~(r:^(pRqQ >\h+g="yY6WTc < urՍk!ʾrsnh%XNg@sW჆$dkpWQ@ 1+@%=pA]B/ ƛHp1Ԯ~@,}$%eىe391Kܑ'%lYJ=)i߬-B$c۹ͱ eҼ.5o9/lK[UzidLSy;)MsYo%8NP( [: }-'# T^  HT~yFGnDŽ,; ]5ppw$>(m!kb@3py M+8* loV0rЍ.' gc,y;1 #kl#Vf-Hu4:'Zm,3LbMOA %u0 Yd'T|{%T*f oDS,b#:6͐XC`N1dZHa f' *a:rCL p9: zL_HDz+d Ej/)MAo͆PhZPR˭eZHa+,+*%;A {Y7x` 9;CpԂϏۥ{v+ :lAv.[eO_}DW[}ۅGxRVVm[=Bw;iwłgݬJɉҴZE6 RVZj;dfPFDiFOno}wA܉3, A?_,u rCF\vK>4\^-.% &g309#Z~Uk9^ej95I hʉ'lc]ʎp?ug#UJ-h[t~ +._yo@a'ߓ@zӮP~s"eupS^aq`?;GD_bq<[ V8uC L҉\I3^R5z0@(hEfћ+0ұQE `Xu/\G$1G(lSƁ_~e\ 7@ A]$vv g.k*Z7] 9D9J6;ts? -IwbHNoO E`I5ER w`)8'CY"ݼw;=6ɽߩ鍪THFqik c9.9;+h?QSËma6~,Jn&r]vˁu֑%q՚r~~W\hPx\ڡv懰a )gc~g̯*FסN׍*֬ BMHU%PI˚[J3e,I޼A7V;c'M˜p/OPG^&Ki X>H+6$citu NDA~Pӈ >I@RXQvbE>}\A5A  Ic{j'Ԅr21vpLL+>#b5Fv'-KdFl Wc djR@XHB~vyK2'AN3C چ@kнD.kjRY.D$fˍCvbyb<[;Q50 PIhNsUݶϼE7*&ds#+!Kd}ek1}c$˲Ӡ^B"yn]8OM0e#^T{|S!JXji$d2ˬv{y餽ֽkN{1˜64hܑ_"k5,HSYTS1fYWJprt2DnLA˶P7~BRG3M6/mtqO9D i{gЗFja<(XV\P '(S,AڳR\fp3S-ed]K^"&i7UeC7e+ΔAZqQj#(=' KbZKvq4*A6{з5 $/f(q(35&aZc ?