libsqlite3-0-32bit-3.50.2-150000.3.33.1<>,hAp9|ntX,5@4=f]`^ˊs`Tɉb %_ܔI?Ug˜ęOyȨW-)DA:#vp'ÔW.v@5ڽr^}℃o.Ǹv^5i5$Z+Z^ H2I,r1λY'߯f[W]݅Dۜl zKt5uz(Meh?1J-HR[z}#WAX5j>A?d * b $<BIX` d h p   `(8N9N: N>>BFGTH\IdXhYxZ[\]^bcd'e,f/l1uDvLwxy<@FClibsqlite3-0-32bit3.50.2150000.3.33.1Shared libraries for the Embeddable SQL Database EngineThis package contains the shared libraries for the Embeddable SQL Database Engine. SQLite 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 a server and 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 that supports the Qt database plug-ins.hAh03-ch2b/LSUSE Linux Enterprise 15SUSE LLC SUSE-Public-Domainhttps://www.suse.com/System/Librarieshttps://www.sqlite.org/linuxx86_64/sbin/ldconfig/LhAhA30bc80923fc2d7d4d830829dadad6d2385e69b9114bc57a6e7efe892ebe47b94libsqlite3.so.3.50.2rootrootrootrootsqlite3-3.50.2-150000.3.33.1.src.rpmlibsqlite3-0-32bitlibsqlite3-0-32bit(x86-32)libsqlite3.so.0sqlite-32bit@@@@@@@@@@@@@@@@@@    /bin/shlibc.so.6libc.so.6(GLIBC_2.0)libc.so.6(GLIBC_2.1)libc.so.6(GLIBC_2.1.1)libc.so.6(GLIBC_2.1.3)libc.so.6(GLIBC_2.2)libc.so.6(GLIBC_2.3.4)libc.so.6(GLIBC_2.4)libdl.so.2libdl.so.2(GLIBC_2.0)libdl.so.2(GLIBC_2.1)libm.so.6libm.so.6(GLIBC_2.0)libm.so.6(GLIBC_2.1)libpthread.so.0libpthread.so.0(GLIBC_2.0)libpthread.so.0(GLIBC_2.1)libpthread.so.0(GLIBC_2.2)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1hqhw@ge[J@ci@cb?bVbbwbjbBb1@b-b@aaѓa@`\]w@\@\ZZ@Zs@Y|YYYC@YC@Y:Y&@Y"XDXBX@Xp@Xk@Xk@XfL@X2XW;W]@Wt@W@W@W and ->> operators for easier processing of JSON * The JSON functions are now built-ins * Enhancements to date and time functions * Rename the printf() SQL function to format() for better compatibility, with alias for backwards compatibility. * Add the sqlite3_error_offset() interface for helping localize an SQL error to a specific character in the input SQL text * Enhance the interface to virtual tables * CLI columnar output modes are enhanced to correctly handle tabs and newlines embedded in text, and add options like "--wrap N", "--wordwrap on", and "--quote" to the columnar output modes. * Query planner enhancements using a Bloom filter to speed up large analytic queries, and a balanced merge tree to evaluate UNION or UNION ALL compound SELECT statements that have an ORDER BY clause. * The ALTER TABLE statement is changed to silently ignores entries in the sqlite_schema table that do not parse when PRAGMA writable_schema=ON- update to 3.37.2: * Fix a bug introduced in version 3.35.0 (2021-03-12) that can cause database corruption if a SAVEPOINT is rolled back while in PRAGMA temp_store=MEMORY mode, and other changes are made, and then the outer transaction commits * Fix a long-standing problem with ON DELETE CASCADE and ON UPDATE CASCADE in which a cache of the bytecode used to implement the cascading change was not being reset following a local DDL change- update to 3.37.1: * Fix a bug introduced by the UPSERT enhancements of version 3.35.0 that can cause incorrect byte-code to be generated for some obscure but valid SQL, possibly resulting in a NULL- pointer dereference. * Fix an OOB read that can occur in FTS5 when reading corrupt database files. * Improved robustness of the --safe option in the CLI. * Other minor fixes to assert() statements and test cases.- SQLite3 3.37.0: * STRICT tables provide a prescriptive style of data type management, for developers who prefer that kind of thing. * When adding columns that contain a CHECK constraint or a generated column containing a NOT NULL constraint, the ALTER TABLE ADD COLUMN now checks new constraints against preexisting rows in the database and will only proceed if no constraints are violated. * Added the PRAGMA table_list statement. * Add the .connection command, allowing the CLI to keep multiple database connections open at the same time. * Add the --safe command-line option that disables dot-commands and SQL statements that might cause side-effects that extend beyond the single database file named on the command-line. * CLI: Performance improvements when reading SQL statements that span many lines. * Added the sqlite3_autovacuum_pages() interface. * The sqlite3_deserialize() does not and has never worked for the TEMP database. That limitation is now noted in the documentation. * The query planner now omits ORDER BY clauses on subqueries and views if removing those clauses does not change the semantics of the query. * The generate_series table-valued function extension is modified so that the first parameter ("START") is now required. This is done as a way to demonstrate how to write table-valued functions with required parameters. The legacy behavior is available using the -DZERO_ARGUMENT_GENERATE_SERIES compile-time option. * Added new sqlite3_changes64() and sqlite3_total_changes64() interfaces. * Added the SQLITE_OPEN_EXRESCODE flag option to sqlite3_open_v2(). * Use less memory to hold the database schema. * bsc#1189802, CVE-2021-36690: Fix an issue with the SQLite Expert extension when a column has no collating sequence.- Sync version 3.36.0 from Factory to implement jsc#SLE-16032. - Obsoletes sqlite3-CVE-2019-16168.patch. - The following CVEs have been fixed in upstream releases up to this point, but were not mentioned in the change log so far: * bsc#1173641, CVE-2020-15358: heap-based buffer overflow in multiSelectOrderBy due to mishandling of query-flattener optimization * bsc#1164719, CVE-2020-9327: NULL pointer dereference and segmentation fault because of generated column optimizations in isAuxiliaryVtabOperator * bsc#1160439, CVE-2019-20218: selectExpander in select.c proceeds with WITH stack unwinding even after a parsing error * bsc#1160438, CVE-2019-19959: memory-management error via ext/misc/zipfile.c involving embedded '\0' input * bsc#1160309, CVE-2019-19923: improper handling of certain uses of SELECT DISTINCT in flattenSubquery may lead to null pointer dereference * bsc#1159850, CVE-2019-19924: improper error handling in sqlite3WindowRewrite() * bsc#1159847, CVE-2019-19925: improper handling of NULL pathname during an update of a ZIP archive * bsc#1159715, CVE-2019-19926: improper handling of certain errors during parsing multiSelect in select.c * bsc#1159491, CVE-2019-19880: exprListAppendList in window.c allows attackers to trigger an invalid pointer dereference * bsc#1158960, CVE-2019-19603: during handling of CREATE TABLE and CREATE VIEW statements, does not consider confusion with a shadow table name * bsc#1158959, CVE-2019-19646: pragma.c mishandles NOT NULL in an integrity_check PRAGMA command in certain cases of generated columns * bsc#1158958, CVE-2019-19645: alter.c allows attackers to trigger infinite recursion via certain types of self-referential views in conjunction with ALTER TABLE statements * bsc#1158812, CVE-2019-19317: lookupName in resolve.c omits bits from the colUsed bitmask in the case of a generated column, which allows attackers to cause a denial of service * bsc#1157818, CVE-2019-19244: sqlite3,sqlite2,sqlite: The function sqlite3Select in select.c allows a crash if a sub-select uses both DISTINCT and window functions, and also has certain ORDER BY usage * bsc#928701, CVE-2015-3415: sqlite3VdbeExec comparison operator vulnerability * bsc#928700, CVE-2015-3414: sqlite3,sqlite2: dequoting of collation-sequence names * CVE-2020-13434 boo#1172115: integer overflow in sqlite3_str_vappendf * CVE-2020-13630 boo#1172234: use-after-free in fts3EvalNextRow * CVE-2020-13631 boo#1172236: virtual table allowed to be renamed to one of its shadow tables * CVE-2020-13632 boo#1172240: NULL pointer dereference via crafted matchinfo() query * CVE-2020-13435: Malicious SQL statements could have crashed the process that is running SQLite (boo#1172091)- bsc#1150137, CVE-2019-16168, sqlite3-CVE-2019-16168.patch: Improper validation of qlite_stat1 sz field leads to division by zero.- Upgrade to 3.28.0: * CVE-2019-9936, bsc#1130326: running fts5 prefix queries inside a transaction could trigger a heap-based buffer over-read. * CVE-2019-9937, bsc#1130325: interleaving reads and writes in a single transaction with an fts5 virtual table will lead to a NULL Pointer Dereference. * Enhanced window functions * Enhanced VACUUM INTO so that it works for read-only databases. * New query optimizations. * Added the sqlite3_value_frombind() API for determining if the argument to an SQL function is from a bound parameter. * Security and compatibilities enhancements to fts3_tokenizer(). * Improved robustness against corrupt database files.- CVE-2018-20346, bsc#1119687: Upgrade to the most recent version to fix a remote code execution vulnerability in FTS3 (Magellan). - Drop sqlite-fts5-link.patch and do it in the spec file instead. - Version 3.27.2: * Add the VACUUM INTO command * Issue an SQLITE_WARNING message on the error log if a double-quoted string literal is used * Add the remove_diacritics=2 option to FTS3 and FTS5. * Add the SQLITE_PREPARE_NO_VTAB option to sqlite3_prepare_v3(). Use that option to prevent circular references to shadow tables from causing resource leaks. * Enhancements to the sqlite3_deserialize() interface * Enhancements to the CLI, mostly to support testing and debugging of the SQLite library itself * Increased robustness against malicious SQL that is run against a maliciously corrupted database - Version 3.26.0: * Optimization: When doing an UPDATE on a table with indexes on expressions, do not update the expression indexes if they do not refer to any of the columns of the table being updated. * Allow the xBestIndex() method of virtual table implementations to return SQLITE_CONSTRAINT to indicate that the proposed query plan is unusable and should not be given further consideration. * Added the SQLITE_DBCONFIG_DEFENSIVE option which disables the ability to create corrupt database files using ordinary SQL. * Added support for read-only shadow tables when the SQLITE_DBCONFIG_DEFENSIVE option is enabled. * Added the PRAGMA legacy_alter_table command, which if enabled causes the ALTER TABLE command to behave like older version of SQLite (prior to version 3.25.0) for compatibility. * Added PRAGMA table_xinfo that works just like PRAGMA table_info except that it also shows hidden columns in virtual tables. * Added the explain virtual table as a run-time loadable extension. * Add a limit counter to the query planner to prevent excessive sqlite3_prepare() times for certain pathological SQL inputs. * Added support for the sqlite3_normalized_sql() interface, when compiling with SQLITE_ENABLE_NORMALIZE. * Enhanced triggers so that they can use table-valued functions that exist in schemas other than the schema where the trigger is defined. * Improvements to the ".help" command in the CLI. * The SQLITE_HISTORY environment variable, if it exists, specifies the name of the command-line editing history file. * The --deserialize option associated with opening a new database in the CLI cause the database file to be read into memory and accessed using the sqlite3_deserialize() API. This simplifies running tests on a database without modifying the file on disk. - Version 3.25.2: * Add the PRAGMA legacy_alter_table=ON command that causes the "ALTER TABLE RENAME" command to behave as in 3.24.0 and earlier * Fix issue with some expressions with windows functions in views - Version 3.25.1: * Avoid false-positive error checks on ALTER TABLE * Further ORDER BY LIMIT optimization fixes for window functions - Version 3.25.0: * Add support for window functions * Add support for renaming columns within a table * Query optimizer improvements * slightly better concurrency in multi-threaded environments * The ORDER BY LIMIT optimization might have caused an infinite loop in the byte code of the prepared statement under very obscure circumstances, due to a confluence of minor defects in the query optimizer - Version 3.24.0: * Add support for PostgreSQL-style UPSERT * Add support for auxiliary columns in r-tree tables * Add C-language APIs for discovering SQL keywords used by SQLite * Add C-language APIs for dynamic strings based on sqlite3_str * Enhance ALTER TABLE so that it recognizes "true" and "false" as valid arguments to DEFAULT * Add the sorter-reference optimization as a compile-time option * Improve the format of the EXPLAIN QUERY PLAN raw output, so that it gives better information about the query plan and about the relationships between the various components of the plan * Added the SQLITE_DBCONFIG_RESET_DATABASE option to the sqlite3_db_config() API. * Automatically intercept the raw EXPLAIN QUERY PLAN output an reformat it into an ASCII-art graph. * Lines that begin with "#" and that are not in the middle of an SQL statement are interpreted as comments * Add the --append option to the ".backup" command * Add the ".dbconfig" command * various performance improvements * various bug fixes- update to 3.23.1: * Fix two problems in the new LEFT JOIN strength reduction optimization * Fix misbehavior of the FTS5 xBestIndex method * Fix a harmless reference to an uninitialized virtual machine register * Fix the eval.c extension so that it works with PRAGMA empty_result_callbacks=ON * Fix the generate_series virtual table so that it correctly returns no rows if any of its constraints are NULL * Performance enhancements in the parser- update to 3.23.0: * Add the sqlite3_serialize() and sqlite3_deserialize() interfaces when the SQLITE_ENABLE_DESERIALIZE compile-time option is used. * Recognize TRUE and FALSE as constants. (For compatibility, if there exist columns named "true" or "false", then the identifiers refer to the columns rather than Boolean constants.) * Support operators IS TRUE, IS FALSE, IS NOT TRUE, and IS NOT FALSE. * Added the SQLITE_DBSTATUS_CACHE_SPILL option to sqlite3_db_status() for reporting the number of cache spills that have occurred. * The "alternate-form-2" flag ("!") on the built-in printf implementation now causes string substitutions to measure the width and precision in characters instead of bytes. * If the xColumn method in a virtual table implementation returns an error message using sqlite3_result_error() then give that error message preference over internally-generated messages. * Added the -A command-line option to the CLI to make it easier to manage SQLite Archive files. * Add support for INSERT OR REPLACE, INSERT OR IGNORE, and UPDATE OR REPLACE in the Zipfile virtual table. * Enhance the sqlite3changeset_apply() interface so that it is hardened against attacks from deliberately corrupted changeset objects. * Added the sqlite3_normalize() extension function. * Query optimizer enhancements * Various bug fixes * Fix various issues reported by fuzzers, including: + CVE-2018-8740: NULL pointer dereference on CREATE TABLE as (bsc#1085790)- update to 3.22.0: * Add Zipfile virtual table to read and write a ZIP Archive. * Improved handling of WAL mode databases * various improvements, optimizations and bug fixes- Update to version 3.21.0 * Take advantage of the atomic-write capabilities in the F2FS filesystem when available, for greatly reduced transaction overhead. This currently requires the SQLITE_ENABLE_BATCH_ATOMIC_WRITE compile-time option. * Allow ATTACH and DETACH commands to work inside of a transaction. * Allow WITHOUT ROWID virtual tables to be writable if the PRIMARY KEY contains exactly one column. * The "fsync()" that occurs after the header is written in a WAL reset now uses the sync settings for checkpoints. This means it will use a "fullfsync" on macs if PRAGMA checkpoint_fullfsync set on. * The sqlite3_sourceid() function tries to detect if the source code has been modified from what is checked into version control and if there are modifications, the last four characters of the version hash are shown as "alt1" or "alt2". The objective is to detect accidental and/or careless edits. A forger can subvert this feature. * Improved de-quoting of column names for CREATE TABLE AS statements with an aggregate query on the right-hand side. * Fewer "stat()" system calls issued by the unix VFS. * Enhanced the LIKE optimization so that it works with an ESCAPE clause. * Enhanced PRAGMA integrity_check and PRAGMA quick_check to detect obscure row corruption that they were formerly missing. Also update both pragmas so that they return error text rather than SQLITE_CORRUPT when encountering corruption in records. * The query planner now prefers to implement FROM-clause subqueries using co-routines rather using the query flattener optimization. Support for the use of co-routines for subqueries may no longer be disabled. * Pass information about !=, IS, IS NOT, NOT NULL, and IS NULL constraints into the xBestIndex method of virtual tables. * Enhanced the CSV virtual table so that it accepts the last row of input if the final new-line character is missing. * Remove the rarely-used "scratch" memory allocator. Replace it with the SQLITE_CONFIG_SMALL_MALLOC configuration setting that gives SQLite a hint that large memory allocations should be avoided when possible. * Added the swarm virtual table to the existing union virtual table extension. * Added the sqlite_dbpage virtual table for providing direct access to pages of the database file. The source code is built into the amalgamation and is activated using the - DSQLITE_ENABLE_DBPAGE_VTAB compile-time option. * Add a new type of fts5vocab virtual table - "instance" - that provides direct access to an FTS5 full-text index at the lowest possible level. * Miscellaneous microoptimizations reduce CPU usage by about 2.1%. Bug fixes * Fix a faulty assert() statement discovered by OSSFuzz. Ticket cb91bf4290c211d * Fix an obscure memory leak in sqlite3_result_pointer(). Ticket 7486aa54b968e9b * Avoid a possible use-after-free error by deferring schema resets until after the query planner has finished running. Ticket be436a7f4587ce5 * Only use indexes-on-expressions to optimize ORDER BY or GROUP BY if the COLLATE is correct. Ticket e20dd54ab0e4383 * Fix an assertion fault that was coming up when the expression in an index-on-expressions is really a constant. Ticket aa98619ad08ddca * Fix an assertion fault that could occur following PRAGMA reverse_unordered_selects. Ticket cb91bf4290c211d * Fix a segfault that can occur for queries that use table-valued functions in an IN or EXISTS subquery. Ticket b899b6042f97f5 * Fix a potential integer overflow problem when compiling a particular horrendous common table expression. This was another problem discovered by OSSFuzz. Check-in 6ee8cb6ae5. * Fix a potential out-of-bound read when querying a corrupt database file, a problem detected by Natalie Silvanovich of Google Project Zero. Check-in 04925dee41a21f.- update to 3.20.1: * Fix a potential memory leak in the new sqlite3_result_pointer() interface- Update to 3.20.0: * Potential incompatible change for clients incorrectly relying on unspecified behavior: column names returned by sqlite3_column_name() and sqlite3_column_name16() may return different names when views or subqueries are used in the FROM clause, and AS clauses are not used (as they should be) * Text of some error messages changed. Applications that depend on specific error message text may be impacted.- a little less packaging cleanup so as to not break SLE 11 SP4- Small packaging cleanup- Update to 3.19.3: * Fix a bug associated with auto_vacuum that can lead to database corruption. (introduced in 3.16.0)- Update to 3.19.2 * Fix a bug in the LEFT JOIN flattening optimization. Ticket cad1ab4cb7b0fc. * Fix more bugs in the LEFT JOIN flattening optimization. Ticket 7fde638e94287d2c.- Update to 3.19.0 * The SQLITE_READ authorizer callback is invoked once with a column name that is an empty string for every table referenced in a query from which no columns are extracted. * When using an index on an expression, try to use expression values already available in the index, rather than loading the original columns and recomputing the expression. * Enhance the flattening optimization so that it is able to flatten views on the right-hand side of a LEFT JOIN. * Use replace() instead of char() for escaping newline and carriage-return characters embedded in strings in the .dump output from the command-line shell. * Avoid unnecessary foreign key processing in UPDATE statements that do not touch the columns that are constrained by the foreign keys. * On a DISTINCT query that uses an index, try to skip ahead to the next distinct entry using the index rather than stepping through rows, when an appropriate index is available. * Avoid unnecessary invalidation of sqlite3_blob handles when making changes to unrelated tables. * Transfer any terms of the HAVING clause that use only columns mentioned in the GROUP BY clause over to the WHERE clause for faster processing. * Reuse the same materialization of a VIEW if that VIEW appears more than once in the same query. * Enhance PRAGMA integrity_check so that it identifies tables that have two or more rows with the same rowid. * Enhance the FTS5 query syntax so that column filters may be applied to arbitrary expressions. * Enhance the json_extract() function to cache and reuse parses of JSON input text. * Added the anycollseq.c loadable extension that allows a generic SQLite database connection to read a schema that contains unknown and/or application-specific collating sequences. * Fix a problem in REPLACE that can result in a corrupt database containing two ore more rows with the same rowid. Fix for ticket f68dc596c4e6018d. * Fix a problem in PRAGMA integrity_check that was causing a subsequent VACUUM to behave suboptimally. so that it works correctly with foreign keys on WITHOUT ROWID tables. * Disallow leading zeros in numeric constants in JSON. Fix for ticket b93be8729a895a528e2. * Disallow control characters inside of strings in JSON. Fix for ticket 6c9b5514077fed34551. * Limit the depth of recursion for JSON objects and arrays in orde to avoid excess stack usage in the recursive descent parser. Fix for ticket 981329adeef51011052.- Update to 3.18.0 * Added the PRAGMA optimize command * The SQLite version identifier returned by the sqlite_source_id() SQL function and the sqlite3_sourceid() C API and found in the SQLITE_SOURCE_ID macro is now a 64-digit SHA3-256 hash instead of a 40-digit SHA1 hash. * Added the json_patch() SQL function to the JSON1 extension. * Enhance the LIKE optimization so that it works for arbitrary expressions on the left-hand side as long as the LIKE pattern on the right-hand side does not begin with a digit or minus sign. * Added the sqlite3_set_last_insert_rowid() interface and use the new interface in the FTS3, FTS4, and FTS5 extensions to ensure that the sqlite3_last_insert_rowid() interface always returns reasonable values. * Enhance PRAGMA integrity_check and PRAGMA quick_check so that they verify CHECK constraints. * Enhance the query plans for joins to detect empty tables early and halt without doing unnecessary work. * Enhance the sqlite3_mprintf() family of interfaces and the printf SQL function to put comma separators at the thousands marks for integers, if the "," format modifier is used in between the "%" and the "d" (example: "%,d"). * Added the -DSQLITE_MAX_MEMORY=N compile-time option. * Added the .sha3sum dot-command and the .selftest dot-command to the command-line shell * Begin enforcing SQLITE_LIMIT_VDBE_OP. This can be used, for example, to prevent excessively large prepared statements in systems that accept SQL queries from untrusted users. * Various performance improvements. * Ensure that indexed expressions with collating sequences are handled correctly. Fix for ticket eb703ba7b50c1a5. * Fix a bug in the 'start of ...' modifiers for the date and time functions. Ticket 6097cb92745327a1 * Fix a potential segfault in complex recursive triggers, resulting from a bug in the OP_Once opcode introduced as part of a performance optimization in version 3.15.0. Ticket 06796225f59c057c * In the RBU extension, add extra sync operations to avoid the possibility of corruption following a power failure. * The sqlite3_trace_v2() output for nested SQL statements should always begin with a "--" comment marker.- Drop update-desktop-files BuildRequires: this package contains no desktop files, hence there is no need to handle any of them.- Update to 3.17.0 * Approximately 25% better performance from the R-Tree extension. * Add the SQLITE_DEFAULT_LOOKASIDE compile-time option. * Increase the default lookaside size from 512,125 to 1200,100 as this provides better performance while only adding 56KB of extra memory per connection. * Use compiler built-ins __builtin_sub_overflow(), __builtin_add_overflow(), and __builtin_mul_overflow() when available. * Added the SQLITE_ENABLE_NULL_TRIM compile-time option, which can result in significantly smaller database files for some applications, at the risk of being incompatible with older versions of SQLite. * Change SQLITE_DEFAULT_PCACHE_INITSZ from 100 to 20, for improved performance. * Added the SQLITE_UINT64_TYPE compile-time option as an analog to SQLITE_INT64_TYPE. * Perform some UPDATE operations in a single pass instead of in two passes. * Enhance the session extension to support WITHOUT ROWID tables. * Fixed performance problems and potential stack overflows when creating views from multi-row VALUES clauses with hundreds of thousands of rows. * Added the sha1.c extension. * In the command-line shell, enhance the ".mode" command so that it restores the default column and row separators for modes "line", "list", "column", and "tcl". * Enhance the SQLITE_DIRECT_OVERFLOW_READ option so that it works in WAL mode as long as the pages being read are not in the WAL file. * Enhance the LEMON parser generator so that it can store the parser object as a stack variable rather than allocating space from the heap and make use of that enhancement in the amalgamation. * Other performance improvements. Uses about 6.5% fewer CPU cycles. * Throw an error if the ON clause of a LEFT JOIN references tables to the right of the ON clause. This is the same behavior as PostgreSQL. Formerly, SQLite silently converted the LEFT JOIN into an INNER JOIN. Fix for ticket 25e335f802dd. * Use the correct affinity for columns of automatic indexes. Ticket 7ffd1ca1d2ad4ec. * Ensure that the sqlite3_blob_reopen() interface can correctly handle short rows. Fix for ticket e6e962d6b0f06f46e.- Update to version 3.16.2: * Fix the REPLACE statement for WITHOUT ROWID tables that lack secondary indexes so that it works correctly with triggers and foreign keys. * Fix the sqlite3_value_text() interface so that it correctly translates content generated by zeroblob() into a string of all 0x00 characters. * Fix the bytecode generator to deal with a subquery in the FROM clause that is itself a UNION ALL where one side of the UNION ALL is a view that contains an ORDER BY. * Adjust the sqlite3_column_count() API so it more often returns the same values for PRAGMA statements as it did in prior releases, to minimize disruption to applications that might be using that interface in unexpected ways.- Update to version 3.16.1 * Fix a bug concerning the use of row values within triggers (see ticket 8c9458e7) that was in version 3.15.0.- Update to version 3.16.0: * Uses 9% fewer CPU cycles. (See the CPU performance measurement report for details on how the this performance increase was computed.) * Added experimental support for PRAGMA functions. * Added the SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE option to sqlite3_db_config(). * Enhance the date and time functions so that the 'unixepoch' modifier works for the full span of supported dates. * Changed the default configuration of the lookaside memory allocator from 500 slots of 128 bytes each into 125 slots of 512 bytes each. * Enhanced "WHERE x NOT NULL" partial indexes so that they are usable if the "x" column appears in a LIKE or GLOB operator. * Enhanced sqlite3_interrupt() so that it interrupts checkpoint operations that are in process. * Enhanced the LIKE and GLOB matching algorithm to be faster for cases when the pattern contains multiple wildcards. * Added the SQLITE_FCNTL_WIN32_GET_HANDLE file control opcode. * Added ".mode quote" to the command-line shell. * Added ".lint fkey-indexes" to the command-line shell. * Added the .imposter dot-command to the command-line shell. * Added the remember(V,PTR) SQL function as a loadable extension. * Rename the SQLITE_OMIT_BUILTIN_TEST compile-time option to * SQLITE_UNTESTABLE to better reflect the implications of using it.- SQLite 3.15.2: * Multiple bug fixes to the row value logic that was introduced in version 3.15.0. * Fix a NULL pointer dereference in ATTACH/DETACH following a maliciously constructed syntax error * Fix a crash that can occur following an out-of-memory condition in the built-in instr() function. * In the JSON extension, fix the JSON validator so that it correctly rejects invalid backslash escapes within strings.- SQLite 3.15.1: * Fix the VACUUM command so that it spills excess content to disk rather than holding everything in memory, and possible causing an out-of-memory error for larger database files * Fix a case where OR-connected terms in the ON clause of a LEFT JOIN might cause incorrect results * Fix a case where the use of row values in the ON clause of a LEFT JOIN might cause incorrect results- SQLite 3.15.0 * Added support for row values. * Allow deterministic SQL functions in the WHERE clause of a partial index. * Added the "modeof=filename" URI parameter on the unix VFS * Added support for SQLITE_DBCONFIG_MAINDBNAME. * Added the ability to VACUUM an ATTACH-ed database. * Enhancements to the command-line shell: + Add the ".testcase" and ".check" dot-commands. + Added the --new option to the ".open" dot-command, causing any prior content in the database to be purged prior to opening. * Enhance the fts5vocab virtual table to handle "ORDER BY term" efficiently. * Miscellaneous micro-optimizations reduce CPU usage by more than 7% on common workloads. Most optimization in this release has been on the front-end (sqlite3_prepare_v2()). * The multiply operator now correctly detects 64-bit integer overflow and promotes to floating point in all corner-cases. Fix for ticket 1ec41379c9c1e400. * Correct handling of columns with redundant unique indexes when those columns are used on the LHS of an IN operator. Fix for ticket 0eab1ac759. * Skip NULL entries on range queries in indexes on expressions. Fix for ticket 4baa46491212947. * Ensure that the AUTOINCREMENT counters in the sqlite_sequence table are initialized doing "Xfer Optimization" on "INSERT ... SELECT" statements. Fix for ticket 7b3328086a5c116c. * Make sure the ORDER BY LIMIT optimization (from check-in 559733b09e) works with IN operators on INTEGER PRIMARY KEYs. Fix for ticket 96c1454c- SQLite 3.14.2: * Fix the sqlite3_trace_v2() interface so that it is disabled if either the callback or the mask arguments are zero, in accordance with the documentation. * Fix commenting errors and improve the comments generated on EXPLAIN listings when the -DSQLITE_ENABLE_EXPLAIN_COMMENTS compile-time option is used. * Fix the ".read" command in the command-line shell so that it understands that its input is not interactive. * Correct affinity computations for a SELECT on the RHS of an IN operator. Fix for ticket 199df4168c. * The ORDER BY LIMIT optimization is not valid unless the inner-most IN operator loop is actually used by the query plan. Fix for ticket 0c4df46116e90f92. * Fix an internal code generator problem that was causing some DELETE operations to no-op. Ticket ef360601- SQLite 3.14.1: * A performance enhancement to the page-cache "truncate" operation reduces COMMIT time by dozens of milliseconds on systems with a large page cache * Fix to the --rbu option of sqldiff.- SQLite 3.14.0 * Added support for WITHOUT ROWID virtual tables. * Improved the query planner so that the OR optimization can be used on virtual tables even if one or more of the disjuncts use the LIKE, GLOB, REGEXP, MATCH operators. * Added the CSV virtual table for reading RFC 4180 formatted comma-separated value files. * Added the carray() table-valued function extension. * Enabled persistent loadable extensions using the new SQLITE_OK_LOAD_PERMANENTLY return code from the extension entry point. * Added the SQLITE_DBSTATUS_CACHE_USED_SHARED option to sqlite3_db_status(). * Add the vfsstat.c loadable extension - a VFS shim that measures I/O together with an eponymous virtual table that provides access to the measurements. * Improved algorithm for running queries with both an ORDER BY and a LIMIT where only the inner-most loop naturally generates rows in the correct order. * Enhancements to Lemon parser generator, so that it generates a faster parser. * The PRAGMA compile_options command now attempts to show the version number of the compiler that generated the library. * Enhance PRAGMA table_info so that it provides information about eponymous virtual tables. * The query planner uses a full scan of a partial index instead of a full scan of the main table, in cases where that makes sense. * Allow table-valued functions to appear on the right-hand side of an IN operator. * Added two new C-language interfaces: sqlite3_expanded_sql() and sqlite3_trace_v2(). These new interfaces subsume the functions of sqlite3_trace() and sqlite3_profile() which are now deprecated. * Added the json_quote() SQL function to the json1 extension. * Disable the authorizer callback while reparsing the schema. * Added the SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION compile-time option and turned that option on by default when building the command-line shell. * Fix the ALTER TABLE command so that it does not corrupt descending indexes when adding a column to a legacy file format database. Ticket f68bf68513a1c15f * Fix a NULL-pointer dereference/crash that could occurs when a transitive WHERE clause references a non-existent collating sequence. Ticket e8d439c77685eca6. * Improved the cost estimation for an index scan which includes a WHERE clause that can be partially or fully evaluated using columns in the index and without having to do a table lookup. This fixes a performance regression that occurred for some obscure queries following the ORDER BY LIMIT optimization introduced in version 3.12.0.- Fix SLE 11 for previous change: noarch subpackages not supported- Reduce the conditions a bit and sort with spec-cleaner - Remove condition for old sle10 ppc machines- SQLite 3.13.0: * Postpone I/O associated with TEMP files for as long as possible, with the hope that the I/O can ultimately be avoided completely. * Merged the session extension into trunk. * Added the ".auth ON|OFF" command to the command-line shell. * Added the "--indent" option to the ".schema" and ".fullschema" commands of the command-line shell, to turn on pretty-printing. * Added the ".eqp full" option to the command-line shell, that does both EXPLAIN and EXPLAIN QUERY PLAN on each statement that is evaluated. * Improved resistance against goofy query planner decisions caused by incomplete or incorrect modifications to the sqlite_stat1 table by the application. * Added the sqlite3_db_config(db,SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION) interface which allows the sqlite3_load_extension() C-API to be enabled while keeping the load_extension() SQL function disabled for security. * Change the temporary directory search algorithm on Unix to allow directories with write and execute permission, but without read permission, to serve as temporary directories. Apply this same standard to the "." fallback directory. * Fix a problem with the multi-row one-pass DELETE optimization that was causing it to compute incorrect answers with a self-referential subquery in the WHERE clause. Fix for ticket dc6ebeda9396087 * Fix a possible segfault with DELETE when table is a rowid table with an INTEGER PRIMARY KEY and the WHERE clause contains a OR and the table has one or more indexes that are able to trigger the OR optimization, but none of the indexes reference any table columns other than the INTEGER PRIMARY KEY. Ticket 16c9801ceba49. * When checking for the WHERE-clause push-down optimization, verify that all terms of the compound inner SELECT are non-aggregate, not just the last term. Fix for ticket f7f8c97e97597.- SQLite 3.12.2: * Fix compatibility with some legacy versions of sqlite database * Minor bugfixes- SQLite 3.12.1: * Fix a boundary condition error introduced by version 3.12.0 that can result in a crash during heavy SAVEPOINT usage. * Fix views so that they inherit column datatypes from the table that they are defined against, when possible. * Fix the query planner so that IS and IS NULL operators are able to drive an index on a LEFT OUTER JOIN.- SQLite 3.12.0: * The SQLITE_DEFAULT_PAGE_SIZE is increased from 1024 to 4096. The SQLITE_DEFAULT_CACHE_SIZE is changed from 2000 to -2000 so the same amount of cache memory is used by default. * Enhancements to the Lemon parser generator so that it creates a smaller and faster SQL parser. * Only create master journal files if two or more attached databases are all modified, do not have PRAGMA synchronous set to OFF, and do not have the journal_mode set to OFF, MEMORY, or WAL. * Added the SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER option to sqlite3_db_config() which allows the two-argument version of the fts3_tokenizer() SQL function to be enabled or disabled at run-time. * Added the sqlite3rbu_bp_progress() interface to the RBU extension. * The PRAGMA defer_foreign_keys=ON statement now also disables RESTRICT actions on foreign key. * Added the sqlite3_system_errno() interface. * Added the SQLITE_DEFAULT_SYNCHRONOUS and SQLITE_DEFAULT_WAL_SYNCHRONOUS compile-time options. The SQLITE_DEFAULT_SYNCHRONOUS compile-time option replaces the SQLITE_EXTRA_DURABLE option, which is no longer supported. * Enhanced the ".stats" command in the command-line shell to show more information about I/O performance obtained from /proc, when available. * Make sure the sqlite3_set_auxdata() values from multiple triggers within a single statement do not interfere with one another. Ticket dc9b1c91. * Fix the code generator for expressions of the form "x IN (SELECT...)" where the SELECT statement on the RHS is a correlated subquery. - Remove sqlite3-link-binary-with-libsqlite3.patch: replaced with configure option --disable-static-shell- Enable secure delete by default, this matches Fedora & Android. It can be disabled with `PRAGMA SECURE_DELETE = 0;` - Enable more extensions, syncing with Fedora & Gentoo.- Fix sqlite-fts5-link.patch: link libsqlite3.so with libm instead of the sqlite3 binary: the library is the actual user of log(). - Add sqlite3-link-binary-with-libsqlite3.patch: dyamically link /usr/bin/sqlite3 to libsqlite3 instead of statically using it. - Move autoreconf call to build section, where it belongs.- Enable FTS5 support. - Add sqlite-fts5-link.patch to link to math library because FTS5 code uses log().- SQLite 3.11.1: * Fix an FTS5 issue in which the 'optimize' command could cause index corruption. * Fix a buffer overread that might occur if FTS5 is used to query a corrupt database file. * Increase the maximum "scope" value for the spellfix1 extension from 6 to 30.- explicitly enable readline support - run spec-cleaner- Update to 3.11.0 * Enhanced WAL mode so that it works efficiently with transactions that are larger than the cache_size. * Added the FTS5 detail option. * Added the "EXTRA" option to PRAGMA synchronous that does a sync of the containing directory when a rollback journal is unlinked in DELETE mode, for better durability. The SQLITE_EXTRA_DURABLE compile-time option enables PRAGMA synchronous=EXTRA by default. * Enhanced the query planner so that it is able to use a covering index as part of the OR optimization. * Avoid recomputing NOT NULL and CHECK constraints on unchanged columns in UPDATE statement. * Many micro-optimizations, resulting in a library that is faster than the previous release. * By default, the shell is now in "auto-explain" mode. The output of EXPLAIN commands is automatically formatted. * Added the ".vfslist" dot-command. * The SQLITE_ENABLE_EXPLAIN_COMMENTS compile-time option is now turned on by default in the standard builds.- SQlite 3.10.2: * Fix case-folding bug introduced in 3.10.0 in the LIKE operator * Fix a use-after-free that can occur when SQLite is compiled with -DSQLITE_HAS_CODEC. * Fix the build so that it works with -DSQLITE_OMIT_WAL.- SQLite 3.10.1: * Fix a 16-month-old bug in the query planner that could generate incorrect results when a scalar subquery attempts to use the block sorting optimization. * Add SQLITE_FCNTL_JOURNAL_POINTER file control- update to 3.10.0 - spec-cleaned * Added support for LIKE, GLOB, and REGEXP operators on virtual tables. * Added the colUsed field to sqlite3_index_info for use by the sqlite3_module.xBestIndex method. * Enhance the PRAGMA cache_spill statement to accept a 32-bit integer parameter which is the threshold below which cache spilling is prohibited. * On unix, if a symlink to a database file is opened, then the corresponding journal files are based on the actual filename, not the symlink name. * Added the "--transaction" option to sqldiff. * Added the sqlite3_db_cacheflush() interface. * Added the sqlite3_strlike() interface. * When using memory-mapped I/O map the database file read-only so that stray pointers and/or array overruns in the application cannot accidently modify the database file. * Added the experimental sqlite3_snapshot_get(), sqlite3_snapshot_open(), and sqlite3_snapshot_free() interfaces. These are subject to change or removal in a subsequent release. * Enhance the 'utc' modifier in the date and time functions so that it is a no-op if the date/time is known to already be in UTC. (This is not a compatibility break since the behavior has long been documented as "undefined" in that case.) * Added the json_group_array() and json_group_object() SQL functions in the json extension. * Added the SQLITE_LIKE_DOESNT_MATCH_BLOBS compile-time option. * Many small performance optimizations. + Enhancements to the command-line shell: * Added the ".changes ON|OFF" and ".vfsinfo" dot-commands. + Important fixes: * Fix inconsistent integer to floating-point comparison operations that could result in a corrupt index if the index is created on a table column that contains both large integers and floating point values of similar magnitude. * Fix an infinite-loop in the query planner that could occur on malformed common table expressions. * Various bug fixes in the sqldiff tool.- SQLite 3.9.2: * Fix the schema parser so that it interprets certain (obscure and ill-formed) CREATE TABLE statements the same as legacy. * Fix a query planner problem that could result in an incorrect answer due to the use of automatic indexing in subqueries in the FROM clause of a correlated scalar subqueries.- SQLite 3.9.1: * Fix the json1 extension so that it does not recognize ASCII form-feed as a whitespace character, in order to comply with RFC-7159. * Build and portability fixes.- SQLite 3.9.0 * Add json1 extension module * The CREATE VIEW statement now accepts an optional list of column names following the view name. * Added support for indexes on expressions. * Added support for table-valued functions in the FROM clause of a SELECT statement. * Added support for eponymous virtual tables. * A VIEW may now reference undefined tables and functions when initially created. Missing tables and functions are reported when the VIEW is used in a query. * Added the sqlite3_value_subtype() and sqlite3_result_subtype() interfaced (used by the json1 extension). * The query planner is now able to use partial indexes that contain AND-connected terms in the WHERE clause. * The sqlite3_analyzer utility is updated to report the depth of each btree and to show the average fanout for indexes and WITHOUT ROWID tables. * Enhanced the dbstat virtual table so that it can be used as a table-valued function where the argument is the schema to be analyzed. * sqlite3_memory_alarm() no-op.- Update to 3.8.11.1 * Restore an undocumented side-effect of PRAGMA cache_size: force the database schema to be parsed if the database has not been previously accessed. * Fix a long-standing problem in sqlite3_changes() for WITHOUT ROWID tables that was reported a few hours after the 3.8.11 release.- SQLite 3.8.11: * Significantly improved performance * new interfaces and enhancements * Important bug fixes for CREATE TABLE AS * Fix the skip-scan optimization so that it works correctly when the OR optimization is used on WITHOUT ROWID tables. * Fix the sqlite3_memory_used() and sqlite3_memory_highwater() interfaces so that they actually do provide a 64-bit answer. * experimental extensions, not enabled: + RBU (Resumable Bulk Update) extension + FTS5 (Full-text search) extension- SQLite 3.8.10.2: * Fix an index corruption issue introduced by version 3.8.7.- SQLite 3.8.10.1: * Make sqlite3_compileoption_used() responsive to the SQLITE_ENABLE_DBSTAT_VTAB compile-time option. * Fix minor issues with the dbstat virtual table.- Update to SQLite 3.8.10 * Added the y format string to the matchinfo() function of FTS3. * Performance improvements for ORDER BY, VACUUM, CREATE INDEX, PRAGMA integrity_check, and PRAGMA quick_check * Fix many obscure problems discovered while SQL fuzzing. * Add the ".binary" and ".limits" commands to the command-line shell * Make the "dbstat" virtual table part of standard builds when compiled with the SQLITE_ENABLE_DBSTAT_VTAB option.- Update to SQLite 3.8.9: * Added the sqlite3_status64() interface. * Fix memory size tracking so that it works even if SQLite uses more than 2GiB of memory. * Added the PRAGMA index_xinfo command. * Fix a potential 32-bit integer overflow problem in the sqlite3_blob_read() and sqlite3_blob_write() interfaces. * Ensure that prepared statements automatically reset on extended error codes of SQLITE_BUSY and SQLITE_LOCKED even when compiled using SQLITE_OMIT_AUTORESET. * Correct miscounts in the sqlite3_analyzer.exe utility related to WITHOUT ROWID tables. * Added the ".dbinfo" command to the command-line shell. * Improve the performance of fts3/4 queries that use the OR operator and at least one auxiliary fts function. * Fix a bug in the fts3 snippet() function causing it to omit leading separator characters from snippets that begin with the first token in a column.- Update to SQLite 3.8.8.3 * Fix a bug (ticket 2326c258d02ead33) that can lead to incorrect results if the qualifying constraint of a partial index appears in the ON clause of a LEFT JOIN. * Added the ability to link against the "linenoise" command-line editing library in unix builds of the command-line shell.- SQLite 3.8.8.2: * Enhance sqlite3_wal_checkpoint_v2(TRUNCATE) interface so that it truncates the WAL file even if there is no checkpoint work to be done.- SQLite 3.8.8.1: * Fix a bug in the sorting logic, present since version 3.8.4, that can cause output to appear in the wrong order on queries that contains an ORDER BY clause, a LIMIT clause, and that have approximately 60 or more columns in the result set.- SQLite 3.8.8 - New Features: * Added the PRAGMA data_version command * Added the SQLITE_CHECKPOINT_TRUNCATE option to the sqlite3_wal_checkpoint_v2() / PRAGMA wal_checkpoint. * Added the sqlite3_stmt_scanstatus() when compiled with SQLITE_ENABLE_STMT_SCANSTATUS. * The sqlite3_table_column_metadata() is enhanced to work correctly on WITHOUT ROWID tables and to check for the existence of a a table if the column name parameter is NULL. The interface is now also included in the build by default, without requiring the SQLITE_ENABLE_COLUMN_METADATA compile- time option. * Added the SQLITE_ENABLE_API_ARMOR compile-time option. * Added the SQLITE_REVERSE_UNORDERED_SELECTS compile-time option. * Added the SQLITE_SORTER_PMASZ compile-time option and SQLITE_CONFIG_PMASZ start-time option. * Added the SQLITE_CONFIG_PCACHE_HDRSZ option to sqlite3_config() * The number of rows in a VALUES clause is no longer limited by SQLITE_LIMIT_COMPOUND_SELECT. * Added the eval.c loadable extension that implements an eval() SQL function that will recursively evaluate SQL. - Performance Enhancements: * Reduce the number of memcpy() operations involved in balancing a b-tree, for 3.2% overall performance boost. * Improvements to cost estimates for the skip-scan optimization. * The automatic indexing optimization is now capable of generating a partial index if that is appropriate. - Bug fixes: * Ensure durability following a power loss with "PRAGMA journal_mode=TRUNCATE" by calling fsync() right after truncating the journal file. * The query planner now recognizes that any column in the right- hand table of a LEFT JOIN can be NULL, even if that column has a NOT NULL constraint. Avoid trying to optimize out NULL tests in those cases. * Make sure ORDER BY puts rows in ascending order even if the DISTINCT operator is implemented using a descending index. * Fix data races that might occur under stress when running with many threads in shared cache mode where some of the threads are opening and closing connections. * Fix obscure crash bugs found by american fuzzy lop. - Other changes: * Disable the use of the strchrnul() C-library routine unless it is specifically enabled using the -DHAVE_STRCHRNULL compile- time option. * Improvements to the effectiveness and accuracy of the likelihood(), likely(), and unlikely() SQL hint functions.- SQLite 3.8.7.4: * Bug fix: Add in a mutex that was omitted from the previous release.- SQLite 3.8.7.3: * Ensure the cached KeyInfo objects (an internal abstraction not visible to the application) do not go stale when operating in shared cache mode and frequently closing and reopening some database connections while leaving other database connections on the same shared cache open continuously. * Recognize that any column in the right-hand table of a LEFT JOIN can be NULL even if the column has a NOT NULL constraint. Do not apply optimizations that assume the column is never NULL.- SQLite 3.8.7.2: * Enhance the ROLLBACK command so that pending queries are allowed to continue as long as the schema is unchanged. * Bug fix: Make sure that NULL results from OP_Column are fully and completely NULL and do not have the MEM_Ephem bit set. * Bug fix: The %c format in sqlite3_mprintf() is able to handle precisions greater than 70. * Bug fix: Do not automatically remove the DISTINCT keyword from a SELECT that forms the right-hand side of an IN operator since it is necessary if the SELECT also contains a LIMIT.- SQLite 3.8.7.1: * In PRAGMA journal_mode=TRUNCATE mode, call fsync() immediately after truncating the journal file to ensure that the transaction is durable across a power loss. * Fix an assertion fault that can occur when updating the NULL value of a field at the end of a table that was added using ALTER TABLE ADD COLUMN. * Do not attempt to use the strchrnul() function from the standard C library unless the HAVE_STRCHRNULL compile-time option is set. * Fix a couple of problems associated with running an UPDATE or DELETE on a VIEW with a rowid in the WHERE clause.- SQLite 3.8.7 - Performance Enhancements: * Many micro-optimizations result in 20.3% more work for the same number of CPU cycles relative to the previous release. * The sorter can use auxiliary helper threads to increase real- time response. This feature is off by default and may be enabled using the PRAGMA threads command or the SQLITE_DEFAULT_WORKER_THREADS compile-time option. * Enhance the skip-scan optimization so that it is able to skip index terms that occur in the middle of the index, not just as the left-hand side of the index. * Improved optimization of CAST operators. * Various improvements in how the query planner uses sqlite_stat4 information to estimate plan costs. - New Features: * Added new interfaces with 64-bit length parameters: sqlite3_malloc64() sqlite3_realloc64() sqlite3_bind_blob64() sqlite3_result_blob64() sqlite3_bind_text64() sqlite3_result_text64() * Added the new interface sqlite3_msize() that returns the size of a memory allocation obtained from sqlite3_malloc64() and its variants. * Added the SQLITE_LIMIT_WORKER_THREADS option to sqlite3_limit() and PRAGMA threads command for configuring the number of available worker threads. * The spellfix1 extension allows the application to optionally specify the rowid for each INSERT. Added the User Authentication extension. - Bug Fixes: * Fix a bug in the partial index implementation that might result in an incorrect answer if a partial index is used in a subquery or in a view. * Fix a query planner bug that might cause a table to be scanned in the wrong direction (thus reversing the order of output) when a DESC index is used to implement the ORDER BY clause on a query that has an identical GROUP BY clause. * Fix a bug in sqlite3_trace() that was causing it to sometimes fail to print an SQL statement if that statement needed to be re-prepared. * Fix a faulty assert() statement. - Test, Debug, and Analysis Changes: * Show ASCII-art abstract syntax tree diagrams using the ".selecttrace" and ".wheretrace" commands in the command-line shell when compiled with SQLITE_DEBUG, SQLITE_ENABLE_SELECTTRACE, and SQLITE_ENABLE_WHERETRACE. Also provide the sqlite3TreeViewExpr() and sqlite3TreeViewSelect() entry points that can be invoked from with the debugger to show the parse tree when stopped at a breakpoint. * Drop support for SQLITE_ENABLE_TREE_EXPLAIN. The SELECTTRACE mechanism provides more useful diagnostics information. * New options to the command-line shell for configuring auxiliary memory usage: --pagecache, --lookaside, and --scratch./bin/shsqlite-32bit3.50.2-150000.3.33.13.50.2-150000.3.33.13.50.2 3.50.2libsqlite3.so.0libsqlite3.so.3.50.2/usr/lib/-fomit-frame-pointer -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:Maintenance:39713/SUSE_SLE-15_Update/0a4769f0288c8478300adcb174459172-sqlite3.SUSE_SLE-15_Updatedrpmxz5x86_64-suse-linuxELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, BuildID[sha1]=313b377652363b6fbf9c33578605bf6f3136feb5, strippedPR R RRRRRRRRR RRRRR R Rutf-89f035c13b40ee4e12beb5aabb68b0903314533700731d51c93f7a07107fc8126?7zXZ !t/]"k%K=6kѿ>Qw>1-TBVBx};RuQ-Xv9V0*vN1P+$|v]>?u5f2/k8 R[Uewc5a/v$ZfMI`BmʄDI(mdlf[Vj_Uu/HQ؋.p5pa|"`%p@ mߍBB\ `1ޙFFm>tFj<:4筯Rh(r>H(#/Spwt˔IZ!O\ɭѐ}Aq!; PO )KnHkwgޢ; (: :(KTx~Z\5aWjl 6Udad%=l6)%+O% dAd"aҧ>5+ 91pm8 4d/ 闫Ux?s.Mv"AZ26ӦQ7$Px@,֋Uu:@ah8o{1T(E"%AqrQ"× X.mKuA[u=I#huKz5n.*ʲcVO&jfLJ`m253F+&CoP>:`26*cg?sI6 S9'fr#qrLUZp'<uv6J.RS=$`*'0u+xnBiTPd3avn{Yt7 ߰^ M5Eh0hnQQ bF;} m)X^#= Oy\e,4 e@ou~ cM0$^Օ<)v9!4sLvy>:kIV_EQxgzo3G?L6S )#qXA h`9 LmGlsUzoŴ fq 2A,zkXps}EZ6)wݑ6]ę3õ !``b6(ڭf9ʰQBؘ4m䛙Yڇ ]<}CF0RzNwבݐ?_KP44+}zլ'r$}L_0Иup@+VO hρWXAifKax16Px1h*Qh͏,4qBh{XD39k9zZ߃{8)He3+4a,EydMd>A t#̺X--9,i7g-%Ya1{ڊNrLZ`mva!Х]S{Ջ5\u[(TrDup1W۶ꓣN td\ZkR"aM_fG(\2b8 btɪ`:S119T<M!mb]r`iMǥASJ˼1k.c}dk5 G["py!![ aOމ+@n$Fͥ?yMΎs3/RQڈt7va[𘿚fl8X.yPZ}9AVEi_bg:Ln.ȉt-+)8H,P DqU=%QVBK4+𬐌x4ol̝Iw'|1 `ZM\@`2|9RpĦvN (Ԋ*S%vu6G7`MYĐ#h#WDxTCf_?SC*-WJ-I$'&\X qr+V"GT6EP{w_ p0^_c~7NshܡEe "{Ct ^L/{G>@N ö I4'TFi\F_y׎1XҚNnfjYj͜+Xi伫;24S}yQ6m־'q(A>So#АMLB|hēr{eAB\];qd7R @ؾ6[A6yhoq6yc°W;&y(\xLҽɢYN7^WMuOƜ6P94}¦],*"EdE}:ɜ3RdΝ>rU3k;ֶbť[hjeYK(jv8m$i9Jt(vG{}x5;#y4q ",P/0 miR[#b? ӲLF6u‹rvZ⡞ݝ&n&׆\)L#ڴA.G5jױQ={̸%vYTl ?S!OTi. #i6Õ\w3xŸh!SD-<,'V5RZ*bu'q_ɡ(ކ"} (o,6^fg U f߲U]!rBHf{hK( 5xF'0HrN%iR[|0%{=S^ "׺b=g0km(CS7"CVNBO1 bFyNm~cǝCʹTߏ67ki oɧ]L1i^rs32Lh>Xʽ 8kFov*Wt25HDkQ*Wt՚I]-k7m?ٗ9fzcL6Wd.08is4 De)ȊիwN7xb35m@Py !TG6!_dn Uy WtfwʷaHVT9J;mvLʦtˤ͐K7v9oc c=c0&5a+bQbiVﴤKmW78*Ej0Յp|4Oh~u=I`x@Vvm IggOEH0)vbŰ ZL~o,Wl+hq^5ưO`< 0[)iU7mƀP >'c-)唂;50zZYݘeyF@$xBhȄ̮We>ktCN 3`~\Y>BP`\@J)񄪴~5(Xaa|T}2>ӯ_J5waR=ۭZ)[hGѺ-xgn#wΕO|j+~x&qAiHiG4 bę9\"y֑7'AyNJ,V3BͶ'{^c] `=莜k3MPR_- gūK+β/ĐV '%֒+0#U оUh$0Lb =!;ز9Mq6 uz4vmo^uf߅{s bLSyݺV#v`ehx8~}5 'hXxX6R 4V2ԣ )D&ZߧYy:TlIg-mK\P 1tˉV\+.#IUueZ*Vhu58H-5OcZm&dvԘR,ɏjNT߅ڢ2~S]^.pŮʥs:r;:잧AT+vuvf*=Sbnum>5%˓.L\[S;kTȁFqlFs|%!%z1,Iug;P@2_ܨo\t/\v$ۖ~F2^c @8hǹĜKfu65K zvq ud !9'>CrOp]_;ҍdO 7Fk#U;dD@-`\hCAb#aW贖 ? E&<鱎ByzwG6seܜG}Q*#_qNu{Ta+j3|V_39Mkyih8q+zgה9NʛvL'<'z uKf&a#Jt %C%p7L&Bǁ'[7lEQ<bt4vڧbQZii_ fF&+VյktN>UWyt>]~9?%_~}:?*452<ٸŽ;̘Y#vhz6EvId'~7f;QmO Di0j#hyU0I|[ :eq;~5+JY~ObcS5 V3B:hJlf*EdTn׬T#6ˤ\']g?YE)ݛDn~AUk"pWӣt,gt:`=Ě*;!r[l>-NG&O\|Nr:Iz5^: |58򠴡ڱrx~PL+S!R*k^-4iQ]?ضAB}0Kr<$9ȩJ]Fm?z% `E*r=vvuW1^=y'/tZVףE<` 4ܺ9_?iQ_ @(5:ˈfy{VfRU~f k 0F'cڻ~ଅlxf3ʝI4# k,\̌#=-on=;!R.|\Lr2l&-b.'&ML@J/ qvBI=&E:鰟`` JQu%~lhj7&%~ƸNzh.!gL,T"򚹬>ȏ+Zvzf:U}QPleCdΞ^rxe baQ*iti($J[Ϝ^ɤülvB tܭG(uM%-g I!gF/ TM цr(>9nUٸFY.V[ $1U q)n)mOk?-, %,"TwQ?jZ~{ AS!~b n #`YαNLd3VmᝦqVjX,v;ٮuÚ~8U\~Bsjbtd@(ݛ eNB5g8 t{hvm֣WNup}becJs왗B qv "qd,Db\GuXRn$KK2[ ߚ9Ix23u_2R6Q e HsA'/(A`Df}~3P)-ՋGotk.d 1\(dλBA?t {enb G7}ޗ殔2ӹY+9&}y-^Tpn>q}rAV,# SѲ o_MQAGZ+]6WejWo2{T>6昉ǹeװtx>%`?G|7S-'R(G QQIS߰ XNHe1"5=WvɝBJ]&+;"$>/K`|m!Q!b.gSFAȮJİ[Q%8PWd|[4(bTB3 e"CήSJlv\0Gn5a)rc0<XV c2hM5`kʐc"9Θl;Mgª{[YX+!;sa*x7[Vl5G@Ҷ{ "Cr,y:d}5YVJ(T_>O6P> h#]^ IK5`5l7NéeGՈKzI ~>l PyR[Uy.'Ă&A y S&YW?h54DY`H=T-Szˤ/t*8g{tt ,};khmXpҽ햫]jECe`[3L}]99sg/Ε>Eٓ"˙b7CTέ!vE-8fFvZ &/zoLkqDzV]U2#|Tht?LʆGļ˲YZŐ}N=5d?8?%b/=My" +y$:V9 9 {ήtHe aC61sD50|g[4[TS; 7Ik}|d(wJ,Ntwb942Ɂ)l}dvd呜akhd>y}nSÞQiRQ);"4y O'}JqɆޘ7Z3θ%R}nQ.Tm}WO3K!%JHsיSx^' WpN?vv5(0&VNXeÎrKI;&(6웏F:ߖ[jtTJb\tĐbҏp Dƽ\QReÅl"&soBuRC5e?$.TP+A^TS< RDaCs6!2t OED}H.Jb['Jm:B 3Kb F9TWkhn6l%/1eCm]OУ[Kn 9sCpSi YĖ6A}y7"M枃x+՛`8T(S![qbj(tZ31Qo{/n&`IFaPo7IV_;)I/eQ|ݰc a@<S[1KBAPǰn6: W %\TW!:7>E=cN27K,H}?L~se jͫl'.c<_D q^(t1O4t׶ZnN>x1p3j7yGԮR~XbjbBHKXΒN"uԽԣ~[x^"n AWeɻ@z=ڢAv %6hѠo\NC_XTm//(%ftjp_ 5{2) o>;>g Djc|1 HmD2eQD{G6q*m5&C$8 k3ρ3Fk3.ݟ:_rM{{XHC:Rړ|í&`vZ/8QGw+7߲w L׊ӆ=`2) nIGZpۏl++eYNrKf 0I}bn5xy]_ ΫK諺 *fU BWLq$" CdyY0]+9br)e͈REAfiZxrR sƆo?oߒW"zBpbd2mAhֲt:!kƸE5ځ OGoei@T'p}~4Gb阭hy^|;Gӳ}yxL@xJߓ<$# B8p,,+{Ӡ7)HAX)H1j+\ l|`7Յ"trf).nP7BB Lqi-L OQZG2$x0a)Ė*JL/0TV[ɡQH=&8X.T} fmDӮDx&'ö^KA'_;jBq`I>E&=C26`*[i{gj+VӲBG!hJ38}e"[O Ձ'YOZ_#Y3-9tnͪKKf;mmx/3f -cuP^r{diօRqaYl 8 KvEU-"Ivp}ȉ{ɽk#I{<5:3 !^;ۓ L-fXb]g\y4V˿s 2|}ngd5 OdiNgyA)ԛO:-i:?k(hn,~"ӵLmy`u r*O V, UmZDG]ZJ {X$߳U? $yʑzrgWaT?N77fs Ŕ*g"kP4Xj:]/. ^!3=wt@^^[/H4*b6X1΂`Y/qzY]YV+[.):|lc?$;e=Y=32`CJ:b9@kdQU._8n*b\,4QrBTŵ\-s]a||>mr,ꀗY˸xZsm)j}.WSu*F^Q)Pu99PާϮo)o&k4 (A)o,,I.0.o]@-||vN쪗y]FԽ23pf@8t hd_O2F9Al2Ɇ*ܽ'o`zA 5>B`ivR蕝UF4 }~Ɵ+08+&HiܔޮMxVO.B6e4vOm0x¬HQ>;B#B Ҳ6e\$q9Otӗeڟ'4׍uU'%RLu$ӧ$']6e;nG{7!$G6Ԕq(cmBߐ;\HA}W-AӢ׹&s~E{wЭh rU\1'ZV. n<նC:S6{Hfc {0 txXuR[`q&$_O `+= ihik׀aAAv&CM.' j÷__^RAimYU Jz~hoZ(^4hCq܆8g|t<__F~_kR7UOC0JY7$3X %moş$N2 1ʻQUk4}.]MoHff#4Ȓ 5D}Y%aഺwT'gba୚9P ͷnSBj,N՚£#z#ʯ{h; gXT=ft\R| v.DlN*#! Š$[HPܷۧa+CF%ҺcIQvc0W j)n`2@@LtB! ͥѦS$y*uUI+" Hr#{3OG Ӣ"7~IA'7oN^ll\#XO/u /l,)XU{lE\yNxъV2Yr0խr? d$]G++ޕ]pd55妻Z7tYv%HZs.`:nC2[g57F7P+4z.\ ݝlsYP cL(f=Icyj?I}vBf9R=4lj%YoĨ_<eҬ27l/e:ÐKBh86 KsV\8Lu|<bաI $߁%s'-UׂcnkUCX+1V-jߊ,W G'dpɾKwal6Oek s$׽ҹ">U@ɲ$XPF{2I6.%"kI6ܬhJWn*4gց~w0 vySMKl=6`a^hJH\4ZEH(]IwF"A۱#_?~H|S(D4Œ9y|8EqoU(i3Bqd1ѱ{.JxV đ)I{ 5 hsA0j]<=3Nl1Q'+);e:M'~Ѕ6J:S0}E<\K ^zMY/ZP]^ =\0Siaˍs&}M~"esqEj'%ur6358l>9)qg4g^4Oxji2vpho&JΠ"̲y~Z-w;$ui,u#aCpB3 ! >zOmpeS#qE^q͑WgNһί$1[ϭ.Y5WsQRh?d0 #:3Ҿl 3?3H-tP?',:q+}rqvszUHEngh#~7a+mچ4#vsWd!xZ7ZˌHn%߮1PF?Usj0+qi6:`% <2utob+M-pX?yMTf2%F/' gp#eQ 7`UB)9W>-ܢ@#$ [g> c]FDv9]6ZB#3I!toHף-־#΂~K^P{ot5n3a;Img__8]T̜Ox Zo* 4@R_ d(y&6h߽^j:WĜ><;W4ר@r̶sd]mUS hWؼ!uF,aDrEuA+WZ(VQjmJ^*b=9;&Ѻsv;ֲsɅciMaDJq`B 샖77ӡ7 £qBl+ ;ToȩyW-ښ/#@&b{"i_ca3JKDc0Vh3l0Ce0-Nkӡbev8z }>DRP6Nqd0XQ̵?UDQ#{p}тMf/?49n93p$ $_}D/r*D˷h1:-g"I5bfOx-\栝\cn֓4AP~_ݕe|@#?\ mFI{ n\WF74.C.JaH0y)K;Jd'ѹ5(P&\qxdMZ(-lz@`~i"qy 9QIC៑J~V:җGA3}N~ BoW]cq]ď֓8$$g7wbw~e'w^’bJ/W& L:w]5p OnQ$9__N^>Dd43p0F\Ď뫟cCLZ}Ui8c*7E60>:+;\Cn0L\F=4RvAŃ',1e!>j]Yr'4$9s7_ЩDS O=atfE&G #A qqӨK bcyW"Y-G`ž t4y<snPf}wѫR'\)8'z`fpVmmxn cwnXQZt5U;7[?dCCIe_v9P$Ԩt<3N}wΊE|=D.US֚G6 6-c ۡ8{ԌMtg ذ`j'XS7`tǖ4x|储oes ./P_E^uYx2Me-'#cf5*~5yk׋` $!=~mt>ڇ1^4?O| 2D;4 L\ 4 1.cp$$gV26YheNn>ar5A v{v1iEGj^]9|3 hd =/dmrXs)+Z : 8HvoxlF4\W'ÐV:!m x ~A\pv{ӕ[Q&?Ӣ'nད,̅]EndQ6e{'otfc]bSs.ȂN |~,M@2o[ Y ye7zwTWx1#>e()gAonr &o'6 ߮O\·?B@U[Ac!qU\miE^'Jh`%eO"c(. jͨgBY[A|>Ob~eIvۼV *I{%R;7i_R:̶[|VQU4)[ =vmX,3e'k#TEpPo9F*cܐ1MK],Onɿϔw?!u6ѨlW}Q GDjG+ghOӗT-̈!nж bFuML$4*IvaJ$q#WHUotW' /P'Ki~ d!`}C= |քcK:}g/ֽj`7 ̞;L-A 1RҤ(HmM./"һϙg!\ͧvm^ {a%Ng V򼮧b|xϬ #-TNwvF|>՜J0vK`9 ) ٬;?.bQ )HJ^2xX /lSr]\op>#eRf=>70Y ~#ն˧ D@K|%Oe  Cm.{9#d9!oD$d̜</fiGys:BB 3ў~AB>2sؕ2)eclr! -Е9ҳ<%,GX[H iR(1Ƿyֳt_v?b柞1S>1KuH"9nV^z߬Z:N @:j+V ^a \SF|n. F.qamɸ,6ʆ7Q"ψ Xcq3c.D52 !'u:T(2M+/mk4;4kߩ0\n}?% =s[IjZQ~} m+ jQ(?vPmJH8V#1 7=P#Zs1UA>bXT4jh/+z[49M%4 ʄnqRO&@ *]q3=(Rg"ZBM[ ډE yY2 ? `u }G_@gTEVe`6f-n zZګy#/ sSڮ5iNsXlh_]IZ^? B_g˪.o-lMŵ~RXʒD3 Q' aK^(6 OjNN}##k,9ziu`K] ̪N(vb#_dWSs @x]l_i:2+k'OyًC4a=2Փx'|Qי[pzsˍ4Hn%cl3Z# sR2''fya)eDdqh,NgokO0LK1U* r) S0Kǯ'DzN)w>)#`he.:yo:H 5S[x s#=F-ra-uc*jlɅ$zoL#87,uRTRP;iD%n42ATRw&ny|[iu7]+=u˧?G浙t͌ũϘNLYNnSW?L`_ *&΋Nv ]XG^^Zz\y [MUbsm/EH^D3VQ]34lQᓍLyϡMTBӔ_zc0Pt  CAF9>R`W'w#ݗ9e2cF᭧HC&ӳɪ|%nviEl^ |CIw3fSYYN &҂Ϧ@PqбC7 &k2AtdZt.:cW&KڼC:k͂dg)o)0v&CTie~.˥ =5'+;f -=W?vX5.aN`ޓ霨'کjj Z0럛=a͵T5̳`Dضr8-(1P8BLaXna@k.`<{NfW,HWm($&P3,֦5AVM;ϸ OZR8@JQnD>ίr5@m(_[🜣c7@vkH$F1C6ȳh,V),]iX-2HGc9F(DۑzI&~HSvdaȃ0A .n/s?=5$pa 9p%yVk{␥ư8VDyhΦ܊7̪Cn6WE ܪ2)( =fxݡKrﰠn#i5ՄVW&Y"k}6 )G{y?]{2\ڿZ1Fͫ箹}V5^T$?2ȍ&J)5w"xRELC2ȭ/w 1 88Zh T%'%)ć$`~?15 .)n[x؝"'N?>Cz oQBiP/QLiA@D N%-ml PGS&˹DTmv˳:BLm_0i _ _ZT^[ 4GXR)W̰2xї-[^ yaP:`kg𶖋т-FsO3hX<{x6anT>u_A=%=w<=P5Eb7ͩ hXaN ""i;X)2A:Ģ:Y_0ͳ#)Unm >yiHR)RIXc8Ge$/]e   m返kQpƒ%+#7U?PS y{Ʒi3&d9jKY)0!)T3E;zo̙6%ƀ(z$[*BSo^w.|m:qYh=$8lR-# 6o'*v"5%? >}9MaR,kC5學N i,݆(x5pHb/2)= *hR Gv9zHkzt#OY"'*0:G{ ;>h R[9f\mD0_9ԀK4p :0e#Dd8V 'zo*թrޚ{Ҵvq.؄EL m9T$ 'v8kSgDgJ4P }-b:@Lh},tՇ`$RFnOf8wR@.5 Dp2R6J~` # %68K?YS(ꊄRuF5pX̓THp:Xq;LxM1z3>ِػjwMIs_`c7 Z9aM Ί!Q>N! ګJfK(]'QC"KNai{eF wLe w4,z7Ħ*?v|V1b_F&>4&QEbjP'B^qV&(!r];̆x2n~յ^hdT6ʑ ZSʯ&9v.dll/U(T޹H]W3$xjT-Cv* `Tmw[K"Iqa{X*"/V"]Gq`>J*eti'НZ0t0_mԔ8}+O;FSI}PDt:B6b0VdUX)rЖUɔpP OD Z# fٸf%zYTӒIN\LY4L@CK$jt" _7[B gaQ Ϫ㗼x3QE@Ҙ6{vd֫i<-4h2wST7hnje2uAGwE -!K_N3dPA.!T P_:2xY[zC_1{V%J|01^Q2Ӎ%L3F H8ps='"ݵdc3U^-Xӱ{kc=d¹KZ!e\$"ֺۼ4!=][/F`QŽg^B+QVK_әG]YBifqk,49I5ãMW5R\*X@7aD}gWьօ!u%9dbHDHypw&U[`{*spl4^;oE7uwa{bA#_jS~oT^PJP5Ȭ wjzN"%Ŷs[i#ZRɥ׹uA>$jl&%3o@{L+V|L'/>2vru.5vJœU#h$KWo&مhB\zV5oKZs[9 FASx ̩NG+HRgCݑԗkO{^6y2&'NuZ;*aߕz7psِCyvJV_I!gTvKsS6iQ4ׄ7I`f$>sOX]{+iO{ ei)O f9L:aGmh زb/gJp)$$mk1023ٗlD@GOړ۲~'`_cp47N!G#aBhDI0]"ݐ fhzMմe~'e )fy7 |%K-˗.  7>37!yy2Lte'6RUyU5`\sI~3B}'kdy7 Ý2-WHc&CdyȚ89nQ\"iـ8/*P!O':JY'1472S4eVC\]`MG 2},u΁xyQM*(0@sHST킬i0mO&'B- g7_0L -'WGZf܀u~-I D&$Vm.#Z5c9w*Ԟ&Jp`tz~ 2L-!g /s9EpgB]Frw}$hWNPK$;fP)b203ad. !ew޷ڇltbޭ=YpS@KʞKy?adiߐC0 +|v.q)+>pF)EY1ON\A. Ӑ ̓ڬ}]e0L6.&U0@2:~4f^'S͘4<"LPQ C!Mnew( [wjȬ6Tm3%sLM- CB罾P1TˮGemC i侟? -P]h2]6 ?Ow,U&S#c# JZ>Χ59xQ^ 3A ɵHR,ڕud9)=؅fiN`֟P%,^wk7F*_NnB&wr%m-PCw Ǣ}>>S0̱C1&Eɓ"S;0Dwݱ3 __7, .TM?'y/E 7ٽ s)ljQxYCez{EMXDc)9A*} d|efC3q6akGL62U3}'mA)zݔ]v1=[fx W v׳ I:z&0'?DžN?SX~t#B?^͍P2-4'}'~ʕ~ݵѫpw+qSw{hX|aC0 g_ {u6߆LMz+@)Aޘ]Ȓb$V^l]޹mNi ԸER5T/qmuN-x0R]%U栋By|6}쓙 dE9{Qcl%WT-0w>V|w862C)C{Q)/EB}ķkAxwЩ}{DQOټPN'ҤjpeѦ\veOW:@z:^w{} ,BL'Ӳ({&!2j{lcwթUSzv#'[Ģ2p~m (&]iRBJh>؞d۶7VDN%D!~U;1}Qn:')ߵ݇Fn_s3=Uh+e/5 2$i)Dy#(3nlTYzl`biFRĒ(xsJ`8 %,TWy w[[!-liO*ʷ0z=1w:6._>́`T8cc ٥~?!Cb~WY<Oop|J.m@IvJCUAF`NS!(kh< 7H-9G{ ~t,-u}" HځBbbNbML.ov~UGK53V')I˕!9W"BiwMp(P4HH!>4lAեӧl= oXqLծTc;p3A)Bc~@O,7.gӺ}׷G;x#N3S~y'QY'xiG$7Xw3< 0#dط;nmFJCv)m[yGqW򷦧ὦ: V9wjW,sB|G_JB@CGvXa[ nҰ4S!̜{h339X{4~ʺ_Ij 8Qeeh/w6(ޛ]r ud|A48oO>974%.1pz&P 䘔D3[P XCiZn k7f!?=̠O}#b+}zַD͔Uք]%kLuvB!#yO|9;3ؐC7rI}CУ&g-^?38: .iqg ~*|rKI_\h8+*%rA,ךL#2g#Ӵrs`N0gyFкq}V LI0̡0}flSg G<KClJX k<1 ]DS>(vHh 6#db{7yN>R+b4n:yͯ_w|? [b(U24?4? #2-2.%Ȓ_[t?0!RyR1:ۨi%<"MHݟPW03f&ayJ.ޜXmw>[I<.x{lHci|9EԊ}扠b\SnN0&Qw8<׉#k<W45vIv=PGEM*AWg^^ ̯ȶL|L0d{ WPIA1  Z$rtxf}'ÿWNnҶT>^5˵#/)M5_zi>ru{uM+9h'/bxASC|egfiY^]M*f(/ICoEU g©\31q@pbqyzˤ]d+U<yd-Y"xL)ɡʀi018o>{@_hĠFsʹ_6eKW>P 'gqCFܴQfeWn!L`~cJKS:A#@#}ÑW=;9Qd̵h %wҺ~D$PJ؇Th@&a4wy\H&Gm-~SJIWv ׀1$HTD~ _~D y>d԰QIIy/(VOG] B(cs4'W{ߍk`CfX a7r;M Ą=|kY~/WDӈO> zj,Ph(0$횚 kx8$$N"z\$L`x*$HYx-e13RE .:x>NH+kEl1Qxxuhe6T00?zbe#"4:vmxRX]?k7wE锴SmpCVmި*"~9ih!b]w_H+'bdf}Z{i`4(? QF#$8Ը 0dKzɩSyG;H-Dw >7 `,kwXD=;(AFFQ]`P w()28>&᣶ ߞs#F!zjgcUyYOokS"CLjR~?+[ꣂ¡$xcV!X ?TKfM%bq@ 0D?]|WmʄB :ۺ\|V: gu ~r@{_os 0iZld 'vC"z*z$1rpuRĴ=-BX*,*qT5S}V@`֯9y‰AɃ}Xg+w{z>S ~X;q~N62l޲Rq78Nt2X5be<'| e15?e rW" ϫATߪ`uݐhܓv -X /M %e):dsߡ I0 #|]VZSE`PUC)+uS &-bD]|1{ 6~\(!MwyDL5v?dkzWz ?|ॹkg5* aM&d˗a{ Cq.`֛;h}=?qT/&Igpi!c}) Eo>k7&#O2hGg}E5dǵu 8mYXno`kP:uW2BRSz㤋a[4[re?np.g&^;<@^9@oxȊZҐX35Jě N"6*>^}\EwMl@J61|vL2dzĮ9C#ts5[/u2"Bk=qw;nWJbY0W}!缗!Omڲ9}v :8JRkO;,86#@o}}6GVO4ÕPUT?Nv0m`m덫-ΊemY;Np#,t)C#җ諿mIMd5!, l f_*횽4+gW<p_H65aoO۝ 㠼y sb 8[/8OWg^pF}Aդ <+ %3sL\ Z[&hGJ# ?Y9"Xշ?h6(ܫ`0DPS!ތBLZH6Ãj.GRz!nBPiu3oĵVX*.kL{qt۷Zd?M^zHB#uT>kRJꊍsw)>d; 0PC8ܞP[BOiܲ3}tiN /|]1)2e8 ^\gӟ-C4|HzeZ2;1m j 6n@H 'Azt<9j9p߻`؃OR^eAG H܀SQ:Wn y9&Oߊ߉Ȼsǩŋݠw*5 )9 x]v7/.Ď,7D9?aTMNrx5~Fh )/׃=-q[0n&T5Fxe Y[Rwl{0ښ[4ØRNy"$(;=GM)^bC}yw_>.=ag5ӣUyKK{YDiJwn@n$"!-zzٶɎ 4 {lt=Q"O_O9MQ0Hx hsݽΩD^9Vv1gֻiػ82%LX\y_5au_]o){Y}JSP̫JRhg$B)m?n;kdCy Hznm0zc'b [D\vM:Y]9P Wrygk-'yεxQ_ғZ`vÄ .5FOTf=_Gդ=L[;~8Ā%p/;[@kyi}Gi-8qι4X>wR}KMm?!$.\\~_g\w@먆S\jь]@L(A(watFA Hyg4 DDseɎGNƳ0& L,k'$7we%Qjmm.(Oi#+MѻUC˴sj8-z{cvˋ@['!qhR1b͉`o?s?ڼ6 \ÿlJ'Ò:УtSS;c49/w ~,b43N  CދmSL~ T_JJ7JIa$| te8rj*0[]3`ޫ*2eDohќ:- i*-S-md,Tݬ?$ ˠ^V/ 3pYؤz$ VNŷW=8e$}w O虋otUʼߴlqT=P__C'D)-؆h1i'Y  ߖa>MiL]cEfOF`#<h88x|4V*ۉ[.;l_ۇ6:67<bg3(D,-VN^kH],N(#.OӐyI'2l"r^rNZ#IK5Cm[}2lf4$PDH. ب޸hV֘^eU.[|R.=S_j Vr#( ǢKyX }_-6ؑyGglUN#%CFuZO{CҞwF O/fg35f;,d≖QG6@\}Spo&I©7cIM7>;6V {:CFm#Wtk+Ңj?;zFֿΈtXlo**vp ~ueU~ja$d G:`|(tiGBO[IGy;tˍP LsU:dFU4a],KgFL{gg6C9c*)A:GBAPФ_d#%Y24SaBto Jn@އ4*r;gwߥ/V~S% 꺦Who{ujᢐeX[C6Ok24'q#AwV`ugr23$R܌GA÷"Udcjb+Q]3A%j Q?XFh 7qc_vCntȗ&ooe@ؾLb.א/n䚑ʞ%@qB:ue{G_~gvQT}V](Zq"kD'Y,I-a\MbHU_3?fo!)sGbN6d_޸m y݉?diRg8K]U{ra4d&̙gkZ>z83.@Պ|pմV "tm;V_6ЙdzUDjmlvM(aگ)ww1"B;KUID\!I@ qB\.d!494.vr"}eto'o 1,J貑&%z/0@q8B xAH! W0QmSП!Hc?Q+r1E9K_XI ,;qedB0آG ݋wԝS$T%iw΍8D$EenEC'?/cP7(]`7{ܿ_ =;k oʧc;k/_> "{S#Wwzm̫"; cixoˠa|пedePpҘXfny|ȕKT6lZh1ER#9vbL!=5 }.쭫%+uWNaWJ #.Z?KX9!uMfDG^o@9.S,g*QH݌ڔk27sP177л:M Z%fC\ Y69OVI޶^8ʉG&Lk#wFؕD땁5.ٰa``i$h7||JN3E gu.m'oV9=pbz$Գ~\MY^D٩G42+L)B#:nz]\p%̙8A[baד戀P_ i<ВZyiGG»HHKݶEs'ոX [<Ҷ韦A$ UQyGR) k`~޷y{|$ȭ%w؝*:w?0+F=Mdzq% ~h4 e, ^c[yƥ;Ib+_=eE5V5WKT6P)r̈́ɘy!7p["NIcXF'A _W॥'(j$*$mlt$Z@6k̀S+bca%B1M+?r+ҥHo\6|Fzo8f[<֨6յwsxw;^C-Nצ An dRI$9/.Āg1!)rI3P;K`N̾'vH#c){?SU7?  t}SqeOsl GC3'oze?J>eRQ$I5%fy.ta,zN;.*^I:OAИ`@WD CH06-:r+'*K[C@j,Cycvjwg5`UCa@w̬ !+|J'9}>>!? u-kNO~Kv{>[>`αiO,.51Y5}KTl/Z Jtlp΄E ede%{3])e So?j]rvvI`3E˝#`:wVHG|m~t1F@mA_tސeM9cP!?yL<5$Ԇ م}EID3e,S=C<@0O$E#3{j` CyifK"J&PEͷN3ƉhP&wMŇ  5We?_2j i /SdBf־3\֪P.;=O}n$QLY6O5 I#jrL?a1)&uyS]ٚ c?ȁ5;G<҂3[TcY@CWmS2[7Q-%б=McUVY.p[tDw7q~[  ɾYK!o6L\x)41E UڨEWud"F{]xsayPDqz׳DI)f ]U=cGb, 8J6feG귢h dhv龀gi}k7$qa[6C~}0V}%:?j%;x:#>vƬOi۝|k(`~*+oD˚[~K+DԫC*.%k*K _̙v!7I/ɇHqT;k[V ɌSyVlk_{\>/)?#!^dLy7=g"rbʽV>L7#C&- "Č'n"aF`aP/[< *ey@w7zADp}B. FZG4x(mѕ q?1`B)]|xs*R#'?t]Hce'Zd>K$ÙWZ*48 mҝ֖uj.tiW8N(U:Ω2s㍰ M$aKPg뀎4#qu!}ѧ%'# ^F4ɟdREDF߂醩VWӎYg:r\,mZxr&G'7 J5a;gzvJ8Yg[i$O{OH2\ҝ X3lO{^c%/ (}d&Ɉ=]ĭ[_LDH6ho7?C;%돘8;?!PvOڎ·U%մcz,:uKw܈O\J9+4/ߤ5z1u4vm^!#ur#c>x'.^jR O$uCTښz.UO;&}rIG&0 wپi1[9@nX"jq =9#I Wmd vhޔҳfBr7^V/ucy@Č"5N .Z)*vpuܰivA;02{'a){.H:8 đ,(5jy|GBvu۔agC|w!gH@kD{/EPNcZ@ƴv}L Wf%oF*@^i °9l2S@(̀{b9 > wbh)4g-rpEe&19lLxok -@2q2wB\esz]isE dv9ZDf4X&x}j{rvhʟ:5*DM5EϽ@ `0 G3߾hLY{:o#UcgePݖ!L2;;($ YL` dJi?<WU[<^҅EC…\ K)6ĎEso}SIO7G~HcXB&gy8DvjdIp IQ] \gH= D@Zy=})\CW )O0ٖG.WCZKI3JYbD;Y+s\pvbU.駯\l&c۲q(-gqNiNN>}뛩 OܚTx 1"zvVK`%>?\2_s!&08"v" t^9uKF7yl@sKV!9zO0uBT^˶+-EսeQ}nNQ](aGf%0 n6I@fE; TpdsK$)ۘ{{bX^ -R8}ݞe̸TAM>hG9YKi(=g'>zHc0PWc<{M *H/ ҢJe<4DR:Mxr I9 RqHRy ,-^?PS뗰`IZAKr71 m@֢smZGx{ *O[(S cT%-$2 9fW}8vq5 ܜmEnIq֍qʧK.B. ൝=aY?IGD`"-MA\y]xuBz$X6Et<C"RE%~!}jdaŷu0w`*dVkI9 CO)=^Ϡ^l&'+!ӈxjjZ.:4ژl=_1,c{zYh݀.;g"NdN"rhr.bnF~ޥN?3)vE^%>&?߱ ]=7P`ok%6(E.g&[{{\U$3Xh@, ܿ IvQIIRy.]`L;Csr%W-EzӲP+A6ON]&P Ku<zBRMʧgdnP8t|ɪAFdUƵ?/BjYIwv@7I Eh v0^w>{4lA7:-3QUb3g\{2ZJϧSVdT u}I)ӽqVI'X^ť.[ubq9 :OATmOkayϼh[ll4N)|3M0 zSy8V782U4Æ:tlO&u5ӍN%4|׏׃8 g8]i8~R]m+oE~l %T$)Tƒ>Uh#W ojwu4&ǁ$PXջEš` `tER;gkQB> uu#}%6p@.I3.Fv₃Mj~ KpNe7:g ʲE %w^^IBE $FQٚ ӪB0_{o\?+T#b𕯼"kJ^U&o4^* ²ѫQ4v%IxGABV ƛV$9*e#79qeF򛠇߰jEvbI[ HeתU7C$SRʛx#)*7sc}rK~ P!a0F Mg<Do `^B2(k-C oQ`z Қ9b5aؗ-e. xcz3|` 03osfpiO-hu=rN]U, ؞y>XMAȿE [I?sOkU'@GZ(-~"2[d3mUFBcTMi* : T*SWax^ik5qx,Y^ FZW/AY:3˛c6u T.qn(:Jx(nL7ǔٱywy)@U r_=IV/=YIDkz2tq^,Hx, 9Wթw DePN9S$0YHdjt&qM>dlXnՄall,_ues$exѦqn#-8 ǭF< ԶWVmT_{|o>i="%( zO#=5#TB q͚3xO m%"0$A1@@aM`M-0dX6\=*h+Qhw4-vn؜@JĆQ܋AJw=}̮.n$9Ѕ،Ƹ\Q+̌EWc+Dlj` )oMɷQ`d% r:vqÔ- `(LZ>ڞf$i _)< g}LR.yv da_`([נFʳ^W e<#0> |_e ehwс|93%x+Ջ7)``wcjT\p;=&BesSdwY]1s&Z[$p:94Κtuf@kQ`Kf@Ϟӭ]=g.ul2#(_6`ĬkJ+e9Xsclg_iB;/d_@ N<"0 bL G?2L$~)MH$2ߨ E:~$ݿkv;۶y_FCg{ Z[yZdE{[b!0d'kh<̮]'I=% RAjr򰶓|ۣ$u|z+wsؠ !n{ oaTPڄЈDlJi!ldq,G0VNKұsCouMAW+ NAtaߗߕxus'  E)eU,eiQKRΨ"Wn )Uw8dhIM)ՌOx4N}H'4,^:U0Fn)bjh͠r' ր/uNUC'A$ר iX+̴\Tx4î-Tr$[? "hݗ$IY:F£ /4)^.Z~PAjk2xu띩}ڻVw-,S8:T/ XȵT'Nxo::\H~ ;ފV8*CzR}4}RL>{:`6 6*T3 PT6X MY?I{6=i vYd,18۩LX<ERL |bqkp $MDT}!G0F kvN؛ [bk`3e4pJPukCJ?3Ca֣]I3 k ^}08wcz`%+)HNs(yظOx%? ƷklB8jAxnm+qbC| 6ňIxj НYD3m~SJ؉=}Fn﬒5&6`|f pAA|)#hvlhhMǥ[hL?c#GeӖt3?aDD N+yO?%u 9gQ Ug!S cњ 0IMFgp;=aa@ bꥋKgiF`v5>^RT vtG$3mГMrm\@[ZhQ-̴n7,N"MחTԈi^I匳(9A"h/KFqKvꁦ91kl\\]nRЕ^|(ߒ-i$`GDQSҋx,P|%2}BIJL)6P&Vr0Xme2!^%uL3..4~fVpd:mS&#1I)KlBf}QQ 7+T}]TlZ<oYَ5p&=JY"waEҾJj~Uw~zl5u'຦44#MZaMмL lSV(*]pt$rq4S4ᲁk=D!+ڐ bTBK Tܗi)¹Fmts򤃤;I/PَmO6H{<,j7GV7,Ʊ܏q:o;͗U,̔ ` nr1d(<,oVWuX?lZ*V=D4OA,,KlTq;[7TެdH?Cko?hl(`tPM'`4H `bΨ j(F/;/FkfmP8MfN>\bS'%]_>iD]1~(GH,~m[\t&AT D-1Sk*9*'T}Ue;yxA4S.'c95=Zh\p+vH]-hGUR3uH{U5!e7ͿW@#~hG~V t*!3{7Ď$JIEpR1mBW_$K/U 6ZXFV es[(PcxnM;ğxhH ݃4T]HH{ |{^xzD|w+ز`4cQO5N6^`x }d2 on|G1BI6J^MV bIl (/ҔR0sԒEMb"‰pQvDYfw2"񈶃HuC21i_G"%%$WI,-m7Œ u~XwxPB]{#PȄpsXUg:N z%k#w)@pZ&yͰXaguA7q_9~Ws="!rfqX.C>_M" Dsw0, .3`QG0f33V̖ wqxn|iTnѪ)Ƕjgk.maς(.h>N_ѧ-8[hW~{dg1O?B.vTf\TY$&q qSr0'+GBk|g}&ZL{5Qմw&:2nT\zQM煵Phh$G2q'Y`E0qK|P0vʝ.þ#j,4YO)ݥLL& P̐Ee+: aCjT275vc'z*ߓyiRq2$;{^tYQ0NlZ^ZڐlХ WO0XǥV ˀ4ˈt nG!ɌohV^D>o}yP ,u<+E5aϮcBo,N )y:y)‰Db|H2\7ЀNK6|߂I.IR)H,&F1ۜ+юn-x5ۊ\qGky;׿\] r;=Zݑҳ\S='`j)>ڨ*@C}kzxC=.Z^hih痩) }?@SyĂc@ȷ^&fM.ubM]4fz48-^%„Z-Q1[(c:~n&vތaV>4)p("&G7v=vi׷#ӌNZspϩ+p ѥ4hu^o`S!a9}j#ʠnI_$EšN8: 9h{F ^D2XP+(C0kPU%,K?1*D Ή'*"f5zuE-bkB1-P].(3+u~t k ^Nxka?o=Oȉ:02Ż; e8[+Pe!FrCQrJlvf[=atg%i 4UNe$v#颇z%O/6߇;Su h]T'o4{~Q+L[!s ũjLD܎>Џތot.xBFᷮ+B^(h nR013ך:֘t J9UlЩ=UEg GchEjDr]fƋ ANJe"jL-l }-YDžƅ\@V /ٛiV~]I9tRd#"ߛ짰Q%A?n.chyPj{F g'WJ)v q! 5{y,= ߂i6do4Bl6/ST$HQmJWnoUn.ff5A!J-7bCL\iH &YIAOs NSɪ NCX?6U6BlV cpo=̣7㝉3\SדhrHې^{]y_;0uBkg*?7}HMe#F)uff7Br -gS67/ҥ4]INs*/d>T\nN~[RvA{ *R%mʳ%؄Ieһ!7A}qC9VȎy=oN M:~|KV("X/ f^t4iҖwHIOni_$5>4fYM%1H͛SۍŐx 2iɶiDwD|A <5o=aw[PXIVל Ҷd-S{{M,|ow M o$ Hgįln^k/JA#5k# _7PdH6Weӽ5ɵ8fl@wmOm37d5(κ2cm 5 *fF"p{X;FɐW Ko;mb#& Vo oBJx||-qy7b_tv9)D3%`߫|S(S&}2'5Jh$A͝gY|!x$᤬iAX), 1A켾9ڑvQ&F3SLEE 2cE$S}N$ܡA`(ѱ`{O,I:w T[u"1yqlȸoL g#(bq7EX*ҷ:cXFxڕMP0xɀjfc٣ N[c+8C{}j`?ZNR,B )L?CNa(VZ,sdMSd.o߀=cpܝB|S' N`\eEiւNwH62}AAfųR|^> 5}v6L8[E{Nzq҉xZ.x:ַEt;%l꜓#"wc^Lj|o(%/0[ !v y|>wۇA J0vSDo`_n$wh[2VHΎ xN^P0\I샬c7CA3s.'\KҦBGO&% ^Xקuܯ ; W 3S3ARrj;7V, Pq<;%E'$04ɼ`ꯪ-zH(Le{;*'-#lwZ2j{.i(>5j/Кf*ui[8swr1cQi_D+PU&~۩?{s}sZp 햵^mKS&D߭s)`$wUdVW^IUNpݥ bvQL,7a >DdD-Z,de\Q6#=W sSN4e/ōXJŠNҺ@WIDO{L[u[};LSwr-Sϴ@ҴVv%ci¾#|k| fΧ~Hß%1τKoՖ*1W׾p= BY:Whf!EܬYf""hZ6 .w-p Q$dz>OQcYہNHzF8?A ƿNP6MbF56ϕ'׋{2刱.\m>5&R6KåeJrZJϺb+>YeO;FORP+> Ca'Ε5<~pA9hEg‚y?V@0:YbrAbs{_}xYDA ծ"/{]HZ_l["qRmxa+TS,:k )$xAW4LiA0~Tue|{R|kBG;3Ց^lscPF#o[R2ǭx{d v cunK4Ƶ MmX n1\XE -g1iED @P7Jp`xN=Pg+U4r۩P @*x @" Y2!\2M0`a#U HtQU)v ]Z}$AƩJoqo<b^wlYjNEI.OA# 4z')، P#gn2UӼ^] OS,bJ Ndof$|ƒTPL{,{&y҃ + x `(^mIy1S IDy=]Yš\"oCoPrƉKc_*:ߣA\Xmc$k $joM MI"N&PPm X,Ke3(<9t\tS]q>ou"v {LXFgm E_R KJ8uhemObx V t ]m  5zfK"4'&E0۫ǙvIӾIe<ʵԨ-H9HML@?|y:Zmz4V}gŬεqvmKxi%e4Y"..fBr#p4"KSD' ]57 (K/bHl_GŝL1%\Hft\5qB;v"rxr~ַTP2/o0PA ,2~.@%WNDRߣg;yXvrG;32 ?SEz޾oqJy$J *7ZyUs}2<+2۝j7}3?DN0CJƂײ|p[ ]"76 ۃjsȔ޻Mc -($RkM_P ;se`Zر 1 te'r.Wx6v~\2@Nn +N9@yOiS.^mAV}_*(H3s5P(ѽiTXbFgk,0hG<$%xM~mOfg*idiS q~i6(f?x;5PK} LB{3׏XJdxRz6v!v:m]h`F%S@%˸kh!#jkfi }{le5݉(a֑l" 2,{];ЀKj``y1# 8XsP럛hold\%50 }[epdʊڠ[}4ֈIZ`~(NXiKZg֙pN3io\;Gc_fǭ$7:mqbn}E8[.$]p;?a4x3ƳRbm($C]Xs7U1mv$~21)[Fg0t,dRb4:o_f p4:&_x>SKI{!|a|q dA/.v4k$i W|uӡl,/>W")0Ӄy&x2oEV[\c)kH$}n0lXy1Sx:uFvQ #IQ SetJ"VY=ew_L8a;Ֆ kR 3|7 VʫSrǐrx6G$N; Nh7e1ώ83m/&GH_ # ՎRWFߴsty$HDGǕ9L̪&Nb4֘N us˓G OW^v .+ױ:3אŚb6Ϧ-rRQG^9i}upGI؎FUXTϢ!WWr~eijBR)19A1<^^,9f]br1gC8*B0\D~Rɠ(7K`(rv*+Tt6,|$T'Uڜ2zkUl\hUD!.%pF(cUdO|EdD6Cg6 teхșFW7׾^^jv{/lG-/C+xp BK@,l$.=1!C'U/B 9w Jx6!#DY:&20F*1GCPgDᚣ)]`N[v' %pT `h3sl;:k8;W8S-U9ˬC'Zh8zCf++mO7 9b8+eע}+5Ddh@!ߟßjS[ ); >yi 8Ì i\N2qDIgnV lyLe[S8{.뜇5"֠Gg7o,2H/Q ~ؿ9]h=yQՒ~#͂P{I"`3O:S+y&C7)HWǑo k{6k>[cW;%xժN]w({t'πD b5rkZ>F>Fn-ׯ>,MF/%mf:̱u Pz9{Vq['ն :Y: <Qƙ^Fi0Aۘk$ y -2EQ- xn|ZߣQbV`ȻA yPzmM6wSrYNy(eG'Ч}fމQ.>tsR|dA=fA[ 2w&Oa|n}>,Wo}Lnmdx42da^n$yF<kf,Q18S 0 &b2H@pW}:~98˽4'IM1#LN (71V9/7ugb܈n"@7?3d-.t3 uw <FUi{R)b$úF3z|j^L@aT%QbX,3UZ {eVxeZUn||!M޵@VILyZ ԌQXH2!MScG0ΒMbž@LyH< V~sR;ɕ KDoI_/"Ne-!mD2j5ůY̼1T>͑:%uHC%n#iW'?g9$.R4qћx̛ZpFMn+CrgKl_7$`@}FtZnqMqi OaDjp?*_$7mqA:{g%Hó53dÌg0CfE(.M"U7{T̈́AU.t<Կ>ߛ"kQjU}eȲ6uk> ٌ6]i@fʌ.pu`f etL^%zUF4iBW"|W+=e}:kwCƷA+P 1x?:>L_{{LTBARTR>4xs{o@ NܮSQ: wh){TJBl63;kD_SBbJS=ʰo?t$ q xo*W4:Sۣ} b7A %xQx '@G.}.PE75K*͑q)ܘ-QmKF_rSWЧXvGR=Yۜ:lUvs%ɔ)Fm#Lj(8@xm8ǫ@.]{LÞ:ich`l$Er[R+ALgKuX=A #K[o7*(=7&⑅Oj/0'RcmuJ5OL/ʚf;E@ga,Yd$b8^bqT\=V.٬12faI4 )GE;0ٿ.ϑ7RjfIVQMxɒ>m.&y.5 {!u\]\9V6w$[/mQ[:Y&`-j'^gFN'w 8R>QuvmT@Z.ۈ? "b/XϞuWzjܹpKtT \=|Z( U?a!{k6.F/:0Jn/֎Nl$5WТ6l oHG Tλ БΩC!# tGToa[c= TP؆Ċv_f 3g, 1yg֒c%MVT );.Y ATS80:V>x yٱ.'eMh܋AV7=JМ2G6IbV7}%-Z+|/нCbjyhMjn @kp9}}Z9JuM3A_:5  dk5+?PRLgҭx9% 8Úoô Q<0tt*]>Y#gA,0d5;Dtpqdŗf|*<[?aNmX1qvG䝌xJ3./WʔMlW|^C*sO!8([H܀0>UӐ6]VmuZ&=xuxPi:d8:[k]MIy]nt&O_c *("žݭׂ/a4ݘVhH-q,#b̙/)K tl%[{9bk`[8iAe_ `j<͛}3-? -pec;sz\/]'\F݆gY=8tQ_݆JN2cDvEDj^Am@,f9T3<@@.TIm*(pQp l?%jE)qFҌ֡K8'',*W2 Do/T= ;Dg ;2[ءUɨ{v~7FcD\k Rv0 VDQ 'hpd4gR'A mLNb )3LAR;v ]#|ܚbK7Su\PS`Ƭѵ[1^q2~Ŵ.'Y~\gh#_1OCfۧ{ @.RH:ՉtVvT!Tf7QyD^S?s 7wdy&p&po?)sc%U6UA8_DH߲$G5R`uvjLXE˹6͘5ԟxYG7%\g #*uK'9QP )Ƃኤ#tyvL<mjo@9u&|ctR,|io)WsnÎl3#~:arC}C7;2yt}ה.E$Vo_Nj )<( y k}dM8z8=.-)Ŏ#22⹵YG!t"Gxp7R{6uO͜dSVJ FNQS{ y%1scyx{DYqxL=% q| B! \r8 -?;K>EǑudF2U˩/_aG^koU<\sכ008ks6Q9)\4iQ:E( i"fG(<? McJۓfψ,f`N:$\ W19RbBdFc>n3EqҨ+A̰MhUGw/> 5lgj<ț§[2id*E^GljS;ZFwhat)dNߟbH.P*rQgٞH-V`SJKi/hOgXi?. iscM[ vJW y .\vNS-FRiৎ4jN U}aAчh4 oWiDaYn OƦ3d}BrfPfI'q[ؽ3.(j*֖s^ķL4bae sDQy;-rꁌ̛g@I\|UdqTDr2.5;M0{gˏL0U˭k~^R(CGASjrU|rG[D.ImPE־SiEp0ڬclD9g ~x;$[W0+v>wc.TI m&~\t(8|b{djY-7#z x\VFk>'DEPqCCmw~?CطaN") }E]s2 N8Q˂咠7Y3q|"$^NJrʷxMe[OPF> MbD$*W4*g┧"AD@~IXsd;dzU^ xgdF^3#>oͪIvkŗ\g:tQq?9]= ݖ&D:x| Yr$% )+!1}@4YZZ/Ng͆;yxrZ@_7s0F4iE;$eltM\fQ$D+rGYL ˕".g)LMyԱ*W#ay'1W=1$FRRɖSȣ.^d ACAFPX9qf' q.yE} agޢ+8c\N` !.r6U߀}ҬIb?%pZgĮjhڬVKq|3[e6:@D4 U=5/v7Nb@9/ĘI:ȧF-Dp&CN3$"# 366*B3R=8t,rCt2oće=\2?:l61+Upg&X\wдj,nT`ȶ#MDa!54)11ZOTQCbb^czDD,S;a-|A:sJ}%5SsV-$ KGw V8'K)wTŎ!IޱΥU]snor^!YTa̰\:(Ois#|Ug_  ;rate+[RM@zj2k;׼)DBxN:oK̓w @T쬣AeSֆv_ ZGyڻ8gark#L5,_T ~@J>ɛ*~٠gUMj^OD]x_BBs^J37S0C#d1}VwKu]3|*}mX\,iu.Ol'+$Nx[M롆d3JZ?ӳ5vO**3ݘV CJpc8Quaʜ7L=JbԼvfr($cIMJd N2o %کd{lsۑMZ<2DV%{.d*uŨ^9 dU xDRuO (z(FOcpT2^͂>EƅK"_"þ ;y#l!&[ňPYR\7ɤ$`"% J\~%+]:ʋy2jLh< +Q_r^EI*œ?nB= BZ@Do-OGٿ?`4.vbb"m)ĐniRJ^j `aH/8, 7E{')"^Vd1Oa4Zlɲ&m:٫Rzr˧#LM8PsW;*AzPgw!r )<,\iJrzPb!@$KH<s̀z0+5NI.B3W\M% \e-5-^-ik M>c/iK+ܭټUJvWEGF © @)9:v[U4yP\SLǺ'P ;|KRz]?98EAqT,^e%|Xpv!lCSw;r1_3$ N [GhS1T}2ui;ŋϡW Uo4c!4-|qc#4]^){s5Z^(l~H"54Z| wBv KKB> bը_stWM(*ӆH\Y[JYGԎ[9/@1~%{ TW! )bz%t78wVn'{Ί#.V`p"z{5:|bMbLz3y}ku3KI5A ŭiƓ?X mfL]q TP1dpYD咯) 'Ɇ󞝼h4A?me[q`87plfQ*U,k{6IVLBdaci~N (؞69곢82994yC~ `G]eO}j_gøN3&ֆͅKZb( WN0Q/؛/2'LF?3h);iRO#mc|dRY$ӗw4pP ?9 |ʓdHxe+#N=j2)nԘIATn~PEQi6$>.>wNRxqKuOK.<noȧץ`!8UTɉ%P$0,\6OɌѶOU$Z~3R;è)c40k7<$]%fBzr]Ӣ/*WS@h.PZPtʣޜ+xr7H> Kr@ ,%`S&V6ȗP. "lΒń Kg20Fx0_`Wf_d>.dǃ-2;a\*n3 ZԦvI_u(w)U`}OY*0R4G1REgϿ᭠XΥ#dc`D5BZ02·%xI!'T|9>!SI5j]ji/[tڿ 'E`|ydd gZ.E|6;1 "1VX:q j{e c֚P%ZbMT$"63FcV(% ݌\=k8`IB ǰF[˧ԩ){M;l"|-?y8DJBԂÎ!@)AEX08Tpꣵqzdh,2ʨ2>ͯK u f".2r矴~y JB?fC Z`bnhEEFrfv&J=OXoq&Z8F%l>Īql4_;\cJ'Iy;Ǩ#w-b"W'|fRPH؇F /%1* av" 7^6^jNEJ@ И}T# Xl%ÍOc'N0~cIV6Wk9_[2&ڂ#5>z&0xuo^Fɢ]4K>97v\ d*" y}K -b/:mh^&5Br.ʥqj"r:$׵g:$D15LڐDŽ47 A JQʽF.#"۱LiڪAX/HUvycJm;ɤ4{8ƇteVΦ640io)7,؂$vRt᦬ 8BqO~KK4tzE[HrNVh@nٯ~OQ,aMJT.1m;~!٤wyd:;];5C(ȱyWw8; ƘT$| C"beŸ#Nd2^IP}T`y&kV]LuW]= jsk4~p2"qʀg֜(Ɯn[$/.=b:R *`IP9=zFs6 5p 5A1)Oeڼ#.XU{f,X"U|JrW4a(tJ2xЙoe"ЎOIbl#QeI(>Iƣ/Hw>_)}Ҁ },8oJWWX͆4B\Zڄ*Ҷ~dV%h\_xh+),p%K'MTq;=s Ѵ?䩈&>Lxp|_l_o\Oe0LVC YBy[)H^N,8n<% d yr L˪*֝k}OW#ӏJ[l Hl#vj\8}CW7ѐ/FRچHjklY%dE*2U5 =s%lz(])bRy?Eԧ^YO6˲֩LS&$Z<M%fE%uIRɰO\HV;ӿ&0j4D+TR^4ZATXuY_Q0tz|PY\hۘkuc.M6H!dchQn,@'ZTʤ0 N<9qz,qFC˲wx|2u:Xp+))jE'![}x(56wٕ:Z%h̎ ˴?oJ" g=FjRC  L#7pU36c:ƅKz810Uʝ)BX$5iX4}lvQD0n]} .3Yd]Rdی4牵nveƹ41ݳ90YXx+ / a9HJOw%rt<ܳPt׬""Ym[^#FDWg @P\nii7msVۙV2]F>oaD(+`ŷV~NO k6zdNJ2n?Gy$йj/[µŶ4$/FƟVTC(51ͭAajz 98VŚE9NC= )kXs%2&_#ÄK/6j@Zw%?ىLGX)FcV5eUOؑ=Rfa@UL3nR3t awӻt6};eO5^mo~䍣uaB8n8ȢdH+E-> H?K-HNw[\٬V״@[>x5:ieU\^i9Zd )k=I}Qxt ڷ ]91>ZR$*qm!JM,9 :hUdQ0H+W$)؜L~ a-xVb}#XQH~\_]f!tZ.O!!Ff~(d^Zl"kUަ2m>yyS.u_K25&DJMI{meSAq'[e󟺢6aȔ|cEQxؙSsFBd1VWлqkRxādk"HpI ufSO?](;3Q➾P vi`WD1.$"ؒ@1;]}>SWWؽҀs۳A2uw",#_{+Rցe87[k*5 ٯF鵇)e#FfK-fBnhlXWVpDI"FE'u00?jY C׎[lRkpl ١)tklUikH>*Ir ˝%fI Û!rPϯwAbxJ 5x_xdf\gVQTv8t0 Ba_܏YcNyKK+^g1t)BIa94'JK )c(/O!1A [o-}ƇAףbT-}8~UO&[" R3]=(zcC8*[p4N]U\1+1}vv5cT&zIB%pO{z6-7Ɛ P7^i 0R2*]8\.V?`Suh+ 5AÄqd߱dyT&֚+?CB9}~`%cw.k{3JNvo΁`{m\bDnafؤ *&o纇l`UY}tZӂ֪@]F{3KvH >cUvRfoH냐w `b)mq0oxۂZSjuq~?b{5j^XV6ʒ-𩥰\שzOL$n7;;5>7t$Ka)s&wg/<'jqQ(up8t/eʞY 6Q&Ӂ/xpn|cPO=?U ]m~ ӪstB@O8FK&<;XTs26i^TwBZynЁaӰ3zKuAsF+拴'. \" A65 $ZXhclnX#[릺 ␹f `HJuQcxFBa}Jid?ȎH_M+|;,F2)۞OAWG,B ́&AٞHB@={@Г asSaK@cax b{0-*FKڋUo5sfOhB$IeJ16L ]rRsG," 7@YC)_1drshm5D^CْqY;f5`E i k[(wZ43N@9`l}4QNA(Ư,nn KF:,d~8H֑do h ep.ߑ\>@W^䷑KC^|<ꜸIsE0"\;}@!=у6E/0{> ˯$V#.vmb -l~ Se.\;4uۜB~@,5rݡe ?N-]OBky<{kQ Kf]!#L=ơm͵ N$vVgEjo5 EIkyȉB#(V4稩mҖW}d(%d=s+mq^OΡ Ҧq:iCy(mN9o (%dq]8BfÚk0Zus4 HIm H &T`)=Ĺr[jʛ]4T ۂ/^a%L}yDy+<[%v,P@"yC;b1T2ff`%*-v'EfiJnK9q;0 `@a $O~ޮE-1[LderŇh:aS@Ɖo)I' `+.uP." >ϣ -mTpػ/9a>--|Say_mxNMpu4Ж͸BP9ۍn) PdoJ1הݨ, هū 9 GQ , 1VWx)>S ol[XZqh}H?Fw^+Cs}/2Xz)SimѨ^)/Z;T=+ fW|"7"th'K8y-N. :gDRkO]#ދų#p|H-uDDY+ ,C[H9ّw!v|(.E/yzxYeV4|XLOd@._BG32]8˙8HE7#dE%Á#}|cA<ֳE23c];eu~XS%a{&Y]Io0?$%E{9ONy HM[]= l1}7j C\L$蚌OwyIe67`sMRnz)Bޘfhz>k4K-.qA`=os,^׺vUzg C BYN'r. 4@k >1wqA`mi6y^[*5RaD\I1b:J_Ĝ!wA۽Tx6) u˱GM[O:X`G?l+2ZDN~4;*ȕʴEG1@ ,F6)%/US=#8ϐUIH//!E\Z /˔+I y/g:MfEF%+$(;2l$_O'Mv>dg߷sF&cm3C o2Yl*ey9LhSZ.N61^5*"Rh`e%MXm9DHp c_yLȥS>e9?)!3~ΟB?ݔ-3r1GhO-܆l\AC,%pat(m1O /8 ZV$଀?&XDͮlHk" R,^ KcH :4LbkzA||9^'n6pw1bbRW})ƿ,عsl0Jbb^jRQA共sYU/f'?67(:GJW Oo ~֝e泽\czNOfʙEV|Ꮌ{Zgcx4RE 䴁5N:vϮ:GZpSJOJgMU7Pf65kЪyȺ=ʭ,H-Լc=#jauӱQH~ɩ˹Ƿ2w,-Ӡ}!PNx%g6JT0;G=aZ)Q`V}zľj3}MctlU3lB,OçlH̀PD4P}8kI<{nΞYp5Bʍy' Vu8Zzv"mY;nFSxRK ;{/8q9k[y_ƜvC8ȥkQzhBuv}kdRIM4ꭘ_9?(GI>k b̖J6Fh#L io(f\ +_D4FBfLqSۤ3,guu[wۧG}H2]p-j>Y[];8#Gr afW#pb( *J'GKůR :ndTG녥oM]cwgT* w%yƊ\,GGB) <^]0% s|)?]`zb"lFk2sD*Zʄ>>-5D*~ydC.Ó]~ZnKk bJ94:]m^5 TS$;ys|O?Ӷ:2~`G9 ^X5mUj$ ⲆgPD0DKfkNV𵘯W 5f$P1{/Bw`U&0nF,1K>I6^`Nݚ6FLj`K9msT /7A"J S?䝓'%,cR68P&8Խ)}MEe24y %;o\Jdْ˦ɬP A;EeU3+#3wW1rpn9F= L#\Uwdm VSVH=TN}Y OPt]ѠN$LxJQ߾;44ݝRWkDa  bg%'ۣlvQ_Q'rcjE-u*OvaǺ7F|.5診V5XLgvhlmI"MZ9HՀضFsv̆R_< ?Tg Fy"|rKͮ ׭]p)5ShsD .bi,Q-̢mɝI.N\R{YsWčylvF"t ^ۓ2iӌ@SO Jk ޛWmηSl :E2I;{@vUv %&9Pu7Ƀ4-)+Rm.\#nIKU_'S!Gq~7рY<ӠWy m0WNz V~̵%s(d-t#u0 ."N?S^2.'bR y-vB> aÍ~|L4_,7Ws@yl BP ֺx&IpSrǓ ,+$[y./Ƀ?&BOZC)-۩R^X:hrgf+of!UikЛ?%󼐭Fg> u:4N /x7F"[!;AcO[|(68Qgd;3EeݛS] 2='ǘ>b˄qC~pos6lIH(y&ͷ/j*;uɀe8ul^iL]m9f&w6Qyg|z1߽D|&+_& nZ|@5ʌ\xn?mgsh`u ѿ YwۏcR,qLMоlG)M8v֮4]%1W le)YAO0J^ϷE_nli[xv 6Hת]#V2+s d5_\+kv4 c]#nI?X0\A70N֜e*_c&d(|Lz$aa Y:VA+dm|ԉ4v Y?ؕ0\6xᜋamT xX2>Ms:޽q%KAͅ&xa!)4s'ipfF< WoZ0eS f&hM9]#7'9C3u#+`1OsXj7 7^9HCp-&yJZfI˗σUο֮JcPlL;9)$QPIht8OoHe͕J lYn2Prk髐 {'4샕ҍв_# gǕzuz͖ OG"K r(+!hއ"Gv,ܩ'SoeR06+ "Cs"oG}3ܯ":GtSBd224 \Б*v C]X>!(p(vIPs#^@޽LM5 4ﺜ@Q1|jn iWzA)  /3}%'L -,^JS/8HhTQ39ݎ.|?rz^R*^"ϟ7[sGq [4 L':Og? q E: !Rӣ"! =GL Ma2hZZ6 0?=}n7gh(y>":[pKzPH SZU8D'?!|DD۶)i`q! Tx*3',QjR㫐l9VkUCd'C}کraoH_<zlDs;z]> >+bKΐYCծuE&?WԠUOW F(:F(gV)e#:uZ.> kڝ۫E3J͈6 ںa5J\4Z%o<#D4ux/(9e>i#Z?O秥S 11[KzNyP ݕVɯt[6:=MHN.bGt{  4&u`TeDG-AY/oA9[?@-7n%RظR oߊr yJAxpK}&n~!,:tK I9kSo7Ğ)L7|iW &~˚buj# f01b\Ě`Ϭ3 |цThe1 %v (&t蚫g@˦}R`k%rf`hBYS1o~AIv$ iL^1ن4)L9ň @V/O[ .{k||X[O|Z|֮P5,1Da&rOjo gS<{:b"WWdi"?5o-}rl!%wz2݀WgR˛ 6;gTQ!.Y5ېhI&4ײKaWfg.f+`qGy2K^tj737wJTSwӮ,D]Oeg,UF37YYƅZƑ&&kÙ'r f~Xs֞JrqCOa}Sâ:t7^$~4= EE-6>3D |sF %&q(5sgba+рw G5ȶX;hfD%aZO%JNz[C2c.2^1;3;rHŠE{%bI%Coɛ%skT/EȣҼU3%CsvFc;9Dsu0A/! Q2M<>Cv|4|[zN3w~r,s$G%`yJk,3#Uŵg J^$b6QfpVOnH~ F*L^=W#6K\\6߽,v8_m9 EEpjHn &Cq@˱B~Jr@eT3pϦN1 q2f;9tBzwFKk6;IHY14)f^ \ڽ rvUob1KU;9P&L 2 I42 s8`{G7@h%0O#IҦn2RwN0~dAg ҩ3>gNW%i/ :pNSԀ LfD^=F"Vx]Ͽk=╎1;OCFe&EZ1$0gDQ> 8e E>4˴~deۊ5 Rm$Kb=EؚPX7q/R܆E9{hbc`Y.:"̨܆ceütIA;cCah[.1w$A8fd`fjϗXec"SBq.f?2Ӥrd1k.Y\i')Cmm6~ۦ)OCЎ~/af~q/=)FLHnOVXP".zlN*Dǹ$FGRACV'>(rɪFKgO| +@կ$wWέMi*Tus|m%&Ȕ1c̙Utx*ڱG.ZNeԞ "<@k0zcy@<p"gR t.H{//vs NJf m![y:³#1Ǭ}WUb t;nwn'GPpIEg]l6U; - Xz6VG'^;ha%cc&A Wr(08`ԍ&j~&@" g,՛5wf9!ǏX*ԑ> +B(b CZ\6< K|_T:'.;Ϡâ_Yg_ J]HFq7{Ca^;~vԁW|yΖ:.:?"k \eo LL"G=ajsR%7Ay7r@ H=q 4Ar֘h[x&׈^LIIZmH A^uM32n+Oc sA.-h\&}/'cۃ-`Ct~]*╳{|A E/Rhfk:hZ9S 7q~Z?BHN^o̯for#uJ[6kCT;Wj!űRe\KvsN \ ,D3bɽji9D]n9riu{-N@mQ1nqLKڿ:k[k9R¤soԗO |~$XBj[%fgܽ?KsCz+&DqbD O(/)y{yi W B;_:Q߷ k^[puᴦX佂[j|kfrR,8j~{F$KD:n .-NŜWNSnkM+D=mpax_8$BHUNVeqD %p8}V*D~WWlCᾂ^; ao0zJӪ [?s'N>Mu)M. nycۂ*=F몳[JbprɫPBokE.,qsz@|ە꒿ޘu҅j$U3\16{'K٠{@|ygJSR |LIVk_`f&n~559M#n KVwvƟ(n]Z<ɯVC7ӿ:YGgа/ti- M&jL~z^~X}vLJv\CKe&8zhY:ܳTS-HɉȅLΘ_.w'j?to fCK6_âc[KtNː[D 0"h)H);/R~ŅmҧE ί/^H_|h&sSrXٷ溬 2kk'[|QAlF,̂G'wm4\'/_Y\QIEo~w˪'I&S67jz?d^[fUB Vn. 7RyI@e)#,&t34usS? G3eN\~٪_hL0ýV9w 7y9VPbZ}Yh|V0-.ΊC6G.<?eAqmytA, D.M^xn>Ⲕ&Jv+Y壓,Uq!B/ރXD|ȃ1NctFl{2n=HPC%IGQr<@L0T!5}w_rҳ^Cj+XVՐ#CE 2#oz|(E2g;A献cA;뙇fXag|F0Pci/23vf "aj7T?_HpK`H;1u)C(={l)/OO?Dznj4WGf;v])Rm3υun V H[#r]=39FBW@~B XRW\Կ&BT,ŗXJX9VZxOii罇gaR)_ X^re-SZx F4D˒B5tQƢ㎓Fl!;M0 `N %䒧D\DdzwIP@NXWhVG;.+NL)32R joh9 _gy4tsH['RmsL'LuX#tguiwuʳ 33 *j bѢ.Z'6TB59FPh^ ` WS!ϸ_neLl݈ja\CgXTTW5d>TWY!\Xӑi 9)`7~X c/-{%mS=`?|8R"bF2c$4h.n+SM"^WO(pxBBYNRyx<1{M=Laiyvx  ?d t&KZڌ7{ͩA1P5\]+Ÿw攕-n6)big;;N%84A}`+(7 ᢶ+Iͥs`6юY[H46@OjFa:Tvtf[33ū>o$!*-5HdQ_]7RzP,(/ѪIrxND*!Ŵ!h/=N4}恟| #ˣCP)砒/-Wpad/+r;֎6Q udGGgxl<nKFa%CϹqz6 '=.iW=: KOfVO@,M^f"ͮ=AKEgۨ'c2ݰ_nQ߇_{bg*ɲ%KV9"\TF)#8eP_$*&DbCZX,ezqf 쌀. HQoXqjm&q0?%c9µc@L'&ExJG _g]dۻ5S;Y\`KLPM"8o;KNP0\hՈQN 受 =ܨaMQ 2A'BazOfNf rv{UPKN4{mIp$"Q)LS:fnc;_W#84cu,[U (b֎E$! :$ځ9?X '#GViƏ{J=(/1oDO'd EhvxPhlDj^S$  ȧ;Ogt _φto$1? (qhP,\QMvxR0Z@+wϫs&Z]$v:J0t:60B` 813 wbE1T)R %,kP;ʡ+\KPU4HЈ7s"^7bicKq2#ciָH 'kK!LR>pm+}f Km$(>}U`W!(i&+0LB(5i8qdO_,nd, m:WP h.݉DM^άSxۊIo1'?gHFBzFmFe= )!ts`jWn?2y&J?\s{٧-K .ß <Kb!?hO5 T7-GusXxD~StYm&c7cB?"8Cʞ}bv]kʓbMh՘ә)0KnVI@W:,7P+Ez5Ն> 5Ww.iϥ-ͳDFM +.*36u U!) MD\#'otlb٠ѷPH̊fX#/D/dK"IJZ1商l?Ƈ"B'VM!| )eR% U'⍹2-r+`uoor)etLf2Ǝ>p-{&Pyn $8U5bVѓLILyҙ A'\yA/zo@};HMH,k=FVPc&\gl!lc"+lYlV0sN&_|qBx5W.aUس[?.V!h7FoUiSB eo̊gEAj/m e]L=[8Z??rZx*s8MVlxc\2,Ud||x)s&H w^[ް@U3BE“RZ}teQpb}MY,<zwgje96E~_FQ6Ĭߨ]g IV kݞhsY/:V!L񆠏k(jj4r5? T+5DUM'GćaqjY=cwgD$L`ͺ-$*oRp/]i}=Bdhq~feEmVC.%冽 ap_x֤79f)X{^H"ZQ{39P忛uvDVQJJpɰ;MU>nmQU\/|D_i  /NތI$S7#]pb±r`I@kNm6ONtK8MVž-bfFQq|Ye/W0-#;8gf';rBtq'^r&Pb+s7eoYM%\ELnƲ pRO*}O$^@;|iя`RVTHd 2wӕP]xPkHtUQ+Gzn?' }2 #F t݉UQc:<aCo5`#(I}`:W4USL<0v_"{_S`07m ɐm9BIm}* 2k ׄ/aO|%ZrیLq߮kt9,ɜWQ-~1u K9CuDU󲯊ؕ*U~d07,aǏ ү=ޚC sFڤf4|b(jVNsآgm9K݈N*+bAxĎCt\Df*{@-.YqNmdJXm Ѷ3as*wYp$ϬAjnhNz7k-"sAe%?sr1]l--VReeJg&c.5R kk+WbL 9Ι*}CfI<3}IUɛAlm$3V/Qv#fq|tH6Gww yLX˛q7XP88-OKGLΚFw Î2x?S]`6(4H(O}kf<;QSmeP哤d&*L¼VIs㳢x$} մ7&ɢ~ \Rي\^5"HDkˤRھ]1oHw,ܙ,dwٓusJ+Gչ*2#'0h$g4 ?Cgz* rZhY*mfkKjbQ7UC?(!;7+q">C" ܞ {кuro{GVGQDDGZ~؜N Y(EE8gynX.TjpsEWۨh%H)}3rn Y+;k6$fqpR!%+jxOnꡥ[R Z >,coDhU@]FTqrc3nFP٤55hMwQG6|02IT>ibC[#b8;e`-4Z`Zz?ȕO>RŒR^:XeBC>EU|֏.>/KyG#v4d$q׹Ki(\ 5 *4w84 >-G9Ӷ&8n2R\B5%ϱSQQ'a'j}Εi ~wdZ:7+ Uk J 8 BIו\51-=cOmԆ/jۮfȎs-"ʞe&JԪ캭sztr)!ii sp%cjAQ>r"x:x~ѳw+sMMj1yv3eD9 \奦ʹJd{?Fkռ1Fj7HR<ՙ3,m/o| ծ#y  UϏ#rL#噇M̜fz Ѱ5Ph+x|{aAF {q{QQBB 1vdJҳIP`\]dџW X'448hgahk##B6QL:t :/1Otɍm0ck;Jӌ.n^sdVv2@,DxuoHM,- 1ѩ9:'΋[Թ}f^˨  %vŮ.xX#mxb|t GhTGȼ8qSxZ0lة= xU'D617 >W7xYGFUc(Pb.:v8`PG 4\Γd :ܓ.~gQ`mo=ǔ5.o0x)Ⱦ@'lH\t]hM)h Fl>πo,]GX CO<*P2X%D3J؍_tR9\zkVlW-S_4*6NvU7F Ųǣ"ֳF5YKwF#Z~&魇dn.ߧ. q=Q"ny 74=`4mdQa}5qg0`&4F:,~IWxDBm"FU#g<uɂiDԼtw _O/z+iL6Tt2@N0:nȺcORMML_$f`B5R!S8-7y!@u1`>0۱E2k {BGsjR> @hA\[bbe"D*ؐiY7fj%_VG "')_ikRn—q=j $og(jtVQqA59ӵ,{mYDqm.Pq و٢= waƽ.UAt6S͈dfdTprC[3)5n %8]3*9\=4KJ'Lބc6鬿i ru5NɄ8QO->VuozW>TvȰ2@PGE^ OEf rxi%^U'r*ew@1phdg ,{u`&,zO&+.%C:Y]iUJj֟wygcF,}0 o0q:L>n$x.nCnĘp|KU^"|=5,^uy  EyX;ƋڟzqcY|IphcM(B>dPB:bW9Ѐ c}w PNG9wD\R?U_&|K[|n/p `vc~MY|68Cę/2] ƒQ6@:w6{o;pd\XJ Hyv!jzz8 8Դ@b 3ZEV4wJ7K ~[ AT?k0h,|ZW?Do-kGUZ"DF lAd(qhP3Kh)Xͬe&1(YBr IMDD:vFH:,GfhL;H8۠]&I/uWU#4k$ R_u^3@?Oq$ PV'w_W73j@sS.@nVoZ>ürz7QH,0н}$jȳ5VH?#xt|Pe#G~*rMm`1$Kw}!7dzLzimxQys -d:Uhs'Ms5ȶkE0M_B^gw^ Ta/)IL쇻ڝo5W64ӈS~eQ _lSs`tE[l˼9hèz}Jc{zV|Upxٿ˨>ltlZUކ<5J)xJX$@`H(Lj thXf|8PML`ZSOY`3Q9{1*M e%uAtfꂕemG#8D^bc_:ީ'M78oSC.ؑ&gRa[ Gcd:l}|'zf67&h:G#[%XH!.\#`baHMt桿G]YBKDf>tl'X{,VV0'X;as̶k@ cS&6ZWe>H)}n5 M=E<n^0, $Sܦv17V&m1skTG/ߥZ#Ve h2N j1ȍf \~^%jR,(Zctsd8AUƁWAT-r]ݞ3vUm;TGϢpNli$$Zn6Ub,޵70yL!] 쵄l6bnh4 _4K%ɡU~RԴm4" r NܜݣQ# nB0 : ̗ZC}1ϼ>ڹ+ߊ jQvV"m$yɛqŁv $o6z3=;xRG4x׸"~'>#Ѥ{++e2~їGx},L="],c܀'y  N,v=^tݖLN+< 7$h5՜_10 3W?`#(m$< XtѡmŜdz "z԰*_AO!?RfOe<># %m&Of/‡QdvT$ƟBɠ_8Ç`{C6brWM47s-%7 580J@x:wcZC݉GJ^ϝc/Apl&ix>;~pwkd?-Mk_q男hbotFCk 5 D{hC Y0NX(oۄܥ1)z.$2,2ך4/)k eL_ѧT#S24[)aM&tá@0? 9=ƒ2G s8f{ 6QIJRx7t c5}:ܚF$y6BBY`WbQ9zcWl#h 4#=M'pW%hWO5 U<!*0p ~moP(2Su%v0ș٧ݓbj SJ gH@5$B- ZmH|e\39Y{ 8Kc(1;d8mk_$'9{σCご'*+3ypo(X"c22hGSfWei8Pg"Nt]((.G}L>Fi~($[.`T=(TgR6K",Qݓ༆S)ǐ"^~xɢ{6͍wjWo֜f /CGѾ{ (/׍ 7$>Y{/1z\|;m-Iz"2(gA}$x'l"~^^dTpȀ1mR6@T/$KVylߡ@鋂H;c%|w5ctxdP sHaZg}j@Gv5" %<\%Jj88}DȃXڕDB qGlS:<|4|[35/lB&-fRm hۡ[D1):3yQˋ1rl};DO!$+󂁬MZXs7 >Iurl!B[gͣ?Ց_-C]G3mEl5cw؍/d JOzuBZYB<0KdqZG"q1Rd 7B^ۙ~ڱLI'LLeV:SPSک:HWcmaKF`vB]өrA'z+;CVJT1:U\C{:``.dGWz΀S3ww1[2~#}"9KK@u U ϾȺz xnvs!s#  u9DB` ؞+UlDQW}{g`K(E\e\Hp5 *wT"?tS `CB| VK&xg֋h)ԍ{Rx1mPFfV嗢2P"BnzOBQQbr&ӹQTUc} 9Ёd=CAƏ| 賴tᗊ&lc)/ڡߥvpGKU`xU!HWW{i-d܉]9&V\ӠCҝ\F.ͧbßba.},(U dlZI{!4iH{XnOQO:'N bQ9@ h:zq?zґڤOhdB1-ȗ+FK٧$.=Oķl.{)Tƅ@2ο>;Jg`7VPl K$<̌&*`pm87ҙspI>O6TsD9QpzMP8 f&@XJ{K5d 'XJ?6)S?=-{qo*vEq~s:F`Db`j_FE1T3\krK9rqS @жP #-}1] _j%0N鍦nn2}^ƢJB>s"\\1bT݉ fﭖCz >,l@AYI(9{x5|b^QUܐ8{ R>0DPu"_,7ez>UT>:= sXLe>00X*ϒVr# %PR\Χx"R/c`bCSI !rlS&won ȬSANkGu|r!ѫC{UD.B(fbm3--pKˬlO3?`IV}z L[;)ܘ5ʙŇ'0N\gNGٸGx=Vw>|s| TIpS0뮫edRtkL1p ݝkvq +>U_F6fx7%S6TAa&䤢"%靎ڃZ#W#O4*6d} m(j-<6`@RX{L$Zʋm βUCY/4aDdn}BwN73پ(z.4qF5vmMB6[@6fF-XY$nAOx a=t7+Hi,pJ^(aRT_El-fkՀop^Eu\IVtКUhȘW<^5xE ]imn&tsDb@.LYg~!1:MWVN+ g(?5e:)3 Ƶ7s^ƓJZ:>Ir ^T$3F]w΃~1dϳ_ = lGPx AV]0EMsbɦWh*+c)^3|0sqN+i]]/86K+L7_?p#Gc5dif+*fپn($] vs<3}Twqfޕ^uZIUe`  C>nLkRsHJdlor4( L8EL-6,7PA+E. ,iIz8htӮ[m^bDqU?=evkܲqsX53;bW7xrT<"֯o%H_۶{tGΟzqsT`S>_ dW(>\LC/&~DYAZ)l{ӭ%Q2Oq7"㯣c#Qu U|L~pXtnX,/FXQ:cԅ=c350N < 43-v@(MżL0WN1b*0WY}{U]+$ ;b+د9N̼56IBv@׳ Yw1w!,Ը₈b C`Q|\6@WqMyiYLޗ1P8Ψ0F}=Uءv~F<.[bpQI+K ٥K͝p,Кr3ZK΢AK8jE űh=.B pjn)2lP!8Os(sŏ9O]'~:Nslj3~Tb'D!Dܙ!i7{ `4$$J\TحnVUZkC!y1V!}&F;u0l_R0#\<[\:H&kOcJPE!3.} Ƿ3P`Ꭷ߸IB*Zuv+y.zs xVCN ßz'# wП/ x ˥#u_`E%p:aY-@N‹3͎=cQ3  +aR0<ęS`,)=oZ/u>x>Q?^l4hyk6 ln*7qGS*]TT:/d?VnG`dW@ld2MBҭU |z.0d[E܈}~viڃlECj66M܆Jt۵D'l06~by.יn1'tFRoKԇYſ|Hۺ I|c1Dՙo|(s) wƔXTW'\oa'ӽ[ x$$n SmwXe$&8{G+D|k OGmtkX gt)^dBTyfmf3J Qia#U~~UZ&V_ kg5\!ŕ.;ftM(,¸>}Jx:mg_uVnD.y4/,\^yEQElSN R,C# :hSwi Qs'+nMbyK)c\HGV@v Fq5g@l3rcq)6oaȪe<cctuvKt¼*.I* J{W e?hJ1' /"uTy{Xl͒Wz-Q*IhB[p J]QضBɑZe$*(u}UTwƕ:']ju#Wǜ3'2{gw:a+6#c3q9 tLRa啷^lPL)GczKSŹ |a6EAC.c9ho%7.icL#@+*S=v +r)}=QkB#UOs{+KVe`h?v|5#/sow{͡(fn]F@erm P$]MzЁq/_zfY$~\*TQ;NfWJJ4;z]Z2#8+N;< &ooι9ڔL^-$]G뺍Ƨƈo,lov` u'kQtt{ MH_%4&s<0@h^eG:K}7qB eɲO8u ~%c5V^@{>+9v)Wkf,tcd)¥%b'vH|h0 n̞% !MidtfOjy5IZPR`Rt3л&_Β(*i#}ǜd.c> &Yh2EIOՃ c-K w~jWo))݌R잩ߡee%ɹ]B@]M8.g3Vz&tf>f|Ц"%2iXPl09@+0?_$}( /q8uɷ =|팺d@AL\tLI lنE1ae\no'k?wd00=>'1jf! 3lD&*dF?((q?s ~\ܸƵ,*a3Au \QZ]aoh$-oYcw4(]+!~`xI&ciLz%\`ÌD}aB~Ϥ|B.GkͭliyE@M4 ë$s}Q1q~Xh|N vHP8)VV`⶞CF`md IDgl\=%]~>G8A?6泜#VIy:l d2 Dbi=[CÂ$+qVyNL7:|"yܵdٟvXTOIIRqU1! ]fKy3rT(7YhXk8]v<a?THIK5K5Hsq-Pub)QE~_У]%7Qec2O-`<ѧ/?Lss٠ذ Ģk,01:_éJ|6?vd4=v4ʩd^c[&YY6*pZK#yykDt`9"hF]htt,FxK {e)I.P (vR vMmIf4+ fO'nJKP 鍣)vxR.䵏z4<'Zi W :$5߀,G<10Nq!$MՊoAF#i mv:ozj *]Q '_A#Ty"EOuϏ`Ğ[ |؊+uh;w&h(1S#C1Uri0pX?l2;rtW4vzޖ+j3 `u-ooRIT %%6GH5{rp';AYӒkl,Te:ūeq y-X.Y2-~Dtq~5g_<ϕ|U @ en)w/0l4VҥK-Vxx\ m^s+@E#KK9&*x1p$ azd,i=,1J+avt*a7w|#)9-J!bW{/˺`1#܆1f>i9ۻ/Xf1fДvtL+}6unvEc9m)36ZH]$nLf;hg, "?BSXFQVBuOQڦ;'~ȓV慒c!GJ.|lяQ{"TZٌʦB$҈:Q$*أ(N{dD$ YQg-aR.ق [~evhʙWF1y"Y{P#)>~$ƎTt !knYYͫl%jGIUZ븴H EZx |ΎXGT@d;"%Լa.V] Zy]<Q/IS 7 '1@G> fZ2&(SG mK9z)ƭ=lL[ O2@m*/qE~{wcK0C'+8`rYw07kh%q=LHU{)냨SIVu;\Cd0_?LI>qX)|ssp/*l4ED8)za2$3ĠM:Ai=ET~/bրp/Q'RjO*@#Z,Ƌb{L`xEf:#A*)%?)q=.DƐٜ1F<[syd{\eЌW?V0 Ol,cZѢVCzb|/$Ccɥi= Ζh!%Rf76{@9P ӍJd`3>p78m'kT꣔qS36#T#Фⱛ3\35rp/TDl 6^[#z4v)ܒ٨ O͌bit-YXQ#7jZ*&/gV9`ʍl>dyuͪT]ߵOٕ=$2I*7P6uGoH =lD!\t9lȕur@F/5TM-y+7j̤=Q8gˌq-ba?G+Xp@/#qIƶvϲ*.Hh EIFQs0 $]WP&ռ"fߟ̬-ωʹ %cH1Pc߅G3MamqQ=xڪ )RL{Q4#v/#&Ŭ/$#G`,d]30:b4p޹3Ne$_X@K~۶P8IHM(\]&i "VJ lg~ynF)_00P;%x_&+-h՟8wq0 ,Jr Q_mm^kDL<~[&ͅʦhfQAZ?3F78Sv3HoАKi#b5F.&B8&x ^w#}>Wx3r%T(W cNZ`Kic>`W<6Fjgvxt#X/nlObwp.pga<_UH#%MӗX2$ < J/>*VNԬIarɿp|BNp9)pGh啲pff2NV1\M\H ca 3eǿe#oXZK-+n杫FfuhѷX6p.oWPl,.+hFtGx"=2GSD]2t ](T_΋<8/[-U"[?Z,Zh5+υ^Doq2NˣwMKiXsL=<2#NC:8eiĶ7('@Lzb1sF+5N~u*h D=Hc>mD&ΧvɲKSrN=ïkꦒe8!q}(*rnx{?'9fcX 6Ds4}$a)9G(@(EJTɦΖZvw@PxeRgӈ^q'ibE%h8侣hXfHF*-k#lڴ?մUId],IҘzmbi78)YEV1H3^m.eB?Qٝ+)h$,6>j)fwWE _}Kpvh{>  A37AuH YE:OȳA8|65겜QG@_,#MZIp&UP%g$nzq!cvz :f'ǤjLWRh0xW w:(_]i9N=i4T395Ai7Nٓi NNgl;2xL4%IehHs -K}d!Ͼ;̸?^+,_JSl ! > BYP;Ax(W Úh3i3ǾŃ.w,25acYqvM8-n쇀o~$޳Kvz(u1p7m:q7cC1%28h#J;1S (K!"6{^* >|-cIO"% oZ}*_j 2ȵO?RH'9S)SIP!$jœIŀD.v݂Wqu.g|&rʞ''&_r)3J(j,ƍ#&m۱=ߥaߘ]ċ\UcX><"&UQb6,6"L⸦!8T `-I?^h Wݏ_b^'0Ҹ˟=%33?@ڬyhzmefift묣yZ;=F+!>+6xۈ.?q$r6@H6.*=_ҌȟDdp=5DEʧ`Q>;jԁjv{VW>}vfL@χB/%L~}X?+0q-s*$ӵ‚!oK ?c/2r%[~LDD_+"3/4b ۬%`^Q # 4pAzrBOeoݐie o}`/߸BļkqOah'II=;&9V~toOR=g '|ΛpW>gw qkSHY3_>FT{*0vBFؼ &+>YqH:+n-^w?G՟T?k]螽|.[2hDS<ϹOC&Wfk͖;Kh#WME'{G;bzoqUA}{Gs?ҷзbW@=ᶇ^fHT~E'eQ 7:YD^^$\rEޥF4u'8;Z%GZO*&DTñw*'`*LV2 {B`F,s&"Vw;vI1q)uD706P`XjH2cױҜt 0_D kqEo?NjБŹn&Udөa3- >Yά6IX:~gה C*xVrRj0#se<_/EETYw7`tԗ]n\7+=VfADW ,%񞉐aN1E$S?C\svܸ,. 5CIP$YD>]/ 1WN Bq#{P-6%|ɔ),R`C61N@%d{SIGl8`f-N~&e904";g_oSP?''}-1fh0b,fVAJ2%Ky{Q%` OKHxntȗxSkm0rq@YWeǝyw4+%la9Kfey~m=&D_@~z1!D 6fH 4@J7>>Dfo|6Aʯ"`^!Lr) tgt eVƺ@tDGLx-X\B#o TN"/9I5N98^\3_ 73qL̍S y1Ior%<qn&b;Ki20ZFpRi(+k hėZ'v…A=ݕal"ܼTRr9NC~^ICq8obzh  i'(xXs,ʎ$嶝2-uȮH6ܑ"UB ̘*u'N*/y5 }N-tgR7uu ЋmՌ'ݸ2j(>J ?{Ϻd/CzsGTi2*_g:a;n TCm NpSc7{PqL :U}+dS!7-8Dtw64=! 6'kknG@j]m@zDdT]+xHԾv%JP&OU\](+Tad:&}%K.b%uhn`֓,+i|P@g{C!N=_xR:II*YI}IOJVk ybadF4TmЩn-e?ff)ę,VIHJ/]uK#G)vSK듛!:# oO@XDf7aMZ Xgc&Laֽv+BOD _Tج d p٭U0zLR$#'>: l?>2簆dձrBZ: gcÎNcy"w;t Jh4nX"{ ܚB=:,|gVP]@8˻#NDƕK^ڱL(z[Ì{š;& r1O.9|{ /+yyO9BuAw<|bed֓/Dqiq;b| 0v_ls{/HTAcLRc1կެYnrX2sؽ{%I`b9NϧyWx0ZTO was8.m.9ȱyM1K\ʨx )^7R E|#Oi7&;yu0 u^s Sf*dꩰOVgZTPH2b*z-5h\6gxQ06&:d1ʵDYN)#n)ݞM W 밎v! %֌j+x0APk#tʋ:WmXŔA~opLXKVC\{& }cp̟߻яT{%b_K0OkYMC:e [2o,iAzda5b6Cϳ'}-G)*Rt9 BAn*P& x$m,x>+.jPk=7K$~ahuQ` $$hmEieH1aMBߡmۨoKRδ;a,]/ؔiP!ZPEJʹě2R%\-j/̎ #h?F>UAhϔKiQ#{Z>֎ zGu :[yf D9;Z Mvo?@Te]疖 ()_/Su?i;fW]Tj:U`)bu.^9!L`~"N.C3MѤ5o3,<[wKsF^eE֚ws&tN($!!L~qe_FDZw5.; 3[K|i>ͫ7%2'rԲ `0 -i Q]ZM˔|MS0TѐBa0')e_R#ӀՍOKJٗ yce 8s 8l6[Es^w|M U#j4Rقj~|> |l(ʷVW,y髎GZM/ q|xXr#vzAm<~#Ůر^4nuEuN {),j <&||S}šύE+l.?)< Ha^0/l(k&O_߯* U'_DKd>eBhK;I]͗,3DPCt¢Bd5Xګ㪾e"7f26W%@pBb@lX Cڙa3+,K#awՑ-0̻٘2hy>r.YE;]q }>2Z?m^P5ppONO:؃ܴcb'm:N+P핮TE[}f)-L[8{&rg)z.9MtmHAj7:bt!&m~R7h3lU f WX ~9< u qhv<5.Kq j sW,[.FfN^bPG`1SSS 6CDGj'E&o{}*EO:'W#I`*9kClKX@1,iO5vw[JY)#i4LeE#ܞ9oh9!"eʻgs0B:^;~gw(e;u#Ԏ@ 9Gh{.S/T 9#Pբj>(B9 +k1R19-9^ǘ]:#_fE`55uDfT4s[[ $;4H^՜W,<3󜚜F"@剣6a}^ 7 %VG{nX|*℮)+k hfгFNO*7bVE,b/QӴ^I(ug pom@P_zw F^{[iSh4Z睵sɧm9Z#n׺֩_VSs#ش}n/{:e{7zCCC'$ )r̀ ]0y@QQ/+7s:Vݤ0D!JE/ɫXldm %,Z.X۠NfV3W^ɕ:ZyS~hλ\d؛'y^k"X{kYPc; LN\u'`(ǶEi$t: .Rk1TS;!FANJfQW5҈6 |T fPTls@@zH+نLyrtʩ_nP^rۻ˯:XG MIbÍ[xrr37Ӝ\^Ev6$l @Ni'w" l5M^eObe]W|aYTߘ8뉌Qjq 6+2k&2*'W0aj&w.$DCL8q_cjPC! D4S8=^.]_M{NewUY.˰TA4@_̍E(&x~8z齝yޙW8g{MVM @u:Os0R]i⨧.55>19(&FTm %@<qt-x"C>;b`K~-SYq1o<|IUzݥH}'=^bKJDrydQ߮QǗ/œA0LK^Ll=f彐dnDs^Hd&pR[\VsP̰ =/vk,_?c6z_Q( ՃfKcRk8F|Wjx橋46'6]]n%+qQbu Ѣ qʐOڝyR[|5i;o@+[ml0)SmiEMZU;M{ =n9oXC / d} iK ,#!_N$Vkם3NuK,͸QEJħ 6Qx:eU0aü,`9%zPY:3t]d6.8o/em*OWwލz?9-$b!Hk @FT+8HRJ,u%SoqH0bJΊ^;梔sT$;'ff<"=FalIS`+Iҥ<"07gCk+ Ec &m*mchh[lQLuDdB*2QWB{R?.ˠ9B+ 2VGը5)IrKnRD&R~Y1_s0U4i [$qU[fKMF@J<]MҽTaoxO睿b|npg4/;L!ɢsj\O<5rGh]hxf1S~}D"M8:C`䤢J #XpVScNgEaSy8hp'ѭePۀiUbI&mͩ@9 5,NP5',S#nBX7hg !`I ?p3/::  [m%DOvxV~ӟ ܾLɰ8+_[ \(Z,n Pr f{n^T@-%i E9K9}A/&gOיU;`vr%8hY~CaLt񳞾-M]ekS8AZ3Xy͋ ܣge} s@za(."Ӯ NIS|=Ioٱ9,ٵ9zYzה]°(mef=K_P<> iKUdo.\A`}F>`0˲D_Z~̸^J ^Ecä~$F(m,6nF.@L*+fF%KGM Ҕp-2 2 VG:>7b}cyNT3[J1|d$٭M]ڠRe}ZvPkhr0\sBcA,Mvv!WnaC0[~i?(JF͙δEcsʗ5tYgRl91*ǻSPmBVtqSeK%)r1>7-1-:R)GPLE9/MLpdօ'" މ^zz kK.?̛šO$kA`IXqɋӕERRRI *i7%¤db0ft=+AHzKvR͐w!w)8e@ze thXsxQòXF罓OAZU,9oI@k'o:d5 Ow Oou5e:SGwp.Y)%yb,ri O `Bt.$ -fCw4<"WcE+6|igUtaQVn>n\so|1Btf#tK b򍷥pT= ME} Zvt!K0ܻ.3N$בjl@0xyXNGZ~=7дM!z/D9ZJË?>p-ӆi)>d4a D!%Ģ'-p|.&x<& ;*A@MC TL$%OU)q mO2k|yMr0 =xp2Zf/h[yFh\ >3&]l~ѝ1-RVIëPnK3!hk=B`GԀב5qh]=`?kB KlW)>Ux˗oC3ytpC)ls!5{)_4ң4=IҐo/t&^J߮CUo~+Qmro `㥻7ԛ"1V@̬'fzWFT+r)dos$-B;c YQX,xK(-q_,ȍo j#ODH `Kk.u_oCzm5Jܽ.-ANm1flh>xɩraԣAݟ"vLJّ.:Ufm5qd ;Ņ!ҐfiJwVq>^WˇZf8UusjǡI'QIe6gV%/heG:.pvn@ؚ\43';ӽY\^*-ӽ XĮB/ɪ2?mr&OZ"[mE>&"``j%RWx4p *|58~RMW:Ꮃ`s'x]5-`’R^02 g5 16qS޳hX~\j;k!Q)_C2\1Zs}|c!Qtg{JX(ɢwJ(Tb)fڦ1 Cls{b7٪(6Ép'9,2oa s~~_}sec-̊ Wz"3ϲO;Jwt-X&R1Sm|Y!k_3YwْM5!<^hbPi064gCs wn-~'Zb3i+S6dN6`: /ee@~ o,^ 5L$B}3z:yJmI`yLk5OMuךSz`L{INPA,$^).t! Lro^w^L]ާI@#4}솧+v:osS#2}[bdJf'i|%-m)bgGrY%A,;Z0 &:] ٳ 3;ab,n Y D]υk\7K|')iZEq`Q $&u;5qb X__g_"avey"V6.h_@Cb0qBr:;?Lʍs52 ֹWh@jZ տ}T J[Tfl쫯 3/Y=ikcw}&tm7Jq!uh GD#hY6{E̍b/<]3'̫ɲ(@zCY"_2FJ3PKuIqFc)N6lńz&ܒᕤZ+&6a..pE1 Z5FunDZ"TpB[Ce2I6e8 #wok]p{m%/W'΀jL#]@!Us2 |*|cG$oT6 B6, Ot#M77Ai 2pk>,ԗŦ㓀ßt8%D3@B[z[i;9 9H]87K͉LXR:tݐ]V<]! qMNrNiTC4+ { u_P{<1NW:xQym[OrRlWX{YNq|99 f>:j吽3W٤y/@qQ ňluI2ڷtLlmɷb{zXrK1@J\4A':64 Z^KI J }5=kqsN_m <"HijyhmY(u4-0]n Pd͋U-SW#Tnljbt)a:dÃjR)B<.=r"<~G`}ρ1$}vH#$iAҜOc"]årj£K;􃺓7JS]kO3l=ʜa;Yk~緪ADL"u*g[2 ձ2pD"^}\G־\䮋qP0EȬWwўbWp<DẔىȵ wDOjX#9՚^~x# UBI z z4ۑ"'jEbSsiYDLģ͢ց ;Vt*0T0ZZmEb2IDkJN\ &㨞.gK(raVARLwb>`zaѹs~dM4]}n{ˑ |II>Y=s?$h&EY%#j\I^-e̻Z?v̼]PpDz[~ AX1† ==qW{0$#'q@%Xsكa>6Aos:x+XŌycu`$I}AhwlP{ V]*c,=]I C}%1(<ZU=p+fQBxa:a#޾nYh6F4bާ2CBkp+="eA,5>v9mu$D*Eeȷ1؞wM0|* [S@J[^ʗKqͫOIW_WS5dEde4p"@ru,-k?ZEVq|T)Èv~$&'a3]ryTY2Z/,? 0`v}' R5%b6/cO4+5+20-1ĒX`b梾mW($s^O~m/|OmT>hD(wcah l`󺙊TQYC2@#|i `x;J ~%K}hMpnη!qKM9h#?fÂ̆yw(a}P[zE UNI9\Y {8CؼbW.Üw4ĺ8ڀlJt-2j[ro^C'{9U݈Sܻ6VE4-u %85O㟸X&B궊A  EЪlaADio)9!cay - :u+VQ{ M? /xA,*>"orı;'%k1"+b+{\8Qm|*BBWa9:l Jەk< 7%̇ b<?(NRO,‹TUu*Zun#29#H5ф1U[b)-NK:Tdigim_wLߛ76D&!Zp2]ʸ(gH;˰~zkKէZ|Ј(?]#5(<*ͺ\sU"+%pRY/?[7J d7uԎo?*%9E^k^cB( |6\SMZ#!( v7\,b'Ϝ#]c1cYAM_$gO6rh6 CP;6,Yū6FIrdg!o6bUqض@<3ݳ#la߹ej~HBqrXGإ58b4}xnIY9#vfK;톁LZf-IoyӚZ:V*vJۥJÂ7gPˏekMfXj 1|Cg@;;8d'5iJԤ6~K~V@ ? &Hh`R`#A̷'fqt{DKopTxy0+USqlopa6@g%BsyMɃTMӹw,Op-v! KIɬ ҋT*H5nuPP#I& []k' P-2*5$SȌruSLQ.b&|}f;_i;,G \, 9P/^\fx;>3*\4yRxYS]'PndOP}*ꫂ0df^tmOo[.CdP|J1L7E;GʓڽezT=ltNX< 0.(`  i Gڈ/JΊⳤlWBLFABQ1<6e||׮IǮvw t^ K#=*r. 9BQ,%*tY}oz?Ë:7 U3w 0\Hؐo k>XTԧG%؟2 ӈ]+8T? 5YYbUWNxio/hZ6(AbyT+`(FoZ[@zĜU,IVl\99eo(Wl솖'ݬuV}ޮ}k ֢>mx~Enխv^42U\Z_ZJDI7^!EE\öT6ؠp/.ЌHhZ[RnFg%te2^AK>l#3pJs-2DYqv(PvfLpg &-8YS_?Oέ%#v(:8JoCI*~Z1q-,e+5$<(ʵ# >c 4OsUx~GXEp$< usF)bG ټegpR!k#L?ŭߢ1p^}EOf-mTmڬg{LjBʻR~/kV|Ll1)E,Vmjր ̐&5.0\1=}xڛ177:ZٔܩX7+)i Pk❃ʚe`y/>='g !r;Ő*d6&jU K# k2PP d5f#Ȋ2oi0[(F.4z0:xAV"4mep@AAYSPQ=ϠCW], O@zWbgROݞ,K $K&#Jd=ۃi?g;FM{fpOvR-̢åsZcęIo۬.G؊4 r ?nvwcI/A)q ztL4KVf Ao- V kXM2&y]2ፋ15 " d?v fh=$3h& ʁ$>ۙySCpujuO׹,߅&ƅN6;1>$QEGl#c>Pu^1p<s |ٽO{{>cz3?ߺ %QknTESW![Sl 8%~x'u oKUPX30mYiNZ2t 6B#uq,\'u5ih:T "I:^ZOLKZR=»/kдzf 'E:k4fcIŒ)"Re8i}R9"1 E q"T6N%u 0I2Tznv kV}[ wSZwW(#h(-I2o@e,0YGJ Ny0iSE!"MtlrєS;_ 2Y9.m$7];n~RwE/iwfPf: =]CU+&Y+D w䓠iQW2s5N'# V~zbͫUP9~UOxkcAI3I}(=ZRN={HiRc਼r+V^ǻ#,5x'0V3,Z*Zo \F*̧*_3L~FfǍA<{X;pl 3vڟFgwpb b}fy^2Z>2u} r A/R;Cy0M*q8x&*()n@(b]yZl3CQA\P#Jx_p|ٗX7B 풤WOo1f8jyŋCcC| lIZP_dnX0):km=Ž0fnh]Ҧw<cDu9c x 3t|8`g 9_'AD)6cS %dFc=5iiɝU#xLuxA~[!u֎ 3* ~, w~o(of9%uDz|Y"䰦cUa0 qcgt?Cm J+c׭`zװ0=}<ش\37bSIz\&yzGˁF"?tZ3G9My߹eHh> "xEDI|d/_jEf+)71%/Fjy^JD1%doTDc% WF b}@~$-A$QecEHB#큚^/|le_`baMƖ0v#u|ylA ~c,yYͭF8yLUd3B(POIᅹlULCᡜ41B:5wqK7ڡ/ce5-ų- v@9!Z}^N%A>MaMH܋ lե775;ㄮ-VՃ0iA»om޴;Ml^W5R$q"֕ZC_;t/[RObN #Q<ҫ3mq ^uo6(R᝘uğkdNX<'%C0fܑI$N UPpwC4i3}酆@M>cZX+h=: <`@dwͅĶsʅ _"G4 ʚ cݬ!F ~ G$+q$o-0d ͣ,e;QFk,aUUwڢakeZ-@[?8itCӵQaG_y+hAFמ/c4Br(.aWË͆'IFa-BB<'P[R.,jVxu(|MZN%ăP"PhQ* k]a+3! `]GvcԦ諤ik䛄6a#s4vBܣ5z5Hy..ϫ|[U}8HԕԬE80&l'By{վZ*f(: h4[ l/ "ȺM>W0; myF61ӆ`CfInD}Y+Q75EΑٖ9Us;&qu ʖɳKY_%qΑz\^U/F~h@q SR6/?w 'вb9@0ۭ%1$DT}2'$Aєl=&R QA}-S={$&aGBO+h%#"m@^'o98N|6kl\c(ՑIR95kpgRlфNNVdR)^sPhc`nWݼ7Ġwl\.%`&*KI#dWluLix©TXv)'q3\Ur cDXڔ|Y$kVL.o6۴Xuֆ*|/#1M%=@g؎BkIc"<}LlU8 P3S/XTD{_Ԏ}uU$J(# sGCn#+w3Zv@gu$JU'l•xx|B1ߦu6p|V)l GSY+kW("òb%6?hcj oy&ctAOIYbHNJ% Ia 3tjpujM)Ϭ4AL#E B%E|CYW)ع ++6z wh&5]jhupKT "i'VO,:nD}Q-HvD\=F\T+Ɉ4W[΢˲8HA8ִfr>b]3_^)Q\x\R3q_\4 _X>rMIe'+LۙK6JmUWH¤cÙ4<]侳xKqd8Q+0FHJ]ͱ?~u Jցemڅd_W[G>cp7˂Ur /"z(u{^d<$nTHX4nܩ?Z1A# ^@=h A-f6#"|g7}7̕?yuv `ᔈ[{6i+\j(\SoCnY/`h>ZC"s>R~uREg-g,{=Me/jq+I4"UEP//Gʡ:ՀkDyFjb{9X;BV?4FP&3̢_X KEXh[8MtA/Ӂsn$_+ ߣ6_ up\Y]wM"2X&RP\!uqoаiT;很 ˯x_Q`}"rOiEٺhOMvݮz;FGUOCq&Ջތ3JuZl3'W@ڽ=IZ@m[&j0>l@` YX ク2*Ǜ; 9lP܊/1'lX2Mb ݏ)ߟՍ)K?BC4q+r.JA#kO*H_vKâG:P5=p+^oF 2}c+H`d5WK=|~SLc Acu ;2}&8LNKy,L7\E^pDqp` cѿb &X-Y7=_%΅/ , !a+ch{gB'i3=>hPpJs3įʼn58J<J՝/$HEqǔst7ᷠrbUAPݶL+B\a[ہ3ԭ/W|ߤxw<]ʙ;cH.\lJi H\GU]QxdH |mS{7H2IفА338D[=(p9pY_]Swib*uSQ84E!ҳ(YeP>z=P$#O}~aSV;> A$̵pq;Zj/XNqf}JK?HI#ղs|hgyĊ&McyuYO>ČGݡp+j#ӯVS`#B1&QGuWOgzl2|$a-ʨeqS7?SL:ɚ[4JØxDey[ԟw%t"do %g|'G;+McrPr>wEpXX TؤДff{*yVAH=8o? 3Gːi;va^#޸3J~gB3JgӪ o|NqK o5tJSL9NeLOCfׂQmxr`NVLq5,RL *ps8֠syl}"S%0|IE'  aO۽| v/ hq( Ͳ3}|+ )2ƅmߚmx0e^D| {.66eZ7]Vę̗jrq#aTeaL "/`4x$#1Dw1/}6"U}Mt7Ͼ{@,<,2g-E٠alF'ueslw4d.w޵T3j6`u @֩|mPݯ9NAqc gE?m0qJ*MǨ7P6y}ĕe80w`P8pǴ2.O%GMv>~0wgɩ+^uH!tsaGGv't"y\u܂:1o(kUtV;3aI*spI#_OH*HT!ņ xxbI1jPh`:4 ̒Ʃбt󓴊v_z0v|.N&n;dsM$Fpc &)F†(T$V>Vn;*Ĭ 5Jy{I!Wp-ߺJH.]ÈK;VJNKOFv"0 8.%)o\< af״Cc4eo/ȹFXB8y_i\B_:t9Kcۄa2J]S:i4z!+a"m{NpRO:Q8:ANӰL9,ܽlL,KsPtЀ}@̉\,rhT LLLz^Y{;If f\a!B^wrVM,;?WY/h[@kha;z-(bcF+?"gRmVƣ?y55ʟ=g ʩџGY[b^"l^[֘ PR_EvSeh(@ٟ! :ƂBhJ~$f. bPg~$\q,m2%U+ddJ;݇@J]&Rˮclu*R6$wYYCa}QxoUY8}\@eU8%bՙۚr/jrkh$=AO6P J4]ϏDFEE ]*wu#Ő9,dyF$u9a*3CFI,Hu8=]2W7GN^A x&;2]F]kS9 M)*N;-)AeHY6璈t8o8NPh3/$6lhr+HGÙ~<'0/t#(ũ݌(Zu,q >x&C>eݥl |CPS7`dsFv1;~ iv^2 ʑ>$E<%y.tI~hfR0 Y,G0ǛtD_V#!^-m|x}j@[iw񫕼KY#e/RƮJOЧu;{M^12df3o14G)bzd`\vebϺVOӝ抹Jn  9@-@GZzrʷY'r]z.f@.wv4ޯnPt2kW:i/}4釅. vsT*@|դm+FBm'?EN&2j}I%T%ĞzUd!1R_KC5+\a]Uu;ip~+KYJ/ʿ 6WY6p3 VJޫeT}=[_&_DF_}bTz9X3P[e 8)^QbȾ>&We"[73Ds~䂐{|J1P3rb)+14.VdK=,<ί/}+Ud GvLlD6 .nių|i$-7~b+Bk)۴\|F>~,A;e=$#9tLԛ ==J)ed: 5.9Y1\jB'2ѳS~wSQC(kU52[ +gr OO70ݏ!"2XqeLj {ǤT^_v[#}s?&ӺSIV{<0Uۺ.2J"Rdg;0U*$`zQ2k^):o' BJ%k-rTlпA);Ҍ z``G2B[&h% 34az) y)8Vom4Xt)[mIc>mr/ϸRT9M5x^}ch49ArbIu*s냈Hq,g}L1*PZq$[ y  ;ava(TJC).1]G-V\=*f_}k6`C\_C@|P٭Yl@1,j'dtUشe¼-Hd|S=7@ Imڦ 3!iiqԪ)4У(.?]l1s}b2F^űgAsy- YɥK .No1e_Z~$ỗQoX*`^8-^uos; ڰ.倔K«$Z9È5NZy@QBV:>,@FVz7mO{:e*}'{r`#|S=;_YJ &TH~]`O6R1~ v3}{}jOy ij\֟E`89KT!<ˁDú3 d ЩhԺ< "h^ ^ @*0hkO 7A5_2p܎8"t$>2}7@2 |nAije.#iиCXN jTͭ`L3D~ϵUh_.DKd$zoy'tl͠::eyf Z5Q,T>0TnTbo^q7ȧݽUK$S?;RܱIøleyɍK1Ī.1k*s'-*.&mVI>w'acLG } .e(1^EȂ-TR2%qEʵ BZT[8C5r{f'u1^Z/Q?aA Mgdڈ:I׷J98)-ieo(t#LAuZb9?epUT.7bMQAi~TǦ2\%Jo\UUPV3V,C8GA4Sgѡ#@_m1+M𷥹x xiGƴl GF~t yrI ':s*H=:tf3\㹱'ļo}3=g 0Tp;FNKN*ݻ@EvZO'Ulfx3ra4C'Wm2LbdNifHၡـA=51Wf"x(QW?87ʙk˱W,F!f0d%ZȠvQ)8s"j=ObEq'ʺ8OLtFs~, 1-1}RµqL;f N>lz {g#P*8/H1LfNB]Bex$'"e9du$rV,S`72 HQ=>7RQ>ҳ1jgC#itڳ"߭AŻi7q*kiz*ß ^YqqirSW%@*pSE:N ?JV[JvGVU?p%6-`V3{ܰk xnӶ&Rw7nҁ&EnOW?-9DJ}PCɥopo{m3!ָad\kf8(H郼6TDݚ+"&T3lWmr t7sHs#2yAӲxFmhEK(o-5oG= m6"mt d+J~[,IjF5FZezg2x 'Gbf-du+&'("p# U؏VWv U]NY͢/$"i4T/*լ7m@/WLn%yfknc Hqf kpi< #F߅6>ؖgp}8"=J$`gY 1.RU@j^ؽ|h&,1cړNI'n!>I(W`s 9ޤu8IR\zo)^;dqsev iFl{ 8 DBE__=:pXj- >O6~&/qj[ m Ka~]yoΞ8`Bij_#-$@SG`,b K $z;(։^nM.t_}\,%_,.鷃N.*<6oTփĞ;EhНʉX@H=8 JoP/S*t7de9HXtŦ* jN.KJ뚶*"JZ>A`䛹y*O14 ç-C|yADcW84(Qf>n62G|B#&s0rwVp q5ݽnH8^YM< (Ӎ I\whm)$_txrqd]v_3^bzc}tH td?T>+lZPC9;c.vOQh"?&9r+}&Z3% 9=~+"lyhsBWs끟:"x/<Z"V>/* ~cᜐ ݕqx3E?3xM!'ٺ65 v\ ȒJW//u̗Qo m^Ɲ'{%E?ǎKÐw|a_=Ω9&:.=ybY5e9m#7~BQA|9N/wЮƇg!,?Kba+1s ?u{dD\#i\a). nu=YN#?3AzG4o4yX%YQg:RmTz' !l{8£;uOygr1<*c{+P5 %fe-WDcV7H; BoQL~4TT)Ybcҽ5:71CYю,u5v5\^͍1'#(O.(̾ƯXܟ1f+% #z&5c=0ܰ$#-[:1NunwA\灈L4T-F5P9g*xhIDaaDsA1㐆nPOTX?:iRXoY >9 TKvۏvŞG'ʠ>K%wJϔlb:Lt\ti:L BjW&۠GijUO4HJ#[^LNe/+:" A[*7>DSuY @¦ ҃4e 0mmXT't6uN VUcLoA)&**0`ӓ8&q7+}D/VC,YIⶖ ݇Tц//*ũ;Y z}X9L-vLv$#4TBY+@N AxrA`MS8"Z {}L?8_bPTRґ%]Zsp[KOK7p;2ry6D"m%'"A}ΤaU;%0Ū_8j5OT#C,o \dNrkԋ?pwSBp Jan^έ …r[1_Sفfqjg3j=R}N/PWs"һ촜껩`zWj㘣CnvI^a6NEt?3f W'9 Et[OɝōY+"Q}P-| mLeqWkD9H\uʵg.T`׺LB6FZpsK v Z',`zy&dFַȴWA%Epܙj&9̽OCX:_[4ߴT&A}B:;DEu隣'!"iOLIb35`^I9k#7l<}v@`~ts V kk o-%MB)VkA l}nXP$$*3w4TQ1H5OB*O[3t~ʌM&mҜx&"#ȯEjht0m^[1\Jxފy)l/8S k?4 n7E$-o=wa;a$K{y%t5̒l{ׄ.=KES'-U]μix1Ĵ-uvLu'2A*o)J.F\fPa23>H3 Λ4uh=iϟEZzD%hcj՜o td^b4%VYMv!SRݓSEAFQۉJMnTM3U۸uC=NsWBWnݤЏ'0!\')eBZUg~Kgu VW&ͫpɀ/-@'k~k-o_M7ڔ~wPt z%E<1ħޠ 2+( .ܥ ?OB Q[Yw =Y405;:[xARwVuJ\ Íq*o}8Qm% b#*CRm\s-gMQZ/3w&A&A0U.)>;#Z)k'F#8"\nLC-1Tt֠@eϧ WW:iWV~y$x'N"lHB;`@əW,'A!#ž抅i`m\q&GYPuF'ęQgmgK{2,xj*7B/\&{VN\ck?;߼ kGWZc/2U-d6ښ*N<eK>ԜR׈8׻A>(zB G5SZ˕Nm`%F1uLէ\BC!0k]#H,@M jlvJg߫1 n/oR+P Z~&r/Fq=qSSh}w7zG\vch95G$O ]{yʯo0IrVF$"pMD!ԋھ޸pMvsE\rFGTG—Y˲+rg%eڕMw:g,\liG!76v³ÔTg2+WgHzb.ȨMtsQu w>+&KUX=`[{< ]?v\3+_;¾+&sDd8+A۴7 'aa`ӥ`$vKExjW_{09&:Iizoqå<5$`XsPMolgr!B+U07燴l7CN` m=SOS;qu8(׋p_/ }OڨKRuf.-o0 9j Zf2J}(R4nY-V=ܮI%IW7Air|Ug/%^]XM8Mח"&WlW뺬s-h o[mK]/ݾS!QO9,Hn#gC*bKDk V@^7l(2 JI=Mtz%MXS$qcM<4ُŽ'rS<.T }=[5(Uw<]rxgKƧ=\|:f;F`{@ 'GX=lA5 pP?K$I+ Mng@Nˬ GLmNQcD<^ (N|ۯ7'@elids>C' 8+[?"n_o :`U+iB_ذQa05(aHI~B(vI ѿ/hLGsl!s4eF*mަpmjsŊû$Qc܎qcpel3%٭/ JoͽQ.#d9vO<8pцf`:IZ9g?T]?Mj/;ZP"G&xԠxo ]1gL}%s;Z̊\7ȵجjKA{ df6wGƣm&ϸIɮ1-r:^l1 `\$pVEft(d%~iǩJUΣJv2(j41Y]raH`+݂.ZiFH; 49>hp#|cݱrN{{~ q{9$% ѨaY%qEj$kv0Dɩkdg-tC!&`6T(9AJ׾c^ql`]&5Z&t$?K2n֩%H&gz95mwXHQuV &_ A}K_sEJ}Gv4U5񖦦g7]]o/t;:ZSnVw#!':hD{xYh~7/cb*k0AKh6zCzSyYB޹XsIEZ7 V"1s%Ii"h<&[> 1pfz6~b2$cd},K֮4mc4;-C$@t~6r=ag}`DBE>?L(j-\NPnlaWpxop >nqx=[hL]TePtW!QL /#.2m3UD\yl}؇g7hXF"S| 1rIUA.D@?:ڤ6R/FWO߼&*uT3V *%-wCmt#Aƚ y/4]͛-,%Sgdf*=8kb݄,pl3m=O3>ںXLxmx':,^ڻ?Ѝ^P~0F]TIpkEH`~#yݮ]ָ0k-lo&8M:N] 8ҢQO1;jgЧ :šCcsQĥ^B#P!nߵ!{fmx3 "0B|]%$7(ɗw 47qj Rn7ʕfP\6}>ʆq7$lm "8.(T=w(lbuU|do^%fg;)hNldl"+몜G͏ˀ%PTHVjЍ3!wW!zJ}X{,[&4I:΢:h\TX( 8=ߔ;;7R9JP3/RbKdf@;= y,lۦGUo|Z!ROHOMo dfwϸD`ƱKs1_JY^ā]K턩MQ []'>p)a#7zBa2[1^+u=sQwWylR ^`G ؊&?*^ xhL{~Oo+YE'(n*g=Ɍ Z:ddZOs={Dc iZ d) T8z㶗7Wʓ x7{g3gQ}bnO`|, UPsnwt/NJ$ɽyHgh,ݧ" CyI׵Q)s@{z/E};+3a +qN)> lH!ЌidZPu6|Yd V, qAvzz~]OLE{1_Vɲ 7\d$@":Wn\!>YYۓi?-͞c%y~5l$@t"8Pu2lMJuHwx^\֚B/Mn"ѹd]5 h3Dh3\Ef'X7D_+~_]wG垢`QG{/;!%U{ V4&q,҉o5)9 ke?Lq&\eՊt1rJ.N,.5<(:fjb~S ̹ MU/*4 V"Q Dk&MiAЮA'0߀jihw<\ab^q Gړ&rk(ߵA(' 1KAeEJi~U/b|/ɿFI2ߘKBD|b&ޔ˂);T胢)02ΐ<ݱ}uU\=͛N^iy4Sl'P 1GH!F2aΣWF^COO^Qu;>Ó%2=,)zL!j/Xjꃨ <7tD[EgF]tGm 4vf:K[6nD*C&>cj3S;|30`iA0dkړn*>Ȯ@2]gEڦ䗛fWC LGq&i%ݷbUskֿ=6bC&S٭([~?1XGbru)jrIY5SQ` p'C-n=$ Յa%ph| QRQbP|?Fճ]};+!X nzk )~ &nsɃ(0(˓Lˀ݅%l !1d/#ѦEK!;4yi7s[q>䢮yx'1֞P9H4KT$7')Golc@U0u z:ṪF͂ h,X3b0xh Re3'*Ņ`-|Q@JCv |h$x0W>9 :٨D!1ɑq-p3/ Q-" e*OHZ`DCG()c)<׬COtk&$ T?m/p $kD!emI1yK H&S"Y롆x>jFl}l7 j$'3ntdK, I; s_C9?B*>X\x0h4nfEÏԫy*-Iunm=Vt |[Bjqt]Wxڧil{7BPlW8s(:@-4x j1heg2N$<% m2۶6oUagTkE!Dr{FkJ(L[yN38(Šn `С+ݴ0t@ U뱜"(:9M?1uTF&:\[Ը9_@nq P P}3I|$c4YL.a=Vᣉ]ݝ`=BgT&p]c;ٺr4$4 o9j qb{(n]+n~ocvGO"+ʩB2\ZOlowDo:qL`| .ni:X7Y O#K #vy _hh:8A@^wv5 {z@VEiGu4*㩌NFJ6:'})M>ʨ+ޥ.á+%p4S.!rH<"I"ۼNq$Q\ݍnެ/"ΗnUO-kW7)r%]yQ̎*:dfci }qi>p%6x)k1cRcZo๔܊rY{& LSUF#zW'ҷ3uiޘ=\HT@ՎH>?4N9g_ cXG;՗»FF@=[]SY-3^JUa>aBѻPxeQjPmK8-|1k/>3nsq`mq:| ~ڍ4 RM | e X&}t)ż63  7Sp24|(o_A}Ӛj$>$$ Qb5#ItRV\0$UfJv1N&'2xd^/} W9(dwE{gQx!FǶHGT]E'F zlݾﶰ 2lYѮ77,C9ĉWto?):9P=!yw*Ό)|W߯n,l(w5ݓ@J_[B˘1EB=asƿKw5eT8+U#M)쐦pc?8mK>u»D-X.Pe[OpȇŰ3t{UYOU$W4l{Ӻ?"@mJ5qrGhvLHO& F  B|-;~/*RN,~:^C›ZZW ZƷ_yZ\k5(L yHbX4-hWyI72S`V~NJ0蠔e=d&8UmjT;=,sn>ҹjM +GC)쮿/2 2u3^[iJ ~md|\F=F~r,40u+@_"*za6D#!D5gUO%ڄ&+1I-0C+O7TOdHЅ{3V Ub e<>'* sL<0XV97N!ȥ1wL3 ]68.!%@]bAWRI?z%6-  n-@ZܴJ@Y9=@ 俊֍;w;% E ` T!k49>az'>.3 _dc`, *r`D隲D^vՈqnc}sK/hfw]HdHⳐȲl@](-7h%ZwJm̊7*J3x˟Yo,|%". z4堼Rt(0v DSRZ:Bq`Šijݿn&QuXhq0 '+'lkɥBֱ!ЬVr] (/9Oƪ* )@ec (Q *V/v2烄x@*eʇNY >G-1CCRA%xpv#F'{p /Dz޷><6{2f,\;"Ah˷(8'.}`T/]?/LsˈA0{ս%o| ,z7zE\壓__Frms}EcmoEv2GN rɻSGs#WGaP"DózI'_Ge8ځ*bWXQ ĴVP+]E"9iaN-fԺae1 ,ٟK2!}Xyc](SyWX,(!NpZcsIzΒ\<kcznڻ|@5wH=ȗƜ8T}[n輁fvv^>ccV>rͣ.7/yl/4ѹ(C,NHC&3[9xRhz?aSIn,.4m5?cE*y`M~].5>yFoJB-:4Gio',PЯ=7z?@P<d)M nr+dUç~*)j K^>ήJX8_I6`^P_7Y9E4VeZ+ǃo3do oxbGurrlkNyOھS J?/)se_xX]Vq7-c љ3TyTԔߊDQ_M' ,+lVn2r] BiѼruŁHvfVeyhsʎ,~ńgBJWw~gN&f53;mgt#dezVnSsk;X-$ޔƵ~ U6)M4r,??Q#ԼdE&=N;Q5v=}KZ ǬJ:*9=cjw(}xs1PռAo)qs+fa5'N Fa5Г[lވS8Wv4!sŅ#/ W߭s+AH~DGfRiwq\qWޘY_2kT濶pӰ3Ċ!,l٨qwIȬ)YI /=zUPtyG6Z`tOMx5ЈEzؙi4$Ǵr;u,aBSL欩)b!ﬣ3koej52B]c“κRN@N ? nF'Ptǻ}|%q[cڪU>)jT' |5-r} EC-(DuMG1E:. y.. / aJWjtB>iӐC " ȗ B2g:xmhR3EᄕKP@[qTv~H+ښ;>7Waro;B晖T (~T2tli ~$O 86ܜ)O=&tU{go6Ǽ j]QC_Q3Uc!Qb2uL_s+81I^]nbE91 c)*uJ(HDQ 2ۘQ߇qWSҝ%v1z;=B۝dM^ "x½A<%u:gΡ߁< #VRS'.2r=TƱ®XS,Rz-_ƳX3%^0@!~e[_̐ڟ")͚#hi"Z\XK}pO[:8<2|JW3q5up,v;튭9(C/&Adʬ7kE%dU%Rh`lsݵᕊ<~s9jdٿJ44IGO=EFa&!fSHj9SݣB^8߽謠" 3$*?ʚ OzH,>nj'|H +j#BkĊψh,sʙQa쫆Ioo`f/ơz(IZosWS872{w=F %:wwGxRkG[~HޑK8c4"\WDJ%/!ضsOb?ixYyԪh`f)İsrUZq+8G!.rn."!!K.Ox:fSvv>xpBH챹uD/݄ .VH}^Rg1pe0,_KAPj9m2:@i.75 g a78xaQQכ?#tc|&ï Yo7>_GZ,]yrR+nC8A SVD,[UB MfRSE&CZ {HÿZƟl>>Z.nxNEdrl^mU90m?7]% ^(+v]<ŊTH-7VYޫL@--?@pW{w9t{"Y$5_#W4_aTKB߸{!(.{7\=syuמ ꬒdehe1R{ uW(wd味]fm6Dt/}9# SX1?IQ;`j O3s]3J:e M? u[^˺Zg Gy힇s+$ :G88^eU? <W œՙZ `1ezllw]*wz"|Ne)`hշjOeZL~]ZFcrZ2hȄmx=%ΪW.T̤6l]];"۶})Sx uVu.ExM=RyZ78ݜY}`:A|ޙHIP=oc?UrIRL 3$9z3i;YSt$Kr \@ ,W]}䖺7ہX9|IM)&Rr89X=m#˧F#{\F-WM7\p&4g.hB%}Dc.Ni~^>9AX`CK!Un85jcO$сʠ`o3|NJ=Q?H k0آ6mM%?x[IǮ.ľ#aLaN>D*-.:1C( nݿ= QL a.M4!rއƂ @иJ٩4r c)]{m2]֋ 3J}DZ ~MƷ =DR?jp1[r72'1x# neYd GF$<9T1ǡ-o>9F|5>pOf- bL=J"o3,.}!X3HL "gIP.LCdqΝ$R8>/R]`c:8h搄ٜf[fּ3;Gof 7KCkj惁)m[h:|\Bz὜<Þ,e[DZ}]ᑌt{0$Z.6-Gbeq' ؄2vT}BMrI<:Ǚ!cԚP'KNfOe▵0UtC~$xgAE%θF!xA"I>rlys6;GdVXc͚[yԢ/& ا⚁%*;tbxi έI9/>5`p8ziəMF/hFVdLjyh빋g%Tv4,[ 4ÎF n GI E|?d J#T^m[\`X ՅhFk889B*ˬG3SHu.}#8BeF6$8١@֧#е:Nߓr8 ,mm${w+ΑM=&]@< KRLBHʑȵ Ox»{ m9RH؊8H~Y/W'n7-+O9;Eq°ORsB+<'ҍL'Er49i |[j4Dnʪ h"?OEI{Qulf ה]Pa1#ݖP_9! hi$i_Qm(~N.-K7[3J?ģH*"ͧGBƒ(ҕ^{N L۟_fA";-ƵRAtcj+rΈ Jj"+Wл9\<@r_PʾJAqAޤ3dB0&1OXW9VUUt }iGq3eFXH_>J-"a[JypA\20FG§>S Q'V!8e6v1wgTh((3h~玈BO2:wd0/qy'+-`B5$0-q_aO>~X0=jry`0c/zD%T$d_LAvpo:ʢLfݙA[{6u q-ncObGwUTvq9N~Gؖj!7@"џ']?Q7yp9 09 SWɄ@٩1)|_GJJ!mJ{%y[w*Rw3)gg!e+IlYK F@[U)5OYθ?}t\$8?;E %5gG6z^]s_ `2C%3D){Iq;R@%הN-F7i/"jO4}r,.C>t̏O-">H @DE͢wCklMrSkoZ$A< es^)#Ӌ~h1\F\)ݲE؀+ NZQ!Nh= Lt,Nx\5ᾔlV8'磊e&U8)h8'yPr#f5L*;rThЛ!_1Ze$^Ľ:2mC"܎1;# xlM?n[yEwQ|2 HCK,r]>nEsiH <tI{Gidə")o-~Nbܴ zSk'0L.]q2@Ly]/rnnK;Z00ʂf>&qqpg:-`=j>5hO}r6i]ƤgV ;%-)FtvSZXitY!~=hmk;!rj{}~-M'SF]=+rBέb)sy ]vFd`#~^DWTB"T'b)r ',60:hjWM9n]VX9)Ȣ4oyOW>ЃႨ ^rZGARޭ(a]V!> S}5̛+3òvsirƈ|Džхv6mxATƮ+oi|7>Fi +6`bV_6HTpj&Ύ:fge-+@V.5EC հi3a1 2k9%xu妄w6cMyڌCmNWJ&4kZWxtࢶi^Ù5=I}rF70{D՚HV⻷RDf҇h%:zvk#DM渢MаcE>'eY#sKO!hy:?uh0b:nb[U@oƊ\ R}l}5\82btT|P{&!!{mz)g3vFȤZ{s1҅/ H?WK'J ~) 7-;~ܡK;δr_>ess6r2|~z!7Ћ.w( Z׫<` ŮR*ƀˡ-ҩj[\hH\pkݵJHLZkYVVķZt'lLߵN ؙVTu OJ]"=aean*{p C05ȧldz'6hI%2/Nj2# ʝ|W@C}&M5!j;͡X~4vK6{!?Bjkl' $=sRcv{Gu7.X3{>7n=*,MVeG;T{u2%{^KNN~.Գ"J<:s7Xj>n(+rQZq;~VJrx5_iѳ -1}LpXűW/&Kbl#Fa<Nf6/csALrfXy%ݺvVX-|XsTLgT$`CT:u7 [$;Ce A6ӕC  "g?aCTOd&P1t?P$s&^yώ/QשnZ2\Zɲs$u8#ŧ}-4!Hi0rP?$RB?Kn'x#&&+QQB0Ɉ;k^垴!y<"+Ox1ոt)Åg,;Gk\+=!~v^crG_ŠH:dZa?>?Ѡ8w3!KWE ug/&QX6}gQQKL(ԀY%Q#E@):rhT fZ} [V⣒[3+v:= ?ieE =Yx%B$ L ]EVtC~UEUÌ#5r+_< 9!R)" Zt)L_QE;DX8E4Q&Cē}(q4`oY|6Bo<?I0}B5&R )j5.W4r qd5 T"1Ue+;2SPp-yv#!skO3@qBL_ovw:CxrJycnE0'& &;',$ /sŹ!wxI0"^+ff(E80-+d{Eo;P7T׹oñEz}S>J@.0X dH.QKؔD0+MhL/M-Ffnτ~FӞʱcSGqڂ=pq$A[ ?κY3 K?KigoK<f"Tz9!Z=p]4s _͍ZZ% ,iKwb(+5vI\c7MôhrBntkZyhOO޴4[:M|+u^c[b7Iu"ya k;>0#G `,7^X·\%1b4e4 JY]t{cBrUXݯ||E[XFvzA^in~q/.$'x"!ڿl8hӶF  71zF?7'hHOa_O?vC &zQ-~I'Si `\;t8 tN3 O活nP_f ,S>iv~9AUT81WSv#G9Jʉ}gp5Ű$c1̭q"pi@}rSE"]`þ MKRu|+ħ 8TԑRq/צEIX/񶺠9; &J"ajœ8T~'8aTC8X[_,>Sq t)ǿm|{-e) +m,(Q XLxˉܥN; uȞK/r\@% .0B(!3Bt㦴 Tg=,M}ȍ2*sr l[%6r8Vm{^~`7.yݍkA= O[y ,|2lcuP"?l2ͰjMLCYɤK톟>?޸@Zgi^ؕt/1@RF1@y>" B=Hp7@/T1`"V:pS@[7w:*m!ߦ>#Õix15gIa3eO[q[n&.RbP"&ٺJ(Rߍ J6*YM\Ny M#ͻo+2cׄ/}j9I:lejw >*D1#LpWI-N'>eBM@\}wl)CFC'-3GAaő׹3)hHjr ~Ju\`Xͣ}-f&ŘBeuh_}'4 }ldRUZΩѤeoq+eui/^8tUOL]Y} )wz͜J #smi_&AՊd`]M6GO:~Qϔ6Yd}Ϛ|]ˀ*np:rP(V_A%ijRb4,dd oW O,4FrE 胍aƯ'sqA6Ge|X7'p'Ģl_?lp̸ͿkE7>+{qdN;^u(.].Oûp QSUatlcA'VVK$CdEx^vj'`Mj-bYT0r>$FX/ŖT&F BCZ?{ʆN\;;Q|&bcvYU@rf޶^m &6TLfd~^զ?(Qc›& ]r,;?{.Α")g $]o DVas `be|Ã5’BYb}0j ixv;mXܭJSR, \as暑>$UZ"rW؏QMzP㰒FY(mz^}u6ZH'(cTi~F_x櫛aibMOS"GgQs܇L)SLst)F$I98biڃБW[,Q79 |܉F@wvB2']tP:{Iۍ׻+  ꎅu".)IPUR(LkuV#j?BmSO"/P՛}yiyB#a{}z9QEoaR@$f!Nsϻ:=AJSa{,8xBQ>ięQƕbe+FI:[4hKITMٱ,e S hz)tekyZwBY@Nc"_;b-#~!{'Rm gw(^ RVqƿy,7Y'ne'fw YIFSA Q!`ʫbpjB&JkO`{<,On.ߗL #AF_osf/_ vF}߄: qwZC>MIkҦC+΀NP)Y$00vT鲉ѿ`n[KRj(dѱ\??J0F2`m01 S<pj些I3d,o϶`_HC~c %ʎԡY%Bgq]4hԊqӈCe48"K*\@tGe]A9t4XbHdY8X\Hҹ߻Wqc_1d|T%kܝL)l-kq |o[81!O@q9Sw]|pϾk]˃h&ܛVLudL,JYO>jdPMԭc\s x୅×Ԭ ݙ fSu'Bv6١G@6m2l x;9}qZba9dXk:=88pfA> c]DU/{]A3|]C0x|!kޘ,nq,^rI% kv],LԧU9JZ*BzQˋ3yx7ִKA#̻u2^rMZn1DfrWp m%?Ikw-GZEr𒐷6Z. ̫; 7.ˍGu෬(A+ߺ jK3.x) j8 %~VYʲqe&%n[!..rB c=d[l הDjq]:)HhU/xֱw:mT7 !'+[-@A* _d!9i,-Q/]&:M`BR$9fcҝ 4&cy|QlZ!<1YZY+YbGPI3O+Q>Bav>{Co`ad i9:n*gƣ+C\iaj`?N]h[3\J]EHdŋ䴪%w6):,*G`SzJNpSLY%5Wn X^`X+,/;YBHEl'/`{7֯ a_>mP!#%JІi1WQYDҥgz5fĦ*r6;w`h؀ 4[,Ԗk|Q꺠Sr_\rdzfɿC~O|:K?k!9Vҕ7fO(ę#ڕj{1<(COIZ#R1,iOHԓ߸|>lS|d+iu]BAIAZ:6 fձ7ӰyѐrӦ]]@FhTLg/Uoh,p;sDq8,J);3*b<1x *ʪS}g8`W>IʘrVӃ!"{ #:H@rIϐlP3_<TUJIgGz0=@Ƶ_ݝW!R|i֣n{,{Z}ymqxqTܶ# -ӗ#/pxήnCҖCأeJ{b@FY?X`! 'Y9T~PPэwR?+Sc濆0u}OhNP93Ի05OPU͋Ŝ9 <&/%M޶oc0PwsW!Q%>َ~ ,!G7T 9.K:BFΔ#!:9#'+k42c9n)2$F?&O·/J{=!#d!V ظwM'vۦ9ހf/O^!,grK 4o Ok%]keG`͡O¶:_0lҫmŪFt/ً}G\@k җa'Ǎlj.atWhV,ωSA/{^Q58.EU*rOAs@Q$v~Zr~|}_AFZy:UmM}Q:cZy6'rs~۽@օ3yḏa2Æ仕HB Pپ(n37Ԙ7)84qsWvTxڒLz;>ʭ؃ez2ryIfeD߹EON:Bq|5U%Z.O`I:Ųˊ GcVyCetRB'  0Ge;RQ܌mVn P~~ )xۭohK:L+C`}kPɍ6a ma*kQ[n,gjEFFsE<'^@<&NjeS\#KO& />9/{x J:E/XdR ʵuzfoә:Ɓ_Nymú:HAʝLa"ӋWN]+Q|k. xwv"m%UjswgPd''hElfN;^|qzyӶZ6g<ˌ4\ {Kj9ce8qS!dhgDh3e5?;V\Ν[{D>+L7ЩHOKƐAZ Yߙ"#|Z@r mʼ,tx^Y km2e,b8}w}fAC'pA< j@^ħv dӭYNɕ%=A/:ǐc(׽4K4=iqZ#Vn&@$r0 +;14F ٷSd LuNy4og!-E|ܤ+)SM΋-SpB̂Շ!\CT{TZ KiĻVm ҥ ^$Tů @S!Ft-vm`eOIݻ jyeyVq{+֚:}Z^C` @GrEߋ aXCl YS͊];b\k n.LQ9Ngc83Yf!t43ARsڥo^:pxTa2lGZ}-G;1d ;1~,&HAr[H%!N{Bɪe lP3|)K!ŋ rtVqi"{` 2.KJr#*b]6ެзZc|I΃'0 ݃T(xpΊꧢZ M5NúAK*]$B?fUn:poPwĜ65}PSD?1= c0~!^B3^|{ /DC51-D&7D`|9A>?CxD8>E.1` 쁶]5h j1/ >vZu%tBT`ZwoR4\ێ$b2^[T[Jea&Ny%maʹ᩶bX^[adϭtoJ95MixkjK7uY=zeETQ]Gn]@zMFꕬǀ׉uG3@հ`PQ;pNq+B&ASn1'FB]He i_%Bgn<3"s@Oꗈ 32˧Nh,Jt] NInxS]r/N~RG֘Ewp>]YHkja;r;EZPvhl? ӛ&q㝁jT,=LdsPTK[i+kk#tQr}5r:/7Ut=#4!X踎Ɍ.]|DAF_Wq=9^`i[_y zE oǖΌkb:a}찪JP"E ^_YrF#ԏ~/yuHNF˅TI@fЇ{.5%dʸU/)Bn465HuDT৓M`z~^Si"3.}eMoG?@r[g0v3bm} ڐO[ɁrxG7/ 2Uۆ"Jր'tBDеQ~>:~5St%:zT#3q4)1ap(эqJʭߤemGf`rC8quA~uJt6@C6+H6Ά{u*Rik.+nG=2<8fJkO!NV /cs460r21Sz-\g@sLt' q(=+Ss8GTR&:0v4:e CR"+ o3'b87`7`WOYvاYbcf(ȃq_텴q" li[h%NUzw1֑룅&9%ޠx.P |cԪ8dN+u7)[Q;2zZ#ioF*-sg82/mŇc'``ɬ]3Cbef 9;gjƎ\5VtTlۙ3s&[^ʁp1G8-ڑ@mVf<].zĂE w9l|qe4\9%jmˋ# G4wUaL#8 wsL4XC'Т`fRr-jJR,SbrQa0^4ޢˡBez͝dÓ\OOEI*Uv$w"BT^^g7yNbKfTX1'ZoKڪ8YXb*ּF1+d2QRG ?ͅ>.\Q?:Ljffυnxj j~A);=:`x+?昼d'Z}u1:E(sLt5)=ϲ FcΙ_m %w:06v8J~@w9=K4BdtFL.+o{_'3tHXW_0N*h:^N ŠVӀ:o9~KGB ,_0]Χ^_ݥl-". EFaaLϤH,vohWePy qE"Mw6VJpwsMn!_sT) 3l,@7Sv-H}?III5Sg߃~%_'$/x$O9E %lKHP{m"Wʏfb%))uK_#kbW7lYdy*ƞӘRLJUfϳ?gh4 \=;c؉))/4%ƁL#]{wWq}[9zB͑osӫK2Nּ!̅Dg7xe>j7B:y`p@܍&`È֙IHk\([AȾ7$sHнt6S-ފт bmAϙk/= +$39pDӂܚBXǻf=Fɪ]G-0$b@_4dK$+SI!ng+Y}lI\ 2Qm ߚOոY]!/kH DGU:ھ;0kgvJ r_8f3'wo SQ TٳðO^*M"(9>]GߛT*V-`VdٯK90_?mR(>*\xWƵ7kZ\y=d l;5LS&_ܦͽO"p@JzʽnwH&kgPNqӑR$(Yoa0TŀvC3,N{c|%}1ڬeCd3,Ԗe~>dl\N@J]U~ѬGY=Z(p(aY4׆\0OvoY(ꚤ13G{! jB:sR=5KjL$ \P̔*v.繸+@ /`'yTanh8\7#vJ"{xB,Ҵ=V$CleEB62քa˓:Q/q7M9=_9xU;5܍- * .ozr) Ґd=ޖAS !*U0JxňR3 5p׮F5DCN' \հ5ߴ\щݛ# ,!lČNVOYfsѝ$xR Rbg*R'FhWcjZ篍#z ˠhq5ȭ#I*|7zǔA-PV{g#;9X5X/lo.l9jδPr9 >UTΝ9}t~;xż:-|13vjAFjxT#u>֟~(x Y+7I w[`Y';u6#|IkٙZQHT*A{=(12y&69`P)`2Fr6^u )kk'0 J@Q?|! FPhFÙU6<-_2{ARnkZ򤓉-.Ճ^˔TƦ}'e4 7,Hf?˨x^ރ~tfKhТT Ĺᅯf{,Dl@d8$P>v/yd/$!?DfKZ'~W'9WHSF4 vQZd%T 2`BP^Nd,63w6~WPkpJ y1,0ё1 fkeg"́wTa>_}Id)dWbO`IpR@IHq'OQBl^l@!F9;jl^ņzLZ|G:[a{ l~څU^uTCnKp>J]NJVgR0s k'ZqD*j~n\EhR¤JNV5SmRTv3Z6r YgKDM⋰Fieԣ: 6m`"A6ZHm+8Cuss^9+( &yMVK#A~gǍ1T1p>H?4.L7ɉ #h J JԌU1.%7'z@q|ȅ*F(^:I3ªCV9 ;v<{o ݠHdJUBXSis^!PS׻=C=GjQxw}br/0ݘSGs'U]ַVUJ=",%yP6 |wvAȐI]?pWx}xmMc1y_Ѯo+0')v2d<@тԍol%g+K1.剅 +4wpp5Z%ձs^;7.))MiOH)oSʅp;/v>WjcYs[]`mY׍)}k{.4]L{xP[6k|O)FǶbW:y(ą\ȝYKHq9b ~B{TDeopu3^#YNbD 1~?eɄy̨!.gm]:k朇.o**<@&3oC/@tM<~RNbĠJ a~K{;=DFp-1bGa:"]cYѩqS,[.2.[IoaVֺ s͌powоsMeи W8Ș Ҷ)q ϯaDBNt4JdDDC1e U:Ii* <$58&5BjnąZ`ϙH۷+GM.{nuhNQb}"W`iPb-{BnQGt=}62j77ScZ)(kiŅC gNף(ZXl3ZCc>Y>|PlJu {66AϷ3/5/F@ #.l9oё`箣zJkGof%ݡOZN`CHy1Y#q9k;7(>Kc:r6m mvr<~2 E zo)s.&|RN^\FpjVֿLi|Rx5^bCjǫeۅ;  &j>50LyՑyHMc6;_h1n+x7m{*~|t3x~My <(2kv#OΌNfR0Rkޓ6'-O;| r#{n$=# HDىa:=x( BZybH_{E\,O׿w|?,ʶc%ZgF$Dmm]v6slw/#쟃Nh=fjoEf ! YZ