saptune-3.1.3-150400.15.9.1<>,Uhf p9|FD/PU5NmfAyskOgxDм>ID<]{o`j/u̵jBc:F+ؘ3V/t pB1nS:t KwQݼҦK3l9qŁc[YD!?'WqR*fkT1p G? 9 ˡ;&-<2z+{dx>K $? d   W ,0Ijw &37z9z :z ;z =pz Wjz WzYz\6z^^z``a,bT(b8b'9cD':e'=>?@FGzHzIzX\Yh\ݤz]ߌz^b#cdNeSfVlXulzvT w`zxHzy0z<L Csaptune3.1.3150400.15.9.1Comprehensive system tuning management for SAP solutionsThe utility adjusts system parameters such as kernel parameters and resource limits to allow running various SAP solutions at satisfactory performance. The utility can be used in place of sapconf.f mourvedre4SUSE Linux Enterprise 15SUSE LLC GPL-3.0-onlyhttps://www.suse.com/System/Managementhttps://www.suse.com/products/sles-for-saplinuxppc64le 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 saptune.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 [ $1 -ne 1 ]; then # package update NOTEDIR=/usr/share/saptune/notes if [ ! -d ${NOTEDIR} ]; then # installed package version is < 2.0, update v1 to v3 # indicated by missing directory /usr/share/saptune/notes # only change version to '1' (migration), if saptune is really used # so check, if a solution or a note is defined if (grep '^TUNE_FOR_SOLUTIONS[[:space:]]*=[[:space:]]*""' /etc/sysconfig/saptune >/dev/null 2>&1) && (grep '^TUNE_FOR_NOTES[[:space:]]*=[[:space:]]*""' /etc/sysconfig/saptune >/dev/null 2>&1); then echo "saptune NOT configured and NOT used - version will be set to '3'" else echo "ATTENTION: saptune Version 1 is currently configured and used - but this version of saptune is no longer supported. Please migrate to Version 3 after the package update is done. saptune will stop working" # to allow a migration from v1 to v3 after the installation, we need to preserve some 'old' data. touch /tmp/update_v1tov3_saptune_inst || : # preserve 'old' BOBJ and ASE note definition files for saptune # version 1 compatibility if [ -f /etc/saptune/extra/SAP_BOBJ-SAP_Business_OBJects.conf ]; then cp /etc/saptune/extra/SAP_BOBJ-SAP_Business_OBJects.conf /etc/saptune/extra/SAP_BOBJ_n2c.conf fi if [ -f /etc/saptune/extra/SAP_ASE-SAP_Adaptive_Server_Enterprise.conf ]; then cp /etc/saptune/extra/SAP_ASE-SAP_Adaptive_Server_Enterprise.conf /etc/saptune/extra/SAP_ASE_n2c.conf fi fi else # package version 2.0 or later # check SAPTUNE_VERSION stvers=$(grep ^SAPTUNE_VERSION= /etc/sysconfig/saptune | awk -F '"' '{ print $2 }') if [ "$stvers" == 1 ]; then # check, if saptune is really used # so check, if a solution or a note is defined if (grep '^TUNE_FOR_SOLUTIONS[[:space:]]*=[[:space:]]*""' /etc/sysconfig/saptune >/dev/null 2>&1) && (grep '^TUNE_FOR_NOTES[[:space:]]*=[[:space:]]*""' /etc/sysconfig/saptune >/dev/null 2>&1); then # saptune NOT configured and NOT used : else echo "ATTENTION: saptune currently running in Version 1 compatibility mode. Please migrate to Version 3 after the package update is done." fi fi if [ ! -d /var/lib/saptune/working/sols ]; then # installed package version is 2.x, update v2 to v3, save 'old' solution definition file cp /usr/share/saptune/solutions /var/lib/saptune/.v2_solutions fi # special fix only for 3.0.0 installations if [ -d /var/lib/saptune/working/sols ] && [ ! -f /usr/share/saptune/scripts/.updhelp ]; then touch /tmp/update_fix_300_saptune_inst || : fi fi # to prevent saptune related tuned error messages anytime after this # saptune package installation switch off tuned to remove the 'active' # saptune profile # 'tuned-adm off' is sadly the only possibility to remove an 'active' # saptune profile systemctl -q is-active tuned && [[ $(cat /etc/tuned/active_profile 2>/dev/null) == saptune ]] && (echo "found active tuned with saptune profile"; touch /run/saptune_is_active_in_tuned; tuned-adm off) || : # if the tuned profile is saptune, try to switch off tuned # if 'tuned-adm off' before had worked, the profile is empty # if not try again [[ $(cat /etc/tuned/active_profile 2>/dev/null) == saptune ]] && (echo "found saptune as tuned profile, try to switch off tuned"; touch /run/saptune_is_active_in_tuned; tuned-adm off || systemctl stop tuned.service; > /etc/tuned/active_profile) || : # if the tuned profile is still saptune, try to override the file [[ $(cat /etc/tuned/active_profile 2>/dev/null) == saptune ]] && (echo "found saptune as tuned profile, override /etc/tuned/active_profile"; touch /run/saptune_is_active_in_tuned; systemctl stop tuned.service; > /etc/tuned/active_profile) || : else # initial installation # check, if old config files from a former installation still exist if [ -f /etc/sysconfig/saptune ]; then mv /etc/sysconfig/saptune /etc/sysconfig/saptune.rpmold || : fi fi touch /run/saptune_during_pkg_inst || : PNAME=saptune 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 # workaround for the missing directory. mkdir -p /etc/security/limits.d # cleanup 'typo' directory (bsc#1215969) rm -rf /varlog || : # handling of working area is the same for initial install or update # initial install or update from v1 or v2 - STAGING is 'false' by default # the entire content of package area gets copied directly to the working area # which is empty at that state. # update from v3 or later - STAGING may be 'true' staging=$(grep ^STAGING= /etc/sysconfig/saptune | awk -F '"' '{ print $2 }') if [ "$staging" == "true" ]; then # handle staging area and DON'T touch the working area touch /tmp/update_saptune_staging_area || : else # staging is NOT active, same behavior as with v2 # adjust the notes of an enabled solution, if needed /usr/share/saptune/scripts/upd_helper enabledSol || : if [ -f /var/lib/saptune/.v2_solutions ]; then # remove no longer needed old solution definition file rm -f /var/lib/saptune/.v2_solutions || : fi # set up working area if [ -d /var/lib/saptune/working/notes ] || [ -d /var/lib/saptune/working/sols ]; then rm -rf /var/lib/saptune/working/* || : fi mkdir -p /var/lib/saptune/working/notes || : cp /usr/share/saptune/notes/* /var/lib/saptune/working/notes || : mkdir -p /var/lib/saptune/working/sols || : cp /usr/share/saptune/sols/* /var/lib/saptune/working/sols || : fi if [ $1 -ne 1 ]; then # package update # rewrite saptune version in /etc/sysconfig/saptune as fillup will not # change variables sed -i 's/SAPTUNE_VERSION="2"/SAPTUNE_VERSION="3"/' /etc/sysconfig/saptune if [ -f /tmp/update_v1tov3_saptune_inst ]; then # update from v1 to v3, same as v1 to v2 as nothing changed in v1 # step is needed to support migration after package update /usr/share/saptune/scripts/upd_helper v1tov2pi || : else # update from v2 to v2 or higher, call update helper script in posttrans touch /tmp/update_sle12tosel15_saptune_inst || : # clean up some leftover files from older saptune v2 versions /usr/share/saptune/scripts/upd_helper cleanup || : fi # special fix for update from 3.0.0 only if [ -f /tmp/update_fix_300_saptune_inst ]; then rm -f /tmp/update_fix_300_saptune_inst || : /usr/share/saptune/scripts/upd_helper fix_300 || : fi #else # initial install 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 saptune.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 -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 saptune.service || : ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_STOP_ON_REMOVAL" && . /etc/sysconfig/services test "$DISABLE_STOP_ON_REMOVAL" = yes -o \ "$DISABLE_STOP_ON_REMOVAL" = 1 && exit 0 /usr/bin/systemctl stop saptune.service ) || : fi test -n "$FIRST_ARG" || FIRST_ARG=$1 if [ $FIRST_ARG -eq 0 ]; then # Package removal, not upgrade stvers=$(grep ^SAPTUNE_VERSION= /etc/sysconfig/saptune | awk -F '"' '{ print $2 }') # revert settings if (grep '^TUNE_FOR_SOLUTIONS[[:space:]]*=[[:space:]]*""' /etc/sysconfig/saptune >/dev/null 2>&1) && (grep '^TUNE_FOR_NOTES[[:space:]]*=[[:space:]]*""' /etc/sysconfig/saptune >/dev/null 2>&1); then # saptune note configured and not used - nothing to do : else # saptune configured and used - revert settings to clean up the system if [ "$stvers" == 1 ]; then saptune daemon revert >/dev/null 2>&1 || : else saptune service revert >/dev/null 2>&1 || : fi fi # to suppress error messages from tuned, if the current active profile is # the removed saptune profile (systemctl -q is-active tuned && [[ $(cat /etc/tuned/active_profile 2>/dev/null) == saptune ]] ) && (tuned-adm off; /usr/sbin/saptune daemon stop >/dev/null 2>&1) || : # if the tuned profile is saptune, try to switch off tuned # if 'tuned-adm off' before had worked, the profile is empty # if not try again [[ $(cat /etc/tuned/active_profile 2>/dev/null) == saptune ]] && (> /etc/tuned/active_profile) || : # clean up saved states left over rm -rf /run/saptune/parameter/* /run/saptune/sections/* /run/saptune/saved_state/* || : # clean up working and staging area rm -rf /var/lib/saptune/staging/latest/* /var/lib/saptune/working/* /var/lib/saptune/working/.tmbackup || : # preserve 'old' BOBJ and ASE note definition files for saptune # version 1 compatibility if [ -f /etc/saptune/extra/SAP_BOBJ-SAP_Business_OBJects.conf ]; then echo "warning: /etc/saptune/extra/SAP_BOBJ-SAP_Business_OBJects.conf saved as /etc/saptune/extra/SAP_BOBJ-SAP_Business_OBJects.rpmsave" mv /etc/saptune/extra/SAP_BOBJ-SAP_Business_OBJects.conf /etc/saptune/extra/SAP_BOBJ-SAP_Business_OBJects.rpmsave || : fi if [ -f /etc/saptune/extra/SAP_ASE-SAP_Adaptive_Server_Enterprise.conf ]; then echo "warning: /etc/saptune/extra/SAP_ASE-SAP_Adaptive_Server_Enterprise.conf saved as /etc/saptune/extra/SAP_ASE-SAP_Adaptive_Server_Enterprise.conf.rpmsave" mv /etc/saptune/extra/SAP_ASE-SAP_Adaptive_Server_Enterprise.conf /etc/saptune/extra/SAP_ASE-SAP_Adaptive_Server_Enterprise.conf.rpmsave || : fi # preserve saptune configuration, if saptune was used # so check, if a solution or a note is defined if (grep '^TUNE_FOR_SOLUTIONS[[:space:]]*=[[:space:]]*""' /etc/sysconfig/saptune >/dev/null 2>&1) && (grep '^TUNE_FOR_NOTES[[:space:]]*=[[:space:]]*""' /etc/sysconfig/saptune >/dev/null 2>&1) && (grep '^NOTE_APPLY_ORDER[[:space:]]*=[[:space:]]*""' /etc/sysconfig/saptune >/dev/null 2>&1); then rm /etc/sysconfig/saptune || : else echo "warning: /etc/sysconfig/saptune saved as /etc/sysconfig/saptune.rpmsave" mv /etc/sysconfig/saptune /etc/sysconfig/saptune.rpmsave || : fi fitest -n "$FIRST_ARG" || FIRST_ARG=$1 if [ $FIRST_ARG -eq 0 ]; then # Package removal, not upgrade test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ $1 -eq 0 ]; then # Package removal for service in saptune.service ; do sysv_service="${service%.*}" rm -f "/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 saptune.service ) || : fi fi fiuk,OY`_-q/Y'~(go]l8u~d~{d${.8~]u.8]<e$#%AAAAA큤큤A큤AA큤AA큤A큤A큤AAAAAAAf f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f f 466dc65201abca405e412ef24821d908be59120755e0d0bb45ef5a61f740c7b7cb22b788963797df46672c1f525ed7fa8ec0ed34ab8104117359bcaf5673e227bd013f3cfd82091ff2ce7a52d947d92a275e0a6e72b0b757617ef41da378d9486b01558994a90661a0b9711a6a023342eb19aa66aa4cea7170ad7fc5730939ff51b36adbf52cc1d4725044670fc463a3c5a33701c1682ca9630179c66d3c996969e8900a3516be4ab071e94bd2c8deafe6ef47cc7c12c65c35e76c5cb995dff3d26e3cf627fed395f2280916c8bc072953a63b157558b4487ff7acbd1e407cc2add538ca8f5923d27881b5c7486af6454475864bb96b98ea9aeb87fabb373c72c77e065576be9b62467dbf14ec943460e1cad5cbf77962ad81a9c9ac34c02f1ca40dd73120e9a1be175fe88ed21bab1a38af441e092ddfc4e68d3882c171395a604c1e5ae8746da0979c2ccd2216d35f3ccd854c31ec90b2eb75d2bb433a6de8a72f4fe295e749ac0b436a7f4f04fb3629555462490172abad38564707a2569c29398fc245fc6b15961b9d3c6f1fa787862444d21cda33219ec7f46734718066a02bd1235f7718565b7e616f31e5c68ccf2a23db901b753e55e24a60fef5fe70df609929a1a1d57bb5be2050e34a30bc76d9af7e87faa94037f5c847c377dd8f50e6c7c857c78dd282d182b89856258dacb81bf76efaf30c7c938d5f0469131adfc3580b12ea8298c62e6127042dd3a86dec49bca28cf12c4f2d7ca3a83eb692ed2316a5f2d67772fde16dbad28a1a80ddb685a26585d6f1f46d70cf78d394087de76f18a958892229eaecf08aad137647801d1a765f794eaa4d21ea2e93a880582bee83100eeba1ebd6824d1e188b5f7d616499cae66702ff63431f94ad8e3ad5b5c24fd7c3fdbc6300ed965808843c687ee77e4d5047400e6c51689ccb7c6017c18c9494bcd40f1449fcb70904118f44af15f4a1c46331ba30dc2b24f4693e6da6ae159c6b6ef21a7628305cdc247e23c4aa4eab0d4e9dcf7618415dc19888f070db972d49cc503edf56c8cd88fe46d868450baef3beeb4a7a14529af5b43275e21acf9a03788a461d98ce7ac84424e9b649f4e266ee89d5778c82aa526c820c893f44615f8781b604bcb33392e00e23a7bf81aff4a15a9b7a2c7330e3b026cecc4d6477b7be44d61e48d9ae9882f13529bff6073d16eb26edaee3fa9a99d818cf3309d80ea5a24a16589479a19eafec3c42d1cc9557d9838bb481e1f4681dd0728fabf66a0c1160b773d79260bfc1001f0b621279f249ac16b41344997aece3b325339855f561c44aedfdf5d898b965a2d4d4e4ba79630e870576ba581cca5d83234df04604e094557d7b2180d932f20765c3ec68ae96f7e8a8e79485f3a643e0ee57754759be6047cc4e2ec3c4e0fdc27f18ffd4f9ab5ebb2384a250e5ae7c99f20e7b3afd9ba1ebcf19cb790e057d7a76505fac175114b8833b8c5f49cee6c5180d3db989e6ec5a91fb9c76a63d4369a1b9f9d0e95e73fe4a55a73ebf380a16f7eb370a3aeac0d112988d29adeeee865389fb54269edfd788197aa6ecdc7b509aacbbc82068be5e4f3ef09c9c2a1858a3db7a4278236ad3f5604279a753c232abf7cc01d74b879382ff4b623ac1bc6f90489f33784424e6bdf0422ac3adfa8cbbca94289b366397a93a1c1988971120ca9aacbe29a279fb12b314739bb0a776f90152cbdd7d1f5164d082eec8c40494b27c5eb51e7b5ab5c93a1ced93f866974fe470994353a99fc5a4bf4641c8a553d1bf69adb44dc1dddb08659e284ae3b23864d7e12b06a46053b99565569b0934b2c8585fceda159671e49c82539ca6fb3a7d1d3c69fe740224c8a3149a13208cb27064341583dba608422eefea1b2f5250194dee28d7ece4404a52bb6fd1053bbf6bfa06649a91d03df8cc53b67e51bb0d9393b23a13a12e5ac7cee942589c2b372b11cf587557a1b296c60320cd7ba7eca81a140c8c47defdd8e869f617ace2a385efc57e10da9e5a73ecd832a1227454d4ccf3fa479bf077a7a2f3cddb9d3b1cd2546761089d2d286eb9d1f371568e014df652b8bdd8141d7efbda4eaa4edaaf831be5204c608326c781752a7ccd2394e466d410eb51542bc7563f740ab2ee0eea934eedd26d79c6addd3d26f6434a8f30a8693dee62fdd2fdb6e012dd27bd9bc7ace73cb07d77dbbf7621f8aa162abaf511d3c89b5ca9da9693a278f4d0a140708513d5327c3ce4e7c152f5a11fe5bd3b3c40f23462e6718cb796c179349ac0db2ef00ff570db28628a584715c5488f83bdf271b560d0aaf7d6b7aa1e16977f707b1073b15abc71f2ea3ffabd4e03a4ae6a4d19c81ab89e62db0fc92b023fd81edc35d61c5cf2b991b8505003149c38e5c6cc114a11a944b698331133a226ea28afde6a06b4218fba210d6e66d645fe42d21d7f2205c871ebd248a614212f604f71aaa7e4c5f63085ec587e0b0e58c4cb7fee519eef1250fa247e8ca0c3e92b57c0bcf0d107af2d358536bdd8682f0398fad7952732ff30b180be6b7967b12f1c15e8ca0e8fcf1ce078da210028cfe69eddef7aa43f8d711913cd9e3eec02ae287fec018951dacc9664e827a21f8c394024103ded05f277c147cff87ae86a92ef13600e177bdc3cc0f033b83dc6ec08cf371738f3d8febe101085b66edad8220392f3486428a26261bc6f22487704da0b0490f026cbba3e8b6a3eb993c179797457637b669d95738e47dec0b08139ebb49b1613e8bb670c8398331db76891b32e4664b441fb8be6bfd34d031de1d5640ce938bddb2fd4cb0b4f3176c5bc599833854ab1d3779b28da6386bb76fd2ce7d047babc794d2ef5bac77c7a325d1b398950054ffd66056aff6874c5ad43e0ee57754759be6047cc4e2ec3c4e0fdc27f18ffd4f9ab5ebb2384a250e5ae27eceaf2b30e822cf885e23ffbd929266ba65137e67ee3d6cd5e544af67ea09c322639b22cdac9fc09b81a8f9b4faea692ca52c217b432f3f6eb3e788a198e2d316050bcde054202f885f0c0f7014857c8510ca3fd3d993ff1a4c0aaa2664e74f2f3ae32ba1a6627c8cf8c312248ddf2a1ab35e1b4c43619e2cc6d99e125e84e90f02e9acde06b8fe5ee3803f85df3b37358f93a4a95d0af637e92b5a7351433f871917fac9f0955b1394fea829af3abeb62afe6065ccdb0c4890c72381b24139ba817d9935f3179c13e66b6132e93ed732c01675b5bdf15227cf96eb951a77e74768067dd68daf6b1bd015da87b4e85ab3bf82e9a41d5447af3344521b448cb5a63c36a73aeb772d666f2cf918d53512bbd04f31494dc2555415674c6b425e3936e3fe84597e8c5da581f205eeaf987415df857026469248580c78537264f2ad666f7c9a1c34dbca35c1e2308076c7421edf0174c6124847f7d7aeda17ed73719f9e8ea1312c8bfd1567df3b71200b38e9aec4ba98380a4e534395511081fb72ad52b322104368243c42f51d27ec9d05510ed0043612e44f8e2768fbf01b142bb73168f28a5910795483a4664726ab05b27baff804b7882a607f8ed1abf0a90149c38e5c6cc114a11a944b698331133a226ea28afde6a06b4218fba210d6e66d82a9db46df2461c8872cd4eef2e4670611ab9e709bedab1d50a75556facd5b5d3d1040bfd8d777c887a08a25cf0b4190116929eeb841dcef3439b7583f22e909a53af82f2308ea848eecb545d69bb48dd12e40ada828701d5421fcfbbcdfbc34f4bf2daae98f1c1d41c1ae083c067d7743949dfc9b0057a1ffc0dff56bdcfd2685eb085c3fb5c4291dd84ef8e0cf50c2bbe4ac66017b342115226027ee46c39699707645af7d51706698de867190567fe2d748f4b94d568a7850772cc46a81366c9704c571ddf11993c23a1c11fcffc780afd9b60ce7d77b4e3aa037f9deb53b77435543815885d53a5b1d17604154bb3a342fd50101c35dd0fb827e8dca23943e0ee57754759be6047cc4e2ec3c4e0fdc27f18ffd4f9ab5ebb2384a250e5ae9d1dc42ad6ba5bcdd020b4595b2ab97fca7efcb435be1bde188db3530c557ee02aaac27dade3045a30c64834f4c1ce9f5a5a4864c43e547bec804bc6e0186f430a6af60fc7648d08bfd39ce750c7c7cc64be05a5ea9d4c5f0d20c737fa5796a9aca1ca85e1a143b67c08994a460dfc2d30d4b9429eed3dda6b875f4dd8464505c2e86cd543164f6cef8e0875da501b15eb66b2153f5b21d5463619ec5988e4590307c7c98f749a714e61eef72dd73a130ead5a3631acbf72af427af778a080acb403867c7456e434728993aceeb6048858bd09965d0fb80aa5a17e3e3e6fbdeb848ad8c81e2ca099080424895fd32f2198803148ae9527057478b6ecfeb7e5c60e886d3da5cfac25167e8649845c43e462bd7a8b8eb33b6cc351be12607302b590362ddd12131a4a472db74c9f5753c54b6122993d69d19f8497e59bdb616a27a2b9d45c2fe764cc84e60270794178535d8cdc165150a4abb551d4a2494abbcf71a003f5d5656f9d9350a56df4237dcf33735d2e67b42034c31a33cc21d278f36c49fd25530eb0e046a764630ae7d89c679ae9e75e9c79032c3d15d21aac3cf6service@@rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootsaptune-3.1.3-150400.15.9.1.src.rpmconfig(saptune)saptunesaptune(ppc-64) @ @     /bin/bash/bin/bash/bin/sh/bin/sh/bin/sh/bin/sh/usr/bin/cpupower/usr/bin/env/usr/bin/md5sumconfig(saptune)logrotaterpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)sysctl-loggersysstatsystemdsystemdsystemdsystemdsystemduuiddvim3.1.3-150400.15.9.13.0.4-14.6.0-14.0-15.2-1234-24.424.14.3f~f-e̫@eB=d/@aaba?=@^U @^@^ @]N@]X]@]@]4@]1]\-@[Ѱ@Z@Z|;Z3@Z1@Z.s@ZY|Y@YRHYY@X @X)@X @W@WWzOWQq@W!@abriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comgboiko@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comhguo@suse.comabriel@suse.comabriel@suse.comabriel@suse.comabriel@suse.comhguo@suse.comhguo@suse.comhguo@suse.comhguo@suse.comhguo@suse.comhguo@suse.comhguo@suse.com- update package version of saptune to 3.1.3 * remove note 1868829 from solution S4HANA-APPSERVER as it is a HANA DB note and was added by accident (bsc#1226093) * for verify and simulate output table - wrap content of the columns 'actual', 'expected' and 'override', if they exceed a width of 30 characters (e.g. net.ipv4.ip_local_reserved_ports) * support inline comments in /etc/sysconfig/saptune * change handling of the performance options. Check, if the settings are supported in the get-Functions too. This should fix the problem with some special Azure VMs (E20d_v5) on newer SLES SPs (jsc#SAPSOL-110) * SAP Note 2578899 updated to Version 48 setting kernel.pid_max to 4194304 and start sysctl-logger service- add require of package sysctl-logger for 15SP4 and 15SP5 too (jsc#PED-6220)- update package version of saptune to 3.1.2 * to support setups with saptune monitoring and heavy automation we limited the setting of our saptune lock to commands having the potential to change anything in the system. (bsc#1219500) * fix timestamp in log messages of saptune * remove redundant version information in header comment of note definition files * SAP Note 1656250 updated to Version 63 SAP Note 1771258 updated to Version 8 SAP Note 2382421 updated to Version 45 SAP Note 3024346 updated to Version 10 but without parameter value changes, only house keeping of the version section and comment updates * SAP Note 1984787 updated to Version 42 SAP Note 2578899 updated to Version 47 - add require of package sysctl-logger for 15SP6 (jsc#PED-5025)- update package version of saptune to 3.1.1 * typo in logfile directory name creates /varlog/saptune instead of /var/log/saptune (bsc#1215969) * SAP Note 2382421 fix missing handling for Azure systems regarding parameter 'net.ipv4.tcp_timestamps'. This exclude setting was left out during the last SAP Note update by mistake. * add parameter IGNORE_RELOAD to /etc/sysconfig/saptune to prevent saptune from stopping and starting the system tuning during package update Related to sapconf bug bsc#1209408. - create a flag file in preinstall and remove it in posttrans of the package installation to inform saptune that currently a package installation/update takes place so that some special situations can be handled as expected.- update package version of saptune to 3.1.0 * machine readable interfaces for saptune add json output support related json v1 schemas can be found after installation on the system at /usr/share/saptune/schemas/1.0/ (jsc#PED-2194, jsc#PED-2195, jsc#SLE-23696) * enhance the identification of the cloud service provider (jsc#SLE-23779) * add a command line syntax check * colorized and filtered output for 'saptune note verify' It is now possible to uses a 'color scheme' for the output to highlight the non-compliant parameter or to limit the verify output to show only non-compliant parameter. (jsc#SLE-23727) * add action 'saptune solution change' to switch to a new solution even that another solution was already applied. It's basically a 'revert OLDSOLUTION' && 'apply NEWSOLUTION'. This will change the Note order in case of additional applied Notes, but this is intended. The confirmation for the revert of the old solution can be suppressed by '--force' (jsc#PED-2196) * introduce a Trento naming convention for custom solutions in the saptune man page to support trento checks. (jsc#PED-4118) * deprecate action 'saptune note|solution simulate'. The action might get removed in a future saptune version (jsc#PED-2199) * deprecate support for the v1 vendor or custom specific Note definition file format (jsc#SLE-23725) * detect virtualization environment by 'systemd-detect-virt' and add the information to 'saptune status'. (jsc#SLE-23885) * enhance saptune with the new action 'check' to directly call the external check script '/usr/sbin/saptune_check'. (jsc#SLE-23726) * de-deprecate the MAXDB solution definition. It is still active supported by SAP. And add solution NETWEAVER+MAXDB (jsc#SLE-23724) * support inline comments in the Note definition files (jsc#SLE-23729) * rework Note representation in 'saptune status' output (jsc#SLE-24530) * fix problem with 'verify' output, if a sysctl parameter is empty on the system (bsc#1199527) * add hint to the manual page of saptune(8) regarding 'missing' line feed for 'saptune note applied' and 'saptune note enabled' It's intended. (bsc#1193714) * rework the version section to make it clear, which information needs to be provided (jsc#SLE-23722) * add more information to 'saptune status': differ between 'enabled' and 'applied' Solutions and add the related Notes. differ between Notes and Solutions in the staging area. rename 'system state' line to 'systemd system state' to prevent misunderstandings. add virtualisation information. * add tuning state to 'saptune status' output. The check of the tuning state (an internal 'verify' operation) can be skipped by using the flag '--non-compliance-check'. In this case the tuning state will be reported as unknown (checking disabled) 'saptune status' will exit with a return code of '4', if the saptune service is enabled, the system is tuned, but the tuning state is 'not compliant'. (jsc#SLE-24928) * add support for the IBM Power architecture to the vendor and model section tagging (jsc#SLE-23824) * add new SAP Note 1868829 to set fs.aio-max-nr and add it to the HANADB related solutions for SLE12 and SLE15. * SAP Note 3024346 updated to Version 6 SAP Note 1557506 updated to Version 16 SAP Note 1656250 updated to Version 46 SAP Note 1805750 updated to Version 9 SAP Note 2161991 updated to Version 28 SAP Note 2205917 updated to Version 63 SAP Note 2382421 updated to Version 45 SAP Note 2534844 updated to Version 15 SAP Note BOBJ updated to Version 1 but without parameter value changes, only house keeping of the version section and comment updates * SAP Note 1984787 updated to Version 40 SAP Note 2578899 updated to Version 46 SAP Note 2684254 updated to Version 23 SAP Note 1680803 updated to Version 27 includes version 3.1 of 'SAP Applications on SAP Adaptive Server Enterprise - Best Practices for Migration and Runtime' * Solution 'SAP-ASE' changed - remove SAP Note 1410736. The best practice document (version 3.1) for ASE was changed and the SAP Note 1410736 is no longer referenced. Instead the parameter 'net.ipv4.tcp_keepalive_time' is set in SAP Note 1680803 (the ASE SAP Note) directly. * introduce an additional parameter 'SKIP_SYSCTL_FILES' in the /etc/sysconfig/saptune configuration file, which contains a comma separated list of sysctl.conf files or directories containing sysctl.conf files, which should be excluded from the 'additional defined' WARNING messages. Default is SKIP_SYSCTL_FILES="/boot" to skip the WARNINGS for '/boot/sysctl.conf-' - check in preinstall and posttrans of the package installation, if the active tuned profile is still 'saptune', even that this profile no longer exists. If yes, try to remove it. (bsc#1194688)- update package version of saptune to 3.0.2 - avoid excluding LVM slaves when getting valid block devices (bsc#1194299) - fix 'not compliant' state for energy_perf_bias on Power systems and suppress misleading error message regarding missing 'mokutil' (bsc#1193435) - fix wrong behaviour of 'saptune revert all', if the saptune service was stopped between the two commands 'apply' and 'revert all' - 'saptune service enablestart|disablestop' now always perform both actions and does no longer stop working, if the service is already started|stopped. (bsc#1193241) - restrict the sys section of the AWS note 1656250 to the availability of a nvme block device to support AWS x1e instances too. sys section definition of Note 1656250 changed. (bsc#1192029) - abandon the dependency to 'mokutil' by relying on sysfs to detect a secure boot environment. Related to bsc#1193435 - support /etc/fstab entries with 4 instead of 6 fields as these are valid entries. Change error handling from 'panic' to error log messages. (bsc#1193580) - enhance man page 'saptune.8'. Add entry 'configured Note' and some more descriptions of the entries from 'saptune service status' (bsc#1192697) - as the Power systems (hardware architecture 'ppc64le') does not support files in '/sys/class/dmi' (this directory is not available on the 'ppc64le' hardware architecture) some of our section 'tags' will not work. Add some additional log messages to identify the cause and add a hint to the man page. - fix block device settings (e.g. NRREQ) for multipath devices (bsc#1193576) - 'saptune verify' will now report a non existing sysctl or sys parameter as 'not available on the system' (footnote) and this parameter will not affect the compliance state. But a warning is displayed to raise attention to may be typos in the parameter name. - 'saptune status' now reports the 'real' unit state, no mapping of not running (inactive) service to simply 'stopped' any more. (bsc#1194334)- update package version of saptune to 3.0.1 - fix the scheduler settings for multi path devices and suppress missleading warning messages regarding vendor and model information during block device detection (bsc#1192460) - fix override of custom solutions (bsc#1192062) - add missing update function for enabled solutions and add a special fix to correct the 3.0.0 behavior (bsc#1192053) - saptune_check - degraded system is no longer considered an error (bsc#1192272) - log missing model and vendor information to the saptune log file (bsc#1190509)- update package version of saptune to 3.0.0 This will be additional reflected in the saptune version found in /etc/sysconfig/saptune (SAPTUNE_VERSION) So now we will have saptune version 3 - saptune version 3 Strengthen configuration process with staging, checks of external changes and expansion of automation to new platforms (Azure, AWS) and hardware specifics (jsc#SLE-21029 and jsc#SLE-20985) - remove saptune version 1 (jsc#SLE-10823 and jsc#SLE-10842) - remove usage of tuned from saptune Add an own systemd service file for saptune to start/stop tuning of parameter values during a reboot of the system. Add a new saptune action 'service' to handle the saptune.service supporting start/stop/enable/disable/status a.s.m. The saptune action 'daemon', which handled tuned.service in the past, is now flagged as 'deprecated' and internally linked to the new action 'service' (jsc#SLE-5589, jsc#SLE-5588, jsc#SLE-6457) - add a sanity check to detect Note definition files which do not exist anymore, because they were renamed or deleted, but without reverting them before. saptune will now print an error message, remove the Note from the tracking variables in /etc/sysconfig/saptune and try to revert the related parameter settings. (bsc#1149205) - check, if json input file is empty and handle some left-over files from the migration from saptune v1 to saptune v2 (bsc#1167618) - To support system parameters only relevant for specific SLES releases, service packs and/or hardware architectures saptune now supports 'tagged' sections inside the Note definition files. (jsc#SLE-13246, jsc#SLE-13245) - new kernel requirement for Power added to SAP-Note 2205917 and 2684254 SAP Note 2205917 updated to Version 61 SAP Note 2684254 updated to Version 15 (bsc#1167416) - SAP Note 2382421 updated to Version 37 and move all 'not-well-defined' parameters from the 'reminder' section into the 'sysctl' section, but with 'empty' values. Use an override file to define the values fitting your system requirements (bsc#1170672) - support empty parameter values in the Note definition files and not only in the override file. This is needed for the support of SAP Notes like 2382421, so that the customer is able to simply use an override file to define some special parameters instead of using a customer specific Note definition file. needed for bsc#1170672 (jsc#TEAM-1702) - report an 'error' instead of 'info' and set the exit code to '1', if we reject the apply of a solution (bsc#1167213) - Skip perf bias change if secure boot is enabled When a system is in lockdown mode, i.e., Secure Boot is enabled, MSR cannot be altered in user-space. So check, if Secure Boot is enabled using the mokutil utility and skip setting the perf bias in case it is. (bsc#1176243) - rework the internal block device handling to speed up the apply of block device related tunings on systems with a high number of block devices. (bsc#1178207) - change block device handling to handle multipath devices correctly. Only the DM multipath devices will be used for the settings, but not its paths. (bsc#1179275) - fixed wrong comparison used for setting FORCE_LATENCY (bsc#1185702) - add keyword 'all' to the 'rpm' section description in the man page saptune-note(5) (bsc#1182287) - support note definition versions containing digits, upper-case and lower-case letters, dots, underscores, minus and plus signs. (bsc#1182289) - fixed issue with 'verify' operation and parameter 'VSZ_TMPFS_PERCENT'. As this parameter is only used to calculate the value of 'ShmFileSystemSizeMB' (if it is not set to a value >0 in the Note definition file) it will not be checked and compared during the saptune operation 'verify'. A footnote is pointing this out. (bsc#1182009) - SAP Note 1771258 update nofile values (bsc#1164720) - SAP Note 2684254 updated to Version 20 SAP Note 2578899 updated to Version 39 SAP Note 1680803 updated to Version 26 - enhancements for saptune version 3 All jsc#TEAM-* entries mentioned below are related to this rework (jsc#SLE-16972) - Implement a lock to avoid multiple instances of saptune running in parallel. (jsc#TEAM-1700) - Support for non-colorized output If redirecting the output from saptune to a pipe, you no longer need to deal with the 'ugly' control sequences for the colorized output. (jsc#TEAM-1679) - Add enable/disable for systemd units and support all systemd unit types in section [service] (jsc#TEAM-1701) - remove script /usr/share/doc/packages/saptune/sapconf2saptune and the associated man page (jsc#TEAM-1707) - implement staging of Note definition file and solution definitions. The idea is to freeze the saptune configuration to avoid config changes on package update when adding/removing/changing notes or solutions within the package (jsc#TEAM-1844) - support custom solutions and override files for solutions. Partners and customers will now be able to define their own solution definitions by using files in /etc/saptune/extra or to override the shipped solution definitions by using override files in /etc/saptune/override (jsc#TEAM-1706) - support for device specific configurations only supported for the [block] section, tags are 'vendor' and 'model' to support special block devices of a dedicated hardware vendor or a dedicated hardware model (jsc#TEAM-1728) - add support for AZURE cloud (SAP Note 2993054) (jsc#TEAM-2676) - add support for AWS cloud (SAP Note 1656250) (jsc#TEAM-1754 and jsc#TEAM-1755) - add NVMe support to the block device handling to support AWS (jsc#TEAM-2675) - add SAP Note 3024346 (a NetApp note) (jsc#TEAM-3454) - rework daemon and service actions (jsc#TEAM-3154) - add support for 'read_ahead_kb' and 'max_sectors_kb' to the [block] section (jsc#TEAM-1699) - add a warning to the reminder section of SAP Note 2382421 regarding iSCSI devices and setting of 'net.ipv4.tcp_syn_retries' (jsc#TEAM-1705) - for the actions 'note customise' and 'note create' check, if the customer has changed something during the editor session. If not, remove the temporary created note definition file. (jsc#TEAM-825) - add support for [sys] section and handle double configurations for parameters defined in the [sys] section (jsc#TEAM-3342) - check system sysctl config files as mentioned in the comments of /etc/sysctl.conf and in man page sysctl.conf(5) for sysctl parameters currently set by saptune notes. Print a warning and a footnote for 'verify' and 'customize'. (jsc#TEAM-1696) - add support for [filesystem] section only check filesystem mount options, not modify. Starting with filesystem type 'xfs' (jsc#TEAM-4093) - add SAP Note 900929 for SAP Netweaver workloads. It's the equivalent to the HANA Note 1980196. (jsc#TEAM-4386) - mv state files from /var/lib/saptune to /run/saptune to solve the problem of state files surviving a reboot. - add /sbin/saptune_check - add the description of the solution definitions shipped with saptune to the man page saptune(8) (jsc#TEAM-4260)- update version of saptune v2 to 2.0.3 - changes to the UserTasksMax handling in saptune In SLE15 the limit is removed from the systemd login manager and therefore the setting is no longer supported in SLE15 by saptune. On a system running SLE12 we do not restart the logind service, but try to reload the new configuration after creating or removing the drop-in file for UserTasksMax by using 'systemctl reload-or-try-restart systemd-logind' as display managers do not like a restart of the logind service. (bsc#1161791) - add commands for listing enabled Notes/Solutions to saptune (bsc#1160564) - correct typo in the year in the man page headline of man page saptune-note(5) - SAP Note 1410736 updated to Version 6 correct typo net.ipv4.tcp_probes to net.ipv4.tcp_keepalive_probes- if a parameter is not supported by the system, the note action 'verify' will no longer report this as an error even if the value is not compliant. Additionally if there is a non compliant 'grub' parameter, which has a compliant 'alternative' setting availabel (see man page saptune-note(5) for details), the note action 'verify' will no longer report this as an error (bsc#1159671)- remove no longer needed and now misleading message at the end of note action 'revert'. - check, if sapconf service is available before disabling this service during 'saptune daemon start' (bsc#1156049)- add action 'delete' to the 'note' operation to delete a customer or vendor specific Note definition file including the corresponding override file if available. A confirmation is needed to finish the action. add action 'rename' to the 'note' operation to rename a customer or vendor specific Note definition file to a new name. If a corresponding override file is available, this file will be renamed too. A confirmation is needed to finish the action. If the Note is already applied, the action will be terminated with the information, that the Note first needs to be reverted before it can be deleted or renamed. (jsc#SLE-9283)- Inform the customer that - by intention - the command 'saptune note customise ' does not apply changes immediately. It just changes the configuration in the 'override' file. These changes have to be applied in a second step. This is explained in the man page saptune_v2(8) and a message is printed in the logs and on the screen to inform the customer. (bsc#1142467)- Add warning to man page, not to rename/remove/modify active configurations (bsc#1149002)- update version of saptune v2 to 2.0.2 - support multi-queue I/O scheduler for block devices (bsc#1152598)- check, if the directory /etc/security/limits.d exists before writing the limits drop-in file. If not, create it. - add the '--no-pager' option to 'systemctl --list-unit-files' to get all services at once. - add missing search pattern to the update helper script to find all old and superfluous notes during upgrade from SLE12 to SLE15 For the daemon operations do not exit with an error, if a note definition file does not exist. Instead only log and print an error message, but continue with applying the other notes (bsc#1142526)- on 12SP1 and 12SP2 the directory /etc/security/limits.d may not exist. So create the missing directory during postinstall of the package.- update version of saptune v2 to 2.0.1 - update version of saptune v1 to 1.1.9 for migration purposes - resetting all values to clean the system during package removal - bugfixing saptune version 1: fix saptune issues with /etc/security/limits.conf (bsc#1124485) add deprecated message to the description of some notes set scheduler for note SUSE-GUIDE-01 correctly (bsc#1123808) No additional improvements or upgrades planned for saptune v1 For new features or current SAP Note settings please migrate to saptune v2. - support migration from saptune v1 to saptune v2 ship both versions of saptune in one package to support a smooth migration controlled by the customer. see man saptune-migrate(5) for more information - support note name changes and note deletion during update of saptune v2 from SLE12 to SLE15 - support different SAP Note definitions and solution definitions related to the used operation system version (distinguish between SLE12 and SLE15 at the moment) - Remove calculation of optimized values, only set the values from the configuration file irrespective of the current system value. Current system value can be increase or decrease. ATTENTION: saptune no longer respects higher system values. Use the override option to change the values of the Note definition files, if needed (bsc#1124488) - mark the Notes SUSE-GUIDE-01 and SUSE-GUIDE-02 as deprecated in saptune v1 and remove these Note definitions from saptune v2 (bsc#1116799) - add support helper script sapconf2saptune and the man page - add new man pages saptune_v1.8, saptune_v2.8, saptune-note.5 and saptune-migrate.7 rewrite man page saptune.8 - add bash-completion for saptune - add action 'show' to the 'note' operation to print content of the note definition file to stdout - add new action 'create' to support the customer/vendor while creating a vendor or customer specific file in /etc/saptune/extra using the template file /usr/share/saptune/NoteTemplate.conf - simplify file name syntax for the vendor files available in /etc/saptune/extra. Old file names still valid and supported. Add header support (version, date, description) for the vendor files available in /etc/saptune/extra as already available for the note definition files in /usr/share/saptune/notes - no longer write or remove entries from /etc/security/limits.conf. Instead add or remove drop-in files in /etc/security/limits.d The filename syntax for the drop-in files /etc/security/limits.d is saptune---.conf The limits entry syntax inside the Note definition files changed to support more than one limits settings in the definition file (bsc#1128322) - preserve comment sections of the security limits file /etc/security/limits.conf. Especially, if this is the only content of the file. (bsc#1124485) - work with the current Note definition file to define the pagecache settings and not with the default file rename PAGECACHE_LIMIT_IGNORE_DIRTY to the correct sysctl name vm.pagecache_limit_ignore_dirty (bsc#1126220) - setting of UserTaskMax is not done in the postinstall of the package. It's now done by applying the related SAP Notes. (bsc#1124489) - starting to support severities INFO, WARNING, ERROR and DEBUG for the logging and add a defined format for the log messages - remove saptune as active tuned profile during action 'saptune daemon stop' - start/stop services, if requested by SAP Notes, but do not enable/disable these services (bsc#1128325) - adapt the parameter oriented save state file handling (store and revert) to the special needs of the security limits parameter (bsc#1124485) - disable parameter settings using an override file (bsc#1124486) - store the order of the note as they are applied to get the same system tuning result after a system reboot as before - correct the revert of the vm.dirty parameters by handling their counterpart parameters in addition. (bsc#1124487) - adjust operation customize to the new configuration files and override location and enable customize option for vendor and customer specific files in /etc/saptune/extra (bsc#1124487) - Change output format of the operations list, verify and simulate (bsc#1124487) - Display footnotes during 'verify' and 'simulate' (bsc#1124487) - print current applied note order at the end of 'saptune note list' and 'saptune note verify' - remove Netweaver formula for page cache calculation. Use the HANA approach '2% system memory' for both - display a warning message, if a [block] section is found in the Note definition file because on systems with a huge number of block devices this operation may take some time - Add force_latency handling to 'cpu' section. Use the files in /sys/devices/system/cpu/cpu* instead of /dev/cpu_dma_latency. Remove the parameter from the tuned.conf file and add it to the SAP note files '1984787' and '2205917' - Add action 'saptune revert all' and add parameter based saved state files to support proper revert functionality (bsc#1124487) - Add override file handling for the solution definition using /etc/saptune/override/solution (bsc#1124486) - Read solution definition from file /usr/share/saptune/solution instead of static coding inside of saptune. (bsc#1124486) - tag deprecated solutions during list operation - allow only ONE solution to be applied - new solution definitions as discussed with SAP and Alliance team - support solution names with '+' - make sure a note, which is part of an applied solution definition, but was reverted manually later, will NOT applied again after a system reboot. - One configuration file per SAP Note (bsc#1124486) - add new SAP Notes and adapt content of SAP Notes - Handle different locations of the new configuration files (/usr/share/saptune/note, /etc/saptune/extra) (bsc#1124486) - Allow parameter override by the customer (bsc#1124486) - Expand section handling of the 'ini file' handler to handle the new configuration file entries. Supported sections: version, reminder, login, mem, vm, block, limits, sysctl, pagecache, cpu, service, rpm, grub (bsc#1124486)- remove new line from println arg list of main.go to support newer go versions. (bsc#1120741) - update version to 1.1.8- never ever stop or disable uuidd.socket in saptune (bsc#1100107) - update version to 1.1.7- correct content of /etc/systemd/logind.conf.d/sap.conf. (bsc#1089864) - improve error messages and exclude special block devices from 'number of request' settings. Improve the verify option for the block devices. (bsc#1079599)- Fix a typo in package description. (bsc#1053374) - Update from version 1.1.3 to 1.1.4- Start to support multiqueue schedulers. Writing a message to the log file, if a block device does not support the choosen scheduler. (bsc#1072562)- Check, if pagecache limit is available at the system. If yes, add SAP note 1557506 to the note list and the solution definition of saptune. If not, skip SAP note 1557506 silently (bsc#1071539, fate#323778)- Skip using tuned-adm command inside of saptune. Instead write 'saptune' profile directly to /etc/tuned/active_profile and enable and start the tuned service Remove the workaround for the tuned problem with section [cpu] (bsc#1060514)- workaround for a tuned problem with section [cpu] (bsc#1060514)- support customer entries in /etc/security/limits.conf containing values like 'unlimited' instead of an integer value. (bsc#1060469) - change error handling and redirect error messages to stderr instead of stdout. (bsc#1050521)- Fix a typo in package description. (bsc#1053374)- Amend logind's behaviour (bsc#1031355, bsc#1039309, bsc#1043844)- update man page to reflect the changes for bsc#1026172- add solution SAP ASE (Sybase) and SAP Business OBJects (BOBJ) according to fate#320359.- Support of vendor specific tune files located in /etc/saptune/extra (bsc#1026172).- Tune a PowerPC little endian system in a way similar to x86 system. Bump version to 1.0.5 to fix (bsc#1009529).- Fix processing of CLI parameter "--help" (bsc#1006114). - Fix startup failure caused by absence of sapconf package (bsc#1006187).- Avoid conflicting with sysconfig path of sapconf. (bsc#988186) Bump versin to 1.0.3.- Remove conflict against sapconf to resolve bsc#988186. Bump version to 1.0.2.- Exclusively build on X86_64 and PPC64le. Continue with fate#320360, fate#320361, fate#320362, fate#320633.- Remove ExclusiveArch. - Control uuidd as part of the tuning process. - Minor changes in the wording of CLI program output. - saptune conflicts with sapconf. - Bump version to 1.0.1. - fate#320360, fate#320361, fate#320362, fate#320633.- First revision. Implement fate#320360, fate#320361, fate#320362, fate#320633./bin/sh/bin/sh/bin/sh/bin/shmourvedre 1722223560  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz3.1.3-150400.15.9.13.1.3-150400.15.9.13.1.3-150400.15.9.1 saptunesaptuneextraoverridesupportconfigpluginssaptunesaptune.servicercsaptunesaptunesaptune_checksaptunesysconfig.saptunesaptune-note.5.gzsaptune-migrate.7.gzsaptune.8.gzsaptuneNoteTemplate.confSolutionTemplate.confdeprecatednotes14107361656250168080317712581805750186882919801962161991238242125348442578899268425429930543024346900929941735SAP_BOBJschemas1.0saptune_check.schema.jsonsaptune_daemon_start.schema.jsonsaptune_daemon_status.schema.jsonsaptune_daemon_stop.schema.jsonsaptune_help.schema.jsonsaptune_invalid.schema.jsonsaptune_lock_remove.schema.jsonsaptune_log_set.schema.jsonsaptune_log_status.schema.jsonsaptune_note_applied.schema.jsonsaptune_note_apply.schema.jsonsaptune_note_create.schema.jsonsaptune_note_customise.schema.jsonsaptune_note_customize.schema.jsonsaptune_note_delete.schema.jsonsaptune_note_edit.schema.jsonsaptune_note_enabled.schema.jsonsaptune_note_list.schema.jsonsaptune_note_rename.schema.jsonsaptune_note_revert.schema.jsonsaptune_note_revert_all.schema.jsonsaptune_note_revertall.schema.jsonsaptune_note_show.schema.jsonsaptune_note_simulate.schema.jsonsaptune_note_verify.schema.jsonsaptune_revert_all.schema.jsonsaptune_service_apply.schema.jsonsaptune_service_disable.schema.jsonsaptune_service_disablestop.schema.jsonsaptune_service_enable.schema.jsonsaptune_service_enablestart.schema.jsonsaptune_service_reload.schema.jsonsaptune_service_restart.schema.jsonsaptune_service_revert.schema.jsonsaptune_service_start.schema.jsonsaptune_service_status.schema.jsonsaptune_service_stop.schema.jsonsaptune_service_takeover.schema.jsonsaptune_solution_applied.schema.jsonsaptune_solution_apply.schema.jsonsaptune_solution_change.schema.jsonsaptune_solution_create.schema.jsonsaptune_solution_delete.schema.jsonsaptune_solution_edit.schema.jsonsaptune_solution_enabled.schema.jsonsaptune_solution_list.schema.jsonsaptune_solution_rename.schema.jsonsaptune_solution_revert.schema.jsonsaptune_solution_show.schema.jsonsaptune_solution_simulate.schema.jsonsaptune_solution_verify.schema.jsonsaptune_staging_analysis.schema.jsonsaptune_staging_diff.schema.jsonsaptune_staging_disable.schema.jsonsaptune_staging_enable.schema.jsonsaptune_staging_is-enabled.schema.jsonsaptune_staging_list.schema.jsonsaptune_staging_release.schema.jsonsaptune_staging_status.schema.jsonsaptune_status.schema.jsonsaptune_version.schema.jsonscripts.updhelpupd_helpersolsBOBJ.solHANA.solMAXDB.solNETWEAVER+HANA.solNETWEAVER+MAXDB.solNETWEAVER.solS4HANA-APP+DB.solS4HANA-APPSERVER.solS4HANA-DBSERVER.solSAP-ASE.solsaptunestaginglatestworkingnotessolssaptune/etc/logrotate.d//etc//etc/saptune//usr/lib//usr/lib/supportconfig//usr/lib/supportconfig/plugins//usr/lib/systemd/system//usr/sbin//usr/share/bash-completion/completions//usr/share/fillup-templates//usr/share/man/man5//usr/share/man/man7//usr/share/man/man8//usr/share//usr/share/saptune//usr/share/saptune/notes//usr/share/saptune/schemas//usr/share/saptune/schemas/1.0//usr/share/saptune/scripts//usr/share/saptune/sols//var/lib//var/lib/saptune//var/lib/saptune/staging//var/lib/saptune/working//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:34745/SUSE_SLE-15-SP4_Update/66808ab9302d2957d845d9fce2515396-saptune.SUSE_SLE-15-SP4_Updatedrpmxz5ppc64le-suse-linux ASCII textdirectoryBourne-Again shell script, ASCII text executableELF 64-bit LSB executable, 64-bit PowerPC or cisco 7500, version 1 (SYSV), statically linked, strippedBourne-Again shell script, UTF-8 Unicode text executable, with very long linestroff or preprocessor input, ASCII text, with very long lines (gzip compressed data, max compression, from Unix)troff or preprocessor input, UTF-8 Unicode text (gzip compressed data, max compression, from Unix)UTF-8 Unicode textWindows setup INFormation, ASCII textRRR&m3SLan(# Use a real bash script with an explicit "exit 0" at the end to be by default fail safe # an explicit "exit 1" must be use to enforce package install/upgrade/erase failure where needed # Begin refresh systemd units and clean up possibly obsolete systemd units # The following is a generic way how to refresh and/or clean up systemd units. # A systemd unit may need a refresh after updating a package when the new package # had installed a changed systemd unit file for an enabled systemd unit. # A systemd unit may become obsolete by updating a package (see bnc#904215). # A systemd unit is considered to have become obsolete when the systemd # symlink /etc/systemd/system/.../unit_name -> /path/to/unit_file is broken. # When during package update the new package does no longer provide a unit file # then the systemd symlink becomes broken after the files of the old package # had been actually removed by RPM. # According to /usr/share/doc/packages/rpm/manual/triggers and according # to https://en.opensuse.org/openSUSE:Packaging_scriptlet_snippets#Scriptlet_Ordering # and http://fedoraproject.org/wiki/Packaging:ScriptletSnippets#Scriptlet_Ordering # from the new package only "posttrans of new package" is run after "removal of old package" # so that the new package must do the clean up as RPM posttrans scriptlet. if systemctl --quiet is-enabled saptune.service 2>/dev/null; then # Refresh still valid enabled systemd units and clean up possibly obsoleted systemd units: # Enforce systemd to use the current unit file which is usually the unit file of the new package # but also in case of custom units (that use other unit files) a "reenable" won't hurt because # "reenable" does not implicitly stop a running service which is "the right thing" because # a RPM package installation must not automatically disrupt (restart) a running service. # Using "--force reenable" is essential to clean up possibly conflicting/broken symlinks. # (without "|| :" build fails with "Failed to get D-Bus connection: No connection to service manager. posttrans script ... failed"): systemctl --quiet --force reenable saptune.service 2>/dev/null || : else # Refresh still valid disabled systemd units and clean up possibly obsoleted systemd units: # First using "--force reenable" is essential to clean up possibly conflicting/broken symlinks # because there is no "--force disable" that would clean up possibly conflicting/broken symlinks # see https://bugzilla.opensuse.org/show_bug.cgi?id=904215#c34 # so that first the unit has a clean state and then it is set back to disabled (as it was before). # If a disabled systemd unit has become obsoleted, "systemctl --force reenable" will clean it up # which means the unit gets removed and the subsequent "systemctl disable" will do nothing. # (without "|| :" build fails with "Failed to get D-Bus connection: No connection to service manager. posttrans script ... failed"): systemctl --quiet --force reenable saptune.service 2>/dev/null || : systemctl --quiet disable saptune.service 2>/dev/null || : fi rm -f /run/saptune_during_pkg_inst if [ -f /tmp/update_v1tov3_saptune_inst ]; then rm -f /tmp/update_v1tov3_saptune_inst || : # get back custom note definition files for BOBJ and/or ASE # needed for migration, if customer had applied these notes /usr/share/saptune/scripts/upd_helper v1tov2pt || : else # cleanup of old saptune v1 sysconfig files # leftover from customer migration for file in saptune-note-SUSE-GUIDE-01 saptune-note-1275776 saptune-note-SUSE-GUIDE-02 saptune-note-1557506; do if [ -f /etc/sysconfig/${file} ]; then rm -f /etc/sysconfig/${file} fi done fi if [ -f /tmp/update_sle12tosel15_saptune_inst ]; then rm -f /tmp/update_sle12tosel15_saptune_inst || : # check for SAP Note name changes between SLE12 and SLE15 /usr/share/saptune/scripts/upd_helper sle12to15pt || : fi if [ -f /tmp/update_saptune_staging_area ]; then rm -f /tmp/update_saptune_staging_area || : # handle staging area and DON'T touch the working area, needs to run # after 'upd_helper sle12to15pt' /usr/share/saptune/scripts/upd_helper staging || : fi if [ -f /run/saptune_is_active_in_tuned ]; then # cleanup 'saptune with tuned is active' indicator rm -f /run/saptune_is_active_in_tuned || : # if saptune with tuned support was used/active (in v2 mode) # stop and disable tuned service # enable and start saptune service # (jsc#SLE-10987 decision) (systemctl stop tuned.service; systemctl disable tuned.service; systemctl enable saptune.service; systemctl start saptune.service) || : fi # bsc#1194688 - sometimes the tuned active profile is still 'saptune' even that # the profile no longer exists. Try to clear. [[ $(cat /etc/tuned/active_profile 2>/dev/null) == saptune ]] && (> /etc/tuned/active_profile) || : exit 0/bin/bashsystemd-sysvcompatutf-8ee95e1d6eb626119c29fd7ed2189553beb529e62ce26f01baf098a7c44deaa17?P7zXZ !t/]"k%{dC3 #D>S (/@9V,c_bN1';2[ʺMtX%_L.^7e8))#YK=4{,U^'BizzL@F-+#YJMK'j6<0Vr@-C^9J<kԡ%ׁRnsGo.\'~ ̷Aڤ0E6ТE;eՠ`s~Z *n@ "6%ql'X`bve]Ce ޜydM$۷E] ;K?:!W dB;Kjp)KA4HpM ȱ ~n$~-.ZbGW#C SQ!2=@?>luk=׿lsh>ք @so~%Y_PS/X>3~\y׏Z:m˜ qtg~o.қ1/: w=@G(f=|s.nk CN:9d?ar aI=@7b=:pLWm]ψQ{$z-e$撼, fc~ozc2Gz[sE@MG/D-dT:ck 6vKߦjLKn krHdd⣲h]pxZlSo >{7ߔ:k4oD,1+fR @a^뱸`oە* FtlC$OCVc7߸3G8'?hs ;oR,Rpn9Ү?+b Rʧ%CBr=qqnh彴Wf.zSC__y@za"}#`ѡd̳bi?`S*p gU.ڜܸ/f}axgD?gI`g4XSl|;>:-$dh(FO2ecTt;l.EWc 1\}w< gpFg5cOp5 [ $)@e4RPB&އ M{ه6!X=X\`ӼJQż+:OKbȎWŽޮ6]bDכ$7IS!LoW,|-[F3"*.BrP z<0$0µ'%ߛ2n/H@Պc)z\#Ecrzez3]3:X9 q?v| HNi'Y]9@SܕЅ.?5T:^Pn@r(4#'XT B.SIw6-#9]MU)3k6Hڀ0ZoabIPR광C´*ɬD&*RU),"JWV <7NN_ >n,XR'=6{%ީCduWDW8U8`#>7H-T{'z 2d^XT(i1dfIDMR{ 8.Rz1.rk0_v>>rv ^h1idަ:(wrIv;?UiGY9l5atgS;'Df,8reGp3C O?XSWN nz)SV@Ӑ];l7(L"h/yV;8 F m-涢1"Z7U^!Bigmzl886شP5E?.v)k(ɫM{Hʣ2L<2 _r VR^.#1>Op^*XP1E?EOtX^O훕EjSm(50Tο-D+w.6Mx> 7J8.4vHxs{uȼReGn:f'#La)btIbX8;<#2P%Oގ^T@5i噣ļ<kofۼw.pg])>E O uNFp#1I!]TзW6]ݡa1@,¬7.@f y^sZwg^AU$#ψԧd~ކc:e;4:g,RHG$u/@W'Ԓw⃏\nćW&fiPk兔(gAm@#9QH#ƶkL]hO̭H7.(^S{:{?uMDvͻBn,D ٌ=<|oɈ:,C8 xI Yͣڃ-!0 V(9M-Kը N>76 KJC[|GH7︼tԔ].xTGV2"8'H0= t!b>u!^Gbuf`-<ap/A&"W(A\cygxs xXpS5JR}7#PRPL=bAđiLس@X'xJdMhGOOu;Н&z>29S GP_V9c_|yA{f3PG{#4+6+(JeR~3tx۽\švsl*zVH04aE7qgoqkx6q9OHWS],eCvϓT_StN (((W⼻"VB0%s[ӭš۝zc^>; 6GSs&&P`eh'R)sXif@}Ip}w{L)<^~+%HF&} w{JH򨫞dLU2>AJh ZEZ;Oť] &$o0ꏭ*樎 |mZNR;⢷=q0_d.Ef}Y 5Sr͙ɲ p}*$_@L7_?H65Y{%A}FGC}yc#BZ*0umʼn=/~W|sa!9ڛzv!N =T8*G,9Ǥn+DЦ#f%5ҳGsVw]T\ *EK|9Ia9s `Le0naTZc7]Pq?u9eJ +]#3.v7"+ֈ zwgMÇR- RU>I#u*=jfZoq4s"AzwZzʭyJv4XzҬJ?K΃ps-l=Np3[Q_~NS^޳MoN!lhqmm)'&(E+H)ԪW1,6Bж-5@JZԧ_8H3hY5%M=^cLng{\i Lqܥzyqj猵9vBI^|clcɟp߲Tlu>zp6hbQ2_ 4=Qo3u4Pw132t;|,Y AY=-?NU?oFMbPُ@lބOTMjJɅG_^2FTMK[ e cPtΧ'$Ӿ iK-amG|:5fH 7v٭e5B܊(U&JPf}y':$wmlŊckF0m&Af!S[ g) TBe8sH\:l.a:y{ZKsˮ*r|3y1)w8[% עېt vhIEe&ďcv9D=[_Az{5^]1{s*DNUZS%]5O,t4̽e8- &@0b`1퐈gLܺSSYzQ*/Ljπa"JdTzr2lclr:B(j al_H5T8n`0߿Oխ*fґoLaCd&4LGJ)j*םcYT, ܤL]G?$je}q8jOQR z~`ۑ|Y0 ڷg:# xT{J(v@mT-4~`$Q;2Z0"sID8*Ks-8`hGvcP]= !0꩞V.onc $DjE$^8MDm򄖵ޏЖJXeANPek--?pMET>}w楃I%j;]vPg%')p= uSٗ2 (Iv7 9tk$ Ë0(,(7\ \4U=aY/vՌnQ~>$$_V}eIkK:1y96wGAs+ *[f9]|VyafE E.;q/ st&5F:YRBkx9KA1{0p#"Ы" `GG>H3BFf48D+ƧJ?6|`U !%]i{si[ڡ-h\?C}h(`%n}G1}Ya7~xw>V}Zenxp@0TƮ[RMBuv50LbG<Ibo? RJ),߉ܕFZᑖ4!2 9=UmMOt*v~BT>+Xd,!H.Ts%K*,(?u$"F\@sS,])L^,Uh%3^8l -%3;q0(MfEfEM_& 0u#,}%.G6S)B?R9=amw<рhFݽ&CaKVѦ K i燩nH<*nbثց {V[,+r;c]~ 7G6W I۪/AH9Ic6iʇF Sb"LZm(ү Ew+`m6/00[ᄒCuojO jOmrri Q߅.Z԰"'lg˴d [e Nx4_,R/!{r^jh(L~0^L51D֡9ܞHn0U쐅)%!KX]q4J6 -j詸zAX9>nrԳ+9p`@٢9N!PTL!4^Nq7uˣQ/%)ptn=31Jrwuet H"a=.adz@9-5_5?j"S3g8Sٷ!t‚o s\Z#~C6:u?i5rH]R}7>餃PA&NhK/v\kY-_#adw.(a0hrlh^&fR|G~"ȑbmW(aȭ\dV'Af>BP%&h~Jj mP|ye%I{cfd>PPchaiZx16l鋞l $X\j]DT)u}Y1*7*|#= ~Y.[[N"t*_$-@Y.E2ZҶ5,Βr"G"tmsO[Gfa lpөxJdf .ٝw5UP%tL(OtRꩽ HԻ^t$ҡr4vdƹ>>OLR68Eh#BIl5!ik>TvU `?Q~WJGXoA cӥӑ]~UI2\xa̹SpD7VupUnR[nԕ}MD-^wʌTu}4vFFosL˯a gW R̾]_N]gC0u+u CHx^ԟ;*ҨD&俢hv0c85 ?9Y#VO'냻7],i 9ڵ]DdY;u&iHFͬYKi炂!ZO# 7QeQ^*ݨ"LH鈣I'1앺0Q7_q߄ZQzw%r+!}޽̦'ս71|gyBA{jg3 ]e.X+TFY=AαMh.o#"{+{|1gU ԍ!=&`ЍYrw{#n6|s38XN~?plXZv{ pprF1=. /ERe;0ٿCe hq^K[jwE/>=B7x0q:++ !s67k2,\ۼ4j]:8E$>MW*< 8s~f{Z܆8m/td]#8%jXE'9K,ǘ,^->Qn$lf:Mw1Eror,ls{~Ry)VHoJUµX` 6_3,~3WT W7aj{ (bbr0d2:s49I ojuss&ԩ##!s)tWJVPp^QEF &2xHHvƛMMD|NJWvCGݺav2cQalcYň fPUU$iքFp_ e9w=l cQ}.eZS0ŭi&CK?$?k EPKSUG򂊡= em6At}D}kFfYʽx-S¼Di*@+AVP~g򤮬DBjk2"Ž쪖Ź~#2U-΍^L pAxf% ss@J9oD34ɸy"}H~9N'#{^ʦw*d[s`/TR*ndU`v*ώp7$J̺3hE<`L>hw`Eځt9st?rtw^ڳiyXNx{$ L.jR Ob:cg }%Wc޺ 0ykw1%/^ "%Wzv 4yD"DJG OQYgX֢q΁E瘛*%ٸЅ,C d\΅Y; :0HȰnVtPMND+`~Vnڡ_KfUFhRO#.;(G]=ӂ ?ؽ=i|TߢtVvmR2\QtH#Ņ .8|V&D]bщOs}bK O`ϴF8q!}).$۱ q`C+yԽ™Fy5MMKwo3 `~.4A*SM֕Ƚ4 dN丠* 4\E? ,.]:|{>Z.lWm`'.7 SOvknas8*RrB6/_Gm012 u/}ꗁȹ[d1{!=.1ŭ int³ g$Yh^:?CwMt;D4{7(B:'gdNj4Ă9Zl hezICYIɑW}ܰǻr J#X)0{e{n^n gs:AHJQE;me&(u ~ Q$Lމ%+맦.I 0n<$f [H_ eJHq3c0A6JDPQCpPA+L$un]OD;XqP-SӘ$`XhʃQXz T~7%ACXoU^ҳ6k7*Ip7ڕdqFDnA5S?!&8{=QmkLp^[l$)CuIM _B8\LҼOÅ"5~nqo<>FrLP;cK"hso.H0i*nZYI2,$7gS1EgkcfMDoBNJRK1OP33Wx]<>0rGU#hfdr)u@,e:I'7k KWfRˆh*>lW+(T5_e/'jF;x*:_DRkjI/j>x䴇s *fǙL]p\|tl̪#=PJeEy_SKTVRn_,bQޑ5SuE3M;ܚ2}`<1Xf ) S;EjɶH'z^-(/XdgsS7FږSW5SQ I~m},zc+!bac~d;VpdS),[j5[YcoZΖŋcWεXYdk yaJEK?dZNw_}u5_=j!^W"f$2QMS\6CF2^RkY93Mx2&ӝq%) e\ | D"zI.w_h}7\dbٮCoGت/x,r(6DN*Lw- VVA2R=w8Le+?BծèdjL+&.3G ͼNvb>MA:ޢib{KA7~讚 ypg`oasY=z8+~= 9Ij_%('=&!(9g4J NaDƚT".sUTy cǨp C+nw 3 |[eIk%U6*ރ+,͆)[wRԼ\˾XžY|IȪui^Ҧn 5"k>SKz b0>@$ihdcgZ?A,5UN*x>%4跨Nt?.ŒŎr.lF?"U(zpyH A>݁I062vPm߾ߌ )R)tzT^̻@^kBZ o9>c#lDIjHi*9m_家vsUX{ A6}{/'IQKL/A;Wέf[{i?ˬR|84>[UYD;rY /ZܚlqЃiY , \rᖅz>d"UbG;Dvg'5$!Aٟ<rO#).s.2Cg햹.cqˮMp]RQ]X̓5tgK{Q} a3eh~(Z/}%'^M8X")&HXDmK6&k`""9#(&m*w'%3܊I}Tۨ+m x1ҐLb}O C{CsQx֭+]ҤP!Y'V ) cW_E8`ÀܻRG5BFKƼ:Yq7l &$6cPys´d7kDmKp+=B허<#sB_HFI)WaQݹ̖GQo\hZAeʉף>v(V<R*WB.NsqEf_/i陷y/2{Ƚ<~ܵ:]yan]B@̐D4]%Jj^ƤGG4OC7wk:"'7跠>KÃbȳ߼ VQM~ j\.,1ţhs;z\@3zTo[x?G;m'|l9-vc1աw唡\/&^;#YQ^~ y.Co8\vc+\*KsiRЃ}x;'7݇S$}qok}S`)mX19OQӝ1 bd8 Y~OxW49]0Uhb{ɢ_\',e:"q>$bN% j kD&Lm'ҽ\C_KFļz &3`ayCeO 8 d #2Kb3d-v T}U)G޴ȉVvO@eZot07stיty(x|=XbA8:m%7m62IgBhS\xMz@L3_}:'*4Gн/,_0[9˗lukShi`9~B>uP0C̤nΫ2]i A .8u?qг"$ana>ϳ7A=U^a/:㋙ o8 ֈmPPmvZۼxBvQlo μ0'n3x+]$d:IrbUGCL m-AE({4~ '{\R;Zw7ipӨr p !,U;1mF=V&PvV TȳFsz[Нjh'e*s ?cbknuFgRp(:x쀛e:Id|q{Gt7hWJO=TcʜH:}jC:9L Mb_䃠mliZ3Œ ip8*ʦ+dvDsVvU5S%RXܢ 8s3~',uakQo53t,Y 8?+#5%'4 prdzi֥:,4ŵNkWY4dS*vþbGv=zA@J  S.)U˖hjxE"ݗivc8&bxGyO JF!q_l;ҋ@C4\TEp@=P2%싷[}{.Ҏoѫ\ /ˤy%t `|=nObjӡFbei!9{q8Z {Lw?O|̵Y@LH"[^}ʃ(FzyslUweԒ들WkHwͣ榠> C6zHrTeBu!WiB=i1RA u/ ֎]} `"80spC@S:?`;Qxb='Xydi5^dn7 A)ρ`G*T ӐrK98H!Glh9=gkF}m"˱0Zs?1u]u\$c;./ Mm2η[%ZqX ;fEs.cj}ON{VRSCQDRD&u<\68{y)Ue!ucz)o7GzA]+&fH-/ ~WGBQhսֆJ3jyZնȪ.P6X^Ɂ6$ߙӮS/Jhiwۦ13n!yi p^y^!%h21K _%]p,4lxk?U||ލR.W\>eWT2u$FQ a(Qn=Cb,/~nfv΢>D%h;ժntoG_Oz`@[m̓ P֬'7ynV *F@Gb1({& 7ޖR=&IOnY߰SJiz1 (]{ VP&d-UfPJ>eҥsp"]!_,ǬvNF^ q${l }y EL]oe, mMrmh}ǝlL^*m%WR"̜IpaG̥ا͓\^iͲwRCHcJU4Q̱ Qk3SR4?߫nr8@󨃼m7!-"!_);!\Q@S4Ey =0Yt&2>E4w93O'! 䏧-Ӌ+ < Ώ{ {vsELߘKJ1Ni>-xW?Z4=Z}D 7pjoǶߑsN=#HR R4 FZU.D*}xpq]s;]  ef_bmlqd`1@du86& 1 L36WN9z=Qr>Ln ֫H|?S1H I[Qc_|cuo5S%LFHlvQL% ri' syΌ{ZQI#_)IA7C&idXF#rVenvqZR)L&dkP @]/aБ@,PQV>-Yu〽jsSK ]{8KU̿k5^e* VW7AE`y#K T=NUCosiw#~m+8JTLC?bpj.9!H"hjG ʿ:mBwtLQ ҶgD.R(2C_k3E̞T/`[/cX$aMSFb -'Wrcuvzdo1xWIe 0bolߦo_SGH?iܜԡjTxy\RяBo[ǤƋi&@'3=ҚbWg5591@_4F(3˜x~ |UBGe1>Dz+:I a/*c SжhĝxZUBE}:~dŅ;AfC z`+0=1K^Tnq5] ,# h/֎2z%q2 [y_*Z>*iu"S"ò/QMGW29ύ 5 '}u~~g~j8͏yfwitqy8Vϡ뎃Oonf(18RNX{@ɕez@JH5,+@lS Yg'*~4989dYV|kbN!wlW |[9 z|]؇U'5^5zEIkH旭S{^' GߓEozˮ|ߑS H/M|;=PWƮ1 ^ kmWணIC$σ{CHT {dBvk('Ź ثʂPor%6Ĥ88mAz;F} 41"Ka.L䎏)LjԸ7$LnlՇXyS\S1O10xrdL.&j `I+CO]1sSP75qxy>l3qdI\Z8I,`z+J$pX0,,v~anoILb`h1 helWfw}eDoPx7ۡ}dM#Nf\ !t79s(?<;4XWl񂡐Ɍ*$a!=8hkUf`S;x{'m%I~ʻ]ds`-tw2cK%ۅJ@ɂQ Jڠ͂*R;޸_/L2nJk CdG߳-Z܎ OUt rG6[4 aOJaҳA+RS}ܻ%)LG| 0DQ-HYڕ_CuBL8s jYNɷih+J!!@Z.5)٫"a?2`G6-|s [Woq%~%;5!:ޔ;ݛI|Üt%׃>m"P)ӑ0^5U(pvUvMtP01;n)Xd_ y:Bq84:ȏ{MIU" CҽJHPe!l>5_}/b,WΡX3_3quE{Vb,kϒ4P,9r4l@\sc;uj\k/)48ey\dT#zΌ:ҕbLFm> d!2Cμ V1iNpSA gf$~{pMwQ|614$K2ZtjUq;:$&M_;#b-o،G_4 Q82CJvfɠ!Gj]"y¥`%ޗdf)\fT דqSqY'N,m1UG΀ HMm[to8\jy,IBC2C<yu{"#Yy|'͏DYXbjt2Q ߀ފ-Xr!B 0sS{9H;Wr4z¹|Q::%?*7FjM'xH]/ M\vA67P$vx_[cX0[-˶=i Ni}1a؜i]6* x)%Ŭz"(OFV@{PKS"P@n |#q_;Ƿ&lN`mtWݞ5|7IU-|Sd~ğd8-|&nL/2)d"MD[dj&~T[)^O5HDZG+O6w2XD7O0*iZkpgNp/b ߣbI2 k17ុFyGp8Q83$b$w͵ƬY>g衬C#We%^}GZ"^8lj? خT'cJٓxB7a2mvA(;ٰFʟ~߀,#DNUыހ`|T0崠Fov8xAplsQB29 iIr18frKwJz)[ H_Ӓ6hpv PtR>| EqHR&3~ b}<C䞖@LLctNgT8,[Rww~<"jF gXX'(OuNkZ1RMQ=㤽f"^v23wg€T]KspVk7es?7lc_]J<rޓvkWYT="浊`cTO a,zD,0m}|+sG6_5%mI*9 i4U+w$IΗKd\<4_2At{ٲc~~5(鉠 m ĽWU(! >v{j哇 EcTO×5 N8Pkj@y`c#pD/ɩt@zy 2 'C@uX'}2H t_"ӚMw*Z>,J[e(z_e! qT"uۂ&pMN$GՀG.'t*/0\<ۮ|,<.19qYaHȍl~N'%ԕb| 8_o"֗M:KI婌hJZ>n2;ϕJC;+(SZ':fMPFSargOWw4^h.:38x{"x0_KRx>DLqHlv3*F}@JKH_7:Wc*ED'j8dC\7Rx"z ECG _d{vf c}UJ$?/?n])ghGم('NIljp;S$8[B;+폧P[2Q,/|\bINOkw8tuWA3+~$qYs! '2Vn-TdYϤvAs4]>pL.s}2F~ghBB.!0>번Aϐ. /0D<[;6#Gȣ/5!3EBGȇI@gO &cE,L"4"" oS} &;aW'-r27,Z$n=j7ONW)zLaWUYK*Q  [;:@K~Spn( џ:+}Pk&C n- yCVAʳ!b5XDn &-.Yd[ [],-t!ESPVP7lnhq 9ؽl}qSma©'݂`q:)=S22 WS:m\{zӊjkf;AC Jq( I$6K~)>&?(.qWQj9]*e8y8"#GTJjt^nrG锎OxtB%[|4-c g848e>T4'4-HNk޲pet+Îi(* ~;MorE9S;яůtjQs$]^vw&s _JpHRJZV n6KE|Z0P qwqZ0~9gpDij@q6+k"!H >DGV|]9`,3KUaǮoP+' rΕm/b6~J 51A0O-WA!*4|eK +7MC$Xa77#i*; O;S"U'E\͙AwEbrE-CXfveۚeajS]6)P qQ\@ 1` (iJ_8khQH)$E.= x}lrQz0m7oת+ۍp=#<ݲʣ(!Eɀb\3iO&mSD| ]w3{o; }SI ht8{62@U)`/;y}ZЩ6}/_>OEGsQ.m2ktQh*,=JӠqdLxGNEݍXc)o+N"_# uLoHn߹gWV/д+hm,@?Tmh g%h? +Wr[Ģi`8>n.f~DV$$q"+-pЦ>FG{pD;V9}\x4dRa ]dzoKlMM p7۵[u qra^&7 V&wi?Nu#dsÝ'!>ζ"լ<9GaOukE/D!9Znׅ{ L;%tj ɳ1ozVNo`C,ƚ*T30݁( Uɍ 5[(}!im*qfrA-cK!xrBQ #HyFY׋o"Q'aEWhyT@XV[alkOnq2{C#r6ȮaÂhnj E*4vCҳ[ntLBf -AH=`/LgJdMPJx&B] .v^f)IXR)I4Z+XIp}F ίۑo7!:T7 z(nX{81HG5^@,)Ŏ1n7H1WG!dxR!i6%ʿ,e27qk aݢr[tˡ~vZŠA qUd~<_M}`<˫|ovW7yFql| $]<{;PiƜv!'g&KeZ!s8V]mz=5}f#dʙ/GVe?TPY& -b$Dtg]7'ܻϛ.4M1<NQL> O? {L9V9Tr33lA\)ӯzI8 -^ u%Vn:wG)5h}r:p< f9].2Gouo@mȎoM N@{Eo|y EpH̭G_@ѡuFb RSۏTBS2l*4,lUkR*Rz+ʎޘ N2Gw<`tQnѴ\dlzqct.S šs6~<\(t NĿdVImI^eTw_0߂g)B)hT3T~E 8$/_p?;NGkS7=Wc@aK<_ϯQ @V i6vM,ynahzix b/z?ϪVx:fEr2hʹDwBм[}P)lkBIPbeϞ*ԟkr#!lZ(h#`D7IF^UQ9م9P`حzsAq BUnEb(K >]ib{TYlJYijWjw<+;~u_$cK~-*GK/+óLF2Dt\VwKq`N>;v8l/&d{ r ȄhCx"BȆy  {"_*eJF,DžIG4T".VsRf•;]TʂOD"FW7Zkt1 u»[}QRxϢIz Krwrl?/IѴPPLg&+9yαa9!":&vX.;nTb?nF9m >H2%.pwweb=Ʌ]#ƥšG|=tc^2d܌G~$!͗f͆kɋwҴ8L[ӵ)(_Νd@?-y<5wDFlh4%1U6itiO䲞.s/Y hcC-'y*߼^Ap}Bxе2q]*H $}Ixsԭ~Ȟ+sMS'D A&4aFԯf2uA2 Yh:Q7T1NK鳟FU 7Z\.͕rf4fv;OH'nEXsALjGK_7*^16υ碱Ej(I\YPj9‹!ኻOY sBzymv- sY3J-auȼ-˞yWZA_L#0m_c ,56fI]Q[#sló_Z-n2 qMBJjKN~<Sؽ ^ЉaZ̦8e$td=u ǓF(Kbȫ9:rYS sokS:\6@MKY >^sEξ$gad ǏD]YOYr  x}'D#!6q .Q ~ x ;Y<%q*1-~UE~N&J\`U0-%&qܢ 5'%#vJ<_C?S9 5b)+'7aZ[rɨHFlX\,b>@ǛϏΉR .^$ iBp!O,`I}0D;z/f5|3++Te8;>?1MKa;nqƿj=WT8腬{n~P;}X6wYJUɗ蝘x?fXLt3eOMoen*E?]#'R[=!=jΛ9\S t$~PT l^'LC{5CR5q]8|bmVEOBs"~hlvv"!k7u_+qlۜ7YNwHΰꐍf w+[!hU,LP oʁ m'c9LB)UAᏋ&1$**)'Ipir0ƁQRw?G\ŷ?е5t$]0&Mr=ִV+|)@pYԴ_`^v4tO|K#ZZtћ&Q"J@6ށYsEa"iXt@Γau.#2^{4l͡{RQv@2=w[ V|]N+<`x0$t`]/+}ht@CU$CY[N1Y@+96n6yV ' o{W 5_$5ٰ?pnXE?ZG>O⣘W#cI mf^HU^ni;C5%]K)) cD $ @ Yܟn$4zG \w!=NŀSTKiǷk/(އk~ipzܤ0N!|گ|u>"90|CZgl.Gպu֫b0 N>9Nw. 4EY2,ϘG)=i=t"HԦ 9fƣ\*s D|"- Q][tM.Mzbk5P'y;}ŕd9i%@[9͆|NbIQz9Q[HgejA\%u^H>4==Xrpu~- J>жh/R {X\9 :Ǖ!fj#w* ܓF! ܲcXYyMy~ <`c+%7viQE E)L,/Qp?u?-X')I%b0iuTVy9*$f *TkQ84.2KsqJþ7d) ٿ0y9GhjIvD\ - x[+Dw+9C5= z#O.K^ab[єhSqXXf(5ȲA!%;hDk+X\ԡ乂IeYARzWF%BHݠ_dޮQx{ʼ a7+[-P\ܷ6 Dת0P匤Qf)R N^1E(Q»iV!UI#DLNj J]ϲ*jqbEmR&HfW] \ ?y8A} յ֛b~v3 uvpp} ݻТ0'6}JaĤvEe5uehhFMn%A/',g:7^@du~ᐟ&n8jMF$ i x|pfz-H ]bשaU=| VAʸ p9ϹtO~fVw :`~pQBh[zLCwDXTt*%З~ڔB,\_ u/rywn1KJ_ ʹ܅-Aif\38y%&(@5 ukqW"` k \3Y!" hШ N}0J(ц%pv{}%'eLoP_k-,lHE`|`x̫ 9/E%W׼+?a k#h٨LHj1Y3eFmm`k[`KŊQXi@ޱϋAEYLފ W0LyTN83EM({Ia"mJ*w9 :=McDiڶW~4PєM`w`#{dʻ\qYtռoL_M̔%Ӏ);,>p$c~wP7Ѳa (6W..f7v _5}-BZ>D]jS0m?V'B XVLsc2&(>Y`kJ٦Ze\M~K8{d`cTȵd2+M*(w\Goo0*HJ|̢loм28 X}IEwޓ$^|{2* N< z;?%PADךS*5b'li,4o>h+~yA[yiQ[\+o?PAȦs*TVc݁;[_0;l˺{,D7)0 |%Q:3z_qoVsT H)==bZY<beIʼnҀrl;H#';;XaOuQFCxfԇBߗ}haGngSmcM9{oCT"0PS^b0 #$*3D#;PЖ砉)+cҗ;̸W9s/ J/a*aƗJq40cDGU=V~7.B+U@SrB yiۚ}9M,_nv藴#C‡f:+od2VWF[h\YAcl5SY X#?'(G]GYCTu# J8*r"  FuE̱ n'rQZ ?4-صXOg@HoQiI >8h%)KNvPޔKȀI{?:zvu3*b1TsG7.6hc ['mGrpЪe]YqAHP:~<.X>i-TKod62DcJi&څ. *]Om{ c M\l1>/9/~@;j$Q^+ U 9`'jK^@BiK#0kǢa(pS:ty5ho~ P5z [2"f[C`v*p_Q~<ֽ.Jc" _E[ |ftwi.Vlt|燷%ZQ-diZu@> g5r7{@)Rﺊ'YyaH)Pg'R2k%:TkQ ㍉ψhkyPHŮ䖦E"a̰t緾mʈ':̊W,1>R,VH|P'V--aK{cp/>-F7wϙm$'هkR9X~P9"ս }@W{O=udD/ N A[k0]:>UN $W֏-aZ;p٩Net+'yq@2^@3b m [ YAdE&iPi(2h 8y@_"~i,΁zeޖћ. {}V֋v٪J S\B Cr `|V]) ҿטmw{B\NͭߐNF ~"!Bo޺|Zߥ$wxMH`e<.B|[PR Ou'wC|Th8P"vblʾ~+JX0iWZul$c;1~^0QI+)Pp/a`%;9P~H䝨tUD`''bo'!L6cr+A!_ƳLuTo;|]`#rg i 1St!JS6#dn0򨹜ΘueAgZ Ŗ r;q%eW\}Ch|- QR2qE B.C,*|!rtKDI8f(6V~v\ b}2vǐۜW؇#uY7W[kM8ftEѦ6L\ľM@n+`!鳓Mhcް7COl󔋝(.XNzr;k[? h?0e!NB^R*`&g?nMa[ Z8q {+*\>(2&RYIZΓX/ƉH%B]/|I $6AHS|@[m10vui^aG[F|Y:S0rnzCK۷5Ayۘ! i D>&Č&10kȪhpܫ\7&)ZU?rpO| ]K֜|x>8ѐ0z~?*ugRpj\;1ikZ/_%nMl]ηlrπ&H30%P#hdr ok^p FY)S @:sgY8;0Tߏl|cl \S.̿/@#*,MM{γ22!cr'\F&ADuC hv؄wkU[3)LHO<v T5"<`=T+!ՃŞH}X3Ioz&lo^bArD`M0\'<qhUW_IF<ۥ ~>Jby_4"y >O!!%ȎcvdzgMTm4dPNN$OB2=r38pcrv驊ˑ0vW eKRqHdF9nP u.&bF̛]SeF^Ux G $-Ane:K<8u =zI@35H{$٘D:&Pva&?DG>S74#:xj`淤n bDERW*?G1/QJ,k^hdrH'k2`nE SEISn`]o1&έVy0u&gZp]!?;9(|P@4S<̰c~_Q/S<˂{ϲI"O4K,JVT˰J#U\nq·)pB̉m|/4Ɲ\TĩdHwD\ҘcELwF L2P\Ԑb;-^W.0S@fU1Lx*3]G '5?ԃDl;|i_]5ڬ:Va;\lښʧPoRNhym5:)4ICu QdR"e)c1ܦc.[ xaVrL>"|<[c6Or^l!gfA6ʴwQ&SR*J mC HKjY %؋W %*hٸ-\QS̭jftϢm.}gb%,!A =^-Tʰ#O?B1WKc\8 1raFyi2Ɣ-ҸYuyBeFU&e52n Ŝͬϩlk a 8N#)LZ2߉WId"n]Fg}*<X]s65ݪ1>8J7NFrd J( tF=c +Ux0Gbޏܘ0'<^{~+{Lx/PrreTQḶZ#.)9, wG}:sʏ"\d3fy>]&I2Cy6eUno4TϞ7|hG$x]+-/Q7_Ffocs=εO}K/S9`)~߉[G̽y.ig q]鴬RD8h"!;Nvs3]|^hegOE @i݆ܹ6/$#BC$L|;M^oFWM0aH= v+km-r T*^a #V5q.'MOlFB%5G/'@s)OFN7˼%(UrXu 9+`IѿD#„JM y726+zvVx&Ct!Ȕno@bwifD:/5qɕ/ؒc?},k "x6zSC&șSV 2 4as\ռcݰ6^o R44q NVĠb* I0Ƚcr8\s[7;x9*̭Z!bs5. 2m/h*[Ӫ5ƮL6p'PCm{~=UX-f'6rddPHO+f*DُvfmçlEذ=lך@(T)iɑNP9UK p-EGˢjW ,wIx]TFxiyjcnz^ K]bߘ/$9CuqR^^؊Ӗfƀav]&_ uUou΋4 ɆCٔzWebc`,n.Yy ;I\%+w )G6&߲1~`bi DHmyQEHbH- B U< @jz^r `I&Gݖy-,ڊj^xvR|!)7mᘄ]ܒmy6U@3M(Fş)[7 1tR?ŖkI|[B# 8.VWzB?#+-~>l4'AqLUUly~'|%fbdg_Ŀ_vw4)yhFnlLѿ[ ̇S̾:TIMi><&tϨ0Dn*םi 廬pR5zPJ\Pd&\R u~ f!xcϚl`ɇ'p4ߨʸkek_L%8~tP蝾͏WiVO34a}FMoސͷ|≛;s[Y:ϧ%wOXA|'X$bFY,GW GQ%zZ0&}Q +'6q(.n74-oj5?g8hejU>qqfgaHDPD<ء<8hӂ}yhFWGDJKTV&A')"1D\ kwpgF$Wo#@{Y`GL&+}aophEɫ7:/,s;6EDmy>n.Dڬ. }lBIA@Ґ I_9*!GGgH?cC#@<a%>]Q{N~ׁq'W'?E!vcN!DGdFtL9["n1J2z\^ Pb<1+yfa@0Az+0]kͽ0e4ouHTGz@9Pem>;MA"I[cYg ͮ!>p涨A Wbwڞ~̺*>߀ h5NCBԭ*6l!"=.(IfXKxƛ\6쭜(hJ"k=2G5^̆:\Bjݴrs=~F_нoҙWˤ?P'] Qk[*#غU 6ߠ=qQ-2\0u΂@Ú|+"wwQ, /3~"GLB${DB߲5+2R x`tU=38ء/2ָl֘6yݗڃޟAXsMӽ1i`ٝԄ [K_/bNKPMN3T!BqXz^@,U%Vqͬ|[\]Cspc7Oʦ+|1lK!aiAfWQf|O<%(Eφv^حt PӲ, M_d-ņMR@*!5<9 ނƼ}D~ɨN¯>5/PT#y47Umᚅ/&JpM}KJ@mE#( kwGH`2`yQ}|Mлw7XXn(n1 V΃̏I.um%{hm.TE0Y@vhYɧMdpKUnbx\eHlIb B X{V#a%,)\ Q]zWr*V8x.tH(19@˄eDEUp,8I3z^Gv>`L;ΊgKԛw]=[Ų:7StִFVѝT'ޟ:aLGRfPgӅ] [z9<пz baq` )*i.hx fD{sn@cYoJpl{V2b v78q\a_S)+H:"asUi` JH7eNcKf6}T[8-r[!;ԚZi?2e^)9OLnu0s~4/!ח&g1Uw_ZCo&5 nT6vF4eR** -gƾl8 kH@ɍ,Z(5)8 X?\SU!;o-ꁉz I}>oj*<5iM[iAEW?jNv/<2_4œ {:r>¬6+iBNj=^m^ЙźI̻Ta}Cԧ*#CeWOu:f!q z7E, JZ-.mrW7;jRZ (ҲnX:؃OV Yَpc&5EZ>-P*?4=όn.VO=FJNxxj.f0ɤ_P.Th 3pM32% ƌC[T1D8@'wVQJ7dsy L~D^bчg2<6у;ׅ4Ly4 L;w i˾)E^y)]E*v[d^>U^!nO_U3Ը)BVR` AjF1# NJs!A{?L@=(M|OͤR_B%ٗŖ}(#qï'W U02p9괋}AGLh*y-oěyk)h'_QsD(.u ҡQ!%5mX0_CF'CI,uu/exRo&0nd5 El#5S [QKFV{c, TpI-E)yeB&uM@{Jo?LJaA)̴ kE凒ϭ @>}<$~.ܮxuC]NO}ZD+ksBఴ̕I[7G$n)!/5}ɒl([ aJk@uT_3MBI$D)FWOP[I)p)"PaT_`)}Q+Ύ,޼/ψukh|MY*HD@b(=醦no8vP @dn s~,/(*Vx{-fiΐ>Y !{ItǑ",k~M?H<;QXD8` CWUΏ;C<_&5_ROTM*Q`t2S[-TcEŪѺJ!8pLOOE!Mm^cr_7۱{Ώ-sxuuq?Z3TG4O+2hom*C-Y./-O; PlY02$ ((Xq'}t@QUɅm`K|đ҇wJ`ڑrR7,ogHahd|Y`,7@Uk!(Zx0~#´@1<_{ >:,߀<)J@[dc?$*L,+;ٜ`3~m4nz_8Nؒ`(qz|eQ +~v* Ko.)?XTT4<?Y?Z5ޓT9b}X!@@ʹs /CfQBR5BmbNOl` -Ap^[=YҐ(g0*B5GɗmԋTeRtXgiI=^V)z٤QoJڮ|0RlߍL+r!l;(65 xv '~K%Pϑ1F~nDμmL-TGA8^5eGqWhyΛYG,_nO8ǿQ饿mVّ|Lv>$<|Q!R 00sCwH9@ж^6(m)8ƀcskreaTLV`HA}/7L_[F[WQ} 2D{2d0ܧ̧ؔnBvx-6S)N-tsrjEcd7 Vmw?KśE[Ce؍]=wTM)nĢ,ucK1>uy rB1%aO`AP"zjMc5d߯?cv|>Wv"-l.Vn$;S+@S ?`謶hFicCy&jpdu`8J(1TߤzuYKWeYIj[%2'ūC|rJ1CA[k1 ,YH =`ndDT뭪_#i-E ^=WxN\x) M[bQGBV/ծg.Cl0i1yR'7U-$P:c$H"-y\Do,ȌzR~)0ӵt5Z[%&x2C?*D -v\ki3 ;zۏ ]XDlG&`[?EY|X=gxH zᅤv҄Ea\Cvt5؋ouMͫ)(Ao}Nq1]2{!ld s'p~Ô}rUOՐ,ycotd8W% *o9|s*)~g5[~Fn;Q ^0)uHOٜ-9 fʳ|i,9O&2"r"eK\xngz"4l/95#A"TPT]} `cY4M 8|C:Җ K'.!`o/[1Cf)RۘK5ruC+\͎#(ig$}YWL4x-ff~k $f[PKo55^_X7<+ G~ȅv1>m>'+,'&/a @m;ɒ:SCX m'FMJD]J%{hw9j=K$޾-9'I&tdmz$xW(͚SK|A:oz\@X4XIg??ye̤9Uqp7D O6(0E:Nv|qM؁0Rଡ$:ob=< :tb5kOi֑4B9n(d:*nL{n"%+ߵHڿFM@b߈emcm%Vp![ϫÂEl3+NL=f˖PIOVDopz(?`2r_CuDL u,N ^0f$Z_'(!31{+?gh=7uW 62C'KۍEvˢs)wWx=k^=gvh_ø0|1E&0v{[iL54^K6yx_T͆K0{i1|@@!yJى^a#a. Ɗ7By"nYسlK$ ANa.f*;*rau[ן~xT9`]aT]y;0oV_T K)KBUp-GK\/ݞy)lhS*j!(xPq5'pGbdd0uV}:j tB;6[Bb_;zOpF<;O> ѝZEGhL1'u"WW6DF=>8KAm'v^ϖ R=@+&]/_reCi~j|""j0-`IV7Vͯsf&C=54snkF]ܧJjukcLo;)J@}  `9RNS:EzкVvDbYhw g㗈OXK90Kހ/ )Urey&.1dGIGNc /+Xq%8/7) .|&:&tFUPhvvO;:=p53=UY 5xoB'OULQMsVt9dZ:2M%q{Lߜ5-Mw]՛! EÜ6eXu{z2^4W1 x~W*YAh%ȶh>VwHjY*"P?3$<0&/ʾw(vN{W|-HHT0a٤ >Lӎ6 M P ,!OjAzV'SIl} ]1Lrp[+ɽq X" آFLT{IBs: !'=K{yoea/y0bքGp7Eߊ l*MB㫩XJw =3 \qN.}\FLt(|sMU?N'0cWk?x)']TMEqnߖaiHdq)F8>OVs|%F_+xfa;/ZU2=D[gWćd#fXqVY0ro ˽/K&YоGq) g;E}Ts{sA&8)CP@y^m'g 4<ةβc|F')f9ÈN%z`E~WxvqҧqR18'a$WA'alۊ W[5%f1*Mun晖c"#^m5'ULyky;*r;"}%gÕ.:pL'Ȅ8 ?k\bCQY)#.xeGV1I£=ITI=LŸImrz\X11!m\ȰXn݀8]Kz>, QeكՐUy o//&o Aq*vCLwO@{5JҰJ~}G5ڮ364"08|G'H6`")1i{s+JNXt.oW$`APARB/(Y}S)EF?<BVKGf(T0+F/PQ.9\09eZk 4=ZG!ry"f- ugK[B PPW>="IL>'ÀLtmD.][5Zt@zxu4)l۩or@Rj: /fqWx 2Q?7O)/>>p]x/tDb+2m8>=,e].AT(lviuǑN- .v5Yo\-f^ZGUaC \WY[%((V1!%̓.̋sC{Lr#x,3^,\orx`+@#[MF:i;5r?;@pV绔o.1KWٿw[!ս+M?&ʡG]%r{USG. t|q&i,K81>X d4]ofn#ky$# 3~osP}V!r:s?c;8qI RO\8E! \~r`8hdy5mgrCB+hV}璌,`YPs3`by{!Xp E}禎N= jf-羬o8T"Ke|?ߔ+ΒIC&Ï~uocb8+Z\phlx o m.oNn|b4: :L5Tv*Yp^iۢ6,@qh['8jaJ~/D$~JlRֹk2-99GXھaӑ,lzH+1E(?frMNy/ً:҇(܌RKr"^kHf"TNwJI:e4v_a>$B<@h<80~__D+#k.S{']+_ J3k-_O :p VX!$&x.]C(.Mɟg@sq޼B]8 /rnQz'] l[ƛW]),^ePaVHtN2ɋ/z|+-MR$l HA4:JòLJ9v3ESr4^༬i 1;4pD; j7 ^͜ <(sB<N|BgwxFi vj]E`9Ѝ G6kb}.@)MtVB.XX/!rw'98,^I-Cs(<4@,!OEq21yD+Z32X_1#kNu$VR]t 9]UGK^| '^s+RVfq^b0͛ .( @u -|Ѧ^#5A[뀠6%z_G2w]\MJrl}Lv؝ cPOiB|"BFy*%ǃ!-uڔ@ NSGq1Ab&'5Һ]GZlS-9tɔR1q|U&Ur!p{0\HSDi^ `lSdR50KH>daUy_Qi(-X0>O"A+Og9yZבSwoCR$x2n_þmh-2ytlo#u"_RB+( 4ٞɋv`8 ,>7Hn:Z /qJE$&I:fo㣓)d)A;9׮P;]"2!Aʠfhh /%Kiq=Ґe dGzQkqNw5ubVp+@42 dl;W[bo2{cKnG&'΍?vk֊6aAO (Բ*T ʈ̺?dd?V3`fdXIQM6vUO(&y.o)/lüPlS9ew~3z}3ZJ8r)Pq9ZHe}afֱ&LC![Fo ]$JҤ^A@ !2",fi{)]-h=ÝREq-4>`E:/,_›DZVO-w8CPzT; BƠxlI;?.oU_nkȅiJUNTP\A5I_vIkEG2NldDaVy3;oxlɱ!SƑy)0D{RR7b(P!:N_ު!nFMf5iv󸿁NR}o)?JY/y6КA0[DiQf ~Xd%HT( ]HiԐðGcrdZfR V27o])XڡN᠊PXޙ(f'԰]ROChfʞ|Ex@aS֨b',U"vsm4(dUyĜS}jWPφ9.H`(>YRLa10-ӭw:$eqP =iL!ꆦwix}p>6k"' >cHh]md5U_ ZYҫl^ҝ˄VMGn"4b]LjH}!sr^6 o¦ -Otܟ9a?u ߇"RRbIiId.Ai6IJ ZW%}|bny~)N:ɣ(㝑"qRڈExf$/&SI<5{FrB’T'HA ni m)E-@GhZ{uKTIJM7}?gz3b]GR@` V\wm q5zÅC2L2S!*^Bz%;h!Z@pD"pmqt $@hrnLK5qMX`ˁ6T=&al< ?җ+,2TfWos'?=+-R\[΁|S./w sbq]iJpZ9hFlYBaaz0s%_Ndrݲ.s>TnC > t|!eKkwy^d_q'gd7v'pZ&='+< u $Ql^zP~z%r@](p*k ky26KOMͲ$K4 -}?SN #%&Z(ޱccW/FCZ:Q6C^^ʇn`,IOǰY*>cUEr"1bsRh)2JT_jVHSCDEJbM} m79,1('_s9-(? @ײ-Ђ!GnWސE5+7,fOZV}q\$EH̆}(X ƛ-~,5ܸSL0g*<48蟵˓ TyEZ|jkS^5,8zsv#AM!:2-8mcg\Ef9bP3I͑뎁;H4`}NA@)N^.ORК }EB/?m)T]9 _d$._# 6PfC 5~d"D1M5rv!K5Bi*2OCw3ͤAY B}g1&f̪S<ޒ IR8t:$ dahᶼ(bRYEjx>X;7`=rN(w&\ URM4fl!r E3W>W45z:&leAmt #VLv&m=[L9-7jI:E;/NmZ4:NI0%;Y;UvP|"(bXѿS,_c,֘056 :A$,hB :AN5w ZTEK8] 0_@9͍/s\긶}˖c8xef9'j~G*as |<v ?>"h8VLNoWSQ(MBFÃڼ–U #ojW|6rcG $j$Y`qMK?ѳ6X}:Eiy Yv,:p*H[hGF ej^+ o8%ٜ)أf4*\ϕG7oKŞ~)Ͻ䳚 ջZrSt=*;Ƭbsa&hGW$J{`IԆ(+\je:z[ 0ȳj(]R?ȻEmGLdT/6)ǒ 蒎¦F5pFs愌- ׆[\QIgN g1:sa#S"Ivx_W"kdh^9)Ѓx㬟NVմ lK 7 2!qسh4k<l q뙢Q7̍x= emgr5D$adU<XJ݈ٞ _NkاhAI eCxwXq Zƍڜ)]v6Kc"V3q箭*h 1ӑ,TI@$:V'bH®ľցN=oxz3/&>k#JDtۇ ]:5&NsƏoQ{WgsL@JZ$#TLt֞:IH8hā_?B=j G]CtTDaL_fRiKek5|wU5P`_65Wҡq4Y 0*6%HsTFU ~*,A!JhU;@)%7qC2-{kBj By[ɶl#|DYfb< .Bq,2 x/JwZ:8=S\rz~h9_{z[^Հs"Fe3DrWL'|͈3j_Ω"u85J98 onda-{S1vx8;{VM{A/ͻD Ξ=)s.دb7C(z.@j˔ >1iu([NY !vhw`yM6<]!0`%D/l;J.`űB`+{mwzᘌR~hM%1 rěGqJsA^ Xun(c MS_]5cŵyoɵ>y {z, qaVҞqQ4kX,$Nci&Q80\`7$4݅3W$]$b0dE%s7vE;'XF/?wN/-L_rD'UwuEK^:l{B":-,FJ@a]fUԇ$"R ~Y[teop(6*庙Av˃O/1*Ԙ:㯭LTB @R;~"pNٰ30!qͻKvV&aaDvU?ruV]?U*PFn7G%V7a&lWKmM0 &XQn QotEvLghlc/сfSwo#;펠MFә= w%+lxڗ86+̏) 3 ï ¹jc31[NiU VI nҤr¿i+TC /wHNkG~A)N3@ V 4wVC)a($ah8W|(1;{:&S2T@, hum)C/L0).=]Qn;`qp&W棐y3FeF}H{n|i%>N= `il4'ىlQ#@T)"pM=P%uCȄoT? ֶ3ԳTRzb, >AI(^ØJUThcYo_`I=+RH)>Ff xuSolܶU!R>bNy$Z>q?wɲ\֗D'^RGօC&_僔GʩAPPv;LT9u޺#3k.d~mkcY ~f; +)sĮWF*8;K[9P$Z^=/ 3042HԠ]rׁ`jơƻbPq˚OM|7&[ȄHiayaݘhDrab;~a~ --l?/k5ԃAYTIVٳ H^BEIl鯵J(Qnٔmu4uZ]| ru } W~2N_|xC"yz(c1mlH=uM`j[2@]&p\ 휊BTds9)d')ݓZ{xV+*mY]˘v *:&VҤ614"Ȓ_tp\dX$r%&b'(%[}bmI$g}ؙ` LBwҾ؟K.'1ZSmrLCӾ$+2$f{/9Qᴃ_W^uS oD{ {}_ORRc;E}7{:c.}b;xhEuk$RBk~;k:nPKWQ!3 (tNtD=|֠^`tՆbac~nfۻ7v cޟ!'`eXz8{L5 G:7Zk1 BRIV$J7{t''-cړKA IJCa_7ZHqg2:8`[\i1UJ9Hx'$@gz7\͒qE8YtI/EWA,+0<=R3`1c`6\⚂\5]K ?nuAC}:֚];v:̪z$KY%`]rt_h ĿEAaU JWéii*aݐr"/"TY ͙"Ic_xdQZUYBCǠ|ͻ h}&׻.*OCSxULqTGKQy7g9;_)vYP[݋r$EB!Ѓ%TH;௟,*B\B%!Tq-^sm ܥ;ae Дպb!K0tW H}[K[v' 02V[٘ Rʛi3xMې3݌5U 01R \|hn~ o t;BuEm2^2\cpͥ\&@@QvE ЉqYOσ)+<mY EiwT9w6͔kPF֡|>EkR:ұNG,:MŝhSD1\IZEZBTЯ .{Sy`5|5 ty<MͲlhd|B?LђM%Ѐwi=\tOG5Ʌ?dlo=uOV>Չ[L}:m;.\$NV#?9tl]/PBGE; U6()H^ܢfSxfzNpJ6`Q<4A}t\bw`bY?9>G+̱J.Xj^H (iԹ# =W+S<[?*epBrQ~ Ne-96`WVpԶʍ7+QQ}EgU* K./}zEd[4ųo&(V,rD>44TTidY)D0 aa+ȳ '3*-IohHmM"x"۷+ʫtk.b_ Xֈ~,ߵ0Ansh~Ht1&BV utQ̢=xpS}R>-I,C(WK{YN܎ F7e qTuY3yۿQRuWԐb_3#ӏs/l-PCJ =_mnԕSՁO{#5p4F$v7ypJg[@7輔PNZ @N Zy  {Q0Exkf?ۯWLJK [K]* q D yLGl- ̼fZ=0zx] mi* -c"}JFW4sgFl)V֬+bJ٦Y?N6O==}K2c`N40It9Fe"A|q )o0EviBɂaK~<,*QCИ+/.nSHy멣( 9L4L t"%ށ SAՕ%ufK_*jZơqS.xS컃7@O((8kbh9M[!790/#Di52CaJI >iBrrY|cZ^DNTkXB!-}FfhG6C4xs^LK] ?dπVFOX\ {L vȮPϡ'|PO[2e8ì/.#OQ@o#e(lSl%bVjnn#=D 0qg{gI &ZsϭKhi@ҦW,L$g5u3 7y`&y&Uq@R| eV_(I, YxNE`[Zq1K\LNY/iSg{YmRd=,}~dAI pX*$" 9Y~y‘je/j:|msnc5b(vzFD~V:'1~ W%'BC:&{'Wr;^Q!+ ƓЍwGM "wXAA8)3ޑE{%9[fiH,YM2< _-dl"/;OaBwR*2q/}r][gc1Aٷ#2d:q]~;чl{SXx@н)Rmg̵' l +ybW,-?\ ~":Yˌg+}NR8~:QniP;+^~dNÙORG-gYHRh9]P[:H搁7L$7GUk+q`RpQ.EӦ~]wu>g)EC 4kZ {*3p΢1_)M< }~ Q/!pS^{M=-k1q΂㍋a 2hRhYq.Q{e2@ me =JY^KMم9 ghPVb/5d&3&mZ ~]B1{GG AB zzic@c/[A 草-'si ILȥ`Q!t>w qC4¦ɍ$FM_i͙jjY-'DA~᝕HGZZfס d{~(^ `z4 ]>S,͹p^ikeXDn f]waԭbQ '+1i*;d7t9_ 3w5>2t 须klhdh#2 ֲ/ҷK†;z* jS9>e{` #GUiQ"QUoYt$nhCj939W>/WL+չ7Vaf[{r]]=2C4 xܗcA|]~ELθ/Le,l3q.s΄5rϮjZO_ٚlpE]N/fW)b;3D^YH\_:,V{Pj96\Lrii=ћ@X"! 'Б(M{fϓ^/setXu h/&' qZe=Xx!&x" VFzvnj@ S ( h.$>eȠ߻FZ,Ra!Sq ̮L"Xs)D5p_? ]Q CoFغԢjx7pH0PNh CiqjI m~oyi,tJ<46N?οߴ sjpϐx~Ejoo@ɡ"WcљL(R'Ŕm4P !V_B=k+o;^LHY,OU7ruQx bn3qHIJˁG-;=@ӎ5)$.GsjA]YOi!Cn:>q]YPE'I:W\k"CwUXB簃g`Mp" 'v"^CcF2Fd?nlyWF1 QV^B^)Xe˪1f5ˁ5|7j=YVz9{ 7r(ξ6@U0(hMh΅15P奏- H!K@hݜ4"rJ 3b&#EIF v0) U#NhIsFON`X" rk6}#bn<=HUYt7 . W O26%d_-N8Q*(5LX'ɐ3o|Uc?zxr[U)h>_M2JX9id: 42˺+ w39QF: >n)hXMioLt#>m4ej,kȶⅨ־b,'IS17V< s*dn9OGqKD1`Η B[3i\Ąw@ 5ybs}9rʠЗbe>85ʷH}3P:;|$|al27-jgA~  $*PuL ?~bLRF4ǡg uTīZfZúw*}/(>1fnB0T.;RO-3L~euOQPRӺ\E墴'DOuZò> ";n!-3T32[1 *5Kci7ž7)J+lsA}]m>~XmԯE(gI(g%N 8lKLb(xD sEu3j|]^*bXuu?!9ޤjQɾ'8fަܳp7cRS$2S{4 ๞LU+;j}Jx6aUIbU*ŶPƋsutuZHGOF2v8` \հ8ht=}'詞G^Wb,ɵ;Z3^lrLLS/F?SI=vBx:bwPm D3{G~i7:!?_-V Ydׇi=) "@T ydgtIpyO=N'K:j>bRKs^!gHW9K2A0%lU,V;0_1QUG@% ڲNz!9j3 "FIg`Yڥxq.b7I P$rI)ؿ+'0Ry|6E@[wjB;h  Lhxpkk]3Mgj°D2)sqfQbd{o ^Awu锅 ;}/!Fv,kaaV;YGΥ,u1\RR`i| G}l!<niWVrmmE):ҋvc+iN㢥"f[wiS 1{$$lx<&,&̣ 3_H9j @t{Q}`WG_*[QZ+6Y ,^:?y.530#2ǹK0Y u=`oS@4C;+PyvO,t]A]! sIa}V,xvǤ˳}ISr5CsN.|`(]NKӚlK.)u֗M3tG_J\cqL5ʭ!\xJ&ۧ[FX?b?TAH3gK [ ,T% hs5.\53|| r '= QWwE@i5ym.7})L#i,gQ4` Fz{.74qgu%)L K a4E8++g|i;vMk+aߍqʹFdYfQ*|j:ѿcA d*G# 0Yë3 I?JlW+ۇe`]_F-CDIRb̄"9!X(mv VMRg`V~nŧTa (ekc\=OR'#r7M!HOg8+Fk-:I23$IeƳLj΃:*}YKK+FpBqI?x& =TK :eKMߦ>ٖx;Fi ?M86Q;*@Arl:X=5G._ǃȣBg&+VQGagiMߞў޼qw.D 5 )p{МE:f*qP ++8XMG} Xi'`^c#T_~ )- %v X;S0% UbĜNa-#qܚ?8 MQWT -~ Q='s8魃0Zx|h;cU>JqEIBbO{; %SFS^]Xj})CW̸VrlQ'lMUH$86[k-e߼í|H3 e tᑽWƇVX#^=QrmjZdL:;e>di-pOvZЇ K]o6hϠحuDF-Ѣ\;l6ч.⇆-ńpƇ1^ܩF(C< *WHկ⤟.e~O}&r7@+ҒПMrX |eWiIKx!Ɨ*$`o\DZXr>u0SYPpYR>m?:Q%툗fqx h~iȣ2a᭬4_ٖ<FÎʆw`yN;n@\IrfPϫ57k\TmTU`  }zc#ՙJ̲8V/=A kM- Aav$ťyH&&j($*=#n.}u4=ئ] "BEޛffpM'v˘ NqMH;cfǚHhU !׊d01Umb2Ka(s= 2.q*؋boCr0=mtLZbj πm-hUE7O ?+uPtNWepȏҊ`s~:mؽoT7ۉPL3zʹF*uf\#WJ= C'g<& I7K똺λe\lNP# X7~\Js O͂JK]jQ-q(߇KuZI[Bƃf]w\ ?VM)2&ʕq#$[]D }ש50Gtֈ|ee} a3]?J6BIi/^"{PO-eg( dU&ࣷs/7eٲ'lPSMib%LVMaLd J.+=8QfQ7ɴ Ef|  35jT3IWT_#S+%MHCF@gQ,^=axzN@kn?>G)Us~ |ohpɗ1ƪ^瞉8cw]YevYc[f?؆Zxgvš * 3V;=^`DUu,-t]H=^]AG&rrH~XWî:)EYr7C2;7/dL#%5ΑW\Ҳ4kVa+pԽ'H]yp[|_;oatq$s& 97ppv6OQ}nLJKVG?X9N FD`[Qplfתټ~wڂOKLhASa3D-WDZzu^:UcKAsc!Ե!xCGwcK(&;=!۬J2)N4G-إTTUZȸ)W"FyAuL-zv"zSS>Gjg .!ߩghs1MNVt1Ol '㸪QI`V=7FSUcOeFoyΤ{ bpTso)./K'Fk6\:_֟ `1~".4#; RB5~7}XtwPf$~k9x: !-Zs21$YŴFR b3TFci>Q;{n;96-|owb?NlʜNgΘȅlx傦kE .f)4̮+7y&ZZK0T/)\awIsf64xmM'VF&WLF)hQ[UMT7d0bScQah`H6v2fе>V{ʙpz4+-,4UM1;IhG"Ƣ NƤ5uM ?&:0LRv7턈Q [Z3^ L\N>[I *v"^'K7+̯L"_m6G+-nU;Tu(2|7)mdP@PLLg.qiZ#G37حIzSJik< FչzמĢ3_;X+c_8߶&n"80sH4~CAo̦XA2y>ac(=CK4]p4siN Jy۠UDCVQBɢȍ]Hсy>j#Nv 4+0ut\x.NnvȌN[ݬ1+!b6 K0 [I1F= TRдY6\ʹzvQ cZ$y(]\h`ǐ\Dp 3ucEl^2,hivO0^-O⦇3O+ɸ/ ūsx_.)Sv\sR/|fw4dD1JkHdM0f28#N9eyik!dNS2iƚ~)p9v٧h=;FCV[ՙ~<irWU V4rrբ<2&v#T6DO8w +gqvL*9X)$tl!#I%[s ;0ÇR?V͐bwKS.X)/tZ⟤/$_(K""Rh M<(ݍs<%wShaW ٟQ#5e8XSٶ'ZMJ1|zn{t WoFHO?n_fĭPa6m`Ża4cd0$0+'~Ga [1wf#LHZ?<yl*V?mX_3H9sqP`:;KY\et 5z B)>/L ϑeMpDc_\7,h7$/*AJ^t%b׳;/w=;Eܜ&-}N*XB{Йdg06r)S&E5"]};koJvYGq(/5^G*c<rϹxc3(^J% M@V&3s7M<<|]=F.`aTzx u2!8iTMոRܸeuB cӅKg. %AvRժtCwI9?F572 2@NFTi WߴNTR@ܧaƹ(8bxk?1 ,!BTYI"U :׳|>)92^tD"Fd_/N_Bԕn7P|Ʀp3k0y>@t(??#Q*٠ RcZ|s],hBE-+{2S ɻ]~Z"BP1 (56_Nn#]{lYbT"\˦|>}/g8Md ,W3l,TY"Wg]}7D*&AY8"|']y9c^yI%.s-cC-(stXZ /PUqg!ow)K4#6@\L'<[@|Xr)j *+ HDp 6J:Ywni%1M{+;5LHʦ!I~g6<+ WAh!~r%M'`j?IF R~[bC/_wZLT1]XrshQҚs9F$#wObW>i!m^8a5wpsؼ^P`$"@m^u2cBX5iZ0XCPyKL'2Q,_`6p/.d,êl V!Zٜa_bj6!˖ƘԂ_Y;q*r ( sb)f}|j71AF{=5m~~N;vd?fZ9.e')V#b=O$C9?-{Կ)Awj:o·C`ݤ))0F#OǑk,r& eN=3a0rhuOc|^Ҁͳ&Þ;>JL㎺:owh 7W#c>yo;7aWy2m;ase>VDfMyPHvʂVƿ8x6L}n\5\G$o4j@N)5>%`&p,kJr # ;a*6pSfAXy6!t4!%)0d3#̹ji-8=+ʆ|T[C}Ptס\)D҇je*1LFouclh.f* J?SH>7#bt |  ƚ`_v{OPwIC l QXH]krMJh"1X@gົs JȒM \TI_DwcŨI ]*ܔo# V>瀀U49C%wbݍ) sQSqaBhI>Czy|xYҐN c\۟s^n}\#9` c@J?Q#+1s*0$X:9Njx$cRßi8/Qk ts2P(o8Lu5gywE5. 3{8RHJ GdaQRTs-l0#eŭޑ,UU.cs.}3\y,pK#!݄dj̢t:jcfYLcAJ llfо{_1_SU!`d6 y?'QxH܉TEqeF5Rňd㘷ϹWRhz<,E\0zu|LKپPL:9@`k~0}j1q'~' 3Yp5ɑdҒJ7vv@35iS.i`|+A ƑxN0A?M6V\8TafŖ6yBnywX5S%ФeiT5T^A9tX!+Ml)_'WP!d yj?_U>?)qŜyWRG$ kVqA4.}({ϧXf~S!VGb,Ÿ*oƳ׹]- Zz R9ۜdXUj?s  W,^^אL7 )( &O]Шs $>%3S԰3ep8/%9l 2KVYMł#T2<а&,cyfCi0/V;k-@p}(JDRhk9Y%?: hߪzRLCv_ď֛+~,!u8)DW0|t6C[OS*V$9\bY H;2)TO|4td% f`L&HF>9,Nڥx*8^H\ 7vѦ&WK.cG hMh⅗&GY H×,y ]6aeF͑rxa'>X s%/j(>_G9 *nv]4HmZNŤFy&4FVV@x`HCwǐ@gc(4@6`6]6^)Di'2(g.`b<{'ՖեemwݡOc}~/H~Zyy46Ҳ|}HQ{4W6\ۂ\az<70Uо :GCN JZ|E!Vm 'ݽ ̩$BJ$wkV7"!Ӳ$ gԞ¯+͡Ֆ14[{IaĽb' <{^|H_W™,h Ms<_,w綁ފhmfy sΜ0›E@YbiJڀ{LN'i+;tJ,TfwK>gcVNyݸb"tbxQ*HܜFAd'hBй0a3&n&uf ̌RepnuAǞmKʽe'ˁGq}YV!9Z!{UŪC^yn6%jQM|au"(pq9sm*{v4l!aek|g36דz*tbQ$C'`0P S$dcTR]meN4pbB "ɍAwnr]x>{rta%簡tDch+DHO/RBẇGDUE>eP#ǎ%@{Cͮ9G.vb4Ɂ%ߓqw&uU$BG hH|PR쌶[UGY!&.c3fn71 bNzr ie` f1g*"f.(S'7߁ ih gĵc|*K,zЀn)b)P][ON^s^(1(یW q5(Pm@$Op(V/_ qqi_CP; ʣg 2<҆ kΔ'87v}V{X@K{wp?@eF'!k|׻<JS:  Y;~/z^OIV5rZ9nL@B(WP.ӐlOL>>vB'Eiu!]a|]G.NXNL!|C<\V^ PoPchXʰ ]ⱓ6(yon26tQɹ`Yt牥%Ι6`cP_ pS + xk80즉W"_Zji!;OHO&kk7hHTfX}{I~ۇ,YVL8=b7j$4qj[%AՃ LP\ D;!*/"a1N})S+ߒG-v \PhyśJ!:͢L C-9L_X3Ǥ1s {m%éeh{#i[ {U?WmE>fXW(ܖOE⋍faw7Y73EX΍IDr#l.{%PV4f#:Yv528 U!*sYASkwNFjg64*ߗ) #9<*M; `ڣ9TV?w1nKgJLj!FK8򉢵\Z`To[rHRNT/TPܢI@ЪK!9Z{@gkқ_!24uS!ovb8,I]FCt( l-0jw o*I^7D]&Jx[e6h.ْԳOݍhF`ܱjǞ! :m.mT6Uh6ʊQqX)OI.t0<4K>r(\5;=GA#b?[7wS0[bFVACe*+b=u֓X12ۻ#nBGIv5Q3s]@&n[9|l%ҋ ^|::cVu:T+@()6ӆ&#_'X h]|Wm+<4%&OXQ'YBHAHIgc~9A{ G3I0-X {A3h%_Oh|BLzTXs> G@h0b``[W' 3$)ң2C) K_LJ `#Z>BOo|q9A7'wbQviQ2~C+* = D ., NCXd@(dIG$u fO rŇyTUIJsU7Њ7]76Zf7 NeZxR35濪ͼqLV+H؃@4-6BjTO>lӧ~~ O!zT`e t2^fӺpS/s)$>^ttРm bmA}ޚQS'(P#3 f ŗs_ğ?7듘"'?7}:mb9# ?4~!*[oZL{}32t{jcd5r+C6|]R( D֯Rɣ JSzJqs:8-r'ʓTWƗE&:~R- | KihhL aPݥ DdČP΃KM^Z ꩙qN?#DVwXWUFԷq;m0.%n :CS+F !QC<:| F'DTSVD8IFBq ˍWS# EoAbdVaAEW>-ɤ !(rEވϏ|v}=ذ![ڇrUA6.5DCCoyf8O1X6ҏczhKZ1nv4Da=|Ж:IT!3U^ V(|b}ёdD{[њ⁸V逥EwGCC̀Uݎ͎0遶 YZ