postfix-3.7.3-150500.3.11.1<>,ehnp9| WS_E}@1@]:@>txX7Z!F =a jZTea!Y=BJQP$GlgXNSm+>(u[~ vPbM#sh2Zy/ϛZ2dwZģW} &}IC?)u޳NϲiL˭xU@ۼ e=.3nɾ x!C@tSMX=qL a>T?d   B )@FMa,/t  Z ! %@ P QUYW]]` a>b>g>h@hLhf(hi7hp8j09l:xA=t>|?@BCFGHIHX YP Z[\]^bcdeflu4vx;wlxװyz(8<DHLTX\bCpostfix3.7.3150500.3.11.1A fast, secure, and flexible mailerPostfix aims to be an alternative to the widely-used sendmail program.ehnh04-ch1c3wOSUSE Linux Enterprise 15SUSE LLC IPL-1.0 OR EPL-2.0https://www.suse.com/Productivity/Networking/Email/Servershttp://www.postfix.orglinuxx86_64# If existing default database type is hash, we need to convert the # databases because hash (and btree) is no longer supported after # the upgrade if [ -x /usr/sbin/postconf ]; then DEF_DB_TYPE=$(postconf default_database_type) case $DEF_DB_TYPE in *hash) touch /run/postfix-needs-convert esac fi if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : for service in postfix.service ; do sysv_service=${service%.*} if [ ! -e /usr/lib/systemd/system/$service ] && [ ! -e /etc/init.d/$sysv_service ]; then mkdir -p /run/systemd/rpm/needs-preset touch /run/systemd/rpm/needs-preset/$service elif [ -e /etc/init.d/$sysv_service ] && [ ! -e /var/lib/systemd/migrated/$sysv_service ]; then /usr/sbin/systemd-sysv-convert --save $sysv_service || : mkdir -p /run/systemd/rpm/needs-sysv-convert touch /run/systemd/rpm/needs-sysv-convert/$service fi done fi /usr/sbin/sysusers2shadow postfix-user.conf <<"EOF" || [ -f /.buildenv ] g postfix 51 - - g maildrop 59 - - u postfix 51 "Postfix Daemon" /var/spool/postfix m postfix maildrop m postfix mail EOF # We never have to run suseconfig for postfix after installation # We only start postfix own upgrade-configuration by update # # If the default database type of the previous installation was # hash, we also need to rebuild the databases in the new lmdb # format if [ ${1:-0} -gt 1 ]; then touch /var/adm/postfix.configured echo "Executing upgrade-configuration." /usr/sbin/postfix set-permissions upgrade-configuration setgid_group=maildrop || : if [ "$(/usr/sbin/postconf -h daemon_directory)" != "/usr/lib/postfix/bin/" ]; then /usr/sbin/postconf daemon_directory=/usr/lib/postfix/bin/ fi if [ -e /run/postfix-needs-convert ]; then sed -i -E "s/(btree|hash):/lmdb:/g" /etc/postfix/{main.cf,master.cf} for i in $(find /etc/postfix -name "*.db"); do postmap ${i%.db} done for i in $(find /etc/aliases.d/ -name "*.db"); do postalias ${i%.db} done if [ -e /etc/aliases.db ]; then postalias /etc/aliases fi rm /run/postfix-needs-convert fi fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/postdrop fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/postlog fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/postqueue fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /etc/postfix/sasl_passwd fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/sendmail fi PNAME=postfix SUBPNAME= SYSC_TEMPLATE=/usr/share/fillup-templates/sysconfig.$PNAME$SUBPNAME # If template not in new /usr/share/fillup-templates, fallback to old TEMPLATE_DIR if [ ! -f $SYSC_TEMPLATE ] ; then TEMPLATE_DIR=/var/adm/fillup-templates SYSC_TEMPLATE=$TEMPLATE_DIR/sysconfig.$PNAME$SUBPNAME fi SD_NAME="" if [ -x /bin/fillup ] ; then if [ -f $SYSC_TEMPLATE ] ; then echo "Updating /etc/sysconfig/$SD_NAME$PNAME ..." mkdir -p /etc/sysconfig/$SD_NAME touch /etc/sysconfig/$SD_NAME$PNAME /bin/fillup -q /etc/sysconfig/$SD_NAME$PNAME $SYSC_TEMPLATE fi else echo "ERROR: fillup not found. This should not happen. Please compare" echo "/etc/sysconfig/$PNAME and $TEMPLATE_DIR/sysconfig.$PNAME and" echo "update by hand." fi PNAME=mail SUBPNAME=-postfix SYSC_TEMPLATE=/usr/share/fillup-templates/sysconfig.$PNAME$SUBPNAME # If template not in new /usr/share/fillup-templates, fallback to old TEMPLATE_DIR if [ ! -f $SYSC_TEMPLATE ] ; then TEMPLATE_DIR=/var/adm/fillup-templates SYSC_TEMPLATE=$TEMPLATE_DIR/sysconfig.$PNAME$SUBPNAME fi SD_NAME="" if [ -x /bin/fillup ] ; then if [ -f $SYSC_TEMPLATE ] ; then echo "Updating /etc/sysconfig/$SD_NAME$PNAME ..." mkdir -p /etc/sysconfig/$SD_NAME touch /etc/sysconfig/$SD_NAME$PNAME /bin/fillup -q /etc/sysconfig/$SD_NAME$PNAME $SYSC_TEMPLATE fi else echo "ERROR: fillup not found. This should not happen. Please compare" echo "/etc/sysconfig/$PNAME and $TEMPLATE_DIR/sysconfig.$PNAME and" echo "update by hand." fi if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" ]; then /usr/bin/systemctl daemon-reload || : fi for service in postfix.service ; do sysv_service=${service%.*} if [ -e /run/systemd/rpm/needs-preset/$service ]; then /usr/bin/systemctl preset $service || : rm "/run/systemd/rpm/needs-preset/$service" || : elif [ -e /run/systemd/rpm/needs-sysv-convert/$service ]; then /usr/sbin/systemd-sysv-convert --apply $sysv_service || : rm "/run/systemd/rpm/needs-sysv-convert/$service" || : touch /var/lib/systemd/migrated/$sysv_service || : fi done fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -eq 0 -a -x /usr/bin/systemctl ]; then # Package removal, not upgrade /usr/bin/systemctl --no-reload disable postfix.service || : ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_STOP_ON_REMOVAL" && . /etc/sysconfig/services test "$DISABLE_STOP_ON_REMOVAL" = yes -o \ "$DISABLE_STOP_ON_REMOVAL" = 1 && exit 0 /usr/bin/systemctl stop postfix.service ) || : fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ $1 -eq 0 ]; then # Package removal for service in postfix.service ; do sysv_service="${service%.*}" rm -f "/var/lib/systemd/migrated/$sysv_service" || : done fi if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ "$FIRST_ARG" -ge 1 ]; then # Package upgrade, not uninstall if [ -x /usr/bin/systemctl ]; then ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_RESTART_ON_UPDATE" && . /etc/sysconfig/services test "$DISABLE_RESTART_ON_UPDATE" = yes -o \ "$DISABLE_RESTART_ON_UPDATE" = 1 && exit 0 /usr/bin/systemctl try-restart postfix.service ) || : fi fi~Rw) 3(\{~!%/461Hʀ(((H 8Z0t*nI($NHX89`(Yz8 |}!!UWG^RDw0?ȾHHPI 8(()HHj0XiHi@|hXAg}](( J A;9 & -  vZH 1 z  ~ &q $ `|T 6 *6Z d& `AAA큤A큀AA큤AAAAA큤A큤AAAAAAAAAAAAAAAAehhB*TehdehdehhehbehbehbehbehbehbJehdehbehc]:J@~f`Ӳehc@~f@~fehbehbehbehcehcehd@~fehgehgehgeheehfehfehfehfehfehfehfehfehfehfehfehfehfehfehbehbehbehbehfehbehfehfehfehfehfehfehfehfehfehfehfehfehfehfehdehdehgehgehgehgehgehbehbehbehdehbehfehfehd^=?PҺ^@zb/&2 /usr/bin/chkstat -n --warn --system -e /usr/sbin/postlog 1>&2 /usr/bin/chkstat -n --warn --system -e /usr/sbin/postqueue 1>&2 /usr/bin/chkstat -n --warn --system -e /etc/postfix/sasl_passwd 1>&2 /usr/bin/chkstat -n --warn --system -e /usr/sbin/sendmail 1>&2 # ---------------------------------------------------------------------------e(e;dܺ@d@bbbzSbq@bobf@b]RbJbBb4t@b/.@baa@araraqV@a^@a'@a$@a ``R@``E`"@`̊`D``r`!@`t6@`H`B@`3@`U`__@_@_@__j___L@_D@_?@_/@_p@_A@^^^b^'@^>@^=@^ku^=Q@^:@^8 @]e@]@]b@]m]M`@]:@]9]4S]]^@]@\@\\\@\~d\}@\zp@\y\\\LK\I[[=@[ͻ[[[[ZZUZZkZ@Z)-@Z@ZY@Y@YMY@Y@YY@YyYC@XQ@Xh@XX@XO@XO@X7@XM@Xv@Xk@X9y@X)@X lW1@W WPWJWDB@WDB@WVVVV@VhVU5@U@U@UUlI@UXU6;U3Tء@TOT@TTT@To)@TeTN3TD@varkoly@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.comchris@computersalat.dechris@computersalat.dechris@computersalat.dechris@computersalat.dedimstar@opensuse.orgmrueckert@suse.demichael@stroeder.comvarkoly@suse.comilya@ilya.cfmichael@stroeder.comvarkoly@suse.comvarkoly@suse.commichael@stroeder.commichael@stroeder.comopensuse@dstoecker.dejsegitz@suse.comjsegitz@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.comchris@computersalat.devarkoly@suse.commichael@stroeder.comvarkoly@suse.comchris@computersalat.dechris@computersalat.degmbr3@opensuse.orgmichael@stroeder.comchris@computersalat.demrueckert@suse.devarkoly@suse.commichael@stroeder.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.cominfo@paolostivanin.comsuse+build@de-korte.orgvarkoly@suse.comsuse+build@de-korte.orgsuse+build@de-korte.orgsuse+build@de-korte.orgvarkoly@suse.comvarkoly@suse.commichael@stroeder.commichael@stroeder.comkukuk@suse.comkukuk@suse.comsuse+build@de-korte.orgmichael@stroeder.comsuse+build@de-korte.orgkukuk@suse.commichael@stroeder.commichael@stroeder.commichael@stroeder.comsuse+build@de-korte.orgmichael@stroeder.commichael@stroeder.comvarkoly@suse.comvarkoly@suse.commichael@stroeder.commichael@stroeder.commliska@suse.czmichael@stroeder.comvarkoly@suse.comchris@computersalat.devarkoly@suse.commatthias.gerstner@suse.comchris@computersalat.demichael@stroeder.comvarkoly@suse.comdimstar@opensuse.orgtchvatal@suse.comvarkoly@suse.commichael@stroeder.comvarkoly@suse.comjslaby@suse.commrueckert@suse.demichael@stroeder.commax@suse.comchris@computersalat.dechris@computersalat.demalte.kraus@suse.commichael@stroeder.comchris@computersalat.dechris@computersalat.devarkoly@suse.comtchvatal@suse.comvarkoly@suse.commichael@stroeder.comlnussel@suse.deadam.majer@suse.devarkoly@suse.comilya@ilya.pp.uavarkoly@suse.comdimstar@opensuse.orgrbrown@suse.comkukuk@suse.demichael@stroeder.comvarkoly@suse.comchris@computersalat.devarkoly@suse.comvarkoly@suse.commichael@stroeder.comkukuk@suse.devarkoly@suse.commichael@stroeder.comchris@computersalat.dewerner@suse.dechris@computersalat.dekukuk@suse.demrueckert@suse.dewr@rosenauer.orgkukuk@suse.comchris@computersalat.devarkoly@suse.comvarkoly@suse.comchris@computersalat.dechris@computersalat.dechris@computersalat.demichael@stroeder.commichael@stroeder.comschwab@suse.dechris@computersalat.devarkoly@suse.comvarkoly@suse.comopensuse@dstoecker.demrueckert@suse.demrueckert@suse.demrueckert@suse.devarkoly@suse.comvarkoly@suse.commichael@stroeder.comjkeil@suse.demeissner@suse.commeissner@suse.commichael@stroeder.comcrrodriguez@opensuse.orgmpluskal@suse.commrueckert@suse.demrueckert@suse.demichael@stroeder.comvarkoly@suse.comvarkoly@suse.commpluskal@suse.comvarkoly@suse.comvarkoly@suse.comtchvatal@suse.comdimstar@opensuse.orgdmueller@suse.commichael@stroeder.com- (bsc#1218304) VUL-0: postfix: new SMTP smuggling attack (bsc#1218314) SMTP Smuggling - Spoofing E-Mails Worldwide Apply patch containing the feature smtpd_forbid_unauth_pipelining as default yes. add patch: postfix-3.7-patch06 - Security: the Postfix SMTP server optionally disconnects remote SMTP clients that violate RFC 2920 (or 5321) command pipelining constraints. The server replies with "554 5.5.0 Error: SMTP protocol synchronization" and logs the unexpected remote SMTP client input. Specify "smtpd_forbid_unauth_pipelining = yes" to enable. - Workaround to limit collateral damage from OS distributions that crank up security to 11, increasing the number of plaintext email deliveries. This introduces basic OpenSSL configuration file support, with two new parameters "tls_config_file" and "tls_config_name". Details are in the postconf(5) manpage under "tls_config_file" and "tls_config_name".- postfix: config.postfix causes too tight permission on main.cf (bsc#1215372)- CVE-2023-32182: postfix: config_postfix SUSE specific script potentially bad /tmp file usage (bsc#1211196) Use temp file created by mktemp- update to 3.7.3 postfix 3.7.2 - messages with many recipients are declared corrupt with warning: Unexpected record type 'X' at offset (bsc#1213515) This fixes a bug where some messages were not delivered after "warning: Unexpected record type 'X' The new version contains only the required patch- use correct source signature file (gpg2)- update to 3.7.2 https://de.postfix.org/ftpmirror/official/postfix-3.7.2.RELEASE_NOTES - rebase patches * pointer_to_literals.patch * postfix-linux45.patch * postfix-main.cf.patch * postfix-master.cf.patch * postfix-no-md5.patch * postfix-ssl-release-buffers.patch * postfix-vda-v14-3.0.3.patch * set-default-db-type.patch - build against libpcre2- remove *.swp from postfix-SUSE.tar.gz- fix config.postfix 'hash' leftover with relay_recipients - update postfix-main.cf.patch about * smtp_tls_security_level (obsoletes smtp_use_tls, smtp_enforce_tls) * smtpd_tls_security_level (obsoletes smtpd_use_tls, smtpd_enforce_tls) - rebase/refresh patches * harden_postfix.service.patch * postfix-avoid-infinit-loop-if-no-permission.patch * postfix-master.cf.patch * postfix-vda-v14-3.0.3.patch * set-default-db-type.patch- Change ed requires to /usr/bin/ed: allow busybox-ed to be used inside containers.- add missing requires for config.postfix and the postfix postinstall script: perl and ed- update to 3.6.6 * (problem introduced: Postfix 2.7) The milter_header_checks maps are now opened before the cleanup(8) server enters the chroot jail. * In an internal client module, "host or service not found" was a fatal error, causing the milter_default_action setting to be ignored. It is now a non-fatal error, just like a failure to connect. * The proxy_read_maps default value was missing up to 27 parameter names. The corresponding lookup tables were not automatically authorized for use with the proxymap(8) service. The parameter names were ending in _checks, _reply_footer, _reply_filter, _command_filter, and _delivery_status_filter. * (problem introduced: Postfix 3.0) With dynamic map loading enabled, an attempt to create a map with "postmap regexp:path" would result in a bogus error message "Is the postfix-regexp package installed?" instead of "unsupported map type for this operation". This happened with all non-dynamic map types (static, cidr, etc.) that have no 'bulk create' support.- config.postfix fails to set smtp_tls_security_level (bsc#1192314)- Refreshed spec-file via spec-cleaner and manual optimizated. * Added -p flag to all install commands. * Removed -f flag from all ln commands. - Changed file harden_postfix.service.patch (boo#1191988).- update to 3.6.5 * Glibc 2.34 implements closefrom(). This was causing a conflict with Postfix's implementation for systems that have no closefrom() implementation. * Support for Berkeley DB version 18. - removed obsolete postfix-3.6.2-glibc-234-build-fix.patch- Postfix on start don't run postalias /etc/postfix/aliases (error open database /etc/postfix/aliases.lmdb). (bsc#1197041) Apply proposed patch- config.postfix can't handle symlink'd /etc/resolv.cof (bsc#1195019) Adapt proposed change: using "cp -afL" by copying.- Update to 3.6.4 * Bug introduced in bugfix 20210708: duplicate bounce_notice_recipient entries in postconf output. This was caused by an incomplete fix to send SMTP session transcripts to $bounce_notice_recipient. * Bug introduced in Postfix 3.0: the proxymap daemon did not automatically authorize proxied maps inside pipemap (example: pipemap:{proxy:maptype:mapname, ...}) or inside unionmap. * Bug introduced in Postfix 2.5: off-by-one error while writing a string terminator. This code passed all memory corruption tests, presumably because it wrote over an alignment padding byte, or over an adjacent character byte that was never read. * The proxymap daemon did not automatically authorize map features added after Postfix 3.3, caused by missing *_maps parameter names in the proxy_read_maps default value. Found during code maintenance.- Update to 3.6.3 * (problem introduced in Postfix 2.4, released in 2007): queue file corruption after a Milter (for example, MIMEDefang) made a request to replace the message body with a copy of that message body plus additional text (for example, a SpamAssassin report). * (problem introduced in Postfix 2.10, released in 2012): The postconf "-x" option could produce incorrect output, because multiple functions were implicitly sharing a buffer for intermediate results. Problem report by raf, root cause analysis by Viktor Dukhovni. * (problem introduced in Postfix 2.11, released in 2013): The check_ccert_access feature worked as expected, but produced a spurious warning when Postfix was built without SASL support. Fix by Brad Barden. * Fix for a compiler warning due to a missing 'const' qualifier when compiling Postfix with OpenSSL 3. Depending on compiler settings this could cause the build to fail. * The known_tcp_ports settings had no effect. It also wasn't fully implemented. Problem report by Peter. * Fix for missing space between a hostname and warning text.- Ensure postfix can write to home directory or server side filtering wont work (sieve)- Ensure service can write to /etc/postfix- Added hardening to systemd service (bsc#1181400). Added harden_postfix.service.patch- config.postfix not updatet after lmdb switch (bsc#1190945) Adapt config.postfix- postfix master.cf: to include "submissions" service (bsc#1189684) Adapt master.cf patch- postfix fails with glibc 2.34 Define HAS_CLOSEFROM (bsc#1189101) add patch - postfix-3.6.2-glibc-234-build-fix.patch- fix config.postfix (follow up of bsc#1188477)- Syntax error in config.postfix (bsc#1188477)- Update to 3.6.2 * In Postfix 3.6, fixed a false "Result too large" (ERANGE) fatal error in the compatibility_level parser, because there was no 'errno = 0' statement before an strtol() call. * (problem introduced in Postfix 3.3) "Null pointer read" error in the cleanup daemon when "header_from_format = standard" (the default as of Postfix 3.3), and email was submitted with /usr/sbin/sendmail without From: header, and an all-space full name was specified in 1) the password file, 2) with "sendmail - F", or 3) with the NAME environment variable. Found by Renaud Metrich. * (problem introduced in Postfix 2.4) False "too many reverse jump" warnings in the showq daemon, because loop detection code was comparing memory addresses instead of queue file names. Reported by Mehmet Avcioglu. * (problem introduced in 1999) The Postfix SMTP server was sending all session transcripts to the error_notice_recipient (default: postmaster), instead of sending transcripts of bounced mail to the bounce_notice_recipient (default: postmaster). Reported by Hans van Zijst. * The texthash: map implementation broke tls_server_sni_maps, because it did not support multi-file inputs. Reported by Christopher Gurnee, who also found an instance of the missing code in the "postmap -F" source code. File: util/dict_thash.c.- spamd wants to start before mail-transfer-agent.target, but that target doesn't exist (bsc#1066854)- postfix-SUSE * rework sysconfig.postfix, add - POSTFIX_WITH_DKIM - POSTFIX_DKIM_CONN * rework config.postfix for main.cf - with_dkim - update postfix-main.cf.patch * add OpenDKIM settings- postfix-mysql * add mysql_relay_recipient_maps.cf - postfix-SUSE * rework sysconfig.postfix, add - POSTFIX_RELAY_RECIPIENTS - POSTFIX_BACKUPMX * add relay_recipients * rework config.postfix for main.cf - is_backupmx - relay_recipient_maps- Add now working CONFIG parameter to sysusers generator - Remove unnecessary group line from postfix-vmail-user.conf- Update to 3.6.1 * Bugfix (introduced: Postfix 2.11): the command "postmap lmdb:/file/name" (create LMDB database from textfile) handled duplicate input keys ungracefully, discarding entries stored up to and including the duplicate key, and causing a double free() call with lmdb versions 0.9.17 and later. Reported by Adi Prasaja; double free() root cause analysis by Howard Chu. * Typo (introduced: Postfix 3.4): silent_discard should be silent-discard in BDAT_README.- fix postfix-master.cf.patch * set correct indentation (again) for options of - submission (needs 3 spaces) - smtps (needs 4 spaces) to make config.postfix work nicely again- Update to 3.6.0 - Major changes - internal protocol identification Internal protocols have changed. You need to "postfix stop" before updating, or before backing out to an earlier release, otherwise long-running daemons (pickup, qmgr, verify, tlsproxy, postscreen) may fail to communicate with the rest of Postfix, causing mail delivery delays until Postfix is restarted. For more see /usr/share/doc/packages/postfix/RELEASE_NOTES - refreshed patches to apply cleanly again: fix-postfix-script.patch ipv6_disabled.patch pointer_to_literals.patch postfix-linux45.patch postfix-main.cf.patch postfix-master.cf.patch postfix-no-md5.patch postfix-ssl-release-buffers.patch postfix-vda-v14-3.0.3.patch set-default-db-type.patch- (bsc#1186669) - postfix.service has "Requires=var-run.mount" Remove bad requirements- Update to 3.5.10 with security fixes: * Missing null pointer checks (introduced in Postfix 3.4) after an internal I/O error during the smtp(8) to tlsproxy(8) handshake. Found by Coverity, reported by Jaroslav Skarvada. Based on a fix by Viktor Dukhovni. * Null pointer bug (introduced in Postfix 3.0) and memory leak (introduced in Postfix 3.4) after an inline: table syntax error in main.cf or master.cf. Found by Coverity, reported by Jaroslav Skarvada. Based on a fix by Viktor Dukhovni. * Incomplete null pointer check (introduced: Postfix 2.10) after truncated HaProxy version 1 handshake message. Found by Coverity, reported by Jaroslav Skarvada. Fix by Viktor Dukhovni. * Missing null pointer check (introduced: Postfix alpha) after null argv[0] value.- (bsc#1183305) - config.postfix uses db as suffix for postmaps Depending on DEF_DB_TYPE uses lmdb or db- (bsc#1182833) - /usr/share/fillup-templates/sysconfig.postfix still refers to /etc/services Use getent to detect if smtps is already defined.- (bsc#1180473) [Build 20201230] postfix has invalid default config (bsc#1181381) [Build 130.3] openQA test fails in mta, mutt - postfix broken: "queue file write error" and "error: unsupported dictionary type: hash" Export DEF_DB_TYPE before starting the perl script.- bsc#1180473 - [Build 20201230] postfix has invalid default config Fixing config.postfix and sysconfig.postfix- Update to 3.5.9 * improves the reporting of DNSSEC problems that may affect DANE security- Only do the conversion from the hash/btree databases to lmdb when the default database type changes from hash to lmdb and do not stop and start the service (the old compiled databases can live together with the new ones) - convert-bdb-to-lmdb.sh - Clean up the specfile * Remove < 1330 conditional builds * Use generated postfix-files instead of the obsolete one from postfix-SUSE.tar.gz * Use dynamicmaps.cf.d instead of modifying dynamicmaps.cf upon (de)installation of optional mysql, pgsql and ldap subpackages * Use default location for post-install, postfix-tls-script, postfix-wrapper and postmulti-script- Set lmdb to be the default db. - Convert btree tables to lmdb too. Stop postfix before converting from bdb to lmdb - This package is without bdb support. That's why convert must be done without any suse release condition. o remove patch postfix-no-btree.patch o add set-default-db-type.patch- Set database type for address_verify_map and postscreen_cache_map to lmdb (btree requires Berkeley DB) o add postfix-no-btree.patch- Set default database type to lmdb and fix update_postmaps script- Use variable substition instead of sed to remove .db suffix and substitute hash: for lmdb: in /etc/postfix/master.cf as well. Check before substitution if there is something to do (to keep rpmcheck happy).- bsc#1176650 L3: What is regularly triggering the "fillup" command and changing modify-time of /etc/sysconfig/postfix? o Remove miss placed fillup_only call from %verifyscript- Remove Berkeley DB dependency (JIRA#SLE-12191) The pacakges postfix is build without Berkely DB support. lmdb will be used instead of BDB. The pacakges postfix-bdb is build with Berkely DB support. o add patch for main.cf for postfix-bdb package postfix-bdb-main.cf.patch- Update to 3.5.8 * The Postfix SMTP client inserted into message headers longer than $line_length_limit (default: 2048), causing all subsequent header content to become message body content. * The postscreen daemon did not save a copy of the postscreen_dnsbl_reply_map lookup result. This has no effect when the recommended texthash: look table is used, but it could result in stale data with other lookup tables. * After deleting a recipient with a Milter, the Postfix recipient duplicate filter was not updated; the filter suppressed requests to add the recipient back. * Memory leak: the static: maps did not free their casefolding buffer. * With "smtpd_tls_wrappermode = yes", the smtps service was waiting for a TLS handshake, after processing an XCLIENT command. * The smtp_sasl_mechanism_filter implementation ignored table lookup errors, treating them as 'not found'. * The code that looks for Delivered-To: headers ignored headers longer than $line_length_limit (default: 2048).- Update to 3.5.7 * Fixed random certificate verification failures with "smtp_tls_connection_reuse = yes", because tlsproxy(8) was using the wrong global TLS context for connections that use DANE or non-DANE trust anchors.- Move ldap into an own sub-package like all other databases - Move manual pages to correct sub-package- Use sysusers.d to create system accounts - Remove wrong %config for systemd directory content- Use the correct signature file for source verification - Rename postfix-3.5.6.tar.gz.sig to postfix-3.5.6.tar.gz.asc (to prevent confusion, as the signature file from upstream with .sig extension is incompatible with the build service)- Update to 3.5.6 with following fixes: * Workaround for unexpected TLS interoperability problems when Postfix runs on OS distributions with system-wide OpenSSL configurations. * Memory leaks in the Postfix TLS library, the largest one involving multiple kBytes per peer certificate.- Add source verification (add postfix.keyring)- Use systemd_ordering instead of systemd_require. - Move /etc/postfix/system to /usr/lib/postfix/systemd [bsc#1173688] - Drop /var/adm/SuSEconfig from %post, it does nothing. - Rename postfix-SuSE to postfix-SUSE - Delete postfix-SUSE/README.SuSE, company name spelled wrong, completly outdated and not used. - Delete postfix-SUSE/SPAMASSASSIN+POSTFIX.SuSE, company name spelled wrong, outdated and not used. - sysconfig.mail-postfix: Fix description of MAIL_CREATE_CONFIG, SuSEconfig is gone since ages. - update_chroot.systemd: Remove advice to run SuSEconfig. - Remove rc.postfix, not used, outdated. - mkpostfixcert: Remove advice to run SuSEconfig.- Update to 3.5.4: * The connection_reuse attribute in smtp_tls_policy_maps always resulted in an "invalid attribute name" error. * SMTP over TLS connection reuse always failed for Postfix SMTP client configurations that specify explicit trust anchors (remote SMTP server certificates or public keys). * The Postfix SMTP client's DANE implementation would always send an SNI option with the name in a destination's MX record, even if the MX record pointed to a CNAME record. MX records that point to CNAME records are not conformant with RFC5321, and so are rare. Based on the DANE survey of ~2 million hosts it was found that with the corrected SMTP client behavior, sending SNI with the CNAME-expanded name, the SMTP server would not send a different certificate. This fix should therefore be safe.- Update to 3.5.3: * TLS handshake failure in the Postfix SMTP server during SNI processing, after the server-side TLS engine sent a TLSv1.3 HelloRetryRequest (HRR) to a remote SMTP client. * The command "postfix tls deploy-server-cert" did not handle a missing optional argument. This bug was introduced in Postfix 3.1.- Update to 3.5.2: * A TLS error for a database client caused a false 'lost connection' error for an SMTP over TLS session in the same Postfix process. This bug was introduced with Postfix 2.2. * The same bug existed in the tlsproxy(8) daemon, where a TLS error for one TLS session could cause a false 'lost connection' error for a concurrent TLS session in the same process. This bug was introduced with Postfix 2.8. * The Postfix build now disables DANE support on Linux systems with libc-musl such as Alpine, because libc-musl provides no indication whether DNS responses are authentic. This broke DANE support without a clear explanation. * Due to implementation changes in the ICU library, some Postfix daemons reported file access errrors (U_FILE_ACCESS_ERROR) after chroot(). This was fixed by initializing the ICU library before making the chroot() call. * Minor code changes to silence a compiler that special-cases string literals. * Segfault (null pointer) in the tlsproxy(8) client role when the server role was disabled. This typically happened on systems that do not receive mail, after configuring connection reuse for outbound SMTP over TLS. * The date portion of the maillog_file_rotate_suffix default value used the minute (%M) instead of the month (%m).- boo#1106004 fix incorrect locations for files in postfix-files- Dropped deprecated-RES_INSECURE1.patch to make DNSSEC-secured lookups and DANE mail transport work again - Update to 3.5.1: * Support for the haproxy v2 protocol. The Postfix implementation supports TCP over IPv4 and IPv6, as well as non-proxied connections; the latter are typically used for heartbeat tests. * Support to force-expire email messages. This introduces new postsuper(1) command-line options to request expiration, and additional information in mailq(1) or postqueue(1) output. * The Postfix SMTP and LMTP client support a list of nexthop destinations separated by comma or whitespace. These destinations will be tried in the specified order. * Incompatible changes: * Logging: Postfix daemon processes now log the from= and to= addresses in external (quoted) form in non-debug logging (info, warning, etc.). This means that when an address localpart contains spaces or other special characters, the localpart will be quoted, for example: from=<"name with spaces"@example.com> Specify "info_log_address_format = internal" for backwards compatibility. * Postfix now normalizes IP addresses received with XCLIENT, XFORWARD, or with the HaProxy protocol, for consistency with direct connections to Postfix. This may change the appearance of logging, and the way that check_client_access will match subnets of an IPv6 address.- Update to 3.4.10: * Bug (introduced: Postfix 2.3): Postfix Milter client state was not properly reset after one Milter in a multi-Milter configuration failed during MAIL FROM, resulting in a Postfix Milter client panic during the next MAIL FROM command in the same SMTP session.- bsc#1162891 server:mail/postfix: cond_slp bug on TW after moving /etc/services to /usr/etc/services- bsc#1160413 postfix fails with -fno-common- Update to 3.4.9: * Bug (introduced: Postfix 3.1): smtp_dns_resolver_options were broken while adding support for negative DNS response caching in postscreen. Postfix was inadvertently changed to call res_query() instead of res_search(). * Bug (introduced: Postfix 2.5): Postfix ignored the CONNECT macro overrides from a Milter application. Postfix now evaluates the Milter macros for an SMTP CONNECT event after the Postfix-to-Milter connection is negotiated. * Bug (introduced: Postfix 3.0): sanitize (remote) server responses before storing them in the verify database, to avoid Postfix warnings about malformed UTF8. Found during code maintenance.- Update to 3.4.8: * Fix for an Exim interoperability problem when postscreen after-220 checks are enabled. Bug introduced in Postfix 3.4: the code that detected "PIPELINING after BDAT" looked at the wrong variable. The warning now says "BDAT without valid RCPT", and the error is no longer treated as a command PIPELINING error, thus allowing mail to be delivered. Meanwhile, Exim has been fixed to stop sending BDAT commands when postscreen rejects all RCPT commands. * Usability bug, introduced in Postfix 3.4: the parser for key/certificate chain files rejected inputs that contain an EC PARAMETERS object. While this is technically correct (the documentation says what types are allowed) this is surprising behavior because the legacy cert/key parameters will accept such inputs. For now, the parser skips object types that it does not know about for usability, and logs a warning because ignoring inputs is not kosher. * Bug introduced in Postfix 2.8: don't gratuitously enable all after-220 tests when only one such test is enabled. This made selective tests impossible with 'good' clients. This will be fixed in older Postfix versions at some later time.- Backport deprecated-RES_INSECURE1.patch in order to fix boo#1149705.- Update to 3.4.7: * Robustness: the tlsproxy(8) daemon could go into a loop, logging a flood of error messages. Problem reported by Andreas Schulze after enabling SMTP/TLS connection reuse. * Workaround: OpenSSL changed an SSL_Shutdown() non-error result value into an error result value, causing logfile noise. * Configuration: the new 'TLS fast shutdown' parameter name was implemented incorrectly. The documentation said "tls_fast_shutdown_enable", but the code said "tls_fast_shutdown". This was fixed by changing the code, because no-one is expected to override the default. * Performance: workaround for poor TCP loopback performance on LINUX, where getsockopt(..., TCP_MAXSEG, ...) reports a bogus TCP maximal segment size that is 1/2 to 1/3 of the real MSS. To avoid client-side Nagle delays or server-side delayed ACKs caused by multiple smaller-than-MSS writes, Postfix chooses a VSTREAM buffer size that is a small multiple of the reported bogus MSS. This workaround increases the multiplier from 2x to 4x. * Robustness: the Postfix Dovecot client could segfault (null pointer read) or cause an SMTP server assertion to fail when talking to a fake Dovecot server. The Postfix Dovecot client now logs a proper error instead.- bsc#1120757 L3: File Permissions->Paranoid can cause a system hang Break loop if postfix has no permission in spool directory. - add postfix-avoid-infinit-loop-if-no-permission.patch- fix for boo#1144946 mydestination - missing default localhost * update config.postfix- bsc#1142881 - mkpostfixcert from Postfix still uses md- removal of SuSEfirewall2 service, since SuSEfirewall2 has been replaced by firewalld, see [1]. [1]: https://lists.opensuse.org/opensuse-factory/2019-01/msg00490.html- update example POSTFIX_BASIC_SPAM_PREVENTION: permit_mynetworks for * POSTFIX_SMTPD_HELO_RESTRICTIONS * POSTFIX_SMTPD_RECIPIENT_RESTRICTIONS - fix for: Can't connect to local MySQL server through socket '/run/mysql/mysql.sock' * update config.postfix * update update_chroot.systemd- Update to 3.4.6: * Workaround for implementations that hang Postfix while shutting down a TLS session, until Postfix times out. With "tls_fast_shutdown_enable = yes" (the default), Postfix no longer waits for the TLS peer to respond to a TLS 'close' request. This is recommended with TLSv1.0 and later. * Fixed a too-strict censoring filter that broke multiline Milter responses for header/body events. Problem report by Andreas Thienemann. * The code to reset Postfix SMTP server command counts was not called after a HaProxy handshake failure, causing stale numbers to be reported. Problem report by Joseph Ward. * postconf(5) documentation: tlsext_padding is not a tls_ssl_options feature. * smtp(8) documentation: updated the BUGS section text about Postfix support to reuse open TLS connections. * Portability: added "#undef sun" to util/unix_dgram_connect.c.- Ensure that postfix is member of all groups as before.- BuildRequire pkgconfig(systemd) instead of systemd: allow OBS to shortcut the build queues by allowing usage of systemd-mini- Drop the omc config fate#301838: * it is obsolete since SLE11- bsc#1104543 config.postfix does not start tlsmgr in master.cf when using POSTFIX_SMTP_TLS_CLIENT="must". Applyed the proposed patch.- Update to 3.4.5: Bugfix (introduced: Postfix 3.0): LMTP connections over UNIX-domain sockets were cached but not reused, due to a cache lookup key mismatch. Therefore, idle cached connections could exhaust LMTP server resources, resulting in two-second pauses between email deliveries. This problem was investigated by Juliana Rodrigueiro. File: smtp/smtp_connect.c.- Update to 3.4.4 o Incompatible changes - The Postfix SMTP server announces CHUNKING (BDAT command) by default. In the unlikely case that this breaks some important remote SMTP client, disable the feature as follows: /etc/postfix/main.cf: [#] The logging alternative: smtpd_discard_ehlo_keywords = chunking [#] The non-logging alternative: smtpd_discard_ehlo_keywords = chunking, silent_discard - This introduces a new master.cf service 'postlog' with type 'unix-dgram' that is used by the new postlogd(8) daemon. Before backing out to an older Postfix version, edit the master.cf file and remove the postlog entry. - Postfix 3.4 drops support for OpenSSL 1.0.1 - To avoid performance loss under load, the tlsproxy(8) daemon now requires a zero process limit in master.cf (this setting is provided with the default master.cf file). By default, a tlsproxy(8) process will retire after several hours. - To set the tlsproxy process limit to zero: postconf -F tlsproxy/unix/process_limit=0 postfix reload o Major changes - Postfix SMTP server support for RFC 3030 CHUNKING (the BDAT command) without BINARYMIME, in both smtpd(8) and postscreen(8). This has no effect on Milters, smtpd_mumble_restrictions, and smtpd_proxy_filter. See BDAT_README for more. - Support for logging to file or stdout, instead of using syslog. - Logging to file solves a usability problem for MacOS, and eliminates multiple problems with systemd-based systems. - Logging to stdout is useful when Postfix runs in a container, as it eliminates a syslogd dependency. - Better handling of undocumented(!) Linux behavior whether or not signals are delivered to a PID=1 process. - Support for (key, list of filenames) in map source text. Currently, this feature is used only by tls_server_sni_maps. - Automatic retirement: dnsblog(8) and tlsproxy(8) process will now voluntarily retire after after max_idle*max_use, or some sane limit if either limit is disabled. Without this, a process could stay busy for days or more. - Postfix SMTP client support for multiple deliveries per TLS-encrypted connection. This is primarily to improve mail delivery performance for destinations that throttle clients when they don't combine deliveries. This feature is enabled with "smtp_tls_connection_reuse=yes" in main.cf, or with "tls_connection_reuse=yes" in smtp_tls_policy_maps. It supports all Postfix TLS security levels including dane and dane-only. - SNI support in the Postfix SMTP server, the Postfix SMTP client, and in the tlsproxy(8) daemon (both server and client roles). See the postconf(5) documentation for the new tls_server_sni_maps and smtp_tls_servername parameters. - Support for files that contain multiple (key, certificate, trust chain) instances. This was required to implement server-side SNI table lookups, but it also eliminates the need for separate cert/key files for RSA, DSA, Elliptic Curve, and so on. - Support for smtpd_reject_footer_maps (as well as the postscreen variant postscreen_reject_footer_maps) for more informative reject messages. This is indexed with the Postfix SMTP server response text, and overrides the footer specified with smtpd_reject_footer. One will want to use a pcre: or regexp: map with this. o Bugfixes - Andreas Schulze discovered that reject_multi_recipient_bounce was producing false rejects with BDAT commands. This problem already existed with Postfix 2.2 smtpd_end_of_data_restrictons. Postfix 3.4.4 fixes both.- postfix-linux45.patch: support also newer kernels -- pretend we are still at kernel 3. Note that there are no conditionals for LINUX3 or LINUX4. And LINUX5 was generated, but not tested in the code which caused build failures.- skip set -x and fix version update changes entry- Update to 3.3.3 * When the master daemon runs with PID=1 (init mode), it will now reap child processes from non-Postfix code running in the same container, instead of terminating with a panic. * Bugfix (introduced: postfix-2.11): with posttls-finger, connections to unix-domain servers always resulted in "Failed to establish session" even after a connection was established. Jaroslav Skarva. File: posttls-finger/posttls-finger.c. * Bugfix (introduced: Postfix 3.0): with smtputf8_enable=yes, table lookups could casefold the search string when searching a lookup table that does not use fixed-string keys (regexp, pcre, tcp, etc.). Historically, Postfix would not case-fold the search string with such tables. File: util/dict_utf8.c.- PostrgeSQL's pg_config is meant for linking server extensions, use libpq's pkg-config instead, if available. This is needed to fix build with PostgreSQL 11.- rework config.postfix * disable commenting of smtpd_sasl_path/smtpd_sasl_type no need to comment, cause it is set to default anyway and 'uncommenting' would place it at end of file then which is not wanted- rework postfix-main.cf.patch * disable virtual_alias_domains cause (default: $virtual_alias_maps) - rework config.postfix * disable PCONF of virtual_alias_domains virtual_alias_maps will be set anyway to the correct value * extend virtual_alias_maps with - mysql_virtual_alias_domain_maps.cf - mysql_virtual_alias_domain_catchall_maps.cf - rework postfix-mysql, added * mysql_virtual_alias_domain_maps.cf * mysql_virtual_alias_domain_catchall_maps.cf needed for reject_unverified_recipient- binary hardening: link with full RELRO- Update to 3.3.2 * Support for OpenSSL 1.1.1 and TLSv1.3. * Bugfixes: - smtpd_discard_ehlo_keywords could not disable "SMTPUTF8", because some lookup table was using "EHLO_MASK_SMTPUTF8" instead. - minor memory leak in DANE support when minting issuer certs. - The Postfix build did not abort if the m4 command was not installed, resulting in a broken postconf command.- add POSTFIX_RELAY_DOMAINS * more flexibility to add to relay_domains without breaking config.postfix * rework restriction examples in sysconf.postfix based on postfix-buch.com (2. edtion by Hildebrandt, Koetter) - disable weak cipher: RC4 after check with https://ssl-tools.net/mailservers- update config.postfix * don't reject mail from authenticated users even if reject_unknown_client_hostname would match, add permit_sasl_authenticated to all restrictions requires smtpd_delay_reject = yes - update postfix-main.cf.patch * recover removed setting smtpd_sasl_path and smtpd_sasl_type, set to default value config.postfix will not 'enable' (remove #) var, but place modified (enabled) var at end of file, far away from place where it should be - rebase patches * fix-postfix-script.patch * postfix-vda-v14-3.0.3.patch * postfix-linux45.patch * postfix-master.cf.patch * pointer_to_literals.patch * postfix-no-md5.patch- bsc#1092939 - Postfixes postconf gives a lot of LDAP related warnings o add m4 as buildrequires, as proposed.- Add zlib-devel as buildrequires, previously included from openssl-devel- bsc#1087471 Unreleased Postfix update breaks SUSE Manager o Removing setting smtpd_sasl_path and smtpd_sasl_type to empty- Update to 3.3.1 * Postfix did not support running as a PID=1 process, which complicated Postfix deployment in containers. The "postfix start-fg" command will now run the Postfix master daemon as a PID=1 process if possible. Thanks for inputs from Andreas Schulze, Eray Aslan, and Viktor Dukhovni. * Segfault in the postconf(1) command after it could not open a Postfix database configuration file due to a file permission error (dereferencing a null pointer). Reported by Andreas Hasenack, fixed by Viktor Dukhovni. * The luser_relay feature became a black hole, when the luser_relay parameter was set to a non-existent local address (i.e. mail disappeared silently). Reported by J?rgen Thomsen. * Missing error propagation in the tlsproxy(8) daemon could result in a segfault after TLS handshake error (dereferencing a 0xffff...ffff pointer). This daemon handles the TLS protocol when a non-whitelisted client sends a STARTTLS command to postscreen(8).- remove pre-requirements on sysvinit(network) and sysvinit(syslog). There seems to be no good reason for that other than blowing up the dependencies (bsc#1092408).- bsc#1071807 postfix-SuSE/config.postfix: only reload postfix if the actual service is running. This prevents spurious and irrelevant error messages in system logs.- bsc#1082514 autoyast: postfix gets not set myhostname properly - set to localhost- Refresh spec-file via spec-cleaner and manual optinizations. * Add %license macro. * Set license to IPL-1.0 OR EPL-2.0. - Update to 3.3.0 * http://cdn.postfix.johnriley.me/mirrors/postfix-release/official/postfix-3.3.0.RELEASE_NOTES * Dual license: in addition to the historical IBM Public License 1.0, Postfix is now also distributed with the more recent Eclipse Public License 2.0. Recipients can choose to take the software under the license of their choice. Those who are more comfortable with the IPL can continue with that license. * The postconf command now warns about unknown parameter names in a Postfix database configuration file. As with other unknown parameter names, these warnings can help to find typos early. * Container support: Postfix 3.3 will run in the foreground with "postfix start-fg". This requires that Postfix multi-instance support is disabled (the default). To collect Postfix syslog information on the container's host, mount the host's /dev/log socket into the container, for example with "docker run -v /dev/log:/dev/log ...other options...", and specify a distinct Postfix syslog_name setting in the container (for example with "postconf syslog_name=the-name-here"). * Milter support: applications can now send RET and ENVID parameters in SMFIR_CHGFROM (change envelope sender) requests. * Postfix-generated From: headers with 'full name' information are now formatted as "From: name
" by default. Specify "header_from_format = obsolete" to get the earlier form "From: address (name)". * Interoperability: when Postfix IPv6 and IPv4 support are both enabled, the Postfix SMTP client will now relax MX preferences and attempt to schedule similar numbers of IPv4 and IPv6 addresses. This works around mail delivery problems when a destination announces lots of primary MX addresses on IPv6, but is reachable only over IPv4 (or vice versa). The new behavior is controlled with the smtp_balance_mx_inet_protocols parameter. * Compatibility safety net: with compatibility_level < 1, the Postfix SMTP server now warns for mail that would be blocked by the Postfix 2.10 smtpd_relay_restrictions feature, without blocking that mail. There still is a steady trickle of sites that upgrade from an earlier Postfix version.- bsc#1065411 Package postfix should require package system-user-nobody - bsc#1080772 postfix smtpd throttle getting "hello" if no sasl auth was configured- Fix usage of fillup_only:-y is not a valid option to this macro.- Replace references to /var/adm/fillup-templates with new %_fillupdir macro (boo#1069468)- Don't mark postfix.service as config file, this is no config file. - Some of the Requires(pre) are needed for post-install and at runtime, fix the requires.- update to 3.2.4 * DANE interoperability. Postfix builds with OpenSSL 1.0.0 or 1.0.1 failed to send email to some sites with "TLSA 2 X X" DNS records associated with an intermediate CA certificate. Problem report and initial fix by Erwan Legrand. * Missing dynamicmaps support in the Postfix sendmail command. This broke authorized_submit_users settings that use a dynamically-loaded map type. Problem reported by Ulrich Zehl.- bnc#1059512 L3: Postfix Problem The applied changes breaks existing postfix configurations because daemon_directory was not adapted to the new value.- fix build for SLE * nothing provides libnsl-devel * add bcond_with libnsl- bnc#1059512 L3: Postfix Problem To manage multiple Postfix instances on a single host requires that daemon_directory and shlib_directory is different to avoid use of the shared directories also as per-instance directories. For this reason daemon_directory was set to /usr/lib/postfix/bin/. shlib_directory stands /usr/lib/postfix/.- bnc#1016491 postfix raported to log "warning: group or other writable:" on each symlink in config. * Add fix-postfix-script.patch- update to 3.2.3 * Extension propagation was broken with "recipient_delimiter = .". This change reverts a change that was trying to be too clever. * The postqueue command would abort with a panic message after it experienced an output write error while listing the mail queue. This change restores a write error check that was lost with the Postfix 3.2 rewrite of the vbuf_print formatter. * Restored sanity checks for dynamically-specified width and precision in format strings (%*, %.*, and %*.*). These checks were lost with the Postfix 3.2 rewrite of the vbuf_print formatter.- Add libnsl-devel build requires for glibc obsoleting libnsl- bnc#1045264 L3: postmap problem * Applying proposed patch of leen.meyer@ziggo.nl in bnc#771811- update to 3.2.2 * Security: Berkeley DB versions 2 and later try to read settings from a file DB_CONFIG in the current directory. This undocumented feature may introduce undisclosed vulnerabilities resulting in privilege escalation with Postfix set-gid programs (postdrop, postqueue) before they chdir to the Postfix queue directory, and with the postmap and postalias commands depending on whether the user's current directory is writable by other users. This fix does not change Postfix behavior for Berkeley DB versions < 3, but it does reduce postmap and postalias 'create' performance with Berkeley DB versions 3.0 .. 4.6. * The SMTP server receive_override_options were not restored at the end of an SMTP session, after the options were modified by an smtpd_milter_maps setting of "DISABLE". Milter support remained disabled for the life time of the smtpd process. * After the Postfix 3.2 address/domain table lookup overhaul, the check_sender_access and check_recipient_access features ignored a non-default parent_domain_matches_subdomains setting.- revert changes of postfix-main.cf.patch from rev=261 * config.postfix will not 'enable' (remove #) var, but place modified (enabled) var at end of file, far away from place where it should be * keep vars enabled but empty- Some cleanups * Fix SUSE postfix-files to avoid chown errors (anyway this file seems to be obsolete) * Avoid installing shared libraries twice * Refresh patch postfix-linux45.patch- update postfix-master.cf.patch * recover lost (with 3.2.0 update) submission, smtps sections * merge with upstream update - update config.postfix * update master.cf generation for submission - rebase patches against 3.2.0 * pointer_to_literals.patch * postfix-no-md5.patch * postfix-ssl-release-buffers.patch * postfix-vda-v14-3.0.3.patch- Require system group mail - Use mail group name instead of GID- update to 3.2.0 - [Feature 20170128] Postfix 3.2 fixes the handling of address extensions with email addresses that contain spaces. For example, the virtual_alias_maps, canonical_maps, and smtp_generic_maps features now correctly propagate an address extension from "aa bb+ext"@example.com to "cc dd+ext"@other.example, instead of producing broken output. - [Feature 20161008] "PASS" and "STRIP" actions in header/body_checks. "STRIP" is similar to "IGNORE" but also logs the action, and "PASS" disables header, body, and Milter inspection for the remainder of the message content. Contributed by Hobbit. - [Feature 20160330] The collate.pl script by Viktor Dukhovni for grouping Postfix logfile records into "sessions" based on queue ID and process ID information. It's in the auxiliary/collate directory of the Postfix source tree. - [Feature 20160527] Postfix 3.2 cidr tables support if/endif and negation (by prepending ! to a pattern), just like regexp and pcre tables. The primarily purpose is to improve readability of complex tables. See the cidr_table(5) manpage for syntax details. - [Incompat 20160925] In the Postfix MySQL database client, the default option_group value has changed to "client", to enable reading of "client" option group settings in the MySQL options file. This fixes a "not found" problem with Postfix queries that contain UTF8-encoded non-ASCII text. Specify an empty option_group value (option_group =) to get backwards-compatible behavior. - [Feature 20161217] Stored-procedure support for MySQL databases. Contributed by John Fawcett. See mysql_table(5) for instructions. - [Feature 20170128] The postmap command, and the inline: and texthash: maps now support spaces in left-hand field of the lookup table "source text". Use double quotes (") around a left-hand field that contains spaces, and use backslash (\) to protect embedded quotes in a left-hand field. There is no change in the processing of the right-hand field. - [Feature 20160611] The Postfix SMTP server local IP address and port are available in the policy delegation protocol (attribute names: server_address, server_port), in the Milter protocol (macro names: {daemon_addr}, {daemon_port}), and in the XCLIENT protocol (attribute names: DESTADDR, DESTPORT). - [Feature 20161024] smtpd_milter_maps support for per-client Milter configuration that overrides smtpd_milters, and that has the same syntax. A lookup result of "DISABLE" turns off Milter support. See MILTER_README.html for details. - [Feature 20160611] The Postfix SMTP server local IP address and port are available in the policy delegation protocol (attribute names: server_address, server_port), in the Milter protocol (macro names: {daemon_addr}, {daemon_port}), and in the XCLIENT protocol (attribute names: DESTADDR, DESTPORT). - [Incompat 20170129] The postqueue command no longer forces all message arrival times to be reported in UTC. To get the old behavior, set TZ=UTC in main.cf:import_environment (this override is not recommended, as it affects all Postfix utities and daemons). - [Incompat 20161227] For safety reasons, the sendmail -C option must specify an authorized directory: the default configuration directory, a directory that is listed in the default main.cf file with alternate_config_directories or multi_instance_directories, or the command must be invoked with root privileges (UID 0 and EUID 0). This mitigates a recurring problem with the PHP mail() function. - [Feature 20160625] The Postfix SMTP server now passes remote client and local server network address and port information to the Cyrus SASL library. Build with ``make makefiles "CCARGS=$CCARGS -DNO_IP_CYRUS_SASL_AUTH"'' for backwards compatibility. - [Feature 20161103] Postfix 3.2 disables the 'transitional' compatibility between the IDNA2003 and IDNA2008 standards for internationalized domain names (domain names beyond the limits of US-ASCII). This change makes Postfix behavior consistent with contemporary web browsers. It affects the handling of some corner cases such as German sz and Greek zeta. See http://unicode.org/cldr/utility/idna.jsp for more examples. Specify "enable_idna2003_compatibility = yes" to restore historical behavior (but keep in mind that the rest of the world may not make that same choice). - [Feature 20160828] Fixes for deprecated OpenSSL 1.1.0 API features, so that Postfix will build without depending on backwards-compatibility support. [Incompat 20161204] Postfix 3.2 removes tentative features that were implemented before the DANE spec was finalized: - Support for certificate usage PKIX-EE(1), - The ability to disable digest agility (Postfix now behaves as if "tls_dane_digest_agility = on"), and - The ability to disable support for "TLSA 2 [01] [12]" records that specify the digest of a trust anchor (Postfix now behaves as if "tls_dane_trust_anchor_digest_enable = yes). - [Feature 20161217] Postfix 3.2 enables elliptic curve negotiation with OpenSSL >= 1.0.2. This changes the default smtpd_tls_eecdh_grade setting to "auto", and introduces a new parameter tls_eecdh_auto_curves with the names of curves that may be negotiated. The default tls_eecdh_auto_curves setting is determined at compile time, and depends on the Postfix and OpenSSL versions. At runtime, Postfix will skip curve names that aren't supported by the OpenSSL library. - [Feature 20160611] The Postfix SMTP server local IP address and port are available in the policy delegation protocol (attribute names: server_address, server_port), in the Milter protocol (macro names: {daemon_addr}, {daemon_port}), and in the XCLIENT protocol (attribute names: DESTADDR, DESTPORT). - refresh postfix-master.cf.patch- make sure that system users can be created in %pre- Fix requires: - shadow is needed for postfix-mysql pre-install section - insserv is not needed if systemd is used- update postfix-mysql * update mysql_*.cf files * update postfix-mysql.sql (INNODB, utf8) - update postfix-main.cf.patch * uncomment smtpd_sasl_path, smtpd_sasl_type can be changed via POSTFIX_SMTP_AUTH_SERVICE=(cyrus,dovecot) * add option for smtp_tls_policy_maps (commented) - update postfix-master.cf.patch * fix indentation of submission, smtps options for correct enabling via config.postfix - update config.postfix * fix sync of CA certificates * fix master.cf generation for submission, smtps - rebase postfix-vda-v14-3.0.3.patch- FATE#322322 Update postfix to version 3.X Merging changes with SLES12-SP2 Removeved patches: add_missed_library.patch bnc#947707.diff dynamic_maps.patch postfix-db6.diff postfix-opensslconfig.patch bnc#947519.diff dynamic_maps_pie.patch postfix-post-install.patch These are included in the new version of postfix - Remove references to SuSEconfig.postfix from sysconfig docs. (bsc#871575) - bnc#947519 SuSEconfig.postfix should enforce umask 022 - bnc#947707 mail generated by Amavis being prevented from being re-adressed by /etc/postfix/virtual - bnc#972346 /usr/sbin/SuSEconfig.postfix is wrong - postfix-linux45.patch: handle Linux 4.x and Linux 5.x (used by aarch64) (bsc#940289)- update to 3.1.4 * The postscreen daemon did not merge the client test status information for concurrent sessions from the same IP address. * The Postfix SMTP server falsely rejected a sender address when validating a sender address with "smtpd_reject_unlisted_recipient = yes" or with "reject_unlisted_sender". Cause: the address validation code did not query sender_canonical_maps. * The virtual delivery agent did not detect failure to skip to the end of a mailbox file, so that mail would be delivered to the beginning of the file. This could happen when a mailbox file was already larger than the virtual mailbox size limit. * The postsuper logged an incorrect rename operation count after creating a missing directory. * The Postfix SMTP server falsely rejected mail when a sender-dependent "error" transport was configured. Cause: the SMTP server address validation code was not updated when the sender_dependent_default_transport_maps feature was introduced. * The Postfix SMTP server falsely rejected an SMTPUTF8 sender address, when "smtpd_delay_reject = no". * The "postfix tls deploy-server-cert" command used the wrong certificate and key file. This was caused by a cut-and-paste error in the postfix-tls-script file.- improve config.postfix * improve SASL stuff * add POSTFIX_SMTP_AUTH_SERVICE=(cyrus|dovecot)- improve config.postfix * improve with MySQL stuff- update vda patch to latest available * remove postfix-vda-v13-3.10.0.patch * add postfix-vda-v14-3.0.3.patch - rebase patches (and to be p0) * pointer_to_literals.patch * postfix-main.cf.patch * postfix-master.cf.patch * postfix-no-md5.patch * postfix-ssl-release-buffers.patch - add /etc/postfix/ssl as default DIR for SSL stuff * cacerts -> ../../ssl/certs/ * certs/ - revert POSTFIX_SSL_PATH from '/etc/ssl' to '/etc/postfix/ssl' - improve config.postfix * revert smtpd_tls_CApath to POSTFIX_SSL_PATH/cacerts which is a symlink to /etc/ssl/certs Without reverting, 'gen_CA' would create files which would then be on the previous defined 'sslpath(/etc/ssl)/certs' (smtpd_tls_CApath) Cert reqs would be placed in 'sslpath(/etc/ssl)/certs/postfixreq.pem' which is not a good idea. * mkchroot: sync '/etc/postfix/ssl' to chroot * improve PCONF for smtp{,d}_tls_{cert,key}_file, adding/removing from main.cf, show warning if enabled and file is missing- update to 3.1.3: * The Postfix SMTP server did not reset a previous session's failed/total command counts before rejecting a client that exceeds request or concurrency rates. This resulted in incorrect failed/total command counts being logged at the end of the rejected session. * The unionmap multi-table interface did not propagate table lookup errors, resulting in false "user unknown" responses. * The documentation was updated with a workaround for false "not found" errors with MySQL map queries that contain UTF8-encoded text. The workaround is to specify "option_group = client" in Postfix MySQL configuration files. This will be the default setting with Postfix 3.2 and later.- update to 3.1.2: * Changes to make Postfix build with OpenSSL 1.1.0. * The makedefs script ignored readme_directory=pathname overrides. Fix by Todd C. Olson. * The tls_session_ticket_cipher documentation says that the default cipher for TLS session tickets is aes-256-cbc, but the implemented default was aes-128-cbc. Note that TLS session ticket keys are rotated after 1/2 hour, to limit the impact of attacks on session ticket keys.- postfix-post-install.patch: remove empty patch- fix Changelog cause of Factory decline- Fix typo in config.postfix- bnc#981097 config.postfix creates broken main.cf for tls client configuration - bnc#981099 /etc/sysconfig/postfix: POSTFIX_SMTP_TLS_CLIENT incomplete - update to 3.1.1: - The new address_verify_pending_request_limit parameter introduces a safety limit for the number of address verification probes in the active queue. The default limit is 1/4 of the active queue maximum size. The queue manager enforces the limit by tempfailing probe messages that exceed the limit. This design avoids dependencies on global counters that get out of sync after a process or system crash. - Machine-readable, JSON-formatted queue listing with "postqueue -j" (no "mailq" equivalent). - The milter_macro_defaults feature provides an optional list of macro name=value pairs. These specify default values for Milter macros when no value is available from the SMTP session context. - Support to enforce a destination-independent delay between email deliveries. The following example inserts 20 seconds of delay between all deliveries with the SMTP transport, limiting the delivery rate to at most three messages per minute. smtp_transport_rate_delay = 20s - Historically, the default setting "postscreen_dnsbl_ttl = 1h" assumes that a "not found" result from a DNSBL server will be valid for one hour. This may have been adequate five years ago when postscreen was first implemented, but nowadays, that one hour can result in missed opportunities to block new spambots. To address this, postscreen now respects the TTL of DNSBL "not found" replies, as well as the TTL of DNSWL replies (both "found" and "not found"). The TTL for a "not found" reply is determined according to RFC 2308 (the TTL of an SOA record in the reply). Support for DNSBL or DNSWL reply TTL values is controlled by two configuration parameters: postscreen_dnsbl_min_ttl (default: 60 seconds). postscreen_dnsbl_max_ttl (default: $postscreen_dnsbl_ttl or 1 hour) The postscreen_dnsbl_ttl parameter is now obsolete, and has become the default value for the new postscreen_dnsbl_max_ttl parameter. - New "smtpd_client_auth_rate_limit" feature, to enforce an optional rate limit on AUTH commands per SMTP client IP address. Similar to other smtpd_client_*_rate_limit features, this enforces a limit on the number of requests per $anvil_rate_time_unit. - New SMTPD policy service attribute "policy_context", with a corresponding "smtpd_policy_service_policy_context" configuration parameter. Originally, this was implemented to share the same SMTPD policy service endpoint among multiple check_policy_service clients. - A new "postfix tls" command to quickly enable opportunistic TLS in the Postfix SMTP client or server, and to manage SMTP server keys and certificates, including certificate signing requests and TLSA DNS records for DANE.- build with working support for SMTPUTF8- fix build on sle11 by pointing _libexecdir to /usr/lib all the time.- some distros did not pull pkgconfig indirectly. pull it directly.- fix building the dynamic maps: the old build had postgresql e.g. with missing symbols. - convert to AUXLIBS_* instead of plain AUXLIBS which is needed for proper dynamic maps. - reordered the CCARGS and AUXLIBS* lines to group by feature - use pkgconfig or *_config tools where possible - picked up signed char from fedora spec file - enable lmdb support: new BR lmdb-devel, new subpackage postfix-lmdb. - don't delete vmail user/groups- update to 3.1.0 - Since version 3.0 postfix supports dynamic loading of cdb:, ldap:, lmdb:, mysql:, pcre:, pgsql:, sdbm:, and sqlite: database clients. Thats why the patches dynamic_maps.patch and dynamic_maps_pie.patch could be removed. - Adapting all the patches to postfix 3.1.0 - remove obsolete patches * add_missed_library.patch * postfix-opensslconfig.patch - update vda patch * remove postfix-vda-v13-2.10.0.patch * add postfix-vda-v13-3.10.0.patch - The patch postfix-db6.diff is not more neccessary - Backwards-compatibility safety net. With NEW Postfix installs, you MUST install a main.cf file with the setting "compatibility_level = 2". See conf/main.cf for an example. With UPGRADES of existing Postfix systems, you MUST NOT change the main.cf compatibility_level setting, nor add this setting if it does not exist. Several Postfix default settings have changed with Postfix 3.0. To avoid massive frustration with existing Postfix installations, Postfix 3.0 comes with a safety net that forces Postfix to keep running with backwards-compatible main.cf and master.cf default settings. This safety net depends on the main.cf compatibility_level setting (default: 0). Details are in COMPATIBILITY_README. - Major changes - tls * [Feature 20160207] A new "postfix tls" command to quickly enable opportunistic TLS in the Postfix SMTP client or server, and to manage SMTP server keys and certificates, including certificate signing requests and TLSA DNS records for DANE. * As of the middle of 2015, all supported Postfix releases no longer nable "export" grade ciphers for opportunistic TLS, and no longer use the deprecated SSLv2 and SSLv3 protocols for mandatory or opportunistic TLS. * [Incompat 20150719] The default Diffie-Hellman non-export prime was updated from 1024 to 2048 bits, because SMTP clients are starting to reject TLS handshakes with primes smaller than 2048 bits. * [Feature 20160103] The Postfix SMTP client by default enables DANE policies when an MX host has a (DNSSEC) secure TLSA DNS record, even if the MX DNS record was obtained with insecure lookups. The existence of a secure TLSA record implies that the host wants to talk TLS and not plaintext. For details see the smtp_tls_dane_insecure_mx_policy configuration parameter. - Major changes - default settings [Incompat 20141009] The default settings have changed for relay_domains (new: empty, old: $mydestination) and mynetworks_style (new: host, old: subnet). However the backwards-compatibility safety net will prevent these changes from taking effect, giving the system administrator the option to make an old default setting permanent in main.cf or to adopt the new default setting, before turning off backwards compatibility. See COMPATIBILITY_README for details. [Incompat 20141001] A new backwards-compatibility safety net forces Postfix to run with backwards-compatible main.cf and master.cf default settings after an upgrade to a newer but incompatible Postfix version. See COMPATIBILITY_README for details. While the backwards-compatible default settings are in effect, Postfix logs what services or what email would be affected by the incompatible change. Based on this the administrator can make some backwards-compatibility settings permanent in main.cf or master.cf, before turning off backwards compatibility. - Major changes - address verification safety [Feature 20151227] The new address_verify_pending_request_limit parameter introduces a safety limit for the number of address verification probes in the active queue. The default limit is 1/4 of the active queue maximum size. The queue manager enforces the limit by tempfailing probe messages that exceed the limit. This design avoids dependencies on global counters that get out of sync after a process or system crash. Tempfailing verify requests is not as bad as one might think. The Postfix verify cache proactively updates active addresses weeks before they expire. The address_verify_pending_request_limit affects only unknown addresses, and inactive addresses that have expired from the address verify cache (by default, after 31 days). - Major changes - json support [Feature 20151129] Machine-readable, JSON-formatted queue listing with "postqueue -j" (no "mailq" equivalent). The output is a stream of JSON objects, one per queue file. To simplify parsing, each JSON object is formatted as one text line followed by one newline character. See the postqueue(1) manpage for a detailed description of the output format. - Major changes - milter support [Feature 20150523] The milter_macro_defaults feature provides an optional list of macro name=value pairs. These specify default values for Milter macros when no value is available from the SMTP session context. For example, with "milter_macro_defaults = auth_type=TLS", the Postfix SMTP server will send an auth_type of "TLS" to a Milter, unless the remote client authenticates with SASL. This feature was originally implemented for a submission service that may authenticate clients with a TLS certificate, without having to make changes to the code that implements TLS support. - Major changes - output rate control [Feature 20150710] Destination-independent delivery rate delay Support to enforce a destination-independent delay between email deliveries. The following example inserts 20 seconds of delay between all deliveries with the SMTP transport, limiting the delivery rate to at most three messages per minute. /etc/postfix/main.cf: smtp_transport_rate_delay = 20s For details, see the description of default_transport_rate_delay and transport_transport_rate_delay in the postconf(5) manpage. - Major changes - postscreen dnsbl [Feature 20150710] postscreen support for the TTL of DNSBL and DNSWL lookup results Historically, the default setting "postscreen_dnsbl_ttl = 1h" assumes that a "not found" result from a DNSBL server will be valid for one hour. This may have been adequate five years ago when postscreen was first implemented, but nowadays, that one hour can result in missed opportunities to block new spambots. To address this, postscreen now respects the TTL of DNSBL "not found" replies, as well as the TTL of DNSWL replies (both "found" and "not found"). The TTL for a "not found" reply is determined according to RFC 2308 (the TTL of an SOA record in the reply). Support for DNSBL or DNSWL reply TTL values is controlled by two configuration parameters: postscreen_dnsbl_min_ttl (default: 60 seconds). This parameter specifies a minimum for the amount of time that a DNSBL or DNSWL result will be cached in the postscreen_cache_map. This prevents an excessive number of postscreen cache updates when a DNSBL or DNSWL server specifies a very small reply TTL. postscreen_dnsbl_max_ttl (default: $postscreen_dnsbl_ttl or 1 hour) This parameter specifies a maximum for the amount of time that a DNSBL or DNSWL result will be cached in the postscreen_cache_map. This prevents cache pollution when a DNSBL or DNSWL server specifies a very large reply TTL. The postscreen_dnsbl_ttl parameter is now obsolete, and has become the default value for the new postscreen_dnsbl_max_ttl parameter. - Major changes - sasl auth safety [Feature 20151031] New "smtpd_client_auth_rate_limit" feature, to enforce an optional rate limit on AUTH commands per SMTP client IP address. Similar to other smtpd_client_*_rate_limit features, this enforces a limit on the number of requests per $anvil_rate_time_unit. - Major changes - smtpd policy [Feature 20150913] New SMTPD policy service attribute "policy_context", with a corresponding "smtpd_policy_service_policy_context" configuration parameter. Originally, this was implemented to share the same SMTPD policy service endpoint among multiple check_policy_service clients.- bnc#958329 postfix fails to start when openslp is not installed- upstream update postfix 2.11.7: * The Postfix Milter client aborted with a panic while adding a message header, after adding a short message header with the header_checks PREPEND action. Fixed by invoking the header output function while PREPENDing a message header. * False alarms while scanning the Postfix queue. Fixed by resetting errno before calling readdir(). This defect was introduced 19970309. * The postmulti command produced an incorrect error message. * The postmulti command now refuses to create a new MTA instance when the template main.cf or master.cf file are missing. This is a common problem on Debian-like systems. * Turning on Postfix SMTP server HAProxy support broke TLS wrappermode. Fixed by temporarily using a 1-byte VSTREAM buffer to read the HAProxy connection hand-off information. * The xtext_unquote() function did not propagate error reports from xtext_unquote_append(), causing the decoder to return partial output, instead of rejecting malformed input. The Postfix SMTP server uses this function to parse input for the ENVID and ORCPT parameters, and for XFORWARD and XCLIENT command parameters.- boo#934060: Remove quirky hostname logic from config.postfix * /etc/hostname doesn't contain anything useful * linux.local is no good either * postfix will use `hostname`.localdomain as fallback- postfix-no-md5.patch: replace fingerprint defaults by sha1. bsc#928885- %verifyscript is a new section, move it out of the %ifdef so the fillups are run afterwards.- upstream update postfix 2.11.6: Default settings have been updated so that they no longer enable export-grade ciphers, and no longer enable the SSLv2 and SSLv3 protocols. - removed postfix-2.11.5_linux4.patch because it's obsolete - Bugfix (introduced: Postfix 2.11): with connection caching enabled (the default), recipients could be given to the wrong mail server. (bsc#944722)- postfix-SuSE.tar.gz/postfix.service: None of nss-lookup.target network.target local-fs.target time-sync.target should be Wanted or Required except by the services the implement the relevant functionality i.e network.target is wanted/required by networkmanager, wicked, systemd-network. other software must be ordered After them, see systemd.special(7)- Fix library symlink generation (boo#928662)- added postfix-2.11.5_linux4.patch: Allow building on kernel 4. Patch taken from: https://groups.google.com/forum/#!topic/mailing.postfix.users/fufS22sMGWY- update to postfix 2.11.5 - Bugfix (introduced: Postfix 2.6): sender_dependent_relayhost_maps ignored the relayhost setting in the case of a DUNNO lookup result. It would use the recipient domain instead. Viktor Dukhovni. Wietse took the pieces of code that enforce the precedence of a sender-dependent relayhost, the global relayhost, and the recipient domain, and put that code together in once place so that it is easier to maintain. File: trivial-rewrite/resolve.c. - Bitrot: prepare for future changes in OpenSSL API. Viktor Dukhovni. File: tls_dane.c. - Incompatibility: specifying "make makefiles" with "CC=command" will no longer override the default WARN setting.- upstream update postfix 2.11.4: Postfix 2.11.4 only: * Fix a core dump when smtp_policy_maps specifies an invalid TLS level. * Fix a missing " in \%s\", in postconf(1) fatal error messages, which violated the C language spec. Reported by Iain Hibbert. All supported releases: * Stop excessive recursion in the cleanup server while recovering from a virtual alias expansion loop. Problem found at Two Sigma. * Stop exponential memory allocation with virtual alias expansion loops. This came to light after fixing the previous problem.- correct pf_daemon_directory in spec. This must be /usr/lib/- bnc#914086 syntax error in config.postfix - Adapt config.postfix to be able to run on SLE11 too.- Don't install sysvinit script when systemd is used - Make explicit PreReq dependencies conditional only for older systems - Don't try to set explicit attributes to symlinks - Cleanup spec file vith spec-cleaner- bnc#912594 config.postfix creates config based on old options- bnc#911806 config.postfix does not set up correct saslauthd socket directory for chroot - bnc#910265 config.postfix does not upgrade the chroot - bnc#908003 wrong access rights on /usr/sbin/postdrop causes permission denied when trying to send a mail as non root user - bnc#729154 wrong permissions for some postfix components- Remove keyring and things as it is md5 based one no longer accepted by gpg 2.1- No longer perform gpg validation; osc source_validator does it implicit: + Drop gpg-offline BuildRequires. + No longer execute gpg_verify.- restore previously lost fix: Fri Oct 11 13:32:32 UTC 2013 - matz@suse.de - Ignore errors in %pre/%post.- postfix 2.11.3: * Fix for configurations that prepend message headers with Postfix access maps, policy servers or Milter applications. Postfix now hides its own Received: header from Milters and exposes prepended headers to Milters, regardless of the mechanism used to prepend a header. This fix reverts a partial solution that was released on October 13, 2014, and replaces it with a complete solution. * Portability fix for MacOS X 10.7.x (Darwin 11.x) build procedure. - postfix 2.11.2: * Fix for DMARC implementations based on SPF policy plus DKIM Milter. The PREPEND access/policy action added headers ABOVE Postfix's own Received: header, exposing Postfix's own Received: header to Milters (protocol violation) and hiding the PREPENDed header from Milters. PREPENDed headers are now added BELOW Postfix's own Received: header and remain visible to Milters. * The Postfix SMTP server logged an incorrect client name in reject messages for check_reverse_client_hostname_access and check_reverse_client_hostname_{mx,ns}_access. They replied with the verified client name, instead of the name that was rejected. * The qmqpd daemon crashed with null pointer bug when logging a lost connection while not in a mail transaction./bin/sh/bin/sh/bin/sh/bin/shpostfix-lmdb/bin/shh04-ch1c 1703241838  !"#$%&'()*+,-./0123456789:;<1>?@.BCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghjklmnopqrstuvwxyz{|}~3.7.3-150500.3.11.13.7.3-150500.3.11.13.7.3-150500.3.11.13.7.3-150500.3.11.13.7.3-150500.3.11.1   aliases.lmdbsmtppostfixpostfix.paranoidpostfix*.lmdbaccessaliasesbounce.cf.defaultcanonicalgenericheader_checkshelo_accessmain.cfmain.cf.defaultmaster.cfopenssl_postfix.conf.inrelayrelay_ccertsrelay_recipientsrelocatedsasl_passwdsender_canonicalsslcacertscertstransportvirtualsasl2smtpd.confmailqnewaliasespostfixbinanvilbouncecleanupdiscarddnsblogerrorflushlmtplocalmasternqmgroqmgrpickuppipepost-installpostfix-scriptpostfix-tls-scriptpostfix-wrapperpostlogdpostmulti-scriptpostscreenproxymapqmgrqmqpdscacheshowqsmtpsmtpdspawntlsmgrtlsproxytrivial-rewriteverifyvirtualdynamicmaps.cfdynamicmaps.cf.dlibpostfix-dns.solibpostfix-global.solibpostfix-master.solibpostfix-tls.solibpostfix-util.somain.cf.protomakedefs.outmaster.cf.protopostfix-filespostfix-files.dpostfix-lmdb.sopostfix-pcre.sosystemdcond_slpconfig_postfixupdate_chrootupdate_postmapswait_qmgrsendmailmail-transfer-agent.target.wantspostfix.servicepostfix.servicepostfix-user.conflibpostfix-dns.solibpostfix-global.solibpostfix-master.solibpostfix-tls.solibpostfix-util.socheck_mail_queueconfig.postfixmkpostfixcertpostaliaspostcatpostconfpostdroppostfixpostkickpostlockpostlogpostmappostmultipostqueuepostsuperqmqp-sourcercpostfixsendmailsmtp-sinksmtp-sourcepostfixRELEASE_NOTESsysconfig.mail-postfixsysconfig.postfixpostfixLICENSETLS_LICENSEmailq.1.gznewaliases.1.gzpostalias.1.gzpostcat.1.gzpostconf.1.gzpostdrop.1.gzpostfix-tls.1.gzpostfix.1.gzpostkick.1.gzpostlock.1.gzpostlog.1.gzpostmap.1.gzpostmulti.1.gzpostqueue.1.gzpostsuper.1.gzsendmail.1.gzaccess.5.gzaliases.5.gzbody_checks.5.gzbounce.5.gzcanonical.5.gzcidr_table.5.gzgeneric.5.gzheader_checks.5.gzlmdb_table.5.gzmaster.5.gzmemcache_table.5.gznisplus_table.5.gzpcre_table.5.gzpostconf.5.gzpostfix-wrapper.5.gzregexp_table.5.gzrelocated.5.gzsocketmap_table.5.gzsqlite_table.5.gztcp_table.5.gztransport.5.gzvirtual.5.gzanvil.8.gzbounce.8.gzcleanup.8.gzdefer.8.gzdiscard.8.gzdnsblog.8.gzerror.8.gzflush.8.gzlmtp.8.gzlocal.8.gzmaster.8.gzoqmgr.8.gzpickup.8.gzpipe.8.gzpostlogd.8.gzpostscreen.8.gzproxymap.8.gzqmgr.8.gzqmqpd.8.gzscache.8.gzshowq.8.gzsmtp.8.gzsmtpd.8.gzspawn.8.gztlsmgr.8.gztlsproxy.8.gztrace.8.gztrivial-rewrite.8.gzverify.8.gzvirtual.8.gzpostfixpostfixpostfixactivebouncecorruptdeferdeferredflushholdincomingmaildropprivatepublicsavedtrace/etc//etc/pam.d//etc/permissions.d//etc/postfix//etc/postfix/ssl//etc/sasl2//usr/bin//usr/lib//usr/lib/postfix//usr/lib/postfix/bin//usr/lib/postfix/systemd//usr/lib/systemd/system//usr/lib/systemd/system/mail-transfer-agent.target.wants//usr/lib/sysusers.d//usr/lib64//usr/sbin//usr/share/doc/packages//usr/share/doc/packages/postfix//usr/share/fillup-templates//usr/share/licenses//usr/share/licenses/postfix//usr/share/man/man1//usr/share/man/man5//usr/share/man/man8//var/adm/backup//var/lib//var/spool//var/spool/postfix/-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:31976/SUSE_SLE-15-SP5_Update/269354b7c31fd5c41e84e2a7e0d33493-postfix.SUSE_SLE-15-SP5_Updatedrpmxz5x86_64-suse-linux   !"#$$$$$%&'()$$$*+,-./0123456789::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::cannot open `/home/abuild/rpmbuild/BUILDROOT/postfix-3.7.3-150500.3.11.1.x86_64/etc/aliases.lmdb' (No such file or directory)ASCII textdirectorycannot open `/home/abuild/rpmbuild/BUILDROOT/postfix-3.7.3-150500.3.11.1.x86_64/etc/postfix/*.lmdb' (No such file or directory)ASCII text, with very long linesELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=6a9b221a977f87aae0c1fdf6e4035362c8d4dd8b, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=26b7ea1fbb12e927b833b9d1fa1af7f4ef96cbc3, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=5b4a1dd181a9024f7153db8537da00fed47e182e, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=dfd97e7c40037041eb293ce7476ede926d133383, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=45320f287b0d21c56918606906e188b63eb2d029, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=e4c2263e07631f875ea338fbbe8e79f90afbbd45, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=73ba297cab9121f94a541b92bde2beb0d33d1d27, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=d68e67f5181f81c23e0bce44d9ec80d4021f35bd, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=6b55c3438e28882994dfbb6fba1d2e65fe694834, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=2d916789b66b16a41e93f967d55002484db15582, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=f81607385fef1242b154211cb763e76ea9fcce67, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=07f04dd160d0d6745ffb7b70823eff0bfe1ff1f0, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=37dcedf7d68743832143334d886e24c27002a762, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=e8d048b3864d55b1588cb080d41dab948639677d, for GNU/Linux 3.2.0, strippedPOSIX shell script, ASCII text executableELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=33e1f067fc14bc59f5d2575e39bbe3c45249c21f, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=a874c19e6150659f508331a4b1109486a48a4c8c, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=e274359fb35dffb567d5afeadd1deec9ee0d894e, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=14e0732e5655b1b2b499d205484d31d4f3c5e83c, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=3a6d74f90e48b653d1c0e87aa7290a1ab5d0bfda, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=0baecdf11827e0681a2eb5c0f116837a6acecc91, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=fb940b65dc98839a5c7c206f4731954744ab6b73, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=e73a43d8642c50e914137d4fc202525930334584, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=5942791d1355a65851e58e66fffb73bf859a27ee, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=f040749b6e4c1d281cc84b1a68c6c727a5efd836, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=26a5feb33f8fe0b6a61531b0fd58854c784b14ac, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=73edc15d0148b9da8c5cd75282bf5f6d9154abc5, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=312aa70b1f650e652217f632bf58c191443798e2, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=a54e67517a8407d42abc685a52072dfab8ac0c3b, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=07796d84995300bf4554a5ddb2cac7e8b4c84817, strippedBourne-Again shell script, ASCII text executableELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=728059e6582417b3f809438e5b4451b77c8bc0ca, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=4472e61226476e536f91f414d9903d1615554124, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=602be12c4f90acdf48ccf15efe892defe4e2154d, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=a909d54e4fab591a472c773ec1e45c2678f92444, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=f625cecc212473bdb713517358a5a5c24e63d878, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=3a0fafc3a99f76ee5914ff6d6f44ef7f887beb20, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=63bd3cbc0d4b9be17c3fa1215dccc6cb86f438c2, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=36b72de17f53e5d6d5e4e0d83dc08421eeb0888f, for GNU/Linux 3.2.0, strippedsetgid ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=84e94f100bdb6f3eb7cb11b2ba051f41e353a96a, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=1dc7be8a4cd79bf025af8803f70eddd66b69c444, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=925c348abb1350904c12d7ea5378ba0247702974, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=1e4cca69a5715c165ea645ba14ae644b92f2911a, for GNU/Linux 3.2.0, strippedsetgid ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=1399b852c40e266a5f0bdaefd43c21ae85c9494b, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=51d4a658802e8a70ad3166f4d649d432285bfee6, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=eeee0a81a024b2b70ecca22d54eb14e2c92c5623, for GNU/Linux 3.2.0, strippedsetgid ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=0d1c293a15e9efc27032bbe099f77bd9fb9d26c9, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=3babe07fd8c87d514607e056be2b387551ff760e, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=3acbe1d43e6f24dcfe26f4a448758dde7be9b155, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=a2bf0a4483d23dc505acddd5a996c24c873204b3, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=ea78bb21c02ef6120cd722388da2a790f9a80056, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=44f9f3089e5b7b14044c17830c7edad44ee742b7, for GNU/Linux 3.2.0, strippedtroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix) "(/?GMU]cijklmst}/0127>IMQUY]ciotz      RR(R'R*RRRRRR(R'R*RRRRRR(R'R*RRRR(R'R*RRRR&R(R'R*RRRR(R'R*RRRRR(R'R*RRRRRRRRRR(R)R&R'R*RR-RRRRRR(R'R*RRRRR'R*RRRRRR(R'R*RRRRRR(R'R*RRRR(R'R*RRRR(R'R*RRRRRRRR(R'R*RRRRRR(R)R&R'R*RRRR(R'R*RRRRRR(R'R*RRRRR(R'R*RRRR(R'R*RRRR(R'R*RRRRRRRRRR(R)R&R'R*RR-RRRRRRRR(R)R&R'R*R-RRR(R'R*RRRRR(R)R&R'R*RRRR/RRR(R)R&R'R*R.RRRR(R'R*RRRR(R'R*RRRRRR(R'R*RRRRRR"RRRRR%RRRRRRPPP PPR,RRRRR+RPRRRRRRRRPRRRRPRRRRRRR0R/R.RRPR R$RRRRRRRRRR#RR!RRRRRRR'R*RRRRRR'R*RRRRRRR)R&R'R*R-RRR'R*RRR'R*RRR'R*RRR'R*RRR'R*RRRRR'R*RRRRR'R*RRRRR'R*RRRR'R*RRRRR'R*RRRRR'R*RRRRR'R*RRRRRR'R*Rg]xsystemdsystemdutf-89df6514111c4ee421d68e51d0dfe82edbd430193acb61cbcc9f129b22b0ecc72?7zXZ !t/]"k%rܮGVcr7vt=s\z<6/UmhLjrdp[[R^L«̏_ Ƭ|S!t@$sPp[ɵn ( MU,6GtD,hXuv:NlJbB{us%8 T]0(*kJ1oPZyɀ9z*EBA~AK#)J̛x( ,cܗIJ͟:W̹>d2#GC#LvA ǵDjbD>8!nj4^Tonc7v!"]Tng2зhH$R~|rtCCt{V؍C\gϝc+Ah>I|J{wepX 2H{apM t1NE>K;1Kj|܀tpd!G{8ɖT`#u `#:J~M}ipR1rpWeVhjTӊQk,T# hs9Ī}(J&7a0ʂE FN @~,dwui߃ BLm2ׯn6_n )wt[giw8P6[i|l]b_&D<]!3jRA~Q2Jj%ALJD)G6}Ec.:GG32f }I^W(d݃`mI7`L4b{5Rҋ\^z aK,`8=A(YheLT%s=)}W nQ-jÒȄd!2 FcN8$H6hCrVeZ\[ACJLoI|qf'TpCHr)# ֨zd't?T#wz7ڋi >rR1l6d$ GE= `!H\u+ uh]=^V['h <_d1̨Gʏ 2ǫĎHo=ӭ8) I<!EzSώ ~JS+PO 2_M-K{ 60=OAEF%l?mTҍcH Iq. SCʒNd;J6ʭ{if?B#m5"ib<#Yfsby& hүPn$T߳G|a.(}K¦ȕX[=|>. ϴ ܩTґ,gjt%>?5`uthmm0(ꇎIO~ʎQ=8TrڒGebkIK xe/bXoBBj{p2|gAr-$8vDiBV,J*d̔1Zq 0Lfm=~j؋fC(;`n#I \z9"%gElb]$I&ھF{C(]+EYյҌo̡ܾDonǣȏ d@*R#'3-v|WUhWV40Mvyp"f^+->hErEC8Dq͚0w4($ɎF5V",E Y +AFbngĨpkv%J'*|CPY|S& vc}]Y8άT8 V^7$t.b/`_SSRMqڣ;E6ضK>MԐ!*9^BJt>^P/1.'oE` Z tI$A}!1"eُΩ|)/yì,\Kд 0&&]w ;"^xAHm d~gcu $ )VpWeG]%gչ0+.xO :9Y'>/sJ;W ni3BZBm('o.9G'5[\f'_VEOQn ӉMa/ϻwP 68W^O<4d> {%hK551إm~P6rc$jYOȟ;f}j&P<'`](";#X_Ĕ! <`EءHUʨnhŴrIt<*bv38ݲwrqېb| l/c: 3ӏo#4>q# L0L%Yo=u gV'N֔|Q ?(,N ᵟ@5]2wUE<G>|0@vJu_!ؖ0LKY[ħN ]ecNM3 ° o-%hi kЭUZs9+bj1t)t!]՟H4|~E"A~ʧފuϞh% 1㶍jwwe@he[*>VaBW]S!~E) NX8qAVR.&"ZP}yOc#F*TBȈx%ǜL9`[n! %E}if8|u sLbߦ&S*/ Թ6R"m )\:^wSy2OS/'yy$? iQ0h4Ke"Jk8{UAL(?B6%-L{1k2VWd'̊эm~$&]+c|$+N^StfBNY߃69_lY1OvjT{o­Mʁy> nכCK $Rs *(?6n)(zk^9(lMyhAZoќo hucI237`R9&KbJAIhρN?{NzZ_orҫI׆dm(}}%%q.m%@\__$5?~UL#.5D HR{ov;S>/$GJjѐq)qz8N}DӊO:{ ζۉWvӣKOsI.&]UiH)31PVR NYsW>0UOa4@Iwe4-m/=ҜS@mԪY<`<`4_b&.RxwAzot!36Q ʳϽ`b?"VsT}iȥp_Գ: ZDŽ;!Gj(E@f=A7a@uE9JTL1˗Ϧ=ĜN<ҮO}MF,n9~Q6ΔOsIzu^w`=7f|Q72Y&%gv/ea' (fu5>ϣ8<#=@;MlfEþcc T'_BB JdrI^UQow>l[Q2B7FXLef(ζՇA E H639=_Vqی±m-Ws ˯< !ReHlт>kox7Оl -.e !P<( 4bzS ↾a8Ġ|^л#nIqUSwX$Bt4;ǿêpY2q(L;H9`X& FvnF8x콿ցsC4iL4~/ՠ\Lgs`#0s NT6 ,ܕ )V32r` AHd:JS:&B䰗nѦ{GcgYYkt,OLj֠@ʬ7Sfk%]V#k,à)&:Gjَ! ?=jr4Zaxcl5O4k/Gͤ2L+ZK5XU2-j^)z N] muB&2QBxuBjhxM5g-C)ʭb,\/ H݅xBI s~[-#xo46]LBXd|sXt@|HiB.Mf w ; hT@#i[?7h?7rO^eRy0 <9T08;z7WP)wT"fN#Eiō`2ЮMU|Ku_B| p^RK] CM֘ 1H\ޗ,s, K'y!\6ig ndдntqZZ!pG Gk=^6zCkjg5M,{cxUaiP49$l8Bi ٮ.KșyvxmXGLBs*[mqX4aT=Z@Kx|Ԑǹh^W0F!Bf,`N}#tȖlnJCe* ~6~+xūdްXP+m̮؄شYRٿe`M*==2I d+`W9RâuqĞ܊QI y'uܣ]-ʩ ~oȩxXcq8|VtSkQQXS7\Qa@: Bқ,&)#h(輳jW`-奐EJ„܅S> X+~T:KͬNB]=ACl/Jjҭw%îdz %N_ n01`MyZ e 1505w'6 5 BsuNȫt̛VM,'8AnGOZO.+K&)#o|"|:D'[Bd2~(xTѼ L檷!!tcAgflqw 5|肠bC a[(@Rs1hpl9V%=g(=tAWdUBhα}t dv9˔}oeê?0PD!Q۰"@<\J@b9I5SO,Cꋵ\YJ4JJ \5XH:–huذZ]/c)>iG!(13&m/YڬIvk2^2BQ0_߂T3٨$+9w|E.a 2|2l3Bއ"-S-.@&7*+G96&'3@W2*|xk+<"}jν+Xߦ[[PVϨqX@.kY[j*ObREnha!ϝY^$>kWK%CsloscY|/?խu9PH顎|ٻϹ[M%`MAi1S+[ܻT4n]JI8&ɠ'b|O4qO:=zm>-svJS*Bϼ@å= (p^B7b!Aw/U9kCK-j0.G*:N5 ^Ou30 66wm=~*p-[ZLı|˧.KaF(n 5q._2%dlUK1ŜnyW?I@( ő?OzL)~KM=( [.r%ЕSSQGѠv [X3mU`T]֫ަ-S>9) @Mw$X:8kS1{IZ:5Gg~ pPJ^"`ݾ(!SX|YTya l_c'?a,6 •Va61Cg)aj WG' ”a .ygd.<(-=2IifuU LBVb')GJ.roػ"!sŒ؁iO{Z(uqnf&\BHЈ } dBB% [0'n[GHtG Or ]R$avuPU<;GB'#r$5j?V]8OB2tqP5r7,3R̛r@cKSv@Ho)9% ;SG+$:Y/l5V}MX&ut1E]aӱXTǓ.Nrhf 7M- E2%QyE*Y󽌁*emܪnW_h$&C՜fw(ºZW @&@.`tPァkgdDTږS|G l`F՞~p _xj==CHg{H-6|zIGֲ]+P4^s5~n1Kp"lz kcY&X wzYyp \(;#7`27VN!]y>G/+;MnS ٳ8;]T~! 8CGio{^T[kPԌ)r/~I3Py@`(t+x;xѺ_S#څsӗcK9!1mP8K-L-`iZ}ʅ.JtDx¦c6Ӯ-ȟ02.['C-JI_{[Gֲ4ٷ?ˠ֘,jv-)hܫ}vi3fRM)/\1}EOOǃU PP+Q#EFZϩOA\O6nє翾svlCmn \K9 [fŨ'&(ص ,E !8P3Pe_;|a  +3 "Ef,07,11;+R'oKH^;ʇN/]ՌQwC䗺Te_ҿ1w0PBNևهŴSiUT}Kdʅپ66e]O L,] "G Oe'TG!2 9Ӧ8W]ϕFB"a9 BlGӘ+/!,#*lUhF~H*bWGЏ ˵CW&p<8I<%,^4 EGҎ@,7iã܏-,1G3*iɸ+6$K5(._\1TȣzunmǜL6n=/rQp ykb@-pSo 5T,EVx QтtdЋWcO`1UɲUxu7+ rHĹk-=Z4/h|&]'+)cZERHo16J뙌2F@;9 R9˕BBK_7٩`z}* aFk\TVPT1K_d˵jV;:#XT'8U AG-6))JG))Vya4D*|_MLc^&oЍ:IEn:'W`0W @& ;)dJig%$3kVܥ(7H3̼ΠΥxn!%{ g7Cs Ɍ]~%ђZ@1M@kLCcx{TAo`;/YTСvw8fh5\yQ'A`DiNڏǭD8- >^:yfbGVx 4iJPSF[Wn||ڀj'{6pYy5oЏ֚/aK& 1KybzAqr{o[-IZ:d 5-&7ڭwDV$<Aģ#s8sVD4٤TyxFAI2aN(HkU/3M.f̮7Y]kf_?ȏjѮ BcKޅ0!dQT23?>zZ@~_! y c1n,-erWp/Ya`78={@Ȓy_!,4-z['xe LJ.IڑLն4rYE@]5_Iyiox ^mb& R8F\eZd-Z#tyI)E e뭕ɥXB=}#?pP2@_K_4{?-FИ5g aYRFH&w~P葑8`q{N`AD72T=yMu钋}bA%cAZx4ȇ5DT$)Edkma\ȋ޸-I?4{3a~I#|n5&#hlUP.?;a3mv\GvQ%̜:jjB< 2Mtj)D/2]aQ1-c ~*byl>4ȹGje?+_H9A`;9Ol{uTo\NnFg߬p5xT/>eք;L=\g ^49Fً/=I?1OO;:޸"M|9͋ڨ7%(;?u2#E=$9@M E *˾L_({ Rd &}>gG "Gx0A]E_ͥ"4jq|YMj1]?e dA7mOݲ.,p0'ke_KqrqݚaqVeʇfw!}a+4՛Պ5ђg f;ѐW{J$]/$Zʁ^\N=#ec票GƜiQ>C`GdH35$Qd*{ܛɏ {a &TϦ^E 8yi?`;MTU6J aV-n&t\ ;T~~d|0K9AC|=_1 9U"QfW~H㓵sNAA`W|(l V `,u{Y"SqB}I}7}@a#"jDؾU]z 9ǜk% U;kN]xZCʁq4'7tHGx;ڇJh7rc˖}a}K?jBlY1=ƴm|@oy,ۢv_Q?+$̲&])(o]57M9u^Ar*8nF\q,{$؛D!qӞ# 01X-oM*QUpڲYb>3'"X3s qB%26sHݲJ Z{@ȿv$ 6siBPcMC)QR}G1>`f^vvCgDl:҅X5 &! oeV+ ke m܇D\O-QZl$QIC Rv`ݶ?[QW^@8كnDZbVQPy`B$ P7xAOpkѳ6Ix6vgVM>ʲɝYlx44(t͎KK]B^h+:-u5EJG'%E 0.ZK뱾i} y^]3uS1iVzc͚Sͺ[$GCM.8,m[E'/=}BJ]ml=A^ s#wMGJ^T*ԂT]K@W[ו\W "60S vFwȜ2FH;5$]**L~2ys{\M!ia.òFOh~n6V&)WBHLdU#Νx{@z;`E3EY`*!4GrWB#>adQ!Iմ״;Dh~Cjo,%$tHҵ/AV̹r7: '=qM7e]_o.;zϭٛU('ܸmUHSԿi7˝eO&15B_fXtOᶄkFtn[iSB(yTdfo1,>N:w`(d/B5 Ni*@ɍPmi2iF5.햳v=$y ZTȘ< 㤫X3)ҥrP؜SlfȌE1LwUQպ1Y?ΚirlV\ָ ~zsؙ7LctR{Mh/~^f4.6zM"xTca*S5/v|wp2n7hlUWP#H7HBNL떥lvDÔUi[QVsъJ p\hȚ[yZY? RC,JE?rB>G.;Nt#8t2F<&vPQ!#(i;L:|*Tߕ=$.*RDG{l9 yH ߗ~?'kzaog^@AH,4nr d@,vH[n $;e-E%pIzYA[ixu{0y0>/B*1fgmmr!,k5)VşGWX!&ȿSM zpsøTmp4lŘD{)BEaRhT^J?/7b?^U#F*|B"W=V5OӱL8TbnS(,{:)7ƊsdNLߧQ}}Iz?bgH?n5\CKrv.Ўéi6&,|EO}u4|_U[F(V#uBv(vݣDژj\NmstC9n\ogif\3}/+-rD= 4CHNmj4Mh=l (%:*\ y.4VIgg%ʜ*Ј+T .^YU ^߳nOm$EU5s:e; 5Azk spr"Mrh htF,dNBV%&_, 20KR: \ZYѩ/AM0بܐ]*PWs8QSZgw;+TE|ًZES6#$p O`33^|0T_s_# G]FGj#n`GخˈV+Րk ע>1xʼʬr谳0';8ߠ 뷅fQ)k!pǘasjӟ;ʒ_ gz;a?1*TV׮-(M{ &%^ X_y /oVz= OL?F;p}Sgyܛ,:.m3c.&ۑw35Q]` .. 9H}1m o$8n>m/1IW<۰RW[gU7[>ܑf^ȉGGzq5d\Ju> \0P.y=càk&%,5N< a}BBx;=׀ B.<ALy"=>|ۓ:@t/shZ A4v y t4&}Jk-. =|Eݿ)q>~έ ||B2Hv2E0Kգ{&B?=(LX亵=Q}`R%g(4#L꡶3(+vc"]!]$X5)ȟfh1?Q&\gJ aܬ _9}=/>d$׏ᱎ18z MP n@ڝ34Wx )p/'_Tί:*\q9e1qywz[VEX aQs'D)υbRˮ*.q?: )PCZȋɲoz[} a|yQ DyF(NmϠgeǩZ[?4>dkmw0\^rc ɟI$d|{ .:϶'|e[1Hai\JiYj#ZG}(19>L6WDPT:@!Fix. *bG=<}A.JĬ t+ =(͚y$ v}N.?reԍj*("cT4c6{Q|.N7ɨvpb۔0 ?5q|/c=eᵙ{տ,ǻcѽy~|L\Uz3_Jl5e ˔qo o=^ї.0 OFE:Z+0>sF~v>Zkn='fCwzKOa`jo:^4kWgqlPŢi2S  z>c)-봂 uXJ2.yFvXX[O+K8GPU6!;}y=2U-Y;EZw Y}4'bigTWyi4]NJ$B2_$P`)y&Jz\h&?OS&d}La04=]B<}}<: ϙ}LkV|6HYJLPggvj_?sZKe4 !##uGޒCݩq9/|A{hrkI.yn|>"wE{e!(P5{ևiyk  )çdYͬČz@fsNG~{.̅<YUƃŏ&SUcٴodCU7d\f5:W. ǜaؐ}f.t~*lXT1es~>Vow%},V8v]ׂO շKpԝhMyP[vO윷CEKJe;z}hv#7p&7 J:g[ԋ$+uZ@ T:_K@qcNS&.3yO7OamIc=l)'#U74*{#YE,Ýiuz^HO00#Z̍ÍH36X̼/uT4Ǖ4Wj-ʩUJ WpK ^ c.>|SAFr5Gb;*n_A v~ߒ!.NNp;L3AQҁ,hqzN**6#xΜUu%[mƭYDbj\|S>wťMW1̕ ` Bfy`!V ¶f2?9畾V[|d \Fĭ`%ob[-}vfl0w7JA&?Sa+osOI@C!sv@}eN q1vQ'E?P PʞOm;_H 0͐nZabN!ܜj4_53zӣ9 㑨TC"3 ׏=jPzM$nik{ĸaY#;$1ÐIL~ ߙ+_3zxHjPC13ow1|raNSt*|IXFx~ ;/w9ޙԦ=]6FصbBqzبdЫ^zyN CUZMgEt@g?JG9pGƓ8m$i|W3[8d,ɋ!r,/ L`̒ dK3>j$ K؂}๥wft[=GgBL5P'sJUVR i0GB@ioNz7iTKb\w_|6Ľ.gܩ!z-X3c:by"dtɂY<.o! 8ayivHDE/9E$顒3vf%b|T_ yן%}L.w+"d{ahOw"M" %kr6 Lh.Ƚ;_4գ+í@}ӏEpخa=ޝF_*֟#Ovفâ%nH/EX;3h L\QJd6b03(K stzC HȬ zBC ,T9q^S_+]Wnwmwia)V0+pv*fSWMV+e׃ix7#(Ϳ7C#- _UuU#:[β]q⒊A_l'F*m,3 #n*p!o+eo.ZNÊK7&o_d>~*z):jHU-GD :ex8ϴxP SO7EW]i}_ qx=to¥a"4OKH![rJih,aŒ0e5 C[eA )QYA+ 2`B%#8TT4\}Q(( A7 qxM Oq&ϥr:kaX#ǓF. =Ʉ?n2DADXTL&K9`EnęZ^.Ǽ!ظE4æ{͐JpMB;!2@`0D*[x Po,K@#Gs\\fB  mFNnt!.,*iHލfsh[]wY`-g ]KjA e޼U*β6(-Uz% CPnn_Dܩzo# Uk/}PHVFՀȉ8R le<K'|R/՞^CݍQ̣CYmK1,Uy^!RK EjkHɕv[V;{7"fʘQW K.Qu[ʆ֢I MmZX_u[OI v*4$Ԥ(<9,7J=:4+EfgCJYs%s@7פ6 d@}&w2.*-3ZqeCq6hZ˵Y5a<\ګMi#]ɿZBaA(t{~|_TۻsVL]uek]VDkk^ѽ cRW:$gXnX{e 4 @\ԏՌ3b\I4]_FVL8T+(jW,8fp_ddq-dp{ڻ ִ1cިbDIɣTyChkU*X?E˔ZbXZ/ [sVN|=## վvZ\,RmLQ(nNLPa@rUԟI|QaGfMГ~,N;+3/HX*Q\hhdu͉c "EӺΎj#_]֡rZ``Ķ'wwRRJOG t!~mHzu50a%TeE*y6{b2Ĭ&=[:Ans~A!CVHBR=?2]kZNΊR"@Q"b_:)sx~C@]9Æm܇h c]M" eZӱ-2$eAM5 /1 zDi@ vc,厍 ZQi@;ej-XLUp̂NgH:^[.ڒ,vuʊ?Sa䳘N*Ej$Z. `&a^WÛ, SwLRk)qj;M  8A`lӡIw׉pӷa1nhWFXܡ_rJ@cNwidYoHiG[0.ÝFV*:[yJ '9b1%,)UˎD U Ƚ|`iW_:j^_Ay :Vr 9-NjF}h#@k*hl87$SqluA|50<:SfVF6:_t}4֫)E uI>(rZgȘX=ysR+k(Ҟ8᥮w.mk5^ I]6 L>h*֟c4>8~k3+^b()}}(LjW%>6dzϛc1$YZ%6ݠ=麽D T3U+h k`ěrQ)H߅{g;=(kMl˵.6wmv{j&+܃s s^HG ^sgPAb-Lv_y40=,%~!f ]psJw0@86a~4ܢڨks',BgUj*.O[)!Jq_xcgDwuP~+9Lu+4Ǡ} aa\X |Qv&8A` 9imV O ȩ%|1@4xmv]&Kxdp9_S+!#&~M@2Rdnq.,JHAAI鹴H R|ؖnT2BQ~E՛QU%#vt,KRw;D,nM[0mc$2Uy*LdD@erGAs{n0Ho `!nHY1OI|ŕ%^y9ԜXYj<쇐RmŢ֪Qrl/NBJDԆkdW-G.7􏶣UۈkKQRp<D vHSq"rh=ֽb~d(0$ AdK^;|]=Esx/0ЪG: 3H:Tf+*'Ms'XG˿Ֆ@L9Oܳ no.8"/ Q+mC~e8b]ysQ.wek>^ޕ6qYw@Six-LJm<9lxE+Xzg‡O~q%$NM.1&9B07Ymϛ8|wo6'?y2w9xF+wz͈+ S](M+}11wFz @@0<-FTGTGqI\IǪ >}_.5:?J #foDd9IS)*A"\wӺHcN0߸8G~[퓬III>Ҡ5m [mII D {3WPo;> N$K:`HEq,a*ΪSM,4q Fʅ0HYѕ+41 ܂vY4g'^_V(Q2gBŽ/v w`lwm]X|<s_WL>9%xKm~$<͘ k}=rެˊxF sI)버&/HAĽyR{C(0x<嬴P*ƾZ-9vQW#)xelhjc8P]bDZ"Yi<C񔝺ąGexZ/{m螤YwV$9EҴO#5=z] (IY覒R;ԠMVB̙r2<]+9G 3d99n 29bq$'U.󖽂&SJf{X^MZE%l; 8y?ej,F4ڼ -TA$חr .yG+LnRtĥV0(r6Oڻ5Q-׉DM0)"v޵/_uJ3]؊[C"pAjM%v])u!+8Sz6}ҟz 7@0(W_G𨽃BWKZأWvr]`TqnGݾFdxq2m#ac]/N d|1sm}s4ZR dgD;f';)UB{4?k{ʙSǰ| zS2F ]Xb\͎Lyd2C2zd?\τUbboB[߽(~[ Nk-VU#8!~ulj/]}.#7Q| 329I+p: >)Rt\1qmdʞAp}$r\cGl?sJV=uEi(M^QTÞDZYxC _ܽU.f,']GZ`t &:m4|@h$%%5q8Uƒ8S,AYk3힚:2ƹL'";~ [0a~f@\`p4 y"J pA˻Mľ R`\SRR[ bM%%gWB Ge%Y\cWwM+f pss8x*-$$CnqA'gA$[b>ZfwH xE9PjtT!}7&8,&>] i!Wn>1{xuiYAحdU"Yjh*BR %O/TP9F&GvS:An0,/M9,Oٓzk(/ny\Z_P@iP% T;|B7|O-Nu27 w=|ZMM] SINwJ{U~פ,gO!=۶00E1eXDp~3[^ !$ij^RZ*5ܩPch@Ǜx [|w;Ä Zߟ .4HTCwG?BU:$1bkdTXp?<0C<7qS^egUK.~̰1 b/MS{mm&iLy/pJE NE[+M]Ms8kw$$#AW$p#SQWB8'eխUyl *T.+Xh@Gd)Ճ ѐ52n)yUguCJuJ3ͬEp|4yJCE}1(yS@8c%tű!zCjsY y;kE C j;vppzJd(!-,JXl"\v`"3EΛOvfm,~(HEWY)a3WX%eftgIM5vD 2߯L*'GN*C7ɼo.5N.dJb~BGJ1p_]BYTC? ; y~l٤Q# BRVI$xL0{Aホ;yA(E8i. \AN4Z]Of>HkY_GY,v"Cl k@_(ă8jxg3zei57CG*R*LKȕܦUpج2vXNm@'=b) <_uGD&)IK:\~/=,V1 °tNuxh6#yc`.M}ǒ `Z>O7GR.kLhR "˧8rŽ-S)@Ŵko )2}8^s|hp/G Z]:ıӢ*՚a#0TZӄH5R\LK3x,h5pllpI׋'xҠ[we PqQ#Nʔ+Q@I%*2HcP_OJi>\M#s[4D{v+_)uI3G'52y-{!]VMHB"2]ImoēFpRB-Z Lv3çTc$.|}moUS)I=B+^!L fnd:aL͟APrגtpiJ00T!/ItvݾmvxU C/(XO!u(>y>aSՆEU ƽJ>x+'<{g=ɫw|@_Q,YuJfG V Dhmbу#Jj>vzEڧh`iQ,24#Des- "GfaD6C-p6@7}=]Qq߇+)'%=T_x.nLB!>CmrQݨ$8|#N'G<"?ƹSMt)7ӌ-q 轮cVUz1Q󰎭.jJ$Fm BNJIrN<>u4"WOkIFd+7;J( (|n7tG>߼Dp=wG1 HoeRzgiP`[`M']߃+ )H5 4i'+J`,س}(:tS0 =.XJls@F2iRU\,(~`l-GDk0'1 tτ-U;ƐQ`LɵqT={$$aoMm#yMlbV$rӪ6mZCzֻ JI)|Ⱦ!4xK;@!8U 7bcoJlw`pE|)kVlnV7u> ) Uy^,;Rv,Rm-#ׁƖ SӐOhu!73o}/v4Oʳ+Z:4RkOKS絧Ut+T`k7xuQqŠxwٳ5>ݒ8T zp9',T-׵z㯐U]OF6LjEwZch ՗#D' i9ʻ-+jp02K%:wY -)۩f|E,kj/N95}pZYf%M}7<.<4EC 1!fD7w \^NAd;g6_bfMEfR̈́$H=Wnl류iJiX7Wp< o> B(mmV`됌Bgde/}c~Js?`q.JܼˎyVjt*@3¥u5'M=sw'#[Ӓo/}:#8kRbh:WDtR T4PXBx*xå b厰z@yqpCQȲi ?Ly?ٺO*ip2aǧN |;F.PRʓ ?9tO:dB;U ab1341LDHiC-h#7P IR4~2^DbS-%Hl35 \ؗeEw4ìTfѨb4. 5%#_1k1j9+#O9)S!),Ch26NZOw $3OEI-GK$"c9o( p-ȨfF  "FMa’Ǖx;CGQ|jA&!b˜tp`i~w\hN'68 SS[5؃ġ ün0shgS<)=bI*4u"9䌀{e>:~{X$O&&Wrĸ1iRTiCpOvXEo$9!IHnfKpվ~q6S9WK)F)ꎈ%}Ur~9UUVpqk77'Q2<#uYZ џ;dd SsZUaiftV'8t2K3p'_UQHϓ4sZ$_'()JH0 O!){(¿0W;lƉjm[,N@ˊHܼ˵Q؃:(pϯODpIs`!wJrlQ=hQ9@8n51"aP6h!9&K;gC>w}WHb⍽s 95;q\o촢4lˀypsa0zz fzk+щ@G wobq3וL:zi=S;Uָha2ֿHRa Va>1BlO #'Lxj}8xSt28sh틈{-wC?Bk,J{АOZU)aui]@o/ٍI2Vy&m!{zj|kj(F+DžPx,0n6`h0)Ȟ>l=N8S,3Ib1GŒ^a ےs^dE^\b&iK U#P_$uMJ>"G± |z&j.C=/W6dgBl(nQۭ.g5LO6#A)wW_z ^_2]vwu"vuf;Z*F7xj"n`,Ш#W'GޡGǤuJDKJ _\@_Dժ7 sY4Xxn޸Vl"tmXOZ;ExXH+J$=8!;v#ٜ׻;jlK$K# mҶ!g*:3@_o_'֤cE܍XaUl`O%~&4 N﹙#O54U|12og|8/lR+{뀸Eن9uRgqb?/L*M׸l:H,.{eL~aӨ_ጙe$C\5 ixD6[d>pfRFAIO?X'Q7{b*"ut%I%NR &s̊Tuʵf5_'vFZv%ZEq3}{ܘW[5x; UϧFQ>[P'M/w =Րh 9E`#a qRl8(' ~_&O*Ah=־)C5]XG"9"|n$]DZp RqX<8SH:@3JV0jn{J^b ͺ8q\`TolտQǐ!\+*L/{=~u` P9-("!ԻXm4XenSWP:`|O쏝ׅn#PcU%̠t*I޺"j'SC1[;0Udì+=cXn۟}]onwa 6=Sq|m`7oP$ |]}o qkɦdVz2&bV¼n=@\'ؒ$fq%{vП#y[\-o]0=zYKG|tXG1dML(Qu@TȯH XsN$rV2JazWڄADB|"$}|%=oɇF$Bw.r}lޱ/.RKώ 3 "rrn}L {= Iwdœi| PG)!pYs3JȔ˺? ȟ8GÁ^O;_I2Tr[zruMը@ċ(_z}jsPU .ĺ>&4/+2a>LZkg7:AsuBIG~rnF@~(-cjWBMW)y}$q#~rYĥ~(cs8KɌǤÚI?xOeUV'G$%G7H`&$qS4X䑷@wC=3]iՖOv!rX2HtYTpkO_?N5\ F3_/C#2yrIfrv=pRuMC[y%obJcH$ Ӟ> !a.HjS ]" Ak #.(0I]GSO;VbVF^j!bL\@#y0X?dy9 iQEXtsPJ(eWi.BCr,Dz?f(1ktRg1=DafRq8c<n?qےy̌jcM( N֐jFru孮>w`ukLMERAMe:2Jg_@-8*5Sa@SU(x?,@3&FP7f=XsF})"Q݊\S{0&j9Cyl6Sk#*>)rEּqMühHs .M i\A +7(Liþif'ܹ) H/QFMu?V;'Z.YUrEhw&bHV[S%'DUn5ŐK#q˜'g:M)$mg2%/z ]e@qei;I6g>zG4:.6D<8q-Sڱ8*9Ke ozPi4Ċmɉ j> 7,L1zTR&~nBl;tHB/*G,q_ƭ)&31ܝ`=z-@Z8YTb:y你"rK"cW=L4lFSbװo-jbJ.RKG-G [<ɻP>fHA_$VSaHH:K-q ]oKp,I$m'覟o| m H 13G B/V'N㢏cr$y$Riu.aodbSK9s@ 2C40l!@#.wp]68sEp#*B qoADsc}tmSN3;MU ٕީ b"w԰X}?+ShB{r}]1|`)?p ^mw 07j@(_Yu4ZYbyۋq(Qn! Dlm&[f'=Tq!z~)Y c&R^%QD+s&wJR0`/xXA0a HQiD'F],^{$=^}DCi3839b W:[7a15êDO)1+Ȕ֧ţ2<\e?AmShSmC)TG`aO >c;[W4yW[.J$ӇխPT)1b=Pr^3SqͲeA;T L$&i4?x?{Y8߼NQ-8ٽ.tG"<0A!zvܫ A 2ۑ8A)nL˃5t6f) M eVx8ltѴj^v!1 ׻Gm)ujkeg`F丆 R 'ߘ`m'>Z//[xޡpo{_+zUҩ+a}~L61%1TK44Y(S.p$bL + /f$!^={gBWZ[ξơc'R2\lnc:\r+/GۭzTڵPB dĂMo}GJ#2A(l`#ɗ:3藕G|sy]} hmٶp lbg屺3Ut\K/&@?'S0 >O'*g/z2Kȅ0x{kncBkd-dj&%<ؽ6R9eLD$xA |R /bT͗`E2Ae djg7+;|.^.H!]qBF܍i'%: \Y(,\r;J^Ad4P]q#8avp/f ;Ԫ$n}mn/̪ފO*HU:f*TLB=0h@ ].RZy9HXZpYCɇxx-10PuGL OvWTn$Ao+<})+sy 5ƼZXVQP2*~:fSdcދ{ v0T]yMKD,ܹ;&G}Z(H;+?F*GfJN3_T1 A`D{ZoKqI0&j0#k6TTq>kp+;}J\u윦o-(=߾|JԈ'TwfYnq-DWG@_J=~`K&l/*GOPkQMqr h.aaxBR2'S鵯Zrn̬C}G$IOE&Bgix`3nC0ˈˢr'-j H/IU sYg饻8Et5Vg*'M 19O ob6 HR-~ǃT)+ k bYp/X3i:]V44>Hxv Y!RDa2S=khIкvӯ>12Wzhfn׍t7{I2.eK_ 35V# s/Oq&<wy5C,q]B( ` B{^nG%Y|yePNC tO{WlxԜ=!<,S5A\,Fݥ v/hQ'gnTV)@W ( r`>U|dp4Մ =܅FiǬd^'pWP:W% W& |M}Tsu :$KzN S i]n(@Dz/>wy P|;)D {OD7hgğ7FSqT[G~ ECnzEbаMPb&^j#k<XJ砂f%Cŕ>Ȱ' F0b~301&M r&(d%Iцe#m 綁B.~:7Һ*ɴ&0k$?IOg9_Ka]Ng,XƝ_KAӂ@=S`<ЕŠ#G -iM+|[jy\(dSutΐ㴲j]bljd]HI8Mt20Ӧ0.%^Ww.JzT7I&':l_%_,%탷q|Ȓ,Ofj:~@o\PJ)\В\uLȂL rX[WB6fO6ꝛ^ 9C!R_׷-eH)}B)}&Oرe&meኹ!h魣?1SxٳBZ/H"?Gp7B%w\<˧yؕv[(G%;=Ϣ􇩱V!mȔ'8j VX*B)X>k2L TdYC)+؂Ќ 41Vk:p{[٩GT*(h#:FxAZKkCrg{Ob譬ДWǂq+F_?L jWj]=;l&q4LSZ kFPj(Ba%u=8}GMkMK@.$io%_όdߍpa^Z"e[KI|o4']3"G-U]eԏ̀9\Tu*r=$*ƺYSۼeNw'JjvWV:aP`_uЁE\.x%?P&{\/Uāu f;H@3*Ū˅osriB:LQ7~SKtA`V ?EPQO~&Ҷ' 7XV :S E3n>?>>zeMcl\Y 4{t# WǤ1.-skQÏL;NQ`˨;^-^s,H}$pb d{]Y%99;\@s(:/-u^UhqM#:Iv 4\峃}.#vۚ_ y_1x`lH$AsQb*t'U?B}XKp񨿛A ّhd*tGh @R7lJ3;n-Q|Mvޢ4f> +%ϐm/Xr1}6@L9,ʷ|W71n~*ن 5GiA-vВq6E&Z mM<$rNm缕{J ? i9Sbª 3r1Vz:+T|vɱʄKi}i`dd.ΟBQe5vu#a~H<[% w$⁂։\o,2W vƆۨ $FKcj'Ghtkڔ E>A=U_'4:> k3 \jXsʰAkɕGcGw-3a X fAԝd/6ѺK]R 3/Z0T|VS!nYɓ >2:pTPIAÝetrSe7rD嵻ҢI;;ϡk,,.r'e'تpJJO{ڱG gB~%*1?boGJfy+ Rن7G`MTG|;wB#l#ʦ$jٓČ ZNkEk ƭI )6Xa˃NDJ<ϭ.Ɵ6eU-D}7m2 硥d̗z9C/:\qhw)&LO$YP[V@Zq\AVO @ĆOtH &[u߄iӏV]="*U@yq\D-#O*rdJ9˅Ē]ˆ::uMA 5 ul+T44FSU~'$*L,Nam~+nk߂; b{jQ)2gWY$!+ xoRL`5oQov4sQe9bq8guʚQ?QLR@ 4FWװŪ:#= bRCXzvrPg5S8Q Ma=`V_;cݝ4%`}Zgٰ, VVޠxnpzbǁȬxWi֨xY""[-6!cܟwL& rzV1iQ=R״HSO, .Ɇ{h@S5KAkG,NB{^|*Z LEmFq1n&͚ ޳簠hTӧ]ayC ;E0e]A(tL#]: PP*sk"IS^<,d=h+,NAvzEKJY^JSXo/A)ai!POm}6+BAz['KaWs8~ VφJ(TV.+iFtժE{>D%T H0: yxRJ&v-M|T?,E1Q̀c4յĖ3a|&<v[sB*!16#Ma+yp &NV"!BR} -|ZZ>8dVg7 (Tkhi}C5п|~8`skaO@ ofĭRN~4+eem%&Y2*jYw~?3,􋅦A9ud%?9'rF!7gQ|o(܅-NczK?Ӣ*o, FbU EzKNKi{wi2Yꥣ&mu֌L[* KY40~H)VߜE!wQڶRh7F8D=umeMA=֨)@?l41*f&͗0 l26rxMXrc2+Eb$P]Ǚ"3:;~# Qo4L#Uͫ:ؑfk;4"bn~kk U xDdh5^:*Thf@'/2rtƵE敇݉G mF$ h=H+6x//ѿ*"|\K6M{2 >"zBЭp؀d_&ZH$$iHW5.!~`TVZb23+ۅT④ XeF=>0^ݤhCi ,Ψ?(xuNFMn _}Z:!]"8(IaLz%d>adSgA5ȑ>BK:ޒW J}a^eWjhF-,+I8S|mTІaoKxӭ'n,G|TWc&KhqL=z n ߳#Tt04n`e[Iֵ&hB.hNfP ( _p{H3=z&ت<&_&Bv!zKt vD I"B~`"n[Za̰AS:ua}h7! '9Fc&U"jʁ:y۞'3(Aۉk]GffW҄=o04UGASZIit5]1(v44"?[n=Y6OJrB;[>2dh'ԁ2<nGQ&ac+WmHj)ax 9%zB4?ɭ3{.‹Svbi&` }*l?&6UI_qԡ/yph\05mH3$Ũ Fv2(n2s"qız@X#c-,XH-R0gbwڹ8B~b%j2I/~5|~o-E6{&[,\/¸K;)w3uɃPYR ˭ڀ%Y6Qҟ [] .(*RP{0gqNqF'%[m{^Qcc#qSy?{k% b)?ʪ|؛ Z?k )3ChԒy bf6H% ]!@ZФ;r\cE,E}ݜ0Q|⬏ :qL?z8Qo YLkwՊ)_t[,]LaϫËTz,rccKDaXuy-W]K8WbT,9W Yrȿjp 1,GmeY.W*\TMq-CvASc-=XJعڣUp/8l k3fe 5Z>4QĞ'Oe,"V {$2BϢ7M}zKl@א7NG}eQ_`ӰT+~߰(rGu,%xMr`7~9]#<>Qz+{od Fki l~^yUfy\;][n"w; 9*Dd8X/T`[=*i: =;Hǂng`IfRj$Wx2UzShOB{S15e%t]+b6 lN׫fWcٷl;?iZYUj@Fh΄QIg\g6fy|al_Zw&Zf=|2?ֶʳKrU_Qꄃخ5g  & [TN$VKv=sϴM` CѬX&VEo4eanK1ey6h%}T#mZ! \5v^[(6yBRWzև+N~s*UN Nk1+T1v~|hev}Y4+@:|jGDҫF}$&nߥR`d n06Y% \%nIt;7 蜏 Jdž^簍 r:@zpGie3ס Ey,bR?OZlAPJ!O0`2s>m!=}0@7Yk+uIWzUz2iI/^eHU)xM0a,y$xQ;ee;8JS䖕 lZDȶ 'X!N0V4GEF@qWŅNG2 QBNxV` ρfԢcM|uѺ+CQ#so )ÿV'm!=Ub|45V`ʦ(Dnw!b.5?DN'F@O`z.7Fy /@!6fWX-@m$?J! 4Aq{ܽM0){.8%tm QPaEpgF38HBIH`&MQd.GY{L;FKP[Ygu_"1\v6 Q^;Tm 9|]nEN r59 /e*4@д Fa Tl/Ab~ Q[xYsw"Ng\lkSu,;ZaaC^QB\sJQK:('q0}ѦU) Ibà)~wsbP܍ t"]/k0f3[sP\i:Sq%x<94ۧ zT3NݿtnT0Y{MEr_F~w^ 9,:Kru/'dWIwW+/zK+>;WNYoFw А{۟)5Ntݳ?%U߾6OD0` M`-PY=l.arTY_ ]yro^2#M"v(A iʐ;s'h\}ˌ˴#)c2~'xfYx@77 yI?RkQɄ{ԩzZEq9HCT0}ѿC)XK"v8| 7Grqiy<闌 )GϬ+8T_~ DR-t~Q˥W.4ҥ K*41+@z8pH?ev\4`tB_y)@Ck.|1& o|;oT:+җǘ53ylKPR\#X!M7h+m5%YlU2,W0 E$?훘v얏";J@V3|ݽlw0+ts&n7ئ\_K2a45>u05tdfC]iMV:OFS1Wad Վ֮`"4BIP?4"d\˚5G<@kT)p0$*mv=6MrߨĎ(4|s^e\ uY4 lz>XRm$lPa:- CTK-5d~K\SWD`N rYR9~Lrt*fÑ)Iu]r`܄4ZeZ0?»! ydn r}?ZuլQcEb&1nw֡!ӉޏuCR awf6}Q3ϡȗ ;zq;MBc6kkۭ"AP8q|B;_ E|ȳg6! )u_`)2Eg8!國<1\ +U٣p'&2 zXFBn{qQ(WWg2%$-%8W6Om=u@s]a7ߗHHm7}@B.\pTfb .-c;$0O|׵.ӉE?&7c6!R ۧ\!{L5|tLšAhUB7R}1PB$V)FJƑϩyɚüT@h^* ꈀ׋VEb\ŘE t5.l~ZީN`~"/V'"O{.Ls^RYE.$gy-KE26dR)1 N@c2bᧆI.K ֋,H65 aPF?2<H0[wW)Yj1)s0ۆ5GՎ ث(fG& #-k d:WfrnýDƃk.Mey>LS(<΀ҷhngB-B=_rklVrt, {XAt5罡IN+3ip Mb Ĵ8PG6B-!gXct.V~$bVdAټMbm(aAoĶW32Tc'!P-2]^>c_ks\BNIG5CQ U8JjRy5 "7dPRaoC6OҤK- Br%!M})>4kN^`cˁh8dY]KD!q]R>NqK|7=2^^>9ƭv[kM$K_yVsUIb/Rk]b.`g<>VDyrj]q@Dt flVO jmZ,u]^{O75U3+xӃv~u?Rr^Y{өTxJ]|~ p~!F5~úD$51SK2RB)gӎ#zF"B!$+?6t똯SXk7_F1WEJM7Z6E vNdCn;vTmnjY3`+jV QUrm IJS~|d},v[68!}03'ֹzZ⊣Yիj. 4 DuTCszX(Hk Ms妾M1pYzb:4 w+KEظoc]@AD&ʢ=_Jȹ#稕."<$Nl 0 0 _|>%j@)"ՉdOlUu73+D[baAutӉUz3wjvsR,ҋ_u.sO}CN$E7NʙS{~V)WVٿcO?6T= jwיX3Z:Z/[{OJk_QMAYHG7! $쎍 iw>j[@Bʃd<64c? ~` oI0$c/,OwGe3W%q@cl1elIkUHRLZvOʽ~ReU`pJY @=Y6ʗ JNX) O1 %w#풐TOO &rԔ~ F{+ڮKK՞ϖ$+a)f5ZX( y-i-_kD:oA]@TbX3 kb+!mq},:CD<U:bd_o,Je{s+q2\£KVbiJ = H!_`fbE|/ʙXqgBH2"Jp7X'|%n[=6KO- @vwRZX| tOպDq|d8\)Rl'Mr-C#Bx8|ޡ<(^"/hNvD/ZrjI33IpHckךW{ɾ]bӎT݂i2K66c9IfaׁmG@o&tDշ@.m:Uxw}qBxơkhBO4?9yVE6S|~A>?DJĢ_tV'7<=S螫_+i۪v<!ctd ;6aG?ScDP8ᝩ(-L?npN2|DkVψ&IlU6Nx>;|D0Qى=87;WEI[鶴l<a (MЖ?)PY/x_{V,`Z% sLi3D܎s}/R[{ OG:u›Z s i+xi`,=SZYƞˉwAWFش-vy_q ̪ ӱo -aU`޶`.c.O 7$4ziy?j3mtmhzZ!~iݿg;7qUgˤWc˭ U߸O$SӅn M7qb20hVϋc\RM:R`权BI`๘~A}m212<pBߥH+o|Sh&8~pb'u>j~pKZDMSx%7yAB4Fa c:~7<3UEp_&+߄ mⒿZ@͗'Ev2qԦ8@. ~^'(-߱oxyP ws p6"T;LoB,e 2kacʃYLͻ Ҽ{?7UF'x5tXU/Xwƨ,_ Ƶ9-TJ7gZ!}xA@w--6Z=묝p Ŷ,sEZ 4';_7 oTDNj|+UszƐ4qf~ `f&~N~| \CAf0U2'A-.< *٩|͏N uL|;/:"NB'!Y׺QSUtyq=?̯~6vzү/ol\L4(i쬎Ġ]։{Ob#B5Y3Lm€!H&6a*on{LpQ, ,li[m?UFMQ>d'C.q}kcdquj1(OHc%h^)s9ۤ 84S%6l 0[ :^xwgI|DR"Sb2o,ܶZ>̻/ʾ[וub"b"l>Vk.#N0h-yXm^ Mw4 geۻNn,{sh!tFi+z ' BkCV'1}6\u}w 5q> dL4 P s *+ZwiD֔: [CVBh~_O+!1s-wpR*?]uogi.Y7y x!ޤy0|7:Y7hE$.:1q$խyWЯPtr %a1e>?_?  z̹ ZUpIޥ2+ d'vq3yÂCgx ti.1I-Q,! ;[~u4Ƿ5kR''#L:t*1aHq7R eҝ+dGGmN!MмnoYQEY̅^BiRd6&Ⲻx(yĘ@jal#GyQB .NF=W^]#2G bvZaG1{5'zbz F )?/Ut7/܎j\s]aP\7XR.1/<Tॳ}>+oYDY9S׏5]yǻ+{u_`4=|PsN,ӡF(n0Shv>:ltvB>GIbLJۗmՂ{*`7Up"½7Noxeh[},௑M&gbk E3-9Ɛ^.ʔXn4V@; #xpq:iQ#aAlV*ҴaEC۩ L#?mߚ.~gk'r">cANV3'IMжXC8Hcq=KΡ:E0B;R iB,E@ҙz[O\y|דDusAf~dIL@+kӒ ~ƒ1<Chc곦رQ?re˝oR>|ں A%ɋON L@<ۨ3ԂT,{tIOoْh(iUzW"lz3tO[Z;,nG3O+ Rh0u\M οEariE{̓`hi;` `7tC w X $Mkw7L(>ʭB?o|Aq]ɄUGqhƶ;| ~wjg$np16;h:6~h i$i%:_pX*;ß;M'  V_`r9D\q 6FKt{f Vrt&G*IxDH >È[?LLM KyЅ*6(}7pì*Ga ztg B_\ COIxo/0 FN$Q'gkQYy3+MЗۢ])YKͳ;cgY9)#[b (T̀3y~PbkqDV͋?Emwô8l.$Sپ8v$F:Nʊ"k61jIcg*ċ.NWB:V?Js7j xrّBˈJhMxԠ_J(^-e/$x9cS؉͒-_'VNr"^q8yn^_c1w>g@S[Kk ̱`5f_x=mR݉3Ϫl)s-ɜPlQJ'9q>:&VM`fk1v]\{J~ ڀ-͜$ɿI3xA.C{%K˜j?|yWԸ@!ݿ,MEd2mx-#lִ3Nk6;|Np"#y@K03v-rД% pPp2#~eJ`<Ӕefn8Wi9 Sr$<'C3 -ˆ uh/oYNڇD3-k8rMTN#^+8I>&t3vV`JOs'JkE(pveJD̚|Q۞vE44ILVyi;cT]'WN?n~<:9gǓ?[l>whiG`,hh0`\UN=|qN'A}>6F%?ȆJ+hH >oSEIx<2K9%V'pI &ZT)>kDjWKDSpְ3J)ŘYLnqtoE%*-UR P9~1'+8ߗȒ~|?rmjgJߔ؛7ix0w_\ٴ]JBk u4A%E7rZck+9/M>8ΚJ֠}v1aB㍈΂d}"F?4v9,rc 0<9Ƴyⳍ]_3LyL{ -/MA_N ]VIE͖ԣ )Q;>n |8ΧRQ o(Y3KgP2JSl6$Э +zQTPppc ;7[{kytqp`3 ~4.ѯR&P)Js5~,2eyUGN1 Qyht t{Zp")ZBAq-h׋I-όyu9_)ix= >U#B:M$Bw9": @Ը'tsLIk ۺ2$mG&/#\?v*'!x/JT6 ԆVeƙO/B{z ڃ-V$pgaJʨ2ݸzd\oK#?s˛),нZtlط2#Pff}\qXVXm$ i !"ek tИ"6tTs[_a| 1ޖV<M564OviI`m`#\-@WIU_x)`}&t 8)lZ.?š=tԾ{#@|N 4l]g8J d2M1[d>$@]oZ3ێQÌ ͻQ{^*Wnky~V+<)2Ey2*/G2vgB؛[{s$0iŸ1yy}qܒԚeS!pcSF@TY)凝*S'$3AQ̶I5lݚfD:"i*;N\-QPs})e0aU<>t:+eH;xP9s/U\H^v.ͩ怜7UqX%Yx;BdXԴgAlqT%-{]b45`w\]S.\jY -1s! s{^:r\ΎOi91{})cBX)z3-!)yDSI"/$j C #_/XJl1(\Y]5Nݍ8KI:zڊ]%GZT6}]QtY D@YL5Ώ2/UѰ2"_K|c]>Po\zK FPٙ!׿n? LJ~R^00(9 rkpuy'@oQIkNN2`X/HRG@0ͳ#7hUQo(@a|'DtXԈZdHԽ-e }'M/~G`jHG}oP?ZsB^]mh?Wߌz%zb*ΝMqiX'P(DTK/jӭ|B+Ez@ޭ<9[z4-SVgFv>{@*>,se83O:SH#y_ 5 V2Aa8veI>D ÊJLHP#f3vϯ0A{)~ e0zs3DX'ntGs ‹`dӷ&w t+RnǰnT( W۴9%7'6Tz[2Jz@WJ8SSe 9>;k}e<$GvpF_c[+PQ!krDb"I *?Ŏ6KEt= D6.99FX`(/g әY0jRzSv6`DC^m(/brvBYE;ͺ#*ťȮ N*w6[8f5JztT/qF-4fhr>{= %k}B#n&&<.( !rh"Ro[퟇fg,Hn,xq4DXL̴RCHʝÍ:ڈC,\8'sZRi: ރ:H( t^t`=V ZfЧHPFUu)PeS5zaڟk@mHeA(uǦvJp ?'B%FM[|/Q~vD^v @|qJl{ᇯ vp4>#R+\vN?/A+{.g")ېzzoxvTC&n(qC&:mFA|֐Fb%A @tv_{aB *,Q^˔g ) U97OƟ|FK_Jki֍H1-RU|4aPL/I4l/\'aHC]sR ΅|;\~9 ,sye!X2E< o1&@Z90m٪ܹgH&|&%oG>wŒ?`8nZ:2[eCGه^/v1xv}mMܳl?,f,|P#Khd,7b8ȼhNFW&B0[hA{24V0#ae@mr5|Ř6_q[C | W:nblR*l>R{> G0_DU襌K3QcOxIeי sP !p{}ed[)@~t@ De:'/MG`FRY]`0Е聠~ `f6,+A\3ȡi˴k S43!i+vLs{$GYD+)y oLhkx.,lS/&w*LG[һ"{jɋ\I: O|#5YHC"kr ^.qnBC|k]:(ί\4FTs_w,ljp9a 2Mls#wU.B :,X(EL^棷O=0$nqϓ9 iM?W.H;XqX$6ő__ }b*?7"f{o2 X W,QQvʦ:k']@u.=}!b;ҖM| Ck]!%d1JTc>虹\m :| t5%V^,k_xEv` 9fH^Zo<\ཛྷ%~mFLe3/P4;\cˎZʍ<2 $(4JV=~!Mk=*2n e;rdJsx4RAYJ?5ROʀȀ=I.J6i z.ޛn#3Y8"5㽞|Ff/&2w)#-3wTבle؜y/.'e ͟< ̘s.VX)< {}Ín JFu*j&w;myg>>;`h7%?!kl]C?Z@`.`JoUhYQRboq)@(pӿ\'#!&͑"nO <#'5 O.2lpˈ\2r0N3rIӨHYϪ׼ꡉ(#}`~4 VCyݐ0ׯ|Nd,ӘHhݗԮC.T gR|QC' uBaJˁK|-pNH.*0iq{';0+iơڙ0E'6r_BI1TH(x^E,| \w d򧅄-4:JWAzdo5aUɧ2ǾvEA 1>"NSxE.û>ZK#1*=&"se$~61V"5>{+VtYغb S1Y56/naؒwFǰrqF0s+y_V_nCVن3YTg'FhGhZ …\|zu be9i,j ڴgH"^#;gh%&wSȤjtu(˅1<ělB % 6{/;Ozv[V6r,y;BsO$a3?dJR2depW3ZOAGz-rm:o"u%tÞj( E7sqwҍ趁6ea$kgAWX:r+2&#-"*U3+ۤõ 4 =-5&+/(O5J}/+i*Aᗔ:T &rҐf~ ۇNG,>9hwdDGTf™U3e=N }^EclHFiMtz" V:C {cs8} S9_=m#9yzv;~T S?Z DVL |U㻌7, O8۹xt4R"E[ \1_ )v889mc<-"( hI$S\=􌛡T4V@r=Ewy'<v/ YZi z剷Wzy2Tx:/'IY%p,۔(7@d:}:ҽ>uX7489FyXذIPbRoԧaFRc&<{pά5s0SZMp reMtcM}%QOoOa1c= ;NB9O9uG0 7]B0Jڭ!YjL ONNIHԂ^Cт"> 6.ԮʕwGl|YRB⑏3SLF1нqapJ@UN#oFSZPB2^ Q)EaݴD@9VsLDl("NF@(@&Xv0 lbnIEvo7nJByD +Q0;uUOgӿ# 䅰'u,J(C]G;TBQkxu o1uTL;Q:Q!& ޣ:=.gT1\l@"/βaѲlQv9v& . sty g=.[Uti7+7s‡_ÆO }ޓ? W<RoΏYOfjHtNJ:$T:b>̋b$Q@ULy@x-k qsYg܍$9l.@p놖3FX#P-A Od+P8Vȕu}ihL.Ea2TOl"v~O!ÉVߙwu4rA_tTCcV;vRr PN&2TAQI~N?٬Mp ~H!SNz';Jr7dɪw''773E'J+kv5zHjyQs8>$1GАc-fzp~椦v qW@ϝ_$JT~[9^L oĮ}~s:i˧鮤;?ͩf1tP:r: 8K Z靴)}Ir9uxÕwGN#/w̒4 nc+s)Ġ;hj8MJ\-݄s-`-w,S9SLnJg\YF vEuJp0*V+i9[NTo"MG{jx7f$d 閗ZQ)gJcNŬY#Ԑ|?]W%P)/ojuj%%D7m^ɞ,l[lH9(xA N禅٣b|s"F#D] _j͟R8q` U4tǕafHqWqvJSGS,oR#e.S24up:˚bD~2""շ6O2|u&ם b i2j~+M'e?CY{$0 ) dB@"zO[vgQ^LY_C-dCd LhI, 1ӝݝ谜O<_{F A(}5윑< J:̢}?QhE2bVix]4".9 )ܦy ~zU\_+Y ueRM':g^F[^BJ@-ȼx(ݣB^}4_G6B iK#ZOcɤoy+oVjYN?o[P3~/RLgmR/VP;"S=9eNAezHo e˥:cJ|B$AB>/< 94eXq43ޛvtS#oN&-to/#7yBb*gv=^ Zn "@mN:" gA4۝ߐENlH`$p'*qXLݚiiwt~yVQn@۹Dac]?C&)_9l1bf"ʀ=I昿5GIYP&_ X[O7MܩZ0eԩclb}5-C\e!x-!s%لb`sƟp6 |Ʊe^ grn1(H> 3 ȵ41T"I~ Rju-95cjd5gQŪTOǍBVySwYC;KX< ά&!M"#p}\Mefk5Ah9.Xl"÷]辖#LP'6Sń MK#Rw @g_=qx]"_B#]ʻ$՘p>mcJ#mj~֏EL-XKMKj7pfIHc`| /bOUb*$MYJIRѼr+!ML9U$ۯFS(/2၃̬T>KCf \bGةR^)^]Ͼx 5:G(pCi"B?rbЯ5ަ"z$W ԷvrI̻+;P$ tv׸#_{S l:fN; $/x2 n{Z&~zKqxO!uvѯ(ߜKh-ab%qGgH3ޏ+cvbVs)׸>Jڋ*w9P{CtwI':olPrS!F̗)dCs ڲ ysޢ "2(A*C4SRh7MUǗOXdt)\WȖ9#l2o43: uP*tC J{*7rxYh+wvX@^L,xV@.:Ý[CW,4y:v ܶ>WH3b<]6EE(Eq@ ;:3zt5qE5zR{[a`Խ>k #fiD~03ޟ->,ώRO|^e@2`ҳ}}BU%vK>CnΜtYb40%qβֹuc/iXT0,~-dV3޽9 p=i(Ӧ=Uc8AFƝՄjh]-ܵx7o=O^Ý`o p*zK3̤` _UY7cÒnJ;d\5f -D n_r ̺Y;wcF_1`.0]!-7EoN3+F8lt{G,8ˍm'CVb.{"\R9;YWmicrСfURXPop; L07 BN5|$x`#:Hz4U'{dޔCY-]z?G;'a}>g9.wŸMTv jD"[_dH7T215>|-MN]xI[|pnK<Fd^~6O|6KL5QwipLо'*-!5L>Ĺv_s1Z?m2!I XEbztw]˟XSH gXpppgefx[;Ⲿ='}:E[tůزB Nμ\#@Lᙖ133dbf=ʃݘrAs9n E,zY3d8;(ja1Ok @^w%?djɠ>='zcX@%\QVxNx+L3ۙ9 󄷇ES AZ {$A8Y7AN]\-Zc:Ι?HdQGuTWfBgbۂP%e;y& &R3HFs{L9۔wߙ6Wԍmg-UUW_dli D2hqژ (dWfh ũGd a7cEn&~2Vb^j'x[tǨ\pPYjI~Y DzFȤhZ'ƭ3V~0_)2ppϛ>*BO?Pd$LRRC- z%!  J֮9%/Le$%$-w ,KaKN5xkԼ4%N} .1#Y'3%Z;"P}k9 ɺC& } >*yrg1TwC}y,+O~HC[Vڪ4 VRgk¬ E[pO:Tz,I3|(ow\hh0CEAى2N}*(A<{/~٪olC_}ƅzSwH|^\mt @+$P&5Slx^v/KoH#'c8y|Y=Pnj q5+-[r7~Kz6_ Sm;~f8+{OJD`OE05Ѕ |YM8|A=Bx* =w/> ~B*0'PQ_s_}"6?-SAN'f?]lsT4ݰn6ޏZȦt_*iGۤf'3Lj}J |!U$ (t+u.NDŽ)ϕmAd!0n{{D2ek #ωdeF(>Ma.i tW<`XL>uG'=0U@bK Uibc{O\ƥ G7IrhG9]/ {ĵ F(]gutMr\$P'MSuȫrA8ي1pܲMP"K[XpG4<RZcׯ5: '7pQ͈Q]cqE TѮʧޘ\~,.{ ܸYj-’p$')?3@3={vE"ٌaq{O=fZR`ZԞ+ [[{4GLK빸0 e0csqhàj8,ϣV B~"qly/(6ҵd]Pv d{N1?J`t35 pkI5!nWEr,@` NU>ui@Ae=Ŷȫ &ɴƠ0Yfytb>i\[Ww-֖O҅Fwe\Ecܒqw!c$R\_fǹ _5gBR|94BKՋ/-]׷R3-MDDq֙+yIcb]>뤹f6%8*Lmn:a`8ܱӡhH4O}E S_!sex $'nR RD ?%X ?EKㄍ6[,&b4ՆkM]nrx{,F}8tK9<.Le23!Y/Bz+u2w(; z= E'MRrg[9rBUB??mVǵf‘rrǨb9u~t%ZגyM$הq }ӆ#|v5\,BW |;l8@T$%Y '(/v!߷8Wx[dp]k'F3v&-zGͦPes<))|…*tZR9ڧ DyWJ+*A/Eq9<o5W|3'WĨwȟXMs4~'x{V~i*}dXKB9q_ Z0Bƨ3=$eWbX)1Zǒpsh#C;m?Ie_l ,YTGֶ S4X,PA do%%2; V}_xČy{1zq|;e"obY=(@>V=4*-Iȉ.Q yΰ2H?'oIpbnMZ: h]褢ч;Bsnۗ }ȹP=%c-hCdFy I2D _ sec@{޲@honv!AIbv--B4[\MI[Z$&մIr}rfa{5ru_޸ Vk9I1fgxχ5-Ҩ(QKJHIU1< a[S97`lup9y8cRP{e{9~SUs"L(y݀J*1O,N~nW 5}Toחwiɒ% NV5CHwꔓ`_@0g)監 qᎮoܔP)Y`cןq1ZJkl OCx, ,[:xREiY_;д!泴ya#[>b_E|踗;੝^)&h,L"q ^6YG*y~HFdBJ3`n k24ḿB~ؠW ʬi.VZLq*xw*QaN>ީp7.ZRUsP.K=notwI hwgR^iJC$`* Jf;Pn.G@ڷ%xIV۔R 3_ _bN׍<|34l+W4 HCU_-ֹs`.Chf܎"dgsU<1'⡧#L-F)UDİax 1d|YpfV'lkZCꓸ14L`Mٿ@ `7DN{l &I^ArŵCOQwkc]GqP%!';gs =5Z07Qgf#c"ة.<5ȗ3v[*l"` ,SORÃ%žU%r={:n2,y홵Juvg# i>T?N{=  m-f>x;JHT72Ϙ ޱ v@Jsx'!zv-`?}R-ZKup\`cX|bG?8W}k6Zu!8.Ad7 x0'0cK APy5/G Nr1#s`Դn4gSz/~{lNOzܽKLE wceMof}i8_#DF?w9mG=?GM *Ў@B/&ʼ6Vs'4E4OqA>n"#刻|ihFejazpN3}Q֞lD$Oe(/i]qO&H)nYLQ6Z)d7Ж=J?+YO+5Q:bSu g75k5v.0zݣW䖱ASF[XƏ7\RÕk=W| !b-XT`#H$c@k<] QWj'c^b8u8D Pt+5v Րu;$>#YR|B o#3k%<Գݐ9rvꗄ[~GaYQB`>nu+2jsu\""FYYC /QTk(KB]J0éM2a/9V"$}cL 42Mޔf|H,8](:0i  >a~g2 vl9`op @\Ȕ O8ft39@9[S ޤ, A%#$o }_UWY>b{J0]We %3Y {Qj4g9pv/N4/Lؗ5&]AHra`(z t"O?m> $Ѥr]Mn0> (ۉyl ogͻ* p3;?+>YLLYV"=]i[hݵЫ+FwA:Os"vAEϡ ׀:}/HnCiƩ/I9yI uS5BA/]M˷Brj cJ<> ˦ aW5:^V -9VɄJ߸>?Lx9Y8P_,?#"-(r e7ل==(置'Y ,jNj+b|ѳyS94|ϡf]~"F lF?xM؇i?@PW78=YAx%^kS)7T}|*|sT>'MX\L,C< yZUm +|\J"U ";א B^ uD7Wswzʥ9x$۠j<[(bi' ?V&lC NNg'۪áZdEc K&͵F= y][q%z'"~$ mCnn>{Mۃ/>GEpkx_MF}_GQizS$o'𵰡m>g(05<O[hV4{l}N-. /%j:pcԻis+JT(CؼtK\H2鮇RLS[^}.C_gD~pNYMcdh IQW~3${IHMabfo PݗfrEf,S%FU !ꩰs<$AH2ue&e /uK Ey #. (ӛS]{1XLíVꊞ"c5m0܉(,i)h7{9-5OI|Jm pʗ>V%aԩ+=As|[NRR\{>Y (]q@lzb|ջ? {X*DZÅż'-"`\gf5_>9OHAmak?=pډMMG#اM&s$AZBH~;(D%=؂8Q\>r 6&2]7-(6]Ѣ6WfQ*iK2 eug79`vޛ/fuTW;qՙzQݽ bb!vy;l6@apYö|_Ε}bAӋ&Zvl1adͯCL;Lzm#t2:כV mI=Y07}u+T58I"n7qYQP+긵[?̡M3 T6%:FSU{Mߓ~f6RI*F^'tIaf0\M*8P/ D 0|y(Ba"T}'5ӳ|7 dud.cs*bHb9I#v,?jpz-KeHAZ=߮)Z=kόgyU2v(jh:L$C@:Nᣃv4<RvՔ1[oz5\VALV ՑP*F3i(K|k>P]$(dzk{V[|YtA`AX+'}:\ZG> <19 =I.i{P`{5we{ȿWas$44_6weCq*1F!:H+7Ep¹NOxJ0A~ 'O̺U me2;n&6N YID]IpK:W8 v*:JM|VWҟbXVuf;9ĪFztln[=,cASoqxTg !=Dp^ )ݭ8Vb0RרiOf-4ak6um[-`ɦJ9>8 r~0 yXmm$ EUSzJ8阹y9Snä.B9 EVܪEr0IU)1c|%6 p-J’Cir#+8.킽Y huBjۂCmUB#_lY%>ԕU}$͘;>~D/˜a5DQ˗$u[>; Lg{bq.l ,@WM~iF@kĻ$0W;:)[^>8vVD, pVKԒ ;IE}sk۟HwL:3}c.V$XVskV #.0RHAԄX?C G@9Z3-M$?rll~QtIB4VnE4~QcBm:]*cfe0|"Ѻ3n} \dDs$2S+b t9J|ʳ^=?"غR>&@U `P:,e@bƦu蝦]5p2!Յ;awv5#~iϦ;UfD1CaHb|\;5}Pf$ ٝ&6"۠uذԟ r֋0e`uZ2n4D[ؿ~'HyH!0<>cƢz˯)VxR`$Ҟ֤F`ؠ;L Vk1 DC @ j&N vwѪHf km2@ :Q;8 d>;*y4ZQb?vWHV)}5õ2N [@+ e'>Gض\I^df_R/p^2.xƽ\?_yA,G,Enՙ*}- #M(9~FؚڑlxoS]X\YIm0L#RbTQҶ: /Vx $:tsc.Sဈ N̚؀4+qT={̼// vMA~UL2c(hWJ/{'4 _=^qhe*ழXB?>XlhlgĀXaWSȼo0l(z*/y ʥXʘoXOʼnڕި8U?^,c\0`Iywۄa B8$RW@T)geWկ[-wzTOh?,CF"&85*JOt#CYgFu]/%l|@1FBFSE (Y<'P ]^P BjE#p^~cšy:벃-;&j>zxUʂLP'lsᄃhSPԷ@3^(<=yIj%s#y33b oPo&r= D < F3(m@Źja~a"f_Z<4+^wdں꡽9uz_SjFy E`Hje겡Fґ_;Ezt&" G?'WmRs:Hm;(pփ;x8gq>C(/mJMp!wE"!-IXK; /Z7H5q-sM 49HHV~%`y&z'35<| B&-޴n +'p9j^|zEb!]X JJ}VkC&'>*)(VR{A\@i%WQSh%?60U%>m"҃6 Z"]ce#Ӱ!Ho UՋ8'Ra\,/>艎U\{0bVl^=$mlw-c{AE[ hł+Q`P&M`d6D q(;{V)gd$92D%mI+` ٗ#9«兇ҟ*$ LT.#p]M%"Bvhf_!/"NXH*M琋^ר+GC0vMQl{-zg<^eX1s/FJ?#8vΝش-gуL~GB2X DP::oP>n逸 C!o%>BCǰ|0l _Fn&uYT-&NNNB:cluOPo(t{`y25H> z3chaz.c,,Α9hVUOf_AB+CMJ,Qbf]xy+5p3;j\.MR 05oƭ l<ڞ)(3ͪ[L:L](ه#)ܝ997*D2},ӨdMԶ!CU(SaƶMԲۺ;Oٍ,FcY2I_7u'͍,ՂO2!4kAN* :Rzf1W,B'p g$Q[8&35-P(m=yBC8N''Dh[I gL'W ޝt0A` RZQO%L%g9+tM^n?u;1Kg$Ϯb1׵K3R^~(AG1bHT]?yn"3Nzu O 7),6/,3D}f?ڲWU͝Kv^ŠzO%+woXٜ3&DV 9 ߸bfC!(*3v|'!0$jUQ7>K90A(Ξ,R77CٖVWQ):eQr{džhnOώeDhm zkG[AeU+Sc߼{[@>0؅gZՋ;*:EC)$MKG75Zg6c#ҵx1θgʶzjF'4dww>>tl`uS)]#Zooq6IogSTh&Ԅr=\ -~fJ(\E-=¸ek_ 95 JTo[?9"t.ɋzȵ@UG %'wY%v5躦5/tv*R$f4S4=+ j4n''!hU6+{gѯܓ =$%dZϹzê*5ۨѽh5'DZQ]Wq֠%%OјChpV#«ͥqm4_ynS>=%v쨝2aR׻xz=rh&XmaWdz@7ʼj;wE8Kl5Aq4di꥘WUap*h p95ThXT&0>mձ1PBXX )s!uP$d,F0ܰnvL2ϑPh'bZ"2191(H⩕Ĉ`PQkB=t0DžאIg7: fU9,4c^ǣ\u"7a\ͣȯ[3ٯN t`~܁Okb~x3 %ҵ 2q ,+9H&eod׃t 3pb2 !#> 27^]#]ЈjcFImZ<i$6%-1 Y"ṾCܽpΏ#xĹ`_zjRek…CX] ;Mg)BIkTzLDe5_$U\ xv eQ ɦIvvU[W0 ֕PϮPTeDeXsqZ[g""fik{aD$g{#_\g%҆P;8u}:o׳EekOۖikOoaY[HQ9krR~ϋPA?ǀ6[ dw#%,Ӽ[˧,`XIo[HplvfGmt'/ sVUօmm'{ [Ċ (5a3 vŝhW~UFn6; a\OrBSX7!(,:F~K^]O´J# \Q}Mu(gh`m\}֦6>I9X]#^쟶1'G #V*J?!3IZ2_^Q &@Yطf _}'A$ |H[?㑇7ܬ~J }wQLe!=dZ+&îVu.5&'ȂlXRԳ`7z;pXbg9~nțu KGx;/\А. cs}3:Xq'O$XY6kˣT;/ϡ$ʽHZ|t7?1oI5:k񆆴s`iu eSF5̓2bn<[7ۈ|pJ&UX#*%\5!g KfNᇌ0h+\SI H S~_Lod `rz'sD .l)i1w<q$ybAf" d$n mc 픳gwrnꁓ5ЙmU?*[cVmj9sۊԴd4Ę.fO_g~Ϝ.3,>\Q1PGIk%-A@v)Nr 2_[l_/MXX{Y7EP|q>fV7#ow3/;†e}se-g#ɝ1tPJǭeIN jh#H1#EFщˑ B?` ˉ wLs{nE,`\.lU06P |m=ykCw=9+G;b뤹wk٭0pէLV`=SXw^S )FKȤzҸt+Pw ~qw<~ublhL`~S8o[YrdIVq͕^Ar1";*4.\1Bݍ`!d65zv[M[g!~-I,-qVIzգUw4wx:1 W2.> -2/¬4B_H9Fdgqg#85/ ZOIcwk;ҵ;&v~ZZ+[B( [(R,rV竀"ܠ٥3dPM`Gl]hdL6 4-L\(@U 1 P8b4y1}O.[2t~'7 UB|oD{4e?0+GwO&Õ8Z Fs}c/bϒR /D10!FQ^^3_?Fk" ׆<˲=P!P%/`+WR3kt'ɪ3'f>HQ >ȕj;Нb2*=/AWwpj1Ly~K[BI=e\Mȶ 9K|78>"J~]C 4-}]R~ۥ|Ă뇶+Vʼnou.xH~,]IRPt g'E^S-Mk]mF7ؤ{]PiV} j5ÐͳA:oX2$&s2}Љԃ !%4ʫ m%zc/A2ZbG^@) @_ uXy \6ƶg({TG 84FUqu>ˎ#y/h4&(n ; oB@!m er+Da"O$+2Fowɰ13ISmp{5qr : )+t +m0VdàJDZLi& Md*%ˍJGE]U4='̰IvkRvoG(鰓pZVYO]<7A@[s鋚{qpPfϟ*V=MCr`GHǾ_wn ϱvv #U1?Bm#x2Xgimd䔀ʛvF UB3!)i3Q sfa  A^]ܤLeLܜ9ȣ!Z:m8:%GYi_:0yTG=qp>EL4/%r ކ-!ܰ7Oi?l 8ؼ?+;=z]4{=}j\q@ϩ՞qO(XF]Lǯ:ZGM,IQDa۴nK)FPvsw`]jVG <1C!tԭ3~Hp #RVp.z94i %ʬoH+žS N!Q$8T=Q Hӵ}ncu ot~<@}誠aD? 뀔dy?)hB3墷9JI_qW/|,xkmIy[+T,Mt'lR@{V 57;J_gE/~fH.m2k+j}H̜@s$8X?_9Gb&+c@-Ѧoگr|6Դ=?΄aHWUdXcCMYk]%>Fb"P#E\%F/$|qߨ3&60h _]mdd8hKXPW,xO~ذK=8TEp*=&"$HY FЦ'}xG?rFū;foSxnJ85 z2hx>!hK' gYs+} ?{DN=[+ ͡Rۢ8$(Ԍ*a"!4t cё(wq>xKFt~ٝ" <ӿ+}ܣ,ckՏ_:x]ŰF%nmHAix,L$c/+]a+CStIbE:̲|?sdpnnRoDjP71_#,&F8{!R[z='hOY^ev)0/OQoߡćeOkcp|ւx%{ީlѲ!NEs5v{ J%k=DT_Bep)l|S6 xmJjtk1+Cmae}bݸݟO >0ZS鳴U͔q2s%~6.5=g4cKS47?GZceĈ;s 6iۺ#l=cpԯ"+֔ 0p4`:2fHrZVG-^8sVOio`&zuŊ#(pS6=96Uh9j+c#0VbC!_i $Tn9j1;. :8 /8~;^5|oJ5t!gF5ΧafOr;(SXPZE>q3:ͷ-+-VslJj^}9C>GZ[&EQCyf.?@hb,eRΧNn%/<'Өe4΃Xփ 4-wδM |JE Yz;tOY3Se‡< EiH"`R*`:7ԅ<˖o)U= ca2=Ɣ@{ߗ`sB-(. YfcAsK> =sࡆ*Z9;ҝ1jYDli&b"! e(-LC }eQcֳ/ʃ) SzT23j^edl9]}>cKΖ}->{o{DzuI14`thg ړνlCjc' %kg a<89Lc{}d {l=[Q+܌k? - ,WQr  R+I'% g K;"VIe}m}StVz'-{JFw-ט]3N<]*W4[|dͱZY6S3~4[5ڂ/ WYo{7%)XV|F] z\6a  hCfubl˜@dmu2Ʋ=vs\MvEC^W y1: jAp-*n 7<,ۗ_ QUvR37*S6lAV4qn0|'_6§<<^B%RvXR cTBXաd}Et^u6``"ɡN߈dف:1i~Jψ%'wm;hxLeS+|ޙl6nMK+`[nqDߐ}k#o@ n$8cGG٥Q5gpDp/u0vb^%sxJM%4பl[v^-ftu՘\8J#o]k/?+Oa8}d >l/w6Vp;WBbC5_M3_n!?pCnlޙ u mͷXbT?@}vކa̢ W*E0"' Z3DuIvGۘc4,dӅxaX׉MD52kbwVR٢w!=6@J=]$DhOBiñwnƮCkx3y-FJ["zƝe {zEu5=M DoXD1HC~svNfm6Ƹ mO{GNɩ vA+&"(;y` .`9 }TLmlߊU :kSDDs a![%wyZqܥ"Ubu)=&Dhc& +˱? >Yz~!v]t#77 ?NYE$64C:WNrV~!lU?^u?r[[?bYVXB!Uf[I:gKc.Twp9\WÇ!ceޏˈWu`6& ZbhvH4\Op u@gEr&X]Btb1;C! ֋>ɨ s2EzF5&, eqmq"}/HlChHv .k=+T:J-՟ew=7'$,z%3e5ăcX8v^W叻6d"q.dF<_[m+q D%Ɋr2.2.g(lL 5d 3;g|/s*&%3ꕪ1yhCu@" 3f{f01@k:@c[ Q'~ur/]s! [8,S3_!%@Zg f™_Є헣9 8cq?2`~Ž0UQ^5 vo|;yl(YWT HuGɪRhDm{rξ 3 hEcF@rsuܑ^X^fߗi[ ,.{ѴP|Kf'j-ܥhY A2 opze (C&ě[գ9h]-iW>!;:%q۳SX!noukW1 w-^kJcd*~ݓ"4 )j.9\$(e^P" tn02[Y)MŧjIVTWg˒1⯚}f=ˣ/; f;BD՗kRII_y{~6P O:c?cQoOwnV;fMʒ>78f^ץdvT6R+233oBRmn]q~JWC ]CCtgE}\V,Of,=9;z"_4ʒ}Ę}aK`FAN͉j)BrX` eG_!$c@`, [v/yʐ8+S1DY"R8<ni1MڨAj^jeMkl˻E?1bz}4ILk(ճ2jtx8btd\R!OqXW");0qRl;;zZ6^9' (J#<6 γ.w~{ |UD[\ ROlS%3 8eywd& qP\TϬ$@)%4Ą$f| i⿇m n dob:1#~5 %Y#T1MGC,֔^* ! ܎8:^w$AlC5;`+dRɹ 6" 9Xpv:i<6'd*KoÜZ:^u]D-R0@(Ӓ_ 妌hrʼST8-3[/Dk$۔]PX3}}eC R^;6Z9׃%D ɜ7Ət݆2O_|+Xe@iqzc~)=IEsWW' 5 !l`*cLF4evƫŚj{|c+> k:nL_s=7p- J3?Rd<1KiW͗,{EorEv8U,xt wtdQ@lO$bn]tqx ~~]bvwD~< $gh+88GT_P(ǽ"/11i)!Kc]ڎnճ;-S-ۓRd/ /,/Y(S}*%Ef'Vs+cأ4Ϻʆm0*G,{ʵc e&h>`)Zd ?y% x.M3&ۑ7̠ljO7H9aa3Bnֹ"j0M6z7&c~'B,M2"$<%_AHQ,_3b tu~OtgB(?U#M 3U-lr28zӣ DV(.b>m4_4Ol0ü 2a6>SG7 s-Ց1pr$;ݲ)qM)x]1-YyхSa|[6Q׳bT,N< < ˿j;P£Zo#  Q9# ;Gˊ1ho8(")l˨'BBMӨ#"LGc|{#Zjs҅PP& GN߼ՇvnAOf$MYրq2q HXE;&,O%Q~,O@riҰDշ 8hэpfun˷F?;&?=G&z7MLfCM;)7$qdkØ >#J_Զߝh’Ƅd?i28U5(!ETfGfW,hg/3XgMӗ}ǵG7wPMVߔ<}'0"ZK&鼜;7 CBWiFpƒ-tzԆQ35j:߫FV<g *6Vl5A/ӲE= ~T$Ea8N'HyEukɺ^x7wd"fNpeojoPE8~s։(t@ Tn-į2n@f bhu0V֡tH|=)1A7hc]_⒊h +"N5+Kӱ`mER ,8!WCUȹu@Hyx(F@>sx>IU;c+jK3M0AW0HƮ?'I}7,lvHH 1a7!s>YiQX B6ЋATqBŦ p2 14_78G] y_Eߤ@EfU;_EϏ7B2\{nx*J?@p^G!?VnM[HJ7Πa Ƙfkk} vԸ_b-,k wQ;m ]̴E1"9n7-$0|CZPS:*:,T\ ծ*v,Y8o Ԋl+NmᎉE!ɾaZu=%+jxZw 3 ,*m)rh_Uߏ$9uD~{VB##q}..\A}!ҿOSK rfnDGߔ7 sF:5:p[j0o>Qq M <(2AX9ijwcG)ILݼ2&%fL^1D'kh^C? [7Q? >約2zF8Pp؋Ӭo{ȜU005DEiZZM#gt$Julk>6 폹nJʿ1S~[mFX1?(p ^3Dž댨36{/$!hJh{v6 Wb`}4uHIm$,lT _V2.RRqk;dJ !Ro{yekU:іc,eTA>PDp^=5wPD/ `!h0NϦG2}uX  kg84{2ju;Fw4՘;@li+oȾ ^'u]tekhz|~T~uyCsHōP=^=۠c '٪.~{}4Xk,)d"8;)wq"j xf1"^~l%G^ Yd>LǃiסW#ȅGo5|F=v+A ` @͠¼8TNP4yǁ%w99YHö_N o\KN?O7 mAE!*xs%\m9@;ͧږRn>O]?hC-g %@/&BVfIa0 Mq[]e Ӹ?u+/)-QT8<&O1t*uN~/zεԸ^;[̪ 9<) \\\W;\w {4(Q V>Q9npO^ Y.U9^E4OԢ j(@W3 &_3oӸ ckk#bkQPk-++H)_) sʰt&@?UwZ2q2 mbv#@ 5S,|F Rs cv@O;F] }<&׿wn-ES.3uHA;, J|ciW"2B\%X9ygq@gݚln$4zorvLeuH:+<Ξ,Q/(k^=o=%E!{|Hr+qj>i. XqMK|~v`ű9d}\ZhZ۩%!wŤ띠Rl,ћUgiԓ.$$ֺ.ET]z3S?3 O3?̭A}|ǵ\a7,̇9 o5YP{ ڏe϶nJyEлrPOu0+4/+%M$CX{q@HW BeKG^rN |Ou%$sUqZ_1ĽKWzZev[#I_7e$zPW8ڗMf88t M#Ҋ20(R01Vj5:ҐVӰN~JsV͵uMc夶iĐWG}$u[7!.)@6=DؐT5*Ex "<Ϩ@COXZLC~ʣW6%~),E%sMռS~g3F3jb8gZE)\S\r'eZܝd+]Y973=A%{EԘ 8دm}Jqj'8! #FF0ǨgP.3[fT =Xi[V|sZ R LKu}~&Mĝ DŴWQ˴,*n]ϋMZO]¥0;o:dEA"af!xƃΛZ^NJc%>͚Zz|P7(/0́ Yщw)W A/CrKyvx/V/o@jXHh]:-MW%s͢2^&t>Ǘ}),q_z}yYt=0C"b&t}OÞWQy"K1QxiPt:3Z+@<ڜaϾcN-(!9ZR}Y ټB@_%W?X5.ZcXrmϾ]jJ:x~0%ٱu1& rPn 1 Xv,J\]`r,E ZPB[%+~LX$rV]k6:GrϷ?u6.Di1_@KҭNpc_HLJ2@^:KvK !œij}FWGxD P}Վt6YLq) 9mz0O 0tPu*-Fd; 3N0 iQ1M{ш@nCo"cgAɐ[>PV<| T|ɌA&18|sxIZh !&ܤy>]eQOoh0Dۂ.n;UF- x WOGIK(²VypFƓ/E =p9B^:+ R|@$NwwOKq8xQ6 Dns~!j3V̪LNBCUyD%Etd5]< DPC!RBM=LaiGEFs5Exߊ Z}ɶ*4l(LUFXX_XX(tU0a## AO,D<]u̥Ԯ{PnT,r'*xFR.~ 7\^ֶzGi`\(Q}iP!C7.9OW2nfף紋w1 'h0"G+=k`H O^nW~[I/y2 o`+d<*uO6V$vf;6qvDaY 8 wzK.[ &YC{qMiZa%| ~[]ίݺdD82te#*+pVNN>u&1|BՏd2._3ٴ\ګQia1ϝ=TGV7/ROp(jZ'm!"xutH5&$x$ɦs poN'w\Y`h"U1Y~| gWd5]qiZQVCNy>E ӦS!:"}r*zLu QۛWc51,D'{0)g6$یHaЛu()&4ڒ#tYwތdmKc$؃%B%oIMVjcqg<~|Sm-Fo܌ʁpi_\Pinh!B -dEMk O4XW)g6k#XOLVJ`FT_Tf4q\q8hUR-:@+p^bpwp,͝(SBxHD` NTy(i2#grd Hr`@S({q>%7ETq_o%0.TM7%W$Yo %,]y# I;kFErՃ6ο޷k`4P6Wr!(n KIAۘ`t@"}=h(G\/̈́dVvs'(69&U"7KG5gZߍ,]^q>לּ]GX*0&)J|۷R?L$k`2/rfKe^iglr˧(vAE]GǑAb8gr'F&ev(Qϳ^o}UuV%Fhu59T,n)(/+ys1S/2H=UĿiEA R0ˬkh-?rH%c5r k'¶yhA˷1'xfն~Tc%8~L%Id-%R1m] [<|rt QqM4Ikg00Vxeu; +E¨Kڂ qQ)r^%aꏭx6Exr1;ELgIgu:cBZC*o@vV f" T] \xˮʶaHŨO2 7cy5<sBț9pa}fUeY\&Jn4>62x.mV™i|z2= SuY[̠5'EZ هB @YA7Te/ґ5ܣi k#hHk!?O]R'U4r 2bZ CuD5 h+U} uV/r0}:Q<:^0sf WBa4ؐ+_j`4CV6F[J?9KA̵okyHr~1yC"gl >|#D!SR(Be\woPZTؼ40bj H,:?TFsq!T爵QxJDBJ`8%CIrLX]Ÿs9  ?욂 kB\$0J 9PlzRtT4i7b&.H~3hv54Qvծtp Xs f%\nÊGK H+h >Vvw{- ).YYsን$}y8}|ߖI옦zڮXnv՚W5M׶﫿ѧ#M Gy$B8Q8'» >ΉGOOv-`"'nc&}0ŲьIO]{R6\a~fnq+H_* tT h0v2gݍe`rj#綝MW>INM/qfh x*uKeץ8y>+݈쭉:a|n:ĘHoy!I͢ S _d_d.h^S܎p FhA1L* Zn[K*DAn$62abmX1p$3PORm ~>ك'Йܱ*\|)y NMHD?_v;4PBЬVYY.;ҩ\6rG|Cy}$[NF|人?.+ebzH E(f h3@Uo?z8+lTZW&>%!gk*ۈf.%\A\  峳GBKp^w\MaTf[ ,x\L\ pr&c)?N:@ѻRP^ttK yԁmfFp}Ha%faFS} ecΰ "OPЄV0j9tVn] ,~;񀭲 qBq< m[Gƿ4mJ\(6)4rɂ YᕥƒA4@ LQ[_K|{\u,%[E^֊'A{+Z$ @s؈n%)PtUyoo ׏ۧ#SYdT"Y_vSyWWw l!_V; BE ~Sx\`9?Ye!zݰ8mE7td1Rk5 4)ݐral ّ?w\6<=Su!FpMo2#+_*%$v9"yX8QID]JTȬpVSh,r3m)Q=g@ uX nEv7v~v;zQӱh C3&E[LU2I_P]mR5d|>PϧȓF9T@K{gPM}KSߨԒ*vRU=tfh_6fgbSoW}`L<\Tv] 8HlY,sٕnHQxśQ*s,"'NS"Ѻ'-yr0՟+?u-߸Sڟ$yKIp"?]J *%P7!g|W2MxwWNTwZL+9Ƽ7w x7lbQu.ƵYKE aV wR86m?C~ v}x$E?٘ݢnŷǰmګE7"u ,5e%% ZW t 6|d{m= f-[  vHrd;,ɒB2!$CDa4YC-g jf}'R-U 黈pďsH",G*F*N1.#s|,kujFX]a^QPRi ,cDu#6ÖXk'5FO8At]9zdMH:yIhw'OTON 1IHM%Ɨ=pI2oHa +t%2Gy r5ad$ݹrhh?}4u(&f6Oܘ   Q<V܇Nf3+@HDLF#}0-".2RBGqkL#=v=~n8xU9 Ep̝!.KLT Q W"􅜱JHz _3%|g#۾ jfu3/19*KJrf;{_j f<nsp#YkD(tfp#핌"Qe2RQl1;tflĬeWqd FZX(ɶ.Zp~; 8uL,7>74ctx?<&~bX.zW]A>xY4{x%܉ =Gvj%:L,ł,2FSz!%|Gh}DS==@Ye pj$7<a_\| kVZp(3?}ٸd'JU&TXO0^z>Kh_7~Ulߠ6Y? ʬbd۷b4[IL4I$;Ѳ!_LA4x2VŴ@}H΅7e ;SIɏw@5ꥂ5`Z %Ein4bN(w t4W/ j9;{g5R =Z0;3JZxrj ߠImA7ee4ɌKkA5sBH[!SNJ-ގkx\+OPEh˪Oٷ%B&9sÖeQq?xjͳ*]56K$tO} GX}Ljb-gzzQL4Ak]g,KTOå>m-4Idě{4b0K?cONbͨ!bEjK]7)i8?UR MBM%ӂ]:u@~`{/w4 M EZV! Ntghm:"L^rXDELwfIy DU糵̽W.eh]=-龡mZd;XInK]<7 ۈϼ|Qߐ6['A\쮔Z 6_H:.FvЩ4K(oTP?Bp:' C26b"n-]}z $B# 68hez3ui{p9dZ?&0iqKutjaJSvFh]4@W!LN<,فjLxƒ4;d8ݝ`.KL|1GSƆb@^I0*:*;^\ YPjXy,,bǚ)鸅c,.$\,z w\TۇaѴ^$Q"ռ%\R2wX84gq7tv`]  UCu i[<-d  60t#,J05 I*n fSR-*"x!QFchX~6zrJvN[s(B2Q;[06lPQqL߾A6E?+')ȿ2sQӅ A ŝyT&N%GqOh!, U'M&F׹C+$xڸMd 1wo֣\զjN-mS)ݱ様Zie 8W%eD¹Q*EvLC(7x2c삤$Z {LL6=#h[Q4#/%ΤD:zt#_~9)wYf@ܝZ'B|IPہmhʤrN_ʿ} QߧAp-uWDMrȯBԕ ȸ>㏋(9]>'+0Q(; .yqdUc*lx srsi>>{ߛl;]` QlzF ].(03xf(WX?Kt45c˞>mܔ~ӴppLX0D2ClC☷Q&2f:L[[7LW/s!#0{ڔA|7ɹ/%4l[&ѶC #b(?u^Iaj>*oa視J4N3nC`[|qh_DKCGb UX;%6L$2Y6, 2 ϵD Q^JAwy[mC\n*ȧk18X974  O8jw£Lc2ǺAC;~7j4k(0_f::G k,rJB!i𿼏ߔМd5 U?5LH#Ӡy@"0:"kB)B:m1]sq6҆1k@d,C֕9F"|O#3Dڷ?kOUݺnFNEΙ΅:"=I;u8P ܊/oTY2)#_<@Iӆ>ybؖ<|Mhl2T<@-Oxם[1Lyt0ɑ+l{PI e#SZ$5kjw:kv#B@Ҫ'z2!Jbh xqdmqBb2[,H88}P3AgsFRKñxʠ3Mm v;+`"y5?EA=K.дN( |Y-Aq;B>'cء 5Sxaz(9~XFn1;NLa=EKV!w&1W žuV.%z˃StI5CP<#Ur=s:OςLj]$ӱErDR$AaȔs<9;ɂ~|j|rH/ |8%K< br1U*֝"%+ {AW#gs D#.|tluϪFEEu5Z#G5ʩ ]?D 6VOq4*s UQҖkFr1<怩SB9ˠV@4- <9H yeJ\?$|B!lŚ#PU3<$ODmV o% KDD!. Pg8`ej&-̋ծ0_J/>=){þZaROw#NH u {S%Xk-3@$|&y_7n5Yj a~J?PTUYjW9 ` F Tи'd~R 68븃$hnx[sٳ`$¦ȪDCXp&mI*\)˅ӭԦϾdƙµ|ݞhua0WWk%P~I  *og" Ymj56f}anXSE/\}yI͙5ψ2cn6_57ʉ8Oo疇+M$C&"4f/EvDQh>.~Sl!5 Wo1/lZ[Υ^<LV9; 20|$/t@h*' D\Ƈ#U˯aU8}ll1ϕQQL='QPSiB ֙˻,ِF¬Q `t65>mS~nPg0%*;=Xe`ۯ/DiUyӃd^mhMaԪ-aNPCtֶ8?=9eR ¶˜S@8N_g߸-N K Ce{TV_Tz. L5^`* 'e\~'1PL2\@ (Bzt<"i/IDlHHo5FK̡"0!_eɔ8SNo戙@^^L?nq\qϐ .vIJHQH g`qf` <\~6 I!7H/tE3l-1͉g6K߮Lej9xP"zDR&5MVcO)EVx^\O۝3^0#eLd3Ѝk0Z&z螃^UL-Ԅ)AKaq:I5EU(Y]z 7CUeH A:mdS/d2A/c QwRNX8jɻy3(|Y>6p0h |5/qK4Y܆kXP]c ^3IoVl5SH/6Ȝޕ{YWHWU7\i:}opSm, +PJoCdCpwDV__<3{/%uIebD.UC9UiKrM҆oif̱D'ʚP[M64+<7f#.oR6U0D7x0?8)A+/PK ],M8z. w+֐X-NRz%!4`Gw߉̚qc"Ѻۜp㖢`Cϙ2 #^f뇗??E0oFJT;+rQC.Մ zCb996Q-`> ` dpYx}r!QD/bPڸ,\~+gRW!ӺFX昖'KEpD8rdKP3pw B_2ExSX=vƭrwCI4zkgXuTokY=s@ʿO` y(_&vi hA׼؁=JЇ#YWOb>M\FR(etkBLk5]3?e م-IɉĹ}fhE DEny[XNq OI Yan@Ka! \);'<$ kZGBc{Ps^Hـ'R&=A8k)IBfgd @%h݆u.l.7tfeI|4tN3Ʒ]>3P<_l 8i +_PeofZ+NZ4f߸ģZџ #Zy](R/{p[E;-)RRgܝ>hYCZ=<"i!t}$OL% =GkŇ%+/>%XC d =ĹrA `s9I)'T@Х;dАdk ^Sҕ4:ޖSFk~h7S̬zXe$$vJlZ*pw5reS%ڣ~h?4'ҡʶ>B&MOUk̞vjӃ#\7_U$-ܤi^5QJTW,Oq R"2S3k-2.D ﷢^:H6&H~`&j jVk-b]lQ 9yđs](eyz4[ў`PR߸{NS(:(t4v\# 'Rd@CX̝͍3c1}q#=쟿.wέ1*"WQvJ} GY:8z )iVz5e If8_ DSC 'Djq%wYu X&dj(йE1|ˢq:DΡaO=8"''jh  zȩ`p/HD!;WK%zc&ǭ1P>5el=7!7 7"o`+-è=>ƣu;,QǵK(s|O EBm 7҃Bavszz^;#ǹI=]q~ڨ.x7`ہY=SĹ!6M0ĥQGu\@fqRqҝewpMOFn), ;[>Zщg p> :U\>Wv}C- 44iOL0T|(T,/{_U)SSB/€̜ܦ'mx T|btf=OF{.qQѱ~ʿH!B0K5aWg.:;/ZJ̼H_@m3`3'y~sY^NǛ[YIV*[>O2!4ɱ8]m0Ґk"ԘB6f_Sf89|1;`iotAcn2[΍7+D튿hOR/]b?fT%R߲2:h $su~)*ց3տw/'ˤ2COҔ_`i waK11v!mJ Lꋱ*ԣc]asm.RZzڮӸ_" Ĵ‚:-<ŷ3 fQܾ|_DGEKނӦF`qOۆ 7s4uZ'NQ9tђ5`oIOO.#.i.sFJۨIF6]X%ꤱvzm#&v_^]v%V+r$oّ7sYi*8[Aԡh2ᲥOҨE$jGBEQfMΆ, q\>Y~T7HsCQ3nԴԼɤ _O\ ȂQΥ\ ~wtqNL !A3}tS!ԅR)'nW˥'8'!ѪhK' q_siL;o2:\XTZ"Qw'0 v~.!b=!.VǑٔPȑ,_LHsq 6۶gX@TQ=?_LCGn[+} "o O?B4O$-,M$\`a@)#e)u^v֎ej+eזjUVe#yLrO~c 7`V<*m۸P悦]&ӆvPr0S+QcmGA7Kh |JԝVqfe#u P(`űgyJ<4Hm8XT]Z_"\m/87@Be_R̈eCv{\>rE1s *ʗ [TU(7bFPmAuc9{QZ]pkc0,eS'+->yi-qؒ[gt}@^3>Ufbpnd2zx*uH>Q&$H/ ~s_C<k{)ڴ@Y.i-,8v+X?qΐ7.睹lZƮ1?Ǒ%\̷ F,*81j/2)@ĤJՙ#@g 9v4t~,$Z@x$ UX9a c*4ET@J#f_07>{ZۉOҷE6-:5SFJ"FV #6[x8b0ri/< o&|&~jMi`#&F.n8bCd>t|,n*RF(5wX^U n5Z-@\V %. @`6s uTv~g]``2b M.##ܖbSOq ^J,2.7rH'(Atq R=? '6@*e5*:WhM/Jn)l[p!w #. ̭<-5"@ Ooeq¨ASȀ6vXV_BKuŋX=Ih2o}Rhon.]ܹ`Hxϓ7'zTG)3P=Zѥ#&(/fOxf/;Kh.6߄{xIy}^ [.20)l|5T *PXN I&[|v,3oœܱ[wT>-ǧ:ɤIour%ΡNtmwf¿BnrGmtsMydTio mEYF;3h}LR4ߩ49p&nQI'\?4i[3dk\HXCԾQǡP HeåĽ^a4]ao(< Jj}]Lu%zapWcw2,V/ ǒ-hb\>+WfE'.H 4O_Pbf|X0?rWO,^#$&uV8`:i`k#WWJUcC/t%٥Y@9''#2 %P CPr .mCQ뜷HCOh!E -Ń [t@F(+[HCC"60הaN .6 7=<3nb下Z>$!.8@IP)gTm؋kkp!qp\;j'OAq*hώ8/ʷpt| |.vO|f0y&'vyAܽ>uj,$IKϧןs*,AGÐYCP lVҲL|6Tǃ2.%aF .PC-'ZYrуx6ҿ,8֒+9..vӣb8W7`z='_,t'o?8Ax^ <Qш@1b~SMi ZJwu8G//bBjgK.=ɽLT} s_38eZz:=Ѕ[z=Bf;}5l^ *E5QL,l-Uw+a5VD$J5UlVrL\1Q,Cmkd!3aG:|% ZP>^TŸ׷yQ7(Md= [J"',Ֆ*>Qڝy \%PR: {E}_5xN|A"qXp Y5%sKvn|NN!gBpQ(msE꫖{u]JH"utlHKYh䩉ؘVÏjQ`>EGTxƥ %vSDXA. VH*<B)2Og`mb%ZRhGЪμZ3l _òD%3EpG N٩[N֔mO VV[vYX1m%Ŷwچ_Ov'@v2@m{SV,VMdQ1rN#'h1_eؓWǩR'Fq*7[D b;셠;QLKCz藄qQ n^ЖeV{p@~\7} a\s9{O2g.,V{Bۻ4"ag3Nt:aU% :"BaĖuqwǺfx( FuQ)0.#t0}``  ~[O`l`[uU$-Dz_єJU ,rr*l~OGW.zL,k#eώð 7AvX>LIh~}DW}~Hu AGjVcUwTʂsʹ2BO{X3\-󦮉b1`O[T8P7wwFC'X|R,Q: %u;9o`FyCEnu 9ӿÉs7Bi2*TKqƯ #W=|TW(6>3H5gI7 {Fnrno3 k4̔(Ho>[ A]nBJ9b$LY ́:9G~UoPCvN7!kUXD̀I!H=П.Tq|!&Jhp`jsסvW)i::GF|pDTLˮ/'K0fW2gwףhAL r 7t&!hvqISKRa.4|gٲ3`(܆<`9tA>7Pڦ oAj1*t3"4 2Ùw`owIsAVaX-aIPt報P[jVDY1J8k܎ЦδKɝI:(Ƅ *N31MI8T59bAS|%/(cMJHAac5}fZc6&9#.WYmGDYC>atʒ!RV)@W}PP>3~ rOet%8xѵʌf xO/m^{,3R=q kf>h@#aTQM,/VY8TNO\rg}OQ{jajfIgN%4FN=tʉDc30)5C4A@ KFbcᒓùiE,ODUSH{]rJJP~3 sE4.c2zwJa4_}sY:l"IE76*O[fmlvVqzhUЪ“-(ј( >]J@C&3y=9S 0l#[lQ`c4]Ec1\*DKҎ{;'VPPS@"3fD|]@z}W2tJ9o`\ep=6=CV},үl)CnA {T^JԧJԮcTſ4K^(g;,]ޅe.OZC~< j$+6s=XLbg]mU#\Jsu;W1BNl<څqco-a֢D]ZΊQxE"O pR_|PH*-ҏ`BSIJUFˏOnYٳ}f;cP劸h\RD9{|J?䮠M;:5q+5Wk1fjcHd+?ں}tɐ5\DgmqMf2Bi4i1.sfkXMk@Tmzɧ`9ޛ O,_((͏\Hޢ/V'X'B{H:p۟@+P>ZRq 6eނiJ}5%h)>\Sl2,ޱq%YԦńn'{CK(K00~Ia8C#.Zҡh=Z|peg=Z,A .|0}y˱% =f~JWpC[dZN[ak= y1[K2#:_(9 GFlP8[΃3hR㮄p.+5}T'$!uߔ`2+_=w(,t5Vb%-x.(.hv;14^/n]FuS|-En,y-J-˘HVBِ E ̿ ܺ\JY;S.PN;qiD5wO2Br`MLĽN(]Q EFM2̼a-*fdI\أ#s?+ wC͓kHPnIasX5]dVZr9 U5tiv(% 3\ςU&uqڶ20MJAMwI[`\\XnbGD̑k1 fc_s[J)L=G]iu xi& 9U!g'Fi%H!U#QOX0tӔje=RN~ubo}wM#˰*oIjnX3' \P_Q/AuAF|N+J lE΂Q=Zst)[:꠰Ely 3J]{F IoD-l+7jpPƚ-] 6FeÊb*O E) I҃FH@[FFau1~^CbHs̎P@(W[~קri+ YToWJ?8/iװD-5Cfn[WNp3/Pr0c#o]usXԏM4>/fDv:EC j/ };0 !-6,b\UoOMj_ujf^9[=YFBYLp(GS~6׊Q^y W otՁy,)0X3&λf'3?7-H' gb^ZGފ&HT8~ Sy5g\.^+~LA5&HRK'I\ᴟϵ[a6j @bQ! Uy7n.zX^j4: ?55^/LIxVEa;T k~wåa9WIJ䊎Tq:s6oh $ ;e՘B? |hI}ti(+7zHr616y/[Nͦ;|bNO`3+HsIRlF#|qZ|Xt!RC0PmoVT]!rBʙK(uz).I+R 0ŗͣDb٦ηM# R|W8E]p~&{fya}&h(O=) >k0 ZBۺq?ϔ vxklDl6ީ]5P{1eIG|eΥ^5>|^7h<<\?Exck oVS90/BàՋgXAthփ>ǮN^ܤտdZGpc/[-3&WE,4ϥ![rH0~\=uLc'̔ݱ> 8vP+m|W}e_bU7욕;D84Hy\j} d@ɜ]rT "94i.QyKFQ{qӗ#*CqmFƂ(_;;y4#g gRV:EfLBWE] 㨥yI Ws>a1661Pڳ݌96"( nuOD sIӤºigFtQiٽæ"Měeŷ8Wjg122vXoc,O/7%{9BQN u,ԨP6%<ɗ #jz:RY_褞G!9}dMGFL2*ckSCMgjíٸQ_.[lEaq-YL3W+Sfc}wjN.Dᢪ~|nB;f[\ Q3%4[Y( ̥B7 ̊湗WFȟ݅L[?\2T2d$VQ }0N)l<=R'BC'>}TD% 5lY@^ɋoI>>!Qu@7ܷv% |0 ՆbSza>j ±qWBg\ Kdل6e/-u3 Ey1M-Se QDleRhUvt~CCЮhJJk|P/Z9K (7>^K;e8 "{`t3XX6`vv^9Rÿy/[Đ8-R?=FpYw0`sX/(gyH]iQ%4no0Q9#9oB'iA+O *r@*.\O6X_;ּe)5͌."N{b2[mS-*nex5+$z0Bnc!V+CM;<&VB!1͋b:0~0 xn3Rbkqn ̒YQTHO~{4^ F;2M`0"9g?_6/+5͎Y/B3%/&jO9_̚ht'`)$Zohbx3,rҐjHwMϛ&ʡ$S2y(10`BTӼ_F:VޚjϮT8F#B`\A5x#JW@"@@Cd; do:~G8l@QcznTPT>GC.gcK%-QocN&W6C[kY+\ KH^0wA#o^ BGmϏ,hͽOI[6=ܑ1 +MX->),59 - a k.kiwg NRN6-#[ۃ͘w_(gXSo-`2F{Q'x~HE5* n0z.ZECiRbt|% QȒGUyCl3(:?ʪݭӳ|Pڼ8Z;xO|1&2?z0 ]#~{`^ ~͊/{)Pև,hqWE~Xw|rӁ0.yֱ&-UIϋS䛶Sa!qZHЌ/uP!,ܒ?@ ި$!QZK*h%wM9(d-HiT)#go TJ]`A/`ܮB5P~>>.=maC)ø,-&H" eԭ`T:,}Jgl:?IDlqbkմ=gt%'?g:`d5s,dz.rmڱT=UuȬ*"SiTQz@@iqN5*_vJ~35R]jyv=9kGrsieLdxqZi;aB'c\!i+ %x8@;HݒC\P:ӐT|ڪm2xRyZ'Lc17>H:%1lȐ{"dYAK>Vhş[i3q+AVēE4B2V]Ǖ-nrYD6mbC0.1hhq*WSV<;E",)A[yr#h;*p$Xn\ >@OYYﯮRdSh^,&er! aW䎅f=KGɈY{")f.1)B偳y]:jX(7)rͅLlM6]/]Ũ3Zi!o;\Ln>(sR*6fcκSWQmGɢy/>z:4fhIJ9džфs\}9y6hG$i*4}ͭW{pIQ-Fǝ#Z߮O R[|lR a\xi*f7ѼY. 7Z>J39QXؖmM|Ƅ>d~QTLJJ )ݷ?ͲSKw! 9l$ *_TQ!4qUJ!YbӚ'a5&DqeU _KIs4OCP~`JOs3f iZa=6'9R<..p ZRI򛠺jMabH+yr:&oni9t#FrM嵪E wIv1@cD^&o^xJl~CB• s pSqzIv +̠A8MuKJ.ˊ~lg^ gԁ c:'qJߩ-O{%ȄxIy-2;t#0u.ؐV´8Gt,#MlK2sbgfl”]+B:VF׵ [.VIeБzo;T,Лtm%tCtOYE);i",㑜epD8?2]ŭMX(h\2>p^R2?[fT;f?sVm7!sr2aӝÿ#zT zqf4Șu%[r 7(C'SGEۗ}D^v/a1gXk Y+щgha=ZS ^4.t)J߈ާ^_H'W6z5mAyQ%fA!CGbNG5tFwW =Ldha֥kW|9.'$ruC\) hi\)n) MJ$Vlz?B&rJ @B>ԺW%[rlYbJ?̦ Hca\ ):tNuZq?(*rI4Dc֍BJIOUovM_SLՈbZ9E.ϧ.tYJys(hnm{Gu,G^XkP*۹@YD9<4"ܦ8|I nJۡ+9eγqqૌ #噌5)m \&H:~v~m 8Mn0KN\v 9?&\+>p JCXDŪ(B["XͶ(tdXkk=MrgKQk+=P+.z.[]$p` Wɶ?o5Ň=2yh޿I Z ͣLvVAcf6|q1*ZJ#2TOŊ]!fIfq&"ę\:؞ߖƩ15&@<"å5Trl;e3}1LCԖ('j)-=*B4ح Q@^@&vں&fLMU@ȍwSKQQQPzUET/E>o&mFA e썢jZy\< X&ofLd }2΂S?*?Ekzq,㫁@|o:zo lT64;wӁ/Fv/5RwkTzޏ* nO_>o W֖D2^6#5 @V%vL6CCN)>nnPf75O]6(%`^Pt13t&MD_cVbǻDz `i^u9DHFʎ_-L,BCq{QF=`6H).b3ppPTK)c6.o`!/ &? g5٣MVp/^3q*6BU7ìCZ!& ckYb^DTGysjLW(\*uF)Nw}Qlk}J:%f# -1sy\˩+-BkI]#4D~^9V8c%qvq˨U/ѼrqD}ٮOxp9I!$Ա"!yA9%煤R)3s췅<{/~ #mHnCBgEAgiBˁy~R*:N$ ;{UMB@,˼Q2C e (ḟݔ.W sTGE1%w.+ wSSa+Vo}R KLTT}"3;̶MGPCK܁_<dto aLC hA3<Se)*dѐEGŞaHsd fGwV@2)P9>yLAl7}QCnGJ'+!D`ټ`{g4m ЬmǼsNܤ F,'9aG{39:a"JU,>Y"i;ّ1E^'K][n\竴 :9tkqL6R.=pI~Z sqDޭcND~A蝱*y/gꊉy [j!Eg;*e y ʎ%Qt*+֪n߁]7_/9JBu ' K6Ixl#W.pV/ᆏ-'6(8<볕;a#=MzɪO?/:±f!.NW˔( hܜ#YDÕ 3aIt;b biשy4r2g*^AzqW6EhN]v[̠Yf]AljM2g UKeTt)v{xӤJa&*zH*tcEXۇqfTXIM)pDR>EIϡ%tn1g9_%!G.wW S,DanAA80*Zq^> :*SV5) x@O vْ:0~2G9h\ P ;iC/@to,ĐZk[D yv1SN@,!*H-GK?v"8.Od~i[8qRuvT^l}8C8Lʵ "Lv@-iS̊JvCk,qP&s(=8˦ ھ313mՒ7zWdRzGޘ?!忂oWlLI nyG%u|;2hgn-ŭݨRG 790 F"8oQyT_NňCհ r-<ё`= u<:H~Ѽd?BnLs=.?:'UgtκC厊җ"W@`cB-8f z-~%ͼ&[&BR4o$]Ư?kETHN ml'KX;;嬷GTV*bgd l?ykR]زϜ\0D:.$bZ 6 ̺KJbե3?cCX1t]Z1w K5!4ȆqHQ質۷iLj5!ŏ4#"ᬈ( Ms@Q\ +Wd\ȁ I. PDG\Sb>2r k~b|fEnv-lcxhDM>2-ԭHZ35r48`3/NO on[kJdؘlѰ-~P=FskH{bCo(m د&RS-CԶ ƾ? Nt}5ۥwX ?d?k"ĥ?/w$l l?]VGPD /ia Z]lM 2!kʂ{[p8f&xxP%0suZ(3 "T}J?`jA s_޿'ZdB˔:&K Ri\drUΦ{`KW@sUj6+P^=nUvط2LQjt*NS>GD Ev*A/]^53?D" F&/*EKoy7+)VDZ/e`{:Ԟ0"0yRlO*x?UL S M&Ɲ~ch\Cj&dLaCT]o3{p',zާ7K'i!Viq& @X@H Ã_CWPfc8_ [o})20R=o&/1c";BaZRD+{fYaƎҜ (|ա]Thq]rP762k}Ϣ+l0\4'hm,KsZ9wZGk%Nt(S хQMVz _ƟKw ۺu($I&ھAb]kt0xqwn*R,{QcdÕP,#-: <-Δ#tqy ްUEl(./#br}|W1iZ8þN쿯2h( ƻ.f2h+inm/bȆ6zYGR3EnvCaU$a+nYlDWlu:OBY]*N:۴@K*0~|`oQa%r6]CH"/m,u ڱOǟBs#{ON2؀b&bD&;tmiM =DpBJdP|{do zajZ1M8>E%1hDU XJJ<g{uΈ8U]! v3*䣇@cܾK y a5ohîB*2BQCbv;_;}dc[ ֓MjDaΩv$ɻ[2)Inޫe=*b`ٝF[5Et3RZЄ۩pW7Ƚg3k!SKJ= 5!w!RbVyq7mGJYmL4"D: zx"3?s 44…~/˘|@3yZMQh2J6M W@d1l`)˰ҵu\,Hc{yJ~9,`Ɓ2z7(qOg8J.@(w4#|7knb7׆4eRͥ,>OGn0׳\z 'lRuzoa82Klq1`wF1DL4'sIOɂN=R.}.qrY+#}")ܻkݼK9:*ܢQOlCNvjiNvħ{ݝG=H]*"!] wiO)(7?Dhc~)Wo&Z\j"^qT6+Kă ΦpD/ɠ`Aw70]'K<>2a-؂n c H "_ߏ-imuP-9 euxxQ4ǽe,M]-FMy6Uogzx,& vOEodO,Z+je۵+:5g_>=ڮsϫ&0'P+fxOS^o[{9gJ|%\ ~ iJEY]?8l\uf=#_F1褖CηjJwL'Je,h}#%ޕ:,WϾ&OIJ"D^,м0r xaY.w7=!i/0ZAkrE[TӋ^O8c1k<ʘ| ^>g Y%{8o+qa:<K%$|iF-brybjkoCPNᦞ:DžOk w vB;,3 xc uvhOv@oĚ(ݰF^ZKT>8;5#+:XQ6*goG;2t=zOa!\lmk2%k(u#`\U;m/[_ y肼9S%`,cC_ y ZccH]NN@9Q4}YUZٱ H9sE8BH -頴U"OJ+p_ŪrQzTxTWK+$l]u%{F8x3uI/kˈ.R]eJc*]J( :o384}DLIfʕ#t[ͤ~h,BS>x;zOi"P4ߌ i2d8+ |= LX$B[&Oz=fEGeJQdTuN1,av/z_B+&r9.]W65#` N;V4fj3'ѱŶS$a[aMa9-2iRD.z@rc|G}zn͉|p|qߵm3x<7M@c-~ҖfGg&dcJ?-w*t ~^ C 3!4=z,9&CQ{7dQb?z9zG!~I/+f( koaU<\7~aKP@{ )%u4<@]PHA?gj* 38hI56w|%2)VmSҬ׆N`ϔL=O؞_E5q91ME6WT |0 o>.Gͣ#fnT ZdwW_JW?졭q8rCWg?ꀒ%X6_SpiB;L|6@n oaj,KP?k`43s+ %MֻK)utÔN%FDc's={QzGy+)H1 ԭF𜼜LwI1_d{&w /?!5cr;^&r`'\ubಪ@_|U0ݣg˖(g0D8:G̓#\ 0/WHz.V^tڄPtD&z:.0K0IȮu@- eе2>*pO`r +(f RmPGfl*E*NDTF+AV&fcpTD@R=~C_=>y~zb&TQҲ鮰xu>Ÿ!ձj£2CV1> !t\j!f\s?Z$yn~/n ڐhyy{=hIiFV?{Ҩ:PPsxON=jK7 EgH 45k`;&GC+aٴV⧏`r !hƵ=&OM`?GCExIX&//Uҗኟ%K]M`0,Ԕz䩈2)2%^iP+tcЀ:Es :Z*Ix)*EqnZ{-gyýD9Kf 0 ~D 2lh~*z"uTu@gRW߱$ pNzݘN5R?@~_ki|B/|hģ|c%ɶ(IBv1U+ch6k$ MC(iH'ofFx4s)J0=iSd$cצ}` ֯zbdnݜKGPFג@hrK.E;x[ׁcR3xu0%XlĩVS9M̷m TeؚݭqqA2>GE;Cjr 7Zq`6p,l{Bn[{mgte|]s*Fxsm; L!k G/ߵ{X=Aj(ˤ 2^:_?`-@Q1!g@r y۩>-S!1AɏbZ'ӱ޽M{+ymV>etȖA'}d##|YŅnEXbe7U6Tڶwv!9*!7TN0@ZtRh*JV_`.E]"5,;~۲ef|v6F!OOC[Bw+(iiC(9fE oc_nSnd! :siXͶ>MpݨSz2{)9 ]iMyIʮ6-/KjBE(G)昞Ņa3y{L<&sY>Ńt F;wUVD%Ǧwߏ$fKzHQ8jDkYanHnJܓCiu"x]T|E( fQ*rB'=JQjģt oA \b%*pD)u#zfybOy$|8FRyp 4&=f" ^z8Zg# )1eoY%\4Z`'937 P_ R. #xG v^T=hP:Y YkbHnOcXdeIu,9y{Z4w!uG(^ L'Η\oaʺ x멮)7ub wP(_چ=}JjN Ҵ^)5ys*VkW->7^& ԝ.`Vl7;3q3 P>fy ?jZؾK}$LUzƛ?aSb镣m 1}kr>q>+(Pkrr\IxU뵊~vC.H^#'e+=V[&0_Rw+l' 8Ǚ)/_F턱^q Hvt(PT$l0u'8fI^LݴSe i,RxJybX,Ahd߿d#V,s9[1ÕP\Dys2@ 260Av0 gM[ ɧ2b' L[ ȘRn[q%,rRV:KFPTfE9pĐ;"o3s +#> ta<ҮTYy6ďibs70 L\eFK`PJWZܔ-ԉZvR%rP4(@,EHW!Ii^'D & e`Xszo櫶!㺇f#p[MaN焘C3k 1Wpa/)A(KfOs-,(WGì4 ]Nz2]x7e^>gG#,y<%g>5CYf9,:ZGB{䉑4e@Yow|m[!#5R(DUreK:wHV68[baט Em$X5j8H;Qgɍbh7dn\Qy)"R[*PF8^G02PC )QR{Yx{&j93= -P|hlAR~`U7 %/"כOْ[SR PEb-U>5~T{kȈV;\S=Nk $tp?Փ哥I#ˌs)ؓ3}p>eLY*,l Jcuy@oL@Z`!&9Qޢ/sum`t1ll߹ONwG鍁aB})SPCg{$/OEC_x.wK8lKS3L\ΕHd#9OθK|hnX 12A])K?RߙKnȽ| V,@jE ;Mb`)6-eIn}5c2/XP^;r*B[|pPqGHEq)2RLdix?!`^/QWLƸ/o:w5Y4m'Lj Hf? YZ-meJC޿l𩄻2hJɂ냡bܓ@Z𥯗W  Ι݂sRPOxj}@R̕qRyGj~ȡvErIf0%@P0$nݵLa6G aGRƷ+.VZժbJ"G30.4OA@HEWdX _t ^5* ϜǑ:1JiǦ)(Ѩ3 E}DK%G9`|/GY6< >&X~_ƶ,++BI/Ć!p0KMt^m u1N_/:nmG9WòU8D 9h4 mǺ8.!]Sy1^ ٸZۆ ްs&H30e *{iO{44Z-͉TXo'=sRI7 :;dp &hW .__G:d/#h1Y )Y,ϳg/벀;~D=@ĮYicYTː>8fa-F]z-8;)3c ^W21B/Iwm@5';ۈf4;(W|oφf–mpg6¦荃*a`sG:ڪL&!ϿŽOr~&;>X:].4C?P8+Z:B^;mW(mA̸nw7ATsyr tID٪|:{Y+(`wgngcpuq'fs9LT&[ǪCB*~qʨW0g\ B.piAQg`I-.XiuЕz3W:z 6O)g=ycB,%Cl̺u7L74IІ :$>Dp_,Mr[ c>0bb j5BMmbr0uJQ" J/aͩBexfuq:抡8dVLif^I_=֎m;؋I-r:En`z;WҎ#W[g\U& 5Mk=kɂ Fٗm@\ |V$>LɡV1B,AY-El Rq6̈EdvazENYU*>ZDn1rSffE\ȴ*(\s[e E|{'"|?/X^à[oj֜^, 초s>Ygq^5$aTnhp MYW~il.Lo(Msox;6AٜP-ubq> a! b6@R[/qtcHۨζX.=;LkV2'%!,(3}O{s{Q1"ʝ/ׇ p- !=S*(ƒܲ 2^P‚SCt,1X6-}g!p_D2bԃMr|ʖYf5`ڃ".'QoWt8 ៾?bF2b7(X)z#T h 6|w}ż_q56/"$US0Z߀>Ͽi i鐋e;v=#gD'oz׊.ܝ-+dXM0*1G/7S%=Qv$aj +b> W]tq3>FfL} 9McgSgU uw; yO1QTh2?R7B)նV&˫oݱs ┠WNxL؍]%$X%2>Nؼ7IQoM?O3I>TwWh(^̅3#jπ(^yKv.gr@[vEMٮ3p).? te8W%ZӠXS౫OnԻ$"aoAJB&Xzj׹O"*.ҿM$/X`AK0{UAi<\%w\/ v+JM1ʙf[*$\ ˻`XC3E7TӋ$<+ ;Cv&>g}ˋ1`Jp=&0|.7E%M]w#_?s_̅,a@dB'L?D`mDu1\͑>v ?ŪnΜĘkfn3XFϢe܃.$%_BZWS>ņȳzl#Ui _B;:A~tY7ږg5ޫ^{ _\Z.'*Mi2l6^*S\\k+#q5G>-4l֭97SiBOؤ X#|jSy?p\lZɿSO~mZi)HgH-#*@JjR|>!yE?e>#~ 缉 ]^a!נr*$JHS;V/r pUP]>{=qdmphgO{%. ]ip,)gm=PÝ{ЦpOu#L~vAXkJ|Ϫp[(ֈ0~nYcc[|kECi{w缦>*`?7l4s`MQ2QbSj !<<}oAT[7{+ʧn$%ݵw!7T`<;>6120WB=OMKݟAG@Źv;x~)1or,m:׺!P`؁$uًDQq n|q|D ~)|ԅ1nN_ 9/G09-:6JMkf]t%-  ;4r!,w &3$HjjVC]>s~E;Z)⬃=yS$XM3)Trc ;9"NԘ|qG;U^)2$;˼W ldAzY4rp&?%<@"bj͘^}2j`MSn]9=tfhm#%j.XӁxq6|7Pj'?,D+e@3aҝ%@cϵs'聹a"g {jUc荕GeUa/ፈA~UzZ3[FM;ggq(vX&Vޠj-jkU?Xd(+ WY¶k?/7bz[݂~,[-Yt:MF5m +C9 }[x%Φ=0X{4e晥Ͱḩ'Oe o8|X$4u>\<⠭cus!5Ü]KkuO8) .4jO;5Qr"=:Iltgߤ2gޔ95ѕғ$$ ׈R-Zz 湞ۭhȀwۡns Ӣ;/>/CSVK3pWz8V"kk"S,_%FX t b/@PI>sUxz),\5|;5WǃcE!ՖLPJjȻTm? v_R9 }ѪMwNoA3rJQ"]+]p;yÉMN}D0,C&O)GcWvϝ~nGJ "Q@Sѳ~|ԾVڃSVqz'௛ɆSXvZ1e1-` >i47YjogR(3QI0^i`؄{4Q8,-z@cG_wL0l ̽ry{ |$N5Z0if[;>e}8B7TV{Y|V՘lЉ2ۆA_7Ys'`'^ TٍE m4\143w{AU}HIѲՍe#?k -JGPecYb\r0+~/BK^{2ViU17%Q4$d9A!s g趥9ylINt*q8pjj[ xh pȣ=MZP;o^O9su*O53s~褾6+:g@h1ߨDwS*5S1'VsSu-ۄo_$N(] h jJ>:f 14t,8d-( , 9]A Bg9z͒X[$KlR㯲CP=&J=M 1 [ьQ9БsljN lM=ٿ?nZY*tiDaZܰ0LYr8ܾm`(:+>R}qD3rwۯZØàZoڨ˰G[\Av"JmV;ßxn76Ұʛ۲&аz+@|y-ONqr=Md[?z88U$`)_Wkz[ꍜcw(I77FKrG )sVa%3Yd yZw7tl)}{d mnܩP䀂Zu۹,Y Cq'@*%z 7bYפDz*Dqp*Q:W{ĝF;-SXL̚^v-BCRoHkgz nRjvVJ)k7(g̒yʡi\ :[ ͽ0;0˘ʐBX9GHZ]teڠy[9_Y`^ϓj|m8l6Ka]P_5:2H<ƀԆ?p4pم;o= ړt<u)I [_e&UZcT,֣kd }<]ݵzI,`HЂ[tk<,SN,8De/(CK÷1pNsW1o2h9abxyI"lMu; g CN _$ 2!c=*훀)9xE," :x ܴGͤk`*:a5翥JBddb.X0mv/mbƼcf+zՊK@?YcE^ꁡJs^¨ljdl5%fmL uGuxG/*.w\(˖ʍDtڄ#f|}2~ ڼb~@m>Rq6108NP^ieNJek+8T*m6Zy[xx&XM؝xp&"6 C+nd0O"WgLƣ1ŋW]dy2*ov=PKvi 6GJx4jd"u5fK1*G?c Qr0oY+ +|+ÎͿ^y(3 ++-ues̟*= 1NLʽL lMkШ$T0hAtz)~_նb1>y_C,7Qg]-;h";KTo0!)Mq_:Pi*3|&IVv|r勴zUNoyt9D1<**,kڢߋpAg1PKߏFeiyk19~!8.S r.xD[pQoFnp%y9O؞➊pG(g0+7D%T ;\'c$lvca[; mÜSY`N]A7 ރoL5!Siڰ3YHрRZnYDcK_^6=e`*[P0|-$\ cFIV>kæ)[? ߖs/z2؎rH|LہKtD|{ܽר-B[LidSykf8uL{B!Ùan=eʈ:8 NuL @8yXٶ^,տXo %?N98e)Fy+bxWsLø:ghUEmϼ4a@Y؉."Ai$dD#F A~{|nt!>+˯rďsL=/ͷY4V88?>=Wl? 9̉⩬a*+a%촢AWrTU sƲo: ƝhZ],l8`QsXҗ}FEӬ`x8[2cGMN2he _ꖭM1H\/QXEMxm}SV;Xmt YEE-QA%l|jcW2ɊӹD1oO+ B^GX*H;ɷ[Ѷޅ=V$Q /7 T (3=@dp5.>%N8.TcvY猭~*(.pɉNUV t z/5 HTF[2-SSZ󄻏}T<@^ЊwkD9oƄ490G}eM+rMƥ_Sܾ&Yf(m9Z.yt|&vD66zx^]`GCمZd\;K>EXƓjɹHo(eOb[øU,$\R~xVZRWve!"mmL=yW_77)Ż8rv\?Jߔ )/fOFcGב[,/I.n|Ce;ꌏB UׄS/GTArEb8ѐc(ԣs$[wD)hÛdV4J CDJ6 s @;9zA%#W 0 13?BqU1! !lԓ7?ȑ}eic|$کVІFr.\uv͐!7 ~{k[5%dc3Sl6\pNJ"@|"~ŧQ8/PI rsx`E: =({d 9`+ȗi,b; {g3F}]R=' H~y5C{ŸIy~sr؉M N^vpZ_r+4ƪ8Zҵ;>Y1a5T(Rz\tmO bysA7M#z?8'ek~4',uȽζDjZT/E%ZROy^7A$ /:wG(2ϝ {=ϫ|J>[Pf}JAGJ 9+}>ẗ́d!I&qBv>l2>i??a_*.dSg/V;s.:]d8 of$7cbEEr a^]/ydW],275 %aVz~js 4@zST!xW@oӪG0\/W -%ȜX;k,&g& \(`a3mʮ6󰅍RvzYآ{1JJ 1"Uxܿ1>+b-U69B u1vҧO[BܝkH_'Ie[@m@ռ/{~]1} ~N4{feEQ c q O, ?c$`.dgwzHx1 g B;_\8{TEPyŲa:^|tXMyLl c7x9 V3W(3Rhdu˪4Kgݽ&Qmfِ[Ai}L x7OrDXx E< 9 -m C*Y#V-`[(EQbU۟"\VI\p;Bl8 nʿ{yv?yi5(&* wy:$=ܙHwFpEpʴOni1,-TIh`Ao]NOV<"2TXN*aNc$0A }/ffs|bj9Dc-@r}@]ڮ9a">qV:/a4]8bҠ#$-d,$/Z_83ư#69ºTG%QL<`6<"$ema$ ޷OgAHE/1 W-ܒ.[x90 #\78/"jM|٧B+MBwYĵS=>=h'iF90z}4.TrC!>[Mv J-<Y6o!Q\Ct62-I&N):\K-yf6mu&ٓYGdq(jqQSZcvsTg \y*|@Qt5Oa1euܰ4%R(;>ˌ{qR@4rZ2St1UY:B&w'kH/0RI\:VxW2;CEǤP+G~jyJg(Pӽ_o @5~Lp!\DuT3{+)ҳw?PưϡIIY`DB+n TU]1Z4`i#N:rjbu=ro# OeDNrJ&YU[i Z)z1߷wj6HkXp߆٣ʝCٰoƠ7)Cchi&k }7) ~ ޙcgJ]"pz*"k-XY-s *jԞ((}Z#\xI,mā{/.k(LhveW?L}ZA"PcבkT=6 Y}CH*4D@fLKp6c=9iYe!>4HlتW "Rґ1w|+:[3_dUFx~1iDS(p00gjvZvZJ-JBQR]04'sta;ƓEIXU;{S$)glh dE \q@muU{hW%8j]]c3%`2,lAX#0] <*{UJlC/^OEɰ\b9f !] K|E^KcN ˱tWPbCܶʙl"H֡m+b,GG$|^`3ͫ5U5f2pUƣm{7J␆k.}KP3y6SBJ:]E)%:IzO;[m6:n" RˉnWд2sD. <Zzt1~ 6e'Cˋᬍͼ.꺬WH}yhB G>}n~X}Aqb&$2d*JJePGtϓ7SZM5jG}'9 ~@X_7)jq9rhp\C1sCkHZJ< ᦇ{56w"+/z{XOzoFP`R`rh]Ă`f!v2<.Xy5yH'Zjיܟ ICf&hO|D=\ RSԻFWIT!}ovWz0lA,cL"GV5#?\H^H`|3'(LSte+)Z1"a"©|!#a=/{u   W/cJnT}P>k]^4En T{>ܞr@jLHwHA-n qm*3ժȶX+X #Z\oZ8鋠xW1P?RsLWb%k~BiUbIG7٠V ]#jtX%!)oGe hO*)jd#"F ƻԽsw1tk?ge@5D/bjyUנْz-ThWcEztnYA>8lSv=4oZ֖'ZS\M1(; V%'' r&ͩۜ}AhD(I?5]^rSj֞&F'?TT|`+ӏOD2?<Բ_I%V2pՇl5dbֺ^튗9?}ӗԱeCP>z%Ϸre#{3L([*'XͼқGMuo񧷯k(`O߃){`Y IGBהf%&KFfC!NoŜSp%4`E)deܶ_ŔvxG-iaϰJ`gjm7Q&Ue#r[Xzl!35898i`m଀dfekdnpHJ)eBۇw2}L^5X$Mn<) `&s !eNC<&51}?GazRo3YΗ'k¥a棎ql*Qz <{Ǽ.X Oz`_3[E3gp%*K{V e&ֵg\a6C󄏗`.ED{UjmAֱD$VvqFrʼnݣjrPx32{ Y3T]UlDITDb0{1p^i<!9C YMI?EkyZs-ѭ OhԑĚRPx rpp00go"$,}ygg*r%@Ƣcy^ҡ"\1K}[Wk-rRHwa]Ic*tG벾XY6y=LD/~F"r-"}k7Lt]&8Of}HxRWKE1ɦ|ۤ1eZMmB$48ʛtx5TT6UWu'R ~uΩ=*V6,l;u&'ww֍MZԪ/{X݂ME $A{` 18%gKoA?OP!z-It,hxb5e0~Ƅ0aI5~ *&z &-I:~ѝJ0:=݃Y pW`hiZryF53b>3 -߉35Md5rmtգGB5e[ B\›d u_q\iEã;N?b"W"z" |i+/*lH%[}SVd>8$T'|}yl~x=`JubȦ\C.1zv6"}Dd/nӇuP_{+^'dkxDC}hz*7vh]Z\ n*0} qACL Iu%+9r}HV%bym+vtTV3} ǚ]:xKe1}Jͩ}|h.+s8%͉SS0t.l:`#kMS0nۻVH{IiQғ5uM {Hj$lMzOV!~>{}I2VtozzZ@Hg6w\9MWuŷ^_f !,:R8s`ۀ}2;vó[(oSb9 4KHVI bؾ^X#'ξh1 ''T0f=>%̊4: H"w.ؙ#E}cgG2Y+ؔфܺ}p&RsFm4UMˈi Cw2;Ф}a]bF@XOo>mL6 孛4TTd C x0>S<]: <{ N2&xk*.ꚺDn@>~R7,^>۴$@i"T1$TfhI1K<گqٓ,6~>ݹY4 !#cC$c4dH75U ,@d+ikjV n`BJtت܅ߤE$,nКAMYM례υ:ro :y8$weV^Fxt'aaE%1EGeStqy^M sqA}z Otk;"(!]abا݅op.Y)9ltt'ьq -fr!K+41 o49jGfaeyR,1w m^r>E~-fr3XH>3/'QYlુΙ +ҩ?j){+-$ZޢE5~ y 5F z,1+ <*#^VUX|n )uzo!VCZ>da}OtCV#I5W3 ՙ,=Gk^cO%GAπ|_AiiZ;P@%\T^OQgk G>w ΤpBܸ(!A?t{L l|7UCDrΫCH8(@oLDz\͕mz2R!!3 ؅w>QD 2IYu_ BN'셡64l@I #WdAu38C!(mR? e/PX ̈́vB-J43WlUo}UR\?6RҸ{`] lC@*jsB腘 H uϺ 1;]S>SnѺq5[~<ۋixp}{iT7 3faAJPɓ@pvЩԄEUZ^ꮒ*?].BU ͛=|OS)c ~G r@ȄAuC\(F/R00WಶrZmݞA\6n!Fn 1;4ꛥ<'i^ ACiQ(p%ҟmg囔Y ,mߠ3k؞D& iXO;t7 e"WgT%geĻ{к<￲&zi@KN[IO@հǢYϢ5Dzvqo^,Vs»\il0UFifBe n(~iƀ=P}W&e(xC +R[P8]7$~|)y."S~P/p'FoR*z_z-xI] } n75qD,g3b|`&gÒCם!!ͻ. =ky@J 0bejc١ރm7'v:p 6uufvAS3 LH-i>ٲR'a.-::+s' @ s&K0%9i4K{:@5+NJMjj.wl\6;잭j&r_o\*BNP) ")q'<+l*Ys%,EԒJLqqZw_{Ecs O0Jny1ې6<(H, Ȁd~h7y3~Z vdcp @W Müwˎpc)yDe?V^ ;ՀJn":;ϦOtxYpn {Ku(#фܨݬt Ҧ^oo+3?^&RvN 6Go qKP0Jr@Ù]- !\fHZmoK r%;)("hVMiB>h\i/*tdYE+-bŀ*i%䐯<*|L۱m,2$GEgb3뉛^/9#5pČ񞔸L:h #$veRl#aP~= J!J ԏTnj VDu",~3G4%*NY@3G7_Uk fڌIٿap;"҈] ֫O PUjEkCB͜N}w^%x] wNYGc ;M-h83iO|sAV!7VgL#=Uy]_&LгLX]@uO?:uɛ7"*DFlG./d^wZӻ:>^$8i|Blho ryuڕ1R[s:dϮ͉%t bT/yR[Ͷ(ey򏡹6 [X c '>>so~la™ҵ 77 o="u lkbn7&tRla{^R䉒ϛOt@yV[uxӾcۍ>i t f`ˊ#4I}8']=CHttY*Yˬ# DSb-.P*` oǶ*m;+GmKRz~kI >]Xi6L5aտ:"E qEֵlbPG~!ry=8X!=iA p/ Fa:+{~7I]= ^HڿҲ1ufg DueYr_d-2e 6i&(q<Ua8xt6hZYsM:1RYKZwe}53z*K %Oang'!Qptw5ξ]Ywݔx>դ12uN.k5ޠo_2QCqax}񊻱M`}w^OLTy]$ƥm9 Qu*fnSꑦ8K[P/Hx/Hr*LL}kBx,9^D dFۥtoOCKQxоsh~$gS&KF˹?} FXFA V SXyᑒVlPʹ[(։$URu腹M45p&`]ycevPe+\^1a|6:QX]¥E$-?y$*]=?* 6 Cը_x0N-*xh'ﲊ?$E8m<8=A{SaK]DH#f&+'PZoFtYnTBO l"Tu6ns}bWEdN(T\=$-~G9Õ~u!szoE0 Cy9. TwSI`.B([|$-$L]t.=PGCA^J0eVVdEDB_ź;E`(ʞp X/R u7PTaU Dk1 -ZuL'}:-T_g9|'vF٧X4&6^l8f^&yЫXF9_B*,z HxD0PdS6UC mM;O߉)7?37^=yM(@1DxDvaqԧTϏtTPb]$[|/]5cOd0'جvfi9\VxOQ7j kSm$^4@Mn\3IOR&x/uND\?ZV SPfG3+k* -]H0V%*e(ݓ``ꦼVrD)G㬑p{rtT*_ nֆdi\,qwB'bܗDp3''*n(%(^^>٤Rq7ZET;AL"̮]ejX0Y"7U|.ލ&ERjv&\&bc8g߅*/^e,fdo``ߘ֨;BwX/"-9C*өv5A̓Ѥ e|T+(@\q:2$#q=IU$2daZCUgg{}2=_RpW'4.9nǴ[#gO`2^m@l@ϢEdݹwtNLÄ)ʍwM& K?rj<.In?Xvؔӆ\C^*_ה`W,$~<&eՕAPP"kUu&Uȣ_V-* v:["i\'sHAg?&FV_ "JcۄA8tJn.U~|%{ >s66l0P'dڕ㍑=FxSX|MI<{^;AOp%ЈdUt_1@,C0qXӻW\MXCzOj1Fido:7~xS.NT{(O݀oQ;j/m$W[*az]tLǬИtM!7嗛qI>)*$P*x tUBȤR߈T킗 [;.wZ`6:>0PRÕiK[1*^~wkvOP_"Y{ޠ(c%-!lbɦ4$Ggp o GX>h=R`oE+!叢!^ Y,RqZ Ld, aH볜%!3Gi^ rgX=<9WE;rgöۛO|W[:V\ Wd: Nӣ634WIUme'5$cr}eo{^q7fܥ|ܴ_Ϡ7WU`W,h̯I7 r3b_ۅ; &pw3Wn Eh{G ֕4yZs4Ŗk5># AAp,۴b ;-j]DbQO6^7xWXwg/yh@bಏ G* q fMQ t}\W'b4,ӄڌ6Hw_9LM```Dz5Tr|#`dR-hyxd5H,OI2DGx?tώY f 5AՖރ@fSw1lވkY`x;E+ujrؤ.Pv"PA{3(A8Ȃ[lN|l#M.;ze9+s`a~TUr NJ`-Z`T%\5%P N՝x%a йE$u?9VcdqYh<˦d#^bO[W8\QZ_| (ʽB)ր y'˳nw6ke6#.CkrG(;Tv1kj,w-yNUȀeO%\j;8&45fk~|)42H{U<ߜM#;3E&^D2 CR|,@&C{C_'Ah:݋o4.PRMнx"%QW8C:WzCV^ gx59 Ha>>uC9-|JN_G{ld"0٭ZYtQ`WH""ž,w6UưBt( X09R_ޓYHn49ndtLS24焨Nig1(%$K P\k^CoTBsct߯[J&J!׸_8@FΖ4?1䩃t2|SWRn9r-vOiuOņZCB"a8M]QRZc| w=&XHVvSN vokBITa(޼Ab5I';\Ef s_ d=XCLߗY4ŀc3JmTI':m$D$$ Q'&zR~b/Z ~s+s \zud y~\(TOgZ7+&Եtxh5^nG$ DY {}xBʗ IDjpI@WiȨl-`?3[Qx.ة/MЀ[T-0*y΋k"}'Vy+GsiԄ^ %!i P8ZKDa|Q)ҔiI:ZjDkt ˷iHZ@_օQtI[eOU I.&=hfngL@aø(IJ I{ jhrrEv9:5GqiaѮ.|Q& jt9lr״GVtbg>35ETx<\{ ̋ 3g:ϖhV$ed(@|8d@J&Qݍɵu{T# ЩB`= 7sfFbL,Cٜ(YHiMBeYg~& 7 nA>kۀMΐl"K|V!bMliPDxL 8uôtqY,01t_rVzc|:D\HlN䑟CU;@bnpM[Ee/in4P9u'S7;Fok)f_F-G hb*Ѭ:>5u~!h@5zJ) ud?3q:Xb`Tt^/22γ0bDB'un[.]8MısCL(s1&>k瘂ZTR`(-$4fbįb@AY)0uS.H4O9 CeyaACr,V)e'M\jOm)dFFisĴMNЮ4nx qxOAk >POv!Lv.l/9Yb:`1@/Hч y(ty6͒t@ In //tES?rя o?M=j$rއ75/Ψ-8f]FT,dH-/.C8a8e;&ѱzhσPUٹпzqjHzٜ3Noa1Ig13ss7dBk˞ErDm!2#ZAjZEx2sW-e= ;h&h`l7EVj&J>  ר/?)0QbWg1ɦZo߄iaqzԜ[yn뻌`h褸iQcVU,# !u#)9$<*x^z⟪Fa"@{jiN%\G;8}8o/4GA:tjmqgM )>8v99c*n^ V1i!e_-nF'u]K YO"5"vW0hT(kdy'zx %yEwbn=[%+l< = }PpL'' m/Kȩ>kCxOɷW6'^?c29??\l ](v"6wY@V4MC{siaa FJb*OOAAM`>9tU|궪1+wa{vq୎.{yO@א#*dErꤺo;3*e<1DuM&!vkM8^ywqj܁!eg.Z"x.JBkKi۠̓m םȗ4a3ʱJ76nH>\vbiT|2yK|wSV!e\ eISfW^=߀*vEH(n*\c߹9*%X/E9M5"tzY:ZKmg"Q`= _/w5gJ"m(RK11BB$?)l{n05ֲc(-9|&W1`|UW~;%o__dhBe=%"\ G@(O[p2wzo(+K]q<)e ]h|FG=5,C( >{'*vXʅc5*۳Aթay<~֞޷o8Il2zR,tH`:яdY) $a&;arwbySUDjU!-s뻥WE$FP\Յ]lkSy 3ߓb$"[hkyW6!;VE؟֍e6lx<aP\4`W{ho-Θ_!1֥.K;bTo)/c4%Mw NC%ъg}Aher .cZf:gR[>nZ!H4vr⩛w+$kqc}q-w״º}L5!!(:Bd={K+m@^Gc g|fJa{)_y):HQyIc lZ'a'Η|KMaS+quF$$DrW8u49 )|FG.|J>\^Q;Zx,&gzٝHY`a* "sLJ!p6hDhN1RAse+-h穢";oJ 91G J*2]iy[řڱ{&~D#T?y J|JBYD6w7(BKg2w1'FOXeh~lQj*ޔ鼒qƊ.\qSs!jhSc_Ti}"-8i 3*`cTHO-fs۷ĂE_Fs玆xeѦ|NGeY?7 H=.y,x=wIN'&rz1n ,}Ieji^.: *X}j(7My| >24?۽PywnaT ӦGm%QC5{=zT#Vӱܘ#0x/e (olJ7A=j[P sxtTZ"x^t[JL'kF02[ծQXEQKsA%)"V*>@z]Bz;FKaܨ>D8*RQ8.Vc4"~sSO1a8s0}*.Ǟ2њ\:'px!N ]gbV2撹>V帇R9PDpVpC)D-G<6j[q;ǔ5!aj}+e|; Nr'J&۳(1y}c=Ibף%mehUQϘ{Aյ-έ|CCI-9 s4kiÉ?_@|^#Ƴji{;SfS6eW\m-'qfJg^LЃy$/b ,DtR9Y3v 3UY G`B3?<Ƽ./I'4:yr^9BZ-c|g@l1~@ !6klgI(P/PBF*5kdOԳ뮭epoټ- -}v*DkBRwLsޡe5Z- 8.nNg&I&,R+2 'OEv oJ G''fdsn#}ң syH 6\!hDXs4˟^+,ZD4jV*fa%!/OG^Jx0`SxW{[ך'0x e-+Ζ2y%RFj{|`7s`r A C_f~GE=e@D *dArERO@dJ+/RA :9xcQ@,0q"{8mHM@˗g&k dQ&[L0$#&ov%/A|?}5UALY\ZL7y$S"LA8u5šKňC^:s }jN5`iZ3dq<79:&}LMqU@;%rMJ5QS1j=*;BĕOg gBv2$ #+.BK\SN}ay_ɎG4X#ڇ1)4Os"9V F{U6RG R>yZς~ae1ڿ%rDVA2 -FBCp? 5 9],'Dow֨k7ȥ9hsUxR/f(l+u-^ć?ٞQ1*F|6No=P4zAGoV릤4O\3J bq5 koGѩVFޘzwN6I۲V,j@/- 1NӃs閴;җgL&w^c QހvD$(~忂?ڙĚ +_h5oh*#*=ցer)oNuy.bPOډJu: ͫ3?K"w%ʥ@Sݸ/lTPخyB>]w+7m7MO9o`^գ 6ٷ{w1{`|8 ^0,;[åwYikf=d7i PZ+F7l i0})?tvw&-HIĮҽP~ox.9g:&DKFhX*%ƹJpq>(/Qh b7Dߗҝm,g4m"N[O`n1p>{5`u6tӫhҗU_mIgS Y.b^h:ՠF )++; gQWhEw]h;x=\U@=g[6ĨW7/~ eiJ]aw[>si^cg,fO6 ͽ~M2(s+koYnl(#(EgǢ+?%(2KAQh4 R(H쐖qE,DBa7Ү}C  f2!~e(iۑ?,D`EWvx\}&;=Q|e [H}]Acy]M<HV)m!.[:wgY0V9&Gk`q_LW,@ʽ{K̥LWAc+.B ^-D`!O΃Af9S{2JG(%#Xx@:b"~*u ~,*-%a/NGm~Ѧ^O,*O릎hh@bvB, S›Q3ypWQ(5,;'74 4He<#k?QM :+*Qݬg-jWD-yx?Kh&>JZ\RS)FK[@MKz$w 4ڷv3wohU;> "[s.r(`|@M 3RTag:-aO4 2j cR̿\>K"/q#(;>6pU_%`yeo: GnzFWq'P^B^ =By0^Yq<*70YJ?5&ձILRI\='`0ݠD(8:2=~Uw>Apm:x?@5UL9Yިi% WeG#nin4\(*mI28Bu-&O1:l )I3BGӼA.^_)72'!(p3.䉜9Y9XMJR6'c ' B6ʵ N!O:f6XXr'^dGVqWS-vEo4C$7/[/18/(?)lBsD\ؠe-DT( 7z3ܩ^c‘ A45hE6vCJWsJX1;3-Nm(}CqQfCE-VֻټGM`qeq  :uxS] Å!aBO8> jZ7ѓS:%V5fa4&cF㜁kl( o|wWFta6,Q!8|}|ʉ~=m]{\ vi5VZ?sR5ű5f;A@ Ub0}t%FX.wNVkNpCE9_A'گkce?5}wĎ+'tY !b$g 7ygwpt|$dEh.&KLge =G:LJ)n k.wFl{ZR {\X!EUI^3/sa8bs;nLcPe2PX ZdCPYjWw ;RW.Vapz'N$H@ M=D!HІRzKf~VS,pv8˄Bُ$=LׅnQdSc cMFF\gm;𦾫1$G Uˈ?"f\3zO =5y rT"BﳻAIƯH@-S5#83kLd\UQUhcAD F>"ʂ8XЊ$znBvJkp)FʏİL'dUGc;;]msw_7[\0VϣOQJo,R(´X0xOue4&n\Dbĕ &q<, ;X :tf朐ʘ?IajrR.9Am hT{Ej& Z&5e`|;WE,uCv+} âʞ%&$3[<5foϠelrof|'{B55=D$jx-'N׽V}n$dSأ *d&Q; mH>Ao<,ɝy-D", `Vgi/lS 0CX )@)EcR妫T!ѥC߻tR*R {ޜ.Oְ:L k[:H; ז6J:z`w.UGTb="LDrjZ;[+đ}}SVW->e. pH j&H|h -5\SnO|I %Ey6+v}sJD3w1c`h`CsbspFD@tv(HVڃBꏲs'.B޶{p5x(ˍldT=NOtI|-JJf ;Yqih?X{w&r%.&|jrm'`m9*9F5O-OC50Nvc{ERk֑1 p+_>+p_b^o+^-0%G#Lo'H\*r⣬?)Has3 d8k5Qϻ F)h߸; u q! }yXJu/cXXOqs!W~1xܽV^<2MZ4q1)+g_a^QAB,)~ad5[??:Nޭ>ܞt-K~w{.Tw +vA՜etHuCJU['oV[ԡ#c>3Jg!]>];8 {wڼVn_{$Mj@V&1,mTL* ȫJO5]'D坺Nh w+_`\;nrtQ~1|TiauMb-3DϫswsglW҃Ƃ>.A_@0(0;;/%eVO!. ~[e\4Տu>!d.yXY&!l9"vQ۸n{ܦ$w9yL[);>9WPX໸0"d_i&ZޥiϙW6)?{v\tFW=O< *Ѽt#Twv^1[`A\:FkԆηڷq4d6 h!||7_R57HMx.0ɮ(k)(ЍHt2R^qqYJ+ 3dH nDd]xttjQ`/+\,05Pk& B{JN9^PP{sծ{ُ1|IViÞRŚN(Wx}± )+q^ NLaBx!q3A {xTЋE"737 u_pv3M>NL-(1Cܛ,* .GWm8&9ܸ Nh0$oͪ_`-[kk&pEF)tk8BU@Q wK7ƙI0v+(ZakAXc eEpR y=z mE/tH'{08yb%HOnyL(D;HJ;\&,dNnmTj)hI>6j!z`^0$\YO彑!`GaZnlRAݧY.0n/z@ub;rU9׭ZAo$mR 8瞪< ~?.ZA_>E,_b Y2|B 4xu-Y[da0li+Qijx`6v:F!i/\!``@S}_CXoJs{W]6*}l%0̞%ęfe=M vWC{tfLWҭދwO=7|ܐl1ʃ{6m9W܉,Day~beh4Kyry} I eqxOCJRe~A%=P WZBinBN)_ט*Ae0xN_KUqhf7'$E #2[CB,@Piӆ:]@ "L]I7XŝW<<=? v`,䤠X@J[۠_Oe 1נ3hLQ'LԘH @5lse%Qݛrݚ\Md<Ga`7(ęeȏ[B&{/7B՘7rbSԊxړ݊F- L L ;]&DxVJۼfuedR˵RO:ω3a!ǎKdfa%x`qq[ɔT'>V7 FIiIZ̼ry^fg{o/G@A{iXګ~drѶ.>Fb.3U${z~!4DǒK:" ҿksWXK8=nX\݉%.L֑VBk[Yܼlktmt X7H'%mq6>NKv".ZZp@A(-oCL/`JM 1N@b;#Y^[^D'z&|d)Cڎ(ʎ"| / wpN^ӣq5CÁ:jH_4'AoNÀO;gD$3qBc3@XA 0i<@F]@&&I}͵!>dzh",Zji6]&46ЂVcQa<%`z<)Tqn6mt:/+;\Ob섪,Y~=~H#'/ޠ|.G՚ruſx|JHuZpv`|M)V|y7R3&r/e[!q >y`Xǡ%:'A+K, 38w]̊M%\UIHa N9H{~cJX{2Yqu{}l'-%oXv ۨ%ڣNSy ;#K8.ڳor@x' ZbG7j8@IyHrT`?~UZ@[eOxYx+m2/= "2}#歌p9͞]π?vxzYC/ax)CgHެ DY~,Su+1_j#9V@, CFo)+JbEbBH|u0nx e]ͪ%TRqD i~29KUG qK_i`3{+a]ϡC5k{HA*Z o VNz0ش h`a莶ti]0LMS_*I"YKߓ8]0ˋh$ =~/-(FWH } 4m`Ь_y+\b_s ܔW-E5S.u^T;ED+[nU'ad_C/p3sh/LL/,a,僚Knzb:(b[XdꟚ DZbfDHaϯPB:pʨW(2kgKVsĿ?4Hb,vo?FKv[W>%XdQ}f;V.,z~*ݵ&EϞz[1 JdTC4m@7UTSb \l9L:21Jztp" v? TŒLJ>FPAT3nLܪ:>D1 !RçDX(h_hkcvNo$pnD#LSyĔvgS`q3lrmN7ۆoL (c  ƌT?XuN<]$3S+jU˳-̃<?[4IK{D!)e jfSIN"pV#ʢ(M,W̷̏PG^6Tkhp>ؓ1A`\P*_2C1\7z<֎{)z= aۋiM$?D}lɆʁD~k*aWS$EQ'OdF7_I(pٝ%SjɓUt]n6ьv.7_ZꯛLzbUWHeO2>V($ I>.wC躉}ba_2_77k[v;jC#-8JT"% ֳQ^xu4u,RUpa,2wSC@F([td異AL&$(OJ34a0Cr;Y'XPdS}DxWGlG&I΢F+de=tgpS/d$ o#rz)( k5A| 2+G)ӥ,r7XocN=3EIJ"3wN˼Ib\:ncqxr{Tq{4쒂fY??_H\Lx!0 kHͭ8tH @n򁕜fA [ s{#%P KZR\sNH\)M,Nf&\v$!%QP-,çnM1jzWe0Sb;*RE!xlF{ak苟on I}? =8 bEWfYЉtxs>RW<$N HB VQqYi.`ԴWSr?*eRgXTBX$ -\ɒ8F8nAUU^T{XjN|d,\1y3[ǫ5e/w|l'M.ClP{m怆{Ӵ AW:0?u$=rٖAƗ.B.=F Av/qL~I:dڥ3R[J!s4,lq i Ƈ9XZ`Q{68˾kY_(UQJ,$x~I)AYA \w:"7=RӔH=T5Ǖw%X0`иGC%u_׃bBDʶvz}!VtHE($Nj"}Éζ0j}X%΃. sJ_EΣrH8v}a2?{7Ln. Fܦr:D$҆c_#jG? Z٠Sdy82jr֌t"9[kO֊ XkW(*kע @&g+&>KV8=xw4o? 񨧩 =6Wv~\Fs4CΔaaГR†(GMz@Zx +o@S#ďg2Șe\>Kՙz)u%\ JƺfM|`'3vsS L/s<"&xv9`Mp>pW#5M*fdσ8ޯA% H  ;av;Oc-~'Ÿ|ݞ$r+cG߈̯M;ܰgìk*+YM,'W]}!24(rk ig\ZMcoҶeВ gk.NagtbMi$V3(N$!,ک5X{O޽;|9y0|,\'*ZB^E! Կ (RINfq׌\v-b[ĔV;.dլ͊U#%,#,[Aa X`s XfixMaU90PnyW4DM.Aع:(wb VTD}BS ]d@9͛:Xt\ߓ h~V*'^jfce<&)Esٕu n .%$=8YtE&ݥ aN'{ryc$;90RC+Dzlq?ut+ò!6j)TtWh>ڳy  k3?雠ܕaeg(E<ӓL*MlI.bgC&Q|zDLp]UO<؍UM֯h ˩T< |6.eokp^Dr\PB;Գ77 b$&lA{lR*O=o]J"vv3ۖ@" i$t~YIY/*٥ߍԅwo<|Qzut&d?LP>3%G,S}*pDmosv9C8B%L v9Z F?Pai\*-6*; Ugi9cz:c֕S&/*MޔyЕ3PYUI_n8ohΟ |1bd唂MaO ~͐ EXB?jAMya#jpOAEnл'@e^E)յÃ| ʵUkp 8q{`|̳*Q4$)uԍrEzE5.&Rfz9Z -W L=x@C{> EY^b]fx{ve@MSNk V@U̼hY4s0ZMJ/7 e=i7_iB"ƙ6P$']пH=qp2^=,a!+94 0Z(fi9\Թ`_.b vOKBA.8;ukaJԤa,i4$BKj9hl}":zu&=41qGŤ8FMʩ*w=MA px؛2]OGs#)*>*BśCGPFx|Av>.J/.gQy5ʚU3Hgg@&yV\KCeTg C8{fmw2 9t\#m%k.KwcMacu&BزGui&i4=yck*w "5I;Ki/8nj]T2g0·e}[GW[G}cxvpʽ7H<_됈K~D#1|8\Q+@? ܅f1$yT.C#-~,,=4?M?Fa}7dV kks|h+~ E{"~UE+  58;A_,D XQlcM!L'T爟 mt?? O- @pt4J59GC'}ePf0VUdDxRv#)h ىf'kUx #*]Mb1T@G>}fQKC7Ђo̎ Rzx*QT0|q Fw,%0ґeLa6Y+Whё'!NP(r uK1H.Z`EBf !Q8 ˜+ x Zr9#  \<5'( % % LMA_T*C /' y&H p (̼-+9e.$TU yb)B9 xt}AQ_wJ o@EEq?g:W b4OEj?y6 B`#txC]:?T'^Q Hٗ>zI +AKӦy9KyܯJk$.k| /~ h?o: )+Q嵠MH3X 2[n#JƬ3j]\6 _uZ" ,ћNp6 ?w; 6a+}沂,RA06t,c|V⨐es~Z^1ĽAT1b'Z79& M4ŞxփQMf[ z*bR|e2/cye< *OU$BMۯ"SmnG/|n6lo`zz{ ivO^7w/Γ]yS`=.~-1).z{Dw5cDdW-8g g_6gE// 򠔅@͛N䂟q `NWY' ^+MwO=gZQ=4gpQ)o{x35e90I'9 !mj"gα>{Nz u_' M%\wǘKPO d\W JV=:o$$NèhIsj4 p;K 8jU9dq:tjϿ td0/ylN.uC>]?"މab-dca4Q+wG__i@ak. `2sA2@rݸ_BRvEAسUӏƱ\#*~!Ժn‡- ?ٔ^jJ%px! 1Gq+mO(IZDi Uכz,Trg`r\5G7HYA=ڣV(H* Yǜ bLV tG+o(ymI,i!T&.Lf-`^v؇evӳDI9Ϻ N)D10^Z>coSP(|.CלAԭo`,$H`QzEb\#3Ύ00Bi ٣ P,Pr/ nҀ/"T2Ǘ0>9>)4:O甕(TLQDK Fot`f}!S }%PVz>oVYrH@:ђ^^UQ%v@dkn;q@}EE~Y(Ux}{WO ^ƽ ):)1\$Ei{{w} x$"4AV NTh2x@ڐ4Lw2$T?vC7ʁU£hkEp| [gv\%0|Khd . 7xyGBSR1~lv:3Ng!EYsTBhd4K FC[*bru 2v|~lw|(~vpLjjg!q#UV{Zq-]^u& R7'xQg-7 ucʓBB:Q5xcIxO` uR 2K|G0#T"R4Dz13] YQlf\ y 4߼ʛ9`D<mBƅ\N<0BORcq]hV#8(Ii%HL9D 4ҨN8u3#b> ,L%ς=lc~8 SraQ墕E junRTjGB<*Z2̘-w~3T(n)FkϊLcvqSy.%Y 6wq$( Ҍv{M7O* xf&`˪[#*jXeo;EA}κϗK%u՞!Puۦ_DE"Gaƒ3 ] ?9' H χGh 6l5IF_(Z' >¦oIH!eH$oa+<[f}%~s%JIU_9iך쫀 |K!W3iQő`֤U1Sje> J'wḅ8L G/|:~.Kj@(;(fz (y9+7C!WT۩  GJԜ)yM6kErINeam|:[yh 7TkqoJJ vyM|lՑPHćJ\Hl#|2䤾g)F9=H7ajڨ&К+'>WI)ZgJ1:gͭer+ RСv7ry(-ͯ1JS0bpu4 4ҡ~VV_D?g-YVjP.#LGt=ԖEiKBpN67ABfsu]izpN B `3):Rߊ^/2Y*KnA'%!f#]s ݼX8 ;Z6UC$)yrGFcGpZ7*̃{}o|hJ!osl5:rͶ+6&t߄s 4$2cx =G&Jǚ.ƅSjn$Ca>ul\xAGnSe);{yM*yRlǸw*@F΀`və=FnfoG1)^6m{F Iy 48pOz1CbY(, %p@QzuժyZiU*5>\P5!:v1xLSqNb%/0\Y*?@P9 (YL0 M&AV^jvel"w UkBK^vFwl.2@a$!*܇<~iUj -Z{7awDiū [a+Yѝ [Su E= `yg"^G<@ciiՔJ\$ԗpc 2]Wdtb-a3 >-1hfwbs~ v~c!Ws$]7Z Io oj@z/VʜL%8}"[z*YQ9en>s #rBb+j͠,@imKEr mmHn#:kpP.v+:Lztl^ *8?s4X[} 8vYg VdbOQve>w T䤚h x oP28DNqx40B4gAQ)% Oh3uZ$EZ#6 U"p]x;7#wEa/kU_O|ԽlJ}qhc*#ؚ_)5ފMCqb/W|` .PG4@IWPMvj-稲*ȃV]PQ͔kmj17YIaqi%'XI4/[-8W}Lwt65{ oK"]s;un*ytkunyQ+.X\S\Ejum7SdS~ucp椺ņ3\ wzإW9p90n{a3owVn\<· CseܢI[iKM'" w;Zq$ìO 8uPoWkxMy9:A{ϻXuWWQwB:;?z>ڽǯ4YI@a|O ,*=A'?O-FY[y&Cz@>N4.wk!n}ȢDAaʺG6/b0;:MJIEH>( IMbIDvcpTBGʹBv\xGtɛLq?7wq<wq2/`6 @mv0 ޚ}QŻLR䤵^z+~>՝G?.[N]9ւ0!4Ꝍfk?r 侁pU T+cv0`P.&đ+,֨/ _9#H6nX=K%?ÿZAFTTg:`B|&UNy#=ՐfEy`r*WmD$*Zҥ|Χ)V/XTFqja'趦Pl V(I|,yYH+Q?plhc7OtYrs04-ܕU-њucX!!t}J ۜN:UYjt?vTTL3ݡZdM>Y98ź Pҭ'@ .'bs}rG̭)KuY9o{_(yT×o4KuI]hc*RC`c# +&S Ӯ-M~?OQԲhs[7KF5{^wδBv }|fi0RHSQ=YmB>,Ty&g-5x5q"7!\hZfH < @IHG)ɗ E(*EvGQT{叢o= GnvSްQn7].'NTy۞8Kox ?eQVeqc}w )iJo:* wXSH?9#ϹX wAtT륔Ҍ'0hMF;;(Vj q뻩!`:uSoőV*DAbbuX h6i@*"fVy.AڐU fJΉsw͵at)dl-hPw##.%ĨN {N&RRcMIj}U3 (-"y;K9K4Ea=+*zwkYg")ugG@7ل 06.NZa-JK'qYĐC`fd@8ַf"fEf^`ᵄ-0ߥ;^0J6- w̬5.k7]I%{L'$@v3)X 3)cf tNVm$g:}Ӥo^yӿ1ϋ952 #{By4ݱW11$KZ֮? E%ɆBGAhnd>Cebaxә$Fe/DΙo5GHN7%"AL ݝaIrZhpFNo,{ʷL<x笉qӡ_wEypS`:J,O[kYm,MFnlj)(PB{,F X+"T(|%Y4ZK}؋KbVw C&3nv0ʍzwt(4d8D('vi-F bգZUH#{LJ^ߋh ~PבztLNcUJB}"꜓n8_1r OuMWGv~vRIzgaL %:8"k*K ,IA6r@54:)cE+^t^~ɹ]ʚ"R,77u)bMa7f [4S0}HԠ3H4ؼSx_lChFD!RM*xMh ;$CkY{2|<: eN6SrׁK dڪ8)M|O ʯd p`,+3Ҍ#& A&:i/vB^Nx36ɓy?G`àΦaX z{]2qfO&?O6+|s};W8&@7hgwq !ֳh"?cPBn!RlA2M&!>Q`hf։6sġYZWPzF5zevxNaJ3e9nu8'Pe^ZUs]DŽUI$|_M,b*w"֙|c$dbr(3̿9L QloM#X%(~6qdNf\IxLT<.sfe߈jD:YC‘HIPQl}VǏnrr b{TK+b }mպ^I26W>XL]ZYLUfQ 7N2rd/8È> /Py6s܂9$w9(7+f4VFxnmhڷR_߮$W[*$\NM}qȠpѯ$Lj\UGc /⠓:Xq9oxb)QIi:LBN JEnJE `\ԅf ;ߤ:[Cͻ<@JH!:*Z.$#[^閖5n@r~o'i2YS'\jy71$@LљCum^V㛀8oDi T i p!;lCJc0Nݿ|yd̃BKיpӉ'B~[#i"]ݯUkƻ[ kcr^KoG+`\=X52,)QVn=VZAt4#f;INb7L]WRb,rJ}U.D;XEZg Ӧmikcة\//p?:_ڝwP5q.Ne霬ev6V>` G_rVek4JP*1g9Q~x$Rus`oǝ x*4o&a<'pPUOMMa^ME ?ɔݡ丩BSG T`8S5a-l +9*0э% Eb*vB0ag1c灣t;HioGVg}{ۭX%o@8ltH_ܸ+#cH 6W=c @J#CB$:9ZVR:C,p}L$6:~0W]+Dv:gءcU%1k*;T v)&PkAYׅȩ.[$sbUJD T7q%h uW;N~Qڳ}@#>F蟇~lR}=c5 @Qg8٬ C*gs!P_5ƬW=1G1k0%h7pL0T)gF-B8[E["y*iWX 0;cq]m0TqEtv T0RIsŅ*j`4&9F%S᭄ӌ!1yY#&~*o mMd@ SRIfci[ C+?_[JwQ3ɫiHVgaJ XBqfq(gЎ8qY0Ϩz\Fo3/^KKڶہ UtQT4pw,-SJR7NV%77D'@(dB/9I.MS99W ”0A&hDr e j0Ʀ{Du^ًVDH S4V2\_4̷@9 -.6ì u-x/^ڟYŧJ?ٍ;kՆ4 &w0x/hz+Qj7{UɄh tuRt#ǎ'D Խ'c7(Vj;_ڿ9_(0O'$5_%oNa{.],5"XRNw&遼ʂE+΅[Kvq* N5lw{{g_YdԸ7UB-OdN35cTaVH\gn ]%#;tG2M dkh8 f64Cxm#DmVM93Gj֬]C5B3dT=U"aE:"  |]L:NUx!ƙvB;)e.Yoc}3gxM`u4mSZLR MF3v^%8"P⅀7#H>w.~<#].)Ac"N=xg4:c(Ⴭ!f.8D1GECZ KqJkNf)ỢXy|-"`bOen&Byƪ܋{^.Iu#ptb<ҒBe]դjs7æuxT6T2?|s<$9e-VomoD['m{1(LC"TUp#rNdՈ|9# ;Ct20Vg\>%+ -t"QE1rmIqpx=OW0Pm"<,^@Mj|MsBKU71%a8g 0x);2R߈9&olJ1b$.bb \fiR**yj J糫(>b.)>4HZLR @g;;t,L6zLAUUNUguwpCߏEᰉR{p{f]{(+m>׭mEY6^|̫3ZdwOfVڥ#B}A>{:ᏁV92/ yCҒ ;+k=5-Ⱦ}sFQqI$k9lsIr^g]Wfom<$2E0Z/80F13a$S=`5őɵM:.0l̇R!,c5uA15וUF %< ԛL9#k/^# qN@j9 !@%M!w @3O@K4 `GY]D,lR'1KyղLV!Cc>fgށr,;'.[7*ކ|UrQi܇I,%^1B7> s8Cv?+o,HS0=s}{*#ߣl>0hb(q\0zn%ݷP g&On U-aL+<`$/(M.#iGZӘI.))'nQ <,KҵHՐ[]TQ1@dlZ $wt(3ˠi5LY5 he9'2-_Q4Sun1<# XGUZY_Đr))f\tU&),u} DT(cwŽz>jd~Oz]*ѥI&*4p!_2!̠ytMCeU(Z{o^!s48S'ab (:/I]2K[0&C*C^i[؍2)/d^F2#>!:u"Ŧiy^Qܻv" FtFQFT[~V;z1{l4xU 4f{8;w^WJPzY.()Uf(êɫT1:YA eR`aڦOLˮٗ[e֚v;]Lmշe*bͫ|tjJT_r<@AԼp><.Ӳ}p\tn$crP?jPfLl)0f0X_~;6Q@}c o7d/Ⱥ|K[4}O%$JĦD1Gnl ϽMY5 PAe_)P+c[ ,VW.ZئQ01;}TpdH`'$CկʻuF0e`"T*Y7@ˆ<2:@5/GwFU+H#hpMS+[éENN-pjnpjlVE%85s59P-(F5%afi [hV֠${'F4>;JUޯ!c.#2KF I/]>pcw2vswÏJdJeX{,:\Q0ӵQ69n0J}!V;U܆'H5cD,g?85 b,AdRL,q#mo?bpYt59X:Pt;*ٱz;;LAM*9`FD%ȥLLrrLJA&0wduSR]L /%_wAݵ˚nf:uǏ RȦ!_e{VҨ[,-ɭUy1r$]ř̅8MCmooS ]9`aB@kq4z1$M[؂dYer}QHd̠@DY ˶~͇~QTvJz AŰ\2֬0Yoϡ|̛HaNT |ʌYJuhnrFNa<y$)SHq;Tp!_DV 'sg'k'kZbkP))Ni)S;qv ' wk7rmaV@]yD:\*жjBCܴkm[7`=:,&rjGrM^ża#;Xջml6\džd;nLOmx-^+'oxxv3H}1*hn &pyJa5{tI 'rXʽW`Z2ER߾+G_ZELX 6 Y Z(D")'* =A`p)̲rٕ5̙^2sqOii5%⨂GޑER6\l?5 Ze*x̲m:Zt`:z;E9?oFmP~5{Rre[$)|xrL H]=?~{͊WMS,p!!h**JY3!'F}!vG ͵Sɰ0H!qosIH@|G ܷ.TGDpd~r ^ {5{W{6O6{WDrT-͚ACs>lK|$'k}{ qx]]AraH }VȪ/žA,.4YD\TM1l0r(cg/C`+gM#n$ڽSĨMfmYkjUAó7EİYU)[?BdnGgM;*fJR2bB!~VP~=>%Z%5啨bN1ڵ.VE[ WYFkh xD[خDG$9F P1?,%X KW$#"+ )<;ksal_S&J MUB)zfC쇻8j}lb~lS͏/K)Յbd" cu~?fslH2|X](v6I#P,϶q/g{zeUȷ)x:Y"GJe疯_ҩij,lCGc)1ǁ)==DTExs3<E\]]$9!D=ZEC ʋP r^"۩G߸f]hJdYa|  RWfFhh<^ u!C0~'lʓ|-9I$4(3sBEb>He19CFuJ5X<ڨ )r92zC. 0oOIHM&XS${:}!6 84WnArD b$ƭGc훣atϮ򨳋Wdx(a$TR_7*:q)H#V+sRҀ=|]/.+ `Wj s]K]Z VTW#;ŰF4 :KܕXWەp3G7L i0v86:Zb&@!Du; W+^BDܻ(ꟸe6}sN >rO}ѪE-6Mzwp#hWfID?SvaaRHt i)qCsc5,xE,JN ͐ /SV ;z6nPq;:;qM˻̾m_f@(Y?:~|Qsy{vw{հ>Ob f[ـX1O0 ǍG h>v ao^Q֬1Z}SO^r{]yɁ+*9J }x4#R_S/W]|{x繯 -h Loi(Y :uF77e%l d G *W<+,2rkM'Bo~y\pQÓX į.<*6XkhBMw?h́"!BL?@kJ"CuP81Ag| TD߽]N?wSDEqv`k(w_w_EO 6 ʁ:Ϛff=MC1- 'PiauR'}LrpflNmj| Aӳs@vQگo[DOkL9ő8*lޭ I Nᶨ«B91:/Nr+0\JVwi_U*ҟJ[&A*vLr*B."U">5eB X4? QD"2?E&C"rL#/!rg\0 *=*+[t{2 ͿB_SΑi0+[?q(n34SB e5eK :~.  ð 3@Q'\R0. \p\tKϭ۰ *6h):N ZN,Xsz.u /`s1V;4&u>G4 \wWːWe _о-j㒕oԘ?JNLVד4|Ӷ&Ӝ]=t~%?;G,-e?_g;ӣ᳠K_9=n ?|W`_ǿ~e)2ļAR-佩nyo(7%v3As5C.H%4r'"Ѥ |'[Dy__׌7Q} ^ep)rDFT),Jsx݋hv2wOޚY ߙc0 F#r`I.1Ƿt$ɘAR0q]807sbav/S,$όK,~; fR^W<4tl>3  76`Y$7bKTj" ] l n( 61t\kI&0drʱEݥ 'e\).,@V6jelHSbܰCK+ˡVt)%5tFyPq@xe9PQSαvG/#&0*)%q[q5Ukڽdb~NzG1KZǨΦVGoJt6N9Cv>$9L 1lt>)yVF=kr1{G+VL}TV|5>@öYi@e~od ꘬0uW֞2"~n$ஃsR'b(OlC%H (mR00^m.Xr+@ak9A_A{<ǧaΐi'Xr9f]`6(ԇiA@)-Ct`i&VNԃjt[m72kBw/(ҳYU_aS2PGI?=D \?({ 6ZhlVPP9cg,a? 5b`*}AlSH6ݖ3-M %:.v v0ހ 1ceBgDRռhae~ 9Pc.  ^xjEI1YjYP4$/]ߟAbw:o"6;ojUz^r{ӡ+<2=N'ktm}ue%dq~qڃx` `[X3|$ZcNm7U[?ytŬ[`^j " bꉞ;CKVnNv:$ڲǎyycg7#iAM9MG/HFcDG9}n:~ܳF*}xy@|؆0闟LeUIt6P<1Rf4Z#jdjgU JyKZB 9].sy$fyVs UVs+taZV-EO[*ǃڡA &WtA#7To?9'H!# &-~Huؕ%&m94 !^C{MrF6E3Ȣ8E7ዓ1s60wS+p"}ӷ"ie*=*tTVc @DfanDEN@eߋ>"XF &* nǮVj(ާMҷ&s) 17,4[QV@6o`]a+tۣ9՗˜Q֬LK\Z0pR - Xx7[ۄD1 "SɏysAB.. O&x3@"~E3#WT pCFlȲ*3Bj̫D6605!ʮo/I9ď9SvCoȄlrY~EF!x$&o7\j)4ҽ5v˃ɐaU n2cR]]u<W|J['Z/Vhan{R\GEs2^NC(ϻb4r 8ZΨ1MNyV+UL&@a/-"#QB{8W?j=sufO G;7 NUnT܈|>{1 ʭzSDq"ႎ$ Lp=πBqL:57}c0 *Rƾ\604"'b/X;" ,\z,V*7:J8̵B*Tp!\nOǟ9%*P c6rLl3*Jx?}c.=4ef xh[L- bX,/Qm"(FkՙFy @|*T2m4tij ,~<~ڹ ۰:]Lްn9}?dYˆQAؖ_~i^K ѱXUH$V?ZS !@T@)5^IG- *կ> cRhrn5PݣNy^ cC|V=w/EGX!O{Y_{[j]1wby\$Jh( |ӻJ F 戹Y*/c ͌R7ib1= Ȱa3Hf2AA)]5:hУ=,WhŮ,'T޺ޯitsY$l5Њś64 KE:CAB\7Zf]dDfen8CID@節#|q0"Putマ Xd|(X5gpha:I1=–k)is^Wf3H#Yc?3Fs}SZ& <%ȅPዠ+L[dY4d>Mo?&ZVÞ<Ů}Pn?{T՝hֺ♢i.-!vnX^u ^$bvtW!rCHp #]l;SUTF`W@$Sƿ݃U➡aɐE?T(8[,ЮYॻL6L<xג}?| f,F-M 'P3?qS; ℤ;o|-5U+ =/!Hپ]HxN}2+@L w76kuz494|&B$i!D xVZ% fMJWCBf~N܈AO42;KmAn_Ki>Ǜ m~w@wHox '0t.SCX2Lx0sS#dr+)?FrƤj{!7۫VtEV-,lŌx_lOSg\)o(-̂g"h*mEGFj% 1J1+cN2 "#WƐ]c/wuhHS* A3JoQJ :ƪ|UGNC*!11KZX_3sLt t 2!..||P Y@xCO;o9hXHN.LB @:iP P<UpH^ ^,V r'ZA+۪ nb_O, M/scv᪮7cTWoynlos]|t0<&??rz~0~lOy:Wv޾|s"9YO.7~|ǽhNE{sea||nh߬~ya6Nҽ>;v``#oﯿћ޻W~<~ϟO6;/^|SzG[_m~{=y<.;|^M}rϓ?~8;?NUb{gw_&ɏ>^CVwvv^]v~~je绽Wo{WggGڹt2wE|M0?w?=bڋq{r>}µrwgul?v/6$;Wu~ݏ6iw`0W/߯>dO7?<6}t}~p}|]クn +8CՃ3}=|+>>?* 8r a_ݦaZ.egCwUCHCȑ$ίUE)nz[9TA\c>wb.e}̊VXcp]7 rTJv.@74I(Ƀ.KxP$0\b}m H&}2؁@яZ< p;T#qa++]A({GHT ^]tW%8r %a5M|2xu*uj4E`Z#QaMi]Wh"g.Ɵ \"cKuIEgӸф ?I.9X RRkT𐠏]GkA;(B:#CZ dN:Ҿ'wy7qNmY폯 Z9YmygBaR(ݐ ׇ'>ȔP@I  d( !s`@@&_@8" ߆C„m=EZC(A IXH"[z Oȭ.&PDHbW.3^4xF2^u^'~@4' @K"80 nx1}r|keu H(-С+2R `PrdUdө8v>_ A+yĽ :@*R%Awn3F e(qq@sd0ϱe{@a1 O@'B?mFO $Uk!m;>X1ZG!gp?R:pÞIŇdO8[f=Dg,7dYwcC@=u!Jpo5{c.'ї7J#?E2X's k~/m yWuc2V^Sp86 ~\|;s49^ zqz޼Yfw!t6`'k;/w_ƇGEI\g^BqN7w~ظU,9I+$08A KՍտ Tۘg @GX_eBD7?XrtsvF[7"k=j ҌgMv|pb}+ou1 K:Jl)UY+/#AtfaOYܻ ǫɪNS/Һ_",(XяE|zf8h>K{^ZҔ()y/&~[ `i-=좬n i;no$V{3no[F~~nw{zgh%񸯸Iوdgd%[#tnP`d6snv%7Tp !U&OTI+ҹ ;!~ }4ONPtnkA[D3[a$nF!b"'g,sk @WPhg߶1JF #6,STkbHJer MRw$RKR]N @PR%(B8[ #lKo1y21k-`V^(Sa׮C\iu㥅CV f(gA,.|$& 8'ԵZ[As>o Zʡ_Ž'Rf:N5˅VWABnK.8-ٌM+SdWKI4^OW(h4爝F84q\ JYJBhlJ!01ч{qr^\ߗ"RŻ U~up@sD ,w˒m'L}fɯ#X|66lzi}D\Df͕MhWܸ^4oE@Y<>]Ij9卒,|)7^[K6H^`XU^IG"kP,RaVK*K(']\m __#al^e|nm@-Rm0 XJTN)C8jEY9S|:K!d/5ʵV<\pZ-5L%j[mZh 0SCbIś#E\s;wam8خlQݿ,JDj揘&(>$i9dvW5?_ZJcIU`4Dܹ=g8uƫNF@􂨵 kW=PlMN50\=A6 U««%̺+UBoe+ADWάkvwl;D,BIn ҋ fG 5UQqKŁl UZ^d Y џ䞎SksHRixNñeB}p%iK|wi%p z`3|*Ot| ґdEUq:EhfK/-w ;+%Jw㊿VQa~$pLJVi WfteݗWs~>>DɴmK4'C谯j|O^1};:'!;>L#{(<{`xT%v6c6bTqy[:uG\)bs;U](COO׼MbڶcSHxpV=1o ˆ2fcڼ!/m-YfYu>9(NLM8g|Fc( 2],% Ö/fxmnw3-[ & Niq+¡R`~6^>v ^7̠1j뤬u1X@uGsԩt_͉Ws9՜jN|5'6`sFEgBlԘ5phV[]5Y f5k!̗g-Rh`%fxT +S0Y6^OߛQyhK ±^F_hxT&URp]hy_HD%K(gv:4Aԯwe\G15icIeQ1VVgpSr[6 A5.R*rYڐ2-.:N|j” I%EIS`K.j$JI=gpK˸j8I*u{)3! @;\|%K(pL1ISWsPYM}YrLMV`D"5Jw/@L 5PphKM\S.՝dl\pBEͰe-+LF&:#gX7њu(/mtᄌj[5 OJ DM'+ 6G"/\Ǔ'~Y^ ~||c`'4N - g?Éiۇ}fc4HH[JT'q,fu RY%#f \ /+E̬~hɨlT;z6& 㫈\"$1ҡRS82ud<5.Ճզxa;deNqgwO]QS=.lU E(\#X|mpt*\U]",,4,$)ПD=_pP;/#J`&-` 6gsGn#&6vxr:DvȻN: i41~Y6.ss֌4.e.-u ~IǤu l%#@+F-srb:A"ETF"c?BÑ- 3+o LC(Zxó۰Ks+hjA?m< |\٘e9E;bVy'n}"G nD.8>SR\&hBZ,x0!s7ɻTSW:_EW1}Ԣ(,|0OK WTͿ.,~Zh=?fc"Ä )a^|fTT|[A;0yҎ])~j8<`"v<) Poߌnu߃|D hrn\@0zw0I0^`.c 84~o: EH0V['45}G+U%/eM)rKX+rgB\J81E'1)LL"n`u B!ly>Z)`@`ۣ҃Pd[]wnɬ%6!j]Z(#N,*gƻMPl{&?dQI֤ 7b۽4oBEQi%~xCnDY;kx+Â_1A%`8WqQ7Hi,!9*n7"X.erC闷<{d6 m,E"?1-&aG[P/ϐa=nFN^Jyڭ)I#0-N٨giT6\.MU7rtr=~ѿX˿fo6M ۺ[~1 ˇI|Lڊ^1IƬ6Kf`p-&oa01Oܭ" dE|3LreIkٍooBLtq.\͏b.,Kt+@^äx߄ؿ4ldkNO͊i?,1ļ5P.i!xĦ_tӤr*i>VtAK x_"_>G(؆"^砉l@_YATTAW=uIaݰ`fCF^5F)BɅHLp8? 5h-$ C7)&<\/&fc8tQ"8)Ƥ3ٔ3;~vh|>BuiN-Fo4>asŹF?b!*&ك~G+5=.mr0;cR\ZC..L)(L $ș#Z&y"[?)6':͇JjbE&u2IQSa࢛&U 껝wl?Nt$ZҚ)JC(^P^lmo#QQ' tq4Ϲ}+hRp3B.ؔXKBgΗ}v痩/nl%5v伳^R gTWd:+sP*qa_4r8?BS"`+ )Ւ9Xl0UZa~}A0[u-Ӗ",A"S8 ̎b}-kBUU uy[Z5$3oK)̤,hVnMY<Q( n6o_ fטloWS^b 8 ;#%%ZZFu>{5&9{XhJaS +fxzjE/GA6>I?>cwR_Yc""]k8-NNfLHu'FmKj>%В J y(zqҥc3;pMpK2~?!3]t)RZ rGl 樲d+a4Ư0\U.9sZ/-Dpr;O/luV̪ Qͨnkl?x7E$lòeDypvǚO③{ϻž"oo?}$.9A:|YZ9(3;HDZS>,%XU1[FD^9bXlQ+3;qۓt8_WLQz: yBKq!" C))zPef`Nt h8+FR,`Ns3$̼^,vG'ƑHzqņAOvowW^u 'Qʬ][d3&hp%"Ǣ/CA͢4L9heyM U4 lm\D [۸r]IJdscscYRVHfR:./) g^ax9ᛣM:!7 oe6ġhݜnvr~ ւ &Y /cxi X9YELugObtbBkJhb bPs К7tyB Wi 4giC9 Q` +(4T:\ e5Y,Hc[fb]CƘ\ uA#6 Z2"6ADMVĻX<=H۳Vb[ EC ͽ[&W{!B}a3JQfM|oԷAea(TG#U?}mYO)Fux ЯnهTHdw k0u>z~+Z>?+S(LY J8VA'RꕚX? ~Dݧ5dƯj9- {~{POA1OAG@8nmTg+Q .SΞ)y.fi!rFe5oYgsYKyK9ו+;+a ^e'ΕY3n4uSCmif;ޤGiE}%pE2g }Iɸiu6QwUN@U:-ށ2H"sLx_"BtnYgaCy*+[:(nna"AgbҽjFyCDr@#f>~6};t{R<ҰwMvmz"W z~貹d`۴O SO+<6z4EA19!X£AUhG5|~ ΈFؿژ:&0) hUt|LN[1T@$Ad ) %@c*GydHBΩ0D-+'*켬tyAgq㐯1XB/nڴ^ȧ$ -lHZ~_ XRyDxf6!bvvcl`O_qɓngq7\>;b&OU(_)e~:9܉x(4߉!ђ|#aLIPIX`+ywJ`cvwLKmW ň&/؟`ǪZr ?m!L.vE<)Pc^!"X)Z115 ?i6RGĦ2-&"Fe|(l/wCʱVؽwX᥊$̐[##Prl>bzHtwRdB燌K\ {`==`3+`; A^r[/ 6n NWٚy ^sxݶh^Lh5Jn|+k%zgqB+Pj]/}8 Wpg' >& 3_Cvc[,5S^"BUx2VQ0h&:QRyMŭrn g#l9A֟.)ԑ1V_Uuav/4g&B"_NZJIvį(5`qk~ KڂPEfclAk]*lET&bژa YgF԰P0=4cJD Q~ڎeJ\,Mo^Hr;9U%YiJ~R)M=C:/7 "?zŶGG{;ob$&{TO0sE %?=B=B:'u[4G{`Q92t7WwH`g1cI "~}DO؁=_ øTA57ϟ0˦Оm̢P|ˉ'b?VOY^eJS qө'Hֹ`x& S7 k;YUJY#Op!ECJ+$T,gMTeI2@&-QQ9@8[,R;H,$@6v{GzpCz/T}ӧsɩef\Lq"O{'ǧwO{}˻.mO4eg=oǽݣS&ZzwG'Gae7{ k|zx)N|`Rk)Lz';;{{<F@_ַ66=^=;"֨wPx$R<"5|v#w,^! Yhd9p\fѧaLi$^PK?|ƋZ5[J./9k֍pe s4I+´ꁮ{,i0RDʳd8L$UAN{y稶(bYyEK" 'Xn{ZI?:Q?74~lk0;i9-؋d@Ndpj(&s1Dw[D64 JcՁi#PW\GfȻ>I ;ytrG41pZ+\Ȳٗ'zc)K79Ɠ(K֎ܠļxoly}EKY&ǡޛ&IQNx\~I,~Qj#.5iy4k6i-Z\8DdJLM_-e?B\:Aпzh aZfㅫJ%~v`I^7E(Y3J_o v geB!7C5 ~S, ,&weckl"!.!lZāLOT JT[GẏHZ=3t?2IIE D膓$ސ1fȷ%E[$ EtgETˆ۔,ʡDl:ol_sv\mJSrFL0&#S$3'*_2\cDuTCllmOv!0C@b6ƉхaO.0"FA.Ao8Ĺm,xG F.^_A%ڒ4fw Tqfku<a OO+jedw}0r0&IଂUޓK@ s`/̟|._ Gy}tX#:253LG}1.DU G%gp~DW 6W7 W$+UbRV~Gm<vW(dͧ/M~C #WtCgpE}3M J.1E'I!):#7b[Łku zwhtI=-uOd=iܓ 'IS'UISsOF [̣'Ow p R$|iM]u><$ 6Rv% A 3Ď`i2\xmlʈ2تT6Ӵj˶L`&`06,Jr8)mq#x :f==@QS({)3y{5iD:^pW)7씋˂΁_qK]~#LoJǔȕn L'%Cr^ 9 'J[ W}Ko_1THFF o.ޛ=EKl^xxZvR$K3c]# bUj < }#J'(MOM0Y"A2aJ}=r0yP-WR&txh:笣:4F. 4/ƉYݎ3 MZ=#Eqfx9Z^ulrLUׄY5 Y<f3c۷/&>QRL֍e u dM-D[yqj;V1ႭxlXXX p7Mgue5C! fe>nS؟yAj!A Hbkjri;Q+kE }QB;"A5r`ϓ[ Z !z e3l m J~~C2I ٍHwKI;< 3I9=+k(r=UN;:D~qbD-nT/=D7N.a£PXcA1R(\jj졉7$y&;t LDT c7F$Gl[GX@Ͻݟwx`}\1/86ZT` I\o]O53=BZȻfyH}tv]i1l FVuj?p5YUc(V`J|nH_I^+]J4}10:#ҫ#lXB[R+T,C=4񭖨hDc21;%ةG FVRg ҋY?`cgwXK8gBqLe%O4*?&dSC$/~D<2\>, |fqxY]Eܠ(_K*U49;#,_%N,$+cX++s ģC2 GHy&b r?WD۪0K=-Oߥ8K ԒYI,m6#R`7~_SgΖ}C魅8GW0˂f\2:oPtZS;Nm`Ԟ9Z|PA9BNkj1FZpi½ݎ>MͮʣX2]IPmT$ fiKY0¢.T= T#(97}͔<8 5?|]-)r)\KtBkEю%DG>'Ce@Umw0rgN;WT. oHdK8/V `HQ K'$i/|5sՌvP$P9è\[b@`+7=1+_.x1h#Q+OZcһq?` ZU,`NfIT8 dPdr]($loV # 8G!`nPA' v4g̝11p5 l``Oi$QL/FVZHʘEGv켵OV,5'MŶ,m.eL /jR9@ SVUpcWfc^J0"V>)ws e߳I;|O+#zz ÇR3#ӡM[ee)(mU{iY%ão+K. %o^ n3>px٢3j'c|7ȥU 3I@sOd>H ܝC"Ǟ>' A2 SA+Hv;ؐMY 2F$+7qΩ.i#!W< y 9B R$\ &Y'LZɇwqz=W|͊ȄG<?z} HKzv/Hٳ~ Ƀ| u ߉NfIg'`d<*$~}=E&H5~p^G{f-NjVFDgtpo>mQ2 Sŧp?f[%7o#+ȎڭmU!#D~VF;Ol|fRLDe f BqCq.6UwL=kt / no@MD X+v[PxhuD.]'R]۶vu=P\+n0_Hݩ>EǸFփ(gxBykҽ[Z{& WXod0wd B5;Dc$˃#4QK}7tIq+͌v$ޞq|=q6hAZ`5-ﮝ?lz%b~jx*5\KJQS(>>pF߶pa>jaJP\6N\$]O'8'2I.quGbB{Ɂv3]d#|TOyoRj6;l܆c{'ض 7N[<,ep0W!Kҟ1+98LjQI.HeYћǟBHPgv:^wؿA5T~IB;Gja3<$ o% ÒCV~ X}L@-ǔJSG sG;*d1;Q/̹gx8V!!;u928Z׸ơrx$.kagv-G|*~/qmo_6L-7|lJReڪUz./7C*4_.j%1rtZ/D* nw?ôK@Oӳ|YS`QSq n.S%}EUGD-+?tSZx]JT1 ZL &y=c \דYC$V)H:׸:G?Os9ߍ;|cAm HX0fḬdOvqT7~jQ|ŗv)15`\eK kL.KA2u4s Vߦ_7"']:v"(oŧG~|)ņ>~ LW|t#Se wIEڠeTэv ? l@mK7Ą7 Qks icb7"ܖV JVE|/ kb^)K BZg[+ťf\jQ+$}i 99G1!7,5ܡ!^"@2wP$V15Ro&qO`lNg{ϞhTJЂp D[9|qRX?Z(E0"2ǫͭ%(>bڜKp29 ($,`ٞ ApPpZZbRE2ti_zK$gopga=.J0ǭ@ ;KM]s6<6'Bv,K>V`TC_ ?srFwOY4`ra*ʟQlL95%>qUYpm cB8܁m= UJ-huZ֨kPOޜW`|U 7Z8 U &Rj4%<rI2_Y2x5,O xr GW; "SW4G#e<3k)* KhUHO7eebzM͜4y=k⛎nmebU*_2?fԙ4hi"o]~0z8), @Iqrx.O&隆R͡ZLfdSnO{q4PѶ9RViJ'+jp>A :QVD՚~j=:5P)+.a|b<MD{%a|Z=ж5 E-i\2Ӕ;p` MlHY aViRB4XX`\#Eq~H2<(rOt>KStb3GE|%'Ic :CN(DZ]3F$jH|YJHt96bM#L[(д&:i1BtjB m.d]Sz.Y˲Qj|+t2S55\2u\2sn2˰hGnӁ_2>,s'K=GsQk򗗈Yr#y"I^ WU~`Vg* +r%a/Eݝ>SL ){i"VuODw4S2Gq,غu?{k~`՟z8/WU >pt/OW]v9Rl0MM<4,現Ɩޟ\@JJҥnQ.8js;[B5o}IڒݦHyߡRj뽤yYwFf緆zQH;uS]wS-xBm\y :`0]F)׍ ҝw2(=> ZBLző)c`KOQϑ؎ӟV-]=i\oeaSv&6}S/[ݧJ%mb8l6:9tX0Ir91 {W1Jl*^S,vynz#,7YO0&}LhmoH!lLRtKVuy<& +aI?8DT{@׋$/wdp.0"5&]*OBDRgxȎ}oS%Ij+~׻ӭn-^Ls \ ȣXNcО[;]ztABZȱez lʱi =EJYIG=#Y^`dqLP B#_y{(lNnO/b1ΐP !<8{x-JfKV9 +Mxs,J!|=) L/+B+1LT[h3bLn=a~/gV7[U2~x2dhx.% '#bX|n ^:RmCFٱ T W)OBN?DŽyj4W|б"o fV,D9pN.'7;ᓍ: K=40ܗ ;8>V<>Z+ y6$5wه^H֋Wʝ)-GMO8Ֆ0/L+c5\|^ SIzIwsMb57y ĴMi)0^%e||xoyV(ȔY{Asrq7ºUL$\/XUt<\y-tӃ_ï9|(ic fLy((No/6Aht:0Y\M\sj*}ZS/B)ޤ^uAp'/T_dWJp֔0IOȿDA$$_u"v ̝$0/LHd F`rfu[#nbG+\-/93] ' 姪3L DxN<@aq?)@bGT Ymf0̟}Tc&0 0څy TYAv&C2j+#4g]BM6px`W?b.R< 8V6fU /TU=5B֤"luE>3 G%g>o[X5V'سkcdR|L$$>Jm28h*Gpx[59C DWxxt=O<8 ^DvRbk3dcMc#1]gWk|$L {u bq&1-m02ޔs4sNy,u!M ,k֦rzx^IL2 qk{gK)Xfyc- `uC~Ƈf3[VcJ|uKRfzlg!TEWjhqg7E+ACGN5H:uV5 RpO+)hJGM:GoEBPr-[Tr-u:Qy{.rd:ѵi\kY|3u9յ8pxz1&ԒbS;Aե#v-CX$9NWr:d~촒0-OKEG)0Yu& ݟՑ?B$"%P )~/d2kOI{%Ԉo@ :QtmaŗJMkJRhv-? mbjJPzQtErZcbU*q4WmS¢4K`vnz킽YaUu`}~Wx)H\?OTvH0h?D]0Z˝e 5 [l&8үub\0bbU!$%h tvĥJO}':iǸ'YS:EF= % .ZjՔiS0F'z6||s:V~ۂL0uԦnE+nu;o3Дs6mp/& bҢ9csROUê] Y:cb|'3:$YoBL?Hx%% +ih2@5 K"{K!oI.n .XAqh0ދ!Ȩ(iM|"6UY΂12;SS BfOyk1gT:}طm<3'MIЛlrщ>n1.K_:]\',1M#(nI7x_gϹmWz dEvl<8U@rv`@$b-Hq~n$/m>%{z|'wtwȯ= RϕJ?R8 tI5WGS|A'%GZb<=}zizI?*zO]Bkޝ<+Y@jSݸ*p& 3~Y6gFhMKN;Cq[Cy1qUF;aC, 62Tatf1nѸXf>yG98k*Ovg'eF+~{cmn[ňl 0/0+0?Ū׽)$sQ\i-UqU JZK:S(̴+*@|l>8i Vo;FɾĢǓAxʻPyvy)x3O'-ae4`Dvp$8(M6?a%5'jS?-' ԡ.dq4ɛϑaSg*չ("D<0 ML4 ؠCtW_(Z<}Dqc-VW<}n p۰d5{F}Sy4gF FΐN `N3s:lW3&c<1rՁ—ޑYao \Q8ZZ˖iqlg0o4**l{VE8B;w``.DkW]Je9/$:YOk+_߻,䡖\\42 ui~żn\1y:a~)ms"X%LD,=PzELYܵxcL.w7ۯ_hv/"c&NWICOU*7X%;TW+ q햠r yf$rٕCy8=(ɽ__ԷeZ GIeU?M[}i_vp9ek /N}ctWL1MŊ[BL숂auQ BAj90-(J(Ae0VØeOs>8e:F*&d Ub>B\ǝS`eX~w GcD6M ^Bi)(:HV~w(%REY]j.&J!^005VZ܇5HZ0QXf$<+bM i.^%G n 6B39V&8䥵3 GM >C*>(D#W8vtAտfHs)ӿd,DZ۱>/n=$}35B޹lG7ݏСz]~!h\ћqAiCt;gAi׆F& x6},iMndxxz8; Qh(D.m㦤qjFl/jc4gx)آX$ ={Ň;C_Yi+T81CAZ]5?c]LDl)d݋r-M&=q4,t] CKҚv?m*DX' "\vlCj$F)ڔPg֙i#:tXP1%ҖX%Brk/Dq2 )=H7+yɚb+6 <40+*k4c}嚼Pw.wIy .ɱX-,_ɇ?-:\d ݶ4M.HzJ_oCOL8PF-aV԰y^2  NdsGSgN>,# lr1!968NJ_;,ZE}9B#Z=7Yf!yٕ D_ `gbXY߃Vf%R ֐E6VrȂ8D^=\t;fo~ލmqw Ba5[nՎ>9l, WX{ \3)Q(HJ7T"p KʙX w[zS).'3U>ӗ pUTNMe,֞ ћr˙y3O{w밠>b9eFАPnb(x1}mkwǎDDz#4 \1*[-qSxC}}LS!p `77wyםЅSHߧ%,c&]|~0W(r{BLhyOoj`{;z j꼄kOBh/ eiBC&ο&pHHߖ,c1\L~FHFY+x'w< mR멢z˛1cG>Ėʠ&XLk{ o% &3TR,'=mo 7mxnTh#0੾ZFyH Sjc}©1E/$'05_mu3[Sq:+i@ `Z;W-W#\j&fTWT&v\jA _CJ_dT< 71>Uf=\Xm49W>k;HbOT(f3-w=_n"pTeK*ʒNI_k:\UUfS*z}KJ87Ii8z˖@ sxhiKX_xkXK rz3dĴ&+$T)9. Nj1|?װW h^P~\yÊzv9osyj#&|FmՁm/-`,dCkU&62 ϓck02ᵱkWwZ|>S?EQ,QC$ՇY1dkbJTسvOz,K0}RҔ}# M\JՇ\Ѿ P"l#;Bftwʋ2;|o^/_zunвgI󼎮eG.Ot']~Uce٠' ׁHӇ|/xUFd6!*GRZ'QfuB6-̅!O FpOĶ>lVq݄RIj|@ƒ@w6!AF47e [%(\YAꍠz6*Dht[W_.4w-SGv޲Հ. 5T/~ 7jvX/3x1Ų BgH̶s&"tF[dg;S* 9<y~kH+鎗UaBKH`h;8ܓ|_Քn-+L*8VzHIL Ze%2( (8lJ. ( ]/6_}'ZtbE8vn^Bw'2M 04O|z ~~}˺"ߚjvM,b|GHωqP__㶘 vn_b \N kA=Sp3u %PJ$=t!5f-߳TGov``'N)JhU$^9@u_m$-| *医W~g"A!+ʗVph֙%=#p# gUr0q&\/}\zd:+9nr3JsB[ nm{ e> prc0>A3Te7݄͡!_zZ 1v19f4^ϙRj..Ԙ $Y*woӐ'uyx:S ZEh z,{@,ES[ʐ=52u8fVQR[㼳oA3fEtw5q^ym#׺G,gMce#d#N}Qoۇ3ƼOՍ{WNqC%Eo bX@%y4LNp]UKg@&ۏ#nqMMF oe8:B/+-k>|ڥdN-@l_3/7 <ȋ7^=+{kobyUZD?=]H]&Qvy*=|7M4 E(tEu.> "u U;0r-[H?_3pۖ|9Nz`JBNy&KmOb.iusE1ߘ~oܚ>gMPf/Պ/#15;`O ~ҏC{\r"^bTe:BmU]nݬxuls䡻4Aތ}N g'(oB:( z]l-1J>|nѧ)͗R: 7RW3_pX/tFi0T#qoQ=Jq?d^+9.DG6*_4Jd t#F ,Sḅ '%XpAhbb;6T+4Fq!B#-ÞuA$oB{Z144hs;pu]/k91Ey cr #sRUcDޡ#`a[ ׻L,s6} #b<$\`4Rx\&&KᎀlH(\uZix>`}jVMuU'_sLǡ3ɦ< .?b.4FB,NM4u,[-!"yTm1>Afɖ2i]h-2}6NԹ5ˇPb\8̹0#1e]kib{PmTZK"YsX͘?+Rt61e w|ۍ\C%8!b'mWH0׉D#~]\ OqUM5ZR7.p02BT ]p~Ex\A')zx^ v@A1akrV W(#Jdsqh9v.ET6FKtA5 #4\bM['(:ލf_7`ELֹظz Oo;` 43=aSK-tfYWFç@\,s51a(j K'})!X5ZD; fYtOdah18/a`Pwz0Y36N+ͳd.>#OTbv~*Ϟ+ f"fhpS&B=>>mH)6eL,C!$=ТRyEX536`'&ȚN􌬤F&. ;߱tBzPC+Y2C:>iItJ$"TܠQ4pW\Z3@u_ܶ o\QI`*-& ^M9rkV -&mL,jlD8,CzQ 1U5Jev~886vƮ KOKRq V5XY=܂H鎖|%$˖C._ǿw|5\Gl~x;aoh6s촢^;mg7udzՓ8`Ժ:"BR6o& oT '2^wX"Ukf2+La1)LL儅Ib~?I#Щ פmg]T< S,t3#MnL5/}5D< [+GB??e4"b3J|.LWe#(Nᑔ"'XG \N̈́"RC0>6fcYQlލ}s.[']?dGߞ@Y|Pxs,tdxKg)dLBB6Hx"mِeVcN)/kT9Ro`pp2e+or,ϊ0_M7vXUH^F3IEz;>Pu_: CUj'OR1bi* .4J9ƍ 4T1*zn1vbkv'2n2 FY½Eko٩ޜ*.LPCM3h sA4^iUѷ+/IH(CdMdU0 Ź"z0ܪ FQ3܆ lD7By, $k8ցTҚ&*kc2>ܔ|LB_XВLTv $8/̹EpW|걭`\tKpBԴ.t_*ljz!? bET"|"Fv:]QCYoֈ[[J0F=LbCqz-̫tV[cKt=OnpOQ2qE8far {q'\ÈC_QXjJP`GXrVf;91aL.قܗgH\CU&;[n:ҥfn̡Hv'nbcΉW`1=G M=5IK<=<ЗT^]J}%?Ji; *ƉaAb+M9B4.@ LۋV&P鶕ŃaF$GYj;u4v؉9uVaN67@|ak'ܯ-3S\~v7eBvc~Qӣdl%7J-#9IP{f:$p3 K]čM^wVl0M>7# ?g E6 NcPd*2cuME Z 5E'4z-M>/TAn2&mi9.+&}%ڢN{soǦt{wOpU'=~Ť VƄ&cCK޳pBiqb%jDYZXЦ'¡? <g \alE&\AnmeJlg+G Ջpۆ-aӺR'q3t#WZaa˜!~fu~Ÿc%3Qs$-Nn{\IPL@Eˮ5tDbr| C]0L٫BƦ7({6R D%:ui1ite3u!]ou 8'*DL"h|Ӕ>(14o;݂Ю&hwV ̩   ul1퇎1- x]E0,6$^OG՟4fCIQC\7pZB(i,xKIy(&WD^:hTCvhobK&7x9ӓ|9WB!تL @RH2Z:2mU\<7. kĊ#T*@%sY fҴiQo&% j{Ǟ$uj}^]#C'D\JLe'z?VvA6mC)Hmj/1ZlS7I#c['uOҗ&7}]9Obо5}Tfu /qq:Ch ) + O2A[9 c7ҹD=AP 6J>=N\pIՀB/a4NVfRn*+ko_)q5_XbTɹ>\ar̽-olrAg#WxQA\9$DЎzAgt7!Qx}7L)1 |jr z<1, %#^"93)0/a4P8i\* HUX(0GL6PQ"`KopqMљ֗&XDV#.$o2('OO9]rՅtWqyo菱PFN*Jx:CuP,4fd=o,4uhEm202/v!U֞tқN3tk0v%,|5|S|{OE߽3]G {̦3$&=GKF?Dw(7%?CPV _*1)]?sF'dqKw7j0OMt=~eRBբ2ε>迥7Zvɤb4ˉ}w:dgO} ʹOQS&#ԷOBhBX$ =GPKaeò0$P}ȧjg?'<\R1:?*ns)/Wä;hmkݢl<<C@ 1G䵻&2]$@ xnѴI|hRq849ݥU(!Aw1E+!쏸Կ@,ܫ hSBlZlVaiFmn0nr7M|d9jt1ej^nyBy 5Hge>T @!} ׍Zd%Ӕ,?c~2ENg.x=YM\0LCZm)ܚ\ۜi:CuYyBmf;o*-GH pXupS8pk]͵;Xb/\㮳ox\Tr|@Y.G'D /[l@̎#s-bg|))) >_0ng)bprW"fQքrؤZYY\IFкF\"q\qN T$_8XOMfTĢiJ .!1bDcWn4-Tsy S{706ۣqev3"^v %ߪ֔ODzc qD1XGXCWF_- Zrų\=>hAI1;W,[ܢB|V%JȆ(#grO׺lii8&yjN9di3wҟUmZSjV@fH!0P ObP aިaHTW |68BԠM%C^ƻ5`rqgaE{|G>& SDKPt+wLP WE &xd eZd[iq!/^q?N%MV̋D\ǰ̉;zs|o} >N[j!$N<{:RxR5FJ}D\WIL΋/TVYkU𕤖ZW056뛵IhU;6/zӡHveb'a+p*g.:20sٝrkQ:; gƥwr<_t v4V/ga JܑwgbԚ";kpų%#=~WMb#X4D%pgLc-@ 昏r]62T߃!L)CRl( ʪ5ƒ.º[˄ ~ldFf >!)=xy,WHL!9in'u`)x5]2JUt>:P@VAP8v6c/+AFpHE@ZC@Qǁ B'|U{@f0wqɍk Hiq[VDP5}}6 *%pEg󩔳07rV`VIf(9B^./>ݧXז׽®tjQ]??D?>4tRa1(;Zyu$"pRi*դ#(AsMVB^%'wb;bEE@_@+H-͔H#@6_.Qǀ&h)<~ѐ^4p9| kMGL@H?#MЅ)QLj}&qvŽT4 `_^@?Mzth;Y߽z߽Ƨ[]^RUى "LDnP0q/M"Q̿|xdUZMzU,>RUZ΋|poj{]n 5mXZ\Xd6ӺdWW\)-^g젙,^UP?dY]{yK)S K|v2:5PLy/>c>[FMXİ$D["9TAPmJ֘Xu ʍZJm'TLXLncM)5lv*Mb][( DE&:% i~g oޒV\;+FsY?YBD,UsLKZ {s]b'lR*m!2 ԉ@+BvS$6]=/ e:v _6S˵8 UdN,؋K*]a_$W*3.й v@HD{`Qv?*\uP6A6 v`c_>-"b$l_lqV\Czy9t3dbdž ШgE~()?+VϷI|fif>:#Yi]9?ES{#`&CzeSаɈ m}!ѲwI}Pk"T{ ݺy Tq G=Vɒ/ J[u BP<(-|@Wuܔx!+2j+;=X!O@(=)^c' k)&FsNmhtQtڙ=4`GZ+699"6#w𹚠hZNGH>- 5A8׎Z-EsZ8G1"p/W.)&kCbXơ.YR0UtZ,0;ܟc!˛pX N _ѧ .E HNhoC݁+u|f(%Wޙ3|xEsk"ī{9,} 5<]tTLK& ,;͒pId$aڃ59E4)պdWد|0k{57H?Y'p0aͰǥq #pr8kl:r[ fLi,GI}}kb"5pB3 =jZqDF{bDWDeN{d.Q';tTiZV#w#XE5!| QIn$G>fe8r3nUe,߬r 1Nn  ܅!DaC$qPѼʿ^5.FwJkyTN!.c۴Qeg|=3P; P]j9%dYw654W, i QCe&D=\I@ML=tdarMc])Ei4+*Ffʲ|j~èoPNhZ;?{te֘hD)Bv8ܛ3%WD\vW͜4.I]C)Xߣ!z} N\\2u)j)Yn+lÌ iTa[/Y轧PE,#-`f$ebYAsgªlo I#1]J$gxy=NuP0K![OrSh <# М< B7\A.OX~oO=a33`[DZVߐU[/r㶬mmbE|y d.b.hjeA5G_ůOc3܇VgԚnh<`J awʗA+;NvN6{_ &Xs{ i ɖQKsEA"kO~N*h^|YZ*:k9}%aGM jMGE 8|lmF+$eQ7|:^QUȲ J۴(b[]H^ȌRFF]U"L՚lႱ^(wieFVJfڨ$'EG,n6S3Ke#KJzzgd 9wk?bor+P窱IWd&/?Œme|`ֵS P-.>4"F}ʇRU? ]lU5Uw"CW9܅)LRʮ YZ