postfix-3.7.3-150500.3.11.1<>,ehnp9|)O^/>~eC`mp811ת:t5ێjkYv.ͤ8M. hjtt[]_­pM:gWEbH$!S oU-f6kyo- yFd>[l2#@ڇD=n#XovFF\gbZSfP 4P"|/ʜL"Irl>W1ZlYfo:5i]NHl(k~<>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%w#ܮGVcrq FπhGSP)Eri?f5y8e׌yxKqAwPc'%$ hÇƖ($,8p W\JfwTU+ xc=TZM#<EN'G≚t3ޥ1Plyh( @G,y$AKA~ބQ&69߈KɗEs^`whqF:V~(Cm1[Gqs+Vl3P+KPڼmbc F(΅s%In1˺$]DЦ)tFQVY0ֿJ~K~ҷ~։m>3*6:3a&}hX03ŏQ:[jR*ԵA4o+WfD}XU!ͩWr+#U|?uk2,yEt}y) aTxKي]!*ZAH A-Dƣ'nAD:,9Ry,1 rV)LtRfqʆ%fѽ;z)VUYbPy/>S2V2` XXdrjq]@̂Fg+ObX8*;f}0n.[KDG4w$i pkJɀ+t-{a.җDF>9vwr GҺo4VK"i]8Y NE<'͜L,h`>tZKR EH֗}{ uUdw$k:+IxD}uϸW()C~Sx0'|4 /awP T}.f *#`"%>h`гN}IÊ5fIH* ӬL4=b@TJ6a` *IwwwxG?0"ҵ_B"BJ1hUHBKm\ELʛ}} 9Sgth: f2lR;"_ZӪ$Й46m-ձr߀r3} M#mObJ!(,icAH9,3Ssƒg2t/jC'ҪZLW[Lo8[WS  &-dz .ȒA>WU>X.'C@1owl܌!tϣfDN-'bEV"( ՘a;yLKJXVQ}ឨ5"]N\Rb5Ԍ^ҫ5dQ72CEp$H  NCT!WnM\~ʶ:` z9=OR[*첬g=5Hco#Jj:eVWt<n')|!6zE$h hdt}ԶPsc M+&\/p-) ^|]@ ]-8U4ibV}b;,C!h&5C2y?J ;X](s߇ Y.9 ]I9+BA6&FZC[]D/󸸣]pSGCbeeT&|2ñdFz"MU*p;4= ƌVg;>o°GW;B8jS[OLqŠ Fm}ui.Qж)R kRcDrY=5(U{PJ.ёO`1d`,a2pP&0b)uͶE@4Ut.SAEۻi\J(jhc 5S\ѯAh hVVQ v<9t16 (J.vLwT\eL[{vnXb9Tlb8\f^9b}-iZv[*/Jܪn[_,QJ{@0wp{r- }v_BSȆ _|)z(2joIŧ|TLLI R%pTyYB<5g2+(_(;1"8. 4#e ־'Ad ,,&L'͙. %o4n}n Γ!o:kHţ,p%JhLt̥+(,}t^e{9d[VADS߇w/ڰCt?WR pPZˆUE,^-p( 3o`ǁ [CuB;} ݧطOjo9S|x5 }'OQ.+c+?fon*2ƴV"660fǭ[o m"byP hq(ŋj CztL+{Q-gdK95BDjoquVC4νh!y{{!<ᐩʅmMl FD}>(o )^)vqI>qoN#6} ]+ Sm(6)ȑłpa v*4'cUBP*ͬQyZʅlT8ބ>aґ@KBMDݛDvvUO9  DT=6n\Sd<b|aI{ԙy9(k&[d_;#z64ߞ7PR@(jlڮ?KdNQIH0"kEV{N!Sp};`$Z+G<( NOb`;b҄"`[Ӓ ET#Xpu{03g -!@8PV1+q&5"| C9QP0"Ӓ%dY [`.iEg6̇BAt nW3j-^fOکi(ۊ*^3I \ ~ oz1݌&}Eh=Lb}'>\6>_!P&|!*I6R}25B0ex9,xڳÜ=jsm_![Jy mEd$k я}?aw )|L2zR_]k~$5Ȣf;_5WT3Ò"0/S5B$YdvBfy<:{K}+%o?ثdj=!2J!򰓯vt.rWq:&MP_.FIf6BnIO-qGhٯDhr3R\8<\. 'ZAqP)}oLsvw牚AnH gq`e0? *M㉀&âիH-FWx@"?S4ى|geɰ/QJBOXB: l:o`^/]޴J_*bgqWdmhQDG?1HN݇6^/ْYC=,I#/E!R #E˫Լƨڏb \;sXxBET)֭޾} 'NJtZamG0KNٺbú# سo杷IR~;*UDȳx2g-l!Y_Cҍ>$&\=ֆ k@h Ϝ1KEBdhB{b ?!_9h@3${"T%XmڌLVq1uxKLb^ujigU"XG"|ܐ$o0􃀒ʱX'r*`ˌDCRejb re~~;]jKtX>mZ NżB* F=^2camJ+4T6(&"h k @l(q?2T76@8iq ~וd\-)=);"f ~s3βr(c<#ORfhMœX ,Nex{-׽hp*`EϞR㔚"Zr\-4^4(sET >`] -ݎ$LYQ֕B.JA'Ly6P#0q?1!gdx׉/Fҥø3cX!!g$ stϺw$ZBOz#{u ϰ[ mg4BǤ[2#> 5|d<3!̋vC'_U "V8\&"cJʟ^}Qr˙.e&[ANeWnx@wq)}e)KQQq'yTf4aWz '+x"Ơa8Od!*MoI\ &{_!gKRM _e 'b]L H8#$ZѪR%r4|H^BJgN׆IFp"i0muLD0]+ fd[{rCUMzdGɛu8I.!/?@LJd"ݡi2+ӜSՍ 'd BP$f[a;7@qCc6>f4ɮNWPإOԏ#5FBsiU~t3 F.b5CxSAAU 78$GA wZȪmqN+)uJJ|$(3g1?9)H# q-EQ0 _d<ւsZc'WiL~"Aʷ0-ܒ K2z-9V E2tH7?Ivϣ 9.fqQҁ?T=TsG7‰6Q3Hi;7k_jDou8ST,Zì^c[ݝ\H-QL?:{@U麖c\: p]{E\ Fǰf? zd+|isZip9p۸k4:ƚ퍚U*&>ɋx/s TP|yVopjT9Lk[ֶMnde?\.kqHÕ"+˄W"j`xW yS--Vfo9W6h%}^Z|↥s/,bukWjMyYAA$i;5ok4ۂƼ%iC~-JS2$250ؕљޜ%)od]u#o6!^Jѫݐ9&t^$rƻgw|ubŭ ~gPR3.-.h$ r=sRlyKǴLyv 'WB|nc $F˧hj;A)zOeHeTrۆ5 H *T?QAM-Mp@DW8XB4i Oߩ3t0,Ot[؂ēIsC#mRQ%*Vβ6ZP5!P 1ͲEM!03Q ԓ{IǾ^3Vui^{A- P'8{lX[RElfP|"k ?]+ˆqdS#hB6F7HR'uNONOd3-FJ$ jr S#i&]3[Cr(1oZh"i7xG!NFSTW]`[x2Ky5ʆ8h2rЁYGJ 4b }Iyadn7YOtj/]:m2 7BU J\J! `χ{K=♸atĹ0,qJ9 n[Et.t3^5̲j$^Y oTZ)uZ1u")nxEX PHXRB":JɶpC)؇[Z:ۯIy )Ѱ)b>LHG7Ძ&ĀPllDM(YMmf!CE V' &eƓOIp. r 2#^<}-'3f@H~U|yD1 w.n΋+[a<׿ Wpgu$8L*j2NC$QY7[k/rr9hTWe-'EV'a?JFp,)+Ƚk̇Cw[ŊXM1RkGe .cs 9p.Lk-F{+lr% o$߀ZJiK )<˚4A{qk;+6~RFM.-^]p]q)u VOK8&(+<Cv7Wa Ó+쳔%ñ]3mEcNO򎴠fFX&KeYb6ݱep<rK_ϼlC'}<7zSlc.ʑ8ʵwi9iM40K-~{gT UKd\/А"۽/MͲĤmnT)pn>t厶jSFkew *SΩ>o[ l~[% BZʞN v&4zF}TB0@PFq2ƃAf8 tX?YL6A"P)BV*^`Ŵ(Ǡ[gWne _@>H}y x3vC\{017-}ZRsmgYݴ=UsHcfѳt\FJJG,+# z4"Nvאi2mD< RZf‡V -p6Oȹ6;%@UPeu=1`UCXս0gr\w,=5Z}*bE.P{>++9-Q3 R7Rwݓ{s8D'0+eZ}9Cs}q!G$=C~ VwN;vߐ(׊J駳3RVϬ~R]gB Y"NC+&D@GcR(Lg}=?(өRGqC ;yp, wB)Qc>'E)ԓ~HPxfWv+Z ~Cʆ졻Z1#sǾIjQ'?HN#Ȳy*H* 4s;&LΒW;*;Њ0%Ξ#̾)ۄ `ON7Or* W7CH|QK+w:+=ԋ[a=J5>r8˩*B'pi )=VO6c15r]tZrѬ>3wAٻq,@3 64Կ9 "cW0])t:/OUnTH {Tևgެa MeU0J|EL yX9Q^zvгu{r^9b$% ݚnu&>\!⃶hJ҈de̯֚|XlpiD4kk ӎ[[z@VJtٙ4NXa -SlʎRZJ }DB\ ԃUs#j>5>0qmyܓTN{eV߉ rE@L q>dr%t9?x;.~v[ib.cՉ/@ g> PS::v5C*H341\{񂕈}ƻˠ;*>`-F(,r쓽m*׏]W,#H56OGȱtB8i^Z @ dEv74z+BPy=3:p#s}ؽT MYy҉*`[ac0jňڗ&>29BA!Q6-ݐeǭ3bm0gB}v)Scڬp#J@j5JaD]A =_v|Д?5_>F缒h7dYv \|Ls$p2dŋ[6N 3$EI *Wy9'KO0AW!"0T&GM}H oNig:)AN-\p_ ̉1 {("@pM: #<;} =iWqZ4?;)H%Ҵzfʂe)/v0j" '8Lf9EMU!>d Mf{PKd=t(Ap,"W j4N *JlR E :;sF p^FN=zoc{99v;QXFp! X:>O.Z_۰a]2|ڽLV6ݰrPc|={Y\QNfE;be[2?R_ƅȇO|aWT@%6|Eө< Z_h]~9pm 0S2M!bGMtZtqȪh/oQcuos-pnM׋kw0)WE#cޚ+=]O@k'W\}9Cj`gZKo{{:L858\vʝ-B#K{PLdǣ-p!mB`V9P-'a1H1a= 'x'M#쓸QxN~V8M񰄁,7A # H"AhUy; ٷiz,#n eCY({x?GfavUZ k,h@lڛ(S΃3IX^J* ND{I!թ1]9m^MtQX+'aJ^o&ӰL^xRi5>JD8GH]wΖi {`3#M3DIj.V4dAN@VX]UX3{Ւ.eרѹ,8/P F< Z>`r7X00LU~>;gw8$#wa p2>Ey-{L*?scZ]`HDyF6>̾gNy,{2KE UQn+N#zE*SS0Š&yMyVI`K}OPgO+"i(1"_%U+$#ɜi*{'h  If-}.&h~yb+b+z |‰u;10Uױi#iRq2?oܞ<1k{i?= Jw=YQIS1RJDR=J 93,?ȹ Y(ie8\AA%:_&Z/eS-GV0:?G)$ɩTFbZٙg`̲+Mʣ9=@0V3kՌ5EP~F$eC*Y~HdƷdBp:r`Ke' |ҿqS~us 8sq=aȲZ~Zޮ}Gb؛^C(ZEFDitoK1kg`4Nܘ` ;93b68^UaZٹk/@w6MHPdr`ᦡ\4q<86 *wPbQ2GK^lJt}7 d3P~ӂӌ9|t$g帯GnfH%D͋X_O1a0\8!0$<+쀇OV0pT? Tɒ6F!!:" )ub*Z\v'єN>E /^21߫a\sBGdEv'2Qka84usOe2YEt#ee@bE~TiFݬo;mDH/Ht ]/I2VN~o!FﲥSs{e*UdH~ciDcj*52Jlp4FheX-_=)B4fGlk~2n 2k(Enf&kNNMU( *m+A f\ KL@}afg`J¸(0n*?UĦ-% 4$-F_jDt߄:KX*muFs=?[Zh^z >š%i3J [ ٤}#DK֢Lks*/*D:9U;t_lIj9z3 :bQ"wYŊhѶi,J+p$etcS[DlnۘD}kȦdQMLNԓ*07qzr[X#}k[j tzlB3-IIB+k&3!pKlB4U qE R0ETjSyAg6‘/M?Hehca7w2y]3}yI8 2J4PL6j.kLiPGT87lOS|zσ}mɠbljC,lgV,̞exs͇]]Π&J@dҐc\L l 3;iM*lpBPޮb[['kչ f#kK 89ӷI)玖 AG{Hj!ۡTp4T[)k*BޣU ;x$:}e>FHҡ+ %EHSʾ&$j1$ 6b "xYF ?U씽JM`ëa\p! RK)BsGyۼK.oCgs3vL X,VMҷz!.v,|ͺ6Șdq{rVI7AJhAki&7CwhG30!G2Gi60sITh$ۙT&Uy) zCS^|ęqL2.1kt@(YgmL k1}eE + s. -Y.B+ -/%)0Q P.~6>tߺwW„J;ܵ yRidg,rWUH)r Ct۟YMqlWH!XbOTLMD |*I@TF +S9!=pKa"4֒l]P)آ7bðXrƠM.)&KD9MxFuouj!SHpgZH¹CkU؃2UIv9<Trs%';'xx7dZOhy$4 "ҊV"R+*m(a}}oҲz!%'8,JAHJ_wCC@FJ lh'v-|m8I.QsF|x?4dWb[  -ϥ{N`[EJ$&] >."?)`'p]4^Bd. [qcnHE!52ֆGƕ eՈIgE4Vz;&ؚ,> VGv$0q`.BS\DV:$y^]%.r2- cI+k$m#X9(swQH<܎C`EkE Ɋ5jG'+Yj0 iAD{Φj%N$}o' rO}>yPQL 5am'-|yv 7`$J[OdPb.+({K[yru Y\>\F f]DpBZitt4s'ä!(1<>* .BK?vkxKz~#Z4 I!4 Jv1Pz_O+lgF>q3\3IYNq,]"Z#O+e9}s8%X9B_Fe@2z%Kl-]aQLRս+aٍO=.FRdԾi"{qvOw,)Phtw/TqYD^FU`֎ ߶@5镑ogzblhCs@Q< _h`K؊Fl \v a|'%Jsxs)_K!|E-|D5@QjXbwK)vib)Dᖴ_zS:?^+&WUnwS-dM@x8H:ea#E?kvޏmFm[^aa1$E}#0؇^ͬQL9C,es&jThkw3ߤfMaw.;x5 +*>DVr-x58}g@vҢz7;Y#" $Cz?Ovb*-.4_|jw6K]bm\tS9unx>S6?8̣6v,bU"rk&CyzP$/ƺ\Bn]=`s/%\f&pJld>|dun$Lxf] Y;~PxU4ՎF?ѹO7;lC1PVe"r/ m a"j ta41ʏJyup.qZSz'(j<\Ln$v`ֈxq]ax.>MTOdI z{]zEv]^&c\c,4y>czx6k|*&sڕFPA۳l so $ ~X],BE+0,I)ilP6SY0kwױZ6D dԳ) ~)pnsI݇O&S1,QꃽBӭSph"ہ:cF[@k?D%$h !㎃ xOx;RkYFU! Ӻ9c#2U0abmцH8^F1MmiV9^!85.hc~ʈB5I.^}o ;ֻe4b.ͪN\o0T&M5J5Q͏ZI!⛮_EE.(G/W!n*2f$B>IaDGz2nz~9""V'k?R| fI>T6l`m$=ɲ!ڨ1KT4FcM 4.EP>eTM1^uSJv~د6$1)iP? N<<3u;wK@[z~C K x lApZ1-kD0d@F*L7E~Foז/H3#jlv[6P9Qwz/"{u4QʦjRs0_~Hل}9 j(W-Myߍ%O'gaf%6޷aab'>ɗI,3=H1m0-Ѡ tVlSRaVz D2˨΂3Hi@E?Owrx{FE1-TTg/l]?, AU<,FR:[eg^N#QH&0X力xPnp&[C`Gg wl8qftNW %ѣځbm5v%$Wn SB@1<` >gnbC9ޜ^v!ʛpҕ7okHCyII{6(TjE6#`Ky` Z-J%Js [EjҋHR$MY. syT'G7:$RMr~ ?lL I2g,x |_tV%sԔW7Ar{YV5m3( PǑuNsj`H͉ ǶxZuSހ*`.uia[8Joݕz_@JR@( qmk/g*'Թ+ c Ė32jT2@;As-vF;*~6@xqKYk?LXng⤆4PLdvpO/׿fńSHpQmLf`7>3ڮ7jp*WS.e]kPs, ޿~ jM>Ӈ:y8(K ;z3XR3_;ïz_s߇XGO[:Wt.QMF2,`8lU3r޾QK)91hNqpw'P]0A 㫁 4d̟'$Tb/D 0nسw;! W~,a?\ bK3o?Ի}p{pg45v7~enJ>B˳pVnR״K">008b>f60٪7'['ۈa֥l'oHR9xMaR1@245TUcJzS ek.ߞ[R=L'IkNaǮi{`r d S.jQ Љa,FriP%iR}Ah] 5ƶ,K'53P5/Z']`'guւYG|dIʻa <!"%N%? cr)+j65M['&|+@ ]' -ߊLjTR`{4ܠv>8X*u(֚ҶpD& 1ܬRtsAp.Ȟ Ĭurzf&b2r*4&6zlʧ䨯ϖ8|Y3L'c^Ӌ|_Vt.Xy \az4ua<Ub9/4ӷ][o}R1pTFq÷X<,D9Yp:LXq(dJk{\LTX>G0Y°p̕nI9NгK[PCB^ød7sJIYݝvDvWNrI^zTUШk/7PQe'Il~kog){hF$+7N߁hz/O,EY1)~!pü\I|sldK]4Vh!Q ={ȖS mΤnfxsWsliA2|x(7_]rhA:̉5u3+4vv.9O7H] AraRqzMdfA4KO1;,jC0A~xs~mhW%M9^NnF{ZhcnN;6=bϐOVɢY™fdw7 Wm } Јiۙ$-EsTF!BEӂ ! vWKzl(Nwj)ak\s:U׀wGJg:S~zuޚ#EyiI)y[C|d0~Flgmfur#`YӘUg4EV֢u&=M]yE^WYE*v]SA Tx"cQ.J0iV)LCF1p@qρKh. |51^B!-1'u[{\eBNǶ=>錙BHl%0қ[%l&I(zj]%a^]d2 %Rd60W$aT#6 /&DP|hvUoO_\Bf$_o'0'S@oUOTw8k1 ψƩX Ll.-|ÓF~Ԉ 2+YAGu#-O%D0ЭF;6"-/lѿ֯묾ɔ]D݅G/D|ǽs_[DD!fl16++$Y;\:3f$ . gx._M17`eABxѫ=6ה4\[7*4j! ?Nó_,vK4߆nOi<>1hsG6G Z~~ {sb*9eADWpQ=ҜNw\^9eVNo_ŻA>:})1"t8;1#C`'ۧjaP""{ډUckq:J<^B:'O#3R\cP?'Lq>s@ب]2y냙̰~No2F ]L%-C&i8 l7q ۝zyR{dw\bl|#(GD A.2q{ kɅUts _"BM5))lI{/?J]Ɖ-q> x!@h%' (egmU&YTO]RgSlVu-cI[KQA.m9zGQxޓmˀشYvql WH nt8pNDO1"F80F`R.\S͈ljՠKb6b:\9ɺbl>ݚwݳ](lyް?d991V W%'1cIDrI5buM{~DcɅ߹C*ߩ􅀃WN7+]*nMTf. xAi(b[ 4f4—ڐ(Β$-LoDUY=[[1v"p[~]ؑWMΣ~Q ő dڝ dF\B&E;Du_H na}uVȢWj=[Ց.f$\=͵UBI?D.0 1WEhA}3 `)׵J܋} {@W6Y" N4-mt|RG3 #ۚ(r[fdMoOZ>Y=K`GSq$, [\GG`vZf8[@ޠG¨M!1hL <=ǑR\r*{cd;ȝƊ!au-Dۏ3eDibŸ>SkT}T+y; gW(\μE1~fe{ѐDh?CrTp|Yh]z/ 1dӲ[5f48XM'mw#Ϣ6K⧱ݹˇK". '}Q+4p B*v|J gaJs%і*3ؚvtM  Lw+4s=8z*Q>ֻ~79'6g&bQ&$lj`C~ѢgxDbhk"wKD~ uvTNkݲ*;>.~E8}) ?}*PXkU$8)"ٶ(_X1yJEԳFJz7GOְK:AE*tK3eZ<1\&aFf~vY?(HyKâ~Obgx|sژZڸâ>BMc񪹨AFI`"9`Wtmw͡ Vx1z}ʖX~l_b(Y S-UB_iHq԰ 40膦؄jD_3 (,5?QzLcؿ>{O d%R<z_u!7*u3荠H&<;Dmǿ̂ۅM%"Wn/?ys1d<ǰvd!DYeb8W\3wHY=UB<<Cau|Q6n칄]̤#\ "MVEqXtx~9ڞXZ"D٥d/c`pnGlaeK8Mn}f21:NK }f2Sv~YXF*F׉#w21,2)5dan͚&}b&.뙄JHEc˂6ў~iئ1v>{W,Ulǽc*C 3jܱ3?#e0Hat}hh%!tI z/7ܫ,jn2I/-[s]}vbs46$CfGەN2PQh9q(\tSH]2d7zėb ;qbAPFt96iU _*)Vգ3QrYۗJظ(b"}}Xu.,k?6n6{7@r7z6FPVeن>$~MȈ_60}J 2!9w9|zϒ7}o*J~/nΎ9GAs9O3u1.#B"Պn+T]EKz5\^&E oɆ%U $ƪn|` = : k:(*ya4ef 0 }t-huA Y0.waێaQ„bWP@xeؒPIg˼KSfw!n (4 3hq F_ yb(>ջ'ϒu?}Eic>jHBOT •T-εdDy$ , 3j_q0v2a_v(QWT6os>CH#YK mpwjI#aJ'ί;W{ lNwqX8νt-뽵'Ȑ+I'9qKS/ULGHLGB \9l!JH A:"sL=!ޯ`s(vb01B Q /xXnbdp?XÇa1n޳o# JfKR+^th8[dVhUZe.ܕ G.bU{KaxFp"Sqv{Xq +#%cX(3K9+ݘ 2=dM1M, AP"ZxuL=<^C5xӝea#@xDr,M ]j05; KRaŽpgswIC3dָ+~ z5"<9[m^/YOPeϞNY+0t|aV68rO/ޝv.A"uI^jPUh]bRC 1]LSTpV|P@ 3@,x[i%^4 pA@r!Sw2>loeH%\L,?[Ud$ڏ eWQ&8#f7 ] J]-z#? 8a! ?(@! 1A]Y%Idkފzl8ù^=ROzY邿{dul97Nk'RCjќ6(TB| ݎ'w.)^IS,Xi_*s8+ a>66²z1#%Yuh_?3H@zMkI)(:…A7bAfJpdfOۍ#6`^=[f;IMjɴ׈57'sqmˮNe<ٍ) 1F/6iRĐ^:ZAS9zHjz4xwL, _)i?@`ʩ9`X !.?L~am<Ȥs~ пQ],F;9J+l+.>/E &p JA\nbl7; a얳AQ9L9.?F31Ip`o8"TR>X4_m %ʆ{ʹv]À@gV4|֓Ϣ (Ӥݓ[oV0w!lN'1מB8XA <1=PCEO8.Br8#6P iPzsֿ]#[ls7r:+Wrh7hsQ/sEݏUE:~L [m&Ol!p-(K_?y/L$lZ:J,1qrYDZ%|IRʣ*/=bS Cd>3X,Ξ@a`Zj~$K(Ӫݨ+Փ:XL1/y=lw`C#{^' z@䯑@ʭ/O8R¡_kckC*Xy)t1+R3ID"ZbYY|ـ xC x!vsB{J¼`A_8Cz6wO.@qmh^a28fgfP%*kLZʤ\X|=P!?h=2h>Oc0ѐIZmI)8TJg_X}:ѿ"]}97]V'_πi}2_y++ /t]!:l+Zti?s=W<|?y!tȶ 6.:~!Kf0q[U5ƿOu "CҸA0g(^b(6b`{Sd+<TP+:0K1GTt 2zf'~\O8^ᩥy9>,,Yo߰鮲,<}&Cٓo[>p8(?(}+g#S R|fX RE/+D wTp7?]Uz ~qE+16`B7IJHj _A Ff z!%N*s^oѻߚWYH]j[ ^˩8m[rJ&)%a̾7?n|HC 0/aUX~~ѕ<|+5.4 , 'e> kS:)_sP޺K[/<_ G%+X!v5g%>r#ٚ+1WgxmFqPF"݁BEq[:=^]V_Fn`Qa͓K .Tf;#ŵ@w `!V b^(`@]G;,5̱r)Gh45 Li^N81C0Z:~-!*bTl[nH2B_R9]i)v'FQKSegjNjpER.D#>K*_MtV\C ~ݔ?]4=PW`Z ! oM1GI0 10S^QjGts}AJf+13$LI[am@3e"/MWvm Oq 4] ZJ8@׏Xmp;LdfydZ }baM]_;2=wj! Ar:Fþ7 ˽=4Bm")8f+T`CIw98Dz@zd'D%̒9pq1N(cHgz'S]WW38_9-+@7-pPO]FKŠݙ^ }  SprʸFlSyZ2gzsh~$;{3gḓ[$uPs[gv>!W|" ^ <'oIiٕ"%gKtVD=E0\s7z9EIO_?8~b`*F i/JsNg7m:h *\M8ALM >pf8&@gIsg>a]6tQ4mT_0 : /Ŧ z, CJc>;DZ?I3԰-lc3̇éBb8T.2.?l#M"C1_#XURTin6=K,t=Mƣ|uUa$4VY<`}jv3C#2`K:A>W d>V}n'5E5D:ȎsˈJa[S''A`xa'n-8s ]qM%U#7vhyp]8H(6͙M<؟EQzQ46ܿW$)u8T5Fqq7r軁WJsjgY Z0nZ2|j\KGWǣU+ d*a$%}sny##-1m0Qk]'#Tdh_l-?vs"h,]p҅ns4P ֊dI*oQ}[CS-{F(Y U x F[_G?2AB G1ċB}>ŽcpcD]~]6Q _ZY:1.G3[ͳAWWouWЈ^rX2j EfżvO&ı+,X/u%|eV<=P=@Rٶhլi ҘƩ5r cSsSh4c 'T}@IA)5 '(4dbZ>4Js!-N3!b{4{][Ru,ɵd Zǂq©5u l_NC%zػa|~::mw%0C{ tyGgEů"VtBgj҂Dh\_7N L]1"!6VN4(F(0|UC''ێ.;maWb)_pD.RDǖX\* 9 Z.t3]45u{`)^9";9;r남 l(sꓢV9o^Ra坵Fri9;4B՚n?, D50WkGU+;OQfPCFlECɊA!}[8V8^/]ѥzH3/}\<~,lи k0TEt52b-]9_V5I~h~*@p|-N@`Etmxֱ޽>)&l]-ȴ6 +:M$imi<'v(o. }5+'#Y;nIE)];rطԭ*%J D6ժl(U4늇T1:b SOB{ AUpwi l$֐$urp3&n/e (V*^?Vْ5q|-BErg]Wl(j[ ۏ9 k]6jRпM}*uGw(ưH7YWvJPnqm!_W}N+vL;s#4]+uL{S޸vt[`s"#GC,'R̵8T7{ѩG!|!p@~aB8io69 q ;Rټ֯LOe,[ ͲlhFW1ɔd4HQm{6ܣ]tdﴫjaPXKCT03]،''o `>8T.G[ >:[#P[bEXˆ]=ԑ<vH)L{4 4 F 9jl%9TegQ8S3t_fxAH92٢6V()Ewp%gx,K/[+dA2B"MEh73XfÄE/qX`5:5=]>sgP`vea6fߣ.3>d߭KXl)%75y|=5 WpX,x˓A~@zqR94k }[& ל)(EI-^S~;*yK(Z[뾐Vm$#NNE?hKhyX:X"b 쳰BvSa$xETשf1fKgV> D hMwOMI?m.OlݵnHINJH|-UPiDpυFetD6]C[F>q+V|KU!ŗ&oP'SHM&jF^+eMK#dUvU֊?HR/4-BƪTPJiJ>Օv&6M+5nʛGPTX8j:V2}o3u)gBeih4uN;f:2>wW7AQBg l Kh0>.F`* _P[ *]FV@p)La8B7cڤKu*n?`qǖ0Y]QT I@\2X*CĖ7tKDE- `L[G2I^ ^)t2+|\#܅a9+$7EQ|%@hFd=5Tb~I9d?f.V*Cs`OS& \& e~odBߑWx2LJ7ƕl('@1iF je+߬?ٱ0E't+LkAl;qڥľ(kvJ%^Z]zL9$q v0]gO\.-FRyA#Dgi(>DŽFJ=Uo&6+3[Yp "gK~6xOxS5~*PX,5C e~j_;6n[nbkW)X [Kg/+B:Sg|HPN?aVY걼UxHEFJle!c%XDb_6@ONf߄(Z.sjȄQz )LDf>͆Gc_T z%9ݘi棄>PJ7rFNDhtN:aL=BA>HtMY\>pɁd)3^C,gͫ^ @POu& eהJyQۿblX$]*sQrF^'?Vk>n?hRj?vC ÎX 9;[]A3U S/̿82NP5{)#'F.C#$]}fmO01Ķߗ~7ӽ4a \:=Q[5ʘs+6_v#5/X};ZK͋۽#/ӎVA^v;/5Dc;#D ޡN>|vF/.y660X -uك: s}rW=m ~}j`{EO}$}b:c-iE&"ɦMD8w\ƀ[CLAiN, %We^gO % ,ʥB3al=0^[0w\D 3Ȳf<6Én{l2ǡ[_-e⦖!;ʎ9.DyGxhV"9<N}9QA z|`#5i@)r@{N00c-*CĴ9-+Ô;#{ uŭyq#VwU~8#2Cܘs̡iKr&xFC/lr̀N@DZ;+PP{ OvR:Fq/r{Hh\Ra H>3%,nCk$!Q5F6xB]ןbZKJZ@wxL;K֙iaM nTMLc\wYr^$1XeW` q_6]uQEw'`y*>PX,1D܎bBiE]uHԅ-gtnVd;L׿O7oH7XYvˢ ֳ`~n"gY 'aU9QPyxf/ 5<>#p+J-sqhqWF:0~޸b1rO&ַ-9<̖A#Wv=>ECn/ޣQb~9FmkvjF.+qr^kF  R1@b/_ڎs=hY߭#B=?a;ۣL[=eZ(6Vrb1̩.%1B6$6>| "_)UAeExp&+eK5fXķl݈ւg:GO%>N{Tŋk\棂,u 4\֯l{+ܙ_#r9D1)qKd+<fϳL7@(\LLvu()?j]Q&dW7 TTk':#̺X iWޚPO=KTg ¶Ƶ z;B:v൪z@n6{F?9H x~^U5L0 S~qZGѩJ- 20T@܈}3ްFH pZODTI~Rt"ּ&Je5D6kiXJ87Aƙa (Muyff]<*79SP;xw BҼ+|Qm5fE`,%VDỊr5ϸc8I@?<{Z%>؃vKa&spd_sM9sC!%@=3NL ~2h ak=.O2{| CI;Ͱj{n H7*[ۏIhk;06v$y4LV 9Gk2980=.̬5d cL-)lktHQ>ЂnOo}愱>6&iڱ vs_Vr۸\4C-S%HƎ}_E> w[BIrt gxEl$"Ia|8[fKa@R(k+f>eEz@_AS8z.^RW`?㧦$H>Vp"^ɫܦ*Cj_*u`_u>L9 u&٠sh'PRQs94d`QV?:jl@q,Ty2&VAhx"$vLAwA:P\" 9_Gh Ha)zGw(K s^j[bAw0rmjX֤R5%c123IB0w188~H\uǝ#8J]/$?9L-cGR =r$$K߉^m /7 NDw7v 1; Gޤ_ȁB HQ"Gpw)=+/vL2Q9`k^b>[ա,KUp<]?l %פ d5gw,_%"f F?5X`0@Z rW{cyN<KXg eF)ERea@aljBp[PX4-U:kw_j5oY9s\ o*@<.<9k|i݊ ᘘPbu<@^^TIm?VlT e&tFy|)BEq4oɥ E l֜aBvI0\|_n'6WZ<M*wNUqy("Ge\S󝊁 -{~=>3D)N׭VK^5йo ˲V a*Mɾ{&oTH"C,9C?ոhrK)hH,T3+UQjyafˤnүaJ}Bӊu IZl 442+}b-4f59}=3տ_`Y@8KR-$w !/SˊٚgCjF5a2 &@N]E߱RGڜVM>opa/?=qq%i wM0FkbGqV.-ح(/.s4/ >KvC~hzmOdk#gBc錤9e!r sI:hN}8,.wH+$ˌ(3?Ԁ=bB b'O~(&aƖ%D̩EdG*ӒO>kN7 KSGCʥiL)l-xWY-0b7KEQoET0PM|.`( %¥b8%.Ėǧ7DoK#/D|\9w6Q[]_x"¯Z$@"6-GN}}>i:#-U'#^,P컬^ 2[+ *'*(YF[L/~r fSuUApr;Tv F@UYuк`,M.xklx%=6W99Ŵ##p$Qci٪y#^S)fv0~Uh?9ru)`}Ze3Yߌ C() q,ΉcǯNuUE砤P.ht#{kl~+zs ,@SpZ6Ț4> 4I+<U@ڻ3p3]g{)P `.G#nQmkW%~z&(ظ1uoqB(3ԏ"ݘa#e_Q P)IMolc CF"Dgb4Aَ)'d_:;u/zXVp(Њ$W\/?4Itwe檵U xrP0ӳ^lߠ(h ABiIXid6Ia%kcicщ:7t0 h;rr12[S$L~\mPg1xf>?$M$Ld,k]fh,T/;%PJk][U-h ze²7hiqfZ@(81^`NY !I:{@>aALآa?V*nLI&Dl9u_o_=3tTz-Quv= (d Ey9ԁ yi3h,nlPm\СsB7Gx'7t|XH˔_\U+7H#K5өi+bEtcJ) ^ ?-/P}nmD"0Nq)w @m\Xen40}ҜYp;+'$x" H-h Y\)wiL ~4h H-/#8{y? TO+Z`hDu?3Iw0%Rhe /Jն6E'K&H`ÒvËVɫ]aJazl]Tf)Fa>'`NY1vUǗ'UqxynIsm h oIy#5mnp4y-2uZ?;*թUDu.B!_Gs[ 0{Xkx"S"wtmƎae"[UߏĢKI է=Xԇs;# 1ƊT:8J {$C$DDDm?d*\wK.W gOx"Rby8ZLh#K%Ĥ;@r-S<1$zkӪU`Z70dvl>9y#Qy5-Pu21^eb1>B?m[JQKoq|ǫZ6*liHnC3^\ Up}KJr;RٿJT^9_96yHUwn\?lr?YT*=S !.\ sF`qI" r;Fsdn 7E@d2k:`Ox^Asq7΂ k—YZOdvL]ۡ38/DٜsN y473G孵}=~jXRqxYf{f;o 7PU{TS$yECZ3zX,*&wNIH ux [cHe–ZGYS1PZRsU(otbq kɢp%x\ vT`tXmMTTq몁MuDi$3rAe %cvc]w:;d/bw2u4*OSzit䎙^lvI4U=7e;2bES1Im_-qBg[bQnzekp eRL:F.Q̆ʜ4JRG}6,lXp>sC@Gw@Ι[6եi)=v&r@VPxMds qk(= [I0lkc-^"hg>h#>NQ˜Jl)@j\)5Ap杇Zum~5 6K X5ԀYKT8F6Vͱ.߄ȵ?1 _}`.CP)NW*J2]َQlרj+V/qVA8k>%Zc"{C"Ӧ(dKdbHDq9hg|3q{>7| bg$,h(:eqBA)Agۡ3JUBGb@8,hQOe7Љ0yh9ՠ1(xkx xPvtĨZYH_: IUV!ՂA~{>#@_z +i*6+KDְ&G5h[\ўn Lm)X kI^ApHo_n/7jX0)] )*tOD U_Hw=!bԺhsZ,1M$ϊr_N 9\FXi5ѢjC$XSlg=ی(l,GPJ~-D̩J!TvmPu32JwQ̑] *5!ppOR涗l|fy"?>cDӅ&H@B2n d0񊱑\`WW]#  OQh/eXD7oɂՔZ7"'VfNᣤ y~EO+5YumNXM,.>vV ;靯urjA,1b%9 @(j[3$=w$ Dc)Bw5GR'ϔ7k\w(8G\dŗ˭l+򟉯P\9^(XT&m-7Fcb樫PjGSf Gbt)s:лVf [O:݋@jnYԷ/XAv7.Hy_WrzhGut bjEK~u ,ȯ>-3ip)tC;m{}>E\Տ}< siI`ih(FP2b5BNITUΌ?Rq]bqȿ:w2W7(^1bqGn|]I;t /k|o`XB1ОiG"oȪKvaƛ?j0<] B5V&MVVZ2 Y&SÉzs3) fNm3fQ\Om C(TeE4ŋ5BCq?B<\,;s%k^G]Sqr|6fkܩS̀|4#^w o3]@+Rn 6NE@CܒΞ|IX<},+Gr)FM.b,>¿JA?AA( ^VimQF=ǰS*CTG%= ?ﰂprQ6|P依C=;l&46q'Qޢw4 BW]&- 0g삂,*<b* bt75N|uyl3}ȁW5OL OKo@GA ϵ85|6iUq r _K0 8^MbCu]RlܷH!O/g-*h1w5MOJMH~18˴Cq"9OɫAFsߺ[>&C/"WɅ/1m++-\a-t fSf3-Z?q3PN0-e$7q*X(?>z1Vd(L-oB .PAT.W"ЁW{CF4~Qp]>;PsQZ yBb⠚c&oI8^Fx3jHrHCW‡-1hLODD%H[䅫3 l;6 eEZ2(37ډ= aktOٽP7yx06R=3 O4~sӑ'YN&qz-S(~?#^zt#*QH5qDOEW:|d'\î?-f̖P1[ԮF~UiFbubB^,|ۥq]82,Á˼L\?<TAJr 3}<3.ħnpE* TKNDz!:oKͦϢ:*kGgHx_c|t:\-HLt;Ү%k)0%>f)a xߴʕ%0\VRiʀv;dw|p(;mč]c$M'E;\Iةfp*S`]c> z#q(M eVp]͒; C(nޮZgAO~ڊIgὀ=V+`/)*oxtN ߴ =Y/e|¬??]&+a!+3;,E[JUE Qȭ%Pf\c;J v*Р]8%aDUo\ )]QǫNs\6 w3;-A:S=N_Lx-,ejR㝜=<ĵ ȊWrft.sC't{`; 78'fg1t}ܒ Ny@ۃ6?y]?)"R[*U!ŴkHw1.Dab ؖ"rW(M3uxú}_y>g# J s<,${*xJ"~qdU^s tdGg6ZS:s0p { \N74(ݏF| p6luEK^yG ]3yngs@3KaU}]VWƫn7^4Sb# {_U,)^+ Пಯ`αqw7:7d"u~v/~#(Q5#OC[U/0|H*Qe(atEosIkWIΰbH&*Ci Z\ Ptv.R+\9jiNu51S"J8>n+eNC/#aϱ f3oڟ1d_<0;B4yJ봔 t>0sr_^Xy;0f0y0Tq-D]VSVD+B7t@"q3ᨺoi'MPTJB^8[ӶfbjʾǤ 19%"5,tgGEK$> ]LMr"z66(f=h&ٙbt+&y#7զaf5iϵρf(3\#x9lr` JWEԠ[6-C\vƻhv Qy]sƙt ǎ9UEkDe; j' V~S~6x-;xYg{Y7⢼U_rHBSu~2DU\nAt]h"CX [p׋HL(#P}.!l_T& $`Lrch1num&8{3_Ee:šnd+$5{)Q,5H&1 [U_qwEAtޥqڌp^t M&~N]]|IJ5ՏF"!ɾOO:lMS&ΖYi\pA@n誊 L cAub uT NxDhW k-H@K%xhO x|gp ЭeyXx3 PXQ  ,c1Y]4wqהksD@2lk/口"}^**(4nwVq[=͟(lU`&|Q6j:c~)%Е!w1qmCG#bk|p[-p2g怯6B`1+yR:]?tk >H9!7q *P_4=iIx+ 2[5GԟoV׍Hfnc'yn|!ï2Jt_rv=0W7) o'2݄e9Az{|f74&ƭBެuӓtP;5F%/(SpJ'`}џV& ^%WHB53"Wk?ڡ. H.Ν˻RcD:>2¹%Cۆ_pr`}~q]E_xyT,ޜ|B H,-uǍIo-K׻Ŧ 倓ҐgƷ_M|HCiK0^.+ Qvr9yR1^(޼,%ʻ jPWh1ݰ59D~|&1fޘA{7.L`4}yyhT| i1J<1s^\יCg?Qʌ棩.gل)c8P$_@٪-ХD"QZi9c Ў˯&y w?4so(:H^|D-pBSEͽO=%`z* .O"YUNCQwoL OVF 0rAb")=Fr};ʍF(j53*?쫟ล2u0g+Š&>>JP4*|̬Z_U}noBC!Kwc)1)gǰIiTf4-e&x%,Ȱ`*FSbO>O3X 7q7nkj{\7j]2g V9Y=- 5W'v9MMz b2(" rX,0RL~wvhޒpn ż` x}hEX}g2MbS$r)<\棄S p@d=4l=^JHjH汦?g!wjnoȷ"bť/i "V%b8}Oh Upeb!2@$Rġ)ǏSQq_"Z5T'BN%;Slkr̫&ҋ.$fQ_X^`-0,)ڲ8q ܹY27@ZSǵT'Ic"uo\8@ig0; =83-륬E(X*ZK<\B(P#QEA- :$h LHQx-?~t!,J>973`Wg\$H|ZWػ[Il 0\ý\ a>q߀o& 4TM-kA*pdbT_Ӳ;\0L)xSi \OĆ#C׎:ro?+\X33(l~oVPn[bz8U֚j^SiNH P wP#1 orw,v`i)tOP vBzhi_1@uUzI=dBaS?:|vt}'J40y 7"[yIr3 Wۏ*ד<#%I~5V`kyݠmEYEb,gS4M|TS v>,N9`>aH&W:9lWuñ 4[`c{pt @DS~|DQtf/ "o^ O QX-I.s&^HR%d2H8(A7sQHX)ovl|zLz=BdT^fԖtW& ԡ-ۊ(Ѡn[OIP&)q!묰*̽ђ1Nse[r>E`EMєo\)-SS~́#g/>'i+ _h3l/g:0KnP wFS\O(/*MTi,r{d"3w.(lwQ&aB찜 K<%OO`^:w2Y+VbDgK3^R*]o=Zj㭆*ThAbq=M,07sldƔ@پ^D(*( PCzI94WT!+-G9ȹd[cʒɘM (!)YA4ځ鴃֙0Џsas %*Ԛ'aؠ6]#͠t+IKX?P0K)?AB4|ԠV*iD4d[}` s]@l{؜BK]e¼ҝVR9Hp CP|G֧s Up]UqbYns3gLWo%Weᣒ7%ܢo$tl Z,n&3LMm!i]f}+Q0eʴ6]#pCyȒioAVyr'j 9k!,LqƂp\ݸIo ^XZ G\*R6^sB_ V5ת!I6VJ?.11Hlvs@6%L-H>Qia茵/{f&;ߙbrK‚Q ĤFD57'CãP7- I;ԽύRl-lrPhҏ撒r M3j))ihnOuR6%%"i//l஼U:O@(L+=^cbQ>h25j?ދP*@1N2|x3kd :Ef_ÞTj6wmHB쿚ʽqGh̕?-Y-|؋B$b2ߣ9Ac |g1)nG1K%d. /oBl_ں/QL)6 KD1ck?:~ù P`7c ۔^Rdh>zd >»ӛmwjв*9NWUIO7sպ}6\.ҵs*L"־ggOa#/ ih^)'0=Oh%D[w[!wb@5DePZ8Jo4V#Nׅ0oE0%T0Yb(lō)տluC ~&A {eEOs-)G=-”iYs #vSTA`iƍ}_0ħ*B(<1,hU*.lytFV N9M=*$;XtX~ئCD,9gq@$|6ݢrM1Vr6ً ͱ <$X K6cN$2![pp<.*v/go\Ri˟M#1,_DDxP>x¥èhW=?FqӰ~F46fD0⿌ Vԓ7AmڲsA0sptx;3i^W ;ƛ,tX ?wQX eplJj2xF {#Ã$;wgv+9f }f x/:qY l 绾t |+&a;ٸ0 V%;NoмAĸJPb;+mTynt[`dx䥪,RJ$tlaf66ݨ·qOy+ 2vj[TӹP@4@߅LnRYCCpA7ԈO[KUĤI__F/6h/nISx"eͪKr@7 9Lw%ܿct[g" kQvv+uDx:znQQ"Z,z@$Fj)oݾ,A! &"J„Lr3o?tw$MQ NS}djX,c9ŃVa Q# Z>T^!e묠\Koҹ=q>ɖmlLwEd! MݛnMb> a/YyA"ۊp2s1EiȤ}W ~Py mkT&tMr!ZB=+jn;ͼ4һS-FLz8֦ΊGgP6Z+O/[5F̸tvuL"cVPerakSO-RDS*y1k3%dCb/o~lba(ۙB]@#%d wFD` c{XetZ>Sza)%>̗蜞*@p/Y.ڗP,ɉf{ypϪakIHJ8UMH4V@)d|hJ蚽@h3\D|Y >3km&Hoe_7 'lh+`墒BF :Bۨj.ie'}Jdf Qt6gYKcPi+ŎC\:œ}I 7s`9d'v$%T'胰DjQ06XvMc$[6ҳgs ӏso k| nB($=9/hs+Aeo7Ir:č_G%F{dڲqd?=_mSK1?Hmg+08UsӜX]/ȋ6K9vSX =oFOզ+L$i?ҊW畳QFz88(ӚD{; $ F[-Wyh>#=qܕ'zh13OoA8Hse;KgSq26r&3qZȟEnVL,?xյ?hׅu^{1_|W0X? k2Fc`٪!35 Do?_\1-^XQwz2Bq%xF )6Eb^PFJCXjSs_$WmU8mCvm#et{~ÅyfuqtqC%Znv+D WMv]lf{Q)sGE%!ypdZ%g{5-Iqx)!iS18[-uvivӓa4Vat1 K"y^o y=֡`%@׫[- Cx TPζ UqIg"[{͍BfKLCpNNfd|p5|μ?IU\IN]x1Fsh3zM1@P\l։ )Uy ˛#*FYɰ8c8{MytL֐PY4v G[)_3)딸E'ٰx\M0!7SB(:q'q.K'svxAeg~E'V(^m-׺StNKǶ$Uh@S#&1Ehr%E!%!5\.+ztjN / pr tθX;@຅'N&qjW tQ|NdߵYwh"ti:j/6Y! ?&,[ej^%egܞMA 5qjXOT?݁FP}?qעE1SY L,ӮczH#gžg?~6\)/EZ|f6?F9FQ^ ДEƧ%O l-7tGEdR ܷS;H7B-uh[/gs]yfHӳԼAhl6ا yv 5y";GH#ý f֐8'jṘAb.O[RVC_7}: W<(8+ 7;RI\RCWqӟEa˟^uGsNpzvmp`;׻}ۋRqTհxc#!ʢpBHң6,:J+b`٦ HB.I*uJA !T#Z# xt[/}?cdܱsp!Wޏ%L+lZEɼH7i#:4`ORO gw&=#OzU'xtmFJ}" Wbtڵs 2>Cw ~O̗<N׷0[hA 0#bMf]rM4i~8(g,2==Qw7T #g3) I6sUJY7)](KZ.{oug4˱|^w|8C:whk:bWRpqNnE+S?Nʙevdg`OgGXT)4$>,HBu5{ \1+Z©-.yI勁~lܘskb!Z{1CvKM/V RU&S[sf昱lE MAK{T łyA07oLPЂV6"ҵM[Ir^_t (l ~5Kaks{¤;cYX&F`M FA*Cm/h5irx)]CeOO^暬~҆'SPuIWvWRQ?gD>Ȕ] |"ڨGBRkW112H3 ) NP_kAB?#?Lj.n@,.n$X&Xb sU"xhp(֍Hׇd9"ٝa$Q^oisb}`0݃x<א(leX z^GƍU1!ഢ+xv#^T`̚*]G2%"%A:(ߣñXG뛣{>/Jc; "Iz\_}NV/d3&Z%5v gCN dYT?MO׎f''JujGAНS4?Ay_ [r.k t,S{0oэ#{tDkQx:}woDHg+ټɾ* wc«$0z =5" >c*3.̋ fv] ד=8hm[zq289?%Hm;24Q }zMx>"y:vO?xj瀋u|@ʽ_E`w5ed0:ٽ Q8Wg2dr]i<-.Z^Ӫ'H1y@ρij"CbzrNOWHL黤\;$ ͂^]MB8Gď*O9Q@uD6mяf(orO/ Iy,eq:$,zW_#;om*[x6kMOXMöa;:j)hL7!FF`4yfX)D*Q 27bAxGU\{폈C'V":?TSiBA w~'% o26(ƸC#!&8XM2DE; g2OnTm8<ĔzC̘B&tYDvQӻ%ilk'N803ʘ~ j'&iC?"g $uxq 4f&k &w04c6$64O WX =G&ZvZ0ӌ,ԔSiU@C#-[W*՛@ăaq6ZZ 5aj4ouܺ9NZ /Ǻnw鲡  C WJI+G:UCWK+ 'B ˟"]MkpTWA_if7NL_Z@rKPw?GHL&P -űc=wVO׮P%׊CVQ ,ւ쐈 c^s|a8r{M|zz0Ϻ-y4*9 p@xoز ǍYbUFy iBgkt&ih;Dc ^6D "NiHI+|UCk1]]x:v形#HN2Il#BBT:yOr䳃jɑn%:~7Xhv "p4? 6_e=%y' nʽ,GF! hzy+SJ\78$a6[gSr57EmvO_Y<Ba\3`0F{IċOni҅T#H31³a*}QU.-TS/-\z`+;5أ 2ndޡIkLsǿJw3*q+6_>*g*Cu2pK޻{;@YU{ %7Ͳ!KdÉ-k:@*[w | Ԙ`21/';~"{M@L|[:>xTRٸYSX!(=E.[8֒ٴԙOk~0C6x!|ZLŘKMB*(הu=:95P3`N:[ic=#($IJ@Lظİa<;~ -!^:'G[g:)M*7|"L&SD>6$]Ař,TN1ō;8D? L9hAK1'I&]4>oM{I]pȾ|Y*4LWL~9Hqo\[^}',:r\v ,o|4AJs4[o5;mU#c۩Z/Q )ШNFp@#Xq7/HwiE;$MJ-!scϜ'i\5kT+A֌tM5*ʀR'ex#:5RR7-H3ŽRwrN&Igv2% [Z}MI'?Q?8=|ٰͫV%" ,&1&`)ʪD_y@Qur1s[:\fO+/ngKif=].\ vP#ej4cQbXE/I˕dcfs,e|}m}y3{}!)XraEr#ՅJ1t~J~u뽺}čK]_~/OKq]M遄4sv@'کjd8턶}:Y5qU`}\5g~[4SXLH -#iMG$*>~S3a+0|V?hE>ꈅ#aI.)^ ej8C~֧Dt0xlS =x̨ŨE*S|o6\iy8$p2o>x%{r`V]OxLzu*]diMzM_ r>H5(uypL|7g|e-a0c_catT9+N)BTrhScn}N$>P@>1 FV㗆½}';3G',a5z1s& ^C3''Y %ufc׊dG-~:Qե+f%"+-6xc7,Qo$?q̊ŭx wr|ipAGL(#O⤅,UFRRF}4'gkQ;IPϥtZ4:G于/^9n-o3EoY΅w0մ|?B, _C̬a QʘaLnyŲFsD<bGu.\n?+Ӳ ( ;:eANeei `,a5[Gig4x[;^* uL]e Xr`)ؾCAWb}f^f*wUł7`\χ WԁL|xs+DⷢZY+}=2G8vh59_L5*y@JFJ ZR8yUq%n<bƛĈPE?DG>Ar"I;cݦӖ4?P ("Uت)OH ;(9[b²p $םfD* Fgϰ;0ź T"F2aY}-@ɹBd$OzO_C`uO/7BoZz7,2*<]tSV?T;zbsLfkX˱o T_ gve8'5'jP !TR%2CI)<j;7^s}"p'hf%vU|= MRqX6]q;Xn\O}'HX-7p4lv?p/c ĭ5z2-bO6vHEECӒܣ@'ZT*FU(IYW%/zLlw2Y ւ 6vi|38*v$uNMXIJ5Px,It gpն0=,޸n_Y<=9TYR -ߧ1]Baƍ Iָr"_<a21Q†\yiRDŽ %x87LdVcrqT hQpi7*jܯ"7|\)]֙ X1%l%їy;5 5^SU=s#w|SA,FV؊R [= \cP*xEqRUsa/X0S=tIw"B wNd-_[IqB02᜻}Yaee wh&`o,c7]Ǩ*V[{޾Ee]z3}\A`Ipg\dr;\j_^6Y:Z*e;rÝ \nBhWV51nnU_sbKiENyB{7Z0_{ 29= ;R[\7Voo.< 䕪UƐt]v6D>NNS[r?/ )VhScMhɕD6Lutх ʶ~A.4bRnnPJn>T37 XB ˹4\-Cxظg#gIp%I^.%ETRɥflV٨0D<]M_țr 6_wFI5B xxWEnhkEz&" p|8Df&ۆ\f>={jȊ\wMhR]*ېkKZ u aEGaE3}q-V8@f߁dm,PIfʏˉsu _@~5c!ݔшͳJl̩d&zpm+U{m8 +kaHz|cIbss s$Vй4BN_'ީhd[_E1~3 [_zvn-ILɪ254橄uZG􏫵%/#ҪlPq 2H(C,On+:][FVfӰjds0'7,nfjUh LER:!z}iv!EMW(OVû] 6go@,:󰿧XQI9 SG{ҐA6*CXZ#rM& [f8+>f,ٵXx#_+v*3d!ZcwZOp!HhwYLx?v5+gsH(Dr`djc̟n^k d?XlZnm,֓ T "аg#B!"!'1?6Jc<Ӡ,G"7'T0q ;}։ENq WlF:^~n直͟b6Y lu Zgo~ KKoVps4_J9mrr4Op,jeyqK7jLd^"f. 1{MsdW"LZáF.U# (N*rO] EeŒGlӗ03.WId:Egz-w'_=EO_Ht~͛dk\:b$㌁kP) b`"lt8.g1q8dQ>QfPkHV6iXY*ٍ IQwauj8tpoZzta?IY+4q!hB{ɖt; #K;⧩Ӏk0Pd!w͍ 2 0Txx%WU7V ll BʺoШ+?M#yTI*k':+u~A邩-}QI}Og=h`&jI֓0?y݋8bʯC[s:B+\5?ﷰ٨QDdߟjҴ X8wjaM,sJi83qƿƛs *w^U[Nh{Il Fjqe6)o$KސӉfoxH>]2JPdbPb$RF޴(AV 7A)g? Kpl9=#QgG mפ޶C Wm@Ojciew7ߢ8\dj6(#5Kߛ(^̡:ĉMnII۠d;.0l\tu%,Y)PqDbnoq.z7;),^䊼6cJk 1,Z/[3Mr\h9R$De kÕ L” T3gVs(@--f)^&JZmF9ڊ:߉M>kPV^K .kh>V|1$?W8I dZHA)-,s7h)/XzߐdiD22y;e橣)y,937GEN Mtnf=M\La%<[G:נaCpn>^Ͱۚ]OHB5w68`IP-u u5ݛH[(Uq~ك6{%n_$´|$/_448jj[]aW T2,DM]ec\vӿ^/ɂ=)&7O%ַtb﯃htR}&Fts؟'K/}yT{1f*Kr:RK22\},i&kZm -ǃ4 17Hi} uHY}a,=R|~PWD| B7zIuohFQQGdYG0'lą7|jXN wwWaq|TOZ6y;̹$7Pц>A ]'bn@5\\i6xZU:&UqØ9@0v 8'(>=51Hhxj4?jYDDp#)lgOS[FbI#bxDtWD\7e*̖5 ܽ%%cvVc6aE H*}:81.ğA_;NgEJcZZY(P=~ԴvIb/zƍ$4,>>:0:2R0M3yTZJ}6e*20kdćQԏ8Lic)8 D`}.CXvnq\$zkg $1}<.'C]qpk,]l=$ot]!ͳa\P0i)gt|> /ܣw }xݒ"§}un 1+]" 40k}NAD {1ykJRi'_j)Iᷰ'erjg:ʆ i;8~曥EKI*#tAeNI9`7:DwtVOPVQjjpbztAo g*nM"8t+X*&Kݴ]\ܓ;X@)@̧ᅌ@(N|QڶkeGHMöAf(_1(y 6dhFנvbKݛ_z G(;nF @¢ 1x M QEЗnD<~WA<6U4* Cwhot%*-)IpG3diC2=M4) B4Rxފ#-%8O>Lma^Hf/^m_ 3.>XSJVfAV̭z\s&&P7b;iO4 {fY\eeOgx3ݟ+p ,+Qmga9Zy#٩idG{ Nkm 彊ntw '°%&(ψshuF=Pv>5\ L[uq,F ѝƨ&[ f<ߺlNߵ`]93@܀Kt@ǫǹuq2]Ħ4;s-<#81-R|42xp7 aU)5D䝎m1 $  KY+0Zmޠzj@_nwר9)l|8c")ل|ex|8eQVm&{V+|(/L JYODb|Խ&Zi49O.'rE,E_g{=gz~rT_M=iu1aS]KUx3ʬJ, t|Xp/9N6 .%j޿\(,6zVVl`j U|=[G[7k^VT2-ه#BW⭿ &ЏD)`>x?Ϯǎ`xR{;0ä,+b:=Z͒SȕsaeQN3,RѝNO ]ki_)&vpB:,jp+jxXbA/q:6F+O B)8|HpJ׫Ftx`^y+dmTA2bk_C7jZF.l ::TVex-J2^iۣ'xd̏5Ij7:h,)QKű4jgR6 Y[Zz˪0 S MpX[2d{D-{=?TF, !ˆkua (B"֮$Wo:hxN7)9O',:Pq}~єUGpY*a'm1<)_SksSCC~DykqWE̔ uWxYCMZ+;q}P<ZvA5I,P%-% tq ]xO=^ 3~ /`~ixw 3=aoCu A6~Fl]2rԒVD=(t9TiI؉ݔUbgvetp¤oK3,,Rero"','i⵰?tG l׺-Gop`C8nݏH>'_cZS5h<q^檃QdK$5-.Wx}`aÌGKhVIE&L;Hy4DJ?9+NZ:y0Ք㷔 _rjĻQEz$AwJyQ:ZUWz,nSzB9Aov{l /cS0oQK:?RBp&, S-?>2͹N<!D<~;aܽ,L᧏qY,JFtT@P !m&J͛^D^8Fek _*GC69+o|2nj]mB,ЌdĊk@ulǛ|1 ]dm9ȿ ~Fc=[|3!hP6uf)^ `OFy#suJ@XΝWm=J}'%NloҌH㺉R&{ˆ"oOQ/_sՕZJ06ɁE~pu8"A\^TQdI!89kBi |@Ӫ*Q5)LF1gQA/><%gNȜՔ|rF$;a=p6K?# R}GV)@(ԉ~#ZMؐɻ5ɾ=Y,da{:rz߀c=XRW%&`P3N %%8wv#vDx;eY>)h ؝}C7.s(-?M{"1GȨ[O xilE@lbiۅŁ I| k>pe%1.Z%L >8Q>/|SBcMreAL&PC.z Qu(C T#.B|DWdnM}u*Q(f:c[IQuOZ70`H^@wx\ cȽF2-QYx U;HlRVODt]Q]59)'6ᔥNiЙSrhNH \ 7hin ǽxG#0- jVʋ]$c/q:]7lƠ ÷/L2u@CcPzvB~FsGp c(,n4k_$h%ώEh3\Bk==VU]{}rT8,T"#LwC#~ ]d+pk]ύ NKhTy>_2Hd|M`u穎~MFbC:\&Fԏ#ubrh76oELbҘ ?T B;>'>V*fLɘF-6BNa=F؊92Q+3d29]E.N\6%dt#VS$N}V O2(W˘VwHMTN\[$8HG2 }RqEtYT Jo8d'1~ 2iM0w)'$՞z%W3צ,:\)xbc n %Ak*J^-{ʮ,VN8sibJ#V$AZ$ʿq/Vi}KrGw^^ƮTk/З 9@5k5k3?&-ģ{[Lbw!IzlHرZ8Xd؂&q,l8-)1 ! ˽Gd郜ӌU $ k7VՊZ6%tÝL:IG&wdJ!w!R{@M8R)~Db(=Rt0AScc2Sqɰ2+a~k)CsH%mOϠAփf-\x+Оz6qnmlE!-1 a}Xޫ{Li#/J>bMrT9ԋ:]P>rJ-s Hv\W o[`p A|iP ֓}|j";Zq<.XbZغdn>BeTm,rCltVՁ\>~0#?4϶M] 8ֲ{8dIQl&Gˉ Ca7#t t6vpWԱcDrO $E7<~vmC2+6z4:1eHUg$^59 e*dXIbJ`qs 7V 2\Tf%(JBgrhTaL;~z .JL/e=cI3@\f':l^=-zg5܅0uύDz9FM*Qd ֒zզ(`;ZbE@6s0QLm&IƦ}Ctr| @k0$z@3iX*ʟeCHV[_;UއFl@hV8ς%g,X=vDS\&N` /bߕeyoFdKԌ卑kPF ]5e#M zkA-DWiciys7`ȉ xZ0B(uԸg4yhE.A3!odC%XsGa4=wLTƿ0V}Ks*K7}QNIA^qWfSR=*DdO TwBr". ޯc/Gl _!A wS-1peUg1+zP+ӫu7@چ6ΈGgKa8*W !ٿpCej*?*G#Cg+n9Y8ZGx$?'rm9AC3vſxӟTM>Τ f ͻ (U݀ޢݏzAuV,7l T !Nj#K]I(:#{$!,OOx!,~bOДmqrcR]c's0"On4Csh9Q~H!5 K~>cH`~BY+' 39{}mIIK?eAW1 ;?$'{LK9i&:^r|?X mm]M_GCjBVmyi*p%fCDtE0 G9y28Kee6a&Z-6u-UABeN#=6<2>XGX#H:()#7n ?G\s}3K⨏BMk){ZPyuԎtMiVØ}zu&;W@pJIED,_05\?UCVo 3{®pV0W~R $ϻn՛OtÐjB.I荷o% P+_7)/dGۈLobt! $PҳD I{~O(5УP.t&CM/,J!|?WoqYĴ(jwo*ǐG͖wT4H\*Nh3C~xƾ3hN l\L$#M񎗹)Y/ es;'oY[xC4kߓ:5 $nRodnqWMή-*x I7kfjԐq"f6 ö,cP( v+HW>0OwC!Ѩ)g-lɳӤb&t5򤎎L55vzǼ,l+ɝfLnAh"7heޑM$Fݨ$=tk8[KگՕ9mTt1o΁MIԲv{m(À_nqٙ~GbNJ֥289rqKDؼٺBM4P{8Ed,UE0Z< F}D ytiKpl=nA*1>sH!tp odW̃.ABgH (m ؝rg)[$78}幡H|‚E\ZkT,D1)і]󛏋aMШɝS]X> Q>%MH>"6Xdo" ``7>j2e}2ycKYh!+l AQPׂ$J[U_ot?; 9Q6f6F:ɛ,sJ׆ [QYLA(&(/%RzrFԑS2u%؁u+u<D G,yhNUh:Bay(? k`_77':8xzS+s}?n9֏TSFf!mK 1U"UE4f1sOH<0%4 }@0K{^f$?*O,jCd^r"vFaAU,-ZzU#> 2t9~/-qQ6=ua"s#g:z!/j#T9 `Yv<6M+kՑ4i[_~֋3U ǹCy>QsA ԙq7z7] ܏eO_ ^oƹIplkϯK$W|1"T*c,YU@#fya>&zDѿ3n#sAP :Uj8x ד< 0'L"T:ᐊ3uAWI,e^HBZmcPD| 3kL͆p @x8ocʙM<|ybDAd .rpe 'N]wY!%5p|8,O\7;*×oڄeuZ޷C8ĤŜNALGI>VV*T9eÔ @$zP[Ii;+QAFH˛ǚ;/Ìwaq^>ֈ+" +@|%>7MVg+8VBg=ڡ!6W,+sK~|c a ơ$*kuSkiM-S*'3yo+is o\hwUyp4T%4q125Oo&,X{ ?w@"Fu`I^3o5ct(HoPZUE8L`*#%+v+a+#fC5E:KK}E6$p@g#l}t6 U 1U]{!Eۼi$}-瓰} NҤqKW^ǘ.j@كMOX64^TSnu=ՆAǔ!3=FE`E`6 qswRF8Q:ssty4F{O$Bї$Kom2 XJ2tNN%|=3,̕6} T 8xnӅHu)ky/E=&@)#8[4v֎јK IU_e,x'%DTk>57+9 ;_ Ϋ-bw9>8w1Y2gi2ed%z_F|hy NEhEO8"b& n|?AlxymW m{7A2f0|RM$S~aHHIX{eC=Lze 4IN`zWnc yO W*HLiԣvur7gl)4\?d%!#C:8內%d?Uzʹ;E~ēm t6[E7kt{B@T2ی T{(5Ÿv/vu40&v;)3=Pj:[!uĂ<^N+JZW]$\=8rKV|66] V3;> 1 \ V;*Ȝ0J&m}#OT$`ASс[M\f*  ,5 L=YuЮ,1տH qKP%lN'~<4^Oh'Xrof."5yܰ>F qە^QWPrszREr)Lfv,:\BvQ:V;giB)pKs2!P1`S;(8:R9oz\7Ђ/t2d$?d0lvOaz'l vKʣC!.\-.E# &P)+AB E0cΒ؁b.w\qAkx_O|{ Ea$Ma&m9P|b;-ƥJB6 n"o)7=y`̣C j8n3EI 9u%܇(Kfo !m ZbuP(ϘoK2jΣYƯ嵜?h5rWBM:ZXvՕ#S P8N%S pY&t L2 sYUqX7ar,cKN]rwz~U"RÛ_.UC[U9%)70HڮkxLA^}aw  aN0NREMF<{E߭_/2 ť_CFh#"Ǎ-)X]~A ʮ Y1tir)߿:L/s=IvlYQYW^@tVzL7)JP p<]?p%aJ$O+5S(.O0FMX"n 3+.ߩN\`?.,# .AGAb^0' K>aƚ=ŻɤAXv3@ٛZ>Up8ӗ*m˽=u1I4UE7M/*ԩ\+6t*13OIc8# w@:uJ Zg'Z+4 ,5".--;Վhm 0>Kɱ9s㑏⠼A]5# $;Z45]Й#IE>~!4JDwV#f)ԄѾq={Q@/Y%dgQ#Vѽ_rݏ;G>,bsVhN=+MP|5W\,m4$‰v>$e%W?F+tbChPW7h1ţ׷!,wQ#T-G_hU`cYt? {HIdOqOuClvTrĦM3҃ h&k߻ڹ; ۥl : DzQiNKF=;g1:KhJ^փop>_Ox2|RU@v4:K\tQ-o}]4Q?b{#F~ߒ# ҏ{,`_ç]G"5Ţ7[P넵=fبYnCA3<}h 6/h m7_ccl3cE0xd%LJS7gnv캺(|e7xl}򺘚/(C8fSHmTpdٿZu7=,(X.0WZTA5Y'= 4 a a|?HJDhX-za6 <jqL6;G#&Ҭ3[5%&}spQv}w }}X c] ! ϛwH'%*?OQ?\w%|LXUxmYb>%:e>( =q[e QIc:h[h,M:_ȼ;dUƜ#AZ YoM]n]ex|s^q>Udھ8b;m5v-m]4*S'6^Vs}Z⓳w re, T ZMܰ:eԭBu\ p+Ikű'Qc7ԟ% dJr1"@izPhn=SkS"5Ј9cЕH (3 ?#*iGǺnD>TF6*V.㑿ib$fSr.kzȶ1İCpk1!pOasCQG u2WfxÿB(e:@ې5)W||&^֐V N=EL>D >RHً$6Em`6@ Ems'3"dA.j"##:DK$>1_=K^c渝@s*S0~H!e|Z-sM#ʻ%.!TDꎒ6.v$ՐœW laR_ 9׈ъ]= Zsz} [SJPI9Uund/wo\@Fr$"'$~L*@)o[9dYrR| c9|t1! /-# ^]PQ8 ^bw@l(eaDօc}DPP;Y tW`+Ud5!]mHt(ϝ{fdga51Cw*^E&Nu&ă%;h)Ro<^R E:o֚4OW;IKQ8feA6̱z")|6dr}<N2W:Vx=EfRdEZG.KHcHt;T^(Fx^ˍeXD|I30Ҫo &*{+ ^y5!j%ROum9b2MܗW˗a[N;D.? 7Y0+F뿜j\=峙O|8q#r&9raHi>Q 15P]ZWQz=&WSr_Ji蛝IZO|3{I(Lڨ{P~FZӷErB Y3in1<\ +N$?VaT>) U߇.\ad*RZ!T!>+ĶVz6 XƆ@LeaMex>#iZ".pduҥƉovo5F*w p;(Fo2L2*Jn1nΞgD@I,jgrmѦyV|@QPPTyAek*!'qyT)! P{mahmԁ=h1++od՚~+YKL rI?.+N,5jX*'r\X\DK)a7iK̷S=K}e)ܖrȴ!bCy岄Z2!+!,,1ꫨ "٤ !rR)svm:Ȯ`tDѸ|OV,', ߇!&lxbOBYi>Qk wB#SA< /$Kٴ r/VNsǴl9zyNz¾;f+W ,nlZ-m4^`=fJ!2qk0zAPw3cYPC` @&!`H.}8ĨMLWi6>U@\El9PPX\v; #uUyF%)]2\DE#/OtDf#ѸDKk7{J?6D?6-Yy@ $Zu}ȒpxNl=̶pʍ. ;8`guQf {O "sc?v]%htk^F BvhKJ]Od\Xޮ4N$)Xf ,ޞ]!R@k/5vclY-$ѕ>\~|.  s27Uӌ .n/p:e0 K -9Sl 88'H,ɎsH%xȮׁ?u[`xd%h7jcx⠛=&h5"y`?StoS]SvEqp[E=SBZ <[1N46o0dk3nόT Kݜۻ~Xt$zO7 ~\,=׿A$U 4}'ѡq`i +ABs>WsO"/T( H "D!̡) T%(i(_GawZ K_תٶۆ oX&R<wrř(&y<-XSȸ4CžH?%3c"#,L(E7:Q-"5C~kѿ}j Dx@$! TyQ#A!7!M?`$=T4mr %Hwc hVsm"!ﶡ"2d$pzE:7"$Q'뼟WvzG,@R Y&~dNcs9ؚ#܍B8у+cz(I{C SBɶs+TÅx# -L1S4c/ZݺFl%"{ާȊq]DG j iSXؾ xvoBf}bpq#'Q}ywg'IebP$h4 y})cguVgV´yp}.;:IȝM{A[ZyĺM*qlaAB`wyAH+z A,ӜiyawZ: bKw<@knSڞP߻`Rw=$sm]5+OE<_*Ζ"I<ڷLvwOq=gp=G^<La+ڄcRÖBNB/l #x6rw_u;S˜#N3q1V!; g/FRq#D.}ޤ+#;܊X:=$YӴ ˌ7 FF_ֻѾJsM jk*(d Ҩ8uD/"@dJ|0w\kLݶ 5F "zlGzOن,H?/Dkh)JRXoTF9x;bC.\C:*-4/Cx%mqdܯ$OA'?,4.@\O}w7渘1܇}^w;q&_̱BMs7鋋/A 46 Vt$Ͷ64/?PJh?K43DEUy/"4gRsJJXnFOS2Ш@~k<^mA=<Ӄ>;`)h=>T1N ZqS!}GtG%zZ>& zbĦ0*G"z\$2h&=M\f2PW7G|x(c5x>fàxiQtyaXD?'W0â`] Ӷ :lX5-J|G)a2A3SvF `YXZL(օ\- و4Ȟ mwj0'gq\ ntUuƚŔ(^) ǤNd3Fw$7\G?–bMvX *MIf>1'xX9c3?󁟍gbCOr=ފ;`J%:\ʕ )c2tRjy0x'Q@XMUf<禡 Jd-L-]CuPʐ:?gJrv8/?d 6|YyS%RV|5HR\E`Nl4]::O}21Qڐ~EUr,_50Se  :TV.蓛2P_(sԼ84>÷fL-|B~(D4o>໦DkeX4k7|7{vTY'2`\~6 06xԗ|g0hܳBhhΒ5_y0ǁfKz(C7)S6(M\OWA0:GiT¶X\ USmmR$O_:b |$ҴgLŔ2671Ti|TG``;E:r.]a*M1t'}AdnupmM2: FY*w3M^ߺT2Y Pt1-A0DR bvlX ;r U6gWjG#7^ &FL:b)PFD:i y|8?lLk@I+I~&xBWTeZ 0DxUpP/<$8)R~n,/W'3R}(0o5[(Ucv80cx%tH9Sx &4eP\OsjV Cy| 6eɮ.nJչ9 ,WI_%럋v(m?5 6u.!2 vF*Cr4#:⊘BXer3<}_XңLpOM̴?눛KzLd2iNl.KJ3ԞӃı]vwL5'8ZUV[,^ +ԵΨ!"!G ̏uYߧ:sM[c-3uEVtflٹMuNtpa˹x $i|;6Tn6DJku*T& m%a0<\ճUqkX=2t}L}E5@:V3W^e_:Tp 9tsк݀Ńe=2+aZ߸)n#{[Z/U g"4nOŶt40ӻdqi7i:\O>Q c){10oyA<rR>^0YB_>R!j"RbE.iBr9o50̿ { HZ9vM>7iZBt;) Bq[.V[p! ,CjF2*hl<' PD_iX45(eH3 Ȓ߸/ Z|҂^JX)8N" m3t ƶ>Z4jC¡:/~!025F~fjqʛ1w U)ICz?Qj8 !쵾(!ߠpg:s^`}i!x-z.C YJ#i6eS`bp{<+}+X{ϏBwxSfV*A5p6ñ!׮'w>61Zn;x?%LhR sRqLԃsNV_,$qR*wb]Ylɲ->zɖѕnZ{I>G8E`FO61jb[77)r8TFQ-Q~%o^z@U^hh[]/- ǭ5N5ާO0n aQ2DqIALLzVqka'8Mv`<ކө7Êof ~|Aȓ6EBHӛK&5_W.#Zh+fX{[zT+q8*6^/cmaXry{KǺ,p=`YBֱՠ1voJv [P"b4`h8M{nojɯ)o5O'ҔV6YOQ}DÃ& JJ o $.U|٪m<9+u"k#;T@{'">J=:~U}<Y'@dw vf9#~66/I<W i!M1BmKo3-N-ϽȠ+N;a3s%(Dm|D \SR*rnfvkAmcp̎olU '-3yܲ,E4> 0B3H/$>Kb)d84 ][[u8ߥ-KbI 涉 ) ̫ΡTl9sa.ģvǦvӪߏk'kx2dDwᤄ\MKU4&MɖG?b@g9`߫ 7&o c]vXȋ5@uOGGH叶sB6:#; +ikO;[1ޛj3q@7NJ1lJ%ݦf*(tᎮjxH*B(Em[ sP[1T NBL5Agv"hr@눁{.4qʈ`@*PwE+NWq4\Eb CeZ(;9Ȝpm'XEГP7|bv)7m2b֭|joQh'sݘQE_e]!.h^wMN3KNrF W L-2jcqmmN0 Uo7 AX!\\ T΂q\rPi:XJCV yG w*b@*C\9dZ6=au :Qfm='W,=&jv\?E]ifs,Ap14kZ p`ӯ%(T; ./*/.Rp &Kro+Ęd nxh+7^tKF0\$Ba poS'*I ߺ_!.%le}Q"Z OϥV0F5m1髑Ψ C1 Q)U5dSQWWͲ]y2@au}1h&~RéJop;d%^)9)Fl;쾕E@HיUk1x!9veARLA* GR㟡3G49o@ˢk- )/sis(hݬ-bȮbU}l^9X WG?Mx&͟;jxeIaAx~vchZֺyڕn:g}^V@,cU!1f"Zl}^kؾ܅DoszܟR ]#Sc4W7Lr 8F5}b\ʎSH@P/*MoIG5纷 h:л$- |g)ֽh[h\IM@xRw/* k|Iȷ{'zc|G4̓-V& 6*je)^HCתČ᫮`l MI`dhQ.ɕJj_ScDdAt 7~tU\HaaZ'W Rr%9h`pn6' /^ɶ2U(GvglxZ%`hQLٙBl#55U;l!,g3 2WMiMMhLU3kT)kbˎmQ* DHpP (ao hbX%#j9?p{AA"Z(]F OqU8̬&OEEʢ`Nk}z*1ÕZBDaK>A[tvw);$ 8*Stlz6:)aW2yGۊA@ j=HrȪȼID?rD5 Fېx]bbÞm}Wƶn&:3GlCғ HB^aIU;nݤx-|#N0*1)#x!4]vd4=l_$oi{6Iyج$ŻPsS)CF^U~M%geW(!l[$lYR˫@iYVi_XCrk[wIVP}'ᆭpIv$&oFо/D|Z e$$L\f'E;98;gquԄPb$G8#vhAM"T9 %?Cf(5N-<9ёǓ^zݺ\=uE 3lL1 0\go~s355ʊS]"sЉaΜ{F|5 soN$&5!=iHd[qvU^m<MfGVIR4N+/C1ЋsrRq>InH,Z qm^aiPz6[[Q' ~~ y'Z2T(3a3[şv6 xd雺xJMU *\fdVG7cHل2&\98>Z-cn\=ұS"$#cݏS4|L}Q҇|k/{;."]#JSC=8[\N~jk UnI*p_r+F,z @BئRN HJߘf֍W=?VG0T9[`k'Cm$hr|03!*H[ _+ dF" &I@V V8MCE!=uܝ"eՆw!*jpV9]C"T5%CM_x,Qoaġ蚂>U}>(^fr0XdV{"(3@DKc4 =Pd-jǯ_:,/GkcA!2t鋺<ZkJ>?w|]ξJYHd7TwC Qt^% ӹwQJ!$lD=3<\͈4r;[='4n1^bT1s]H%Ͱ웘 WLh-\>ȧg 'zp-KF3x[,XXMu'$Z*FibVNtj~ Gwh727.UMhOwk6;]5RD''Q.}H8.a+(^\m:VIL P[c4}{斈G^<ՊkpŘHWf >r']4^bRtqe lʯ^&\ں5xn4C-)Nf~jVv-tM-ZxkI|Z(fr[p2P&z{ (2!S%,67 [&mVςPxʶ];>EZlm**aIe?%]L l ĠqurA2Xۛn\~WcF1⑙uȷsnO;:̠+1:RP00퀢p(^w.W^'lX #=VaW2)Pw1F떽D[qar|vii9+mAS^;}^y/ބ`uͳlzI8 c erq"t|72圯.+y&Fi2mu^Ĕo 荬^+ص Su24obcǘᯖ{-b! N1 '<"gbVc~>o-hמ)rI&nA}DapGWwBTlkv V i]QW."l y rW킙(}WYlFp9%{c|%-ǍB760_FnSm7dcqZ+-E06 D*^W_SxG}HM6=2`;}<a!b n4.r)t{NH o\؇< ]5 ±5QɗYcK1 ngF].wGb.|- /wJm>oSv^w6% dgDbG>z^naPPyY 5ULڕ˄jꆼRw%oM`'9 1/5EC*Ϥ"NɎ_o84G /d3Z&r]N#=#x  qdsSC" @P%qB3] )K랂L`HQ_BT1݁S -e"(17Zh2#4^,]ĥ&BmF|ݨ=(?Cl-dGpkuSOf uYw#{>A72γ+v@Jl`jc]+FZW *?um.n1@v">.tB B `1_1KigQ,ϘJ9U,Ye@rP5{DBU8 YU5o4,#1cȞShipb+-|] rЀu̫x5Tj Rf 4"OMg[Lz[Ef4K=2Et1;.t|8Ν]Y]Ojxʜ!(k>_-wƳrfJ{ZI:Qm(~9]Wj1i@VɾG04܊̥a|{/2zD~r0/lqJ}a3b p;%CCȸa]+n'/!HdRg;/ 37f/Z<1&IYA H@ӑI532,^sEk dTvw *æ 4?TP4J988ϠxI]4HedKhnu񑤶U B {vO@˯¥3l*C'aqyiYϔIktd8ڵT:g#$2E~LPy^&GΎ)t|=б0D#9{uWx^(5$8SOl'=xH\)IE&8)T\g`;ks8n,|R0|T`9]_Z] ej׉DC3Dldźit- z`3.zv.xx@3g;h洚`A:Jj=emkWkۯ[Ő)doAVoMs.]_K-.K0TR[M|[s<6WA+ cnݷ݃sz+bu^|CgQ![v}ϹT9Xxغߊ d֑he^a(XV %?6JX ޷ V؋ `HX 4jR!30`>c )@7z `orO'm/MM ڏXKfeЍrM;i7sޘn;p.%aHw4Xʼn`Gd< x;B{`ԫ fvr /'Byo,%*eͮY{$9 o{d<Ѵ 1J9ޥ8O6f^80_K€=h5$E?Pd_FގtlY*iEOե<Ņ/WLJ1\ !N.?U-*E%Szcp7mrg00bQT=Eb[c Ysn0V}(\WmY%Y(Wܜ\M[rJW. Z$*8Js6zbd+>k /$[:*!RQ6y/ !F-i2yHG5|_Tϣ~)A,ȕb~Ul8f$q|)vh͟{!(_ xq TNcf= "0F2U{.FӼryZ#th>b2#m52BZ,&F'7 q*ߛ^g UL|Ux~WEGmp4TArF-K2x zj[tW7jG`g2:_ FKapm}3sp,nr~i |nL)yRr<{dþtC?ߌNꖊ0kvғKbl#Yr" Xz)PZ&u~J;})4ϞHN UX/ʵL4p! PFIB4FwBZfD"Zϙ;XT_;@f|hRcCMjVȌ Xj *P-FXip`O?kp9ڿRϰj[KI|e l'vxcFg_Q9g x `K#+ iZՕMOuK@}8Pp =m AaL4lGIu G\dG;:½*w =@D=s'[:v& zJq8dzx4Q5Pr죦fm̺J'aI<ryI4>iGB.@ s \o G]}h@ܕ F"jӍ4E׈5gؕ m,=^Kh?K%_սɨ`+@|qukk68;:56K=ʋl> Fq. ʪ}k!,#);/$:C%k10;7Pک!׻"ƶ&Ǒ\S0ƶJ\.,a]' $RFXqU(NGUSK%9Xx]T~8RPzYmoƚ1婕[fbjFft٠5bnNT$*QF!ػIP-Pi=VE.)\QO%-`\gF Wp闚kt֘{lO[FU>z ޶^I"vgyv*oϐVzͱ,@fvXk&;*I{7&@WCFhag:aRlQXG0 BC%u9! ^ˆuQx܋Zmtu EږOQ-g<Ŗ7$`Ӓ#{r#DG֒趖 jl;!wfzV`O+9Z!j;qOuSh;x8%tEP%EaygbLS°<̵ *c1[Ay{K9<ʹʭ-g7?] -&&0=}Pk7&OB L*@wm.Ǟ@z91)F$ ?dN]F,*~NuI|Qh~h G.CU妐|ygs|KiU%va"rh7D"|B@GPz7+GND#޹) *§1}ų tЅWV=*I9 9<@Gz~vn} >@+:(Cs'f?274Vsι'(A EN9P)(MYљ ,Kqgޯa;u%V '͛W_z'ldP[S+_#V^Tv,cJZ8t i {g" 8ϡZbL@8zbkt DfY N _[˅A+BSE8"6* U#)ۻ8̑ &gvb.Ɠ yMD@[PI/Յڟ ۢxg8^[o˛gQP `Q0Fk ZKF 3wPI" BAtHZC\=B (]Njެd"HZ]8FbR4y{lOrq7@ȹO(b|:35Eq)DDMijJW"J^o V3L (e{Q= S& I'3|=K,gօ8V2;xj'-X^m=vݪ T:k7mp@_"||@ӟٴy2DI:/\R@r^OujlI[2"]x%#^Ն^I)Usw+HN4b}ņdDo"h¾7rэUʈ?cèE+iCU%_iJYtE*K-:K?fyI;W,_)NaC#m'LdT9ӆf5i_x弎(sŢti 3&* \52&D8L5Pmhqں r5 BIgzȿ[^tb J<#SK xiD^9G^"TL$39U͵-79&)髪xz6^iﵼL)$/9\x/-6;"X2>H[H4 `o4U}0pׇr-d^.. "g۰YS|"Laiw-JF\Sx0/?93t.˖>*A2А |<*\6Œ=q&%6pN72Z~7f&)2ӻѤAj.iM\'깠'fr9LKVKf40cs7p)y^҇@夯 ^| HE`67(c!\mf_rf(YgG np >/qY|͹AP/INFL6)t2QREMcHsIXWW㖰Ʒi^rsH -6L{ (b/ս&{Lߏ07_\OEiI9h [%A@^ !D4z_8:vcĢyյ˛ "qR+,^!R2}=UFS̐}UfĢDPZ 7]xL{7Xʟrq!0jOn[ht41 4vgEw!k;=j/u J8^l7QbN0gGYf&Qu t,R,\j^HV5|6az g,4"]WQ2 vfj)_v3E1c#<1\2`#xp2rK0RrqgAv.xΟS%9v<4,`M1l.zij% "ưqj^ l%w7BSFR]RcwUpE(2DffDa=1JмtcF48qhPEFg-'B&r9JұCAe-q&dGW-)" , RYddF[sڹ~Or51$ګaROEvP2[ֱ7v'A8fԿFrYaۗC<=1") iz3̞/ڨXȱڋJ}Dl.Pf֊FB> *R:Mo-0!l lh)4ZH]zt܇ ʅ$52yWcRi$R/nBi)l*_P^70 ihO&%FƲ2N'cIx, mw+`P`?aU ?3.LwRbT'PIa25rXj-_UnNQUPG5&gۊ\l4Ӫ&6'Ҝ| M5LzڍyQ~L!-,C4Y*ZAWyr9[&%RA'-kJY@o 8B"Y=xzj2J%@ڷ=عvPVsO†>H1'@הF*:憱B#S[8Y[`;*jlMNm5w,?ߊ bu_& B-D{o"2n9}BT"ϔb*giAjfӳR÷mfP࿫KB- dx(s_x5+vl;܃|v,k?īU)V1+R" _Wx I:5n>^\!& sEn}[ꭤrq5]s\BFgU3t΅2 qi-w =N! [+ ^7~VcVS`;Y|<7HUÜnl3juϼ/\&HЀ{d̳n*_ e#($ BQ.zcfOޞi> ~Z4Ɍ%mu9iy )J[{Y}LRP^]ɝ L DS]<Ü>wBF<;Uhd {"V@dwߡ4dpburŽ]  WVa6خ+i/)(l-IY#t7g9E T` 5iwhE ^'Dj=e*M3퐺iS΃/(g.>^LmZ- o SniT0þ5\{-^Zɉ1w&տP*SH9-o}hSΖj=K(~NX5FD% %$iG\fq q caNP8DG*J[sϺWj)|bڱY zMWY 21Ü6&χ @m@E ;A΢_oFX/" ZJŷVczԈsp?X1@h>=@b ݪ-g F^^ൄ`Ξcw#?Rа(%%e$Od\񪦒G1D_gYЅM2>  !F@ω_i -+ܩGIH7-oÌ2e}{o-zx)ME %_(J;S?|uѪi7qmt|eD|% (={<.mY%?2t.M?]ۂv/lC#y9YHz8;ը6=W|MNU*T|6`zvAh?1yJ ,0.U')u^buvwIDpŴy_|b"&pRnYuX+ƚrTDžlqp8xE1td_u(sGN+z h\)ݠFr]ޏ 8wJ5IRdzؚa67WجnZt/! Hx"5;& 8&! ws?[K>%T~o&^}bD6H Y_ u5^ܼauNHG;s$">[U1,oos; rs_rϿ[>tRF"p;4=oUy8ySz}A'ǨoMbLq | JU 6a N؊a|(h=`肽y†8#9ܤ>IAgV-i/)O#њF#`*eb\Q`C^ͻ wpl?Jw03hVנ+Ty \V *T6_@s=O7sjNcS(Na=@.>f/CTt,vP㶧uao\oؚN(> kޚ+{yA}qi&z|uZ3+;ˮ_5%]}'O$}z!"mqi -vDci 4!tG6{iEݔ Ⲁ`$;~򧏏`reuߵ 4q.sG SF%媫Jsh$RY O~ Ƙ/auK ?ykWp%jE>xʥ#)AQ!Ot^xYQ8iNL) M`h~)1jX 9"JH!'zzP]W"׸ufWNtbcDdIX# rW\9hӫ'1dde{geG*ʽ^by*<[ +϶g>B't=Ȉꉩ[;\:kVD`$4?2?,x!^h/:}e}h?{9e sj[`pV_'J筜F!n!Lc$F٦! C*]$,wݪquI1g۾, 6R\npՒHlwMS MiZAϻR196nl<x4}feψnt; :냁_d0Z?LOMrno Ə>L/{'M;=Ģح%inMMe.hڗ"Ze45~K9?5Ȇ]H?܉V4n}( ȂYbac¼_MP( Jg:&;EFAțW?0PQ>4O-7NhfVѸG7OJ9M55p ޭ2,d 53EAkٛӻ!SCBD#]qa\~,uH@/VVAB0]H\4HyZVn䂽\ lhZ]Ed:=+ -%DJx0g1_d# Ǝ/9Mt~y#)y*Bt*`4> &CTI{r~%,HulFYB'iU߁2\4Ҡ{(NexK+4#J,* 6 c?+\8We0ݓ҄[i/MjoYkHKY6eZWX,![ j}3b%M;9kXf^KhJ]R%8U diEn擛Y=HjY#1>+8"oGE"ԇTpN3BV9:t?ç/f):<& ThfU >vS+Mr6@ԯMj9+/{[4MT?jL*R=Ek.R;[ɴ24~AfG_7c$\ 'ҏ'ʟ/J$uߢir%ٴȜosGoor⟁tr{>]* h쮧S˯%{3Ȝ ."t1y8 D^£r K&R}?o\omv]WOq'C#S lT9:!,2wCaɍ7xRϾe{(HB6{wioKyp ͏ЖDj8PH !v-^)ASJ'^fˎ^ ڼ`QHlW5D'xa$8^U㳝PL=$Y5о4Z[ɬބ܁SRe[.@~UP8e6r,_fcdQyoL-ͷx0S5Vp񋞙x"1dhujSVnfâj:ajaRG(=rd\M4dKoy-"XO[ï;1W$mڃqCKI~qQ.! N/pLo4#WޛR{`,A`rϩxjT3El-\/G pHg76.7S\[-Oyg^e*Q!t{GJQ=l?ZO+IyPh(>|+cY]n7h6F=2\lܧk|?QWw "d|eOL R}8:gd{^yjmKc ~W!ierZ!̊l״]#zm[Mwpsf`=߭|^Ƙjv}Q2ɸIKP{iXtm~D%n1X}o S^zf"S%ƞ/t,岅c6"~ 'Y2aK7eKVaY 4>*ۛNů]u Vn0*/D0)jYNbz'fC$ߧꤸnR.ȶRTAW2Y}#!mk}2E p jJCf;]`vYB^[D܏EpҎ~,y(W6|}?**J_~9(f\g]ْ;bQ@i,N0۞ |K/\u !v-gFȿb[x{I۩ !޼9ĐgQ7 &/7QEܮK.)AGf~PY$z 1 M)`$;hxRHI(%=fEgc nlS gß 2Ll &jC:1{Jcb\%x̸7 Bn"O3IJ,TU{WD=|<&l&n2ʪon*؁t NG0$AJ PMc o8F& Ty&'FZTIy$bCTzNNM.7\) `Uzf ޞe<<5}CRހ*8Pۦĺ5_\>.NS]>qɑ%"3ltۊ<@D* tHٲ%- jwk#Tjh* 뒗g:gyk(j s)*DEJA:Jeϛ~lд}Ŝyշ\f^} ط2gF[ rFR! JBW6Ӂl𳣱&T6t(+E )Ȫb9&6m7݉oݿ oEG5b#7&f*a>4 Iu*75K`"".AV!Su`kS*snn]'J#1Zifp`80|`hO m LU:z&ð j>Z*l Ιfiw{vų/C0chE .ӤI|(B&ZA1;3D)-.'GE)J h@Diڧ1)]37?bH*5\$F0vɻ2p pS@ SsYCXiDEC9EO1SSf26_ gqT׀y7 lSnh|!_Ɗ4*.AdK1bmRsź`.uŞO)I`ѻ|ꊢX놾teZ: nk9m)0qUqs~ZQ'gVEODfٸ-sqWH@ӢPmK%ZYrGe-l FUϖj?4.YQrZ#[|Pժ$dKOeoİ2v9V4ryn!;"'SjU<WPE\'3MVtla_%|tg{n:D G!u44nwT"3ɲɡ˵O|Rڳ?G 4 ';obBPoI]?cs- g(Leܒ;SPuشKx-bNiz|w6]AJ+%rW˱}anfl J=GϿL50^ꉸ!&oJ$n&/w2D7c}ͧ '}40H[ġ0>RR, -iQUi\1"coD$(J/P(*7m'i/5=V:0£U\qu- 3BHlESK#XX{H8ZⶎJٟ| 1(8D&=Svb>/BYxa*wGBwS%ي]w/]AsG5*`Y8(~g2ۀq''u/ОJvWZI @P{bkcZλ \ mY}.3omu?"BEL},9Š 5N2 ,>͢9MgAQ3R֢|VbnHUj*W/p/us7"gOzZI d^6!53VsNܯ>ϢB;{Ye~N xT[v3z+!IW1䐯9 # [(5H:Eӝv} Lp@a$z"Fz4:m9C;XqAłvy[$Ut*`ZUCx,אǑ͚zzƬƔPpcZK1Eܡmʮabr(= +4|̏.ôlR2/ 63ТwwDOVJQpgQ* ܭZfQ QNX7 $+h~:R#䑺1kUT[yy ڌjS@:O;ɉȽ侖oҙ4Os'nrFⴖO,CG^S8ߌS+B.kĨx-d+N_՞R(1<ˆx-1l=&ur%rg#|w?#qab0/nG"M&4~2H ԍz^1c.f3w &`&1D\٫Ut&o%X/BX}H(z أ X? "yOn)%TI5= !}PT )Wx ^}|9DL!*Ŋ%hDaΜ"O&lz"[j2~R8sZ5! }:VkF96$1[Q~7Ǭ0lFnrs^i4 ^o]aGѢIϰ 2?4!X:.rdbx>7.P2rk. \3C;|֢k5_E-@<&|Չb6HvY#$k I72bmd7BƯ?|}窗SA`Z}|~@S ֌0e*Ia*n,Q9C5AҜJzB}通<]DgQI0=b)tF=vr_9n~K%ƴOrӸ"Եo 9 RYq!J=T>ڢ`莚E(-JNcJU X/&IG{5# ܭʍ@-t_KFw 5q#ry̲Ń6 gQ %%NdY\@anݚ;0bsE(_ܝ.5!1`|oOlf ]5꾾c~T$"EljbT )ޛW] .vEFqd&$i~}Ē_OD Z+*Gl-6g۝ cokN24WEB# i5sy,]GPCA)+T3rJ|"WzMǵ&`ij jhN)tc)CVMSAltSP&z])4D%22-Q?g>i [}T&ZdMk[:ݾEw&iݡYYZM˱1TtM{ϼ-Z#th-4d-Hd1]yIZ7KB)%rF0PD; $DXzM]?!Cic[dVdu+ -Ҹz$x {/j3Vj SQCP&^}Gw:z(3h\8=P:+k_ցΑy 6NY"M:MxsQ)z5BߍN"KE_ߝs~` :9<-{(>P:f txb̧~;zu=ҍ_25 % i I/'\' >xb6/-n! *yrǫċ<{aJ𸳣AV93I cDrIEYm-3@鬼Ӕ:L,6bM%Qx%$d-z Yue]7}L1u]WH.Y7guֻPC!!2u{d""93 =l6 ]z/)6Sw_E^L߸LI ֠spu[$~{#>=4fn(r.dʨ~ y䓃)|$ݾǀ?0k[PүRbiũź\)אx0Sr`oZILN7!R0u^mG`A=u4J<;Kba&Iؖ8\P0f.FL[;F.,jVV?H3OV8\"_J0POpIlPiΡHXUsyvѭYe*WsGSE5n9 K#t:=O:\K[|Jd% p$1ٜ QbH\TKh0 >E _U'lv;,}3C.epc᭖KHmD7=]Cs G}:LDUt`<#31R8g7PVi$׮/يM6?Z, }9`Ta?f;?E,!L>)Y ߠ(z՞MN,"p柢zh.JI qN ?&M̘1TCY#2xq#۸ÿe}3znf=JN\ȞC=[g5I`kNZ uU7;ٵHrX&;@A}p~7ݾ;04ĩ=F08Ķ-\lKSH8%>:y u;"q  _#=K`ͯGg5thq@&r/ >V~=7зhaZFMC 8s/sݭ̗w7e%q8Xs ۠|LA2qWakHOPL#=.fצ˔C3Dc=DgEٓB4*T<(iYev_7?OtP܇^w? 3P,TT!ut! rOyDi4̪Zlb_CD)[Թ/4Z#GGA >OHlS"`sSl._mO,~`}X 5iv`'_BO@R֥CRy Pv{Ҹ{fz^0nG7H3Elėd[oԝI/p#:'^xՙӦw/lQ.W#guX<~ Uc.h wvíO\[z|Ě$OFh<9r5R- =ك`q8mxjj2|=sg{_`Q[7y>քG󏐴3)jYhdD Frps3e͓zz#z0 qb;Rzg> QT /*%6_Xg! 2wɈlt-9;RQQꑦ2^pZ{7}~|4_?XE%j<өL~iզ,uG*.Q2[Z]@VH3[t;y;ޡ?|Y,Тr\†w,Xh}AoL @ܗ<{HEO$!rT%nh\ռ #l]%vB(XTڈEgh,7_AOѤ/@U8!v8x$`>*YJ_-S3:Ny)nuwsN+ϸ/m>GL"|7T/ll:G>&|}DLNj'SPtsf5nϧ@!ܙ9E ?vb>t#;Azi=xw3(1N VKnD6sN=44gz, ZTֹȃS|arQG+R.yFV-ްY`ܙfQJX/ -t{)JO`KL|)LhgT [[2$< ~~dl%8/˫ 1hNn*u\5v{t8IɟAo HanE:XR5e+V` ޶.!~Ɏ_znZ'*#펜 `zkwF]ɚ.]NG"HE:Sw(=g⃾dcc}_S: )Y v"Hl))drL+ ʻ{VkS';#6ŔU8: Rp>PQxkg]ZkZdu 3?nh6ǙZQN~(]R6"gyӬ! D|42Ӊ !ۨMn `)VfO-ަ= `1R E!>_ৠ3 ̉색RX~"uBTYv3B:@S>lыJHJ`lÔ6%C!BOR"ldz 3mX=,!okoz '` ˵A|Q9&Re9K|U1,j}|n+mW=Tvʔ EUD>ub ޅ`} Tk/=Xc7젖&NL>2; 8+pFhFĄ$NaA"*)k(hJϩEЂ a b8@*Z9iC Y?_xS7'!w$X`/1a$Zjl Wʠg ^^=4/ݜ-.PF*t17ߝT5N8{bX;p+% յuq2~;[#S a6E פX:ѝ SYbHUO_UOsޝzRAk^;_%2yվ|(L[`Yp;&~:< F5?쬹}Tt2s nיqRZ?IAKϿ|0벬_c3 t@|vL҃ Typ(=B]cՔ}ww %iNreJZɯ:Cp"aTB j}p!L4-"&ӘwJ /R4#lWrW. 6;MtN7%X&IұfbZv| 9oa]>CNR R.rG)=qAN~^Xb,:.boc,F2U[|dRwveBLZHv6MuBs51 ZRa(L߇kKy֜xQ`SJG%hFt,' I1kNGYY[wsͩNk);C@ܝ.+r!RwEuZA$zoZ_$S ߔTNW ' V sլ?Ydyl7(?At2'' pLQ78|/ ,%|lo~6C^ˑH>[fn+.[!~wUw KJH%yjI5%3;wލu2[͓3q q 7k9"t2S2P_>Ƞ) LoZ41|i8>ɭF$]8jI8•Mn ,]\M;gT<:Z{l~}9ƷdSsy ;K"efZV'Y)\3 ,F=QFE^uY`}ɍm}gș*5|7 ,t"aZ)'Qkg<U'8|n4v]msZn=5V7Q,!<4aA/hzmᝠt>^w4GJj&O`p/n|bJX\ds=FDB*lThe"~~"5Z&F:m@P1Al_7"=mvRp* ߎVI a># }O\Gl'xf,9*/VVy4U^W +3ZE>1ET7˯bQG P hyUfߕt-O>c"|=Ad`)pՖ09Ty)tKluo-}VIevj*Kfl ǗtVj7j!fjӂN sEw YߖFԩƚ/0uB7޴cnlyUwk [Ww2s{OK}'5 gɖ3Jٶa&fu{\^HCR[P25f שfN(#`Iz!BWF`nVyhDq?o,ʫ 끄 5:?)&D0Ju+aC#XךW@'{dtr{PI#;C|hy~C&6.n a26 YLbJ-ή8ŋ5 h- n`)|aXꏚ& CN\?ᬏn E_N+ؾĜٵC fůYpKYs(L祳 tCɷnD؊/ٲI'n!"@9`P=2ۊ(n~!8 eiW/]]P:)\؁s<)0Ɨ$ (6Dߩ3IhڽEiU:kX@\촓 i\*ΒnGGrFkM0bfoY0  eWBAI^W4jY US"H:ug4bL4 #qxUAQ=: Mz h8*OVOuLjk9EqN2ngpT*_z-e^=X4 5!X7Ѝt i9va!* q Kg[x_],!nCJj$'8~tFcX _bg8LILJIM,K4P2l׌d:JÞW<Oe1)]!L/2DXi %,3Fmd)y[Hr \9tMD$0{Lc.nfiPm+kDH@.#>2"p¸o=~m61j +@ eX+TʏSSO&ˆ2D_TKio8`ɱ7oj18B jbR5t y饽1Z8_wMmO \=wQ!f9f8Q2Rۙ#-8*|üDjY$|HVyURL2k|B&K(=⬝{oXK{V 0\P֚&qdYac#r0NqJL?"k(5QGඉ5I.?B kNkDT ==^45R`VNhlwXy`Yã0m>m 6K ,C1` pX㔇pufƜ[4N;?:;qpOww,O[ o#aO$v(79HQqq2+`Ŧ=O/J>pMe TdW?Ύu.! ;#/T%}~k ݲ4!mv| H?7j[V:^d(SY֧D]9d knBJ&.+M"´MtU|>M7%ò/xbBX$ iOAtQjS|7hٯb`_s4v7Iu"8)#˺3^)rw&=G|Jo)R\Py6L~2ZNCGK h$+dEwπ%C 8ZemnX*51ؠYcE)~*'Oђu`/i5ѺC7R#}7a==]LV 變3]Bn39L\]G @JdJ61׷kT8_Dz4J,߆X;] Na|hrCzn=MηؑN< 32e!QSKrH{Tڮe#9n?l SX!X0÷i6\(ʼnC+[,d_&*+\$US~e ߸E5\I&&Hk}8m.E0rM4k nc\o Pt¶'fD +k=<8b65~!9ZBT.yqhW>ulqE4  9 (Tu3e$7yD.L)맅M4,A/A6W ^%gz",͆ibэآ~teX z9{`ʝiikTm{,ExRDI&_ CûE!^$&GV ̱y7\1Dj~]4BS F\{).L˝%$F%.ɞ m_j)H[ PeՕxO - OiIþqAs΍6ؾZZ&3~bv# nuj1O~SCnE@tzyC)$bSb ;L,6kkvgG eԆQS~<Ufw̮ SG(}94]>續ZUCpsg6&I RBUފK^]+D|Xh{0r+@3tC)`ݥQ=wY~QBC\#FQfӔBfiTw.n6}q$$BhsQVnWO Z!gK0"[u/o.,N XzJ9Y*ۅՑͶDI}RN@ey*m9We&SI^3N%w\FX @0ÕNؿ YgM"k[eՙ^ kt}-R&߂h ih]<=z~ey4z')C=T.?p|FW8kcLoC(c|t=M sÍj6"G%nl-G_fveFx(,zˍ6p$('5{ X"qd7?f4n)\4Of=MEbS7FN{3?]!sq6۹ti>E7zf 2.' xHE_w׀Be^b Un7y3[HV Rߣ:6X>8{ KHib1&:)]H8ځxSE%{ZÀCjW#­xRϐDӟpC^2mB-\' A+KD%#|@THʶtyq0yr3%Rs@dWK(fbxϿZE}APnt&ddkϞ]2cnl^: H݋aj>'tsXQ'kiKKC+o.YLfn "\UMVU`Y}A[tڃVK6swX0t7^LM)׬lF>Blz?wXB+~:jN[f]g=F. J+Cؔ_B$!?|{?Fx)c{K13VTt@Y=yJS7wYTҭ/' ԏȝv&[ 0sibXWa'7Q/Zue71ږf*sXO;e@?\1w.uCljQY(y 4Rz}H ~3EnA7yxFxF۫NrC(z&`&Ѫi&̗Ǟ.f!TZemˊ{=sAOӗt[xU"/wb}^'>+$QA1|QPɚsX;&)|0ѓ Hh;2(zZQ2GbnIW[Y6` ʱZ²ɜ_ /8R݊4PLM@ȣHZo XbHaC~ ey[49u50DZM҈67Qj[̟𷛁M'919Zl#Zv?h8!8^qITn)cFia#&'oKoO%D蟛s7>\i?t{>mX$GD&n8fr-p6Mꈦc"8H .׺#@t=P֘jd$' Er'fBqY[,xk+7ZzdTL1! /r+e:ud>֖m„ r"#w!{[ѣ8@/%X-rKU۔T|,Z˻f?9~w $)UY!bE5rC *iJoƗhj߻$lی-u9۟fͦv$yVyp%ln:Eh`~V5XHͽWʜWbg;-۷Wf K7%Kh΁4Ɲй~P<?i M˺ 13*aY2ƝlSMYp& F|ND _C/P"KC{J fXt)IZ\7hvxĀ/Yw_\꒮[kUlW𦭇Н.lPBJ tX] &7P@lk^ E5mh}3#sjʼn`VAo2'Kxxy[ V$cmxw*cu@-ϑjt@1BrCch ٠5wOj r;_iR񬺥s*Ep5;*$"M*m۵~ &bn_D+r>aX@>ӿoFxcjez"RBo w42}(;|O=pU:t|!aMP}8r zO5\ R4 er^᳉mJQ)(@Q' ,т%Jc9VUZ "  a{Mg$BoK.<~w1 (fgߗb2S~z: R~D'.x_<jLoxj f9&9MŻր\Ns1!E, $/xP^a/uG;0UaE8=?溌ʏX7'H_4F>ҘAdUQjvJ#{WwP)Ӈd  %S<%xGK~Qp&3p*QF>ƫl(:F/#YqcKS ^9嵽SGꨦI$vQcaIRY9^KZ;~${Ɂ Ns~&-/n$qqp_Waa{]Xbxokn aq<´ZeXɋC{0 FBlhδOvB j3}ШDY\T24´pGP^V$ܹ\9Ra49ղv|Uz>ó{tP7Aj/³qߩCq]\vWx)h(,f:_Cݑ]l~k.z+*^B" ]cd_:C%u4g}Yo e&-aL<RcT!!y\ t&/-lSS@Wg}1R׊xè7Xs-VE${,i %odHhfS;q_Fi[0lNn]YՠoӲz^M6= ]fx% Ţ8n=>4mz1 \eRM<^%PTKg@Ӧn\#q*H̕ RD2CM sΙW%$VAZ3KoE[,K޿ڵ tk YgU,f g^ /jn,H p*ӌLTe9O[D:HD}MyUņS^e%ZI)ω ?GۅdMD}Us)J:^MBO|e <}j-+pSD@O}/[^v9놛 wPdF}cX ڳI]O V |約*ômШǘW` 5{&Z֜OOQza#r襻qS_$ժ aYH]&1ۭc7S4r t+Y7wAyYF Nf~rV&{Mxd?< ԯwsOΦD6!0&Y'I"L0cS>%q\aMzaRylkDYˊ:[E଑>rnk62풪fɢepw]eJlGˮ% fێ=(t ojPڕY" [%n-A;{NLεc:tX_^'܅Bd~YDF<eW1̄CZnKrWll; mq_Ϝi!-IZbA,ګ0z]S־6,[f'Oi~BD E˳Resw Mc,վ2|xǵJr(#n:4*."M^ڗػB;zrD kg5ϋ&ɹM}iג"i]GG:޼ckm"`b/ׁ&Xs?xoU2먷3UPr9*iQ&+NZIͬCioe0(IIh* CG9M&tO[U|Yc38\ Хu2/x+poV (gNS@"(._eG:ºH!n@v~)ߝTcKVs[;qMwy>"zTGNRCqHjuTˇ"H' *v6U ($E"kÉ'8 :cX͕ `|ÑflYu^Ǻ3on,+Zk$Tb+Rpae:F&n|Aqι8 FElّ5A9]j3fnlvF*AH#n/St8jxv^ٰsEм/p(!PQڿYaHљ7 O-sRԂr(CVyAi}-W,cJ1n&a>3 Iԣe Ksh<`]OrLx9'G[\ UoJBӓ1%.è3Ac ;J,茁`0K4ٸC5"v⣼gAs  ,ةG,٩iHŐM=o1ÏݝJ U?yD*$7ThRy`?RP^wηfj,NJ AmY >#!-"Vg4Si/ 2hM`m&"sgia#۶DC]5{$^~A`NvUڪNrɧ9a h\?ڵjm5k9u+ &Cqf{ES+&WoX>XoC]:5.{н(=lc߆ys*Iy;wTbuzl *1fG3_W s#L5Yet8Xy:]%^`QfB\XǺص8EJ ;߄HO>:˅TB]>зeU5G\jC<њ6PWGP/ nWM=H;?@tGgecP7w^|>8:Dlf^yh3+b Vj! R||3SwAT3l!GRr`x9IEҩ u!.39e5fC^r"2JHro;߻`Bp]z@!-5@VPb/ ɺPh'BHhW..YJ̗{xqj> 6Ht`q>fqhKy*id s9)I#Әz&΃$Y;b3ԋQKfv\tT@o@NT ᦳ+zScfF)r?.ij.c͋kt+̌`5zLÿ_#/x ީkBy9pK1_ K#C,G߿DTO kݟ-! %P1ш)\'4̆z?cN'R794k H(ʄFَ8}k2F@reAikF/Td^_GGIO{<C zμ0~^cj!WE#/㨁bn vʃ"w1N_1bc[R8 G23^ú#GmQ7`xM(ypPWҸUGz9ZJ߁귅w4<1T#a<$c" s 8txG%.˛k,Q*{k>Vm^fxJlt |a3T=T5}T|#2ߒ"Epx#E!'q%z&:8N؃8kw ~:FeytJr@zS?‰yXU|cw ' qų~gi֪ڧ<րTb^e華󿃛eང||nwv"L5w;=.dh\CذK%)3ڂx%£YC16ݾ-F郕 iYN; l`'e6ĀVHFd}Q~LǘwƼMΤ̈́XK̈́Xpt.-}O3L. kwmыI_ (Q0j?6{3Oݦ &Ewnk_~o>b6[5:@)9U4x9]'W܀wY^R9&yꑙEr/{m\plj[ b@kdQy(jkۈ=Co3f}ɇ0"B̅vU$W'xxm=U'AΝG{v!pQ֚ Z 2~Vd av%8ݕKAxƧuʆw1qg62TkUOJ4u\}H#OYX}ƫj46T9lg7 WzqM" n3rdW7;"p0O˸ 8SQJ/mVObR|GYJ 1sLʣvg1~C1IsHksȼ:G4¦jX!)W.e,*^jYPd]zi/vҾSRH6@ T3+`'FxPbԤ8+<ŠA9`YEFhA!Б )zfb+XuU?,УWbC(}NE@9MŌq ǎ*[?uMQjV0R,LZ)>ڌlY'$c[j% q?[I~&Ѡ y fz6=y~yA;Px9A'D .'S +˜Ճ4sFxbm#1z[%Y<ǔtG1=:tGUS^\3<^jp_X9 ^U):i'`{_؄z4{ה && U%֜HWZ"H0f_W&0TCc:^x[N /mAևT#PB\XGnaBj$ti!)K[*U9s[7|Lg:o4H\Ta▬Σ:ooU$3(O!1iC'/_U褑g.6GNsk,GZ/=TW@i&t;vJeQƎD(,]Q_Fz#)4Gt#]}ϗ*p^vMyKLkSrSoE/d3E\Oәz!lŕXj_7o=/1-z&~mPcfɴĘ-|߅NHG"[z?Sh XShaj<-J/#6njV*Ć;XqE wׂꥧ Sm=$`8.C#5 eqMXč祪Iag2Ur:/sT͝LWi5ZIA*Gx%.0A3E)fD<+;k_^A՟Q>$tZC琏y.gQ2>-6>{vG(ez~E+y{U#AmAq.6N;wv5N)χ{*) Es*c 鉱2" NI͉~t(Wh&N.>z}eLlF`xR DDSBn׼YP\hPĿ`A˔DzA o`=šKC0_]VoZ˶/Dj#ndiouX{L6+h\gi?υu`UC/»&CvKdO{u<ٰ *ԛԤszNS--sؑg5$DFEZr;dR9|;DG[?zBfhV{x1ߖbyOY)=sSG7( ]3 M$M"!\r^ƞF-.3W6zM;|Kaz{6h!H#>\0F]l*K-cokψ>e4.COo 2}a6eJ4As7;(OY@guiiIv g/GG{J,7Sv4ݴ١]{G#Ep*wHI&.6ɇ@Ήڙ&%῟&80`Sfggbz8w$u>k*θֺ_r`ы-NnKC蘽k:_<B\ak3z1oaiVS\T"# LV(FnNk|//UʈѸhwou5E~d )ˬn4/4vax!?@Dز&8TX [r3I!/ rpZH{-^k@O 5:!6 * BaR1`EZ+)PM^~ ┷U?XS S@O&oyǂӀT %ռlXHZeA8 80 Qaiu* G=HA !̡un{jW0\EfBXԡ31|Vڳ!NC| K >iVvYHVLXӇ$P &~p+VT̓f*ff{%Ͷ>$@8ꁬ}:pl4u#,")ʪ0 ,׳y 74#UG@"ƭŞ=M!!JuP1?|9w\j_cI:w W9${Bi ,ףGU9Wro>Nqʺ?OM\]柧e8 6 $uB@xD)Nmc5@Uj2-LE?V+ZeYx_bg^zc>,f=M_s!`hcH,U~XǵPıNvwSX ْe!XG*Evd2uY@wXfS,ײ'#cWąh . 3v9?f}T6T[<߹9FnHfOeGW#|TV" п7g.E` @ƪJAycfU18@hP葛3-)oc퇅qH1|m#˫^!>]rZRuUߴ~e5lLޘ_f=Wn*;0YG}`Ȋ'c/:؄у! bGыʊU6wB^f|½otpoѿ(q:zodC]=$YEEF0>ͿAްBsk#.nA u@Ux_¡t~`(A#RǤ# C~"V f\(Y XI ::1D7o$][xל4{H3qT? m!A/@WCh 8]dˣ,;R0K159xd}nWLYÄY dμ"}&$OCwwu%,jՄ{Z&z+_}6;GlR|QԈFe糆2|7&1#p}!-;7Sa'c RO=гVN^b&}*/8VH}+H?,XV]#NW*j[&(rV3f?|&(cOMs2(/2N% [1-˘^lLYHt9UbRhwsE|RҊ}ψ6g|OLҋ p9KY_,G X,Nk hxۖH5~ =u,gMBL/VZյit40xucJf&nJ~>iqhqQm{':-vG^ n{6Gɧp|6=ˌ1h[+9@bߟY,׀!"g23`f#H[]ڊ,1 {&t=Y_{T_<)ُHi3J/CGk6}=|?N%D0s0b*q$V]3πbd!@"z "kp=Yp4S-Oz[lPpiq_F 1L[9,hF1NClV8%inAjKR; 0Tؙ ذ%a8L1؅588Cg=u-a!xH'IQSb=mZ"YL7kΚfoX%չC6y}Ш#|%Vrf{&WLV7 ?Ycds#;VxO6pe,{˨J.x-7RZح'|@#߬3S=f_!%4W밑{XN9[8W!L5OL8"y˯9S^ Hp[͞糨 `P_@t -`7-o}Zzc},JO ړH޺k}h놨yHVb @l|,??H3ڼ]pf&ݏpg|&¨T .ن9Ȭ0`B?5䀋3~~$H'<oوy5`InqU6 $G=qspiuN}iBLE3 E^Ru0mob # rrdo{!Y)  Џ2*1HwN⎋>i1srOPV _,ڨ\msp]CZ&|h_(%EH S]˟%t>ei1ַ Qu}:c.R|ʨsjP }ڄyK@\xq>؋0jsb耼""*3K@ϩq)w)%yLI甥16a֝wo]6n]@Vĺ_@mÉd~O( ;k7 zF^UQmײQDUև%6(L8G.!ҽqw7e|Չ+x(_^s!lQLE`ڳHs D.9ox v{J;$G=,^ɫ &R!cIHCj].4i3 lmg]_Ry|X ? }e)8o2TI5O߫V頎`JU$k.Q}3؉B†UAB҆ٮ$8 ~~9eWƐEZ 08i31MxE%wmzK12N$WDњ r2Bu Wg+%x|z%^3"+ó~zhd޿kZk9 ܨǠ߸I{ͯQ\}29JB<ǯ}i⥗X|2ZorLjN ݲųvcL7\d>$Xw6&ӼNlOzWaQMqAv+#w|14)dⴽӵM(Qh1]j gV}# 󺵉KpEVnaeGnW0r.= C rճ + .GE4A]Ƥ2jvXI8x7w lI3d=:󯱐vK`#9H;W z% C&^[ØPk3=R5 e7]!Jdgc2ΑH#EMt3+g(2Ep"SY9KgBA*j Y9!WMآdFee SNZ@&Op } #JeĴwJ]+A}NUb~r 6.!l XRDccx$p( !ivZHL.'JҳiL/ ;tjlftPLg0gƩWg!d`6 s7 yӖxqq:LVEV*oFxO D8|Lf+, qM$d_' ky+dj-ckO\ ЖvOj(_A 8R QZvNmPzoˈ|.VA?DD!젴7nLݔHJ5ŇZilDMWM+jO1t! fcdGzW"nPq&G$Ǽv1Q]xA5R>l>]rV;J4c4J4U%~]ۋ.3 ]VBǖy㒖@UedisfYhUOA~)dTŐPfIOjR$|lޜ!!v!PJ\L qEŌEQ:o̊P΅ݸ3Ek/i pgeEg^]V\HL#nτw{zD%'/>6+m[2pe"u`ǎY=ՍA݉Fg,}DmGMЃC[A#T%ڂ#z͏&}#cf/nILPj_O!Ha\u^] <mzz_' }%2NwwIYр3y`1{MgaT9 y7pk)Y (@ⷴ(QZ@m,5C2mi=qKkZ,8 LX0?p$C6c.̰ A5#x4>XE`r2-E}ZVА sf0 }+`>YQjP$[ e#m>\ipi¾(uȦ >o"}> IXΰI T']9-|*Hfo57Y&6G:j̲- Hb2O!Z7qKTCr6i\ua.QP^}_ݞ?F} y)+ AYEjj vT$SNW5E.j& e!B{TgAcmu`P=H>M[l=, yBR/F ߰73FSί:nȅla&êFe;˸vP^>ig7WS<iR0||?t2$ւmm/xn ]F,sOe_k yCXl~%B;DǂE>lD$m7kWƷsy loBs݃|jp"g]zz}K̞!E>ZJpq1I=S7Ĵ9 fo&钭 70ʱ[IfS]_?@bj…uxESd_y*ciN.RQ $D?EAR9u&My +A[ 6$Dvg-"z7;[`pp8`ޔj꟪]ʤuָWyH O5AKӒlWDq,9ʡSkTb'BW?TPU`U`Y˝@ux w0#k@P-a`G[0rGsвh.Jh{I}n;xG%;A ^`9dnG>gZA8?k$`< Z)#AA0˼tE ]/-Mٸ{υ3,.}_9eԥ\LڴF4Wqm&Q*V9_L"p}eڑO]fr J ȸ˝O[IWJ԰\Lxg=)Ncy i.SX'Z 9o>@k̑|]i)Ww99F}hC7nUu=F߁ ji- U 3s@AuIPdSu l4F'CnB-Q1@U)-³c[ $ϊGe4]# +nv.XN)Q|0n1E[ pW`TWh"RWH|#׵5+>~l3 bLɌZ(vM%XuPyLZ<;)2YzL6:4ٓFHSdBH%^1dn9ߜ˥{M\"tK\L'IKsgV&쨷*_)cݼIG5'ezD,ƒ] ijU.Y}G< p a]5Hl=XO ^ox#2luY[~U>3I);[NǏP.8~LcM9yP_^ie)%ftV{H%ak_rt{N+ "Ud%P*JSy3Cgt7ƕBKf&8ɠVf/L$Euϓ03un[`{ gAkr>Hn+ 5O}hsJr3j2VT o*] 5@lꭄm_Rc߹f[7ՐZ;݁r,{T6dOP :#-q|9҃3_h9OŎsZ]E'Ωn  EV `&5uۖK9mH)Qx$V5 :)ouKp1Dq -p1TqM՝'( BeIxAS^iX!fgOZy٩| dEŎ髥&mؖ䯸sy5e#StlTFE6fX[ݧT|p,97"O)5eX3% Geb6 (53JD &7JfSOy2[0Ώ5SoLURowǀbΕQ+<]R [-la-dY qQA7]]қM)I?Іzk5Dhthe_10oL(6[F1 /7G FT48Q0rg4[Uq#lrkw|Ü sbUT6khwx}{BHd$Weӕj̯9Ss^rC1Qdy!~2t;7 E&` st')!8dRv1_PMȥHT@zgVe4Q$jF*K^ XIEU p2З W%# g?ڂڐG- 6Dz;A #<xJ>>D#5ۃ IZQj:.M |tmC·GLO::L ?Ʀ̬,O\,LSi[GcSsٻ!E498\儎uZTS4 Er9p OX1C~$0d.^Q[%)w8;Vw&C7LޕaS+ /]TZ- #NRZne}GQ?,稚 [ [ yQ}PDD79Y+G|"H-HFP~LJK-G@‚8w1w'}iC:˟>pL(V#MmU[ /E#(2Σ _=kPyʼn=c':CP0y ) cc~ǖ~\<މ=y[D\iμlW ô8rBym%Bq-E9[$ Lزd/SI]^„: ւ#*krr_GGxLD_KJ2ר2o+, Zr8XSucIΩ7oLNX"d ^>\5SRq6gəŮWב DM44JZ[jI)U$@. cb ůDr-=fv謢Z RS`ZK3hGRZ8}ՉWb7 cƮlIx񯽣W҄p.glm7*8dmR`bN.lV!6 T>lEg͸W2f6MCíPr*G(<+Ыnnx@S^51}8F{FA/hh{؊a:VuUdNXB=6 ٧R ,ѺH'6oӏqĺxpGj}Oo1#ak"& f-yitScܴЮ^_ y?)/@!99MvXz^vFca);Ie-s'J{pxK A6]ӸvQ2MUJX3l۔}E[1s1LeچK S!wq+'H/9]Ƿao'?jŬVkb]C$2LF=ĕz@ʉsؾZw'眨cȊgDK*opRӓSC~eP5p[9ZR*D C/QYW6ܟb,EnhIp, v=(&|ľ6=lsvw^*m (_(=eUFxؾeuigCPJ&T2CeE0Gu@|ٔõ.=V"kDt O(]I96$5 $ҊئRErhE:,I+ kt}웓ַ"V+8g~ [>7;ȟFT;x/OF5/N8Mŏ _zޏ(y|+5j+͟prrICیe8\'k۞Igd00|ˀ!Ϲ!026NC Tc'@d0U u7YgWF o 21t?m4kS rQb0 zX Mз[44=Lymil,8 0)(InQڔ%a썶Pr {n%]C6`!U2X}51%CrA1ƫ`K'oI)- L]U4aIJ̻nB1h9%D2D3H9в[*VFY{6ӿsqXګY= }滔 ]U$%5sX <3~!k!YzRD},r8/K_ GQP+BM&RSYQ% AT27LlrK@EVa[l!PJU==JW Iq1ӿ&~cޘ ٞ`]my 6 SERLIvpuHQ/>1}7YԃY T Ͳ Q]PƆh@s}~qGx.@޴͸ٙug߿{ɑ8[㟒_Ũy(yPoM>/S 341IjςILxp\ZrK\agc,-L>Tp#̱{pVdVn9o_րj}ϟI|1U~wǽ%Ysu7tv-5^ƳGUzmA羼ajXTA7J!Zέmv; sYWS@^*%$|7m%c\^޽Yj CnŜ˼H.Q%+xej4C!\= :fEձj@ T%%qX;RY[a iC0k`A ;#^Zo&`X{y:E}\ϖ5([DD3IqJOA!PZ}O8-8(wu_x q0۶J3a%?;ll"&2jݕi44SV4mva$F#f8wk%8 y}wx_L:S@ n{.@aj GF{j|ZOݫ$N.-ZjHٖ xe{cR yXεg%bkd}U/Ξ@nq-*Gw,+ur 9KPO%?w\M}3p'XO?b-3kKåN@Q jyO ۰!n_92f:"ɔ#n>WZEjUs KIߚk N:\^- jmW斮1)8q"ua[1Cf+&R2e >';  IE FvB*h޶ 2Nvӏ7؏S P j| @ hH܌_Kw+9 ~=^.3 '=O5׊<ϐA{ L TK%x8H-ocsϰFd\TaI]*/ O)dY\Ce;{ϴ,Jq.6y Q`E^:ƒ`QtV?f #9ġ+&@ u)k!lh0.|iu>( +.lDuea[a=z˓N?@Н$aU@G&SNk7J=3IނdaGkҢ+n>*s})mo4vQ1뒌J{J[3ZZD?nл8#ݝ;]٠l(ӏ!hQBWt;DM5nVC/ht Nk;G'&Kf B1V1en`saR헧H& 5Xg4ͬz!p 9^Q^gڢ<9?s:TN4E 1 C6Rٮh{LxDڈ$BT盝\Ms2D >}R0 }pȿ G^\'sHoIaUO`nXZm y5 345A}K|0&TRD\S'cmL!8fȹ hOnw(vy3Mv>3aL?㦱9tsˎ.` ̻K6ҽjN&b`4OS+L.Yr(]O:fG#aY=*yo0y5CM!9ptb w%THtIq@u?-J.?chVEׂ;b>))F͋ABڡ?l@/FdC[#{5o|D%=(DLWןa"{$P:;'"^ H>d_ms=^YC9ԍDANO~?=d󄑪$ ШB*sɟl[J7qg)hOj"DH_q$aͰTh;c?ʓ1N]{ENwS|z؞Z ~[KZ-?%Խ1,/Cz 'do%C3kWL.iӮ(uNFcL9ǽ./@w9џ/Mm>iZXb ieΪ ٨:hJ1=¦0 ?4E!2`9\B1 @@s(sĦѓ]d8<ݚoZ8ˊΪ8e L͸֎C;Ȧp (g :[A.ŪcYTNbcfBt h>zqnrW>էKN1Ȣ^|S@U} DP[}X o]l g-̋~%خ" Uo/>5'A\B_-V75PfHv³C"a=zZ '4_!-6+OSVN *_r Һٸ&f*MOsJ]{ ׀ӂ,A=k\?l:> 'o<}Y~ 죽Ȫ5dP㙏;ֶN^B 8*t4k)w;Us\"0Lgz`2>ˈ;O~z.?J)}N+vLԋ@c>;cb&g|'{P(]EYi|C_ls be}S/5ɛ.luw*oԕ-RR^)1#wYο> jƈQ_BP?¨15uy]㬈;rP6vު 95SW 'Ͼ[ i$O͸m:#d2)Շ| ڧ;?5;C.UON&*l 0 JVMSl(c!ٝ6&w}SJD'ݸKB?6)>]^@SfiͻFx(~Iy]#`zC I [Dž=o?fh 4.&`gPk^yUc(Z}^Zvi2W(N5q@ñ{¯C8~ 9W | ZfG*#ij2~&ƶ\CsnNk$wHfU5wVp [|Ӊ: ^I0AsJ~K!A j5u̼3Sr kc<_^&~1#=+T_AtZ4J<\~.6OXf?Oj~KHʳ0^W ~2ș0U ~>x6Y- dii6 M;Ǘ'Ȧ]C~*~~hUTE™( F@kmCj2扽|y6Aw8>b6ޣu^`Y= gkZ }:%0tb3S%QELOhMLő7( It\{Dׇ3O{uinky?h}kaER9°M:r.Z**!Mrle=ŚAw a_G;l9Tّ%b̽Wvt_B|H<4!Y!71% 22L1mQITOoBAEѕIU=k$2lil7ڔaY]An߽#ljU@ڠ]|vk CW((b0g}-L2oU21{XCW JJ0,vJRc*'{Y0*#b=KyipI`kL9P#RPR&;x)th CS(HJ_Pzv0;mLRlo 5f9R3w5G[bگ9]dn޹E-*=+Щ}۔rn3?ƱYI}5RZu =rm8LgCz/KLuh:"!9{$=spⰕH٦7I;׷JL5ʴAmKd^M.,}Z<#r]>a<4PS .O ];@5-_(63O/?}JT MڅIbo8pIR*|p4 G$k8= lRɩ: ((a#zL`O5Ƒd1%AX7q?ZM[-Č3ƺcIuARNvnsuo`ymۊf Fx-ẃ;-3䳹WtlfdZ Bޠ9IHEeϡi 38<)-uamQ8¹4j7=p%d0[?;Xܾ9v,hyJN__Lm첐s9;JJf\6ލ\t)yfoK, W=pW=;x1emۿY븤W7u9.VActI*L,i(Nb'4NfǼTv)дks FVxh^}HZAXh' k?)_>Fǫ)^>:3Xic,EnmLI C|&:%ƞ3QU衣K7#H%ǭ!ӑJ/7^}bߎzc/u!Њ9t}Nj*n; &ƥ-Vrԗ<4`o"3 |k. .CwlaTNR΋HSR4'Bi0m鄨Ď mA;xfU֋O0 Oi;L2۬E&8$i 2[E7)aQmt@%o(^00EQbE;F6dD %=pUCհ  RiH0L5fU}ˏW "tEQ=E߽f~Gl\w J9W6q9SU[ϖ4[u pЬyO}衡^ܯ9Kԯv&O\,_'b{+,$#7 Lx}ECllФj.xADTLc򲎂@ۮ~ L2؟:<;5qS퐘+('vߜEtg!2o/óqa[[%tPhܚΤ*M6H]K+ ȭ36e t. C`61r6$'H`yWRŠj&xvpN^Ց <&B+'!&Z"0kmXEJ6눠;TprA܂"]^(8ߵ2F& :թTVW${ w<$qn7w}<\`kgv7 UN$L{# _R*I!͐GڠZ^ Z+Y T FbϘ~=5Q;QVwO (d/LH3{X36JWk\b$Yqws.U/B#hF e,5,2lW eHs4xon5dqL7c)Z)֩Sf͏a}YpX1^>@Nzh퐍w..r,J(rQ=@pRܖ$t`HhRG@ZOXv`psl1q,EΔ6@؉ 8Q> I&W[xM$"zy PZC.|;{#6f=xh xb`ߤh1+-x^fVHOcrݳ8]'eH`8C=@tA-/CuعYxtr/x袆KcМ9_Eobv)AkѻmPy߹~_R)逋tŌFhV}YDד;<ïH"u}+iB$N_^XW8L)[ُ(J>=!RZHU`X\έ_$vm|X ~po2q5g{ݡվz%ъFWPc$>3# eX[PxOΰ>ꠂUr̜b8e`\ekF5 E?yS ]vL>?M .T( NUc3ٌP~h ?<^AK, m2--;q #4 N^g0VAםuA;)C2f#_xN{C6uR1v[|I: o fQp*L`LQ!lK~}DWU$-i0g$Mr$|=J {SWuȋ)ƌ=3r';&*{{`u[NFٿOJ#jݾEnOx UV,.yi6jjղ/阤A g0xhA,({O;N| $GY0AM7Α~=J531[uby t T ~MEP }z77w^;\%쨩g.^4͙b-ס]볅:7N s=3(VKH-氀,@l4A]|Dyo셃/^bKq@9)̦2[]\{1{"vT+ U>cteK} ,TQ7gEY5z^Al5 v3k^7 D"aAeJ>$ȼ@ '|`ZRucL.jVXK&$S5[ VA jfvQ)4xyU%#qޓIoJ/I\VN9"7"A|LZe8%+%3 ?L&4_dUN~]᥋{BqX̮Fah™w 9|?"5`Δ)M-m@|T_#ڇ`z8j DBfw*E>9^dn}"3=O}7NS@HmXoyzm.[?!%w\-$莒7%}Ց Q(c4P'(dӇ0F1~fK)YjM˘G} f3?+G 3?:_/[pUbv_U0R풛hPa,> :XSn}?JƩ.uxַzNE,ׯw[ȹ3^B\Mߩeqّ3TTK'=|z_`aypytfAZgZ qWaAv GOBILNPgD vE:Q$T j}IC|`GP_;vA_D> {Ug}?#m0|&vy-p;Ek~/vp_+GT;cxI9@x(4> צ!cXaeZ^$lqb!kX9?:`Z{?Tէ7ӽf~f|]'NdVaRYW R[Ap Bۜ15ñZخ/\{ecKl |;tl|'VՇ矸OUy3$:?ꨃ춣S<ħ6k{`q !<˵Hz<:nqP 4y h2Fs"C8٨!jX-abƿ^QHإf?Xwa]8)"}]Ӹ[p2+ۛl{b ,cYS1k](;9M.wX˞oaRSNˠ Mx nQxDl7Q1>NPi m+*}o:n `yesne@/ [TL3#h(%M#l`ƅKC-MJf#ݗm݄hr/Cz -i~]flJfOE\E&;AJP֊'mn?[4?1+m4I"OgUHiI_t?] O,l! 郯}mǣbsIuMkŵ3.YD M`= JL]F. \6 =GD.ŎCy'ऻ)I;bWiz+GDY SD[/]:M`_"4&Ϙ C}S+.b|T؝"ptg+Jj`w7r1Bܙ !b }`QO1 &vVD 妣&aK38=!WĿı߅Q#d;V:R5-Z#iO?DfӫL"&^ANpi1yq l{Fhv~P$Pg=Yr"L;z]@3yf9]كI̱!5HO͛]PlB jO:M,2({K7z^ 1Jn޺ӿޘB6?zRzbN 'eA:IFi_؆ŘG9+Q4q!CRQLb#5"'H(Qspp9'MJ!\)`MKb rf9 ,AǾ5eʠ犠,n"[S> Fn6f?(&^b(ٹ"= VmQLWs`%˒IRb-n\} $9/nfU7aS dkf#T5ר5Y_1g"mhv>i(y.\EH\iNii" Mo-t,1[6~b7pJy%-(e!hzş.3C=Ki9%܃CڸuA'hMX0X篥_8ڃ^wp#9AQ@J3@)Z!{c}A\';fi$ |ѩ jwǾ=_Fy &y VRg)ݵNK$_ݥrvZÝ2bt 6WKEoɠ8m96_̟D[&w(@bҝwR4ofR$l!$-:~cVdӼà! rUIod V"AAc;eL R\%" ڹ72h"imF;^|݋>IwMϷs0<36¢$t>wnuSa8e*E~Y=*C {-2XƜLD4ۺ$mEhZwA~/v*_aytDua^zx8x-S, ڽ跈MGňE1wDG^m- 5j4`> FJzj."F#[7enLz{#{_"yDIjhzٿѲF3`qĘLx9ˉuGfA=| %W@Tϱ#8y= Ù)D)Ǥ~ /jcqO-}w„'~B,a[8 I` S [s.w/D͂v\9^,5ȥC$ dڟ4 N+@+˪ O(Z7 B[[R;/'jGgv4岥Ǽ_$IœYK3@MQgEK( -dA۹ o5xTPInVWRrm:BC[[8I:]F5ʔZ?g/} zmb7lǸٌ@ ˢcV05W0摸?e7_1PZqODZ<ۺqQidz_>:{,j1h*Jn0*vu7 "Sa,O<Cq+[m0KZVh 3`=L9J4yiZ(Bhcq=$~4̿|YSf_)cTm/y ݃Q4`1$lQ@}@ȴmQwT4vbP}ꩺ1VYp*ӥ#;T̯i|1$&|)DUF 535xxyrTP(r- =mQZ4Oskn!27ØSxC;$WlF$L49R6Wvl{Se ]4~P.QM!' pA`kp&ep$Lۑ~a'RF>~k%fKR^;Je\;x-tv8DjnaKjڨCQ٥< -` - }X1 6j[Q~C(O۹lc*N#M0C H}EJO`f~2권}k*rd\8XVԂѬ*0=wCsF:zZ3x=("s/L{Ge=, oS9yRq <3.V[6e{TT _㙎(kh&)NnnDZXd3\% 0 p(($W K' ݢe9/e6^ELt ?(p/o_O_5@-n?D/,4a"Æ{z*Cu!7œ1ceP#jB@fxCM$CG|&ϭay枒IpŎJ?5 W܊|ҧ-uDܨ}bBHTCqħ젺7LȠ6Ml X?#k;8$)TP/9И2Dc~_0&)9jtq JWF νB<7?F)ѾӪe;bf_*F̸eU s05 } .hr),>A\tX:gE_ [xMp烚+OR`~r7WjQLϦn$[,\{˸ 蒍*R TI.3:Ϧe;U8 `} @f==\KIDiPi;#^W(c(H 3N^3ڈDP'f!Isu9CnF TQoĥbdxmgDC*ɋcʁSޕͦԈfnC4"6KRyw>0nni i۝cſ_&{;ݤȽN[꓋)7z[uD>xL ƙH#:;Xʨ"LlONP ^pNd1yްxZyB9ageLPrHQR"KgQt5mQ$NMwwBfƼzYꂛ9U_TdAcshwF}J [ bapNVaX0GeZvn0R驧ZKU$@Qw|A~'Ă.SL#tTsCvb1VQE9n2i 'V塎i xDD]8:Gd/3]pMh{TBfj $|]^H 2> }{G":w*82X옛'׮F6;uyxٲuXЗzv \FKZw9X;KLxKkb[}laΗ1mTE Tڂ;R*Q89fU`꤃g^IG~dUw\ RڏEZu Z-ːU>g[eF[߸m"Mp@jb*DLL亣$Xoovm!z 4IN0'BŌ\ 2հ^IxcmŌx(29z$\g3XI&, Y in#:8@?]T[yqnvֽdh[ L\CʛQoЮE7Nlmp]l_VD(^0ܽƋNx79sn2BAQ?1U@X~ -eYAV!I{鑈 u [e[IRY{M)~US^DUsUμ/'k̫511lDXQ7Jd^`빴qo"tL%VHdPX̯2)@=&)-hl*xԜr-><|Z=q$&[M]ǚ/5Io TwL.@k]?sώ&7sL#S6LmQ\'8UX9P\;ę>pIүIuͰS1c*X:y:Z9^|VdX %j EMẍg_!0i`*tXf}$V ;Zv ꁡڡJlΓOlN˟BKp~ ZPv]\d6M)ڍsZ!coX L{%u+5uGJ \YӍ"/&hj<8_Nl[|r: >r{lCT{ +JB bU.Aنic1f47>p"*2s-`\3Ic=s 'אx'\#?2xW-<i{X?"qR}/R5Ĉ ^熔G{`P! &F@u.U)Yd..+;(.m /CߦD6x50 ,衣䝹BΉG75#d3Y+SŪZ-LǥЍO[A>K.jIX*OdelYc[c3-U003u],c׌4TBoi!u5Hp^+"w p"Ȱ8E&>dX~ `=H%f?RnVNdf0x&R:n8*.@Ѱ!p1^"TFEVCl#. 2!嘟ȌEv&!v&WEa>~?d&cXJ#_Va<- {OlJ$}g c,# EgX"^/-5{@_S  V dJ F1ݯ:Gz\4ռ]fEQjxQTO9ko'6Qɽݺ2U3u1'.nyUyRhͿIq#:P0%Wj"ǷIDmw4"q|\ZEpǛ13Y pVlxU8NU[@kVK&C"6D()-m#ť沥%i/; @65춦T-U> V4} V/i͡vOԱw|^;>.):)4"+@O?ej#RNꂊx&y Xꊲu2B|x- REe<-gy)U,oߧ3Y /[6G11 ,'O';7M?@5 q%keZAB%NV=keOǢ#1kݽy ĮNK"Ezy_hEȧ;aV_┠!Mӈ*U΍(vqSwBz|9~mvN0O&Fgђ~}hRGewdS?cs]qfp٧lZ_~scbqeiUI ؐd`iE ;t*Dk۫%B!AP0'$puXi&?ajopw{\8F tƊ voIN ugl;o {@G0BGY%i {:|I~Jkjdl:xkDf1fϛ9898W/0Sbi[Ak 4h|՗.'.F4r,vcC!rYe&m+>/6 -D*|u#%6@_-뮔>`վB|uͳaJxjBRGR"+.-ٖOIfGC= y+f%A5 ZKs+42uƊpy  36fX1+tok*@sC*x|GQ_^9rV*)a;=Gj/1qMBrg'onir^w∋,Oe\mRe42KOiO~q}Ua?8_|rđHڙ,yy8c/r 2_xf<2x(Pp@oӞ9qԻnEa?$i-pKaoU)D Y 4TwxұSE*L7υ'.!>}Uh市g؝وݲᤢ7QAWwT~J%@x!#+:dQMTt[ko6|4ۂ`|+o#c* Gx(CT)tw䯩@{| ??;A"T" ʷzvi3L`~e ['i`PU&)Q!WvdMj2}C`M,8)m+OڼW(SE8zljI.t[#X^| \ PIU͏iH|{cDy?ˏ 8)i!R Y& z05p+9"[j@ܻȟ|V *#ÎCH bK8l&s'zf8Z~Is%Ʌ!FyD1~ q~i`֜hpAuΤ{2LABJo%[5~O )crW:Սu*BSd}EI8~#jftqܟ#7suMb{}x 0b j4^PX9gڅAнE[a8dݽ`֕ yզbޚ]t3d9Ȝ@- B{Ǩq;H.ElV`;|zEXѾ{t&tdj:{7~24:erx1_rGV_{OY/$C@!-v|Š8s͒9M!y?QHTn9jJ^XDǸ,fkÛS1'POQh:N"^_~^|%Z`)ƒЩY`Ai(PB]X-3/bWE`6bT7ELWieWZaM\JBDmç-'.jF YDpkJEiBRԝd߀+YpZ&y+d|j.jMj9eCB &@gQlk\vD`*`5RysO`4@?N844@K%A,}]LR(!Ni7*_r_Npq/5GT8+V<ﺳ2 c=\ 0;_F9K=aMf7sˎ!k{!F,fQNLZp%TuuΙ$7㺈е,=r)ahڥqNvI'Q،/]d!88*9Cp+^M>yG-^ yu# FKkaء(Zwv Q׊;fIH19eFd_f- :wQW6LykPVg^QUH T*z+B /~I3>'w9%w9~[%6iKx: 1dIzUwb_wppfkvd|(#L MD}]Kˈ#ek[[?_!4{0&e]Wsѐ_"t)}LV'B\ ~vtaR-( d:{m7/5Ա#Vߒ`@a;]qV)i=u*( .f$s8>pHCu.@$yҩho4ʈH*}6T {4lE=8A͙=)&w^0w TG(܍s6͙cXZZ*CT pD P.`9]l排RvWDd6 gF#Mc! +ˏqd QI}h|[U,ra}֌jxSjZP<sܒB F~rN4 Ll_]Q?|QŃ)\N蝯2W꧁s܉n/_1rM0 YP71:UO }+HY75R!/ [W.h[V+!D&^Jx'_yD+ }iyni CU{Ӑx]#H?~N՝qIwh IQm,fwj#Gw6BK$_oK}ãÝx~,Jʥjv7wSx.c_ b,8-o%6JC:mxM]ʋ.F'a R`Dt *zc|SpK  F£3͸:ֆ[*Ԑ`ьmz{bm$ˍP| CWDl6֥҄-%FԦHɖDn݃wgr%^)y8eVZlr l(Bjk :}qe_eeGť`S:Yx-ת8Hmjٍ9MV@EWw^$e3@]E[ ^:GVԞPݞX!u]Z aA=O Q%ZV6/Ewra(qfZ*ITDU@G];PR3T؀ϓ΍X/7 XC %gN(99kFT=G`i{ Nh{tYw*}U&TT;˸הga5|I75NR+6R+DЁ3 HL3 8ǶGH]D;a!<]& 8kac/4VsWb!˪DxD$ iAc:QJ/h,JKYfG< lSTXV6n1vuk`zZ!9E4tji{k%qW'۸q; 9BW~^WfS;oќ =k8xAO[R~E̿$_NۤRXlC+NMP1eD!̏+3ԟ3$("&4' bVI Ä׷A/B#tUE˲,) i]cAN^v(,ӋFZl $Gc!Aafh:jOx 4Q_J,Cs0_NwO]o&t:wظb2AM>T,esm|nE1)':ޟ}a:>q륾c s o6J2F]{Uk!~?Ckyлȹ"ϥ"P|!W$*;%8&> H&ʥPg{>Mj\W}W̶/ hH!MZ#5Ԏ~0*MCJ; 3{sˬwk O0 S0j^Rx c,A S&|03A=C'yIJ,ATN@Y\鴭5qm3Q}g?Y}gBֲrxe̪<#PFu0Y\ϛqRMUo7A#aF@KC&w Mi6fÔ ғ@|Odt|`H˶泡?!#"@60%LwyQwq8afo˼o3M- \D+ShduuԀڋf=,{ Ll/FK'1lW(E{$>NTnЛ0h2V"U5 !z\, N 3P`Qݳf4<p?F,EnDݼFTWjGUAz8JEq-b"T܎&]QhkG~$zP(U4 ]a]Ġn롚Nj,+dAa:,=AKR5/A./GQ[Uƀ}pPbk^8wUx'>\9F>i44q;mqKÊ"P-N2m:tRF:~ lm;}wU'hHn`/M`GY!TpιU"e{:ImA+G U~j˥7UOU6"|3A #y}>?P'8H>齑;>bΛԇڷ~Ó=0Afs (Ⱥx*{~GLޏM&%޶eJp5btkcC^7}+:6U1Txw) CF9^tW㨨,":U̡WlKc.I_YWEe(,A [ª7AhھS9 /WF ) [}ŲYh&sA$-X$ tm4d dHc ([uδ[t9{+V1lš3|:W:Dmѱlm>GL^"jl样-rzRUx&3WmnO 8WFA*n GUa<`<6>զUؾ\W`, c0%?"Yn"dm#B xY-N7&P6Ҧk0Ok۰x.1]*ƒj] k_{ 8[Z|7.ꀷ}gT7X#a'>gڷP=C>=nlV.3ٷF/޶8&UoGZq6zi:!>!\qGPFO-ΗZ+?hR Kuhej;ӘDK*&nR bDLm+0xuƷΰW.PӨ R{WsuQT9H>#~Qjaz=}ZsJ3aWBxuÝд1TH iHE#.'l ;-2~Ur0ԤgQm]H1ʖjE m=qvAp!w U:r2 0$l11Qst(Jvнėdc+J}2^ubP1b_uV 4v)0uF:ht͐[cpcGE|C4['$1CpB1*IpmqM]Q!=/t6V}<o^bJ)GGtXXū)D?UԠ 8m$Uqd淰e3cm'=SdwF΃մHG{oŮ  '-H}w"Gb~cnIvr&`DtJ4Ej9UA`3C 8tRYa,Tpp9{ L\ҟ`p7Q.4Ռ{ك~7[Ǡ-;NF zdjPK? J%vAExO3Ač`$Ib-)fޮk*H%b5\Wb3![|9(i\1|܍ $&- SyZ7d~؊IFG !OGI$ռ(zoT1d~_|piS\hBg%孌E]qG5 JRg__!~rMMoDWIؚ͡ԠU B2^]|K"ň닸hVeaD(|\ =MNgkIs3b脀F89o L68w;TcC{ii `*)WP o*pq/@RAH#b[K#-0GGې8%aƟ)~y6YxS*<8܁g&ٺGI'C뇓@B>@ d^^]<{i7ʰR'P_JG>̔?(?"T5kW,M%w@ XoFutl)˛8pԦ1_ 33-7b%D^d02GǾF \_@ eXN'vT,9̤N2G_.)bv[QZ|Rg[n[_g p.2$nUmL!:Nɒy"h}[b-U:|vm^ROQe2ux6Zm6^¯>֪VpeM- e<LJ6LR$%җQ\P._)2:ܑURt}8>:_ZK#wQ調2R&$@Nygē1gjXwps ½ 0H f + AZ_^'2Ys+[^DE]i*bHzMsapRp5SSV2HSXZX]tl 1zVEO N^k֛;c,|qbwpǕX퓜;W͏0R T[ *Nc9~xg2.oKL>9-ʮjfk1 AV4Dw؉B)/4Z^F& g3>c0g~>N[%#dXn vm6o&5pm.@ $`֕:c["7D.Þwk(Hpvɩ'beLZFJwr*2 x_&-u~M_%`e/cјSaO+Q(NZ="ʫjciբŶE4seUݴ{a넬=> s VXgfLy%GlvIBG6z췱 AQf- |P%Jpѽ~YMIGBּQhvf7kyoCaz/s_@FR܄tPX꥾uIAop3x_ۓcbъV{o9irHv@.8_xixEǂMNC7,a^W. 7cgrXhLn05^"3qA1#l }XD3>:G{[ϦNJ;q '/gmZz06EB[[^Q5"t,p];/n Q}q~(-[ ğ726~ԃmӣoK?4uOj3Ͻa>mPAr_n%ߙ? In1k̎reO7t>9#l2VD@%@bc2G=Q9ՙ9 c @Ag#> pwRxjyZk88KĊѵ1[D͗Ap\2txQuXx7yȇWRe|UAm/n6,r N W2 rnjVkYrJNj^LA5*lN?8$ߕ21Q~. e(ϺeU1UGomH}w1ʑLh,{<TwjYd`weA(!a0eYӜk .=ȋy]}iXyEq;yP{oS)jmu١UT Xr61Q?F|)S/0cK;J[;ͧlkRI/ꂤK0 @zoRZSܑ$̪E>{@8Ps0Zq&c_avHzb|rQZ,'e7uI> 6Ȃ.,wP|Uh1D3'2|_*NY{j"^5H$!5a@phԬVVˤi9T{x>ߤX'lN4-iP9/n>NgsO+f)"#ǩn|zbȀzHa&"JVmZ~"swٯ'H*ozfSfUZP%^5o88qlU'PF;'dD7MۊH;tXMLw̍`R$Xž_;ј܂F:tW|n=8`g ZNؕe6v.}֍'ǐq}gLIq*mhiR8Ig7+KBf!T):`;,+8[qR7a= <]FlmPϼh: p94ktBNF8NF8LV q趭p l<,3X<n xb- z$Ujs.Np15-Ij`0j}ot><cچB:E_H ݤ|W|ZGuզc Ss I_bidu0,Ԣd}*CԂONU3Hf 2hFJ-hrk7yJMŢm]hLiw!\eE:T^Zo '2@kn%̓FQc$Jp:39f~:qw^_nQMԱg_)*0v >nD2a53|6^iJ.wn7S/<%J |7R 3e|\66P$ճ6 O)I{OBr%8'Zz_ 5 Dwz|.Jl,^##_ #!<(%s_1+}B]Z`DJè_`ZZo&Apt-'j^6CY$Y3m=Exm/4 1*}^3dwWƖe&#FNU2IJ(1y +ƋuV2=f%iHdpp*>x7jzbMp7 an))n`6Gn&=o9mt㽿`&{vI* I$2*0:核uh2ٿ"I`'B Iv`v3mMM_+kn> uD.pـ^Pd+aMzJo&(RG,oa˪S1x4kԃ퍭5rj˾&2 V?Z[ $]֌l*?Ys·qy]콂kY9!܎Uw}&w"S{T@D-[o+U!S &2c gti~3*q}HLSKߋmM YL@s\&iZgq@_GDq߯2 B^8AFT8#|+;$Wns >qrbPxz3\Xr d4N(+Ɠ48ps^jT1be1'@؁UWm{R 㾦p)Px=bR;A$T;et1D;V q 1_s8\%H M|dgɲ{ep p(F}5(ЌEBWn єn:tUF`'pvoaq {Surؘ`8rO[" rxڒPց!_zݗ؜U ><^AӚVtqw d,)sbi++/dM`huN`[rfYdekE(PzG֎bؚnXkbFYe(nyA跀6EI(v۾ak{r(PcN^u%@zH|l8x!?Kfc!;C ڲv&O+ (3,b \XG|RO!Z TL@cIg;XiͫѺlL p߰)6@R|d|VQ'ViS:,z%=@d㚿z9;o롎uMT⹲f*(-q RZ;HN؂mݑ^EWT9T/Xxf\)M$fhȠY7&ܘ=h1>'%FV:{>C늹8ˍ8 EK" 5wvpg{aѰ?v [;/ąiJawΖ$2n'+x`+G*̟_:}di%~:g "#y4$5"qkK4oP-_FdQd[[2^;~A?`NwT%L6/ɾ@Hd&U e89?u69!B2j\f :#41LpQ*(KJ;[sWr$H[W}%r]X %!U2#3ت_{42*a!6̇F[܁yS01qGaQ$ŎJDA 91L+eFzZw$ԧ8lp4aO#F8 giʁ3%la=}QY#ѯ%S.4Qdio_̥\ޏޱSomK5} w vl:XQBJfiӡPb<;SyoRR"NLi~hk8"`XE{d1=j~<-;F; 41 a1\xexvۀeToGWql q)H˯t~Kk#(!\/^"ʗ,`ҍ`I#3)}G1ڈವ#O{6=bIo<\~VST$FU]nVRE#Y]Tk;|<70!+</pUKH!&gpSRGuXlbSTXN!?-L:f ( bYEp 3TG%ɺ DёEXaЌ(S4Q]`s:N!- ̙d:\QyaPB#Dw2b|Ʌl lP#5WHȎV|ΚnײZ"[TCzo1f) Hۓ!Ï{tPF`n%bO!`QrEԼZ ]* Z٩a+TN\b}*ؤ' oFEju#j(<֕r~%V "bz9:MJ{pI c $T*Vk-B%/n aj" j~^nA9o#V͆ժp^b[|"-Ov .X,l SACdI雓C _o;'AlM :ѿ z7p;)0p2*0o13Pѱ@6(JQ:˟HYPeON"ibkl[>3ɧ 3X>96JTOx&x0\ ;4fy>uA*'+/AҊ^D:uypIr@389iK ~M'MG=c3]_Y_1ώ,d.ޅ%1kD \W&;1QVd߮ѥ4HNǷi^ӝ̍:6ފ4`kP`mGJqq2oY7&nZ1tQlr4Z`?b~Ki7hev[(\TwՉR"Xw9RJh]߻K[:JKWB`M eƋۚcAAƒsv*t\?hd?Cy~!;6Ƭÿ$h4ΣOH}`N8 >A?odB%'A3;ԃfMJ'OCЛ6 'zBZJu& XEώ>Qx0bbBZ@t)[d?ܙNJ9f>,t; 3eèKQ"RYOb-m<b1?EԔ/$EDk8@ z%l-[X(STA T d-Wۣbr&niS54@%:P~,bYszp/^A؋$R ʸo›ݡ!9iWG + Ɠ3AQj!,$U% b XVڢ.O6,6TobHK?%2{heg2*9yٞ{;7$iٌ炫VTa'"]v?oצZJB-Kɩ[k-`eJVp<7" S^ҞOlkXͬKZ6^ǥKEhbJzJ7SUa{/{߱6:XfIƓ3>q%􏪀qsJ& xi) fMR/%1yln9;ɳ1 (fF]ԓ~;_ɥ ᥴaW"Ȧ(Kqy0,^#b-.'}l.Bۮ cil4{EXJ){JBZjހl> jM$#<+6Ilůi:~ 6>LRp=2DX/:WRm eDm!tN?Wۜ2.7|L ws0` +k`V/082x rw1]:eoF^}w>XIZ_;[k`cj."C_e@m.a8JEqd c°KWAg3"1ދE>2\l=6RI1[c7gp-Ye+H~>(+x%sVts:(=Zգq?=4NBԍ62N QmNY/Y-^^†ԍځqy>T $Jtԝe1~Pci1oCVdFQ~O?(ޛ:vj[ ottezԐ$ʎem+I $ ₔ[&cypQFhsfolU d+t1q ~AqwTq%켏[zR4B{;7+gMi{Hȡb#%#1qKFɑb"OTunN!>#6`d}2 ʣ)Ʊ=K%5;:ڈ\D݈kM|ԓ>jL!*ڈ._`Xݝ11(;]qؠ]t[´;AܓSK<l76RhU^jj;QZfr=TLRUW,#y|Ia13)M\ƄI;@(-f-r^,V{-mTb禆sĺ0i -BRI}Gl36`=0;+Cf]8+|7e0xћvl7(A.f?T٠[(;Z3V3\OڌR>>C ,Iɜvv$ @U??ʒLvyZZ_kYb~2?juw<:d$' +|-'/v)WyWfc*fF JQg^3,)o bă=JwS&!MI:eZY=}&z7r̜Gf+1Z8 o;EN#d /"2 +Q빩0Q t(fp}rnO=j@fb2sY603 Z٫'&w[C_jKNa֊'zل/ޚR[^2K5Xs|3oZo48UVV&m 6/C^jhc:6!K!}|AƳ~ҋ;-G{_d|- @2.!hÔ}s_K ByғXPfoT-C犓m֐Bs}e֍8\*VJÜ8 B< 6a\DtHʕ=5S[Z[ %uu5`.QDx`pj,HvkV/L5:?~]D~VX@﵌(4˧r! ݠ)E=Itx%pMSh66Q[ IVvxg ϔō|M [6=AsW,'ۻfH־)+yZF\\~qT CnwkQY,kPor0o\Y +^ʂ<0hG"zk& .C20x2ӳDoPA>}LB+9J5:1| @d8%":b kUk8|y1p%8׎'|'bU^ݨ?gP}EY^;‡;Р?;Xʾqu)TO05:hVb Wx\@My=P\HoP M` R(tZYhܫ-'{.#D#ߨ6b d,pnpG|it Bj`:8)&4t |)k7Uw:ԫPV=,.S("FLq//EqV<_Y %E: B_>qȹ`մΊt젵f{}ct# pIbu:Y$Yj ,#uR\vPȑ@L wf_tN)9TC| >+貏qWi}`^=t Q<਎A}\}ZFץߖ~ltq\~>V+@lr"{4*,DG5"Cݤ aM1*~to['WozPS*}E} %|5W]c"Kj>O)nbѶ Ms0Mi_ʥ}lwJѰȚg{@1q'/6,?LИi5(VA=#t(Y\vQ@s}#џKi 7OGAY|*A'-R"9H<(H9RfX9^7b!k: 2IEuւԺ~;p xd8}'n ЏPf!vR@Jsаbcv PjL1;yifDp`/e%CJ HmJL-b'!Lx)/'!8J U}q٫N@O#^-FYc.d; !)wm2(<(?Z j;AX[1im_FU3.3'7.\|4/0JFBӖ&V:fJ-ŃjzPͻ/`҃DeȟߍYY#.CU)d\9Blgo|S=˱̻݌|Rs;bq]ޔh@5Q 9sF͙^WX=P6>p;㘰p5wS]OƏ͉xldX2~!r&D?w4rSX '碊Arq3pX(ZWHq5b-䭕 So*I?Bwg$[,.m u!Dy%!@: !n2q}$v)lN@2K soOHSj^e(zLFUUXccRGǵOqq`aӿ_76+CW{]VE^LL=fHw-s0{?tR~5m]WxG*|k 1ȢKlz췭qB1(VџnWP?a\xʕga~ٜg_+ibb)s[czh>`[4e$d>MAhQV$V*mQxw=+~El=Aq[g7:C13m{ީNj!J*.Zps3!$p+X8׷MBfwk9ғTSxcb]!9GSbn1BY1rQi)Ə^6Jbch#-梮 5qY8byYgrB'|B&5/8(',qXi;cㆣ/2"EA'טK\7~,㋁W}eV&^!}'k6-S5#11 !9㉈YL.i}GR1_`)|Ɋ+o~|GZebEmdbfIH.]GUqf]VG !5SN-B=*ZXAEXo!3 ]P 6}fGL+kZb _|_B{bYq`nb#(8DdM}B:* a! O9@z6}gQL5_ś$Aɭ^pD`"^5ZU@b H9W[λU}]n.%O=Mo'2Sn)^2)qK:P\YVVBqZJ0U<`iae ڧ24Z}: L7MQ16)Z |gK'kDq_b -[Lq(QhR۝n8~>le׼Vp&`iJmo"ٜ^cb:p=ITOI֞j!Ha-tPw(4_$(_ymH ڭ$3DJ!*=qTh|%فi!u4EÚӸ"Jl! Ey_pu%8EP"tEj__%+ Lʲ5X35]IuM Ňe:f*Xml~n64 lX 9>F4w+|LdؙUN]rg!!j(Ө|5%E~Uc9dJcM G$BP1af<&CE~o<QЫ֩Id$ .Iy*Rn N$𠱿@p=(-/@\!e~{Jlb]!):+/.NĚqA\ehi`JЗtҦGoZhY-w hi"Bn %)]˹txHCAQ =h&֦u+{8Z|+~H+WyT*!KݧB4蓠͛B{OҠ3{}=JSn)ˆ!5 N<Dp(7:& oeU;JM,N !IPy I+8ͽv Nߒk=B8~PGy (2(|'3d("/ˣ~˅nR$ʮN:~ j`9}r= zq3_;}3%VbXV}{V0ߕ紕jYbiF.ŴT8?Y°vԇAyprƹ2uX M5Ƨ }O1GE.`ivOR'| VZd)΀]w8 40ݭl_>GCQC?WŖIw1h!|g\:ja_;ȓ -B6Xđ&|[&-H!6U;KX2 5U<o~k%".%J`<8= 7/ wş:"jިAT) .0L(OYtE9y2%.F UB뒢OIU8&,&j,XORH`eD)mb`N}U[!W+|-Q~4@HMr3uNFbg V\"f**ENdo}m1l5xu-Rq鳠j6SHwF%Z-+1C]) 5AuO3LC%/0 [8STi{ءi ew̦]>Reŗrݲ'Oߐ5}6Rj}uY)*nlɌC"< \FHXTK& \\z Ίho_;DBSB56-vT#4bg ;DfBU WY̫OMGݍ0{sJp*;P Y(sPjV=d'e6:8$ EoT}PWrI}mxdw3rgrZ 9[h3ˁMyFuLՓAgNvrdb@-Q T;Wg/)d+ y/&ĻV$xHFFeȎmn^#mY'e4?zfToط>8ǽ;vC*[w;/7 ~B#7ݕUKmU+/ՋO=!ꖝY[ͯvn(FJs[т@yO8K5 WhlUm~ꊿ=(NJ2(.[Btk5c\Xy}X*"#{ÐG7kWZ7 ;%\eb(!z!c J=CZFpzj\2kiel" !Gj)l=W=vQM${aHUP>Z ?cnbT yBPh]S`G5. 2= {:Sf ؆xd#1KsҚ#κ͙Ifj׽ǝN6"mI>s{ԟ|)\+j?SœK[Df+Y+kkp/=uDh277 _µyE#G ;:60_XBPfWZ~8ܣ6?noAb:$⫝̸S<9Y[A*󒐇1ͧC?*„b^ f⣜ lzTTU}c`mIZن` t_ *m?@‚bxA"w Uִ(ۈJ./3r_Թ$qÝJV vxr6+JVRS?o>:lؔBIs⮗!! !,UaY I墟ȢV<-0ږARPҰ-ҡ Эf 9RS lNQZ:Ei}cљDThdj!kE"G,^T,5i*t W" p\6uI^BiR߿"o]ТN)z%Z؃~8PiDT'l ;Z8Z(l\:,ܔ6o('٪ ~ۅoC쀡&릨jO)gNmy\>Ր(i /t!$5́ o\c׽ @.Kp 2xVo~B !@lsI^1Ɂ['@ kAzM1$`dUxb:};{n1|#ї$Ch |kLG& r)8Oʸ:q(iaO0n6~=G3t~Q;x{9Yr]h./9 {r;/kEMl ;TgjwNLGm \m^s[)لPO4)n1_ Z@k]tCHPI H{dP`g붮lrw$4JSwݳ9LR6%84WYV1Ro+ (/`H-,R'4J:P%QVHu(kWi-߾9= Xu0+f0x!1qDN,?C ᵯԲ5eIk+9p-Ժl]V(wUۖX 7z.d:M -d} Тr/4$9z%`Rjݴwjzo~Qep]7<>U5Hw4G ˸ U,J|(M܂(1ԡ]( OF˳EI ֚Q!"9K נPDK8t(B<:{('ꆍ{(|L`yJ/ Ll ) (a zѥ\@?VVJob35ܴpkF=y>N_w஖XmVj#~+Js(1xl>ґ(7Bz+j>YrgXn7N[Dӗ";t2[c@ 2R5aNUX~Riסс[@ӓ9D} )e7WcJ0r X +uFN&Zu'kG_SMaO]HwES5tefUaC}T:,Js,=kh*نK}/R>29x LmɛYݼeF֞k.|-B^2& xJnnGuiH H tNHyL4,,_R!CUhzȞkA(#R4oJ~ M8,5u@u㗞4rwo6YanMTao qX"@шӤ\y>=mn?0(ޚv\O= )u<\q`BJe=N89u0h-!jI/rERB/mTw(DV#lW~aD^W&A eM{y-С]CG:S< JK!HR]7_W;>cӠ̂QARI7˂ƢWFZJ';AP]CxyjPy9TYF>ڼ Ґ 6 - i{޶3%nRB!k 4xvBJ\TU;PM*-!j aH}#YnkgxrsRE_O<{/iY\u-{=Q^6Zh'BDWR(l3x]s($~2pU l}iPgԷ4 `M)-YņJE5;gF!&/-sk*$`D]d<X' ~2)kZJ%!]|"^?kq/%shزplh?̊{ "]E[bm^\4{ r`8<* dx.jKbhU}Vbwx@tw=Y\YDmd ݋1lXDxn!lP6鎑Ŝ}a x[I"8KrCgaHVTi0 % O'ֱ1B[q IЕ¯~YT gcR5YEO"h=ǗoWEm@溊)2u._Z0?\}.b8MDx `)E A@n\6饕FOEєI72D<pȠ߃Ml>NԠw_5b~g S9c)@VNf ;v7-r"*}teT< ?0:WqtmIfHl`1C>wm7Õײ#GKB$ Hw AyS"%VT2Wk"LZyՕ65F}1ab NO犳L5+rd[:>ƀ'PUOa=4D1zѬ@}J;~5uH2>"EtDŽNHVJt>{ Fi>jX ͱ)1 Kf\ba^;7WF$ u(N.$g.m7IGުvXɠx,;="~ꫬ8 ;vqVǗD@ϴ"ىBhbk :o/aU)*ƟfR«(.cUe,GA>…Z׺(tQҦL5Eh~ W#U̽]t ͢+H9Ya X46;CPRE{*$'U Pi=Edsyȷ`:aLOWܽJg|HQ(9Ҁ95a! IqYI8 @QK03 N8R tyz7EpΔ"aKa DM C7jUN=%^S}g`pbgiB^ 2η&Vkr=ݎ kSMٓNaS8 yfnV|or8)N/ k.2Y:vZ\C`AXvUkgq9x[W4. ]lQX;K}=zgCHp$a> Z{^b{slpEW0=}/CqY+tKFLJw{J d?8'&[tPa뢘bb]pW|Xc FBx3ܫ`HLENa[I\Db6wh+E\]КY:F{R8$"b0O؍Eh9 t28/Z\)ywz=p(\N+} abTKRz뀔bğsU `>3r2#d*@ȭ!(zĘ%_p%*[إ"͐'_61e緁(P߫㛸&~X' 9d YņH݁E [f\DN]X'`()s|,M͋LhJA>%#= AI< %CnNrdi\IX{.ZTY ᯈq<@pkVԑ89PaL'Xri=m"cq3k;3N*j6I|SP4LVRD09oEk"صVƺ wjդGưX͋=#~A xD%F]liBX+%@@Rt π͆n̲3 ug!]ϡWNf~W:j9:h'z_$(r"鳀,v-jUT 5^/*8`X5bl;`z^-kAQ W؃6׉nbg$3ʥ@Xd˧i{q77oО=@]r͵ꇗB%?]d,-mom۳ޅX>VO7 =qD3zZ.+__:}gc Ş)CsμsU_=ْ#`ňNɮ`k\5[!y I0"=Uj\B$Z TZE?оp1A >fl#R epuJk_1^$՞Wȷwtd;spM=Rv@٦ a5Qߊ a> MuxB41E¦#R-WŽ@ ;;L+HV,$[)XCH5ՈwwE @ھ[@9GP:-]0VnSeEe 4n9P}<[gΐa\xˡ7Ы֙/UptK3T-/JEqwabvoSJG`.i$@ܷ\|)~h;ԶQ bĩyLL;w(M! P&Nq¼UjWG3{p#jHڹOGQN0)G-\ͱ G56LZułV oIg M)@L^|jSIQ,>iM ERR%=)herh{q,z'_"uX1 (ć I6qYxyi,{ 6Λ,ڬEEzX\ţ'4Ta=troASg}jxdWaaӪU: Lm~2fQ`*a/YcO5y=UvdzMd/' .ꕂv(tdd-fa8qsz90)h\F;bu2$ȼzcTuByw m!7N!СFrH!cȚ3g֢nOXI)RUBk`Hz[pO'R?´U"73тM&).kSPz~)gY- Nܣ2II> ^=Ʌ ;+ ;-C{o"%O21°U"ɦj̳}Cdm'ik =9fE<^$Q:|$m9j02Œ{2էA)˴~bmbL fޘV:|_HR5v\fضS)Px8 RbUO(´+M w==Yymla 33Wd1 .ieA `Q})9v}}JQv$)J Kry`t._"^{m dUΈgC*72 X܇ `_btyJі];c;{"!\6\ft7J݊=`& U It–d#12M/F#}>nf˴V'3~Q!.%޶c8[O :xvro:Z="֯֗ùbq3D'xke[BpA [ٞcޚPm\$T`˺ߴXYw8uaK!lo]cJa ë0a'O-V h,@>jfi9Aj5̰ډ8D]W1x猺mk,rh9 DSrZNHHf&T8|"]/JNսYlh wZk!GE2oݘ85dz9qԹ{">T[3LP8̾`z9\nRd7ɶCЋK$H;AEks_Pd[25MQgB1g}mt5)%Dc}ˀb9Ro?c_ϢZض֘Dw6]\qN!nuVƖ|j\ppԯm@Y- 0~3#8yG !U̅fr`2^C O?%s "Kz#2E#U욝5&BG2Wj'jId|A ;< Z:55#DDW fĊqUY?&+勈yRfuSDe `[Plp#to.;|R2Tbhu ť٣ MOE'g^{'"2Rhnmd3mA ˓PkJ]<1(y{=b:ۗ4svoɣPSaZ2]pVq{M7ƦbrnSHg0)N+yA:[]3 yW>y¯YTX)Lw׳I%P h S59p/YmPln]5nj+kwF5\Pl6f]ki5 khݭ b$NOKc?6& M4 I9GW& (߆t4DF>u>bdSZܫBnS_Y~ rҬժQWK셸Yu$q$pY/%>3*s KfV/\U)Pezp"iyJH%N-/du;ra&`䀸1qTS~]mr?cVqR(^ҭrz~-[rU zvեHf.r!@ Or p0G&k}N>U9~9؀mQmWakл|zW#rE/nJqg*hA?Pv@H~Jڱ{[4#p*<@,q4`z (ug͟f\5kp0YFw_p"$ _HI(gJf!wz`P3?V(Lb(Ǩ]g1@]q}@ꂕG._q"#Tyc]Pubai*Il6Λ}e shF5夈4li/72DAc(;MlW]i]g5;BkzH5OR:%vP_ Y` O 27{)MkJF4΁Y>bZԬ~M|!=P|zF9h8W-wZuI3p~s;$^n^I#GX`Mߺl-]@bA(;-j>hǾ)^S(ʎ_fYu8qڿYZ y ~5}< ߮<p~)!yr2Ss$]8j`[ PdwbZG3mybilg8nNz'HXLNw.Fw[=3pB]OcBYIBGg ^KuQ\]-k$<Q w]UIaF:ʨ/5R0H-7K0W''"0 (Ql5+~R*\℺5\SU;i%U0PTnzRBPy,]tQJ=M&!xܩxT\$r]¤mmx!|sb3o#抪{t yBVB]I .iT(syo=h_R_9Q Mc08qjlBaF,POqJ|ѥ[}M]rg2xnr[['/UEze@ C(7Ya1]8*,%V|am=e Wu쀺xmnX1sy6Khl`v1!Bwav8#H΍sOENסM1$V^R)Lx fx$E{~)_rTE͚sm"QcFXbV%NNVA  )N04 l4f G&P2@EWЄXV?ژe /Nq@f_^~:i! }JK:c|ͶƙN]A#{9佃^;|@VʋlBdV=@v<dܕ|wÇ*ulMg8جiv,,4!s8db7'[< 0<ܾ 2vO"ޥ]i Y5H 0Cji?˜Sˉ{=#i ٚV. 34ҸEň5Î;{F~ Rk%&]탫% yCph(~x]kXΗm`M61vm9}jtm @T5"G d@̔R3C.PH\ 1u,Fp 5*5',9d ͢{Ge~VĚAQ#n_ ZC'c Zst䂕[hQ)=YwT!doUu ooksDG҆nzsgcԡ*AѕhriW;#1|y-^fTxYt1Pgy p6<+\ƾV2ޖ#lBA:QB)l[FU[]"Hɀ9l( &()~~͞Kir*֩Sc;S`I''Q"/:$w(S8洞4NgYT)WE{$'H.vXCx90T冂6e) s} !D۶' ۇ-bpakEO܌UVảcbSIPHʷ?`Aɇs!V_k!u[_RyF[Dϵ_et '玂gL ١+D_BqDWaKHN[ 2FVŷ+,KBqj;\-epW?ݙLӾf "wxϩ-n?$4*>h6/aMص IXW^"a`ōa.`NM񶞂Х:KI s}?QrF#ZEgw*l-eN~^@qQ6MX푞m5Ō닥` bzY8<6L18R4f} :>+hڏ}>qA=Bԍz7KQOCKFz⹚yb +d9kx)J8%q t)eDtBc &=XViM߭ P![%g@rDʻ|$H$AS󽈭wV"}r썴"FGAلN΃Mo89g·pc&9ǂ([F#i~6擞jL9#R Dpc|[#̔k ./X~Er\Q͌9'fO|E/oXJ{6btx^cvf#doj5J搽epiF L=P!nM 8.+^9iL~V}7ޒk? 덚=ZNԴ ݣvzc`[pHdKċZ^.$%zM';xԗC2*¬E4@PxlFV[lRsEp˂k{e=@O{eqn1)n<' 8Kݮ( I,x/-ăC }$)CD!OML`pD2D6Z{ T;M̗Z uR4}!{Gjd0{M+ν{7_u ׾rDG3g2(uj;[5L%ݿ[\] HaNEhsEjRaO`Nb&k#,ܿ(;-XZsJR Y; hzX LXAXT z@h q]Gvk6ea'TT4dql>8I"ޝg˃個HY߃vfP&UP9Z"-G%߾4TIQuB0AfwzB(,{p:8 !t,zj,̲6h bI¢-Z5s| p{QSަ7c< 2oaC4 zpE7zTXkez͹W)e~HâB LxLHr4,xU7tuRc]7΍jD _h>w5Q =[ySYN W]S>7ow<3%֢s\<}x. -k.;PџFJfv_$pgH.$GsbM#1ī}aZʷ4N7-Dv%I!T~ϕEAyCh0RMUUG^z4`&-6h)r;7Z2hVs^׏l.0dZ!ֻQYf8ͧo=6&'Yt?S pyP@x{M]7Wd͵}= 7[(S9Y{ix-uklر<uQ{f7TN{DBRs:7c%guzֶuD BE(P=n985\R4H۵qLq$Qa/>n99txMDx>FMkܔ垍bª5tVs$q[K{zᅀTfJ=ίWx(פ.ԖTE-8~ea/b oD1* )Fܐ}l) <OIy}/ x?'N8bBҊWx ^uMðԛrLL)ɤKM"P:2X{?pqSy3#;\q_}O1u|nE*>huZ/}lLމJf1IkbzhBA#*=^qiIFÿE#(e9J.:4]ij A[;$=Pk9 -wԚpgY ,ꀆ~*K!OIhGnnrMaNBy`&i(␦¿#V|PPVXDLwǶ:҃j,0 SP]4߇5m[nNT /}O7ɝ[3]9I$>p=whUea$вvq U Y%P;nSfiiF!T"{D]dEXOF s>˯;u ޹)' O s@ys1Ȯ,s4/WlېZO(Iit5yc5[w~+lX|PqvD&!p'oAlN~"5E1kb:{{)zXTfX<*`J>Ƚ!B҉Bax}br(mHkGe*U{C>^gc[]9\,NJ_ |5ߌRTS(п9IzguY͖v@m׃ڝxE>ȝCbD^w"ouE(8ush0D)+6xp1g4/WfvCJg[@yUJ4B55?Rc0zgVqpǑ>W 8WWYzz"ȿ@1|^r_"HH<|\<{3e xVAoh ƨΫM^l(zؔe#(Pq 42Yv搼G#SԧPXR'qGWCvmlz *;Sj3{[٘mRҁ{K)&3A](pSـn ph]8N;8U>5Hذ/ n6]:=k:2]29Ұ}Rd'Q#pT?P ^ǹK!ALD]ՇϤ]P9i'Q&뱫"곷k Y_9&y @"hs JV=QX,g3Ga W 㹣|3rh6BhN˖\vC,VpJ˥ ˝2%3rT&R`¿_Q!1 ۻ*@I `My Xw[Z*R5<8+:ٝ, V!KĘ'%JOO@GTʉ%l!UY=BGC!UtFg'95-?z+{RI3WA2Օ~IIE1v_qgӶ;⁎ѕ3p ߩ / '?BQ =+/VDrIp#@٬* Vbh}{E@~`N9y J@e-U vttIjUeu dsYqaq x]!0VONj@|H> >egNyoرZS0f]xMja|嬑P}129|yq} q9!pB4:5P _+!OnG/XWY= ]0u8Pf 1.mU |qS"#ܫ2y{'Zĭ([MHi:Jcsc5B^i .8Ku8aJF)9?]Fw qEoguqTү8/oX ʁcd/ȓHyI:fB9M9=2/y iW{ů="3MЇ,Q;n- Y`v%Wtƒ~ޝle}{~(o|w'L P.C6[Kbޖ/#x2b7W }TW.Cknq>4@ y F[!ïec! "4h-lyQLw{wC1zZyjE/uꈇhi1z"J MKu`cyۅζ=se;d:}cڵrsjp7E}7u-5m'V;>hzi?k1JCƑTٵ_ ޥ؍x cٳv,DцHv*)IHZ#9hq!sJC3O0=pi.ŸQ62!eO_ltݷ.-󞒭.77;/cޒ~8A\Ud,G˄qQО\瀻e,)^6xn TQ9q>&p9/W(=5 PRّ۠2Q풨 G1Cլ'ufFfeXRc1=jڌP!3q@mcrnI}Ч6f_r`/RW[IE>#,PG*gx-JQj[Q8[sAf 8`77'XWs0quIm|L%0 C>9Ш.Ӹm2i’ ~GGҰ)>2 7Do%q9&ADz10`̇ /Ÿ#8HEVE| iwlu䝘:'\Yy;mi^<60ieQ9TvMovn`n VsrϢ--F "c*d~lን MCҀ-N:PWGkC sKYӜwڽ9Ix k|N}/Ag瓁f8}]Y?D)=+SA|]Fş0U6CuUA3.7nRG}ZnN?M9BgM ܇1(駯:xiӂ|U0vdF}>Iȥ7BOI\(s}@ Bpղ{ȍs3w~ )o7`i\rq%0TՄ׳ȟtk@l\wn,U<\6I!)i0IZ=Y/v ss4HoDJފ c\ZIKI_E)Z1;儯1nXXYS 䚒mb EJ5?QdL+i8!|ԢZ2>'56]l8 r4W)"^uhm@Qemh0, sa m[-++,\j `ԗ uK [ -Ma~m\ L5,/O {M2ʨ_!Z069:tL9}/M L4 =$? o,l1#Btp~)si?*BT {k2̻JLHnw^PXi֜UIAt8q}KʦG3~0ھQ]wsoCt({gp^Wӹwl+Z%cCheg jhqZP:xgCؖսdQ-ta9Dkm+m8ZSCF)z!|VC͵pH1JNyo;1 ŷC +MUQ'].Be3\hrL%_DӀ0G6}njxt9Y^J#rWFW.fNWɲ{^=.paSf 3EmԒ)>mT״PNG~,%F=SMYS(X arޑ.| e,Vw{Lpݮ=˥k"qBۖ8v1GYk܅+!; ul,Jȹ*ػBo"_y"Qb'nK;0W&Vf6YDzmj#GV3[Je >X6Qm2HO%e|. D9%9+M5< !听ҙ:WfZ,,g;CO;d-$7 % ',b9ʉ[}Щ*rJ:H]!_hrO)PY~g2$n=쵊ncAՓj{i8geqJTY+SKfAWQ_/pb9少5 Rz&`2 U jIK43 fԛ#}xfP"aMɜM*&*#G*˶j2,ަAtckϭT%A>ZIU}9uSU jv܃^4O.ŃܷxPBJ8i:h)ݚȃ#J|žR! CDbhy ߸OV;can.5t*X<=cTma(dž#m,f-vui, &p(:/}&?m Y-Ι5p" Nf$ʜK7Zi@PC.]$J͆_;>5( FU8#,GhQhe+]%#Q1iZg طss(6pD $?(Ԩ/I\tIfʮ>"8̖lڈ>$Hg G]S9CWav -v"{Ԝ]~]I'|T^h! QҢԉ !\D!#kCET$i98&|;lL~mMUVŌ?ة)rɠQ,ȚO@5}Zg+M_<׻/a:v*Wg а)E?Ân(]ߒcሇZ6r,W=?Z^Þ9yAqZ bPܚ!qޯťJ=+MG̑I3B)1+13FUlb."2s0h/cw&>,Z0L"XM~(`TH(K 6*\g58v*gvq V,قۙHxHN )^* v:ϗBn1lXU}Rn1 ߹M:fM>ab\"L*0 dh{D =n)kT i5Ŧ>!Y&Fi&fiwΑ>j$w=D_kOw:2}?Ox Xʎly R?ُ?\zbGo0:JMؽL?smW%{?H{8L |b,sJfS(0$UPU}JmZʹ|vFoMKWٹx=N )<:~LԠi/Eeus6L3 q )؝V׌)H밦?wz;kY;Vv<H^+ez ɗއ3fy6$ZdH ]|1O]19zdfF&ţSv G68B\)QieSƷr ߭% bX #(dCPKaMP9&wgLTeUUx^0T;-J"`w厘ֲ̡gz݃BcZ,\۳&Ҫ7ES;Hn=K*+Ѵ/vU.(Ǡٗ2uLMG37^Y9R {>B:t^DGV,M2>?))M #f~%:m,B)Y +YZ`lgĘjy"ߙò%rnv ~1\L{G6`ѥ*?xG8yytUpVŢkS`+rO /1zxK-峓|VU@;ğ+Or%Zv]N`9uIWA?Q=,\<> ' Ax{_SSys zg7I+ e~oם{Z5s9Hn+ߊx[sNtd#unwIrkwZs"RTw@  OYWS\CNX-spuߔD:<7@aZO1Pnإ8d"Ol# ϭnu%.{w N~eEϋe&²7[m?' ]P"٫qh[b` :4cN%m69Gc);>\;ʑt ,pqA²yb5)?X/eV4 Q&[ŢMXŲhOIޛnߑ.ڵ:Wor0qO%T (( Izu&Gi)LFjQ!t'';r+Z%( Cˍ@fv 8J!gʔj8qet -^jlVgIc^i0}7ҲZIh{O'B# !P)`RN|ht0y{ bML0\3_]残k *`9J:R2<]blͥfLMγXtٷ Mjw[B /NZ" mRgum*C'tBazQ/ec|Yk&ŭ?KP}hkTSJlwa4Ф~TD@9 !=jjF X7Q,-KF6lu :ka]٣ub uw'?—?_bq S`J(e̡ uYJ ua]].F1ldQX^9F3@-c|Y[ u)DnFx6[U7t Nx3R8٪Ć"g ׸8rFnдlê,Zmt H<+ AD?w@g!m!K|٘n;h<1Q?rf<0W *x4d%a׼d`1G ӿ2M;K 6;798Z/ ]z%,aȗO@NPK bmLo6N#U&ϖ|O# &ȑ$Z'O=[t2 HCO"'G*u7,OUǰ=Z[4EDɌw9CqUzgH7v$Xл8^ P0 F3܊aHuZ}:wwahFX" /`ѷڧhbx° H96.I{jw49;x|lap5<fp2ɋ(/.}Yisn\OjyBqTb_ V,ڪ}{(& %Y iCzLfEQNE4jx\-ڂ 2ی*;cOFtO`ilx.{X]+ PX"S+{-p[ͮ !|.a~ň qK8*&NÛJ'U̷`rR hgn:=D5adþAr-z%yq_Y3 eޘ#u85E_iB=aJEM>] 5:;5SĢe^s"?)jFՖ-N_ 8mB@?g͐f5gn?~(,į')),Ͷ,UGPڀlhͨrң_TlWO{'AY&_Į׀Ww>o13ҙ> cDz@Bu>R\R9hW/9WQ`}@6]Q8Ҏ pD\&lCmX}O AJbEI- DO\셨~'gt zuZu4=LgU>bEpSƍ(?:eOh֭spQ#2eOfa hCsu[)wҜ dE7Q u;@l*׿]HvR)UN}݊3g :C[YG<K;gRn(_j_oYt~1'Z=9 m ås@ x9 mOCщ`vʩnS،tœKpj1yzh!~Wn|1JKr56 R?gL$B8q>kcM%/39ß/𶶊v=c+f?j{xb}:jq(Ύ]ϔp: jOQ8$\ʤ`A:].*!-o)SB;qxu9">Kf|[Ah1M/"H}#;hm?oStcǗZWKQ|6&-xwMU67yɐcQʥm H0.2]=FX7?܏Hd;i9Kli;+"5׼a82|=AT B 2+ll_N܁kjT"hD`y754]Uy\!L_Ɯo_bΩR""a|OogO`l[=pJ "s9LC{,<;v3s45z CnKٗCa$cǚգޟtw19v' !;eտq[d=ABÖ*3-:p5)GLĀ"B:k(t@tpLB|[#+2z+*b'ԮsnN2qu^j؇7QXido)ApSb_z\L I,ܥG iиUK_y4%LI?,eu|%:#e[$hE뫌w .m1B).lC ?\j4&vz#" 2̋rҘ>h(+L`# k9mME5HO8}[waT75S {WFfl |:nhsM-+rDⵘxYSD"\m2SA&>#!Ͳ*F?嘃Y Cb;^ǿ?(94Ǻ"Vpj&`yP+Yqb_8;̣⯁d sόAkr09^[T Z?v KPÜ$rtC&n/|jY60fQ'"7dK3bsg ֢yDaXIX2]e5_v/)Fߗ]+֟(Igɪ|"uzJ+w,!yԳn4>jAV+z :;(b cUQSr{9scԲOh8G*IS,= "S9>ii-OCH_?ܬ0c٠l 6ߞ\I6X`n#ԕ1kQ#z쁂<>q0*ݐ{f2,=pI0PoP|4"dsmME%wEu4+ŵL!}o/fL|g@f77gөS= 6^aUKSYf౨wOp)~I tu8<_HiKI?,%ۻ@ p0Fl=Dd"EWٰ)m{͂ȥ0H!ҐI!BY7N] H({T8}M/r#.C4;:!H`A!!}A !]3zOλ(+TT}u+T 䝬aaAr:_&\EV0ՆO)庿is:d2eEW;[̨?8, 4՘.Kɜ?_5"|;\I\<^#6<ɣprK<y<h2[ \ =w% <0a_BҍgBTS)y9b?qrXBT) g X-eg_0 9T9OO ? Sw|T'{KB|!<+K8b^.hBLBJ)pX^tȨ.|Rl0z@~E,c$_| -bJH@VGaz !h͞1v3g4yJ-@4}q9>]dbRwNRP70K6fh&Ʀ蓲yIt Pr{j)MX%{ͫ)nS JwU!nB%V,j%DG) .kI57:SVY@)#%LVL_9j%j87,.aK\:L_lwUl.kG^2>p{]8ʩ&EEsJ/ڂ¾ǯFipFX-žԗq }0%\ =omd 0e_X(OO/bۄ\oN =^9N 'ٺc鹩|W#uZ?VU/'niery:\qAI0;}LN(r6N0(JMRnω v5.7MQ.م";j&ȕҼ]+ʎ&W~˃ͩ!nVY l FҪjBpIۏ;Gի›kW&=#~G$WI(toKD( R!z ZftiҬ3|-9TcK_S/ !^憎iwMwE'i"vT%&ِ#]kO@oE&Q .ǧ'O<>!d2}2;h6Beldu t۔'>ytI:[hǔu%CGִl*^ &դגڄ藟&T.9*oLYJU=_vcls(K,xE1.RX?_aDӭ:;BsTVgE$/)=3BǏ@}F[n8w7q,)5*iP{t ٶ YZ