sqlite3-devel-3.7.14.1-2.1.1>t 4 DpQ/=„  U6v0/+Dw+$3@IVsfi/kJp_.l.1cah,Iu)Q\F߬+0e5M]@JBTU2fS٫"' UӝGu@]TgD]m-_/!~l.Vv,!r.*lA?g6/_ ߠT#tDƬ٤5I@uLR[k9دAgQ/=„uAJ/tP:n۳T?OS+O%mYDgb/9BZv^=6s('J^ fV*i|4Ȳ}TOƀe$xj6#Y_d$,E9f 6#q&JjfNlSDJf}T#>,Zp!-[C$5hqytu n'Z/gԋ54zPKmgQXNmKn ; hfCبZqddd19e5b59c932b5648de3bde5aed3799236d5bd>=k?kd  >$(04BK^ w    P hx,(89D:Bi[FihGi|HiIiXiYiZi[i\i]j^j0bj`cjdk,ek1fk6lk8ukLvk\wkxkykzkCsqlite3-devel3.7.14.12.1.1Embeddable SQL Database EngineSQLite is a C library that implements an embeddable SQL database engine. Programs that link with the SQLite library can have SQL database access without running a separate RDBMS process. SQLite is not a client library used to connect to a big database server; SQLite is the server. The SQLite library reads and writes directly to and from the database files on disk. SQLite can be used via the sqlite command-line tool or via any application which supports the Qt database plug-ins.Qzbuild16)openSUSE 12.3openSUSESUSE-Public-Domainhttp://bugs.opensuse.orgDevelopment/Libraries/C and C++http://www.sqlite.org/linuxx86_640^^QqQqQqQr31719de05abe932e484986f427919ad341586fd97964475e0668a741985322082a982aeaf124ebd0d732d3ee9f6401d9libsqlite3.so.0.8.6rootrootrootrootrootrootrootrootsqlite3-3.7.14.1-2.1.1.src.rpmpkgconfig(sqlite3)sqlite-develsqlite3-develsqlite3-devel(x86-64)@   /usr/bin/pkg-configglibc-devellibsqlite3-0rpmlib(CompressedFileNames)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsLzma)3.7.14.13.0.4-14.0-14.4.6-14.10.2PnPE@P@@O"OOO8NN:N|@MWM@MJM.@LLwLZLH2L1@K@KKV@KO@K&(KJI@Jyt@J%@max@suse.commmeister@suse.commax@suse.commax@suse.comidonmez@suse.commax@suse.combehrisch@users.sourceforge.netmax@suse.comidonmez@novell.commax@novell.commax@novell.commax@novell.commax@novell.commax@novell.commax@novell.commax@novell.commax@suse.demax@suse.demax@suse.decoolo@novell.commax@suse.demax@suse.demax@novell.comjengelh@medozas.demax@suse.deandrea@opensuse.orgmax@suse.demax@suse.de- Bugfix release 3.7.14.1: * Fix a bug that causes a segfault on a LEFT JOIN that includes an OR in the ON clause. * Work around a bug in the optimizer in the VisualStudio-2012 compiler that causes invalid code to be generated when compiling SQLite on ARM. * Fix the TCL interface so that the "nullvalue" setting is honored for TCL implementations of SQL functions.- New version 3.7.14: * Ensure that floating point values are preserved exactly when reconstructing a database from the output of the ".dump" command of the command-line shell. * Added the sqlite3_close_v2() interface. * Updated the command-line shell so that it can be built using SQLITE_OMIT_FLOATING_POINT and SQLITE_OMIT_AUTOINIT. * Enhancements to PRAGMA integrity_check and PRAGMA quick_check so that they can optionally check just a single attached database install of all attached databases. * Enhancements to WAL mode processing that ensure that at least one valid read-mark is available at all times, so that read-only processes can always read the database. * Performance enhancements in the sorter used by ORDER BY and CREATE INDEX. * Added the SQLITE_DISABLE_FTS4_DEFERRED compile-time option. * Better handling of aggregate queries where the aggregate functions are contained within subqueries. * Enhance the query planner so that it will try to use a covering index on queries that make use of or optimization.- New version 3.7.13: * In-memory databases that are specified using URI filenames are allowed to use shared cache, so that the same in-memory database can be accessed from multiple database connections. * Recognize and use the mode=memory query parameter in URI filenames. * Avoid resetting the schema of shared cache connections when any one connection closes. Instead, wait for the last connection to close before reseting the schema. * In the RTREE extension, when rounding 64-bit floating point numbers to 32-bit for storage, always round in a direction that causes the bounding box to get larger. * Adjust the unix driver to avoid unnecessary calls to fchown(). * Add interfaces sqlite3_quota_ferror() and sqlite3_quota_file_available() to the test_quota.c module. * The sqlite3_create_module() and sqlite3_create_module_v2() interfaces return SQLITE_MISUSE on any attempt to overload or replace a virtual table module. The destructor is always called in this case, in accordance with historical and current documentation.- New version 3.7.12: * Add the SQLITE_DBSTATUS_CACHE_WRITE option for sqlite3_db_status(). * Optimize the typeof() and length() SQL functions so that they avoid unnecessary reading of database content from disk. * Add the FTS4 "merge" command, the FTS4 "automerge" command, and the FTS4 "integrity-check" command. * Report the name of specific CHECK constraints that fail. * In the command-line shell, use popen() instead of fopen() if the first character of the argument to the ".output" command is "|". * Make use of OVERLAPPED in the windows VFS to avoid some system calls and thereby obtain a performance improvement. * More aggressive optimization of the AND operator when one side or the other is always false. * Improved performance of queries with many OR-connected terms in the WHERE clause that can all be indexed. * Add the SQLITE_RTREE_INT_ONLY compile-time option to force the R*Tree Extension Module to use integer instead of floating point values for both storage and computation. * Enhance the PRAGMA integrity_check command to use much less memory when processing multi-gigabyte databases. * New interfaces added to the test_quota.c add-on module. * Added the ".trace" dot-command to the command-line shell. * Allow virtual table constructors to be invoked recursively. * Improved optimization of ORDER BY clauses on compound queries. * Improved optimization of aggregate subqueries contained within an aggregate query. * Bug fix: Fix the RELEASE command so that it does not cancel pending queries. This repairs a problem introduced in 3.7.11. * Bug fix: Do not discard the DISTINCT as superfluous unless a subset of the result set is subject to a UNIQUE constraint and it none of the columns in that subset can be NULL. Ticket 385a5b56b9. * Bug fix: Do not optimize away an ORDER BY clause that has the same terms as a UNIQUE index unless those terms are also NOT NULL. Ticket 2a5629202f. - 79a4a3a84f.patch isn't needed anymore.- Add upstream commit 79a4a3a84f to fix subversion failures- Spec file cleanup - Drop support for the pre 11.0 packaging scheme. - New version 3.7.11. Changes since 3.7.8 include: * Enhance the INSERT syntax to allow multiple rows to be inserted via the VALUES clause. * Enhance the CREATE VIRTUAL TABLE command to support the IF NOT EXISTS clause. * Added the sqlite3_stricmp() interface as a counterpart to sqlite3_strnicmp(). * Added the sqlite3_db_readonly() interface. * Added the SQLITE_FCNTL_PRAGMA file control, giving VFS implementations the ability to add new PRAGMA statements or to override built-in PRAGMAs. * Queries of the form: "SELECT max(x), y FROM table" returns the value of y on the same row that contains the maximum x value. * Added support for the FTS4 languageid option. * Documented support for the FTS4 content option. This feature has actually been in the code since version 3.7.9 but is only now considered to be officially supported. * Pending statements no longer block ROLLBACK. Instead, the pending statement will return SQLITE_ABORT upon next access after the ROLLBACK. * Improvements to the handling of CSV inputs in the command-line shell * The default schema format number is changed from 1 to 4. This means that, unless the PRAGMA legacy_file_format=ON statement is run, newly created database files will be unreadable by version of SQLite prior to 3.3.0 (2006-01-10). It also means that the descending indices are enabled by default. * The sqlite3_pcache_methods structure and the SQLITE_CONFIG_PCACHE and SQLITE_CONFIG_GETPCACHE configuration parameters are deprecated. They are replaced by a new sqlite3_pcache_methods2 structure and SQLITE_CONFIG_PCACHE2 and SQLITE_CONFIG_GETPCACHE2 configuration parameters. * Added the powersafe overwrite property to the VFS interface. Provide the SQLITE_IOCAP_POWERSAFE_OVERWRITE I/O capability, the SQLITE_POWERSAFE_OVERWRITE compile-time option, and the "psow=BOOLEAN" query parameter for URI filenames. * Added the sqlite3_db_release_memory() interface and the shrink_memory pragma. * Added the sqlite3_db_filename() interface. * Added the sqlite3_stmt_busy() interface. * Added the sqlite3_uri_boolean() and sqlite3_uri_int64() interfaces. * If the argument to PRAGMA cache_size is negative N, that means to use approximately -1024*N bytes of memory for the page cache regardless of the page size. * Enhanced the default memory allocator to make use of _msize() on windows, malloc_size() on Mac, and malloc_usable_size() on Linux. * Enhanced the query planner to support index queries with range constraints on the rowid. * Enhanced the query planner flattening logic to allow UNION ALL compounds to be promoted upwards to replace a simple wrapper SELECT even if the compounds are joins. * Enhanced the query planner so that the xfer optimization can be used with INTEGER PRIMARY KEY ON CONFLICT as long as the destination table is initially empty. * Enhanced the windows VFS so that all system calls can be overridden using the xSetSystemCall interface. * Updated the "unix-dotfile" VFS to use locking directories with mkdir() and rmdir() instead of locking files with open() and unlink(). * Enhancements to the test_quota.c extension to support stdio-like interfaces with quotas. * Change the unix VFS to be tolerant of read() system calls that return less then the full number of requested bytes. * Change both unix and windows VFSes to report a sector size of 4096 instead of the old default of 512. * In the TCL Interface, add the -uri option to the "sqlite3" TCL command used for creating new database connection objects. * Added the SQLITE_TESTCTRL_EXPLAIN_STMT test-control option with the SQLITE_ENABLE_TREE_EXPLAIN compile-time option to enable the command-line shell to display ASCII-art parse trees of SQL statements that it processes, for debugging and analysis. * Bug fix: Add an additional xSync when restarting a WAL in order to prevent an exceedingly unlikely but theoretically possible database corruption following power-loss. Ticket ff5be73dee. * Bug fix: Change the VDBE so that all registers are initialized to Invalid instead of NULL. Ticket 7bbfb7d442 * Bug fix: Fix problems that can result from 32-bit integer overflow. Ticket ac00f496b7e2 * If a search token (on the right-hand side of the MATCH operator) in FTS4 begins with "^" then that token must be the first in its field of the document. ** Potentially Incompatible Change ** * Added options SQLITE_DBSTATUS_CACHE_HIT and SQLITE_DBSTATUS_CACHE_MISS to the sqlite3_db_status() interface. * Removed support for SQLITE_ENABLE_STAT2, replacing it with the much more capable SQLITE_ENABLE_STAT3 option. * Enhancements to the sqlite3_analyzer utility program, including the --pageinfo and --stats options and support for multiplexed databases. * Enhance the sqlite3_data_count() interface so that it can be used to determine if SQLITE_DONE has been seen on the prepared statement. * Added the SQLITE_FCNTL_OVERWRITE file-control by which the SQLite core indicates to the VFS that the current transaction will overwrite the entire database file. * Increase the default lookaside memory allocator allocation size from 100 to 128 bytes. * Enhanced the query planner so that it can factor terms in and out of OR expressions in the WHERE clause in an effort to find better indices. * Added the SQLITE_DIRECT_OVERFLOW_READ compile-time option, causing overflow pages to be read directly from the database file, bypassing the page cache. * Remove limits on the magnitude of precision and width value in the format specifiers of the sqlite3_mprintf() family of string rendering routines. * Fix a bug that prevent ALTER TABLE ... RENAME from working on some virtual tables in a database with a UTF16 encoding. * Fix a bug in ASCII-to-float conversion that causes slow performance and incorrect results when converting numbers with ridiculously large exponents. * Fix a bug that causes incorrect results in aggregate queries that use multiple aggregate functions whose arguments contain complicated expressions that differ only in the case of string * literals contained within those expressions. * Fix a bug that prevented the page_count and quick_check pragmas from working correctly if their names were capitalized. * Fix a bug that caused VACUUM to fail if the count_changes pragma was engaged. * Fix a bug in virtual table implementation that causes a crash if an FTS4 table is dropped inside a transaction and a SAVEPOINT occurs afterwards.- fixing tcl macro for old or non-SuSE builds- New version 3.7.8: * Orders of magnitude performance improvement for CREATE INDEX on very large tables. * Improved the windows VFS to better defend against interference from anti-virus software. * Improved query plan optimization when the DISTINCT keyword is present. * Allow more system calls to be overridden in the unix VFS - to provide better support for chromium sandboxes. * Increase the default size of a lookahead cache line from 100 to 128 bytes. * Enhancements to the test_quota.c module so that it can track preexisting files. * Bug fix: Virtual tables now handle IS NOT NULL constraints correctly. * Bug fixes: Correctly handle nested correlated subqueries used with indices in a WHERE clause. - Re-integrate the Tcl bidings as a subpackage, now that it is easier to build both out of a single tarball.- New Version: 3.7.7.1: * Fix a bug causing PRAGMA case_sensitive_like statements compiled using sqlite3_prepare() to fail with an SQLITE_SCHEMA error.- New Version: 3.7.7: * Add support for URI filenames. * Add the sqlite3_vtab_config() interface in support of ON CONFLICT clauses with virtual tables. * Add the xSavepoint, xRelease and xRollbackTo methods in virtual tables in support of SAVEPOINT for virtual tables. * Update the built-in FTS3/FTS4 and RTREE virtual tables to support ON CONFLICT clauses and REPLACE. * Avoid unnecessary reparsing of the database schema. * Added support for the FTS4 prefix option and the FTS4 order option. * Allow WAL-mode databases to be opened read-only as long as there is an existing read/write connection. * Added support for short filenames.- New Version: 3.7.6.3: * Fix a problem with WAL mode which could cause transactions to silently rollback if the cache_size is set very small (less than 10) and SQLite comes under memory pressure. - Enabled the column metadata APIs (bnc#383370).- New Version: 3.7.6.1: * Added the sqlite3_wal_checkpoint_v2() interface and enhanced the wal_checkpoint pragma to support blocking checkpoints. * Improvements to the query planner so that it makes better estimates of plan costs and hence does a better job of choosing the right plan, especially when SQLITE_ENABLE_STAT2 is used. * Fix a bug which prevented deferred foreign key constraints from being enforced when sqlite3_finalize() was not called by one statement with a failed foreign key constraint prior to another statement with foreign key constraints running. * Integer arithmetic operations that would have resulted in overflow are now performed using floating-point instead. * Increased the version number on the VFS object to 3 and added new methods xSetSysCall, xGetSysCall, and xNextSysCall used for doing full-coverage testing. * Increase the maximum value of SQLITE_MAX_ATTACHED from 30 to 62 (though the default value remains at 10). * Added the fts4aux table * Added support for compressed FTS4 content * Enhance the ANALYZE command to support the name of an index as its argument, in order to analyze just that one index. * Added the "unix-excl" built-in VFS on unix and unix-like platforms.- New Version: 3.7.5: * Added the sqlite3_vsnprintf() interface. * Added the SQLITE_DBSTATUS_LOOKASIDE_HIT, SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE, and SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL options for the sqlite3_db_status() interface. * Added the SQLITE_OMIT_AUTORESET compile-time option. * Added the SQLITE_DEFAULT_FOREIGN_KEYS compile-time option. * Updates to sqlite3_stmt_readonly() so that its result is well-defined for all prepared statements and so that it works with VACUUM. * Added the "-heap" option to the command-line shell * Fix a bug involving frequent changes in and out of WAL mode and VACUUM that could (in theory) cause database corruption. * Enhance the sqlite3_trace() mechanism so that nested SQL statements such as might be generated by virtual tables are shown but are shown in comments and without parameter expansion. This greatly improves tracing output when using the FTS3/4 and/or RTREE virtual tables. * Change the xFileControl() methods on all built-in VFSes to return SQLITE_NOTFOUND instead of SQLITE_ERROR for an unrecognized operation code. * The SQLite core invokes the SQLITE_FCNTL_SYNC_OMITTED file control to the VFS in place of a call to xSync if the database has PRAGMA synchronous set to OFF. - Split off sqlite3-tcl into a separate source package.- Adjust the package to the new upstream tarball naming and version numbering scheme. - New version: 3.7.4: * Added the sqlite3_blob_reopen() interface to allow an existing sqlite3_blob object to be rebound to a new row. * Use the new sqlite3_blob_reopen() interface to improve the performance of FTS. * VFSes that do not support shared memory are allowed to access WAL databases if PRAGMA locking_mode is set to EXCLUSIVE. * Enhancements to EXPLAIN QUERY PLAN. * Added the sqlite3_stmt_readonly() interface. * Added PRAGMA checkpoint_fullfsync. * Added the SQLITE_FCNTL_FILE_POINTER option to sqlite3_file_control(). * Added support for FTS4 and enhancements to the FTS matchinfo() function. * Added the test_superlock.c module which provides example code for obtaining an exclusive lock to a rollback or WAL database. * Added the test_multiplex.c module which provides an example VFS that provides multiplexing (sharding) of a DB, splitting it over multiple files of fixed size. * A very obscure bug associated with the or optimization was fixed.- New version: 3.7.3: * Added the sqlite3_create_function_v2() interface that includes a destructor callback. * Added support for custom r-tree queries using application-supplied callback routines to define the boundary of the query region. * The default page cache strives more diligently to avoid using memory beyond what is allocated to it by SQLITE_CONFIG_PAGECACHE. Or if using page cache is allocating from the heap, it strives to avoid going over the sqlite3_soft_heap_limit64(), even if SQLITE_ENABLE_MEMORY_MANAGEMENT is not set. * Added the sqlite3_soft_heap_limit64() interface as a replacement for sqlite3_soft_heap_limit(). * The ANALYZE command now gathers statistics on tables even if they have no indices. * Tweaks to the query planner to help it do a better job of finding the most efficient query plan for each query. * Enhanced the internal text-to-numeric conversion routines so that they work with UTF8 or UTF16, thereby avoiding some UTF16-to-UTF8 text conversions. * Fix a problem that was causing excess memory usage with large WAL transactions in win32 systems. * The interface between the VDBE and B-Tree layer is enhanced such that the VDBE provides hints to the B-Tree layer letting the B-Tree layer know when it is safe to use hashing instead of B-Trees for transient tables. * Miscellaneous documentation enhancements.- New version: 3.7.2: * Added new commands SQLITE_DBSTATUS_SCHEMA_USED and SQLITE_DBSTATUS_STMT_USED to the sqlite3_db_status() interface, in order to report out the amount of memory used to hold the schema and prepared statements of a connection. * Increase the maximum size of a database pages from 32KiB to 64KiB. * Use the LIKE optimization even if the right-hand side string contains no wildcards. * Added the SQLITE_FCNTL_CHUNK_SIZE verb to the sqlite3_file_control() interface for both unix and windows, to cause database files to grow in large chunks in order to reduce disk fragmentation. * Fixed a bug in the query planner that caused performance regresssions relative to 3.6.23.1 on some complex joins. * Fixed a typo in the OS/2 backend. * Refactored the pager module. * The SQLITE_MAX_PAGE_SIZE compile-time option is now silently ignored. The maximum page size is hard-coded at 65536 bytes. * Fix an old and very obscure bug that can lead to corruption of the database free-page list when incremental_vacuum is used.- New version 3.7.0.1: * Fix a potential database corruption problem that can result if the same database file is alternately written by version 3.7.0 and 3.6.23.1. * Fix a possible performance regression caused by the introduction of automatic indexing.- New version: 3.7.0: * Added support for write-ahead logging. * Query planner enhancement - automatic transient indices are created when doing so reduces the estimated query time. * Query planner enhancement - the ORDER BY becomes a no-op if the query also contains a GROUP BY clause that forces the correct output order. * Add the SQLITE_DBSTATUS_CACHE_USED verb for sqlite3_db_status(). * The logical database size is now stored in the database header so that bytes can be appended to the end of the database file without corrupting it and so that SQLite will work correctly on systems that lack support for ftruncate().- Bugfix release: 3.6.23.1 * Fix a bug in the offsets() function of FTS3. * Fix a missing "sync" that when omitted could lead to database corruption if a power failure or OS crash occurred just as a ROLLBACK operation was finishing.- buildrequire pkg-config to fix provides- Version 3.6.23: * Added the secure_delete pragma. * Added the sqlite3_compileoption_used() and sqlite3_compileoption_get() interfaces as well as the compile_options pragma and the sqlite_compileoption_used() and sqlite_compileoption_get() SQL functions. * Added the sqlite3_log() interface together with the SQLITE_CONFIG_LOG verb to sqlite3_config(). The ".log" command is added to the Command Line Interface. * Improvements to FTS3. * Improvements and bug-fixes in support for SQLITE_OMIT_FLOATING_POINT. * The integrity_check pragma is enhanced to detect out-of-order rowids. * The ".genfkey" operator has been removed from the Command Line Interface. * Updates to the co-hosted Lemon LALR(1) parser generator. (These updates did not effect SQLite.) * Various minor bug fixes and performance enhancements.- Add -fno-strict-aliasing to CFLAGS as a temporary workaround for a crash on (at least) PPC (bnc#571934).- New version: 3.6.22: * Fix bugs that can (rarely) lead to incorrect query results when the CAST or OR operators are used in the WHERE clause of a query. * Continuing enhancements and improvements to FTS3. * The SQL output resulting from sqlite3_trace() is now modified to include the values of bound parameters. * Performance optimizations targetting a specific use case from a single high-profile user of SQLite. A 12% reduction in the number of CPU operations is achieved (as measured by valgrind). Actual performance improvements in practice may vary depending on workload. Changes include: * The ifnull() and coalesce() SQL functions are now implemented using in-line VDBE code rather than calling external functions, so that unused arguments need never be evaluated. * The substr() SQL function does not bother to measure the length its entire input string if it is only computing a prefix. * Unnecessary OP_IsNull, OP_Affinity, and OP_MustBeInt VDBE opcodes are suppressed. * Various code refactorizations for performance. * The FTS3 extension has undergone a major rework and cleanup. New FTS3 documentation is now available. * The SQLITE_SECURE_DELETE compile-time option fixed to make sure that content is deleted even when the truncate optimization applies. * Improvements to "dot-command" handling in the Command Line Interface. * Other minor bug fixes and documentation enhancements.- add baselibs.conf as a source- New version: 3.6.20. - Reworked package to use the "amalgamation" source distribution as recommended by the author and to fix the following bugs: * bnc#555845: sqlite3 should link libdl * bnc#470371: system sqlite should be built with fts3- enabled load-extension option since some packages need such symbol- New version: 3.6.16: * Fix a bug (ticket #3929) that occasionally causes INSERT or UPDATE operations to fail on an indexed table that has a self-modifying trigger. * Refactor the internal representation of SQL expressions so that they use less memory on embedded platforms. * Reduce the amount of stack space used * The sqlite3_create_function() family of interfaces now return SQLITE_MISUSE instead of SQLITE_ERROR when passed invalid parameter combinations. * When new tables are created using CREATE TABLE ... AS SELECT ... the datatype of the columns is the simplified SQLite datatype (TEXT, INT, REAL, NUMERIC, or BLOB) instead of a copy of the original datatype from the source table. * Resolve race conditions when checking for a hot rollback journal. * The sqlite3_shutdown() interface frees all mutexes under windows. * Enhanced robustness against corrupt database files * Continuing improvements to the test suite and fixes to obscure bugs and inconsistencies that the test suite improvements are uncovering. * Other minor bug fixes and performance optimizations.- New version 3.6.14.2: * Fix a code generator bug introduced in version 3.6.14. This bug can cause incorrect query results under obscure circumstances. - Use the old naming scheme when building on openSUSE < 11.0.sqlite-develbuild16 13592513223.7.14.13.7.14.13.7.14.1-2.1.13.7.14.1-2.1.13.7.14.1sqlite3.hsqlite3ext.hlibsqlite3.sosqlite3.pc/usr/include//usr/lib64//usr/lib64/pkgconfig/-fmessage-length=0 -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -gobs://build.opensuse.org/openSUSE:12.3/standard/ecc32316b41157a7653c2775154aec00-sqlite3cpiolzma5x86_64-suse-linuxC source, ASCII textdirectorypkgconfig filePR,Jnsޢĸx ?0] crv(vX04z0˳i"$_jFRpB~_Pl:tp%1H gX}Ǩҭ+?ޅ=Jߪ朑*3#Y$)(Ǹ0m"dYzSo4mQNd)} 9ֆ$g nC}r3 kRKl r;XW@^ 2iňI^j) hIw^r}@WX.}(&r(cǞ4P)C{\%$q7?:ƲmQQrojwr?m0íVSZ+w zxYiLfA7tfb^:~zuYH'=AujƉxiP S:kP>6@j`&g2RfXVcRkF T#ǽ--*P&d8Hodj_߲=8; ,]8rz[:IÞpu !NU,$y\@)R͹g(4%`Vk/,qU)Ph t8߽ǒ/ʧr _DC)UNZʃY>"ډ(S*!,BF v&;Pv'\llFl{CY%qFQYu-)ϝe΍7vqk&}9zMpdhEy\Yt{ ^ ˳GEOeҹs&!Io¸B> .u/\ :K C] xVB n0JTƢ]3:,÷Xvp#O=Vn9pY_R1Z,|m> _5ԏKum V!xR־ђ71+r>mVoYL8r>rNysי)+r[={~HBӥrUVxy(ߞZI͂c ǁ4*:q[bCBUT$ ._OL;*Աiq\ʽBAw-Zah㘡SS{$Q}"9,:V1FިOŸu~UNjO]7vr]/O"<ߦ6=P#PM&$(A(O<4#f>/EҼ{" ?K14:"m~|WhИi*gLR< KIr)׵]qNN.HC_;K;-Xo:/nS]1_`"?3YGzI!~fmR }2ې&e5Z,rFGV*oݍ461IHQW-Z&^^d7KX0`js+.~:֪j6 lP-xX 1F`[hşȜ7ÛN N Li9{4agEMZ /cHcT ϸ9`:uL `}z@Ғ2'JcB˖o8*ӠcKR{|FFօ XFp/1Ou#δ lOvH]b#Y|ن3Rqw J8:Mj2|}e7[ f_'ғʹeE`}k#YN-]yqiU.m&>]eJ6_;Jq,4T1_cx =|"umje& Ѷ~%AY yta*'@! N@(vR p=g F aW1BoJM/'.e[-)aWVR9'bSً_MP\vEjKXAJ09F`<VY٧R4gRK#"CG;{#fPgvW\_zZͥO,+1s70 k%L/H*0dސrއ -@0dm:\nS,K J,HG %ir]~0J;DM@aGԹӝ 5 xgň7_T:ɇgS P5=̕JN"L_Pkb`K_-_1pGo)bQ? N(чK 6lr48OPܮ,KT.u%jrt2_ }j:#`0a%b᮫`Sfr4a{] c7?\5_74Ί]Lfre{R4zCnl3bx%1I%v.B_={TL!*E8%k~DĠߏMU]%i7Pۜi\R+*UYRÎoFTgd֚Heg(1ŊKͨ†yYdF ";>nȎX2jjawO]`]-=ɬĠ FMLoxj4r}S\kulR|"U|̵cz"jhZkB's7@aA=QCtÑojjxQC,wh ĚTݙ7I\^}|c U;f4`@-ݓ|x<ܐR@dO3!:#yѪ8w7_C{Wf% h#h)ThJ)&}i{z :@}P90(o&+ac7]Cː۟\W?[m4J绕  eCu80% uDi!aF&SooC|Bc0Zگu OkX|NPR_~Y50%.*(\Reߏ`V=vDY!*^crt{>!07n]Wf}g>+΂eSꓒD}[p41aݥU8} pY Pw*% "li朤B,gwsŃ1G-d[+~LLzDB ۲ s+S y/vzu k-U/CC@ ŗ#Q~":xؖ}@ApNYaL/("B5``ű'+f!v+#dvoAʣ>"gvuz$qGIXDXw/,,k3Zvƣ!fzZc#)XE nqe[9xquΦc,+d*Ovlqƪ1b1t?^7"?mdVW5V'yn 8q1!DO(X)kRq0c4G$Qi45:M lz(Q (‡rX>e L˔O'n^fI$+qI]`1lk\R6_ZwW6e;0gO}euܨ(>VC;bޙNo^ՙpO׏G!_KF6xG(?^`:;X~ T7!CLJ@ȕ@9CR\Lj(ah+eWg WԮ9blI^y dA?cګ-rPWY_w6}rv53+`jf^SonmY@z݁[- m0ޓN]b5u@uiT(V3>rc)aj2]/#J {T_#N\dqӞ(M9MUeCӲ-' (귷}kh# A@Jf`\hG򠻱mXKc-缢X]QndQM-R^U!C&e#֫#V#/qVM$Eӥs+[\лVW114'K0uSQ_m73$ռ_~W$îQ-B*%V+p[.u;<) );F 5Wf7680M"B{H茛V/ ڤ Icx{c#|]oĘƐPcPDѪ;e:AbXhKйoH4k}&ڥtCQ]͂e _rF?Kfzux/RF@6vg܅[ShIiHn ҶG쓻uj}yP xW*9kE `8~k-e/)XsO lnH89MF*/T򤼲 hXh`4p0i{Ա!pF$Aܕ{l @Xβ($c< 0s1qhx#XZ3^(p/8JQ,@ `C߾+72k`; NSpICK;h3~+#:]xtj tҵl黂.1Vzm : &I-Wz_/WՌ>qmZ;d" meN'v"biэ%N݆oOwk2f߶hygIN,G^#+ּiTq1%%I}fCGdݪ`olSD?V= PooVf>uXVlz[#Ȃ[[DM#jtRnH褀'4ڈmLIS7FB>̨OաS-F0,|lU AwF>ݍUh,ߴ2ɖ}Ǽls$i?;"&w.aLJtω{wΚ vv72ZX jHep}Td&%{6փ/F2yJ.ӌo},P\j҇Qp$JqH Dj\WH(iAp0S@d9j fMw$bLώI=_I&@c@\(+WQ@KM_n+=0Lq>ko4hT*+pW%=I&ؓ.I; I/[aW7plM9c56kR7hŚ%z\ӛ@;=7nN]_w<èͧ_ c=U{T4XL eXp)@ |gL5چ^Kxӱ! &6Bb74ᡘ|H U=*k5s\GQsj#ۆ.hNC=hWMo O}!@hkў7bb3lAsAx@bV-~ x_Ԯåo׻/SK\Oa9M(QBd wF(L3?~*Ttf˸t)@aļMf6K%'n2KߑŚdQ G`:@|=92zM9M]! )@ğW7KIh'Gŝf!)Qo2 l1HFItk gԁ;CU1aRŤ-%I1fŋGa\;.b I{<$*d8 WAj2#y6娶.AkΑDRR)(\B|)S4mkpGpw3`_p$g+(=\z2-;kzp.Te%uqfwS ;9zj3My!XTdmy]Ʃ uUFEb.pKl)T@ӤG{)^U:EM7P0 xLBa[R]"V77?lg0Y-][|c>ZǣʼRi)q-d'&['|@KrZtv^?+ޠ-6sGf925Oϱ۽-<{KJ~U=.}}1X<5IpfkƳi6,:{\6t|"Ssu @o@ªfGLK9q޽$HeZ֬AYHDU`:a00鹣h ;C4LЮ!1zj nǀ0^pm;FI苿WaCSR 8~ÀPpijwb=iDO#7:Ć&GE_WC.<11˕ԏ2^R:[m(JqBHI;(ʶk8<+.43Qoyz+3YxDZB Bۉa߅f@ُV0jAş]LǮ$G?Naւ!tH:s8X5y,ض!{⬀:$.έ)7y=.~!_[ }$_8Nr"|] i}x_,`C~*zV3rV ܒAE%>4&[ YMM&]mN.6ې6 ZWKNngἵkޣ2cʏwC:[s}~ޒMEf0ϻpVH_`%"S]^6@OŧW_`~K(usZAw3 tLq/S> 7`x"wNceqd kHY EK3SMA+K|Y wC!6ߛ >LJLΈ2aâf޿ !*F[·59ͱC>'+^cv碯ly xqkؙvI )'d]'~4$%3BuJadvm݅BNՒѢKgɚ?l5l %u=2p&@/9n@+xNwF^_s؁!h Jf*wL 0[N8\+uMEт@4q d4O^x>чX]L0k7'/I* 5qP3EkrcÄvFNs7Iy?L9V),A2GVdl4"o;i \|1&]e/"jE@-i(Rځ|믶xěӻ- +q%MBEEPpвA:PEQtmzZ+ty*ip,]Š^FpopNidۂuD};%7ܵh?;o`IoU[ɞ/[Q#IL\>dAf~[rQ>r>NfSky -E@s@N@ʼnŸ́"կLk{.O &h)_0J \]@6P#:O;w't|f_@ !&9@kػl:{Y$xRN0\sE[. ҖFfTCnfg>PKAKmQ&|lI,!23PlN+ YX%{71{w]8U=ﰱlLZq~_wq  "U(CE;cd~ usD-__49J{))2˷M(v0Vq~yFntZ2wpa0xFj {f:{ dxq葟,Ai+=o5( 6(ΠP&dQY  C"Zw> X{osYcR_o&gҴ$;ShHZzp! >}x;__v1M4-K])VPUR*~ djEPMVVB;dk;/e.6J;Vj%u;}ny@(8e_)Mwk˵ʬsOS]&J'Z@=!eƨ 6_)e}Tc "Tczq/r\SMՉb:o;HԒKjڶF_7S:j}[~ɄT K!;)>_h'Gn:uBZu} ZӂRL)>JWRj2)CZ#'6wEͮ拕t|9Ώ[Olve9U/9)徲:uAI:pc6r)+;>`=xaw|; D%L3j~hH¹@ wȽ֨]= $bހ)#Llq6o6RYǗHRVT&[OlKmBk;ӿNFc^Pf|LĮ=3( 9}NTDeZ9Qa .YYP7v;y EZ#f+CtP(FY648M3x$%W]1,NPRiםy!+S_+iI${-cl9/48qK%ڗۤpeClKݕ[@FaSq -vaqPЁ. k9! 9@9U=܇: tpyROK{`l|C8 :,vo` b,Pn2!Ợ|S@6ܣ_3\=2'<\xz5ܜE}&Z] 2vYQevԗ zAX *} u.v&#C$z^))92C^\2%m*RvcW;"Aɦm½@235| ڦ.!;CKOIA7~v+pT5KNFp)C) ,Ǯ֓H~tV8_Q0Ėd5*QvɥDE ηy5GX.@)_*O@aUͫb#'uO"mMiZо«qse)?@qTX?dAdT}P?ԤjYG_=B_ G}ě,y4 :@Ef\<`(]^H.h;d^ēVWAA9g4"ѼיS!wG|1w|j$唒+ l _"ۊ_8B=^Ѕ[cij6h w-W^yA{RT r(6@' u+c'g Tx@X `y/lA;~ pS贖ʿxudmBSu}ZoA: ڧ]sG  u:A20W#}CRhF>dP 5H(Wnaĩطר??ii jN%`mW8:+MNd4t*$ɆA3Yѥ5"70@aN}?g M秬z>@(#NyJ1Ww?J:W*X Ri yy85p)=lI!?CG9oNK+A!jas6IE(p QL9i$i/Daq'}I`׮&=ZeWl鱗'+jgY) it`} {&j˺:k oK٥ eʢN%5'rK.ve5T^SwhUaWgP/\_ Nm4:B"ݤzHQZP:Stg"Lj-.W`I2=5 HYm.tߡGRW`DMKdpC?,DA:9#0q$T/>PEVz8St~jFIG؆A!Ckе~8cʈ^o&vVRq<ƒy- R$ FpPf7VUX*xpBMO ӧ?'Z{wbY[NW2/,T1]'x*Ej:.Cl2w/9X XV(37Cvrp.V'.<V"@7HE@wo|Y+ -r6 orO]8iAܳ_R)9;I(jJ#XƽGAHWϴ[%Mca+'zjK&l|kŇ_뉦5\`is ċya{~7^8ê\-U˻4 iR}6 a3}Gw }j2cmF(i? ĮΪZЂC!`f{ Z7h_U(=HVN 3w⧭ Z(a&eчyb0cL"0ņU%SD׷48a;1;3`_\n ٦}4$ ,60,]F؁P(GAѠ[X|W:ECYī0w6k1H}Uωj#f|^ɔ:qqùM"t&mլ浩K`_O 3T@v~pUp@e"p/>g#7b}wl,PF,߫uh! ?Y`0 e)e?I+<_0Or;6Rۏ&7IDEіQ;$rVP6 H_ܸNX8؁fyv8Y:()!8T6_Sϋ{t҆}֘J)aw8,X~v\HXpv(-(\fv70AFݏ^af#eۢDbYG,I F>wى^|GJLװLep^4)?I%QgveD,аƗԂhnm4tX">0Z`UlHi)nNmXS|Un$ ǫtsY#s셐 =`[̤YQaC^5*1ǴʹZ#jÕy}qdD!Bƍ870''ԍrA܌xz_)6!O]? +νJdY9aǀ4Hf2r[)pu# Ns8W)X;5K0]m ?޵$@iYKEǪMj5.O )lGտP3l6DE"Ґ:e_>*]U9`#GƑ=i̡@%ށܒi^pqEnNbwFc= uvrM&D?,pH\i~-/Z=bKg! @jQGxmfU+|g74"Fx^6ݟnFiQuc V=K5_7sSR$&w3eTוpWVWABeͯk;JGr@-XzČd8 ]B^`vCAiOTaD,oldhA7utCcEt %yW<6r,IBW>MUhaBb%Zo 7cju/#4Q_`k ]:9@ y%-f*VvI-hjj10a,u2†?\bd.{8 TRcbc؆q{>=vcgíC h/r[ \ Hˊ1} x+8h@ 2&^qS +Qx?A,3'N,fO <k}: VӖEDzc/܄y^7Hf1>?j @X's:0A^o>QfoܭSHn9֕o_1\KNM{ 4?RaKS`b֤-Ϳ IG7{;{'/6jλaXr{ Yo%Mr4E{5j,?;JT Em) Q iq.t"4 1BPUk=X//sOtF#0?>U2= &45>U'UR]6ȵ)pZ🱥0{æ/eM7ro>ǘ xTU;qsBKW׺c"rw#x!'\kn{V_/.{dhc<{ŜHU6\ {&RP)[/✒r1ܑ}5(#_= ^vM]cq~R9BnpCc2u}_$z9ل?sP7JJ䥃N^ц 43S zkENi#רS<> a R$==~`Rkteݎߤ8 .9:*  p@̐!z n5h|X0Nxx1#mA,9V )l%"57~#}>WhˏWU&a$N-(%zMDLƋ@m"`6JtExY<@%o%\POV\ "22WhܺYK‡quʸ:4H\F@*=/&w7Daz{UwܪtP -0%J'!<3ۮ4ۊPٞ5#84RXjdl\gerA LQ79(ԅ\_= wrBkm΂ydc@(S@ig"w׆?h)]+^̈JhRŨ%y.ЍlQͷ]&[\+O)ܧi2އG| ;Iqqr|"ܠB'"`P S'n0LP?!yJ|*X` z͛rQ<^x]I|~\:~wXSRy*5ަlMUʃcLݝ|۰+[XeTߺ!* |(^qRC؇-|nY/vd"Hbt9R-Bu%^AuYMi;c ŵU;w^[ikz-靰ΧtJ]JY)tĄY󳯗kmI"r1?+9fAs0?C]9Tt!y%p)?mn -D } auhk-:ܤM;2ޡ7×-0dѡs(w?$/[x8BA;և 9W|2&ۅ nI &fbUJtu ض/yʽ!2)Oi ņ0TBQpcIAQ^4UfV.mB'ݟ3` dqGA~֍kٗK+<ٛQdmex9a)f40ܑW\Inʼtt }]uZ1X̴dFג-~֍7^%#yK'Y _JGHد:N@]+q"TA"tBKKٰ@W2tqw_glyݓXk#6RH7H"%68{fQ@p8X)_Sb* !uHO Ѯ#EVKX3!6Z&ThW+{SϿ3މ"~+'z;Sp@wJHRf,ؾ_Ŷ apR3=[M8j3˽96SF@b2YD#\j(q7UcA ѪgsQK}IKQmueEόKOu$29uBH&:t}ˤK[Bv 2X#C{вLnr] u->Z(Ҝ /4@;yU4Z7\t/FEm8N梾X FpyƵR^ 4ki˿C6E)m>眵]Ͻrrz~C=u`ӼtH,ןrk{tb#cQfS'*j'Zx8H;2{X+W7k |^_2c;m's( Ɩƌ+]7'}XIcK:̢)jI5(}ٕo\}`<&0j'Gq+I0GGEp*Z;6#A+)tk WNO`q a2aO k֯sn;Zd 匚걯chS]L΅=,!  Wsg{9#Oh.72!ZF3ȼ+σ!FW=˗S'\1+ZϭF>ёghxNew '_AGO4MuHȼ33Od >=;TEYM"|D5 e}쓒3@Nvy>cmi׃Kwws*ʂFw-2z5Mv b ?k]NEz*q QE2R!PWEp 0gg$M(c`.{Y1U<`p2<^E4Zrppw++]]J9o̶Bp(祅ށ8_/<:̺ BUGҀ{?j.%Y\zl$$6Gs6roNj̙/pɺbQ!Afgb`sR+*tU-.=uu  B%כ/i]X@[-97OCd u (>T %ȢgM cG@SCcKTW7IArLy.NTCs&f@Wg|pUծ}yɔz{gTU[h S 94RE>5XsюA-$6f츴ϲ+ulKg 5UÆ+;0[>A{+$ k+1yeQJj%2 'cXggJ`*2fê@|ӠCXaT$+aZ1mx~.P)0 (eρ뺡Q&(,eXv,%({r~|E;Kup4YG[/PFWj{DGzd# {H&ya+;=EoYQWA'^Q eMqZ5y(=Â;"\#K˕/ ^Bņ΢܌7yz~Ly`DT*ѡ:;|+>lGY+{\r\>[2qgqR;X5=rj]zV('ެh_US{b,h\{8\M,E-r2׮rL *r`L=9+<48ݱ3qE}u\ՠ OC<\e~5xjV -qJè  #ARh/^G3Gĕ%~MX5MZg;rp;P3" 4QCIkHE\?V xwBf':ɔ!,BN55Tp@1A]ɍ +Ђ1qk1:Y Nʁ&G?攈$Z GPUL&6›@ޠ|X+d1yǻlImrRW^89W,$g$e o䧲|[0ޜnI9YcnG% 0j!&O09N4m`"sVDe( ,Dv._'k }Ҹҗ!ٳx(ݜG2ZET`#ʵ4SJa$A"q.Rik{?z'7n;5]C} ExÕ2*& M绤#.3%PTLa: hmkyٹ Z(`E`' 5lf9q:$haǒFuVNVcq϶;|D̈́7bˢ^#LqQ6Au&/, : j^Vjc"enzs]j,NMaa^Iǫx":n{$ƛ _Л`$ғe$L59go^śv\hyQRr{V pߌܦw D(LWW+LJhp ፇ߂#?V]U;Q΍ao+S[Z ^SXK6:+vw3@GNVj5mK"ĖHN׮7Hϊo&EEӛsF$7T\ui'טAE_2=Z߸tL nkۖz+$nPXtܲ7Kьf|̮tҧ͸"eKO3Yt}ܔsӘF&szc2l }Tyuic47J壁BBoި%jNNܳc¼Ȱ̀ S5O~uJ\OՃAKg_EexDʲhPKܡ.ōc@IWȼZ+[TT;FFjH9.;0 |$[_Lヿ}WكJ0lUݹʜsWtxoL_3U{8L~OE2v_uXNg:xqHE*d;##V1}@Z {g18fX^]+-bckR+e1t?$ n0"1?%3tqX)̰Iۡ+K$sB=vrѐmbp0bܺ0sc<"OE<8qB⥄)ရ㦠U?$I3J7-@ʗB~< mC!No7=U=Hݗ_[[_NEPJ߶9gLX߽g>I%&8HQH̸-0⟕2t@PݺᮥrA.6@,Z J>]5X"l,[@sɔdbſ,EOk`YZ#6/9p3`(ƫT8{ "xZ%dh/u&&ҜNoњ a##lWtjޒ:BW%f ao`lLs$&P'= ^/@@'oFA$tQgv@3xE*\4ꨂ^Y\8$){aE{+,6ں e}bIZ(7nݽZ8x\!q\o03ciσ53䀢Ԇ3"gBWgQ^@Oy^<@rFK_jwkJ2Kx _NeAtדwdngs/J1ڋ}? ޥ-f@~ieDNb7R{uRzn4Q 2yc;M64Z恀c K ^%$ߘ)CƃDpR$l%Y"ٚZ0[U>lJѐe<^stjʦKE{h'MK]+Io@|YTP}_kr°(Ngý-pr_O'"mY6*gGfSԍuM8W1y2J韰1:н=_{2~??"kWf}xo]?C;җyYV=c+ado[r6Ƙ!p$R{Εlp [$u05KZˬ`Q-6Kg~M4+S®Mր3DʐW\HH6qmu h"8B#dBp-+`g;=,kp]ٽRizfJ\[YG`PcE(  Ӊ9]ՈǝiIA-( n8 q M _XD&E8V爤vgkB7 {١߼Sq!03+Թ8]l)5LȰ*8⨂4]? {r߄ڐ$%R!l ^;ƼIz_`/s;ڢ k&f%Bv[Dg !M w'{dBm+|z=ɽti!y/C<`>g8 )e_{zkpѓrR\Qα2ذ$9(Z4k Viɾ9Z`h oO&𗲓# x@z_Ap~oJ \Bw)*ҐCdE3`>LĔ O8M'd![ʧƹQQw&`Y۽|ÅluRwwqIWl/plekp s vQv٨-(D5 Ҳb*^n@BV6XvOi}Yu_.i>jb+L`o%`^ 8کZGNgb<3/XUh]W xI8͇NI%@R.bt_J ?%_- m {!u|,غ܃J}^DF>侩&2rK,`*s&ܖ SQ);Ɓti<6%S=?"u5NmvUs d;pE@Um{]ZIl6esv&5\>iGS"x/ECXuDw!bҭ^weK ]nHw*wLk$>`Tl4aɭ.JdNsŽ͈sُ^! :8uzi x#ZI: ɜ Ef. .@xSqW%=d,p 8k꺩pr$މQ]7gJ=%mJ׊0dF+Qt@nhͤRc;1v|m4b=*4P2}3wbz6uX1qC-6Vq-+Z)S.WƴȟB액_G$] j3zf@gb{&aO t.㛦W듩c.a$\TV qluԛ6l}G˓!׭AE)L`3Bi1- ]C-%վdku%NqM*n U\xHtQ(\qS^cUд|Shδ68Wfb類een\E3zlj7uyA v./nF8o5(MvFSˆ-M)\{$$䟳sVCSN/$Msu>S7umIG`m}V4=aF( /s&0|BR'itpVTq^se$<FpևQY+iAkϑ9y_L!Fh*zXleq!Ň6?曘;}0{RpR _T0x8U/kH`owK**"A$^ɑ祟oOH" ?\t@4[tZ3MX}(cK 2^CyRƟ3.R{Oj!aYD(x\=9O]=s{G?ȫ"z5 lI>)Gρ݆H}4\cN>nfCj~qj?"R | T:ÖkT59!;LTn|`{H}\7g*qF۲ zcfdS>%u; @#xDY2D]PF ]{0)$ Bx@YKNfpY̐/黟HsҶvM{.L!Ըn5BQ 7ŦszG2{sTiIA8Y.|_ǼrzEC Dz~z:ٍ84su8d_"wuZ 7Qr0Dyr g*xXN;q"VM̽[RgV"KZ/7ŠnsԄ5WuP: w?Fϸ}8餿y2"a9Q> 엟j7y'"wC.Eǔb{,-`xШs;cJbnzt}GI]erC&)ڷcah؀}v' C%oupi֬wS@Y a. =*$ ՟*9oq &d:y4-ه>)#uZwODczL=3~Jꃩ^q58qsCӀ6ލ£aJ-xGnZvXuTM]-~VQ\B_^𳂚 '贲3ΊfFwȏYjaL]jF\ ;bNOn?TPL7Bx?=kGɅ,jN~ ƴ^P@G)SO]Gv)&" cЇh,S5xAXv*s r6߀Țg!Qϛ%y@4̝ 06xo`aFJvK[ 7KL^MH/bXt!c"ˍcy92Pu{"CZ~eIn 0$]&:˻NO"FTx[ ďLBrmJ`yJQ'פ*>@W(9hSn]hacCF.?07j_̠ytJS֊gEF;nA!L}&K.HJCr0X~2KrܰPJ|O=u"!_Zy;<<%v<}gԜ0;#`Oװ/f>KuS evO ۏt5A=_]@Nv)A6ߟ|z4c{T^!mYd:)XИ/NHkmbn1o84˸%hZl^WR _Iupi4'y| 敯q*-`!b܇eu¨ 26mԤ3$H(R'DD4TT*#) ~*\gu˵PtBb>kjwq_/b<&R5Ȓ,cy>!v+%["K2,p5ߤtHR<{xiVC [~VGLk4e5 FŠi0R !f[X?|0E,6t;DI+BL_@R24ub#l}x2 k)%*jB2HSm^.o ؉?LBl8'"͌-0Fb]m^<M yF/sξn$,"%ТT{)25W0Kd"e"ɡCMr]A\OD N8GIe,Ɛ\­`@Ks.0.μ̮rBP-X3][i18NG5=$maho?@c kG;fFl!{'%:VPt!HۄmGpZP[m?H<ީ^ (ut=ӾX* fd93 h3:՟p0,Fgj[n'7TT'(өZcߟ 3G62X7 r2_(clM" ~sF1sưn=Vmr_#ѳ@?O|G>O3FYmG:Oyݞ$Id.7-'7AI,[Ž j%Z-}DQ7SR੣+ ,[DIG׭,A/,Pi{i!w^>oH0BFϪ$zWO{ .7r<"P7;Ǧ>MuuT~tB^s(L{.zyr~1 7[bǯ|H# 6$rhZiyŒbGTTN<&n !)_qTa"b_7GM9(cJb)q/Or(k)ߧI0K,фWv%Pο8S-m3&M˓z[]fn([IO/QOG:bR dz}]66xb٦|,q OX?MuHƚr Ewtգ&tc:XXbÃ6q&?@ׂ=C0yjd?G)5rdWUb4(9 7}mJ;UDr ;0Bi b ;S (f,$ou|= sZ7Tx#Rk]MP d3e"c@@I,tA&3|Ј9nҏ|2ȸ(P?/da:?`uSņ\i ǿ< ikYٛ :}ccGGD~ zܮdLH2JE aIUDca ʌ_<_n\ho6:?*3VꫵF]*X:%U8ܳv_Y¿〪ɁީZxk5˾Cn%0#;a ZU7:ܿlSԾ9 %uoD`tH WN܄SFJLZ;5v,x3!Fq~Rp>159~wSeɃXZ,f1*O<a|O1$J!NV!YϦTRP h(4{6"Qn(h^NJhҝ^oFlK&?F 6z?О@ ^f|wr G(<C>X"gꍓsbR?XiMu2 h^?e&9n8g#b?i6Mo5> @@|6Ci=5@tBNBA4"L}b,SЄE.5[Z1(@$"Ue/fr7'PgFhq?{A1I؂^(y̙"C8OpZ\` 'Z(E9hU<#Eäg-'ykfnRcmc"lЄuQT=* 3,X&?R2FOͽ6Rr@V &l,[}p~,6q?-rLLL] VM[hcEZ/1;0 K47.8bKI>Bbl3v0GqO^ 6>ƋV.R/&EP4lҟelqIjpcn;]"7̰NqGe]jT4IP h([n`QbT]/{ss@[ zwt VJS@4FC 82`#(͐o>? l<y MCJYPr~U(1ѶT™8T#_Cr+,PNy*sw`NOš0̱V3p'3t(NLF~J%\_v2jsw v$ﳫ80ߥ:,I/D5TW+61 x얘7Ona,:0SKf}fثي t]CJ+M*)A+`*2E!QcAoV2crxnL|8:U!nmEx[6ݴmJEe=^S\[1$E|7 YI,=s.p(B^H\]eu,-taǞ;^틬0Ig֋jJx]GUشUg;8s?x/)t u14R!ݠ ED.5>q|ZA{ǰEr0l|a\@HP;v+{"-g/LəVٸ~ip+OqLJ'byF \M^钕Ym<|o/LMQ^GI :'; 쨎*g2 Ks1LݤqwkSeWBUgñ-茢= 8WMҪ"%>qa|u]F ތdjH[."6A.Hj 7C%"DJnNYUM*E'8BgGl Q~kmkL (SSa Yb^Z lJ"\u4SDȚhڜu̕<.ɥbE3"EjC49'Tך(cfъ47S"70V%ld'sSyLԅDbn1F'o*0h!>c1NhNlԌ<"*Xξ:)Aa{ԠٯjC+^3aǕ~\x9i]J)H>[!z~]׆T\_Ȼg񭞆4pWPuP[Ew]2M͎I;q9ݕQ$=@ 6Kir`>y^P3;5ox\S(|im>0hf~ڻej͙j l |29dolX$YD*JNM0:Q@<F]!nc<9RT#Ycnn2ޜK"LZa5BMoVYC]B#+GO_D=]q(%6L1wGW3c.\n,R& W+??`®iP0"L%7-"~pŝWHA3 eB\_Dq{q:M(|t2U ?סV+-aP_Yv/X?]*H)QG|k9h]CVs/L:K c:#Wx:/N솀Pb\g_AILCw|3VrD'd\  / 4_zokn2'-Xϑ~ :P: i!='V#XZG Ӷʍ+Dc! 0 e0_gf1aY$&)4D" Ϸ@ݪ?;cY›"4H mG-9TIH$(#61"KYđR=У4M)AV!t>#=Luk\TFk0EO,d)vRl*8Wd1j?Z^䋭wi+|bXyU^W0Ro4 Zh^=1T`.̾JAӏ>>m-s %y1f_\W1Lmbj tb\7D꜋"|ac)ٿ2܋ wTj: 0TUɛO$㞵AcSC%Dz_$BuҜIuhwj&8Ek8S,A;2b,ٍ 7Rp<'?Y Rj\Axԫ6-$ PL{}HZscve7{.@Jɩ,|EĨʼ9Kj#P]cBIqR4f46a:kJ"qj뚑({ ew?(g6Ec.;mN|%O+[KD͎3hLJ2 f“8g6H$5=&cFqOt|iu ľlDOu/ķPPh+ gD3o;[̵C8݂;2pA~ 5q>ȵkv\㿄+%V2̀^H0mtmH,h&8)u؇2mC2qլxܴl i5SN¦¤(FxkoX+0[-m6fV 痁w㓺#{\ Rc5ު:&|QG#ocKtRg'T);Badݨϕ;Qeӗ낎U}=vxƩ*!SF _ :r1hi^c%: 6$b'!X%3J PuఎvN3TAG 5?9;R" C bOT~k!ȗPDrMj)u![INVA%֬fJҦEV Wp.b+TMŬ2 ^()VR\eeC4ķ;*A$ uUSE7<oyG ~GaMRG79EўٴU$p$de 8,KӘ5W2b8TɁya@NCWӇDWR>msnI߾ e6pL13dbwN?]jʫKrozNmbroAhm?d޶O)5q*r![rk=^w Z|ZW6݂,7H+'GQHENeVi? ̝0k1PZ$eśv-"&M%+d/A[lzXh" .T=˺Ywg )POp$9j-7y-\ p6z:u|#;ȰhDb ¼/{iylGHv x%@pR(;M9}9qKIP"H-S5TǒTĭ_^^$+P-؋͎{2ݺVF^e6 7lm"-%blOJ?>d^A.guqkY+p.uGeQnO{(C.bUDl/6D* CW [J+:h=l[=>yY@~]] }!<7PVE=׹l=Ya@wD\sI~CT@*$k!k5j?H|)ajnW`1Z[bx`I0;D F|['LvM #+Invdkd?@"UM s*#XKjFˑ,t_CKd[ӗs&9 IɃqCsI;j m#aY/|۽bPw Sڀҙ]%nܝjqSuM`s(Ev!p=Z"n0'h]yu(=xpP( X"\.'Hsj 23ɺRԸ{w\(s$;`E2GM"1&{4W#ݿ{d;4Ƨ/. Ŗ`i71IckCئzbpiՀA?2ˣ| KOjzMk!-jonv Clzda*.G6 ]iZ͙Cr?,(U Bn_f^摪P`1jU_ :UJ ~U}bw2Qoi DRC͑E,Kšo39X.Vi/UgLݮ l'-5r^:,Hp<5&( EW*/>.=꒺N3naW¯~^B g=N@W ]oeSf|eLe N%ۯ=IzIM ۛTeFxK2VF.Iu]%ѻ=_dm13\wP[`(//?L;krq̌P3_/*]p>GzaN}R_ٳ]gZEb:җBAM"?t 홈!hZB;xm<ȕdP16L8iՙ*u#iȨiĹ\)T2y{k^MB+&*3>NQ9_@e;tCʐp¿U۾+lKdTY,(Lrw h &ǹ A&՟0^vҧVDѣXK]ufo* Zg"J]ok#Mٵ6Hf)fdAG&3an7#HL5|QуwÆHtle>|vM 9Fܣ-8yQ\Nhgؕ}GG`E;1)kظ+%`v}Lӟk5W'' hc+b/)O/8—dw>ӾkGt зAk'>#S.`f'1k2Lc&X*=+Cqoh&kV%'pg7ڶQCGdx0jUU%)LlPszO_& 5zk~BՍ 0.uɣ\ a(9U3LI_"5S_3:v~HAj3VM֚ L}a==܅qG"OD#!!Ci5FHT[M Y=\It_)P vDxq#b}jUe[~["d)#h66 )`ipZa K$$5l{ &Xs*=Fx͏v/CӳetMMq$VhD=zDV"P_Jn58nghGj3Dߠdso1_q=<'A9Er]:@L)X!_DXB58 @VyV};5d)xUhx-}&i# 3uCTic!@D^bZ?6y}U}{紧avͽ~ܱ(?}+sH΂N7} Ri?%y)HRoӗ$afT\dh\ JnM+Oc'|<&yO;IS;=D1,[0jGSv'fwlHVcTpNްabi)bRwrp Cxl%"'Wi =QoF.TwcJ9)$D5 `y0u.  ٴyXn^pk[TːҺ\UJbMYL5|lj1Ι4FKI"ѭh4H<_Xo530R9oZqsM= ƧKQ%$ɿ-,/Zzd9XAdmQ",)ۘ'* ԗ0ϪiVBg ?_,sW|H_6tj c-ѷas;!Y=y:f'!繛Ic wk 6#'EUĈ໡ ֆӸ,Uы݈ |z,dz1mNCmt ~*ɋz<9$"[㛺oƦKȶGIIgl c 4w .ٙZڽԓ]`6LS>\dJz[4 D]ޑCWi/,5f($Iɠ@j^mΉ  +7kU$!pa$\n$e_lBu l(v]QF(Kv;{썄OD#y iVIli.dͩ"9jsܠU?FѢm<oN:|Y܉?Gʖ͔_4[=Q6hrQ}Ni]Up)hiC@qwP- Bg1('u4@5^BL8^;C>ci" 8V#3BA:)SHxI;qltm+dzNX>٭buC*v)xy pQshyq:$e..l\kB 1F Z{`^\L382"{!trp*![B- bM$˹,PS,@F;ĉtWXכaIM\;Fh6951ٕWuG迩%i(}7=_ڣfa\!W/zu#zoAk r“U(>[L 8КBw{B&~tFSytQYBfD+خBN#<'=$[peW)X1WemQ^d&͂z^'l_ ҸӽGbrH\[z.=x:r!MZFTHup;xV{x3x<єޙXtPxCGo) tRA蘙ҩ={aY6(|'[*f]&' nRtŗΡkq6 LO[Vu.MB`t} ^ :\Wg~]l83ac*6"Z㽭wyq޲J>Ж 1 RAAd@*!a{N?8M?Sz1z]rk̋WA!{8$ t@K xg,5S)K&?;~_[b\n<.( Vv=Oɲ-BTA"TrL/MmDקRW&PJ?sRx̫q+X =suC=.qcn*ja^*ӕv)vz3ann){"yG+O"1T9$/@{Txu,[=˯p?&`/BKt1izmkGk\rh@'3{UMLnq8+eYTiRJmunÛ4JFyOg(ɜ&]ڸ,̎49_B}P̢>8Tm2$8c⯰`ObWe%ޥivk]w{+%aZARX1l_8ݥ;x |^x3-aށoIڻ%j_Бa3*Dj'=uSnD#{ZFovAuCՇ2G(ʒ\7z\hL OJ4H_[DiYV ApҴx'DNox-;4 ,T%޷$(W@̀Ȅ>c^2j=ir-`GTxIfȱt&qs:ȼTya0 T1\af 07+DlOCZrM!pk"r? J.Ik|) xౡ5nbأ櫉4]mq3 dK#0VćK)ةsbE;*׏^~m^ 7F'+2 N3/ Ԁ- mnFT$3CZ'fMӚ[BtUL#Z,?ֵBN:Lto&?Gލٔ'dx;}] fk@Y>Fƶuy:ea;:W*oRq;kSjoL㻶;w*E KW PǭB9 z lHu=dMl4s1%Ky]k fg?pG8"wD|APۧ_e:QxMu|5.뽑EA*hotP- A߆BuD?<\ 1[a0/c .7Bv̯>2;6]6RovjDQ!YEz NUɑ2JIg:*xjxVB>_T]A-Uz8h~BodQɧ^ :%+yzb1"s3kǧ xO`=Ƶ?/qK9ӱ0I:L>go428aCu!d¡B 1I`~Hs7+y&cՑڍL>mPe ӎ_i-xSq;.)$6t~S]4a"c`g}oXVISl xe]Zq0*2TMdb=KgVNO[@Z$Xgܬ /pI0ŪT[%˩W$)v_5 ! 1) R&im8=U!O-"U=q)?:F*+KX'뭴,'8wס1İ1Ɔb;%`|#D_3b 0G*!PaU5w8rUa`eCxj~~Qm LWbj f= %i%ܚJW.W83̓ѷnX>H*X{a'GFht D{JvO_Pc @dhϵTo[m8$-9!`#M'"٘O5t^VTįgvՈsokzqo<7iv! MG!dxՈ; )dzȊ/ TuZ~;. 9A"y< L eG#`"e7VP|@ϗ mJ#]"/$5CY ?f8e?\B94û%B]^-jH|l&S Oi4liXH%o(A{Z('+Dm^<GiQ [@=s-߮LM6|Vd?e&5Ԟr VHkKB_eoK[X{לR DFd HGxO:R/- i$h@S$܃{Ve_V@`_FuOԹuiIzRRX˙oJL"?$/*e}Bj7F,7ٯ՟rꐆ>\R">J 5NjLv6J*n=#lEEKY-}khXKL!bJ3̴ A[0Mźquj%Ib0x&cb, D{A2ҜAĕRj-lXJі 0=jOJWPF pmpq uioP:Xx1@Ƀ: Yw0jVƯʃp ֣_vzI_ N}p+fU+KhT;W(f}Hi뫕sDG*f%! #e]+t:V'L ZQ+\{f4:T=HN0pc]ts|=fq5nGC Ƞ6&Nq7&',bX]^ tAO Q.N q%I@ @"᷻ &Sc2T6hk%?IoG>-K](pkH훙R7,缑#xCQI1#&o:JOMܟKb_\.?Zj0m[ *9e֛E#nfV$09\ɨ곓䊫o)-N(̥OGu3rSYG=o>)yˋbq)OF/ CUA"'@kcP{M7gYըf\1@io0 8#&LwyIG009~p2 ]0"dK'z@$m-7wIo׀t˕XA|u\Sٷ'QYž2"LpGf1ob?nGu\cSwztb άUkuޗބ\/uU9nY=e;ĄTnm1@Ak>/G[t׊6jψ-ubĈX*i[xͪ5nHoH y )ke{ <@|Q%oQ.zX,sLc1n"zUİbԧZWJ; _ET2agfDn`' 96V>MC yiDh9 cx:l_ljQ2ao<$⒦_R#qQ%ۃt4&lnZ:]P!ŪMKvh qRO]a2jAҷ^~C{U1 8hO՗6)(ɥ w!ͪqn2=vEnI%!9AM}rF3P8zID;;q=J9ԁQ%D{>ZXv!V0qpGY1iV ] K̟GW+r݃EN;ؗ\|b*O cDz?&'{6T=nmHl~|I[ AND--#=%ՙ-e.v5Y}9? іAFO4RjXv}+5#Li!g8ӁXZƹj"ZX %@˓Zz2T{vu1VA\-!fԕS:Nİ#]H%ڑYeBu!H{KӨ`7F8)JIx0fMSשD;p(=fGi@>e.CЛ`J:xh|˓aR`͕rd`1/6Ydp$b޴%nm;݋WEmn>w r?7V̖f~}q]_f;t<|BϓW&*\#zlFAxeg3=4;Ӥ5tCV ;hRHW N ,'4e7l7Q"ޅBgԆv@l`ec'hRIoi\B )~; =5 \,y3~@8^;͇qHVa @b )`=L&.pKiIJj{\byb1Rh)etTy57*b%E{G9É2d ;Jpvr6C/\}i+efGf.jxj ?=AEh>F&8};C1 z.ᇌ^]lM㑤B_Aj pk7$pfzpBK&fGLv>W(HL)ǡ&`wT6jDuE &q B3ũAI 9,c줭[ ;eTYX\rr'"!I+s3ِFfyZ>Z=Ge@ \ܾYҌ`YW:7c֚:DWxِU>m?E}gM]?F# ׾ KG;5f !3.][KWOG ޔ\/]oqQeg(.*k%匞 Q O2%yp]>wZYZטED7 r‘'ԥOW\əpEl*,)z,-i{kyǧ;I!*Dx@/{|xrp8J5u8A]Q)),dYh< @}vd5jƗQ[Ej] `~e6Х)_V`G&.~׊(5a:Iگ1[Nix/ VL+yLKqg&>FP2#3e&7wMUZo{U(Dy0scMCCQ SX'p0_SiFzP~WՒ˘\ޒu`aWu"Trɫ-Yc6p$goZ Ք‡ҋBvZ7KgC?R9O;_>=&@Ug%ܣ>;vf/[-̘P̗s^xz:JƝ^}9۝"1]Ul ǸTS Yys0U|fy K]Tk~YLvt1; " =Ht|ڎn@G|s+:P'۞/O|kEHYn*/S&lǨZQW2 1 JX [6Xzs"UTK}tyxWZin: ,9%<1^ˢ.XPHC2aQ)14\{^du 2RHϐJ憅.͞dc9C]Of]R%u,'z'JxdF|fi%& p۱%l8PLTu;* ar$8鱕l8N4Eﲮ;P 6jJ FuZ7G0WL~$ ƒG3y%J52=e%p1*_a/xM ս'gxE 4@e3<4t wܾ~kBԾ Hg/Vt[5:^ #7I/QOZ{6gx"aFn{@.sҠo$Mz J*HXy'Mn5{&5BPNb>x{NˮE_:c3ɈcJuwV>G Ec/}|]$V=]U2`H2>YeaZ] v`Xv :TXI^p%pVd[<~~,\aI1UlݝfH"0x :{s2Ia}%9ezE;Hm[/xeڥea=`oQջO!Ե;&Y(#d4aqxhfwn/V=M %> $ۀTMO/ c\+6 ~U(,+frq([sVE޶hs^xwDZ MIsrfV:ߥPۮ6MT۵5AHv8/LcZw]&&Eo+6w!7{fJR^#-I7z5??9Ra =Xuk M=ՙU j6C{b}>lq>J&`xh]¢'hry ^8T]Øi!3-"q%G @uIJk>jpijᔡmj "FOh}PENT!$mifސYl ޴i/v6Z`L)z*oqٰhS 5+n ߝBB1(zJbζ_0 ekf[ " P˾Q97'bW* V\MK&ԓH5x-;j18bw.#@-_NJ\KFg fuL[Amq;^9ԳqUj@J!AaK߫0#Sv6ĖUfq:z)@YRgH$ h5 BD[@NZb 8tEDHXԣl Țm_s8bj6oY?ߗPtTٟwjp\ʞNtGJ99 `.~#*ӊr+mB+߰cU;R&ab:5ש:x!fFGf Yۦ- f試%~ESGDy?c6'-K.ސb:cWx[i G6'Jz*3$ 9b)pUXALaN7i|w (ϥL}RE$;w@rUߓ~&\-_ٞMS%C!}Mj ԋHqհx@ jPODъT=v@WMc/imNXԑ{IlGLg:$Y3( .j`)x -N`Q>  Z_\U]6;B^80e))m"Xf^NO[^<[]W 'Cw8fK"sKM`ؓ5 @H,F3>«v2>Y@td7 hdPfWkV{ޯO%lM_N73!ں!˒?Tif H4-C[ Xg@٤9v8ӕ}1˪j8M ̙`o=yi*wEV<^#)3I'H~{3C`s-$*%_TF+-( Kߙ ߝl[g" q\c,Vվ[#;qsouqÅPR3u'zu@qϿՑS> [?tD$U;86P+slNp"q3qUuN9;,A*an__}c2t jP+wO,בu ꡊ&ag2Iy;=,!Bj)m0f 1:'9[S&-}7>*n18bDS@rqQףr髰EVCJwf!/ >5f#){jxNE&(3FtL zxv su6e[T ꗵ"(!O@v0B]Tʣ@/6Bȃ@ |Ob˜/P1mc/ ,ҥon0Ps{5%.ObivѰ\G(KX@uT[PSwIua$Ř˫d=8fN,kZx|1&)= U 01^@@a:7UJj&LqGlnfJ1@M%m![*[6B澌wX>YR= ߱ڧ^MVY 8w: T9Z;@e=%*c(hA=яT2ث=%MMdU: zD h5$sIcӖboN1Cp?bw7{ZQ2pzD>B/ʁ у}(AZ^e$RL,壾kHpCY~e> Fwǧ0)P]+-h1z_beTx_%5CiZ; 1R/XXIzj_>Z`[]$V(FmR[ %M"h_&LlBC?wHX4cGP|bfiϝKK|U#&@ ]k[:~#ش,˅}{hFLuDW}c}.ITX"0Z7OYPBۂ:1[~? յrhM RyȭeU㍡gv5Y9)I|J~#XHmrѱ]_Nr*l[X5-Jv;§}B@8} =.WL h3W(ڌq]KLLj}NUp-"|gK)dvKkuZ/6lT٣> D' K{+,譯"E0]TlD5ElνzV]6llYumWH cFu~͎!# h%P3 Y͉[`'t7؛k Uه` }+m} 6 4k G?FueW$Q}yrg"h,\0uv+Va۟J@2F>H] 3__Y26/b23uq-<"\S4To%S0SBז *@` t{t)Ԙece_eҮFg_nkWwx@[Vhx?.Yu3{IPU{=n#  7`yR12L^?) RmBlCnYqYwNK#)AKeAK:GkA^Y==U:{{ (e$.Fjl<}ʋuV:֏-Igr{ܥ! @&THȅH|Yzy5/x[ȑsdxZblC ~8T+/)r8O\Q F3]]̑:(kgϿBݘa3ޔLd%_L[ mM=TP;w;> ݔLLTNJ\^nLRUkL=PB&|BI]=&VYM-DsPieF Nr%o߁6ָEJ WM\"xz@lt2"jn(_m`>{3W;0Px+VP\OEN,Rӈ+a,4 PI$@KFDϥte1xkɺO !.vY4v~^$ ݔL5IȂlg6kh9*f+le:Qݱ&Hʛ[z1|OAW@} pD6Ʌ"،TD,(_:n@hrńj:p8S*%73HK7ǑK566ݠ&>s0 vN6[ЏR:ubs!D"QڕK^kO hh7:7n8!I=YpR1%MmTNȟh"@@^uVؼf)[fYQdiWME~c}za%"Jݚc)#xZH{zD5vxrۑs+"f,mTg{Pcc*f M!d!ĴIJT݉AT,;p:,m&(`7`s=vZۃ֦H)v a%fKMSą#P[nj }ȎZESQL[?o_']i2Xb370 g~BF&wi-9ѼBwd=_K4AǤmV{.g A<(.ㅵ{?V7rm]+yf /UKs/>+fOL7K`Ug`8 PLQ2 2k# m}ח +D7 Y&)A}.雀/L|nE+?3=c ؔt Z6o4oҸZ끾U9?A^ֺ s9H~/_bAn"tT׭Si?ȅWd{<+Ti\9 aM@nmN4#gGZk!ThF  bsjXSPy^oT?p>&~cղj J  wMnAiznRF;.yZfȁe3A3&r DII:?U-O?ǯ+t2JE *@AQ TXRdbELؠ h'Jr_嵮@8|:TN3YIŗ_$K|(O#WΒ`Y?Jx C]FA{5ɯbR:{GbKKin  2TR,P\ߠmuyL*{=؉%4^s\3.?N;F%Hs;ʂIͧ/ fVǸ+MY <-G27H2N> t3dG&iL;:PQo&8kFٕ_ԀOtWty4miE,ZT9_uA+ i7AOô+Ok||ShCzJ/نthz ;.!YpΕa5R)%qb~2tSl+=Q-l _"mS?n.d!nng-BKT&Gr:ӕhʖjDָܘ0ifyH_V_l5tHllv}wl Z7 gu2­c.+h@rt?W"̟,A-පB -I C2YVa铽ΘU,G2˅pX&]c4Jbip@ĝK3W#"XlMgwLwg^tC"%s,,~zw<+W<@he`H~y 03mR:JrȵY@iTpXAv;tJC0p- G.yV 7&8&ٗ15A49f&tɏm6gΧﰻϐ\Щ ɲdLD]7A |Iij_KƠ=u\}XUInhM:BJA 2r`o̫}ٟw8TJ_wtƌ GҰf#~nTsYu)XgRdiEQ%=2Q YTsK0s8ù.I;0V= #AT@߈*$}F*gUX<2,m`4H+ lR7!uhL;tY3^p% _O0Io 6IttV{\d]pjl+x~'ݾA%byI%[:H h_Ec&pV*?[3+-xW,J"}p֯߫mBele6d3f4 M!1XS?f p #@$ +TQѹU)WdQ _mX=vr?sf(|q17xε" @v7%_biR] )T.KI=x8)ދ+GaZi0,3Dl*@=ss2ןovJ.18kdq'FPl/ArG&P<{ʈg|uO\SpN_d|o&o4(_^}R=g 6BU=$/^t(SiͺҺl흧Jd̘ϛ|:E{#fGn2/7+8d3~ժO;7lFy!f[ pq%:%}u˶}NMo[.M^}MP[Ux'6f(Zš&)J fjX`23 Y%ĠyEFϦ󟡒\ߣ9l!t&(; |3~Euʢ =v ;__Kպ`% cg9m@$VhI.7~t焺5y 0+VPrz.E;1 t]0COyc;SZwPW[6UqU^1cߛZ.YB:%uXVH 꿦cJ\AS|J Y\Q-wu]M)!@ %r:P&]ɻi R#tDj~貉(=F$2r+ϔ:Bqt~)[q4Iqˊ>^Z9QPom 1aNyc}qO+= qVOQ:yX$)on[>G$r$aGq߼;o0)BL B$j3tlRgjYw}C. i|Nr_W^ Lii:E %|PW&R[523s8Q viux?"= M m(7&\S\o W6٣s>@UG_/&P'":Y[M8pVك{#6VD5{wţo֎S!u{NlsgsxPV`V$m DDd RN}MClΪH~J)~sCH;FVýc+yUPu%yDгo|y *,(0=,wnaxrcg6x>H^cp&Frqd $Ï9A\͎f o 3,|;EC ]lhw~&C<'] ԗC+oSU[jײ $Zb6#Z*0ϗn24)< -2\`Bs3g85W9cotbs@룇=19:_iv7HplԪj}?ѓ!dӁqE .(5%iO" [J߰ο1a]iӆRUg0c%ZgFr D$UL:0M=<>%d5*&w()i/5*i_Հ;P=HD۵W\:Jpm.u%k3)PJ ^C9k1LG>3WXqWkXvJtD4v=o,q!X';aԄ8a[,Ke%O͇%^7yL"4o<_^d#T9 ֥ͳ@ͤ^kabXŢy#mEuSɊ|d .wcV'l$U޻;.z#C;l*E\ *u}emA.泐~A ż5'GꀧP*%T:d$pid{b5\ܩ Aj›};@*U 5z!I u2OiLJV5V>ġ>/s-/}g:0ўdl]1X$p:6qBчatJ)JW\c֜~i\) ]KEker?_z_]'Htp 0]xTCɍ <W$z u2v$˗Q{㦸 ]PHDtT1T c_$5IݳO^"OpZ|ua0oQ)3n"VΛ7BLGE}NFNm)#d ܰ~ר-=3()^9A (U뵡;%,PԊ0'gҔ瓟= l"=AֺH_y4oZ#aajfd#eq ƈ`A4lt7cȩuْ8w6TFWOGKIg<zZ_WĀu+ɥд. x˺ >Ɨ,-?թƶЛOJ47W!Fx10-'k:DM?2MIAvX D(9ðnrOy+gvVt}N"#H:gqUCF&m檬(ևњ.+ q#?*ky+bVQ1[Hg'a3˧ ltTW&[s~PaITX_׀La5JדԆzV f=p ?٨V>]*<!R4y[uX>}B[/cγCӽ0& ;Ba*Zk:9WX@':BXM<3Y!!-obe, #G;N%jqzm.Y+ں7ϹpsEߐF4ɂږM)Geވm80ԗ͂ Dsd&[ c(ZϔQ{wC,2bYBGYWeJg)Z8 yGhłD&6+ょZ.]]oRsw4}eKT9 o1s;P<~ iP3\i͛T R$\N34 @ lRZak'n)]9 sM;e%Fs-'8^`\Ҝ.ȧUDע g XCH.HT)'J?HPL48=CϊjMK μpQ֧Yjɢ~c'u% /AT[FVA S\Ӂ<w)d.O_¼tgrrg'58 Ǭ˚l 瀆ks=lW%l]9"&,4ܪ^$ 'Ŝ[ayͼv…Eqg& GX{zu; q[i׋+xw?ۗnna>vT4E j NRvMO_I͠C a-`1P/#<ۄ+{ `fasZKj? Ev7=Ro~ NAޭ#bՐ,qYhL:ΐe,&+;A$@>nvibc-'MPc!l Q4f+WÐg~lձ};2z90լ@9aǚa|2 pi ~wxONoy$'OfΊnS.ya&}iea`ԅE;asA} ?W_u?Z;*1ِo_[V*F9G{qgi}2i9%Xh'XRVP1C.I0c xG/3?$>{IW D{8t7q%>ث6IL٢) H&|~ *0XI?mԩAG2}i=?fV2fQ&8.5j7hݟ^o}?F82OU7Zɫ`>Z2JJ鉸5#EGhc=x&ʹie68ujxNs0ayFO+siD\,rAu}G&1>8Bes?"%aa=4}1>Q+m1Jqd9u"0eDI@! צ\/z6{BRq>x26p;*6a֤AaZZz}`F=ܘ+Zd̠ƐwۇpbEj@B;bHسQ'Yh-w!BX14o ̧9F?47R/ h;;2^ck+:( wcGOmYJ&c̈BK#_ Gy2ב"X?FMxG/6֬hۉ8;04z#v{7+}0%Ex:Me9UOjݖE;ɮ]X: jc0ZU-ꋠ9^߉vKr^<`s).. L rx:ɴc̛\ }5̌Hd]ՇfZ!Ҋ3gfyޯ ~nGx:vKʶnjQ?쬽=NJ*OɢC",/Y߱:ګlởבfH-Z.3Fj3=ڎc`7jDX3<@2 0h|fGljtWեЊFڎ34;? C)xX78f]6UtS} Zö&sS+/`[06tѦ clf b.&cTݨDE:̔6[ 2uL†OWe(Z>;؏e7<Zh3 V\cb$sQ*d_!8=~:x\,2i[@ UC ї`ir :5JTxöoo3B8`aQΘFl`2r}[[EG+?ZJ+g-"!%)T5r&S{oXaVp\ԣ)<q?[,&!ʸ+f}S^ʐ| W)/'{5@ǭ{36#:`MPs'b5G+OQ,!)C?ΞqV5HH?(wYZLo+=;߸S9MׁDj_Wpdi7,w}.NR>II8(6$qd2 Z>i>ўrT<&Efb)ʹ|X._&.?h4UIaU92_Q{nt MAXؽP.#{י*sQ@=VfWU4ba=l19W >12 Y{gecﭹ n:l OP}mN dF#z۱r'ĵ q>]cW{8rd=@8n*5RLKn7$g@D𝖂>3Uk`ӲV驪Zȹ|TvfírsWo{7Q@#k%&ww?(Su`B|AS#Dx.`>}-S5Ct|J3ϴoP*gH~ |fYSS!; GQ&cQꋀb=&C 쁲X/g3|bXȀuEqjPxI?H19_ryS MB-vgu\PYb*9mEEQw{.<$Wpre\ݸlRmiyIhѷ < g͍Ƚpv|N jV$i\C*,^Uaݹl0PSl\3cDS?үCR^y!>\R|l)&}ENS9u\ERa?E4NZ/%uT}|+5NΉ.p,0#VfGjm(W_F!Zoר!gͭ~  >#dWemާ`6n㇑s<1S#dKKlz'텠a~# c\Bb + 3G'њA 'Ep0+ S J`ŔA xm5?A! EExgm0/%錷~GSGyB$U=-3>4@4 COEjX'*iw#u=1Q󳃕!T<5EK9"|cf=JWQ!mE[\}ai(,^[?ѵ"7[z$*,zRpV6<ST$ CzM7( TKt><ԓ\q`QޗaU Z~^P?)EUl9-cKI>@e7IX"^{HII0o#%+f 7+W5fk`51%4 W:a-x&kF2^[gi{3*4߳lSa1dfGZ@fAJEiƘ, nv1Xz]85{ ]rSK9.A!-g9{q{Ҵ = Z3'8؝O}(ט$> >׹R6[p \e w#ϛ_ 8K-g0|G* htYi-ݴf2J" ")%8Mk<$ f6 ת e)HtV$QUQ@$c+Z7kY溭jy=rNYL׿SNM4Bnmc4P Bur3thӄhC*# տefԗ%WDO-Aq:pR*ٛڰڎn X@ntY&nXպ^"%0U&A0J|VCLy6y% S&i5R+7)|'yxZ'GnKW#/_ JxW9  'jhq5{4!%}(]g'ա8P$^N[ 8-%3MQUɁZċ\: AQS |$.9AsDJM㇮5i>ބ scN_E)@Dr^:0 %=mV2|y.flC [Ы2NeZ8m|9}~kt ~/sfdfQᔚĦ/sw-T5zB?rzs3x!WuGL eZջ<Bk̶"^da#7u(0•NJw@ʑ`AN< !FTzi@O/E맰rKdCd$aW943F{# k t9<-7L`jpayb3rӎW-p;};>3bKb SnphX7?kz| t{PBR!! іdl}l喏ljzqǷO |e"dS &;{cmpiyhńy6OX9{ tDg\#Td7Nݍh74KGp0N9x\)-۹;;>l3SuZR/okА}?4 0< jm.U c +R"IZ=sRs:W d*ܚDj62-Dpcg 9%<}(2npz7PbW'DOZNńJJݲ'FOio,df?=^IL4Bh>7l_MG՘#)W2u?Ս k6[B#W6V1 dW=v2uiŞ]mwsr$G@V(ܠKL*7qDj@(Z]gVAF~Y,4bM~(w~ShQQu}f }5׋dskx Q4YPlsyJ4AZ_HPZiM!eYTQsCmcr-H "s^jTfC$|Jh m2:OA稸z O_,UMPTArcȎ! ~ No`@UDha# L(_K$s(gb㹻'YJқ2PWLyUڔ-y!̄i[G4+ } ܄%@ by͔84is7u:_yI>Sb4MݦcCh:Lm!ݥbpی l-'A4Bͨ)wkJ jL.-Hi"طXCg6ahLZ&̒|x>}fP披صf#Jki J:9XvZGMߗc 䙂zD +f2Ut]݅ mF%g%Hrݱ&+)/+ }pC4W*dP41E VqKwr]o歺ΰd4OkWpGY4XYJ>] d7V je?tk.x )^,½L05"Bºįؤ&R>9lϟ6-P9T!#S%q%@"| jh "L0'=eWB!}c2H;jϦ'S(vNhī̘fݧ88^5~T|OjV.4s\t 'Q \;2^Άś7?>K Bm(Thm"YYis(ÈրmUǙY5\x7499}J%.'.VmuifI"Vɟ?{%+OEhVO'cq*Nv2JBF;_fE˝o3tt|LT/zR=FKq_ՠ7)ɖݶOʝ-xoEOFcQׅL]ttG7hiGsx3|-ʟR-ǫP'\=**-]۴c:Hc=Uo*@5˂K 6jn=*86t{. \B^z!} c{4-o6\QV3kM:4++`/ / hh;vδS^b貫]C64X 7[pD'91+G9B/h!+VkD9"&ϖ iTkmENBHHb.C QH%0Fv,sm@Gm7u6oqGCWPxRڸtGg:Q4i/I&A G!fnUY0ĝStϕ|yc !.ЖCb:n~`؊'SI&qPC^1}Q@)ل; / i9J-oQC'' E"#K傟2a>Ff-yY/3r>XhtbHŰ .jnj[>cHD[KD0)N&D5i6YɡwpОI,-ɟ(;E mms~, %N;w֮kc)P%EYh1p>wamVhG?FrBqak&sFFCC]Yi{pB MU(B@P~>l/ _vj:ujQ4/B7napuQ6pʼn@bNƬrA$66tgN5>r]Ks2: =Q%vQE;؟nLlVXY[e0 M3 ߽Rp!7`B7/vY=;)/WYP*7B?om1>I -@&-0 _ q|EcM[4[ϰ /¡{~nsR?bLUqR߭tKĮb".ȥ_̮D\Rk6泊5xe1i2i3|+ F?w_$m:%APb zC  P_{p-ѐp-q % K5j_OD WCg_r3s $ l9Sxb}ѳ5ĢS%ߕ6z YC~4[,L|(.J q:8w[Vľ#kYQcOmb'AV(UНLa[OFݒ 9-%qP:n! z_0CXeI-A( ;_vc<ߒ*RBu:(>hO~5vRԤ!@]}n_W\kAX3a\Gi~AԽuHqn!Ē+"Kj*ƀ\?}E!D8"O)-dМ-:liLD T[0z̓~D,n1v@5,1lC Øg3txdkh' Fխ@Muh4>wk_&5GتG$&B4@4X# ޓ/ڠK{-Zތ:*ݼhվL9vs:̈A5h.e'C|Zo \RmT/+|475?;X6Ӟ$(}L- %CPl^-&58B4ꈖ,s=9&IO^E^[}ujkt' Va̧CX—Λ!j1HH)w(LS~R '>mX8duap'& Py4s\BMF̛,]Y x{@/F&KqJ0LV#`UWӧyR/ҤޛzH:oU=do^τ[9ÓhG8쉡4})I}}uo~ k"/%f%٭ݢڊlvBY.w -=jd ֜=5 o-~dYa`;em21Lh]sZrQrK߷ZqV#vpp(m!tϿ3W8Q\3iz&Ib<"MlOy.u$ ,!ŧ:!mmk7uIY_ΎԆfrl4 <$ӝmu =u'XJeq էDpl{.Cub_.0;2FNv %cRpvcP& 9nMQIդgD;'C m蟁nEy"oQ#K_㽊l8J'rsYٮB(dsmĘj 9+T<5AI˱)KlSz"Nբa{;eg;'AS2t]SaB;W+a[;BR$ŹRMAż_2d}qzPa~n|I\0oU`S3Fs`u$4i9%Ռ-O#4 QЯ f a_ 1bm 3;ƭt r;i