apache2-prefork-2.4.43-3.25.1 >  A a=p9|? Kt$a1_Iv^ޢD@.ٞ+Z#{p3!k$?LHu[wpFckH:#>G#v.nJ~[c4O_ֻiO™~Q%4,"s`EȁIS)&`b(m'YaY!pm{fT^ȸgvX B8Gc203 eRU4165d1cefbcd728167e31afb898d91a0ffbdd21aacc7f83c90cce1961e9eef103f5fe3163423fa2ce8a9d1405417c9ca23e1eb9ba=p9|lVvGK4Tƣ=7ڀw:ݲ>PKrX i''8-ntG.)"˛9NFuA))Wd?D0AO#S c2`vq(u86${m`ޕh50!gOҰ<0#i0RT뉝hК@t;LJK8c(|.EB=Ct^{pDW?Wd  Q48LPi  y ty  fy  Xy <y 5y Py4y!y#$ y%&@&([((8(9+:6>;@;F;G;yH=yI?yX@Y@ \@@y]B$y^J\bJcK8dKeKfKlKuKyvMwO(yxQ yyRzS0S@WNWXW\WbWCapache2-prefork2.4.433.25.1Apache 2 "prefork" MPM (Multi-Processing Module)"prefork" MPM (Multi-Processing Module) This MPM is basically the one that Apache 1.3.x used. It warrants the maximum stability because each server runs in its own process. If a process dies it will not affect other servers.aApache-2.0https://www.suse.com/Productivity/Networking/Web/Servershttp://httpd.apache.org/linuxaarch64 ( # it might happen that apache2 including # /usr/share/apache2/script-helpers is not installed # yet even if apache2- has Requires(post): apache2 # because of circular dependency between apache2 # and apache2-MPM if [ -f /usr/share/apache2/script-helpers ]; then . /usr/share/apache2/script-helpers find_mpm # when this is run in %post(apache2), it may happen # no MPM is installed so far if [ -n "$HTTPD_MPM" ]; then ln -sf $HTTPD_SBIN_BASE-$HTTPD_MPM $HTTPD_SBIN_BASE fi fi ) exit 0if [ "$1" = 1 ]; then if [ -x /usr/bin/systemctl ]; then MODULE= if [ -z "$MODULE" ]; then # restart all instances touch /var/run/httpd.restart.flag echo 'Requesting apache restart (all instances)' else running_units=$(systemctl list-units | grep 'apache2\(@.*\)\?.service' | sed 's:\(\.service\).*:\1:') for unit in $running_units; do instance_name=$(echo $unit | sed 's:apache2@\?\(.*\).service:\1:') if HTTPD_INSTANCE="$instance_name" a2enmod -q $MODULE; then # restart only specified instance, %{apache_restart_flag}@ # means _only_ apache2.service echo "$instance_name" > /var/run/httpd.restart.flag@$instance_name echo "Requesting apache restart ($instance_name instance)" fi done fi fi fi ( # it might happen that apache2 including # /usr/share/apache2/script-helpers is not installed # yet even if apache2- has Requires(post): apache2 # because of circular dependency between apache2 # and apache2-MPM if [ -f /usr/share/apache2/script-helpers ]; then . /usr/share/apache2/script-helpers find_mpm # when this is run in %post(apache2), it may happen # no MPM is installed so far if [ -n "$HTTPD_MPM" ]; then ln -sf $HTTPD_SBIN_BASE-$HTTPD_MPM $HTTPD_SBIN_BASE fi fi ) exit 0!  %%$$$$&&   " Z Aa. [Michael Kaufmann, Stefan Eissing] * ) mod_proxy_hcheck: Allow healthcheck expressions to use %{Content-Type}. PR64140. [Renier Velazco ] * ) mod_authz_groupfile: Drop AH01666 from loglevel "error" to "info". PR64172. * ) mod_usertrack: Add CookieSameSite, CookieHTTPOnly, and CookieSecure to allow customization of the usertrack cookie. PR64077. [Prashant Keshvani , Eric Covener] * ) mod_proxy_ajp: Add "secret" parameter to proxy workers to implement legacy AJP13 authentication. PR 53098. [Dmitry A. Bakshaev ] * ) mpm_event: avoid possible KeepAliveTimeout off by -100 ms. [Eric Covener, Yann Ylavic] * ) Add a config layout for OpenWRT. [Graham Leggett] * ) Add support for cross compiling to apxs. If apxs is being executed from somewhere other than its target location, add that prefix to includes and library directories. Without this, apxs would fail to find config_vars.mk and exit. [Graham Leggett] * ) mod_ssl: Disable client verification on ACME ALPN challenges. Fixes github issue mod_md#172 (https://github.com/icing/mod_md/issues/172). [Michael Kaufmann , Stefan Eissing] * ) mod_ssl: use OPENSSL_init_ssl() to initialise OpenSSL on versions 1.1+. [Graham Leggett] * ) mod_ssl: Support use of private keys and certificates from an OpenSSL ENGINE via PKCS#11 URIs in SSLCertificateFile/KeyFile. [Anderson Sasaki , Joe Orton] * ) mod_md: - Prefer MDContactEmail directive to ServerAdmin for registration. New directive thanks to Timothe Litt (@tlhackque). - protocol check for pre-configured "tls-alpn-01" challenge has been improved. It will now check all matching virtual hosts for protocol support. Thanks to @mkauf. - Corrected a check when OCSP stapling was configured for hosts where the responsible MDomain is not clear, by Michal Karm Babacek (@Karm). - Softening the restrictions where mod_md configuration directives may appear. This should allow for use in and sections. If all possible variations lead to the configuration you wanted in the first place, is another matter. [Michael Kaufmann , Timothe Litt (@tlhackque), Michal Karm Babacek (@Karm), Stefan Eissing (@icing)] * ) test: Added continuous testing with Travis CI. This tests various scenarios on Ubuntu with the full test suite. Architectures tested: amd64, s390x, ppc64le, arm64 The tests pass successfully. [Luca Toscano, Joe Orton, Mike Rumph, and others] * ) core: Be stricter in parsing of Transfer-Encoding headers. [ZeddYu , Eric Covener] * ) mod_ssl: negotiate the TLS protocol version per name based vhost configuration, when linked with OpenSSL-1.1.1 or later. The base vhost's SSLProtocol (from the first vhost declared on the IP:port) is now only relevant if no SSLProtocol is declared for the vhost or globally, otherwise the vhost or global value apply. [Yann Ylavic] * ) mod_cgi, mod_cgid: Fix a memory leak in some error cases with large script output. PR 64096. [Joe Orton] * ) config: Speed up graceful restarts by using pre-hashed command table. PR 64066. [Giovanni Bechis , Jim Jagielski] * ) mod_systemd: New module providing integration with systemd. [Jan Kaluza] * ) mod_lua: Add r:headers_in_table, r:headers_out_table, r:err_headers_out_table, r:notes_table, r:subprocess_env_table as read-only native table alternatives that can be iterated over. [Eric Covener] * ) mod_http2: Fixed rare cases where a h2 worker could deadlock the main connection. [Yann Ylavic, Stefan Eissing] * ) mod_lua: Accept nil assignments to the exposed tables (r.subprocess_env, r.headers_out, etc) to remove the key from the table. PR63971. [Eric Covener] * ) mod_http2: Fixed interaction with mod_reqtimeout. A loaded mod_http2 was disabling the ssl handshake timeouts. Also, fixed a mistake of the last version that made `H2Direct` always `on`, regardless of configuration. Found and reported by and . [Stefan Eissing] * ) mod_http2: Multiple field length violations in the same request no longer cause several log entries to be written. [@mkauf] * ) mod_ssl: OCSP does not apply to proxy mode. PR 63679. [Lubos Uhliarik , Yann Ylavic] * ) mod_proxy_html, mod_xml2enc: Fix build issues with macOS due to r1864469 [Jim Jagielski] * ) mod_authn_socache: Increase the maximum length of strings that can be cached by the module from 100 to 256. PR 62149 [] * ) mod_proxy: Fix crash by resolving pool concurrency problems. PR 63503 [Ruediger Pluem, Eric Covener] * ) core: On Windows, fix a start-up crash if is used with a path that is not valid (For example, testing for a file on a flash drive that is not mounted) [Christophe Jaillet] * ) mod_deflate, mod_brotli: honor "Accept-Encoding: foo;q=0" as per RFC 7231; which means 'foo' is "not acceptable". PR 58158 [Chistophe Jaillet] * ) mod_md v2.2.3: - Configuring MDCAChallenges replaces any previous existing challenge configuration. It had been additive before which was not the intended behaviour. [@mkauf] - Fixing order of ACME challenges used when nothing else configured. Code now behaves as documented for `MDCAChallenges`. Fixes #156. Thanks again to @mkauf for finding this. - Fixing a potential, low memory null pointer dereference [thanks to @uhliarik]. - Fixing an incompatibility with a change in libcurl v7.66.0 that added unwanted "transfer-encoding" to POST requests. This failed in directy communication with Let's Encrypt boulder server. Thanks to @mkauf for finding and fixing. [Stefan Eissing] * ) mod_md: Adding the several new features. The module offers an implementation of OCSP Stapling that can replace fully or for a limited set of domains the existing one from mod_ssl. OCSP handling is part of mod_md's monitoring and message notifications. If can be used for sites that do not have ACME certificates. The url for a CTLog Monitor can be configured. It is used in the server-status to link to the external status page of a certicate. The MDMessageCmd is called with argument "installed" when a new certificate has been activated on server restart/reload. This allows for processing of the new certificate, for example to applications that require it in different locations or formats. [Stefan Eissing] * ) mod_proxy_balancer: Fix case-sensitive referer check related to CSRF/XSS protection. PR 63688. [Armin Abfalterer ] - deleted patches - apache2-load-private-keys-from-pkcs11.patch (upstreamed) - httpd-2.4.3-mod_systemd.patch (upstreamed)- use r1874196 [SLE-7472] [bsc#1164820c#6] - modified patches % apache2-load-private-keys-from-pkcs11.patch (upstream 2.4.x port) - deleted patches - apache2-load-certificates-from-pkcs11.patch (merged to above)- require just libbrotli-devel- build mod_proxy_http2 extension- fix build for older distributions- define DEFAULT_LISTENBACKLOG=APR_INT32_MAX. We want apache to honour net.core.somaxconn sysctl as the mandatory limit. the old value of 511 was never used as until v5.4-rc6 it was clamped to 128, in current kernels the default limit is 4096. Cannot use the apr_socket_listen(.., -1) idiom because the function expects a positive integer argument.- apache2-devel now provides httpd-devel [bsc#1160100]- add openssl call to DEFAULT_SUSE comment [bsc#1159480] - modified sources % apache2-ssl-global.conf- use %license [bsc#1156171]- load private keys and certificates from pkcs11 token [SLE-7653] - added patches load certificates from openssl engine + apache2-load-certificates-from-pkcs11.patch load private keys from openssl engine + apache2-load-private-keys-from-pkcs11.patch- Add custom log files to logrotate according to apache2-vhost.template- Remove redundant metadata from summary.- version update to 2.4.41 with security fixes: * low: Limited cross-site scripting in mod_proxy error page (CVE-2019-10092) * low: mod_rewrite potential open redirect (CVE-2019-10098) * moderate: mod_http2, read-after-free in h2 connection shutdown (CVE-2019-10082) * moderate: mod_http2, memory corruption on early pushes (CVE-2019-10081) * moderate: mod_http2, DoS attack by exhausting h2 workers. (CVE-2019-9517) * moderate: mod_remoteip: Stack buffer overflow and NULL pointer dereference (CVE-2019-10097)- fix typo - modified sources % apache2-README-instances.txt- revive apache-22-24-upgrade [bsc#1134294] (internal) - added sources + apache-22-24-upgrade- version update to 2.4.39 * mod_proxy/ssl: Cleanup per-request SSL configuration anytime a backend connection is recycled/reused to avoid a possible crash with some SSLProxy configurations in or context. PR 63256. [Yann Ylavic] * mod_ssl: Correctly restore SSL verify state after TLSv1.3 PHA failure. [Michael Kaufmann ] * mod_log_config: Support %{c}h for conn-hostname, %h for useragent_host PR 55348 * mod_socache_redis: Support for Redis as socache storage provider. * core: new configuration option 'MergeSlashes on|off' that controls handling of multiple, consecutive slash ('/') characters in the path component of the request URL. [Eric Covener] * mod_http2: when SSL renegotiation is inhibited and a 403 ErrorDocument is in play, the proper HTTP/2 stream reset did not trigger with H2_ERR_HTTP_1_1_REQUIRED. Fixed. [Michael Kaufmann] * mod_http2: new configuration directive: `H2Padding numbits` to control padding of HTTP/2 payload frames. 'numbits' is a number from 0-8, controlling the range of padding bytes added to a frame. The actual number added is chosen randomly per frame. This applies to HEADERS, DATA and PUSH_PROMISE frames equally. The default continues to be 0, e.g. no padding. [Stefan Eissing] * mod_http2: ripping out all the h2_req_engine internal features now that mod_proxy_http2 has no more need for it. Optional functions are still declared but no longer implemented. While previous mod_proxy_http2 will work with this, it is recommeneded to run the matching versions of both modules. [Stefan Eissing] * mod_proxy_http2: changed mod_proxy_http2 implementation and fixed several bugs which resolve PR63170. The proxy module does now a single h2 request on the (reused) connection and returns. [Stefan Eissing] * mod_http2/mod_proxy_http2: proxy_http2 checks correct master connection aborted status to trigger immediate shutdown of backend connections. This is now always signalled by mod_http2 when the the session is being released. proxy_http2 now only sends a PING frame to the backend when there is not already one in flight. [Stefan Eissing] * mod_proxy_http2: fixed an issue where a proxy_http2 handler entered an infinite loop when encountering certain errors on the backend connection. See . [Stefan Eissing] * mod_http2: Configuration directives H2Push and H2Upgrade can now be specified per Location/Directory, e.g. disabling PUSH for a specific set of resources. [Stefan Eissing] * mod_http2: HEAD requests to some module such as mod_cgid caused the stream to terminate improperly and cause a HTTP/2 PROTOCOL_ERROR. Fixes . [Michael Kaufmann] * http: Fix possible empty response with mod_ratelimit for HEAD requests. PR 63192. [Yann Ylavic] * mod_cache_socache: Avoid reallocations and be safe with outgoing data lifetime. [Yann Ylavic] * MPMs unix: bind the bucket number of each child to its slot number, for a more efficient per bucket maintenance. [Yann Ylavic] * mod_auth_digest: Fix a race condition. Authentication with valid credentials could be refused in case of concurrent accesses from different users. PR 63124. [Simon Kappel ] * mod_http2: enable re-use of slave connections again. Fixed slave connection keepalives counter. [Stefan Eissing] * mod_reqtimeout: Allow to configure (TLS-)handshake timeouts. PR 61310. [Yann Ylavic] * mod_proxy_wstunnel: Fix websocket proxy over UDS. PR 62932 * mod_ssl: Don't unset FIPS mode on restart unless it's forced by configuration (SSLFIPS on) and not active by default in OpenSSL. PR 63136. [Yann Ylavic] - deleted patches - apache2-mod_http2-issue-167.patch (upstreamed)- Reduce scriptlets' hard dependency on systemd.- added patches fix https://github.com/icing/mod_h2/issues/167 [bsc#1125965] + apache2-mod_http2-issue-167.patch- Replace old $RPM_* shell vars. Avoid old tar syntax. - Tag scriptlets as explicitly requiring bash.- updated to 2.4.38 * mod_ssl: Clear retry flag before aborting client-initiated renegotiation. PR 63052 [Joe Orton] * mod_negotiation: Treat LanguagePriority as case-insensitive to match AddLanguage behavior and HTTP specification. PR 39730 [Christophe Jaillet] * mod_md: incorrect behaviour when synchronizing ongoing ACME challenges have been fixed. [Michael Kaufmann, Stefan Eissing] * mod_setenvif: We can have expressions that become true if a regex pattern in the expression does NOT match. In this case val is NULL and we should just set the value for the environment variable like in the pattern case. [Ruediger Pluem] * mod_session: Always decode session attributes early. [Hank Ibell] * core: Incorrect values for environment variables are substituted when multiple environment variables are specified in a directive. [Hank Ibell] * mod_rewrite: Only create the global mutex used by "RewriteMap prg:" when this type of map is present in the configuration. PR62311. [Hank Ibell ] * mod_dav: Fix invalid Location header when a resource is created by passing an absolute URI on the request line [Jim Jagielski] * mod_session_cookie: avoid duplicate Set-Cookie header in the response. [Emmanuel Dreyfus , Luca Toscano] * mod_ssl: clear *SSL errors before loading certificates and checking afterwards. Otherwise errors are reported when other SSL using modules are in play. Fixes PR 62880. [Michael Kaufmann] * mod_ssl: Fix the error code returned in an error path of 'ssl_io_filter_handshake()'. This messes-up error handling performed in 'ssl_io_filter_error()' [Yann Ylavic] * mod_ssl: Fix $HTTPS definition for "SSLEngine optional" case, and fix authz provider so "Require ssl" works correctly in HTTP/2. PR 61519, 62654. [Joe Orton, Stefan Eissing] * mod_proxy: If ProxyPassReverse is used for reverse mapping of relative redirects, subsequent ProxyPassReverse statements, whether they are relative or absolute, may fail. PR 60408. [Peter Haworth ] * mod_lua: Now marked as a stable module [https://s.apache.org/Xnh1]- SSLProtocol use TLSv1.2 or higher- do not create sysconfig.d when already exists [bsc#1121086]- use secure http sites by default in configs - Switch to DEFAULT_SUSE Cipher suite- the "event" MPM is fully supported since 2.4 - configure an OCSP stapling cache by default (still requires enabling SSLUseStapling in vhost)- updated to 2.4.37 * mod_ssl: Fix HTTP/2 failures when using OpenSSL 1.1.1. [Rainer Jung] * mod_ssl: Fix crash during SSL renegotiation with OptRenegotiate set, when client certificates are available from the original handshake but were originally not verified and should get verified now. This is a regression in 2.4.36 (unreleased). [Ruediger Pluem] * mod_ssl: Correctly merge configurations that have client certificates set by SSLProxyMachineCertificate{File|Path}. [Ruediger Pluem] - updated to 2.4.36 * mod_brotli, mod_deflate: Restore the separate handling of 304 Not Modified responses. Regression introduced in 2.4.35. * mod_proxy_scgi, mod_proxy_uwsgi: improve error handling when sending the body of the response. [Jim Jagielski] * mod_http2: adding defensive code for stream EOS handling, in case the request handler missed to signal it the normal way (eos buckets). Addresses github issues https://github.com/icing/mod_h2/issues/164, https://github.com/icing/mod_h2/issues/167 and https://github.com/icing/mod_h2/issues/170. [Stefan Eissing] * ab: Add client certificate support. [Graham Leggett] * ab: Disable printing temp key for OpenSSL before version 1.0.2. SSL_get_server_tmp_key is not available there. [Rainer Jung] * mod_ssl: Fix a regression that the configuration settings for verify mode and verify depth were taken from the frontend connection in case of connections by the proxy to the backend. PR 62769. [Ruediger Pluem] * MPMs: Initialize all runtime/asynchronous objects on a dedicated pool and before signals handling to avoid lifetime issues on restart or shutdown. PR 62658. [Yann Ylavic] * mod_ssl: Add support for OpenSSL 1.1.1 and TLSv1.3. TLSv1.3 has behavioural changes compared to v1.2 and earlier; client and configuration changes should be expected. SSLCipherSuite is enhanced for TLSv1.3 ciphers, but applies at vhost level only. [Stefan Eissing, Yann Ylavic, Ruediger Pluem, Joe Orton] * mod_auth_basic: Be less tolerant when parsing the credencial. Only spaces should be accepted after the authorization scheme. \t are also tolerated. [Christophe Jaillet] * mod_proxy_hcheck: Fix issues with interval determination. PR 62318 [Jim Jagielski] * mod_proxy_hcheck: Fix issues with TCP health checks. PR 61499 [Dominik Stillhard ] * mod_proxy_hcheck: take balancer's SSLProxy* directives into account. [Jim Jagielski] * mod_status, mod_echo: Fix the display of client addresses. They were truncated to 31 characters which is not enough for IPv6 addresses. This is done by deprecating the use of the 'client' field and using the new 'client64' field in worker_score. PR 54848 [Bernhard Schmidt , Jim Jagielski]- consider also patterns in APACHE_CONF_INCLUDE_DIRS as documentation says (patch Juergen Gleiss)- relink /usr/sbin/httpd after apache2-MPM uninstall [bsc#1107930c#1] - simplify find_mpm function from script-helpers - /usr/sbin/httpd is now created depending on preference hardcoded in find_mpm (script-helpers), not depending on alphabetical order of MPMs - simplify spec file a bit- updated to 2.4.35: * http: Enforce consistently no response body with both 204 and 304 statuses. * mod_status: Cumulate CPU time of exited child processes in the "cu" and "cs" values. Add CPU time of the parent process to the "c" and "s" values. * mod_proxy: Improve the balancer member data shown in mod_status when "ProxyStatus" is "On": add "busy" count and show byte counts in auto mode always in units of kilobytes. * mod_status: Add cumulated response duration time in milliseconds. * mod_status: Complete the data shown for async MPMs in "auto" mode. Added number of processes, number of stopping processes and number of busy and idle workers. * mod_ratelimit: Don't interfere with "chunked" encoding, fixing regression introduced in 2.4.34. PR 62568. * mod_proxy: Remove load order and link dependency between mod_lbmethod_* modules and mod_proxy. PR 62557. * Allow the argument to , , , , and to be quoted. This is primarily for the benefit of . * mod_watchdog: Correct some log messages. * mod_md: When the last domain name from an MD is moved to another one, that now empty MD gets moved to the store archive. PR 62572. * mod_ssl: Fix merging of SSLOCSPOverrideResponder. * mod_proxy_balancer: Restore compatibility with APR 1.4.- updated to 2.4.34: * ) Introduce zh-cn and zh-tw (simplified and traditional Chinese) error document translations. [CodeingBoy, popcorner] * ) event: avoid possible race conditions with modules on the child pool. [Stefan Fritsch] * ) mod_proxy: Fix a corner case where the ProxyPassReverseCookieDomain or ProxyPassReverseCookiePath directive could fail to update correctly 'domain=' or 'path=' in the 'Set-Cookie' header. PR 61560. [Christophe Jaillet] * ) mod_ratelimit: fix behavior when proxing content. PR 62362. [Luca Toscano, Yann Ylavic] * ) core: Re-allow '_' (underscore) in hostnames. [Eric Covener] * ) mod_authz_core: If several parameters are used in a AuthzProviderAlias directive, if these parameters are not enclosed in quotation mark, only the first one is handled. The other ones are silently ignored. Add a message to warn about such a spurious configuration. PR 62469 [Hank Ibell , Christophe Jaillet] * ) mod_md: improvements and bugfixes - MDNotifyCmd now takes additional parameter that are passed on to the called command. - ACME challenges have better checks for interference with other modules - ACME challenges are only handled for domains managed by the module, allowing other ACME clients to operate for other domains in the server. - better libressl integration * ) mod_proxy_wstunnel: Add default schema ports for 'ws' and 'wss'. PR 62480. [Lubos Uhliarik } * ) logging: Some early logging-related startup messages could be lost when using syslog for the global ErrorLog. [Eric Covener] * ) mod_cache: Handle case of an invalid Expires header value RFC compliant like the case of an Expires time in the past: allow to overwrite the non-caching decision using CacheStoreExpired and respect Cache-Control "max-age" and "s-maxage". [Rainer Jung] * ) mod_xml2enc: Fix forwarding of error metadata/responses. PR 62180. [Micha Lenk , Yann Ylavic] * ) mod_proxy_http: Fix response header thrown away after the previous one was considered too large and truncated. PR 62196. [Yann Ylavic] * ) core: Add and handle AP_GETLINE_NOSPC_EOL flag for ap_getline() family of functions to consume the end of line when the buffer is exhausted. PR 62198. [Yann Ylavic] * ) mod_proxy_http: Add new worker parameter 'responsefieldsize' to allow maximum HTTP response header size to be increased past 8192 bytes. PR 62199. [Hank Ibell ] * ) mod_ssl: Extend SSLOCSPEnable with mode 'leaf' that only checks the leaf of a certificate chain. PR62112. [Ricardo Martin Camarero ] * ) http: Fix small memory leak per request when handling persistent connections. [Ruediger Pluem, Joe Orton] * ) mod_proxy_html: Fix variable interpolation and memory allocation failure in ProxyHTMLURLMap. [Ewald Dieterich ] * ) mod_remoteip: Fix RemoteIP{Trusted,Internal}ProxyList loading broken by 2.4.30. PR 62220. [Chritophe Jaillet, Yann Ylavic] * ) mod_remoteip: When overriding the useragent address from X-Forwarded-For, zero out what had been initialized as the connection-level port. PR59931. [Hank Ibell ] * ) core: In ONE_PROCESS/debug mode, cleanup everything when exiting. [Yann Ylavic] * ) mod_proxy_balancer: Add hot spare member type and corresponding flag (R). Hot spare members are used as drop-in replacements for unusable workers in the same load balancer set. This differs from hot standbys which are only used when all workers in a set are unusable. PR 61140. [Jim Riggs] * ) suexec: Add --enable-suexec-capabilites support on Linux, to use setuid/setgid capability bits rather than a setuid root binary. [Joe Orton] * ) suexec: Add support for logging to syslog as an alternative to logging to a file; use --without-suexec-logfile --with-suexec-syslog. [Joe Orton] * ) mod_ssl: Restore 2.4.29 behaviour in SSL vhost merging/enabling which broke some rare but previously-working configs. [Joe Orton] * ) core, log: improve sanity checks for the ErrorLog's syslog config, and explicitly allow only lowercase 'syslog' settings. PR 62102 [Luca Toscano, Jim Riggs, Christophe Jaillet] * ) mod_http2: accurate reporting of h2 data input/output per request via mod_logio. Fixes an issue where output sizes where counted n-times on reused slave connections. [Stefan Eissing] See github issue: https://github.com/icing/mod_h2/issues/158 * ) mod_http2: Fix unnecessary timeout waits in case streams are aborted. [Stefan Eissing] * ) mod_http2: restoring the v1.10.16 keepalive timeout behaviour of mod_http2. [Stefan Eissing] * ) mod_proxy: Do not restrict the maximum pool size for backend connections any longer by the maximum number of threads per process and use a better default if mod_http2 is loaded. [Yann Ylavic, Ruediger Pluem, Stefan Eissing, Gregg Smith] * ) mod_slotmem_shm: Add generation number to shm filename to fix races with graceful restarts. PRs 62044 and 62308. [Jim Jagielski, Yann Ylavic] * ) core: Preserve the original HTTP request method in the '%] * ) mod_remoteip: make proxy-protocol work on slave connections, e.g. in HTTP/2 requests. [Stefan Eissing] See also https://github.com/roadrunner2/mod-proxy-protocol/issues/6 * ) mod_ssl: Fix merging of proxy SSL context outside sections, regression introduced in 2.4.30. PR 62232. [Rainer Jung, Yann Ylavic] * ) mod_md: Fix compilation with OpenSSL before version 1.0.2. [Rainer Jung] * ) mod_dumpio: do nothing below log level TRACE7. [Yann Ylavic] * ) mod_remoteip: Restore compatibility with APR 1.4 (apr_sockaddr_is_wildcard). [Eric Covener] * ) core: On ECBDIC platforms, some errors related to oversized headers may be misreported or be logged as ASCII escapes. PR 62200 [Hank Ibell ] * ) mod_ssl: Fix cmake-based build. PR 62266. [Rainer Jung] * ) core: Add , and conditional section containers. [Eric Covener, Joe Orton] * %check: do not load all modules, just use default loadmodule.conf; some modules require to load another ones in advance * %install: parallel install is broken- Updated description for SSLProtocol option. [bsc#1086854]- Updated description (PCI DSS) for SSLProtocol option. [bsc#1086854]- SSLProtocol TLSv1.2 [bsc#1086854]- updated to 2.4.33: * ) core: Fix request timeout logging and possible crash for error_log hooks. [Yann Ylavic] * ) mod_slomem_shm: Fix failure to create balancers's slotmems in Windows MPM, where children processes need to attach them instead since they are owned by the parent process already. [Yann Ylavic] * ) ab: try all destination socket addresses returned by apr_sockaddr_info_get instead of failing on first one when not available. Needed for instance if localhost resolves to both ::1 and 127.0.0.1 e.g. if both are in /etc/hosts. [Jan Kaluza] * ) ab: Use only one connection to determine working destination socket address. [Jan Kaluza] * ) ab: LibreSSL doesn't have or require Windows applink.c. [Gregg L. Smith] * ) htpasswd/htdigest: Disable support for bcrypt on EBCDIC platforms. apr-util's bcrypt implementation doesn't tolerate EBCDIC. [Eric Covener] * ) htpasswd/htdbm: report the right limit when get_password() overflows. [Yann Ylavic] * ) htpasswd: Don't fail in -v mode if password file is unwritable. PR 61631. [Joe Orton] * ) htpasswd: don't point to (unused) stack memory on output to make static analysers happy. PR 60634. [Yann Ylavic, reported by shqking and Zhenwei Zou] * ) mod_access_compat: Fail if a comment is found in an Allow or Deny directive. [Jan Kaluza] * ) mod_authz_host: Ignore comments after "Require host", logging a warning, or logging an error if the line is otherwise empty. [Jan Kaluza, Joe Orton] * ) rotatelogs: Fix expansion of %Z in localtime (-l) mode, and fix Y2K38 bug. [Joe Orton] * ) mod_ssl: Support SSL DN raw variable extraction without conversion to UTF-8, using _RAW suffix on variable names. [Joe Orton] * ) ab: Fix https:// connection failures (regression in 2.4.30); fix crash generating CSV output for large -n. [Joe Orton, Jan Kaluza] * ) mod_proxy_fcgi: Add the support for mod_proxy's flushpackets and flushwait parameters. [Luca Toscano, Ruediger Pluem, Yann Ylavic] * ) mod_ldap: Avoid possible crashes, hangs, and busy loops due to improper merging of the cache lock in vhost config. PR 43164 [Eric Covener] * ) mpm_event: Do lingering close in worker(s). [Yann Ylavic] * ) mpm_queue: Put fdqueue code in common for MPMs event and worker. [Yann Ylavic] * ) mod_session: Strip Session header when SessionEnv is on. [Yann Ylavic] * ) mod_cache_socache: Fix caching of empty headers up to carriage return. [Yann Ylavic] * ) core: For consistency, ensure that read lines are NUL terminated on any error, not only on buffer full. [Yann Ylavic] * ) mod_authnz_ldap: Fix language long names detection as short name. [Yann Ylavic] * ) mod_proxy: Worker schemes and hostnames which are too large are no longer fatal errors; it is logged and the truncated values are stored. [Jim Jagielski] * ) regex: Allow to configure global/default options for regexes, like caseless matching or extended format. [Yann Ylavic] * ) mod_auth_digest: Actually use the secret when generating nonces. This change may cause problems if used with round robin load balancers. PR 54637 [Stefan Fritsch] * ) mod_proxy: Allow setting options to globally defined balancer from ProxyPass used in VirtualHost. Balancers are now merged using the new merge_balancers method which merges the balancers options. [Jan Kaluza] * ) logresolve: Fix incorrect behavior or segfault if -c flag is used Fixes: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=823259 [Stefan Fritsch] * ) mod_remoteip: Add support for PROXY protocol (code donated by Cloudzilla). Add ability for PROXY protocol processing to be optional to donated code. See also: http://www.haproxy.org/download/1.5/doc/proxy-protocol.txt [Cloudzilla/roadrunner2@GitHub, Jim Jagielski, Daniel Ruggeri] * ) mod_proxy, mod_ssl: Handle SSLProxy* directives in sections, allowing per backend TLS configuration. [Yann Ylavic] * ) mod_proxy_uwsgi: Add in UWSGI proxy (sub)module. [Roberto De Ioris, Jim Jagielski] * ) mod_proxy_balancer,mod_slotmem_shm: Rework SHM reuse/deletion to not depend on the number of restarts (non-Unix systems) and preserve shared names as much as possible on configuration changes for SHMs and persisted files. PR 62044. [Yann Ylavic, Jim Jagielski] * ) mod_http2: obsolete code removed, no more events on beam pool destruction, discourage content encoders on http2-status response (where they do not work). [Stefan Eissing] * ) mpm_event: Let the listener thread do its maintenance job on resources shortage. PR 61979. [Yann Ylavic] * ) mpm_event: Wakeup the listener to re-enable listening sockets. [Yann Ylavic] * ) mod_ssl: The SSLCompression directive will now give an error if used with an OpenSSL build which does not support any compression methods. [Joe Orton] * ) mpm_event,worker: Mask signals for threads created by modules in child init, so that they don't receive (implicitely) the ones meant for the MPM. PR 62009. [Armin Abfalterer , Yann Ylavic] * ) mod_md: new experimental, module for managing domains across virtual hosts, implementing the Let's Encrypt ACMEv1 protocol to signup and renew certificates. Please read the modules documentation for further instructions on how to use it. [Stefan Eissing] * ) mod_proxy_html: skip documents shorter than 4 bytes PR 56286 [Micha Lenk ] * ) core, mpm_event: Avoid a small memory leak of the scoreboard handle, for the lifetime of the connection, each time it is processed by MPM event. [Yann Ylavic] * ) mpm_event: Update scoreboard status for KeepAlive state. [Yann Ylavic] * ) mod_ldap: Fix a case where a full LDAP cache would continually fail to purge old entries and log AH01323. PR61891. [Hendrik Harms ] * ) mpm_event: close connections not reported as handled by any module to avoid losing track of them and leaking scoreboard entries. PR 61551. [Yann Ylavic] * ) core: A signal received while stopping could have crashed the main process. PR 61558. [Yann Ylavic] * ) mod_ssl: support for mod_md added. [Stefan Eissing] * ) mod_proxy_html: process parsed comments immediately. Fixes bug (seen in the wild when used with IBM's HTTPD bundle) where parsed comments may be lost. [Nick Kew] * ) mod_proxy_html: introduce doctype for HTML 5 [Nick Kew] * ) mod_proxy_html: fix typo-bug processing "strict" vs "transitional" HTML/XHTML. PR 56457 [Nick Kew] * ) mpm_event: avoid a very unlikely race condition between the listener and the workers when the latter fails to add a connection to the pollset. [Yann Ylavic] * ) core: silently ignore a not existent file path when IncludeOptional is used. PR 57585. [Alberto Murillo Silva , Luca Toscano] * ) mod_macro: fix usability of globally defined macros in .htaccess files. PR 57525. [Jose Kahan , Yann Ylavic] * ) mod_rewrite, core: add the Vary header when a condition evaluates to true and the related RewriteRule is used in a Directory context (triggering an internal redirect). [Luca Toscano] * ) ab: Make the TLS layer aware that the underlying socket is nonblocking, and use/handle POLLOUT where needed to avoid busy IOs and recover write errors when appropriate. [Yann Ylavic] * ) ab: Keep reading nonblocking to exhaust TCP or SSL buffers when previous read was incomplete (the SSL case can cause the next poll() to timeout since data are buffered already). PR 61301 [Luca Toscano, Yann Ylavic] * ) mod_http2: avoid unnecessary data retrieval for a trace log. Allow certain information retrievals on null bucket beams where it makes sense. [Stefan Eissing]- Replace SuSEFirewall2 by firewalld II (fate#323460) [bsc#1083492]- build mod_http2 also for 42.3- remove NameVirtualHost from documentation [bsc#1078557]- for older distros, still use SuSEFirewall2 [bsc#1071548c#7]- Replace SuSEFirewall2 by firewalld (fate#323460)- build brotli module- Do not requires w3m, only recommends it.- do not build with nghttp2 for SLE-12-SP3- which was split after SLE11- Add which and w3m as dependencies. poo#28406- Replace references to /var/adm/fillup-templates with new %_fillupdir macro (boo#1069468)- APACHE_MODULES now contains authn_core in default configuration [bsc#1066661]- updated to 2.4.29: * ) mod_unique_id: Use output of the PRNG rather than IP address and pid, avoiding sleep() call and possible DNS issues at startup, plus improving randomness for IPv6-only hosts. [Jan Kaluza] * ) mod_rewrite, core: Avoid the 'Vary: Host' response header when HTTP_HOST is used in a condition that evaluates to true. PR 58231 [Luca Toscano] * ) mod_http2: v0.10.12, removed optimization for mutex handling in bucket beams that could lead to assertion failure in edge cases. [Stefan Eissing] * ) mod_proxy: Fix regression for non decimal loadfactor parameter introduced in 2.4.28. [Jim Jagielski] * ) mod_authz_dbd: fix a segmentation fault if AuthzDBDQuery is not set. PR 61546. [Lubos Uhliarik ] * ) mod_rewrite: Add support for starting External Rewriting Programs as non-root user on UNIX systems by specifying username and group name as third argument of RewriteMap directive. [Jan Kaluza] * ) core: Rewrite the Content-Length filter to avoid excessive memory consumption. Chunked responses will be generated in more cases than in previous releases. PR 61222. [Joe Orton, Ruediger Pluem] * ) mod_ssl: Fix SessionTicket callback return value, which does seem to matter with OpenSSL 1.1. [Yann Ylavic]- gensslcert: * set also SAN [bsc#1045159] * drop -C argument, it was not mapped to CN actually * consider also case when hostname does return empty string or does not exist [bsc#1057406] * do not consider environment ROOT variable- updated to 2.4.28: * ) SECURITY: CVE-2017-9798 (cve.mitre.org) Corrupted or freed memory access. must now be used in the main configuration file (httpd.conf) to register HTTP methods before the .htaccess files. [Yann Ylavic] * ) event: Avoid possible blocking in the listener thread when shutting down connections. PR 60956. [Yann Ylavic] * ) mod_speling: Don't embed referer data in a link in error page. PR 38923 [Nick Kew] * ) htdigest: prevent a buffer overflow when a string exceeds the allowed max length in a password file. [Luca Toscano, Hanno Böck ] * ) mod_proxy: loadfactor parameter can now be a decimal number (eg: 1.25). [Jim Jagielski] * ) mod_proxy_wstunnel: Allow upgrade to any protocol dynamically. PR 61142. * ) mod_watchdog/mod_proxy_hcheck: Time intervals can now be spefified down to the millisecond. Supports 'mi' (minute), 'ms' (millisecond), 's' (second) and 'hr' (hour!) time suffixes. [Jim Jagielski] * ) mod_http2: Fix for stalling when more than 32KB are written to a suspended stream. [Stefan Eissing] * ) build: allow configuration without APR sources. [Jacob Champion] * ) mod_ssl, ab: Fix compatibility with LibreSSL. PR 61184. [Bernard Spil , Michael Schlenker , Yann Ylavic] * ) core/log: Support use of optional "tag" in syslog entries. PR 60525. [Ben Rubson , Jim Jagielski] * ) mod_proxy: Fix ProxyAddHeaders merging. [Joe Orton] * ) core: Disallow multiple Listen on the same IP:port when listener buckets are configured (ListenCoresBucketsRatio > 0), consistently with the single bucket case (default), thus avoiding the leak of the corresponding socket descriptors on graceful restart. [Yann Ylavic] * ) event: Avoid listener periodic wake ups by using the pollset wake-ability when available. PR 57399. [Yann Ylavic, Luca Toscano] * ) mod_proxy_wstunnel: Fix detection of unresponded request which could have led to spurious HTTP 502 error messages sent on upgrade connections. PR 61283. [Yann Ylavic]- suexec binary moved to main package [bsc#1054741]- do not call and do not ship apache-22-24-upgrade [bsc#1042037]- make the package runable on non systemd systems + deprecated-scripts-arch.patch- updated to 2.4.27: * ) COMPATIBILITY: mod_lua: Remove the undocumented exported 'apr_table' global variable when using Lua 5.2 or later. This was exported as a side effect from luaL_register, which is no longer supported as of Lua 5.2 which deprecates pollution of the global namespace. [Rainer Jung] * ) COMPATIBILITY: mod_http2: Disable and give warning when using Prefork. The server will continue to run, but HTTP/2 will no longer be negotiated. [Stefan Eissing] * ) COMPATIBILITY: mod_proxy_fcgi: Revert to 2.4.20 FCGI behavior for the default ProxyFCGIBackendType, fixing a regression with PHP-FPM. PR 61202. [Jacob Champion, Jim Jagielski] * ) mod_lua: Improve compatibility with Lua 5.1, 5.2 and 5.3. PR58188, PR60831, PR61245. [Rainer Jung] * ) mod_http2: Simplify ready queue, less memory and better performance. Update mod_http2 version to 1.10.7. [Stefan Eissing] * ) Allow single-char field names inadvertantly disallowed in 2.4.25. PR 61220. [Yann Ylavic] * ) htpasswd / htdigest: Do not apply the strict permissions of the temporary passwd file to a possibly existing passwd file. PR 61240. [Ruediger Pluem] * ) core: Avoid duplicate HEAD in Allow header. This is a regression in 2.4.24 (unreleased), 2.4.25 and 2.4.26. PR 61207. [Christophe Jaillet] - drop upstreamed patch: * httpd-2.4.12-lua-5.2.patch (see upstream's PR#58188 for details)- Adjust dependencies for rename apr/apr-util packages- remove /usr/bin/http2 symlink only during apache2 package uninstall, not upgrade [bsc#1041830]- updated to 2.4.26: This release of Apache is a security, feature, and bug fix release. For details, see http://httpd.apache.org/dev/dist/CHANGES_2.4.26 - refreshed patches: . httpd-2.4.12-lua-5.2.patch . httpd-2.4.x-fate317766-config-control-two-protocol-options.diff - removed patches (upstreamed) . httpd-cache-forward-http-proxy.patch . httpd-cache-revert-svn1773397.patch- server-tunning.conf: MaxClients was renamed to MaxRequestWorkers [bsc#1037731] - gensslcert: use hostname when fqdn is too long [bsc#1035829]- remove apache-doc and apache-example-pages obsoletes/provides- PreRequire user wwwrun and group www- start_apache2: include individual sysconfig.d files instead of sysconfig.d dir, include sysconfig.d/include.conf after httpd.conf is processed [bsc#1023616]- revert an attempt to fix PR 60458 + httpd-cache-revert-svn1773397.patch- fix caching of forward proxy + httpd-cache-forward-http-proxy.patch- Don't require insserv if we don't need it.- Added new HTTP2 option to sysconfig to ease enabling http2 - Added new protocols.conf which is included globally - Enable http2 also for Leap 42.2+ and SLE12_SP2+- update to 2.4.25: fixed several security issues (CVE-2016-8740, CVE-2016-5387, CVE-2016-2161, CVE-2016-0736, CVE-2016-8743), many fixes and improvements of mod_http2 and other modules; see CHANGES for full change log - verify tarball: added httpd*.bz2.asc, apache2.keyring and remove 60C5442D.key- fix build with new systemd + amended httpd-2.4.3-mod_systemd.patch- Replace mixed indentation with predominant style.- add NotifyAccess=all to service file [bsc#980663]- Remove the omc xml config. It is useless nowdays- readd the support of multiple entries in APACHE_ACCESS_LOG [bsc#991032]- add httpd-2.4.x-fate317766-config-control-two-protocol-options.diff Introduces directives to control two protocol options: * HttpContentLengthHeadZero - allow Content-Length of 0 to be returned on HEAD * HttpExpectStrict - allow admin to control whether we must see "100-continue" [bsc#894225], [fate#317766]- version 2.4.23 * Fixes CVE-2016-4979 [bsc#987365] * mod_proxy_hcheck was missing due to upstream bug. * mod_proxy_fdpass needs explicit configure line now. * Full list of changes: http://www-eu.apache.org/dist//httpd/CHANGES_2.4.23- Remove pkgconfig(libsystemd-daemon). Nowadays pkgconfig(libsystemd) is enough and replaces all libsystemd-* libs which are obsolete.- remove Alias= from [Install] of the template service [bsc#981541c#10]- remove unneded httpd-2.4.17-debug-crash.patch- start apache services after remote-fs [bsc#978543]- removed note about ulimits in sysconfig file [bsc#976711]- do not build mod_http2 for 13.2- Update to version 2.4.20 (2.4.19 was never released) * Drop httpd-2.4.18-missing-semicolon.patch now upstream - Big changelog available, see: http://www.apache.org/dist/httpd/CHANGES_2.4.20 for details.- enable authnz_fcgi module- fix build for SLE_11_SP4: + httpd-2.4.18-missing-semicolon.patch- Update to version 2.4.18 * drop 2.4.17-protocols.patch in upstream. - Change list too long to mention here see: http://www.apache.org/dist/httpd/CHANGES_2.4.18 for details.- systemd: Set TasksMax=infinity for current systemd releases. The default limit of 512 is too small and prevents the creation of new server processes. Apache has its own runtime/harcoded limits.- fix crash when for -X + httpd-2.4.17-debug-crash.patch- add a note: FollowSymLinks or SymLinksIfOwnerMatch is neccessary for RewriteRule in given dir [bnc#955701]- restart apache once after the rpm or zypper transaction [bnc#893659] - drop some old compat code from %post- 2.4.17-protocols.patch from upstream http2 module: * master conn_rec* addition to conn_rec * improved ALPN and Upgrade handling * allowing requests for servers whose TLS configuration is compatible to the SNI server ones * disabling TLS renegotiation for slave connections- LogLevel directive into correct config file, thanks Michael Calmer for the fix [bsc#953329]- do not build mod_http2 for older distros than 13.2 for now (nghttp2 does not build there)- Include directives really into /etc/apache2/sysconfig.d/include.conf, fix from Erik Wegner [bsc#951901]- gensslcert: CN now defaults to `hostname -f` [bnc#949766] (internal), fix help [bnc#949771] (internal)- Update to 2.4.17 - Enable mod_http2/ BuildRequire nghttp2 - MPMs: Support SO_REUSEPORT to create multiple duplicated listener records for scalability - mod_ssl: Support compilation against libssl built with OPENSSL_NO_SSL3 - For more changes see: http://www.apache.org/dist/httpd/CHANGES_2.4.17- start_apache2: reintroduce sysconfig.d, include it on command line (not in httpd.conf) instead of individual directives [bnc#949434] (internal), [bnc#941331]- Fixup libdir in installed files- fix Logjam vulnerability: change SSLCipherSuite cipherstring to disable export cipher suites and deploy Ephemeral Elliptic-Curve Diffie-Hellman (ECDHE) ciphers. Adjust 'gensslcert' script to generate a strong and unique Diffie Hellman Group and append it to the server certificate file [bnc#931723], [CVE-2015-4000]- add reference upstream bug#58188 along httpd-2.4.12-lua-5.2.patch- update to 2.4.16 * changes http://www.apache.org/dist/httpd/CHANGES_2.4.16 * remove the following patches (fixed in 2.4.16) * httpd-2.4.x-mod_lua_websocket_DoS.patch * httpd-2.4.12-CVE-2015-0253.patch * update httpd-2.4.12-lua-5.2.patch- add patch: httpd-2.4.12-lua-5.2.patch * lua_dump introduced a new strip option in 5.3, set it to 0 to get the old behavior * luaL_register was deprecated in 5.2, use luaL_setfuncs and luaL_newlib instead * luaL_optint was deprecated in 5.3, use luaL_optinteger instead * lua_strlen and lua_objlen wad deprecated in 5.2, use lua_rawlen instead- change Provides: from suse_maintenance_mmn = # to suse_maintenance_mmn_#- apache2 Suggests:, not Recommends: apache2-prefork; that means for example, that `zypper in apache2-worker` will not pull apache2-prefork also - installing /usr/sbin/httpd link: * do not try to install it in '%post ' when apache2 (which includes /usr/share/apache2/script-helpers) is not installed yet (fixes installation on 11sp3) * install it in '%post' if apache2 is installed after apache2- to be sure it is there- access_compat shared also for 11sp3- apache2-implicit-pointer-decl.patch renamed to httpd-implicit-pointer-decl.patch to align with other patches names- apachectl is now wrapper to start_apache2; therefore, it honors HTTPD_INSTANCE variable, see README-instances.txt for details + httpd-apachectl.patch - httpd-2.4.10-apachectl.patch- a2enmod/a2dismod and a2enflag/a2disflag now respect HTTPD_INSTANCE= environment variable, which can be used to specify apache instance name; sysconfig file is expected at /etc/sysconfig/apache2@ (see README-instances.txt for details)- provides suse_maintenance_mmn symbol [bnc#915666] (internal)- credits to Roman Drahtmueller: * add reference to /etc/permissions.local to output of %post if setting the permissions of suexec2 fails * do not enable mod_php5 by default any longer * httpd-2.0.49-log_server_status.dif obsoleted * apache2-mod_ssl_npn.patch removed because not used * include mod_reqtimeout.conf in httpd.conf * added cgid-timeout.conf, include it in httpd.conf - fix default value APACHE_MODULES in sysconfig file - %service_* macros for apache2@.service- reenable 690734.patch, it should be upstreamed by the author (Adrian Schroeter) though + httpd-2.4.9-bnc690734.patch - httpd-2.2.x-bnc690734.patch- drop startssl from start_apache2- allow to run multiple instances of Apache on one system [fate#317786] (internal) * distributed httpd.conf no longer includes sysconfig.d, nor this directory is shipped. httpd.conf includes loadmodule.conf and global.conf which are former sysconfig.d/loadmodule.conf and sysconfig.d/global.conf for default /etc/sysconfig/apache2 global.conf and loadmodule.conf are not included when sysconfig variables could have been read by start_apache2 startup script (run with systemd services). Therefore, when starting server via /usr/sbin/httpd, sysconfig variables are not taken into account. * some not-maintained scripts are moved from /usr/share/apache2 to /usr/share/apache2/deprecated-scripts * all modules comment in sysconfig file is not generated anymore * added README-instances.txt * removed Sources: load_configuration find_mpm get_module_list get_includes find_httpd_includes apache-find-directives * added Sources: deprecated-scripts.tar.xz apache2-README-instances.txt apache2-loadmodule.conf apache2-global.conf apache2-find-directives apache2@.service apache2-script-helpers- add SSLHonorCipherOrder directive to apache2-ssl-global.conf - adopt SSLCipherSuite directive value from SLE12 - remove default-vhost-ssl.conf and default-vhost.conf from /etc/apache2. These two files are not (!) read by the configuration framework, but are named *.conf, which is misleading. The files are almost identical with the vhost templates in /etc/apache2/vhosts.d/. The two templates there do it right because they are not named *.conf and are not sourced either. apache's response with no explicit (eg. default, vanilla) configuration is contained in /etc/apache2/default-server.conf. * remove apache2-README.default-vhost as there are no default-vhost* files anymore.- apache2.service: We have to use KillMode=mixed for the graceful stop, restart to work properly.- dropped 2.0 -> 2.2 modules transition during upgrade * apache-20-22-upgrade renamed to apache-22-24-upgrade - apache-*-upgrade script is called in %posttrans now [bnc#927223]- fix find_mpm to echo mpm binary- apache2.service: Only order us after network.target and nss-lookup.target but not pull the units in. - apache2.service: SSL requires correct system time to work properly, order after time-sync.target- align filenames with upstream names (and add compat symlinks) - find_httpd2_includes renamed to find_httpd_includes- access_compat now built as shared and disabled by default - amend config to use also old syntax when access_compat is loaded - added apache2-README-access_compat.txt - added apache-find-directive script - see [bnc#896083] and its duplicates- add httpd-2.4.12-CVE-2015-0253.patch to fix SECURITY: CVE-2015-0253 (cve.mitre.org) core: Fix a crash introduced in with ErrorDocument 400 pointing to a local URL-path with the INCLUDES filter active, introduced in 2.4.11. PR 57531. [Yann Ylavic]- simplify apache2.logrotate, use sharedscripts [bnc#713581]- remove curly brackets around format sequence "%y" in `stat --format="%{y}" %{SOURCE1}` that caused an incorrect evaluation. Add escaping to proper spec-cleaner processing in the future- remove 'exit 0' from the %post section in the specfile that was placed here incorrectly and caused that the rest of the %post section couldn't be executed.- /etc/init.d/apache2 reload -> systemctl reload apache2.service in apache2.logrotate [bnc#926523]- authz_default -> authz_core in sysconfig.apache2/APACHE_MODULES [bnc#922236]- Add Requires(post) apache2 to the subpackage -worker, -event and - prefork: their respective post scriptlets execute /usr/share/apache2/get_module_list, which is shipped as part of the main package. This script has the side-effect to call find_mpm, which in turn creates the corresponding /usr/sbin/httpd2 symlink.- Patched get_module_list to ensure proper SELinux context for sysconfig.d/loadmodule.conf- Pname -> name variable reduction - Try to fix sle11 build- Version bumpt o 2.4.12: * ) mpm_winnt: Accept utf-8 (Unicode) service names and descriptions for internationalization. [William Rowe] * ) mpm_winnt: Normalize the error and status messages emitted by service.c, the service control interface for Windows. [William Rowe] * ) configure: Fix --enable-v4-mapped configuration on *BSD. PR 53824. [ olli hauer , Yann Ylavic ]- Exit cleanly on end of the post and cleanup the update detection - Remove Apache.xpm as it ain't used- Cleanup init/unit decision making and provide just systemd service on systemd systems- Deprecate realver define as it is equal to version. - Explicitely state MPM mods to ensure we don't lose some bnc#444878- Pass over spec-cleaner, there should be no actual technical change in this just reduction of lines in the spec- add httpd-2.4.x-mod_lua_websocket_DoS.patch to fix mod_lua bug where a maliciously crafted websockets PING after a script calls r:wsupgrade() can cause a child process crash [CVE-2015-0228], [bnc#918352].- httpd2.pid in rc.apache2 was wrong [bnc#898193]- httpd-2.4.3-mod_systemd.patch find libsystemd-daemon with pkg-config, this is the only correct way, in current versions sd_notify is in libsystemd and in old products in libsystemd-daemon.- remove obsolete patches * httpd-2.4.10-check_null_pointer_dereference.patch * httpd-event-deadlock.patch * httpd-2.4.x-bnc871310-CVE-2013-5704-mod_headers_chunked_requests.patch * httpd-2.4.x-bnc909715-CVE-2014-8109-mod_lua_handling_of_Require_line.patch- Apache 2.4.11 * ) SECURITY: CVE-2014-3583 (cve.mitre.org) mod_proxy_fcgi: Fix a potential crash due to buffer over-read, with response headers' size above 8K. [Yann Ylavic, Jeff Trawick] * ) SECURITY: CVE-2014-3581 (cve.mitre.org) mod_cache: Avoid a crash when Content-Type has an empty value. PR 56924. [Mark Montague , Jan Kaluza] * ) SECURITY: CVE-2014-8109 (cve.mitre.org) mod_lua: Fix handling of the Require line when a LuaAuthzProvider is used in multiple Require directives with different arguments. PR57204 [Edward Lu ] * ) SECURITY: CVE-2013-5704 (cve.mitre.org) core: HTTP trailers could be used to replace HTTP headers late during request processing, potentially undoing or otherwise confusing modules that examined or modified request headers earlier. Adds "MergeTrailers" directive to restore legacy behavior. [Edward Lu, Yann Ylavic, Joe Orton, Eric Covener] * ) mod_ssl: New directive SSLSessionTickets (On|Off). The directive controls the use of TLS session tickets (RFC 5077), default value is "On" (unchanged behavior). Session ticket creation uses a random key created during web server startup and recreated during restarts. No other key recreation mechanism is available currently. Therefore using session tickets without restarting the web server with an appropriate frequency (e.g. daily) compromises perfect forward secrecy. [Rainer Jung] * ) mod_proxy_fcgi: Provide some basic alternate options for specifying how PATH_INFO is passed to FastCGI backends by adding significance to the value of proxy-fcgi-pathinfo. PR 55329. [Eric Covener] * ) mod_proxy_fcgi: Enable UDS backends configured with SetHandler/RewriteRule to opt-in to connection reuse and other Proxy options via explicitly declared "proxy workers" (] * ) mod_proxy_fcgi: Remove proxy:balancer:// prefix from SCRIPT_FILENAME passed to fastcgi backends. [Eric Covener] * ) core: Configuration files with long lines and continuation characters are not read properly. PR 55910. [Manuel Mausz ] * ) mod_include: the 'env' function was incorrectly handled as 'getenv' if the leading 'e' was written in upper case in statements. [Christophe Jaillet] * ) split-logfile: Fix perl error: 'Can't use string ("example.org:80") as a symbol ref while "strict refs"'. PR 56329. [Holger Mauermann ] * ) mod_proxy: Prevent ProxyPassReverse from doing a substitution when the URL parameter interpolates to an empty string. PR 56603. [] * ) core: Fix -D[efined] or [d] variables lifetime accross restarts. PR 57328. [Armin Abfalterer , Yann Ylavic]. * ) mod_proxy: Preserve original request headers even if they differ from the ones to be forwarded to the backend. PR 45387. [Yann Ylavic] * ) mod_ssl: dump SSL IO/state for the write side of the connection(s), like reads (level TRACE4). [Yann Ylavic] * ) mod_proxy_fcgi: Ignore body data from backend for 304 responses. PR 57198. [Jan Kaluza] * ) mod_ssl: Do not crash when looking up SSL related variables during expression evaluation on non SSL connections. PR 57070 [Ruediger Pluem] * ) mod_proxy_ajp: Fix handling of the default port (8009) in the ProxyPass and configurations. PR 57259. [Yann Ylavic] * ) mpm_event: Avoid a possible use after free when notifying the end of connection during lingering close. PR 57268. [Eric Covener, Yann Ylavic] * ) mod_ssl: Fix recognition of OCSP stapling responses that are encoded improperly or too large. [Jeff Trawick] * ) core: Add ap_log_data(), ap_log_rdata(), etc. for logging buffers. [Jeff Trawick] * ) mod_proxy_fcgi, mod_authnz_fcgi: stop reading the response and issue an error when parsing or forwarding the response fails. [Yann Ylavic] * ) mod_ssl: Fix a memory leak in case of graceful restarts with OpenSSL >= 0.9.8e PR 53435 [tadanori , Sebastian Wiedenroth ] * ) mod_proxy_connect: Don't issue AH02447 on sockets hangups, let the read determine whether it is a normal close or a real error. PR 57168. [Yann Ylavic] * ) mod_proxy_wstunnel: abort backend connection on polling error to avoid further processing. [Yann Ylavic] * ) core: Support custom ErrorDocuments for HTTP 501 and 414 status codes. PR 57167 [Edward Lu ] * ) mod_proxy_connect: Fix ProxyRemote to https:// backends on EBCDIC systems. PR 57092 [Edward Lu ] * ) mod_cache: Avoid a 304 response to an unconditional requst when an AH00752 CacheLock error occurs during cache revalidation. [Eric Covener] * ) mod_ssl: Move OCSP stapling information from a per-certificate store to a per-server hash. PR 54357, PR 56919. [Alex Bligh , Yann Ylavic, Kaspar Brand] * ) mod_cache_socache: Change average object size hint from 32 bytes to 2048 bytes. [Rainer Jung] * ) mod_cache_socache: Add cache status to server-status. [Rainer Jung] * ) event: Fix worker-listener deadlock in graceful restart. PR 56960. * ) Concat strings at compile time when possible. PR 53741. * ) mod_substitute: Restrict configuration in .htaccess to FileInfo as documented. [Rainer Jung] * ) mod_substitute: Make maximum line length configurable. [Rainer Jung] * ) mod_substitute: Fix line length limitation in case of regexp plus flatten. [Rainer Jung] * ) mod_proxy: Truncated character worker names are no longer fatal errors. PR53218. [Jim Jagielski] * ) mod_dav: Set r->status_line in dav_error_response. PR 55426. * ) mod_proxy_http, mod_cache: Avoid (unlikely) accesses to freed memory. [Yann Ylavic, Christophe Jaillet] * ) http_protocol: fix logic in ap_method_list_(add|remove) in order: - to correctly reset bits - not to modify the 'method_mask' bitfield unnecessarily [Christophe Jaillet] * ) mod_slotmem_shm: Increase log level for some originally debug messages. [Jim Jagielski] * ) mod_ldap: In 2.4.10, some LDAP searches or comparisons might be done with the wrong credentials when a backend connection is reused. [Eric Covener] * ) mod_macro: Add missing APLOGNO for some Warning log messages. [Christophe Jaillet] * ) mod_cache: Avoid sending 304 responses during failed revalidations PR56881. [Eric Covener] * ) mod_status: Honor client IP address using mod_remoteip. PR 55886. [Jim Jagielski] * ) cmake-based build for Windows: Fix incompatibility with cmake 2.8.12 and later. PR 56615. [Chuck Liu , Jeff Trawick] * ) mod_ratelimit: Drop severity of AH01455 and AH01457 (ap_pass_brigade failed) messages from ERROR to TRACE1. Other filters do not bother re-reporting failures from lower level filters. PR56832. [Eric Covener] * ) core: Avoid useless warning message when parsing a section guarded by if $(foo) is used within the section. PR 56503 [Christophe Jaillet] * ) mod_proxy_fcgi: Fix faulty logging of large amounts of stderr from the application. PR 56858. [Manuel Mausz ] * ) mod_proxy_http: Proxy responses with error status and "ProxyErrorOverride On" hang until proxy timeout. PR53420 [Rainer Jung] * ) mod_log_config: Allow three character log formats to be registered. For backwards compatibility, the first character of a three-character format must be the '^' (caret) character. [Eric Covener] * ) mod_lua: Don't quote Expires and Path values. PR 56734. [Keith Mashinter, ] * ) mod_authz_core: Allow 'es to be seen from auth stanzas under virtual hosts. PR 56870. [Eric Covener]- Redone lost patch to fix boo#859439 + service reload can cause log data to be lost with logrotate under some circumstances: remove "-t" from service reload. [bnc#859439]- Fix URL syntax in various files- fix IfModule directive around SSLSessionCache [bnc#842377c#11]- added httpd-2.4.x-bnc871310-CVE-2013-5704-mod_headers_chunked_requests.patch to fix flaw in the way mod_headers handled chunked requests. Adds "MergeTrailers" directive to restore legacy behavior [bnc#871310], [CVE-2013-5704].- added httpd-2.4.x-bnc909715-CVE-2014-8109-mod_lua_handling_of_Require_line.patch that fixes handling of the Require line when a LuaAuthzProvider is used in multiple Require directives with different arguments [bnc#909715], [CVE-2014-8109].- fixed start at boot for ssl and encrypted key [bnc#792309]- fix shebang in start_apache2 script that contains bash-specific constructions- small improvement of ssl instructions [bnc#891813]- fix bashisms in post scripts- added httpd-2.4.10-check_null_pointer_dereference.patch to avoid a crash when Content-Type has an empty value [bnc#899836], CVE-2014-3581- httpd-event-deadlock.patch: Fix worker-listener deadlock in graceful restart.- httpd-2.1.9-apachectl.dif renamed to httpd-2.4.10-apachectl.patch and updated (fixed bashism).- drop (turned off) itk mpm spec file code as mpm-itk is now provided as a separate module, not via patch (see http://mpm-itk.sesse.net/ and [bnc#851229])- enable mod_imagemap [bnc#866366]/bin/bash/bin/bashibs-lx2160ardb-1 1629109459  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxy2.4.43-3.25.12.4.43-3.25.1apache2-preforkmod_access_compat.somod_actions.somod_alias.somod_allowmethods.somod_asis.somod_auth_basic.somod_auth_digest.somod_auth_form.somod_authn_anon.somod_authn_core.somod_authn_dbd.somod_authn_dbm.somod_authn_file.somod_authn_socache.somod_authnz_fcgi.somod_authnz_ldap.somod_authz_core.somod_authz_dbd.somod_authz_dbm.somod_authz_groupfile.somod_authz_host.somod_authz_owner.somod_authz_user.somod_autoindex.somod_brotli.somod_bucketeer.somod_buffer.somod_cache.somod_cache_disk.somod_cache_socache.somod_case_filter.somod_case_filter_in.somod_cgi.somod_charset_lite.somod_data.somod_dav.somod_dav_fs.somod_dav_lock.somod_dbd.somod_deflate.somod_dialup.somod_dir.somod_dumpio.somod_echo.somod_env.somod_expires.somod_ext_filter.somod_file_cache.somod_filter.somod_headers.somod_heartmonitor.somod_http2.somod_imagemap.somod_include.somod_info.somod_lbmethod_bybusyness.somod_lbmethod_byrequests.somod_lbmethod_bytraffic.somod_lbmethod_heartbeat.somod_ldap.somod_log_config.somod_log_debug.somod_log_forensic.somod_logio.somod_lua.somod_macro.somod_mime.somod_mime_magic.somod_negotiation.somod_optional_fn_export.somod_optional_fn_import.somod_optional_hook_export.somod_optional_hook_import.somod_proxy.somod_proxy_ajp.somod_proxy_balancer.somod_proxy_connect.somod_proxy_express.somod_proxy_fcgi.somod_proxy_fdpass.somod_proxy_ftp.somod_proxy_hcheck.somod_proxy_html.somod_proxy_http.somod_proxy_http2.somod_proxy_scgi.somod_proxy_uwsgi.somod_proxy_wstunnel.somod_ratelimit.somod_reflector.somod_remoteip.somod_reqtimeout.somod_request.somod_rewrite.somod_sed.somod_session.somod_session_cookie.somod_session_crypto.somod_session_dbd.somod_setenvif.somod_slotmem_plain.somod_slotmem_shm.somod_socache_dbm.somod_socache_memcache.somod_socache_redis.somod_socache_shmcb.somod_speling.somod_ssl.somod_status.somod_substitute.somod_suexec.somod_unique_id.somod_userdir.somod_usertrack.somod_version.somod_vhost_alias.somod_watchdog.somod_xml2enc.sohttpd-preforkhttpd2-prefork/usr/lib64//usr/lib64/apache2-prefork//usr/sbin/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:Maintenance:20866/SUSE_SLE-15-SP2_Update/37c69098f6185b2744d41cf8527d48b0-apache2.SUSE_SLE-15-SP2_Updatecpioxz5aarch64-suse-linuxdirectoryELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, BuildID[sha1]=a35b1d3bf8426c8e6f6f3afba99b1e188acb6458, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=ee15b078100b78bcd58b771bf99dbb365cdf49b7, for GNU/Linux 3.7.0, stripped RR R R RRRR R R RRRR R Rħa$= if [ -x /usr/bin/systemctl ]; then if [ -e /var/run/httpd.restart.flag ]; then /usr/bin/systemctl daemon-reload > /dev/null 2>&1 || : /usr/bin/systemctl restart apache2.target > /dev/null 2>&1 || : echo 'Restarting apache (all instances)' # all instances was restarted, removing all flags rm /var/run/httpd.restart.flag* else /usr/bin/systemctl daemon-reload > /dev/null 2>&1 || : for flag in /var/run/httpd.restart.flag@*; do if [ ! -e $flag ]; then # %{apache_restart_flag}@* have not matched anything break fi instance_name=$(cat $flag) if [ -z "$instance_name" ]; then instance_suffix="" else instance_suffix="@$instance_name" fi echo "Restarting apache ($instance_name instance)" /usr/bin/systemctl restart apache2${instance_suffix}.service > /dev/null 2>&1 || : rm /var/run/httpd.restart.flag@$instance_name done fi fi exit 0/bin/shutf-8b343615aa57fa036d29924acd77fb7ea41837843eebaac92b7dc683cfbd70a39?7zXZ !t/] crt:bLL P_|"Òϱ!_61}0BnQ'vU ܙ1ǖ0cdnwynh kLDv1f(F,'|HǪ$4gYpTIuf @{S5wfxt[)1{BrŻT>0:q9Չ߲n,{?d,_ǵyznvސ(otvg9ֺ&$cVǧ!w=W )߉'>ZSCv?Qge%2vؿݶ&#OB*ET~ߐJ1: *MZc<@Ѯ#/|րQ[$`{g1JnJ"- 0 oScH bpm?"t+˻9`-͎.=CWVgBC6mԈSB~8iB_г3zN ZyDžXDw4[B˯.HBg'd`?#U.$'qϷp`vZL+|2mT!kIkDNMnuu2w-iK1Ou9}v,_-暉ݷjt64?ѩ:$i5x<kAʏ͟o֝p +}N 9UxHLP!+JH(a<5@s}+ATͺ3[74ߎ.Z:H“*!J]1Z'Qg%~ko ݅ޕnq r=ڠ(?1tާ.MQzcC|[/;U68ĸ.HOB*><8eԱV5ug7AW_2&ƲjAۖ@$o^|!W|_ |<<) Қ $=ضo{v6 Ʋ7I#Zu8EKX֕*qA;Im {U7( ΁}xI)d{f@&-鴖<!jf4ڃ?Z僕7ӶynܪcGF6uR:A+ںpJؔ/ Lo {˸5Ar8+YJk`),NcIْg%1^m,_ȷ ȶ*X *QL점r9Nf6:3Gs5QnLAJsB9݂D1 ?ؓcqj̡dTBLak [)+n%2Cx]oG=GU3cIt2/{rheH/yƘTCy.UWƴTfHAD Z"fS-eöaIq^FҀB%Σ\;cj %;_ܚdTmjT:_"wUAuOPڳp@]TurBf&b혺U &0AExH5 .^ {'YQ д;̐Wo|w=Vf'!?Y:hSGwf?k)ogՠG]GKUrhCmǞƀRbOC$H_4"J!"#TCwN|7,WYjGa?VB" `TFulOk`ݠB5m >}M<㧑UEW)֢V-+iƉ3TZJe9/"/1x0Z/3JA4?Q5_2 [97Y :^_s+i'M,_96:E .%ڍt)Ȃ^`5`h'[֏WrEP+טHOY\y vc|b% ス(-gQ/v0q-uy#3wV0ܷu[q{7]1-VwgijсC % Dȝӳ^PDH;\\@1;F)p"nqJG!Ɲ*3Q\*ӟ%lhfaX\0D9z["jiP*UKPgw/4VG&ȩ|1zaV5"-F:l_:kzND$Im]O畟-{H//naG߉V}Qڶuz7ɩW0b 2=7vv ?W;x2Ga\Kχ)Yd9"ӗf3A馭~L[ύmKXm KoI5C&3mdzbg};Q`%rhI-855x#bX -ɶ5$\q&~o]0IAXE0tkdi,cX%>x܁0LoǘԚ5d?H(|`Z=xl9z̤G:g/^*"+'Nw/*y ^Rv |SZͶ8|W03> \Q|8޼DdwMFs51IGGr2DRX /9HX@z>Do`\*TjbyW9q~\ کNVSDv4T/(~֍=:i¡AJu:ZNk4W 7Coe*.ik~rwhIYZnؾnGQ骫KN ͉u'Dʘk$Tml6v_8Ptd@_;hZSځX Q &3 ߛ ޞEw O퉰oꔪW'&kgMƳ}W*P|}hjO hNOIIOG궡+JSпKd$ \fOOo3D4Ol@֤٨BjeL=NӺcIOLJR:Q@pf$ Szy0WRF5»+>a (uj3?pCU<9Zj<$6 zk]x&RAOk/ݙ\Ƥ_2?8xD꛱] z4"l.e~eK"sI=)"˒s.]"wϞF-el+ xSr9cܥinpf+w 6~IFn+ajg3N'[|OVnBe'++ح}~sl/gPvHsVc= oxůq.pJ>Z/`Щ }vd;(&JGURO$ xFƈ#PT@jĴHZTJX5kSDQx ʟh'OH!oIyDȃ#迪TC!O{9$JT"ĺQSboTff qR'$_cd1 h˨pضp-mr_^#Eȟ)ղȐMnjê9.~Qلpa;?PxYpsYdbS}$I_G$,<9\fw2܀"p_aQѷXIYHnj 6MP ~hiTtϭ8HzM^S7S{rF h= 3=>u@9OPЎ'ڊ*DteJVYgEP 'iˮ{ } љVٟ:Nr6]Kfϵe)gkP,u#M?mQek)o)& E\D .FoL'Fiش kT@ن^gj+Sx%ό]5brDꫫ:K o\oܐI҅;վhtcF(@x|PSvV'JpYTC0Mp=ƿ:zژ Y^Ca9yl-¨߈;Dx}&hZw3dkZg5ȕ-•inM5Ǹ r BL]/]/VFPoE#b/un[qxRZN,[?Rg`e:cRPC/{^Rˀ]3XAG>7B2n^^dII5 /tQ_|* f!ځ\vG;K J5tn1S8 oOBuQ)d;qI>اO30{Xx EG)%RJ7%uMRПh.MTm&(Q1Dzz."# C_Ի^CV>\ jz1AOhլ4Iw~skoYk]9;cRL^x:U'߃D;~\lxpxx[{}5tuvc;O?U38bҌaupU~^Q\&hp}j1e҇\F=2Z@oN`eNo+3i@3^,Hkb:rO\AKڠ^r?*Hەjq%r:"b;610SQLw_.׶blOFU5cзɒI3׃XV_HsGB1aVL=\]o ,~zXBo_L%*I iXs>:$O'P LjDOD刼ov{3MiqK/|Eir7ޤ<)ΡՇ_JUd <x'yb\!YUOFE&8L#bxvz.=u['hٝDW8 9A8B5 I`Eb\%/G$bRġ?hAN6r`+ߕq7,-JHQ{靚}NjH(gizɃ0l:exKj@&#/wr0r4׶ݖ:!x=-2fK8*٣{38pYiP\> <?0r8gY)uAd;]p:U''5 ;6ClZB ߡ{PgT]C|_S6Ae`X#1ӾXDFHUc]T͖Q F|s7 h*YX 5EE7]̱BƆ&TKʏ^!=F#2.B cY)jk2[hKfa?-YiR 4 v)!?ӵóR8f<@TrHӾ]e+XEL 6DN4 Ih_h츳,vkO-u-jGhHRDbykXb]"-(Rx}-hMigd.iU8Ү˪pq\ϮFZ$c_@cР 31f#˓*/gŭ~:<|}pJ/& l sys/oq :Fԟ8h 1ghJԕYn6_·;R4v{VaĐeR87<"+7f'x#BjvX nnUq'\>~J:ևcc5-uemSn̥mGt>;M HS⺱vVxCS(lwNB0VDw,Nr\ '[ąYvT_x =%WùZ *9WL,i%R81ho;biվi5  bqt7goF}˃nT At>eU)BE5| [.t5/6MHez JW8 [Qw>%N"ðg;D  ,nݾ0~q5 Л5Do@H1tQ\udсJZbu G|Iƙ?.nOAXE8p(p_jxQ>ՎEMe[x gg:UيN3eKl@͆<)_6ql>Q覥}iOau[`Bͻ TOļq}GiY.N$$@$ ФF_k1k.9Ig0>s}'r}3Cʶ;Eі޴cYjKyw /_zEU݄1>gKȑ1'Wm Ki;-~ax$C%dt=.E+Yh鱍E\K~R Jͨp1*棺osU6wkq''Jq843mXTގ^C'!N b<~P7Qu*]5fZkՊO[S5}d9Y6x>F{;9Rhۜ~B?4~p_?.xq+?D__4ΨqBBZB> aFbL)Ңc`mCr҉k8` G;] ֖&v 1Ld4RH*Su6ɨ<}gEPR)ӚװnGZ.{)Ϛtˁ$zbĿpbFJ tʁ=DbVa 3|8֧X<:%B,TS Ic+Uڶ$-$&[{ *y=LLI1p戛ɑN]";c5ûaNpYV ̂=sPfo'^1h*|dzGW[M8bFSP(Տ)oӹu?zSt1_ĠNfN[mb >T0iYa$7 0F~ c =)a;cE{aG18򉯎ʝ؍6glg1/ IqLB) Rio+!ĕ4=8ƦnT?\R&~3n}@wZZW|T' BSkhôEn%tKO/ p+^a -#|q]R]d;3]&g3d)d ֦]8 "~$]XJ"K}«`NzwZ~_3pңs33VSB[~`Q/eG&(NCRַ Q)zaÉĞ1C!h;}131^"ܯ0J\֡J^sO̠IHo6G( Me\9}Լj1tE<٘Gj-5Gi-~lH`{4{ / $IKh*̨0WjЙh[2ܫKEFcM^T2+;x !~uU2.aNE` ٔ8e+f!^6$ >%~}\ieHY$Zm^Dӝgْ$QbC-G;Qs *~ml}u$J WDrBM'+xLW*sL )MCs鴝*"t>)̤^ÿW(e!2RH4OX%[[M9Q'FjvUb?S)GTPǃ$ 1(Pn} -b:=!u kR?cN l"fxrOLS5(5M5[zU?j0YϪ%A tXT*W-uZJ7"pK Wv9Gʔ2v"S7.Ś.ZR^iUssF0 [Sˉ'ikpr,U?{X+HpEęNt;#Kd`Qrס$4Sz*mwP}I,d]}ysڜ_t;W)&7 &J^"  .^܉LΎm44 3{ 9nċz|B.9"i 1k3^BcP}OY-z,z2,AsΗ# Ҿ1W6'De]hBX^O:3/*FZ~<,{qGiM[FJɧYI۵Dk&zf5^[7{Dž2<6&&aSVO 陿Ǔh߁nUTʌUkgǮ9)%JI:8K>(Eį@ݫ僢>Bw>C|,R|y=Ɣ@;$lݸ7lc }$W}it饾_yUc[w2DVP$M8(Tw?ܪѾZ\@rլDr,Ea]GZMz_~^q:Q80t7s6Dt-W#OA%>7Ri䉵_p΁eg.?ûWHLJӿފUQF0GY7?}P[gD.<4wKCUKCrbs" 9}3/[Lsqxiʚxw}bd14[q;Np P'$NokC`S#SmbCR$tOԇOgϢ'`T';4 aYE؃MB yV'fv[[BuV4~Dia>{!& [Q̼`؝yfmv$z(2)h)aI3ṡv74Y"̚2W]>u -4B|I]w8آՀBYg(qi.ls 7i+ܬ +&aQz .Cilz&tvR&\Uh>/{P-G7;UF=qu,_-mиi.nQ]$n ;vZ ل=kQ6[eAL}GaA2ylŒEJe~A%zULbJh{-m~g 8V}N, 7a1[Tmo+F-` Y) >Ox{f}4cLWx2ovLTQ~ik WwT] qZC{le ͊Yn3u*whR1G:¦ɐsfݲz] Y)5)YVC2B{IоF-f_TՋ=7YKውM(չ!f;<ݞsTwQ=7 C/5[ kvk~XϪh(t  i YP7(7rگNhP R+_`I^׵[bS_l@v|`|"vnv AV0Ka‘^O,t,7 gf8V?cm%O0dL̚y?5T.OC+U\pi;%e.8~F= m=*jY=~!ycWglcپQ$.hXyFQ+V0 p9Y?E_'xf  " RQ]5݈I19/zU%vCɬ2u|-}$ґ}$@CZuH@'xB bI}B枀l EI34VTծk]CK~#˘AX nEET$c8@?pE$Ҙas[g?'ld7]sP[=| &hRG#)Kt  D3j$kiY9Կ@S@6ɪH=j-)Q_wЪj` ݔռOL.`))0HEH[dќ7؉n$*b#:T0ِp^tOχy @f˼fߨb֘1# 44ʈ d/=,m12e$XN̘,hlVX-2N_@(v:恱LJ&Ls}ڭbcр1ȖΚEnn20ۻ&[d(]'QpuOq2 pHeE L9J/\`|`_>/6X @|n8GR"tnb,\b`} sTέq=1#l)Ftn]&Wq6ДUXIi숬AZZ߻ #SnG]AvsUb`RGأ'j&<^4xkh<^":#Њ`mِ5e? eViއ`X>kkJb>>1k.e'Ge\ FBI*^+#x'j茢o N9ʶuJC$_4Fa:!! I*6$;J 7鞿Ɉ45{ Y@jw2[]mFv"ŕsADЄdSi39U~\A_Aw0$WVe~c:HL]rE/7--vI_-s :╔qVuj*:Y;e;C{;levN"(cWZ-6KS6<"b\rd3~ۯ-m]Sd0BI_*Ayr@>STP Wđ!<:n[vʋx"0VZU'Qʖ{ }K8L2B;<̩gO`VosOHQ #pUmA?OZ}$~riMkѤyL [#ʤ]#wGyڛLŜW_B `d~))Z7H_¦k]%T&zǏC 0QMOajƙ_9J~,N!eM?kÜ?ɠuۊLOVNZ[tPb鸳I͒sʔLXIrtkW7:+S3WZ61;s($W=ric"RFR{? >kk&UMri2$P3I0? DjV&S(ȞJ;R4Q697!j]%zƬT冇Fᖕ&n~EOEC>ݼj{nCՕ(M!}nɢ ),k͗6sRe]ʎ͛p?4nG"ᖊ:{=`n[`ok囫4[vle2pA5hDcl F'/XKb=%UCdw=YUsx( 4FГ쾹 K(mac| =vjVXTvFP֒" ,=+;z7tFEBH,Eܺ!P͟)ߛkg 8AS4cZ"ƯT U0c-'TzEa:\z甀RM/)22ebpTN~FeM];WgS#5Wu\1,<5"Say>6ewttjR C+,bn(*+jc+ګA/aJz,gJDۼ J 7~]̋/>羾^(E4E5j~EzolXs2\͑DLBxWκHvA^Nn !eHg[L_7 З>?~|҇ɅJ@"i9&Ka,\9]kj{}Es-xK`2 Wլ@a'I>BD42۠ڍz oA֦Z"6Bwl Xm0hU9} ?j8XNKy =Nj% kIӷ'ر~ Pdw=zıK#弄6ɐVNt fI@[[XP!'?8 !vD^}_.wyNܕ\\{;J W=.!6.֪X3)M+DNbGh+QXEBYn5Q[ii'Бs^qg@ Pdq0Q=4jS:Q 浥s7H۰)&BEu-@NR|i0ZA*zS9߳x[_(|b=A#I}Տ++c-:hrR{(˚;ђ|EtfǦuV2=M^sqc%*xt{6Y74{Y暨ǘ@e=}ee-ec}Y)btK,%bVXaC]=1J@a"/鹣(:WcOo 6RAq qa7RV `0r/H l)s ^ngҤ~=0D6_ol:wᴡE#Gϋ -5Q #_l,/FE|"1&m.&\QTB-JDٿ XIyͨl2hݥ, Lg)#X >a)|Y.gOȵ5mG2l <#҉bd06P2cz*)729$CǠt< hpϩ؜iFlVjS~Z*om[RG/ىTm+⸬ ' p͟f\tM~!l/jk|^ ɥ/1F6 N#9r0dB' %^D znȋkX|-$}ZKܺ&Zm3NW7Y/d04r U\TS}!6Tdn{#ORm5i@u& ?6!2c[Q}2IZ#ז̱PNqPNa%2^!S:/ Yw X+/Gq񼊿ޘ \ENmA"@0-j2&Qh{_i(˷nsa>tX4SI*| /9Xsw&kDl*àZ_Zj>I }T׷&qTCji&7="3"R9 ߇eLSƐ@ű޸gsħV=tN|O褄Gױk~Ok&tUcW쟂ܝ8ZuPv%sﶚ FbE٫ {TLB=_,[W-,-sESc~2d{)L0r'J6 О]&Is3#ת6Rh B<>֢Vd9-Ji8v7d6e0 O݊Uv""ڵ4xNbI$bB2ȄFHT#OLi \cX_ʬv/Q&ܘ*B'̼r|G_Qe{tOiRR%#) eKE)wz;L'HX,(: ]0ے"ӡ J2 u/ӯRHnY$6W)Jf"b 4Uv>Ģ QJ*7p֕=4@ sޕ?hH"m D &y7=D3?N| ΢0U~-:pLq׷Hq*e2Au n&EO ~Z[.qRm)inEQ|c)s?oj>Cm]MUYP|ys=ܞkkR,dT1#ZSx[?=q&Ki˰oN𨬨.Zfu//*{M} ɩ]1&v1)QJ$igbڠ{dm+сh4dz2Ȗ!'#*cWJvֹ&ao4(w.Q6OrO^Փ̈ߴfeZ;ǔK _Пe&W;ADzI3&kl)Iu8bN ;Tc ܞ3 \ѡ{kYi/ܱ-%SPE܍ߴ vm8[{SV mяlaJf"ftU[8|&>7kM}1Xt&S;~E=*z> qo3=r3"6Uݵ*̸r" : IL^eRHYΆ S쉌(B])A9T ^*E5^o)P*<\qpӨ;z\^0Lu|C5wPht5aqVDr7iRqׂUE_avať"*׿bn.Ĩe|C>I [@a/Z+[h='߶r2G }bQ*f;=y7LFؼn5cMӈX賏fwBϪ׺vLD]M8{jIo}u*uTmMR3'K = Zq>>G) (yyЀo~V[>VGA6? l5 rG6&˰4jDx#{>]cnj~XjyDW}$>~ (ꦼtK!a,S|>\wK+qBWFu$4[3 IʽxdM.T"o}!X. ۣ<'ږ)[<ĉH-!Bt\}de|8`>ց¬]!y"IP0j[ܡHVW]^tga X:~:vJDܐm |:{ eIgA[d(D>8Y2HBMh7S"W/cAڥ b͋X+sW"haӱTԆ֦g&_{:)6uF$\mG;dG+3YfmqD\t 煿D&Py 0kv;%߅;1 Qceg3büӺWwWVro 6<+"\~Qʚ̈́SH_1/V125/~K5Xi;WIY6[G)9PU̯_[cIFC[n^?-szK/M1cH0hyN7w"'$A3W'@NIC s퓓Iq(Ğ^SQdεXz#gAgx/_Pԇۗ=Dec8!L S<A]zMA/Rn uǝgKwV" (9Ֆ~=[H*="mQjet_!>.fNGrDb6"56 G.^ua|jY{9Q"%Jfم='(F'v]ҤHݟ=eA_sTDO_MNASTãJ8WdeD%caPs} o=St2 F^ӱI!@48:N*Va)GPx|D59q;3zeNԖQǧ'!넡f[+ bSrݕn%"1#~4 ѝo;QR`Ɲس]3!|i*fA]/YGq ˁP _<>Ӽoݟ2~uN.Cv]HجP7 k &;ǯڙ U@ic° uF³g>fovm4 P{K砛)oӲlEw#L/Lru+1 \ POoI~T 79"Y`K Ǜ#ɨTOo`w]E+1غ6N&EH8[$Lܫ( Kؘ__iH $ 5fr +5V%IϹ(Kȡy77K}Jԋv'{qiIJoҜyfq!5m,g(c>ZD3(,6Nm3.@\ן)12 BGs!o8عʹjiވRS|?gf tFd)~L ٮ{+αUpO*O`C49m;2ۦВ8| I9!i׭8{Hm":f447Y$O{9WC C<2*#'S<XC;>KhTLByt#$$)? k=o>bɔ gDdJn! Lm<,;'٥IE˼87 .o a6+0e// rv=@{ńb΅+S:^lw* -L hs4qÉ߇Z;_xK*2 L ΕM[Z|o=}}CY nL:ex5F[~)˲li@+p#q%3Ce$@:KyMP0682h$^{waAb!\8yr(󽥌3Tݸ 5Onn쵪7.!Yq či;JQM^"S8bv1Z= *HS<ԅ& fKLEFLn`(]ɬʼ  sF6̳%*SWiB ߨP>Tl\k# F]g4J|/kέ)LC]Q{K-jAQ=!<C}bdR}UUiOϘ67(b2f~j'XGmu?bZbY-cS^r/8WÕ N X(y4.O44X =g"9-T[ DPN=oӏtH>v:K)J{T*2օaGcLFγB4H:ξop .Zv;~̧:V2AK&A\vtʇkxjq41w |pev2/aIS[Re\+_RrHU. We{[U(϶p0"5)KtZaD=Q%m>D&Uy5h!fYdn_EoCSGeNr U>CHM`V!2ն͟qV췶tM y㝞x΅f) oCXE~Ezxo׎7VQD`Έg=\Ek:H|ʣH&? ݈c?> %k֘}({}Sn=@Uri\4Ň֎7sG彽ב@ e-9ڧ{ZW:>$2K_Mɛm^mJkW9@CfA2锷0{*([+FIr̛ih)j;ڐ Q0xɆ|8>H+ Z =_8cfWu 4QMeo&-ho=]l j8 #k!ЙAvlfgؗx.D;Y/ f(^3*&Birtn+Q_n Պy} 2k|49&u&iwkXQ^C46_z h䯱{} TVֿ*cn5D9$g DHg|,%PoHa ot#jo9$JP-h}t}O&Cl_]Pdq. @NN,̳b&"\%g7F7[]Ro>NէIk A- Z}T.N c:ϣ#Yȷf9nhE]6a _w´:hvUt;'R ;125g53yh g>=:{$Bkd_-1f\UMV6y v?c]F_TXyA}nfMU\ 0GN$ۡ) F3Y;SW{ P2\>W3?Ɋ1y\A1b ׄ ,re yܱt~pGzJjTWE؃U#m׼^j}^^WP$-r.yN >֤zCaBrRLJEkȊ eh&(4ON)~;S ms3ĠjWFo=jHRdJmh TiRUEBw2XEe*lq_wtK>(jfFM#;Ѭ m֠aإh]ԎU]P⾊$t-B$Sm Pgۇ,1׎2RMvv*h/Č~ף<.2#(QoSig.k! *&XSQ)hK>"Z0bGj )j{rN-, ;N-_C<=%@=z}pL'G@04|91%ݪ 'U݊Hc|!wǘ$ϟ⿻N1R6XAf/)8Lɿ tv5#@BR?V0l/\zta´ۆt6 ydê-Q0{m@vѢs1~GxH?:jB:"u| kOu։Y{iFHT|&8^-e -"잵Z[KqUKH$Z^(Avy@5JmQ\\ qk */y>ײUI |C}!b<褗<5wOTf ν8SH zoWB~+z_ٲBx-8Oƹ|oq*Rϣ-yGuji"zenTs7Y7tjDa(|&z;@1=f>i#U|o4pD [O4Fڌ(EDDOGNfչ`ϨHETO9Z FLd"̅j[HWީ`f;& |hTג 6 HDxT 4݉DD6HrK(wLXߑu9WyIWU<>݀_mz0pG91"(Vjź3ԋ1E%1DFYPBSn% ykFڒIr|?# 4ů~r8pMqUm8Ξl/'/rC^/Ȟ,Y]]DIK;KEePr3Ϸ)fgT=!)h]8-}_6i~`|5~KR׻3$|rE25}x'4} -l-CB\D%܎Ni"bV B[eP "Ƿ^<aCƩM ܫK)2fz,2-Zt ٴ;cvUIKЖ"tq X4g igipXQ8A@ҩN;);9W!G?SCRz[بX "VY[@ƓHLï9au/.' UN )b=u.: txUI=џ=NB2Dz+%4ݥ(j'x)?xO_<=.XdĀ3Y^mXEFh sǷ48l\dT!7.E 4aLh4z{b s&TJܦιt߶,O_T(aOiCF9@̍|-#e=^%S?`/{w8Ui&24tބ0 U業@nn6xYL6@$8޴%? Oq/ %,"d{GB@{8˅p̦7Z8J(>*sa1県&i»T^2NV:AENKGwNT~k@˗W<3aor(<ހ fӆS/N`km42Y06e T FZ\_Jc!\YFe#ۈf& _`Ke@|$t oQmYgC;WBW.dL%_k9C0$b]t_8CϗdP857rTɎVsrb.` ŲܪLs+To# h Is&o̽B ;Q淅 qנJO0Tnho I'Zw(Ӭħp_ S4 {ZM4k-R.j5P$Uq!ɧ,jW%MtU@f58gPyoW,Gǧ UyP׮POCcjO(`M!0v^WNBYhlzB˼]b_ b,'SI#QLL/.Iw "#)F{ce#Rv.H 8 !4X:VEdU&CYwj!k4bv;,HdpJhdq;*$Sљ?01H2>٭ Ҥݜ4\񯪸$~LEKp !x]@`YCNĀ Ob\1/7Uon|,4yIA)WoLVH8 18BJΫhG IQQ%/{H%(kYx^Aг[iu+# ccHmOW CZ@+C&Ek K cȴt%Ng;RNu Tz3ޟvP45VΥo-%a5%!Qj+2716"KoWo_(A}1,` zGDƗDUCq%\/8ڄj̐-?ZkOU|byc5yBB3?#JgXH) ;bVK2ؗF  ,/y`&#d9 黹y*ю҆HA|t9sCt缑-#" qtBͲ|Ҭ: ^(+!b/Ž 3J>\ٖlq-_I=Ͼt]"mKFpQ֐W;rפmzF ^/WL"0JwAbS<+vԿ@ݏKǕs&Us%w? {H NZPu5rو&p#^NiEfy(IGI;*S+(Xw.o5&sfV[e9`/^ OA!ɏ.|G GCXU钫5DLb o3ZTB__85)Zov$L1C.oTR^{j\:^qW>+Pח@B HrS&+Z+`H'#9T t~:۝qYI$ց \8HTP |h @Mպ3H!خeJJL+Lu LBdKV\hHfҥߌOZS15" T.Nn3 /l-4uu^T544 X+/|Vp'>ڃ:[:v @F9B yͬ2y9p7RsaL\.5)EZ*f'M9u< @0ZLpn|DJOӊoN2XN dI֨e!hBKWopmWQ8S $6 =tEl.->Y<~]uId\ӟFQP?Y>淇UwHdQ?C[-jkr.P!e,r+$4+z,/ CyH)A@eH9D~9~^}ヶܭZH^.-<@*hDm'F%NH̍?=>T*_>4ZGNw Ł[%m\ 4{HaETQbf)HiP(Y*D! .DK#+)4䛠qEE>X.#R>Y? +#ݦȔ.e=Tf7T)tvk4t|f`GXGmy~ma\x[ mȭ ) \cb`+]$G l c-2xJ$8)Y:w, XрqM`EA@"we m0/>yB)(-&o-K!sGJDWFrKǶ8)qʥӬ~އk\BՃ ån"xtdLYKt.ƚZ襾eZT0/jEMRNj!q4/h8gH͘/E9|)tȮAuʵ@}2ITȆ־BE$F @%)+Hao#;_Hc,$k YVKwqmI:5Apis1O6i V#yh.ь*[0g4rY l%RX&(Ѣknog@c$҆60XSQ W˖D崆SUY5BӹeaPqWdN2t"_쳀=oջq,S2M3)\jFJ)0Gۙeup9h Մ6% Ko?|үM-ƺ^ÿ ynҵ^柈ꃟJu?ZĪk8 VAtag"V,)twk*9cm,W"蝀DuA_({ D KWRQcs= z:q;>~ܒѓY ?bYZVr ۰7eyV>J lX`,He[pc\7n> m׷*'My"pdX$?Wh{+{\YaxT2IoJ|_yg.^LMv]ƃ7> R{2]/<%@z9l[Ar,b>8:LĹԳ`Wwd?4Y Oo)0B;g+u,Xa>k*kz ЅJ CG~r rwoi p  &$QK`ğzd%ԝ& .U@.dƑ].GlJo%bo"zraߞvaEǰ`\jv@8zT/o=ߔ\I6.ж;Utur8\]I٨'Z;U nhZEA%g&yPwgSc>\0 5vP5JB&yqaV14ɋ&Mr"Y(D3\[M¶bs yP4ńA]JJ˭ؾ$ӚVR=hijX0\>E2⑵P`Hy uE-GZ{TV Q5W$..ٿvxRqJ1 %Ie`d[]0 Jh+n5AN*.: ac`Cb@'l`Ղ WCSRZ2Wnq1ȕp&XD^IpVH_5=ȡ0kNjrE^?Q& J*qlb. z+,@R<0rNg?(p^zw G4 ?T),: ;JfAz6)LcA Al% w~%3&qk9{V[ L)d0Ta͖}f%\ӅPD AXILpC$LdWoe]>&Ϭ۝p(F9JDoB*:Y;юCCW+!ë,^nHST2}KG}.,+/lmG-}[]y)($(6F۸6D;h=S*Ü-ӌ µ٪A-hioD欠bx$ϧ)FBMɌBDϸK~&=N91ЭUOwar GCޖpΕSͦ ఎFER`;Y idx/ks|44]+Q]+TtQWU=D_WW9>EA3s[ 8Qu,N>L{j+`|\v+2D\DP)UeTG(K\>*bf%i7D.%!9i>ҵΠfCv>h}@/eˀd5%FpyReŹy^΄g.up2_/,iԪ7:a\{b 1Ai#kq!K߬7e\pIw~^d'8ޖK54W[gzUMo*-,vIm''b"l]hz7LϷFc901l o^'nMO>#.ОV^ė= =TM9CBh-}2D ]$ dDFK/'qW'hW_s.z ~7! T?G0zf[T꺶Yn Ob%C~lUУ@m:4~~v-Mqh8퉶P띁 %Mh_:u*^ћdc kWZX:'zj=`uF֧ RZs"cCZut`\&@ @n7;̕"RHr̟`r)3I?{9.z;yI1qnM/v+#V*&".g?\` %s#!=9 AE$UO<$4F Xg[$Ѭ]/"[pUls0<y| 4Uu5osCHc07IeNJ#8z༐ZV 7\MCME޷t1,~7+^q#N1biQ\C\H7s?ʠ\|5=:Lt4P]+8u؁DM d;;`5^ 8'>T`fx#uC^.5 7 >_-H.;}esa.!~waVWYxgK)@wK `u'J{C;(wW Uo"5M¼rɹ ympMո|>.CX_e֗2&NaL1s7E}[ T1u5}9Y6|Gui3P#j(A^ޅmEB_ {yDzp/4:ڗ6F%݁z]ŭ`y owa\ 30(zR֥@{T];~PHh*!m`"ep=m>PcS+9+6gx \QQ,AؿB37]7L(V`ǁ :@f!h1 3CZ.y}]< 2-;Wjl̬^̮OoIң!l܁s/1غMQ.azxd9ra!%/,sfQGmCiWM a7s5Fl 'KkᎯ.O)QZ8?轐v>#'C `+fm$ѢSsȚސլ/i=s76<ΰ}IF+mf7-Fș-ND:۶+i Ekz>uXܼo |Cq =#&`=A׾\B3@i%,(G_t ಁԌg ' c)HBv MI`;HCm[I2W`AfRѷ.B|hC}.29l:ܹ11?;Óײ PfJA4,pH;1Y g̴A9p)=@ RW#$B^plQK4% EbЎ"NN~ye̺0Nae 8+U8EɈQt:; ~R(vzWLTKZiݾ7Q.&4%; e">92*-E'CX: w(}C?KN^&34wW%mpaz_"0h={˚YDȡAO.sws!4w`& zM f NuIlyܗ3Յ]@G!!Ze`ƙ]>ڂCz{#ɤ{ *j+)VZ 6QZ(s^H6G+=kmk9˼0ݷǨH{srq&`hOW% FvږOSї :Ed2 UaU8yOõvj gTlDU8!BP^># ۙE.9FV[cB̾iu6]d3fHxYPHʄ6z+T h&loݶbf`:YNۯ wP|]ȻTq$q`;?,B#qFϭܟHy3w[|YT *oƟl]k1^ܺzȱ|{lCsMU+}HLO(WkidaC#p(Klizd`cϨފ vQ&yE84tcH\N~օJ/_%CJw%!f= LwUo@hROë6ް)7 mo3nukV@"_y=ql*M&p,"4< =NY5q:dS۰Nžn뇜Z@ova]8G|x:<˙WѼq69 !!GϞrF ]=,9ZCSg!4>"Q +2K.nT oJcUĢuWp)5,x_vEMzP2&ӶT/%8?Y;\VJ /+34b6*X%d&#= ycAl0j&:.4B&¢ű?l }#3ߪʭ)80ݘj04kŝ" 3aR˧@u<_RVOdĭI%@#w-ږs ~@K׀, q_VygN6!N0k)1ϓb]>h*1k'Qi >q28uNGP:c%Q M|m5x^ Ʈ-vN9V;Yܑ,iRt]- \J*/C:Ϋ+l JlwIfA+VҀ,ʶ%K8QJ & ]j'a04SU^ wq+9"Vp+ҧ&/Xsz95ҡ;~iӡBEV!_ XNYv5A %o~P-FCqjF}hL %]޿!ڔG4JFʝiѨpQg6DXzh|]L<A D)<չ5S1.?AR=1c`/n7 9eCPX* gӈ(ѭ(x3D忘 2 Ⱦ[?ihʹKSI#=uV.f zD|X5{vnJHTicZ9+ڢm,MH[k:;tga5M@7D-ز'/yik 2T(Tj3an1C)i4<ɼʼyK?g*cF͎gU_{LAlr*舒=ץ_AK %$(+9e ^1Az8Xvsl{[(=(eF]B?%]#bw,~_cXr*dN$0 VLOgxsc:}q%ɻ9웣d'cdXYRS+|E&="q7< r4}NjT++o Mg̖;zX̱.?퐲E_ 㛘ڥ_\8fyZ.%fÏ!-~Ĺv6 k-FfA]'1Hm d%eMN0c-kW+\uyɓWG (}*zA+xhcGY0m1塰re i@G݌|m,,h&a)._s@{P>gtJ/Ԯ\6ŕ%m{_:r jZJr^^$jt$NG\Hh7A !ih8T{pvTd,P2Z6(NCNԼQn_,M {[ޞ CC /֘{-jfcٵd+Lxrfde&0Nv~WSY ؀3?t#q ()L葠xᘽ36GQw m<7M;<!B<@GU_IhU˃4>LhgB_|\`q",FQK\Փ-Ī͖-7iV`}lX[7-w`gN_&E=;KA=aF>NB_;G)+ Y+j fbiȍͭ2k#F@kaM7ݩ܅h~ŏx y`WK@l ٽŻ+ZHesk` H: 쏀ĻL%•"A$Ȥlf//Zsr*:¬bm|!lvȒ|#|)68`θ 8yl !&6v~ -m0b5;'4U^vCsREsC:(6-lDwam{2P"yrOI&= qu*9c1%~V-8&&jP`3DBϜ?Lgt}-6PWy**|DUVĮkC@㾟T{YNUU iSsTs> (v?B|Gh 2K|a%V9/&Ҁ[gŵϕ1'J<gmg5 X1M.̘އ%YCTnzBx/:'ǓIzA@L5r ,4FIb_ge+4#M.;jS7I Pk +F9Mx{~a88|G6 VS e@YOxJPJ3o܊]0rR`CHpX(D} #x\9;|f{{пOc r\.Vn`y" I c݉,GfҞSV<)c F Gu+SOq#MLHN_(CNlp0cqp[vh#Y 92ɚ|Xϩ+UѴ)|ӤC6ڕ*<䦝Q+p .L@`nE TQ䐎 : { HR#z[)IWh'wٰHvB;嫠uŊ Co?\t&ؗokg2Je>WCX9m>^abOusx(MP)ߜ:bIݗO]WYU&yV>&`weVi q7niNRZ׽߾m:jvf%Ng)IG{(8Cl6%(Sg>tHP9A?\N; @Aerх^mkYeZrڅn8ɖHxvJĝR.ՁZVf<:|]^gSE,5js*#]b^s롺$vo:>0*/.ߩ+q! $ˀ&/t(8ΫFXC4vw,}4?A(Jy䚝[07#uwzZiw2٬"Vˍ&DMd--́wSgrhe/ Kd>bg(e>iU3Tşi"vo +l=&_vViPU6(3dC H*|O@, `%ތ^ؐ-ّEw;Gn5dE'dth~ fZS>pߤe5[q8 n}9+rCXJ5K%y= ulbL{ԠB8*yƑ΀Igpk^YR#~9KP7po2lϲ-QKʚ AL ~GMgxPoX*aT#%||:%;G`\y7cjDIs?3vf{ B k+=ۈ@= ^UjtPAC%8^6<ׯvL5F 2iٕ\,\F'U\lk c#:UHo cWmIlU!"ŞYU' : 5^0*oJ_tZev8#uP Ze>GW9KZƺwS&&1ޞC9pr\ *MWqճ`{5QAuv8|ToeL{`D`c8~ qPRyV[kHc jXQ(|֙jVA6z\V:4 F'Pi31 wEgmk!V#4jso!6 ~ IM:++^;2W e~a탵}('N6z`->2e|ȑAF9X}UVͦL 0vݕSl(qڢpΪc2RtAgK&Ӹ׬3 < E$ RZMUD Yp[j/[Ma4 eٗDž ⌐ḣ.QH,=:;Qxc>^cg⯏a4܅:%l"˶%Rug=q,2Wmї]`p;?{^:dF}EIOO5~xg kO*B.Bj y2 }]1#ZY~ޟt\T6s+BU]ʗ3,Q!Qt\ycaCޕ[M^كHN)7Zb"I0+jXޔC3,_Otɺ]KO7)TNsopE-|>9΋鶒|zL:Ứ lܖd3/:'EK7lW\g)--gv7uJEJ"mJ,$! &nf"#9zk@+'=rU㱰c50ϕl@H%NoZ'T #3{@, e\"]dG3J3|q'& :Jy8 HuzZ:_cFCC`YlS#8Y? X R'#)Z]@h" 21ȱJrEb4TS<,Io]EߟY`:W k ,- ]0,ǺƆc|$#3>gX> P7z|Xj5p',#իPu"Hʍ t{61\+ G`̈́WΫw3۫jaۊ֕R`[> G8,ӎccWD=h \n͛{R.p|w6یtD sN(|L߭)gLN5 nn1voߚ0MyyZ~w S =imk{* pU|c*Qc_I}ťiDzuI!'߂1-]ˋXSmj`2e^6h+|4/}n<О_3Q379l6{uൔ{!@|2jMqea:^o4 FMLM a˖^Xj5nT@̒nb7ίi9l`(YґdBjǒL xPЃb;ůWKgVc_][&ȳS#cOk\vNho3F`l4etO{39 mQRЏ^,Jy&̿ '宴N璞G5.`!kCwe0Z5܌>@*ke) ?)I9VvE.QݬPv1_dCcyq= p8N1BDzu+ : |?A9l@N(Jz^#$K0` 2OK>,j[$EE짃7q[#MXSЎA'.)׺ IkS(F.y#8>AV|}cLᵘ/Sh['qI'/4TZq,) ^RW jE]b._0M€N?kgDGEB˶v+V5h}sd(y;&@zMAh"W$pswyu6(Y`E6gSY&O,̄)eĘeLajGfe&oL6uj~"\k w9|Q[f@U_~S:iҊԛ3 ):Oү5GזwKDB+(FA^ԠqR&k홍9zNoqoދsNj.m'sp`s8 C)$t z&sEOH:J" E^\{Jl{&5LO ވZK(pݩ&#~|?5 lcjSGM*O z&!CU7`ޏWfiR$ǍEbREvtv NcP9Z!9.RC4j7ug88 `wԂjB6(RnZ]hÅ T1^!<͟Ƚ%[&^YȻ,&X!ڵqȜNy#2A>%.H*y JE 6`ᾴ+FŽFS0|qLѨ"$f4P*!jp& Ykb):(AP)-/,5f:v#ޡLd:SGR6:JŦ6$+`zV3.ì9Jɍ'&zPmRHhb! Ovn`f61zLW+'>Y#_>Q.XY(k^ko,yXYW_8%i&kX  yOFl`Za0rnk8{î?.Uono*}K@VCuPn#m4iW ,dzZg-v|&Onw?_j^_B/FM,0RY&ı9]&:ڲ1P9ܡ% A˚ͶplIn5_nݲw @TXb}OkpU]äSAwSV>4vKFj]<գΙbMS8a6 x\ = ϳZ87ɔzQʯe[ 퍪bu߿_Ob\n/ Prh~C'Z\߉˰<5s~^5 V7kfEn#סxCl~-$ڽ}68of~|m|)v J&cKܽh@quNvE: X6 >~].|vQ&T=Uyn7ό~@Z7/]J&ܹQn=!ԋ"zzo48]S CU$#6ݭr#aˏ5g\fB_[DUAGHe(Hu ނH1~//udi[jFۓc̏쀧g_(ɚA= 4ط(k<^!A댬 )y+'X^v4^B66'1_uѸGP򴽫V5dMr1mBڒc!μbw^o:ep\c.|oDŽ-V6Csb+ё%D VCbr9_:^PZ;q8dbD*/ӣ*|wԘ@~= )\.ā2=͖520C2Vl܆-޾HOP */}EC8Α1R JTAJ-Q8N{JD)G 9y_""El0i:y(Ul[?'^XV0r~`cţgkA}}DެrןmN<…:Gw yқLxyFXLMS&C$%+E[0Nh(¦`bݾ >ۄ߯W}W}&5=|\_a՚~&d.G9PwSu*χ1@:Q4ҋCWKg|9{bBO%GIN4N 2cPUCF;*.ݿWHdK-P[rQT3"N''i2.mS\۞/YD(J$éKndž((zIz*sjw= <>0 .NJ3ZIb J *%[ 4% j|HmQi`mv/QbWxv߄JdDS$ 2{թ dfGAL[*PI)`h>3 zP@ +䎻=>Et|T[ufEձuO&HX+ox|Lv $ VD fMQ92 z''hasQ13S^mx)hLc5?|7d sڕP:dua+d%w'Mbdx<9: ᦲKQ7&37N| z:iC7}B._aRR_Ĺ|o Z0pV7u>5a3Xޠjێ|7cw }=nHy1^N6iYܟ*=j#"q0WI m42 `-VBAGHG  qVvH aL3n %HĎn";MXdoʭ hbڤG%fe_gt 8޴:lY ݝ= P uƃp[ i9LF2PL<*?*ȇMxyl0; K݋6ɩN)kU#(J N( 19K Wdr!^6y15:.bJ/UѸbTNʇ!@ϙ'QpMWjf}+mL@m,3ay07Iyj GޖQ|^' ETytG ٹ1eݨ{t@KÙŖfm\A9C$]6{VR7&LeTHn],+g,"2G #(Þ"('KV7Kß"Ũ_DU+\G">NK<:Ӓ4^ڋThS\uI19 -g]I)yyUl;N+\뀣S7p;$77I6LLQe8{Vyv8 $ O9(V°n{ãmKRpcWMLoOFӜF*A]  9HQ/Im=v0\hOfK+a7 W+%W 2(xWXE/_WY‡]Z|v1ʭBTr/ȫq] Nk·D絳E۔_h,e+aInzMq[`AzP wwG;wHLO]QXB]Cr5:i%7r+)D<,u|x'cz^`nEn%oXK&|RG(/؉x|DMЭ\KP _*r=$ &m~-&).0٠grNpaGF&=)^AX BG?/A!Z}J܉w; {mAJ_%Rx*Ə`\?%Y\W1l|(6kcU&3?| ueQH8/!+`;K^ȴ[%fgG >s@}uS8PˣERo/9p]mۚmNxx%2.ʄQ-k+U8G*uw '$s2\# cÅUr:`z^ߗE?-z"PrT5>XX)y׎+YIln;0A|i pc4f ȍQ&ƚޮCx!P`Ao獘Њ3GaB!}N3c*O8,/tj= tEjv8D@:53:QG^T;!T>)G+5/XT*@!0[:^V ;JhpHY3ѬŻ=1ܬK_d61|eh'2ZJ1X,ebf4Zढ़ H*m#i1zijd}@p`jH{<M _JqTzh y@̓j9J(94r]z|oE{T&9Y@V6:oY#yp; UA/%e"i8 1o _V !K%[Fq5ux΢Rebo* ޚdEt5"3Be_Q. -%hI# ^d*d>Nwyq% 6pZޝna⯛Dܭ?,%#Pc牮\ #N)LyŇ,rkyx=1Z 1N"uv >Q;^C yiyJH\^p~}`1f*U?~#Yr}NVK]!C_"ώJbǑ%gBp2Mڝ~חeU XSOZ .) #m]'Z/ DVFq>"|^iw*:hgẎ6v%:-Ͳaƙ]:sWUsi,g7kc[;"k>QO2l&Ɯ^e1wgd}2sR]wyDj案w)5Q88 .LyPyn`ed-)y~NKOZjy^tncwt~ EÎdD'bZ]Y&3|hHuek0 6ɒs}9RF*^LRJ1|{ w*`Ѭq1q3S}eþ 12˶_,gCs]'X)>zqRwlCoP_BhQ4Kd{_RLYam~njoJ_+Er"$TL_ŶlEiX_MJSLSK:y!2ȱѽy`diդK8"sW"\Cze",,/BUVMS?9f%uwmBrdLe^EuyB(Аmn3$q_~[:n[β[;fUk \h,KE֪ݿ]$1敵ޭRDDbw&Ѧh $$?`q3ùgXDe%w=öwvr;_RErߦ:վYr2b{F6UL8rhuU/uc+x/z0Nq6q_b!A 6;l,-Nm{ %QڏzcBD&Zʶ$̞Z1/ yRxrE 5kAӇuCϝ$`P݋`1K*T߸any$~Ca(~F7 !-C[/A;xLpeާE}> G' ϓ0$xa=c(YpnUHnd/A} pݕ>exf 3IDL)J#oA\#_3"ʰGPԕMh$2ڟľ0nz~N]i۩aMXeHv@ki 4򃟍F.]5-QTP=F(b :=z\Nw0XH :%X D^Ȳ|r9 #m<8*fnUlƺO@VѨ󋱵NCA,?#[SM©Nh} 3=]@47N ڢQ2mjEo8[2D%nFCe {>פzH? ֗Gݚ<,XTVtg4et.;?@`m~`35U ieDN|)Fz1?#O*7_4f%jU7}햷eGsJΒcC0SLfw$TmƜ{qFC,޴&a"ʡ#*3e̬yW566'~!QG-~gm`( zx 9 } ^[FN~ܵTՂX<Lz,l@ 4ܮ( f93TZJik?D'k@PNI;*5xL#u2J3UAp$Ƞ}&wF|U`QhĵaxUJى=T8?dI,n8lAŮ!rk32^>ˇXyEVYvڑ븅%.nԫn;Ո?|yx[=dr0{E>#%6ǂ:vV/l'd^PQ5DJ{3-A'>2|KFz7AD$rx\s:g/Y=-OѿK~c}OPMh@>E]}FMHk>1Q7-1T om)𖮶l =IRLⅳe+nPT ]kƋFTnm?u|\=;1> n$G-s̹P2eV1ٍj"RD8 IįoCA, Vջ-|-Q¨ͱ,%RF0cW$jIAGGف5y$Ej~o{h2##`{eDNkAq$ή'\ƉIf.g鋩ۑ='eSuP|K5u8F?P4 s G+v7a^C ep֪MWf/ըE*ѣJy\6MtClO)|7!=Z-STqzK<86Kc@يW}q+H}k3zq [49KҎS,kG ]9K*Zòv 2].`,Fi](ZS!0 9ڀ]/.ẖ 9a@4`b M= sl'~V-6o{mMq p>"|#K`\qdS-v%E JyvY,~FM'f)W\E#98ULə*6a5>]O-+SHxDu ^C@ukR Qـ0J2ޜlei(Dsk\ӻyè^liqdዓMO|s7нwnC4}>,;4&#vWD:Lf^“GZ/~q(*%:%^>B 0.#˥ B*M&ЙtˇH]"=ѵF+:X\K|!aə6`IN@}T}CZBx ;Ti'poHPsÐsRWJ~-NZ%,h9*.xӌD58뷨hɀ)oՓKZ~Ж*a&j.[㱯jF/=OT;~JRb"[FE 3nر{6`>w[hH1wdh++>d+ fCXFK 8 ^OHKSuؽ˨6MwTq8Gċ*A3o13ATP2pTp U;zoȧM`'iJww`{ ,di.8ٻ y[C?b'0SQM0u vq(Ji *%?k#^a6GFHU`B Ņ g4 !FotE,h}}㭻RG Ay~Z{- QZ<WFOg&Pa_Vu7z*o 0`ERHCĐWCEtrqB&{~_Wu4wl!!ׅRUx4%0s+*J'ݔy@b %6$cֿ6f(Y2*[Hh%XiZŵwEZ+0c;¾ ,ʠĉY`,&L`ke‘jֲkfVHtLl!&-N~`̑4Š=*/'#D$cOI<{"de"]7uO$\o9N *n4O[fл~sm%q3{Ǯ7&iLPN XMZ'fSo"sh s' \KՍ?bT*aT#G_ղMBxPa5'_  g)GPRKHjjg@1&QBI)d5S ?ӮM-B?-Ypv 9"F䴒!ؚr&Ũh["^6A^ʮ .9GP& n` = N4FTjhShA&EEL^_]!VsN>LbVg6T'ZgV:1z5gEΫSsQ=QVV*\r eYr[~凲;)QCVģx7g%[|=ItGg)+޷6n,[1lF7KS áB4dq(T@ j1s*kIR0S=lJAu,=`jq_ 䗰IOF@ZyPL/Ϟ02bqGW MhOw?`A`ٛ9 wYA,cT6: k )ι|VY)uC@ggMlœ_2#Enqi`så"E&keMᴐ}뜪 p''%I!.}6 3-("-NJ=/ eD@j<uhF̬Q W?+/ -_w4B̕O.u4G*tso䥻K@4O&s2E0BPj՜8iΓHs+op}vZd@=5PgM9@JFlzS[(W0@-%߾1Qv(P6"&:vPnn,ܰ`A P4b^<đ+GmirEfwChڧ._)ʗEWN,D%B\R4^5 A.˺; 5W2F!~ťog.j1Sui09©h:I#t]yk8,ya_KSxz--b]𙅭 c6\0@@'1->% |zR|9.e4X jjtPa˫4V~1fN/X4V@zb4dGӱuL16v1ǰڄjE؀vU|77o=Sk4`Tȧ}}[l 5Fޗ %1(J@"NM5 ; !29`TVd[ LʌҽǎtGЮrWY;` G ,pehE g™]mdpᘉ>mYn |I$F&0 5x^uл{L~ba<=xRҘV)%pqQbZi0]6X9^ vd<)t &l=5J"U62ItuY3}*:q`;cM{I)jjX~' mNߟɳﲼ\?oa.j,)E{7]jbgԖ G2…͔ 9f3\A"ٖ \U ukwt b/@[!vhx($wuĺGC{hHkz<HѧeȎ9b֕Rl呏8g؝e*^e.|z*?܊cF,=gp-{͎v n7]"MꞆx4s_:Bbs .l?6."q{2J]dϫq..5y/W&qLۗ  k}kEKrcIbD!E#ˏE-[/e=ll`rFQ<6?F'B>1uE!vIZ:e=ũl[sSY&KfZER%I#]B2ny\XAoϢ9h -}(07sHtʳ _\j ~s_֨!"֜J^Ln=<SÍDqXmwwZ=Vqbq@0+cgj ˺0H-i؋Vz$]EciBpb,磠B3 KQ] ta XsٙR~,ATN]bO12rF.a')UׇB,)*)Kg9]c󲴸1J3DM.y1my#tr8>LQWG@Sl_J# ,&>3m2)t@N(~˥7\{t·*ʃu~HZLӉ׏PLȁn\װ=.EF g5 c(b iͰaٛJj; " 5f9вJiO'2Y&M2NJbW(P,E$1$Uz"Y((lQS'm٬O 0ss2O>nPkp|&mr_g,O"vb1/&46;A7|a!R9.V<# =÷|"裵@,w9&pc:Tف*ƋKU}w4"ʕ2%0H*uzV!:n1 Ocܮ2:kQ όzqgZ.7qG(C"%Aᰩ\IQerzٶl8aТ=cb(S.LV鋊geEz*Ak i$g[<wxu]a\BP' ۹uK8[b2+RX%IM`zAEԛCBOWӴm[⊩ 1X읖JUYrS:jǡ}PN{G̐XxDX84Ȣ$8 %Ca-UCLڢXJ)#*;CiBQp/aTA\':Bf_vMKp?Qh2mznyy#\ vnzl?h ]?Ior;| eNTi^π;8}.6_D$| 0X\(yv}r%sT@Dm`ڗBƬyY{ZLk|,xxSo'"RkRXB]6U) 4Dܔ"Ѡl>K.t/&}37@؅Dtzfc0{1`coDϠ_04@9G:Y>yKTHqOa J/NmYL^˫-}Y Q-*ҼuIͽg{?v"<7vrD~ FrJ '&K ܖjRB[y>6"=l%}2G)%|@G2ؐ 1I߷|S_+R:Дt2q>mR] Z!jKv]}ef3;g\_'D1G"FV$+%Ý Q`WXEUA])j 4#74.cziJP0k7o%"~6X,1\p~ӥ#\R!>[\y_3 T>/ݛcQg?{vq_t=A:ʽ%A(J2zrsgɕ|Q%ubfQmI3Kh ܃,rl .H>y)\lL$r(rf_ɾEsC&V:Ea_jAaW\Cv6:CH ɹ|˃~vL_w')2^8̞AJk6 xVU9 87d~ՙx]uDO_Au2 Tvj:_+߹k|}ԔuT)X6/fio$oG#)oF5(å'HO!6c",) ߵkOD=*l(jLf�RR ,j$&\'ܿNh\zGa.6 +^7@qr#Ps<~`e(>,qw;8&¨ rӘuCE!s-7 j䴑Ds%yI@qZ! Aa ˇAsyl>T"Jz)Kfپ1yc-3¯{3<ױc&1 ᎶI1%2 sM@y9`2x. ~qWɍ 3UI)LLIf.!)HW*"C>zze۠#6ܓ^CAzayLgvwmi?{B|#n:cҺ;A>ˌlhޥ-1(]Ms򘋍s աR/= ź9k8tU!svQ wg#-*?VfiBZK(o=Ùt-B;zP95{*\NHO/~c_d;ZnZrT:ep;y=L9Dfjxb9R)NIL1@x%.iH=, fI_XEM/6D`Xq:ƴKeJxUG͌*znзj@l-$R(q-w,|~){Iٽ+͢#!'1%UVkXHމ~g3^k"0vF|VIѴV+8ًya(aQjIDŽZ&yA[ 1NRgJf 3mne8o"K^vQA )Uο+ebvi?JPh (S/p~SQybF>WJ#NG|0r&kRqZ, Km5VˈN E}k/e[|S5IB˓g=;6dufJOKHw(qHֳ:NBHtl>o] {<ӫA!&E-}Jᔑou;"i @BmE+J}Dt=#-]h k&z i1=wo˔Հb!W~$Hϔ*Tp6dbLh+a1#j\%9=NU5Ke] TRƀGHPAIe$^4r<%+#O(GL&}s1Y}5gV)5F(I3M.#*o+psWeo=(}".쑚u3Y8 zBR)hxW Smkeߋ038%5ȥQ Զ~:}_7P H@CZic1nhSC: ϻ)'@y@5:%1x\2wR㊉b]ILqVf.4de=HwB4c;,ae I)kvX5KB V׺b.t[-u >Sgkwn03Fi2x/؈am$ƃ}Π}`/h 4?# ~./P75*ą{Э{oܺԝH>Wmos>*kNF>D+^X|1UPoȘ$*B6 h5 ޤ6X2genCHUPݙNdKڂ?_$Gߊdǘяt"schJjNA0% m+Bs[ֹny& zXM(id Q#ezfVCN,jQ*̣ >*Ew0oRaendQA\֨>TW ƗAn/ҟ! |DnIN,o?hUWC?JW{,"#Oamdu^ "W rߧY0&:zH`6! }LLsCgK\C&SLeAZ Vv7-S\ꝖU.dp}8%lz3&Tɽ7eV8U|YqodWjFp7x5Ric%:fz[(&"ԴpXC%%ZBi I"#t\ "/g,.?`z񗕀@\1X:p[lF|vT}{NJ M9f~z qa@+7;L =&~71꾡7%ϑ}iFLQ @Fz|6yڈ뎬j_?cdƾQkI@\Ob9r37W(M&Aܾo \3)ʠ"MlU7"VM%EŎ+ト jQtc;j;]h%d"[yoC3Lv[e4%pڏmNA Fe!m:[g舋z}Fd];pcMIHNbN;Y h~L8Y*\ZLyg X+?~?x\Ol ;{T^?GqS}_8:>$ "+jiFմKPۡd0D$+2 oB#O h_k9#8~0U]pF叻fB7gtۚ` 覮B2;"ଌ`h1l y*E (T6 "1O#+vs%mV{b gu;A)9j9 Aiy@$MvĵBxU-r!BڹV}U}Kg½8bkW%ҟhteҗ0 _o!Gi"f +e񚄼VxZR϶#SD-7{\$g-WȍcRqOl-D ʵ[|\8\V34D2y]uPdSӋG`1pB.vguV)YWI&7DSdÚN+-mO񝙦B,PvMzr%jzԹЖf|ƒTAdRCc<=Qu*FG7L|0OZ4kj.c1J:gy*G}tB3ր%Q/g]As1-$邵Q5nZ`M jmYj BqSɞ5DhQSvx+VcJڴp9L- y󍁋~8 .3 Gi1^5# CFeS4bVG| |}}?@+jj{fG;` luG7#j(| s 8Sꡁwϸn>9AmZ3r*Ԓc1"8qwo;+>L2R.-ˍuUd˹븤}t;/_ ;\ |Jrⶈ,r6V+3%śdl;!iZY#\ "bܖV$)\1O|~GVyjg,[X!%[?ow/Ɠ5%DTGXv4-YPd` B\=  7$dz HL)dE}ׯ"f-:sbP͒lhj/Vc66CjtERa嚠JJA$NⰲrEjP'Zn,H83F[^!Y뤰381Za_M<~~YO2_kj(OthТǟ# t5╇@p* h&6XE`=_RI\PeDg_Pb7wfF%sc'ǔyf S)ퟓh*WS,'A 8ua2Djb$l8 [?ьO,'/ #m,fo? d.TapTQ j1\,!|h}8h'lx,!q ^ F8N]%d xĊmD[O b όzWmw zŪ#Kb4<7FEY(Mgk`ʼn螽C+$xne#Dd+tU֢8:Ű.Msu7SI:ʖqjƑC}!p!L\p{|/i3 7 u09}vb3FЀE Iq@=C/MvaZT:lH.QRŪ&u"`K@)ηNJ JSS#~]cq ]CMqC_4&:c:acZ}!+ofDհ}IHcyN.I^"_rmL8KV?VJ8uXVcAdF tNP qLl)?UvlvfcPp#s@mO-LJ{G>}*At3M}#Kc>l2|e{P_n?k7'Vo;VW*s~x'jErSv)_쁓 z')8[#Fy}縐<37mHM(84iDqJlJ:2$`%7Y:gKTd?`ђ׺Pgyz5{aYII>0Y:+t){`԰o(7N⪫hu4eZgKHgcePX5 W.G_7siށ<ҁø;GZKҞ?;- 0*Y]@-\Kijhw$CDhq{cH?Ao?t]螷svV+^捁 J1fl nɦBO8>]0uD3!ʘ$- ,4ruAl,?RłˌrjKB'Aضx$RIHFNvhS5{ ~"@=m$6>p4%ZjL}ݥHi9CKxPR>J4VXoּJ590h5~FБҵn A;@8.#6H/JmO"'ߤ$H.Z\?+9溦 JfE~%y[O1YP6* qws![S"zݧDka%bNJ#mk#ZF&2(T5SNۢ;zO,M'`8M52bTVkT/̢NKk΂A*RcnO-U#k R[j8%={=c 7 Z^)ĩ *8-U8X`E@ Hilj=xvZEAfӵEaaUl [$]p%]2~ftZ𱁻O)rs2[(OtD0nl[˚ďd$Xn8=J,׼&5: 8 yuiɯscTgؕ&G!/F҇zD"O , =܋ytwМ7_.[e%Up4js_U٬1n#&E@t09~_|d`H iQ\Q\±[Y9ᶎeL|Km]3*4 >LJIٗ2.v)&⻆Olxڰg^-72h?,v-=hc*Y6LUa+0!dk.qE똫d뚹p7nܳĄTb3u@[ՎjڱiU\3~Laxr2!=Sy|)#ldۋ N>B3)AYT'rh _I#^]G^H%?!,f8c+#TFGtF7̆fI18$t}K.w PS!KH)`;0.U#zg3z\_/:G/zl`fiVW[~I ׵#@+;fu0 1\/D m9~ILoOmtg|є4Y:3>zŠoTQģWGB&Ϙܚz3vh"⢗A#|5~5Oǝ% чN]1)9X7 Ӻ0?fœi]9Xr B`6Pp_ uwZܯ2O$t^ל>SbTm7!sb'=(߷]861yPƬbp,\t~kӑk2Xj#\biT *h0Ubp2X/ZrfUm-4n%:`@8ݏ?QKL)#\~T:iuЕ7+JWW=R #l>K/ԝDv3`w~LTO,eBQ ^|6&J6IF>x\z-N*5WB4 (y<?-sK1A: ʜpnAsy Ml^ȋ>KhԤUq":0_ K0 Uo4T/?}&AoEb;dğȣCو>Ơo+λԎjP˒̥eP CzԸTe2mfJG۞:4d0{çya;X}qHB)IV5;FɕC/Y|1NhD8O&%$6ύXWnLaܥ4G p(= |WƒEi(˺y7"4LG6}.%">ؖVF!ߎUzȾ֖&Sֻ뒸bR (X"Fo^Q2oh.- dåoH*ʟ V#>ۢ.(ntȧȊ/ܭ;B[}6 G虎qg tV!q$2`{m%f=<.Ŝ[vxK{9 6) ;ڬj L'MҦ4G&&`Z)]4Uu9*~V{XQϩ'Nwz!H<@Cض|ăݮQ#SV&(KS n4mxpQt+-,[)9fu\a@-e2bD:8x:iz> _PWmǼA(CĹbێñlmޱLi4B+!+ |?7-Pl]KtwncV8X/POVvlpx75$TWC6APV$^͕p9N)܅wXGDϑotP6WJYu_*X>apBh9z:/uKpynI>?{ ;e?[ok8EMbt{ȁeZF\J~ܣ%\Jalwb/kCKNP,hҘ,1~ҁ>~\7= IlzR8P4JB2)m30ؖ{߂e~х?~#k1NM]t(`֥X\cY׆DOO-$uCfJ 2 M(đ]iE#8 |OoOf)ߌ`q8Kx!_gsBEHj^`p/P~>HM2: ^Fp=R$n(쇱ɝ#x#@|8طNO'ÄK =: \W)۱uy]>A[lmϋnπIۚwJ=*1 v9Rl^K?,PLb@HbIA< }BF]Ζ L}苹P/a^삤MLw(9Tz vՄI@'FM,7*?IA9܁e>]s锖-@SL۵ yڹ1ϙeFOlCaqjMX줙f397|.q╪8Vjst"1s/tQh.@8ni~CG9eYy4a9x/w+uo8BҪCp?y۸_Bu,8Ƚn0P '|wg6 zGqaE;wq;33dݏgrR|o¦ϗ8^k &+e[_ <:u?1E oU,}+@tUU1|&i\$0,"tTLG2"' &GpAsHb5ŧӣ!,ejlBnOWRM\KL9 QӨua 6Ȏ /t;SaU^ǴRǻoE3t4eб%Qͳ.;\#ȷ6釙Fml wOmʦH=HC͎U$WQ'ýquVc̵ &N,J;_dO1-`QL2z9)+dL;3uq294lEk/ُ]Hgmz8vr /~=U͵ m% ɧµ0[e5%yQ%@kF}yx+ٮv6wcIFTPRZ*T-Zs@M|$engNa Eu<ʃ':e8 c>ޑ諳$Ta V{93r,G#Z7p&zODTnKq3yǥ,H0KQ6SV6VrNJs ZrB<>G*L*7s+uIHPpЧ-wô@/ɧ,B18щ[EɊO5NmXyu%pF( f8!,LxVBџu!{duU WXsԴ¦Bzbտr nxCy#{QZ[%sPyXaw/ϑG)XMva+eyiȅwh%^f>9&%,'?`B&S/?V{e7QN%!R5P_Y X ̜|Fszh$m9d¦Cn^bBX*wX{u۴Xm_fظƼ&sMN;1-A5DSՍg%fsHigrKO4\֙M.1} Lk;+k3f6l(@wRt״ r S v+(v0c m&Lqs'5QX+JLU';auŻA )*8Y6rW +iݼ<& ՁgT@'p%?}'h||7PY$O 1m'k95 Փ4UZI/b$vEJWHᝋPO8Pk㑑ęcM_KԦ'eH65/4>?`JZ 0 {Ti͇+N~ Wz;<[x",ΡŹ Rj&(Ϊ[`LlƬ1rMw/dzo6}%',Mh]"ʊ5QR=85Wfej/gE$CD(]{"̳7 'z, C,"J.Fb$Y*P_szBaV^-RZq-t l1[Jn60b:ĻxikT4Z=U01X /}(B|@Z S􀪽FZ%hX{{ ‹$+wP!i.9Ek~*aD$@<\ \,1%xl&)ܽ=D*ٻ!^T4(jb4:_+l@jbH=!Z|M 'rvz]!Ւ0z-ģ b QaMH SGy& i{}, W̃h([yvg{#?8g!ҐyDYC8` -[mP!/ѫ ?lDIY4S{YI v}JUy}!ZSC*~6*M2>t*"`B#U_<#R"XdFH`Q>A7j'`.(6ܬIy/Dե4+6GM>:_bo_WQ(?wc7fMY`V 0oŖ8-&h4nGMrga$_oFzae T滍 ~OlbQpу{$5ohm*f?ݭ՟:>.4V[Τ2ܷ2Y:/?JKh?+g+M(fB(qp:hbzVE ۤ {' %]e %^9~]!zloh5e s2_3q514-ӓ ]ţ4Ωv)|24ݥ0S5%Б; ryUHa+Ÿk AOŔpD;y,传rsy1roI2@k \^y&vpɮ6s,h}<;B8 -lI_hv%z~P&+Dț72Q&M{6x>q\*'&/<]&ai\KAF! #ǁu.b? 'c6Ѝ\[sl7ȉWWq1&U:czfoi7[W IJ4f0 $S7ͯ9!-6 VZ֕b_2saUPؤFL3ƼGW)32@  fu*/'p_06*`-5 =G#mdgT{:J"бJ9brdIi;db P>" ͭoMHL >Gߏe'sc1 T ۋu6h ߬^j|SPv ߡ)a睍HV(tcfaPV,ۭ 00XJC)I\n.O[5(ՐF[-z1?d7©F H @#C@$̔6@cDp-zź\^-7tacFJ\L05nDR %(Q# s8`9>4~vlI3AdSWwo'+歇ãσjW/2;N2ru =UW8XUkKPJ3 *`җQ\e_)ԤB@L>;d1-p!Yw2$^(p#پe(8S yK9iB=~3sμH AJvy "Avr_/λQ?KSM9U'_*j"`0cCw%I;MQj d{ml9Pkɫ`Y+2[ڐ.i#Sh ᢍGlD1'AMDO8cQt];^z:ԭRˈ"(g!mзֲZ aA14'5-1b+dSO^D`skMSwT䏲ejC ?߁rfVBb6s콄HkEH8s94v i.9rqMW6K~ڼZ`H]e7=h@Fb*va%5WL>ruT)Ft>%@@7ΔECz z4@Fߟ)S=5eÑDOq H@5}P Ķo|Zט-F ^FS3c6A^3s9@Ɋ9bPoh-t+@Y@"k߳“Bziܼ`W)BTK0N]2)#dx:Cn}nZ[$^mUH"q>/r]!Sޅ R1N0V0NAE0^8Y"4dŒ@"LrG&\PrN* stݽD 8&z𞿦I~ǧD8zlBLzǹ_9@M1k\3'>KRZ[dc&ظt\BߙJA a/^Ķu|*n|<[tSFB` H I$4Q15†2P8ۛTN'xMZZKg6̄~ R3ʠ(8:,, d+q˛g^(B40xzn]-*1 C%zUCErRhN lە:-nDI-JOQt,L5 .8@I7n N5R_JV#JX~+ϮesʡZLS" QPA/e@ի/ cJ6Dz=Cj~g[cdN!w,ivV2;x>,NJW:9N+OTD"MHAb"\7(ui}gh-;M,+Mz荗w92iDM)ܿϘn;JyXɗddǍ:;5.`П+#I*1d)\UO 5sE9IA} bWO\kYz3%6*k>DٮY;^soi}*fUEXAp \zMځ{L2 .iI1HDnh+N3 `ƚK/B+>}R0?=,sƺ0O/e'͋F,Qb 1*X]*<9wɐڧ>nu" yԍF )6_k(l(+/΋uqg?kPtt tJ+/ mAƘTALG.R/˰n^d@͗#ԨQI*ϛ4/=10a9i&x$cAnf n~UHĨF (u63~_w:zO9bBsTǑw\+MXL€ۣ };zg;RR @^O7y-:O$D귛j26%%[ йsQG3戍a~zĪlRԉ \3ZҨq"|,PZme,!qnt.Ô}#bWjxPwćCbXݜЃBj/ }9; })\r1(.NĦ'7#(:8ţK_J4vԋj$62 i8B%\4˧p⌿\  {'ppQ( iE]H.TQ}r\'SK<[q7wi en2BUW~Zڜݬ073ʞ.ݔaž/ @jysH@鄹$na[2q,nȾItz' qC"-KxDpճ&W蜽Y^?,X(f yن} k*Ze;Iy1Fy#t($h1Xߚ; XWLt;8<&#4X ;.w2蕔.m& ݘI]Ddٲ? ;^ܿ/s}[!)@t,*5mpzS "#SPܬiy^7]=nKE)-Gs-YPx*|ףWA>rX'~kVՏW7סy7}kQ5zutj8RDymm"O*b1mVCvyYA͚r(k5l'S1w/DGfS!4V ߝȎ_,D/ᒷp,X;F)124> `F[šsHԑ<<=}qzd3p߭`ڿ5.PɕW(BYybs~9 EumRDsrJ$WcǙ^ąI4fZAb)k^cs&3E!T" f [`KVd"(aYlO!?P&- }Q]$;7%!"=\`xinFHcSG砉L4Wb(j1mdP'#j>F8?OYX`@r^OP#KU}֓Ddžtm½M]Ԓy`2 ٮ8~G;~ !Ifk#NN1r%7\ȹD_gOu6s?dRҸݥq12J#6J _:x?;/W:=+@#=!DN$pzC;]8O*&Thr\XvЌq|i2S/ Ӂ)P6-{vAO߸tZݽ~#*˷좀mދiRbACY.tԙR9K~ x[J6&wZmD oO/( |xVm޺C$&2ǥkkcuUISڪe'9 I=5]1cRbiLy,)jT.@zm.hXe(JA !c! ThzC e=87Ce݀!Z`[e_ٶďx{x1F3NGFݮv}Vn4tC5r)>t3i}UH|pc: *1ksIE]ӾE")a;JNY|:Ȕ䏢mz~Ҽ8xٍ<^ebIbkEvXwRrCf3s!VUI}KߞQ 2FMG fT.B+V/IV莍(0jdrYDQQ|K8aE_ó*\,x}Ɯ8aLs(3THsARqA>]li}~]EowFR=TXq0ҫq4 ,k%gGKly[JtTZnH`J);}K"† C1$_beG'A]_HvGh+@W!îL$'AW2Q&Pnii:dCrSop`;}%gE')$ϓGJPu\a_&plځMr2Z&KL5Cː1ax#S'#߰WY-yDf)pd|/7yM2.b,/K͙9^_mcjſЛ]@sZ}jwKoϱRˏ,fz?>O=0oNo LfО :h]7a]Jϋfc7.'r27G=n\``Gݑ6B qEc|IXwyE7aF% I(ťW=xp^Rw!uv#/=h{xz1+.Dح֩N3D>#(꿪j}^ ozO> R +7Ӭpt<1;/i($_: ss`Z~p{Cq_b1Sw /\hR 9j#EX? &~bFZ 彥w m};;OoR b) D%$zG\5ZB-|/HO`lKxM;O6ܩӶS8w+{s"BKvQB΃y[ s%7>)&?ZiP"oLƘ"@ 㝺:VJRKyZįSi:?FJOTbMDI2Mnҋ*J%q+~G{?.0տZyU{eWYv+VV"Ь3jbŶfvs3EՑ0!K2~N~ ke飑زq5pݲYB!ʐFo\S YJiB=h]vy0/o5E1m67%T C> 7fj$L%Z.upR9's(~ovFi|c-vK0)5jeM'o C7O0yoV,5>n(r%iƯ)x=E5BxN)3}Н85*׼-S؟ƒ>Ppx<'^f3Zf״X$&~xswgЗe"~=ެtorĽgc!ߝhI"#` 㵳ʨ6'b&މ2D7f3,[ A:A y h-ٞ=^LU,P%VT/.}!^L#[P1?VUV9?WF@4VNӹ*єlwpgH3~׳QqR5'"O4?6yŖ>*i3$|6g%O,>1E|aw^P)Q㜸bȹ.^M_`ޙ0'bѝ7@"ʄjb@OrJMLÀH~)Hm^&e6Ĕf:SGL he> LiLbnkF]Jd@*G!XU @v S̛e9^2J x:AZ׋]+5<"T~az1mpwb J_[@8Ǽ22"IImYf!LF$-o!Xnh*Ɖ {@G&U`9djw:ɴݰŲ"1`Gi2ر\xQ}`ti &@txqQ|ȳEGū[è0~X4jDٗ3+#.ALV#C7,Jd|/|Nl8/xv`)N^Twp3MT..)9eX֩#b?+; 1ʛɱEYy azaO6 / D:m\!|`񮹮閐W6*WS~}{EP3Wxs^]hɕ*ש7-<o`-5ZsOÎ_̟P5Hg @AZ(GuhTDlt:*v;rĚXp3jr_4!l[ ӳ{$7[Ҍ}m͒F J,+emtǩ /@^~ nd2K {u$\x(J$0G_vEF4O BKBځo՞;aÜ 2~H+M\[媑cg׹1h?ʤqٟ=s>4C2&v:hbnٞCFƒtn^Y)z6":w(KG27 6c0g+wҘ~;'z9А |- l[ʱ`5ZQMSJՁXΚkxBgP򺟞stazWJ!~d\Qf#ȱ㐴)<*ꉆmDWkN-o ޳V tAoޣd#_ ]ǵOcluI2~ .9p֘GtĪS l^D&Ps KSbh %F˚m0Ů9L''!/ӏ<Ġbg"1ޏe΂.75#t=Y?ahpjinJ.o\-U+xպ&\xuAkBXŜ: : ;a{KI@vL%g g: .˹u/*>NE}r^) -LvƉ`|/*-}6K<,nh6a˕u%t*I[6~qS|d94G]s/Ԟ{dw-R.OG@pdzE |Yܩ= d)tJ>D YqnoN24Rڝb\N /\u^OJ&ұ\8$GZ)Jx5xJHlffM UyM`P_5v+h=tx1]/2_( x&sLuOQ}JVK1WMh`:/qK bwzJ˟QN}+:@AHcs1>b0!rD{ [/e՘~ih,Q 8$Nr5Hk~ Eױ-Q?.3zGʷt1wU{׍HPxW"8Bk+F2vr-?Y @j*->fAE *v4 =SܵQ3DzIV4sXѷB:  њj # /Dή] k='LwNyLv8'֚.{Ne,/Йu pC$-@5Lh fvmØx.[Ž"sVqѥ㤋5ڱ=W͆ixߑoMb.J>qmdF>i-ߖ;&ڽ& Qm5V/bz9y'NdSƃV >WE= (䬵k|&":C]\9{/ ZHrGAw}Y!ۛ>}֘ivdA5{)%rm?fm;#^笚}> 9TS+jwL>/PUW0q&dp0\W䎫{ȋQ'wg&-Ֆ:يZ,g+aŮQQ~ g[ joR*Z™m2ha7_1$1/CBkgd7:L]sbOOf?>WGLwcr.DB!+pCLS j9d|#1T+MXw\NگX !&ⓆD",0i x'TߣM@j5NMs]nX֯Z+o?zB|qyZKKsB*rQ^,Ӫjw@fbL,/xu=ެp3ƤC'!D(Gpyl}?\R|jxЎWr- ?3>lNI yElE ΀3ZХ^58C]#W"l !)\8Tu9UVN-SS)MTJzƳ',ruN⨲8uȁB2K6G(UW"ޞ!o9@+6-zkmPJ8&˓-x.scOH*_M3ˎOݫڏ.,ԴK_IF=%NwPruAdYҽyZO-I5I? ^sB|N!YE&K D'h99ԯ[7d6 8PxAAF{o^@&dJ#M!Ki+3%R#.æi`ϕ\-7E)>eUɸa14ҠcnבKXom2fмM;&KYQ UҲ-I^uϼ-B@N%'\n^Vb2#|:<ئZHi5\v`pWLMb:܊lӝûXapK1tr﮳Ovxv2؃]s R.OruiqҐ=h!jNkHpvz*&v%֫T4HBXT_LL)@Q ތyt;w%[`Б"tgw›29'://M2@+S~)f3!a ʂ'^=V&.u T @5d[h9!k*N#cQtRΑ]-<2xaAn!>^pQ,c~?B.&O@:̣BPʘu(q G+_Ĩ̡k3rSF袊 T'xO[9_P59M;]woF1pZV7]*{"/>?m^13C#bFD Kg;tEH]VilPVnUEsQ9%3]`Ahrk",sc`x`R>Lȼ֠Kf3e͓K5g}Ć.N])s~2^+>E z[z~*A#mX\ ~yN~dF||c:OVvngԑleyN]}Nu-9g2ڽ)j= ~KU^ %e`4껃[ST.fr*Lby6-bQ*]ma 862{' R]Uab[0ʏyaUޒ@pz\[Ѿ ^jOIWWirS3~F|{nhQgϣiGS  :EdcC7|#JC<n9𗂻= 0a]?_Tȏuv NR{ HTy{iͬAלgSA^o" CTrD=88˜ag+gVd_6P(i!J|t)rUxGOvub"ńH),DK 5`vʩ>nzLXj>ZҽU}$/GxKjL!e3rdž#QYڋ:qVt:@;Llb gv''tBC;S<wJ]~-:sl( G4>[3A9^ ?.πIf)qPNLb>h3tNς,JBx>e\ rEYŦ̪N>V mƀo[ kS5wMax xct]\* XTXt}2@Pc%5r.]Z/n/.S7Q[\BV_'#އTPrv{=1[Op`>'9ݐSȚܿ7DoSmTܫPD] AR@f/E_9B룜}w Rl}wp{/8gȘ;wFRrDe56BYO[@ɝp\ٌᎽAS A\uj7jiaN1@Cݹ*v;R=Mц}W4yS ŧٝgt Djà:6ʎ}0@>ܤEvG#"9n4Qdϛ˄Zv;XwDnLHny˽<.|ݥ>fy f8W;Yw/yPi qj_bO{%mS R߂>OxJMS/](u  rhI]<V7 =!նq p%J>de AOoD~rҸCUwd4W|O;(kP !|;[ê}5$1iYjT7ָ(f \mԣ~u +*iLC|zk*'> fON v9nZDs\VKbḓ߬C85qKe얕*=56Zg/]۰vwT~5Ai,k7 b ?DLv9pG<-0k?}'k!* :wA5XMkI>d:osFX=LraT ˉ$FG%0Ŝf)SD.% ώ3 F Y;5qz龓aϫderbq6wvjPr;jvL6Q a @핸ú.SD&?F n'Uj# uڰ*K|# `R6'00mg@B|lT9zZVtiv-ML^)6ZZv,5d̓l DW&u*oo`ݫdL⹾Kࠓ% QpKa#tj 3`-cFK}UV q9N]>ڈMV_Gsq ˵leQ)j"7̚K^¤Ye+{!^ ZLɊ:53pE#oqbrGx@X*>~^ ^3e.E7>CI2s[5O|Wnc@윟e&f|IȂ#MxD. k͛BJٳr5`>" n0I7mwOJ/܎1gQsV6NF5=NWH7ʥkuc0-bsnڊVSa?|l fDu~իϊ&& \<,3'>";fna7w c8qbDϲ*nϼ:N {e@bňV!] ##G13(9J* 89פ&m]eNr"f{ӭRh @r. PD*NVzzξǖY;sE 4@#];2Z4u#/GdW bGWoҕp=U4./IړД2BD#m{uPr(J(ou%_KDt: VW1aI{ wS8885@TFO;ϖk(J7ξ$N`Xq2mM p.=HW {- ¥=[.ȕ+8җbۜ#s\(  Hݨ{͌y;XqZi!"Xm&%KǻBE,Ee@Jx)t 9W>Ners oc9Cz#ԁG"Nj\ءׇ)YV!@,鄑x Ӆwؓ V4P;\D=MF~>.#1? DV-~lu{U t9 ; )~Gȭ\b"plx:>rR (!J 0u9w!K]2{'XeYTjy`^w7 k!{V!# N3$K΅IJmisLz'4..O_#]5H?֊yl"9E)Nl fԼkPȠ4 )ϛ6Zf܃;&}zdX:y^5ˈ|uy I'_뿺;k~rlD)\ۤ]bo^=Q|x>,{ǧx`&ճ!z@tPQRL*d[/F:݈kH'#F,oǒHhp6.0ػb3F %Wegwp凰[u#@r%1ad{^C {DV7PU658Eg(O]Վ|UF˿5b=!/a,)J%O,hORY_nՙQu`5t>$lh "wҢ4Rqv&:wsзU8?TV>*\eӫ._>kb*q$hLV8(S㐾+V|1dtHmK^S~Ӊ-X 4LfAS^JҁO}AQ>~R2 O}=ikr^uL܍cď)ŎszAwUWa>g[[Q(%@n^PNq_Ldy/ V~5(:1;6UtA_Wlhdʁ#|.~B:B-2&q?i(w|=|;1~VcP74!dn_1l&OZn2S"@c`YSgn2Q},歜š O3ڝqZ0ךV{7lQMΏ\JI/yIh#$:L/6ʠvVRu"Q86h44Q ZMu5z?I#<hi$"8[~? $E^~b΄רC). !e~-䆛ˁ:ٹrZ7HiuT8pTʼOCO'@e(NR'س \-$x vPg鐵w? =k&rx>6h<CwJ A?4>&^\c$I$oj_1o'FQ36U%f8QEPr`x9T?SUYڅT$ <^.F%ͼ^ČqbM x15HāC3%+L2~ט"6R4q_⻷ QOYՀxB{Ą9}4DUa0$p6/{$ @S=c!lƬ%*艪\w,[tv2/lCAMƙTQ`W2-Lee?eݛ)МBBCTefȣUЬzg@K3 ZJMQ!^PnE"mo lvVLӴ=DZh]8QZdvgyjYUDoDID\ZC4P+; $iҩ䙓Np+Hڜ~E t krPO{7&By'V/;e5n'-n H@ɀ_}{<.1r $hSY.*Qҿ*ѓQ.b9G#4t JțUO$ZK̗t05]޳~+,Q7K_Q)j*<2rm29 UO {ׂ0DނwL0J {3@L|DAdOmcq@>c)9CO'G#Yv!@MEïr|p9Ii0p>A~qnk?3tK;ۥ\/b>#\e?|PZz$Ao}!v]pr[nqX۹9GO:v7ܩ~o0k^œp6/4j']xgѸ<.b" '_ژ9큨ΈqZVs3;%@IUk09"Uv6Eq/׾ [Bv+&Y*,|ݩ, REQb?q~}Ǹi ^2NMZUKꏐ7kϻ m۟'6)"pԫq6tn.M~qGN9BpRjNOp-|qu#CP=z$ ;Cso$stQd)1M>U|=ţwJ~18}%EMFWfK^0PK -`BHAK(sA5 3 n)Ws;egw)nWU4X.2n W vB/'#Vtm8uzv4'+@c3)iRDj |54ˊ5ٻݗ$ !3'L0uQjY0MUS"@f8"ּdEA4sxp'~"^tA֎c84DON |p_^+b"AY]5;z*Y }4_Ww 1 J7_^ =k (-+wc/: /q܆{zvmSk+<B;wPq%j3SíhT䎹)d BL'6rR쎋rB%6H$(ˁ'<㛡Cq uOYlk.m6\*^2i2iwLN{&X2v!=e]~Z޿}S |0Q0Z}|PpGʀkTWu,J7p编2,㻓@ȣ;d,7;dH.z{F^5:OJѓdZzW 7̨v0Z7.P]Xv ZIG]wL;fgWIaت˭ۘchvȤmSK4'q6Ajk;~1ʼn3WFN2(o7܋cSCrC);&bNl ȎOջe42(ҥ*$0ztc^ N+ÇI1 ~;}VpDu}Vq9d_,[-K2/sjìL4{C)v>C"Q?=>i'P]ŒƟ-- c]/ yCpp< D=۞uj|59&œi!sCMz3SHo*e"5eTK=]i/h7Ôx|mS!WIJ$XN-hT]FTd_uLb2"S8e+ނQJ \+,&KInUQ23ZC @Ҍ5KV&ФeV#Er.cřޏUnS=R<)g"w}1soMT7!ۨxzX29IzMF aVI]UsJ6y<>. VU0oLF9]\]2ocN~Glzieh,CZ$RS-|.B# >Wrubunz{h3 =Z+'Kd:[IaU&0IcDgV-{f {9\= ͤn)q^> t`%~_.RF"p3],m=9.HYŅLL/Zr^eIx;əvw^Slcᬝ"B E]'iUoq[/'.aT>\[-Ű2;+>[-,u5el^'RFHljmi?ZEjAM>s !sZx; ΤG0 AU+/]~LԪdSQ)TFJ|U [rYlMr`l j$Ūߚqb= c==*{'9HiR">(˞֦+mi`Tͥ ^F2Hv]ya)唻HvI*cZpt@5YL(}Qp8T7(r$Lv܋J xwX. $#[@MM=VJޯ/tvG@m(}@o%6;p &{'uhH,i/́<̭ ZmC$i#6lGZt1I38C.# #|ھ xq@^ODRviJ>'j8tsd \'j}JA,+Ps`3f+~ ,Dkp&HWT3.޾_a }N??3]ka1OKɂ+duo8Q$8IHWNSZ( \~м/:/"v 7+kLRf>][ы+T=@9LJcBحx{K̒M 1FOKp:g85yEEEOAޗĎ q; w|Dl]$ y^42%؂0&|$qVm0~.K@)Z|a7H 1{-M-CAg7;E i;r:#=Ssf'>BaN${%4.(:)Y3`$=DcEB.$dM%33H@Pcg-y[{o3DۚG4jozųtKAΕre ,?*bL|HKЮA-:wb{+}̥FC>/X[Ǒ9vd(wи/؄.{p9\t1!@lCIO]]F[3 cAGNXQy/f IaN!S}}UEg:罏]i8OF*d"?[ fΏڂ (?p)1`~> ܴmlr+q!IplM< dDX݅AQ+I,nu_>yA ڤ'6]HuÝBlv&IӹYL_9O#q7Z{{{.8=g8 o0OO9^qj3i.ܩ|GW">[b"`P2BIU@])e=T`GHӣFE}u4xޙAg`(Ld#Ԕ )!^QZfN`qeŦueF,‡[vCX!HK)/vߪ*~:\y~ eya9;xwR{q7Mp $M*aC\" o3:x#Ώ!>0ѥp3Y*bYV喼ÛM}J\ngp08lջB pfëB+N qk] v?Bd$`kdqM TS71/bW> \z<Ö ]Kbn'$2$U\x.B \5 , )Ls 4x[sl$|a @чtqD/иQǃm6DszMwzx} IoSE4W̬a,[%hz^h59EP&*⮄"ɑp[{Q&=}0q sBG; bΖ LeLw1L,Exy$HӊD۞0#V!N:,F#*Ǡ$S@vS}リ[ֹ1+bW:ɴYlnC-ZπLZu#H:*$to D1J B\,+N+p5_;%xNY/ ڶ >~{J&A>\Vٞz+m ҽ@Յ5;a$R; bg3eP-#xzq6ծOrEЛ~./^NrXOUG@ Caw'?ҹtF@o)4=[j?|xv&Y_IH0\H^dP'ȏ~ց6UmmV!D)=Pz%;3W5.VVGZ|c.yݾ" (;u"* YMxe$̻P׫D{aoճ#ﵱ;]P%GwFFC$ɞ1ow(zw-Z{U,e5pSFVb+5 u %i9jXT+zd{4m u`պSJ 8H\e`7hDn+o-E;?pAD?]jrYlO W<{L/uՌ>LHf݇'GA#H ѧfNrS&[l$6r.w Y%o&.EZT0Q(h -M7a2^'4ʫțy q%u 83 6،ItT`KU Fa.ڊs@f)\=ݱ*r<#&krO{ξRH"CSqm۱S~_*|u- jA.Vf_ANꠞjTpOhAגY;QȞRgܠcz*N qtPEl$>;b횝{w$jˈz>IvQ\2YfϤ=ВTmj_Hҩ-3d:漜`،x)(݈~_oԪ֕~ߦV˕1IA~aU{Hrx'Yۓrh]-}iG&\SwhDI\Y\T!/AJ `5؈IpX wH՝ڤ8LU?0m %-|:@M9^cL)>Px?yHo^#ŀG߅s5e6[<@bʞ1˂#euID I EbY%U01oPɼ<Q1;:h|X:}}}D|aZ  pX E `dC0 0B$oNM4Fޱ ~!on_[8N kKUi,>*}gPtR{6gT}IZftJ[C'Hϥ-v6=g"ܲ1=zRf"Xhll^XМ i 6(ei]@B쨟NléRMusTjh^5 3ϤKOy8_*HH#hf,zx&_]Y4+ bl.b2L-9O$@61FwEP~1 1G #Mvxj* X S t{3}ކ@Vsr9(n۱ &2TnnKq:imluoØ7g$Fօo2 2P_izMF7_w K dLjt8\H6{i5%rcF0}[&iP _:o'NcA:TH:n9\F7V<VٳoOnf:[g^X'uBߡݍgHo]dժ&L#hOOal/x56Mr PNo!iY ~y}S-Ӽ˱1o2s0 "T2qT勫el3dz>߹d7siYbTKm;)p̴;xpg^)QOucBՖsBrk=ƷMCy LзB9HS<Ft{l]y[=5TclQ^+ertrWgGr3-0U|Aވ˯B&ͥJ 0-̒?A"?w|,5shz_D8)$ĵvZSrɅmha2Cў;$wLp揯rrP- *ؕqWD9ȶwj` ڝuW~ -͜dȐ#$Hu-ڤdhxnze[hK^؝"-۰qEEdATJ?EN1z%TV6~KBwt [gj;!w$&LgIVϘQarn׸_5N3ٞXL<1y<5XnۦPA.Y*xO[ޠU * V@-+3W{ك$ }5J.n,bGyi罥 g\!ȳ$fɽ\pA~e6:0n~v6?(gϺMn9c[^/נ8tmpWD>rol KFN"vWėQy!nadr(&5>-=%l?@~Ă HTmD?y~ J9zBO3Qv.g=@]aŢp6Aϣ#%^M,氨`P$f^}ŦUzZa1i_;]kd.@H]_;H67!X+#Dˣke'Rn:AKnηv5֏Ujo\,43"洖"x X8B#dna/ŴPJ/(5UȌ}k)R:^@tpO̼yI._ 5mXɺ, ^9L (sfƺUY 6(6$K^7\f?NTJ?^$9<"vsZ6K+ e T?V M7bTUJ|$[9DKH=7a`~(oC$)EzYԅixnRjQ;h _WsM7SmCwg(Do16"؛t" d2NGQ" ME$?O:+i6؀%FgA1I jZ̈y m$!<&[l;ʁ.7 !%βP6$iO6΃FiTTabDžH@%P>LO^E8%ŦTVvxT Y" !uTUS:ҭ $u|9QVbNf`T4K>}yqJeg'?rOgFE`ʼnؘȜ3BxQ ĭGoK nM!S#G SkeGБj9N3^m8E725'}2L$bEMx-;/џӗIyiE?Od%Y8A^<M.ݩS''WГS#N؟*8lȡby0Ef$|EgcHL>.Pk#j@!ϩj$A|qkS/~2}VT&Z?%/9z,+֩m8{%d<|=S&j9 Q݄էT>HG2'v:Mhj<-U*G|hA3eE}O3!r9V(N)的HBvJe+ lwX*8>.`j܉AʼkrqO3),Uh^Kw5D+WzHMS/)ѢKVڱ aF( ⚄ӅFR!bmiWwm68M_Ĭ)0sa(^Et`$]=wmvۚvI-Whqgt_CVCXxA2_m1F/茝$i+y+VaÙO\ J @Aօ<ݕ'HC*3äLzu'Jbذ)o|s%rZVsiIm {9c}˦KNnvãNӿJ,F{i䫖\CfK ,۫ .&l~$$n>ХT$_9[FIJztׁj47ra{_iR5Dl D7e,xEskNf&0~S)$ɄJ?Z4@& BG5bKfTWN`x%4FB7C^o] Vr[g?AyPY$ƅ`)O /va. %u,ӟb]*Hr |yMkɊx Ẓ ʾeZaмLe @h8Ru .˩߬拗{^c/'þ͈V#qdSG5ҭT%ݒ*TbQYKx""1{.ƃ[K:v˕u %#ۦhރLO^i՛$$a8)fm#}w}'(`$hc;+,]%6ùh gv4 WJ¹u<œG+SF#I`NcΨ[@䥋lӿ}*]߯%گ :)dG]r!zۯu0]:ŝR3!SQΘeGh:k=K5# pzP%b(~6LclG!NdP,7"KM{L4İٓuqJf3G>/hU(M7H}b2vq}Vf~{ w߈"Az~ F-Hvb|RKRCW%AYKhM@kmPhɹAؘ9EҌ.i!ڑt\<;\?NbG!2l_:NMf9)¤1+GT֟u(,u,,5#|bO.UGv\+t :݊,ӼAތL/ 7?F3^`gg 誮OH=cټuel/"ІBN Xmw HLiz7#g5nW7ƱX+V͹[_au&4(=:8lE"x]D9Ny&\%߇(;gX;Q]Ċj~Rmgv~k^3'+->aUgN- İ< H^蜪 JW+ a0p]8MyjICO1d\E:;(~tWؤ `*D2GeQ !yr[:'#lc.59ILArpzm8]Eӫ)ĢLMtsV%QiM S={ccz$,"A|gҗьD_Sw2'g,uŤ(߆FB*ɮI$ Hۇ>&#_ؙˍ= qq$`D)-(螺*_3uJ8~n BQ{K\վ-đ쒥ǿiwJѷyi:܈:뼠$"+LcUO&>IFSЫan@J-BkJ!'.kҰ3Z/BE D*|H۟T3?󓮼pV]@0<*`ZgPIb_{/O:~b'W P,wDAt O~]*|.l\7աeK7k"-x:kw*c}dժ{HS>t*{_ 0;U`I;;:slh4!T􄫔En-.c9ռJ(f_$j _ (w@ɃkQHx 0wE1!t)&NUm :`p)s.B[WLi3,df{x0͟Qׅ/" TFyZfp\a{lM%%(TToZ@j %&Wo:^7AV-ZN=`Vy^O6)IQpTb6IVѿ*I//3%ɐX /;E(l'IdTt{ЯTA2r6Ҡg{CG J䕗? {ݜr'k'[{#C.P$[?,*O/EƳӠmZbĞ nvm%1%pЋZZ1ʴРO1F1H w  kt<av@wxq!4)0FX黯hUQCP ~YBniMICKub 'YfuؽNGEt zrӂ I|*]%|6Dw [#+N/aV16gCiLyM!B=` [( nmtsN4nGw$Ϊ #h1eQA15K !el4Z=,%C?5c~}LLa٘ h/H %@ ˂_)Ԕ^fK)7P:inSrtI7Nդq>HP6^DGaho<+ &]FPt?|ټv8;@iN'ۋ5=+69YE&l`?Aj=1޷;ISh~w3ؒ-_1![. =c|ʠHX,ۆr"X8>޵! }MRYW3@͏w,wрہ PN_eo09{ϾS745 %ܲDPF7P~P]H$x HWXN"^CEFҧLeMF:k QIKs\6y&?=6z|[LP 8L\2,vˈS.;ъ2@ύ8T,i[ 8/ܖ-g%6$~0P$b+'ziI{'c_,Ar1?2"bsxB ʻ֙EqPZ%EӜHsz"")ڥ !<{u|/y~oD9_ehS DR< +% HI[`CԼ`BGBpr"Ә.p6Wh H)MPa/cWq=hΐ)6^^>[ @GvNCЗ-fIո74͎ZbZ.6]gC6rvئpxa{EH?+dnP)=sfzU xt;\Xi&(W< j(ꅌݹI j"{WH޽J<:6%*w1â ]T5De⡊|J^~IX Kj\̺38)!3 k՚lp*2->mB8;7PNS JTYSimܢ/b ?4FFk`ۆۢ#1׈zԇf_5m:Y| 6(XR?ћg$@fk|JhXv AQ/7Υ<9Nɉl5lxp4=t\'iRϧJ0ae=? dC}\](~ EO,nL5mӫ N{k}`jp޶e/BNcU!*AoY{8)"Gl#'hmfV ?A>Zwz73ؾe7^DI>#kz+ip7Zh&ϗ,;CGJ4 ;XruU'!&U9Ʉ (e&-h1׽L.5Kk^ߨ%mHY&a]߿,ܝvՄa%++@Qopɠv%eFH|C&'ȻܔaF;a:dEa 24nH/>f6zT]X.CS4x1W ?X7@>%YO^e5ci8S9O#n)9׍ gԄJs, ^Ƌ)yw~{u<}F?`oK*Mi#SD\+9~6ɗnƒ}g A]*ay;Gl{;fMѣ̜Ky$Jyf)ց8쿄eR-Ԃvi̧,CHhS_/H.#h^HIV&_:9 dҩ0)y/ &] Q+mzkt"DXbWk`A{qdцI{Q˛߸QTʼnޥ56C,cjpem͆:NW:1U\Tr޷7żEUU|Grr$ ^3϶|c]5 ѥ$2Rn(j .\1}ڨTl;ޅ]^#-ۥgzE;IQr|)>a8/ȵ>RysS3l]EOMJo@1FTJ6+@bڰ ؿyRX9P342A7`7_(aExu٢'ԅWQ|uIfI|񘉫MG_0xJ6@" A{%9o]h۬}3u#^JjVI&antΫ X2>9?FyDm|W*\lZ]#@Iv/cevV{>ͭf趮SHN:r#\+or[O!< "|i,uGF~K"4h2ҹ&I'݅SGil틘/EPi}f(I/O !Zd_&V4GT`!j$$F&]2L:QVplc-ۃ|qpUƛلϋaB:0RWYwmϩT8 v#@yvTРSզWri]PX淧:Fdv)x5%٬wu硿_O\[[zl ?A)lzӤJ#,z-urщlvP]q#G)D}m&t*d$H t{)[6c3+ݞ H:i,\ޚH\ިάI-xͣEL&;%ޮ, O$' aW nևUndL|{|> ZOMKsU6aF:$Y0G`qTړ/Z6]N/&kVaR kLnBIUK&aAnL4~ʾ1 AF `E%ꚭSBK Շ$si:HF *OGuZB6`R<yqď4OE ޯi?rdnh,|A`ˆ1DIG٩$ 1ibqFCĈa 9נ h.޲t.&RN붳zgMQGE\rCO$1«SSd"ObTrԾoz V:%xqRUA:?P=bCKI~xڸ_[:ALuQ,WV bsQЕݦ UTdc+ׇm.o&xoqH wA]$Mysm d"[5S.&"wL*BK`#2 3?J!o"JW/ J lqО(7goYO:vͺq$נBhj&H2e4|34Q 8w( n 9E\8'yus Z>iKLf#clU/ 2s,Y Ila"̜* `> *wrҠ#FYl3*,5cU-ܛB-e9j=[U{WDd$TNB (c|4]b`%*cR4ڰbt/1Cb<|Po|q$"V/,߀οy79 !3+w(' d]{"Ǻ(«}M+As1 %?,/u!_y6ooU^Վx.oN'T}bzq/ Jr,]{1Th-+ň+m*)0a]JTO317K[dːw F+* iSaEb'apvej$8F*'͒zW/S7VQtW1|~uf4`$V;,o_?BН<4 7TBIv 0jPE46)ZQeb.xglꆐ>cdQs td q=IM,1i @JEpe&qz͹}feL CmKNìӻE_4=iЁF,'<"f a0ǫE2Wr[)0&5=ON,AU"j4(N`*14o&V"sٔF`Uj6Wd$Zi06#rQo̯[|XhOjSplQ4,A`TC+epE %p~2&߹/v?fV%0͕ۏ]?g>qvwZV!>ak (n<.!tU8em{Hr( ޠ҂cj֮Unj!e13s]#!Bĩ}JAtđ9_kxݎ{#WЀnQ;_*WO}i;n8zÛ(qf_@$IQ]2 ٟ!RW;G1F YT_s6þ>pOYbx >@ YzFEa8] momJ6\+`e΀uhfh!iEzLۈTX1<{!Q߱"`Qb1{Y>b#._m>>4oso[A!Zq5~ e#=8y>kT{bgN+p 57/dH*6}}Oﺷg91}L/}khiCc {X&1Jkp r_P=7SltS3etq&M" ޺nkYl|i2A}l9?s;Q Ӡtl%׳!`)J8}$61{M ݲt\;v|A"Ii­ 5%|22!o>>"BbPExT14Hq k#1텿Ru(Lgޅ㟎A l HGD=1(ZWRz.Sb CzBm14)]o;14Ӑ6 My!@G[}i-AjH|CMbgtopp! :]D#ĿV#4_FPG GZ4S"2h2ȘXD~optm9`:9"Q{FrI+H\%reQEwy&*O淊@ŎM|pbsa^.w۷cB#ً jWiQ|eN0Ua{;U&Jm" H,|75$|0?L)f]G l X")c[:kS>Oe4Z]<'Ϩ3?R)' LpX8;ABlpandb|FS7W8 qZ)HKU\QKn7t 2 6VJ/cɀ3IucB >v$ݱ"KV灏9&/ɓA?"Ҭ=Bi#Y;UBVZT&cbf!r x0;CA=@KMd6fr`N[Y l<Ó}]8r~D=1Ö1v$o]`BM{Fm5pBgmRB$2n4f8*.8ܠ>(aq 8娏R*Ua8Fx奌:4LwX#ぬ8!a)6Gk-P;m݋M} |;HV+tx$1D\ }ZNJew6*IUDD",_a:lf?Ɇ+Ijg;d"E|NHt:ou dϺK$#! #C<8̰e7\*N+A051Ci($: ,lG:1-ەHzA1O0$^PqVD]{';p,iWgD4ja#mՖ]RCS<&N*Q2%sg) K+飓ol9TT(ڭ8ޖupFv4޾ON,U.MA1@&|"ߑ)fbd77,^zq@;aFے/*A^q89P[Hmqbc\ه{u;݇6&-o^Y65n]3ёxQiTq~lM±Dll/Ig˫Ȩ#(lY,Wa l@ O2ci>͠fmu 4Ĺo{ZH=U°_BE>ά/9­^g(lŠ`fL\)X7Zސ͏2 xo@ZHЖE36wfS{~dg{LA@~.K%NE8ĉү-<64^+H_q!U^XRޤ? Z:psJ%UVUOfA}=ptbI=3qeQ)r~F>_TZߪ%T0X\)twHΊFFnZ:: qc vEg!+|jI@8bnaO_Nf҃gFrD`R{?rjJn[?٥x@ xizl*t{:W7ȥaMUdEApu*>ʔC$ S4!dqe3;rf#dVOԾy />|_}\c'd-hC¨8zğ}e#L:)GBREQI\ E_fN0JEIR&~ 4cTÝї)}#qՁl<*&C՗Tt&fۜ.&PV{ b: -1krp7_: [qo_(08rfи:MDJ&pzQ ~`9DL$oTdQۈčҐqXS'UK Pe@A##>=t vQ^VQ[]Ƚ>gwT4#9xc~#Cԗ=L#O#"I^o; E#5lP0\)7Mc"}l:K^Azds X$1'NЈrR"{ZT4&|v"T(N|;IW#DuodCP [FdTp BɇbϷ-eɛeZ5!G-@VwٶN"WA5Ռ"xkH՗b$!/ 1{/ϋL~@~ Q%83{w<.JSWD 6qq 1q2x;Zry9Fn S/uؔu]R!=DԧD+"  2CV-ZX3!fo{_+[75Une5tFxfocƈOi Iy>uX>a{Ϯi"=0Z1ғ D.L0W%&s2T ]kZ-7%tzVQ巕 AGwm]"\pz|T #[/.#oܮ}86JfSf%Q!ʊ,"=QR-ȡp;$h9ညƒvN..Ok19p4|vvbJχ}Pjs$zϥ`׭0Qkx( r,/ H$LZ)VZgLBG G8G\?өkdcJ;U*+ .;nZ3luY; ? =ak!C(ZM?t%T "Wm RtkPX'i @^ ڒ $`-,N۰C%*C<=LƥEjވc{b?NAFգȾq~6(uEm,!+F\^8 ޲wt4Y%DUk$S!LEӥP8,jGM*> #,'.ػ ]ΎT)/ 륜0(+VWGA ϻ4`êaCmn"Aۘ\1Yzg)F~p';jR*,38+gtW9s,L2KI,ݶ=k ^7d=l0 ':Nu -O71A>KE<(W{ydDa=a sENHԢ8M@'ci GiYf3p6C 1J}dq>71bj vԤoq'6)vXI9UY2 Q.Uჩ׈;< gudXD"}9&qymi N8)ww 0ӮoR)~ sFXyJ{L,m`,G BxF Ф2&hYuDxQ;xAf2繄,?pKk׼Pr/~mU2l897F:nq]"ne7r[3JWX^q ]S_0hVrk/Xrb lg]Q oTyټ;>꨻,-I9K!rSJS@Tߞht\)8H>$J27`؃]aF]~Ǻ?¦Yۋ]ZCp U?qPh]MɰLI"LAI "[`MT &%ܕnj`P&:7iyل׳ǻLz.Na.ޒB,m=.^]=qnTlAxի۳bL"LêFLu47U6Jw)#9I&`(v]ܕCL>jfoFYay'LQzt"ϛ#`/#ir#XHa'M [H!#Ʌqa^*G.NN`' tN jiq#}) 鄦tF-cY~ܱm8q"jlD=5qw=u}72@ȝr3:_$&m(jhٟ淴,/qDsjI4E t6^ǶyNvF!H6lCÑ 9WEPahCzu}bߍ.§(g10!؁Nf oi׷((ٺ%`NuNƞA%7G([G BNB%(%} '`4"%+_MO*b]r1͞(G5t/>%/̠;RrcH6B=Pte+03)Fh9~W6hk, /ADj zt~D;`t'5ԡۂTMhqBt~lr`}%ޡp N},tCXz R(3(@t N@%56>臌[:NYju?9v<_n$ZK Kv?3sbI4d8VÐBG2)1"}b( lEgw35 yLSߧOН ˪s0F9FM$o4ch"s[{uLM}Y|mToVdK, WEþuW7z4^To pfy+8wT"IpZGk&t&?_p *G*FhyFO^($9%"0WRc kfhnYs_jp  ;rX06$'2EP qppڨMVxQ=h#f 3+YrŐ>Km?A'k)J~N{szU(n˟~e@DtX6 VSd_T*ˈkynSgv֩<,7=Porq+#--hE?',+Lȿ?X} dw6/^4S z <M֯Ixu(,=67!Os.%U+aI70Ux䯎wvd5=%o8f2KGݮ=ʫ'w=ZAIԣ 8˃DʋoQrCu9[tv-:6 #L;CjT>:"*cc`"4I:[w.Wg'$mC' g]!_RyL+۾Te}gA#JЈ 7M8Cgݘl}n:Q;XJ[f&?I쪮1jTWN9bf2j>RL3{"ɓkΚ&Q:هiC\2ǀ@7HPG\0Xh|Q«{` vxUơr[q|qu]\W nµ=&X ӌ^wiT8sA1/t=ֿDשL~?Ŵ i+z/"ZiUI>M<0 ג3 {g R,/y^R_{.s-AxŚaRc7T{6KDN+\,cy /rU]K\ƅ0#UU/S?s_\nP( vđԾ`1[bW{%8ەWC`ొVxơLDSxNm&"~`dWIF`hU$Xz~ZY(^.Po0A񒅨aCXGhCgU\JgQ/P- -_8r7"r.>ҽ 0VՋ]xc--ˣ0_gqy5E6  >uI16nXGâoE>de\7DS ¤* ,V+0f '#;Y™ex)6#yaOɈ xFk }`=;NðP_pQ4`Eˉߴ7Mj iɡT^$sESz?>ÞRI у wk87f;U&YQ f+ $ -ro@|Hf5p˲Kw[aj'+&?j4ixT]y XˬDV"WggGv&1g{gquꑈ+nL` >Nu),VW8`q6ca'ڊw5/SSVOs9<9("\H.c<$7l=Z+}ĝo8܆t(BWɻLƆnm-n,̂錘ntUQ qQRŞl3h G"Ioirgl i"2 >BCSr}#9a;8pTBP+u6S`vN q,•ɧK6!~4/z?>DŽZ87Nhq FOl$R!Ȗ`+,@5lI|CúP-x축p敗YcL4)4Jk,-dSuy`^ Ȃ9wwUxS9d"ͽ s߼r!i,$а`:kˇP[B>2Ogsr BU7 X WƕTI41r_ELo!L~^]z-L+RM-'{#K$odGm˰<Ӛ7&ߞKi _h5변oG@Le6h=f]I8n 0dW9 4Px>hRGX/ƻ|򚇪`;cb-H?Ӡ0tl#qVT^B'0TF&:{d4 NZd4U2Ls=[I)!6^1m!@ѮƵswA@[Z(Z7i*`$c72 Ɛ#aւ}_;*W*m>$nHd￈!AE)-bY+Gyc gl*s%a Zs潭m'ÜZDb^QxKI4%#ul͸er񖧓,L;?kؑ'ԩb̙^p5l ;Q> Z/Vjv:,Jl r;36 &}8 yiIcI. ?ڝz Z7>Ab8.}A͇]]sH1Z)3g#.zMr▴ej&L7jszxtW'zNReWBOCFb>J|\🂵d,cZGxum"pOa36 u `S"ÂN%ilo`mZ@#y* %v[rJ2Jڟ[y\gӤ: չJg74Ԅ1® o;9VZPkos Ŧe", =?*G`Ɓ +|b9ىYgr1~ORӆ/ \a$ًK> y(ԘOOv֑6 ځPi3SFY ̟{9vq7;fG!Y z+Q >(ꧯֳ`V͏^E,)EYS4!vDk:nAy0dL67Ũѫhٽ 遈Fw|+$5~b<̭>>YN=fNT3DL<>r1cSe^Q߸2 j<™Tz>!CR E)Q5|mÐȶ&y mm26]w[q'رXلdxRnY$yh>Jc8b&oo_VojF|_﷌fp" `!q9E&Mx#wBގ?2,JgK")Gq`.T/I8EJ$XninDl k3+z(Y7`RdP /I_T=U;TAd|u7As=šjxi8R< ^ËTH-˛VPYRoX:nC[mO[Qq(mCQVeg4Jvё71>*Հץ^[ <̨r75"[JsH09&{4\!DH?s)놫.Al2XGkۖ,'IghR9?Zv`(]bXc&m] 5% @"ԡf=i#=2+ˇ7di&Ru~ ΑChJ 'CrtVgAg7[Ě--` " jݎ%q-*\ty?k{Z -*-GcNbb7%d[=&5uL*#:9o/2m-{M ]Ҝmw&,X~M<7*IٵEFWԬDrm%H;~zzvлeYmLioY5 fHHB# %ScjĹwkrS *Y.jx;:N'׃>8-n29c/J =6rɺ^2濨S}-M B1 Lrv}H.گ֏.ݕdLrCAs!Z5fGXRtf-2[E h }]K4ӯ翊W>t4DۗH06ި >KbD.d\鯃)+ 'Ɓf=ldgl .3sw~(66l0n&+YpóX+F7 EL5P* z0ƫC dIu$,; )*=cKzNcSe6a LQ 1{+*eӗV7rOE`j` Y/{Ӊ0&YC/mͨgkzj 97:ꝼe2W (xc6EsYwZP/j6~8)A>˒Dt7byQA YFpj$;ZA5.Ld/kCQ[,øj)*E$Zi R7ЕZz$iy둮! wbSTgAï~1ϡeR #@?{ӈX2@/ VK-aD].gvKg"Mp"2Qf :wzO>Z \פ/~kǐlz*͊/34V>G.7)GP"( G(b4|︳@{|55H :'W2Ol :=ВO$ 1kgAg >3+wP*F $cI@FGLGeu)ņA[`Ny͆j\Oױs8{G1RȮ#f: .nJ'6TAwEpME+)3D Δj3 0TOUu-^K`J[Ӟo*>ǽC'ug4ҕ#t? E߮ }((E:_L&G:j32:t"=vk*ww!5A+yb[i L.5W8gYg;Ysϰ$$ЈqVQl h|#nj,_ #8c)'.'Ԁw׍g̨EӬpfQӦ@( 1<4=D0WL?5&k?0춃vSvsW69!tSiW$11e!7D ̞u\Jh%Y!,vUFA XD.Tpfmn;B-4/V"դ߇A&X{VT5Ǐ*cY$0tA\Y2 \Z9yև!_fUh7[p1@Yp!-jHaIc !^Ah=/9K< tX hp桇UD<xcᡠ;cnޑiAp $1:u֘5( 7q3nðFŗZˆzh4C\ 냦'Dv :vfgvc q!9P#O~H#6"9:!/RB*UT-I9CtRVZ:a!r IʑŖe&ݐ[Nr]qN}͐u W;_^J< KkeO`Ɗ"%*ސ<~RvRT~G1T /5OиoBvIΔS:)5G(Vf~i'/av#sʜ/bY'gXJbjN,V5 _KT*bX4hEXb+XP]'"x^}uGu ;HDJX&l lMW{I_thp`6p ŒTUN)*mO2 B@gpo,8yK Cڌz:1p~(HRm'Ki$7"ae7UN6sՋA54+}P1oePx*9܈H{J)5:c̘?bxsD&p4iݨ)4IwםCZ'ԡhQfrۼD`,e%(ǢG7**^%X-9B$|.yEZS^/#XHJ;qE9jv&6'"d!F{: nлE)3;i|-+)r kJR]DgA.XЇv+& lG{Df+!t1x/J"qt~X7?cN'zB:#K[¢Adhn 7ž'[M"|ܡh,c{a(fmzSICb; Fg Kba_|uG׶,p]^tǡx迒 FHN$,P:`Ʉ^i^m8i}D,fPS)Xy\X-kL܌f?9O{3sѱw#`7Kۤ /bT˖1)}ݖ%1eK6\lhZEz&DtЉ1?@y+‰CVy}#I7s +@иRXvǏt07V-ż|sLZ/MV&.9ZDv]\|.2nPsDZ5 JC!20'yލe o'b>N+W+I+e+9 ,`CD>M : ǟ17NIf[MK; ?2YcZ ׇ'rkc$;©RrRՈuIM؁JA0:*V Kꚾ t5sP)߅ёKAya]YdSY?AW)="DxI#<,;x*C@C,49lHRQ(S{޻9g#ԅiA0l)4ʩW(%)+-c DD 1ϟ(Jvw1 =fp޴2V0I5N\sC2ߔYlӗvtl60cE7_ H<4Li :%\XPtha øBd:@7a{ z8^1.hssaWmXogy<1p;.H؋=#(h]>ƽhl*^ {:ըMs1Qw$F*Iѡ{:&RzvlDֳ[ \gX 787?({߳b ٚ/!tZCYCƃ5d} j%1el:Qr(C{}W37 .js [L'Y11]f6XTEP= ZYj P:8Vsm)< 5VR"e<^ڠ+1@q'Ōєpf] Ydd&}GQOxwF:4m@MVxU3=Y+cGҗ?W'}$SEDSv#HeMѿ 6]֍V(ٸBgWHٔ.] `/r`F}2;# &6k۶1.K":h +æog0L"ǹ[ړª]xݍj9ѡ*wYCHa }Ʃ*s zTq)7a:׋b?4 J-p•~w KS.ְ7=ÇO*${t`h2r/3q3%/d_h4*k4Yb?gpI Ȋd-Wհ ҥ&*?4h^[ MV1ד*g ɘ՛2[%Dt T1Tr|t$`zBks**H;/06 yfB<ȥLh?tCd{Rq8=P )0FtCq{ `Ass%/dxv.N{ X5&u:\e(64؂!1i*8y=ޖ֘5Po7 60H[d/}'V"#wnF ^xOP1MN;ߠ kPI1#/ g6nEUs[5E+ƹsr p|zᓰUDY .ݥm| 0ee[C2}v`(X7MS:͚}F) j`_@$~^.K2r!MKΙĞST'?mLJFs츪Q7 -E\P_ ,uXC3qU!#\0w 4M|/*!K5֒.\0K$JD RT%MD z4ty?Kzβ T:7ƅ$֦~3#;A|zh˱9L"b*`M=F;1Iq"`+YNuJEҟrDپh[htݣrtv_k1U'/&^@3{9ZNPʢөy.3Ui=4_ܢ)<@?u*b(rm&R pN҃NuFƲL#M  Cxhs(vOO-q(E:b}4B$D;)∥g{GwVhka˚L%HUJb,1;IĢVsì՗ D w>6O;MI-z\2U*6VTܟ7D50LZ Z3a+(8m0JNDwp@H1p>*5[$^yi [$%a:K JtIxҌ!ɫ20tw ,#ǧ4Q #Lrp>1W:X-N\#dlHAG{.# {ʼK0LLa1i Un`7O"aC&*%\1zHf5zX !g^yN~z$'}c`C])uL4V~Y[bõ塜(JG0eFeuH]1[~)Wd}eN +T[g&ik̉j`g&e",;3>H?M_Gy6Cl*^M1yCN!6C7{Q枞B:2ɬl"sk-:ZpUr;i,ZHZQ"a>镑C, \H Pu:ie͎[ٓ)ލ׹19Q# k ۅ(}KoK,Ja" #v(/.6ߌ,aByL#lc/$>gPQɥ]zM p[4mfu1Yw6U]Ya~ɤӗR !| ,{ӄϼm`=T~ILV Uq| ]A 6KXwNM PG%ՎЉ.rZYfsfJT"tw0G{X _hؑc@9T!I1ؐ3) \9 G(@r) 8zPшL:W隊#7_poX*@.žs ;D([e5? cJ#} M0yp/jhXg[~6"40 "}L.~=rn_yR߆ Wf1K;Id~Jd K=,cjA 0"&Cg`E2fBX_0C4 ZAEDl6iT$uZ++.DQo<=>PF\r\8}!%t *c2vf&rJq OEmYRL\d/_?LJKY! wRJiHUNZ@9ȢI'Q$3!;2^ns1e^J!uJJUB 0:['}St, gq1[ N?05e⩉(a7Z[?tUE^8$y:wZmicyHxiEP̂ I[s8;|Jt}kJR-8Xcµݘ^I1A{/Ena΁߯(\rM`0dhV=CSS-z*_Ն%?BMQXϋӀ P>:F4_¬)]<dMb` CoJU;{'__EĖ޴Zgs ^ڴq@Gp:!Y)rcD qDՆFJ0TFcPKyV5g5Vom*){O!߭/4+ÈOv(sakn">]6cuq1!|&X*@K7.L&&NtVabaptPJ4&ÅG* #= zMyELɶ-$hDCZ-`>2c^T,U u0S/OBD 7S;f߃+m"TbA.WX́2 f`&/|Me9F]z՘@G7DOmHhjnX t?W0տ`|B7}+3v#EU!rBg1wui(a~Fy[m1sXa 4"w&a>TK cKqTE>6*ע&ߝ0S} BV=r-FƗ =;GK=ugԨLcD\)~4zhW6'`v2?c]DmMi" 2c_oaqЁ6i\܆ZCNp3UBN2Bŵ-&1@,e8OUޒtrNHțV֮TuPm}f1ځq_&&yAꁺ۳E_4F|^]u=|R{vy鿘 rsA$@fL'F3-xijvNVQ~J2~R55GE|)]kJfNpBA5[r|6 0%# F9Uz]@WTܵDʱxH@FaB nce-/6#,ou X!6dR'=`:v Ȩp=xW=~nv x&lPebϽS័ x5'03<Gm3lcԩ# 杼%9,ᔦ`y-v QUysA6-iu3ec"i_צ."2Jrb/<|nMkJFb.yaQ:B#خY?խ`_G5ցO E%EZ&]6 V1R KpOtP3=evTLu& ŬN0 ,%" Ax*b\[ wz g c$ͧ*RNtŷ}gәQxw`fXމzbub( 8AwlZ5T)?r-ZE_JdF|յK%}zS܇'0%3>[ {rМֳ/#lhk(%iOGmnvS ,8AOKpۛ>" T@!f ?Q$3_[#%m2gԧܟBM;Jkr%Qş"r JpQ_hb/R?ɨ[QeN..j`rՔ=~\^A qe=+ŤfkhNzc3 ;_pk!#>fh_YdßrJ E-PCDz>v| 7 J`ʒȳ`BtCn Jb cWjdBU^2լ7AdsJ7&Wo'`"Vm _IG(aBH o&:-p}\XOwhy:U ~ZcY*G}p(s*AqbuL %r-`eD܌ iS޹sZMdEQq}eǞ? =c"@1Yo1Y͆+}9-Lɮ#WsRNg#Jz944A@xZ3pi%vjDApLϿa-ME[:bcLܤTW-g 6+Z@cߩ[{l*'0b–>͵OykvonW e,lVMkў%X,S1!DOnkp@O<2se jVR`[5c2)jZ+NSzͪJyQ_Ucb=ZUږ-2W[<'qמEgJJsA)(+3F UPL_BF {$wLS;.~ᰗ$k>+E8k{_9YMBX08s##0,[Q]p*RTCp5X504T;YVQ)lYPwʜ}if_u"Fx<= |u꘎B3$[A׮ ]^ ngV?xoa?j9CR=.Ey  Ņh ED>4u"Mȣ |򍆔EJy#Wc[vu&bF1cn!}#TCs3T'*իK[߾Dޙ-{vݫ:sĬ%'?Q\ u2P`:[P ⨒<2ҿ=JΖ`1hobw= S',6&}a9d [C?hw:H>.4K~ 0 f7,M%W\`PM?&|` 1zO2ЌWH:ʹt-1Ko``]ѹ|vg Ն[7&E<[jl/*͢"f0̽\#%˙'%!FʝePB^u$z=Wh߁؄8%?R ؐ}:0F(cKqYon A|{'|q\ 9j0ߓ:M@4"a4Hc';ιzJŚQ";)_Pe*ZÏp۩%ZB eVˠDpp73y6r%%xEzAt3TSVL4Y?sлɋV+`n X2ƪuYMNɑFi59r=0&.`eu#[e28zGaZY$M̃g\YiH!ܓ-q%oQ!'04Ol>LlRmmWw0G,JQ օҶ#wϴ*ލ}_j ~BϢ};Vnh8Áij՝Jq¬[9d1)'pF)6Ι^8?7s_aVOKcG?U#V~=a{ID@7o9wq{I)6jg[φ'~ ?zMlt 譬A쓕F&,ؕ}.͑*j{5pAba%feCj15%ߊ6%PWzgޱFC[GbJrCua1Eg0<ُ9 k\*zxi٥6+%h?njl\Pj<[0@8oրʒt ;}YST-c6z~`:=Ʃmg ¸;t rDH3E5VXvX(ޒ껹szcTqs (nȖŘp?"nI4'!oqV%.э  :,,N!L=#|a45Oj~n:u %[e>h#5eU2t"d<8Ң촛 '8\5JC]13Zw5h7 Y/8mn5¨(ľiU oUIx쨒0y-'biq|XN  @K [9?冱Ґ.\Acǣ5q/杤,}׉Q4ݛTyeT'X[E(00?,ӼVl0ީ0Dmq Oxnh,fLl<PDbwJJ:?W܊)8-LХC,)Rގ x^UõzF$HvOEq5gG5F>7ᙓ&..MtìJAs;>`7oSBZ췷{aWnܭg4W1mECjk]0;O?$rjmgM`addaɽDy44NG!Lk4:>4).Я+գ4 DeRBdz+I/=i-ݚj?KJe49nOɢwb~!qC~ o*2e]!yƤ7$Y.7KmC`s |WJֻ%ӣ?"`a >R p%䱤 9['"+"t,DyۨmP1Krbν %9`hN;Iig& Z-3*l Z!'/ROQ`Ŷ,D5VN5 aP,pے9ya e9X{/Vٯ?ctTԸ 򜭃4k`W|yfi}ɒC4U߰-?PKv#"nFRS.vIk`]V!0yro`@&0N'"wq "bFwV9m l,œTxU 0֑dd)܊#$@-mSh:lXF_ |:5.N|^@ҺD,/WAyqfX|]Tq54Zq9j1`p@LA:LvI5 {{+o8F}6 A ~rQZsJZHߪi\p`feݦrs[- IvFWA*>?>Bହļ-ll*b"P޿HDYݤL4 ZS@2s;js&+|Q7 Ī,=o <$;NS' &bSˮmRScYw<gnbaQ݀.AMꀠח [= teLMYjF(+ˋ`-WF-""*jp (џ3Ű:?]-nu$CjÒe\u}  t ( ڻPj[~L;fɀj_(NiG=t.PU}1!OU$8AH&*nln/3E:҂6M;6UJQ8㠧(-&t܎ө73ehSSAL])= )xŖIn 2]dbv<xsjt}qM! ozË#aE۰y4YG+MԔV%NK&0$_KLwH!N 'Rq} g;CfYH )d-4ϨJV%-I h2gl=JU0M0͆M`#HVD,hHWc9Fא]vܺd8Nb2h{"l-_j.f~&|\ϑ.BOrIȃGY85- _ND7LYy,w ๤'&bpc![$jߑ |+}YƇ16Wۼ| 7ܱ#KQhq'hSʟ/ t/B68.yY[Hwݞ,N͢(n5 #]Ṽ|T쵇J;DFI!qJ=#L $'kbW*VBFZ:M3>wkGQ^:#`\ŐWjKd`K$ONk,7G6I>;Gkz-|ԥty`!&+wm{f~5h6u֙ ,I7j.?Ε'1YV} JN*(WD/ҲS; &.E7raD˲"@Qq(ܱG7/Xi!Z.WLhy_ g7 w6j&q&9ZuXjZ4xwnHuɛ*p!i. bmG۱"V+Qy'@^SI4O*8\ŗ+;@.:ulb>ѷ)n2ZUd'zNZ> +RЩj[bc7Osh; ɋ!}UP:8 <۸WP si|_ftvp>$O,nZg˅JZ[;{ǥFn JYpFr+*9̩͟KP2d9`$RqL$iU\זzݍ~>SPz;ȥlN#ٟ!GˇG鯙ov\ y{srW2q7&&zR_2x07Fqޜ36`Nvl9 O-r' EMp]FL$f(uh%n9!6/lj>O@,QTzɶVtCud9ßnm7jtw Iz|rwLe{`v]#>s&FlQIzA)MxeJ( Rz9,M '_4;R{ F]Z^@%Yı|~^LIȕ7.p.>'9b%\z(ˀy Fp#]#˱:&k49[ rz/o"] i):u[6!qI]"(5q)V">;Q "KZ63ߚ{Q?jr/ߤ)"p8+'Wѳ;vX%B{i$ԱQ (M'ݛض)ΤܩRUzтMH/YEb&EW8pl]f=jx23ķC0-pOPXN%8=E]5EpبYW=.]Ch@'f%h VIĠzBSpI3>im(Q'%j]˙= E%rv WZņ|?Ģ3QxEm|P.?l^l;WU-P{lquyu";!YA:~vF'TFAXӷ(qi)U/u5@2vHFM=Ӓm-6zdFL'ł^<ɥCE \Dz~;X:QqM5 ? &`qZ&(HNXEp,s4mNl:4,Ꟃ(uk~X%?(*.W=dC%~M3]ןez\pΛfY9j ],{"cQ"p{uc;Y7)92OIs8WT PhRo3JCz g˖Yr>oExّ<\>Xb/a*IvuU:AMdEӴ}S􅮽sN:wnVm=eRuhGۧH>Q<2{l'JjԛzO$N.`2aSrϸ^1'yĀ+)n?I,F؇lg"Δ2 ?4 dȮ>tL7ifCw䞋/UTMxIǡ <"@UØWQw>tUuq~;ʛ QBao^K-@Re9/x+XIE,4fZ RK(j` aR {_p$3%A75,1ڍNr93}>&Is[϶a*ҙY~{+*Tv`;Gk`^H,H85"pÿIXPDyY><ssaGmόt,\tW^fFolJND<` } 'OAHp ]9s40=Dx]⼑)19) TR^ Vo߀Ti&:! O | ]ڸ^<%!hZq9PhW i?46ZqۅBhAgjŸY,( /&]1>9 ޳Eܔ1fXg%O9uCʀ9 6K7'>ϥɢZ<20sX6<Vِ1z=U9J`>0~GH%E't?;qFn]Woc#3JL&tlUS"K s{#h6| ii1$&Gf='M ڭ.w#Oש0 ]s͔ Ѿ8 #d`RM/ dsp\/N>Q )p؟UyRHT]H< I$qkp˺"_8ڎH"$qC]+h-ݴOML0+ȥ$wzyI *V'=ru n^ Ge<gffTRPjnoGbY=,}K@Ht=.Pu;_ĩ_BKr$lu,i4\r5O59=Dt]~F xO:ghjrBJPuĉIׂD't0 #u aDb BZԚ9#q^~Ks0ȃtɦ{@'$l@ɋ]!eT%v/0L$  GD"휒13hbn-Z`3dfo#jLoA~\ +㡆!힙 w2paubU>4JTF" zx:Ǝ6':19S}aGz]|=p6tm!Kfs\ԧ:.цµ]W且GPocN3hÇR*m9a_S N&M?ݻ K/E'"|MM nvZUlu^D_1D#oKao|0@#N"ziv !|U:d#$QR_$2`W0eH CAq¬ rdPjyzybmh@n4^ǜFJ ˞oy=7<%e SPXF@XcO=ZjU `H毑vV&ّ 7Aqk8stgAi,K~ʄY)@\f!4&ŠmϥZAe`8x7[Y:E~Mq ^S7G6 ?ИǙ HIdȧ9#}BnźIu.aW_ʖWt_ZFO.]Y WKGl_Xeci4Yw8c뎋 I }|})21ipAxss*nCu"HAz_$MtbisD(뷚u-9VhQ 3ˎ[7B%?Gq6EC Z$_z 5g4. 0~O>:qAlS^5|l6\}۴zoaܜ6$UB\v[w{ޗъ 64-Iܠp*! <nR>Isi/qJ9lX1z98 26g4DMliLX=ށ^|UB}o"mdj;hpSSW + X}߅ O+B'7GboBaSv4'ҙRl /~1f$-(,]5E|5C:vԟ2WzT8 a\o\gE;l0{|-s݄5;I'1gUB?~hwu ~,ߞ}އN7S|?wSJUH;^ö!r< Fa.[uV2.9 h#4 no 曠uM-MfgCcpόDpJ=MyK[pʎ<rѥ7|wD+Nݟ#?? "9M+ǵ[\U%TXX4C~qs7v*OQl*9 V ԐhD},qt@!§e^FQP,a 6ʹ\bN堶zCn5 wOQ)6 N0`(ԊgN\G0F/+Ux4RLF䮹a7| <!|aXgc3"A覇Jo❟qk+{fC aԚեn|20e;dYcIKuszc;9 YOtXkϛIOi.3b\{2Vh:V1v׿-o~++0J է|Xb`iَ N^ûHoeMFR;,$u0?}~@#;46uq ~<\(8lbrt Iͧ 0$ `Π΅d[NĦG\A$sۥOS焨aStԛJгCl9$"yS{aIߛ חANc#szNSڴs0zf+~ԿXeX3hWޣcf{0sR+./4NVGO>j~ op⎓FPy`fQ&YmaԧPY4}ֶO_a7![3"P38LEŷ4[ïcɵ7~_^ ?J5)d:/DNoLJ7h/M)Jxat9Lj *;V Jr荲gyAr*qqK &9kD1QLK!,3x?#qR7"c5,^`w}R04f+48 BOm%RbxS eZ1`cYɠ7e%SetMhn.E~ngOGO䍗,,LKRd޻ hs2';UHq= PȢ!q-´6\Tk *!.o8|4n lb't GF:j-!wafSfC~2A:TJ#˰O-څz|ezSe.Иתo83Wx=K~S6ay7MMLF"@goؘ@<鴸@\NS7ǶQ2n]"z:al6b}R|zSqw]z~b69q'6||6*kQ M81!`+Wk)G+DSܟi~Qabb@zN"Euh֗`Y< N(q q%4ٜoiX\,ft И3q̆,PsNnVjz?8W}E闩+e w$ c6:[ߟ6KKxQ9qK2\cwzs[0mܥ؟QRZ~JCoE r~VM͒WvklH=uճ9a)W;ߛwf6e7"!$o">nUUjUɐ%aA$b!7I3-z|.ō;[Ulًumūn7awI".CsP;鸛kNq<$xD1P$d$R}a=Pлɩu-T/[n1Vc(w.SyX7iqtSfU&"} jm_D`%֭Q t,Ac)PN5/-G^*" 5_ 5Ǜu?oKh:ǵXI V4a{8gDpb/j$.]9z1hDfIt@S6r<=ÚL٘T=j8#Q$:W>5' x2^7+6~wtL,Ӛc‡*'1bEhяgIQJ'k،a XHM$l%KaS >ߋ9# o&oڎ d(rHy .̃(:?&O_"lwcDʻSRX5?!@7do9 xDqlP0+OOYƟ`d% %װr3'Hòċԛ;Wԑٌ1}fAjq!Z$]"w q&A2r'G]2Yb6;oGYe l  ,nmwtlrZ88J5i^#Q8X`oܷIRK碡~NsR5rSJڻ`yMq'N_eC蝮90r( 窏T%aWfRԺDtakeഭQ:!Xr6chI6-f@e[RKQkw|s lY kY$ мs L.h^06-;u@؀ҫ5z{ȑ,s3c4 Fuw HsC'TUhyN i߹`Sa)6<㸽,-Cy481*U _Kz3u`;}%5Io?i43hEC*j 3?~oJlhH4>噵|=1#w'~pWVӫ޻[kPڭ#9 0C4&|#V~54^2/G*Lr]sj]&CCJö[)6bV4s {u26yH'+؎tOo{ވ qLC/kYHe $<[ ?*1w0(( JDT\8͏sgsع "V8I"b!(oi3#EV[y^)N庫%=Kgנ22,1]DZ`<4>Q(LDlaկMy$mo(2$sqf }qFwŸ)@z]\?K! U.eL hava[2Ԅ߹ \V=ɮ=zuTIL(ѾnWH!6Ld=z_TGBgWV53“:~=V6; pajvLkmሓޜ} dR8 v{'j#O2OP N_GVgJaĢթ1Lz"w8#64*sv^!/$6[-4ܞp~@k mE9CHʇT>$}S:~ɰPޤd)e̍u!ǒwomjtF~oPԠ3X2m$ 2c3[ C=:Ixw j ~r(|>ݷ MN:Ǝ\ncƺ-^`%r/ t%­p yM; e{L`b(W EŹ̤t$q}eoavX!X2]fϾQ󯌧Lb6j1^:nxA[x'e?i\(ٱ}z^]dK;>`^*M9{ |Ys񴍪6ànqlB<ՇEb1?6 CgZ!NOp̢珣 L:bѭpvVTC$P[Z5utW>um(9L5;)~eVREK n@WKqON[S!k a/>Hg?{O^ 8xC-YDxO!H>W0˾e/{Mzk|&~#o(yWa+1'+;_X6g7qwhpF@,qT-;n//`aخ)aUr ڄN'7-*~(@Þ-/xuPȼ.R-)w+AJ^rW͑z Z>=EqP*(+lYnZ>X|AIfm)fz b_qp){\mL,Xf]%-}9xojba6)ya{s\8{seʊnod[ځ}=1|2l==)>ےZmFdtSv 4=ɻi\)+uvqE}>,XOs[@;QA] q ]D͂FY[#L -.V~]K9P };t21IHp͐%n7d" CgF-0"ɖ`61_7V=4@U2gkDJgEtuC󈼖 ;h "HGWȔ,'rlY<>f꾮'':Z0 4v8((~ 5uUv׼9b(TmYo u\KSó(Cjo?S.c,61 JFײ([,shܓdZ/q p0 I&[QA%r_z "a0 . 4?K;~,LNg<:j *HUU#^D ,@g"tl#^tX%9)pұp^Yz "*W٦7U`v2EZ s/vŹՎ!>~J>TM>婘dowqzU%IU 6C4ފQ/^^0|ΐ=NJm ~сoiL>0kyox݅t7` w<֌$<{N؈n!3.|]tgDBܪ \kebav|{pͰcJ"f 1ɞBg1 Aq+!voVdCpQr|t͟IA0[ie+`-5j(Y.•}M&L;uD"QA%b hsg(BT'uLA>RM0a qLR?EL}ڮ#}Qph7c\jwLDA[yvS5:Y~)bZjg0+Oly\ףgDHSy&4\Ffžf}1ʿ(@#`@\ȊWoآv؁pijjH*[P}"$ >s ( [o0"xYTO״ʪ@KuJs¼ܿՔll-.GT+`!6Ɠ:1Pc _U)Lb)f#i<% lP^:?}"FΔ@w1l9ˢz͌&̶ǛAq62KUl PrG#49yDNe5Td tP"o}+[Fw{:zZۣ(jȏCЛ{xUJ.b;eF߷a` ږx+*]#gZ@`  r7(®s@ժ(`< עkr\h9CMEU蠈FAn,Wxf "zh!y& TKOj=˭zZOWN((LfeUF:h|,{!^FpuV^H>:^l>IF8}183"ɨ>c}Q3zF teF 8?}*z(ۍ^r?lh AEsWbJ]qXǑ~0~%ԑB2ס!!k |3|b'?}}H`LR~|@U+r^ DMjX]2Mt9.(p

