apache2-2.4.51-150200.3.48.1<>,b=p9|>~D1X g *F^PDζ)mW;Fu%g~*ǫMF BW<*l1b4?D /^nS9FBX^QVd?Td   5(,Efq y0 ( $$ (  0   Μ7x7{7(7809:=>?@BCFG(H I X  Y @ Z [ \ ]^.%b2%c2d3Pe3Uf3Xl3Zu3pv;hw`xXyPzPCapache22.4.51150200.3.48.1The Apache Web ServerThis version of httpd is a major release of the 2.4 stable branch, and represents the best available version of Apache HTTP Server. New features include Loadable MPMs, major improvements to OCSP support, mod_lua, Dynamic Reverse Proxy configuration, Improved Authentication/ Authorization, FastCGI Proxy, New Expression Parser, and a Small Object Caching API. See /usr/share/doc/packages/apache2/, http://httpd.apache.org/, and http://httpd.apache.org/docs-2.4/upgrading.html.b=ibs-power9-12HSUSE Linux Enterprise 15SUSE LLC Apache-2.0https://www.suse.com/Productivity/Networking/Web/Servershttp://httpd.apache.org/linuxppc64le if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : for service in apache2.service ; do sysv_service=${service%.*} if [ ! -e /usr/lib/systemd/system/$service ] && [ ! -e /etc/init.d/$sysv_service ]; then mkdir -p /run/systemd/rpm/needs-preset touch /run/systemd/rpm/needs-preset/$service elif [ -e /etc/init.d/$sysv_service ] && [ ! -e /var/lib/systemd/migrated/$sysv_service ]; then /usr/sbin/systemd-sysv-convert --save $sysv_service || : mkdir -p /run/systemd/rpm/needs-sysv-convert touch /run/systemd/rpm/needs-sysv-convert/$service fi done fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/suexec || echo "Please check /etc/permissions.local for settings of /usr/sbin/suexec2 ." fi # wwwadmin group existed in past remove after openSUSE-13.2 out of support scope if grep -q "^wwwadmin:" /etc/group; then groupmod -n www wwwadmin 2>/dev/null ||: usermod -g www wwwrun 2>/dev/null ||: usermod -s /bin/false wwwrun 2>/dev/null ||: fi PNAME=apache2 SUBPNAME= SYSC_TEMPLATE=/usr/share/fillup-templates/sysconfig.$PNAME$SUBPNAME # If template not in new /usr/share/fillup-templates, fallback to old TEMPLATE_DIR if [ ! -f $SYSC_TEMPLATE ] ; then TEMPLATE_DIR=/var/adm/fillup-templates SYSC_TEMPLATE=$TEMPLATE_DIR/sysconfig.$PNAME$SUBPNAME fi SD_NAME="" if [ -x /bin/fillup ] ; then if [ -f $SYSC_TEMPLATE ] ; then echo "Updating /etc/sysconfig/$SD_NAME$PNAME ..." mkdir -p /etc/sysconfig/$SD_NAME touch /etc/sysconfig/$SD_NAME$PNAME /bin/fillup -q /etc/sysconfig/$SD_NAME$PNAME $SYSC_TEMPLATE fi else echo "ERROR: fillup not found. This should not happen. Please compare" echo "/etc/sysconfig/$PNAME and $TEMPLATE_DIR/sysconfig.$PNAME and" echo "update by hand." fi if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" ]; then /usr/bin/systemctl daemon-reload || : fi for service in apache2.service ; do sysv_service=${service%.*} if [ -e /run/systemd/rpm/needs-preset/$service ]; then /usr/bin/systemctl preset $service || : rm "/run/systemd/rpm/needs-preset/$service" || : elif [ -e /run/systemd/rpm/needs-sysv-convert/$service ]; then /usr/sbin/systemd-sysv-convert --apply $sysv_service || : rm "/run/systemd/rpm/needs-sysv-convert/$service" || : touch /var/lib/systemd/migrated/$sysv_service || : fi done fi test -f /usr/bin/firewall-cmd && firewall-cmd --reload --quiet || : exit 0 test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -eq 0 -a -x /usr/bin/systemctl ]; then # Package removal, not upgrade /usr/bin/systemctl --no-reload disable apache2.target || : ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_STOP_ON_REMOVAL" && . /etc/sysconfig/services test "$DISABLE_STOP_ON_REMOVAL" = yes -o \ "$DISABLE_STOP_ON_REMOVAL" = 1 && exit 0 /usr/bin/systemctl stop apache2.target ) || : fi # removing the symlink in case of uninstall (not upgrade) [bsc#1041830] if [ "$1" = 0 ]; then for i in /usr/sbin/httpd \ /usr/share/apache2/build/config_vars.mk do test -L $i && rm $i done fi exit 0DISABLE_RESTART_ON_UPDATE='yes' test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ $1 -eq 0 ]; then # Package removal for service in apache2.target ; do sysv_service="${service%.*}" rm "/var/lib/systemd/migrated/$sysv_service" || : done fi if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ "$FIRST_ARG" -ge 1 ]; then # Package upgrade, not uninstall if [ -x /usr/bin/systemctl ]; then ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_RESTART_ON_UPDATE" && . /etc/sysconfig/services test "$DISABLE_RESTART_ON_UPDATE" = yes -o \ "$DISABLE_RESTART_ON_UPDATE" = 1 && exit 0 /usr/bin/systemctl try-restart apache2.target ) || : fi fi if [ "$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 l$X3 X"}Ua  b7B8 pX   x  x 0  p     PH    ( p       @ X ( X H0 p  @xxx     h  h    0  H    H (    h   0  p x  0   0    (  XH   #S  06 ?x-J u8@A$ Ai%"T"&kA"D ?2%:o%(4*!6?4wE P@U+J>T('1(L'94'70.#:E5sR LC:0+$:R&S*60?/ IHM"7drz}tq~ {w|}K;[S6 N3((Lk I 4d  L4BW A ~_s`3V YV4!c    A큤A큤A큤A큤A큤AA큤A큤AA큤AAAA큤AAA큤A큤A큤A큤A큤A큤A큤AA큤A큤AAAb=b=b=b=b=b=b=b=b=b&2b2@b3"b1@a@a@@aKa^`P@`@`@`[_@_I@_@_L@_2@_^%@^^V]^K^E:@^C^4^%@]]X]@]]_@]UI@]^@\\@\N\@\v{\]o@\A\?\5@\1[Ѱ@[u[ @[@[[LZ2@Z2@ZZ@Z@ZxG@ZtRZp^@Zo Z:PZ:PZ8@Z3@ZZ@ZYB@YYp@YY{Yu@YlYf@YI@YGY1S@Y@X~@XXX+X7@XtXj@XJXAb@W@WWWW|W|WF@W. [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/sh/bin/sh/bin/sh/bin/shapacheapache2-mod_macromod_ssl/bin/shibs-power9-12 1655193054  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~2.4.512.4.51-150200.3.48.12.4.51-150200.3.48.12.4.512.4.51-150200.3.48.1 1.3.291.2.12.8.16  !!!!!!!"#$apache2charset.convconf.ddefault-server.conferrors.confglobal.confhttpd.conflisten.confloadmodule.confmagicmime.typesmod_autoindex-defaults.confmod_cgid-timeout.confmod_info.confmod_log_config.confmod_mime-defaults.confmod_reqtimeout.confmod_status.confmod_userdir.confmod_usertrack.confprotocols.confserver-tuning.confssl-global.confssl.crlREADME.CRLssl.crtREADME.CRTssl.csrREADME.CSRssl.keyREADME.KEYssl.prmREADME.PRMuid.confvhosts.dvhost-ssl.templatevhost.templateapache2log_server_statuslog_server_status2firewalldservicesapache2-ssl.xmlapache2.xmlapache2.serviceapache2.targetapache2@.serviceapache2apache2-eventapache2-preforkapache2-workermod_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_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.soapache2_MMNa2disflaga2dismoda2enflaga2enmodapache2-systemd-ask-passapache2ctlapachectlenvvarsenvvars-stdhtcachecleanrcapache2start_apache2suexecsuexec2apache2apache-22-24-upgradebuilddeprecated-scriptsfind_httpd_includesfind_mpmget_includesget_module_listload_configurationerrorHTTP_BAD_GATEWAY.html.varHTTP_BAD_REQUEST.html.varHTTP_FORBIDDEN.html.varHTTP_GONE.html.varHTTP_INTERNAL_SERVER_ERROR.html.varHTTP_LENGTH_REQUIRED.html.varHTTP_METHOD_NOT_ALLOWED.html.varHTTP_NOT_FOUND.html.varHTTP_NOT_IMPLEMENTED.html.varHTTP_PRECONDITION_FAILED.html.varHTTP_REQUEST_ENTITY_TOO_LARGE.html.varHTTP_REQUEST_TIME_OUT.html.varHTTP_REQUEST_URI_TOO_LARGE.html.varHTTP_SERVICE_UNAVAILABLE.html.varHTTP_UNAUTHORIZED.html.varHTTP_UNSUPPORTED_MEDIA_TYPE.html.varHTTP_VARIANT_ALSO_VARIES.html.varREADMEcontact.html.varincludebottom.htmlspacer.htmltop.htmliconsREADMEREADME.htmla.gifa.pngalert.black.gifalert.black.pngalert.red.gifalert.red.pngapache_pb.gifapache_pb.pngapache_pb.svgapache_pb2.gifapache_pb2.pngback.gifback.pngball.gray.gifball.gray.pngball.red.gifball.red.pngbinary.gifbinary.pngbinhex.gifbinhex.pngblank.gifblank.pngbomb.gifbomb.pngbox1.gifbox1.pngbox2.gifbox2.pngbroken.gifbroken.pngburst.gifburst.pngc.gifc.pngcomp.blue.gifcomp.blue.pngcomp.gray.gifcomp.gray.pngcompressed.gifcompressed.pngcontinued.gifcontinued.pngdir.gifdir.pngdiskimg.gifdiskimg.pngdown.gifdown.pngdvi.gifdvi.pngf.giff.pngfolder.giffolder.open.giffolder.open.pngfolder.pngfolder.sec.giffolder.sec.pngforward.gifforward.pnggeneric.gifgeneric.pnggeneric.red.gifgeneric.red.pnggeneric.sec.gifgeneric.sec.pnghand.right.gifhand.right.pnghand.up.gifhand.up.pngicon.sheet.gificon.sheet.pngimage1.gifimage1.pngimage2.gifimage2.pngimage3.gifimage3.pngindex.gifindex.pnglayout.giflayout.pngleft.gifleft.pnglink.giflink.pngmovie.gifmovie.pngodf6odb.pngodf6odc.pngodf6odf.pngodf6odg.pngodf6odi.pngodf6odm.pngodf6odp.pngodf6ods.pngodf6odt.pngodf6otc.pngodf6otf.pngodf6otg.pngodf6oth.pngodf6oti.pngodf6otp.pngodf6ots.pngodf6ott.pngp.gifp.pngpatch.gifpatch.pngpdf.gifpdf.pngpie0.gifpie0.pngpie1.gifpie1.pngpie2.gifpie2.pngpie3.gifpie3.pngpie4.gifpie4.pngpie5.gifpie5.pngpie6.gifpie6.pngpie7.gifpie7.pngpie8.gifpie8.pngportal.gifportal.pngps.gifps.pngquill.gifquill.pngright.gifright.pngscrew1.gifscrew1.pngscrew2.gifscrew2.pngscript.gifscript.pngsmallback.gifback.pngbinary.gifbinary.pngbinhex.gifbinhex.pngblank.gifblank.pngbroken.gifbroken.pngburst.gifburst.pngcomp1.gifcomp1.pngcomp2.gifcomp2.pngcompressed.gifcompressed.pngcontinued.gifcontinued.pngdoc.gifdoc.pngfolder.giffolder.pngfolder2.giffolder2.pngforward.gifforward.pnggeneric.gifgeneric.pnggeneric2.gifgeneric2.pnggeneric3.gifgeneric3.pngimage.gifimage.pngimage2.gifimage2.pngindex.gifindex.pngkey.gifkey.pngmovie.gifmovie.pngpatch.gifpatch.pngps.gifps.pngrainbow.gifrainbow.pngsound.gifsound.pngsound2.gifsound2.pngtar.giftar.pngtext.giftext.pngtransfer.giftransfer.pngunknown.gifunknown.pnguu.gifuu.pngsound1.gifsound1.pngsound2.gifsound2.pngsphere1.gifsphere1.pngsphere2.gifsphere2.pngsvg.pngtar.giftar.pngtex.giftex.pngtext.giftext.pngtransfer.giftransfer.pngunknown.gifunknown.pngup.gifup.pnguu.gifuu.pnguuencoded.gifuuencoded.pngworld1.gifworld1.pngworld2.gifworld2.pngxml.pngscript-helperssysconf_addwordapache2ABOUT_APACHECHANGESINSTALLREADMEREADME-access_compat.txtREADME-instances.txtREADME.CHANGESREADME.QUICKSTARTREADME.cmakeREADME.platformsSHA1README.sha1convert-sha1.plhtpasswd-sha1.plldif-sha1.examplehttpd.conf.defaultoriginalextrahttpd-autoindex.confhttpd-dav.confhttpd-default.confhttpd-info.confhttpd-languages.confhttpd-manual.confhttpd-mpm.confhttpd-multilang-errordoc.confhttpd-ssl.confhttpd-userdir.confhttpd-vhosts.confproxy-html.confhttpd.confprintenvrobots.txttest-cgisysconfig.apache2apache2LICENSEapxs.1.gzapxs2.1.gzapache2ctl.8.gzapachectl.8.gzhtcacheclean.8.gzhttpd.8.gzhttpd2.8.gzsuexec.8.gzsuexec2.8.gzapache2apache2apache2/etc//etc/apache2//etc/apache2/ssl.crl//etc/apache2/ssl.crt//etc/apache2/ssl.csr//etc/apache2/ssl.key//etc/apache2/ssl.prm//etc/apache2/vhosts.d//etc/logrotate.d//usr/bin//usr/lib//usr/lib/firewalld//usr/lib/firewalld/services//usr/lib/systemd/system//usr/lib64//usr/lib64/apache2//usr/sbin//usr/share//usr/share/apache2//usr/share/apache2/deprecated-scripts//usr/share/apache2/error//usr/share/apache2/error/include//usr/share/apache2/icons//usr/share/apache2/icons/small//usr/share/doc/packages//usr/share/doc/packages/apache2//usr/share/doc/packages/apache2/SHA1//usr/share/doc/packages/apache2/original//usr/share/doc/packages/apache2/original/extra//usr/share/fillup-templates//usr/share/licenses//usr/share/licenses/apache2//usr/share/man/man1//usr/share/man/man8//var/cache//var/lib//var/log/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:Maintenance:24654/SUSE_SLE-15-SP2_Update/e90007b28666ae0319a1f1125ac1526e-apache2.SUSE_SLE-15-SP2_Updatedrpmxz5ppc64le-suse-linux  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}}||~|}}}}}}}}directoryASCII textmagic text file for file(1) cmd, ASCII textPerl script text executableXML 1.0 document, ASCII text, with very long linesXML 1.0 document, ASCII textELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=dd3a1aae6ee4047073049446fe6a6b37387b7cc8, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=14abc3f9f226ed24edb6ab56120d3e5328d1a741, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=eb79d1d445346b102dab58c914b0374844b38086, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=8d2cdc62caf4a7bfe0e55bc4de8e308d982cad01, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=2af2d20a499c230d76d6efef37cf7aaeda736cb4, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=90e5ae469ae276cfdac996570f00673df5de5c3e, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=fcf067b3e4a8a18f9459006c3f71ddc4230939d3, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=04fbba422ab1ff1cc827d7464eb0b83dc5ab4045, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=276fffdd253e89930f6c4923a6b33f5af5e74f86, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=e949535225eaf698c203701bf26d339f002d0495, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=1047516c8ac42cc50e2187ee8758544c773e1b4e, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=b83ebbe4848b5cf188f3ecc091b35a239459aa6a, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=7ee5ff391ad792c769109798f95ca563cc4e0d4d, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=73359a8c01986e1de26a1ae94bb26d32f9e0f334, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=c50ab70f322e92e594ff56bf2375eeb9a9cd1315, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=254dc37bc1ad7bf32d2a4c57e17d47337f9e28a0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=1126c17b934d7d98cc2d9f5c51b29cf5a7526520, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=fd208750b9a50a16aba57f2eaf15a6adf7891c86, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=c005aede3d37467d3bbac7774e8b87fcf9c2ae11, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=6d2d9cbb02d95642f82635925c4acf9c7c9367af, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=b8ec6a7e136c680a296145477bfcf87d69c97b09, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=39fc8b4671e21604ca29b822520a09ced6bc097c, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=77ac152f521c85faa9fc8d5cf4244a88d4f7e04c, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=8f5bffe92fdde1fc42ce41744611de202bd9efbb, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=3359b2c667a0ca0a94cfce552986b00facff5751, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=6335ed1fbf322a89a851bb521857046572166d61, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=65de96ff16e71b5d583231ca08274b111bc5a8f8, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=7135854f0c147e512f07edd1d5a358eb716cc203, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=aad282236dbf807fe0ee0d1faaf8f76b197e38d0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=b2b6f84c128811fe38729b34c1caca20ce1456f6, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=6ffdd5611ea31b6029b705a14ec3e3eda87dea2f, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=e5c1da126c09859abdd55c26e89c2272bcb3bc8f, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=70446387896ae0caecd39d3743a3e6272ec81f80, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=2911d69ae6bd7cebb6ff3960b8378bcf8b8cb3c3, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=9213151fc811ee2c7be65b209e0ad6a2d14ab934, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=fb9696faf07a93fdec135215429c72dd3aa456ec, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=ac639790a7d0d42b7f931b81ddd6fd02fd2d844b, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=ce1970479f80318b9ef72af941f0b57b835df7a8, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=f993100ab81f95d85ce810b6e504d28ddcf7a3ee, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=5e6c7327afecac6df505c28aa2d6fb029a886d32, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=7352a249fd514636a04f0d80c23f386e17e9ecb7, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=6dd500d99eb0566a034d4f1c8f359a86fa60a9d9, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=adba197363dc153eb6cc58e250fb9f762a066813, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=d855ccc3be3af24e205e87629166e675f1e7875f, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=b2292f37f6ae612fdfd149c2ba19e687addeff22, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=12ac22beda84efbd9cf4d9f14290c640da3c492a, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=e3386d931ae2d0b693f6794c1f8d00669cda34c8, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=6fa697b4ef58b6fc72f3bc884229d7ba4bd89236, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=439c78f68e0cc4379cce9f25df162bc78e3f809d, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=2d62e15a129f6dba6210ede94b2a6a8396ad65cd, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=089332a453d1e6db6d452204385cff0161496d64, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=46e22ef2a2fdb246b3c03da9492f29f01cdf0212, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=114d0d22bd3154dfd7f6e6222427953f15c414a6, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=7f9547a126336941b560b36555bfad23ffc3e779, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=18ed47ec1949fde71687578992b76282ea1f2cdf, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=ab89a83dfa17750334b4fe4515035138e1b09924, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=899250cc9320627af8c3de4d168a3d0ec3f17d0c, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=ebb6154c7c84b9b6f71b3cac71a5c000ea77c2ce, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=7f2dc872c11893049e21ff3c835295d0784530d2, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=08a6a6180e4e85ad25b5d36f36d667f2126c0dad, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=bebb51ece8533df7230b09956e4dcdd11fd30806, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=e92adee8d80be1dde4e8b7ca1b42d2feaaf24291, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=45f6acda46599473cef94623d6ded501b8b730d5, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=91eac1b9c8be858741bbf693772576d37a1dc921, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=ad6fa722b8b107fbadf72466aae37c8fc0ff4bb2, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=30ab11e5690e74abc2152cdc15b6244a7d486469, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=fd60a1e4c764f2c2d6cf86396d5882a3b3bcec79, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=24e722828745faf96c80decec17be01025832a59, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=a5c6ebf01309f94ce4f38c3781369b4c0773f3a1, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=9b6f0a4f736ffea6d32bc442fdfa6e6c4d6bc686, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=c8ec87e9f02df6bb0e4394c79ed2b950637bd973, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=08670d2141875abf7ff2a6728e819f18ab542ae5, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=51d762c4d42536ed581815a7fe243bf140ec4125, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=16f056b4fa382dfe0e6ea7a5ed64a51087e1cce8, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=91e36670f0fb20dde69e1c3e5facc1fd24745254, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=0a715033852851401a2a55230835ab86fc1017ba, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=e124f80056488932d36668478afcaba355520d92, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=217d1169db924f9ecabef5c414b9f99b8a2c8276, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=e65242887074691060bcfbfe71e00728847e79c9, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=94e228da252f69b07020113b39b111bff4f9c15b, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=987acc87c9358518fcaa64528ab4089c35181e56, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=436f05afbf76d9bcdd27649213410a1530010ce9, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=d531dd9ab43ba3b7e07753b36a6b721cc50cab35, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=3b5b96bd1d121de9d9d4639d42cb68d59dafbf31, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=7f1facc72abc1da1197c60a5821a6b79724b18a0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=22e7a61d00b9c5e19b162e5fc658a671802d0710, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=0a55716259d5f9b10ac06fb768f12fe96f311a5c, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=ecfafe005b01ab90e83aafcbf75cf18f65251a1f, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=3f0e79b7b6db5512e25cac706f6f47c719be17ef, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=e4dff852767d3a8273cf5de99659c58d0ebaaf05, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=fbfb8ff6844fd2ff6ffb4c7347385a6feb11552f, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=481151bdbe88e0318dc4dfe4b2175428c792877e, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=7a46902ac52e8740ee301437971a7a5177266e9a, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=870f9fd45ca7f92fb31c32d798040a6db1dab306, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=39ab0ed8a9633793bf6589261c7884edda95819d, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=55b3129de6b6fa87b7c8f8e3bdb964cfd9c122f1, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=6340700cace6da9f271801a21b3d1fb4d79b4838, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=c7fd42bf95445c1864f58a40c609dea3b678b75d, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=60e7d039cf90f05375cf6529519e294354a3b539, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=1127ef6d294c4af6934348a6a44a73b85f072c74, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=b083a1a4cfdbea53c08d296037d6f0f66a406be7, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=5bb7e9faca217405a6b00b1a8ce77fe85e3c091a, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=c546401e433d062eaf188aeb1419f3fa528dac86, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=f3be63202cd533e9d541b93a8417a7f3a9dd2e27, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=ff65d21895f5d38d84f826a3ba7ac40732eefeed, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=9bb270862f693e076894859e5687f2302ca4e082, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=50759e2b94a60d064fdc129b8023a623b3fcee82, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=053e74966d1f46721e0629a52975ab1ee06a076e, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=70fc0e0dc083cedb9c25b1cdeaa836c763146c17, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=5e5f7d511a9e67a081511d4edcf3e9f174a8e068, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=0a037eb04b2b567d41f695d958d32c6be96e4848, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=346ad6866c2c1206bb49a17443d41f17c99da8e4, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=789bfb9baf9f32f8059c505067a70e9c48f2d98e, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=f4c2b3d6ee111fbe7e7dbd8bd29b86c5aad600db, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=2d1f186396a341bd85b7723b01a3abe5cbf31dbe, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=e5e9f8a548ce03f38931840835d3a25fc8751dfc, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=f6b3a783534f4ccca639b5eacc8878952b34c071, strippedPOSIX shell script, ASCII text executableBourne-Again shell script, ASCII text executableELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=27cf641583d5c9ec95375caa30fd0fb2b31f6876, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=58d37470aa68a869b67b4790ab723532e548081f, for GNU/Linux 3.10.0, strippedexported SGML document, UTF-8 Unicode textHTML document, UTF-8 Unicode textUTF-8 Unicode textHTML document, ASCII textGIF image data, version 89a, 20 x 22PNG image data, 20 x 22, 4-bit colormap, non-interlacedGIF image data, version 89a, 260 x 30PNG image data, 260 x 30, 8-bit/color RGBA, non-interlacedSVG Scalable Vector Graphics imageGIF image data, version 89a, 261 x 30PNG image data, 261 x 30, 8-bit/color RGBA, non-interlacedPNG image data, 20 x 22, 1-bit colormap, non-interlacedPNG image data, 20 x 22, 8-bit colormap, non-interlacedPNG image data, 20 x 22, 2-bit colormap, non-interlacedGIF image data, version 89a, 27 x 22PNG image data, 27 x 22, 4-bit colormap, non-interlacedGIF image data, version 89a, 480 x 524PNG image data, 480 x 524, 8-bit colormap, non-interlacedGIF image data, version 89a, 16 x 16PNG image data, 16 x 16, 8-bit grayscale, non-interlacedPNG image data, 16 x 16, 4-bit colormap, non-interlacedPNG image data, 16 x 16, 8-bit gray+alpha, non-interlacedGIF image data, version 87a, 559 x 14PNG image data, 559 x 14, 8-bit colormap, non-interlacedtroff or preprocessor input, ASCII text, with very long lines (gzip compressed data, max compression, from Unix) "%(+.258;>ADGJNQTWZ]`cfiloruy|   #&),/258;>ADHKNQT\_behknqtw|}~R RR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR+R"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRRRR!R"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRRRR"RRR"RRR"RRR"RRR"RR#RRR RR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RR#RR"RRR"RRR"RRR"RRR"RRR"RR#RR"RR#RR"RRR"RRR)R*R(R'R"RRR"RRR!R"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RR#RR"RRR"RRR"RRR"RRR"RRR&R%RR$RR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RRR"RR(RR'R"RRRRRRRRR"RRR#RR"RRRڟ]BwKq3/usr/share/apache2/apache-22-24-upgrade 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/bin/shsystemdw3mapache2-preforksystemdutf-825391897580fe01bda92004405216e96ca9b9742d277624fa7eeca8aa8cebba1?7zXZ !t/ᤓ]"k%x.$+e&%|6pjy=T?Q X'Ǩv皹_PI&ٙJkkcU>NgS` 65p)Wy|8(@yl2̓o1HE}G"BF'+h4HwF38؇ ΣV Vˬ8- CгGeu"\:LDShؚo0b2gQPxKgΡ>&58}:oSW.cRR䃋{qnxzR4o%>GkvP5R.;Jm! ]Dp QVr]o2$Q?@q')4kL4f-/EË,7J ҡ}HͶdX)=7+u]trKǙԎM8ujhg"Ň ڰ;Q7(")%Fed|g7:q3n.c? ^-b@NAT+YVTBI3zmHq(LqhC2p8x6 `]u'ͪY<﮳=Ǭc: E_^>!rY ,ړyS3~;/Hs?Ƅl&O")J4Uu}C-F4LR< {qJj5MzTn=Y F >w4ڬnܰr lXFu<ۡ Æ\Ӥ"cL^ LXG.D]b4kYm6ԙ`uU&K;θU?RߘBWbab(UIh-,M#t.p,l7-@ $᠚,TKz\+{Wj:f`3Sgjm?<jo`x+e8|`1Qx7Pdk-ILOocۼ]UYC9PD,ê 0297~ \)jKzJvc#8H-?KQp)_Zߤ?*4A[48o MS"c%0da=jF\vgo];U[$dt[.z6Ǫ ƻC8S,Z=JO<* MG;iY2{fְD(#uKmN:AcTTe+ pwpݽR%11&P_{3wYAF0V!)Zη :!n84zDES!bl<9Tb"-.WtxQ2 ]Z)-ʱ!qѿ߭ED:0s`ux27 ҢJv[:A>1!`yJnGMmYp^8{jm1h+-e^U# T2W.z6BeN<<~/g$b%oe$;AȆ8wm,*'cUْaWZj~&w?OoTBp6+'PiVws`hM'*{ۺe޸L1j@Ҟm-C)@U9T̝*h`]xS 3x, 7j8i%7qP׏zt<mz:>&D%4%*+$&^,;~'9e0tXtto,GzjJ v3 o fu}tXqhrInPK&;^[sx ~ߍTaZ<='a-Rix)GIm/xp1ܩU|O*-Dw ǐs/P6 ֜_ 1߇7\SYD׭Ldo`oY܄ƹ)lM/ NKӧ̝6r/N5yNVJkn7sgU؆CPIe.) p)\A^`;%1,9Ubr^ʶ!L\K9e9LutZ)w|Dz~Flʹ$?$C-׶v{7HE6Yt#c'WbFNbN$W͂e^魍MK0[Kk1] hC>@W*mEGY]s]`|X BXn FI}Ei2}/''gbv_rNqx>z3^& =7WhQ/L_MojQgHY*z lRN ]>L$N7ott*ƝxO5ȻTPfy\ZHU>3<\Of(`3}sFRQh󐴛p-|=n3;~ղ&ԁ}K|!=]L5 |.Hj:kAWK. RLq7B%4XY`JNOC %^ ƶj ~H5-/lfԕ_'Mmw38Z#H[*O< iU| 1Sl Ӧ2vQq(bZXϙxr/:K쒱p"3d0<hYɾm#&)'jUZ`D }:.WJԸ.' EcTlPͨEqMÂ(͍F% uLೖ"SD``OϟaCe|1#%1Ԩ3,+$EE6Y;Avtґ*BZ!x~ۉKOEbPXɱJ LqxvJω`Їɾtc hvۃ+pnύT XjPrёS@SNvu rE'FokSJl3 'y>$rQVJ/2\RT(~X _@';+ (Ģ9Y( |IbқʗD`6yob+ -}cb3asef{8ԛ>*uA(3rRALubTIj2)FNe9hkDceot!J>cUQ2S"zFKyX$l7DOѳ~84M1Y]BSſ*UDc jU|O_Ќql'(-M?0ޓ|syP v!yWwv/x Q~W' 11;P^GU!#d38q#h ܤOc]MmQ$BI}/ޛ5~39?K%˙Z"<8dTloWSʘC︢x(lq @7U]f/B^2$iUZm %lKg?0z7!3DŽE^j~jm:SI:;m#9},li& u섗]sY? ?܋!$Tݨg}*۹,((<]O&aiKOG,\b ֆnK:"G2yǪrͬK_ 6[v/~~:VNiHL1e޳}I(F, ,UgqY qܦrdAlmC$B ~ iZ{;SMR,.[?[W ̝[' 9.=fxswf̱;IaHPpGo얃*}%IԮ60c-sDmIyߕ[ ~O+8V]@ u(C:!-O_ќ{IN<R\I迿tþc#>m6|l8+m\p2ژ4ad:%Aݴ KF,6K}K(U* %ޜ7U2*-%$wNŢݮt_KA']z"4,vy/G0m/-7ۏz~RC(ˆD8(PQ j|a[5ܨ`FT!G20]kB` Et_SQ::gXdyK0UY?XQoujx8B9)VQdb0WYR)bdzDRshfY(ņ80Ь0wKS.8HǏDE'۰& 5I^9BދzG̬kOBoଥU…5"Q 0g "{E Au)2AhhMIIAZ%!;?9q@gSpwyb2tm08ubPhwM[VP]xCʑ[ ij6gd!鋌s%AKj@&oܐ"F= i6*=N^fֽ] oWsS՞{qAL&Wi{NK΂f<[NF^ zyo_Nt,YҐ M馋Wb>5b8D h#f"T~:xGBF BY31T/#؆Mv2Eb8DG8冂*cAVK9(W?*};svy*MT) ڦ+.gOaKaΟsncNx?XUtW҉-qZϧR 4Rg>Qmg \`s@Ulڕ#IbyN3ZIEG.l/djrrVɴbٱAÊ>P:1w`%lKNa-?ax;1:9QӱxH/v{B@z@ETi*KZRWԁG9q|y!#X.KMUlrh)= [-7Zw JH8aY2vr$WpB?`PH&Fte#(b<ݡ&`L#ߙ ?ۡxtOXO"i-@~teQSp]2FKK@=)ЃaI"Ŝ*;xQ4K/yOQ|C/zԶŽ3\[dn瘁[+ pĨf,.!P\yfCi@OXPM/_﬌ Ms>fvlNǁ.{Vc]D uD8} ,1t h8 t])L?'qEĚ`aTmD,i z#>w4X١2]H̤wX՜Ϡ*.O-CݞR*d/ϛdSYaB\Mȝ |Ѓlcˊ$F)G=Oy(| |,k̖#FׯjuS hң:ׇPL7SfQ{APbj5zQ [)BU('"TVusFg+:uJxxqm$EMAPLqmg!^r\pai3l= #m, at6e[# &Sݤɷ~8J ؚe<>ҷ*w18nѝ,3lpY(D$ F/Ә B8,_;6'zΥ|Ye(5>\2W o3LT_X3*3RZX&Y[5F4~%jX.?';a}u?O&:sC/"v긅gstPWwr`]NNS_ȇԁ*[wf?WIa<e&`'~ҿ)Y\8WTdeF z6!!]^ 33I+[S/3=7xCD4 x$#ɷ^x7e)_&πXg4Z#%|sRF((fy˧9w"vR0lX*y'.5oIWQ#'Ac/ɏm콤~n7k15X03HRX=48ŏ6d)Jri[^ )*>R(pQn_ +U!y#F7ʱ2ub6F"D +32; M\tL$0Bӿͥ`mFx>KMˆ<7vp31H[<)+.!E  9Eذ"tח:H\EHILGrBLUf3cS͸Dp<>8ǸD½Y O%̴Vrޥ'z+xjY)W3 X1x< iY0)J>W͕vTOGϕglNgbnhxW-2ClVQx &1.RB]bw0.` V `($ $(:gO]i$#fp< $et/+8see:xb7!K{5`3:"& jQ/Wԏ7)/ R۶(u4=愍,5[$[˚pp Y\<rSt1$}Uc[̧F7Ŭ~ j j+s ;Jm.A4ҺD x#"V\>_SƉ)_uK?8pH0ae! 7@ HN:G%q{!Tkj H(]Z:rIӲCm%OZ6>[W\o5SG=h& ^PKHQlte ||+2F_WP2lx}m)@ g};)(AtVultSU"i4:[ұWy}[8~Fج܌,378>M0pɽ˽)%Q(m\DnIZHݷ4bN%|d惄spX\5Hjt7aLՓdrJ)wfrʦ Ik~zR7C/Aa}ga#.44#ׂy\hb<1]$l4'J4rN *[^i%_|Đp9z1GdX SZ!MO=lli WⰈ@ ()$RD4ñ))6wmd9\Dl?24c <,(v[!n[{L`d|WjMg ʨrRK PI;lC+=#nٺEorW˷@pMWdǃ 'sW92mjr?S''zc4?7Tz OMĦ3"#YWC}Ys{ 7*ckKd(n+;o48izFo8([X*`@!DfdcTUف`) ۖx3@:g}JTP(YXvwk 'GmCх`|B~|Gf_oxȡ3/r3&"lIb_X vϱmٽEB(^-DJK۳4IYEO+o>K.&+Q`K ZGHl˛|g㿙(D-O&β~noɽIЭ'+J63G=۲ FgOZ.U+`1'kOvO@ B/ThՎM q8cB([q;?~tQ><1Z:x{Ȉ(`wIEw"wmv}JǣOԯЊUi$uL2ӝ|1Pּ%f}F;QyT@NMB ?W&&*WL:g0#{"Y6lam&Ze5+s9!F. ?bzkc1*#y1+6=_> {]C:Y؈*d :s wڤѥ5ϑ3x3UsjJ(t^A(dHp)Af{mPea9 3,6fkT}% ?9 pjR y}sf3l}3-Ui+]?>|:Hi3@F +?RuV=  =)25#sVJ?(!V+4'T^8l w7dyx%pd1}߇`ӘP[ߢL ٸ 4M̀ y4(tˀz -O}i)o(gzàzͲ[YpI^]`W] 7<]' nB5|Щm$+e20@ ,3]}4-=#gH_eS!7I$ Tap;gq!ܰj|jLM6Hr*լV_IU {ZP 6;ꕩgŦUdUUCX9@#k`45 {=$2#VTA)$MNRA 5~Lte"Ɍ/9z,$*a@# fX vHΊBYMGCjcn"$*J^C&Q4YTGD ZIB٠eAC+MEloJ8.׌"(>A|:-Ԏϋ,9BR>PKpYSJ1.,2jvt" 8'Ȣ]u1,yYZhd H !x & ImNk6wĶx9,EɆ:#k^E @n?04̓nÎX<`NQ6V'|8 ٟdS? 7$R,o&GE+,̈́@6zͨrԸ(J4 NPr aS*Ms7\ ؕ)1:Ou*/Y,i:F 7 :5$xQANNz;5jk }S=2Vo)$WAtBU-}d_EVTzH ?.d[A?D'JKJdPo`Nډb#.GZd}ympQ%e_jB5HguλTݲ솞,4p9O?eOTGv*Z ;W2CV󩹂eBsJcZOkqQBŗķs2cN\5kl=} ]eH3zSE)p#wA:g/s NB?MZʣKCxHPU^u8/i%%NRREɳBk)1GI?%n/~5Y9+;EK(C2XQ'RRW nemQFk-B^4hbB_c-s!;U&A -[:S6{oTQ%euO0̾cGg[xyٻw(*1q 2q~468n'aF. #NJR|,_yFqaX&ߕ'c(l) E{+J>KNMLü1Tu>ܻ^t+V6YFq)VTa]M&YUr(%0lgY$"Wܬ,>{dmZbr-$%EfysB},_2X" j%ZjlS#1xLF2T_ luT?MD |?fmΓsRL:hy V՗Ǔ@ˇ|ȫP~40 /,?Rd/ |ݟ4.]}˸/}f mT ޑ5:x'~nٷA\ hsRٕs+Ե}Swdv8٧QU;ψasq$2>Z'h*l}4X&65 C(dspԢa!8(3Nԭi0:C`bg{M 1.UsiځAaEy#ժh<~ˡ_S-ݡےC%¡]Xs(,i,Y >@^]+=bᔤMA)# Ӕ;5,˭4ޕ7~ʕ-1> 6ÁHKZ5Ho"nLmStqx6" ? Ag襳>-TA6s~F~aH5ކ0]=# -Rl4 f6wGqrCe֑U`3GYYi9mRʎ w Zc;:d̡KR6E]6sE7 qG2Dz|x$x4d6vd%v&.0СB"Wr B*S%M6V"rmۮ] qJܑᒚlMhgPƂF[K^U} 9!?5sJ-F{3F}4!8c( Gtv. w>7x9U+$CQ]OSB^N6ץm9qFIQ7|pZ>2%V\.IK*ćɨE\kLZ|^ aq/;_Т,IԌ} ScEYAyRTQ*k!?ne-'̛h|U>:`q 'Ze.sSܮ= :F/f1^dWŪ #iT \7&[ zTe bŇ`A{OvFM46|ye<ڥ &iޮe`4k2{O=h_TƼ,6R:,",GbJ>eK$M:*zf;1/u5LT4I/Zj~x1ND{}JW-zNP6Z %F^},QXҕ)C@->/zۉ9pΦVOwvvMk$WNHEow~±9qMAwh} d:b}^2V)ű~a& uxt]+"c>Q'`,Ϳd\P'ViH{xo*XPZH1YG4V[%C1D ۩]cHPcHNNrz߅LB4]ḂȆ0e]T9b=m>7&or\&A`!}xChπZ5ꄙ`g(c>H0!8c` W8F&:V&'+p*+3ʏʮrUGscSwAŞ&Y`Xo/B0{Džj;B`dE#U59 ΈVё72^_Z1P-B!_ ]vJ@:𼎓:QZZ)cx,V-3Ma⳦-6ئM=^_]9qR;a.:l1L8@(*eJU*2RUV'P&+& \d"mV8cpo|PqE 6<},/'f~A R|~ ܝVbtŔDM?Od ǰ^IW dĸ2{íX0$&&Cbaoth AB2;`f.TvM}7vV|^Az-$udOũ>4& M}s)4TꃈqT0k\>*i |q,c (xsd 'uޡ2TN3 qg_Jj(Cщ)ƕۦzpAk< #Sa(_=Um&􁷼i. Kf՝m9d 0؃޸\|[BKc %9lǀ q)F$lGK{ t9ottIX|;"82<3HR_9 A>o|r{6g/c[CㇾޣL2Ϥy[l5'[&f6c%Mpx-&aa5}! 6RɱcBQ\љ 5-T@x-̈c] Yᯧ`h߳wgMwr9I po"?߱<~VxD(׹xX~%w_jKTԲx}\7GdWg@Dl q&˹kQeAvmD~.NU9Z'PSZ#ң}p͹ȕo=LJWlMCvz{ٷ/]͛ă;|oGи2Wm]Fqe\D^laP9ND~^X,¹R N *ٟ5/Cxzuc7l-]F,wɐ*獝$3#ݨrC{>2{r*aJX6<"=ZFUX͕߰9@zG\UkU=]jo\%& X{g-}fh(q$C$sn7l]'Pfʝ}z2^qmq%"Nq{ZX=o<ǩ)twhĶ,;*~;#)ɡ$0ojq:"BoHzx&Ƞjt ߨ-{k 5D_FX~v!;Y6ly_wT@XIs:h}kk:XYleȧzޯk"^UiZ;¤KY?~Q3Z<ձA& Ÿ8W5_斄ޡZr80rN0~Ѷ O/Ur'`NIHk^>H92#;(eC.-m,qiNUJ.n4[2`@u}]k3M[m gV0vg\2c95pai%88u")jhG!_zA[T 9jWR""Z/ށc}ɡm7>;p^NKeƊ<DTY4ٞgK {j8qTz @:U.? =7{qG륎Az^93[GbNNy~7KFbtN2SN/\[GJT"e b%=W`,‚"2 6H'ה$G^<"^}%"΀ut;$^@kRQN[>4`F'UFE;{ws=uNy'ݩgƱ% f|$/4W(*.SYT+ͩMBgNT̬o.HKHDH'2tvMZ3=ڢۻJZNJB3kÆ ?TKv 6NHPNB[[9ˡ OWƫ`Az= i:-QQ.;|޴E;*]V҈6ckH!5nf[*RJO'D3 Ä&lz9"5p<$13W<3ix=.M54 X}\ nZaɿd|UrDC\  hJd aX $p^*nY=Vvt$Lj kSIqq\LK2$jp$>DY^,N4+0<˯xGA1WpYOCGQNOH󄎼 2RJ%K-lEDo P(${q#.~1Ϡ,)oD<( G;ݘ\kbC!J[ # x+| ƸWMhجz|jۏv^g92x֍Kc,ڛhqI]\&-Rqn'y:V*Q* n `]q135>^O"$گHeҹ>C63|WSVVHG#q s h06|gAFD !cwdz3:5;x^5nsuNP-4:D!eI8GE٦=1EMY{!cg \$,vL\(a/g]$i.LURWJ*Q؜3)l&wǂohC@DuY2-&®\^ H0&8gbBXΜ2">[+{&]Z_:) "&P_ߩ6b P{4{_tq(Ɉ.ה,ѯ--OHT'߻$2<y)KF? c !K^"ǏWlY//͉ak\:iJ:ϓ_o;HqEq"C fv>0bc/[Rjoz|faNJ&nd'IUvMbS a'4mT!Yq &ũ,vv Ad{YB:T9JpM[}k̹2|S dc~VbO]6D ;ÚWՒ;Ɉ @2\b *Y~59s&| =/]cne!ԅRt9] S33zXon\aݧ<˸ה/M qƧ3MJEtRυ9 8s%j%}I.P㽒ZDW-t_F[={ok_WNC+_9 Ă.$gBj I}UCvt#&2fI0'b%ֿ+ +m:E`:jHrL Sһ]e8G_iImYM\D $eʏX}}0ف(wx3re`Df8A4”:-/l6$%1v|>| d3l5 ]uԯGlzB K!+mMKD>+p{ ;Iư!#Է%E #h9A\±Ƃ^ xk(AHs%=]c^&]PV{O{=oE`vo++0jl)Ǻ@''?( ILOD±t~]\b%x#x_ؠ$LGQɨe} ,<&tfY/߶| 5 tv0M0ZUe1쟨$(d d @JZ-Ζjb"(|P3 F%&D}AfJϱ?)=GI:9`o .4q+s젭a~ ? 5N`JפYiW(9A苕xy>l2+h l[(ݪ|P')±o:{mCkZF<ƯC ,}]?*GK!0a쓗 _S\&j1Ji.Q02UZ1l7pD_i-H]xn_% 0&?wŞvdUyMQzJq0$aD+U)H%s7+슎%}<#9-Vxayӻ05 -~im\>$R)NJJcuyNZ¿Z6;bT!<ٌf&rx7Ţ˺F"ս@n:tJV LfyˊY~auu?-Q'% nu$x&4Sn5mF:c4r<:ڰ])a% U|uΫE7Oo?:t-SZ+?- @x9@g?Tؾ=C|{DԀikroJka}9LHi?g^j 9Hq߉&W7_?ۄ2=G;<g y36o}.-Uy> ho)mdr4"00 c ]'Hp;/x,,? cW%)yE%iсoB0̠$ҘeC0%V"߅w}0(4~%H3p)Ni rg_%Cg~@X~4^1m6SViS0TN%EJRkc]AsD8qKĮy5ɼ?eޛѵ‹nƈj$!eU$vEF++N*]1Iq41hH.Q5s.>)ҼRd\ɶq-otU$gަIJ:>\H .k9>AnNwJLeaM4deϵT/)"6sw~< x)٤ n./M Y+=D3df؛TxiYeM7# .a )ഡe_Kf'}raM8LYmS3)y$L:/nYY-MBr^&ݦ-.?A;W>-?b 9EE:={] ϔ u  pڂ,Ԍtc@f=,cF!TQLKW Fqy+xqR/GOӌy0M !F_o7$GPϽGwS<87Sdr!^fe|%CJ?^ 8;˫{&m*e[mcrRGT9Ѭ9AvشVkp "@QxR Eod=.ˉ$ǎ嗜D ~}X?aXv<ZL _yKoKd6 Yg̋]J 3/- ]!6?<,7Wi(+bBs_[:O<[ L[0[u~zM$z*%z:)<*NRä)#Gn߳\*xD'%D_Gc:s@FQ}13'OV<t.\υ2Pm›HF+T=t5Ө|6=7}|04 ,G`.2#l)oN\"8\{] CK`^O YJjSIDhKg ȯkP:zE2\yA2$p`]}]NXx k<̉s !ܫUUrצgc UgB+6-Pc*7 F?mӇ2b`Υ-?ܟ }Zs q&;І)]dkx1ܖ͹e)tD(z<0U; WR)i+]0ofxѾ4ir"bɨ:{9͊aoЏC:|8z>_tH#92{sK-Ҭp1aیv'(5ÃYfLs?*xV`HD-t0e_rOԈZq#l=e@TZޢU5aW.^'E4/1,U&QCSKcjtgm!`ۘl/ E' S~+C5cYIRTi,Cd)mHyk`jVx-; R8+M#j{i&BPNԶiI7.ӂp ~ٕbT_!w$KG ʞ%N`1& tN8Rw8"WwּKB_]4/$]+V1ErR0,e7&œKl3 5Jbf3,Mj ft6Y[n3f-Y5W#faP| bV?)ja7ԭrG7 ]݌#@J}%ztF8qbe"Jrhl#ܤG30w%"Պ7apQgc/H]2eB[ͧM2v:r-5AdɷU!!0 G!?R|G⚳EFU=Ɯoir~ݢ[N3MǗk2륧{RԌX$*s2eV,v>PڭE6p̄qe YJR:8l~y)KOr5K#,E650U֬l/o;s8a 衝M"zQL[;izdS}Η&YQī+tZ7pbF{ i>b[p+Zf+Xڰ f8uJlPhBtW{30Wa{3Ƙp ֎Ps<ѓJt\w9(9 3D;M \K<Ѭ(iGXb`Wԁ~S:V;ϣSl`3{ǀK$ƇHαո?ܼ#c4$Mg Sʞk.hׯ,L$\<+dzN*>2 οڄMUi6cZ%3C]MmR_;6F\_([~ƨ:L 1l=A)-[>Wby\ZS*j#j;uZ&Iuѡ0hkׂHb{a?OV%G:a>䲅 ivU hfK ǧ;2z; |21Π9nyDŽgBzϛZ],ۺ6 rKGTKz b}TƬt# ;o[;~7^eRϖ eV ft c=p-fkg"B}t|P| pLZEB'p@0`e.FZЌ4s8isa>mqƬ5؆̚=vڡ hlPe,L2mSX๿S~"4wz#TT)={uW~$,6 k!TŞCI 3|YV N)lUIU:g5߼[7&7TjmC>qrZKZe֬%ykuW"|z,F<4ݑjv9q_|wW6rS FpONLoW1A b.,bS{C>fRJ}HE+4L4~gS̯K}T [nGa;ZsT`Y!DR،Z(Gt#z dJsؓUncA2~jĥ=g!a^YYn 'XK6!WGV4(dx25,*q5^g kT"7 /ƫUg2EXbT!'ԕ=gA8C@OKo%+FZ u#bq6$zՃB*<{ANOkSi0螄g*N—lLAg.zby/[&rt7.RyJL1U"*\b2[GM!Cz& ̚$$v6/;~#ڒk$YVL ۱L.#a:a3_Qtsjv}[̐Xo\3+ΜCK 87r dd{\yojo;d})'}٬J @w+>tBs#C?4y (GZFِ%ᯆ ]OtKY 29$"wQĹ1P9q}U>nG8А%rz\rL0"gMKTɏqsQ.>xϵ*64ylGg>v,M6R$4iՐad߈BM Ik9R`CbRRFh\#71SPլ5I,BS3Ne\/+Fly6j@CHŢ  Oy 3{wX]e&-I(M*e*[稦 Ts+ƠumIhF7ox 4v $XEBTᬥ!%(;l4G.6*kd5V̺~Fq%}N?J?U(o7>ׁx;-/2'(O;Y@4?9BNEF-L&-rǴW\y2vgХ_Sib GSk`VjFkqW=׀$%Ϗh"orE_bDU g &tRTQ\\tYjO_i6ݳW-P Fv5K:%}gKeȹ(yխ:4P\ScZ#Y9_SXYuﲜ= 7n +_GR=|m]>i&!lJW1}?˪KpDC:+u-2#2TV!5*}>sBt NW!9`eʅ^'6pH؞7(] n"Y7RےF%]; =jn>2LODW:@{/]ج_JNZؔUmrP h#SS>9,8jmMiI"ybڃ?r\;*E@ظfy[#-{>k~89(F?l4aiT{)FH=Q.;,{DLV79! 9z  QO| ÊDbzP`5ęh~=6~1QL[ zdxNC<֡p0z foLT|~` ߥ/*N_s'1mIfEs`)Q 6;&]u5"O~Bc "PJUD:+PFL ހ$Dn{@DJSq>9rvq kD7q#]{VnA*ul#^C۫0+Pr/^].iItϺڛ5ͷ~ORy3PZ䈲A3D#줱UF(XqQ%I;Dy'?]h!Z GfA^rYCr#eqAƞ>i ic,X"sQK׼o|RFu jɽ3-b&W߃\Vnc 6k&D`(uƆJ< [%,JJ;TT(}QV=UxjNOߛOf"+8xh\2.8CT!;ʥ᪻߰Q6v:y?_cIm8׼| rvc3ЧB5RWF֎ƾ 0F6 li fle^CV#a#mrax>2C4# f<+)̩k0+[bޮa` \5ͣۂu>:W<ƀ,ֳNDF[ٽ峩nW=X݊jmwTp^;z>[i T1 T?0q}I*#'7 2:֥%zC:p "Ump %8Ś5ۼC}C ;el/ sQ`hIl"5m%l2? :VCsW|鰕Qh5| cq$Z kG"P/omqDO-Rg˚)'I kʎ2\{\)^6.ν(u6ك uh*M^Q޹'-HZʿkLTĕv\YxPOlʔқu 984G12XHۤ{]JXtS[Z *1z뺥f>^1Yycomq͓wVCSBpH 6ΙqFY=|SwL?"ۦO*StQ4;9ϮK1!dOEFbۼwX MC )L ']yHfnLIS󈲖ߦTDH 2ZZjH )יa=Ê;7;$hd 1C7KG/D1 hQk}QdGI  *$Y*斩ˑq:໶QI $Flp %A$Q]hl?jμ v#$Oj@DL-:̡_#W?8sBC]rA@|יGy?BŞ5sK)f1{]YiMHLv/EaE(D`EzGſElI*;atnkW &H;JXM))z.1J|r QcɒsmѲpxzɈ.e]j&0v;[0#+:0&*8eZZ|NZǟpKXr`7޻=I"lo7>n]]4; sa86'#iks(`5^w4JGsCçH Jn՗e$}VX3Nc$R5pQL`ᡟ$F+5X *}\py4 (ΫZpr ݄2;HXP% P=2;rqjwČ~0_{iw~(RxWWoWv-!4b_}K^|wAe`"  A(ٔǰαtXs4(˜!޶‚L*eJhbߌN&'갲SmŘU\؎!uAH[7" 1x`p_)]Yʮ;k U>& Ǜ~gVj/}nkqsDHq^~dUH+)615$ͩd}[]7 YOX›Mރh7w43Yr^4doIXǢ`y-"i`xh"FzQj~Q}6ؒ1?2<.3_L`Q4CtܫB EYSm[v+v&P~@_yިNuH9[D\W2U6haQ񬞱t6ǚ.?6Wh0O3^(1OӾƊ<,5h728îAKEhq*\r۵pIB/QL6V*+^ƒ7=qNLJMm*x㓳\fi3׌;2 D1b:hQ 4_VK$JFdC30q籩H=\q5୛oM"c _ 1ɍh-ɝ$| χhNۜt.!%o ߈qb,gR "k+uC^߮h]eH=R#r=j蟰5yT ߲%`e>>Dz~K 3șOdDxn1VbHZǷ-ixĿiAVq ԔAwUcj:%$x5k֔tgʊ;$znKz&`o̼] ν]lw'JTD/K>:ם]]uuFal 'rr ))6 D1u=K[d>ۚg;@.Dq l=+̳.![5ON!(PxВŽ7 l)n+,g t xDW˦ E2BX>%!68kwdOsCgoLnU8K{z`Z@𦿉+O\ (eaƜERhJ1r*S8 ?OW:@)sf"24Һ}Tw /Nu~zXY)2Y=_6"6 7 u͙q+$LTX$u 8DWw+6F,=Zqgc|1UHETG6d*#MٮE&%D軣D(x נ+9~!F'X$Y ޘ8b)[N|QsP13t`%$ ֨ E+4`d{ SCQ˳)'m={ɩ:8Vq80X .(UKrꢨAFMJߍH% oBNݐeUD"W^FJ3#AJ`2诜e֙@ȍ9vرۀ2t8]Lt#RBS}sE[+U8zr`ba9Oh(.DB/>џS`[/ ' mKhkV$$BJ*o.kB9Hڈ1G)WB-`;A%?ˤ)F;; mau"sѹxIly.̂|32+ǖ-8ФA} vg A_vWRF#Qᔘ ¸ (\(Fүj#}P*;D)yM gKz_¬N)WVp:;5o[Z3M^D=ϗ[Zr E^'ǔ-]?]B֩jMx+&?\LL`NP]ɍ}p6UU l̛ElMPmNH jڸĴZZnvM t 8ښLWi [ wĘ^e O1%YBizPP[SԶIy#O wW0Yn:H{a%.ɪM> j7Tj@` McgS9,S,т?M;Ulq?ٛŅ]D]5?aind"6Ins*x {L /jۦFN!X̺ [/!d͐: >\eCRAp aC_~8 4!f.f@z/j'VWG[b=ٟ#+(ce.ICm&x.8`G(Pԇ29 x2Xuգ#2Oo_ cM|2 bckrs6yV2[uD#^S o^^ )͌7cwo-cÎl+?j!` AaIwʃ5 4mq 0txwij"boye44)St8cdFPz:0ݥv 4ʹhLxeoul y^µM(p\uk.đ2ͫD\-bW+rUة%nyYT T;q-;#lj[{ըgR z{KÔcD9M|SX6k+֙%Q)9 qEV!,Zv`~u'a73&mgGj-fvB{ALɱ%X2c ūE~sXhwC͈x"_O滻z's1U[X2W;CGi<RkXoZf*r qZvisveI#ВXX8:ylC[ /d=aǵX[$an._`H޿OIV0ZնՑ˶/0̶˵{er7M+*lQ7¨f05`S<,dOFKv'MNÖTf x`pG \ ;o-fS}) dJ7rJ+O]U:Y@/e 5^G,:+R^)=0EךmP,;=n!Oh(yוLf+F-r=dzsl4ċ^hi5Q僇v,[W bטϤJ*8g:)n~>ezlEXM+adN{@IW )~X6dܠѲ lC62r*;B7Jf]D& W^\[>eXZou;|AVld>snRv~[WDŽ5(9~G(JhMngaqW嫀p~qzMuRWsE& G-qi[C꟔Ao^n "_[>Jog`΂& WsA0ݗ>ئcIy^Duݥ̵G g4B Ja2lM؎ TZ$5א9ˋ1˽B|׸dQѥ*'z.>;YB%k捪3>ٙƢ#"@W}ܔl\9&1ƃŸ;%p1̀a6yތ8(uųⴆkFLV~rX te#chtܕQDf,TX+6hn BU`􄡀))< w q-%iKW-hki,A@-+@Lzb} wC!0պd89 PYcMoL;<@. ާ`9P#8Ý~9G:htÚ֫]9KҲC=统My|@ȲHQ3uGvu (d qx`R>3 n.h'q? jz-Sp=yFC0zpSF^%m灦'R@oɕ;D%f"-[9=F7-N:\tUn+PEnת*f4mjT~8%au#.0,a|X]*mƞx (5Ӂhw:*yaO 2t|ٔ=KA/"Ҁw`Wԙ!o!\ߊ豧f-)׭ b4n_U!V>Ң5t,V$lԫG.Jvf{ ˟أ Qubu]\ 9 d;Ba1EEh낖ϗp-&Z!@.'"BRA]R G, J~GbN>]Y'ҋH`g B`EI.Pn\2ǁFE 9P`|*)<| u]^~"wx,RO=өhaߜwu7AyFv_EOP{yC$xJE/z{I$= f)g{/Mr>Q]1Mc5܆)zTid(dCq BNB7{_x !,\Y(Y4%&́}QӉh@/o gb4GQɎ\wky'c@{QypB2zqt2'3>O"&$At(I‡/=]NN^$d" vrp](`xHx4k,EW؆`@*N"iڗ=]O P5*R~AȀw=,Z x x 3xs zL;t.>E_3ֵND,ٵ&u`Ϧ<%mrAu/`ǔ=(;hv$ʼnƹὡϔ~љ"T!\i,ԓ0˗>%1j Z\L6=wl%8'p XG>ImKVܐ(}8ᖅ0+"Hdcȷ2p?+{=+ޖQ`GMk7$Fi&s`%$M`?zVZqAMYY;ʟQ/nŠ1G!9Dfk5QE &c+ڷP:Bːxi"a!&4nݿ']mC_謅}=i)|\ofaՋH6YҶRCgcmSx#6b _KW߳̈́[;'׽=%lɢt+:6| 1Y!6sY|SA}y(sW߮@KOJ_&I aYZr'AuE8|N4r{)+&$%nRׂ\ J7~"K_c1G BКMP% z5.]u ?oB #kt.dZ`XFI{JI91wMBl; MԬ,$+ qԻofgjfO]WejHn"5EzkؐpD3DLEG.b9TRX(7iT\~{;CI𞂺k^m3נ,|8 %uܪfp=ڡG98Y ̝Q,5Ku?<2N[>| >%B&#[=%w / dL:ZfD) oMWS-ᛮ%|_!Zjaqg@䉈X;_mjH"|x8C;R p%{M]#%dݣ r2.We0Fvx&IS]>* "D'ƞX-A6  (UoD$N!NMg:V ybラ6wyZ2~^V #H]8)CWwfeUڈm`H[yMiBݛRnXϕ*[b6C 2cx{Vk̴ܳS*iv!+ ʭj C'g%%¸43_ij `R9ft3)ȑ%U.X`^#C &)e?0nٽ d~s{-"Kw)8P0;o[r<U5)?F@l (ֈ%حoci^O#JFk+5BNZJI^qƤRqZZ̵r+h8ۘ 8n'oBoadj\9+tV $ qytQ$m=pnc@UӪm4Da동kr uC;<hsZl _4$4abT U82gSMxV<˙;{MFfDYXң_7reTNju?e٧f/-mL d2ѕNiǂѤWYIwcAH}YE=ڐR&S$'θ`ߕ|`jI $߳[t-DoRϲ&nĕhΒmw7NcG5g+{+]ލ2yj7{mQxh--7X 4ݙA(A?KH!\v$ネ¡kwU 0ȹ2%?04 gcQAw~wvJ~%O9Ta5( :ّV2}M0Ui9MD1<Wr sSFyh=9P'<KLM_2}rYb#DwVҧh_-YĉKD%ݯ^,LlMNނ')4)4%ZJV;KN `%-#obq= 6`iph£vGAJ lPj=N$=ʉ`W)JCx8XV!!Nbfj;$eђaٮYdhͫ4DZ,;݇]p(]:'!D2sds0(PuP]4DvQpaMFr b%F{ʝHqk@$!“~'ı3` >U4]{ݷХtHUJ#Gmaeͤ:32rA.DfBXW5پ{!_omϒP.f&X[`){flXS}ج+U8u= 1F4ՍUrDMvvX+6gʳB>{n%n%x;Zꚺum\ fО|+Ue="${Xӧa/ϱICEqΒTMľ)^SR߿PUqQS!6۱gL!g%Gx+$Bbbӥ[D_zIb) 8=Q:足9\>MPf[y{gLZƐ%CǂBl!PUx)%-lόODzobf^QѶ: O5xFRԳBEb_hh"Zg"7+Ud"bHTCʵ_4^S#zG>ڞ2Z1K}%|gʦ@3ZW%$ɘbfswגij-OêE%m6%]߱ڜj]C[-ɿTh{J`p\Rݿ@ n=r{#ȣf!\VFxF19 r@H3e"Ri@o%}ϯ#0M9Bvn,.AD /3봝):k Ƚ͵ql>:{5&)~!5θcE +q8u> ߞ_O1wQnq܇֚ʞL+J0N6ųğ0&.r˰ fta Ӵ[Q!1 >SaozcBcTN1\^u pUۦHy2 "O3H#N:Z 4ȱ Xѽ&K4Lxj"IbS,C %7kpH )3yе 1W!5RHlY"?kj]{*Y7 o !(_ӝ~|pEYD]@ aB/z%@$OWS|ા +'TLaL̋.<~N*t-I:؎LW&B4gGzHd7U'M[QEԋ͌^ՏR-lb\h[B,eFߎڂxt="Bځ) ߳"@+i<@G(N`QV9'v9gwߡj!;0@";/g+@T6*h:ޮv>!S+FAXHq2UW\%]cZ^&!A|y =|Ӧ (~V@ phߜ!}a,lUYq9h?iW7ĉ@ʯ4I#AM+qoBFR! PxlUs-`vMX)LmֺV=fOkP5}ޚD[9sR 4?T*dZ.t}=ph!"'@qqV ,’:іY,KmGl}2{qz& p%1G_Pg/4m=xE[Mb`F2@;~8< JcBYX0x(e!v \Vi"gƪ imֱXj^`z~|_rq0!2t:'5xMPciHn/%IfdGԛJe#+,IQE>C&0LTY@ѧ:i@V_-(j[cQ5IhZ~ok' ?E +;HЊ[(Їo9I ӜQoL(ř8iŝ?_:Ɛհ=kxdx8Tp2R"V<jM Qur8rsGkBԟk:pbo {ؾ#&[~C$L<v N1mkD\^#=M&p1+%z?=A[u1)jDL*NL6IM @;(UΖj(d'~ݙɱfZXXhgw[]DIlF3[N '>h婴a+;idfUWq2w!=WF9dHQ|yЕmE;9Zm4{s(sX7(C]Kyx,MH)w]$++aȰlY31ܨ8mw+0I(%KUy 6_RD`iSa^c{tn\wrȅ(9tD+g7Kx0Q6jnsj9-wqB j37]J參xj[Ӧ `ED"s,UF<^sfByHL$/%._͎^0X1:"I `||bȢゥ<&mjN&7#Ƭ{l0Ps#G"EXgN ɫ^鼌I$fsDx/ QC~K)Sm8zt|ՙ|s`@,H=f= 0,D B-ՠH8` ;pL%Rf>36%+1  ^ߍX$rzEpV2Hr$:: <5Z*HO;3r1J~tnbK*z`D%Ҙ O1**)dc{wʼnI?e"`sc=vڴ@qÇ2ZPG[sPC\d{;Di\PNa֣V% 7P/+zM``i20&"jCQ u"HŸHSl'w>*4d Kw|)ɯaKJ;xqX!FE}NHL25zv<; 6(&XjZ}dl ~?ʁ/>"[״\t"a\7sݭfqV(X'AިO,Gtrb, j3k~@2OiBެMO^"N]} ;A>bSÍPtuh׈2=;H5N"g#XؼJZyjB ^UU0F?$7M@.o@Wq`/&( h7{,[ܟI%wKSx;O/AwUp77-Ц<.fFFBۄ5(A=#O„|gU=?zUhy2Rm7}5{Nkj]8UR"K9"f (8ѽ *t&]g'2a2[,tBhn7R`,GcDYđ/c ]giFZ]Ke0ȴ SJM%bLn'08Q!D ɉ#M p~-+xϵBw-4͠Z0٘}p@FEk`P^ȨW>3dĥQJp=bI͘\ v̾ 3wCLJN1 4 H?ߠ7kzuk%sf {^=Fv 'aq,)HK3' 5kMeM7v7m-&9*4'=+N}2eqwhS(E$.]U=Gt?Fo?[tw8FsUJ\4.< x|^awmU(@NPB D1adA̝.cCK:9Wd|fbÓA/C5I8je:W[*nQ):+ _.F+As 3bGxx c-P9EDqR\ *y&[pZHdD~SvUwidn^Å{cY MtmZ2G_@mBRU~υ@!,2vt\nOi%C S'?h< c֑ 76%,FuV-ZWgֈjڀOS4?'[fU19&_\|1L\O`^-GFꢼNא.V>~&8K}{B~/wX*ۥNx!RuRk˄#Ҿնɻbd6]90d4R@Ę@_ʹ ث؏C:֒x-U@#m1JNKi7Ke`NٿQQ'q1'O0e:lv1!|\+t?.t ؚ(7ʿ[ SvCtUX~T 3>%5?_pXz00eL?rkZ^Yp]gAS`>lEQ8&a~qLi;QX:Z$agE)}ǵRuRiܱh@)-P>e黣umaUzE R( <|O{;W="yIeX,I+Ӷnll7y&jO!;'ȢS"-ξ}j^{HR1 տCGز44UY볚NjNt}dbl@cR؊fhy?7:h7~&_Pˁ[8̈8)c&*`rS*xCN̤Jn%2SC6ኦћMDԤKH&Ԏ?6So沘moW|$U0`GBT(@]zï+ʕ'.U5gӧErq=vKP_ֱ A mkxDbX_& 8_KK6t.S|=ߠ:_an8(I3iذE?Ǟ-vS(G;`IX2'*/ ǰ)"nb~i>H!:g2:Pu/:'Ulϴ1`ic794 #uQPhU ›ڋm߮\t Z 9*㙏' ˑ70vZT'Rzrbv! B+7 M1QqVؐՈm*@*큙Pze3_d Q̯`\>w6cDI{z Ҽ_f@T4*1׼/|E"u:Ӝ?L11ljy}~R *dioWI3&L0E% 7V3zT$jp}.@sŬeŢeM*{@Bp9Ԕ qC7S*̖D^:E$qn1d[,5oa;{]9OK/0GJNDqRHnuo_);ÿ"pC"{$[@@ coЙVEDa P- ^WYɖ8D]6ݖk**>e6vƮ.Tmw Os-{N#Yֹ[Z~m3HKCdeJl@&M*)ŔvFQየ*_6xW;3t[wwJJԖr*P?7VG"< !`r0CYIA'Ո"Ԉ<[yd]?'/y//n7R4tԱP X@,%i O2B qf\g^p-ɈTkG0c^ndC{R-L VۃND&ϲ.g,RCm' '^9U01韒lk_O+aY:1 ;G1rJvh}bl2Le7=u$~$cx^[Vk*60sv14BDϯ-7kψ4S-1葕٢\89s8kfhsP63h8/r)F i(cbg38ZytSfK8 n@°#IIT]\Ȝ,Qr7g ?]O<7#c9ߥeQsvu.VaTmd61v,E @UN,{c"mE{}/'p?M!g::'蕽χ@xY;^6Tr|PKpzU1Nb5ʰ 塠' ;oT VFefD-́?G6  OpsjdW;[ $m3ѹk-[Hxp\;\WmxR&\`v-iMxKpǺm\<,` _-:&c-UmϽ2W|'ufbpX$/p^Ӵ2X13뼤E,lcWngfX}F@]C2fSM2[r:9~L1Jė]hx|]Ɍ p ea A/F54+VB C[oTzOWX[a!=>թFH,ϝ-3F6(]^rQc40umUOQ 13kk[^L~M)% J9>:w2͏$ DH$X@ƂnO vZMg:Pl_NJрphM۽";2Լё?|&a3nmgLX*VlHkD~Ϻ1S²#wb1w3.bJߖ\?D6,d-}Wo_󿄬Z>k3Yo&UhG{ԪZE!0/Vsi&^%xI$ȝǨA z׌c.Kk tAy[]wݼ\Wb*ԁ[_wᓬcL yɨV:dفO 3 7:UA^v;opP;siِSNɞIoPj8[&;hX&]ȰezW- &X7Uz":uFNkdڂCϺDaJ-HNTHU.A|O V:0 D0:bC&֡f*pk]RmK9pZ =6?"qr3w__HBzXrWEauYlf(dX%I87؆]ŶR=;DJN[p;Eߐ9/w3qr#^a cOxsI>`܀xg( | JJŚhx&J7!XG@z %67@H{F\I ]snX;|_!t+V$8[kr<@h$]hob;Wyc?!r п ȝv ˲-hvû͉xg 9zЀF i%s]n;;w R7'6{^^(0 $ ٠-.E5u9L,Ӯ:^s˲sDD:SGGfvBvc?Hve"&TbOk t'߿|jja\$X hHyMG7UuD{P 6A{3=H&)+oy3S:h'щN&S`x?xϾ^e,JD=dohI \!:_ bB>X$))q`/_#җ@MR9Ns!5TC>z܂=8$CC6= {+ЁJKI2а| (bzOi]D'aPy=A|O_6?ʴ=Ĉdak;2 PPj|hynX[ ?|7U5ik˂8(م޶ٿw=K_L39Ӫ8IOsZhRIe&HmMMŰP.OQ6IPIQ':+dOaw Tⓜzs--9Mp~c3xB.p+=າr,b@ \Ee]Ǹ,6洞:a-Cu.7|(*[9>mvXZԩxO) ʑ+r{٣ ڪ-2IT>{x653S&9W1Iy@x;SK1#R|m@ }HFewNكX~_?NGŚb91|&F`m`6p#_Z\:%J RZՂrN&5J%^έ%1csVw0+At[?:%R]J^ _)(bp;vheny B> =oXՁh?ywd-U  9دFX2V] sخ"g擹qrd(y12=K9-|!$Un:uVW^N }_a`Y#K6f ɥE1H26KU]cLBlF A=j,~}5L\ƕo H5i֑J:,y8h w!7xB."̄ƕ/Ǐ !i4H!gdUMs F|8E@ԠBE`pwbkJЫwz3//"b}q'q.mp-c`K^ibV9!fq€@Mq2mZP{H|RL+4R"B0,ucV92 Ywϸ:V99X. 񎇫bx䀳f}y>DPHDG+U ^@~;"nʈ'aWnַ3z-/`87lV-I&5UG!*`eMK5uS"e )OD`A+h5ZAlJ#lvy8"!NlE'5~4Dķ0Hay6+?CT*'6##͑Mߔ%8ooC&Wo=Xx2.^aX[]HG෶CZm&J7=-xj%74b0}7|LQ(!GG%MH :O$vmRR<\0ǺQHw"%m|w΁ aa¤Pxչ&|;RWړ"Qڻrfc}Dq_A%oLUu=-y"輶z` 8kL. 0v^biُr^8U5UmK::I-@o:7Q7SτLicnAI!~MKwf.b7{)M"PwoP&R-Nc T?9b}D2EFe ,1lwlHʷ;,d` FJ$Zؚ$)|C ·ok]9/Y/QrO)k5svY3!iX.1ǣ! kGq ?I)e/;[]l%#1"HZg.VJżA:WhB a2+ݺ&a[_;w8Ku#WTKW,sęwzmbťln5 qYk!!jb%R.ɤ"=642m+}0E*ivs^VUW񱭜C>TeP㥀%,TwK:_4w&Tc]{"qF$*aσxWCH $ m]l&5Ỳ'IIɀ*SV˟OPKNgmԃ mJ,c Y|UoֺǺ9#hROC?- 'τ4c܇b4.%EH"sx() 5u0Ck^KOV> 5d;kR([XrX9԰c/*Te*ҵޕ8A(YYϾ_5w"nŕYNP-T Uhm-Swꈞ,$9D%^\0>^!1{ }_q8 WԿm5nu-RQ ˹pȮ \8-zSy#BNFO cYԹrBZAe&ڰQV#g.ߥJ1Kfq)MZa^,3:MK2xA$r>F:}5NEE,"|m- ƀ,Uy8j;Y3zM +)H[2xىUnD! j=2N!Z֕/[B)X繃~x},I u& 1gJq:5D&]쒝wN ;$,R޳:K2y"Y9_rR:'}ן% H5=kF?wD5p)Gaii=`O H玿fӁJ1/\8pH ,E8\&Ǵx2N8dxT&ѣg]Œ:sӕ KuJs y;\Ksp ;'Ge6çsP\|le0׉ i}gP@påz E O9\,#ŎE:O3$ Ңja*hsW)y ¼}\CG <Bk`Zb$V0r-k4f8;HH* 5-)c+4;tF 0b84:zˢ93o F&@f:'K:to>EԕܣƆHvq3iE(3{.`Ť)4Vrw#;mf9wɂfۜuA qZ˙P˖߷es JHIvz)(EGUgE(%H)aW 4ϡVi#QV nNI "/M禘b͓FAKE"/500dfp-r m&rb~vco77 I˛ YoDĜvTuYi=@ 6|g*mI̿~LyĮ}G; A'1jH { f .M-ްP7Dguh&u.Sl=B)UL>:Oq"弲{nI3Xp>e"Lc9?XF+.X]L(:yb3Gi W (gE4H$2L=iXH 7j<ÆHE_騛L2?Z[_ {sZxRwk@7nMH?\2W~L]S-} XkNΰ8p(gWSsuWtJ˓d@"f +!COo2faS;F Y{yܨ@$#,[ ᣊ~0.̝,0 Io 1+ઇۘό f.t2{mi':[#g82t(٢"dF l¼Ҿ7KL`ՀZI6׭N8Tq`[` bF Q<+-yGdfhXcmedTX5:c'ze'-15`AO|;9iE?>go7ҁeY)C{*-1?nlh+R]c4F};*sO'(vJ} 0 R<=C+lbN**qfofw0H&cgϟ)f.by֊4cAwqJM@b΁/J6D1DEuw.{nzrL̯$$R#f_Kn_[%Y, ]sM Ŗé|< XQhoJ*+ سzV9DHh6oh^ m^WZyzfXÚV3 ]D3-*tFaCvIC)]8;"HY"e ~-.\jxopn)(,I4_Sm" ͐>euc k7A3N`v'DfFH #,q RPg?x~*#=Z r:e1 A)K-<2 $???yR]ZQ0R:84ϼބxyw*dqTd UFq$h =de'Po9_Vi;u+ʝԼ-bͧ׸$}$}᪘{gi~ڨ'pMfHg[lku i@^^&, 8[.>9_ʔA$fۓ_66$D*~$D^~cgo"qJB0'Md}a9l˸adm홨cL6@f3?oe\5 X Ua@hB~pE5|M.ц4loWXXĆ$Ko7kpԥإ?iG7@3*_ȕ(/~*Gؿؖ)(3l̨b|cJ[ҏaF-^O ".S7@L#YMo%N;U NW7 ?WRRSK"o|2J@uk3n[ݮh$$6 /U-,bÚRQo͘!_) S.;g<[_gkIZvt `u[ q:ڇd+ F n Hί_Q G⧏%#MTv_shIo 3T(k4LYݺJn75Gf*b4]24`]AY|3>Xje$g>* z HBGפo,O7b49ZC=RCnL'mS( lmW /M為ohr*@q;5\Q0D# ܭYeo`H&h-XZFf*8|11{_mdT_srmvGɤ(,x%QcUH{lϛz#B8xaTh.AYi X MR_K j$ۂԇf Kv(MBFryLb ɔsmYcHJP:e]߫T^j Evt\6;X*"l0W|{%R,#5sc/E\W*y"yHMA;&KJ_ޏA_a@3?_w5^B;q~y6xbKH^͜V*<(.VIKx]IYWQL4=kwҝjgRK:DT8R×nnZOwIw !Gyxq00+ `X$g>`u*wW6gﱯrDk/u0"7X =BFFekXVG| |_^Cj˔ |= aw:ḎVeT g˳t oG-1zk&o*Bޭb_/~S7俯gԸBH{}6im&{7^e`H<"1,ljHEh%TH,Tj[R c -娹cOY-SqmϜ1'4Lnj̗=3Cdh,Bg>ur`|L]K}҅횾w5zJ@ Y5-@ )\_ D= '3LչzIk H/>}WY_68hd#-N[ W3L=awfыK! b64*(n5>/)/MO˯Q%.M.^/%I]!#B k(034r JPDrre>G=̰Vk4dpA,yaŬ :xcipÈdBw&Cn;ݙ[ 1J8瘼Alb2}yٷ|M[J ơ@dh :O H bbϬxQqt;+u,K -\g׷iù]csJiY dSPj$Z?TɠU=L?-6edtDE0>:Y_tK0Nz/}Refq\ :2qVZl݅ xM_K X\zhYMϕxF> tR/4Y:ki'K[GR JߴT7Ie2zm\7`(~A-Y] #AEg4vс*jp_J6۞i,J>M@̢@Ӭ׽Ij{ )E__tx>zt"x$Slgp町Tmy2T(6FX5kaZҁ ⮤ pnC4)mX\*M@+MC`wcF<-j `e Gr)! ?I//йWnؤo0=BG>IMa}v ]իF {ѷDqtA~% f0D,. w-a#+-k"Å՛imWgM?+ gKK"]u<гҲ~#I%ZN H7LpW`^V3}5nY6#f2XOaDxMIP:ء8q/e[Zv @gtݑ'd?HQkv!᳜cYrfnڇm/ ' 32&P6ޯ9ȼ#/i&H^MB+gg\*ގ5|9/Q8?`v  `[fOˆ8;޶FN ]3vhDt|E&5^pS3*zGG0&=Ͽ* S15g݃ 7R{'=Jٸw5d Cx1'4/\ĐN"Ip {<q)4Mۦ=6w1;4 ?xr!%I)ahj)Rqz=jiK{qP"Qw[>P C(a`QZ_Ye sZ +kdCT@R٤1y.}ڙ5|EGAgڒuF+(9rkfP+ M-/Ih*J@ǔp'>X٢8:y:٘X(K1~~&J,"$CYΞjql]6j*7WewX֍S(v#5Α]LŘaJW󐾫ORaeҳ*Qȳʺ UoF\QoxkrFR{,cv?$,5W{_KVzЩ^ʪ?[JfNF%pwSЭ}oh4ӏm^IeOQWo<}L )ԈCSI #^ f{4XO!),+1zWƕ&n ;ӽ0~?o`",^<:ՙt;_3=MZ4gÕ&"mA aRY>zyd#wwIwDqڨ &\!Ź-0: F9S4䶗rp?ƿ-(-R/P rQNtC|ܼTQe0k Z[O4?ŷ&w NWt=mGncOqq7Y~["&{ kCU{H-ԙ10{ED9/=F(5OJnR }[QXaAFwx㒅?C`W.dc񇬳0<JaQ^@9ZQj+z4v#4tE?Q\^cr3ۈ "'gڅ: &F a!oR*e_@VSFκ>9ҶWRY3零.PtR9=`TS8{uS l;cB,]U7<')ˡ"}i+m1[1Q>ja+OdzƄiMxHrjj=p5C03_.c.ݴ[f(9VPUicyjOR͞LhPAJ˕tӫ 67~-yD'rdր#_NdFC,@q:6P<(aQl.ƪo(=gweZ.&7gek:g$ >(߅g\9bt!0ˑcŻr# 'frQ؆eqI"iNphc ^&NSr[ D)*< O,+$j_9m.o4QfpĹX-e6K^ !=fufG*a#c Ch6 %5 a|c<zoH?1,v)@eLs<.̠ZCS`Ot7$Kd߲U'B B?[\;^,Nd\2MDƅ Lwtuـwq(T &|4Bb>nú6D΁.hC A8Kajk&{2 ^4@5+R˩_3JDry ^Mk!U,0F -1$,M< ֍{oMpH8gpln<=:btKU^"_)ג[=)կ&JV+]~CELܹ<ҪߛmcbT1Sڲb.sJ:":+/_(X[i:ayH,jTVFu!'p +uX~rڄ̤XD*Wׄ$64| VrYesuyƮ {u͓"KL++ ̤VXb;鹎u6sZI#VG0{#D媝s Y޳8ةNܝ4 ۧ= ;9O7d`&3/I%H$[uB8\}33KJ k,9g}`kȧ}k᧠S^(_q/?s=A*,Ő1JLϩeϖW9i<:WaG%!I@4(iÀK\%d r\rA_Tsr y<76$^c'tbdjĵdÈ8Km,J\;i΢Xbh+~dMK=^}?5bM'U`alr\s LK 1*bH862]}s@UvB)KPƱ/Kq q3jXV&x&RzϨo&.\bKQb{/w5^,@h?p7{ˁئ1ejk z>j$l[oj椭]dՑ1}Jqq^ib@$bO5т܏D-wANCZ*(E*x˰v6?*Hq&^MCʚ=1v&yBD吓 B{TI'SF]'5et[П%,{DX?(wJۏ( E5(J[i]9 n i 1]x7on f' ؅'H!sL^;fSWT}vԬ'*UR^t{SW 8&$]irm4A^Ăuy#c7k6N>ia. WؘPDԸjOCAvX+BϬlZv~'п-}Xc:o@4'n;#hy=Ĺ\Hߊ5˜BpJSv7FFC~_'׸5=t 5;y#@)Voqfxڑ7szV)S"}ً7}dLZ4ܜEe8\5YK(Sb0(71"Xܮqx:. (?"e-?=xU_o ZFnƆ}c@W,jV:;Oi-ɖ<>w.a|pIAZOәbHxbc 1-Ʀ$rYaRLT3s4|O(E@|W^HguR8Ǜ{K{Puv;z8Ij2nq*`oGbJG" `2tq?[N6oUjM.c$bϔbG)EM+{@LTs Xɣb}\Z.ǎ.X L1`n#P1&BU V-Ecb~.>|rз>Ƚ!G_:]:MQ^2?ZB"q-NMg^йq8Y4XE<r;$-"="IK[%u^Nwx L"WxwE߯Q2͚ S Zr'0-57ްKQ.<rfpEZDUN~B,K#wV.@'څKQ?9:K.sL Dlb9"3r~~]פkA}vJ!H%zܺјH-R @ f6Ҟ͗4! bɓ@;\*:@Y8 CcQU(PO\|s] &[U)T &Gq?C{mys>*K"7ZdH#[^*|bpNV9\g[;`[3Pc-mwppbȡ7`i1Iu$C{- UVұWmVx:R W 3I *ܡ@嬣QplWc,.ULGOll1_yDFwxM];z^d3K|m!{!_!䔌s1FSm\|J T(?bt999%-aKU "=i8A@>l;v8W%D(BҞ IYWƾVTzX؏]yu)UVέ53ђܷVNlrrAPs Brc!m722Q Qğ})Gao_;յ|5)wT!sRۂNhJlhɑI+f ےtk7d@E,0~@^1׹EHKB/XFQrQĈ"st?I'KHjpg.^lBr# ٤PJx xcϕ fa|`}ibq$jE0ƺa6B^C ?HJ/c<ڻFeqL̄CkxAfI}.7z0f媪uD#ҳ#^0Ԯ?gur9(~y4.SOmp0-y@-Øo-clIcr K2-I_Y${о69SWXT;b IKHUҍ@4ב]*CP SB.\ y9 4 ױ4v"2XzTAzր#S]ucN uZ#uFh%FChk-fKkipZ_~s"=/ nUiNm) !V2( ]|ύ=z~,gc2ď9 Îb12QgP:-,8<.jPBOa|@nÂvZF_KYSӎx+tC[uۂ8Y?nV"TJ4kh4$dzYY"׾ɱQ%s LL͕ f2ydM,k?*sQ "x:pXNN-qcr%Wk MČ~2dVc)̀^] 'Jq]B`\}gbl?k[Ru-oT?WѻmaQ 2p}~5 14O!x ZBqO\NuX1]N%{Iu1Ɩ ֊;aݪBרIժ 5g*[ߐpAT&)+Y|: \6LrH_qFi>,1}5r<.I\5l9HTcqǺ9qZx:\k8b?8}F)'$͖zgf/DF?Y#.18$! 3 K`}tښ65'kP*9Gow9file-F[[jS>3"rLڱzb27>Ǻ "Vugs_ns}5hdZxT!,scBRR5'G" ?e|eFoS,qdt+uDN5Z`{s 2S]@:lSF"+ tZǰޱqΡ3wJb)/QlGrr|Gci!l{76ܝ hnZm/FXM;^.geL)͚bπ:!S:&LY,%i,&A+Ȃ &pY~QǠJҾi^2 t[Ж՛*$`(Ăe23E/.ܛG ]lW nhrDnZ׽ϙ>̠0=厽–[6X$RQ5{);oU3jP7vr[%{YFQ}Rb;%i3"ei\E~A̸0e;*3˃8%,TMsxr Zv[*J08l YPP3M}MKI݄\吱l:6EG w1$޲AoI(yULd!J~CQ-&{clȫXWpa0, ^ Hnݣѻ| uOTB/SHՍO% "[.R!33XS~Das*0m[&xg2 >z͗ =cwvő҉i`Y.cNB[ s[\9S#YzߋF˂z<

Vڬj&'%ùK7_Bh8S$fEs's\JZ @E1 5=sV@ZB.m}(#=OPp~6;n J;GMHY:<$1=Sӈ:\yfŨI ea>`,V?eXCkGc eec XʮQzovA+Sx%>1^M{Co_[>gڅ?4qv yXz|f<͂?yJ.o:Xv1 N}XR.v[8=+g:8_OW[Ԝ>YzA]^[0ϾMIҒh$gēɀhԴ5FmP2ɢ_{'!WbP&e?9eH pfij^{<;?+_F'emM WV[fQfg O`I#"ENvTQ%4dh7OmunO$ lF&׈C]61a7?Bu@#KpY؝U6(R>f"lΏ5T/5|UNd^mBU s5iՐEtT^%V5״U\wPzǣZaM {%Z՛y!wUI~'~;J"~mImw2A {r=@R>2./NdBMI6jQ[J'چfbWi=&-<]'ZpES/w+*2lAXa#Ԛ˦qw ߚryF3ILVK-ds `ʇ( Lp=}[wA}l41uW%_Dgh~\dj2uTt<#3ڵ-IC.SB}gȍ;@QqDz9 /c9ʘGw=0B ÛyJ7mUnSh/ߘ9'XQ^hs0XĻЯMT0Y!q)kivWf<:qP\l< pzy=d{ykb=$ȦXjǕ{.V}gåx8ۙ%