logrotate-3.13.0-lp151.4.2 >  A \Ǹ/=„Y 9̂;``wA!l-Oɹ1ý|L Ff`%6pv˥۞WLu]eb"lxכ.0Ǹz:%04!In4^ƌcu ,?4)Cw>"$5,gqa?y1,ݴ+jSǾpyes[ܘ&g{8oU݈f>/ IȒ1J]P9?6ɈInr}읱G5e32efbcb431887cbb9d1ac293edb2ce23d2fcb5d96af4c186fec21259fe042ff947bc529a4eafb982f83e5cbc3f31b7d5197178$̉\Ǹ/=„cS'X?k_6ѯ 'G7Ux1FvfZAD먽S'V'36! L ף(o[Hj=P?O[.J%S@; z`D3vl2@j\TkO3DϼU%_}z{!kQF J8\p۫Xs!n#BȕTt,P_y}VHG2ecX>㚼-+A%.xԶ`}k[g/Q m5P>pFTL?T<d   Q 'NT[       (      A   x(8"9`":"=M>M?M@MFMGN HND INx XNYN\N ]N ^O bPtcQdQ}eQfQlQuQ vQwS@ xSt yS zSSSST8Clogrotate3.13.0lp151.4.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.\ƾsheep81openSUSE Leap 15.1openSUSEGPL-2.0-or-laterhttps://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 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=/usr/share/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 # 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 fi - XyF)EA큤A큤\ƶ\ƶ\ƶ\ƶ\ƶ\ƶ\ƾY\Y\\ƾYE\ƶ\ƶ77e03c86a0d12a9d03fa2b83a7015a6fc13806098b576a00b7fe76b90abfc92d51a6b89e12d83c3e952945e8af21465fe07c64e6abb44ccdf6fee83e5daff85f560c47be386b03a397acd0acf1fd7b002ac06d31895f7f28c6a0651dd7b432e91382988b2de5bb02405604a8a68f5592bd15f14872ee3817d9fff16238c4fc38495ba04a4ecfb921b690d352cbf16dd976964039785d1a8d986f42ccca69035f00aea868c8a117e48af3bf38aad6dd5fe4f4c49d2e43fa9953eae6c0477cd9e969d60c22398ef614f67bbbd6e286802fa94a5295257b488967c1d79ea0c907bf8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643e2676b71de801a4f0ab3329d6211e50010d2a99a7f4779af380f3f39616504c70469b7c8e341a749922a8be68bb1b353b8a3b27a8e199b82628130402070ababservicerootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootlogrotate-3.13.0-lp151.4.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(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)systemdsystemdsystemdsystemdxz3.13.0-lp151.4.23.0.4-14.6.0-14.0-15.2-14.14.1[@ZlZOhY_wY_wXc@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@kstreitova@suse.comkukuk@suse.depmonrealgonzalez@suse.comtchvatal@suse.comtchvatal@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- Add "Environment=HOME=/root" to logrotate.service file in order to allow mariadb to rotate its logs when the database has a root password defined [bsc#1093617] - Added patch: * logrotate-3.13.0-systemd_add_home_env.patch- Use %license instead of %doc [bsc#1082318]- Version update to 3.13.0: * make distribution tarballs report logrotate version properly * make (un)compress work even if stdin and/or stdout are closed (#154) * remove -s from DEFAULT_MAIL_COMMAND and improve its documenation (#152) * uncompress logs before mailing them even if delaycompress is enabled (#151) * handle unlink of a non-existing log file as a warning only (#144) * include compile-time options in the output of logrotate --version (#145) * make logrotate --version print to stdout instead of stderr (#145) * flush write buffers before syncing state file (#148) * specify (un)compress utility explicitly in tests (#137) * enable running tests in parallel (#132) * explicitly map root UID/GID to 0 on Cygwin (#133) * add .dpkg-bak and .dpkg-del to default tabooext list (#134)- Version update to 3.12.3: * Fixed accident removal of rotated files with dateext. (#118) * Line comments inside globs in config files are now skipped. (#109) * logrotate now recovers from a corrupted state file. (#45) * createolddir now creates old directory as unprivileged user. (#114) * weekly rotations are now predictable and configurable. (#93) * Errors in config files are no longer treated as fatal errors. (#81) * configure --with-default-mail-command specifies default mail command. (#100) * Fixed heap buffer overflow when parsing crafted config file. (#33) * build fixes related to -Werror (#119) and -Werror=format= (#108) * configure --enable-werror now controls use of the -Werror flag (#123) * copy and copytruncate directives now work together again * unlink() is no longer preceded by open() unless shred is enabled (#124) * compress and uncompress now take commands from $PATH, too (#122) - By default disable werror while building- Remove aaa_base compat setting that is from 2003, we do not support such migration anymore- 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/shsheep81 1545062078 3.13.0-lp151.4.23.13.0-lp151.4.23.13.0-lp151.4.2 logrotate.confwtmplogrotate.servicelogrotate.timerlogrotaterclogrotatelogrotateChangeLog.mdREADME.mdlogrotateCOPYINGlogrotate.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/licenses//usr/share/licenses/logrotate//usr/share/man/man5//usr/share/man/man8/-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.opensuse.org/openSUSE:Leap:15.1/standard/18b277cdf73f004f27dce691d33c9576-logrotatecpioxz5x86_64-suse-linuxASCII textELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, for GNU/Linux 3.2.0, BuildID[sha1]=4d106c0b960dc6189dcb296c845925c702d2cf55, 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 RRRR4ʗ"Uutf-810f4a7164cfab368c83eb06bcf73b0deb03829c41b91e575e236d3eb9f9601d9?7zXZ !t/˸] crv(vX0}eqDy~d}4A}{y ZINdb̽[cc7iAm"u"#,QאH^7i^~ײR0w͚토5|k 7f|;V/C7۫h q?鵨;D3t9yKuۿByUCf [?EsfGspUULn)59L.\czaA֍&Ca'k_HQ۶} Z g,d9e_=)-h `BF֣E:/ 0?X┰`P774^ՐyP7Mt# ҘPkN˫ oӜxl AlRwIyQ,_?q(If{9qShŐ^I Z 0(b$^;\J9W3O3 aEf4 SDcZy.g3kUW5/^_~g``!1;|n>SdmBy8ŧ)>áSV#Dq+">ϬR -:ӝ:M, aϔtW>ׇ8NqW >o߶_" 3-gG8["~Lq&6TU9,0%_ !W.N=(BGst⣮3X vl oyNC3&5g16-;JzŎ! =h3RԖnT4/~,{Szh.JpP8[nݤ*g7f>GʀՄ K, b9Tw:jT,:D Թ;0< {?qt4Ni0Q3ǪPq*B#yan?ҢQ' q+Lsjߒq(+=#̪QG4侭H%#+䆷2'OSõTdy)CfL4cyf-n~jJʗ!{噊k#Pcw:Mef[䖦|]^DEt N]P+R9xe)Eb_JGi)[Vg'aߣ01i1$wR "l׼-$c\>&+{v}ElqW(ɫƇ82ý!h(K)/]x+Z]CP9)G>x(dc7?\zn$GYCxBqqZL -UJ%3 9 {>tׂ4#pZct)}Iu\"L7 ^~//LhUX׺j6PDk!xaP(Fި=%nm v(.(ZuS қnKgB VwVcvtE<%,Z#E .4oRzSut0{ͬb*IA5?Ѓٟm>tkR܁ˇW/)(Ok >PtcBBu6Le|KW(( j~;BhPd\WEw&bXKR(FBzw'Wgpq>}j_冢3kᢳ9鷣\+Vߐ>^҃J;G0_*S%cD>D806Ozlrƻ> {,U>W5{!:`0lR o)F k|9 "$Hby$-{Q*P1 i#ծ[!4+_(A`bk6>\mfR+=XM/,Cĵ_](Ƥi[:QF/ix2Zx`w/>|Κ>R\ @dY|_Ŝ5Ex袝\1$'w?$e^fHuosEov (ț$% 3N9h_bb*.]H -.ӦMmF`#5&c>;vOR.50|l״pePRo `J׀ 0-(RUJ73<F>FMycvSk @Rۼ Be,7\G |fRraˁ0g{0 y@Hc}MEFnێ[a$땎wȊZ $[6t)KLܖ L l`l  P~wX-r/EYi)r{l n-ih6ꏥ  VXO8OB1(h\Z\ DXZs% v,8 `0KX#m猐C`Gˬ:^׻yE)!AriTrEX}EgqHF$-GLpdEVP-*_+Da 6g\ϕ_(P.Nމf!x:6A(&H,LO#: _c|'DnD m03Pror$nfFp}KeLI\>>G]i͍B8QYK`t(U 82ga]L^)̂et<8w"{1*Ji 讅4_Jw"; 40[b׾rqnAQv&Bzj:r?)HL2CKk85cz|?z.% Gcjmqf_6/m5 Y$j At}T|qt˧"+|5g,<ݛs#2Sv繎Q9&AxN w/Ml\-ܔa<* 9(1+`wC>ftT' 0e /< w1o;e=9BV}_%s̾)ȍHdU/h4z4~ [nlՎ#Pq;GHM]n hX QV.^pWXm&Qs3l6+& $]^^! $7s}Dַѿȅyt}Nw)7YUI5˼f-(l'ZAfK؄ГBe )_ʹ C4ERkab;qd <= `Ct`NTqgpbET;5Шo2WqR5BuvCkP[:ga܃%J_O{᧤^/ $ ڬˋI):ȩ9xQ-6g*k#.t%&35ژmү\ @Bk\X= P q8g}%9xBqTUOqT3T(i`lH-mr<)ޒeTywy&wtɹmmZqH4Dyo-)rֵ[UGklo4z GfuLǮ]M{)F˩%зY_P(|5nPw [P| <7F%#p.^:g^V`NUpl~h-V=ߚ8N B蹟Ggo2_爜\K6QmBTk/nr~:foXlivH̎$QG-+@߲{ۮ/c5pwϛSgPAd;Џʖbg!SWpd*yRU9Sd-Hw~?zё؉;''ͭrNFM j 9$1+H%WsZ.^ߔ,ޣlϻ='Uw'1WYw.SJ8>0$/$6QPTMk P品ycI'_b8BUuD,ЁrK=\H 3Un `wwV"6ET^~-LVǭ@ľJQ8g8~y@$'=g) WnW;5MӾΘ;:w0}Vd=|Sa`@uoEձQU`9iW쳙.; )2P<7 ,|ς5CiަJBՏES7+h(C@,Lq- z4#.!j+>=o9y1(k~VTo3f,)pܣ5 …y\[2@'-y槫q]s .2㌡Zw ւ^I|;.^V3aCIQ k<|z>bqT߷޿%G7eBMrc)e`Dx4S8[Z0sa]$ilcHm@v<\`lGb4]7.G-/A+=O!X4 LY6?v$e0O%@[X֙^AD7CCbm18 ݁ʊ_VՂo}4u*o{z٬ GU].ݙH%H⊂H N^YH'r2r\ح]v爝zX*! 7>{is'MmpNˌ2~L05aaH6-cEpX3қZ=ѷlQ?يqoDɝcg'F5Kl*Ry1[8& 2F!Fzn%A:~QE##d]^xr#q~j'N!?q<3oM#XQʖkVQ`jϫ:>R0W[=iz%'T8+ fie+Y $76ّ_g,QpL`7Hi sqgkbV,Eݸt ɮhX#K[܈.J(G|q?%{&$@s5gf6L²Oƃ;ȊS1&n{^+N=4 Njقqk4|1!]Xx̾eQ68e5<'O#"|_&Qtɻԩ(j #s&ۻtwQ%ۻX :wI<,̓P8Z1]b[mݿ9q;MI0m*]_fFRe +HOeޜ\g:_s,ZMVp|B)QCRʱvv')YxؼQ78\rM?ǎ׃Dm<~9ۡ[>Zr/LmIR_9 i\<9x }NL9 NA+j&iʢ̞w:699!, T˹}%:NDSLd "/HCa^WC.ЁD l"''?oBq`ӋX !S;ٝ)XͨiH"/ǩYNӻqvIОfQlJaV`O<h+tJ:!Oi5ό%F{ eKaTꦄ"mYE\ x#Q(j顡#C=AO.WAXPu$?p])RjB鮖e(7mP]5-lTEU&5߶[2ZhL_Fƺ>Rf /)ȡΥm{^ՌD̑{*Lc~$"WN~|9z3Zd<;(/!:eハaL)[SW捷v1ɣOVmsvwM15@nԓ`M6kdGL{$w*LREy)XۣK >1eĶ!h)I٤߅thW4K}N^Ȁ(8rՂ*2h.X OaD=4PtYӄh>o\f5~]SL?,{+Dm+W<1@zW $}mBo)X5ᙌ/?~5Kߌ"5:uV٦oF /@j½L$Bl)Yߑr 3 _ fWD/>A#Bb+J/NE5a'߫3hwԉp(]uO+ލ}|+/v|aUqQ.0[ . *D!`"fH;{ ^W&݂bϙ+:r<>"1`K7};TgR^=YZQמџ7H<}E#6Ɛ(1~p:Th!f;ߥ^CwE.,,A" ^~&Wvif ߒ>kDyt@L{ǾmbyCҸeG/SYF? z>6't~Rn_ྒ9F`NuUSW՝ӥ <>FѕB3a5NV{KCg"ὢ*١=J#;r U(^ r15oT!m-b?p)M[{B̟J?K2ʏ+k38}=3ᩏ4Yo7XquGF a\᪘38bj:_\: 60aР md=;38~䨠hɠH{GЌde~Z\t'@mSsfm7+ 1Kmj? OK>p4o_NxP 4}yaXku."+k!lhs[W1x 8K-4 @ŞwvDKjw&e}6 ?V$P+_2IF~=DYևո*,=QV{j/QqgaLp5 Е}ɱ2^@_uIDI6!{AJꖵր&A% m`$Eo.~mh휸>$g欿3I;7G-F<1)|%Z'܏U΢`",XKLq"D-*)v`> Åz&B ;/me6+Ei2QzR͓d_Sl֯+=|$Fc4 :z`Y8]~Oy7ψѷ4,+N1@ EG;]񣠮va^}lQ[X.&A Nkjk҃{:Y'*X.kgu 0=m/Llf(^|rL)@(¼pQD&M8_Qbt~X^Y{i`\ Cq^g+ 1u/ }~YqdM܂S0 !%Aji;l8 -@K}+S4] r&cHi-UؤnbY[y4˗%P%z7|/ɦ*S>6:~lx,EvƍlphRQ$Vd3.`OOj6_5뼻 a<6UӢpAI2?Q"6^sC769W(EjOWHy=\RE?lA(SkԚ1PMGiH"lqLw&Ge.}x.qeu2:ׇ(h{&YQ؅ñqJv1 j 7]ky%7%\1`i;a4B\1EfnrRe)7+v㧟ݭ`lb F JxeĄ9Ѷ5 ɓ~V:w?мup|Yf+&ËӑucTL/jRW.  =\4MGӰ;D[+UjR$~B=FE |Zʑ'{#1ސun˪!#܊*VrUˢzAiU:"?&aG,ׯjKn SCiMP55F'wei{AL]1Dy3 )6+$W'6cSS4;w>+vh} +Q'>oP0]wnI5Xc(^.6 6p4CjF8]iP~`f#F{?.h1h\`'GIu?K%*61G-B~AA 9rO5pj$"hvn9B͂5+@5a$RסWFTHjH7SR%:~f\dR5C}mϸoGD&{oǑ@UpVd[2ff|E-#rnZ*Pt&s?/#l)X~ǹ 6=\d62uzJ'˧ $KTgq'YV騭f(O#[Lw~q68e |a-B~+G!eZCgieܒLgE 79_oK FE(zʛ> #bN_H|JS 0RS`[N;l=VpRFG-СGr-s~Zc+ Fx+Ӡ͉;ě `~ÀFV(5#K'XgDi>C_n?%35=* j"޳W%5 $z2^L9c28G7V(1Zp5[g]>@Cr y ygg:vs e;aG3<2gKscqKFꀔa$8,9H> ?T1ۃauβ}'Lf~ky:B7\?ji܏:L߆c͊_΄[|e,03$x,(dcNT$S+f IQ0 $o ݟhPڮX@04zBq@ Ƣ,@s(WU>mno!Jn2tl4"r6ߛtsu@=l,{s>ʟ^=/T&o$BVbi_D++~Dr\+w2㪀ul1bqKG3sz}I=3ӉHbTa ;`#+7m`6:$}-Uz&yvdWOD*k쳸,ؕA'Lkl|JTN{j 'rGPͬ}x*բ)o<&g\$!:&#HDPqy˟Ϡqɶ.A۔I0S=ͦ&'9q'(=֥ ~F=OE֏wQvA[s+gkS7O.X4l$7D I-Kq<5HWZaOg'v`?P_BFw '7)'pɯ%~*cQ §d"@ `-vi\17(aC% wNLG5y6!גË-.W]ڃ%%]b8?7 (}U4aנ2(#Z{ѫ0D1T#ܢޜ(XYsɏ#\t$RfEDZ0iykCk6)Qlu #]Pg7[51_~Fэ uwnM(So5 .z.#{Ԕ͚ZY×ޡ,Rn>5tR1$Щ,J'] N_lӘ2YvE u*Fߟ4܇lfOɶPW}8aJwo(_sch:atfJaܷM ^<!E[]W k:4V04 $NPg8BTϙnPqNCa;D@oۊ e,:mtNrUJ,b: :> G<՗PਗB`zKQ6 >jGȎaxOLʾ '3F>AEfs3=ӳzɹ[?POXɼ6f>Ƚ/N(Uj{́z>لiXB4a `*iK<H|ܵNbPS3JYIc*7+aB?P=8MSޜb1Wy*˹Sһ/l=t<*OJW2J&נ0L:~nn z^6wG/cyðlI`_@=~Uaw KջuVTGRy0ov9퇚38nxF짡Hp8h<DZ9R0<ݛ\V~uXNk;%|PAl0NBʦ;|wm  l>v_PuAp$ŞU+,MS;nSq/rS=7P iu-OPiPm'Y#!_saQGe*YO *XTGmZʾqܢ~̩̼tZk~;Mbėg[ZTcu' c̥6\8# ̵&M%*51f^-^ ď{mb|GtMm5no$!΃;1Z!W"X#;mӟ uT|$p:Q*+Ч6,d,^  NFM* / L+A}jˉ˔ - ~s'8:6mPG(Qdۢ;v1OR؇ D*_l.D?zpRQ$,qzRi^*[ 3?.ʛSP\SAk_.u-6J[p08$Xo~볞0|>7H0-NXR?yff>!2~؊@ ѨZfRm1$i7:iЄɪ$vsv6}mvOȔ=D,ѣ> ѧ&J1Yk:bͰI, 32^(#K;{K𴖓aU!p@Cyg׶4q7Q!o\nBSL]/9 r闳IM妥k:hk3+׋[$}x-W<ʡkHIq;]h QRx m{)_o4"b3QA}&Wsu/?◀ ͪ%n%h.|h:2"h8E2zzʈ(NSڑ?k6wONѣqcS̾~BWB=q=]cj0䭊L?-L +{ab<-|*c%^gMw ͬQ=Z 1dݿlcTA|YPA#eO8xCVO.m;tC-ue'>^BT\ K*_5!|XǷ J#*D/(ǐAsЦ+01zKR|de'I0$CB 4Q7`/ֈp9ՇB"0[i'/\ U] eY3޶ VWʚAd_-3/_ո:ei|J+MHJORـXqRKOb9h '`nN:c#; W!@B0+!HZSv?px'hkxh\lGH$X ̨YX+]|1t;"B[QYJ{juZfi҄O 9ὩPn ;.Wspn`_.t5)#_T @rz~3c$ӊ/%(M-A SyԪnpl^xh V*7*+u2o<: dM e^SӁ!YZn8.Tz7ʫL; ɰ6R}\vO l HI8#VA9ݵ98&Mh"観;Lڎ=ĥju}Lu=5UM˷fIC[1V!ndlF*b%*xXz 8qM}̵=/,EyJC-nZnyP$pK0]ZӠ;mqIBfep1n~ΟߓT5̅4`ڢ82orq u U_Dwm$+yNqN0h'n}d(U-MGuJ;ݤr!wqySm0s̊_Uw磝J9Kg0HsQd46 )AK釰7pa 4IݕV%V]Qi_Ģ'[!QcpvE2e:vYIG<@!2v焌&u6$r gnM#_Q4QmKkf'249Aa E;7-)~ƁQ61i1v f?$*Wua~ A cw'x 8GkX'~ P:#7f[?(_';T(l{hM+zJ(#ATz탅1ƅ&*xPn^Tǀ5|z?62 ,!+[ 6oa Ut:5q.E@]3ӡ"! Rod1撛J)ܭV)RO n#^zPӗ-̳4(^VugK ~3jג}l[oC>,_l]/YM%e#suX6SӅu! Zf׷'.8.t݉db[hJrnכG+ǸOBxxeּ[s310dk߲cEഩc8bZ/"~(c9#QT y!g8E%b_/I7\X=.L`fgd)lD$ʇyUӺs瘇2-F㐌\ $2~lB5!^/ E(3c!3OJQO3Ć7"'Hn*6!Z2s޽HTM~09l\( 9tyPCйY H"Ao:%?/BiHQ0{HvE+u/@ J9NHފw 2_D ]%UM?hk= cMdF [AWYQy.3 Pl.8ؘۀ䖖u4dlK핮n,}q$:Qm=;HR:W3,f3hOPT"ZOm"QRH$1iU5џu# 6=}|oo5nXb  5y#b Gr?c'Ww[_ 0cz-N3H,jPڙ4$B>XPJŇh+, :@,ьPnCaA..\X<l:A຾l=<|w9扤]@셶TQZ<;OH44F,%0g'2ǤruuS1x?M^-o>ew nΝn? Y>˵!\zOtJ+uɝC(doFṩfMS^`texRB."`zlPosNM ?<Z@}|Zpq\5uϑk2W0;s:*NuU@k)6XB(9uTV Mn/j{2<ݏ:Р1'ua9RXnY%Oٓ.uQފW,? ĘIPU[=~c/AΓ̠#sQJ!v<pl<-reY?tt 0M11堉wW 9!؀ XZx(x&_YHgLg/&ے#aY`q0ؐv%s2E:8O]?RV 卬W{A[3LQ>A9`a֪Wö`y5-TN} G35gv<7dZOq#5`9TံB;;M5l{2~};-e!8؛ҵC).R>Kӿ,q ;8xl e5Txo$+u+hX#N>ϩǐaOc$L\~t~=Zf(>דqT쐮Z7U"&&zI(`ܣ)+TD1AZUKOs 7}?UNu5z>o qt1ryW4=)R _w)X KW1յY=m O?=rT'r7phdr_UIG2|DCaB˝ޒ+4CGJ4=),`yQ2].4#^j)<`y%2n,f1t/~[N!OP0`mr "eC:X1SʜE&sA$rjkՖo eYugmYJ&` gP\'ɋOWt6"X F;B^ތ:IZ6e mj4{bjf)C:'i"V'$kU @F}"ճuܝ!hKRfՕWuf &TH9J5=QC%%Ca!}ImX)\i%$ĺedBT/>+lx}̇Z8\ \Xi#c'& Uב0Q¶Mk '4Tq2L_o;+h^V+07x$W# i8 :-e6Qh Hnˁl]xqC*Թ~c3-ʞs*qzNM %[[.#³| 9cjIS0<`iʮCZ_0 ڍoT掺loB" 7?w7-cxUnuH7 c2Z4αqsv;Qq.7j]VJOks=7Qk4+m'1"c͡C5Ma6eʏt}d ]^'u|y+ 05U^zsYqTna.Ӊ6+  h^i18(>QfG#f)3Qqc<.8(͚PK p["W$ ; 1Zf1pyhX ϫO$ٰH;U:{=fE}{Uehg<6/ L5zMoSu9m1%a$D1LF;.U(BǽL؆#4=sߵѽ;1$r7``p,֧1L& WS*u5{.o7fel _piwy.nni5G٬ jخFF2wJ%;KgUm (2#Ev")@dfDOZǒZifLYظvAG>!.wŋ\:&76qԝ aj`&3 rQd+y'5 ҪY[k>EZ^H.K {J̀?D+̭"r2n+o`a8.m-\oAI.u8@x{$1R'uUplҋISB4K0f~) @w;ά/?t:6˳ɖ$+]gI.uu<ÝoVh,Ƞ3$-̻7f%$A~_ )=5VV*u ^n/#>ґs]C(; ճd O=Nм"ԥbWRDZ 'D2ĢCL5@Ӏ:,Fxc~B[[ٳ1B*In[=.<+ NYI`y0msFua&CSs7.EH^nc,3Z 9tc۴@=yD¦썣ϛގ.Tt>W|Ω͢3|e!gH ixXC TY89:l98F%]ri!@5v/)?Y^.ߧE@Ai5a5g h  i"@D(qR$ tfsTDOO+8$X}爂:8lu$-Yk*HɒsdArKWjh?S/o&j[ f": vCĕpZ\Wlb߼>N^MR87b3>Ҙό7}XkjqA ӞzU`qFERe̤evkr ?Q uGpDi9@[|q||ՔN 5)F*QHmc"m.>˾Vٖ^iێFA PIx*ݩ+6YI :{p/MxKeNF &c{ <1;ml??W ۱Yb.קhޚ&_ZS묲 yУ5iH'C!=i1OҾAFg:,5f 'n=hŶT/lCS M=D|@v9')G`D$m?4d,($Ic:+MrZ̕P;[nWCBP~=%H"JP/HVֵ`4AE!ΧC?nS-qxzyȎ {{2aDޒ$ӗ2Zi (JEdw_3/n|rwPg,^}m(hsGqJz:d@*%;\#ՒY Iw@-`)VUk`GO 垷gV`,)n*˼haR'~qy<׿ŭa?GD8[V}) 1V~0]L8 .>f+sǜ` MnْfqnmݤVJw}h%ԗm 79;p6LgM!yjM3n<<(h Sd-9TB"dw`[%\n$ZNIi`MB8u馺#HXt )&Q%ϰwg|Oc; M+@2Twd k镃N[ex,Mǀjtvrq_˴|$dHi=eI<,~Na||/E$Y䏈ʦpč!r5ti2BP(FQ;tnlfȗLHK0ZC:H_#~zV BmDv)7/xE˙r`\Kb_>7Sml4_,.8owfl Cۢ }4k| >< _3פޣ?ft/51J xwl4plgr(ZU"HUcg./{&=€\Bh㶖m8_dʩpģT!`1  w(}RV E$=5݃ЅDSZVj-K'QorYFՍc+핎7I&6 Ƣ[NХc֒AuБ78TJoC26%D1GrC!LO ?;SNY@gI/A3 `h瑩Hީkeiwf&h)ha?>{:0(R TrafO 5|sթZL8w%$XS)qS4C+j$|AQϜ ~Y$wؤW,=z[7t~c(PBj_bKTHCvK=ZKecώI"⇍e*O0w<2RDdCgΏC]}v^/DN8jnecƿuom'RјUeŵ,4TĭPYMipBۃI&]8xW&b0f7vo/Ϻ$TzUHPƽ|S] %-h#UM0ix:D$J[jc0.\kJ*Y8K/FJZL LW[1㡃쀺s7֛Jju}hbTF 3 7φ%iT7D$`1!!Tx`n٩?v(_{ڧ1GήNB4\;W}RRW|2ǧ5&I_~ûo~2ٻr,bc'n]`Ѧ:(4;$7cazaw)BəzH^պy-#KI.Nă@blqu闲 Fȷ?̈yH@:aGb9w/ڑ 5g+u=m1/&vX $>0 Lz(]Sq C+ m0a}jJ !:4/$ndO&d}`)vU pAK~^9uI2gW f2Ėi+:D)>^"ޤ}~.ߒɛ +*I+YS޲@ĕzhr=&Pv+a406\o]#z~.ik,i<H|)iq",x敇'!CV]KhJdQ!mzX}ү2S>PfOK ރςt^8ћ.-k >u-eAڄ`LF 9CWW7F].D~jJSE<@+U0?i 6Eu2n:yb5OA_xriJ/et\O+*P ?WDڰcFJI'Gsjy wBڈ"WtGՐ`3ː}m㲅hb[Tp8G蚺gp8q]p$ՍC An3tx(S>pq/iP3_Է6^㹍xW?0'}:sFwG |4)knſz^@@0JnZE5Gʺq *aerx뿐vdo TA-OS |*q判^-G-&)< ֦n|πF pehw8k̖74'51rIxLTQ Ɵb0lvYCfv\vbۭ4=R 7z)(!9ݣ IQb 0RmfoYֳUQ{A m^k0ӌ@G3k&%O=%K4[Yrou} ^89 wIgo;Sbsl#n6 +>h<LL>,YMM}Nu<{5yWo'[NvC}'e5z&`y)W'*X[q),|8H^'8{ZY~ˇ,+]w&V&k\B*RbjSoJ[8h>ZSCnٓ%_^.㸡ow/3ȝ_F۰j+= a- -@Gr pzŔaFVh԰d\twROuz~Yw@1^66ou Roq}ÛHs6Nk^܄n/h8YS0n9"=G`>ŷqB/;WcaU.Uw`ֲ>pRW;CYflL%Ťɷ(m+9`]# "v تޗb5wΠmJ-&5b =FjFD:,,!Ϡ$}ohXQtmWoMs'`nޫlN>Ӫ7P$⥮$3Щf$N9nGc^ODT:L(YJsS aw;{-Laɋ6`+XB,#RQyeӃ\-xsm9>wOZ=DiL-Z LX#EoCl/f<:THXB@ KKtK@ڰ>Ƕ?#k/K8Urf P9ֱ DbSx+PG id`0VؼeRb<8HH!j^ M{,PSϾ K=[ Q]1_SNX9Б5_!Bζn큿 z(>1Qhf)GWYj \,2 8A _sLzhTC-zq,\|Sm&skBIP6hy5aFFsIk ^)+ YvgV%6[zU lȏK~jiI<TEPY֚*~ '>GH/b:q(ۛ$*CSp+/[([3P@JNKHg(Be| B㴄. rֲ~8 M5Ր^0+܌6@`|@ S8F-4sY uLz%ʇ*CaӨނlÅE[V[=c,)P= mš>܁龌vI]('Ck[ 2ˀzLyt[+b7Gd`8-=LVObwiNTZ*| 2LaȠ8<@K$ÅflSbz8;SXVgѶ#рtDWKVrQo;t6%nD9_>;d CdLa6[&6,vK Fok l0g^[`WM2$T}כpIA)zt{c ̜õ] $ 'Erhx8EA&F_j~+w8_zn6w[qZ>Wp٠D؂켎XV ҩYkO6S8;lcmYzގbcAI6ՔlHeu'3݃/0lfBOnA[mAQtqJ![Qq@8|X(nF:tЂx/Zg\q7, ʧ*_8ёdE8بbAH6x%Eg[L:;g ]F+(|qk,/e?v['ֿ3~?Q A֔ku%s iTdAň;w׼FgRF=1?,r2~,91ȉSP|V|6ܹa5l:ko69.yGa: h5Zf(KPdVU|' YEf:I>"OjF< I *K7b>~6ٔ$9p:uv=^ZM3zGd כ;Iksܜ$9*.Tď-Җ6 "$qل6:ça4yII-mT@۳ORP Ff2u֠b_%~OkPp5tI篑QciXw3LN$k wPE/J/qsx $R3aI%Ӝ`S|}^~r“y63΋K'o˕O_Ɛ5%W5K=h._ʘ/NsנfD2uܶcRWnȖ&' a8%iHi}\j^*He}q9;0{Fzٴr/ߒA:}M:Gm,wO4ŔxEda/]M7D@*tԲ9؉m rO#k"ø!s@1heg}5tAo YѾjPM'{-yJk)h$niݠZoUwE0M H^L$ Be] R8SҹU9ji\f).s EH5Ʒ!mG=#6:o eK\XXhfY:VP1…>bV1K$1/P*.+I%brZsK,b-Xb׿VtfIlId7#![,i&t!84+q+Ű?n߳| {#b6]++\g}1+'?M fd>VA)<-{9{1ӏQNP ,񕳁ȐVJbG0Z ӃW&S Ar\E_PjhUnaIN&guXŪ rXVг\.Fd_x9JlR1\ 0s& I%u6D{1Ԅcqb-a϶6N6ٮ~~BՆ81zYpii55Y#D`&L ךa0[ b{ +$bӇBF~ݙBJ  .Ez޽J#s|O_ExPTLH!-@m' _Ĝ*)ϯ1rf/]oFs$ b{fI)fYdڑx?.|}״p_L 5e\"OI*>\'ߜLh+ ic& GGyAV(S3ڨKR,iVt=Ա(No\ݱP^4-Fj2V^ݞwM$5W̱x)Q|0{ }nNn.J m'BL-(IN;Jb4Y Zߓv7;Om [{ǜ9.SƌOқ8 1'P*̦ѡݠij,Y7 >Nr}j~Q* ôyi~L>{jx?Y֜ E]Z3IJ4@1^$%K8J`r'Pl֬koEO !H\ΊbAqFJ_k*aC)vn]牏O5&[3 vc4oR2&/31lS fp2wgIc;ܕ_kȐ=E[k|Lހ_D*>Jt&g%W- Pլ^!,ϟ=DcreU}@د)xP2:yTP8a5g0UxDBegk%RYy}nΪԧ-o]S;WeTA#7RGO}x9 8l XG?0zJ{8PFLiMݶyH#9L*T D)2IoqKjCõ@:/d ei.G upLz.Us_-`2s(Ewă݋[F>B$gm4h-yobk4=ăOq3yqׯ X>D[z)V|v_[u+yg^&Ypc{ꕂK:`ݮrkAo2w]O%Lofd'TFV狘e9]Ӫ~-iGJ",[T!KNU0rT6KQ AUfG[`{˶%Hs" I NlLn7'ErKzip靇٦H?0@W$Mu_.YȎFgĔ9+M:Yki|jqRS^k80U bkTl3ua5E P%|`GhaLʿM8K8dxzW@nEsbƒ /zPK;<Фl[o&.52`VDK~/nIt%]G2Oh@guz?5w`ѵkr-!;QF:[ t9*U(aa~wq9V}P"{RF EưX!jajΗc#-\ˏp.$z1Pp[{ x0qPC&VƑ*X Dʂ@qz¿kV+D7WHgFg1s;xQ˙V>U2k+A_C0+̄qT2C P۸ɩ`)E<@yICQJ A)d܂gb hUP誯gi ysT۟%i}8C||iprlm6VsVte(%] \T05ڂh>NI%؟LL Tc .1|# 6vD0fޯ+x(pF4-cMɉU*3h~$|=6ؔ1܌hoOQhFS*&Rb#vt*?G@E$t'qYhG[Bu mE:Qp4F̂Q.eZZY! PI2o<&%ep=hĠg .zuWOBcȤSZ[Ve)|G?XJ|yӨu7)nma8tq+aDOo6'>}zɸ`DY=coX¯جxV/x7nƹ-IRR+ܑGPj\@-,=58ur?:A)ixL-G.ѬV->cb3{C@]qD8ՂRfB|X 9_u 0L^-Y j MMIJ6 fvX!`:=ûo 8:7~0$c'2Pz/hWDmdt>OQ=P{Pʒ8v9&X~?5quh'7␆GJL,JGw]RӐmTvR)={6цm 6gaTzX#_ c˵+ng._ UO_埽+E@ʵMy:B'lތiBGAr87>ﴹ_PV8:u`:fцsZXXر =-<bnv-g@;L޳EFt8@-O C- h G{W֑Xz7 %i8"ŦfMŶ>YBkl~| Z\βeԏ6c|ꨥD(ۚd.\^#_a% 8f_hwј?|(p45\M((sGm׀ 2~RLMhݛKd5 ǻo|⺜fPާj=@Zȧg/$m(n i| nmiQ!Z60:<ҼɌaa@nTc~.0ҽc>~5@d.BGt0ޤmtETse7/,i?hcp%#/;[g@x<Աp8@^}u3k&ʌ.(&> vϜZzhpvv1<|D `UQ6ۯ&u)GsGVt}ԝza 3zz`DC̚v᯿KKj ٭cubTLkQoJETt:]n0 $QW 6Y* C(0Sּf]!%&5o̤ HQ"aVVZjoFSABbZEQ'6PMBu& /r9}X1P R=IK^yK;+bm{fߥfsȋm3Ù-*(%b ߌ[Su'g/Hy~'~UlO'NRol5j֛¬ZQ @estm MORQɏ6 Ցe*.4q2-_>hj;CNh:`SmQE!idk)r|$^}-MĨI:}YPݵL=N#m.Bׇ'/y[jx5:&-;R]aym{שJӪI 6✃Z#cSmRPsGԎcT_&-:%=ti([ap40Z%Cf4.f+~.qa~u&8`ZtaCL!DDw<3-zT"?ul ̑۶RܸR4:>,RlվxXѻ|#).޴Ɂ<2hvmݜY=q",((6 3w#]$c6+v*Yp;38lPu}0b7}[WK}_3Hh(Bq3Eev^l{㺕Lzb~%OR?|^Bd!)WJ }П~B bƒrhJ~;A HC͇P?Dŋ8[:¦.6}%BK);0[#nL)>R`]90VgF%RAe{:(qR $_DBKXa،2A.LJ 9ةF?޺mu_#jꄼɢ:kXu&('6ccOOfSVp_ g7A<,m&1Ÿ$1Jω`*ܛ]F6Ջo󝊯$tʤHۻ?yyqm ވ3o PHp*DԐVrc(QI0Ćjo+EKU,E7'C(옻05 >Ucp!%|ސL֊/pu`:R|> vn/b@EʥM\%X"XaSqM`Sl2̠WZaZ=uE!D#C=1 !J[m_3p|Wp@'wY3sQq+WqN_yY+Lھ٤Z{Kdxfk^a+(~,Cc֟{,TS&MW0BX\G*Rv{~B78Yqk\PpxM aF(cZGut|M,__lzW[+$pH'0_n]>j9:\e螢*r8q$0 uAG| aߛmT3yj`WX|f 9E:dc _/JXZ ~X= %'))oƴqwn6m}g*Z(4,e-;tXd`aРR|'`́ W\'/ zD'j ״ 2ؑ!4>\eI@'QmSwLժ(k]nٟ8?i1R4Ŵ*iL{Xfv,5l]S /e WStlC|  4 Ethjm?.B%[IPt]*ilΜ xXvp!PBDdLDj1)&iIƽtrF3k|د[M$aƃ#Zj@"%*"Ưs - 3%&O2 ̸Ώ[Pm$ kZe7ؤ~ڽ~HXU'e'LGs K=C9?|y6B38 S8Bc8u&jN8_)&ڑh-$-wRA:t-Gnޮ+ƕ9)qH 4ʴRO`a8{uϻ-g] Bwuʯ?ᶆubgUȣ u#ė2#VnS @hG%-fL.{(3в-4;MlRt18)`\FŸɺ5}~w|Gb(G$,Pie~tzdtFdꆙ}Ԥmh#`O\ʯ#iW&;j7Yzvn[$_OnU*CA!G 3ZZW`_&##b[IC["a᧐F:6:cv~J!JM0C|Qns=kRħOm ,`fd;c_ˢl*l~smo63SlG{ ~4v[h]AUa/wXmia}CI;N=cQL2sl7D5>Ԧ=g^ذ+DDd7r7`1>A,Cs|Owm[70؎n)]R󄧒BT F%Fp4}®^ݍF lSYw,f h]ڀq+cME9A{@It%"6Xdlkx0_C&HP0M~ 5z!u>lG9`+ ϠN)YʀAm?Xޏhߔ) ƌAFdh$%i+x.4 ,}#T9U􄚆/p>tw>+v[O WjH8k(訌b0s'z.)D[8ʴxguž6fK'ۻߕLYi}h F;6xӓe|%¿OIt%I[3mh,$bIPl6b!^Z8X׈ҪU3߲UcGV\>"B5^;7Lųlf #1L v'Xa ܕ>%vfIjHѧelAp;Ajz4p,9Jf\2$ײ5~54y|/ѭ$탞No<įla MRTh0!0! *)KއAzE׼g;74c n~PPp lwk ~c~#;j DVkTÃkwf)餌]aވjfm(mP=++ǿV"~IRDnd0ɘ(84O, %QA؝$!˷FYPg`U$O' mc  L.i3M߼<8sߒZN**q4nO S)x/mؾ'1&9Pn9s3TjZ@i*__ʹ=h+Jꉄѱ+!,M1{A?flN?S=}2 #h R'P$8G GO6PXTPq]o'j(17BO<;k\f]4UݏBe f;3 ~cpG:OtϘ'S**|px\֬qh v#n(`|w'uoHV߹Rx,w^ RV(eP#KɤD1g<Khirg,ɘ8&IG9V/uj,e,aabop+|!k vX~_z,:-Z6֣x<#R~(sv4?(6=;_0gBR1IZR~3'9r'&Q-L;]:YvLM2k)0Y)rL$A]LXu<6c-þ]t~7T9>U"w8lF.wal>NJN󦬀EeKMN98<qELrK*wdi6#ْ켿@Hx*f#g=ŷ{j┋cWn)6x&d69x)Ǒnqܦ:4e}T/-֓,iʗWL^棏@qjퟁsgDX&5H$ 6ű2m&쏩8!a-(<u7:N0 h rNk 4>UX௻"&£0xJ֪A6dxJXkHsscgE9v.RϮ CL]W=Qf%W9`>I|U!U"\>6#iz*/BU-9IҐ8w<^1f'>>k|\hx M5rKLČRI/a_[y#c9?sq׌rÑLDRBDQrTf 8E#h_DY9 _Svn|)1!XtAi(ы )Zw<+zH(0],8cJ`PSamb0ntZێ|/}smWW@=-nٿŨ<`ѶoNqEjiy*qZǡ}}kQf'#,]0`3~ 1w?W; %~C^,j y5pV|6j+4Ř,^b\ci^ށQA'68M&J\%rAx\ \zV*m+ZݬX|)N&e*9OSq,!\wN ^w IݳSְUȽƇgpML2)譛W,pJ P,^7 r3>)Bֱd+nywi{-/)EqZ:.t47G3p6=GfYmK"Y7GU.Md^TW9x\1m+;_ V1??;B5uq ]=/+R}Ũy0Jۄ؂#{2ƅ mj:=:MokSM~nOrp?Ag K?Fr{FׯblOr+i*-Pa)িBJ-[_ָEB;5ϝ~cFc:^`A_2l;jopnE0xK%͜Vpf΍lJh;,|7{zv #:l4qɪ'N)#J1n I'cs.1yM+M>k،a/9F\ֹ.fl>Ծuߛ̶Ef_'瀢n ~K/|s B 0j/2tS<FDtx>qcrz'1;p΀1WY;Xh|M#cr>eʔ8D&Mbm2@Y7^7pC/Y'PNو$'}7:5jS9>Z(n}uyuUGY=jRtO- "Hh-kh"ӴwJ&ky::v2T8{=rڣsåA֊a1!PjBӞ)kjsqT62|7;;+nZ gbWa,0%ՠ k VڤT"*QQ}5_C)ȉ|Y* ӂ82D֤NZwrph}h8L$\hGY]U;+N_BU}3yl5ޖ zf544H#3fW|sRI]J@JLLqKlPcϿÚŜ0!ϐ:3J}52W_RmHSkz @_^ߙǦeHy.#Jt(9=AEyB1>$1G3l>?6kCNύ4;v>}z M.;*b4>Ovx׆c'W4f y2"rvXH;25SV,w Wn_BgRӢ4+]7uu(B8'BcYM Aߚ&2APB[l O5Fv@KͨJA)[gAΉ1:s; ~8B;HSs4Q*;yΔmd sWTT 9ܭadȊ֚G16-Sz&s@Y1K'Ȅ>5 r$Ō/bFM΋X:HRk<)$8?W1|M#$Flq((2*Mrn;tBg"cY|P.=!fo[.KJԴvo@&_<*}yk=Oc\s׷7_qD $)kܢ3>xٷ48'3j4?z4e܋wT%!9EY8!rpPnߪաxUPu-Yʊ!{W.M\ LNG@hۿyA5 SqطxoѤx98ǖx.luqx$_'d z[N2#epsDTN u3# \'?""-yF)0ww鷟ưkDy0WyIgZV¯7 ؗbm\{Oi=Wd6!uD+qsѫ԰[| `~B{Qspvx`W)sBkS7S*Ӱ鬉m?>,DEkvwshԇ?tn\dMm&筂>*i ?+x k ٽrʹ+|""*AC*lr9Gd 5dgv=MCrL:C('o+=~T*E>tՕ@_fM7YfqX%o S\!QҠ6akQysOAUTuky ״(cBM50WLI--~\_ص} .6tjU փRƗbT^Ȍ&q/*B)A% wӞMi.C'cq<&0]SPYz^@R~Tiխ6֗WN$pɐ,HxE?}DǬrrzDm;T zJMX=qwz#F7}sc:T*-e偈H8P,j:颂 VҦwd)Zv̀-S6YC<~P2~vt8X+rJ轱]Es< :cRK`*&q@B 2&PP"mp uX 1ӄ]e'=)^`\}nDL9i"s/Rqz!`rl2Ҫ2/XFyX iI,^mrE-! ̷0{fFihoz4$Lx,Ӑ7?.ڠ|R4*9/dnb2V1Z0pg49; ٨ xI`Bݺ'/\ꛟ[["|8H\Q'DM^k b`mEKL]37}]EqT?nBFp!5:_x>658RI$yΡ&OvZ(Pҳ)bR:ıoPw.0MjKOeBW_k4jL5Ъ.D}>9vyWvC ;Z*I@~- XjsA 3dvFW/VϚXgIf,zGD]]xb,=TQN8$erqcf?+l m2ȱ2Tt50i v7cNJDC5)'LԓDxf-BD԰#7~:蓵tl0$#p 6-y6H/u?!%.և=jeGD L|ES@y5jtqaG'; <묬b ::KⒶPE /\.QkW3\A \QD[&o1/B;Ut*y>rHaʲwnu;lӬ %$P*r}|Cc];T/oZ+?29d!`uXAnl7&b1%&m`A>IF޲(j{p s13IfO~(M3R}0D^Q+}'fF,&iD13xY' ~f8糨'uG!+~1ò2_J{|:'Չ)kRjZ;Nc,ilJUoaӸ'$%A)dv#prlT 8 Jv/ 91e c\A7n%>q%c*4{1 r׹9~k"bKw+<Vhڄ mCK NeVøzc7:\uyqUU&H1phi'As5ee͂QqshzE.4(@C95kTwR9|*J؍vQ,ж YZ