qSb?{UJ;Mv(' Aì_k2[]6yx٣n-+[SyUipאo&IByiFpPC<Vk&c֘\$еBŚ}+NVPٝ'36/V`l=S[reH@{spRL)xrO UsGqKwc{\bhQ(\5O_o2th<~$R+3/$k"Oω MYh,!l*JV+2^ˈ9P q*َ30& ja-G|niKa 32zlJX?:qЌah֢9}_=onkD=V Չɾ?<;Qںf) R^X,,kϣ'#?Uم/r[.x%ЈbԨ8L>R!L|i ɻ~ٓ墽VJ!tnT&`lùCt J3.QqN0}"?D}MSZkH+JdLw`02$Q6˙ ZHяkjSd1]tKU@-6BݳB^߱amE3HN1c;@|wA>ڥ5C$*ґZ*NIPl3v`;g ɶ%OuE*jܛ+#1Tw܀;4XGb uOZʆqEUG>@Ww@HLI&A^̆j|pjЌqFs|#iV5bE\Ҷ0OCWR=@[7K5VtifR=:Q<È72TVϤTɷ0HD:1rf2M|~e&L/׍֡ I3RFM0qT^O߿2R/TbZW$1-ّMcOf:}:丯usWjۗ5 CVȚ{H#Qx_`xWh a!q[[9JkAEcP1NDxo2~e…mAh3yQ<%<ݑj-mklFo?̄m%E}S-`7{G F3S^p U}eCa2j3䙀u%M-| 65)i "tKt'l) b!$S7O7S0pCړDŽ 5iU[5dHK$L[!Ri'off:Lx>hJc|Wֻr ?о<ጆr'k-= : hS?(nEC[ӭY頦4EZ~+h t-[ >!ɃmoNy`-~}th1$o$Z䰣,̅*}8cw[&M:ׅYM< 2j/!SV|N𾭳3ž)N#4I`Gu5 wm|J ;bBuA4CD*W3, "/V|V<l1ua@ԯ#[9(rw9^i"ªuf&T!NrOl[#){s;L V{h$LY/e\v MJeDc<V :l@:@~r;p Z(C•>}X^l]As:Ͻ ɚ~ƁxY6 qfmVwP6Ʀ T JIv+7G/y˫)D}5+R{D Yi,JU$*gcLεC3FȋP-Y":9>͜*2CΓ!Pm w.S1L\@&ĥ{~۱>G*ƳemN~36{!FR9Ӳ,Üg%1eP70X'U87|gŗ%@ >"ao+&IgŴh)sIued.?W-dVGi9 aեP9-?v6u+ӣ`f2 >m$ k,HU]}\$Q"ME4ljİ.lP:UIAuMz0uJDLzD/v I=⬛!R8Pύ:L$FG+D)Pc$`@(Uّ`N"U.wd!p)Ӊ`qMb5-o;1rUs̓Lpj Pt:uؙ1#`q".pJtkѰu JqT:%Fam߷riF|y.rQ\t0ϯnX?a ͹Y'7]v}jѻ֌s/R"X3_ +p7OtӍp}0w (n'Pu:tՎ!EL~l,7 bvjIZUv|Y'Tzb;a'CDɅ x??vqQ([I^j%!^u?W0:9o%DfuۍrM-ymPxyHjfe\sjrИ?T<۩?>w'aޕe'S T߅a(^Gr)zRD˷ma/oD#/#бG f?V4jg6A1{Yg$ (R1ۇtk.ӆe/ >n13/sM [Dȕ+DǶ'9"AGnũE3ț?M.._Cx-:Te͡[c?WN()RDq z2"퓌HRC0|(.br5*H$w<6mn*+oË+i6"i7j VHxcSU.tD{G7L'^_ei<&`\|i>1;',/z:F,4Vէ䊥\{7W](2wMq Y/(;HˍꇞL#""REȏJXN\߼Ҽe9b7&lHw<^?Wt#X<5Tn8nÖM&c>rJc!HNm.i0|Y%Po8d{y(K03w9g dCvL=F}`@ɏ[K@+51bY'6}Jlß`Jh .PqKH(u~N.€%bU-{ ||[,"7_#T*aDd8YL<'Yob{b2J}Q#9Thzx|tږu#S,2g]$M)+7b6_UjPo$t z%,J H:C܋m?h2i$5Sxo^QJz7qNNZY^GTzt'M3̎=oi g:Kٮz$z6k}euG s6|4ΛbPlC?bŵ207}4Pn;.?K> J*Ï f6bzn 0 |MX1{ bq2ɞ\Jo(N` X?kvkJљqλDRSMՌ]8:Zrs:h07ʳA׆4(GaZ>q /A7Ą*\ 48EO/>N3y 7ZMd{\0c\,wU|)˾&7YkDU5Qħ+h)0].N^u.b`u72E͑ ɬ]$h[a5y- MQKaXJp_ݙ5n[L@ȖwCTztǤW`viJZ6KpShxˍswrEf=\}5hv,?_AdI{t r\miҋ׎:Sj]4 r:KkK5Nkz]CAѷ@(BlYcTCCݐ\C#r,ud\9ߋo,iGzHSVCͼS3ȇmUNw]\5 leu <.EҍEbyI%jI2 !eppp6!V0nV+{e[#et ֖g Dbz`ŲDA_5̖ݯ|y;{tE.ӿe,_Tw|7XN.=sNX^[v<=?سc鑽*@"V:Ȗ%R_[Kٌӈ')VWi;;z+ȅ2 ID_1') Xxeaj,[.J= ǃ/K|=JBD\!,bEC.KY/Լ;./\ѸW·|C*RtUݙP֠MLL]떲s1%s[AaO({na;`b8ncmQexud;N8'Jw= er]:+-apk 6^ QlEaɢ>4ɷ UmnoT?S!"gNzwPwN'Kےg(UU3SЮ% UP$NO!-6wMM#r q&L-6:O* C(AQJ)+zBm U./?}Nte _jվd,Đ.D1Yza*Љd|ܠ;+2۾(Q/^߅wJ\dTYql[Хm^%B3\ 24EY.%8 X![atY4>>EIցfa/ozRE&F&o7SlИPjB;f~*coSuGrJFp=NtIw)kіg.U))\D8Q@o~ǃ)⹿{_n @j%oґ>ε %p=rzx$Pp{IbGknSǒj@5ZNbґa nMsuJ pTLzf)QKF$F>gνZ/<#y*v.*Eˑ>!dBz~u7嶌XG,d]2m9'LR_zlrz(% ݅  9J[K)%uM[WAaYżv*E)I?I@-n=P‹D.$64z[#-=VSNh(r~S[!V+Er5vANk`\jMci۝ &f]8x>KǹxnuҵA04{,-4A\]Nn6X[ܖo d%"ğZFBցS- se w3⍄kZƻ7Kd;HƣU㡀HԈQ2I7O/ZRKdÆ$[N**=~)Rk4,:{PT7-ɷIP!яVC#][tGvg _2>?^y_4@sffJǃ;i ޛD2L]-Q/Ȍx NL;-aн<'QG0'vvcU҄ .4/I1ͥ˘mzڦ0*(5j'":f)tc$6 `%t)]骨]k kc54|651bU*(:ij|;pk8C3Vzä+xm 4=ݭ {vxbCئHWp-T8y#Q@掅󤯟dk-9xwMFT:".#3 Z,9HIĖJ"1 lo3w{4w9C0|:Y3g+^]gӝċͺ呛nl]y? OF겥2v}ETdj^= K*y2PpfV\iA[[xȌ՘bNo|7՟i%Gј ڦmvBwCbUW#^EKUN#$q/{7zo( cϐy/D yl ].4?enAڌU«CZR&l/!cn9C˺I̿ca$;yz=C.1]Av&t&"kՄ\tAHZ>pNP#_^mNDf-MD)^zwQTTc\r2E@gƁ!~&frzU NܨsF3173^:ֳ[+:ܧ((0D۔2C8((;cΘdE^ O*{ÔtѡqU ^Ho9_]ZR%c~X)9xNJ ;)!Sk %m23.JhCږV5DmgP*hd69Ijp ذar -3TաBa=7"F~(ǧa.+p6sH5CMy8~7Geg뤨-Y@5M Jg 2WOP[Tycwͽ:t!L hjEa_+=1Jc0?~gr𸓆FvE~ x FDzyRߡ-cvu\/AEʓT!ȵ^kp=ɇ.hF-Rw4>xO{ g՟>FGcaG8]u&VEH b~dW,e*pkhKpB 03ᔍ6N )뵹kAnİ 灢 Յ|8('#+ɿHjF]O)m !v8$gG}[3Q Nz0* I8T0v&mA5:uD0Y>4'L:)8 ] !*3k<Yo9Ɯ+wVVOp=F;ѰpGYipU+6[KmO?ݙ|ЕٸO"Qѳ5DukшWθi\dOJ{`x-z4x,ϐ7|D`h572'ȩD +vũ3*5V̢i.nW`C@$ƶ?*4 Tӡ8No`M4ˍ0h}.cz^5.w>8<%P1kblvlsΓ̶O}ӧNf͔E˅cc^ʇEuJ"tfwkʹyUrn`(;$ 09ϽXfT'D/ld&#V'LS)~Lq s>p-/ Y[䇹i,1\|͓l1ǁИ 85H= Χ gP (^?n.UȄ/*\&% 2GQZ`9bD6ս7sfUBǖ,g!sk̪Q~ ug/،5m/}$ *;DOk w]QX:+GeZuߕ3+YкQ04No(Kvs#NlFV~ dF·Rr챿n \o@9V@Ͷ,=onF=2L# wqE]ߺV<wﻰZtqKja癧'v~JiBN?Ys- ð_=3˩?7a״џ:"1V^v Xm b7PKc@eȮdULCnzR ZNHrVﲅ {e_4~.VRGk\ dAy5: xkR" LWc<v† si  PZ2r9X+јT4Ga (ּ`W~t7KKuw˗3mtG'ekNA}1-3|C΂UPq.^[+ϣQ/= %"B߳UJ7^A!E]\f<\vUM8:80[#l{d:=BMp-l"DxHq۟_,!G0,aÎ=F"$?bOp t*N`,%_T5 wX{~LdN61!vr!xkyW5g/GUіnmM&l hZ%j+)G(,Nv` 2s8ׯ"*qf@׏A39d̫4o-抚t.Kqlͧȧ?րh-86YK; 8,2E򣷷ԡ$?/7,Z7h ab 'kNƃn;OMF)X7N(F>8Ѿ)TɉzTҷ<,$#wvObba0"bfaO/Qa>G{mЇHVҰ虵Xֆ++*/72WP7E(Z$.YڒmFOA1󵍈  C^eϠPMG78"^LŽ:ø~\}3r)49B<|X{H:B)MD| *7C"!hJrHX Pp@0.p].+e  ^a/(4+Kc0w`qO ɲCOP釔@YRL\E26)7 МmťGqxN}GgD}KWy\VeJ֊jݳLhn|,)1I@#g)&'-o42}QAD/Od)V&Nm[mæUV!JviVfcKjoD'ɁH *_n/Ssz^rKekR=Lysal>+NG*Hi/>ʩ"}c@3 ҄{f-l }QEzUhW^XM ,;8=KmS:,Hnu )hzDo$NohG0x Ky%Gqk N?v}U"u xן>ä"5Ѷp4As׽X<;f* _7yʓwh˿k^a<1m旺Jj\fXJaV<`cy$‰DbNOD)%^eY*$hM! 4ҿ2ц} WM%a&9'>]',Q//((ls kdl}-Ç`f@a/Q=H㶝L*Ik/SYVg-P! ^P0Ky᫧99錊?9}.w09AݿQq=DP0yqN<ߊw%f\ v_"hWsHs* ^LOKW40h[W6&Іudƕ͈a&\wfό#`2ﻗ1cM-6?dTFxÙ+h`F!_FMDo#'IQ%6nh ;)1Y6Yyo! J!{0RЭB7?p4P\ԛRivLtg6,ޡ0ʈg@ĩ&ɱ9cށHCݫJFJc.L<:C+T^:~?lsdZPG0.CS>z#+N5 xLh(aJ+~ub؄΁/9SI7o1Osk{VeLٛ?Vox&(:j7=!4Vo @z(/7~[%:wɡj^Z?xf.Y[EHZ"U"OQpkP|×R|{mfOovS?tIy[@HЭ0=JK 3]L-㕆sƎ Cl:Zj0: nnGwǢ$7薀 Q]e*I4W|ʒ>iQ`kWy&jblxˠOB@4O UMz.Vwa+M1B7JJMb"֌?BEzvM!"{}t(j%hLȨ9zT9XumV5&WU:$(Ln-ԿA ;:Vn.ͦ.MR Qe7-Ӗ/1Σ=m .)J,\ 2/^S+ A q+N;}ɑ^FYWV} oMoHiMM6 s=]RUkY̔55VSxp%F4 OHF ]r'*CHIݜq j ҷ=p7z}Ȕz"2d]mZ氿J˚ /χ.~.5詁g cA=KtdamS..3#,qB:b4pf.#˥Ĩ;=O5$ Ŷu /nsB0hN{e "=F +&:ߙ.$3='aT= vM ["rܘvjW ˶E}'Kz?H-V,]kkLUX'$|LPp8:һFdqTࣲ뼣b' 3lٲ3,7GL17pӑ3W]nOoЫE/ F %#xWn䩷6 ГqzHUeQp#W(0>&ϕg5)Ea/|(-<1CL! VIO+P(ݛ RaqC=d"ٻv~s:rȧsxX<0e vƲS|sRMB3o.f;;fT2 !e4:\&r.AhVAU$O G$EN̈ 8 ֘)9T75]%xx]fxСOߑegnFNkU LN/ч#<2Ƙ)SVz$(mكvʡɞ/J^zA}okd\Ƅ^b6# 3JJ{nInUCcL4Y:JL0XMPrˋi{B0UU)sb;1 &tu|O(tƆ+S,Ԍd_iuDrW! 6z,^st50WO;=waSqJIXr WhF&p!ˆ"t/by3ȟO:uV6j㔁k[zTFاd'2י.B`[;GEMŨW pC&NOV2m_:~BgemV] 9iս"@,!mb=e4!V[Edc[u MGpap%<򔔠Fw*C;k-̻.0=xMO1|/D+o%$W\8"' JmWϪcJN K˟'53h<-Aq! 9mL%&OwPP _Sp5J}JmOg #@S5!^L2Z^ub<^=nN["3B?6Kr6&Z'!-[ThO>AYz 튘Xz;u9o^i }廖ÐrpZT MmPLw?2AnETeU ZFkR>8d=VD9C@'tQɫYJlmrVUƹڅ2TQQ m$l]Z@ ҁ{ulrf~h Px8,֒s૖DCpl;D*uuUp6uXY\6ai-ցU?4T.\wF4*V$ d&ׄ} n%I=LUVfcwM`,)̦]9/=LI=^Bޒ Jz&`Z,=W›t_*rޚ7!k+G\e=&Wv"B'w%Dfڕѹzr4@-g7H [~.!K-&S\?m ۷ұ>]W K2֟i,W]5FG4;arH$)Appy)B`ޠW|Ύ mؠ:M0JRXL#\T[ǓHv<'wfI2!~pt[,9+=3 ɕɔYo3dR4ED鼬8y`0(7.s|\u mމ<(al.(|Kbe園gCTuKC%YɄbEatMwaM@}?_լG>IDTK;HYty&꽃T\c-ik$zKҝ#7hpt#J|"rf[6$ L. {ڠ$Zb泳zif߱#]o7sz&@O u}FTŒ"oplGx[b{q*esF)`AJv/gX.iI;^ϴ(o1GdSV}NlkTlXXk.v=9U0G#C.RD\BGqU-L^EH 5:02R^]&)T!AF$Kwϧ]\ʘ;sنʇkl[В9οyisq{zNŕ)(΀5Gzq(P{z^(?=vPO 9 ɡ]'.B{§~E7ث6~|οib|ԋ,wsslQpLrNeէsW9pgd֯,;'TFhMk u~ ʫ9ao#90TN݊o"=C6bHeāJh0+sq> e^=A½n{) ٩_-f8߰~siMVR}7jw-[J5sI;2S'yБ^voZG w]]yLZU-oI5Iۿ,EXBL:lʚ*踛=뀮yǩ5:_q/[ ~c#QO{x<6g!Ykܟ#8!Oai;׾Q悖pJtY]-C TgBn)!NGV`#M-v~o%1!XII?Jx@C9j͔ mdA Yt40.8}`Vic$놄J4-eC].!jbRlǦaǥyQ!^T!xWka+[~D dkB&[mU:4+GZj6%긼Y]@SY`{yL5`JgV||i5VwyHОv44!B(A'J#.h.Bg!NͻU2#2u.^Ƭ$"۽TzDC6[ͭ2;U򂣰@ZC&S2N( zN0- r_ӧgR$`wȜj\oöqe5*="<d7rG;1ܑ:Zut|}DzƜlkSo ncah6%q;&לbnR"s;No gR)ljvz潵c6$5K&pK}>Nϯ}~ b9b/?s/ך;.aIܥ[Z{ꚺ{:> ](v5nh_l!2\qK~&ՙ}!nCKY LHX:9f<zlx!uK3t@v"~ F r|4>0Me!C&q>臦(.cR:s1}Y;sɺK2 6ÛNش T$0(84B$ "w@4xGHn[VodK-kww (x\ OlYUkon,^VjcQ X '>J4eX6[hU `!Z>}5^W< ?R֘^pʽ~ɎTV$JDܥIN ,O[xQ.͛A`xs[>Hdp4DŽJ;-ErM9s;NENs" Un+?ҔۡݻA1P좱/sI7 (]7PW廩ITĨ~';"-&92[}"d֑;V\u`&PZKshqԬ KJiaFAnqQb-4}*!hsg`_}yt ¼pKZMeD!KGL2;Z,fGOBϥ-Gtב:{^D0aF!ЭII( SEx.&uQL 3l|A,3Kx{h.p˨`XjF>e%dBP =X/I{o=Muz^u6Y5tdsh9mh.)L*y_(9ېvwQ,)ZB|Cp dk*`o K0aSɔ lse.د̝FɾmU:s"жo{R"Y0@s3.03/!,8e"鋟it{ǖfyJbkw;aayieR~ΆK١І8 *@d"k2R!32f`oe(MdM4Bo"=xKYStZ u cٖj[IUɰVKQ@1Ns+['(XYHgH 4.7,Qo@p{C(ރ`H>u#AvV\ mo~*Bj4%)bV&Ƒ_K^<0.IJjXR@3-F$)N LX hY))oE` "#ń Ɗc='&s$TfJ w݉ss;1|ZQj@*k.Y!ނ/Q]pvUb2UxLGinIi`4y~HHP[jHrGL//ayU#' VX>XZٚ"Tb+se ,=VԤxf.DV7HCr}δ8eS ~f 6 I'5-xS`BXEz>·,1}ĄڋLQnR5"S!|81vK)\ jw@c' b'  A9X,PB G2JULrh-ܦ)dQE57jaE_Ty1yx[C60In$YH7dsZ%l3Sp%JW)g&}-oD9;\)9OˣS`u4GypC)IO9.-ȾU]`E=Fc̀䅛HKo%΀aIcv>5g+4g*Y;<$ۥ56w'զWMژgtQax =?uH Snp0}b%!^} 8-#@z;3#1Eպ_3/{`GN{~ )~$4&%bX9&x*)K(_oYS2y=lj@9rj܆/8QB䮇Ϗ+fҁɽ. Sh?i`TKO=o/;} f(J/̦8%-ӳj xH[kuuddq||RI %I<1bҁ*~M(F*jUu> R#?:׋MG+@Wr 쌑˴д0;݅t4)UkʭJ5a vBr60TwUSхؖI4ڭlQm ~Lh-;,zcwuާz^,8--5t7Uء=8`Mh3BW&tН_ GtM'_2 $_"Jry" PEJDElCڧНR QnR:TСKUQ6<,&;bʻ׽Ѷ?,T܄b#yHM!1&TTϿ Ilp6g9 E_I8NY;=vE,S')Z}V(>+z˺ҟiksH՜f]&0m~v-qHzڸͬdYkrפ2D3LD~ ұ(o !"J$:lI0Ls:.sӔ$r+ʷ2@}hCB:g|"`})I!ds$1ijBo'L#,<׫6{/Ӱ(c/y>C6T  !@?n3 8m{G 4x،nL۹vNkՈģXK!4TƉW7`v3DR(box%k͌ZHp,BN[ Sj% z`wMRKiEc[I Y1kY;=<M<^lg? {Z'~\JENQ?k>U8ᰁO8#si~kl;:Ptfv6>>i0/Y[˹K&&ei@b^ ab}?ףe1֩6q!K:(,"_QG@I|eď_fylx"rWsyR q!KJ!γHX^/gf[X5~Y0цS_vΨ!&+A>=VIpt̾&CҞPC%U绘imZx{߲6ZzfCui~>N[[K'E<5~Lgɤ7_  4Fz?i30IH9ځ1QKx~4Қ [ʂ &d|Jzb HWĬAc2w*bmFG0I2oDށH"I7j_OG "mP8ggo YڶZt%q_d)_Idƛ+iiee ꚴ MV7:Mh.4Q\~.3#ۂ;{Q `O -Ɂ c#zNُ/T 7 Hzv9~ܮ1e7~e +jvU5yG$lJPsB=FdBRxbB?eݭi;+>]ʇLוQ*EJ/ʓBYA$96_K_$ECO)U h!(&hǰaT`5 baC:eh!l ~&B:K ~Q8ٓuhX,wa?lǩ κijViӖ a.d@\v2L?HsfH~Eڑdmb+Tn{i-Ɛ4$Q 髧VwM %<{PW`f{̀IG%KMr)MeWERHwž7P4$Glt5UPč榃@iZ?1a!}x8YF\am)'LTT@ooߊ(qMj)l.Stky & (нH'pvFl'oaOi0 NiJk珟)8'M Ȩ `E',ޓܤu2 A."\tբ{ C:cưU2R~Qw[#+()׷ڒ,~B:"?ж.H135۪U],MZ(xO ;їP:v{ieթ) 1dei7|?d7<4,IVÔ%CL FڻvY}EB>g. &E<'#L̡I0eΈt+Pd7^rw -LIg?h~+je" i3js?aB?e,KrB-L,I?1pIc#*rzhd̚T BtFUK]ǗߔF=lrJRM޺+Wpz\Q-`řlQes2W6ֆq,iUܞĹ7*bNcrzxlB;m C.C6͐d2 rr? ~XyYұ wE Ft[ e[W2Ip؊=rn0T=SqU܂]7Ġ*@P',6. u+d9 @鱺AUa=Cޗ5͚[gQ9}"C%Lt=բF՜OU _e3!ɋQ%@A@Z}J[T![/q6 *fϾ_Gdtł$o4t<,>HK$yF/ ?yF8X8%|` liBr,,C 2l'f2`D,Ďb"NUnIǥCGMk FA9ˬie%(6HZ:z|Xܐ!Fve.P }1u7[t\Vbܹ.)(ڽ`.<"<Ưct/jTױ^[wW(^/)VoӡK]U`GBM]HNR5~.g{ q.M+B e; ,hlе%, S_ykhAm?طBcE+`xM7~pV ~J_@~|=SJ ^&n }ȫvm4rzZJ1#8,DOP/$PgBbfڵ.I)q6ϱbPv<7zs0J_3ߔ b}⒍__sbm?B2]|ACW$JB40VxΔWߏ pZ ۛ(-'"J 6-|o JMa/'8 0L%: Rr.*/?vH@S}Op1jT.25Axg(1@1'ǀO63%?nۚ1c\TVw^=2ds"ဆǴ:2Ǎ5Yun2Y̓%|,Lx "a)vN{S.4VJ^5DsI}o J_l< Ð\[/*Q--MQET?!}1pX vaz-tC㚆M ce}+Wmzj"DA}c. j>ݏ !>=>՛<})eJݏ8/zZ#gCR rGK54BҠ;Ac)` Nunis/DIXyctoӿ$7'zx}Ӽ_ q}4 SZhϡ,ޥ#E M͗TrSn"r chDv g™%)#7%[`p%}S6ju0!P9f(ȽtQkH| RfLɓ:C;#(ANES:uM"P:[@Cڭ|Hɜނdg9<ȡ<]e*'Hp18e.pk,)nۖ@#銀&hRzKE" ^6gh1Hi2N!WD%uP7NNE/XaĭõT ZE\Yjp{0+0S=:}L2AI? VɡM$a,"ڽSL}_,(WĔnj&bmmWY}*@Ȕ4~Ղ3xnEၾ[Po N~sS*(1l#+iG?|࠶ #\Cx$tLɽEUvX"=?9UIK!#{Ӽ޷sQ[Ƭ)<\D6wh7U4YNDS3D1R|pw f-gwzӲw1am*V e&&;;]rd7no;jΏmrŰUʈ Yqw Pw ǑKW%{b;i*3(P2%fV, yIƙ9tگJAQ3O5N=CCG3ǀ-#pr?Ms7ݟzxޤlN1B-FUl4ƻfPj?GtjqA;nZDHTf10JƢdmt+E@$VvP99HRh0mӺQRk\NuuaY}s/,|TCO^N k <8QP%, 9`:G7C* t>Bq6HDre1*428שk)t 04b 7W{-|*/{YTYX\T`omשd*cTBAJ{t}w> a4z|HРj! OTKYo+ṳpBz?ZwMp}\'~K,iu*`N|"\dR{YɮCd -gP0 FQFz F Zʤ#B(|BEl`{H<9@ i ):fD{D_- J AstuO ˮVRG_a&^0IN)2>plT$8g jz⹾[ •82X,Y-e|״ҧ8 -F;e0w5 R/NzD : 8c/KD\Aciҿ;Mq~Ql J%rĠ%`Y%ɖQr淟urHeB9܀^;1 KhaD*'9&zRumAUs4[n֨Jpew .ݜ YZ