logrotate-3.11.0-15.2>t  DH`pZr祸/=„}9X :}Z2\5F;0K3{_3h2' >Hi?j$/-}~k,p//@(?ۣ;Jmyv0*ŚƇ^I^8%@ewW(kljp1r Ψk@30C x"e P6"Hv6>$~&>cH0iWtgW؞cL stdZF#gs9dWKbSߥW~F Xe69fff7e347507a868d9abb8045c9166025878d29DZr祸/=„EBaR"(YbEuVp*HE/R rc6湡"QjRA.O,@%N#yTgqvfjQ {tqh!fYM/ᗸ!F㳦t[:sڻI;)mkDwCl]̩ɐ x5ăO6 VO1M%SƏ[=8;|>\ө7iXlwV]A#"xߌ>BK?Kd   L AGN$ T  l         D    <(8 9d : =E>E?E@FFF GF HFL IF| XFYF\F ]F ^GbH"cHdIVeI[fI`lIbuIt vIwK xKD yKt zKClogrotate3.11.015.2Rotate, compress, remove, and mail system log filesThe logrotate utility is designed to simplify the administration of log files on a system that generates a lot of log files. Logrotate allows the automatic rotation, compression, removal, and mailing of log files. Logrotate can be set to handle a log file daily, weekly, monthly, or when the log file reaches a certain size. Normally, logrotate runs as a daily cron job.Zrlamb53openSUSE Leap 42.3openSUSEGPL-2.0+http://bugs.opensuse.orgSystem/Basehttps://github.com/logrotate/logrotatelinuxx86_64#only the timer can be enabled/disabled/masked ! test -n "$FIRST_ARG" || FIRST_ARG="$1" # disable migration if initial install under systemd [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$FIRST_ARG" -eq 1 ]; then for service in logrotate.service logrotate.timer ; do sysv_service="${service%.*}" touch "/var/lib/systemd/migrated/$sysv_service" || : done else for service in logrotate.service logrotate.timer ; do # The tag file might have been left by a preceding # update (see bsc#1059627) rm -f "/run/rpm-logrotate-update-$service-new-in-upgrade" if [ ! -e "/usr/lib/systemd/system/$service" ]; then touch "/run/rpm-logrotate-update-$service-new-in-upgrade" fi done for service in logrotate.service logrotate.timer ; do sysv_service="${service%.*}" if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --save $sysv_service || : done fi PNAME=logrotate DEF_VAL="no" DEL_TEMPL=/var/adm/fillup-templates/$PNAME.del rm -f $DEL_TEMPL for var in MAX_DAYS_FOR_LOG_FILES ; do echo -e "#\n$var=$DEF_VAL\n" >> $DEL_TEMPL done if [ -f /etc/sysconfig/$PNAME ] ; then /bin/fillup -q -t -r -i -d "=" /etc/sysconfig/$PNAME $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ test -f /etc/sysconfig/$PNAME.new && mv /etc/sysconfig/$PNAME.new /etc/sysconfig/$PNAME fi for i in $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ ; do if [ -f $i ] ; then . $i rm -f $i fi done if [ -f /etc/logrotate.d/aaa_base ] ; then echo "Saving old logrotate system configuration" mv -v /etc/logrotate.d/aaa_base /etc/logrotate.d.aaa_base.save fi # Move /var/lib/logrotate.status if [ -f /var/lib/logrotate.status -a ! -f /var/lib/misc/logrotate.status ]; then mv /var/lib/logrotate.status /var/lib/misc/logrotate.status ||: fi test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" -a -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ "$FIRST_ARG" -eq 1 ]; then if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl preset logrotate.service logrotate.timer || : fi elif [ "$FIRST_ARG" -gt 1 ]; then for service in logrotate.service logrotate.timer ; do if [ ! -e "/run/rpm-logrotate-update-$service-new-in-upgrade" ]; then continue fi rm -f "/run/rpm-logrotate-update-$service-new-in-upgrade" if [ ! -x /usr/bin/systemctl ]; then continue fi /usr/bin/systemctl preset "$service" || : done for service in logrotate.service logrotate.timer ; do sysv_service=${service%.*} if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --apply $sysv_service || : touch /var/lib/systemd/migrated/$sysv_service || : 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 logrotate.service logrotate.timer || : ( 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 logrotate.service logrotate.timer ) || : fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -ge 1 ]; then # Package upgrade, not uninstall if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : ( 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 logrotate.service logrotate.timer ) || : fi else # package uninstall for service in logrotate.service logrotate.timer ; do sysv_service="${service%.*}" rm -f "/var/lib/systemd/migrated/$sysv_service" || : done if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi fiF8N)A큤ZrZrZrZrZrZrZrX>X>XAr?ZrZr9b5db228aaaefe249180d1aa70ea5609d2312181132878a63e55945a241b80246c814f8dfe9bde8b91c56146171aca04a1d33759fda0cb2b8901e33189e8a41a74363b1354f6a934ca3a730b971b9cbd18810669f13b87348459e611d31ab760fb864f2a032771b7d65672c77f01318c743981bd5d37d54c757c341d99bc819958320aa635a87a7dde13a46172881d7ad0cb6b446dc17e1d197b5669e2ec10a3servicerootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootlogrotate-3.11.0-15.2.src.rpmconfig(logrotate)logrotatelogrotate(x86-64) @@@@@@@@@@@@@   /bin/sh/bin/sh/bin/sh/bin/shconfig(logrotate)libacl.so.1()(64bit)libacl.so.1(ACL_1.0)(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.14)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.3)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libc.so.6(GLIBC_2.7)(64bit)libc.so.6(GLIBC_2.8)(64bit)libpopt.so.0()(64bit)libpopt.so.0(LIBPOPT_0)(64bit)libselinux.so.1()(64bit)rpmlib(CompressedFileNames)rpmlib(PayloadFilesHavePrefix)systemdsystemdsystemdsystemdxzrpmlib(PayloadIsLzma)3.11.0-15.23.0.4-14.0-14.4.6-14.11.2ZOhYY@YX@Xc@X2X'@W@WH@UU[%T!S @S=M@S=M@S;S:@R{R{RZ@QMQ@Qm=@N@Ng\Ng\N-ZM(L@LcLjyK.I@pmonrealgonzalez@suse.compmonrealgonzalez@suse.compmonrealgonzalez@suse.comtchvatal@suse.comtchvatal@suse.comkukuk@suse.detchvatal@suse.comdimstar@opensuse.orgkstreitova@suse.comcrrodriguez@opensuse.orgp.drouand@gmail.comvcizek@suse.comcrrodriguez@opensuse.orgcrrodriguez@opensuse.orgcrrodriguez@opensuse.orgvcizek@suse.comsweet_f_a@gmx.desweet_f_a@gmx.devcizek@suse.comvcizek@suse.comvcizek@suse.commmeister@suse.comuli@suse.comvcizek@suse.comvcizek@suse.comjengelh@medozas.depuzel@novell.comlnussel@suse.depuzel@novell.compuzel@novell.comjengelh@medozas.depuzel@suse.cz- Corrected the location of the state file mentioned in the man pages [bsc#1070823] - Added patch logrotate-fix-statefile-man.patch- Return failure if hash table is not yet allocated [bsc#1057801] - Added patch: * logrotate-3.11.0-hashIndex-return.patch- logrotate now recovers from a corrupted state file [bsc#1057801] - Added patch: * logrotate-3.11.0-recover-from-corrupted-state-file.patch- Version update to 3.11.0: * Merges from distribution patchsets and small fixes around - Remove all patches merged upstream: * logrotate-addextension.patch * logrotate-autoext.patch * logrotate-conf.patch * logrotate-fix-test62_with_bash-4.4.patch * logrotate-manpage_config_clarification.patch * logrotate-var-lib-misc.patch * logrotate-3.7.8-suse.patch- Fix post scriptlet condition bnc#1011120- Move logrotate.status to /var/lib/misc following FHS/LSB and making implementing read-only root filesystem much easier. [FATE#322036] - Add patch: * logrotate-var-lib-misc.patch- Version update to 3.10.0 fate#322037: * Update url to point to github - Remove upstreamed patch: * logrotate-3.7.8-mess_err.patch - Rebase patches: * logrotate-3.7.8-suse.patch * logrotate-addextension.patch * logrotate-autoext.patch * logrotate-fix-test62_with_bash-4.4.patch- Add logrotate-fix-test62_with_bash-4.4.patch: Fix the test suite when running with bash 4.4 (gh#logrotate/logrotate#66).- update to 3.9.1 * 3.9.1 - Fix off-by-one error which can lead to crash when copytruncate is used. * 3.9.0 - Fix crash when using long dateformat. [nmerdan] - Add support for %H dateformat. [czchen] - Fix regression introduced in 3.8.9 when when rotating multiple logs when one of them is missing. - In the debug mode, do not skip the code-path which handles the case when the last rotation does not exist. [Sergey Vidishev] - Show more precise description when "log does not need rotating". - Add new -l option to log verbose output to file. The file is overwritten on every logrotate execution. - Allow rotation of sparse files with copytruncate. * update logrotate-addextension.patch - use spec-cleaner - remove unused PreReq tags- Enable Persistent timer since we are now in systemd 219.- Update to version 3.8.9 * Add new directive "createolddir" and "nocreateolddir". These directives can be used to create the directory specified by olddir with particular "mode", "owner" and "group". * Continue with rotation even when first log from logset is removed during the rotation. * Fix crash on BSD systems introduced in 3.8.8 caused by different qsort_r function. Function qsort is now used instead. * Fix potential buffer overflow in usage of strncat function. * Fix compilation with musl-libc. * Add experimental 'renamecopy' directive to allow 'olddir' on different physical device. See the "man logrotate" for more information. - Remove logrotate-fail_if_ENOENT_and_nomissingok.patch; merged on upstream release - Updated patches * logrotate-3.7.8-addextension.patch > logrotate-addextension.patch * logrotate-3.7.8-autoext.patch > logrotate-autoext.patch * logrotate-3.7.8-conf.patch > logrotate-conf.patch * logrotate-manpage_config_clarification.patch - Remove redunant %clean section- temporarily remove the 'Persistent' option from logrotate.timer * our current systemd doesn't support it yet (bnc#884338)- Also, avoid logrotate unit activation when the system is on battery power.- BuildRequire systemd 197 or later.- Migrate from cron to systemd timer units, this is overall the most important package to migrate since it is one of the very few base components that hard-require cron.- return error when nomissingok is specified and the log path doesn't exist (bnc#871217) * added logrotate-fail_if_ENOENT_and_nomissingok.patch- enable acl support to preserve ACLs during rotation- update to 3.8.7, fix bnc#849436 - Changelog 3.8.7: * Fixed --force/-f option handling together with "size" directive (3.8.5 regression). * Use "logrotate_tmp_t" context for SELinux tests and if this context does not exist, skip SELinux related tests. - Changelog 3.8.6 * Fixed memory corruption caused by rotation directory which does not exist with "sharedscripts" together with "prerotate" script.- install COPYING file (bnc#817870)- mention in the manpage that = is an allowed separator in the config file (bnc#831072) * added logrotate-manpage_config_clarification.patch- update to 3.8.5 * dropped logrotate-3.7.9-compressoptions.patch (upstream) * refreshed other patches Changelog: - Improved rotation during daylight saving time and between timezone changes. - Fixed ACL setting problem caused by ext3 erroneously reporting ENOSYS instead of ENOSUP. - Do not continue with rotation if state file is corrupted. - Make logrotate.status creation atomic. - Allow "hourly" rotation. See manpage for more information. - Use "/bin/echo" in tests. Fixes tests execution in Dash. - Do no try to parse config files bigger than 16MB. - Improved manpage consistency and formatting. - Fix race condition between acl_set_fd() and fchmod(). - Added --version command line option - Disable ACL tests if logrotate is not compiled WITH_ACL support or if ACLs are not supported by the system running tests - Disable SELinux tests if logrotate is not compiled WITH_SELINUX support or if SELinux is not supported by the system running tests - Fixed bug which prevented skipping particular log file config if the config contained errors. - Fixed skipping of configs containing firstaction/lastaction scripts with '}' character in case of error before these scripts. - Support also 'K' unit for *size directives. - Added preremove option to let admin to do something with the old logs before they are removed by logrotate. - Fixed possible loop in tabooext parsing. - Move code to set SELinux context before compressLogFile calls to create compressed log files with the proper context. - Call prerotate/postrotate script only for really rotated files in nosharedscripts mode (as stated in man page). - Fixed setting "size" bigger than 4GB on 32bit architectures - Do not overwrite mode set by "create" option when using ACL. "create" directive is now not mixed up with ACLs. If you use "create" in config file and log file has some ACLs set, ACLs are not kept and are overwritten by the mode set in "create" directive. - Mode argument in "create" directive can be omitted. Only owner and group is set in this case. Check man page for more info. - show error and ignore config if '{' is not present after log files declaration - support whitespaces in compressoptions directive - support for tilde expansion in config files - 'su' directive does not affect script execution - scripts are executed as a root if 'su' directive is present - fixed mail sending for 'mailfirst', 'dateext' and 'delaycompress' combination - do not use gzip/gunzip from /usr/local on Solaris - add O_NOFOLLOW when opening files as safeguard against symlink tricks. Symlinks rotation is now officially unsupported. It didn't work as expected in the past anyway. - do not run external programs with uid != euid - fixed potential bad-free when ACL is used - Do not include alloca.h on NetBSD, since alloca() is declared in stdlib.h there- Added url as source. Please see http://en.opensuse.org/SourceUrls- cross-build fix: use %__cc macro- update to 3.8.1 - dropped CVE patches as they were merged to upstream - changelog - fixed 1 memory leak in prerotateSingleLog - do not redirect logrotate errors to /dev/null in cron script - fixed "size" directive parsing - handle situation when acl_get_fd is supported, but acl_set_fd is not - added "maxsize" directive (see man page) - added "dateyesterday" option (see man page) - fixed crash when config file had exactly 4096*N bytes - added WITH_ACL make option to link against -lacl and preserve ACLs during rotation - added "su" option to define user/group for rotation. Logrotate now skips directories which are world writable or writable by group which is not "root" unless "su" directive is used. - fixed CVE-2011-1098: race condition by creation of new files - fixed possible shell injection when using "shred" directive (CVE-2011-1154) - fixed escaping of file names within 'write state' action (CVE-2011-1155) - better 'size' directive description - fixed possible buffer-overflow when reading config files- allow whitespace separated options in compressoptions (bnc#711780)- Change compression scheme to xz- add logrotate-CVE-2011-1098.patch (bnc#677336) - add logrotate-shred-CVE-2011-1154.patch (bnc#679661) - add logrotate-CVE-2011-1155.patch (bnc#679662) - use spec-cleaner- also rotate /var/log/btmp- use proper syslog facility/priority in logrotate cron script (bnc#636236)- update to logrotate-3.7.9 - don't copy config files on the stack -- mmap them instead (fixes segfaults with too large/invalid config files) - symlinked conf file man page as requested by Fedora guidelines - added rotating (copying) non-writable, readable files - fixed missingok problem with globs - fixed bug when log files could be removed even there was some error in rotation process. - allow setting size greater than 4.2GB in configuration file - pass currently rotated file to postrotate/prerotate script in nosharedscripts mode - added new TabooExts: ".disabled", ".dpkg-old", ".dpkg-dist", ".dpkg-new", ".cfsaved", ".ucf-old", ".ucf-dist", ".ucf-new" - Don't change utime atime/mtime when compressing files - Better *rotate scripts parser. - Allow 'include' directive in log file definitions - merge logrotate-3.7.8-cron-check-for-another-instance.patch into logrotate-3.7.8-suse.patch - add logrotate-rpmlintrc: suppress false-positive rpmlint warning- enable parallel build- update to 3.7.8 - do not exit on status file errors - limit config file inclusion nesting - use hashes for status file handling - dateformat to allow unixtime - manual page corrections - drop hashes patch (upstream)/bin/sh/bin/sh/bin/sh/bin/shlamb53 1517479838 3.11.0-15.23.11.0-15.23.11.0-15.2logrotate.confwtmplogrotate.servicelogrotate.timerlogrotaterclogrotatelogrotateCOPYINGChangeLog.mdREADME.mdlogrotate.conf.5.gzlogrotate.8.gz/etc//etc/logrotate.d//usr/lib/systemd/system//usr/sbin//usr/share/doc/packages//usr/share/doc/packages/logrotate//usr/share/man/man5//usr/share/man/man8/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Maintenance:7748/openSUSE_Leap_42.3_Update/bc6b1e45ba8297f51baa43e8d38a39bf-logrotate.openSUSE_Leap_42.3_Updatecpiolzma5x86_64-suse-linuxASCII textELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, for GNU/Linux 3.0.0, BuildID[sha1]=4e67ba3a642c6439d22ecfe575e81154a48bb570, strippeddirectoryUTF-8 Unicode textASCII text, with very long linestroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix) RRR RRR R R R RRRR̝+46)pC?] crv(vX0zc nbЀ_KO R); fn5dD ޛ/֍|^0 .o֏D)t2qf*֘ 0W'oQjkcvyxH$`&Dy#%)Iq TL/zl&l>kT~YVx:%JSL '0S~bإ_8MVٸ'.P"ULq]$cbҟ yu>N#a<Jʕ{\Ɩ,׮7/+ˍPA4f/άӚq8UpqRN$/l `a}HL |bhet$ z2^c;i/{'qD2)$@7fP9{:FrzΛ:D"ڮdM K cS ȗ Y+|'OOqH>-N8Rx5asJCK$\_{Ll%/?[ eY$^‚';u%Jljo7) -XTk@|9q,k,ΘfөbJY/\mOUވ2D%H`ҎWhxj뭹Y}xpJި6 xGoBhNk\)ŝj`2R+T{$Q)nٱH\G9y1,󗖓T"jԧ2 d8 Y[7TSwRy"j >џ-kjܑ삙y}}?R_Ǡy K3d}%:Pup\OEͨv%<~pYTM^$ {sm1A2k*š좀j8l4QWpd!}PG*(.єgu*F_b:#+2M;~0L)њxQ:?rU0ٌG7)/&Ln~zw'C@xLSkȋ}2 9Šř@t3)( ﺾIyQm@(Z'O?x>+;Xtx1G=OWM: TrFH쁵]d" LawjJ;MU-\+Zs*RrZz4qZᄬ+ZvmH06 b'JN`_L4Չɬ@Jh85P7l_h q.ҧ#*51 ʳҝ" I= R#a{&Ò&VGP1U\^vAZF@pۗ=[V8 @Mu@Ֆ=gPd{_k quSy6ll;g NOz{ ={ }M]VG}٫rD}N$[D_(E~b<= [_Zԡ.4^$hDh9u,RUIǿ5/U"y[Q{@z#Cb!T dx:7׃XM1zۯ<{B{@\Ń*sOi#԰? ".DQ9J\ԞtqR 9#@*9W'ʍ^/w~W<;/VfXj,w7BhjA%|m3STM{>'ߋQT]`ykؾg=+e~&m "!)d>+9xT8jd%h%{to @J AS 家^b0ɩOydh41 ]38*n?GA[f)A+pJp$\! e 4Qiz?.cM(kφ큫)#pL|V%pR7 ?YZ1(6@2QR1#щQV"Fx3݌ 9{΢K " `,W'EwJX "V:oؚ{4Ɯuλ bA\F7WBL֖߾mL:x@NiH9~CQBj5#D& w_ͅfO %]$Kd+kI+JqD0l՛' oXs&x B@.3}$[ ܒ?!u!%HX1]Ϙ80C:񨑔R];>rx49:t" $}u٥6 f$:RBS>uˀ%#q f7 KWpLI?{ CN#~*atujY=`9:$R+:Gp$æAԬ7f(pӹ9t3ՠV n`Lץ1GnA`»Z%GrH_{4_OSiaFܙ@n8|)u"&rMk"E]٩Vyi5m2\6O]D3ѻC^Y\AKyYFE ڼN!"Sbtdo4کDy o3E@lu,n*{:X?ħ㔶VM;ws٥ItN:2! q^Ɍ";{k?'vy|,/E*ϴS7/heje^ [qeyw+kqBdkKgɽ.R^ 8v XȓzQ op>kss פXuI8hjSihJnRz.;yت_h??[QXVBMǕAGd~|-(L -/p K|@ZɥKbsK)-ڮc Ǹ\] q@׼EM*b*XП{0(q\cUU ^"ӬF0Ms RO@%+Hkd OSF ð=@'R1EcfaOƮ뵭[YW4t(y7i56NoɫqKCv'9R/zd塅oo]P0o{T"O=T]Jx}~5)_Ϲv uRW򾏱%Oҏ-v2F.9&0Fx:Zq6ažA?_1 [81c#[ryD}ͪBvlnVp@Eٌ{ne&% MU!A&VyѺ%żE#aB';KfE$E,;eb"|F.uoq\=4p8іRS1Ȝ{V=B=)D` E֡oc Vbw7¶\ nޭ ],ix-+&K#RriEԣW2]0& Ov~ 3FuQA{^*JcAɸlyލ$`!1JF; $g[Poܨ4D9iAդ6xE7S8">$5С!u-'`#6}ejCDeGކQV@FZ͌Ƕ;Bk*,4ǙVsI6@z{ ^q\IlFPo&)kD85=U@wέ:(]zw:=s3E]Unv:̓E別>ɝKXT?yEPìІmk(O(MsKT^礑6!]nj0˃mj1P#J`}W&,}jebz^/WF#1OHn rU[_'EשJ4^7WpO1kd ±89I[5NL)㋕$XEprET $\kJwwLb`×tdmt,gDk{gn9-64="1F*/.PND85%e-E(63;-ˣa߉UfCcW1;]W?III xg9i&Ig{45R2E[cZƍ$ƻ#R,P`£& &[J$ )3.ÞF-*SNqsL cO 7IEӒdT[N(r@^f![3].<'ceU&>rIܱf֒.Je (Di~{:rMo<ҼY-J(uWfT13žSLNعlGȕԲ{ $7(<QjV y]Ǽv܌m\gUyIHb4U0im;NcmfʓPyk\H贾/N!=W~Id OI#(В\ MD‚V^kxbejIl!0(d+>Džuq2b9T፹U|J5{Mƀ竞Hѿ8H(apFb7eLEȏuޫIY ߿eL/E E]=>ǻ!"pPy*R*t, խ1?8_YO{˟# WDup8j)*콫EZ1C{{_JaJK綣Ssx*ЃcQ%̼#Z^Tvo^XU*KҘaYhl8r@hv3$򒷆 tʮwJT_éhU=פ%6l6I>jh$GU8_?Y=vKL)#,z[S/i3 @F"1DkvtݸZ#}M0RTxQNclY֏FO%'==C7PvQ>3h%뱋SBz ?H%_AJ52FʊUQr1C |8٨xƴo р IET7W.b1h<*'Y Pd' 3rz~(A)G MkO1\؁.ؙ#MӘQuU}Rn( -8rBW*؜]㽧 DZYTo9Jqt _S,x8w@T)X֓_(q֥'7Ȏ?6 G09i{NPUuSUW@V&Xu]⧁qiDf21]w4YɖB<yͯĶT>z+͋x C[$r W I )k֋Fr̵~zb|a ߊ PhxDCGƆ (^Ѡ}жM X1m~aiGIϕM !ОXg~eJ8WKi7 lhaS|%Xvf)}B@Bw)$@= )_Q|BhZ[s%XR%p7}ln&xyl8Ԡ*j$P=ÅXKR*s{T [)w7!àMʿ~ٻm +jxӯg~f*>NQo䭅>Pޣ{:h|ek +HKFL;Ch4>s$j K:NtP߮ȊIХRǺ *toB=1[~^a9ȭ"BZ4;`xƒN1d0ko|R?P^#ZXn+pz;'ܓ\WVm)cmk$> W|DhXY6&:y"m s$13RFY*DQc[ìG) !34ZԙBz=񑑖ٸ\ lzW0&( ~c+˒y=j9ˈ$-zfaRc4Z NI62n2_B_NFYNgKlK_ߥH8guL/t\\_a} ):0plp RR"&֣@dkVF5X(۹v,~H!NI-VZbeyB-@˄j Y[5Omf68jhqP&qo!PDr f R|@A8OfOJcsSٮ%81Z'# a5"?P):jc5js,3*`❃<ZM4ѿqw e,mks(OW5K!"g/26hD6tr6 X? {y).dO+~DDk35Yp="% *1od ^JrbnE Ϙx= "3*<孹o*cǺLR9T >x[Tzq2O67!iWg ảFRpj]*7&>QЮz\rM{f;uz0nj_[M Y(QQ~ reZ1ˬt][3}g tΛe&$6ܩcx@OuΜo׵˜ =RZn|{T^IF=s?"%&!HzЙ9Rcs7 M7[w6[06@v:jvX 7ؾVF |,2bБaѲ+ ѥ^C%j yqD}QA1]7Ԯ-F':B<}zI!^<ց`KJ OMu\_{~ؕ"g~2QcFiGkSl+eްAG޻O\xڃ`ZPU_8^k;QKh!EEWX o "X>z{;VPَ?Y۬{z1מZCJ$wӣD PL%3%Vd`̫SZTr{E`%_,y,lj/A4b.s%gpdHF0!áA %tfI"q9ޔJ?-"JA_҂F*v!ckww%w%_>>הvH t- ,wr omp^1L h^ gLՙp2I)3 ]K\Z,ǰX2hy0 b5((i]K66I[&Nz1K行Q(uvm-"7!`vYn^Vq&c|9u&W2mM{E:hnY鵈Q^Qtu,ѳZJ1v9A Iyu-IRaG:Jj!2WEsĔ$.<Ӱ"ӆN&+Rz$&d,Nl"&!u"AiGéX_@eXCn3o:*YuO[) "t]~eCGJ8l)9YIJR'gB ke @ c 3p0㑻-s*:K=-ώ3M$D,L?#٤]8OJ.H(UE+`C$4;>_R-aoe\.o09Zs)djK`oJLx" 5{'u>ԹxX)]Yw)W/of턺yҫ:8if^rb*`QZ0c`Y2 ̑k3/2C eCi](ҦPyQs~u2tc3XrF!| }2z7%Wz&erWnbZ5P[yh*1bUDLGfrLjCvWn̻X̦@WhˆD{aXjD0GL:.dd> !bB.Dz3~d[3]b.)WܽlO:W4q}<ە /Y_ c1 +&X1{aaIlaUӉw]s_vPw}F|;1p:uHI܇낅~*DL6dV[e_3ƄORWΊ7iiXĚM .anY_~X_h/jֆ.Cbm ihWtSi6zP/PuR,IT`OaN|~MZp Esf}zV0-?}hëTaГx27 ']AHttnea;2@<I mBOzIez|+({1Bp''kj>EWcp gY+ 2i~乱UB 06vƢVCAT RF90wJ 23yH5ХN'nˣ dcIZjq*o_\<:{mJEֺ]=Frm s6# JަZlr2(SX.2h&<˪5cz>c2E|nT9_K3R(vd5%7sk6IA|C gDPۑx9k6FIp4Qt!`ÆJU8ˆǫN:Ɏ\wHe@)J3> 5K Oq/BKU(O`}oֻ aLm1CV1dTCE܂޲"R?c[K{i@LC=2`Vk 4NZH-K|f2Tlt"Iz{r :TzX# oo01NڵUŠ]1np4MV+(jG^ u`{&uH)]%ve'[%۟,6{Jt'ԤyjzƻpyPL PwyA$ŭ.#&3p\0Ԍ Ws<- G͎c/dg9Eک*q 1wN繿C*%89Ai$!eBa-/%71)??2\ >ʔgnт!TM{;ii ϓ$ӧJQgoiJ&08 ll^Ǖy[DbK3Dru<#'6+y륦R;`8M+uA;iB_㙥Ɍ>㫐bп@>j&z8LJ6㠪CFdNQbEvKӌֆtyn JoJ6pZ쁝80CIh= Ϭ^&&O'8XG18^>䴾3W(aAlLד: &F]Uej`0}`Qe 0`N"QqjMg}GA=(F~//w.1&g7V d1W^i$/='{|k0 D1"2bh]n-'YL$7 u䯶5"+D;MFX?t)fk^oAXJKuW#Xi-*ҪZѮpү" iO8oamlvVz^f20j!؏/U& d7[uJkr!PM 8z]wqN-^H8.` $\ #E} qߒn 2-e}`,DPs!2 oHAS2Fǫi%Ebve42'tK|jٯ[= f/缇 ؒXhB'-&h1 =J$TGHɍ"Ww)yYvȕ`[#Ks?TZxwilhK 6/Ã:{0k}v)}8()=Tf e?Y#hh2R%8d<"-"DŽ%UE^eT2:͙ϛ:̜j#=Uz%yՈ:r<:8:^0l; oܕ,m,ƥ䩾;g$4)6Wۋ?2@x!&ox‹x1%j`衡l6n.eBڙˍVжDz*2i#Aj4Ǒ;dZ,).bt]24Uj4ٜO߲tClںEqhe =o ]O|٭D ks-e %=-QŔZ3du4uϩ% #!Q"0L7k7zC1~.6IlTLɼJI<$܍;L;9)0B+6㻻NniV0 B l|2 M)T|PenpԡTʟ1M{GjzA.gtkKkjx:8MH =17/ldT%f`VK>4fSr"Ģ\58{dYbHkC ]Z(5OHGuQ:4^%҂rdnR Kb6|H8i8Gϔ$hNhp(uϽ= N/z4^FR!d>^;ZZڰ-5!@wq~(g㬅ʒ@ŧW'alqE k)YD(M"v\&xy?\=D2kI=*L9sE' #y+S5h*0R3L4E Qy)*x9kNwHltB0K":!jyl-?_T2 Y"""Q]DF-%X|D.E5ѴD6{U彟%* tF.:.VSX |dZa(>)D[qIE,6Va]e桊T)KQl y\I ICFLfFx#LyeYDIvT EI|ޯb19L0ƒ~.3Ywx4r0%4>;R!3-n+UCٍ 6! XPxB@.87ռOz}cTvU&htg*G^їz+L1٤KejhD5zQzL|U٤[- υn""PGCqjrĚRq#vTE&x3mGl)(,*2e`6eT2*|D)/S>d/11@9*~V*_&^,F)0k!x A]730lnLe,̋BF%UTn-=}Նj@**kbg$D˧/` |^((`pݔFdX>7.6A7N"] ~i򗪐0+B\9& Gf)Uo*U5(5՗V!+G)rG+\ #96#,ӏ+H)r =dU)+no E~ DWpwiBl[gzT4ѵMIUvFÖ+@T\V]+gȵ< bf b -X_)`6鸮UsemZp#I7oQk] x)zXg"OϹxjv wf&tyu;/W7e9I `(X 0sC'kEkogs>$i˰B9@09,C3)jy\GE|7hz/:X*ZozSq+;9C}brݶiKNu1Z+ohW`T5-$djsHsc/)%Y᭫J'?sʼ];| G CWy`_58 ,V H>p9n @Yckι WUJy ,cy@ߨֵcb` 7V4 0jZ8z:ȚV‹}Z0CdͲK֧iz  ΎJW8NI ~|`Y}:̕;|(M:ղ;0 @ ngEŒO0Ж|6+H玜דrwacGI-jᷔd,MDβ~pqoM]}FsߌIΰ]fEďqI 3vë>BM6AGVry~PnF \mQPJ-nҥ>Y]ip~NZZm`pniTJ&I T\l:Y)_0ټl@:>4P2tJFavۼi$!*nRF 4Q- ޕP55 ֫Bxd=VV ߶K<\_@"2g Ħ3(@ VnJH 37țN4}d.-#׽W.pp^ЫJuzMYv] {;'RY 3ÊUg1] %M)Cw5~3GNL?URrLuz]GAAww|m9D`s.{8=VN0o0$ {rR^caB1snhqhW]Y/4=/—e͵|T.E9H\Tx6Zygyވa|RuAZ2jIRPbB?u]9LK>8ىl}cC,42LAބ'{iHq.`&˘ %v ԃvgV)htvV7zїrF|[x/OXhuiYCr歲Sf0NI-<㌼S Awk7$#` iGKs"nEXLYtG_CmqOzKjFI:T8"G@\($r'>|-ѢN䵚 V|_@;^uQ8E\0ޜEkA}j/Z@\-`Xһ䕼CcɇADL}bD_cQDuiŠ@Yi%EG:xl'HHFYƏ^>:nKTbr'Nb3$T0WF*@Ec@ζMBGB-X*oK23c<3{+/ϕp?EiB^ +d(2"Io*JD ?ȥ{#~/]9c0}ӷx1w"yvÈ(ۡж 1q Mw&L-Ca'0*WݵQ.{ Wj5)J{@SVZd5Vf4*^e$ X[pMekD;mǞkxH3p=սGSojJ1:MbA|4u } VMyuJBE9i0)J@TC'\mya`4~ZK:zGf %-?rqM! fJ:ocGȊ$M<Ez۸P soWǕ.TGU a b{2~Z\*#GQ}C+q ؆8=` .|PZ<:vN1O!> %YiDV_Hzu + 3Jק[K  1ԭϽ ;54%ְC,bb4ba:Q 4lLi( 1ڥ&^\II4.J,_ZGZTўu\uiڃS\ RV^^ u51g; 3(K2]e@zz})JWS2OQܾJǁd$@!, @ sr[vb ֈ)Q= Ӱ\r\"7rъR=aNL:o2JCѴ٘X/avBQm׏pd!_{ߵ/ōaZWk 2:TV}V#ǞP͖J)@R VU H=R/L둼!N}i U&8IY[sأ[<N=,:}++/H7l6khjIYw|%Oēo9mTw܎\s*fC~]:>]M+E opYeΌJy@lջHRaG|]:y; '3qQą!v4ҥzNNtx hr>fujrf01E՚>-4ۊ<2u5p+\u|bd Ͻ+H`+I!b&`|ØI աԭsJ͖ڀ|2 [y +NTCb Q:O? )XQ+no+-NS).5{*Zmo@wR47,.To #r_ȓֲj] 3 3jOW,thpUUTw?o]'ũDR^{Ce,Y:"\O(Ҝ|Ҧps=V)GKޝ8= cHefn^JgZӠ{=Z tf77c$%f;,.F{E&'ldpLPF`b#7x[7yfR\G~z^zmRIbVrq0)gcR(*!<΃TfqJKիToR>nDB1R > ղAKrTHt"dKoj&X6"`6])K\͞b] sJ$C892g@BÐ꾽9kk5[rqug$H >]끁(qNJ_͵@qvZLl@ 9U4Qm[|=zǚP[;r*&ގ7 P}(Qܿ=3CNLÑ)7MH1`~#Ƴs.!I_1?g]K˨ѰVDg.6/e-!& ZPƆ *C[:JF;9F_U鸁2ρ( jW?5ߖ9xpxF]7\.)-qmG|Lɸ⇚KX=۳KN8%U{SK cD?!Ԇhw{Yk -80G8#RYy ݞi`%38+Pҷ]FxwU6иIan@ƀAW2 Eӄ~i8ARwD|/uDpn55TАEs?\}嵃E,Z[k;ғ%o @Z"DA:l?+iSVփ1_jA\YY9R^zNQ%II-RK{J ,nѭ#WM Yor`$9Kق|VI GZ:[CC8/>R :IK ).OO^K.R/ji߮GV<9= E=,cy<2dN}ԥ>5ׅ 0~ ]:'968.cZR.bح'3rQr>*;5! A u`bXFKj#u\t y|oC *&BiD)nSPW="C0~ߤ.YṮVsL{CH. ~"8Mjn 8 KӉf>])a"1*rP|~(ڎ{4G,mVtT~"RuYky X_ Ya{:bAcRi9u^}@'ڪSm[[Ӷb㕫iI.:PiEAcة} ZקT@d.>q[ 4fQ\uw*& ;bNfO4qWH0F5^W?癶*+~y=Bɖ_HCc7ƻ[h`px^5yUl cor}6Uظ 1܆K/WXEBhR[!%PWNkG(ݮ .3Y`j?0ՔEs[Ծx.fup$ Ug6ԕMD_r}@*eeȼ:&پ`cy[bV\uv.0yx'YkP7\͆g{`n8+8_5t}!bdLiOZ~џϲ)d"t!{?e4KԩB.L?uf 1`'_juu<$ߺQՠFbҶ>+PGH !t'~j MOS}+-M$a_na. 0m>[PhjRRZ@ ֐x܃ʊ{H>&`F?@I+m@O~MaoNfFi mR1ǚoj5֢AΎnbe i[ ķJlLd;U-.FZЗjZÇTgՉ5P<ٖ[/>XYj4sK'i<ۈ&VrKz^T~\kE"&6z P`$U%p.vbFD{Տxu\xqE{4/~Dfvn 뎅^.v)sH^,`ԐDͨ;2ŨVAu;tS+(43a5^.8㖣9V?-y\uFY96~U< ~2D4Âpp8 D|"yqa7\?іݩ2[6 U]ݷjV5p%qxCXxTu`NTv3t%TFO!bg#{83[Agč5 :F/!㝤${?ٳ1>^EGfɻ@p ajDfen5 1܀-,h7[uhx? D@I$yPCG}0: KpNVY迒X\8wTIqZ\[NL.q /EZ6$4hE>L LJ<uX߀MP 1|6 a ZfBXȏFpMvJ{ʙYNZ ZTŲg-$ASB.PzdD3Wn{PKn3y߭5Iw3c`Une/hhi%5 MB=!zT,mu׬v!y&2C D񞆓158@ko4"Nȹ-LCxQbғJ~+!dV,QG.BÅP'%c0qj;u5*ݺ4Ȭ3qm-3s* .ZȵS@1a-R5Ckv]B88UGuA@΄t䧙 D lRA42thkrC$BGR8qcjQ1Gq!꺏w{`#j|C ' _3Dp'x-`_ ݬ }SGt6?֒}>{Lq74'̏u\WY%\/>m>6Ka V fM_O-5UY ./7-AsgM}J"!:X#tsskm2ھg"r~/BBi!k5Z$<, ]qu"y$OfT+Z#^gH~_}픇TN1y,l=T[)d0LYԉ_#O~soZ+FЪO?1,|LomCq"?,( rE&)p@EIHC/XɊqU3 뒴HfՔD`apq3 +TMǗsbB]!h%sdizmSk<'VC/ˑ tJ_ 5-';Mǣ+#q&.G̈́=hS>F7gɱ1Rk uHg-@8KsBXg})1)4Rٗ_8uIVV?)!v6u"]"0NvʖZzh_~Pn=%>m4?`u[G#ľ#Zb|7agZ*m'`Y($mb4.4[TؗuJY:" \A:jLbU^&jg.}i]x0玑`ҮȪo;nU|6f2X |eL^Ppҽ'KMWϷC|$L?c u!lYnԥBU:>*)5b*Nү#e^fD?ߐ1 7v5.4AmSA@Lۑv:Fe}u[P؍6)ЬF*2x8 | 7 9tP:b8"w`y%-j *QnJR·oe ( r-o{Ӕ.HT3k0K[A8*~O%~fFAOu`,% ttb_Ûs} *"ad/|M`֡5ufWŊz%2p'%d7N#7"60 LvKޞpWΜvUSojɇ'!1}|&5.yMl̈́q Mm!Eqө*rmkEr`wKa2F@m2Y7J4MwzOCs5:mxu;>8c" U_-Mr(~oQlj UJM }%+5-nZ O1*_LWRXأ)<(ݴJ&Fvh6 N̋~mD7qn<BoV XO+msWC*MU&5r;Gc{)4FޙwPph\X&j|aQ`meqBG?2g`,/LMQpJ HY{?FJSォUmo$vG@2i7 U"h{і7;}9&<'Mi >{xǙ'4*WΊR$:=sr=쐷Vy0 꾴܄UO^+!Nj75K|J5+3^s6wCXzs w11:.`$ .~IU;,W̊Vbh@!Fϗ8L2ɈGN9huMC<Ȫ 6Fe^beT&#e"c*A7$~Hʀ""Y + PKauKKśQ)_'[Kz#d>J2mMgVЪ=,¹NjK*: %x_~=,Aۗkd$YYfD}Qv]Kד~_:ߏV#jW?dIEW>NvTai B?)4xXץv'uZ^Dg`V/FxV8=UHʿpMƂH]a]87wTHf:b u->t'ǁ@jYF(MmvXIk %%@ {ޒl,Ä#[iXBrr{Ln]I/AHԢP187ۑNeX]8^ zĞmѽYa `$aPBay=-nS?y<(o–fOvSxfjpb9k))Gzbq!Szӥ8M xb0?̘: x/3ab˴^eAg""`gz.5mT-Jj]&OWZa&gD[ +>HA$dBԷee qͧST ߜC3S!T]S@74ymgSmթYThZ7/"*4%x.(FQ7Ķ Zb'oM|\,QK'jj7"݇+y O r7cl#a4̈́2[7]L~Cʥ5ZIR2 ayۼ :}6aH'fHL 8$] gY50N< wp VbͯAں@_)k !*u*0?gꉹHbT1ǀઽ) y^M#K&4sMQ֝dc t4K 60/*9(0|Kڕ ^#MN t u܌Gz} & .??ۖ"66$)ХQ2x<5`ϫ}tjm?57`3eb;KV&&__%5#%(p> %IUdx'Bϼ]j5Km&iҙSxCE]\gȟ+^\ |)0^k1_ 3Hb#wpmFv^A||RE扇oTIqL@eFm7Ŀru)i=Of{sw܇,ǩ&BP]SфܥXI}DzoX5}=\Q:QX,v'zDiM1! 2٧ꆔ<I TQѳֽ{uP:S4~HXv\QAwR3&,ɵ. K;A;wG,KAD\,ջo߶%g*qwc[:P8. ,s,4-Z-:NՇ?"IK?YdgBWVuaGXQ  ={ve@pFIH@&IL4EV’sem)SWzoE_AH,~8,@R1fNynWL7#4GaW~0e.`*q q[ ]=(-u Cxi>FMPNYةnQ\ܩ^f[%ZE({8 DClŝ%y 0YaO+F O>8SGqÓTȀx_Z%P(O,Bl6&9hBrpJy+-&K?M֏h[iaoG MF3ť ,~X/n{{.e<]2l%vw;7 XqR'}?ro<@U΄O@ i=1 hZhgrHB;ѣot=-{ԅR) o]}MЬi@ס,O!<4ZK_Rq£\|q* gE[gUqߎG'%O0=;:÷{ڀÅwF vsa/;I[eUpj*jwnCꓬ(4(-+w5W{,YTIj,3xO\"sɼSwh-sĤ/P^^:W[0'_{9ptC*`jx@5o4@8JB}Q[l$`NO ^8@Pqeb0 /v\SSAdET'oOV/LΥluLb(L<7qK (5!o u 4L qn'񡢶0*vE7ÃL$yϬe(x*ÃКnu!a744UzRDp{$U;1jۀu0lf|[XVõ~E ;xHk!9k0H@bQc _~0\LN"@͙DZ[;=fF (2OLf3%;mX.Lm9MՐ(C[奻f-jڱtg(y\`= y,3\-% jlxgF%)CU ukß7RG\l0x3ۡ𺱸MtťV(sDj}^>5_xj7;"gOɠc/1!i9 oE+< Q5M|yYnf{pY}cR /ėBnخ ղf`"gb +iCJ_fl#wNJv m3F!!_\4vzg-vMsr`BE[ .CPbv\UN<%li1-VF7do%ZШȬߟw 6f ]5)?|)ȁ4̍&} UWj .Sm4}O?,lO( ָ ݠ+=!փwh-~J,eyue ~}~Wj4O+:0TW $Q.`_wIhKZ4DI1.c'T2`Cǘ |;)6`Yar7Q/$tUƷIq[MFFxmHzn3tǫAxw [RU\4Ec|$yᰘ>+=pYgoȘꈇOne8N b8m֌KQN5iqsH`-g /˗.1 ͦc  =ANo!rCj,YpeRʵX1@uOL".:v,$>~Dr^:'1 髿훃lLׯʃe-?ihw^W0#GcTwbAN)s|Sfr8mKIQ){7d*[I:۴QY ѽAP9RRx޼ѭ}*1^_:]*^23Q,=0K׈MǸL1"7/5iuŽJHcˍZvqC?vo{Uy3fG:Aǻ96p(0iFIocyeOg`UQ WAmJ/Z !D̽A@el 27}7za w &.Xu6 E6 A_x_r:s~*KLH)n ύ,x yɹ t^gr7]$dN`о>DŽҜR=R(+ZI%䎼ij}&]-c% ܞ/l$x_HJf.C*ۜgRl*S6%H)GzIq)nFO8jDἳv]+ VjC]V_)YciQLi.6xW؊đ¢ :)A#x3{-/t%E~FÓ+AԘHf$r%>%vNZ#aGei9㡻iijj0-=BZK3CJF$c *'6SUtPMЧ݉ ¿Zt(DJQS0o3Z`m[J#&#X(w5Maעْ08'p ;N&+ӵ'uI+"P,`~lH% lv`cegc#k9葓[nECmd6&F_P'YbSȹvɘ EHI;WJh.h/@IVy~_>oT=s8*1vop:*w9+w:Aw Gˎ1dl$y$qg)z`~ l '&K+ʁ>Ym1Sp[10&K0}٤)͗^ }(/gf0҇|pC3+ja5Eqs@J)LCM=ibruq&A%Ja]#2Awl+ a=U El}1Y#?HFDF2xRw _u$Vw8ZuaIq1zf к vmQkNƢ6.4SJ ˗L?"?aOJyAM]6y:I]*ijqB/-7(X=XDb^Ť]!\xp^{R|/b83/-Jyqb\&LL6l?Cj95Y!`,c?[v&БNdزs-o򽄾@VĈ%"q{ta=fET=A۩dѾQb0H@:+me[ u(7, X&CrpfLW#(HR j+jLlSP$' ٹsy1DSt䎃Թ$l#+Ut;7CF}2ʸtWv Г<5ׄaTY:2l#u2Of^G'q qִfnݟ[8UI\xڈ8(%SȬ"g+Uf.Xs0TSxKwquڷW"`(2նC,H>ޘK^&"GS053ILyYln'fDf`XUW e8vY;  wL\?\O*55ZK*mZ! @F!$1&,!DvFPt-vdsz/m:fR>Liq %3/ڗ+]Wqw{mk46txUƗE@J[uL m6/۔ ,X;!ښd PRL,#E]t%^3 Y5pyՔ/5114jHuvl h:ZO)yݮJX ^<5Íw5K 7/('nXHf؎w&ߊMY+N۴`xiǿ2?*n"gF$i%k:j0Mg(5ccSDj'AWn#lF`_,?DjcNjkS`琔i0'\]?G4Q:!ĞkPI~5kiiqz.&2M F` ᩉyje頹U?[iuqA muH4 sTe$@T4H1H( U-dzG:m<[vHA$[񪖓@-ZT1q% CJ%[ecйsFvj `5R|!.nH!UajO0N gOT_ rp/(BeT6*?}CiFF$ٹL!뇃_7ljoD b6!.CG҃R5s^dY%`SiGҷ# S|7(Bo Kf|Hꛔ#{;  jycs'7 ^r9 WI*,o[q]53 >x4R)q5Y6{PPYC8?9ʈ8a^At$f6q_Ƭfzg3бnJc9=;͙SP@/Lx1>XQ qB-0ȠFBSF'6mk: i+ 6e_J(1+Պ}{O7o]iHfSMgϞtV)Iv~S:[| u0CWǬË⥸fbx_)=+a&|֗bƎY`< Z2n<~heMQ ~־jl,'@ˆ~5Q%6G|$T m\{unހ6Zo1#iF֎P;@ zEq/56JAyEhu~RidљN.7jR3Oz |a[Ww/J'?yS'N,XLE4T5nklAV֒mj})FT4sp!n jb`U/d{;AE/r̾vUs61vmoMwU4P[!+JxDY"7AKFuIpر0x LWAlڅԄ4X42 \w*z5' OqyJuoEȦrtАy $4/*s{x`&ӣ"5{*k;,۩^ָVe z#!\]lƼ5Pkv҂ vMecSsH]C"k` \]@'mK;CcO]sҽ9r2/835uoAӐ]S[3,sЙqUF-XZ5z:ӤP`Xy }?ࠍ7HVCzu%htkcdhw#F䓏W:B!\^ٛπ$ݩHGIsYLbI6os2[QtH8BbW2MتhU%R<dIEitJZ8tx*LrdksDjcA/e3舾3E=hhNVy).lXM8,QGm<و#[F`L `І4p+\JBSX^ш]Tޙ`D|QS;vĉAaH7CRAw R9=zE,Չs§Ę8#ٽCl'gZ<|vC4щæak-mҚ9xMuPJ"czQ0V xo{49-hXjKzQ>N4[7\FZۘ}d!;űn-װ(DeпZzb\` H;@m7yw+OSҫ[">/ң.HȞ}θ¢X`; wHE~by@03~qhkSҊ#PbC?3<Я;LӒA64p9hܾ=*=Gh$QO;US{H z8RԲuyBb y] ҡ^lijٛmMDz8'v2TNeze`^9bJYaū(Ma[H~zN?;KKi|8{m1}}c$Po՟4@C-п6?8'j;S CK4gRםiWWnC?* .r+:F]2dRNJ=LG۵b3}N:9+O+EJ뇔7ygFO(2ŝL.6d%j鋹^Wj1vՊOEԩ 3dϫT蒟*LvBBF\0Nkz՝|5^'0?@_uͺ)L(qsH WG}J/ N+@_˂MU'ush&tN7\J c F8hh2(062eQhW,2 /VIT+![?<3-^$n(KrWyAZdh=,SƏ4Jߟ:tXn`6L= aɖilsv*=$jj:W `\`j_<RJz Hꎐ6;_RKU=1ůvi77[Gt*{ѩBLdcEcx:JpJrH~fNDʹ կK)MеBp waQOۘ6롫%x7':jk:/p'4::JϷ}UϙUeMoN~lMt]"JbzmP&Kz"IC˼;}|$_tI2UE]cCmU@z"HA%{F lR03ĉZ(Jz:U=]axYߣ]feEiβٶ"_F\ڀAՋe ͆ʬ^]!CS:jTPl{Ȱoy Z*/SppyV<F/4A8#i1=/GjNJ^:: ݗJVE%0ϝ2&[~^Mp&N* pb5BHien՜T[(RB—aúhP´jہEsY24/enPOw!]z΋38C-bGW)1q6f^y_O:wo%"nU`J3k7gz-iFi-Pmi{/ݱop3g=)6˩̶cKm~7\/f/j߅tQuXkv1X!:#:.TNh0-Пʧ 7Azq ehfWt}<ϗd;e m }Z4eҲfv/C /S?^9|mmܱLR`#F32sn+(TT],~fH4TAV,o;4%ᵎQ\*yyɞ ~,yzW7'HLƯIF+u+hI )[j.6 s_GحO'+-] aٝX{!Ǥ:/ʿGY,$vdkк.϶@h<^9xm]X7VZdlkŒ}!$kQ"{fX_@S*SseI[fz칊w)[OT)H,GBS:h%z; w]ҙLd #dx3 ղ}zqDagG]w0U2PQ\g-A˹&j Jc|NC훁*lX /b! iUDvGgմ|_z^\ Hć}k%G|wM7'+ OJh_>6;ͣ~oڟy(do FfV\qI*t` &"V&D/d?,"*'$&R)P ϶BTa%'ja‚ >=Oaz>V$Z>F !,$@}db~#g꾍 qQA !fOs Z;mcEy $- nGe zK?%K5$~[H?.oEث"Bzf Ŵ41U 9?+6^~g%fhG/9W¼߯w?\nuXY5a\3BX 2n~n}4Ep'NFf{7Bu1~_'ʢ B?Yk"*c<~T_8 Z`.q//:n\, GsLjx8fGԵɃqJ~qFps!\ר0?{\=bOZM{wQ9GcFdL‰xMK,R#te$m9j1.h٠:%i |hq xJ~jiL|Y߷OOsCdV? 7gd|3嬊0BH?/Q<8crŭ^Ei1dɴ)?1w+!^m!ssG}Yl%! z` 6cœ1v8LJ`|\l6%:ql1I 7d-``Ee*|aEeVGZ@g?AHC6hycg.hR.'!!SK['VgNKIzѾ!E&e+:h;؈z\ݨz[5_3ͽyJod[P~!{O÷`~PHqT⎴ 2x3SeϺ$6bt0yNg%9Hz˭SoH+0&+w|m]#fr^!q\e]3A@p3];PV*$amnN.7.42ulۨ aN= j}6%a0ċ[8a G©,fdtunCUK