ovirt-guest-agent-common-1.0.14-lp151.2.1 >  A [\/=„ߙa}l[y-^雑܃:8SQC))+8ft(,C*"@><dnFK`[{5݈"3,4Ka8ms@K\*5A=#tPȺc p_2u5B$OVVZեqޫVC7}SQ,_\{Y""PlHyh_c'ʌ N'IɥWkFfGzO[heCTKl| RAvuxb%4{<3W|/xp ;m oۧ<$T:>^BgWή~Vr fiMPQRd >pFZ?Z|d" , Y| "` <H\H H |H H $H &TH'tH(H*P*|H++,0-C(-8-,9.L,:1,=I >I?I@I#FI+GI@HHJ`HIKHXKYK\LH]M(H^RbTocUdUeUfUlUuUHvVwWHxXHyYzZZ,Z0Z6ZxCovirt-guest-agent-common1.0.14lp151.2.1Commonly used files of the oVirt Guest AgentThis is the oVirt management agent running inside the guest. The agent interfaces with the oVirt manager, supplying heart-beat info as well as run-time data from within the guest itself. The agent also accepts control commands to be run executed within the OS (like: shutdown and restart).[Rlamb034openSUSE Leap 15.1openSUSEApache-2.0https://bugs.opensuse.orgSystem/Monitoringhttp://wiki.ovirt.org/wiki/Category:Ovirt_guest_agentlinuxnoarch# include the sudoers.d directory in /etc/sudoers if it does not already exist grep "^#includedir /etc/sudoers.d$" /etc/sudoers > /dev/null || echo "#includedir /etc/sudoers.d" >> /etc/sudoers ||: getent group ovirtagent >/dev/null || groupadd -r -g 175 ovirtagent getent passwd ovirtagent > /dev/null || \ /usr/sbin/useradd -u 175 -g 175 -o -r ovirtagent \ -c "oVirt Guest Agent" -d /usr/share/ovirt-guest-agent -s /sbin/nologin 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 ovirt-guest-agent.service ; do sysv_service="${service%.*}" touch "/var/lib/systemd/migrated/$sysv_service" || : done else for service in ovirt-guest-agent.service ; do # The tag file might have been left by a preceding # update (see 1059627) rm -f "/run/rpm-ovirt-guest-agent-update-$service-new-in-upgrade" if [ ! -e "/usr/lib/systemd/system/$service" ]; then touch "/run/rpm-ovirt-guest-agent-update-$service-new-in-upgrade" fi done for service in ovirt-guest-agent.service ; 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 exit 0/sbin/udevadm trigger --subsystem-match="virtio-ports" \ --attr-match="name=com.redhat.rhevm.vdsm" 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 ovirt-guest-agent.service || : fi elif [ "$FIRST_ARG" -gt 1 ]; then for service in ovirt-guest-agent.service ; do if [ ! -e "/run/rpm-ovirt-guest-agent-update-$service-new-in-upgrade" ]; then continue fi rm -f "/run/rpm-ovirt-guest-agent-update-$service-new-in-upgrade" if [ ! -x /usr/bin/systemctl ]; then continue fi /usr/bin/systemctl preset "$service" || : done for service in ovirt-guest-agent.service ; 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 exit 0if [ "$1" -eq 0 ] then 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 ovirt-guest-agent.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 ovirt-guest-agent.service ) || : fi # /bin/systemctl stop ovirt-guest-agent.service > /dev/null 2>&1 # Send an "uninstalled" notification to vdsm. VIRTIO=`grep "^device" /etc/ovirt-guest-agent.conf | awk '{ print $3; }'` if [ -w $VIRTIO ] then # Non blocking uninstalled notification echo -e '{"__name__": "uninstalled"}\n' | dd of=$VIRTIO \ oflag=nonblock status=noxfer conv=nocreat 1>& /dev/null || : fi fi exit 0if [ "$1" -eq 0 ] then 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 ovirt-guest-agent.service ) || : fi else # package uninstall for service in ovirt-guest-agent.service ; 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 # Let udev clear access rights /sbin/udevadm trigger --subsystem-match="virtio-ports" \ --attr-match="name=com.redhat.rhevm.vdsm" fi if [ "$1" -ge 1 ]; then /bin/systemctl try-restart ovirt-guest-agent.service >/dev/null 2>&1 || : fi exit 0MKQG,^ EO5O5x=PGDGDa* * @ B A큤AAAAAA A큤A큤큤큤큤AAAAAAA큤A[P[P[P[P[P[P[P[P[P[P[P[P[P[P[RYdYdYdYd[QZC@[P[P[P[PZC@[P[PZC@[P[P[P[P[P[P[PZC@[P[P[Q[P[Q[PZC@[P[P[Q[P[Q[P[Q[P[P[Q[P[P[P[P[P[P[Q[Q[Q[Q[Q[Q[P[PZC@[P[P[Pcb8f936695a3262c28af8237c49bcd7318b561583f652c8f9fdadb75435c5bc0f3ed63198ce391918abe9fe6e1d18b77593b2e21c2d1eea217aaa35839796d80b1b17d8153346721122bdc3a617f0ddd92172f83c3be05b18f5a025195c3e35e05083e6d41d3ce4c9d66392ac6f4fb0814f1845a4f42b29aaccde2e92dbb2e3922af6d3f8ae7b1f2d81957e4ac86a591b5cd50709e348311d4cd024ddce7201dcfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d308ccff047007c15ca65d33460590270c5efe88d76031f2874e82d0fed7f597b62e3d67dc04da735eccf7f97db0f6f61b0110e78c684a79522083f2e432314ad486a841508a010f8a6e8e0abd67bfc5fcb7afe771966ad6be6df7031b394f0c44b2d25867abd36ab2c2058f6e7b36affcf8df6cdf39b25678cde7bebdad55dce772d25867abd36ab2c2058f6e7b36affcf8df6cdf39b25678cde7bebdad55dce7753b234a203b08e5d7553c263bf861e967f0a551460ab1a11e1b2e4b120efb4298fce27ce4d45ee343534db49a8411ea7763763effa105ee4a7d38bfa3e50de91054e979acc4a00814f04fa3532289cab3bfc48476eba5ce98a707eb34253e916bc9e290d2b82ee759904793fac830a4a2b4d6da5237d6d381aec64c525fdee8fbc9e290d2b82ee759904793fac830a4a2b4d6da5237d6d381aec64c525fdee8f3ad75c99eed2349cee4015abfa0de6f9316b2106758a5ec8639140b38dc3c29fe502529da394986dc43ebcc1c51ec17e766d0e127ff20717c412e5494b350c08e502529da394986dc43ebcc1c51ec17e766d0e127ff20717c412e5494b350c08686c38eb88f0b6c0f14c20e2e77b7eee46a0b178eb9475fdbec05a2d1c6ba642acbacbc34e5286002e42c5dbbab16863b29180d87568b1f42ef488da30ac99500ef73ac82998e81f311cf6dafa8da48b467ab60a20790eee5c794593a80232474bf774a6a721f72e88aa41a28dfff7e833a6eee86e1e7d832864c03f114ed120c780de54e0ce49ad42dd7a2e45fde23f678e72ab7b69555b283830747fed08fc535870cfcf673cdf1a17093fbdc1423b838f889af88eb2d675e12b6066ed36d852d853936df8bf728d89a7ca24a580a17e87ff66ffcc76adf6e6b358aa4652a552d853936df8bf728d89a7ca24a580a17e87ff66ffcc76adf6e6b358aa4652a581d2cde14c855fc5cf5a5bb70d681dacfa4a79fcf1e824c488db4651686ec282df192efa2f352d3767ff1e0002500641e010168e2f5ab8739b3395dd88b13ca7f4e22a2e9d05dcd1f5f975cc42f6bece55262ef0a96eca2c6e80086fa3d993f7edaf6ec546358105bf0524bf7d6c1d1befa760370fe431f3447b9a960b013ab4edaf6ec546358105bf0524bf7d6c1d1befa760370fe431f3447b9a960b013ab47035b7466b950f3afcd39c9cb1d962d659aeb694e6fbf0102fcfacb69100fc7ce2982ca2aa9c12c6ca7972c7bb20dfbfd3c4961d113d74b587b3229cb4dde95220826005070d1ea20812b0be816015706082d9d35734b36413e45371918568b519944b44f72a24d2803952e82c2532c28702189bdf5b82596bf5650e5917ae4475ecee601e3bbc6ed28fb6f145609449a9c75908a4436850d7b979bcbe98f7e35854b6b456163d94d5e587f3d6dd1f9b56e916a4263df3b804b652e85dde9a55f8d93db7393bf13e0991b979024aa1f32c23957a0ef3dd64a1dbed034986a9bfc2e4e4baf2016f156fe8c3628e656dc563c3e8e40cc701a0a25642250d6521d9ec136f44e9cf7c2ce4f54e14741aec3bac7c8720442bb8fab1776c3b51d7f0951db58e641507516f6dac070606d53a2a0bf787c2d03431dacb7b8243c2ff7df21db58e641507516f6dac070606d53a2a0bf787c2d03431dacb7b8243c2ff7df2/usr/share/ovirt-guest-agent/scripts/hooks/before_hibernation/55_flush-caches/usr/share/ovirt-guest-agent/scripts/hooks/before_migration/55_flush-cachesserviceovirt-sudo-wrapper.shovirt-sudo-wrapper.shovirt-sudo-wrapper.shovirt-sudo-wrapper.shovirt-sudo-wrapper.shovirt-sudo-wrapper.sh../defaults/55-flush-caches../defaults/55-flush-caches55-flush-caches.sudorootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootovirtagentrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootovirtagentovirt-guest-agent-1.0.14-lp151.2.1.src.rpmconfig(ovirt-guest-agent-common)ovirt-guest-agentovirt-guest-agent-common@ @@@      /bin/bash/bin/sh/bin/sh/bin/sh/bin/sh/bin/sh/usr/bin/env/usr/bin/pythonconfig(ovirt-guest-agent-common)python-ethtoolrpm-pythonrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PartialHardlinkSets)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)sudoudev1.0.14-lp151.2.10.4-13.0.4-14.6.0-14.0.4-14.0-15.2-1095-14.234.14.1ZC@X@WUeVs@U@T@T+SS@SFRpQޞ@Pٕ@P7@PP@OOE@O@O Or@ODNN{#@NqN?N:N6@N-ZM@MM@M@MM~@Mx@Mn1@MlM6@M4/@M9M L!L~Lwboris@steki.netboris@steki.netken@suse.comboris@steki.netevilissimo@redhat.comevilissimo@redhat.comevilissimo@redhat.comevilissimo@redhat.comevilissimo@redhat.comevilissimo@redhat.comvfeenstr@redhat.comvfeenstr@redhat.comghammer@redhat.comvfeenstr@redhat.comvfeenstr@redhat.comvfeenstr@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.comghammer@redhat.combazulay@redhat.combazulay@redhat.comghammer@redhat.com- update to upstream release 1.0.14 - removed fix-script-name-in-etc-sudoersd-file-for-ovirt.patch as it has been fixed upstream- update to upstream release 1.0.13- Update to upstream 1.0.12- update to upstream patch release 1.0.11.2- Update to upstream 1.0.11- Update to upstream 1.0.10.3- Update to upstream 1.0.10.2- Update to upstream 1.0.10 version- sudoers: fix path to ovirt-shutdown-wrappers.sh- Update to upstream 1.0.9 version- Initial package on OBS- Pep8 rules applied on python files - Call restorecon on pidfile - Report multiple IPv4 addresses per device if available - Send 'uninstalled' notification non blocking - fixed "modified" files after clone. - rewrote nic's addresses functions in python 2.4 syntax. - GNOME 3.8 no longer supports gdm plugins. Therefore it's now disabled for higher versions - Added full qualified domain name reporting - Condrestart now ensures that the pid file does not only exist, but also is not empty - Added new optional parameter for shutdown to allow reboot- reset user rights on virtio-channel during package removal. - unification of line endings to unix. - fixed support for reporting devices with only ipv6. - fixed pep8 errors in the linux guest agent.- New upstream version 1.0.6 - Upstream build system is now taking care of folder creation - Upstream build system is now taking care of systemd units installation- License has been changed to Apache Software License 2.0- introduced ovirt-guest-agent-common noarch package which provides ovirt-guest-agent and avoids duplication of the same package content - fixed various rpmlint errors and warnings - added required build requires - removed unnecessary build requires - removed unnecessary call to autoreconf in setup section - marked config files as such - excluded unwanted files instead of deleting them - removed consolehelper based symlinks - now in upstream make install- fixed 'udevadm trigger' command line (bz#819945). - fixed various rpmlint errors and warnings.- replaced "with" usage with a python 2.4 compatible way. - added files to support RHEL-5 distribution. - added more detailed memory statistics. - fixed build on fc-17 (use the _unitdir macro).- removed the RHEL distribution support for the review process. - removed BuildRoot header and clean section. - fixed user creation.- package was renamed to rhevm-guest-agent in RHEL distribution. - fixed gdm-plugin build requires. Resolves: BZ#803503- included a gpl-v2 copying file. - build the gdm-plugin using the gdm-devel package. - added a support for RHEL distribution.- updated required selinux-policy version (related to rhbz#791113). - added a support to hibernate (s4) command. - renamed user name to ovirtguest. - reset version numbering after changing the package name.- fixed disk usage report when mount point include spaces. - added a minimum version for python-ethtool. Resolves: BZ#736426- added a new 'echo' command to support testing. Resolves: BZ#736426- report new network interaces information (ipv4, ipv6 and mac address). - added disks usage report. - a new json-based protocol with the vdsm. Resolves: BZ#729252 BZ#736426- replaced password masking with a fixed-length string. Resolves: BZ#727506- send an 'uninstalled' notification to vdsm - mask the user's password in the credentials block Resolves: BZ#727647 BZ#727506- fixed selinux-policy required version. Resolves: BZ#694088- various fixes after failing the errata's rpmdiff. - added selinux-policy dependency. Resolves: BZ#720144 BZ#694088- read report rate values from configuration file. - replaced executing privilege commands from sudo to consolehelper. Resolves: BZ#713079 BZ#632959- execute the agent with a non-root user. - changed the shutdown timeout value to work in minutes. - update pam config files to work with selinux. - fixed the local user check when stripping the domain part. Resolves: BZ#632959 BZ#711428 BZ#694088 BZ#661713 BZ#681123- stopped removing the domain part from the user name. - show only network interfaces that are up and running. Resolves: BZ#661713 BZ#681123 BZ#704845- added kdm greeter plug-in. Resolves: BZ#681123- replaced rhevcredserver execution from blocking main loop to context's iteration (non-blocking). Resolves: BZ#683493- added some sleep-ing to init script in order to give udev some time to create the symbolic links. - changed the kernel version condition. Resolves: BZ#676625 BZ#681527- removed unused file (rhevcredserver) from rhel-5 build. - added udev and kernel minimum version requirment. - fixed pid file location in spec file. Resolves: BZ#681524 BZ#681527 BZ#681533- updated the agent's makefile to work with auto-tools. - added sub packages to support the single-sign-on feature. - added -h parameter to shutdown command in order to halt the vm after shutdown. - converted configuration file to have unix-style line ending. - added redhat-rpm-config to build requirements in order to include *.pyc and *.pyo in the rpm file. Resolves: BZ#680107 BZ#661713 BZ#679470 BZ#679451- fixed files' mode to include execution flag. Resolves: BZ#670476- fixed the way the exit code was returned. the script always return 0 (success) because the main program ended and errors from the child process were lost. Resolves: BZ#658092- added description to startup/shutdown script in order to support chkconfig. - a temporary fix to the 100% cpu usage when the vdsm doesn't listen to the virtio-serial. Resolves: BZ#639702- BZ#641886: lock command now handle both gnome and kde. Resolves: BZ#641886- BZ#660343 load virtio_console module before starting the daemon. - BZ#660231 register daemon for startup. Resolves: BZ#660343 BZ#660231- initial build for RHEL-6 - works over vioserial - Agent reports only heartbeats, IPs, app list - performs: shutdown & lock (the lock works only on gnome - when ConsoleKit & gnome-screensaver is installed) Resolves: BZ#613059- Initial build./bin/sh/bin/sh/bin/sh/bin/shlamb03 1528413522 !""$%&'()**,-./0113456789:;<=>?@ABCDEFGHIJJL1.0.14-lp151.2.11.0.14-lp151.2.11.0.14-lp151.2.1  ovirt-guest-agentovirt-guest-agent.confhooks.dafter_hibernationafter_migrationbefore_hibernation55_flush-cachesbefore_migration55_flush-cachessudoers.d50_ovirt-guest-agentovirt-guest-agent.service55-ovirt-guest-agent.rulesrcovirt-guest-agentovirt-guest-agent-commonAUTHORSCOPYINGNEWSREADMEovirt-guest-agentGuestAgentLinux2.pyGuestAgentLinux2.pycGuestAgentLinux2.pyoLockActiveSession.pyLogoutActiveUser.pyOVirtAgentLogic.pyOVirtAgentLogic.pycOVirtAgentLogic.pyoVirtIoChannel.pyVirtIoChannel.pycVirtIoChannel.pyocontainer-listdefault-logger.confdefault.confdiskmapperhibernatehooks.pyhooks.pychooks.pyoovirt-container-listovirt-container-list-wrapper.shovirt-flush-cachesovirt-flush-caches-wrapper.shovirt-guest-agent.pyovirt-guest-agent.pycovirt-guest-agent.pyoovirt-hibernateovirt-hibernate-wrapper.shovirt-locksessionovirt-locksession-wrapper.shovirt-logoutovirt-logout-wrapper.shovirt-osinfoovirt-shutdownovirt-shutdown-wrapper.shovirt-sudo-wrapper.shscriptshooksafter_hibernationafter_migrationbefore_hibernation55_flush-cachesbefore_migration55_flush-cachesdefaults55-flush-caches55-flush-caches.sudoflush-cachestimezone.pytimezone.pyctimezone.pyoovirt-guest-agent/etc//etc/ovirt-guest-agent//etc/ovirt-guest-agent/hooks.d//etc/ovirt-guest-agent/hooks.d/before_hibernation//etc/ovirt-guest-agent/hooks.d/before_migration//etc/sudoers.d//usr/lib/systemd/system//usr/lib/udev/rules.d//usr/sbin//usr/share/doc/packages//usr/share/doc/packages/ovirt-guest-agent-common//usr/share//usr/share/ovirt-guest-agent//usr/share/ovirt-guest-agent/scripts//usr/share/ovirt-guest-agent/scripts/hooks//usr/share/ovirt-guest-agent/scripts/hooks/before_hibernation//usr/share/ovirt-guest-agent/scripts/hooks/before_migration//usr/share/ovirt-guest-agent/scripts/hooks/defaults//var/log/-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/0c0abc67b628bd2618f78300267e1bfd-ovirt-guest-agentcpioxz5x86_64-suse-linuxdirectoryASCII textPython script, ASCII text executablepython 2.7 byte-compileda /usr/bin/env python script, ASCII text executablePOSIX shell script, ASCII text executableBourne-Again shell script, ASCII text executable RRRRRRRRRRRRRRRHv (XPV:utf-8884020a3ebaefe4aaaa9c15109bc1eaa0da814cf1e1e81d7d9959ba89b8b36b3?7zXZ !t/d S] cNŽ,Be-2Yę,n u Gct7D7;aBJJH['5wb!6]j6j2AXUn&$:BMUei!^0i'z)z\!:%HI FW/G (FxA< [i,ǜE Gn _q*&+Ω{+\B.ttWn +S<ƬBb5;什Yl xF61Ϋ'1bdc<i75}f1TnSSr%fsQhH?^VvT䚚xn32K> 5MW*eeĮaV/fPB)лW15>qjv_Pbݩ+K&x|K֒8]_~9MjXX՟ w,ehfD#&[;U;=2/Me5#^_x'6I!0u> x}LpgJ fjbeG_~$-ѓ\*Jǁbi3uSg=5}ֶ=FˆٺrsOn%xuD/[%p#K _\/.4^?KrHYԯudTu dZb\\0ِ٬ɟ.%uGdr3هX[㙇ոHj8Cc*džSő@~rv۳k/d1]ȤI|XWai! g_]O (}!H)!h`ִjk2/B%dV.r}OzܝqeNt;#rP/ʟ˖&.i4Ќ--V'=+6,(dt{"5KtC{n"cA,$ vHA)hoͤxsl 4# E]Zxk&O.)ukG J s eu"# 2CԾVL6 "̱._MAFoDQ]p2N- ?u]udgly=ToG_;՞=]w WҞƂe*&F q"9J<Ч-A>kjw1$_9n:x4Z$.i)s;cwPQ8b}nOhVJù/S"T4iDpl8"|qAD9?II8P//xU圾/x&M* l&z$W[x1)N*ؾ!KK mS26 :AxE30.M#ƍQ4͘ziU!&UՒbl&aݛ !QJ^飘w/Jɰ3< briA9%3u \Lr@nyVN)\Tcj-HJ7Qr[6#yƳ_qGi xڛ01ы1|Q|R/x(ݠn1Bc)߶~;%Qm xj\h;X4b*+6^RQd>5zpD'J\!usP Y^Uŏˀ-RB q i@ҹX]L5Xd0Zصu=d;;adZ\ɲ k!D#G09յQ}`P*nl;qKS6"DOf?-aK>9ia@. { WQ1] jcNm4"m<< 6XP!EaSӡbBwNGhMK4[h3Y^f؍Hft_%GbdS[)X$pBP9Ēf&>?3DMZ]_I &P1tC(tzx&?sBTcjT#eX!Gv?vצ.[Q NPLMYsXy}r@WvL|r章5=$n{Gg5<.d0`QtQbis,l|gf~\5ؤ d/†v9 ~vU1ΞEEB ms>"9\rg)ӣg**Wf +HF[YI%P]0 gf.0k> Ef$`(]}vҒ L]7E^F=YR~Hy{g5Ճ5i [؟Z;m[$,$lחj;*b!7SET=3ͻI^c1#8G~)Te:lHh!{X7jF{ Ff+M;lXp^E^RѱJsWEx0*ymA:iW8զe\2ejiRZ]5v"u t؏j#ВG]HP,ʲ~=4vO'ޫab9.~ i`CE"f|[`#iTбȄZKB챦(/hrth}<\Y;㪰pe=,<_YGD+TWkZB09PM.ncZ'T&Wlq wc?ot_t y9#*\"xd7nblLj094v~_p,.+:!t}O(۬]OɈ~In,Os( pU:>;kΔƉ2B~SYwvt-<Qr=7*@N.#a*tgOvL<ގϸ Cı'j*, .yeM`-$(WEmp07Rx W^' h[pLG>x5/-n-f 0Ln"8xO@#\B7s>)0 !:0x~.C;AGJAP})|fDDnTNk-( R[RJnEJLvI]58i*N% .V'=*ܞ OpZZ]ce F&Oni]R&}~ޒ)^ޤXe d5,d(~3ilw /ɩGGҺѸ:M܋oT"J_gd<d=VYWh3c3g4$]xkP[h _>QDɁG Nc1{N]yΖѫZ*K`Ș ɠ_S\ \jvo;WWvSv+d\;VV(Qp knoj[4kc^eMD5j M@R}Y .מq<Յ@K$gB .4ဨ'I"iyJ)XjŽ]b!v~'nK “du@;qtY/~3x-MtXͲNz"`n]Gk|Qa0gdE$O12*ާPf-'>j`9>+cg|%aп0t}n}ϷLŇ4ް`Cw^t #V8:#ER[s2!8M-'}Zʿ_ eYp:q"8Ƕ ;atD_+\#u.ZZ| 3$()]S}: I(o,FTu̿%6W KRl*RJ$;j0.xs#ED&>J.vfdF$ 8{bHͬ_DkT<^$XZg#Lz{.kT~ ^|EP29\4X1OU#I8tZhul5.Xse<0:YBE%FG$ }I?('sTi=V=IDgkZ;* ޝؙk2\@~893t0Luz25B>zz{')%떆E/yէtdZyf;[+>{CmИ?8)>y8@:7}{3!(ekTх BѨtF>/Cr#5WZ6O2tE]mWϼKQFc >y@x輳L\UZXo3ݗI%=_u], GY&=IK*l%ꃁ2C BF><Wj >nG`x=B1gaQ=cq!% Gp|-4Mo}QkJ{-I/6:OO %!r`phn.f$ZliB y'W?#rȴ`caPڥa]>`5kg1[Tj9YgҢK|ݚF ̿*G]4?̵t!'Xd{>Yg{c!^ȣYt-a)]HlR<4RpnJoZF{dޗl_}TIiXL5 5[zrsV3ӈ7B Vyj"ٳP4TYZ HgohJ< -a0\ @JH>؁}QOR9\>knn.܉8;lBbΰa[mO 7 =]n3ݩit!KUUZGƂnq2J]1cTIgtBr;lzsqrA_[0hش_7$zv$ E3+ ODl)7^ԥBAc0Æ"O̵\krG\9Dz{H|.J,S"U5E撩%EEGx:L:yD!! Hұm[KˤÌȠ(%Lo!jܓWY.}:YC]S:N[Fn蹦Eww 9+nVt2;Zצb nF qf .UfuwTzdlj)'RJi6Iغ]]s"Mg\^iԅ1)V5zi[,Ym.A6 G.bWMl,fNloμS.mX)@"xyC,xUk߂"Ŷp|d:2Zd_eK,x9bn7͠2HBXGAj^ܚǡst64k,vMΆ ;to/aNJ; S9bNۅCB ^ g9 u]#*[r*FjW*aQ(p5eN &{jyx_ ҹH O*3!-@ӣm'0[ܯ #W]FdTfz@l8V?6~=֬p=S?Hћ",-ԳYAMAM]>7,WV% $RSify~hOe8eGlM*&YxfV]sIބuUr !`Z*z%e$CQ?1%~:?N21%1-`mk蕉-^ߢq_ [s>&d.hG" ? -L׷F |K/*tTqg$~JEe. yjFטs'݉rmq+!f&(;@u W<6x$br>_O;꼆n-+ߋ]Y`8/U-7,=QA2ꞔ>y}^hd B+ ?x 34Ǩ~tqRP8%35' Y]ˣ53X6C;EBx۪5a+-Wn9*gc%D*UUڮƚ7MVQ26W[HUЙT*4PO;hDz0XQOjK}_9Dw[H FSQsL;AM{aC)`WWE35NCg>ϲ: 'UR [Oq}G6ZTA! n4TB+aDE5g[cOhE^S[&ǶkR?mB+l?P3Gߗ̆qgQdN!ÚrsS, )lXoȆaV[4g.V47LmQ?u7'S 5,"hq'Lą+::C](K6/?d)#$ZzbIʟ(Ǧ܅U%ǼP!BIMG5@ojA^):< t2p;#Z >=)bfoK}5v(\8"掇a|5#)wAN͛5W Y%")UBX;Rl7YZʑi(0g@&_ޚ4ӜnA{;J0'ZG W0I򲟯r$Ϝ<gȀ-waeSi,CSxi?ɓ!}WcK35h#?\ծDQr l$:~x<H}c8jWGqLJAj aj9F 9](?lׂ9}pf\/'"6E-~'ܒM&V%Z }Ӳ'ȶDتՙ+gC`8% "Y:#Pկj4&O0J-|3m3A~0aF4tkd>օvuj_tNMo@ƜGiW/ (C d´.ptA 8)Qr +I7~ pԽvzade h@{7{lr?,%mNj8^ UX!! +npWD7ζZOK!3BDJFT)PRJS+'#-`VzqX]$ |j ܣ5ocM3}nV͆Lq0,f^nL5 }|Db{ODaj}9Lſȧ Lr,$ZB'/fyH([tj*%8(Z4A#27I_ktsB}`z4eJ(H=C#K!X?EuFiL>"̬F R<xI~Njx=}}b,m Wɦ*(1%YP|Unf-&>BeCnè;[H E9ov5X>Es^4=״r+_;şɆO/Nh#HgPDaKKSrmҁ4X!h,H K8?D]\pB?5,; yhvUղb})Z o-i2=D}&e'6.cDa&1lA@?^FVVTϫ4Ϧfn8Z4P^G0ssUda^ 7S௟#VҮ &.[+YIy>(`{4ÂsCgwo/7KV g|[N4 ] +@6j~$A :J`IGi 8RzU{2ϑ?0~9MkoIO|;/ cajaꅅJ)omƇz|Hg,6Ŋ% Lњ)M&)63ȕ$TT,-pio5Y)J84&H -b!}/xZ\%cD]}H~^ͷ/Zta$:KNQ8#V7*},;Lj`۶LɁ 8i+1, l{t8`ۀuo2qɞ)ǎj|6 _ET:Ufv&=L~u@ևlzkNʬpJO{s{Wz]1dKxew]ģjOX"j)0|NsӍJe&s6.zR/I{6"'ֿU[ ig=@OW%5n+qA2.Tx|5*K'$4I@)P[V<&Š!\>cŁ?nqe@Z]쒰-hIV j:<]VRI} oWy([u9=* եAJP* 1`&3j_`<P[ {FpZ` -bC9&G I`RNu~f˞ R҇ԟ# kIęND&5~oKC(a-1K6|꘨^u" `VLS;pHM~ A[ s 0#<Gv^2O,'ݲғ2}^2:ӌYB9)\ڲu^yJsk;#ko:Pui-;eldC66i) fz&+= pf"qo~ gU++ Yup cu3@w3Ռ#6#'A}cc O~k&.. .yU p!teh6+ɬ"9io7ɫ2}1@tPMK(kջ]rtGEİц]*4ܽ)Sw^cy ;88^01h?y.4TSp#uʾ`Eb_b^vYY Z<qŔ+`?e}]ɺdEڎs'dg L*R_) TntP#1^ѕNqY /q9%Pf-prq`~0k6}mϮW|F=Bq_#/-og4BWSOYQܤFiq5)=ixN)螢$= |E7JHl 9@*҂_yo'wWq`2g 6IАum'ߕQ6^WPsL<6m׾b[_*R7ŪTѽz0 f'KkH(_aMwL'e Ur1MaƀWo< H;zS 'E_GtO]?_ $Y=g\ը MY4. J7 )(UrcrVE_]Gk|kDDZ[fFe XrY S'$)Z +"^ -r֓ $SN }ѶS#aMjY/0|{'[KUqp+Ǐ+)D.5FS !2_xgҿɠMţeN(l1]ۧKb _`B1}\*ei2(V|RCt]?K CN 6 PIeւZqf s'띔jۤ* 44DZ\B09&B0SJ]_ףfAYHllM1ѽ\]>ˆΓ,P7}jO708iL/q[6!Tʮ -uxbUbΏcSi iU8.jH5KF[ vT?>_~8BҪ7dru/FXihr-G`-HH\4 fh)P1k`1C =KhD1)J/V`Iw-$.<4D2~^Z)$6!KO *yy ZYJvlRC0VBATOUN'Ѷ&&sPu櫜XR|'}}Є#^$QX?oD"-^ )1 +{m&Z / I3g뗘Ll_C=&lX?%v;Df64ޙQzanh`!9164SR FckIT9!F"=BuD:KRM r ZOZg&_wQ~V8Ms%9p`sGo}sRn߸[LcNqNQ_ fCO2:1]_=z{[ͮTYST~?H!6/UڜM%<(ݸ VMwKIu@Wd@HO !H#9ˇ@g[:]ƞ^ohJ K6L`Zhg WL`rRvn*U\|dZi0(sXMˍQ"ᆏ+uke̓S}.څfMǥd?@/ŵ1B"l4Zb~8,liI,ĥ<4 D]ooS-?>YJ7^6D r(#Iw% 蘈o%|nY&¶+)}hPK|cU=]nE?rϻAݺ̘˫bHu~>]Wl@hoIc#2Y?Q9qdafɰ2j#ڳ?]o>5x$D!_ɘj]-|TM /z~'4o&)5ZD|qR^DH|PgO-VP qOvOIPQXA_Jkh'/ͭ, 㥰L>ZT?,p#91JBdgWr[8_nbŞ]M40D!Kɠנ7:{9lcա!/n񊊓R;Wyz]AVh^nicf\r.tD̫qtEuֈ0M1+LD^Qq <Q1ϓi^jZB2ǚh2ӸHP}kMH1ocx44 c5-&ՕcTZYY"C-#sE%P2M;qb#" <>p`$%z:ua@Q9QP7Y1?XGk.VNnG((_}%;fEHe0\6~ 3wb:/Fث lMm?;ջyc޳? ʬ݄X;kUV!,.C&z oC˿f '{WEfi9w,ZY!σ"UݸRصg W/dJШ^9 FtC&Mv,v1Q)=Y%B45W]Im@oZF/sPq48% y$/<\]ϯQrN=2xKP}3қ7CotXvԒc?!](^`c@+X'3j$l5 7ә"X# њ(h)l$Uz<3%d}.PhBk6T~E7ZpGT֘_/d`;_Vt]A7'rEKypHƣ9*r[&EfةYqd_+ GI>QI1 Ȇ0i1a Vv!eCzA$ ?*liȗ6.M5?JYV? 5Lny Iѥg5ѫ~>AŀKWU|B1C΢.y3\|֣3nw>O+6U:av{SJed$fY m>seӟx8M(Sڎ(103ZzPϞ/w{qܾ92MVT tg@;Xw=|r`Gädyrx|[S83ed/:}VϪv\d iڤᄀ$YD+:f' #ˆ=9|0#j62?T%]C)'d [R_{Ur.,lD+bȊ׷sJE?Ugvd*IQQ故+₎ٗZ},I[724mH}x4EO}` ߕDPo;%ݔC \ P߷-HP 9":8t(Yi9 .nۮY ,я,j\-7hE&p\?+g]W,z5rzԖo 쏯m)j/D,T_Me[ImO_^w;E@qcGǓ[7!T͕#y7.붹;r8I& X>V!z՚0Wɓ5owDAX7GP*-t0&oF_>PsO 6F0%AC:wAD'@ڗ Y-:C,86{kzxYsWw0C홇F'ūB3OIbԙ[{)l/ Tyn6.WBB sC27)Zbq9i:޷K)U>>w MMkp1QǁMfwu gJdmQd} @keHz)Z~AZ:3ljk +pdEUf(;}H g&d uᄏIoKdg[$ <1 Ȍ ^21Iĉ~ΐ 2s컻N;5N]` L] #iau 7igI*kF$ 7:#9T]뵹p)w4Zjv'jrkM'kZY #_T}+E) ̜x a?dTM'PR.[4RNU9*%8u%H|Ű2jDXcdڊ@s[B1P!a ̶ۨ) ԋ3\a@qQ:3eZXވIȬ O\T M2ZB0-+7K<{S2y]E~iOkNxvgk&͜73ѧA֨XFt%zr X_n+gԈ饬nY}m$#`.p&+O{?|l-E/{Qr#ɣ;'h7=wlFFU\!7yp;:d?+}t|&9^6R`I*!H5(C fH(a,Fw5fw@~\KińVSQаb X+wa FClO8Av `}#MPxTXo8y q(dGh@hRz#QLyn ږRVv>=0};:؊R,(/WO4"C~p#P];\ _b>^&ωOT@fJJ?p婀CNU0}*ۋL fFS^#ᦎK%"]s<06LKC>ޑ ^٬sK-}~q4Tl/^uh Βdp7Hm Ftl#>m5i )8/QǺy~x֓jp*2qGKSI~|#pK>e!oWg"2?k>Ė59򚕌347D) y}$Pf#N`ʬ NkOeX@ILLF?ȝt)y>k}czJ߆&oȏ˟mG.Q#iFr{ږ6xpnle F5t-@P֖-s d<؛}TO*0(Q_8;X e.yZҮmMsbDsѕ&Z8St"F3Cu00m Y,#Q[@&G@y Ԍq}2Xm;W ̈P8:Y̛j:jVYl7\v>F`_[O<-0_ 9EEHXT`hHO=3$c+NEvAN n۴nVMƤiv683lNϵv$2#ʷ@ZzaJσ ~L*dgfx.K=]x&-0# քPMwʍݚj!ߵ¾ed{>^6&=dUma)S[yPteeR/*0}:7fkl!@ڠ~BO֨U 3x[ Дpl9|5hRk)iLgr|ܻ$u.|y*2AI>ohr"Vsfڽʧ\M&3lB- pOX82 KJq.2y?DՔF >&6(H[W ej вİ Y?ll"W=P%uEmTJB4|vX3#4]1R2M@.HSM瘤~oPM:h.$e劄7d,+{eGZF09[m@s]&%_xCXb['WK K܋=4C=DWj*B̩Y˃c#/Tܖ5Liqt< i@f4 "*!VM18] bX̮Sm{4,aobVJ$OI &_82S@fW~b/ gڛ(2́~ \Fjoo'mJO\Dz&;vB|M!˻MtwB^++)ȢaFCdOUՋ/Q@0ՀVbQ [r4TK.n7Q|b&:;#Q_$Y&JV2_~&Pi ؋|X{W.4SCQ|@J0}n/qsd|䨲~tkB5:]y hJ/wv;!>FvdΪgwfv?N*{I,' 9%7m夁zș>at'V5 ]k)>xcxy8A5iEl4/[jI2ܲ?\z+,~AmcIUD6xQS 2 Mb6@4gjZKGN/Э'WP(16<礖dWI7VbNvkP6.QMOZ T}?!$a(̞#īoAiri,E:,-NƵ4oل-[.irv\Hԁrޓ/{ x#ل+MP $RWr4S1GFxN\F1l@4 <]dBv2B=%,ps>l10<c$Ba,뒺Ƒtni>:$Ϗ۞=͎Zg@3*Jccxogcf)5>wahXarb4<Ġ/~Ov*Q:vO!=d#D}~04NRf2&Բ.~8@h 1WgUJAAS-G"өoS*Ze}!<`/= d,ФϠ2ngr;9Q yc[߬Z:{ >-^29=a"B~Gl4 hl B,eW|N*fr41(+w9"`*Cw V*gx0XL{Ճ<6}ylAj3:Uli4vfPA*Rt|?H:GmkQ8sxL2љtCa,nśEdfD}-mṋ٥%[r_+EݥwmjY'Yaь^? ƀ'1"]W wbLr_lSWMj!'P JB=)W6,Bd}5gS+@Ya_PʑseiVGNu;7(=)Zg$VEWC:bazTWU$z*0gxrgNݧH R=C!#1 Hjk1۫o$bNl,p42Yif:b↋xJi}MBw{@T} Bsaig˜ctz34:I-*Y{DŶ!pLYfg|~RtTmr D{D^>ݼ(vw^a_^{#JBP aÇBZpp^*K*1u:Be*lG3.(iȐ¿]TJLN>nq6)ğibZͩE?d @G͟0ݝ^IK֨)->?aC"-2I B3&65vDTb]/mXجov^hK+]^~iItJ?p)x/+ fMK%l,z;~<W6h)HWpR;lf#fT<^1yW0xF_ޝTU|vI Knv/-[Zo\ZO]ǥ=:aCswNq8rJ6˧I 2s8ܺk i.08qڋombK#.SZػMqX2% tt#yq*akvD DCMִm i71oԝ>0Ʈq,67j(i ИJŸ;9S<ԭJ 5g'ᐁZ%5ԡC?;盋<'U#T@E^|KT;R{Nan:T+hN3h*Ȭb|3~oc!?bYB'N =Y T'S1 {+z~a`e\L,NhxfC]EJfl5or\=aH]ldK:qTsFxtP5yQR?x+wJM± W:!;,s m( w ֒t],\uP[FE=0˱#E|pJ:%lJV2mJmzIu^XT{` :[ (/=BӢJB68cx3i2w?p -]ϙ)鐢/o5S^>;G$`+q֠:Us8im4y}-yIlKSsGTQ::cc6;/>(ijcN]MQۂa6Apq| Pett=Wx8e h ּ±gJBnw)U~rƜLZ|wd(b S1)ȴbwAEM,_)$" n̺*ۂ=QԀ&^bfUb\WG<XjȽkv6]̸f(qgCeoaЩsd.H8SީZ<Jt|ѷP'{ogʆyB!^*a}AŸ%]Z\΃)&qWūnU9fZ[Āiת|SCCXr޷VvWA tBwW6FJP1qJ>ǏV92@7lZ+ Mg: hvtnKB1:T%XMy\QW27e6{whߪhWAm9-j*7r\/3*mh2N#U|y &|tS[p/?UAbc=G_LQm^<"3tL p(zG1Wd0R4NvLa9ʔgrF;j(yd="isrnϾ<&&x{-b2G= u?$(t3:ȑ19ga./*zBK<ҢطѶFpةEBЕW%NE.G.wH;#lBu dL1d6;ZA Ͱ)6Zk: Ԓۀn"fdnK< rI ـm%Gۉ XuVSۈ`B(W` zb~ 6qؤ)̅Ɠ),#ؑ Ep{|Wq<7@=~h%%TY|%DѰT]4SŔܵs՞V8?̴ Bl&QM ~90{ HV!/V.*DMqJaDDH=μs ZO|nC.lW`s5m,QtC +e i3qt1apvG,T #'_QTJ8)Bv5խ:l۵ S&` ?َo鉊FG0R_ѕfMAPב֕pr:јVaMgõ:[ך#tTYuZ% :%M QWX+R6]6.׌r:W\Kz9U5yשL08='%wV/6"Nvf1Lx=Ǐ2v,)Pyr2)J[֋.Rpwn{ .&Ḋt7L4GuoVrbt[d;3D4jڕE:k~5 YXgt QtH%ss~GW$/vX݄F╷Exkٟ{k#'{Гgi=)*Yo+ yT\|Up/CCzʴw*۫IZ4_.њkB&9ÉS(^CԵ)z+"~=_x?B*ӕPק+".'mʔvy%|5"=ƐNҁOyo{yjy.dX(0_~Y(T꺰TEv0ݞdͶfJW=ET㿦A,Bb >L:~3Э-ɥ?:f>(FaeHcWƤ3]@"Z3Qm@0^F|qp-4Lo}ٴv/֛ΔVxy9]pۚbp:"Zeib fN}ڠB|؏@ ,,pذr,( Lm04_vivs: dj,Y {V i"g&_PcJIi|+-8Wng?Tb(#ё7ɕ >wstl[LK]xBMh/U# rqǠExAK-a?]BdEy$nb@K^~2:djX|@ZPYKNo&pAk+bIC8HS)H~D,=50=#ysRT,CL!F 9y=¢#e{5u9鐡W3 H4m&>?0 lUJ(b)Î\Ԇ=OVB@mn8Q/(" nWih2hVΜ&}L m#d E ?FB?Z u LdgI`6ޢ3T4L _M*E2Ox{?Ŵq5I?{#Uo(Ǯ,c'kQGSÅ>J&}Jc߬RlUl$dG־zrlEtd@$m)(]e~Aօ@M@ wSdqᐜ= ]b.(ta~E| u Q/s!)c9V6_ 0FmvuCyrKg;)&Z!-r)[F?cZnF8d2Ŷ͹w7YQ`๢QtI;o6b0rMӜĺfzLȔ^9 $c$@+5V2*QdvYǡQhc}8VvOwGHgB?d*]P)0Š'0KFgFxGQn'gz[aR(奃hK* ,Z[D=5DOqדٳgQp\x;\3 Tz6m#͒Ap;lOwi/-GpFz/[eNM1Cy w+eB&F?-:JOSKEA4j4T3O3 慊Ր wyWIM(z,]] wB^up?O^[i Us}b`VRʧNq*t1(5q+BK5F9 ?렏ǀ3|{ 3רed)-5gTG {!E6ʤI!^VUyzGWm9u+ZK"fZmHQCOBqnhvK]nzs5y5(%QD]6u$KJ|yףnt>]5 >{Ap kB7 Dy(2 ƀxu4`|$X\6R·w.HK$g^Gt©Ͽa;`+ᅼŴ.ՏC&ڌ'u7ck 2YQ-G2{RnͽC1$ʎ5%ӛ!PMi"pX1!'uyE2.9-NXL+=B%*p|h+{\hg3c nj~:I%;bXbdwھ1kQ%j-v4aDuo zLJiɭYM(Rbۜ _ξ~LG߄c2`|P]eJ@ )g؎bk>CO6 ;2;s,z7xEH21UWvrI9J'|ՊmA4dTrk~7|.2DpQ0SM,V"=&%諽p[I/D7~تAX=O[7_]13(k@X;~ ,}׆YC/8rIӴJo40GVw@w.bK^.Dn2l&Kq,?ʭHFJP N ɼ%zԏy߽X 7hrGAr^6Cti3XE^DPp+Zyyk06AÄY)q7=(w ,W~%7Wa`T>qF#^c}Me A^ @G%ޝθ` 1 g;#B,鋴O \,W$v[$bZeC.Q%cͯ=oݷ&VA?V0s^zQ9zS5e|QiU«F]+̝K'e<q .-u1q͇g h+K$iXp4[o |oIƿ)>~c^WOsK|" 5UW pH/UA\*&t\6s-1`yPBjLKeO9D.)uJ{"†[vŒ:VcoZai| p>Oj3S2Ky5y7 Q E}ڔ֋:W';ďy#[pp tL4tʕm Yb >p$CPZx?LuV]tgzO") q]];nn#rO)_v8%Ͼ_jW M*Τή3v[4FHtrR7gUx#y2o/J> &'5E_Ѱ[}t\J~QB1=ať&ebs$&IrvwuZPgUQf)KW`rPl1 P`*^$uNAᦺIY)X0 %^)E5ۤJ6 vL6e|CitB6 V*, #.؞?S O~VGLYZ51']#W0qhɭ=C&NvwTI<< q `3d;E rS^;騂A51ώ߳C*)EDi,ZYZǻ1:9eS)5">"qR2+HV5FŴl= lf?wJ_L tk]^NAi+Ӟ@1 +qXh(wmmSK­r7۾5LEC nz$kMb޾{c~Ix~Nwl%,>lTQɥ" }VzZ/sYW 䘭G=!FF-uk+FM۱}Sz)5<:Y9lJcPjB'%w N<<̊ӻ碔&oi'fp3SyEozᅿB?y2h1"YMuk~!uJ^n]rIz!rxwK9jW؏ߝtØwV;0(26MTЇ^aԖLwN?k@ 8<u2!\OD,?vЋbF.K ^71,]gG6fѽ E`à+jZB (a|WT]O^;L=ȉu;&C]TBXJGBL_G=+eU[4aa;L.,ye?˞"5odMvy,EF謈3ͩcɿTi;ڰ(snYx O@W"*,hCx̳;_nѓQ»ms]0NHY79kA@՚;u氉aF_k (T ylC~q _(B\W's;Xբz>fׄumƓ+‹\yQcnH)l>;!bnإl{g5[o77QKZ@I&9 `4pږw:TK@Hb3ܴjRtƍDWyq}? :Uplƫp3L *y5yo%iJwzV-oi:zLyGwz3T邃ջsFv1{>AF='8oú~}͈,N:&bcϙͲxVuj\yC(^͛@7 ,.WҪ(h=uwh)ì&|(_D{bߑXݑ_)6$ٗYucV'Dic!ߓnKecz/ b=93valWx7/VR4J&;{gtw!c$@SEeU;YGj+jM[oWs._Jܵz}4ӉE^i<97'APٍez [R6x]7xu#(>ڨ75pwZSWMyX9xea%n"42KMA8܈nC\>gś}aBw  $("Lc_y`EXd2zszRr&aU.C7xuJi[\;/XyT&2م!V1⦐4vdݰ|8 KdE7J\dpBe[|d9)f~B'moKTn}G+*X!<<`N}[./牝+lF {.BMH6pMulJSWd $rkhx7eWWrj ՟tljs{ɮy-Yף6P).D@úIN*o_a-Pf"Qy7dffxB\>Lf&& O8`[6 Nm U([ցQ$)rӋuYBk_5y5Rа}騩tZe|X[]TrxM v oy4j4f\!0Dx, +e"R0K ꥱ Z?7( l |?$CtߠE L=Y2%swCi~W9iI#WH SrZ pjceB!..-F閪F_($VSK5SᇠN5{1 :bB5rxǤejV&jжgi[eb[:!ٓGXe]dyX|k 0!rtuaC_)%#A?HI\Dô96iìBgZoϬ d9ʍ3Gn+OI>Y܄]G)Z_Χ$Ԅ&P9*m;\0B=Zܘv{ ul&sv*Fn0K2_P@{.JL[0!}&|%%&jl(nC|ڢ\2.y]Q @!G\*G6O =Աշ羱aM؎6XM.]+|\)(20"ZLrAҘk6p}d*mKmν ږyo5䣓\zZo"bl.d&q}.RS־&bl{UOh, d3b.,lndA] ui^⮩_YXS:|-8zyilr6Y ,41)`B4^:Mz|RL+[ylTPo1kmL!bdx ZV~l]/H0{[-VO!#yhS/D_yT\L