sqlite3-3.50.2-150000.3.33.1<>,hA`p9|f8L0c;Z!V2Mg}[-<Ax?hd   >$(48Qr     z |0(8$N9\N: NBFGHIXYZ[ \]^1bPcdsexf{l}uvwxy z"dCsqlite33.50.2150000.3.33.1Embeddable SQL Database EngineSQLite is a C library that implements an embeddable SQL database engine. Programs that link with the SQLite library can have SQL database access without running a separate RDBMS process. SQLite is not a client library used to connect to a big database server. SQLite is 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.hA`h02-armsrv2fhSUSE Linux Enterprise 15SUSE LLC SUSE-Public-Domainhttps://www.suse.com/Productivity/Databases/Servershttps://www.sqlite.org/linuxaarch64^P큤h@h_3a28f878a9916f88539e30a46aa609d7cf3fb73a5b94d03bdf7a14bccd596995cbdb8f8a4b193b6fcd34554c8535142fa0731ee9a77141deee71930c3fff64adrootrootrootrootsqlite3-3.50.2-150000.3.33.1.src.rpmsqlitesqlite3sqlite3(aarch-64)@@@@@@@@@@@@@    ld-linux-aarch64.so.1()(64bit)ld-linux-aarch64.so.1(GLIBC_2.17)(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)libdl.so.2()(64bit)libdl.so.2(GLIBC_2.17)(64bit)libm.so.6()(64bit)libm.so.6(GLIBC_2.17)(64bit)libpthread.so.0()(64bit)libpthread.so.0(GLIBC_2.17)(64bit)libreadline.so.7()(64bit)libz.so.1()(64bit)libz.so.1(ZLIB_1.2.0)(64bit)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.sqliteh02-armsrv2 17536945603.50.23.50.2-150000.3.33.13.50.2-150000.3.33.13.50.2sqlite3sqlite3.1.gz/usr/bin//usr/share/man/man1/-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_Updatedrpmxz5aarch64-suse-linuxELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=921e3b84790e3da2d0844dea530d7e429a6195bb, for GNU/Linux 3.7.0, strippedtroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix) RRR R RRRRRR R RRFt5jutf-8bb81be67c70abc90c4333c5894a8a4e2d3c90ff432832753cd3793feb6b94288?7zXZ !t/}]"k%f-Q/ިykIuˌVR\r^VxؕFl ̓BmvUSApi"kwړKa/,z&2YPBG%G]1g% J \d`YOD'u Yf])(D=sYZ4u6{&,*v5] tז6:2͎g;Tdb5Z?ͭ& LwAsqB|ϦOw}_bFAT]G4> Lc )ɝӘ=z:q3\OB{@@,.m|؊k rޝ($WSm%'J4]#w ̱mJMe8j|pjIBBJ/mKpW‡*-bZRGXOeqXvjw)C`Cwx"FM Z'OFQ["\m#A; [PčR^nJx=[0餬FzO Ne6Nd1.wwK9 (A: 7 ƌ8i&uSޫ _ۼT_/D@1m:mgzd(|%0 5gvaR*qwc@Dd]eo]>w*kL[;ICF xq`t^heEf`{Kbn`֣CɐW˕t폝xvO<_eWzq5:S㧉e2*kd4:5<r!m(W8;ӕ,&Vo5V1Sגlnw&,D84IbY7̖t?,NƀfFaW9}z\Ej yk|Ȍ~ Jj?heXXe_0 N u8-1?.I2)A5-Z"85c@fuLQC3jlUNie%;ᣡF_=4jjoDDglE6I wi,'~pCdÁGM+n!zbZ冷y:<`EYG\6 o1t`ʨ=W.%0,Ykb`+Ї\q)eќI֩hmmƚT̑UFAO?J*Mk%{&}M h3*]2h|t ȴUH6^NCF5gm֎`Wc}N< '{5 me:zv|;mh&m! cRԣ-*"9>QPv=Lvy7Z"ITeɸax-tnc(8HAqȫ K٥G=N-fS(yd%٪Oo= (*TcdzLcGaTg`_"0JUgvM^F1" mf~̔98&8[rKekn~ƛdAŕ0ҝdXvd,``<:b!#|f=]q!A챙y:T< z}G"Rz#\/D7K;c)(l&_o[⽸ }͍08@.mZsW )e(''^>k3. M*x+žO1*;q;),@'/9"lL{8NnB{Uٷ9eMym$J`=ѼRg>V EK-㨸=@8(kW,F2ԥZE} E[ t^!#rxhųgWn].# }s~2ZuwaAE`mGvtm`K >^M)sc7>qgOn)hA$ZZ͠V")fcp.MĤ<)Wɠ6\ >aRyx^I" ӱ\r[4jpARY;^~}N#3c 3h0x[nyV3?`{*+5䙃ᦵULL<)XkN\aZR^X^G0Dq}gٳLM'TѕhU+֐?la>oÔH6T. n h~s AMrv33{w^B|{D`"F\(C 7+/P5Ռ20`bC7pCd{˿4"k wȮgң,5^68Mȣb/D? MhM[љnIMh?e`0ruP)Ϥi,]fe'/H^f<M5®{:L:JY5Q^ ٮP2x֢Z1l, m.-Ҡol7;N o6i&'a t3RKWiߡ؁Gowc[f_tDVTLMiGECHnHu(y9jP[^^J[įP㝿_?Sۜ L=44IxAwNqyeޒq,/HRDTC$$rr]cS7tǞTDnzrwIQ;L}ys͆Nȉ24{i;6w]M# YX Y<' -VqCyFYA@feܱ v< .;Π_HZ_a5%qrpt"ZU޻ O T<: Qo)'Y:No ++3jܨG-n3eg[K80$pb;*qgO@^C/OOT;(So2y]+͂Y׎ۆѮ윥2趥tx[riio7k6OqֻY Ǚk7}kF4Hb.=}03 T6ָ\S- @VZփ60&;d)1okt)w9=ud+ Af-7q}CHdq9 Molv72 =ς FRs߶XQHI=IYhI ()Q&{! u{MryCsJ4#u kTo|Dۥ_I2 u 0$qz/BRiq*Szڢ͢/0\a_sW I N8$Jd*Q?6qDN3ۉB+LtI<zd!PIzql>@k4T:0N Q#'|]Ưa⸭ (|ڵ1t Oa)eJ2򉸤K)!2W5lh*P(zmhT!Q{>dնyⅇdNN@e߮_R Y#Vq;3I=Df\r^7BLJ C1?p'~%C/0$&(\4љ~]и!aB$:po,xP j|:Z"zb;Fd:H<3yfH\F!Թ%&X'_&n!ԮcQu}Ch+#kCS+#nD>_:s!CM+$ijI\|3{D >cLg"N8YCL@JG7{Em'EjIn2ڊc SD$;S+Xz{̕ܟBVvBtE&аm74 5Ѯ68+$h-`\@ŬfLjZոSV^QSTH] O7)t˿YPRҙ;Aa:V7?=.цv"QNQm aJ P5ʡ)dlސR­Oߗ8(]ʮg>864qdPשBYӧ@5p[Ǥu,G|eeXLäm49;H>D9hLr^DT"} HhBb4 [!Iq.U.ws[/,^^܅ G1-k1/}VXm饉KY`q0\q7Xh0cLE1}J ^OJ0t2]BsNs=Ul_oO>E~ZK _Hڸn( >?V*yu>w\^wxU7`~f8IiZT1/MKmCB2Htpƴ욍Z'#!G4̘ο W rCIW\EixhZUam+xE tq8JY]zR2,hEj7jq0B[, !VY!s ,p$~f>A%gpհCCYg;ΌCjLF cu{\A[03 ;uVynCȎ3cX0IhiIaDLU|_]gevooPfy|9Ȓ>!QEϼ.'$7#+QoE$*@=+urie4Nj5TrSk0ߤąijQ]9I_9g b$-}q>hL%V"t#jphAΪYoSwppEWFd\ !枚}J;A#T>uJ!$ρ၌Jr#Bnbx//1%+2\b'gdRU図"dYuw4sX3g ~\l|4-{+BY*ǴtYPo \;Lc~ 9B/uRhT.%; zKHa],3cp{ʪ 4C+gK t#k*[7>-ŰW,pR^j?#1sP Qv8cSn#Q HntsU*UN]iy&# S|y9HlM~B1dP_<|X]k-B hAI"31|T ^t[mx.8߄}5{L@,)g[˅_;A b?E^HEenHcWJhBQ>z"ub `[7ر7ŞqwC5UЉg*#T+p/ = j[K!#E ,}{#zN61@h,p? jWN6#AGm"n"U6~dOl՗/q?ccPr!t*|@B;Q\o޵7S-`J6@$  }ʣ޺ۧFu+Wv nO$jZMGG%5 =Chw<#iNFmIo%Ew_P#Fg! 0axb~ЅnT$p7n5ȶwX,5A%NrRncmU;bDbֳՁ u-A(ơwэVZy:j6oJ:#Շgh,¡[Hw ';d}ށQ3:%ӦZ=KQ%ÏX$-hpy uғ#,oV} ko%߯.NCzv;[f=Ǔ"qE7 rX`0jO b]@HB-D&Bev90y56Ě]E+H+EC9Pnwa?AQfbh002CuƟz_}]yסvp+\qUC5е:C6 =B5B~;+] w .=-] g(P(bH~a~h#…46ϵhٚX̓AV-oFlV!R,,GNfUyOwZt*5l*M5uܘXsεc uzex^yieF* i3H;D oSg ܄erq!k)!sRc'=y%ks/^@h쟽JTi>\79!3VYEW eZ4ߤtTũx=jcڈ>Pus7[.52;WDKz[8}Nt܀SS >v o%YAә+]"P ;}]]=poU$ؼ}W5_ " _j$e(pop?cefTbB1*cfXFq>="eՐI㙂ck_k־KЖCmwω$k<-oh3o?9^Q/kHB}uOY` z99q4r^:u FkKjQdi[ٛ_u%\C25jUI_uq4[CJDq4Lq~B4&cd麸 slIρpCJDK N9nwfq +T$걃++!6pi,VZ]ucvUYzSN / .hw$fZT ;J:lAͅtyA8tO9 ul9ñ,d7X<<NכO| QuZ~3U45o_^vb|ꗻu/eW\/g_@VfN`J+wm余<$${lxug$Śk" IEy y8 V)ű*Ӝ{|qJrD0]4Gh`%|ػ)3n貊[[V4N$ -BoA?۝#`={.L&$CIP]DKRTt z(2GﺐBQ jpaQV VSWhXs5:Lp"RAC9b9jxȗ1ˊS +a/ǺA"P b4M;=:?iS {X XCX0^Խ/O޼.`On/W`{}ȓӣ\kq|^:v% . UJ8^Iu.*}qYܣ֝@/~μ `W _/.;pꨵ*at˞Y錐[-P*y To'ֺy0# hg2vy?aeA.0 ꮗn4°7㉻mfKX, f@(PH3JBY>H.<ߊ? '9D:ڠtahq)-w7c_q<yI x[|Tq'Qtւ sZ oxls-A!"0_A"d`}%L=1擑N2మkr(,. $rMd#~hYB8Qi%/! :JQ*`r nd. bSGnƨN'Y/`K4`rQ0ğHU U7[iB_s~TRm{0+ Ѻ(#X4'Cex= 2:p>[nIyoLkoj%w꣣gP(V'Ro-+>0 >L$[2YUySt ;X:Sa0emнNM],T0l)bw(keB8"y&v=Mz3`KPWn7޿#U\p&W1w9JӯM3Tng]klZQ s%g'Ky/4INrm^롊*]khY.7!rʛ dV#|plG"Ѿ9\E/I=^;ڦ*gLwAYEwp԰v|X|2K"ՠ+V%nOz@(5ap̈́TOPdy`ڇom@L dH#>E%8lN۝lG;kal%5JC/!| zǁU&qN#:h"BTо{QzY_%h'{i no{q^XBnKi0cHEzF|!_@?k*X'9+ƵɩR؉l r"#I(D׾^e $JRm [H-ih|{iǙ C{:6ufS&?eV`ѻ.#֒M/Dl(WlmTp3- {,AͣҦ  5bN[ MWPvx~O(g7.16Aӯ1+8@ OT#'h7s ;}I@6P*p0?*]@+SeXj:d/Ae ̊W=y͋M %u^N?})tex{*iiuWйNdM5&b<J\ swI'osrya(FР>/i\s$vJ2Bׯ=ُ;w n-sE9b=,2GNCdB S~\?<$i^ 3}55ک=.%淅?jhW+Ia=V/*,ѧۤ9/7!Oxs4ti>Vd^<g_ǻ# WU[d(L PT7}WoYr[@=,ХDjX nǛ^ n _m'K)[SY:S.DQpw(WӲjTRSr6X} K!砶J- ~Y=[kDG /,NRm%?;X䛙Zps'YՒ0Z-pQ\z2MB'@!'ɕ,dܺP1k;L Eh8.˄`P>aa@䅂i=@mNpC1'+?v%_R82O!6ilbN8X"Du&_Kً'ϔR *uZT8hstj:8sɋQt*D hͳvRW2I=5j|%,!j,1?צPҺ' ,53 ] mU#TR=ʱU ҉j%_J*VmwK&۶!ț. Qc;dʡğxլ7$s/{r{b|$- 2cٗ)t & 9h'lCL`U==I!IɪE51WTgʑ茻M—TV;MZU DahǾk=s=6"3(6̿eqroդ(3WNbECO:|n*ƙ0fwǮ4 v`| {K_`a.;>S6S#n??}wӼDUEl\:-{ :Z"[b h>CEo0:ƮQ, 7?o0h;O> 8av-ꁀ$Udf3ň1ɏ3b>vbmVla[F% ڷ@DR@0{ F⪻@ I:U.MəfC/':G< Sݝg쇹ℙpn$Ϡ^<׵"S?*zw kWA j(ް3%I̥rރ =zLgsyr!gZ(%ʗ 8G5I_sZCx u :}PgESb %7? ܜ챆p+[KkIHDSyY6 YY:FB͎gZǧ: ϻҚ35%p:yZ1 uGM"`-kig(tH-!rWiӞ!;uKy2tBOc} 6JgCy1A[s'yN&"{ƳKX;jjk#^=-lq fm7#Z Lh+5! _bG!繑z5 >W)%ζGao|CK!6ZU.|ɵo[+},'|,&?^7K엶5pe)5]i<֊|vn+8"mؽ?7|T¸u|ceŴkwTz@y)G rf O+)r0MgگZ&domzl=x|cƛ n B3 ]ib0׳P>0-"}\~>jD,朕2>ct,5mḨ< \`qI`]YJÔv$T+!t%&d-Arc_I't*$6IŢeo0"tCEH{s5}kN4a<6h \*[#XPQ'D GK2!'ꠃM$CUv20a#¶~ofz4pΘ5J%F\.Y uV48^Li#OP2HsŇ9vۮ׽>]2HC|#4դ;L![6RV oVfDZCGnZ~RaEѲօژLvsn^"XZ?52ﵓļQVN[RiJd_5b0r5Fسּ;x\{o >Xv"mk*cL:s!͇{\pu3"s%wɭ}Pi;kr<4W_`_l@_ke%vpGLaKFC7WG1RwM!\;V$-bE,n"Po6m d 22Gr@ʪ*z еCGZZŅ/t'?(5OB,pSeV zb đxea]A7Y9;P/1`Q(Nvy!?ID#7M# OW_[c6ltiM&Uܦ78A 4oF\dȨ4/]&ҽs6O[=dg aB_>]rAS>B.ɳ<8'ZS,7%,bHum0 $@y湱̮QqT=5Bj.ӓϾՁȸ1/;=؍sb۱(!͑A 0wA%YCS5aH?,MjQ<oE]CfT.,wiEq֗T+"IJoxBEgi7lzoǡ_A|*: 'mH#J\Ud8I~YY㏟}N3 U 4M/::N]7l~eb?ؖJW+7"9 1NO)FZ͛~*ԹRK-@C)8\D.0ra{.v{Zp.oi, b'7k!j?gZ'gL= Rƥg[% a2Α3 &xpn߆r[`ӏF񑠐12ZSu>n0?UZS"w9܍([B fv0.V_1kY$ .n:f4BPM|?~j"-`dv.K'n6Y'NLGtD^)HnS"rpIb.z BTY>|ʟ+oK'ruoe%YW̳X/xc pn[E\k-x+dgҗY]5;$|`'Rȹd+|$_yj& }%L@!?ŵ\"bql=ļAɋ;eƩ@~Ի'B"4s~pY޺VvCb;NP|N,#4*QwXm/e=)pQ\\` ,/։F7mRQh5҄N7Gj>|+6Sȿ"QBȬjX+ui0@YzCɩa-n'a-IɩD2tǸZN-a~nj.Lcy&TNr[6䍁lOArC5lc_ %bM7%|=ڵ~DFKхjeQ\S55A<|e^mo,u6oVҰ=LV˙WQ1FGI1p6A$׏AHo]#œyRk0&Ԡ? AqO+%)QpaZ xLcBh_zIOʨ`r5`#uRWN Y7 _Jϖ(J*ƟE<ھ'MXwg.WM A(I: jIrT IJs<,0|>5EE2~6Lga'9,`uPjWr04:g#] k9O/G_ @8Gs 0X nbx@e[lP֠Ύ!* $%ss5s܆2x Gu{atJ4WFbI?Qi=:.qdM)EB +v<[B录xY:1|![n ׶a]SSÎր!FzH3HxOCdOvؼWSpN{%-| +I48Z3]=YPN+Yt:-%AxQb_PnpbsDA/B w*K-<' $?CDvء@?? bS3%ّcCBcBCfmJnp5f4@e5HӡQĮy: 74 YbRW]|ĒH&vL'!*uЬ 6"㑴 c>RVTL Ka tEtqAji=t%Cfr7J*Kfv9%OV.RK(r4GDv:Ei.GʯBM9F ͹ Ȭ5Fqt7v -iv] "bkP;94kr $CkL "}}Bb$}K<q4D3dzCKE31Hq\$jBJyژl*]1ّ ȇk>&ʲms$ hV*&D{[< klYN$졙Xt BL'h$ G W%-M.0P79ZVi:QbA+[J]Zy{iP8C%Y03xqx*`6;LA{00?7ɩޖuU H^'I)y&쥂t◰4&{Eҗ_|)w;L]|Dx̓@2gI"OHE-*U)AG"L_owG9cgS۝= 8RV{ -JOdCg]T;Ub]HtyʀdiddCDujefGSgʡO|5>r^ݛs/ìPz}o6gqr=AAijEdS">0Qz!b%v'\껬 ]S|$=^&,0Btڲy8+ zDpJ%ª'*G؆e?7~Q+ߨO:sda"9 WJ$urW˾QV_'2FPSa@ .*Gq'4]zpJ{m=QC؅\ }ɩ #r%{a`:!̔%Ff ፦F"/\d2yRi.䅠Cy0Ji8;u/OıZSPԉ[Q>&d257 AWaH9W"(vX~C|t4WuMU=䔃P:1PlHZή #Q`\R3p,\Jj!o~,#}!p6#j5)Ȉ*nvb7蘜#nny'k䱗')`d#C4=-BUC%@c'Jlq3\6קl M (@rP)]ai J_^8Yvo5DyˀAPFFӶ>A7GX7h~l R0mH=5EwT΅}ԣ`2Z,D7'YL옘/>-*iYRBfeX|Ůha(*!{ RVd.Ą$WqUr0{6GX3:V4^\3Μ Bs/CZ.WvH/ez̻ͥ bd3 FaW05miZ?jlv#N!T> _x\)?d#bq؄CNTFgP2i&ZVpRإ凿چ5`4O&d"U;Nٟg9/PE).RQk½st5XΑnWZm4^8tR$k/f#BȚFfO0;)=y"L\adiC 1-`>BgՎg\0%&[63u,ci|9uoFR-52EA ׽ᓌ0i@]z{#9b"P-?<Uʧ/ }n ;O4;s0t*Μ} {!UItt"eЁ;tqZ8}nuL^ VeF{bM9=rfEWq_)LqrVv18o7/KM|0{4G]IRhSS=`iEȗuqCsЂJwѡBbۗXR0<_ ↄR-`4M$ZXf<ga9 VA792)b iT xRr&ϓu>ҝNf.U5 A& ӓȰ,*7c?;P}}u)!?DoLqygDHlAx=w4cGO/he ̃x`"HS̅bg3~>lÿTʴq\Kmfl-o2=rHƺ?4%::AwV]89[~\^]}myO&itHaV+C|͕?C$ЦyN j 39 n0HqBl@ gblK 6>昼@ VDrLGp#F0%'ݑ^%8* F! aT(? _t? #YnV Hku&xMU= ;g48gTdy)H%4 %,D=*kSg=JU: 3OE|qa85|CߵZ2{RGwI/G%n&ڥg W c O+4/H>.K ]L{eQZi&`}{x>i GYDTiK"O e@~AyZ踬(NPxe#[wZnپsHBo)o}7_G[cv0^@*Á n3mh>ToL-g6y<;_~kT HDN7 0Vn?_dNܳ ~(~1̴2a`LԽfF8 :ڼf( hm}i)kY:Pw/8ukŌFq?[]~]-ypY4l Oԫ2`pNq<Ϧ 1lVNªMl)ЋK trDʑF cL6eǑ"=n0qUa,1B%]Nz *4llrM]OO2η3 vmloSfZ*߳:[)Ew'KR#Y$s˶]L3&C$ 3~ۚ1/$9S5`wUt,_O@K_մH/SdA`U h`fT#` R4 OxVH&r];BcQ)B CU2Rc#j,{46 зA~[M^T'r^gLfmCM/Wd]v oW*i+%վgNLoU ?/! Ϣ{H5ytf=8El #)Og+a;I.>E{x8h{8^\;‘-:Ԕt,H ntTy:1LutO &ƛ9'% sb5J Q/FZ{#o.Du*o*8^FP^Ѝj[P$+. .QBUS\=]OMp#l:8=mD"oLnST_2&MWN*:т^uE'j0w ҷw]cKC'RcC^_[+ K"M$"?N ?nOd Hj\[FROUdz{C| K袷qUӈT렭K.d떞j 1$}n_/%Gп)c_psGG+7/Ia7݂_} kn}=O!s ms>N`%l#12 {/3fuy[^sB;Z7zmԙ,w_*ky8 摆oMSl;]dfm*]O[2'dlR麪We (`Q>N9112,b7zzW;ia@EDz c;C ve2;7mew;x|c 'L eW6pN~x٭ K+3(cfzҁnѲ Wz)/[EpLf6 9x<HeU&'3e;*ѬMK,UG1@(eBEx?ܨ mH Z?AhVw+; 7fx닝1P!j;9RiDM K^xٗsij._.E7mML@%kNxR7fGEV1y^&qrqP}ۊ( oOp};l"^ NFMS lFμC !R`965r\H-*P _=PEvY^W:}u5"n&z|-GQ;0rԶ֚s+\\"kKݎ姢Z!r,]*|QӷZH]=9,W!>߯y#ެ=<]5`ć& /?HbBM:րU,z.!R(lƙk6x>Y;ᮬz9fh&}^`]V4ҦDgLJ)߰f WgU\Z@^B8i7LUSha-Q/ ѧbsy]wjS l^.$$TQlP~)YL-:Kbw3NLfakGX3*-qEտH_(-G"g.jv:3yn:*Te gqˁg&7"rups3/1+-*.d~w'Ge#-,_Ú{CW ^[=IO`WoTl>eM;ah"~˳"6!q|CFr;V`  pV0c6"h2_ {wi}/µaAhgxj| bx,b(g b5y ," #dUV񃥻..:}ij0'+޵^]o_h272'h'RbtK=O6_4ڢ>2d-d"ȥb}=VA`ulV1;G ˒b tɪl{PE$BlG5!wg ±N3i_% t@D ̷Qn0g׎q8د`HUu>ʺL2(KZ sz&,)M`>jduau -vH b .ۚ] j.GA$Mo`RҰ:o6in8S:GkQ~ƀPZg }SoE{;1fPAI})Ą(ŗ=s&cGQVW(n.*LlBG]_lp~1e\ֆKHDss1(q.r+o*͖fI t8?`$|Efs P\ oʰ!U4V,͘I:&))onKiGg3tq^ԏZZ>n k|6UsB%UdN_gL- ,}g-lj6CpZTIɰnl}f}ķ] IDk=LV _><+,7x'1'B>mKdtYGYb>J_XXx2ԃ$OH彾@4;}.Hs젇nz#!"rEMG>puXZP%UQ>4> C'8p `"pM8>N_WSbofNli ;ŔEQN`Wraۮ 6S'k Ёp'E("ٍ(74J4+8s/"ÒF `;#40#E>kp'8hPZ Ϭ,SU<7Rn z*^}i" z 988$ 2(Jnȿhζ^ WR)^NY@.jfz IeaΠ7FZ}D9}K7@*QmT5^mWa5l$Eq ˊe`Lݳ6ZM3{h5b0]wxI̎{$gNo.!!S'q3gZnh6h?:]swa|Ʈ@B{ٮ~ ˨*$n=5 /txUYP7 rYaSyީKI"Q u7C<ҮtÊob>L#)b-h~$Il^'nw! ?6E㳴Y xO&;hybD40|zTd[k̶,mOφtC#IL;<3hXpD*)!>bw\  X4-Iۊa0M0ΐ=n`I7jiku/x;n\Ai汢ZYzxjֱKFXyyUҞG݈g |KͯabȠ)tX~B)gp]Qʛz/*TE9oE '7sRO[pۖ@o=dIَHZjTVt Ġ@pE%1>{#w`ANz6Ʒld GWxyҗ诛 Shb9dǏ,G> )opSy7'3p΃22zdb|뮫|Z&b\O1m*V0>?PK4W&/ADNF)~g@?+GYGM*2.4Cqc7p=.eru}{G%y<⪵|4o]1{cJ:#4%5rDr7GV*r[!\&R1aϵ6 <j9^+26j? r0֫|k.|/tĵ[vhɎۆxbIM=;$Q8дdv΋8DW-} "KIPUyS C3g)! UOI&MB;P.+Q[n;F1RODc`)w]jczPnK5usӅw>so=y]YfJ>mٴoD"56Qoج3:ig0t?RSWW`7KN 1=(ȭcJ(=k}bqB%Xfjr؋vNl@O~kKժr=*/NG ' /,B?d]5 'K,|J _7>/9Fυi,ckdbڀ2f'}LR=lk|Ʊ0.Tو:~ޏ;lޏ!=ʺ]t K)vGNPVhNa2R صFMZ'yE}EO<ڏbXfs%M$Q{=Q&XD&COh [6Hp Z94j=Ay4,#AdQ1 Z'm.[hdI(9 iSyBZkpKK$3q bMtY Ʃ/u/7BeHQE/lA!kX߫+\R4f\{لiysh -G_!VD*ic:!ԣ^I:~@X%&upS(B6{RKJe]w"oh>mT+@78#hG?/+Qٓw\zyѱE~fQ3Ȗc t~h;L}n׬lQ1dvnhe/l'e_[N]4~0i7k7,I%XӽE4*;5ʞ'Vտ=ich oVoNb*w zunTn'%nrjpQcfȳ9S&v^] K%εkgc3⥼.UX*z0\hPӂH-u.Hyg530;%z1[- xlkI>ڃM^~\* -sXS"p'3MW<- /[%TmWgGS{3Tcİ x <оXiRKW"VnC޼|lN]B>ba.EaάDLbaEmy>>=^=8Z8TqG}X]-ݣDJՙB7O^1(ZBg皼։Ls헬K' N%_ß>x Qt`tiV5foJoܻ%lsa_LN\ MveMqWspuZ̙Rlbكj|Pї:5 խ|E[^*t1p=u;üt#xc._qd9ZnZ`kc]}~h:Nv>\b[9^jb!ի^#\K:U{];C8pCRωKuhDC`/hrTs&rYW/98q]vE)e? ozǷ-,@=5QgbHA#N%~ h#!.-?xAlZ~ k;5no.ܭS&4f9mZ%2&sp-Nth\--9kʳv1G6m_`R6EEUJeQA:5D; ϲsju&vlhz>!®gO{m6 ,ڝef(?vZ݊u[Ɨ Ob>Atr$EXvpݨ[q_Br#hb oPJjC"5,'ǙXbĀvnv-pÃot4)+Tk Y"g8Wn` D3=+a+]B=2_D(9\@g 7>]YkTF x#n|')>w5htx1-!%\F8Jh?ϑf%#/Gp"Rl}(g`bvG('t*sBhlvGM2R)%ǤId?$y=#H3Թ.]` JDπbwLi"1\ ^ m*rIc* ]31&?fV{ULw ^yL ͎Z´YF8*nD"PO&ؿFj  x{5 ^82} @l $PJLL~}ޟl$k) +gy U٩Q30!t4{KL{>Uo@tg6HP"FkiʇNQ3i BlYxXwPH4YX?N~J\Mxn‚ `uU[VI!3{f.$.&ۘ6.ʅx/9rO{I*HwouQTLz%,pV7c é3Th}mj]ܪ]$V迶H:Nx>Lby C+UCC%.!,Xl[ML_&G+L{X8h޺-[cAaiYd:]q27c#q̯D8Nrݵa4ظnO tNJ0͕a Zj'wPuj{ekIØ䮬~"Mh V"$$V\W> )_?]c5"'j,~qg5(2F,AB?qkؿfVaT6W1Ʋe92^(Sy|c8I&R&wpHbFϏ$J!&`>PPμo"˅-P Zՠ:ZNU'tWc0蛔<~8K~̌InM%ғ?EHKw o?T{ 9.y;>+E%P$7g] w#TZ57iM&cJj]qL7 ."^avvX3NpXQdc" 9~ ≜#nZɸ ~7~SA.1?٤yڵ*o!JKK!-y/vu06gJiLM_mprӒ{Skdl//U=b2LZE8DW6/^.钴`"ǚDlb㸣vQtn[5}g"[ov TPuWED#ٖs_8 szƺǴ mv%w`_zV\UQK+hDޞA$'Z5(*BmT2s8t2?,aqn Ď淾nl>|M3Ol,ɗ\T'{O,CUv'\SF DtGI2/ނ`D[ sƘ;`یʨjWkLA]^~ h !Qϒ `!omɄ,tOMI m 06aiJv?w.v/UJv qTm=r x`<0r7c29U_ r ?@EƝe/9YRI`mioCƨ< Krnl|n)+dl 1 )9Om5Զx|m! _xm{ڟ7oO Mc :̨R{q"5A%HRFùmvm:xD\c^Mcl\_a&@'0޽~J@Vzs~D5svݏ*<9'g2#0Jz),VO]7ޥ7ixF%7PkH{<@yR\%b)&Uamń5kZ-[4X .f {-9I1z2dB~͒6j&өX]&cאUo'Uz(EyH͛xJ6LUѬe +:{tJZ15_*i%pIUeo#@f` Q,Rn1BZxr]"t5R 6gTYĒS6`$K ֏ۤ*ޖTr7/JFD .)L9z _aSU 0ZLuLUZl20Z/f ؿ(isE9w`t@5T qGgh$"Bc+:u LcZAա#al#r8}(|^ ,wo9k9U@S[߿FO=.(ކ(s23.*9{r$"@&?`і+C eM#'x믳wRg媊BA( v(W2PP+\c+]s~Y'1y[=NwpLo\Į(h2<8첣 YwYdu)r|PBw "xJ:||$Ә!Cl2(@Dc é# ^V$o"3SN*P}LSHRr)qXJY3HkkWa.{N 9Ѕoܔzz!`ɲ(DX"a{WY@5CQZ@}'|e4 PۮwWh> %}8 ־ jΟLnªf^uY4;_pxi²-.rxMJ"w k`  cw@_݆ˈn "`уTS~@9 p3{0mY0ݎ{;Rw 7!tw]j_[j'&I+\$][8- [ _`K'7;{o!P yJ(8 ?(׿R1XA`-KcLbKLᝯ@jB^Qv͞P(Q rpOHe$z{cJ^ygP^1eNJs"ZYU#~x!M7:4]jdk6U~ Qʕb-mH5g,Z,A5A?R oWm\xKot|!k4S:o{;XkyCs9ƑDpQ3L=k:' ;:lOW M/_ǚb&-ƀ&²tǛ($v1U&APDZGջFF x ?;Sj{e.sf٨Nk@,T*PR`ުnިsTDTrk=" TE•?s:<4  r$3rh\]0Ձ;1Y-0* };+aT!Mss"wkQmp7]{J~/v,p]߬_B܌ؽ ~Ȼ<)nA˽7́9.W_c۟KtHTFO({2%79W"VU*}&a]P\K8d HAT;3#CF${!l^UꔮJ;1U= 1JFF"qkkDWulj;P5TĘ̻>D;bu?ԥ }'ɚ"0 >02ѕ6-KX{jh'ڐNlʗZ jnj}7P&}jO8T>m +nVLdhf"rؗ%WcЯ{.inu $~[C/AYu Y/,Q'c$򜱹u0jˁeH3c{ޏcP|MaRէ[ WZ`05R ;lL+zmb3Ҩ?}  ؈7> pa$Yw9 #dsncQ=I+[ Z/F1᩵% .Yd u⎹hzMYBqԕ"σkȆآC./q#`\N.נ7pqaºT6MİDgs%j =ʈ?K)p6T%mt$Ƀ;9{m=D153Rl*MXL&&6Gpu2visȾP1*[RSvbwo?ğ9f7,D0ᗺ'؏&)+ 3y); }P*3+ޢy &'ESYd՜K3چIiQ'ƆA($q9Rv"Fk|!v{lSc{nITb2wiB5dHVPE*SM~à&?r3J]?[gn{a\6w̼&v.q&=3ƶpӐ>Rmx_e6;R:jO2%U:G}s7CthOE3iDP-YY4ť\od$1աr+Xy\d3%_QNZuZb迤z?_>(IW#qϞ)C CwGVmb5[I!c3@~P.bl3z啋ox/h KbX~ʴ1_tKt5}ŵ˄Qzp S#@&:<A4b,枘$\VcC h@m]X~ K#037[ ݴluξYBeKQg摋ܶ)Og{BcΏw?6;$ljPgpʋ?TΫ8}+%U <"JPnw~bMܸϜb䶯 2;X h98 3_BՂ K69d]/ᙧ}B%Qsh,tb4ԭKF2vPT588J<˩2?.1N\ٝE$hƒ;_mޭzA92Sj31PY1Tc>|&HfJZI*z&X_|"{AGAJǠweh@[7V1Y 6?lHzZ=W .<\VV\TQǓ‘2 Oev{__hsf.3ilupijSضt)B}=ɥR(\{h˓,;г܃?e*QGg@9F* =ˀށ*oǙHV 7~ΐ @I'wa8%fT exvK)T+oXJCײ!wnhW:EyƥhշJ.|Ls>$,ʀ`tyCϿQesOՠq?aMz<(ظ>Bݩ2Ò7|`oq$Ab} @>Pfo~WB(376(ͦ/#\sجdb +ۄӧA*PHr<(6=_k?eObgaBCшM `h|8mkƗRegq11B)"9ώg*J?֕\Oo=vB*b7uf".VtcRCv]~*Pr+-dTs@{#k;ZR-iտ^y!譌bv]Ν{bEGVp_ 1. ٸ|jM/έɞ{H~u [o/\GPYeki}jMĖ&9I[8WZ+ƦlKB*.Se`X`ji0vֶV``) }Hq1&V OMƹk0#&1ɔ9!jAP=o׵Epa {?8PcMfX*Jy;B?;U^OG;?$ⵢ|Jj1Q3u}|B*/iI](;I1s\44cu6L ya{:<#9)7/|,785&o(F^ї릐csk ,3z(y!7R&b)˜E8q鎿AeԃlsKJ(5:ؽECgDDlVL!uGZehxM D\C!~*yH\i&¡٥Wh,:"Wk`oΑa(5Ba){ء{[ H"*wOyzk5޵Qu7B9'xGA$Lck'5۬o*|j@9jL1ۥݙ0N@X7p`++`SnejuO? #{0jᣮ$ n!kQ­P{GxDPNDޝ*sOO~5R{^!"Vxmm~ڌS'n5($1Yh&ȇꉦEƂ穇#S;EdIKl<6qfҊi pg݃U3 *' iN9Rǻ%*&0#΃|xwAx*1&> O3~.͍\@SC=4LˁY'IHN3"fo].J耉2l@ ϮlkNuJ|T!W8D D'5^i[:-UICICOg\_t/w<9M;.蝹є0( x5#:78 "LG)*rkYjaWHAq+W4M³]]}ugX/x)Hbr^mvsNVJ\q"K^8'mC6(_X-hw+P`}"m8rmc~>p&]Q0PS[z xL%ZR*\[-K5fW`>?Q#ԫ) @6VdQ~RUziѳ=`GY؏%Lhe\B:El\vtr|K?bL|v@*;|u5o{yA> ~SEf[:WZ0dʟb/2n ;11Vi@M^T5 PW<ǮP3ޑ%R6ܲ=M$듕80h}Zpy"ݽSb$l6{l>F QZ Jѿ_w*PJ,MJ$<{0c 4a0[PNsX+\`Vr̾ʳL,G~F`ZCY ҲؽeD ZJKDqD]Ȳ}<(cV҇:Ή;Й\mW?Su6Ew @W}hZb+ԣ}N #-XosmU]Щ3 P9 j@?8̟7ީȒ(ed Q`<& 4E>QKZkN1a4%bpQp"0:Jeof+8 FiHghAɹ@Y3 }Է~:/=u cgr,O)0FҪL9xX$ Z%5FO#u0 6/(i1Em(/q-kG0> 5x S\ԶtG6q0XL;HZ(})*7CAP|EFR>bOF5t&d}pݡ!:Xgz;7򄨃ffJ<:(&q!'A  98b`4^jZ}8Y~SB<NKp7isX|(NwgN$_^#/$"Zqll6vH2qD01ەݹ/Sd 4y^ xogkL|; _cM ~8A?#(#렄*\S9c ^Nu-]fRw4-('/sQ/ e 6^u13eiq׻![GW565a< 4O&bRwuZ$`p'%w=[e,s7 0{"mAӋk\T=`fC`DvO OZPshӀ؊4zݫ>0Q+~d-ASqpBxDgluczg/+ ?-Ρ(قr\äMt}(~ť,DB6&5~*֯JsJ *qM,+/O^GԶq;u<ʪm'5VYӵ/.qg%щН{CxWE쎯%$OϦذ3гo1\TРkt~L O"BS1^&"@Zw6 `y^_W7evWOx"~ Qm>h1"h9KڃP "ΚT~}CuH`"ȅw>/ x1*N莩!5\_U, mE{rpcz%$,uj$U,TӾSf7y_h2Tf2*fojlzf a Ž/tjO&= c%4oǼh{Q'{V;&iQF|<\%%9T8gl` 5ؽ"G^<}}K sѫŵwL`Ee֚#Jsg+s{Ga6S.ExsFˉ}(x^[m( q*$$5FVн0c#^Rouhx">ahmj2?I<֧ ժn{Y1Z,H{ !+fD^R'Ctv"3w r nQE@Ν"N휡w ޲4PFy\ݘXH+-}ڠKJ( ÊaK JCgxCxOD\_x(;IXũ71.#2w&`ٮ6zkIejO83A vN9Ͳd"°p>4";.@S2B_""f0J!gI1zHXPPnE46~+ɖL[mN$\ 8!41EXQl;ޘMtxK[~RW$K`p84TK xbP&r;u]"7DH qYW)!!`Q{° mY8ԯ5K^?|w.e3v|t;[^(3r$u+2M):w=8KX~7IURAL9k򳭴:~I}fUoYJޠvwc 4_X;Mh9f̙#{l$*}vKJmY->aBxi x=|#rM>$;}}cI렁c~Ⱥ&81ik,tw5JWEg?HFf,%}Z9K;v&1IUŒA>2&TmSh'+Te] k켂-MjI/ =hy⏗G4FrKS)I`'^Äہ$7M)aR ѭuHtZ@yb4.b_NmF%0IIjfY,b uu)Ri+핣/%x@ǗH㹇ӯ?6m n'.#.q+Q-[UE^Z! mjok1K&Pj|B"%/wEɐǘGc6 $65V`0ABY%ҪpUU f4=]9h«Hk3nH0=‰<ux#R#3]4ؑGV.k4, ,z"S' O~ȦrpւK>ݯ] 7*<13؎U?ѣ̑XAUy}Oy?S@N=N֬g o{5^.mC "&-bRurWAZS~$ѷbQknՊ!Ģ"| Nk ӱ^W#Z)p gN)ZI&pD1͜A!:QfLm&1_5QɓWoK_ 3K0Ƕg  q BP p刢Zan42~{$6^-cz g`/̽N7G/j`O>8d7%/شE5_ )6fj^^]Pq|h^ճ iűۯjԠpc80u Q8cjyZ-A"sNs|Q_6 $ E/\ʽ7lXKp-Gh˞lkP?{\ҹ΁) Nz5t b;d\ch+uɠ~%ol߿άVUC=bձ3‡HS~ \j윓 $P6g1ֺ-0&Uq9Z >NT V%Ug4vE a [0M縗n0-|kUw-'2_=n5)QJlkǯ^}B|Z(%r@QeI}I!/; ΕXP*=/bv&B)711QxaE%4SŪ}տVg:GH~I>=C ػL|0mgt(=:nb daPrUD|Gf T9kQIvqg p9 Dր0#]4I xyQ;Mau#t ?'4fP1b=JY8ei OOmmb ;  /upj &ߗPKN4kC1=QC{pT )7oHx wtY%f՛0I>XS"&`f΃1gִsx#6@6;,Wģ6eV/dЀځgNZ0T}r~%kΖ(L$Ub vf}+;.N|F9 rE9tԀ Nإ#/>Z8h" & f=} -|ٌ=X1 6RhPiZ`@%q1a4;..98:E*#}>g7<c?9b65p/,@>GSNŒ+ weU2$h #ߕ%l |\Lbʄ(ezՍ1}GRZ/;׀[z-1i4Z HnyBQxӭ𚝸p 6ҥ)c"9e*/}z-|%b,q!+ۦ||v-0`N8 U` :NJ*?fY2j{ T'O1brlz=zfFCuܸ ~ AfmCaq|R_ݞ~g(~&b'S6z_!{) Om^'c*9򶒳 jV:EIx׸T2YWEo41e\< 0$`G 3?fRT(vFa&zDE@e|5=?lAG'Þ HY0E2W?.ڒs4'bŠ> K!ZCf~&1kOZ*Q$ EklŏW3ٿEFF5"&pʅUգ79zs-Ve.BӪ sYӢ7 f]mborK4F e鋯bJJyy?n?Y݉ޝ)[eI8 &tؕIVATצrt=a>b$ʄD4$oP%N"έ/fDCM@n mj#Ռ ?t]ƓNj+@{G5gݾF?ԦI\q}jph\J/;J~ _èXpޙBcXDg/e5V-Cf~RxW, p`>_n˜r;zx#9ku!Rax#uDg 0d Ívԩg]OЇVJq$>E`&12떉N% GP hX \d#{ȝ1<PM\o>3 Y נ:U4wo@+>m8։sAHi|C'ˍcN0}m__cY^8mZ3iO\$ۙakh,-4\sba_O&jAvnl2 6U/ Tgb˵M}8K@6]n,:k7V%j 358cXfB nPyC c 4:TTUz/Pt[PJQ},AfoZB/抴%۶]瓽✓dM(! QmW!KMTpzrd]d%؄:hehyWȲQE] /ZZD^,f̱YJ_s`}  @ۛ杖 i]Ƶ&4>:їi wjDˢJ֖3ǿ&|øۣk9('Hv,R֢}" ]q?&TҋS:.9Z ;ֺt94PԿ3 $W|8?-3~ i4 r8f¦Ƅ#ߋ@'&_أGN|1^BIE"lgz"ɧ•BĬ hlIP-.rx.i  .`KPxo*9Wpi(o%SmsK 6Aπe֕l`F0n#0PЦMʨ #9RûQ+vI>(D-HA>;~H0ô"eR/;_N&V!mpQ=N.&Ƨq\}BvFÆ{"*VTzwɍāMǦD$VL,i Y$/6$J؜B:i)rf7עVIO-(@{G_~wjϻ*NGXERg1螋b+="+]KB9( A5碊a 8| G<3/RӸ̘n<_Iуa=y5(ImE ܟbz3h-5+YND KkM@FjIƊcsL48XdKϪaRsTN_4PFQOM( gҖ+HhbOi]4jg.+m* 98tӥAʁD ŭy/#9ͭ1r˺\g )|0Ia&@dY8OkyVhs~ 1jMd2d}5Q>nXeC"z9X$> ;J{;&qTj pH#U0k3:[1Q]eaO7uOK;IJ6{.sjva>{WtRiyn#Y!'GO\RݲG4Ұ:Pް4Nֹux;:[VG?uAvWM]rxQ&P2VKq ܡCyt*-zmޤ22e1airU| }lĥ_>Xb*l$V6.#lx:<ف0p40OL$BB WHڜOctdDMXVgLw?_Jiq380iVE~q<Ud(Yk\']o5}J~7{x:gvoqwB*ags~BAM,c[-%TU>. 7xܘ_Ɏ.t"bC~qo_*$'Lt'HE2P2#% -* =aڄˆa`D/v2?TnUTڜ%Vzoe;"mb3` Z`chNUR"NmsnGTm4Hb \,V+hxlFw4_+]4eQ9;xܷ >>QSULbkpi% h)Jڻ5Mo.MngתOz'D [ü^FOYM2x^$X=Uxrtåm-K0f[Ⴈ$Ic].wL7 BOW6 yhLW-U&+ LH44Lu@GZ %`lg g$ &x\cY)D;YlfGDN>*|x%IFn&aږ@,.еGJxa' 0Sxj.<ń3aӊ9=YLR-w!<|dTo'D{CڰнLUkSadL1zTZ*.n!hyzq?0$W_9/nZrl ^rX:At zst~^bW&迲54dUUM/ZٷߟMV#ָVஆ qW-yr.F0V]err8>l˲B4!-r} J8Xj&{>Zq|Ez*#hխ"=w|ZLμwA |&ߎӮrh=ՒSe-r \HPs6}ļvU*8Ĵkm#w@Dў8*<]J5zowlV0 .!S^,uՍF&ɓ쀇- jש(x í)P#Ƽ@ T'sU kPb (PtaW۸y=4}5#|GQp2'(i?z0_+'g`5W,%HNnIӃb+MKEhk-Feb˷5 s3'\d -̳0hL+5aF c(}v >p_ ^@a1/8[rxxv8+mԊiHG}3)zGrRJKcԴUbļ`(Rnʸ |Hj+0 `lIz8)̲9Q~;>uz_@_Bdۀ=<~WZl$ r<ڥ!C{J=IY*|@~@r r̯?pW ma6{BxM;߈ (" }|lrʀ!C7BcE8ur|p0nR_A,6}l?6MlCW qޢboHls(SCӮoT}ef vf^\}*O+HءBA mfJp2r%W#d0;nbץ tl;;QH_$?e8kE k oQ]q>[CZg)ʧ\+fJy%wlژ1(6R6Vm 6Ef L$7,HښKgӛ{)daB>U("lՑԞiTͶ @EChRU,5R^W??MٙΠeJ(G\HG0FIO- ԰GAwi&ՀhK#CV!J;N6[ >BL q'=8#\$m;5q-(1wIhעT L/< ýiQsφXtm]83ﶽ!3.Z]1/):!j%oqr౭Jh ~qb<6h9B-%~p~[_f|½Jm߼9Ǭ a9=3d.$X M-^ t~^6^+ ḦA{y/_ݡhAy$IӠbG)CG1hx2_[o8ޜ/0g2_SH2:W,[;,WL=;1_Qs W~[EE琿<^5өcmln |0yv$0?QT\T=h~1īC7e-v/,Qm%Rj`%:Jd#BDSV3x&"鎠^ q$e M,D_.빞ZlBŽ\aht,i:^;wM0|bj +T+:3;R$EC)5'}W'^e@>̛Xe`pa43<~7sa}@ii 5ocR~sp1\S^^{ٓY}ꖔccq QIDvs*T, V1>T'wCi^PA * 7A:G/±%ԓBw2JEa蝄{-ּǷ l<qsu#qKCA08sV_yY|Lᅟ*bdRќ]rt& #}@׍(3*qW(s b[*5 yP*mILg 専(ã*ׯ0ν L,3>i(zgivR٠hP_ʯ6 <O5miXVy2 h3*Ki9֘4[4t@%[v~Xz>q͖gn7Zd>LьƺJkyH~Εţ^x4EsTh4O!KBx Ȕo;U0b\(MflWt--P۰4q$bS fċAdEfH'tk@}^%[Ĕľ߿#)6 |['y"u'[tjf0ƿAZj;B{> |p2[ xl3S@c$bܳU(ȷqȠQ]lA6%s\;ݧBNM\rN-‡HCRk֗6UYCoP MΑopC{h >o9H>8)ϼm3cWwn*G7S:# I.l-L9lX4X;ɪg@eqxLq2hhnVv/> e>ڷtt5H2"eY3@1?8$YTSnf4 ƽ26P+Qښ'`Dš[A_yO]mXa#TwS|ol.t ѿuL%?_ya0,Uqݣy Kv;=mcHߴ>]"cSY`p9!68nejk'=t PN|H{l[ts &ڸGU~ +X=zΌ6(ެsX~}Tn>f$>[*u$dɁΗ!OJ:_cNu+%J~e3.QJs;r~,i͒B7O澌 : &#.i[ &8Ajw^o=#zfo:V;O3J7vhba8F(UDEeKE@E(!9uG_O-33Q?O M `a?eY z׈M*v[p|rE?9z%)Q|diG 1Rr ܗҔ$G^$oVh#`RSr}Fj3Hֽ'Jԟ<VҎ:Þ֝AJąW?%&#syn|)=N[Mw[I ^L8qx1r?ғhv|}-Sx(wFZIOO34JCg1|TG wDv,s^yf/Bd\8O)&gsӾHsO+4ݡ[k",egh?hzJ,^هm@ψamXQ>eAsh]OF-TT*A@6!GTҷNGiJ 3p؛)px\uI+xׄ=WkgֺJ1y龸[,f$(@RKa79l ğ#lOpGcNN$zOK$ŁQ a0@C@P?u!L!S$ `M /~ ZAر$G` a\7{}-[A>|BRh.KiZ._q=c;e줐b\#AXh9Ak{ҤضvE}- XL:5G]-fwL7Dh'ܥ|?_]1uܞi?c(k{ hckpL,gWbS׈@C$ )&jeۻ2lrHkn%~ Y-$6 &WLH+i :SAj "}˅~LwUlwd(6̚U~VR2b ?1VG]gc35YYk ֩{{>\a149߈ua %7dD2tߡZ4qZHĺbSz/ =w*8H]sY _]/E-k@kY /" [}7'c4Rj⋙ϞIa3sDk2KxB}xB<\ftmK{J!V[HĚb,1bwYokFE׋5[WmIKbm'O7L_]zgs6{Ix µq8G2?EJ6$\U""E ". $ :lSH%!MTZV‘R^®3mY TJVqĩvQE zOP?:vR8H0?C\0徼`k* 2nD4 !=MEӖUa-~Fr!<&Ɇ2k*4^4rRhtz JH\U?ET7=vQwO7`0H#mR1tԫ?ۉCz`VCL]UsC0'R dzCQb!5&1(3pΌ*WIo. QxVvOe&fj SM(I ɚt: 8 :P&!@R(fB$\IX , 8eo)(U2gZǖ?Kn6~]8㡏dXn{D(@e'| _Ƴ4Bgs Lv kŴlvS;|ٓ碅|~בqt xj _t(~_Xk I>aM`"h8.ͥqaVe0uF9xPcl|iA!l=s6I_Nw2cG '+5x`,gQϫ$*.zH4 B iNS@Ce3!:{Xdf@aVF3iČP}`Y3WY[ U ;]Y +Zu/WgWMOjÛ1khTV*[)I}V kBKIsM$zv$RHz^$o $bH| 餋$#jXǿǫ++8Sf1~51Q&(yvm=N GI+!aze|,n)>N?f+E{4OSbHV[`` &12`=ĀrJ]ՒiƼWVnPN ClOdNOROBy$f4 >U?$ rdvY;lU$>ND$ڒqA`jWD:Hvy^_yN,x;qPu2>|.ۻMwwԝD$W; &?g(3L:`ٹڪ}FP$H.b0{tu߂yTٌJVud7Ӌ}"cwhl;_ȃb3r HK@d<ΎfiG^qmZ?Ur٫qy뵼"H߂wHR :# 1P ͗j勜mga0+Y%oO'Hmier]2J<+?4S-N!Ĥ(D' "yxKBEb_o (..o+Rq7ΎC"Fy3`@ۂTI6R)I\B{it᯵xݑl'50%e%TzÇG}Bel9~gm;}fE6OvFg46H0A}ZtaYﰺv#Y i_B[q@D<4tlG歋}{WҊ@ܦL. 4&LPԱ_';k>q *bbkx^3l[nm,oQ:NKZvUKJ{Ga*i p(84KL*ϱNId+2?G{J늅z5@1mSe)9:,kVV麝\OCp5% s?OH|H%Ф(;#&Txn ӗx̞^f_e!h $HFq7#Z3OwZGJkf1D[^VbAG AgSi@װ}Vi\4$be#4C\Aϔ=O;}xXLDZR\Oej䒔&Fg{7\s2ȈMt(tdLyN^ǚ[̅ 5û%rC_=i8dW+igiX^ ^[^;j GU5Ԑ>O=P[) /X2[㻲9WZUY1^u̎&R*#UW-dK2Z (6vac}!My#(MMDӬ=H– }ɪ528/ɨ'p+٬j]Vc=G1"/R6gEDac76X|B3qD$ T(jR~{w: _}\"u~ZbiyM&=qA_cTAI)Ԙ:!3MI:]fA͗6#7>P]w 4_YT`)ÅA^* E9eweLD\IkdZ?_Yl G8|2zF~7Vhz&TKrl xK_0zizW'@|d ILTW3tmhBdMїf*] j>fч[k%Y?ěB nnX}$Th$#K2L;q+Hbē x=uPmQDWSVsِQz `njrBcٽ^#l~hĬ_t QTPF{)=/?zIz*ԏ7&7#1ؗנqC= LZGGuph^ZaFs'ieT`Fnܱlj#[~nuVG.edI ?xp |>u((!MEU(~m|qLZ HE<:+,mW51F?4Uϖ/D֮k}?/܏;^S Kiwk+ac!^b1%t#HFԞs4Lܵq %tLٱS;U/ "_}R0q%q gdN@Pvl<Խ0dVUh S4 Wܳ= vн @3b9 Yi.C4#aH|9FD͜Be_H$ ajC94{xTzi{¶,Ȇ9Wf7~?~~/row8{CqQr{DW.=s6kB4|DgP Zq|b ch{$gv\?#ђ'yee+ڵR#FrfY9{21;{w _,@BXzTI&DAYYͨRvv^?KB^ߦt&IfM^Q[^J?%i$M+W' T^r|& J*1:t~n Am p>]%Q"(9 9p2?c_Bwu}ѱ^[JBJ]Pp  0j٦4cz>٥p;:¾R] qGe"&ěRB]([+Z^|˄㸉U2 nuD%VuQHXptC"ԣt"&eE=2`[>6M(LI|X ᄜ{R&S4~G"QyhH}AɄUb 2;4:vSDb51MBwC;Y/$ HhRGKm(RQ Fƺ:Gv:aFHlcA5sKق^˨1ݴx;|Ƅ I \\ِz_xļѩ J.}i=$/Ahﲍ!/VaHYnu  ^V~8b4t,Rx|ScnqwuxWPWot|W 14]>s!طb8:lإ}gN#Zz'jއγͤO %(c@a01 XHp EV$6HE„lX@[Ic@LA4#i]``4&uP9-E=BQ X.5:l{GXQ;sCX\iiL>/[؀1=%lb?ɳ,ߑ᷍do.3LH67%?韼F.>Ud;^Ɏ ? >RC2JKH!蟬 3D4$5!4&; B7#KK(2i74>[SWA6O+k#_i|YhAbHꟷhcY&VyO^ǐW棓t{1~=쿘i&}j~w膴吴[!b^=x4$^slCagQק8K;jEm&xղ:%]@-d,1kdv3f-78QF[zd fZɘm-:X$R#O,$ B 'Ķ!CQ1?0~sS^ 3<XLK=+IkD a O)-2=2@D0Y$ؐ?i!>ɝSxٴ@؍;@l|wusPdiZt]g)41a/#4;k5fK_iIŧ1`ゆZ=pRz4JhVmFf0| M#=aHlK $yZ0N) ,vnZ}>-ؐn;>ozrvҿʏFS0ZV"f0<͢'Mуf8#ٞ<٠ظ>SP/05.u4I0dOW0ewcZa 1͉(A{~g))n#WB8y~ӏ[_HO\(H_%Ә?OŹʙNtj?_ɽ$g#@ftv1q}&쿼riny^ǓKF-'~=z;WRa7͍+~.7O-*߁-%uJMѫ r<9њP:ͫ 8RlDXjiŅ>n_8:eo3J++^78E?߿,[O<'sJ  :=J9`%bi SEM.e9Lùxa$ ew s%J,No/'$jcq\OF(zn]clt , 9!RKvAԣE0ˤl.䏼oagIZD君Q sY"1IC"QX ŁKGw=V"("F* H DR2 YA1T EE``h ȐQY¢ؤc"DUD,bV E(2 b(" V1GU "j)`1ȠiU wTUX1PbU`eW"1UEV{ (b)EUV"QbQF*:A +U;Z3ז^@p=.WvA)j߾ndbU }͵͎|\Ӹ2nat]??9: u@srϭf~.81eM҃C-GDU=Mi_3AiJI0LȐA28,蒷j M CS?ihL"o~ VP;O8= xbR?uںSW kJ[@q4Yx@`>Wliw;r='?hXOojRVnNL*\zGxϐInB$O_lH`HE="Dse4-:9\"fyNyD 2e&Yޯ/u"̼Q4!i$J; qͣɌ>d!43[TݩDݐ#ʒBkS{;8dO7" y~ ESsqi>oß=`fJP\= ٺpiͺs'X@D-`S4'$J]k t~4^Mgc@1`=ˬNw5.>jNyS ,.MţŞ7ɈRuj2ѕZp)} SLoq[v3kZZpcge.ob7׍*|κxM"yՈF ET-o60t a!Ñ*(TTD@VUJ1U(Tb(T7_{Y}[׎.3/GVdz d 3HCG 9ˆH(jQ>8\tM#\/PEu3//XBjʢW+ ^m VNjZqB c BU*42LQώbULo)pTM@zgA7Dm$eO!@;<$r0B4 B.UtYb(biy!KIM\)]ՠ_C/+yvgG:5̺U{0@z1#y/S{#`ɰ " `1Y}֘poZ&-C?`StwwzM.>|- z 3j   C@eIpΐ,K$,YO5Bhnz^*Grʣr|לP`m}i"ρWαW.neL׎(DM.q'7Ps\Fh|~ޭ̐ qB:O~>_/\/!E#hxMd9,ɱڐPVEXI,,ThqTłU1NqeWjcbs:O8}ո55C]dg`ov~ ǏUqmQ逥?.`9#Á$<#ݚf,06t"\*?ߟO(3VDcwBxP5gY *}~tuds]~.]ύU|O'͍#CAe53bfIK@hXXH3ZéB;#`Au37;jO#k(<:#3Sw-Ytˏb߯|6LIv!ĥH@eQ+hͽdYGkK+΀q3VVzŘ[ѐka GWH9>>u9٣$㖻8/@&˵= ){9.`%6YOZ*cV^2UI὚eU"oLl9q6Khu{Lu ש3a %sMx5-y-h D-YVTug(Ț_>aw-ӁQe7mOy6͔kG >S1f0L?[BhIoIU t`ha3B PO ٶ<^ѩ־'4M8VZ$aS5BuR.D @͈^<Lz*Z8 []NI'8ܜnm\壛Ӓb R (DQ UWubv;ơL8vL?}O~d9ob Rqw`(AE_i ://E*{#1ɝϛC:X=C)( _P}Vt9vUHn7mI jtw5ϫPSxŶlZB&g)jqiZ_C18S/1կNE/znoLe#:I3ؒ?զ.>K`oCCP25+5X['=EB;toY!NalבJo)9O]}iQ}el6lXҀljZ4{Ig4ٍ%CAbK=G=BB_\:1ܴ/#i/k4g ^Ո]I ^%itl) (&QBޟLC3MM-uTzf,Td=K 3Gn4Zl$hBMJ}v!ti`0 {%~LRZWC2wKp&޽x q77v./KzqzWaв}rWVtŃhd9$2pv\,!9nӴ:/+ek+f iTtϩ0g9DTǵ7RO $ 5,zU~Ҿ5K >mtYaэQ 9}"T-krk Z#Hl@<$vHOL<'!1$HY _XFi+LEq!j]߈y}/?ѬP?')MhH+C~{^ِ%؍]K5rF!IS!OTq4 Y: cLGǪGXav1DDX([6FW˲ 7|i^s.5 jgDﴚT1e(MfV!ൟ\ VJz [u„^܆dn_+}R(I*`qA!EP(2v7hdJLYC̩y^a~!vLra'njWSZtR\&*uL#a&0nܖ 9w7`Es$"X|zB`*AjqFCpPRw]^<5n=Mjc hA X zvG"0c8à?hq!52Ŀc\i6YSٟz)M{;_m!k[PySK6X!?t3@ҙ=;b5~ViY%\Mq8r j-@OR5]@qB'X) 4sp6|US ˍC*6!9)8 } }#>Ol`gkgwMVpޚyΓ2;64Y6GwZz֨}[];ʾsF/sgc$:HR;&N)̓Fb[=fʃ`hT{VM hj,rѷ5f SA]1#ֈk/I8 CPAadՊDT{^ .Un:-mڽѱ}~pb޲X.]!.Y`v$XBFCqafbaFgAHWΣ]/}FfǸj8Xrߏv ge/Б3oÕ&=yA{츳q8j}d}-v*+ެiyǰ VRJD{;lmm h\I"`ʄc  %:`^%˩IIb=䅒PZFT %9yQsbWS3Kdʩ1mY ] SʙA7YQ'4j9V!lEyB0M&\8?n+A9 8 m5bg%W7.&[E<zќgZ$/uf,EC4OTp!Bi;`x wGI<, K/tJpߵ< /̆ i3 ?wй濣~wKp$s@Td`yXhxs׉Aa ^CYnM}peR08!,FZ:#DjMQ0M@ t8;2R*mgSܬ Źdi*F.Rk'O{&l{Q4)o_m)F&zG`ia64OސM #JRV*]B1%e:WNgqgݞsc0w > WBֵ3K3J!{T^4z$ȍU# ^C*8c9l}̍_}5fHTٔNt~R=_ߥ3]XBlGmn&*)M9|dS0$M8~󚇫RdhkS\s1dq`+ 5(l3}{8 I70(z?\~ċMB:F?Ɉ:ct`z9Θ x#S>PglS'qѶ&+4nn<#+֩lؼc*6qbW > H`4韉]i{v 4fck0D`6m(I]j !kƠbjƊiG1˪v ;*ۂ_#qǞFG\R4_7[BA(Nݟ )"(`ؙw#qxo9fq+1xϯ#oQ9 ί=1^fbZK7;jv*K³(Pq@dody@& %|l}/=)Ѽa"K=$a^I%a3X-.=~ڊ גMf,zLywĐLd%o J{bmFOmda#rV?!3`uh?!X8M+ſO[fdKRF:<_pdd{fv3JCt=(w>yW^eF7DFh`c& vDu# MD}*y  e)c 2rjS5{U"Qٛk阓]b=fԊ$kي8d>2Gghh(h3~ę/=h?lb m/щyHPUR6k҆ TTML=Nutќz9`}_3 ^71~]Ԓ^ݤog$_y'6I͓-#赒ܫއGP/EχZXR"+Hhvyg$N=KbTDJ)r˕.Yc!}FJAs=t7S1ޓ1vD^w=8Lwř7kaeYY8REVot@قσ}'k5,ᾅL9zga|F7|͚ F1?47"(G#4T[LCGe;aÎ A&&i_Zr#~O2;?.DbF>"GK5 b\fΖ~36&0ў!5;>A'/^jaO+(i)tz|5Ws3Lq+LZ{\{$"В02X飱! m-sMq;"dnZK0J gssUxz^wR r"=أgsc5~T/מK1z,m-3?ͮU?~ Tz k2,VƫͦPLc[W2G`gJZ[nG7E&Fs666p(iOL/g/;j(lu 5K ~+FUP-"+UC1a2Es)@k!A,ְ-sP ("C "z%42-ѬH(гJMTb]CRc(ȯs|s)nފgG0%!JڒHR wOhl "}J^*E(3!O 0W zJ."_X3|?2ci~Fw# 3R YlGSƖ5"}<ލ+_>:U]Zo^Q鼸ty!895$Kj66j,oOw68<`?PLXxa)2®V*`h㺩Ncls4soC-S\?g֙TdiVڑ `4xomQٹs̳%vOlT+-ҁn,?n_=S#xZ]T|%ƗJT7k @bX?nFs^kpP_ȣ~],]jhhH[G&\K\aaX]b{iSJp4.a\v!P\pF =uΞ RSSĂQ"OTGGrm}\3 Lц> rL@)S5ص}c 4_/swl{M?si1c`T(*ǯ,=Su4ycF\E" w9G1t^ef~'_SչeObnOImA،~$ + $݈ #4%$e\PE>?ڡ{!@B?X^4_'U|IeOe#Na"1a6$*Aww^\0 Ԧ` ${;DfNֵ~Ư5$m,C~F1mzRZʈg,m͂ޓ*v0a\ٝq14N^;c{4gڮSo]VgmcD#~vq66Hlr+J@ .C^b" O)FW$xrowTgKHܲ7At "&H2{9dDEMIL,yѮ\~ɄOKg+),ɿph:_ "% uIb Pc$@h`)/שt5i౅G:φy%w}m@ tBY6>b fyp񙟈XCgR<3:rԇIC2bcKz fܟ M=U|ۮZ=UR=YF>Я#BlMCe)A~ԳB>Bu pzIݻ8c-e4`KmA8 Jz{Hn$xsҝ=b@_|m|/(vGVV9 [tϸ(0H)l+KUn 3uK]X!~0rY* $ ~ZpSUXt] /ao(^?x옒Ul>LXŅE-9HF6"^Y#'ӆzd$Ÿ ߟN W1{W&4|@Ҟs[5 =5&  !*zQ&` ~Wq6'hnг,L䤢 Tl,(v %CG1ڥ#Vkpeg:mԡ[ҋ̔"ypHMA^r"{ g }{k#hab&=-+l1FPGQ=yӪ+pv?_zfoOHL i?N9clt,)NXmd'415v /aFA6ߋ7p)ΤSnz=wW}Ա ,Y>9VC=iPbӥ⡽&l4zPMuR}K8_l)*Pa 'rILq~?k>"NTёe@q𿧴4uJ)F-g~;uWkFHZh{hc5QI|5iuӓ`Q.(SujhJT^Zs 4?yHJǶyJZ>G'[Z[~g\w,&|Mط?keB+ *ߥC]ȅד!z8$/XWܔZ ғz>T d%F1ћ O~&(6%ׁݳ[<-vrb0~ NoCcQ 2;pί[JaI/&{k-$̴|1-fq!kũy}#! k5mxb`N +9U,E\Mc:X#]yK6#*L(H-GNg%H'^{i2jWSI<4=us~|UTfb ȡN{($U%MP(dM9CpWE穚N5қgC\i0Q!._|{ 0o,M}?´&?*1WדČz#C-PC EANK4N[$fyY 銛h4IYŐbilxLp_O|l3Yo\ p; IbA{rPA+E~gƯlk?LWL2nLhT'% 5}ƕ+i^YzBBvܪ6$u:o,VKQ3+x};xmTbz25jAcMmd݊b^./\qT(Sdq&vZ<~bVQ|a,Yf30`1 nzę&CCGWs /uuXf ߑ$ʍi}YқC6)7?G} C"vgU[6r{O#MCUHYvM(qMxMܘMXT@IkNsiJ_T'RŻgA"/.ޞgCD4,Jpjݥh5TB'z's[Vr1V ]_r;YZZI3LK 0k80 gXXXOGhlj%>1pq;>dq`@RQNz._fAB0LN>rW.df%}'Q& W:z]1܂o^33A=9F{ڄq:LN@C< $BC\Lֻ'4Zѫ0e}MB&nCSX1PX ϜKDU=j.U{N~ΫH.mlJ\lٰ B;ËtGx|#эoTHߕAw_Ѵiy}!&|ϊq83@ϋ1f)W5_aoVv82 c>!l IϠB&RԱ> 9|ʹm^!|J ]AK'bp?u:R%ʳvWu21 >#@#p )G^* iwdm8k} .N I+kԏodk#3[$,'Nb)5;ptD2X 3 ztChȀ*ƀvВj*7yy'{t$b0j* o]}d@f80a4SqpR6b PB:ALLܗfq5FIJLg #(1I6Dl)G7 E&0KGJ}{K׽@<҉<=Msc"w3bwG'rzkdOyw k|T=Vex*V/:+Q487CF,޻fSfr*nθݛQt1%-Bٌ[8X`8kupֲZF+zrh] 6tq٠1u1?F5AjQIlӚsNh pbc8eTe"ikٹWjˋe윩(h`m.m\~\fԢNScT_Z73Ab %kJ8z?'jFUb/m'ҸYye(tirx:tڥ榚6y $bw/+ĜIu!@XnV 'V@p"X= roFXV`(ϢeX&{ w^ Au KS,1cQ+@E &ħ{ITIJ\0)p`9b1 X,J2q`Y,P]YI^>,/q48."VXUU,<^峙5Ol_*-恡!%.χuFy(wtЅ] 1[c?w4$rߖ ]@o p '`hT2@ 4obU-\IlR2a>k#=`~;rv0*VХ;O\'Ցc˝PJhX@F,o{v%]7m#h$x)M& VUZS5ҭVY4-H.3xP~ibTp]%Zسɩ2"h 1lE "TXG6/tT 7IrL O3 RS:j9Eubɨ0 |K@6aW$O]K\{x4#<1rOB馂.T6CPW/G^ǂL&a ,42Q1}!sҺ]>뇍Yv3"6S7c/C|n⡄_4ܯUm(tS7o-UC Hik 55њNpM@ ֫c#"5Vh!g kv*E'4M1}g^gOuyZ8};~{Vk}Y˨nm)| ~([`V!!8ZBEϙf8ғf o[m ` ʾNSVX"0jjp*SAVl0էI NjggMԨ3v:NnP!!gW>†$$r06s$[u3\M3O8śXqBFЉ $f x\5'I$װJ)S.9&U_)Qf9唓Njÿ{Kubi-qΐL$h H)f')D定M*j T\TGTt:4炃\ " xnUhyof[F4ͶQ9[X̪2+j\H}dH[m5sd`Yg8-9g9Ť~DNM_ ~gɸuV%m7ȇFOQƂonv%b:rɒFQ0<~9^uGS^oN|j4/`b'L^c~ͽ ",ex%Fy|wDr&~AdLd[皪ښ|ݭPZ@&``8=f\` ཰W 3|_^KA r&f2)Z^Z Dߙ.Kݷ_Cnrtf{~e<2 HX'U!ٶUf\Zv/i߫H/f׬1zF֣usUa]Zuϲ ̍A}`L\*[XZǽ YU2@OWZ <=w2o|VޓJuv$NMKKളiU^Ytyp"&F13gcyPq^un&y%"R3&dm={o~s1[uB[\)J ʻfb=ƯEE(R h_fҟ.uEOāz2Q>$P)Q=Q '8&xiv̲`U\̪p TGxI.>Iv0c%Se!@Zؒ)& =إ:)q3^⎠<83? G-T bi`ZU zT: ]S`C?՗*-P10._8C&$oPSpYj)FҦֶKL|f8o .V8G$>@tutE䯅Nȹ7^If=E'?r"%Qi ;^}\CTS0:KTy~Ogp~.X:}oURн齒H2blt$p yYϗA.1|JҩDgm:ݸ-#(/sfYk$ hnW ٸH#SfS602KkDzbxb@2{Slu+vR(]2-A6.-I" gfˤ1/֬ Loģ"W[aZزD#4f,վ,vƁQzQ>e]!HLj%t, Ka& gVuof};.5#Lgňw>%1b91 ʉY" bs,5 , __Z zo7˽r1f_TT_j\B:N9*GZׁFq8g?2fHf{'4zn@xx㛢BN'=>d]K. %EW?`G(8 >x(/!΄. H22#_tEoh4td#z #=f˧t8|jh $r8"L@z/h;Zf20Rx_U<z<_شoIf1MqqEړ'.7mN.1`uKb,yYn)Ѕ\O~F^I/L7 Z' |iIc`迲]TT둊7Pt-ӏEtEKL.#r9"Qt=P!XӸkvZߋ#A2P%,iN hQ5l=`(tW&.E|B4U}klrB6d[Z̐-Ap^$Ⱥ{^@eM?*BU>[/{̴2voZ4i/,˯-=>Sx)[M_^?DH <; {vG j3B.u\ s?Y0C0`3rF<_|~Bʼq,5hb9I$&590V3'AM* B[ː?!0^ǝv^"OOǪ`o)kI@8 -/_첓mw _Ep sRK/K*:_~8wXؠKVszpj=;S緲wʧd8 97ܾƬ&˛Ҡ|h*ldy >=:CDBآpp4•oݮoV2 =2Y7aGOlI},B|xGq:K= XDŽ{>GUxT=!I8߲NtTuh)%PFvbd2`\`F c,[1F gFffvƌ39cgIɲ%mVmEph."b9Ha )`mŭ8WdT|hmdpwgs0ƓjPʼYluͰ0%3%9J* ||ysZ0wW5gYZb _/QY0w9=hjqhUY̥;+dIJh;3SQ@'$O"oT9PWGD\-K`@<b9_5BpXms#3v2Vd%Lfg?~@fcy7( 4b8/|ʆui3┩a9܎ؤIU7irY[>s 07s5P)n㎏HϦƜ2z4|j3R@ i|9[e&>;Cs$O~{bseTGDž#Ht(456Yvaa1`3=bVRk/s6ӯ:Yʉ 3c֪%SH bHמ$U |x$f5=_Mn"vr<&Ժ FKJ2)>-\ǕbRa,7/zͪ4Q dRQ4P6TR IwS-0& #VfUBGJ}](yaZ>ZDR1=ᘏ,}/z+[KЪȁ `}>TtTmB`8ⷡ4c3|]pAg !-6|zKrZ'E'Rs4L.J4u-(_s T?kFϿ^d~6a84p"6c4*aq}XjF E$sc XrԉS}E1D`r#k<sDa!Ojb1̲Fw' W߻ɺ[춵en|ݭlbJ^GhK8U{.Uv˶U5&jq%3X6T|{[. 5I6F,N\4෥{ v /۠H ?sLK +NzX60PjEK] ``58׮ߖ W]c${VXR8S@|l,-uv ~dd8@QCy..c-Lv,&/cKZA-T4( *FtymKr]]fk|ƅ;[#T̑2z<lX`AY'EGnc߰so/mYZJŇvPs2V嚕kqo$iP/NsR62RDMO/Z~UiSjR {U+7#yl-Ē Kry#O>[۵hH.*K}W%}>4Mk]Fn|iy5ᨣ1}Qo˒:ӱ۸ s+^ <}dmfEթ~R$\EPei˪iϜwwX%%XA6P|Ԙ} `c op ~@EV5޾Iz8?gׄP9qgrs/P_<9?ĘYh2GNFF>J\ %n 5켆m 6l XZ]}ҟȵh\s9 ADh>^OCSta`OfvC}!{e9H-Lqp|JZ{%Sos{ [TEұn@eR@>ɧ|K%dke \Dٜ*&3NBZd§5 ?ԣ_K˟QUDLZ ԄOfQ+lСhŻ'#^˪ɑf͇U+N2%`6Uy.8םaSJ ԃQ(b2=0pg=pl+b5*܊9xZrN')}V7F5A&h"45 ^/:R+捱;,5l2~LHNioER*<; Q4Y " ʞyC!sM_.B; wPoWoN>m7@<;:zi`zfw׳\ &vMh#ySݡ;q¥,,D]=seN\i3qc8 o]A[/d5{&e9X窕w;:j,8Z #21  Z ֞]F?nUwZG`0eΡ$E*RNi* So})]|sz)~ܜZA2OSΫ#o?JI4\uEcʥȗg=Sz~%95^My)m)U0}vd:‡_:]jo{M[1gv`{ ?dSAs UuBo3?( @RM^)ZY^AB $QJ핡i)0q-Wt %C)e_)>C|mWX'@D P>S9NޠY%LSQŌ/;{4EsIdi2%qg RCSyvRCcV w0( ooR8%adMPv0Lev{*ѹj;0xnKhg0#wB䱔8r&Ύ.C("϶ ꥊ`mRBՌK1y-t MTKu_ v4LLeVj | IMя~, ;ۆERKkD(IjJT䃎d0@9EIh9]I-r]B}/KpZ.f͛ྰ1tHn%&=l`I=bGڕj)颬㗱^MUʜkT~S׎aR=fAFQqaRuckN %N` 1mx2F'8/mxW{|@ǟi_P3 x"`W-s>}B1?rNQ` = Ct٬wnԧnp bdS3-Y*uu u;^ XXig? =*YA]aT3a&B}PZeRu3@#>aF1ho_W:Z=/%#gsq l"Fg򍤂WeEW6~IQEXssB0L#G8}3ɜbk=@99f-)q e][*l?W-\ht!,LeWQ?ߟL l= Hvk(#R!"萔F:?b^zCH*v4*E ixb p]Ё#1#}$+#ӬLK3!Ch;h&Ks LEc.DC_GYdgxJwXp0>#^=w'seW9=d:ȁYCݵ1 B<_"vq_oVx6'#@p4 0Bo,Q`"ԩi Z 5Df5j^!;).6|K4b;E"R&@Sݞl2S${tKwh1[Out҉aar%&a$ I#_yް,R ֣@SA8IdJJhx& QpNRg3a=j/@(V2<#ID_p?2hHѴ~jJy#!\7OqVNk~-k Vu$QMS{{a/\wחԋgogYloப]vC~XyߒH<ۭZ6Se͂`?9~[: >sN34HT.H}F*&gX ֍k%[yoBXyA[\VB_!1s,\߿]lT5)zdpD !&^, nJ]@xS |CÎ84& aXXx8;]t}h5i;bTh`SuV ?9ǭ @o(q ԙUs׳ޕzYDDNTmSF҃5]% (XpOӱx-U&32 !< mpcwT c">DLDQY}%TG 礹\STN_O8c.FZ9?P:xeo8_TpQANiAMNVh!F4y]d=id"i݊=_lFjGx\|ͬ.K/mG,myƁgBɭg;&L0yOFP#C%^iF^}VSQЦFOgW<$ؾo#DnSZC L$ sl٫ }21/[bjaCjvHÞ}"ok.hcuV03g"Ggv)Kws$Q.^ˊ<29b(Yճj RUyͻDZ3K.^A$`4βP(V0SAIt4 ,0U` eruۂ_Y.ifmWlpQ4CֆHbG}XMg<:nmnHo%=J{cPAKY+TkI#N|\5bW]Šv#]ǫ.߃E]]%ʶ-7&|e1wriܝrog 5$óv`G+07];<5bq@"F^K[E#È=Ir{敻QȨ޽{69K8z | Qon?*6 U :Ex=ۘ7sβٺ}`3{҇`#MtP,^6EP9Eh̷|lM'f]wSa ~daߺ?b P"x]dHv*k4Al$̷?wLeDӀH 3l,smMG)|AEyu}w` [2N$kA8WmZw)&p 7;WgpGlSBএE-hoAvv$L>D%ZK>kN/꠨# Y< ZoMbK+Guyf7;D&`4daYk7Mr-3֪#f)3k]jW.vЇ_KvU KVRE?a)ǒUSu$;x:mQ÷;/[D } :d#-OR._UVgY&A+ tj*6_,3_!j->%0b㆜ Miv\ qMpR7+ae2 KAW ^_?\dq=*~JNpHa9zyYldq5=f%V*G_hk^?IlB:D~sjXJ3)R43vͥGn 䬟>K AO#vB,o] .樐_Rb3 i}Um]U5nE@o2;v£GsTlf!vAJs:y8!W!90{雏q8ДU8cl]~(O Vcr3_Mƍs/x,q.E 7 v7)1 gR>]%$'dbc 뙏^_"e0}JIn_3_*oI_*qGO\8atD/S]k:V-o~<-uD4JB[&9H5*! k MYC"Rv Dӟv )m\~:hݜH>ޞF钂Rm[| ^X\}'=}&h9\ ~dM۾kɶ[eV&Ά7k!7S|w=STUTi;kƛE*aэ?c]?ѐxoj$Wr߸]۾ȣv!fG;y?(]H&kE=.z6D;ȕHte_d?8~VLbpNb'3u M]WQ;:4ig2`rgim"}{f8@ 0}38i ;oey,HB<0`fceTMg\Q{ٵWio@s?߉Q2tG:IlCVOGF~1~G4v7U3+|&*߽Er?mS;×DOS-l rr^ զ;imjL|:A5F S<OsrKP]{*Z(F1Jg=wѱ]KzL8ݧ|3D÷66Y Ta]'3ٌ= xMnGm ']Šj9*='+n)͞cuk!#ࣀrs1zW϶z0RWACNJudl)ij c65.].`-4ʬEX$2P eba^q}5\z/kYq3fx7M1T~ƍd,VyL:ECtvJiM.?r綃yO6Bw*S;nUmb~VVp1-Wr$q/s=Z?N헕DvъkJLWjio%čx5Me BhRpn/0ס`BOiѐSw21ܓe(Lw$w袣=2DzA"@$8H4_MOjdC71a*?=yu:" uLTʊo.wB8x0@Wy{N> ^N_F?P?(]*ګ>+ v JA::t88uoWvCN*G N# 5CH ~'}$CPo!]Z*0Ҷ3F!>vgy#kg&Ced]gq#Y|9qx_w' 0+'hx>~,/0tz!ԑ*\0=xȓ(dm/8|U;fÙ5pbk7vΌ8.S-kR`@O+]Q2=W7x)Vn@gZMS*@kȽLhѣK/‘0"'qIM+*3?z.">|OQ}(PGy:R^buZ%Xޫa8Ս Pf!W)&zB҅Ma`E9볔@P-aaLEQAMÙMrkOx>*|-/+3LeԩyFp\?8խn[7}4Mgkh蟜JSM= J aYH'& c:G;i$N1sKs6I4U~UswckuۏM齸sov~'/mRzx9.԰\J-nfc۷o#!^FT H`Ȉ(uO|Px]cMC8q򭦡"=GϮo_[ N{NØ@A^GGl7`iJ ZFP"EySqjG#yrrVS(sCW؛[ʌ1ӻ_*cKc[l{S 4q,oqANcOkRҼi'XPB܌}D4:J`bಊ! G1Ag5=ڻq }}Džʇ{J*ClA:C`6uqc$`UYbQb1$sAJVr-P_0 Wq~Fl.b^.tIHbL& IpSix3]H V\51R@]P,( ^U *f %zءȪ8Q,TAL3[bh#Z=:ڂEhWL̉;ڒ/Nj+!U_EwtK0ЫHi"0slӬ"KSoS7ܒwEd rWLu(Q T2ە }~BK=fNe W":ZJ_5m|L6@{TxSKɪn)3\2ڜ،(gξh)wm)"d[n*}Tt>~ e/v= `I4SeY)ts[b.M9!T,0zO߸L"LM=I(4`K{x /*eSɍ2n7^1A,bHdfⒾgQQ-u Y UǮ'BugRҥSI(ҾSLĿi CkTDl;xӿFY .-=>9Ѧ.8$>YP?p۟:ޙ *}0۩pogdj7 NbD{j*Y־B-&cC c|/g\Y|_t7w4K*cbh&)(:zƇ[[e_3F`DbSt̕ ORbъm_#mxs} d*aaNͼ:aCwۖj÷O/K~?cߧ_"݊Oɔ~Jto=tm.F7A1a|0d_{V31Us^Jlns{/\V<ʨVP_jC<%Eڒ)'˳*3' /QűRv'K6e:D&_6[M8 [Vڣ)b?,1!oa1ꮻ|H"[QG\cLOb_՘hw2n%0$6)che%9KUܕ&?od^0ǤiGcy:lLpVK?kL͝Q#ݟ!O`VL֌6,hș1SXBYuMq*` .54n}qdejōY.9+e|}T\g@;/edUgrDۍt?-kfdtb2~[+MԳSYmʣnՉ_!2Q{SkzV2X-WJ$1;k-Ku 2KO%S-0T̅O$(fI~#zJͶy&/hYc6?xg5B"Αܨ #H WT8Gz w+ry$Z~<7:$}"D^O-)V6Ou%P8#il"] 9eYOEa-FykDn/&ܓPNkNjTO?_͔L>+xHVI{#z7dg2`ja j6濺*zk/a3Qm}*AA=[و Z絛_8m QR_kg^mj׎xܵ[oY"+?n+Ro>c%B/J Ǥ6SW y~vs`x0sהc)V'?X8v5L] 18sendx^wmҾW&XÅh";Kdowuː0!lVӲXRTKK!-JtV7PMx|by;m9PMr=ltV_md(էZ<Uz1@k<2j"9`$,eS9 Ӟ(>`Fn,wO/[XLUxZZg8 峭 S]ar^.]ٮ5';tlc[e0{oMN>{^9J>Au?G|u4|-sۯ]־w > O}Yqt鋧S/=ihʘJ{GSSlqҽ&W\:>Ӄ$5Q*I֯xB*YD?GE~} JܘݓmM ĈٷS8ϝZ%|\e{ȯL6+_zߟDw} K:HYsMlY5h$.3YXmZ`Z!fV pIQ^<j;[#STE!?N U/v2Ri y#Ҙgy[lT߯*y`šCuq^'XT@ g/|UN_6;_ :(oRc赪5fuSRKl$5Xl7 $@ ePZRXT67TՁsSŏ ׊I,Ge4_cmyk0$ylbQ{\'iIi4޸<] &_ lÝ&nga5C&qpwm'v֨߄%Kܭbyp_@j_>PbC.;5/0LF" |aÐ+="1#T88 7]_4j*rfcϥ6ޔAFu)iܑ <nf~0G]4!Qh7Id"QxFdp] 歸N ~k<%};RPA`ĞbAW Vja`Xa\C9.4sC "o^8g{w?׎RqdX(q୵ν,)SVMݚfJrԣx3S6Cr闱G#r>V@.nB6ҦYiMz}47Fn;ݽCuS2lǹ. %=L>6-W?*%G^yiܟUm#MdՏ*9Ϣu^]wvw.Sϻ$[M ɭI'E?-%dAψK#{>šz&R{~ 9(&ki."_5$Ҝj>iS eu#êW+щy}]ևZО'oju_ӢRB> O^htdP2 8u@! hN^$GH .~ n-J~#SM][a6 Io}_m?rb/Ǧ"5޹>9ܷ>-?#svT/<4 y_ۻeBxS]E}{ּip՗"T"d+ b!M(* s¶vr+ܭCY{FrrϦʤ"?`8^.}<($}>>%iXsffm'Zg~v[g~ǵ@iS4Da{GL}Wi)~G b[;l'_ ^|a]Z*zD$a90?YI ')iхβTdKON{Hm0<6!0}@`͠^砘BAb*w-M2F~*ښtβ,?t3<=k=@"6zUIg].RlɃM\(c4-'%Fzu kaS(&=Æ-Rz6BnnJC{ͽ~aOM֗v RQ~7JX7]&//OtŬ.+o7wY9@'dHXɱ91qł$v?͈rEv{=YR7xs.W%{%uѮclM]}Y.X*&ΡP[4(Ժew{DҵTEff赭KRY[}Mjw'Ȑzך#98! )CN,ן:X&%,eL #$@WleьԀY^pHIQi\(F1_LN ߷*kk=xTPy ݩ2l!%AYap -K1L5ً3$FTM`hllVX\K(Ha(mӁO!M i/PXDؔ Ro`S#UJrwh>֨n?*$Q&UƂv"g95_n-'Bhm]5Rf6.t̾6p 9˪*GuC={|GL8*OFQQ ~ck3mn QM Q_cb_~1'6O="V`9NiSĀgaBE*7Zd82şffϐZȐ S Է6ڐN&EtL.BlI?%`JFG~FP(͠XbOeBP2xcբ܂8'fӿ؂?9^P|Pc3OL Gϋ: q Ynջ>{7D"0xYG-ra@KuC gg\Ȕ'C:u;)60 d# #eSi$ji:NbXV0d~ћ885 +1dO}WmcrA𙚄Zw'D AEHilpƃCM_ZLxd3:K=ZeF]hNm6w \R;&~R%8&Q :b̥1+M\Cdim6IK!@ ɩ1->p@1^J|**2i9,$t1q!=E.o@ p5^| g=Y.ڞއyv#j=ɝ GWj w{;b=1 A p0SP'2hhLFye}L65BJK4xO \x Rzä?x*A3O|Y4 ds}#dbh1ٸ9í<:`Ʌ830ږL7Ѹ[[aN !>>!`&H!YZ-hKQ(p?|H¨Wa^* Gx0 hX=tE^Q{Cւmcgo: zO{> p[oXL|ގ{aV[= 9SVs`뾭;Z<آ̔џwev _,i¾in}gQ?$ 0T1{6 ic$*B0J0 0Ҳi+ǯ;%؄̀{wm+ζQ ~F4FgX@#bpƽ(|ٴQXqJlRF1J '>XxtT:~{gu@Ǻ?cpK<2#oԮ4߅i<,,ci~Kg?D_r/SзJ/oR"CÝ϶ohjV Vt8}8,RZ&tg6R6QЁ#s0?PXd=?16 jʖg@"wic?y9IT:hWAӶ:O"EPhX@qZt] 5DˈQIC{\{{JvG]9>74&kRԷ€HX6xE_HUu3CTd9:JsGp..̾&9;tVΦ.}kE2 צѲab}(pL B0^1Ԍf~RwQ̣N,յkq|BBИ+g3m)Zu{}SI-N{g)b-τmWBmzqsFuЄ8),>|6L(bTb%D4IkrIQ;PW3HGYx.,MJ22+f&iْ*ƄgR[QGt2,(wJB˴`ऋ5HfP}8>*[&:z c_/hYx%Ic JJHD#so0-prv;|ż|0rF/[C j~Fpa|^5' mN5w 'FG)\$sRd`4S6t{swpG /LSO t7Qe7Pdg)>{o buoI+}=E ZDWbz!)iHM1w/*c9y'Tĉ˅Tbl.UB|U5뛾Uq2W TTxb0ާS.j-?Ruˋw{~ŖXE'>:ޮ7e=gl8ET:dT=q3;̐LFF `"?i\הP3bCky3w E>ɑ("- lWq2>cu(u =ϩྙ>Ӹbsz m?Ȋ&C] kaUYthFUx :hEax* 7\a]vڭǡ׈;]3Fi A1Z:[Oaئꇺ=e–>}6c)hɻ ZC88(@.U.]E`([(b4ay@yK׆߮,|CuXɚ\MAPd wt퓂$ ב1Xq%G6,r+au;)>Bjmnv/w{GcM$ȳsZQ2Ɵy^ ){]!ų?9=I%,Ո_@z4r,VSO9A0Ƃ`0ҶB)?:%_Nip}S{~> GeUp*#^~?ߘ̕^ޗˌBMn&s.D&!Dp֟"Ay͗Jb @`l1(P f 4$u&s?v:m &a:s6,R~M/ŠaH%֦aeA2b;_ j >=G[R4I0$iڽSvd@95\DI1tFM*\Nhg/`QzI,@cT4_+ 5[uI> oo (!'3'Z7f%+NaP_vL;jũ r1Jdpc9Et& C3=-w=jv-ji_h7e4E^\ ۺ|Q<6fyy<޿vǍ7_SFf㉚M71`I{U{Z@V/'wo>ȅ?_A?pIOË H[s/3Mo}zi^ U%|FW1R[d.i0Ɇ]b1M);IM;_<1 Z_E&֣FyްcOMT|7.UiI/H=m"iSMPBD[Nhe0&hDôR_F`&lRny)R?=_VP޵ױӒH.soO`/&!f#Su)QaG#l7/)il?K;3=Uu_Zz]3\&n6w,QvaBFUo=:V-[쬻/< =x~4f FD kSNlڠnWk-^Irʨ{bYz292Pv C8yj(ay uPlxxc>n_2}.O+SC?Ì!{rבx}ԣQ0TE\G!ҟ8(7Ny>ͽ? S HGHE8Yt',fJ-_uu\;ˇ)$N|O`ljZXpuȀ\m>h!ny;ìw^ >>~v_%,g |ǝz7D@kd&D@}ߊ/y #?t)ݜONLEfo!-TXg0׺_륩U/l~Y4Zwq8H?B/8pݷMM9'Noiঙ}O%ܴ7^SCRH(V1zZ?GnzIuɘvLk="/9NػJ ʽw]9hswYqmscr*S+.'i4ؼ!x,HKB1["rZ#gqAv&Q͕J 1nصɬ4|Gh;ӕaC?UaT+[DR0=1EXzݬF*%8)=najr4c]m_~>KA'u:чU>KFs. NQkǗ-*3.tX9u,g2UV0(ZgUxn5dX|6Ӯ~w9!e<)WAk[WFƩ9M$ $I+bg|%WTĸWP=6+TfyK^yUg={If jF[O#jϱrH&H* @*ֆ3"3Ll {C`:D&{vq! D}51 `/Izj`&{>(~J~26G`ف+`S\UϥO+gS<qM!COT\*lnl *ΤNŬGqvd7s9OdѻԌaɓۓv+݅_u $r"$9'켘ڞϖoz;k3ZzDF3%HF=y#[J+ZW,)e^tfϺSs+_֤ݱ乜䚷9q ^r%z}xUIw54դXz 鿭MCh3}&Î/WzQLmY1N)k` a>[L{.{ OXUç vmuJɄ_3+Ôi;\Vņ6D-u-Ix *ǞKyO-םh9XD}MYۻNB ׏]]q,$Yz}^t#7>JXhY<* #jl~`tg?"3>{lZ,Fcot8 @b2u޸o+}5JSL{,=rk Ȃ=O) S+89TeמlZoy7 P{@kuڵVo -1@7B9qaFkfd4h,8JΞClp46DCF,$S%L(_Zfy` ƈ>Qh{cC5?M9s]P(3C]cvC0|Ė ߿gP$yH bDB!._mMhZF۶iꚫ]et=-(Ri]gdN YS$Cr~Newٓs{ x`ײWg;=VOSP ]{V_ xh?JD (8U젬VII{ggSkS58l#9@2 rB˰:.:|?Ă SNsEi6=奈n jxB@rF78? ?r~S]rmy^RK msJwu..n7 wHIt!V "IQq)+,tWkEᾝds ,u3C30,r\ mח0[!%0$kB2+ wiNGSjKzg]5uz~3q3N%OߒOK9s}(7t"'9w%]Lj :NSUt6)Bm"M9v~Cw_ *m:UZ etˆCraY׭J- i!EsDTB[wt."Cؑ/uڔZ buꦓ`N!cJ-x7O(U _V[VLވخt@Y<7f⑻|X$Tsq@9'>//D[C*(V!==6"2eħzb=JDbƏ,QNF53HT|(f^> ^-HK}ttNP`@}L3 g!5QV)͋9 |>Vq7[F*vX`?8 <)np,)q@U$ix Ab2k&f'V,g[hlt ,aA5PZ fHaS ;$ t[&)$B0Hm 3i鴩x q쏶\Uv' ΍SLx;pO;cg.;1oJρ̯ޗoPV %eoMbeYʦ]Vߪ7YMM4+*l[#H̗.P8^|HI/ MNuH屰fvd{Fׯ&N]8P:t_;=奻܅S:noGc~nP57juë%K^'??:|[jYe=ah$-oC۫4IZv+JD⍶Hӳeee=㵂#jZ+Ko]fPk0Goi욭 <{5wJog?\ߍ_{ռXO= P!l)OabAɃu H}CR2)B ]/S>|>bcOUbcOv`s[qO̩B@m$ .c_J9r9|:ֶ.H>Cù} Uw;iZu^'co}P[qȦW'e#&#)!^?ZiE5ζ }٤ٝ:)LD-_.J)5p3|y33w^@ɘaz|#759a)y^۸ܮ| Ra׾ūJIչWӕէj]#C=멇 B,oP,J(C:rd(dPՆ(&s.9SOƢ5AgIU$E=E9SZaܖW i0vq-9[EJҖކ1| #i ̈́~!֕%C])BVw}w'Uay9*AO{=_U_Ly?GIi?ͧQ 潏#9^pSYd[Q?Hs[Z97Pp5 p51<6*܍P5py8KGe</2DYb+n!Hj>XJ߮,i4tc$US,tZ)߮^Mæ #5+w]}r i(jһc-Z4v@wnܙu  ,;XBY>ڒ 7/z(`v.F(M" -&XjgNէQv VQݪ ,Ƨ k>SgGKIӦ1q=2"8E=^\+,&2zX.d4͙ H1CR2uCPv( d"_*oA4W5Oy1ltڒ6abn>s %D1_>jǜqwK)6:jkmzyѧ8xWqXYaatnHVdPzh ܸ҆IJQ_ry3`)zO>ëCTվ,i83h:F4;[wywx.{XWQ T׳w_?R#o~1Iнvk_jm{ N5-lW(Bʹ:21?lU"w{]:}ZSZSK ;[nyeWP86Ɯ1hGج~cXfPݿVSɻ4J߶$]eRUgG!PFҩbwQ%n/ԓ6ܐ7*1W*>ZwvMkL3ap;%WMz*\䮤-ˢ&dl|W1<~i R}Tٺbrfhg cBXLo0#, C#^,6^Aܷa~˓fmIq8+}Ut{-vR?FsTϸ'"c׏ʮlHlA;k4Lقj΍ћ,3e1E"]$wF82\zFE3z8z}ľ\r94pVZySΪcM̛$(:jMgRnu\{yNl'S>kѨfhJeD9ϒ/Smc~q{o%.i#NgݘgeX+YPfs ӡAH5fd]\zZG6'(w.A̷O_Uf଺"%VOҩw .#euH (r#I 7-PϟmM'̘Q.s;Ԝ$@N3[f;-,6jjz5V1j z寍filv }G&8,Uz(Vj_J5hAQߦ5>PSR2GTtŎeȋ-(?]ѥZNjtN1gfgt?T3z뮛B(V" s=G!0d#>;ܩYuvRgP7~N5dZ)?sm7_•OGwu,HU~1]ܦj7sa!}8} jf;NdIy}UxG \8KR$:hB"'aK iJD F9J\DQ c%Eͫ4?/tLƊ,;NWM|/o$Z \ur\&]@a_Sr^MqF<\G<ݵ.Il_]4Udn ?n]|map+$^ ,wx廮7/N r=ćQ#Lg:S u,6 @)6f coF=la.i3{/}am1;ZQ4/i0+ WSL6H iV.+wTp H VǘWDp"o@YaPcUR> S)E>M 5dwIE2뛛].CNj3.L[;VΆOi)jJ}>&EYvc rr0tjgM䉜>.KJחmMAGMLyKvkSQ?}x|9!YihFDԌnAK^jAWìYk=}d:T6R`$P:_biztQofk57%|^NQDL3fͻ>N帤ww*mkH'F1/?!;Jo9vshɛѥ2 nOS609#90kbț?mQqca{Ϛb7f ӂcu6ߺջN|eqPip ؚ2kM?&"л@$|Qɴxo)=Mh|Ҋ! $.fmy+I` Sēq/Rsrzŭdr:') \`F{k]!h7WR#:k;Z^'d%sʉ 5ٹJ] }+xTQe'1~`ijo4Ȏ5N(ECTm17dpQYO}}e]<Ñ"མHtݬ{uD&b+^wu=oI)JP+Cw26BvM|Hy{}N/2=KjДר4`,ʉYL ȅ|1]nX8٘4?gEfqbq,p6wm~G3OC,^'sxmȈ}zQtQa_ol vd>/2쪼A%o)o?&svٶXд[mH4WQE Gͦ͵CortR !ŠqƆQ´vR>l?Q$",66^ 23w\{g/a):5zӹ+}ϱu(Rnܱ"7(^3, B @ET` BdT<6?fA gDI L} A*8<&u;/]!vPGS^Է3$Xk"Ʈ39Di'.>NL= u$^M VȫID" *;t NFj遥[Hj*32U+wdjz?:!_e3\g͇dJT TqزmAMLqWsEKk?w-.gQ͖Z29Q?p-&{C=79`ۻG'U*az VmeQ'W_o1"d\7 eB<-7 㣘l'>];22NG9QQGsÄ},3С=KNm 㜁,`< |hw{0$,ڌ dVLJ97r*_1f4*\,pic ʹmPȚ쳥|-9D[C&kӾۧP]1CURg7TH ϑd!ɆD{vQ+f+݌i=nJ\L"Y1Z($ =#\jе/Nyxӫ pr7a8"Ͻ?V,HZ=*V:$p@vM+91/S C#OGLԥ V:*uč), PE=m{iF]chad+Ik}q8I(7@;d3^%uxmPauë3T$~uE"\6+0qu0!}KՂYۋ'0[nE4C6\ w}DTݮ ł65 G<SWevxH<[+R֟;y~Gn<o~mnpU6r16*rwѹ8ZgvBgKAJY%QT.GbV!r}b7M6a3X_~"/&? q<;3`~ ʟ47v퟉}q?ZӀ|IFDv?ywkV{HdȤ1TpgDH?4#$8K`>[h\htKUwΨbklqEtg/y*(I2Lgzp6.E:e>@]xM8m󹈦BO'dܡGh,x, 46Ealnw @)NK>H(}VVHi̊?HJsX'foG;MF[߯8~\mN6 zGt=W2#ͷmY W Rxя淗wBc!om~/"ysg#ǦCشy^dO:gmy+o5>],PWVn@ HϮP\:(d(o5RF(.q^Py} 8z kvGx iQoz(M]BTsדƚTLM`ALITOTt^Db>Ν.s/ -;ҠAPk䘔ue∔SNjs')@9#J)z)JK2Tѕ"(::kcVxe]*Y_60=4b65H<دYD8JAhބsl٪Șu m`{ΉBICWZ%ūy*v~;fA[P N. Fe30RR+w^ O*JE!5mI-KZu'7xaz_,x9dnE0ZVt{lbٵ+euϭX9Kf3ِ7P/58sWDz^a˘#`>SFk2jc yR]l>a[j3'^q0zh$W"grm[cF|G%~Dyd"!3DJ˯_Yb&pŀ~&yuzI[("2wI8Z>hL9sf7OP"-uHڑ bd#J~X(cl^4|uiDZSgNku;.ԋQvCrQ*V3mžaXLnO -Ů+mq"VQfKnWY>z)0a1ȻM?O*<2Agn~HNZ8l~>!٣[TIӻiw;D5pS3/iek>r7uSYnD^Zg޶7r;Ze9mbZ\Ma#;ũ'YF+"g(N}9#__Ŏ("N=7Ȗq8 ?qsEXnFj驁3ɄIu0]fc+lەv0tCZs$)ch+7S65ѯ W`6cГî6F íy ~oZ.2w 9!_jl`@8@̯O>R`5ǎ&rٖGH%1ٵY} >hȹdC3u_Advg l bN?|(/}MݓLσ0ҸU)dzBdJLS?vD xX揆j\H/d'0v2 g%r۱ KBsvZ;p&p3=k#_nSXnY;TɘhU.2~ XmYcm腠ۦϷfL$hC~*23HQ 3 VI4EнL0ѩ2pUݾcNI"jem1F܂aB޻<ݓJb\r\f ͥ"w")O?jbE޾QgZXJi%OY5VQChs$m>' P4xe\M.4FZJX.򣒫bWDɑK Y}T )Y!W&&RYG?c'#?oK9F$ܪ|zdu (s-Ѯ:􀁌ʛ[gѵob싌Vcl#W*ae_׿FȄl^@w`猷iן%f3RZ'kU/V Gw%yMG[7)!B^IȲcEw d!kj`|5bO_0"d̐gQj1*d ̗H"tMp~8Sx_ZsQ+Weby@~{]=J&-(3-~1kb xŔNvKH:3!)r00*9i@"8[|jkȽӛcvߵbȡ ۰1oacTGdB b!h/&֗Px7 .1i@:|@/OFҗ9rabûbU5"^K5<͊MkP擻d9ɻfBG%ɛB|oRDG= m= UXo؍)vf '3\Þ3EӖz s((Kw`Dh˝Ni?V1/tmdwKS`&.G' v.d}7H(GN_ ״z6^)RSifT:ʞz4_e8@ZEqxピǯ%z ^LVUW5I|ob43-,p€MN&sՏ|](NH;;6hɎGv  WMVd۲ !sv/ќgUBr7pT&DjL1~\2ZRE?dfK)սĞ5X|?a 5; :>h( \P>Mބi &ygb84A\ok>Vk=6w=}9!NWP 2\dej4T6RV![P|G*bp]`W4$/*%,C<qv]|1ؙRŊ` L#B-'(M1E_jʼn'M7%/ G1Ƿߣ!Px# oX6& kǭ_F"qh }h\?~,!B"D6E߁rW?o-h@l3w9Pߦ?.)b08Ji[Ôp-.$?!سCѢ>##qtрӑ2mWBS΍Jaʙ€&ǪA(DOXT@YmήwB:n"O8ܚpz"&3 a4OCGr\I l0xZX͸D ҕ`Q@.3tu >hO/УnȨ+Eng*en=D┅3,  ~ImPzrA666m6ibF4+J $yd+&G saRhkĊxQgrG# Kx]ΊeҐ^F38]P&l0tzBEQ (|]7Cb&+DkH'%ӵ&l JR ԼIę/OS&ߔUb0~w93@7B~HQ7ꣀMe-hZ!q+ xa5EH9ZC'݀/Ĉm͋3<~[%3Ռ ʦGc 4N a$E3CX2GV!`@/ct؏ ,\@bŚ:U2~d|!Ir29Cd 82D[xLf"2lܴb8ٕ4A 4& >u̔AGlk3~TcI 3@KTV 䥯fnݲYa~(<.XZA%C׮2OMhڗx:qTM(-tƚӾZ>^sM{LY6|.~$x w;h3"17OF\86<#AI+$Gyv=_dt.":+ܳʘȺK鬣df ؇5Zqa~Tޯ6II2PϿ=?{҃EK Г+P`#Lu`ב27D-Tss<Ɩ :m;4cva }f$!Y5icm{oϩWcEn:LaK 8.*[䁐OYl4픂1!|WEx8! 7!MmVBp) JlS-(+3"MѲ[D 4Guƿ7մ@Z|L@ ־ѷݼ8O4h50BDܸ q:yځUJ"u< kI rƃiׅ&YD˾ q7s_(pS؜) y6o(`Ier!詶Ǖ^ ?MȶK l ͚\;+":#AZ,_Wk2 =t{(}PEբM@c,4 _]j,ƶ6F[{>-H\h\%uy'gmd퉻ql} mRB2?.x$DˑѴ՜:n'q&|nfxlsB/rü?(}}}y_)tW(+N?A.P~ce VϘb)$>黆HCP2?e<>*~Bؠ> @9n9c%š_9:+wMf ƌ$:S\*hJҔqcs!g@nnJ-aqVϯ'ĶU~Q&Dk>)~9Kh*M5"L`)T:,J%eqMA7.ͼbhsVJa2܇cFӿ5GZ _+ڀF\ZGbm) ?j/Bm6qmclnGčćEnFx6oxo 8&;%lUd)͎1nТkA5_O}PI2i=C4w<&a2<㛓J.\U/Zܒ"c] ! ]Jẁf:K`ay")D@z <.?#[S,fI& s}jE sAVN+Q}"ªCE ! ߠ6 ֱѮoG٬ {J|J "t"i=X+ё/0b[*? Hn؊>7zRπr~E6o&("!IbhL%Ԋ\Yd`Ia#C4;n(d &ʌ6jcԦۍ>7'73= s&ޠƒ)M S,%*͝A4v]yJB|X d)7|1v琡̄GJSg?`4"3Ǯ15!)S_W0Rf>K;fl g#?ߕ~"=jt[Bq˵GB;xi=<⤼TRW`x^ a:CMַF=QLw $r k*e8#u'NAe>@?mwC"&Йt908-{zƁ#ZQ8]аWgG|PZ^6q$Aw0E\ԙ,+E*Jv Q3.91ГjΙe~@4e!8ooki/nn`<̲8~뻊%4 /'gyP7O}2#XhdiXW_Mc`Gx~[i+1\;#+}Gtr":4K^aY7=µٞFnm6s{vxMz"'S2?1Śς)}AE+񭯧{Yg/ $>z1;ǥcMߟ]Ť5o/z4x~i!VNp/Y=qVɉ5&jT. d*Wſ7%_f*K6a1ĺ1`U0Sl7zrvLgYN9mTǨ@mFش^U^Ȝ[r8<Vqͷ+C<1`ϑ ZzS205S/V%˷©ṱ(̜?W]o}?uQ123UmBΣ/2nx6Ƹ!~%j_J3 4E-\vT,3;'#JWoJV}7요a)ۦs%3hBĥ+W؜;@+0JeWZ`p(ZD r-n~f%ם7+!]):=XN< g 2U4,wT4(պ5VY1_ؠi9Ce~7j:^{z{Sw^FPNb5OuK=T%܉ As)z79wf17z ܪ Ώ ƨI, <,@a3i MS\.1Y J5OJ0$Y UБ!5$"ґj̫ͤH>mTN4ꇲpӔ'6b];V:$~^&Z>!zD@[=$"|֪vw1.ff=?)<|֯(вWjRq"A!.Xsy\!z&WD- uGV ΦXvAlBK^U꩷Ł;Kt,$NCl 4s><9Iʙ.78'؏>sE5/*lVf}gۢ既~% pM^xayn5̑zlfT =xb'~[_P8)pjYQS~f]c4OgDǃ# * to#g<>H[!. Ǔ$|oW&~7Z: PY=%3@)۠tu+(cgaU+`G˹ymik惆 XTWAY_/w3c% c㳫P ʮױ$S[ZYR壤5kg2\P6X=q[K[9/P:,XUIaK5hJ7eG4~ %Y EȔ^J.-X:>AOԈnO}!ܤ-U1Ic"\dwBVpɖ:OLv5,TM,ZE&6OF/wӶОj@"Q sσrŁv !M}^dLQYoǟL雐X+ \n@Q l> o~k9ٰEb5 g$N*AbhѼٖ=PCOPVPajаtn` |,z c?ጟ/Ew]Tjo։$Ɔh5spv~aa~ϙ_sw-Ph;_Z1F->%+R`a^Ia #W 3O#Ho[p[6a@=*;lqܢ07403E䛒Nd'>hM!=0gaRől0A#z,+V2K҈Q.®?u]'GqI`B}&Ώ`b>"Pj4p8򪗀-c(,1M -Z"m]= /ٱWOs oREZ?yİ5(A{L14쳺.F mc1ZH|[Ha1AD=o[j(ؒbag~?\>sŤl%%3xU^6\@h"kƓDTg =6 &r4!C.d@8Rހ ub/ʧ򣗢 /\2pk@–U.L1?: _P L^Cĭ?yiֽݏ\"5v9d*nra[Ͼo^G$"ơX2mg&MU+0]8Qf",*@gL>I9gX;Ts"O^m^jbG:+8;!٦c78uӏؘ[R9!ia(Rx@̽ 9OjXH.KWퟜiF/&) LSGE!{1 䢽cPcc[!uea {K6Po&Vzb͞LHRy?2FJdnsȹX=v|ٳH>۰Iˡ'oI7GBC]u0gL5y}ħypThO-Q{54 "ޒ G4xJW_7t>V\j56<*Cf@ #d,=]*nO=ُhI2c^"28n kS:ң./2ʇ'? cfQ<;v ^[zn 0z;c˲Ko|Ez9BN)}>߉xE.(3 Տt9rpS9>`MT7gj)rӫlZ!}=fУ$m;*~דr45b_QC}8RmY^f\ogeFlEl2]yw[ϓ%Y6t-+hdNځ낷c<*ru(FQ]|NPorN׻MvȘn `'}b&#x:}<oՀCiM++'R5;=mv$tחHjAw3佚tr*X5 w)aE6XZؑ<(DX3=6!S)܅fZ,0zx+=6f?ۆ:ܷ7lxu=aOiZW` %ws2.H[~A4)NCӞmԙ؞KO.*TZ7G,KԤڱxw #꽧~%8#PIci{6h9($ڕ1xq/8 2UcO|H~ЀgKzgLNA_ӻ(ㆨפΣ!uB;w*}Lx Df?Qz vM>8g U2]u͵r=9vbB8z++M%POs_ f?B^CQao"A#,0x]Ș(Q ڷ {4,.M%kyJ/pt[8X)&X%6%^~-`UAEBPr*c1ͨ{X@emD~%6޴ԠD&֘v#km$CUv\)‰R5V?o4@(qhue kbCZ$cf+ZhUzB+MiH亮yHYGR27'_Xћ>#^G .p pܳN4cꚑMB{ 3f06(KVaP܏(3ֈ\hPvE_Aa =޸9Z* Mbh|5SVYzQ(3Y1m4 |σͥ^cmFvpS &֜_qIOK ?0.:ӷ9&捑#,'bʞ&OcȡL[Hxpa{~ L օo Stf-rj5}>Ew-KRoi!W8v"~w0(W xè2U=7KeL"~H"GA?j%ujyJ̘1 Fu{?SnD7.Y˞\ xgH-a@G}# C^ 'FhC<9{ k.dj*<ׇ-6<Ě\m3 }_{`7s ;E_ ֌vH]`$1 @ԲAO'v~}*\~ F)IEP]Tqxca٧Yg(.O_3nċŝꈺ#%xV9BeڛT qa@G66=Wv]4HՆ=H2r) 0]^xX7tIUJzO7S96dqllfkq;n³W'z&*&K+G?05ɪ&B/˜%1𭌰wDGu@;%0AM:uxXuF1tx}E݀wH~sg+Ǩ7' VmƑN7+T&>s5.-. <]Fi%!> aO|/|إ]+sP1-JٗegX (0m}=PA@ H@'=¶t5ݺ=-$`dfs@]H{t̚({y@4ש[{s͟{prЖdˡ4<+X#Z٫f**H'PX!ljI &GO/_6W=%]h(mw^NTCuu,"\8z`krÓ U 3\{uy?ߖpt۴Oi!H6U)?O9jdw׷-)DZN-tX6^"(ˬ^d5+KɚWswY%*5@SY?N갍C:5!z0N5V%! d=N͐іV@S0oBMgQ*S.6@흄T) DOL1-1nTB!{?Pv:'i~|{(O+g99^ۇWAy<-PwBܑXCJ DU /uqr!cH|R_Y]:+؎CQ3{ p7k ( IU*~zTHP\•ECn1FX^~F̳)E׎YKEUޡqaEd//j-vWF e0F?xLgq|^tw# vM^?|=-TC kbe7Zs$mB$yJ=tؤ&bO4oQy dpѪܒUV^$Z>Ԍܨ8l!oφL7+^Nŕ˲7Ipڗ<~|, n6%6l~/ɡEeKn02C1.%I;~-/~찺km8,3cz7cl/[H~`hVOǶ1=L-[=_>c5WhYϤphpշojSb/B%&}k3Ҽq}6H외;)OƠQK Af3K 4{1ah9 h^5Q\-9&-[$(lD,!brK= 3&DхЍ+Y#v)\g&8-l;KӮ偙q]"B)Xq|Φ`{i{thmCN|! 7 {V yyduˀ[zdo 7~FQȝƇuMmjPK`JAQI6,!KjLv23 `Fl wڈujh4K (\ĉc{%DI.\KU.!hfOҜ?v{ "faz{c*qө^88CF}fBoi$ҶM))^pޅcQeJ{@.U3jz=-O}\ѢD7Im$g05."jUKmu"^:ލ. rң|U0z]x م |2.rkR>š[pRF*Vcwzs1rtl3s&$s"HY{Km).p)Z>Ɯ^ro c g+k1 T'%X"f} FgVkNW{ȓ75QUC0z3^*0t86{{2ZjrzM%YkssYUiTY2{Ks}T '(3oYl^Wy@bV0C LhWemWOOgH_q RpyvMlb$7-mnn׾j`~#p՞Ӟ0w:r.>lN >.D4fۨ+"$ f߫ 4 0pqwʀN~Pŵ8k-W)GW8^%6fA\`J 7/`֡(g*^#˲7$H(xSW2RPo<ͼhO6}P*ExfԚE1`ҸUrO>l{3d(³+ldͅ0ljx$&%ǽXNJ) BKa`^U1+x$HN#O R|(?@Q U$$U*a-7xOk,ck1IYF`"ł@; Ҽd\̈L&.ѮGR&ՑlR衚v#%'Sbdױ1*f"Yy7u2Jt @v}x ZHRJ.l/k)dP{5'Nv2[!d#"fws,ӽ" "y` h.CZRG /~Vپ@7k&;SCXJ1Šǽ!#(ŠqR,+9Ylq-u!}qk+%i1+x4>+bշ>CܗU-AatbHbs5B_hO ZCW{i"Bgb;- 1.Yh/[W>Ǿ~TXZ"} & KLCŚ|-6vThX3ۛl#y0J/y;ԏ80/7&j>S%&@áq,kl Ew88'1ڝXޤ 83F{ȫf[p.Ld!|7 &!VYFA1Smf%LxG=ꇒbg( rp}tJ1#8Wm[qb/0P0w>`#\T΀ȊĝouOĝ>A6ػE-XBx[O}՞*G#lp% |Q5^k&2PC^ZO:,€8n~c1P_[&3l)WDƸe@^vn}Ff~&*0ixL)] ` >/V~OhR|E>"Ve2Q@ho|ףjU@R VI\-KpιM/.}E>3emvsvt s ot9qV!$XHO泼Hd M`[X)* ً&h: ǧƮq~Q*a>-!`RHbڤƫ]XlHÕBTE8F _O=NZDAnY^MZ~nkq /y5Hva>6lZ AIUy|T~YuQ'B-' M`x>ݫJ15\$ܒm|d8?aG}՘'K=XȪj^?^i+Ç-.'6PtcYd.pq}";lx;;BH:On.*(XGϦuDTJ=_lM!?Ybpm1yÈufݏ;hVef@ dٺ*ƒ+]M2_g9q$zg 8\!J^|V059;>jHgY7lbO20}Ae`p[DNZ$B(K"]Rګ{ۥ1^>ǒ xR꼙A\aqr-4/x W+0+2N tL4|F@wVB6䪿.X>cu(p/'?@xaק 6As-*ϼKm7pk}t.G( fk?qg l Gz~Oɶ:fQAٸYumOv gҎ(\' Lme/ɵP,{ I5Jrz)[!8~CF MbBf,Tur:SOB\Ma xkO 5Y*Vc%lE;S,ݶLm$7Bu&uEd l~ӘdPo pɜ{!kU< #-V`z7UKeRT6[1-z,.rXAER''pǿx*KWwb IѻD1MAiL_@ @sn> @࡯aZNBޣW[5ݡ}^O^I½&(~89*m6&z-ioi Fl0',? ]-$mjr~1(J8(tt|\QCaQRXޜ*ن]>A[FSh? X d#Sn2kI o$=!?Ǘi.J|L;և (]=^![W $운xr2i/k(oOBXʡD޵%njN$?Sjn6~:[M٨}CWbb3\d,Vj%DthkbJe.`Įd} Z}\+HڄVff(# J%o*`d$dSKQUp) 6 ;,1ihJg1v>RmSb79ӀJiǼ0(&3N$¹j<ݕˢKxAymᴩ\2%Eemεߖ%aU~Q`p^􇅍ف&:Tsc_B;ӑ'j[_:;.+1!Ծ? L}L`yB9K[֚2.5~'c5ׇ{3 $[$?ăH$̃Rs.4QŰ!Hn1VbwwTZ!OӦTM@0eSdV`>e5aU`{H }SCׇ@3 ';3GP2Ka0JA_awd8JI|Fx=.^v"e}7?:" vRj|l2ڍai@NXZ~y[pKo0֣tt/V회Z3XQ!N6U:_S c@udH9l(aB0+}F [,;f\>)bd_ߵ#*B823e 98y+]3)Z3I@e[O !1w2u#bg@hj(/`Cf I;u籇T z&:YJ-*@ LTZv4.4JH@H;|D>!rQ:>6|xV]9;th!"1@OmSGjo_YˈB]IXY]5[뇒P@BL_1)Z eCBzC#0,:*#+fk~!<Ӿwhq<|,7k*X 0ܥ}IeHT+CfaaӸlե`џShDh(W/zk w8It5JUt< 1ͬ؞9%wBګwS'rй+V2[& UE|˅$,zEhyyZ@{W 5~_`!L,M:d$|B=8r!L[7 */-V1dNEabueW{9a8;E'q@.)'Hэ9v \M B݁yh\^qЧi=:rC*$;t*7eX/*,ɔ`fcC4/cXYhmq4[0XxCn2޵1Gaݙ z3yR!D\cmXynv7qvdj΃.'aP!p$8t~w)q27k^; nISQezP."fe&̷;fH,˱䡴Q!ge42 ((0K!cx&QJLG:Ct2Xt"A`X%5Ah'$aKIw L )'pF7CBN8U3Pyǰ-}y=m_i{MߠٯC. `TǏ7l-4l؇=LJSݻ$8gwmrBwr rX#0(: R`$q;sJ@iH!sl Hwaak׬f20xC@F°4=ݳ%kho7`}dK`KM\k!ol8P΁,˩ \0:9!u| /pdxeH})Q^x CF9pGX!]؝Tn3H* |ힳ?Bd@, dl LS& {j`װ[d{Œ*7]ldi3~kߊ>˳]o>QZ皠]'@_LŬH0D ƅ?3HH{ ͧ ƻS/,L2Xytٱ6eVڤ Q҉3>Q^qt4.al1~ ~w .n6gZ:~>Wz]vm nP]F5v)논]{{E'C5,te3B&)Ww0QVDͷ¶S嫷> ɠWJg]ެ}]n}3튝D}Ky{Hsuދ5+83O*J7w4o7N>Y57ȝ|72L07MGui\sBg(h-~UioҮS(RF_bB9[w,4ϕFoFqP EK?9^RZYyf3cj~y I)sjA2$A A"9GNWdW9[-Ny[.ny% ]d`^ykUzm$F;A=-E kLl9B }%pq֧|)KG ѷ3I"Ԍ/:,I- a.8\{z=$<\* ((ond/3%Eq\tD6ԠbB3P1U/1'N-ɰpm4͔ K*=Ǚ0}\>qyMӌ=f6P_gqCEyY;غųh*lIy}9\9ANC` Zeˋ߾HTESB ȟb7"VJIcdۄ}` .D27kڴauv"<(vXCk$Y:Q ΍cX0ap<==_,ȁB)% odn&tg m+L(u2'<8Xqv'{.oZzWߊm5⭊Ȧޒs.e/X`1aԙqty* C qg5`PYd6OC 23]vRL(HQ}7\VJnLOea7HPnUP!^{;ң-+ PmG}Dd=읛|H+FŒ^ÄnG&-Q$BHѺd_{uH ުL)Չ_(<3r1++*̌1]5| mA*q)'U%KgG"0{TYhR:NDiϬywÂ721Cj 6`t`+f'g)>!c{ iT)s2T3KBF Rp>c:qj H_n)o 4ޑj"g+&RS3v蓜')ǠC G{ }͍7:ΰ]47]A1k*ܽ+  an{Ṇ-؃Uz%4}C~ߤ15[{!4#l.&u>ziL%%NSuӕׅ311ֳ}p6} 2$mhȐ0+,92fј,ϫ}Lhj5gk5AEcz?4J{``QuaeY~Z]V!@лS@P̱,^z5j:u!ٻ%*v+)?ųDsE6N9U<<<P TD#R -S?nOIOsfA?_;LHQwuڌ_h4Nm@&/4e'r^`<#tϼkvC'ԃ9*I@*.np )epR݈1 bLk,yQ=1ePTi3*Qk'`.=Y21epVD{Tqp:I,`ޤ[\T̵R4>e:,33 Pѭq|,ϱB k-ˏ Yv:zp秸flx~@$'8PR۔ gmn9__q%#G['eb.`0dҙv .(ȼb)fm$"ˆfDV6}abDEWq2 P7K9a!/ u`/GL CzQ6(%lPBЀj&~x|!M?ku S`%G?U^ufPXFq|19ƉZH&*o(w\LT^,ff Glg [Ӱ..<:*ޥ\<[2)+ A3{rEj}6O䒒V;dLe(N`[./kzș;L=/^)alSF9S.:"m6k:R-$',s~dTUzn>_X˓줜ghѳ)d~ic]kuGwc *J&>fVH{lYWNj"9;/ OX~kCSFB'`TjN/t&[3')˜-g7 @~I5ʗ80>}sxu3Q+t=yċ_ ϯ JGb^WMOzCU jr+̈WP|U Lr)|Y19n)4%^&VL,jjǯT-WEyI -WlC (/IQݞ+@_; pqhY ;K֣ڕr]xcj]fvwZ#k8 jKTuFH!1팀iviZ~sq"ڞuave]*j^A;4nOQyc[!%7y[Yy*-xU Jb dl Ht ; OPWP-Oa$n9e$:FܶPnFV/"cΥVd$jHʏ 1 (nl=J[N fʲhc~猃x lnH&Cˋ,#I2 +-G#X&+m6BaΓQ22X2 H4zbjVZĬH8B0n`f3J݌@s|L)Ҡ)JNX;l4rD˻ln4ѭ<2n/:&hbkX9Rr&^ [zoI*n3VAޠ_g_930#`#R*jv>0_l)1i̡yVgŚC1'~t |uw_?H.5NM~lgR1O  =)iX_^2Q@/L`U^/0zۨl:7hxȜuAכ/JS憎" 6 b87+j6:d@14L/`a>&C1aVn/ۄk Kƹ]fC ֍`mOMt BYS#228N5*ZE>^D G-"c2Ls& Ix/Qn$=gw,=0rƲ2kUCыY$x!(;hgi=W uyn Ge'Aq})ė`h}.͝qfeJ-i.C$>B!;(2Fu<='Zn$pi_~wwsT~~U$b6 9OwEnV*/1DRVs{vl0-E|!^b xto߃EkE! q 0& $j'&|j%nnUT4Ja;PԁxHŊ;jSͮ=@"3ŢCޒ:܁'ǹxH S1*+{i^|Υ 5U,jTRFjlqVYXimђ_#@ā2ts?Gssa? =لmtsE䙮a#*wxC7(kAzq:uZgtpA_KDc# Әxo:M"Ήʿk,(y`OX E<Ս.1éZvojevz#:1?٭ ݘsӾzf\K9>U6}=R ד5qT%bsuwD2yӴs=Cϵ־Aw7=F^-{nua+q+ OqR 2');^p{UxVKn7UĉgReX2Z@;bm6 tFJ!0Q4:Qi5*(9X|J&'3S3|}^/%ffEGb`R4|e3*LY-Xp.̫GHC@ln*(8&Tͮ>8u~Oz4 Wv& %EV1=m(Zsm{gK@'UGpqƹNں2>yD@$,"\Ԓ#d{8D|UC'Dro'Q$Wa<dI^^bFlsSOm&6م) C>KDSQc*En. IJPN;UPoS0c:tI? juV:hec R,dB[\zeRwX^\Glc|,U_4֗ƌ_J{4Bu(5"s8TF[(.pc!j80A.S!| -Ki`1G}"~;{Q7}wJ6dCW=lܤR6Ԓج{~E]{ d\^fgň+& a7=s*x|ii.Hש_anݫ/{xϨɔ2SL+ m:.l8ÐU85mϳBCnDňa`v]3p;\O>!aJ<]|:J9PDP/ dv#3At<#_K9Nc7۹vS dHOgGNλ܎T:y)ѬYj J1|)F_697kxDovuunJk =~kI Q[NPT`E:H)ڄH۬$HQX:;)*I/i^"lr`ÁyouNɯU*N d0;I‹g,fR@=+=xq. 14R& (oE5|V6Z_Z-(1Dr mO7+[;Uw:5176^RՍf !Ǝ i=Ǭ*YWql}.u66%Ow—u9@>@a)Fނ=#"5vqRd𐁺Q aG3cX5e.Β{tl{M/ݾ+:Xi*Ŕ(gMyd&krBK @D 6?H=?59/mǍp"1$pgIEß=cTr䏻"咢|hmFӯpKrDdGoUH!CU6%42yLn0RRL7X:CkQFBPi^RR ؜_\X9G؏?<Z$!Pՙ\YP*Ǯ= 3g;2yN9 36|cT{ /I8P>5t[u~n$Yn eEA4Z ~0,I2 4&9뾇׉4$^tyծG,տmbhS'0+xdRb&,oZƱ 45"*h;g|1Z/*G[5zq˫wO@Ҕpu&NPµ[6,j8Ik,`0YP!-^D=ȤB1,f3=nqŽt[AI$1n A\}Wbqm<)ȍG-ce1$IZ90>-=:x BsZ^e rI"s]RMIR;$" N{N@jCGDTNL㴟`a;A r6C8Fy95?77s^w45 vտGI"˔-cޘ>_9@*6@=\.*3d.*p;i5,?EsoMK Y~8ȄKS7Ik% *g&Kz蜰o&RSP~(UʦrXɶxjp67]_L?[EK7-zeO$o eNPw'I2ni`GK訜]\ M6ؘʋ× oK`˻YAJ̫u5 `OT|OԥXha68͆fVj97y9Wy^qɘ_GRk(1j @R7X-dz/vLTy 5~6-nLRԈI ~YS 0⎲V/}z؇AT9>τJkMUn:Ӕb95F*4E)oKON^׬o"=j(Hh4.XCc.I.v?ˆd=e=1 x~CZxȂr ȀH/`pFw`oF&0* : :AOGO:󯜬X4`#k582Un0ZjWu EUnt)]r aJE/Mx Qsվc'!&\0afrNF\Ai{7RIIX\` ^>gl6lh2_ySR|Wy]c݃nr"2L"XW hG6`TE%F] hSQu2u+e5ˠ:є@|λhrt5,Jܺ% {Fn)zΘQ'YF.B'lj+N> g/Wbvd*HQW_z Fc4eoB-"M/_ k{xًEuv@ pRtGQ!Mc2,߇7 7MFy}Ń*)UI.NjR*'G/,қR @:!nZv`h6u"!Xt WK/CZ !sze{Z@ 9C Qch*=tWeߗPDER4\wih&d;&[ >t <~,Q2֜1LG~' MbW:5\;v=BG-"DvCӖ;N\Yb\EI Rs~% C& l,AN;io!9 %ϓTI[`:M&Gr-5Yx5׀h _ >aeeA:Hx*0[nڝjkLUaS98fJ؁zqXcNh`$ <{4']ecgzG{qu /gmd(2HgªW D 6ȇv_9(U#F9%L4WsZ 6Gf+VGi{8IQSd.Q'"dm!YP5AB\ɑԈ_3qwO P= hӋHԒTHz{UoYj߉tS-Na]lb{wťb6TFrI.$:&5Y$oi}nV*;/MǍh FbCw{료9 GpS!KGA<N-y}*sȰ BYlnMjGa "WF랻|{V eG*(Bj#ŕ`'>2M,pIì#,Hqڧ:OkBۉ& NB]=nY=#IJP#=DER*)i*Fb-Chγ%S䏁6ty&q>f%Hf?+Os´e*iyyv?)Eb[uޙۧ.FJw yԣ&hBX r$@K!P*/;ɇ[RS^5-#A>|śPZȤWYWm!ZσI Č')`Z,T㟯Bdx&h'Bgci!?0Ax2do«I!!nS+?uV߲vy†%uVR*ϋ:$ò*P9"m0>8$=l*fEfISޏ.\:w$Pu%_֊+9+W%3p[ζ?G(ʘKӄ"[>9vd*ozWj#ύ l /𓈤 lN\_{#J `ew8e!&ҕzK>s\x6W5E5@5fPῼ)ZMaku~Ech2QS^3ZtK87s'>[cJ(9~޲vrd1B>r4I%͏dƃ#sVQg.O- 2_t;\  )=w)_)~pygb0Z0+Rz 3҇[耻=G_"@}yΜa ڎz&YcD*Dp*PiWm<غ(ee {W o#KЊ.^.g +V$ @Lu4 IANtL@"G #:=|O|^a@q jV(DffǺ̠_"OWq \=c~ pl"SWriiy]0Fi2<8L%Xoٷ׼ 9%Mo8_Mo}#ߣ=6M}/9i'zL? f'7p<:.=vLDE~I4*ݧ'SGIkX o11 %7ŝb\#]ZɉFc,I;5X5E.]3AjE^vȱXXG?{R\GX[ӁoHM׼"`cyaC)$9g^B`jY6Ѩ(h ."12" Ϳ/ZՊ7 I B Q4OLh<Ԕ$/ye# ;]yNn?P_} %fEXMy (QZNdxAƦ*xxJhhpS,gO]7Qpq4Hʵ.\[kRO)%]_!h3zoRx0OzC^-ijAid7|̝kPZ[Ę\FXt -gc55i(vUϯW|L"F &|"f"ŇdOgn#g0U#CTwR3'58eU`}m*3~1=U7˜k=~{sT`V{խ%#C,U]>6?Co $[-LwU'r쓽 $ˏ,|f(S!V YԄuu+g]0@TEyI˾:Ҳ'q7J5AH+iV8Zqݥ=T3ww[5ARm{YU'Nqow̕XB±}Pg5ď 0:q`yv* xQˆ1?eAbf#+(̆QA4L' q_'py>irDfԘ~ܔ!+NɢuG%q? JwwE4hkJZեUaǵ~k3S)d4&f"x lRn;q-rLPp,+<..j lnX6=8=$} 6wC<0sC猘rYEdƊSR\Yo6tN2({A].czArTI,kUf.߻5_Z[-gyג<-/nH. [`fĜE+"VQ0Ϲڶʆ/eЕQۮ !+cֲIB`L-o)j kʹ0Mˈ#xt~]> NvZ?=oıLJm -:POKwoSxwoDsv:;\"8}8fJGlUDaYj7ya1b'e.k]I{ nUG6H%zKil!)God)5Sq}^,q1G'+/*j _-WR(.*V @xi7Bc LAڽO](}`_@s Wo:6P`% U=0M[ͨveVg.`)yzvE?w5\ ऺ83Vi,mMS|wV!eF$lUKL%ed)< ]N>ozk3AA')X {%R/VdUfp3BPy5GO]Vg؄H@rYk%0CE Z󜭛rQ&xjS{QL恾Ȑ!YQx w'xf.  \mՓ>ɼ7B]ÚY~ISW UjBn+!CWlǴC:`]7EN:!~[ޔV4{ D4,_3e| 4 4Wdi=\p[3%bhIrdVVkȺȍ|gzV-@Wst݋FN Z?Ji9$ݼuu{ϓP/ܽ'B?]{{ڃg me7%%ACC:=?Czʣ8$ 1 {t(Եgjj5[Sz:'vT*Kx{*6p2#&TAGq[m d0J F}DQ^ݽ}|ùɨ1=3|7%;g*Mvk>:rǥ்E8J:oz{X5RآN`t#)5 r,k!ym?#~_ 6[Kj$PAυn#C,1Oo6Hǃ;%S֔&=(*i+-to(U*0oN*GYtGqں!84l+迱  ҉kivpˠDJwg|z 3yyگc< NXλ'*ƐPz.r @Ɍ 6B{Õ߶<N>*+T? \9=gP*tp2*Ȓj\qL?$)1ȴqݫ)/%5x?wyP0";'3ar#V c Z+kCO'm0)Nl2b3 x/t_GH&'Hpyf]KvfN>]]z|GPq -G̱D1Vlc?\㼩$r&AA5{6הn]pgIM{ՔC;;[0|3D,L:^Կn1c3n8|p݃=ReShbhK}2)oAC_NqZ~x?M6"j(0p(ԞMJt 8N-3%V7S%|-dNԮ@S#*׳r&;+ ڕn\b("o@msy#:U'aL۲U>|D&zyOO;DYa* Lb- *Wc!>q !XXFa呿Ĺ^lthqo4{w0׬ψS"thARn!@(y:\`O-%=ۧ+S3 bEfV֡ \6% KV"b>a}c ۢy((@iGg2}\4f*8}1 xݧi}Q_G-x Esif25gO{Fn44{$HNxR,'@. =T SSzkܖbxqho^1a,o9)҆I6x3iIjb7 N%;hz^`"ɗj 6>_`\ xC*N-HeGu3'U -gWZF<.^е1p- A<~( PiEgA˺ߞ{6-3TetTG-zU˩#MctuBJ3zHAF (زcTV2a'u)^A ʧa 﩮;!G`1)e%m$W(zt3!kEp).ǒV@sTa wʲJW=47=2MV>9VF Tng.ZiE[U8Òomhy٪?5_S5v$؝h[._x}DPnOgAe{!bfkyk:z .j6.<<*B'Vqk? 6Z1I1A }οr[diZJ-W߲ӌi=2lؙ&E+^ :CΛIH]6 ?i%=.@|RR # 8y98Œ4iKzw3fɘܲ0x0C8=gCj2GΠhia*v7D2;at(k||-ƒ˹S?ȶlYI̙u]DŨy&K~}zv$K݈]>9y7)>.<4:o]%lHZ4i3S8L[ҥ>$ֵAf T6v>ESͶMd,ulY-j \Ƚj,|!W 4ϊ":~75"#g;b0i MΊ|e HɪEn!SiiM(c /B4#}AB.L|x !n{n&,kQNe+^-(*F&KνnN! NLLŢm¤Wo)U 2;FQMVU~aP8E+M?W,Qn+Rn͢X#f}=MA<M;.}ovT%'[Zjc,k$+Ҹ#=nUTv_^: mʖ|;NyG?tFdiKrAfl{C; N5ȁ34[Gia?13&˃]e4h568U!E$m[WZymȃ_Yh2!F~;yxK Eb"G bvda`c6E9cVS[b^[Uy|LGB4vk+Hv* *gykxǕOg==y;8`yce뼽ά0)?)GZD+72/ [;8K ?@ktػ"(es ,sW Wmq^꜈! d6%(ְqD`Gfd\"20~'VD ƃ䅉[BK!W=^{xL\,W x~tU6#l;H  s9#V$4fL|M:vOI;Zƞ[1RM+H*\&\T?;GfmIxF N$ ۻx$,`Vg̘EQA>L}HJ rjfF?2a[FCy$=z@1 4߿h̉'SFKz@}MKf -}/+ ͂9΢x@ <` 璸b S1r%I ͜@`3Hˢ>D)(PbV,u H(08v~ :E>#ϫUnDn_F=O-DvXۍ}lZxBosE vx3HW ޿G`k/GzhAc .Pe%"<¥F1>I`ͯGSP|e\.K$D\!n/'LQ]Ժ^F|t$‰wn~ö(*4rWFQJ o{ ͑ NJ+mL-dMHfx)zYc~+]#g,upT*[tv /^!YZ!l2S'2΃۲gP)$ s֒Y*(& [cp)䒀ӫjh' H_fBg؎hTv pOX}Tv+ BDH} x=z=I 7"qTï*,r)yN{Wi՛535,X *o"2ebkX9jX( ^.ub2A@5oW}4BhxmKڔ ae7) XHe)^#׆pƋ*e(lGh AM @ɞY葧`V&I<ċ:e1fcҒP̿lj;ba`h7PHX/,,OPSi aYk}JcWN+Q־ rWd'b]!1(KQiy"C/^9ly@T^/yܺl7`3ؙB e&csRKTKzݬ)= IDV1 *D)Ic2nL,@5 Jq Ƨ#Ɓt%0v,0# x 3'GcʼnB5*W;s-LS *πk%Fg2}_SL쨰!#N z<O\*x CbOmX#qB ;aJ CB0ٮh(f>?/*MŵPyZ_u%$@-  ndi$BFm 3{0 O 痽E[Gs> AC|Ss$$?m(2"bkZjw/ +A8!@wǠhq^u? irCbL\΢{7l{Y)okgN5{ڨ<2x.[c'g wn. S7#GIAã/:CKP+\^!AHx^ޠZ=4)Ѹ-erŮ<^,M3:y{Ɗ#=tTt`m!qGs1{E$"bg4@t>Ss*[RDּv$B DV.[#1{}nGKHE(%G#I${MMX \\_*en{5\L¯H/`t׮p {Fk j úAFI"D̳HI}'U&11(CgG3742\0!GUe߲kG1=Xi%?y xx| 2RU7UubۻX9kCC(Gpq͙)3cv/S_`>c6 h3S t'kܴmCDYeY]6\$8 ^u~cDzĒ\@CW1ѱM}NJcP#,ֿ'ѼTD-s%$*;5'npvZ ki޹T*5#)l|1SLӊ*rLf5.jv/ͅI|aq%6VCNxo?x`6i|CZ}PaTpGڍeGxy ߐP/R#.j/ q)F1=Soځ 2eLP'/_޻OJ°6H^W5mb:+EǂfĊ3"T5x [%+/ ]u#CD$CC%{K`Nvaj kɥ)܃ڞ.Yo8ЖS)Xp<GGͮ/}nZ v1@$&1ҫ/]$Hr>[$;%wuzu@, Ѯ,`6oJp->EƆMeN>fp.0mH6 "jA۵{AX2['fD-d4s7wBfa9۪-8 >M(D,9.`pŞ|e#ӭW# X%|A$CtbpRfS+mVlip/BQvg>;;Tk>xZ*9*KwqO쁋̥>A'V5D'맠!?ʞfWI4jM 9E0kii!Fe|vY荔I&O}OSռ7fn..-:¶[X٢?f `yt4JS`IzӜzdT⻀|{Qۇ՘oDfq/?Uf)X6UBLd,)s|H}8|WIu|Ew @j2-5 O@YFEW|b1A$lp:Y' l4q@q/z[CfaKbO9N7m:t],) J~n13qfdzV#8E nug֔dYZ,C8T'7aZQgJ%UeK)[wgeX'ys ʗ_&xRJ|;m&_ĕrbsQPLnޫKW[Z1f_%=APjLXTY.s=^bHQ߿h>"֥6M7i=s7)$.0РcxI*ZrڸMAJh=[VG=_i{́ȬCNr ϕ8u¸/8]y1? tQϸh&?9~mi? O b\zhi 5ڟM[V;k~?y;$%evY,=|<tgqs/׼tZC{P诅C AKoELҥTUW,l,ۖV:s]ÏJ-j<л΍C x/*ŋCB1YL'W4~͕-4g\WH5jBN2pJGkt@#ʔkS56s5?dފ]k h͹i#r6K`WSp܌bdL 8֒}9f5{kR1XN}wP gl #Q=]-̺' 9Qɹo E,  m-:@>diN?HG봴ۃYn"dpQDtĒ RrɕS`NT7:(ǵPÅ`fgwfы:=\MqcZYL vhΜGP2PuGȦsA!{M-1ko#Cr _Lq^OV-k:X1LH UpӹAF5g~%4jb$/5>a;ܑ.}za+M6\U%޷!EEQ G{KV-[}ۿNWyqƉl(7¬T͢!tƫ6=]SdRd}OQOHXNϯst ڹWgNYWކ&!sPլa 4YfO_Bi@smˍ.igBy{fg Zj-BJ|(gg;QQTFc|5?V5K6\CݟZ:O2P@#T.y5d.iY|GP(0a !%7+{eMZs](ƱMk|%qߐ?, >ˆ1^Kh*H/ ƅl*4{†;nCFR{**W%1e=j35xEՙ#bmu4o: Q3r#-cÓg=:w97[%DNvSRU{#Pe PW\~gucp4n6$!1I?Mrj7'iH8LD~4+2]HY3(xK_ۈOc$پ&p™P9޴,tc"vk9e*(1{Yz(7΋5a qK%.Fk!GPu Nǒ_ʹklI舲;HNš|̄ m?A}[;20N$*䃒wJuQrq A=~B6q>#2C@fBs SHdy<8w?zϕyխZԆQ5 B*L-!ɖX H)}""U.g(&?& seF47%PDe?p?a -E%?i/`-g+ It?}Y! 4'^AD K޿}ڽHz#0F",sQJ3=Pbu.Gl?WD)07 ǿS; ,~N0F4 8Hc$0N;LՏ3=8zuaܡ nO3]hʏ!;. Gz1CHlxIcgnC7# [ĉ+Q3 ]0kSrwspy|+..X#k~܉΄Ւܺy([姭 ?OR.uoz|$yG|:2H73Y8jq:(&{=F^I$5Űl8YsSm9 ٌ\Pn27ګbsEwBW۠#̯NwԮտu.O 73Ya$Q#3c#IQ,~~iH݅DRfܜL4ΪEb@eu20BrBjW:= cj }Wܱr>9l88*eCk) 0ɚ;i DbJ&8wXG"+F\˃L~%t1 _&wڮxԩ!GZf'` q_O|q ƊG3jA{p;{̰3(.}L;}(Mue4V8Knl mZ䶌j]\@ ګ{|&c_o<~NٞH S6R%ɇpE$ӱQV"7@!EIn X|fP1 4Բ]ֵu WH¹)ǦB% z=6"F߬DTtVK5Ǖ5YA;d2V4Jz@f@ ?g4HfRgǗ$MЌ"+IHޥ2x]>9!ye'~Uڥq,. );F1%#z咲gC?'28U!}pkTA4tlr* AvJVt5E! ?Q; g8FJs~@־nin8o/%qԨ9,ns.lw }L"ThvhJᴨ Յ]Pb@,~vډLkWd= {1 4K3KTY;tU 'kiRo.L5`'dY?W3pr)w0ܫPv'\B-ӓ**1h0Mڛl IRܶ{#7Gvu2 U39ؽ/ύwb۳9 Ή XŘյ5\`-%w@[ d^baq4 Agc|17`i_WhxdwvL~ﳳ߆BR%ycЙT:sSbҖآôgxn 5v6[hܤTn`?\2FqǠeh:D+-5˽<=A=M>?:ڤAD }y=lM^#bf$ (/w 2}sOi!WFRALw" 617Ȑ` 5IWg٫F<=b$H;وT-nD('޲_5 ,ڻ]bSzp _<I6&E_'x D~-T=Ѧ2[P=>,On[|quĦ4H:BYM:Vnr(ZA' ŲN3Tڱl2͠P 8I(6zNFVjj3`3mWW͍{TK!3Kxv(%dhL(}/\@Elak,ЈDc%GES 9I8<lDEK*}=#&CK3vqtL4n+O#A@mr̚*\S$W!*;MãZp3!3A]h1 Ll^^A*Ϙ؋cpK?u5(Y ̒eMh,CbAɬ"fͲܹ:3VFSŮ ~:{ j9]$S-MȑB$`#b0x9C~uҎ7ZW?aSϙ#FօՑMorK:CCj<)N^꒗]ڛ`v |d{&S+Md-^91xT%;XOZcڏЫWOh)P}@L݉7 % q.OwA}r7W>!b[g68X֜8QG] IH-0!#5!~QcH~6ΔUfo>vхAab|F3d~QҏCW1AM:2[FVb8V[oIxMTn@Ʒ5BYJNgGì v앁.1_EaPEE!m؇Ѕ$GɋMъ94PҖ]aTu-gizm$ul?9P1/&Gݏ= F-Nmqaoe#(;ryɏ?k '}䙶ruF1JnoEFX9[2I&Q' =EAeDӓoSy9ۚ% zpʶ SIύcۉu&:MէݘS/.GYlMIx"֖gEݾī*{UG SQFNEc"8'r* .!Z_${jvdavsKbQrE a7g=,2Ů<s|t \yGo[bҋ'ZSs$pZ Y/ELd FWwb\d3Noj~,/ 8Ixd$1৯!xH:9D{ӱda݃8gxE|{9@ȉlqfY6Rxۊ<צ{F1O ߤ!Ԭʄhŷ+b}7S~ZMU'8WSL{m+af-WNXl9kY?Ի4@\+oN "]@RZbqp=#V8@Q1Z63؎aъ{AISKAD厚{[w2Zn,; wn6 Շ9c{i1/ps0mu8Ki伄x)Gs >coXE1 Rcާlu Pfsȯd bBN#[}%fKYj}ޫ}xvK{X>b.%NmÙՉ\vLM8p@2"uhS?h+;XEXhoSWuǥZBC4ezflǎM4'V4ʱE۬Tro8jnsy(ZsWQFZDTI19e]A+:{<> y!uJߓPH>|C eEO\4P͔nAnݯy=ݝV̀ (]ŊG_a`v毗 Yc`3<'ԥ~?ΰf.?d3)o مJZOd6o{@)4J`NPwִ*ceyߝǚ@];C݅p|RbFg8 f*j 1eЂWqHNc? ʍ[q&hv׽nRN=v8w$)Q罱MZ.q.C dLϨ7|_nlG n0/U`$.+V5o/ˎlފ}醬0"1Ϳ~1Nw`iss˙u'J=D:BY{`(jbk(@RŦVѣXmD#(\[cgSz5[ cŧ+SORWH6Df(+$f<7O\Շ;)IK>?>L\᱋R]sۿaJw}q@^yG2 \`<jqkrc 5hu?uǙ _nRz`Ӑ$-֭Euǜsɐuٶ87X@;]Xcw-7DI ߠ!Ig EݹҨpZHRVLl[N@ڤ^iKő] "e!_9JqEi$*"#6#cZyF,S!x=r|.M>G7[l 3 r8ԀM` S}FVisYCh[o"7G5JJiYm;Z`XB'6.vpߧB*]QQ t2 Z蒃Nyƛn Ws( QWeabjnf ,!A޴Hc!uxB&or-tӰݿ*w*5OJ6CQgw!= x\+nnob8PKodJ4qX3ޤ0Z5qW8&rT;&!/! {S~-ji%9&ؿo/^HϗKN*N?aɖb::r,P΋0My;[_u2$|`Lō%Լe AȤأ˪b}`jVDd`?_; i#QCO Sz ISs=}׊14#W?m*4WKq 2[0.'G!+\98ym޼?HihěrcuI;.j{7l5y) QN'jePxC..tڏfl Ozn9@h- wf5ՊqEpZX}q<>2h|ڕSwW9-K5Fۮqxw Mtɘ[v"4!%s,=x@u5 +R{y A2̺wmTE! ɾ1CQ\0N2 Y5dy)(G% ˵L 򌣘dqI˦G(Ht)ĄHL6#Wj.쫚ؕT^jр::d_w Bt'fyR(0ו|QN갋 =s0P1(ukSV@iHa&c方Nyz^1# 0yT?H!h(O披 슋7>䄘T]1Leٹq  "ナ!‘&E@d2]-=AuRd '&#.Jٱt.Y3b1|wO`Ǩ۳vs W_'P(%O90Pȵʇ&4, 7 y!rVҧE|+ qw aYVT)Pb ӌQ="Ҵ+s WD@. .Ŝ 'u4&?G(LbQq/=)r[[dN0P*΍m9DZrcimӴuBK4>ݖY Nw NwfB2=mC3+Bc]tVԅJkpogrNz yjx,NinmxB6(- 5黰S8R1~@z?눡k\W}/5.+iTf[StD@!3DXlhoz#sL/Wl}YE1A&ٲ5"#QuJCSQbUPX J~/(R5zo kdA3F͟%@Vn6F)k[|qjït<{W$\ |Мb7Mp;oYey2kU!ar$lNKU|~Fr=-KѰɢy$qAQmge lu@ ?d&.]?׼f.y %3)8$( K3z^K3GxugHX64hAj}-|E.ce( vnqQlj]u*)`FjydSbU@[|VHu1 ԑDT&P:k?4`3vTN7 Li\0>߹vP{cᰵ=Yp)DEd `"*.u/(x)Tbߦ^  "h/EijoQDc|5a,0#;.DIYsGbՙoiNHB_5>K@m0"wKƣ^FV ;UT&Z?`40zb8Em/:k%=_h,LǾϼS<OH<+T m1^}/\Q0ΠcP.䌁yb8A:=i>^ٹhd!$cL*/tUT(\q 7ٻx*|&z۰NCM>+]Lld̠ g1R}ߞɥ+kK֌Tޡ@!R.9l@yJց[^oV$Bf3'f*'4cCPE8iv+\jBхvXwak"ŕELpUe"u2QnLwVQH#-3mp-J^Xj@CEk \/ȒUG?Ck MNT.+#N o(I^ D wl/Xf)nmovi^G]0qju6 ~B{mm!CBĨ} ꛗQ-/7.]Lwa4U\vglgo^?: 33v)5K܋J piX1MRXJ1O| +I$}B`k")I Ҵg8(񕫁#ֳHKK`iQq4tȒ۳ ~9` A6s@ dO_.k5n2h;l_IJy 7iJ< 9+n̑ňJ,[bƻWTRU]tIYiÄA O*`R$hud+0 C-TETƃF J18P!Y1-0`mTEbӤn*r Nu/V{Zv9lkG~9l&ѯ\ty˅:͗J.lav%tCtY)q;rӇշm^(DƆұm_;Z㦬l̞4T8+ 1?x{ߑ9 - K>݁7#w75Ǻ&],NGӡ峤r|5b_ J˵B*{X.h/m5OXF=* AI XQ{; ]~rA`;ƴ=]*#bv+1Aoo^[D#n/<¯燶fxcSՂBtƺtjKXB=E5ƈl'}}ϺZq#1.Ed$U7V:1+O$])yMbPӈ\g8鵇K*>`9>]KGsqG"생Jk_\{oXy?IN+ sa~Sd`dЗH884>M i GF7<9g# E#W;sqO]Cw*PNDY %₠Ma͚,u7EL-YNoo~{Wphm;EA[3z'sX܌%k_pfkBub`]şs&|{ltŠL=l]1̝qM&+xCQC پcxiݾŁ/hq[~e,o2 *Ub Pvn@tTkyMYWe<aӖm 1yCʹa8J_ՂwL*SxN|wT>]joNAB 2R>~7m5 o^c7E4LnrpɵI/2 W&E60Ҷ^^!5LA4/ <-q?g|u6#Wm}6 MGڂԀ>[:"K5(B׏Nt+ OX|4X:9W'Ϥ 1uKf#^o<5**!GK+T _^^a;>Ï^Fǥ.2B?:!VBR-T.4~,%cIPt9iDbW}F 4!$jZ ՟#RzqY4&, yLbc}IF͝W܀l4~^x^y2!j ܌`IUs1y ]1d' NvS %tfOV)nc_n$=)@\t`K%_}39k{;8'nõb[0m& h`v(%oHՒo^T:7k$/3tA#.&Z\ڄ3cl>DƎۇC;7e-((P@U'Oo"H3L:#S c ~}_)4ߺ;#4 "N aFmmu- =XxM?gKj%s&7 ' &Ӣ"j]m =Us-zLC[,1Łtw΀)W-U TQ7d$.lrگS&'q! ݳ̐wݰ(d$q 5.I-VdO[:˴F̔L/2҅Mڔ<8& ? @yA7 $5ُVrk`o%KͿu!efdcRj@ٯę& ;zBƳM+:DQ +gͰt)Oik N#]Uz]Mn?uCubZ[Op]\lY'evV[q^XLAȿ\gN'zDJ1i;Cu,CR s Po2p J>E91 FRcҸ&7%y"5{;,$Dp$l>&)ȚTi#`'-VQ ׻F2;Q!aDMq+Q:lN<[ٶ[xa“e>Ř1o,/=PٵOJY!F v Hx`;fM/Pj)es DoZًq)K:H0xjäY2 L5j4*&8Bڕ+ p3JGzթ㗂? T:GbhEf.KLEDrw"ic|x&7^aV Hi:%"{[.uZ91Ȗi)7~fbxH$X IY}O2 zk7Jz=(y#ZW1@ɤ!\,GEEŲ^|NYS}R'1CcUY>kqtb|)DGtzi؏̾T8I{z QOdE7'TD%5uw8ځh'U+[!lт.‰].C{eyTdulqD?Ph~ێ t,C?&WM'~[([1n]X,uݑ_#Γ(PfnM~>F:SוEt1GfOɏxP1BT[`}Q҂1;$k+.~jaPF7D#az+9eI;޽$3}es]lʀfn;Xic7'۔G r!*ByF~DX{|M)8s-kƙH9Ř]PO oZpM5‹"(ftnAq[!oJ~ny!)}Qd[EF:}c{<0 ̺8@$#h[L'uJTo[eU__u{Oh#Ex%j=/e-UOO^RnHYhԯ#3#kzA} CnLXd#%oQ--K;FgcA9UKzRƍD CF:/ =EYNOkbr/)<:g.$ޜ@g~rr[^/S3MQneW!҈z:&G.™ $醤Y])@=DG͍i:&9d[( -n N0N̤ L=PI0ʒiWzضl]q@d 1w&s,gu͹I7 ]nk_3ˋW܉쌺ȧ'Y(z<w^~T@=,нKXt+:Vv @u=ñTr;w'wy2) b:wcFh)=]RIԷ#OFՉA% s80=a+ AU7ݳ8潿Do0W]dqMbO$B2"Ssܚ&٤5SJ^LZp v{'9o냮E \Ml68v=%zP(<TAϟ9g~ k(l휗IZ'v ՗p wo]u ҹ)1QqD8\R%)ܩz6?تRY>u>$Pқ? AlsGj̵pd<ԍK > Ծcһ^ְ+fw q^~uWvmƘM~ hk|\3u96NsM7~.s#>kwvC݊FI)o+%'EǮta}4(Z5EC=~&Șlh6nMn򹠺R؟ c\8lPmZŹpgVX̤w?B6ukX8+a@@׌dXԍ+].8Yl Rv`Oք|S5^(m py:%&2=x[5 UH495)>Ϛ6ɲf"~Q. xgO_;he@:{ ʘEoHLaoj{n%':a4HRcs/.qCIV4.BKH!U~^eIÏcKG仇(.*('Ըeb+ZRСYc-3I +='+ZIdxA8gXj0SXr<@ZGsw9 RNuXU*J6OHA`J^?ƾSCܧ>fuRsPߠ]kY'!7_Gٰא-޾.iV8twD 6Hq8 a萓l5R=ϐl#> g=q ޷?FAy=V*I֡1<8& ̒wy"=ԫg١ps:D7)vS̟M,ғTn ގhh9\qsAy:nZE'mϦ:љe7? \sT'F'Xc1aİ 1LDcrYZ'7/C>-YjL~ Upl?jN UCݍXjgu"ZU/ЮJf`!Tql݁r7/W[px xdV19BKfdG^HF`|Cڱ'ڢFi񩳔foUXsk}(B(@g&l} t[*q(ig&`XW}Qh4/b?dSLv0Gh{Q[4R"2TrŲ^8EA[LR>+Ȇ_Mڷ" "=p?7(= [LK$Ѹ$]Dfx{8z>΀kΦ~Wx)>"Etͨ'-F]HM_hP;_efِe-u@qs( yݧz~.V*8C;VNm&f)!tB0Ɏ@.|.uo%#wX5r(^,/+Ȗ&|HSEybcddma+j=qWKR]HR~/%UDa4ĵɛf]htI&a8"񫢈)X\V-GT4r 25boMX/I\Ufm,~ˇ|ߠ4iK0j//7!F fA*S->b=)cdϏ;ywؒK'BElI->nqultE1ǎ7L`bŶ,錇bWx^SMF|A_5(Mh|4jl q 7SZUҎcDO}A׬MYm@Qok%}́ 1wASpzNT9dE%UkU{G4YޅS}6l?pj! M4䪖CD׏2xWXG@_œ;'`»g6f=4$V^h/Ў{%R~^??J (p]XLG]evKH(Ѽ⌸QM&p I"?͸c $0b.pGPHq=s ̈iX2ma5MGE bIӱ[} ۓ( }!}<`k -1ϕLK!Gw=Սb3c;F ž*MRC}WCfM7y(9W'yP;z[&ҳO%MQT#')oM ڰn g(@Z -&I˟ # İ!Eob?ɼT EWy|5GwɶHzN7z^v\ź3@݆ [P@̅@_NS8SySf(e`Ϲ1 Em b /GmQE!_9H9b0F9#Ӟ9%!^rԑE/2<Ҡeq%Bxٔs4c@ե+CuzC^A +;.wO+\#Cgc{2\&B@K$ʖp? ᔝ}'l1C Y8!$C9@R "CϿƬNO7¿k)I(S^0΄*ߛcwsC|v˅|_?l6Dsʯ.S/=ψIc@j&O[Mo"[u4_->sF%ͳAx'+ߐ>L?+;(\Q=tRsMnr_jqPGa^cƎ &`2T&]Rq8u-+hHm <-dž.n6~Zpt ^dR'x!ª^p~Odowr~K'F3ԑ 5p&b'H#!/cIE0c^/:85v~G0߻,EQ =ѽg.\4ђGhoL91A4[hek@^ͿMGKP=l&V]WjY^fP*WFwq+L^s!h {LūH8W= `MF8rTȸMT^&.mX (~/eO(odRMԿrRtt'l=5_"U @u(ZsO<- ^-MJim;8$ZN9AMU a)v"胉/2}WD6)Xq2*Wg'ef_GPҢK ܵ"6~kc|bF6 H>8H<*J{B[ 'RMs# hzy/ w- 'l!8n럱q^1# [# }PUsf 1^B#W> Z Tm.tTV#5=_!?57N\J"Ya$vv97[<51jJ–ǯ/'\pQnN~$wf i!5r@^)܀onxzO[k$@‰i*{B{X}-Z€ǜ7RTCB3&"}x? ;;ڼdMƅklFnL)Dl V&3VL }1Ց(?` (~3 4|BL* %ٓd7L\j.b!t$7TeL['FLuo٣=AdQ@=9FqKr)[R))"|gWDH XWo!Dlb~F_ r'k{}$َ {.;[Sl2+:$^@(nĆaVElScq4.c':v~Lz "qoyhz-٦򭖈ĤN[EVumG/N:IHtw'n.lKBa٨hs08A10-xq,=lQ°K$/`D@[W )EI0F@%!EFR`%ȯP}NJY&S8M(|S~ 6q[ld$BoXRh*e | r(%/M[cQMKꐍc9!gqL}5?@bYU2{~sQ v}| 6s2n9-iB x >m\zoD/K>7ת/tq AaZ-Nv}@ yQ}@O dadiuP O^nV@˺:Hޛy'&eXEUhS M}ן  DmPY%j=ƧrxY;D8͕EۮD:JBR^jqBpЃs咯Qg݊$֕*vCeʻ 1}$n^|<6K@Zam#@8y[$AzizsjwPpީ\z|20pVc65'`i?N;)eoGMC/+Lvϛ=Fozzi5ckH/iuK6Wh 5⏫:UUv2Gj[S 9/r}(K=~lCtY]*n NKTT|&/'ƂMGi>=s\'OA@DC-H"f?Mm|d4^zԊ;ރP0 ѽ^/-|S[Zjo+:TWyoxϢD WZNw8bRnK-8mIx.3 tUe;g=@=9bO"XcZ1Tk^G)\;ɦiakd ŌU姈%gCm>5\Zզ–֩"`SdtN7"|l[5`[sytp(q& ._(e / 's748 "Qu'v߫#H 5)gLo'"yDOjZPSr_9F|2cAH/nЦZIPхʃ%S0C| ռ C4Gx~<[u=%I N X f!sok1xQpc\33,н|hzHG]a <R7Ui>:B2O]}(?z_} MܙeIW }YJ×M)1m5PlM sꆈTZ ] Q\L t a'UR`QIٟ(QeH=[ݫ΍휳&a&o? `FVʤbzwbA0w;-+&4!;=-jʪ ;fDGPt(;J' `ˇ?Ёz'$Aujj^6zp D`myoVy-*hK{;_9— / UezB+=ďgP L3FA,]gmPݐw'r|2V-k*44mX.k9u+wuPI ho ߺ|qIu˛* қ n' fBԅe]'vMMIsZp=`p rEC3 vZn&(% jg'kHt2owXՏGGp#]Q)Ć[G?Eq;QLD; Rv^_\G<Ӏ* 3FQ$tkmΌ ?u_+KӘ (6@7:O?sKk3[ ^sUHO)6Zz| lYgt+xlix۴!>~Ao1k.Q>يhp\NTb ݑt ˡi)+bHF"BBvc?<CQ,͋,sL@b2q#{YM(x`zqѽ7as)rbLu\)9DoӒ}gb kO zQrUC]rlZy2\oT@ͭ+N2F;5at5Y:rO)lMKs|Dg3 gz\IXO*z8޸gfùUxm/cLA|YԬS,$)#Q.߰X`K4 z>8ڈƣmy#l%„H@Aߐ^"N")#%to[ QVɊe;["rX{ M2z q+MCяڂ+W[<_4T5$b[;U&E2C_Rê;;Fr g8J:D1ICw|]$^eߘCBj{uN{J7n!<p֠q"oxh]!YajqfbZ2h ރ9 щW$m>*֏3UPfP4zDleS] "JRyfW9sIo>MN81TikZ,=?P]0/ ?' (8?O Hd{sv/`8P (fg0X6 'zofI׾sd JR8=Il (6wMI4qn=9u``U@@:3Cr/G 滫soVmxksOK+Mwj*OA4<4CZuAnceÍCPq%䦔^Uop %[}:VzHE\m`Sԓia$i1s3yu޻MoMYS|[rF-r1]z+"A/v^a VF1⛕quv6bΐDvIiC^,['e-σ młAb:#a%~l !{8R(mwQIrmڼַ3\cu&Ƶ@%DN-򭐒ɛIG>i%&utkbP`qh!RO?B$Д7\{{ٮO|촞cğ+yͻm]?-) "&7i)[wV} _Dω#14?džK`^ uZIXc3gjfӶ,,֞/v鎣B Q_>)l4*^>L2%oY] :%?4B8P[^#t^hDBMۿvgLLsȃK@(Ƃmknt h1kjY00@|_.G,%)/}{.H{q,б{29b:̕tc)?m49@^jhzmZVVl@ھpx11e#2PV]! can*ś$=L1>1{DɅ>Nhu \!,m-FڵXu%- 4&Q⃱brV$2gՒ0wl6ý1 R@u瑠+~c{zP<)=LAu8%]386}=m9@J#.k)3 g+ڭyttHo8-Q +IKqfTXFT0:䉸' 0]?kqPP57xp?s7ϱi/8EjzQI\$+(%R M݁O|JdWÃ!rp? i B.6/\u:6g9g9XKL>! V!!^>1;,ѫ0~+Bm gz< . pl<c!4G-a tg@|Z猟^GF wL)V;aSAT=f}JmIO?Ys:q9ĸ:Ƴy*teti0rz +d W?ޘ_a'9hN^=ewɂ NVmi?ErI:ҰU#0R"?e҄I$5SSY{>KI1L_`̵E\c9AiL@J.}w/Z?C NdCZő3 4Mm p;}q V<xi`Y*H>B&߀2ppfBIKV4 BMVvÉL\{?Py1xWLG>fVaѝ;yPՂ!<9wEabf߻_E )QP5߉Gk#"|j8,h'כ̅Wr:d@=1ZLkz"@8= )F[9c 3 _c]xJݟ%W[M芬?D )UGMBdCbo1i6c\F{J.;H!lcwK'DڏOϟ=F+IFII#/~:Ʋ KB0 N]u}#4ɐMeA M[C#JvԘ^T'Ŕ H'SoIWk AyG/]_xpn2b.pžʣ&AFty+Nfa@|*?LS=0<ʸ5Bc%/^?Ϊ醹Q.w]"_Fς OV_wnX4@Ehc%iܳơj e@S^R[KPXž\jW1/nS\Zy@#Mld<)9q؆HoH$:qãCqryWxXOR}f_\͐8f"AC$$:O4S;ļzJ sȎޥn{7e_AQnL!+yݬ*Y~iª)Ams_uh wsbz3 i  Tw D)ey=M98q&V2U7 SU!f(?gQ g|SR~Haτ{ë)$uЕ(2<9XhhHH0B5vp9O_$e'$_??k?ߘ+*ڃzg[0,bI/—ʋHs0(1Yb}P^XC3땨@ O)YwrԤsma{锣g!zI,Vuc[v a _# RŸLt`9W]zd/ ~+:^,uiEtgPK Go[Y qU"!4s?ɠa5j&0(05{:fA5|nA2:{z;S,.wm Dw[tG RZLg@sLk,YRIF`uT6mR(t-)B A ecWLZT3i3\MP[j0CPh>؏XԀu\}IbT*_:0( 8Y2]ú$\'yq1Yk<ӣ6a+PE?0y8kL\Զx\g| K;ERpe de42Ÿnǂېod" *UCF_ Եئ=eedd?DjRsL 堿|,?n`. b[k`u:wPH3i@GOQ>̧4bꓳ8Ae%*K>Vrpl7qpԅ@9ƗIV3iU_DytZ= hg<m AWaۈv@P ji;=ÏO M\} is 3Ƌ-Xͧ_j4:{%1:[ޡh1Q^4z2QH8hbyIERRŶΤ(!GscYeP)LDC#;#U8dHؚ@@VJDb ϧK٪c>VҪ}͕ί*B{>[QBl5d6<# WxtWiy,3,Ge@7! Dh6]w]B&+}LVj2" #wAoaMJMt66I[{{ZD(?BeW"#~d-? %NҥVC}-L-%TJ302X̝6`ENj qJmP|:Yws;D#ELK00/Ҿbl*D4uLi0~kڇ_b0@K(Uг6@hSUQۣ-P6Ee'2ˀMBp;bÓجXrxbzป+x#c'[i^D78QD/(j\1itŝ/wuA`4|& ޯp]SbO02ؐ~Wc^΂%ꂄS3솧$ U;"x5B_̉t_b pK ߐӳ?yqCh7T7KKa:<(g? =TԾ+ak4\#{`B _z$=9 Ҥjz;3ţ ?!\/3BaV/D]y(6>4 2[j}4:^^%nv}oiU&Q6x.뺤V9hO]2 n28Ķ^X:³=Y8J=*}XAj{cdEZves?\+H{B"+T$}ޓ}Bõ:yy$լU/8Or C@32"/]`Du[ҙ({ _H6Syt귊:{3=jYpsC/Vb8SfkfoḿWb+WEi #Ix4ꗨ Vles\hE1)h %(3_Hޡ7 d.wpy+ōMw}__VA± /'+ >n;C7l{CQ G,SWo`uQ"q!HYmPmO[!7*#3 GZœrSf/絀&CQ ˸vٍM*f- yhdeq?oPP&8YC&qBJeωzR1paBB}*i9Ƶ,& OtO d>BWabO^+=ܮl>havdi<]f-38ᤧSa-;*BBI8XW) )8 ?P.#4Xyp#4r1gr=J<8;K]ÞAw93CV:ۿW }_O IS2~B i@7R(6 P 3/ P:ic< |[ 5ā!ߞe{b]sBɸ =/>yCJE{z ΄F 8VUrJ4xy,w`U2i^{Hމ!|]1-ae6P,G OSs_?rPB]n`kkw}vEЈu1yE=,/iQbh-*0-@rڐ/0s!} Sm[J< ø3'ȟE2:\ȄHNgVzSfg{SBOrrr"ְ3j@kU G0DtK?TuGBw:_KgX+94]Dq{Rir SZAXOI_`-r:s+ub9idM8~32ֺmTxgxcX4='L(+YGa&mi@6TFAQmo2c'ޒo1@Uz,!AC2ԧm=Ǿ7{`+8 *)ބ̪UG7`<:#yf1Rw[ߞQ7@iULPs³m`E{8C3&ݚVeR"`Ŀ' {d5hi< Zn8 u.Pgq-Me)L֯"K,B(66"lхe8"{xnX gk wC=c'{mj .CC}oއw=e -شz~c7H<|J5*9? <[wZ i}L~FӡL|i݀(3)@3#gyR n=EÞT%K[W̅m}c0k3~XhemJ!jk=<6Ŏ7&[QutAMB[._rkN;ld'1XV$ݽ@5q3>С%小@[a&T -ˇK[ZvqŶ0ZS2;i+'  n`xt^en:r|e) hs/ 4b11_wŭMԢhK579T O+K;Y=BkIqh IS3;ETj}Dy؇ͥ USoK^Sm_)v+wFy3&dZ 6v}K5>XR+dFdJe35Nٹػjg|!rTX!E ;4C+kS{[!--8AXo7Î88r^|Z;'$+aNryw5nbߧ*f.9Gi1?lLp̥Ҧ^3 B=rFH_Kw\|7dz鋃س~4f9\^b(/~-ea3 , QGn)_[ dL$zecu 3PJLɜ? 1,iôiG#> 𔏫ҧm\he1$H0=oeOӯu|JdH9B9.NԅPeO4a (SZ76B4n.QG5 X\Uq#.a$hv f1<&IY2!nlڦE Gq36,OW7/m]/TVi_sNZ*^[ ,6T_.5 7D 0cNh9"n?OPð+ BvLG8/l=ʋZLyڎ.Skmm̵[Xc86p?htlոς>ax "8o)AQm'IPRpzTJmN`}EbC)/_o+,EmpwHS"? i]8Mgu& Meп-G"2WBɃ[ QT,}ܣN.Qs7?A&̢ )\sL @#Pࢎ`]4}e'㢈ثbENNy{kUuO E"J ~{uiTl}ǪmyoC0B 1үb417 yȨJ)@DZܽJ\S]Rp[bJ >*EG)0Aļ! T6FRec`A٪ih'{\:zz[aoXKH`ï"lC م5sy3Ef+G>'Ep;!HTF*1>CXQC]*Q;׳D5o'? gۭ;> %r܀"<_SETf#A\($ S?@ ,)?U&iVJ*H4+L4抉(O[s" es,-9r"Ҧ#ycF饰k[=rEh!Ԋ$.-J 3S,"W)]s4mtswo7vkx]x%.^ʌ)R iDc?1 daM1R}tpbV,լRU%ul[\X-ͰTٹ: [8 ]vԾB SlmMbE6\}F=_=g WKN) y.a8f{ɚl8%C4=_iT׾) "xⷥӬ7ADI@""7n=0mݭ79|6dOk-7hҝ^ZkKeOVFtkk-{"_ )(+P\z'EK6trN=`]砖7QpK#~_%bmbaK&{ZYwoHm=ivoY C/3 **~44*L ^c ;w,"칳Gp ̾|5g/[:\.eOR{˂ILk;J+HPWMG Iv{ݑUn $bdBUOL=>Oam'ʽJȠh=:2 Aϼx\V ؙ>1 ?h凌HʘWܡT|5e I^\,A)mVpK?<,`I۱TKYeohB]tLLwd׆ꊻtߺӖFL䃩͂ Q@+)s(oX:*C7b`FП={kaOC_Gh\GKG$c)|@ƽ١` y֢w1z`x?PTmR3;mo4SZ{.. feTmp ':ێ{CT&6T^V6FQgAl1}l'/`w[%+83f6jrZr-a}4U9uJ `7<%&uMyR%[B:`lJh#=.W.mr:tǩS.~_5 䝩?'/T%L6D(Ʀ>ŴFp0!k IQ|*n:nk_<njTc~{*aφqZc}0ԿuV(>73=Zp] <Xs sC4S*`RWgb$ο1K ]Aմu& nAQS9ksחY[;f35Zi:,!? Գm ҊQ_+=ǹm辀)%'WeJkO%|Nz /3J^O"uXA!Y:o ^\O?BVP@jV܎PL~Pl7iR .2Ai}(kCpZc7bÎK!F iT/o)B+D]U uXdZT IJ{-V/W[~Y`؋PǠAMI#2x;.5l[a:oŴh Avb/_y?~<3cv&KqOL ^bB8ѺaiǪ|;DLWs}\z7Iە_tٱSŴQGWE ^_`{ Dt>TXL28>G9+JK9!}۾7n'N@ +nFGP](MFG0bB˰r=>[J˓ۋY`Ge$ai ?s[L&QIO17?2k..끁m/?o |Y ,+`ICJ&m'҄. T; yt.k{]Zܛ09h:boQUMRs\4MlEөToLvlq7Ԇt"=rubqUdn?H25;ah`%pA.+?KɊ5._ܧl< 2Us6~>~( @>:GP-`L<(~FZ$:{>Z^'΃x&% AcA*'t3 Ęw5bjbo?  @%h9{{yzNvՍ޾0Agq%afʔ[20OIckUQ=iF oh/euYdid@TC%-jǠ[1w2 N;(ϥr_< .;V-}u#ο} VMP0Yw3 D{>dfJݕcֽ1 dkviD{w3i H+UDY?eJ!G(?[NcY$WG(SϕܠA/kyAk,ӝAܠItAAY(}j+^)ԴY;l읜L>ޛlUѫot. TsD`CqGFg}N; t_`ca_JLNƤzv->4L b O4۪s#ۼ0 d,cCwl[sMMߦr:&+a?I<2[ ݐn*P،b &³ ϗc`}wJԱ@t:%aNH%9΍W`ͥ›DA4[m'n;G*ȇYhuSE*aQSaY}n PQF$FJ{Ձd.җX-t\aݎ873*͑G+3XF\5sH|qeMdLbHӘrI9H S/` )fdW8?`,.,"0T6йф#FHɧrDmӧ٭i"Gnajt€x@juf 4@Y-!bn|܌߉SF%kgǴک `Itz}1a=B:ՍV-OakMi$AXV0ufLD;ܻܵTZb@pw4:&hOy!>LDXIg_# 1tp6٢#mϠ;W1rD?Z޲ܨ.vl26WZN!L6[E.0R G3}`XبvM8E 4>WF_MqI3Iفg](* EQ`-''I$U!wKs.GoAQ6kDHj^WrczVhiaV0.|ĨXO|do DYl,CEXjQVlx[V]vs&vfE)NRxQ;9۠"(C\jޡ j{06|EsY(re..qF+bSGC]nFvc5߃|ĪIVȹF^Aq)FͥFmLc6)*jT8bp[pz"u,r#ye a|P&e)z#m@?t_gBqcEja>dR*k\O͈ctkP\ Ml~Qaap tB!BK1 NU"hM 2C3ߚ~ku1s?qCY~~߆d;a4øwvem#ȈӳA%9 c.LI%`^W4D媜ieZ$PyI9[LEgJ.u H}MҌ4~k:װ g/- WXɭ򅆴kjSKs"ZUoo':A47;-R U<0= 楑F+%ҨzH!aI9eg.!͛EH dCp=P2 Lb(NWMsvQ T+i,>*ĆGUoG2mJZKg/0᷁#GPZG+O@ml46ngޘ*I, 7<2"^Z<&For)ls*es}_E3kQXT_jt1c9zE]mhI%{nF?FMȡ[?[z /:#zf)eƟWe|+);ohUDAK^jql3E?:DCZi5LB\SXu${2<ΌnXmE aS[83/LHWm!{tFZok?xDZ(ތ-g+eI (J .ۧY$3OD<mO(¡9Ac7'Wple1EChV#VQ{v+ '#ĝ;)s%} t9*\A$KB[;踽2͕P/|~nniNz1:avw\)"Sx&u!w7*Oޣb2=ƇKY =DMYvZ8|ӛEѥJ<l{MޡO3'oeu@cWښFݤ(V ߕn>N |mGv3&u(zPWt]XK?ϻoVg@Q_G&e@1L8݋s])/qդ(} !hǶöpPʲ̛pVA uAU}XJ-^=AgdWvi8ßՙ1Q24a2b"a+exDua7JIlwa*QNݫ\IH}%nH쐈{(HX+ 9lt O8iI p˞F6=Qtzo#^FHXX8b #c{ "|{i v{ " ٧llhm0.p:4C'E[Օ:%zJM36z}֣^A&/~ 6L(gđn ohFG$kU'p͌Ja|].]ٝp yk$ s/5H%nkYb ~JLI^{JԩT?z}@m^HȨ»zDh 8ۋ}&5!l7c/粻~ѡCAYkY,#E=-<^4FKwtdzWm=3R?F+.zdHM@$y~o4P,(j9g鰤Oh2ec985Т-v?m39\ݔዞ5H.޵_$I>}4iB ,Be ^+7B-ʧt;%047]:% V3Sؙ8n]BЛT  ' tp4e%|!c$!6Cݜj8 }3? ֊%[*>Ͷ\HWKVv0ç܃7h3lK&*n_O +0]3AI= 꿩,yyw}I$TQ9W@q=53oėxJib_R~CH 9Čj"=ϷKZrz XH%fD۹Wv?Q3Q[-LnYtEj{Q "qzj)Eq^LJڃB=dx noBHe6ⱜ2br/&O|ElNZZl41ˊhl=M!3~^i}-48l/e?ӂTV<8ZlZثf|DGQHJ Fr_5D|Cf8[ DUok$BjN|,aɆ|W  "(ܹ *͋{K@?uD $#Rnt  Dc# T!V& Zg/TݸjaNA5? 4 &ߣnZ-6> H)S .mm$9ɷKhnj.%dBMz?.(r:cpª(X5o f(\\Z,1:tt1QsQJɍ0 ;ƤK2>)`:ɫ^څj)g8hńALst2Dq>EQ׭RpQR1;uʧN'1="[x%8h~SKW b]inRGmPD#znm\a P:w{sB:?L(& ҩ} *_ Mv]tYYiگJ?@gҔ5ӓKqw댪ڢ HM耔f@6:_Zt8Ϛ{8[1P@~UnͩP9q]Eɗf \"8[Ǿ6L?Ϳݴ)Q/N]/ tByЫ9SnO=~u]uƟ7yQ4/V9qY>> ЁK^m \jD?FC1?loZb8kvKN~/^% dsAw8 kxݷ % ٷ[.m~&vFiAI:59tUB2CY*HdNo ^y6ҏ GE4Orv[M۷!' ha) 76=gÊlؒQrgh]|lFY&tB=R4óXs}z)qsiJ4{S!,_L%Ķe(ۘ_&l'M9Å;&(7RD'3pPQFr .|x@Zl= iALH[ʂ|5Hnj(^7>XMg:x4Jeڍ>BaQc K=0Ӊei#U9~#ԚXI< _ˣtHuWy(-H_+-G@AwGrJg)m4j%x/%(ٌn@/ڲmR$ŽSMP4ELU̲Z?Fcߛaj8D$)ŷliڏ8&KO'8F0vpS 4!ncqLj|@q<x1WD7kWgy 7↫s{kCEAߚ.4 ^s{*^TZLC ctd1<$m؆Y$ Z {9qk~k^i@,1#3#Ɗ8G),sI6'lXW E+o3co躞fDG]p)zK;''t, Zm.o>Wv3Ӱ t /$zqR}paS]售-;!cY 5 2YE l0ol9ۜr5rE$/xF )#)rvY=btfY9Ow4Ҿz]4X4* Hs0L0=N,1w-X|1) Yc23=,UVc}9GD>f(,Φv8xw LsU4M-z] f[;:^>~F_u 0cVZ.p C ҃ @v%߭=<~8LS)v>|{\DS_YU ;<۠rۅ#B@(rue/c<xhy7 I1X#DyZ7ʡN]+AM~(21RXM֛Sƅ6dSω#[RDjUv!8*XX}>7ԓޕkQ/9`,bR\Wmoa҈3_zcQ9bn{%p+Ũ=d#/!)EɼV5sb;Qcv<ĝqvi,J uy"ɠntE{ܢ%o2qOwa48u)6NzbSE+WI1+Y r*?A$ :Ч*UtC ͠Ckk h% $[Ӿ0]%vL3{͖1kW/辫W4P(;{rqQZ^2قv5)uCH'$ ^ϗڍ=P‚`ʐŏ uvdLٸa4Z}Fk=9񗈎f1bNՑq^ :E+[{vgkMlDn#}nXnm#g6jE6'\U9moV 9`U}\ih=4tcۣ>^E()-Ͱ=Vj,Ej,Sܖ`Lfde]Og7߆EF(6uNJAfYfeSrЋZs@i囫E5@˝8kdu60Ip*6fÍI6'];9-١Q/> $`p!h48cLl[Dx,1.[rEZ wrxS P٧Y^tKc?;&wJuL#Mץ/^7/P5– {֯VP}*(wF+{ܸjLipFM (l(ס*2)Fpv}P%ݎ<׻,&{"o2A=['`ݣ zW\x'jފS~ Cؿ!/PWI,)~K[<GD/EտjM}Ka,H$HQh ݸ98G:N, ڀi3ڐTy/;Bf2̜^0;`[0M\nYF8o3K,1ɐ X0HKL1~e=?Fz`[KZ0U( /T{&n7$A9JخP@& }c( MZ?qh"܈AUw4Hz óY GBƌ!^8 e4w,8"0vHӒa9"⺡4iL#iؽ)ty3wDQvlUL%Rro=!J.qL= uk3Ǹj%:Ge|&Q;A \{#!N>DU" P^9p%ò&r:34|7e$jIn sn֚38V#D.c Gif╉wbwl)'sdx1`Iѕ+SN L~تOYSgX&i6t#6gJƣ;Yfu^vE}FB9ӳfĭAoS1ȅَ6)/PPX+i#b?Yt{گ,lYE@X C ܺ#4W7fK FGjms+…شH kzЫ`lo|R=z{01)%rN矰:%{'"o7 }gYB/1Ozl-Q#U{ Ob%8gثsKf's9Ze 6^b&yޟ'2|5IC~JQQĕO"'cJXa-Ve )d92:4;g#;)%jfʐs֣"A_[_UeF%Q`6 _] |u;XܹF\J^OuQ~UM\CqGgNÀ@~E'gbDZՇ&N8}= 6(`]mlcvB&;h5]Sw'׵kSCݒx(qm딳ٗ\PC>3hu rHߚ1SܟXde٬kÔ ZܔnXOI ZKZtR M:`NohSlYtwn(nhJme/i{wۮzgYNv.Uk5*Ur8Y'%zV+eqPeF22gR/s>5S]$˅9EsZRa%MyS ]4ZaH+JlfGZZ4oH1$qQ5)d> ֘'rN?:")uG9#|x*oJi9YRT&Y%Lb*xC1^wļ&a+fJ {^)`Œ%.A\W ??8A Uow!l㕨fC/5ʷ^ÿj~XEmJ=$WO r7y@r2e “W!8,V .ZR/3\eV3|\@ z}$EdzXv<l#z* T}2wG. =<8I:l2A_^} ֫K x1~P<\q(7Yv̿Z&ަu15o] 8PQFHHx`˹9अ+H V qe̐M & Ԕ݌IdžM[:1`ݯ{JL%>1n>xdѦdHN]?T޿a28)`'$胛:6} Me5QNV]Xɾ~5R nWEM}.2ZS#H-f:%§_:'g5]>LHsmyTB `c\%Z-^hR h#&~n$3] xrHS$N>P7N)k^6VaFP\aBѬ@}a yKq9!vQLhvmӨ?njɪ>@])0,#HO$g1Ė:Q(_o`Ӕ/gPf,DG&fUְ~IZ}o/I,Dz8#=C"r4fDQ1( yTd!2Rjǘ4 ջ TS]#õ.l4~{ǃU|Hd\UpUTY٠ &?WvU0Cn!t֎Vb@C&lwlh=hFJݴ٠戭 5_۷*+ =;frxdhOo) yz+k. b ar#>>{VN*dMAho/S;LBȿekȅe(!VɄY^Mɋ T@G/IߠHUdhR +b]>02c’HwzFZZI41c1x+-t-Nx=Ɍ >$\o"g}#Z^roHH9}01qUkW{ly Y\%I6_QyШ2hzsbT[oeq.wDj|ed˒$@W֞G&]$?R5@ƭZbfYȲ$0hmwU̿o-od: hq \r]a{td(=!>^i=~ d5[Χ:L)j*o']Ʌx^qŽ}99Wg=6r& gpb_ S$/-%S=>7S2-"VsP:˅q8S`ybkEy{FZ-NTT<2Jyd9.$=%u3d3?#]5 AWG%x%Miv4R&+bdi pۑ)Ŝ.~s^dv( ǡ]t}gn3WY( Kapi˻4\aҬ@$VM V"jfN1Ʈ@hu-v lC#E$plnpV{3 Mا,k LW|X.-Wp9?HFV C%tY0/ʛ]7aULY.kS$MݓI2T YA&c qkF/&6bqV0Gf(űOXxZ^F^jN'$·I:fv tCE]Ld.h@+m4Q (u.PƀRnJh֛C2s$ y儖_7ko6#^+Pu6n rF3{<@wve^8a㛤  6r0zA'LR5_I+-W|Ͱ;HUÖexsbҭX:Fr ,揶8 pĞĤjS@r CO6;^i =ҕ~ǡ< :=qm@GIO5Bԉ^UqAynR'di漏(̔zu`k/sqL|U;q4P$Wf)Qhvv|~)%-pfi"c _ս9M0yAJMԳg;YXQr"%V+Ί ~ ’(Wc%`:P{#p88Y@| q; LZ%MRx|攸ڿ4DbF 1 5 e4d~۳bvцhTi$u)hF?+ҁ $ASXY{6D\uDCqQ5 4;_qs[B9҈iVL:ZH<^J(W +(:XLbؠ_%#Kl ^ ,Jj,^&[3RSt.C`uM_#H \;u֍*9<7`Z0_D.bGr--[hґS3pYRs"c |a%KN\)c`m) +NZe虞Ξ'g:>-rtcc7G7WeP/BujȞUh]fь:}mn>Nj:`\kx ﶵPlPPx!u ٽ\mY:_b+<=u&Ɛ ZR5P]AxQ<ك/mZ54.[7i!?}!y&򄈎~1dygشa!]ddk1lV meNa)Xʊ 벥3E?=ˣYxb5ЫČȀa:3 rNjh}B$9TSm;i4 |3 {E.'slݫw%˟H5v# @΅5@hy'HK`x#_wQ(]GC.:O^ ;D [dla/fֱ[ 6-w @.%ZcV?H=cmeNOQcP}#4i44Ny<,v)Osu{B-od ݅w,əF{4+VƴGUavvP鷚0RF86i0>:} qLjLY%7if*KK6Foc9Jac͜>-zlp []vA(PL^SWY;D995&:_`y<vXx-R3Q9c6a'؄f\̽L # v}=Jk@O. Z]-{Z;EZ!i/4)xͶ{uWO!;pcOl1&Jz'aLT]^1kyC$ h!lJ P'OJ|%|.:^ᴗ6FZ6nbI$ѩ]OKJ["L=| K(-SF !V'ZH$;T\b@SKkO!LB/ky|'*5jOHU횰O*^&dj({*%lvTEC 0=9I^HM8EYΨ1'Ero!Æq Vۛ5J2o3;P s$g"6eL]yj4m)c+fRD_UyKcbIR8 czgBtJpD%cȶ!c^݄D-ihڅ?kXxuLFRk;b$_XU6\U!:6I p"հ |'WTNU_ NÍK$=NjNnG>l "V6( KR6dCZ~qǭd.Ѽ-4MӵR1nq'Ӯmv mfF3@70Stdn`Y[G*ɔ>Э7j*݉w^pS]YZ aKs ы;lޚ[`KReDúM~Lfnq-bGOCZA4nj<2M9uu=zYwhH^ v-,?Pme8#! eZf>q^BlREjo1UྐྵAsinETM#^5t0ː[UЮ:9AS2c,jbCw kvC,Eg EeVde+\ 1Vlji̬'%A3+j}tg ٓoK،WW[ÒQMǟѠMt `WQ%&} 2:G#YwV~>$@͍ڦ~pEmGJD1[۠yg \>zRlX}qU%[ףgswá({:Ԃ-pnel&*)d1cfQ/nJ1LJPZl.? kQkG[; Q~IR梻d1R,f_W B9۾ins@i\Y -Du%_GI%cgj|_‑zWZ};`dYbED:S?",}n; $=ߊ[@}H6P"uMwx{Ne]Zz'Įzss=VaG~TmCXb6T˩=fj0оjuRLhc2B,p&o:qG[#m0xs EڪHk2?_KtmТ^>:3>h`U*OjM =`phY8Gl+^~ޙ$v?IyʬYn,í043JKcPq8u;GЭ8a 'E=!S}m:`dǖ$~ΐT}:N%.;=O >jkWz +Heܔdd[baFѵdVX6`@TMĝ\Jɔrww'_!wFH?f(o(ܺS>>&vݞ$>D#`-ԐȎ-kN I#%[Sg ju)89˿ :b-ѯ>D *Ӿq.i YZ