util-linux-2.33.2-lp152.5.9.1<>,ax 4/=„lF) LvVv1 VjY)մ-sQd*]t٧ 6ѬSS$z \ꟍ)蓖9ʙ `*6hx%0Hh#Y Lqj1R.\\B΋w ~/q,CC[k^E:0 rikN51mql(K>|^~NT꟣2n(6)-u _s2~1A*R 䙱E>Q?d   G +4E ^jID  "H (  xup ddGd(78c9 c:c=1>1?1@1B1C2 F2G2(H8I>X@ Y@ ZA[A$\A<]G^VbWcXdY:eY?fYBlYDuYXv_vwxyTz8HLp|ԌԞԠԤԪCutil-linux2.33.2lp152.5.9.1A collection of basic system utilitiesThis package contains a large variety of low-level system utilities that are necessary for a Linux system to function. It contains the mount program, the fdisk configuration tool, and more.ax 4lamb78NLopenSUSE Leap 15.2openSUSEGPL-2.0-or-laterhttp://bugs.opensuse.orgSystem/Basehttps://www.kernel.org/pub/linux/utils/util-linux/linuxx86_64 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 raw.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/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 raw.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 if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/bin/wall /usr/bin/write /usr/bin/mount /usr/bin/umount fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/bin/su fi # # Safely migrate PAM files from coreutils to util-linux # (openSUSE 12.3->13.1, SLE11->SLE12) # # coreutils with su were upgraded (and su removed) before util-linux # with su was installed (see the Conflicts above). If the admin edited # the PAM file, the seemingly no more used modified file was saved as # .rpmsave and the new clean file was installed. As we want # "noreplace" upgrade, and the contents of the clean file contents has # no changes, we should restore admin modification, and rename the # clean file to .rpmnew, as it would happen if the file was not moved # from one package to another. for PAM_FILE in su su-l ; do if test -f /etc/pam.d/$PAM_FILE.rpmsave ; then mv /etc/pam.d/$PAM_FILE /etc/pam.d/$PAM_FILE.rpmnew mv /etc/pam.d/$PAM_FILE.rpmsave /etc/pam.d/$PAM_FILE fi done # # If outdated PAM file is detected, issue a warning. for PAM_FILE in login remote runuser runuser-l su su-l ; do if test -f /etc/pam.d/$PAM_FILE.rpmnew ; then echo "Your /etc/pam.d/$PAM_FILE is outdated. Please check /etc/pam.d/$PAM_FILE.rpmnew!" >&2 fi done # # /etc/default/su is tagged as noreplace. # But we want to migrate variables to /etc/login.defs (bsc#1121197). # Perform one-time config replace. # Applies for: Update from SLE11, online update for SLE15 SP1, Leap15.1. # Not needed for /etc/default/runuser. It was first packaged after the change. if ! grep -q "^# /etc/default/su is an override" /etc/default/su ; then if test -f /etc/default/su.rpmnew ; then if ! test -f /etc/default/su.rpmorig ; then cp -a /etc/default/su /etc/default/su.rpmorig fi mv /etc/default/su.rpmnew /etc/default/su echo "One time clean-up of /etc/default/su was performed." >&2 echo "Original contents was saved to /etc/default/su.rpmorig." >&2 echo "Please edit /etc/login.defs or /etc/default/su to restore your customization." >&2 fi 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 raw.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 raw.service ) || : fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ $1 -eq 0 ]; then # Package removal for service in raw.service ; 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 raw.service ) || : fi fi   rI ؈)h8X)xhxHxHȐhhhX(8XXx()(88xyXH8(hI8xHxYPh8xj(HX hyXx8(+8y(x8x@((8H)(8H8h."sO6* {j /@<-W~5I4189q  |{)z[ w&f" y  9 6Fo FgR I a %A5 $[  !} @ 3a9 f n l  h o ;` z%8N218'=R  2:fgR#72 Z*3&  = U KA큤AA큤A큤AA큤$$ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ,\\\\oG\oGYSYS\~KYSYSYSYSYSYSax ax ax ax ,YS\oG\oG\oG[\oG\oGax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax ax 4d14780b83df63a9f340f0c954e30205c814d7820fb49304aa032dfdbd6643902b8fbd3e79359f3f346706c2be23404b63a13dd283ec2844f58c64251cf469466f4ed753379ef4cbee5ec667cd35a40e48a1b00564df64b6b1653664184e5016628c28f88b7581a346de64b27527443321e34a60e80df5920ae9a43777c2fb93c3ea012930f7f9f2b9e3041bbea0caf731a5a613c3547addad581b7c209592fd6805d57719e0c228934166892750c278b222c2562b31f2a225ae1688614dc8a552b4d0e84fd0fb35e9263c319503e81a1219c7e4b52a6cd68c63372d2fa7116194b45d97b95571c56c29d9f5604503fdabe4070df1d5ef2bd159d3c1710c370f3266800838dd16a28a315517f0ac00fcfdab774e062087417548201fc8bec1e83a8fbaa56802f5786cb0d63b4e557462179bd7416e717adb8aefda9245f9a0a66305d11d5a4181a7026f3dc1d58f688a6d5dbbff8cd0b0d13d206e4473c24079e87b65aa9d155d4e2a397cdc9403f94be3523b483378089184ad57238aa1cfc81f6e3785fe965789c9d8a639968d0dd3b7f0755f697cfb9496d7111119125b25a6249e599b0003eb6fef6a1ce158a8ac860085b6081057f95759b77d4fc66ae544b984fc50a5d0c7a577f47db65f7e1deb67f03c5d5cba169184d0247765547bfecfdd30034fcb3d9da6fee3729a4c1badfee0cd27f4811796f5929a9da8bb77c4e8f2eb8085c3607f0c2d1ed053b5a6b2f5c0ea403039a99ccdd62ba7c5397de048ade2f0eba3cc8f390b874e40c3e9bec99ef56f6c7e1be41c1c8316792df87fac3fa158deeffc94f482a78410b49979e5e34bc7d9213c9192c2f2597ee8030a40080f482c8d7aca5d43fc59bdd0b7ab7c02b0201cbe9ac57c876fab7cce3f6f6fd14c7d7528fa0b6f397c71670b622100e34853b09063760be007afdc05c5b882e6fd45253b591fc4120589caacfd16cd4078356adead54b1ed81eba05199c15b9399e2629d03542ecbc805de48fce3a112a9ea4e6de9ee5cee97e745e162e6a7d002e8eef4a9cee676ccb4b43f2034076a147be1042bea24025486ef08fe8ea0f9bd35ba2e1633c43992b34906eff7528259ea6855993c245ee08dffc8cc52af1041b53521ba7c404f3a5b8cfca8f0d764bae5ec280f97ba43b1e959ddf02fe140b1cb72a247b9d8ed593b0bb578efd8f4592dc0d1042f36d62dbe5bd4282c0ed0ec27615eaa86a4a3b8cff1161f8f8dc4a4d7c1cb115df69a32ce601aeccb195072b7d9315a17f26912cf897391f42ad5cf9a3f91d0aeec05c1cf348ada658715ccf7f6fdd6d9703f7d2894335d08476329be00c6fd732a4f5d72426347056020523b36a5fdb44aa8ab010b9d45088799aa3d67eca808c0d6ede34646faf1e08bbeb36491a040c342944a93958255dd42ec2f1567bb465f1e34454f303c72c023fb6beafb18fc738776b055283c5f272c99285841e62e73eac79724e8d75e8ce52eac160c4cd19fbfce75c4d34d4c937f05bc3f7ee74bf7f48a847c13b7fabf139b8951c5087301fddba303d94606d3acce1d7cc6996234a01eb457b0789263f96e3cddfed58dd5554ccc01e8049d6362ee7f425cb8bbf19f0b5dd720341f2da2b8fa2ebd30d57acc87a28b2e7311acfebcbe96a36adedd9d927b60fc8c106cb5a19919213bfa80256d5ef18b52281ed7e4fbf54dc94151c361796e4a70950e3308392343284c4f8be951140a5caf9df611db8f0d8b24c8ea6dc6c577fca4331d9ec606f3020a6cb92d888fe29dabe8ee1205f5bbd96420ee98132c117aa1343644a7f1dd8e5034c4bf44c1b22313d3a820c7cabab1642679bfc055a450e415ea5ece2ff059e93ef79f41c39038a17efdfdf40df7904553c9db133e7244043a6cd4dc388f3b7319bfdeb72eb79add5efa829ddd134010c1fc53024bc6981aded70822e79f91b9e5b13af804bb2c3c025ef32dc6bec11e467cf0384b75ac1b0f751c2b8cc5b3ba3baa37fd1ab7d54ff0331892065e59800213074c1ff9a093bdeede47a1c634eb2d1256b0fae47b1bddf0804be35feba181841533cc2e0051553f06abb5d8465453f7fe7331b409b57724dcd9f4d953d63dfca7251c1491a81b9af860f69f38116b060d1ac0fce714cfcc1b220a1a80f352722d796b1a1762f40c8d3e71e0fbac810e1934986c22cc76895ca8a693875abbb5f8428cb4548f192cd4c936c5ced3a1e465767e028d52ceb963bb7ef04a822c3fe42a86ecc0c5d3734c6345cc5ea7fce174b7a118b9ae88999abb468a52df9ddbcc0379cb377cc0a883b48cc847281b91b4ce9a36452cd14ddbad7a1af52ef729f3f2f5f1e6c8d2d263662b70b0421cc8e96fe186ca1c2246f1849ad12e7d8baa74149ac24fd3d9885d95f67eea4fba50b2b31535cba601d3e69239f79cc89e435012f82ab6beaa32bb017eaecf6a9065680434fcc984c227076aa4cf3305c723e8ad36cfa14a220b0ceed6c7e38e35dbd17a5029b86ffcca41382e296b3cadaf928fa8fa402ae279aafff8ad9b03ae003610bc0a614889752602a6b18e1034b6cbe16653150b84eb0fe5ab9d67e3fabea314b3ed64dec58e2105a85d52e750e44ef71c6b24d38cd1a4d81b229138a289a8a749adf3ae7a12443bd6101d871f327cb06351add4df456c155f9db5baf4c097a025d897cae0ff373b2956acc5f578683fe32c795b60f6d5e0f183ec8c53323ab8ac2947104c988bf0ed9717369d5e94a8f5cec4efc5536ef44f96c690f0b7c1ad6421df637f262608c32d2d89b7d4d74ebdb0144732586c2e4c2c90fad802f9dde44d4c36aba30a43e24986e19466e33ffc4591a2d21f5d596adb4c097027bba53a3cf182b320f090f5bf7b31902ff7141254934df2c48d63de5ab15649e9b939de3d2b271b6d014377bc88a41792bd3f86f1d2d5807193196c34838fa1ab711ad1eca05c2df5e7aed9ef0e7e5cb5b1d316f2ab1c8d961544f23c683d021919c414b8508167d22807975a0ae7f771cecf3f9bdc763ed550f53e90660a86f20188366624f0d07ecac7e82eef81c373be480eb558e203ee640fe2685ebc981da81bd5019d3d472fcae91d58f94f34395d5026ea378947f0f4ac737dc69cd01bf63f4c9797d86de7b23b8c0584e986a97b98640e316f71f2adae89b1a3a8c81d565296566def7af0df063e9d54a147db67845922c6988c0176b7c0ff574828034f64aafc6894cca7fd298f7669dc6c46efcb8499bdb50843025d686632315464e251f965b5f7a9e3750366310c1e46e626b8ca14bf8cb936279add0d6d5de2176ee8941db4e1bbdecaf884a96c52106ccd19a8aba1445b8cb1478391cb1c8a0c56c6be3d80c4f96b02c0871769c25c4dcdc320e3ac8099f409108277cc8a697c4d2eca0e51fc31f09c78491ce7e2701ebe3e5308ec6bcb2dab32ecfdb4bcbfdeb45b51b5ef4bffde857489b0f195f823fac623fa91a47208972d5a43cb36cf80223223b3b51986a456b80d36514db9a395626cd78b242f99febff50f5fecfa74556d90447166f8f2e25294fe4fc02814810ee02d6fa3a9cfcea8a4ee8f6faba0bd86215926baede7519775a0b533798a883687d9eafcbd6cdebe7ae743ee505ee1f04679dea986eebb7621c78ed469342802000f2fe6bd85b9b10b8c7f5b06a1fc80f3d03fea8bdb40ea65378e5ecdb9b5b1c25d891b1650974850a6f569cab03f9c033312be0687bcf4454e7079219456a74c8aca29c6278281432cddeb250ef1b3ba4e5d93e4d1bfaab0ffc21180dbcd0fe185804fe874ce284e4d38220b1361a53620e6385b58fc343bb6ed2daf96aac9bfccc828b274f32979bd1cd0e166315cec359207fd6349422774afba71368a168a06f515137170c7774f5076adc1c2ae32413fc7b176dcd5577d7a9bb1ebaddf21f16c90ed14b8aabbf54394821b1157db36df17265f1442cf360e811b987c060bc5005ec935a04349b85b8f2893cdbbe462b747f950b56ee11c3ea70889bd597473120cf34dd6996a2a1b351e7a43b39f065abe7d15c0eb595533a6e45f4befd9d88b86a967af0540cc0d34bada7c05cb1d25ca51813183f88fd11246071f21b4cfba27e0155bf25601b6bfd2670ddc3f129ff72d58a4ab7fb4d91a88d66b93756cda8c4e47e0cf6396874c4c104e0da41b5543ece9624a7a641e77eb17f0a3c1abc522e7b96ed605111e42c94801a3c1e9712c97a2cf99629e48942fc2518525aa66ebb7de439c74cdde6dfdb85dee861b9bf52d89c53cffc7670502d550b84ea20535590296d5400afd7fac8453f9c905c9b1da6155848c9a1e0abe11122486ff53a6e9f1fd19e6b8563d3de18a0d6a532e638d7a6ec447d427852d4ceb9dcecdb05e79ad29f63b622763c6eca62ccb30a3b908d125a0b1204fa61a45654f3cdee5eeb230d3ed82afdfcf584d243194587273dc8d0698053eedaa7182d56c8938694ef23fad7a2072d6db590629ce16d3fc8f0f227e85ef0337d172f16e3e639dda05aae5ba306ac6de37efd4cf759271a078e652c39021c9474420bf1cd882c0efa9ac49d38b39c3e89c57931d73c0d17707725869009d17910b910a1c691ccd50ba799b9211afd14ef7425366dd143237098158f911851c4e15effffd70f73e65c55bf33a1752bce02298ac4656c2901e551d3062d3437ea6f44a81d8fb8eaeffbc4ed8c1c53398288b2714a8fa45df130ad0e70dd944905d6c5a3ed66f9a43811c5fab87488615774107b56838bbffa20308a926e4fbc8975dd05ca081d961bae84a030a0f5f8d1ed79ac7a5063315c3befa5e0aad05166a14fef902df52880bd61999a10408f42bf72e64f4d90a5104b9b9f43505f4ffea326110d736773bb5c598518f0d5d92604d754d7e02333f1922970b6565147e67ff687a06389a1a1b3117314483d1ebe40e55b1e9f59b7b19a976ba35c8ff3c08fcae5200c1eeebfa33d5da4e5f4daa57eee72fc7ac5644d8cf314c930de0c07106854349f1e4481ca550b39cc0a8134f838efe4a4d24c0107cb314abc718ab4f772255de02b2dc88eb07a8070772eb432fb979583ba789770cd41a9c2525929231cf3b9a4d685495a4c42a94d6ea38ce92a4e620e7f6be63f570b2f1191ad1b118662bd4bb9a37918425ebf231cb8fbeba12099ba0c42944aa29ceb40688b4ecff8309e615e5a0f0d1874bc9c27d410f8c85c76787616b29f50cb5946d3049a1f8b4fdb8d8d4aa840d555661fda65d9f38c2b86aee85b218e0228c9ae065d2443cf5a4ba29baa38b89decefce3e7c6c56fa67ca79243d3b33a6f27b6d0b59d3eca36ded82d1d675436759ff02629bc3795f0bf9131229e247fe5db0fa92f3d118a298ea2940d4bdfb887d640b122fa17a7b29f63a10c2f2705900650725e486c6313080b664beeaf564cd47c86a09edc2d3a4b8ba6e9ab9a5538fa3a5337a0e0cb1747b7d1f2e29afeb781c734bb1cc137eb9421f858d473a70018590aa73de85e3ee46b931811a761badc8851eb6f1c153df1a07c9c2f3bffa048fbd05d1ef775384087440a08c852ae5cec0990942b3e239d9bae331ea237d6dd457575746e382d07fbabf9ad70f4ec23b0db103c742d655c8e9dbbe3e2d59f1b711abe6a241c91a8211895e624bf20f342237b951779fb457d68cc4bc7900e6db044becb5419efa109b77ffadf32a9db482f3941d0d22c12b5feb8a73c71489f7bf83693a9c3b4d3d27e97d8b0ba7d43682f8dd8eee55591d451aa0b4380e1cd01eb887a91528dbbb9187ed14d2995b77066141f0a0b67dec82d554a20909466eca6a3e8f237eb709b7f5b4c6238548158ca1b6d13b515c4fb5107a6fc85ae04c8444f3edd75e98e42dba100f66bb1f0dbb7af9f2891badb28f90e7ab9b82647a4b982a284b541968f669f2a9f1dd13080d71c8d880e628eee89e8f493c979441692ef364e01ca8c8a761d381e4d3265f8264768dde09b2962b2b19f1dd23b5283430b64b762d24515dee93cc8cfaecdd8f38c8fd02a9a6fe9685dde62da40bafd69412d0da67cfa86af3443e60189319a7ac414b0777557a29e5c6ddd32ec3a4db494eea31c193bdf80add723b974276352ad7e8594fa6fd62210aff842736758d3d2671c17e06605d892743952021091a5554e9b6275cdabbf1820ccd18eff38d8b0094284ef7fb68c38f66fe337b3898cacda9485085c522d9306a043146cc52c780bbcf2c65b8d366f095a5cd7dd59ef1558c7d5bf8fe58581eb6b173f823b21f1e83598328de2d7695060a9f48f15ad5f492bd454b781d293dee2c123c3947df57f4c709365c624fa72cff775a5a4e4d051193cfc5dbcc2ba373d5cfe350604f3c4b79372ef4a7e494f02d1478a7f29aa6e2ac647acb10a2b1036bf2e2cb98e9627abb43fb1bf6ac561ec2eddd6f947b6246d18959c173aac7112e1e9b2d523ffe852f88011dd2e4836c60d66d90486e2f0b6eee9a962adc762cd19f7311b42d344cf47e49ef1261f90e4ff73ffe3f15cc6ec0bfeed0a2c87b67eb1c9890ec5e7a23d18eab733d16c0df840332dfec0e1d317cf5f9782d95cec282e649635b33e6449d67f664f74ae51994ea2ecf934319c37348fddefdf0f028614ce04cc1840574242bf47219cb0a8c8feb2b95abe8caac7840120e9575816d9e02dc8d08fe883293211f6f88389dfd874f9052c2e8991509621e742d39b65beb9489deef2b2b1f7a443f05acf11db46c80e2696bcb4fb7642418d3aec96f7c2931cdcfdaf245786ee3b6cded99e22fe7f99f914f660697f78e57850e4e70c027e73a0aa5074a28bd3a5d25c2564b37100d3ec98092ad7a2c698c1865015368d7be5fead7d3ad171def63cc78658b6b20ae50ed789c556f2abdabe09362169d385f9facf1bd05c13cf57b3f8e0078a5d4bcab470cac90909b105e525171e7bc0ad8fc60b0d98503f4d46dfad8060cf9e1cfd65593d59333936ba7e71a2306d7f0c33f9a7cc1f68ccc3232eb2815b93e68a92b4a98b89f6c3af9baf94aab2cc24f58e0e2c4ffc6e2ea822cdc093d940ff701db74a1133159cf159c9a182a46eb77ecdab618c52e373f432b3924d8e2707454731bfb20b7be1e41f5b0704536a549ebf7ee755d64bd9ef882b04ae84173dc8d2fc0706082e013fdec16a7b7fcc3aadbc0c3e22f87d8a818d9aa95f364acf0afdd61db90044908eef15ef623eb9e6f4598cdfe581f20b1b812650d961f567406ba6772a881f22d10cad9096093673513c8426e81594c44977e1a57e7c4724f2a5396940e79dbdeea768970b2960d067e8a2fb78e9379a1b1b0fa2509065959266652a2153e29fc80a3716fb3efbddff33a33590eaa20773d0b694e3daf55497287d6f705c048fe6fa6e78c2e9693af0e3fdcc13efe56bbbebc6c7fdf71a93b736ec0a304992cfdc981ef92d854827fe5192a04cfe88e68f48b3e1b320773de036a5c87c232e9d9d3521dc9ae4208726fdc8efcc48941e69111f761be3e779650711cc8c467b10fc463a333d3bba815810ae9cc1dd8b5c8bc0181b9721df8257b7d517dee24e93362bafa490b7904f37286f954a2bed21b256b3ca1fd8f4d9d6d396f2c0581a5a3a6ab1bd9ba3c12a6159bd370bafb58d73ffa1f638a7eb5648d857b7124298243da9467e1ab2c32244784a55d9032976319df7908163c9afc1460f2f78f58e0195f4dc3af4a5e92925aa23f3f6ec5c73a7565329a7eb8b3b67d09288e327f405fa72009d7e85b81a70d20c5577ffb8b418b6b0de043e7fc1b90a36595a7585f33e27d5028c66fecb8db2f01832240b70527aa93f9d93c486fd5315672633d2cc96166fedd130416e7ec9c37a87f8afe57dc906059a4fac04a33449ad64a9c1e51ad0b82fc6afbb07febd5650842fea214231f399d7f3bf4daa873021ae3d172211a649626f466efd53423970ba15d29d6f5ce4fc5d78fcc9e1cf77f54f0bd20cc47638b163a4b4adab20f4901ff4ef296cd2a9e3ebbb6577f2a14123adff1db7144fa503b2e939d9383055e7b893a7730e146dd93c32803218e67a52959c1dbcd2d3706e6e300cb28556ecd1257d1289a629ffbf7a1af3ad4b9350fe71eac2b6927a0e0ea228c4d5d809d96320c0c2db233af2c6e522ae941519a1b96f840f476647daa9d041a7d5db2dde0d80d3c99e973b1eccff8b259dc60762eff4f9768cda50c4e719c869ad6f2d9396f48c3bd4cb6c5bb90e847a3bfd4885b8a4a683c1058210fbecf4c291cdc3de9a968128e7051eaf2d7a07c81de3fd2fed08fe53b1bdf0b344633375273ce54bdb75c65a4383f2bf29aa9868ddfeb868f23ea5c5833a4fc9a642b78a83dd186259826304be649e7902086b8f9ff546700af22030dffeefaa6b13e9ebb7c24538adb0941dcb98a9d68a6426640f874cf09268bc51c0dd77267ef8e3d9948ff9c8c376a1b9ce911ca135b7baf9a5d8e9402d77ee0e8fa37c13afd9202eec1cf01b204d02a89442e8ff3999f14bb96fdf113c8a43356f2bddaff1613e3f66679f5f0b64d061a30e474f146163569be0692d25787a3625816b07ea00ef66cfeada23fff0016cf0a37efd95ad84b0d5ffab4735212694543267952b527e72f3ee4ac9b0e07d49b432db219bd26a3aaef626d1fe1fa53f3fdde633d2e038dc3d081ba609cb8dcde53a8e1a40b36ef2de00d17c7f0f1d58372d1687ddc0004c0758818bc845de2caf1ec65435297b8a9bd6a324ae3d54016e7defbf7259e750bf86b73c5f9b822eae158889f17945167c58d1c51c587e26dec022c31a4beaac423f4157b858a35a28dd6d3b4575f1111fbccea2e0e6fd329c9614c4c04f09093de21ba76595ef093bd70027df28bda53306ae6f7d80cdb4f1675690b89bf17298c9dfcc4c42c118fb04cf9cfa950cd3c8376e5ac5d2a289c03bf36a8f9a86ae160cffc6693112043bf33d2d4f99614c3019ba4c6271e87a588517a67d2c02aae0683b2ab45c047784200e6a435da9248f37d03e1a9db3c6d7539b46ac99395811c6d33a00c33ad400abff2765e0618bccf163759953aafc083e9ee25c20cda300ae01e37612eb24e54086cacffe1aca5a1805b9fa1953570fa4bb99339afbb25a6d701ce5a442d22b8ddabe486b46c9c9e84478bfbcfb4eb0accf290e7b158085cb0db7f679afade1a270f7e1e731a691717091ab909ce678799aef4aba00469550dfb05736640440686fecab2d41ae3c3128f328cc438f772ace3b8428c2be81f1bf061e3fe7d4c67a5c89b829654e36d2d73796990694d4b07fabae50c6613586f14e0c337507773edb6cb1b04157c0dbf03fa8a7f4e7213f709a811cf2015f4f87f35d5b21a35852c4c5e66d6489b325ba4b00ff4accf2bb91fe311cb2d1dbe0281e76cab759ca73f043c925b773bc716ea1e75c1f6d2bb3480863ccb9f145a222dee237f766901083fc3f0b88464469a8a5a630ce32790499b7690d033c7d73c40c861a5985ca23c4f1585fd69b48d64e54868b437b24aa682bc015f7761fedfe39badf1904691ba1c91035ac9decc4c0086a5c5b0e45a7c1880a818d6ae7f99fe074c6507ab0c2f1a1149781012dbc527b9f476ec852921e2cbbc9fbfc2ecc4c1677c58103fb88678e25e11528a1d2c3148ba44506574ddfa4cb939d91bd99e8e83b73fbe36119cdba9452e684012a040afc44337e73ffcb2b910180aacf09566b784f887e82255a09cc42689d503850447cb9c3d7e2f2a99f556b88d944cb9b15be6fe9a0d9699ee62242b19412f6543a2cbd41ff073f81159a4a5dde495a8dc886a4625fa019a41f93bbec6ce13f7de813fbd3178cac3953891b3c2629f0f911001f2e6e480c25aab193510ebefdd32f1977f3b0867a2bb57e225968592e801f3e377ca2f650224a43bd9e4631f4d68fe8cf7592fb68dab11d587e62d11d210ab1326efa7305b0c75333e9d3a9d85cbe4e3188622b8cb91e5035471dce57ce09cf92ac28d947f69bd87893161e36f33f176094a227c2072557871f688b3838e23d441d92772d3e77ab6e38e109b24b124b5650413dc8e80309858c4d74a5152b6f740a49c1fd1c4daffd87fb56bbc05ab9605c66201bd1282ae96033f1e66cfd0d36dbc62c21b8a616fdc62bd8224a5db8f04f4ab2aaf273e64e34c1ebef97847c8e775e667dbc30491d185f077a229727999483ed19c5723766ab1cfec330b9a4cdd6a2f818112a32020debfa8ca2f6f2e9a39378c1266f8b74f17b894e3c8df9e3e34b8055f94eb8386d1fd26ee32522c5f95d216d1772ed6ef19c27129db52bbf7322ee6830e21a49fbc72196922f57bf3ad449709a7e2d7b41f456e57672a2e3fb3d0859dd26a0b2cd98af139f00c19cc052f5a7d2acfa55b749e73156e06563bff5c701bbf91fd6966de541f04f17c44f8e86315d378f7cc390bbe6396d4eee31a54282b1f2510272818249d7953269290a422398c54cabd6f4ed079d4d4c7d5cea9a57667fd329e3f07d60785e2b92bf2fe9de094db49e063d96f1f457f373d4e218a9c2f3490290ca38777dad882a31faf7a8ee995836fd75cca7c81cde7bee356de8d60a3b5b51781b8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b8806439b718a9460fed5952466421235bc79eb49d4e9eacc920d7a9dd6285ab8fd6c6dba7640f00d93e72e92b94b9d71f25ec53bac2f1682f5c4adcccb0018359f60f88177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643e53348ce276358e9997014071c5294b36a18c4b34f32f00ee57b9acce0aafd63dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe5514335620e8f478ee4dc4d26540448d39469091ef1d8e3fbbbb8bf753206ceac747d43e7186cab280cac92f84348cdd664f23808ebf10e17a004a27b88cb828aa6d25afca78d31cce79875476356e3c1f29f40ecd7feb00cb084f4bdaced6b305ef00bb2d4446c260110608fe9ecaf98b972cd20115da5f9ba96ebf2d7004f746f6d7eb4712e93b19cd4e2bf3e573f58c0ce0c6b9a4216a4f2edc0560e72c3781ef3d33379fd761172d824c3178e31fa99ee9769aed661718b479dd9e4f4152d03157b758f03d1db5c2e9c071a31441e2751e53cba6009e48c3f4d7941a26bbe5ec40f4a9ac0515d018b254775271b0ff9e03c0c7fb8a7bbb4637a5e35469b1669aa68d664ef23704d0be745bac27e12a4253a65c2da14077009e3ef20d417607bfc0fd73f27b8f48312119002e879ce2cbf551e3160704988ca7abed7a2dfc8171709bb60141d6f8ca2afde124fd65b0f82a8dff9fc83c6ccd09fb70262920a2f1219b0219e834c539d215e5817cb7c34b991f64a35d64139546a022e9959d5c5a416295e0d20e54f9f8dc0661de9e943b8e883cbb4da8b86a8da7e42490fdea9eb0fa19e506405161c2d953724622e66246766e7b73d849b788c2bd3b73759f2c4c48e7c9c7b3770cfb9919c7b93bc3cdfbf204a3f2ccae25aaeeda1c230eba1a5ded8e21738cefbf22e0e04fcb7879820f521a945edbb73e150d39e69a937d8e0e5def4e2bdb31c876a76d782464bc6f8dd5b3c336028dd810121d52eac5f1ecdf107c2cd3c94eae7bf8f985394ecbb2e2efc9e3bf2f7be6c74b12b8139e73b36d4eecd6e1739bd54c46619af14bcfbd87f2022dcae2d330b7c62b37eedd717a4874024a5018a37edd5a8521dae838bab700182c23b2cff8b388252e5e5628db1ccbec6b7082753d6464377ec0f41d17ffda8520f7792f55028b62c4b81b006ee508ba4e1a283a55e1964c0976c438ac12754704b2e9a5de193219f438eaedfe207f145e1bd7a35b84d54ed3064f7ccbae82f537c8eb40878eeccc867e28170ce806163d620e2ca8e4736efb7dcbb1c85be97231fa6f341a0dd1f55f1825c4d23695b857457273c1902a1b901d7c6f8e1ed983216e7c4fcc34fa4fb5320b27568ea283f432beda02c0e46c6b5ccd52b88b6372814075a94766e56443103489fe435b10ec8fb185cf400b994a4c73502f63d6c8ff688faf076f7ba4bfb6bfbf02feb62a9c312ac933a54af674435601e2a6d817c005eaca21f214d71c25813dadbe7cbb553fbb64901ed73114648f19a5402a964035ced5c9e879dc1be9fdbb59b8e8f145406070391273df9fabefd38be1f1add1e4a89aa1345f2d1fc1ed37d9f25d1a31edad9d7d8acd2f3808c052c553b813230d0a289dd8607e3d24b67a2958f4dd86eb05d92ecc722640faf7084b4b4a4a0873fd87b529a429153caaa27842741370c31b688f4b0bd9a424b586f12655c127a05f0a317ef5b2b66bf65bfab512f9d81f51e5c8a58cb13f5b182863947f2cbfbdc29bd7604178cf41d6c5a6e94d060cafc6bc3a48069ca94e58d1a13c02afc0733d8ecba71e77d77eea40eeb29b927c97f767d881d0fb0806cbbf8ba116ea9231294c9918c02805a696f9e73430f4ff6a5e67ed5fdec97d3700863fdd0c9b0973dc986720bcc07aae05312ab9b9606891ca351f19642a32b241178434aed89bbc7b627dd97101a60fefe739f7dc17898c815beb058d77da45ce0915c0c1453050f1f3eb1b7ef4c7672c7031cd9058b8644ab9de49b0fc358aa148a3737afbaec2a85f9870d776e60661b362ea84ebe79cf0bfaa1dc2aa0ef05ec8956b3309fc5554a7259df8c555a1713d1fe50df796baf96e8c4ad1b3237b4b5bb25b8d6bc9e08120341ff9b357dfe8e61ebc9abdfd289b595969463ddc0dc9ad4faeccc99560e7d8beefc40876beb2281dbb37d3cf392295ecee4c8a5137477b879cb8366068d8ce1f0b9a910d9b0811e42829d6e433c51c151a0c215eb6534e845fdd41db9fab4e97ad6ad270177538524c6f67cbbedeed4f2fe8da2f1ab8cf96d05ea878ea7c8b8b6f1430a2bf41dbaf1a2d606942ca3ba600add07b52de8a4d3a0dcf8ec755dea89ca27e15a1791a437d4867f3b7512feadb73ce35c951e10cf3a296f69cbdc0f3878a90c8611140bbe6427ce9a93d4638a334bc156c1f253f3a601be2cf1481d8df2ea960a7589f1f60de6a3fe6e67240ac9fb9d11ab756e8eefa77fc218cad0f1d4d7d3e71b9c8bd95834136a473dfaaddcf3179bf10347c93f46b5f725891105f4827277ed5b51b27d9c77b39677a8ae86f2c0a8cdee3f292086b52141f0a239cbc0e99f48b7ec984e63d500cef0413f119a045551af3c22becb17ec21f4800e449bbbd9eb9be2200c93b025e1bb3480a8911684f2b00667d45d9d2457ff566e942417fbddfb27c07dfe75f92df2aa8fa8ff8dfbb723d91c5a98011a4a5dacb229769ec6778232cd331ac54fb925d473888d8b2639e0834c0c5ae7246e2deb1cc529c4b72922299459cf9412499881f8011366096f8017deecb857791cebc44cc392f41eb25e2ee2a6211926b7c398d72e685b0fbbda9144fbeefc7eccce9f288d82fa5572ee6065aaf80c7511239541a8e1c94e2f8c4b7da93023e58d6496fc965e55d498f60e22064a8084c57b0a1eadc377cc6b8bc3d7baae466855672ed41260357912b77de4f5b0bc51932bf6601f8deb6070933e53f14b79e1bd01beff29a9df222b42870db72be580eb27d4a7b38077686e9777c2e322b311c378a25adb267f16cd77c133f4d9597603750eb7b0b43570c3fb49f01129b0232a0bb741e436882a498321cf4fb435aa2e4ca95b16dc448a331d7801191de5249b9bbbdca42f410e4b81461596703fa32e89ea22eab558219b58f592dd7996e0677e8505f6c1aadbc7b8393452f28e10969564f289413ca59efd12598a6f282afd426f1097f2bcce8e9bc1493e38022a1f4b3c4d33ebf2a635f2e50dee551df2df277472b3e39d5ab204d1b850a00a7e477d31300be20eb13b07ebe2d4152f3e807c77dc40241850011024bbf625c8b09b5647d714cbcc1dbdbf45dc932387b99adb60db0b1b6a8f8c8fc7afa821df3972f07160553cd1b5687a7f640fc2fee62e4a87bb1b3b9273fa4cfa0358b0a0e581af01750922fbb54b51f8f98b7cca8306c2a02884d82445c3eef32f0d83c5fffc5185b4ae195d6a449b8e57c15a9ad16cbeb1d31538e9e232c89f299868ddfd3a4d54fc5a8c6f24baa8b29f8acb7d7d58b9fc0a72b727649007797fecf7e3cd8b378247734abffdc6047bb1cf7d56752b23b01f853aa02e97f5c2cf00b50b1f0cb1ddaddedba6b009a41f1536f6a09d695e2ce05bf1ef7811ac010e4781735b3d3e6ae2591515f952efcd15bf43d4fc590e408bf56ced51e4e7a3b82c1b358d724b09d507014a0b1df31aa11a209ec361c97a1744ef5743feb943cbb3e92ca5c170deef22a778d5a53d623aae30846799f31778fe0817f2bf9ac9cfa7201ca9164b490c1c9feec1a00208f1014f8cba51ab9908ce83971fcaff61cdd8c6645d6a27d38e349a3b0f1d4a0cc0a4ccc58f2091b58ffe301576aae346bac7f1022d44498834cfe465b5df6606681cda24c3d6381aa4b4dca1637273514e4664360201ee37bfff43ad350d522ced2a9a17183c5d44fd80228b72974fea4926b8977eccb914a8341dafbce18e222729c168536ae068077b7f448c270d7ebb2c7b4f8166dd15bf5cbec4fccb9bbc51b71779e4e96bdab075562e7827f9df8d0dc55be3027138877652c42c17646a7e07fbe95a1acd8b5595c3e206eb00a7af81a0e08027472c4f5e7caf13f35c3ab4a8ad85d4f615c2a52dfaf9464e74fad85b1c76e9009fe2162297c8a6a902ea38fdab368c05ced734a0f8736693eb3352a2bc2a03173233613fa921873bbb126a0c096bffe698480bfa7595b112441fd53bf64a158491b30c491c51ba595e58eede9ba7ad5607d50cc337519a57ed13e9975e6f5ff7157a6170eda4ebf3f02d5b0797455f13ae2e776c92eef59d7e5acf80bb9831149cb02c22d901e47dfb33c33a51731fea76c034228d117dff10331f0a12ffa53dab43e31df17f5ec2938014275523f4465c4b5d1b63bf5b9e1eefba31f96a4296d3f9635ee432124f45b4bc9cf1c6801f5a5533dfee4a6bf43bd1e629dd051928cf7fb7edec391d901d37be350115536240c3dbc6963886450fad67c176e35e78f086dd73812639f681121f3b5fa80333c963e6b84a5e8b39fe20b2f3d0c2b56284c9b7698042a6286addf1c67b12b45fbbe279365f965162d0775658a62cac4aed0df6696c7299883671d4414c6286cb09f4465dfd1f840643337995e7cf604c2f7cca90c0b7a0f2203e868000654c64d35e888afe759da938b3599f3210cf9935377086e5b3b391ebf2375aa6a6ed6c5e2d94daba0c10b10b8160c9ba619e55cae1113930cf743436a0da6c27538b2db2611ef590cd6cf128b65953a99bbca4c302b300b4144d6f96497297ec93396571bf510093e2777e9d181d47944dc2b3e217a4a270f1cc4602498927bf63109687da068bc0796a8b7f47a39c8ce940615623af25cb8125eeb56f7f9f17f9e9d50e6078b1de6c5fed69b76be5ae6476a7c7d043c0d91b3bda7a405d81953a8d3566a0fbcf4d56ff885e946f9e96abb01365d4d4c68d443e0580ce366abc363762e2e41ea27403a25e0f2715d608026f08827eaa7ca87ff557144b1d194713756c0aa65de4fd26f0bc2b26e299c0c7fbe3b6f574ed47c2ac644d45bcf07d752a69b0625f9f27724c140965c69959990269c3b82b0f8376031cb1dd26e7e92390db8a742c8b6207112a0d799dde6f9e8a3de7c74de7ba0ce1d71216e2da4fffb2c438bea6b636b9388784708af9ec11d5a70b505a2698f54d8c9550e3af39a9e253545cd042860637731f4e0a971d1d1e8cac3eb90168cbeabcdd27ec10ad1ffd14902be3b2fed85c4ac21e788a51e1dbef86c6e1ca3af17168e6f6175bcd76904a8279f88caed634ae139983f57d15b7987efa4ed24f33cb231c802728390f44b08c292fd44e3c44a435fbd2f03cce7fd23ddbbff52e64566d2fd7a067dbd26d11cc1b793f2753fcd946ad/usr/bin/dmesg/usr/bin/findmnt/usr/bin/kill/usr/bin/lsblk/usr/bin/more/usr/bin/mount/usr/bin/su/usr/bin/umount/usr/sbin/agetty/usr/sbin/blkid/usr/sbin/blockdev/usr/sbin/cfdisk/usr/sbin/chcpu/usr/sbin/ctrlaltdel/usr/sbin/fdisk/usr/sbin/findfs/usr/sbin/fsck/usr/sbin/fsck.cramfs/usr/sbin/fsck.minix/usr/sbin/fsfreeze/usr/sbin/fstrim/usr/sbin/hwclock/usr/sbin/losetup/usr/sbin/mkfs/usr/sbin/mkfs.bfs/usr/sbin/mkfs.cramfs/usr/sbin/mkfs.minix/usr/sbin/mkswap/usr/sbin/nologin/usr/sbin/pivot_root/usr/sbin/raw/usr/sbin/sfdisk/usr/sbin/swaplabel/usr/sbin/swapoff/usr/sbin/swapon/usr/sbin/switch_root/usr/sbin/wipefssetarchlastsetarchsetarchsetarchsetarchservicesui386.8.gzi386.8.gzi386.8.gzi386.8.gzrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootttyrootrootttyrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootutil-linux-2.33.2-lp152.5.9.1.src.rpmconfig(util-linux)ejectfsck-with-dev-lockloginrfkillutil-linuxutil-linux(fake+no-canonicalize)util-linux(x86-64)uuid-runtime@ ! @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@     /bin/bash/bin/sh/bin/sh/bin/sh/bin/sh/bin/shconfig(util-linux)group(tty)infold-linux-x86-64.so.2()(64bit)ld-linux-x86-64.so.2(GLIBC_2.3)(64bit)libaudit.so.1()(64bit)libblkid.so.1()(64bit)libblkid.so.1(BLKID_1.0)(64bit)libblkid.so.1(BLKID_2.15)(64bit)libblkid.so.1(BLKID_2.17)(64bit)libblkid.so.1(BLKID_2.18)(64bit)libblkid.so.1(BLKID_2.20)(64bit)libblkid.so.1(BLKID_2.21)(64bit)libblkid.so.1(BLKID_2.23)(64bit)libblkid.so.1(BLKID_2.25)(64bit)libblkid.so.1(BLKID_2.30)(64bit)libblkid.so.1(BLKID_2_31)(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.10)(64bit)libc.so.6(GLIBC_2.11)(64bit)libc.so.6(GLIBC_2.13)(64bit)libc.so.6(GLIBC_2.14)(64bit)libc.so.6(GLIBC_2.15)(64bit)libc.so.6(GLIBC_2.17)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.25)(64bit)libc.so.6(GLIBC_2.3)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libc.so.6(GLIBC_2.6)(64bit)libc.so.6(GLIBC_2.7)(64bit)libc.so.6(GLIBC_2.8)(64bit)libc.so.6(GLIBC_2.9)(64bit)libcap-ng.so.0()(64bit)libcrypt.so.1()(64bit)libcrypt.so.1(GLIBC_2.2.5)(64bit)libfdisk.so.1()(64bit)libfdisk.so.1(FDISK_2.26)(64bit)libfdisk.so.1(FDISK_2.27)(64bit)libfdisk.so.1(FDISK_2.28)(64bit)libfdisk.so.1(FDISK_2.29)(64bit)libfdisk.so.1(FDISK_2.30)(64bit)libfdisk.so.1(FDISK_2.31)(64bit)libfdisk.so.1(FDISK_2.32)(64bit)libfdisk.so.1(FDISK_2.33)(64bit)libm.so.6()(64bit)libm.so.6(GLIBC_2.2.5)(64bit)libmount.so.1()(64bit)libmount.so.1(MOUNT_2.19)(64bit)libmount.so.1(MOUNT_2.20)(64bit)libmount.so.1(MOUNT_2.21)(64bit)libmount.so.1(MOUNT_2.22)(64bit)libmount.so.1(MOUNT_2.23)(64bit)libmount.so.1(MOUNT_2.24)(64bit)libmount.so.1(MOUNT_2.25)(64bit)libmount.so.1(MOUNT_2.30)(64bit)libmount.so.1(MOUNT_2.33)(64bit)libncursesw.so.6()(64bit)libncursesw.so.6(NCURSESTW6_5.7.20081102)(64bit)libpam.so.0()(64bit)libpam.so.0(LIBPAM_1.0)(64bit)libpam_misc.so.0()(64bit)libpam_misc.so.0(LIBPAM_MISC_1.0)(64bit)libreadline.so.7()(64bit)librt.so.1()(64bit)librt.so.1(GLIBC_2.2.5)(64bit)librt.so.1(GLIBC_2.3.3)(64bit)libselinux.so.1()(64bit)libsmartcols.so.1()(64bit)libsmartcols.so.1(SMARTCOLS_2.25)(64bit)libsmartcols.so.1(SMARTCOLS_2.27)(64bit)libsmartcols.so.1(SMARTCOLS_2.28)(64bit)libsmartcols.so.1(SMARTCOLS_2.29)(64bit)libsmartcols.so.1(SMARTCOLS_2.30)(64bit)libsmartcols.so.1(SMARTCOLS_2.31)(64bit)libsmartcols.so.1(SMARTCOLS_2.33)(64bit)libtinfo.so.6()(64bit)libtinfo.so.6(NCURSES6_TINFO_5.0.19991023)(64bit)libtinfo.so.6(NCURSES6_TINFO_5.7.20081102)(64bit)libudev.so.1()(64bit)libudev.so.1(LIBUDEV_183)(64bit)libutempter.so.0()(64bit)libutempter.so.0(UTEMPTER_1.1)(64bit)libutil.so.1()(64bit)libutil.so.1(GLIBC_2.2.5)(64bit)libuuid.so.1()(64bit)libuuid.so.1(UUID_1.0)(64bit)libuuid.so.1(UUID_2.31)(64bit)libz.so.1()(64bit)permissionsrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)2.33.2-lp152.5.9.13.0.4-14.6.0-14.0-15.2-14.14.1 /usr/bin/chkstat -n --warn --system -e /usr/bin/wall -e /usr/bin/write -e /usr/bin/mount -e /usr/bin/umount 1>&2 /usr/bin/chkstat -n --warn --system -e /usr/bin/su 1>&2a^@a^@`T@_ǁ__@_~@_s!_D@^?@^˳@^@]@]Ik]5@]$]$]]@]@\\}@\T4\G\U@[[[[;e@[(@[@Z4@Z؄ZJ@Zľ@ZZ}@ZqZdZ`@Z]@ZX@ZJ"Z7Z%8ZYéYYY@Yp@YZ1Y=0Y9<@Y9<@XX-XXX~@Xf@X}@X@X@XXXn5@XRXGX!@W@WhWhW@W^@W=WX@W@W4W4V]VC-VC-V@UoU@UcUCjU@T@TTTԬT T TT@Ta@TAStanislav Brabec Stanislav Brabec Stanislav Brabec Stanislav Brabec Dr. Werner Fink Dr. Werner Fink Stanislav Brabec Thomas Abraham aabdallah@suse.comStanislav Brabec sbrabec@suse.comIgnaz Forster Martin Wilck Stanislav Brabec sbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comMartin Wilck sbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comtchvatal@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comkukuk@suse.desbrabec@suse.comsbrabec@suse.comjengelh@inai.debwiedemann@suse.comnormand@linux.vnet.ibm.comsbrabec@suse.comantoine.belvire@opensuse.orgsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comjengelh@inai.desbrabec@suse.comwerner@suse.desbrabec@suse.comsweet_f_a@gmx.deschwab@suse.delnussel@suse.desweet_f_a@gmx.demsuchanek@suse.comagraf@suse.comsbrabec@suse.comsweet_f_a@gmx.desbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsweet_f_a@gmx.defbui@suse.comsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsweet_f_a@gmx.defbui@suse.comsbrabec@suse.comsweet_f_a@gmx.desweet_f_a@gmx.desweet_f_a@gmx.deolaf@aepfle.dedimstar@opensuse.orgdimstar@opensuse.orgsbrabec@suse.comsbrabec@suse.comsbrabec@suse.comsweet_f_a@gmx.desweet_f_a@gmx.desweet_f_a@gmx.desweet_f_a@gmx.deschwab@suse.desbrabec@suse.comsbrabec@suse.comsbrabec@suse.comcrrodriguez@opensuse.orgsweet_f_a@gmx.desweet_f_a@gmx.desbrabec@suse.czcrrodriguez@opensuse.orgsweet_f_a@gmx.dedimstar@opensuse.orgsbrabec@suse.czsweet_f_a@gmx.deschwab@linux-m68k.orgjengelh@inai.deschwab@suse.desbrabec@suse.cz- Update to version 2.33.2 to provide seamless update from SLE12 SP5 to SLE15 SP2: * agetty: Fix 8-bit processing in get_logname() (bsc#1125886). * mount: Fix "mount" output for net file systems (bsc#1122417). * Many Other fixes, see https://www.kernel.org/pub/linux/utils/util-linux/v2.33/v2.33.2-ReleaseNotes * obsoletes util-linux-agetty-smart-reload-13.patch, util-linux-agetty-smart-reload-14.patch. * ported util-linux-libmount-pseudofs.patch- ipcutils: Avoid potential memory allocation overflow (bsc#1188921, CVE-2021-37600, util-linux-ipcutils-overflow-CVE-2021-37600.patch). - Fix ipcs testsuite (bsc#1178236#c19, util-linux-ipcs-shmall-overflow-ts.patch).- ipcs: Avoid overflows (bsc#1178236, util-linux-ipcs-shmall-overflow-1.patch, util-linux-ipcs-shmall-overflow-2.patch).- libblkid: Do not trigger CDROM autoclose (bsc#1084671, util-linux-libblkid-cdrom-autoclose-1.patch, util-linux-libblkid-cdrom-autoclose-2.patch, util-linux-libblkid-cdrom-autoclose-3.patch).- Modernize patch util-linux-sulogin4bsc1175514.patch * Try to autoconfigure broken serial lines- Add patch util-linux-sulogin4bsc1175514.patch Avoid sulogin failing on not existing or not functional console devices (bsc#1175514)- Build with libudev support to support non-root users (boo#1169006).- lscpu: avoid segfault on PowerPC systems with valid hardware configurations (bsc#1175623, bsc#1178554, bsc#1178825, lscpu-avoid-segfault-on-PowerPC-systems-with-valid-h.patch)- Fix for SG#57988, bsc#1174942: libmount-fix-mount-a-EBUSY-for-cifs.patch: Fix warning on mounts to CIFS with mount –a.- blockdev: Do not fail --report on kpartx-style partitions on multipath (bsc#1168235, util-linux-blockdev-report-dm.patch).- nologin: Add support for -c to prevent error from su -c (bsc#1151708, util-linux-nologin-su-c.patch).- Add libmount-Avoid-triggering-autofs-in-lookup_umount_fs.patch: Avoid triggering autofs in lookup_umount_fs_by_statfs (boo#1168389)- mount: fall back to device node name if /dev/mapper link not found (bsc#1149911) * Add patch: util-linux-canonicalize-coverity-scan.patch- Issue a warning for outdated pam files (bsc#1082293, boo#1081947#c68). - Fix comments and unify look of PAM files that were just changed (login.pamd, remote.pamd).- Fix /etc/default/su comments and create /etc/default/runuser (bsc#1121197#31). - Remove /etc/default/su migration from coreutils.- De-duplicate fstrim -A properly (bsc#1127701, util-linux-fstrim-A-1.patch, util-linux-fstrim-A-3.patch, util-linux-fstrim-A-4.patch). - Do not trim read-only volumes (boo#1106214, util-linux-fstrim-A-2.patch, util-linux-fstrim-A-4.patch).- libmount: To prevent incorrect behavior, recognize more pseudofs and netfs (bsc#1122417, util-linux-libmount-pseudofs.patch).- Fix license of libraries: LGPL-2.1-or-later and BSD-3-Clause for libuuid (bsc#1135708).- raw.service: Add RemainAfterExit=yes (bsc#1135534).- agetty: Return previous response of agetty for special characters (bsc#1085196, bsc#1125886, util-linux-agetty-smart-reload-13.patch, util-linux-agetty-smart-reload-14.patch).- Fix problems in reading of login.defs values (bsc#1121197, util-linux-login_defs-priority1.patch, util-linux-login_defs-priority2.patch, util-linux-login_defs-SYS_UID.patch). - Perform one-time reset of /etc/default/su (bsc#1121197).- Integrate pam_keyinit pam module to login (boo#1081947, login.pamd, remote.pamd).- libmount: print a blacklist hint for "unknown filesystem type" (jsc#SUSE-4085, fate#326832), and add documentation * add libmount-print-a-blacklist-hint-for-unknown-filesyst.patch * add Add-documentation-on-blacklisted-modules-to-mount-8-.patch- Update to version 2.33.1: * agetty fixes (drop util-linux-agetty-smart-reload-10.patch, util-linux-agetty-smart-reload-11.patch, util-linux-agetty-smart-reload-12.patch). * Other minor fixes and documentation updates.- Drop rfkill-block@.service and rfkill-unblock@.service that functionally conflict with systemd-rfkill@.service (boo#1092820#c13).- Update to version 2.33 (FATE#326844): * choom: new command to adjust and display the current OOM-killer score. * libsmartcols has been improved to differentiate between numbers, booleans and strings in JSON output. * fstrim(8): trim all mounted filesystems from /etc/fstab (-A|--fstab), new command line option --dry-run. * hwclock(8) new command line option --delay. * mount umount, libmount allow to mount and umount filesystem in another namespace. * rename(1) new command line option --interactive. * setarch(8) does not require architecture when modify personality like ADDR_NO_RANDOMIZE. The architecture argument is optional now. * command su(1) new command line option --whitelist-environment. * setpriv(1) new command line option --reset-env and --pdeathsig. * fdisk(8), sfdisk(8): print disk model name to simplify device identification. * column --table-empty-lines" allows to use empty lines in formatted output. * wipefs improved to postpone BLKRRPART ioctl until all magic strings are wiped. * script(1) extended to store more information about terminal size and type to the typescript header. New command line option --output-limit. * libblkid provides BitLocker and basic APFS detection now. * lsblk is possible to execute against /sys and /proc dumps with - -sysroot is specified. * agetty(8) reload issue only if it is really needed (bsc#1085196). * cal(1) has been improved and extended. * libblkid has been extended to support LUKS2, Micron mpool, VDO and Atari partition table. * rfkill(8) has been moved to /usr/sbin. * dmesg(1) provides better support for multi-line messages, new command line option --force-prefix. * fallocate(1) --dig-holes is faster and more effect now. * fdisk(8) provides access to Protective MBR accessible from main menu. Sun label support has been improved. * lscpu(1) provides more details about ARM CPUs now (FATE#326453). * lsmem(1) supports memory zone awareness now (FATE#324252, drop util-linux-lsmem-memory-zone-1.patch, util-linux-lsmem-memory-zone-2.patch, util-linux-lsmem-memory-zone-3.patch). * lsns(8) provides netnsid and nsfs columns now. * rtcwake(8) waits stdin to settle down before entering a system sleep. * Many fixes and improvements, see https://www.kernel.org/pub/linux/utils/util-linux/v2.32/v2.32-ReleaseNotes https://www.kernel.org/pub/linux/utils/util-linux/v2.32/v2.32.1-ReleaseNotes https://www.kernel.org/pub/linux/utils/util-linux/v2.33/v2.33-ReleaseNotes (drop util_linux_bigendian.patch, util-linux-cramfs.patch, util-linux-fincore-count.patch, util-linux-sysfs-nvme-devno.patch, util-linux-lscpu-loop.patch, util-linux-libmount-umount-a-segfault.patch, util-linux-libmount-mount-a-nfs-bind-mount.patch, util-linux-lscpu-chcpu-new-cpu-macros.patch, util-linux-chcpu-cpu-count.patch, util-linux-bash-completion-umount-CVE-2018-7738.patch). - agetty: Fixes for reload issue only if it is really needed (bsc#1085196, util-linux-agetty-smart-reload-10.patch, util-linux-agetty-smart-reload-11.patch, util-linux-agetty-smart-reload-12.patch). - agetty BEHAVIOR CHANGE: Terminal switches to character mode when entering logname; echo is generated by the agetty itself. (In past, logname echo was generated locally by the terminal, using the canonical line editing mode.)- Fix runstatedir path (to /run) (boo#1113188#c1).- Create empty /etc/issue.d for the new agetty feature.- Switch python-libmount to python3-libmount.- Fix local vulnerability using embeded shell commands in a mountpoint name (bsc#1084300, CVE-2018-7738, util-linux-bash-completion-umount-CVE-2018-7738.patch).- Do not run rfkill-block@.service and rfkill-unblock@service as it is just template without parameter bsc#1092820 bsc#1093176- Fix lscpu and chcpu on systems with >1024 cores (bnc#1091164, util-linux-lscpu-chcpu-new-cpu-macros.patch). - Fix CPU count in chcpu (bnc#1091164, util-linux-chcpu-cpu-count.patch).- Backport three upstream patches: * Fix crash loop in lscpu (bsc#1072947, util-linux-lscpu-loop.patch). * Fix possible segfault of umount -a (util-linux-libmount-umount-a-segfault.patch). * Fix mount -a on NFS bind mounts (bsc#1080740, util-linux-libmount-mount-a-nfs-bind-mount.patch).- Integrate pam_keyinit pam module (boo#1081947, su-l.pamd, runuser-l.pamd, runuser.pamd).- su.default: Set ALWAYS_SET_PATH default to "yes" (bsc#353876#c7); add one-time wrapper forcing ALWAYS_SET_PATH on upgrade.- Use %license instead of %doc [bsc#1082318]- Fix lsblk on NVMe (bsc#1078662, util-linux-sysfs-nvme-devno.patch).- Update to version 2.31.1: * blkid: Add support for LUKS2 and new LABEL attributes. * move rfkill to /usr/sbin (boo#1076134). * fsck.cramfs: Fix bus error on broken file system. * hwclock: add iso-8601 overflow check * libmount: * Allow MNT_FORCE and MNT_DETACH at umount * add nsfs between pseudo filesystems * lscpu: Treat read failure on Xen Hypervisor properties as non-fatal * sha1: endian fixes (affects util_linux_bigendian.patch) * documentation updates * other fixes and improvements - Fix regressions in 2.31.1: * sha1 on s390* (update util_linux_bigendian.patch) * fsck.cramfs on ppc64le (util-linux-cramfs.patch) * fincore/count (disable, util-linux-fincore-count.patch)- Combine %service_* calls again.- Provide /usr/sbin/rfkill from rfkill package (boo#1076134)- Add util_linux_bigendian.patch solve two failing tests on ppc64 (sha1, uuid/oids)- Integrate rfkill-block@.service and rfkill-unblock@.service from rfkill package (boo#1074250#c4). - Remove unneeded release based conflicts and obsolescences (boo#1074250#c18). - Remove sysvinit requirement.- Fix Obsoletes for rfkill (boo#1074250).- Update bash completion conflict to cover rfkill file conflict.- lsmem: Add support for zone awareness (bsc#1065471, FATE#324252, util-linux-lsmem-memory-zone-1.patch, util-linux-lsmem-memory-zone-2.patch, util-linux-lsmem-memory-zone-3.patch). - Drop util-linux-losetup-Add-support-for-setting-logical-blocksize.patch. Different implementations exists in the new kernel, and it has a conflicting implementation in util-linux.- Update to version 2.31: * New utilities: uuidparse, rfkill. * su has been refactored and extended to create pseudo terminal (new option --pty, CVE-2016-2779, bsc#968674). This new EXPERIMENTAL feature provides better isolation between root's terminal and an unprivileged su. * libuuid: Improved to match * libuuid, uuidgen: support hash-based UUIDs v3 (md5) and v5 (sha1) as specified by RFC-4122. Provide UUID templates for dns, url, oid, or x500. * libblkid: Extended support for DM-integrity, HPE (aka extended-XFS) and UBI superblock. New API to hide already detected signatures. * libfdisk: New API to modify grain, make possible to completely disable dialog driven partitioning. * libsmartcols: New API to move columns. * column: --table-header-repeat to repeat table headers. * libfdisk: Use BLKPG ioctls to inform the kernel about changes. * fdisk: Improved ^C and ^D behavior. * cfdisk: Dialog to resize partition. * look: Follow the WORDLIST environment variable. * losetup: Added support for --sector-size (FATE#319010). * script: Follow the usual semantics for stop/continue signals. * setpriv: New command line options --ambient-caps and - -init-groups. * hwclock: Reduce system shutdown times, log --systz when using libaudit. * Other bug fixes. - Drop upstreamed util-linux-use-tinfow.patch. - Refreshed make-sure-sbin-resp-usr-sbin-are-in-PATH.diff.- Update RPM categories and summaries. Do not ignore errors from useradd.- Link against tinfow instead of tinfo (bsc#1056171, util-linux-use-tinfow.patch).- Ensure libreadline usage as well as _GNU_SOURCE- Fix prerequirement of groups tty and uuidd (boo#1057937).- Update to version 2.30.1: Bugfix release, more details at: https://www.kernel.org/pub/linux/utils/util-linux/v2.30/v2.30.1-ReleaseNotes - Drop upstreamed patch util-linux-lscpu-cleanup-DMI-detection-return-codes.patch- Make sure group tty is defined- don't conflict with sysvinit-tools in Tumblweed anymore. Needed for Leap 15 which wants to use a different release number scheme (lp150.x which produces lower numbers than the conflict).- Update to version 2.30: * Many changes and improvements, most notably: * The libblkid library has been improved for hybrid CDROM/DVD media. * The deprecated command tailf has been removed. Use "tail -f" from coreutils. * blkzone -- NEW COMMAND to run zone commands on block devices that support Zoned Block Commands (ZBC) or Zoned-device ATA Commands (ZAC). * fincore -- NEW COMMAND to count pages of file contents in core (memory). * lsmem -- NEW COMMAND to list the ranges of available memory with their online status. * The command fallocate -- supports an "insert range" operation now. * The command "column -t|--table" has been modified to use libsmartcols. It now provides nearly all of that library's functionality from the command line. * Security issues: * hwclock - no longer makes any internal permission checks. The System Administrator must set proper permissions to control user access to the RTC. It is NOT recommended to use SUID. * CVE-2016-2779 - This security issue is NOT FIXED yet. * More details at: https://www.kernel.org/pub/linux/utils/util-linux/v2.30/v2.30-ReleaseNotes - Drop upstreamed patch arm64-lscpu-use-sysfs-for-table-access-if-available.patch - Refreshed patch util-linux-losetup-Add-support-for-setting-logical-blocksize.patch - fix compiler warnings for mkzimage_cmdline- When when hypervisor_decode_sysfw fails continue with other detection methods (bsc#1042991, bsc#1039360, bsc#1033718) + util-linux-lscpu-cleanup-DMI-detection-return-codes.patch- Prefer sysfs exported SMBIOS3 tables in lscu (bsc#1033718) + arm64-lscpu-use-sysfs-for-table-access-if-available.patch- To cover release numbers of both SLE12 SP3 and Leap 42.3, relax release based conflict with bash-completion from 13.1 to 10.- fix util-linux-losetup-Add-support-for-setting-logical-blocksize.patch - -logical-blocksize was behaving like --nooverlap- Conflict with old systemd-presets-branding to ensure correct preset migration (boo#1029775, bsc#1012850).- Drop "codepage" fstab migration needed for SuSE Linux < 9.1 (bsc#51950 (suse#36950)).- Keep dependency on insserv and fillup for compatibilitiy reasons in Leap 42.3. Too many poorly written packages depend on it. (Marked as "sysv compatibility hack".)- Update to version 2.29.2: * su(1) security issue CVE-2017-2616 (bsc#1023041) * minor bugfixes and enhancements- presets are managed by the branding presets package (bsc#1012850) The default activation state is defined by the branding preset package. This also get rid of the only use of the rpm preset macros so we can kill them.- Merge SLE12 SP3 changes to make the package compatible with Tumbleweed, SLE12 SP3 and Leap 42.3. - Drop patch tests-script-race-on-force-only.patch from SLE12 SP3 and Leap 42.3. Upstream has a different workaround. https://github.com/karelzak/util-linux/issues/296 - INCOMPATIBLE CHANGE for SLE12 SP3 and Leap 42.3: losetup -L changes its meaning from SLE12 SP1&SP2 specific - -logical-blocksize to the upstream --nooverlap). - -logical-blocksize can be used only with long option (bsc#966891). - Include SLE12 + Leap 42 exclusive feature, implemented by hare@suse.de: * losetup: Add support for setting logical blocksizes (bsc#931634, FATE#319010) + util-linux-losetup-Add-support-for-setting-logical-blocksize.patch SLE12 & Leap 42 specific changes: * Fix for SLE12: bsc#956540, SLE12 SP1: bsc#953691, Leap 42.1: boo#954482, was obsoleted by the systemd update, and skipped. * Remove --enable-ncurses that is intended to force non-wide ncurses (boo#978993). * Make release-dependent conflict with old sysvinit-tools SLE specific, as it is required only for SLE 11 upgrade, and breaks openSUSE staging builds (boo#994399). * Obsolete these patches, now upstreamed: * Drop upstreamed patches (tests-script-race-on-force-only.patch, util-linux-libmount-ignore-redundant-slashes.patch, util-linux-sfdisk-show-pt-geometry-1.patch, util-linux-sfdisk-show-pt-geometry-2.patch, util-linux-sfdisk-show-pt-geometry-3.patch, util-linux-libblkid-partition-loop.patch, util-linux-libblkid-wipe-offset.patch, util-linux-mount-reuse-loop-1.patch, util-linux-mount-reuse-loop-2.patch, util-linux-mount-reuse-loop-3.patch, util-linux-mount-reuse-loop-4.patch, util-linux-loop-reuse-01.patch, util-linux-loop-reuse-02.patch, util-linux-loop-reuse-03.patch, util-linux-loop-reuse-04.patch, util-linux-loop-reuse-05.patch, util-linux-loop-reuse-06.patch, util-linux-loop-reuse-07.patch, util-linux-loop-reuse-08.patch, util-linux-loop-reuse-09.patch, util-linux-loop-reuse-10.patch, util-linux-loop-reuse-12.patch, util-linux-loop-reuse-13.patch, util-linux-loop-reuse-14.patch, util-linux-loop-reuse-15.patch, util-linux-loop-reuse-16.patch, util-linux-loop-reuse-17.patch, util-linux-loop-reuse-18.patch, util-linux-loop-reuse-19.patch, util-linux-loop-reuse-20.patch, util-linux-libmount-cifs-is_mounted.patch). * Refreshed patches (make-sure-sbin-resp-usr-sbin-are-in-PATH.diff, util-linux-losetup-Add-support-for-setting-logical-blocksize.patch).- Update to version 2.29.1: * lscpu: add aarch64 specific names * lubmount: Disable disable ro/rw mtab checks (bsc#1012632) * More details at: https://www.kernel.org/pub/linux/utils/util-linux/v2.29/v2.29.1-ReleaseNotes- Replace raw initscript by a systemd service doing the same thing. Based on previous work of fcrozat@suse.com (FATE#321122).- don't install bash-completions for uninstalled binaries (chfn, chsh, newgrp, pg) - for now remove procps dependency which is only needed for tests because it pulls systemd- Replace pkgconfig(libsystemd-*) with pkgconfig(libsystemd) libsystemd-* libs were deprecated and are gone now.- Remove no more supported --enable-libmount-force-mountinfo. There is --enable-libmount-support-mtab, disabled by default, exactly as we need.- Update to version 2.29 (FATE#322090) * cal: possible to specify month by name (e.g. "cal January 2017") and use relative placeholders (cal "+1 month") * fdisk(8) allows to wipe newly created partitions; the feature is possible to control by new command line option - -wipe-partitions[==auto|never|default]. * findmnt --verify: the command scans /etc/fstab and tries to verify the configuration. * mount(8) now rejects requests to create another device and mount filesystem for the same backing file. The command `losetup --nooverlap` reuses loop device if already exists for the same backing file. All the functionality calculate with offset and sizelimit options of course, so it's fine to have multiple regions (partitions) in the same image file and mount all of them in the same time. The restriction is that the regions should not overlap. * lscpu supports the "drawer" topology for IBM S/390. * sfdisk: Support for deprecated --show-pt-geometry (bsc#990531). * libmount: various issues with cifs mount (bsc#982331, bsc#987176). * libblkid: Prevent infinite loop DoS while parsing DOS partition tables (bsc#988361, CVE-2016-5011). * More details at: http://karelzak.blogspot.de/2016/10/util-linux-v229-whats-new.html https://www.kernel.org/pub/linux/utils/util-linux/v2.29/v2.29-ReleaseNotes - refresh make-sure-sbin-resp-usr-sbin-are-in-PATH.diff- Update to version 2.28.2, bugfix release, see https://www.kernel.org/pub/linux/utils/util-linux/v2.28/v2.28.2-ReleaseNotes- Update to version 2.28.1, bugfix release, see https://www.kernel.org/pub/linux/utils/util-linux/v2.28/v2.28.1-ReleaseNotes - Remove util-linux-libblkid-wipe-offset.patch (upstream) - use the new configure option --enable-libuuid-force-uuidd instead of sed'ing configure.ac- Install klogconsole with read permissions (bnc#990837)- BuildIgnore util-linux: it's part of VMInstall, hence part of every package build. util-linux itself can be built without its own presence though. Helps with some rare bootstrap issues (when librtas changes soname for example). - Drop usage of gpg-offline: this has long been migrated to a source service that checks signatures on checkin already (osc service lr source_validatory).- Do not BuildRequires bash-completion: this is tempting, but it pulls bash-completion and its entire dependency stack into Ring0, which is inacceptable. Pass the correct path (%{_datdir}/bash-completion/completions) via - -with-bashcompletiondir to configure.- blkid: Wipe corect area for probes with offset (bsc#976141, util-linux-libblkid-wipe-offset.patch).- Remove incorrect --with-bashcompletiondir that breaks bash-completion, use path in bash-completion.pc instead (boo#977259).- Add librtas-devel to BuildRequires on Power platforms. Needed for proper function of lscpu (bsc#975082).- fix build for openSUSE >= 13.1 (inclusive SLE 12) - drop build for openSUSE < 13.1 - remove old build conditions: sysvinit_tools, enable_su and enable_eject - cosmetics: reorder configure options- Update to version 2.28 (bsc#974301): * Many changes and improvements, most notably: * Now cfdisk, sfdisk and fdisk wipe all filesystem and RAID signatures when creating a new disk label in interactive mode. See --wipe[=auto|never|always]. * lsns -- this NEW COMMAND lists information about all currently accessible namespaces or about the given namespace. * The command sfdisk supports new operations --delete, - -move-data and --reorder. * The command blkdiscard supports a new option --zeroout to zero-fill rather than discard a specified area. * The command cal supports a new option --span to span the date when displaying multiple months. * The command chrt supports the DEADLINE scheduling class and the new options --sched-runtime --sched-period and - -sched-deadline. * The command logger supports RFC 5424 structured data through the new options --sd-id and --sd-param. * The command losetup supports a new option --direct-io. * The command lsblk allows to sort output by unprinted columns. * The command mount applies the nofail mount option to ENOMEDIUM errors. * The commands nsenter and unshare support a new option - -cgroup for work with cgroups namespaces (CLONE_NEWCGROUP). * The library libmount has been improved to properly detect already mounted btrfs subvolumes (bsc#947494, bsc#972684). * The library libsmartcols has been massively improved to print table ranges, multi-line cells, table titles and to support continuous printing. * The package build system and code have been improved to be more portable to non-Linux systems (BSD, OSX). * The package does not provide fallback solutions for openat-family functions anymore. * The python binding for libsmartcols is available in separate project at https://github.com/ignatenkobrain/python-smartcols * Other bug fixes (bsc#970404, bsc#975082, FATE#318444). * Security issue: CVE-2016-2779 is NOT FIXED yet. - Remove old util-linux-noenc-suse.patch- enable last binary- Update to version 2.27.1, bugfix release, see https://www.kernel.org/pub/linux/utils/util-linux/v2.27/v2.27.1-ReleaseNotes (fixes bsc#950778, FATE#320552).- Change condition for known fail markers from test for armv6 and aarch64 architecture to test for qemu user-space build- Update to version 2.27: * Many changes and improvements, most notably: * lsipc: new command * unshare provides a new option --propagation= * mount(8) supports read-only binds in one (not atomic) step by "bind,ro". * GNU readline support in fdisk and sfdisk. * JSON support in libsmartcols and findmnt, losetup, lsblk, lslocks, sfdisk and lsipc. * script has been massively improved to be more robust and less complex (bsc#888678, bsc#930236). * sulogin supports locked root accounts by --force (bsc#968733, bsc#963399). * colors support by default. It is possible to change this with --disable-colors-default. * more information in cfdisk * fdisk provides new commands 'F' and 'i' * cal supports the new options --twelve and --months * rtcwake supports a news option --list-modes and --date, no support RTC_ALM_READ and RTC_ALM_SET fallbacks any more. * Many fixes, most notably: * fsck: now supports -r {fd} (bsc#923777, bsc#903738) * Fix fsck -C {fd} parsing (bsc#923777, bsc#903738) * better handling of multi-path devices (bsc#880468, bsc#924994) * flock: improve timeout handling (bsc#926945) * lsblk: display mountpoint even for top-level device (bsc#943415) * colcrt: fix buffer overflow (bsc#949754, CVE-2015-5218)- Add licenses.- Add %systemd_preset_pre and %systemd_preset_posttrans that will do one shot presetting of uuidd.service on upgrade. (bnc#900935#c46, FATE#318949, FATE#317727). - Remove one shot presetting hacks.- Build with --enable-libmount-force-mountinfo the rationale is identical to the following commit message --> http://bit.ly/1eqf5GO The default behaviour is undesirable and fragile when using systemd.- Update to util-linux-2.26.2: * many fixes, most notable for logger, *fdisks and mount * (lib)mount, add support for MS_LAZYTIME - disable libmount/lock test to avoid random timeouts - socat is needed for logger tests- Update to util-linux-2.26.1: * cal(1): do not segfault when TERM is not defined or wrong (bnc#903440) * logger(1): major fixes and enhancements * agetty(8): support /usr/lib/os-release too * some more fixes, mostly minor ones, see ReleaseNotes - re-enable fixed tests (fdisk/bsd, ppc64le)- Update to util-linux-2.26: * based on the git master branch of util-linux, remove backported patches (util-linux-libblkid-unsafe-chars.patch, util-linux-libblkid-overflow.patch) * zramctl(8): this NEW COMMAND allows to control /dev/zramN devices * agetty(8): supports new option --reload to force already running agetty processes to reprint the /etc/issue file * cfdisk(8), sfdisk(8) and fdisk(8): support sfdisk-compatible scripts; it's possible to save your partitioning layout to text files and (re)use it in all fdisks * fdisk(8), sfdisk(8): support new command-line option "--output " to specify output columns for --list or print commands, do not abort when fdisk -l when device cannot be opened [bnc#886790], [bnc#893712], [bnc#890351] * nsenter(1): has been updated to work with the latest kernel changes in user namespaces supports new command-line option - -preserve-credentials * unshare(1): has been updated to work with the latest kernel changes in user namespaces supports new command-line option "--setgroups=" * swapon(8): supports new command-line option "-o " with the same semantics as -o for mount(8); it's now possible to specify swap options on the command line by the same string as in fstab * fdformat(8): supports new command-line options --from and --to to specify tracks and --repair for broken floppies * getopt(1): has been updated to the latest version (originally maintained outside of util-linux) and refactored * ldattach(8): has been improved to support GSM0710 and intro modem commands * logger(1): supports new command-line option --id= to specify PID (or another ID) allows to specify --rfc3164 or --rfc5424 syslog protocols * lscpu: recognizes Unisys s-Par as hypervisor (FATE#318231) * libfdisk: the library is distributed as a shared library with a stable API and a standard header file * libmount: provides a new simple API to monitor mount-table changes (including changes in userspace mount options) * libmount: Fix mount point lookup (and mount -a) if the path contains // (bsc#931955). - Fix lack of I18N support in util-linux-systemd (mis-compilation).- Build with FULL RELRO.- define upstream source for klogconsole to remove patches * klogconsole-quiet.patch * klogconsole.diff - remove openSUSE 13.1 specific eject permissions, did not worked anyway since eject-fpie.patch was removed - always call autoreconf, not only for splitted packages, skip autopoint (gettext)- Do not try to unregister an info file (ipc.info.gz) which we do not own. Already in May 2011, we stopped registering it: "do not register ipc.info.gz (not provided by this package)".- libblkid: care about unsafe chars and possible buffer overflow in cache (CVE-2014-9114, util-linux-libblkid-unsafe-chars.patch, util-linux-libblkid-overflow.patch, bsc#907434)- Update to version 2.25.2: mostly minor fixes (including boo#908742) - re-enable utmpdump and ipcs tests for all archs- Use util-linux:/bin/logger as split-provide, /usr/lib/systemd/system/fstrim.service didn't exist in 13.1- Remove pam_securetty.so from /etc/pam.d/login. By definition, local logins are always secure. Remote logins actually use /etc/pam.d/remote by way of `/bin/login -h` (such as rlogind). This solves the problem that root logins are erroneously rejected when using kmscon(8) or `machinectl login`, because they use ptys.- Remove known fail marker for fdisk/bsd on ppc, ppc64, s390, s390x- Fix mis-compilation of libuuid without uuidd support (bnc#900935). - Fix uuidd socket activation (bnc#900935). - Remove obsolete sysvinit script for uuidd. - Remove no more needed uuidd permissions stuff. - Replace PreReq for obsolete pwdutils by names of binaries. - Add fstrim service scripts and rcfstrim helper./bin/sh/bin/sh/bin/sh/bin/shejectloginrfkilluuid-runtime/bin/shlamb78 1635257652  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~2.33.2-lp152.5.9.12.1.02.33.24.00.52.33.2-lp152.5.9.12.33.2-lp152.5.9.12.33.2-lp152.5.9.1 2.1.04.00.52.19.1  dmesgfindmntkillloginlsblkmoremountsuumountblkid.confrunusersufilesystemsissue.dloginremoterunuserrunuser-lsusu-lrawagettyblkidblockdevcfdiskchcpuctrlaltdelfdiskfindfsfsckfsck.cramfsfsck.minixfsfreezefstrimhwclocklosetupmkfsmkfs.bfsmkfs.cramfsmkfs.minixmkswapnologinpivot_rootrawsfdiskswaplabelswapoffswaponswitch_rootwipefscalchmemchoomchrp-addnotechrtcolcolcrtcolrmcolumndmesgejectfallocatefincorefindmntflockgetopthexdumpi386ioniceipcmkipcrmipcsisosizekilllastlastblinelinux32linux64looklsblklscpulsipclslockslsmemlsnsmcookiemesgmkzimage_cmdlinemoremountmountpointnameinsenterprlimitrenamerenicerevscriptscriptreplaysetarchsetprivsetsidsettermsutasksetulumountuname26unshareutmpdumpuuidgenuuidparsewallwdctlwhereiswritex86_64raw.serviceaddpartagettyblkdiscardblkidblkzoneblockdevcfdiskchcpuctrlaltdeldelpartfdformatfdiskfindfsflushbfsckfsck.cramfsfsck.minixfsfreezefstrimhwclockklogconsoleldattachlosetupmkfsmkfs.bfsmkfs.cramfsmkfs.minixmkswapnologinpartxpivot_rootrawrcrawreadprofileresizepartrfkillrtcwakerunusersetctsidsfdisksuloginswaplabelswapoffswaponswitch_roottunelpwipefszramctlbash-completioncompletionsaddpartblkdiscardblkidblkzoneblockdevcalcfdiskchcpuchmemchrtcolcolcrtcolrmcolumnctrlaltdeldelpartdmesgejectfallocatefdformatfdiskfincorefindfsfindmntflockfsckfsck.cramfsfsck.minixfsfreezefstrimgetopthexdumphwclockioniceipcmkipcrmipcsisosizelastldattachlooklosetuplsblklscpulsipclslockslsmemlsnsmcookiemesgmkfsmkfs.bfsmkfs.cramfsmkfs.minixmkswapmoremountmountpointnameinsenterpartxpivot_rootprlimitrawreadprofilerenamereniceresizepartrevrfkillrtcwakerunuserscriptscriptreplaysetarchsetprivsetsidsettermsfdisksuswaplabelswapoffswapontasksettunelpulumountunshareutmpdumpuuidgenuuidparsewallwdctlwhereiswipefswritezramctlutil-linuxAUTHORSChangeLogNEWSREADMEblkid.txtcal.txtcol.txtdeprecated.txtgetopt.txthowto-debug.txthwclock.txtmodems-with-agetty.txtmount.txtpg.txtgetoptgetopt-parse.bashgetopt-parse.tcshutil-linuxCOPYINGCOPYING.BSD-3-ClauseCOPYING.BSD-4-Clause-UCCOPYING.GPL-2.0-or-laterCOPYING.ISCCOPYING.LGPL-2.1-or-laterREADME.licensingcal.1.gzchoom.1.gzchrt.1.gzcol.1.gzcolcrt.1.gzcolrm.1.gzcolumn.1.gzdmesg.1.gzeject.1.gzfallocate.1.gzfincore.1.gzflock.1.gzgetopt.1.gzhexdump.1.gzionice.1.gzipcmk.1.gzipcrm.1.gzipcs.1.gzkill.1.gzlast.1.gzlastb.1.gzline.1.gzlogin.1.gzlook.1.gzlscpu.1.gzlsipc.1.gzlsmem.1.gzmcookie.1.gzmesg.1.gzmore.1.gzmountpoint.1.gznamei.1.gznsenter.1.gzprlimit.1.gzrename.1.gzrenice.1.gzrev.1.gzrunuser.1.gzscript.1.gzscriptreplay.1.gzsetpriv.1.gzsetsid.1.gzsetterm.1.gzsu.1.gztaskset.1.gzul.1.gzunshare.1.gzutmpdump.1.gzuuidgen.1.gzuuidparse.1.gzwall.1.gzwhereis.1.gzwrite.1.gzadjtime_config.5.gzfstab.5.gzterminal-colors.d.5.gzaddpart.8.gzagetty.8.gzblkdiscard.8.gzblkid.8.gzblkzone.8.gzblockdev.8.gzcfdisk.8.gzchcpu.8.gzchmem.8.gzctrlaltdel.8.gzdelpart.8.gzfdformat.8.gzfdisk.8.gzfindfs.8.gzfindmnt.8.gzfsck.8.gzfsck.cramfs.8.gzfsck.minix.8.gzfsfreeze.8.gzfstrim.8.gzhwclock.8.gzi386.8.gzisosize.8.gzklogconsole.8.gzldattach.8.gzlinux32.8.gzlinux64.8.gzlosetup.8.gzlsblk.8.gzlslocks.8.gzlsns.8.gzmkfs.8.gzmkfs.bfs.8.gzmkfs.cramfs.8.gzmkfs.minix.8.gzmkswap.8.gzmkzimage_cmdline.8.gzmount.8.gznologin.8.gzpartx.8.gzpivot_root.8.gzraw.8.gzreadprofile.8.gzresizepart.8.gzrfkill.8.gzrtcwake.8.gzsetarch.8.gzsetctsid.8.gzsfdisk.8.gzsulogin.8.gzswaplabel.8.gzswapoff.8.gzswapon.8.gzswitch_root.8.gztunelp.8.gzumount.8.gzuname26.8.gzwdctl.8.gzwipefs.8.gzx86_64.8.gzzramctl.8.gz/bin//etc//etc/default//etc/pam.d//sbin//usr/bin//usr/lib/systemd/system//usr/sbin//usr/share//usr/share/bash-completion//usr/share/bash-completion/completions//usr/share/doc/packages//usr/share/doc/packages/util-linux//usr/share/getopt//usr/share/licenses//usr/share/licenses/util-linux//usr/share/man/man1//usr/share/man/man5//usr/share/man/man8/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Maintenance:17098/openSUSE_Leap_15.2_Update/fc98bc68cdf53afef0ed29affd6f8244-util-linux.openSUSE_Leap_15.2_Updatedrpmxz5x86_64-suse-linux  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqqrrOsttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttuttttttttttttttttttttttttttttttELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=7fd9f453e2845b7e832fc01744cda958e6d741c2, for GNU/Linux 3.2.0, strippedASCII textdirectoryELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=8742429bd72bd7ea56cb71127824bf6b38cea575, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=bb44b29695ebc4c2ea4208d80ebe6a098799bd50, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=c1f3d10c4a372ca86919b65dc9d6a8ddf6690f11, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=2cc49c88ef438acf7ab1d23aafae94501544c189, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=4769f2e2fc5749e7c38a8dff177b9e7c53d5e583, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=da4aa1759e068a46d7103ee463e98444ce422d69, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=755107de718183754f09feb5cb0928e2994b32df, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=916daccf01452a6d0c9ab3b5235892063ba3f6d4, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=9f52cb06be0bc2a734c948d4b3fdffb6bc55bfbc, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=a8138b69934374ab5c3ae2c233f4044a9654aee6, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=19b2b2455b2f5596f95f5f30df86a3f7d10a660f, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=4678bbe06eb3968c64eaf9ff26d4115a01e01091, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=5e5ca94800f5f06cd098a10d1f220e0eedd68377, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=8746f612545293741ad1d19e1993fb8055430cf1, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=e17f224e0df2da64f2abc232c1dfafb4bdf9d6f1, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=8652f737e62d403dce4568fd1547b3cd82745250, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=5df306a270c9bf27b39f375e845aef15e5294902, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=6d3ba772c8ec684cc56e1ad0f2dc629fcade6793, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=14161d4a9a75a1b3002d58c78e6860921386fa26, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=cd8934aac8fa6794e75c772f368ce473e3872194, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=48530937e44d80ab3316aeca7e759a58897f7256, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=25b2c58af992480a92eea79c9a66222e493afad1, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=ae6297ebdd45e45f7305779ac23ee8d8c11819b3, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=952b78827a2234b01cfa107d1c9833cf6eb9b56a, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=114aa7eb5f410342083fa4e0fd9ec21a60c72cf4, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=435cdf2ed336fcbfc9668b8cc75acad36800e0b7, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=723a25de5103552654a1689d8de3a3dbcc7f4b90, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=c46275c44962c79f70192fbb7af130ad1f91d186, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=86ab5fee322a58fbf7eaf4ccfc53e6bb44f77594, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=6e19fb7bb5cc68e9b88d6281a5653f7d7de02f34, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=d5c7710c9888654bc3b19f2bba782953f59dca4d, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=5a0b652cd18281ed6ff793cafb20a93efca5eae6, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=c9c8c027d4bacc4fa2ba58c48dd4c36814f88bb4, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=93fcd7fe4c07216cd76baa6ab3208ded997a500b, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=6b7d37de2787c4dcc86e34a87d9c081b36ca15ba, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=730ad48ff5f693e39fba18edfef8316a2c8279d4, for GNU/Linux 3.2.0, strippedsetuid ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=4047d216b06e46f3dcb75027bec1ed459bfea113, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=efc0272502a73248c9ef67b864c5919f2f0b1e71, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=075fd9bad6d49ea1b0659b33096af09dadc0c192, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=b1b6278f557ff003ab8fb209ae62d8f8cfafc138, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=41e87e4b785e54c9d5e2dd04280e74eeae587111, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=9c2f5fb10d64104f9c5628ed493b1fa71bbb7b6a, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=60d5cc4c5344b68eea84cddc868f402e34a8fc7e, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=7d99112b2e7b4b181bf346f8e6fa82c8491493ca, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=f748c104c82fc036f2320ee18cb314d1d838ed7e, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=2db3202eac96f0ec761c917e9ce137000c1c8c7f, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=ca6c2f91a6352dae0d98c2780e10f41bc33f18f5, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=c8b0fa9f2be58952b79ac16eec25c2cbfda1bb90, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=02ffcfd3cd6b3ccff97ce635ac6855b995d2fcf9, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=f2468ebea7e6c353b28d446dde2cc1fa7a53cd49, for GNU/Linux 3.2.0, strippedsetuid ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=34c09c30c0099aa7a8c3b64e56aec644b0437357, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=70196419fc578f7369e5fecdd317b89425043e7f, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=5e9f91c9ae08f50b0ce0f0c9fb71dc3238130da1, for GNU/Linux 3.2.0, strippedsetuid ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=517ded7b6d722734205a3f62a908bf457cc2a03f, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=8cec71fbe9c3615c53e70c75a7d2e7a711b99789, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=893f0b90d0b7563b5c14831908d079e297a6f7c2, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=cfa2e499edf63dfbb017740c626eae8678624821, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=52c858aeb29334a7a7fc2d790f188c25eacb0f27, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=18f6ad284592251c1cade6df01b55ac53cef7ffa, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=648a306c5e8a21ee54f4322c2c8b7e7d28a04760, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=e55e13c689c1027da2681e483ed9ea96b759f9c6, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=ead2bfe810229f6a14c1515a7a644f0e38b9432f, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=0affd771e2810f27506bc70ec4fbe69c1f900353, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=405b6525ae51f0faaf4a3a76f7a416d8702c99f6, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=97d07531f7992aa38cc7467dde240e36ec8fbefd, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=3b45a4efa53a84be34d01f8f958e780df7cef3a2, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=894ebf9efd44c3b2eff0e4b5150ee70cfd2a12f7, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=4db6455a1cfb4d82c126de26e407797e99bc9d8a, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=091f057149164ae4f12b428e8f04eb0cf8e1c33f, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=f1cea658386c1a6b26153720b8595980206f5cfc, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=fae39fbe4d33af544236968bb20938ba1a3bdfcb, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=6ef3c52be1b82364b0b2ce1ad5438569d34619ba, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=4431fbc783fbf646ad99f61cb5adf121cc93c150, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=08f62a8538d7d1e36475a1c60ded44101c32931b, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=da739902fbce921c3b74aed14f682820d1d2b84f, for GNU/Linux 3.2.0, strippedBourne-Again shell script, ASCII text executableELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=5a4e6f01bd891aad2de25298ed0565bfabd5d128, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=d2f316bebe785d3fc59162f68f67f48102e41d95, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=d4b72517b0d5b531ad70249d89f1be5189989e0e, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=9a50db6250f6b55c601b0f213877ab1156522136, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=f4245bc5b6a6367a1646dc349432037348f18e6b, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=5c8725c1212109514b93bb16a0c10e51ed106b47, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=dfc8e1cee1ea48fc971814fc6fc057114d441142, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=2093d6d6d9b0f027e9e182e4bc84b30c06d0ad72, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=76809d12d85b229bf5c9714d54294893f66317e6, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=aa2e25c5f5a0228ffca903b6e8dd27989b9afc4e, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=d12a3a5b65329fbb9dfb1a2dc9d484978f9d52c9, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=a05ead2014333c80460fbefa24b1a4d0a6341eab, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=f79beb1464ebcc4b1582f8b977aef938448497a4, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=59046febf861a209fca6be4c5d3626c68dd263c7, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=007c9c73dbfdf287e5df2dd7b762f1168bed5bff, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=0215c92fa2dcd4f43dbb517c156c161a6b585188, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=545bc22ad2b631d5c0824368ce0b27b62d78fe9f, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=16b69a9fdf9e34d22d77703da4c640f989604f43, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=c95fe9e8d519ca22e21e488412ee36c3edf4519b, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=409557ace7bd9e15d451757cd9997bd4a8ed64b2, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=be406bee7fe662a3e3a678f70c650958ebd2a75c, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=974428681804e6f696631cc8b959b7cc11df6674, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=23bab730aa8969b8509db65a86cf93b09628452e, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=abab935e742b2b266938029166e049ba17a2a91c, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=5e8e9ac9a5e708e13a6d79520370eb68b725ce25, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=168254d182a53a2e54b0af4b8618ec81fb1148de, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=17056d0f8ee16120edb9de26fc103ed710dc8ba0, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=957cb09aac82215c9913db1a200a36f70d3e490d, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=e5e7fdf4f338e94c67e13a5559068c10923673e7, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=da49c930810e1279923599628ba45e7c02cf60ae, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=d6ce5c47934cad3f3cd44bbf326c8878a2466a75, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=949a21c6aedb89057460b2a5a5c2a32bb569170b, for GNU/Linux 3.2.0, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=a1c1938fe873815ef0ccee88806dd40edb6528dd, for GNU/Linux 3.2.0, strippedAlgol 68 source, ASCII textUTF-8 Unicode textTenex C shell script, ASCII text executabletroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)Algol 68 source, ASCII text (gzip compressed data, max compression, from Unix) %)07;BO[hp{(4BLPU^ov}$+18BKYai%-<@QTX\dov                      RDRBR R%R"R$R!RRARCR RRSR RR%R"R!RRRRR RR%R$R"R!RRR RR%R$R"R!RRR!RRRR R%RR"R!RRR R%RR"R!RRR!R"RRR R%RR"R!RRRORPRNRLRKR R%RR"R!RRJRRGRSR RR%R$R"R!RRRRFRRGR;R6R RR%R$R"R!RR5RFRR R%RRR"R!RRR R%RR"R!RRLRKRQRJRR RVR%RR R"R!RRMRLRKRQR8R9R:RR=R7R9R8R;R6R5RR6R;R"R!RR5RR RR%R"R!RRR R%RR"R!RRIRRKR RR%RR"R!RRJRR!R"RRR!R"RRR!RRRGRZRXR R%RR$R"R!RRFRYRWRR R$R%RR"R!RRR!R"RRR R%RR"R!RR'RR!R"RRRSR R%RR"R!RRRRRZRDRBR R%RR"R$R!RRARCRYRR R$R%RR"R!RRRSR!R"RRRRRR R"RR!RRR8R;R6R5RR R%R"R!RRR R"R!RRR!R"RR]R\R[RR\RLRKR R%RR"R!RR[RJRR R%RR"R!RRRKR R%RR"R!RRJRR%RR R"RR!RR R!R%R"RRR R%RR"R!RRR&R#R R%RRR"R!RRRGR R%RR"R!RRFRRR R%R$R"R!RRRRRR R RR RR%R$R"R!RRR RR%R$R"R!RRRTRSRMRKR;R6RR"R R%R!RR@R-R0R+RJR*R5R?RRRR R%R$R"R!RRR R%R$R"R!RRR R%RR"R!RRR R%RR"R$R!RRRKRSRR%R$R"R!RR R2R-R/R,R0R.R1R+R*RJRRRERRR!RR RRRGR RR RR%R$R"R!RR7R8R;R6R5R RFRR R%RR"R$R!RR^RRR R%R$R"R!RRR!R"RRR8RH9+Xadjtimextimeutil-linux-langwhich2.33.2filesystem(minix)utf-816d98fcf5c72e9c927343028246e3f94c2079eef0347d28c1b9f9b1aa9f6ab34?7zXZ !t/]"k%N0؉ӪN/e o}LϢ\s C -o~T[a(HІ*kS̹Fu5 Μd}8yuRەzx n5O!rƧef'݆GѦoLxܤM/DH sqwn ivy%N 9{5w- 2!\5~;ϨV1M1]'K=&FnӒZG֯o.9 aE<@mAv%bY$h(pm(0 N8QK. YUG1Z @ScZ_HN7Zvvt3‡鏧`Ȳu(el(P˨PA8 E7)֊*k`tV< [hȢc`zbn8TU.l(َo& :@)%l@פ6ƄR[6- M1kd5GdY悔=qyu]w&@;zDގncoi7V+6^0:=V/Q'l1g8yVny!,R); XڼHOQ6_JW5!'P!TYO⯆{$n`!ѢrO[< }M5u ûQ&E:)^#;> "*֡AnW:ף9;mg(0Y6 oz%UR'A_{ǟg/Qu]nD۹+`yOx)4DڟM&2u;ܢ.*e'eoFgab!%#*}/ /Ĭn] 6afe0HO~Um:ڠnf&s  ;I`=}Oo٩(Crq"'h 0.&q=M@\tAK]rh\Ti0R}NJϦ@ OG0b֖iSϼ*k,Ui0}{d̿o-MYto6 UbUĴ+G!}rsnj7!òE,,aYLŬi(}5C`i7Jqڸ=x>jDE'j/`~C_[a\1qˡF*@S3P$9&-R*BpD-ٛ JH?4?F7iU3ѻ扮Ͷ V֢(ڊf4x2bL'W@kh2QGurr?>bC7a\O3?vMmrNZZ>>0*AeHbް32r)`ky%lGn_ryUƅ\qٶrUBdB: ~KYFt]7tV/Av2fWl!*l`TP뎸-/Juu[al9?G"@*lX'78],ۏ[ڝϞfq[j;%=6ŀMq& 2rQw@z(Z2l$yd^o؞m,UM b b+9~Íj> tuOgKb=7-fi'kUֹ&PuѼ"̯ߍG }y&GOYCx2W̖$CᰌnWOUPw@m&(R`_uhv i܅ZSqH)A)&lg@i{\^|qHӍYkf Xw_l`κMWe u8Y5ce7t>`PWw EfG* |8V, sKrEg2큋J&DYh0|2!O MiR=d-/CD0!yDlq,ڏ S[ۅ }W+~;$YMvft̻*WJa0<9D;ǃ &IS/=pJ=X8=%|6vBy$e8w)QzielO1&"쥢dDblk,KɯT`&a,fm>9T~6)b:#i`ާ1L 9nNiRp,:%kNTOG^ۦ݂<>F2#%ᙃN2]ygk1ƄOP*ޘEwC@)bOE8f5r\0?SgÒ-Htޑm=`pp%C8_'<>oHk`V&]+yыVn1M"kA=eF $xqLy'\׶G0I T-ޓntTB_άl`R)3X-/ըCUBcn.A!i^5Dd\"Ooڰ  IhռS٠1 FGBOn4:Ym2m237xjf,+tu 9p rn3?^FB o Zl+*FMun[/\3>72,6q5? 'H݇Cp~dꀗۺq>/*oG! ȦܝL-P8ѷ-? $]Lבԯ@>Ai7966u?c%_xmcX;7/ bXR4G D;q!<nگnV np!M<dJ&Go|欛W|:@ޢJ1ty]0BbUqyz۹'eLLrt&`@H,S{),u@B\,QܬyoN+;]/SF r%B2yjC,;[Ǖ#뱡>䟧a9!SlsvX , 눴.AK I!8&Ye0YOhKg oB?]ZeTقH0otION/ZJҿ%~s6* <ũC/,D'ZFB$hݢ:P8F'319{~mHfq rܒf M֎n3/eEEE'`a_Ek]?3v .Û%l[q]N;LMOuAIӍ2m.dLp;84eR?r}--s3Hޑ˅wc'9 iOQ`s5waZcJ )? *ЛȻ!9-"5FqNOQ3V]!yZ'~T&:#S8oTȰbyfi(1HBJ0isA&ZxaY:6.=U n(b!򉵜Aol9ڠkeڄ?\VJj,6XwCC2%"9䕝ݛ5`U!kI (Jp%:&l3{V >ZE48^\v{Ǧy%Y?C0-wz,yRkχd IL̔ӊ>.fGa~ Bn{ yvƖ]8, 9sNњJVhP&vFp SONH/9@b]蒏cΜ!݂Aja O{b,Pa'Sm./N7_yF$"{4sp4$&=(mi׮lKZmPGU΢n܂jw!ę`J05}(e)NJ%p+qUpj)z DMaZKk<(Q]7W/ ~H.Z{7ƒOq6E[_kWIɰ~{CmMҥ, 裲ZpMC4<}L3SbǕa9 `.-/b9Z%Zɥ]Ye,+nY;Qelm62n)P*W-UN6n! LHZJb-{+~Iǐ2h}vrұS )1| MWvR8op(wilmv&-[ i ،ȓ";a7D{{z9*E|!T ΍Xk|4~_9n]6Z`϶s#s"YjAH -9k|:4$ծ]d zF4r#p'+eԀ:T5n8vMŕcM\2YOTn^ehءg[g8sRR 9B*-Б*3Uљcb/hdF#<6h<ϫU|%弍9q!S+a }w"º2Ɓɦt$Npzygi~ 5ݏq"O ڕa4Ydž3-v9ERzG~1 em6eX L Oޟm}YSʏ-[U*U;(qr@ ݱ"P'=}&q!Y1*]C'M}٨KuXz \WC(!<m4J`CVj.raY9xF a_āSBT\5 }=Wp-כ*7-RqfKn&C#f"P:]u/φ$Mt`mSmõ"6;?aqJnR=j8=/@!nV1(Cb+Vx=9|:UߏŜ'{SD m]DI; }Ϸ e6կ`6 ]Rf;&t"7U.>(`j8D~փZ3H`ƛ}$Qd/˾!}N0gη\zGqɷ@Hn AEo͙=g&OCȄཡHRn?hHۆc,?ov u#@J\4܃WNJuz}1PIͪ?vq͐v_r=\K]zf8XZͶA} Ď-]j/-&{ĺgpmB\mtЫafҫkn%+Iވlbbo?t͖oC Di-oDdȀ'J52^cG4s$^Gm&a  -@>g[[3X#|Ctℭܯo-'}qAZ*rnQᒩP3D*l, P2QhbuDY m! ̘.~hB7.#).g 0B^So̹; rEU)*yt#1z^e|Yٚ 嵞XRJYQN,k[q[=E>p_)i~zCFf3 5gkYu6TGZ9w& ~}.n5 hԄv59HI=07gիW/Vfs/saLs">.`n2u% zKHozhG7yDrͳݏC|숸mIwlM\m^#|Q୿N&`hnaInY`Uՠ?bEzg. 2hRs6֦O) Q|!nwT~%J:c8(6=m(>BH4*W֩h~6iMm4?aR\L3mvKs‘)jQL|̍!Ȳ怮DJP`DНPPO(UVd -2{?F2myr*DE`- Q=h7Tjog&2elRkTSV;nq=A2Oݴi:+ MɋUՏʬ@TomTݑ=QZSyv&MV|rhC<1WF'm-a5.ʹ%,$pYB*J5<6(mN=ƒFy&ջg{7c/d"NZCX ^PūgҎqiҡFx.U0s$U[(n~dFX۽ sn\7 >G--8A7ypc&SsDq'v5;fcKL8tog{nlD ;C/%8X@vl)WyhXͯR3][JYSڑ2T1IJjelCBMquE|@h;xy V$:"b(yd9D^NHc}m$eEV%ׯX`^kyb,h {w b7CO'~u^pϾVY'| +4[$!? <ƀ Kʧc*:/?~Op@dTjG ^ 1S91b\ ϷH81'ְAat#_?ʫsfnؕK-R jrMvlqK3AŸ|N$ i )%2A-?}DH 6g?~bv=hp仫iP0?r!e̘IF=/>)zaCXOݡ^gTxfgC9¥ra(/Ԃ\2v"nNbm\7ycTڄ'e'9F3<&;{YS?qP}{4%._ AwɆ5M4pIP30OK7֟5,m}`tJlo[TټlrF+#>",(^a59+d[3 NhMǠG0pI>A45W9O>[1_Mh4cٲ˸1 6AO- oM 3Ҭ́˱VDcT v@rhe=p#A`=H6cഄapb 3luis|c-a@ aM6q?iqYڃ=Iɋ ?oVeE+nGe0Y2ם_Ѻq-/K Mzedyk`QR$!%MH*,8f'oAU! ]b`:+BLbR~ :0!f@U]Сϵ %).Tęre;Iw:/("˪X1p ̃Āv(Jv.en0UFxǸ:܈7Lh'wS9ikaehũkc009D"% Zl`x=GSBMv~ŢX61"GIP--;8L`l3FĔNԑ*p,q y}hZ!L^gDLY<YE2 Ƅv3g C, V|tAЬt+bYQGJ4ໍmɫ鹳yXw_A‰eNg$\EC<0'}GL2 Q%!w-7.xX@'i[Ǟ3C ]4LQ/ALOsc]8B7gXucޡpݟzT>]+ ,)7dI/Rf-L}g0=ekDv ħ2}w1ꦟuDޞiJrTr6A ,!`5~U Y[h~L}|#ZOZ<TG*.Y\;m>$ќ/s佶6Vq$mu^uw+$=|O$H}|x~񂱆/X.7FŦkp9H1LT|?çpA&>x?g3s]E[X&.q43uf* 4v%-Y#R̳c8V+V,~+7qhj튠 3n0D˙m@Е"I:k3]v[M;ub<.A*V\4?h}$020>2 QB E(v݂ G"-T\nۣEޓ+ KڨUv$~!h Qҽ:+;vRрbи#soSR l yګX^V7^KCߔ|Iq- %i&9VuR4ݑsvm18K+b~8_aT`?SCta']l_Z5vImACwTj_`>ui@1>Zj'qHmo܄ 6,&s:%,zgp@E'8>;yK*Q@^R,xqV*0x;P]=/ne-vuW0ݡ"}/v,Ѥ;=٧yt;֧o3ٓg1DƷ(jQm|.-,`ĦIfU@$buKe7(UՍ;c(1i HrpBw=R 1DPO_F "Ǟ@\%֌Ȉi䜚Y?Ijѓ%U}Ėv`1~eWz|oB%DU(sSw2 ^G{q5ҙ~'":B'qBnzQWkPީ1hzjb<eeN z%w T.$[.azΎٷJ|ACOt"J,GFCu&6|&( Td=Qq'Hy5,N-PVaM{יmx:Ղ(+ythZ 44c|㨑ooH$BKnZ<[uMk>sĜI+~2c`,j8o12w0rvrA`S} \ oVJ2S1<=^+i˭j籮`ئֶcS[ʒߗޟ$+O,4$"iH̩OZ4&[4r'$0gaĽa'v}*;}݈[3V[L[/#i~I@zcʗ6jľsPOf^iE:F(mᴂ_<^xg,V[FwX~I8kH)R{"Zy狆xI$Ԁ99_]6b"ObĢL~߆9FQQl Ιv*2"pLn#F=1(f΅&# -3`ߣx/lTr~ELE2'[v.A"!=O&n2KQ=ACBIb3L45[w^fWɏꪞ2օiԾd{p wU$ wm|h UDS2!B2U{L0Y"vT}ᾬ460{y7 hWfс7:[bSzX5GUA'24: ڱBkƹ<LZ!Lʿ\娌g򝝑Lp{扄+Qd0(pFX3m FLT2Go'6UZwbp* XۼXnHUTQ&C?(YG)SJFovM0>Iih\Tjem+uu#l|$mR*=kSSwŇWKKrngb?Xx"Q,E?[KÑA ( jv$ r3"x]v`o)-߷g$=GfXv)~ܨ%;5g L ݞ`qZY*CREUϲ 9nO|R0Lj+M|w1Z,h~OK0~ɓBliiOIa|0Vi]JX;/:y9Dv3g#}ϸeՠ ձ-gˤ}lf0uLRP.c=:]='FqLUM=a=hE%L5= --XSˤ\'`7ON~Oۅ(NdOPóO͊p(?yKp1O)ٽHXKʍzh]m U[c(VE,|G\㛂.fpiRIK6li Df\&f|G(x6muO=3C=3U"?o`MK(3d@XzClo\xv ꪟa Snf47E&>(t:z"9Z0pHzbn'4WKNzD?gWY c,fW6HKoP٥jD%bӞH04Sր-Fp.l1wx D4i dLIؿY2d}[s?}TД/6,Dy:i,޴c6^w`A檒#sv{I 2[~68޸R7gU?)1oTM$g#؜we!Lk*J۰2ygx-D"`6ƾ6zJP-eCI^o:LXbjSظ )YRC8>फ?Y3ko5p7J5 qFNqQň6<@6W"R%4߂BJz%4ފm< *(׳l9 o$`lujog`5 PCJi^BΪ)D:T%W>.k'nK-OdD7IbStbxra_2L]NDž*mubhj~O".1i!g Ms=ra^B(ZMÌ@1+6<+ٰNh70}^e73ӯ=^gg[F'`7ГV^ 4Ua}~ﵥ٭, m= O:ydCKu.y"ڳX 8l.Ν#] Ƽ< ^ [PR1z.c4Lk% *@ T2I]}銋2(<8 [Pj4+wϩ)g(R{A)ëOWՑcʅn0GO,)9ϲmvf`1H=Xe}Iά:*U]Mxe\F8B"Ci"j]? [@g29_sV&6ߴ Ņ!V~^6y:H= ,=<3fV0Pt/q]e?*oV?~sI__y[SF4C|v_秉^M>E!.APx{]{[R`?]HQ3=$zzJDV;NgZGCkM=CKPiLDKj|20q(b'-pZ_#o14KRTZ70#mPP6dTEdI7#H:]qt2ΆQGbr"!S(n8U* T-F]G&Y\G\1\]NwԨ-ޭȒ(^I 7F;Wu#8 R +G8c}ֻ>cKۣe^v){}$PW,,ֲf͙)(ޓΞ=*MD(C|w< ǁi,S)Z,j7B.#j0ڋ7DŅ&ՁMƲJ .!j:*: ^n:ܟ29QEqi|*ѣ넗db˂ʃV9>Rb 4G]P"$e-r;2 _>k:RЌͅijk&/ubqw,1 T)RTl |qxhjΆgUS l&+ ᪂nNFו*#=0ʩA!ΉMW18k. VUC"-.ʤ"Od{ &IJvƱc 3 D4 8TGT*p 8l֦ oLfbu>nJm2e^*=ҡ!}u722x!֭y.pd0J:?Gt>82d?,9`qQc, ,aN`"?9>hYbvvZ#i1zݮ+>ޯk%&P7}S+]|Bsm7Quu`i;t`jsyM=dc:∗4<t/bB wdrW I1ΘABO$~W*i9p\Af=(_cjki/<~"U;꺮 jL9k88[NE뵘|{XhYni)NvEKΊb8佗zȈ-#?co;xtp>PW [3Tn'ꖜ9^[L(@_Ԯ+a3|v~<#Gj+rp b&6 &>bc|l aԔcdO 6d`i'j)+ъ|?`U(lܮZSro])/4%ѝW)D^Tрkk~ i|)PC&eɝ=ixjMٵ06Vl J´ 4Y2f1 >9 Q ,MF86 >9YF1oNC{/6?mdE$|W.LasJݟx+V%vY~اk_ИD7p R^~vf?E=LiD4LA!}n ?缰ty*ejr:?*+><2= k0ڣF˒ 11؟y8zm̈ Nm60S|cA쵷UֿQnL63şgeLdS5+v3u7!;T?/t5c-  #j-!"s +lDjW$cԽ>`8EU&9h 1LTqW;M ̧l*7 ZEGp= ݊TV#QcHrx3 HWtcHz kz~ƽ|hü1=^V`5!{Fҫ." @H26_W+U$oj + @ {&H<7MƩ)4 WIGmP:O,Rnq$N>A0jb8x,zV9Xf̌ᇮJ)LX g0e'$NQ Z V;뀃 }6!{ 0mtzsUJC=uKÚF[]Q.hrWFGJɷ" jne bΥ ;v[f+vn@oF)9rM+Q/l ]EzB.J 9;Nc;jo&@!Na>EYi?Ie ƹ?Jcmk½)`j"m _k壂 8M#z}ih mnmX,= yx{ Q\;,8UŜ"Zxg5~T"^4PSJ:ˋB!oC“k>tD(nI+n.R2O/ Z b4 V|d)UG\ OG;|בYWwr IWWdjbWT8C}>~KOL ~2 uSK1TgC߻dNi|17"'8|]|+~N`/.E?}4}D}r! Q Q[r32m sw6tC{d>޷JNҿwdgU_GW ɾGk 9gt\KX"x͊C U8?Ply#EŐUQ/h1oϒHîH><1im<5Y;?VTJFV8C>X30H';v=ps'I<&ٔQ+%lD LN9ZdQ/ysxUӘ{JtP9m vVlT&,:Xc_Jl !."v,s5D#ic8oݗ y m8cƓLgؑL!P1K4\e!NT. %MlWV{MEr]@ 1 ~ XDz\z"7+9hv!GK/+ "7Z5P3o[9>G&~jGgΎق .RFP4%P)v7d+AAV:\k>9/)Y7c# qۢRWFH'--iZ oMb21*4A&I2:n?;!-nR4%r"VEЙ G Onj~0?Oİ+fw1J:vS`>܅@elp1 gZ/tc^̻|SY-nfLaL;/$ I"8!@'FWXpCͼnd t66g'2,R=OJfJ >+EדeGL1GaCd. ]JÎNC3OBԖTiy֮C *pV Af,V])҆:2ΜNǦFlENP 徭饔d۟ƦL(R4-Kguo)1>u&gKԥJ ^8fze@98E0ƦڶGԙrK[B0zI6/ߕ4u3zQ"i=A?)-(ݥ/ˣ 2jl=O iR @`Gå^0dox'W-(L7iڦМ?-kv oU h^9-ι]r\mB`I7IWȏK,/e|*O@dB7 zBSm$OґԱ%nZ5[?de qǠwIpݱJwp]m=S%jP&&?pI4߱)柭oT9dNS⋬5/]vAlN w,{]|@ߺxb~O L>ө*U )'8Z3<B;_$Lzߡ)MǾV.bmd/d9 +mF="^U~xBa_n\tm,"($a\/Pdc [#LUO0{jDsՌ?ڪg_=ҾHTJcy7- eԖX/li6HঈVev\KC_m{.(2.}iNށC7TP"+:&«>6! (H5K]dօkk ,)J&R#)p@g x7,12T4 EL l?ѓd֏[luZ1m5mܫaXuRwSܷ`N5ꑱ f4׫3^%;[ F4YYPMm:.W]d3_p.Kh zF>tL^vpgr i1>)pt}îNf| v7k9W/Q]t}b:yf[ҢDew}p K #agXoՎPRPEQ|-[Tk1z^,X/֗*C _ρxl3"KjJzpX'&m + I8~_c=OX왨`ԯɼK(ݺ_=7˫lVsQϖ\]Axs ×}ZWrQa Ny.=h, (Y9Y"o+Z?|`Flx꫊Aj7iP彔#mK3~MyAM\`Ӵ&uW~PdUr֤ r&Oԁj|jzsaE\pD1t~͏yAC՞0H9=*u5ӻRW(WgIvMKQ\9մ>=AcM2_W8GڏJ4`2]p{Viv4ᜋLNģck\ֵ  /0E-X*Gh Q%,( c#o-jS}tC1_<[q5%PC侬$r.EH%+)6N=Ʈ c?0)'C~@LVhqw .֗D$14(o[8APflIZʥ ?0g\q'T8’۩@Us~ &fS:ŖLwNeGE7CKKS@sľ%..3Ua(0ݟW1{DL03 aK4O$Sw)Sw}yM1dBDB,#̋fә>(N e<tz=s5)>V)7 x& [s{fFFczT92zxB.b#[u<\rsEzh5<8B 6ȱU+Нz _rBWW[솀w+h <\q xIULYASr@yB!i ֌InvR׶m.s`KvOdr{~ LQ7Fre:?JfTIs_uUcmqhYFX 'ˋSʇ#t(`3s2͂9Z(́-[?5 [.ZTm]8争x&Wq*71uj:%m˜w9uc. #D?:nA"xf /n((f)EԡhmUXHh0CImp)C<FNy$\[ã+zơo8Uؓ3$ja&[3ery/1N*6*b{Q`@%sr oѻ)4'{ ~k|ebN+4.@?PR3H#D;z@x+k.z`F$7Zr#Bwƙ݊R輜ObcMl[j7n]rAEZ)hBD8 &o97{.7< oK62y *vd唬Q<*HN圚cex;нHطr+fӯęw?tbÜ"x7gҊs6kԷhwSvD~#BAkVLZ|W2u 7w`ds"<!: fD]i=Hؽ ϔ2<3+",|wMHe<]O~O.p6^WeÒ9,f@  FbTIRo4#~t_*EU`A$?sCG/U3y:K$^BR.{u~wL pLM( '-^-xC11 GNn$GhḘQY?^~9ݸ={)7;"F;yxI V6&>+W{ۙF ,2S8'VEñ̼GGP|;:H(YHD6-dğ0!X?+xJGٺcnBxf&*anU.+53KC0NKv Ʒ,X3\0NS2Hgi Oя>b(,}+m%u~{F He#wF1clb{ ܄VNNC*bS=! q8w;w#/Rjcq*«r+zqF"hz8ԏ~ꏝchwL"^t+ Y+ugs[Av7(*`0~7iep8R5dX<@ 7sRh7X67IVO ^\5.,#pe3|[-xEHb&0d2wK{_(fu:!iz/ ʠ 3vXocLHREwbu%_h6k6':{Wty&muבi%gg~CC3 &|5&}2#|?jF0{$So0oIՠ[lά6w̾C VEι'CWvYA=O(yt 9ZTHj<\Df&u~At,.!'\r s Y8s!25Ip4b wwZKȤ‚\>9W+:zmBe8#?aQT.Qg}{_]`=NЍ$oPtvdܛϺ$ۗc%im~fGreki8$ f/pGCbnRo]W ײIR<5]Ǐz[ \04Z(\z>c!VGmޚD+(DhQ[0w~k>xXv# M!5{g CL!#;j 0XB>HnKFixyi^^`WebH33_7LoJ%qs, h:>J"<'g9=H%.XY5_oWKrIZBAz'r3CVլ_ ރ$XYXLx=Bxs=ĒZ@!2%r0M(T.Ӊ( ᬔAwL-~,>*!ta%"t(ػBb0dWP࿗Z"=c ~wf`RH;l>ӸEjd(Qixqt`>vnј " (»'C'1sI񧪓ICqڄ33Y+]qv)ihC%X9?JWvY$&M} g{}$T f@650-sE>3 rҢ? m",!ah~`k={"QXMZ9Q#x!)~],Y7A.'S 2ưV2+T>.6wWCXm}yO)F'qԨl]nqy&Sř)}Ӱ7@BI(֒ĩ:ZxEE֧ ٱ$DpF3a_قF~x/1&ehy'|Ɏ=\hB4cwƙduG)Gua< }Y"ݺƔ7TmI-TU]S]|f(z_PqMi ?8%Y,́^y?d/K]5rJ:ݽg"xVUu˰%[weЂ'#ż0yZ؂ 3bag{ /s9 6vBŮb5QO* ZV|k\nWYVKUŨ5>7 "}w" ת%$-x\ua;hC:` ֹ& 5h=MP!0Oq)ky<!G=xSD li7ی>"sVQ?#f1HD2h:w Kۚ=4wЦNXrsj?!fxV } O0X:DoZ!kz1̖ cg5P2ĂUS<5:2eLL(3ۛ)11Wό2*argNn~܀++<6P%U/bqD"QuLT"6U\!BnB5|Wتns`3\K4?@ \[X;0qFoUz"k%($6\AE~=; ;|D`X]ܖT3oT_01),W䒼Kj0af%ۍ13IJd7h30krQy;AmR&#G\\:uM,S3_oXnbVuvL6 (*^} ۇN! x%UC_J |M&@2V_uiKHF,"M;_I ,N'ǛׅCCT5''2PvSV݊8z 7.Y.^B9%-`P(LO!C:3]ky w~0g'A|Nu+mX\1e9蔨DV)yvL^R1p1 ;B€S2䓄^Q\`-WcJNve QrmmoR=L`X~H:И9ů4)vʽO0:0u["^a%0t,p~SdMn wgħ+fcaYHoeBg9-Hep6LWܒZ3t0 ¬,H9z!6Q d u!G~I껨 f :XAʣS-!?I.8'"eNГ9S*w2f+h*< rD+3 !j[g}bE>ixe$v{%vJ{NX,;myИ;}qD #/:$OYISP&7júO{FftGBccAϜJv40W3=2< |1Zi'̩au&3NO.@X>XgT}S(44ðzAo"Ħ2:,PTPO eM̑Cq:=UX-Ȅ-vfP{PKP wȦl,q\pfy~bԚ/J*9!)',q-p̓x†^Y֕ /k9Mt(vB%EsT^1C_F'f?BQ~Y< HS+:e5e9 \Os>ݗU?Sǽ` |o/;NJ&ek]ͼbgtC1։#stΪ>~:%K\.uOBȤ\dHXʜՕd?#QV.ɉ}ݰ%-x!:Kh/*2T/P O;^.P,rNZ)E} n)Jw8|a x|MD==PC4w&LH mGf@/z ;tZjBS:r({vQ#FCP˫AW[SS%ZƭIp|,B|5w#'_=ic ҝԲ|y>']*+2lW jF4'ʎ9"h{ON`}b.Sj:]mILm_VQM i^9m7WP k͊fZs|14q#lAǤfH U4ó܅mu"ڙ~>R4%Y{I6c^vQX޵rwTOf+Ѽ^fIp|xW61MmH{tETs%Wȧva*`@4+;h8~?H:"=:>xT͔ gHi3js‘6`'ū +A3|RG /. DHt@}QAs䳞W5H[ӼA ҷhR)y6'atb=S%&ÁG"?H?g(r~{^4!reA}.#m'2(!Q- [6a؇W w ۜ .j8"!xZc^C;=9ד,@>bjO^P̉Nmw(71!83„VRFY!ELv:v0w G5SrUi$^'˩j4KW^O{G+mCc+rĤ3WJg&\ ?߅hC3Rw?|HN|a#|^pSp(3ar?jTL⑸R"] 1dN2X1OFҮ)W)@9..98Bs@#ﷁ@:Ǥ~k~sg1 <{|GsxJU1Xg RUhaJpa`l |Rz$˓RH5,/UXJp"$%ZaaӇfXv4k Xj,6xjW;H rSp/#:gh#tan,状PSwit#Tۺ(n[_gt?`e$^{ي{E< 3Q.1 ,@V %r囟ۑ8f_{H^2m,njqotյr|u\M\UĐ*Pw$ЩFeGIko#GEborof^k&3|]$LTM:hBC&aVǛ{58 IRAdlO\f/p7$ i&%)H 4"V\I)y̏[ y$x'#ξHVzyju`>jyI.{l?BN?7]u;+9rK0\B$sTUmݯĤzG1`#g[!pߥN@-)l=T=_4]֘ :8=7P,\O _&(XR}Ѧ326KR*1DiG2x,E%?@`#'*.~ǤENFY#r՟|@6UO$vAIS9LQ/䕪JI%%1Y$wrĎL\aNu5Z . :p4&l*:ۗ`3MɉQ\qW35jwߦЊ \\kjyEV0LePVB I;}Sorh/CĤFhV#|@` Q< 6;}=i|@骧ܐd IFZP HIQ3z0wv9){SL1*%N{? kv7g kOON 9x& Y/=bhA.EGG3QJpȵ[>UqV~8%؋`O5{SX|K_ଢFLɌ.Vz[9٤$;={kюû˾~0Gܤ7\X <[l+VkOU|dM/`AaE \g:XilU?n{4c8kDaN> ']`GJX=OZ\t?\Jm557[#Vn+Pvhas0OsAuuޒ/vzܯ66} XIH{o8e<+-ƠF> VBs%L|F+\g݇MNPwPVX2@k A># 0vWXF` .1P+hԐ8 yvi߆5A&@E:+8X :6 X"Ld?vۊ:y6h~gvٺ)y gޗ~ ii <ݗo)%҇[ OON +: ØŚ 웖+m7No3u{.m|ĭbP1]kz.YL1LN"Q'}l3U0QŐuqE>viߛ-^"f0>'&W%%}[Y 1hx1y-VfbCWd !xTqa }1Am* [.EV_A'=D¿5$PiqH?:ۊluQ 碀G,IA8#^ILcI=V;=A&%W#ukk)HdpG4U&EQiI˶Q|z8v" ӭXH!4ctDS^jpqZ;,!ұu2Ш%Ν~S60T=ŚdgLv5\*kȑQ3%Pw`h K=mp-zzc\ťLV% ffBWivp#8u$b/<.լEdW8fc gv)DZqo3!JGJxi/r&O|4$C=u` cŬȣϯ'Rq?/.%:u &f͠@פۤF7+kIDN.Vdt|.h3jx^% _E aHH|1˪VMPEӡr"ۄ Z&C I~]?(1퇢h}Dn}nO'+s}c :(D<]  P^h( gT%\?ܥI]ȍyYkg3"?1k>gCm9 @REwMYB@˧kF/teFᜌJk)ge-G *[ɼ4h[~%`)q5^^C[F4 K[_Yc%i,U #b`S:YozhtՁ50IC{^ɜwoBkX *Kӷr0 W-(vEkG=<0<|.`4g;_HgC޺$9kO7mx&sbig?^u<3z)n{Zp;5]"@pߟ\}?b/ K/p tSCӪU]Z_fT9f̏7Ҡv`(Pg3bO? ::y04:SNK-uH!f ({ P1}I͔&8E ,YDsq 0h$HلDfpWbu{"w*e8U mM]v:+r#Y=MrmrHFU}~v*\؃4@@'Hvr2.tP(cdugo@csY"#+D>x,/pOzV; %/6{‡q%bmwkRFdym8rkzDW'q톊9b}z8͍p"v|,OD̀D d9J! \.Îk~ 0PQ2 euDd0&HT'+0杣rh34 l&;)ыiOc_x5JKPb86&Co\Jl ,gcZ>pEW?kncg.dl|n(;ذv+ML鶴%8?R6\,шj9%%"Ia;9=S*мCb|CG+639$tB WL5L{9-ߦY Pd?}uoA[-'1_Tmi{2цQhcV|1MZ=#~F1xcAo 4-FǶPăn4EfDXcSr~`=PLK,ȅ]6Lx ԸϮɬ P5"hw1tlG^籵G!P3\d!#~,%1Y^eI J|Z=ˠб(D^YGs5sfT+Ϲkq.-̿{+V䩖T6HnB|THǘ89NK(4Gt܄tُdkzc`ʘ˖נjvx? ˟ҎŎoPg_*=fVVoFO#y}\"c Ή*¬]LxT ӈD ιEC4Y1y >pư @+_578#E"T_ө6QfN[xy6: 9ܙT+C)l[tߗ^}:زHRXq"7!jP&A9/Q ?@{ xcMMMmf \dLh UvyZАU-n@\S8YbH$Ofp93ݞggJmq' L q%~^lS@sl0sX a9*okG7\kS%6˻wVLjlN'^pHu\(.O*Ó:wѐCIe CN`3FY"p×QaLE)& 9f{ɀԌoӫ/g9%D#YqԹg;ZY놪=ge cjx0".h#~%9McZR oe˻5eŇ=xB q9'3ɦF:eti'a?0xi$ bȩx QZT.fwY1Q:ccu:;*^$Gxt۠vٓ'r`]KHĝ!^bk%l0z\f')12w7?vqPdBe<]훅VL;=CVٲ%EKԀRE,\en~,`Z1 J| ՕKREȩw{I o/ϧcZe4\w8l[a Л'aBth[myVF+:z&k3DWay$66 \E(-}RuGlX-\46DGyAjRSBЦ8[,-X|aCF7)5PCFϨMZA|Q`SXpX_i[TIh+:Ab{d,{9?6TIWlw}k[:ijl $t3k].4IG`qkV Z*["OS~MA=}<G9pjfZ^y*XEʏ,~ A?X4bȎ"ۍP>"Q yMfʙ6; zop elr[}VڒNuȶuJq9bka ExtScqz m»BrJfvġ2~6**ZW25ľPGL0|>rg-Pwo,9A^7^Yɸ\yO~~ȟ"N"iaЀzsgܛppqWv4a9s7Pv`s IedxQwDBtGYɮ{e[ƪ.儭:䙊lrFP+2-;x@B) j]Z{}v"vPp0 MݧkaDHl 5La\ꍨkL @و]Nn%UbM{kZK/w{0kp'F?OIPzRAqpY#WA6/^'NkN>|=:ZU1G+p.rB2`_{B`_ -gގ3][m HPz4 ρ94uՋۭ }A .1ـ7*6zO*9;Wb]ج_Fiim*ؗ0AoQU1o>+,mB$߶Otbě"*XCӯJK\ O%j8z_QUqF94,e, HKBKW%%1t 2m̱A] 08l唆qt"4!Z:{Y[Gy raEMcTX}hh3umH  (퓐\;[@Bm"/Zt cx J~2vwTKU3w%VQLTQ߽("~$vɷ0ĕ?U}ܲn~c^YRP~eȪ|,-HE]Fx/hCɞFׄx;xyshڔR}J;9t2@F9y3KpA [:bx+W82LLqYȔjzX?*Z*kzY^ A?< HD̜dнNIQI&ܸʵ$vC8\S֗>4fޜP<|H=!˯1٬oIC8 @ =;]ʗl9-27-o"@.TwU ,,-s*˖]lO*o^N5Xܵ3YևHE aĀ> |$XݫZO;)n$Ogš-gg:!qI!` Bl嵞 Z6vFx3hGԟ7*1 0~1g)~Rgl1Ns (~g,n !@H`Qv4TmITMy STtW:w&-=]1M*0c2Ɩ:@Ha[\^㙯=O]|䞰h7Uqٷu$1-% XhXmn#@Rb |E ȭ=6jCBn[w'%Ql$qb gV{`h@Z`/C`s3EM]X`^:֕8s&!E|Wt|¸tl9˅!à`m#v2i F ܜ}J&W?("T]|}TȢXt?IccR)>*'PqDz `}EPP6¹0fY]) 1C)$IHu?(c>%Г'y꯻E},(l zpiovQm ,[1w'ڙlmJNb(N2ZEcW~ݡ+}<ݡy;{XnWQxJv0:2!8tWP/&Mjhl*Dfba1*r dx`B]1ɖW@Nح깯ÒZxhKN//ff&k@ۂVl]iMO䂼`az>?ѻ,qj. I1[&Ӳ>B,6NB_uk/+ cx+$ ؑYgIWA'AڀHj_EC >2,|7!U2eQ; <3ۅpKU:M,F`Uid1DwjP*]Y{M݄v4>b.2 +c1ϻi$Wܶ0(;"MHPOF@"L".zye d X#*[ fbǃDsQMŎ4rK.s dZ@k䇑a.Zq:Uي'B6i:}Imq=)HraZȕʜw]n$޷!x֔P)kD<-[g9ި8ɍcj}L_hG]IPf5ܚMɆm`g0o [V+xTmM4H< dY)>\Gπ≼P\xPH1c+Gq8r|&uKёEif\#5"/ Mm[7Xj! xv_&pRk)=169֔MQ2<0NЙ-1_%nS{m*7Yѕ)D anV03~$ ๎N)<4RQH8N!]ce3L#%oiOw+OD}T!Z5K$BI9.C}4!+QXT_*ެ 4+ J0!``I!T/]$8Etker2W^fƒ޹؅؝j.ٮx77W[A!"n^ 5]FjY)xD@'PÉQm``lAk:50/( WQHBIi`?6\@gfoZSEhG(d~:lV*.%#$t̯#qnzLL `p5n "\oeu,6!5l3盪Jk A#-@?wkM\@f\ u8?m=qiQƴsTW`l͸R!$k qD}\QЩӱog}uퟷ^B äת+4tTxKibd5;!. I  PƘ@j.%pYȾϟXCՂQrh}ȏ}g EHy aj%24}$h}g^~rsQ5&!e_䩍 ξ8]q#ޅ,;f3>T&!#j`$2*c'1 슋v&aI4#gFsUgrIlgd߷!/>MVw?b4y Tv6O78VJn1(*[M5ahnz,v"0HnmMfx]ar3*|2{)pܸ{EͰ9Zl*zE 7Hw 1O4 y 2쎻|9M( B6iyw]&`́ƪ!CnQ ,yn{ʩo^g7j@ɋ0pFݔ$*FB4wF@*^H_zۭ?:k^#:p7 C`x>{BʦQ\[e^?D;PG]uG;qȹ(FQʄ>ۆs~ך/Տ$q%Vv^sN_{wg<Є㹩{bN LKDDO-WZ} %܂N+6\.۩-Nt{s"Ujt)MIT|{/VIޫy) '}QQa 8Kd:&Vx'4WjtXpM./FD*"*~bY!RY}8tt9l3NMlZi?Vg4$"^)V|H,i'^[\A{@_$dRqId1IiF4XhJ+&1}AC2;"n?o^y  YwHW5Ms)H @J=mxĻ4*ͺ[8ukFeNJ 2OP]R87FO6`nћbFHZ4 ;Ez3_^6cJ2 YO-e.~Kv~ox8ζXlޥhb=cyM@d֩d?ŹiXN2t2Z`{!qT46HF}Z .y cה!2󞳹1h9gs 4e$hqZ:9c2?_uqHpƐ@}TxDd_Ν]?z{ Zn3HͷT8(z[fGW 陸8,80Jcl#[$Ѯ൛֎WS֬+$kL,w+?;h?zjOccχZ>Z<.D$-=5i`$%!r+}1ujX.Xhcr_ Z1ؑkȉz~R᷼D (T//g1%}DF'Gp=aχ )$sGEbë }u{B|+6@ B''x e:[_)3ȃ||Mo1ـvo.! tm:m& 9bO<)A7:&W4r08Q)xkT"iE‚ P(} r foI :$R~3>ߘS?H*Rپ;}ic÷ǨK΅I% Ƴ(>]֧/찴ߚdB Ӆ: KeK9Э9W]O$f]hL6O}B;M58\Y9Z O]-;ڧOSz@ tHi|) BRg}gwFkeJ1Lz5>"4nً5 J !2=Ұ@&R?efW"'tPEj6P/&U:'6 9{̢Ju)OˀM#(]Sû}KDpo_CS!; Z_)(ߣ D#iV"@e.p] /|op%)xlN2^e/aϫwM u.;;Il`=oǐaC8KꠑmM%S8XOcg7 ' @;FM6Zb-k^Qڔ1\EmDel@"vb5]JԢw`fUuZ;L)NV@A.pϱ;RJ-*6/zko 6"rBn< qX.MrpÑY3Xx  2'՞JM|o(p9V4yTߏ:L1=EZu8bjm6I }ru,4N-3dB$4(6%0j.RT|":s{Ct.VN׈zY?9՜M֟Uy+L'w*¹+XбuYLi+4Hwؐp*v8v{6gV3M4 N&&Ho cΝou'h#K#e({T1Ґq q苁FI* ՌwwݚaR6W`bC 0 ^Yih{g]8c)Ž_xc #$=cě+Bk?I*ϵ n״I #= 3oXdYvY\\zV*QgSapKE jn a_-KGjRzs$c0_I!P֞Zk' G Q/1Ke'ۮ|:鰹jA~]0õXEvc]Ѱ|'cE !Ee2xw1T~$"}#Jq әF@bB8dP m//q'+%7>8gdkA#l=KcY2 9ئ·O0܆$FgԢ]{`p 9tCkWCR>n9F2LoO3fjR}=ZϞb ArRD\,Vþc.".11gd8rQ27p/snyf) e.&fnb' ڞ]hO̫-oTuB>_&blNsFn9 x1`zU6n^ydž^V؅F]{l|U]C,>w-"W KM#m[Hp.gԜiCm(t^ڈϨn$MUX]{|ZFl{~@"J| ܬy^pȸK#QoeU?ii'{ᯘ:6_wgLm 0FXE~k ŀS\Y@{2€ uoU2mdV J0;hIH SL'>`@d|w`ˇ3K6xHu><xbi;Xxw&B6\ ޻` q1Dz\^>P ʡ$6+S9/`VLJ'1ekGTSlT_"Pfȿb1}SlhK9(h唘7?=%2cOqxwmY~h;_ z/YXG3sj3b+1VXFY,0 <yn,剣W{г/`P/ԛ=T:PjYWxX5pPCMIIs}llv8YJ.337E (I\ѤghI~|V#,I$Ќ޲R`vɋ3 2,r?H?$w ̂g9YF飦`. !sĭfGsudG_}ub|4/zН^49jOX {ٰ燓}pFv[O_-`}S\"6<;Nr0%зnƄaS ^U3•-mx 5ϋX8Y ͜Qa zV`!K@6uA+ZUl}1{c|UqhGiɇuF:EaeS~vd5h`vbKqf Y,J+^)IuɣCi'"%OM *5ш@[k sTIHmgaB*?xif34v uqspI d 9ʷώcgL_IhKO3e9_|ux|A<籘E`GC@ Spd?&z'5>lсFLAk1Eބ$8ȿOx&sݪ,FnWHGGx  +SPw9^% :|?:L&sO,7Pv&;Qk_w2פwE4s y|<#:΂QD`QcVCUjck# l♯gRP^tZvl1$yZ\E3֦=pt.ES˕ =iEaJP_P)*q 02">%{;"Ă^W=҃%,҂;>rhE!H*uu)kkS+ꤹ4EEr{O˦{V1@}SX5X8b53{V@ńsz=y#M;-ſ#oґ4鿐Y5ؘC!|!bRer8kq|\glljSrOhԎnpMd#NCs}Ҥd\Qcb oo>WqO:lJ8 # iI&Lz3Џg|hdOg4E#[p0Wo0XθXE~?TN ]f)ؽo xiK R30k{S E_|\D+^$hDQ3 !5.]MY2Wmhyt(T{5iȘW6q-6KJd,ThQ5er-9!{Ao&Dom Ka)@/n$Dku*VwwvA9*O2{ S-w2iUVzιbQ貈y nqXiFܔq0졨ePoI7Kg\RZ=bL׶4`8ON%絫F]3DC@GR֊xgJr0`쥹p*mKKIZ&ijuڵZ~P\q#& #CJb5$_ 5Tw}B͞e..=IV aFuA}Ftեk??=}-Y{җF*Xde8Dxj #Mk {|\23V"2=(n>DnQٓ]e0vqA@i#h'MKyqRZY2`xshA1 Wx LG-~AF{M&,A[7^;_q8 V+r*_lS̖0pWc7)ιiM.Q[pt-F\3nX߅o)m$$ f0Jdd< 4e-U A ^ _~9#G5o{ҋⵙ%S.S2+}6驮gONŨNFgUD݋#rަSPh?lDoHtYN*\#u - #*|VYp1CI|GA1e rP]a4oT#|hg'ju $xD"S9`Qζ-:5׿X7ecͼA9[EjI-26\s{_~J{.lG`a5WnQ86G<0*G(!ê-@\pw=ԧJ?̀>#zSˢyۦtó潑=ås o=i$&Srp,/XGb-fBb{ 8,Iz`pkQU4 z!)T4%w6h0l6@aasB?K*+ څ*(@4|ݾO`/Ght%&/V=8[t~26]tG;DwN%ّN<mdh&z&@x*Q˱ɐ$ Sv $_53.p }gCl%,?"ŠA|Z%*6fOU{O~uEE7 ~pLu$#f#N8Gp!j =Ji ͢HP۟Aa㭬GdٞUaq1n0и34C3H`j;>~9+nX#;[˲}>Eٞ.qf:M'SRӗ-!KK3z;~q\YĔodch{]w*Қ/f_PpY+_Y̹ɶ\Vp|oSӤFׁ$DF!r+Z#@JoP[Uqb^%t ):y"{9 Db]ruVąeD4 EZ,ӊ(;TnfPq1C;$=ly)nEGyQu5;=2c՜E. hzc#ccQ3UP#J|<$k$€!S j/ɓ y,)*,#à{>%A aң^o**ط4sӄ!p[] %!.&ɞ <>w8h4CWv-A;—-gHCTDз!GRD3D×n[Tho84\Daog9n9h狣0O 8Hem `q/'hEMJQ43]< 0Y$ ,̎jVmJqRٓ}TK"&0/:$f0(MzMb /=:YP;:Rװ'v &ɹRĥ"֮A/I_p=6ߒTB5qҘOL%!kNu׆qOE>GIY6x{x2X4m@Lؘļd4L_\"D_w)0Ǘ9~iriF~nV] G^4_f)&xe'a!58,f?'z~ Kg TEmaVO~.QZ/7D=V' N${jp )zc7㴘e= ۠?PD$E [F }rɡ+Pe&a)2&e\YNb-9I0/LqPv)"gkc mǿ a8\Gˆ&4k=t'ǂK&ywfKd=ח쉘 l:$bD) 慎#vB t `w=P$Rz|j =I#q7ŸLg`4K/^| 9cIc +l:PY%tsO-$c%WvM>~ld:RXJ>M RFSoDLͥn8imyHS)?[Dyy.-76wDa 6uF 4ELe#gYW 8lNPp;ܘm錢N^L> V˟ܷށC :Ke\$SQH~3Xq3'/D{XOQɬNu"{AQcO>l~2\s"' b3c8DUFco{aqߐ#B2=hSL.|=Q.Sn"/P: Uvb\Z-0lmjl=ZܒW-U&T58z@rL=ӥ+<點;:@ETc4Q$ۇz hy˿Ys/Eh uGriUj1], T^ҧ>upY61 pI~PJÃL` ~JP2gZ7NzO߈?iZ3įKņoT$T nʐUv.˼N1%C(]~p !]>Q˫2/WX*z$M*hH`饨lpF+]i~ N^Owy'$r0P/=O2zGi!Tiu ~s)l)8 qȗn72nnH}$ &ƍlJTF;%.|gl<a~x<ToLꙤ;㦽 'k[eYd2;g :*hn2Tp}h^Cᲅhw!*OҪRq59 U[،}>8eVi. _ÐCᖵvJ=+z45:ˠ#[߷2Yba q&GeئaɏŬeai/Xu'p/lc u+Њ_vȂ3¢jU*7(JtM -%;T1Xݨ"+𳕊͢ﻁ~` HC[ڄ]v 澦W(I3:$5QK:rcY)\uRU%7c ;& LEyJl2-_ޥ A$Y"nd`˱e\#"t-@/t d'{I!]MZ̥FqB=N .RhA -m] DQ7?kFҽ}!<D;?e{~K,ٚaz['kALcqK:V>;LX(/&!y[q9WyovDQ۰;u{pk.%i,Ӗ&!ȕ qM6LMM2>sb_/ɷ{() 61)س(ϭ i|7Y[.kň6[a?E}<4Xqưw8H~ʛʾǚkThĐPl$d$]ԬÕD`HsQnQe=lQL?zl}(MߢKҷ:X^9Z(p=S4t/bU\ry)M+3՝5p_DavEG:煣Mc$)D^y@uzBҔ&Kܜ@v`Df5u~0)h2jZJ&tHg 9}Q9 slYSx1o Aqp}R[LE>GYTm6mh|] j,53X[dggG4n%> ,kD"?Vb` Tc'ndM Wtl^DΞxlO܅GF1>ǎ/WQJw)B!z5}<ĝ#&U 4F-diaB ?j!;CV4|>xom|8r]]U,rP'?JL (γ^%s?#==|'AM8Id*&z =PHϔvX,cBjUD/+n|>A%?R-Js]a~ C18ti1r{ݻ|nv?vHdKl.)x0|ylLJ# -7 .T*gmRtqqy_*w4* ='8v%HJ%Y,/͏4U[c $|IҒnP|w1D?ŻN?aQM잍F[13̠ ~a>ۤc$I 41.\?VD}k'ϕ]chD#($\㒩1I cDEqmyCXE3vsDK,ܠ L L z#5Gmy#8vr7z7x!N>Q>NzGGlӛM(,0=˔`އ_} y{~X?y;Zp[1s=Dp+0Ioܞv]E y\ucT5}Qň<߶qcxB` |Ɛ:3Eݼ rEhJ><; Raf HӮ#s!]H2ӴY5 +I3 dstFo ^%܀OF%BIgx˜FF-nȷ]2!W:1V&,u];3nZ9RGK?Mf Pn+# 2 uMU"KjV4HP>uuKόclA_I=J7QUvmQA^*֊צxiؓ橵T;3fS-E&4P'Z&r(U NgQ{Zad5I̲*I^[g|`j"Wnddܠ SF\AK ǍG!>j">(ah@טۼ^4/_-l66j8PcO ^,L^V>ݾ$R#|pj܍ -qV5 2uK8VCVIq_dE=g 0wlhndƲ4yUD%yTe{6"_Cd3vCW)gp2o/x郋tQj%j+ ǝЊV_L25?;<n {y' 8vbTO-1wҾLYI 2޿{k<:WLx¢Ec7{E;7[u@Wr1սJ?:L+њ1 mecbƈm^;ya_q}VEK' N򊜮0EfA%B&ϺǙA47V"ȿ76-""Dڧw7] 5 Z~a/D" 0_ cs[r3 -QE$(}Cqxbe6wqg-PC }*@kBϒEL$˜DJiHq1a8t:ckN؜3^ B=6ٽP!vZId]ҜGJ_i.C,Q#fi:5^=~4җ "Wr:[ir:H³q9P*OIXIN acWԡh"CBY%o adq(("Kjԝ{NLUo2YqQt׮?;Muhda|ɺ˕U[ݧ`aWFơ;x}=c.>Ux_& Q֝IfD9rG ]F iHqRL2Idy|C*X(ũx< sʔ\A!c0HD.,dڀ:L ԝ7Y='E&0x<CNDŽ1 *t۾GfQa52@U;r(r\li켅aX=weuRRT_{?0!S&o9531w-DOi46?I˗c#'cNPnpïz/mI' Vy.wxקKOQֺA.~Xs$W.^5٭?a{B$uXŲzN8g"{p"άeqq|Hg*HhF+JW55*X 2-y Ft+'X?2xdg~jA"Кj-}P&F@ a$/*(UnXcQh]8ğ&0L_ib0yT#e<. W{0$ͶSr{MsFx? z枋C#V%k-@N`po{4KDŽuD8C |*=,-\7]ִdw3 r+ ?sǘ 9GS`m/VEV݄L!~f@ye18Jz~Kgi qof|32`{Q?hwT@4]F8+xHɻW730\[3߸)qN$nQ@v/^I U'Jyʭ6XTfz0a.+ؠx _՝mEjYo@5ʶjsH</Xb_:eHHr@'S}i/Od_{+E$B0i=eޤid퉸M·nРx_Zۘ'ᮂyZtÚuۂ>y. &@>[ ; f̆9fkqb>#Agtu" HfJW3M_ j"8,kv;~x° 飺ق(n{ZUCx4#鼞VNn_W'R*b0.SS=,d Slk܏T ;K'{jCwf[^,t@ў=ڰ-4\@>vzKV ;3q~呤# PKP~_nWyѸ$@iH=ak <+A\G/8@Ygv[㕃uND(" D`wǂ:_&֚ 4a-%I`:>w7ʅ>jQH?6>~<je&%W[Fe(ݮ„&f]A\'@ u0h{=xqUcDsOn54, O Oy#C_w"ňH;U\\кnO'>nOrs E0&(#;z[m튗H@Dh3(~#[;[H8J9+C_CLĿyE\ V/QĂﻜۆ_\܏(>Wlp.%׌yzsEC uZ9"{ r4:: ]7Qd+NZ8:dC\R,>tdG!^ݷ~BxKX )aZ;@i )Mm<+_`Qp&>-cAGg͍[kr,gX]0 ;F@W?̬}rpjb lg Y+)C9jD_s$>M3֛(Nc[GG~vkO ] *gcDrD|' T7 Du5rM=oMMOAMEvM8!_h  8p.>z ܐn &*IxlP'yUg>Wʄ\ jp5!A'GdD:TlN0v6&zG{cӂ_,,lAM6n|QLOFc-jV͏=9|s[1(OkPdSqPʤd/{Ag; -ckjF=XdSݜCuP;&y8xXzsMau;RF!聊QI `˃mܽ{l1CCɑ{1YĥhaG$^~*c~gluIZbK9 K V{/=p%ړ7r>Su9kჾ)Ĺ=SQTFGπK$&5G=l+Df<=mU ϯ޳-g4߳/$i dUK ]/}o8SwG 67YJQ̬zg݀/V*zTC_HgC]Rp/ Sf\|%@Ä~^zbR*"<"q YUbrqC垤ЙZO?S/_,"*l33&.UKa o38j[G· ïȟ9%OJN&v:Lx J/FQU1!wsJ- U[n߇@!N K^Bd˗Ӽ"ƞ)BoK3aD3Z`M߲?HSb3;?߷􄈢F2%&c聽OnL IY痗VԷA p[MJ3[Vi!T@#p78U>@6eq`м=G.!.lyñVB҄/#C9ZqOs1Ȁh ꟃxw/ 2S'6(,8BjOlJY?Ul}ZCG$( ^CLggLpL4#3֊}T+=pGJxxĢ 3#+j`RVqx}֫ICye%fgw18!Ƀx3UItVbmS-;6l;{zh[:A [Cl2(isv%ah3H[Y>Rd^] 㪅QB@=> CpQKgN⬁2 * kҧl~6 In;I{jt1O<@C^+Y7}EOQmmHn/oz*赒< fC+o?>jYoس]\2xqy[?YSRףPmd^ke՛u| [ٲ7I.li![CIouں˳_ c^7!"5RD fs@NYjJ .=88]dc"mMkiM`8 4Y&LL+p98_Xs&RG/iI冇qdm^֘#i;>/)Ay-<Nj 눘yp(~2'X1)í泪K)DLZri7 ] ¢<Ռ'OÌevG N)MwX?aE33eSX|UJWPmz![TpZUs/ wg\518LTq6ݴIp`&ffc'yAJGFX"HQgJYWcɵ~,P= T$yP$?)y$iAZợ fTB N>]sݫKH'\ΜF+dȘ&T!RӼreFg;4ԑq3դ~!ZT0*];ύÈ̢[,b3 2B}}>͍?Ƒax+_~.V}`D+FeUdZ Ѩ)C. 7 #>¦QΰWWr~Q5I ݌?I:Jt!H.aD`/jj}e*J:@Dޘ:pV(x-'M#֕G<|sI<0WL׫q$muwP]6nVTIpjq:?׽F9n(s^gS)#Xؑ+C煊GESI>Uz2!;/]e#>Aua\rZkRk;QSgb#ÙQX0txd:B+ z%w` LYzMȋ5se=PoLt:˺WC٧M A`Y (V' AfbpE~~ᕏFI :}§o)=kI{57U,Q?~iZSx± k2Bߚ*F$%bi[b~D/uY,FͨcM~eTS)[qk,1LZO$ ˼q;F/խJUn~خXz,yaiw+:z`/h½X?i!cS4G\;5.gg"4mϕIX2`3/݉vkV(}y92=yqLzUIŁ2tia_b]YcMOTyu]|hE1ugwQކ]׏8%#Y|tYyPYߟ> {sͼ Q3yޤS6l2o42f<&kfTq ECmU&Ȉ Aû~0C9ӑOuWM"#T]10Uq:nd$m@NdGye=Jv{-c ի)Tj?s8Ǹ]0 }Y/Oz^rm9v}Yc&{ &DsNM׿d!j/հᅟŃ>Ү  Zi ;i8?3PUBLu%%V>J{K#|W]wPrkK(=pjd^gĴRnA Z$@c[c,%_ dKܯ31B|e H̓ hHf|s7;/J eǓ"s.ol=rkΑS0:򩷯JHGH#Q ]#!6_s &UqӷN!hu>si'l} .Sʗ`5eDPvIdZ6 s]L^ΌUP誙X+v=bCvWsNԸtT9 +<~(jK+湣QLZHiڀN YoH]3æ"󞻹tNב*KOkm_^.ͮwՌz6K}1B 9!? : Txb<Տ}9*K\{z!^|1j':K.cZȭ1U~IBEXqxj,o;[%=%vO[; a7$v{'!4PRVruy#G&TгKAXR~*=޷ѸdTDV+ƪol $C.>8wW/n۞Y4̨Z?ԾܜΊKӷWbȘ#V3ţ?ؾYhi|0ݕI:#ϡb"d<@M)م X5ۓഠ/bCrQ= G嚴?FcAw[~nq'ӮNn/Wϋy-S̛v5\jXuKYMrAJygFc2C~NjiHfW$k '. !a],OS-t'w!3 T8pYLy1l_0f:T ~"l`@x?usp= m@I1<˶VGɓp<+Ǧ*.=rLUݫ#7c= @`-7zRT0܋06%x0gYfjȗb 's\ȹǃ*FrUCR_˚ 3DW[iJK0B=+ƹUm,䍨|K!{ՀxJUn oLH㣓a'';CTb #6e {Ji4Y9;ws>"DԘTQ_ Cf?ܯy;o)W,- Ii铼Y kZټA_9}r'Ilt)!4 Ӽ&=}ؿ Q:xpXA_JͰ;1E:́Yv;9kCY$W,[\D=Z2^Kej^HYԴde[B9:_7Z~I?pQMy'ʸ:4: Z~sGZe_ZvJL._A1.6 9H߂25V8f}mM*Zf8w}˝+RZ6e7(̘O:hܣln!Ԯ\+GJPQKƶY{]쉿0?(80`3D7WQ`-}}4⡴>Շai=EW-(1u\/%7ߊ{Ϸ)9ٝTQY@VZ&FoEM789Y3JҀjc0x jTѫ}o"dtn`Y@­ 8=5[F@P17 }2y,~ lhw$a }~+򫶨q޳ LMu}*JˈV,,l2{M8Qi‹iA:S㺟]$B{q|Zwѹ"=jo˽ *D~n4}zTSH[8.c{E W̄]AHXRZOчD&H&`)hqߊ9!pnh^< \!\\03/P'W#Je*ͱ9}UvFy6t[ 'bN+Ki%Mcb:VKMQl/Kste69Ma2Pmͷ/O"/g2N} 2I3IpԞUX(Kz?~_D Dyz"2\~SI=ZFI0\ ͥT-8']/kKz/N!!^vDA#cn=e3 V# {&,1$e07BW,8xgME,@gc12g !ӳ">/7$fEFޥ㺼Y?TPJX 9HJ鱴8SD}VQ5O)GR%q^ضKd\X1 I[m Ѩd iPkM(򇌽DS9-ݹd~gFEjY =QIӲW'3_ -a#,)EaԚ3n\^MQ Qj'#[zra x |wN1:lbGɑ?Ge^[KOcMj28BQV HNJ>`wע]U{2=8 6pM 6T p1/[Qn}pW`vȍM_2cdƑOI+tiP͡Ș%s`V030wêߖ"~Op9K|2 7`B4rf2,~)*b5*1y`(Vά{;kсW]^ufr2M)DE 5գA{r8-?9xV.ѥ:+ ?;?7e x=lV?mg]pKѧf;if+4g/^o:H.I 9({g5+ +鉄0.%2ifeל48wj&[8 \PZ|\B2=z&P<5 V r%#jգ%<&^:Uv {HuulӹI^<>1XŽ+di䰉곆B=Gx?eGdR)m6.шqMZsQwh5ܣo\ͯ͠Ԃ>}l=J&fp!#-/ 4p&3,O+v6JPˀ5_5$A |{~tJ0Xߺ X]T^ϳ wq/mdJ9W|C qw˷fwh3K|U`n[ON4V/APs݄6\4n[#pC{} U,$xgA,5Ba 6r*͹MPPaֳh_CTe#w@:ZƁn6[iбʆxVQQd . eY6KM}ݐN"穀O{1E|aϺ2WaRc3'pMjHHsswt?ʼ0Jm '~ÈVf+eޮ`l%% L1?z7/Qw!B)|z$1j)b+bt/lP犰'$!b ym-F^pL 즩0Ǹ¹rc^QFWh.?D' m.Ϋ&o{P09eB]J7SQ)D8uZ=x9~Dk xB {EH:T)r|@HO¯[q՚#5"';?k\v/hS~❓z 34AB@ik t#CtLcc&Q5y9-GcTpE!H2A\Nѳ_\*_&0_ &=]WxzߢklTb<²O}0laJtV`[~iSu52rn-.\+!܈2pVfOxM?** cݑ8`2P!uvY,!bw !}6p5g310f7K=<+w ~QC~yȽqVs{e>*Rg0:77ӯ*U=vmجK,mhNӜu7T6bA۲4\_>[%HړVoQxqmeL[7z;Bv9/rݶtdch^.q*x*{* e]mmBC4rI]o۴+&u 2W^IÆtEoO;u1:sUւip*罊 นvvfT73*nY(zXb҂ c\(i-<'x _j찝Ě XBXN=$:lTHlˣ;#ū`fJ>Oz{r!$ Lm $s H#W$HpJA$&R.޸y g&e%E|`Ɩ``bxZH;ԉ0=c2@M& ę㥯͍ ~>ulM#H<~԰Go=@>BO[Tyr>-E˳̾3޾l_,L Jh{nh>+̯ 0%;wy#5"Yf3RU=Hn>ΖB8D(:ZyN)o?,/IuK:=Q޶n. %˃prcϱǁn5VY^COQb%n=yi46Q$d9xNJ!z K K0Z JoXZ+ն5K8Rٰwutc0w+ >9g*9T=VI+b=? Բ=!Ʌ }5S]Հ s$mKMB4{V7"_z**CW 6\_@}'ː.P ecyB0|VPYNf ܀+~vvY7lj9졌%ޮވ^5lXF2Z8wǴUd -hC{XMӟ%b/Vh] B:KcAEh~rX_)obds3Mue5i5Q+i.wj`㊝.b(Xtzh'RM2SǕ~O2kѴIԱMXr^#+{ SVH;'hZ@\w*=zl5>L+Pà(PpחNi!;deF<^. xL ]C2sŔH Ձ^(5c$?orbCd!a.?$vP2:#0nXi;֬P!P|ݗwj@Pȡԙn9eޅTv, dٛnw)4e ?gXG+>ĢU>BKbB(o|_ mk`F]uFԲL5\Bp%X'7 ]dՀ]$S|g ΏYٮu--O PQIؙ"w`#o.pO#cѦS>=$BER86!ʗѻF` NꜧS65BAΩ fI&nOʚ ,{ydh7 `.r#Gj3+؊yIՍozՇݞ֪⸺n'P/LJVu|z晞Q$h_.\(c(G1o{|ۖ $3G:_X] ',4Q#A/U<.~͏Gb]b'z>'|h5oAD˽S gF]?l' ľLpJ\ cgTľ#yoб0Fy` ՑF#z F-! e)zjqޡh) n(茪#5rMp3V˪gnMV?|h nSFM!'=UMz-A.JAֱ(-װ>VUg{wYT{f12r6vX#;eGwL24F fyHbPxK Lz'k&дW,0ڂSJ+N>(gr)z')gZt[O@dOjqC٩*1y@v %mu(I!TVe)H0hmH6&o:~n|jUĝBv8A6I.$ wmdIjX>$^oS.X2tǠptX pD+I9(Irx*Uz4t_Ɩ†5J3l/&I1G^p{VDwU0mD˯q< ?Dßh5^gh#}^LI#גpNq G%< Q<>0SDŽrKxȸ (T,Lm @Ajg 2EuׂfǛEuO+VE_P;׏R?\-O+Ez&IgG` A)F 6?9NߏhAȐ?;=V;t&8n\ջ+k2B1 c֛Г@Kd&$ in g .Lp(KpJ|˪\.'%>~<[?hul6xMѧ_3~ QEt"Fŷ-7^]P+S=Y/?K GRK Ύ{o5^{Z )~jRl\ C+K0)Kv c AN!j u0J8`H!V{fdsq0`L 6^0 dө!+'J< ߬e0~-=./RXۚNY$j @!f6TK^UUIF0밉5XdZG`eTt͖`rnwTC_q)1z_u:|LKƋ9#c5H ד~"!RWfWhz8&Qi?@<{ 1=k XaLxcF쪑L0#O~^GHx/;ZTҦuҭ³{΃ p}̖Ɛz]sb3ρUVH Li#y( mm_y:~.m&cqJƋpš@٨PnIp(r\{3yz޸Ϊ mqa7S3p {7ge!%ܘwu .}4gWph6|l9 Κ*ISTJP(ETw  Wؖq +_1=\rq@ L &7ȕB5yU&<l!(tEtn !5` O%/ֶf!=x90\|@H7 %QoʔӋ~EΩc<īc %DQQyVUJPiFϛ΄xSJUZV G'[ı\{^ %f#-b_9y\U jrz6= 0аَyRs۷\xy]s1m/-g@D XoR,//?XbHAuO(cN-~U@$(Z~#sa'Tm VWJr}6UBO$!l[.Ozu<'C:Wr.q 񩜌!y<2H Ltb+!} T!{}\yEx ϙӗ6ZUNmFg>DoW\+> n aWI "jR~vUq>H {y}q,E\uip`r{:!jR +(diPX ݋ѧՊq])5GrIdExdGeL-4&FnyWx>[̕$7Jqm*H,9w:7_RKnܐ|WTwVx|RWH+;eUˋ= eYkĀ/31גs kY~C&1Zu[e"RTP/.eQ dڧ-ZWD_(c劰O FDx81oTﯝO qLg#hv^׈;CE=;G3ݤ"~i #ٲƅ.k$U$Z+-m1A!L^~نK a*d]&z$-1.sXpY:HшyQ & (6M(CW߸ U3UK gӹ4_daPlIV4M,plEyuJ/ξ4hO޶|?f:yWPcev`"Re%A)~[kA&FkM4dݝ+"A#(4C/]1J:4CN8Ύ9|P+C:+FYK~@F?ttyg PSuI%d8Gp5Ӿѱoso|Tpi?)7oV2CD.a:mu4.["!ݼVGMEl~C$w$<~ OdgvlH (JyVJlPmbD8(oPY䰞5c#UQW b@b5in}qib`̑y?"(XAKz8;Kee>Hٖ_"RVy]|g x粽^V/Jy&]!s?L 2_4s{c ̷$y~1mrJIIDo͞WWS Dkt_IűlJyxZ}c0N1'Q%l]e,)|t[!P@i/i׈W=j ^3%}eVՀVQؾ{˃JEWElq7 fgt%=l,@{ERs SM4۹CK ujo!S%Mk$7T*7(]ZqY #Sea4g+G윽d|̑ v=+Ŝٻ5y[*Nn Z&U`8& ?0Y$W+ϊC_ū{Xu̎J&-i:9"Z?’ v>ʶ "p!C0Կ޼uݾĜMhON=oB5:}kBΫJxlLE1\1rHP}3gmVmhzņl3/G8{sxsגm5aQWHGIz=gZd '\6l "ti sClB$$l\ Mւì(Euq͏E>.ٯ< ֥n bG ~AG%PN[ 8Ak\z\cl: g*2'-=< F[pԌÏ ZeNj"e Kz U#0!l#^~Tq ZJb~4b8Z%rG)URZVsjt/_HYBB`AYgL~I֌k] œk3z~bـ]Z!!] IoHrh@hTnV g\\Qo̅&3]I vԿ2ƿB,7@*`9/?U!ǛZz93?eX!񍖰%M=8"!f\s(HT3r e*< ]+TdTGh 7 \wD6M9D)YUIj:OT!f[ Aؒ6@a% tNB3Յ2%tI\H+gh<1+L?c}#&OʡH >8wWFY I^E7t 8޾&- ubB-_Z8fLB͐^F4ybeoMMeﭣKEy~R\{ 8}o>(2:ũBz܌v&%VAf ^o^/@ PSIt2VS<&W~ _&y)ŗ§@}1]keάNTIROםG9p; %ohz䑫UاNA?US$& @+Ӂ\% r&ާ] t_MJvy'Qk5,ԳZ=t{0*XaopИPCCzM8l(8UO˶#n҈=e~_o5H><\G⽵Ш2`Ćf>3pIqv% /B:`S `eo1E)Zdh\&2OǮB/z!WQrbOx }jXxфU~%+0z`\}l*VIlhxP콡{|<.4sfN1!V*~-st⤡LHH| ~:]v?ǔݯWfIH"$& =xn˅ד=Dk8Rχ@AZl;-9 ZZwgy eY Kʀ;K%1,Bƣ[VHKa^ |˟Mj\_>?Uje+4o7(v[ѭjbԁYB/ ɸb)?yDš? $M~Z_JC*im\$ wswem>8s}d gi;qU!;"G$39v1{b֚s+0ց}i6ЌZrSܑUR}ԿbA{>kl*[p#NBxBa'܅Jd8sU_d>Zֲ>BkLo.bBPoΜ2٫p)mG SlB&WN.vy.WbN)D?):Ƚ |n+CvE:L)Ox- jDߜC#o6H.@I2:NH $@,K6dy5Vc)ym8JGM y]wC3Mylq!9IAO IY}x"<6dWJ}iI޻nd$gA}z+$_I L/ry.eᇩjA~a E쐀UA|e8<$+!2&Cxy_.h z˜{ή9ewfIFwIa܍qok%R)*C; -QdGӁpO^9 M90B zOJH8s_;l26e!?/XJT"έ"A5SWڱA=S{NaRTF5&b ^ Q? ώps%FxY}D6̍L]og]\T,e?;7 O p1/}p7G{*Pmr rȎ mۛE#*<׃_  QUWc碐WSލ`>p tMKUre{ƙYʧ NЌc}L1QSW$T o7*S/!}D.n<8pw@ fw-ڛjG)\r[7|%^^Z(6RB\iaԤeoOsǵj[ {f_^3>O``"Di+иnñ0OMH @mpwe's-Ɣ xok_);ϕR,[V"'1S ڏD d.Bɘqn>/ BW.R ȂBCy˜q^/McqJHDp_}RdpOSЇ{k>YG &N>S~j s8S6Ffj<3M8GQY]Y]5&ٟU%UfzS0^-.ѻ{}IYWU{wr;nkFt5oezMs@ VW6< GMlHP{GVl +/pL@ljW !?sG.&hv<"{u:@@׍Tk՞Xf@jb _5Sl0`PtlA0ElCRԗAY¼cwjO{6-#>W#Wx1)D $68a`Fp7Ȇ%_ "%NO[X--k}e}-lcG>4躨0| W!,C["h8׬ܷDgH8Hu?GX!8Jq HLV2C~:%Mٚe@K0Zk$s}?An^E.zWm.lYc:?vKX 񪶥EE \e(tVpа eHae"}D e4{dTÎݎ: v˙ex Z D%F0>ȋ6uKߋ-|P2-ɡUW~ĵ]$'&Q6:g)轍qͦd=kT!D>PVg~ZϻX{zύV Lle[r⵬s֋hr]Ce!Z,):DX/' j]Z52 M",{AJZc\aJf :yI{J]?-h/,I#&Zɓ_sb>ZߛJoeO.pVlx o(اQNpkee"v~ p|-f-4xkTgq:食qVΟm`ڵ9+JY`AM?q:h&.^+eWRcfoH>6% \㦎=sT2qiWr"7'iɦٔ"t—sP=Dw:0C4u38'z_遬r ^Iv^GI:ݥSR J›;~y"% )>/&(^vlVʰR͞!lf A,7KDzxm̥=7رF=Q⊙fîBQ?jT}E(Ũ,TEtڙeߘ%AR o#t3܏3g{M] T){([3esALókD?xdmԗAO_&w<",D <׸QG ?J ܚMp7 90 D("Ѭ;LvN1EwƯ?kvk~ÝA@@VTV,2HC鿩`pF#L; uE#Cڳ n" ^2YYgIx|H7UA9dmS\y־hm{&ip&:];df$aDm*UvH/nK sDg oМq[Qpkjfwi߇w7j<)4ژwW^O.WˊJl--墬-M ozҽ|7oaLpq9h^*Rqj^S5E3*$瑐%u/6.b y.!TAԸX LNޔeQy:+zc<ӸQ͍<'@ܠ':u(Z& aϱK8E:+0d-g}[ Gw7}0GQ)|x\@T%񯑗XZT6r>OJ=[a=E\ŏMTZkko [zPY(=fŵUl 7zehO3KY}17$r/<7mIsC U3f|C@ά-yg I:BpEz=+T&IXeByJ7uK/A{IyQ[Rѫgr`۸!\jzlm7o[.B5VݓW!TB}}Bmi<ќ|q%oPQ]A4ҜW]sh9٥pܥؖŇUEe6n: hgbҔ.nch&ReܰQ4#=Lt:Mv(Ķh)\E,Kk7pu,F/;]n/+BC4]C5UwaOMm0#h1dg-,F x}j 3Ux$Nlݔ1b%w-uo&u (&;bMtKy@La @D{ǥ$h QK!x1c +NG'q[L 鳜å@+55L'뒐cB;CB#k,~__"#-JDMm4+TZL*1ۡ!KVw+ =VQ26\yrl8.P\0` yX+vxn^j;'Y]'`A7+Y&׏%wưVD]Ei]9=a1pC=`wDT.N/DNcS<8[a0 MeJ/:_0@o8A%L¨Uue͵J@4wzÊT?wR5K>Ct>y@ 4o=la4|Ē-1cr(ݚvqg>I?ꡈ;T~t//nYgmy&sT4d?"&8\W&!*NCLR^ >i(ӧ4:v 7T(~idehZYoX,Řf?abt}zW5JШ=%lQ7N_=I 5bKd>56՟ɣi ۻ*4;ǜ4,^{d$i/dI={X_*m®=o ZՒ'@`0gPxYHeD@Λ^Kǧ/'WfcS۱%V-hr*>,Jf ;I7ɐk )-qYܬl=?{#w\ޢΡP}ƵW;\0?3^&x't+\ `\1v)Pe=q- í5:3/7޳oU~URڌq0f7asc.B<  z%5[(I7ۢ)AZEnRōFyi2 Z8缢e]5 *;%_7>uS#uxͣq:/4=Bb9^=,+ jYAw;/+/V֛dFEar5_Ҫ/Cp1mDqH\F6-٦r_6, ! Pl{'Ν`{JҽYo eh̔#վ{\rL)R QXCަ_jOHM2SKyaL𷏞NM3:n˫V^`& gq3gf0Pn|Wbrl_b RZG<- /_x82/X [6Cme^y)f_w9_f>Wx a[KjkJH>~x^:lP] Ga0xc~0҇UflMQ_% Lg-qRRSp*Iխ$ϊn >?sqel gdb~J.^\aV\nUTY$htΊci kyů/m}S%yAd,5!: 2J 9޿O8>`W4Gۥ-t W%ꋨ~KRjAw&5fpl7y8{-/dYQaG@T{3j3ө:'U/X}چTBhNy fuM@*/FX`^fw%7ާqc!atܗ4.mtDHM6 <fG'I&Iiy(u9ߓrJm뎀eH揜!ƶqȧTr0}b}uJsgb,Ϙ vIoIwX~H9mWbFQөݕ?8d1JG#Q.뙐7DMdQaKR8)^/o|S̉;D9-v5\gI xf{imuK u Eډ pO!z$ĒƓ@BvH0ʤ-"|! ZTQO<^V,0ẗOpa;9\Pדqh{a@mrpv+hTP[> 1Vў&:MKb (ȱ@~+ӓT3⛻bVHu_ @4Kt=ܺ=,1!5π/ _8nY!W d+ 4r;٭x-F[̋2"\ΜW1EF%ޒ X?k$B@;^d`? _fPӻTrFqq٭GuMWd&f`F߽OsA&%a|yh C~"D:mNrT*-.m8Z0p/[+Zih:Д Uy*BY7Re5 PrxZdI&i|G3bPC|#()."b.[EJo|QM.s"_ <#Y"b ˫0f791j5EW6L۝цŭR)?>*+` }U_/PK_raku4^Ծ;IKFQ!RgʂK*hq5["ZF}W.alxHSZ>/`"-]M% ҟ8_b{]?A"e(Ǯ `țx;5Ma+XmfH.}Ū'B*Z9Ɵtx]mTr{y?YLg[':yرQ"Tɧ1O?{dԸf 2lbŔx.xatIKkZBYp/,:z-2$,z@_>dM'#lzgy5@GŎDŽ;I 6trmPdg1pcF &8n a MuΎ$7SgзR 8MO E5Da>ڐH$B7 |^I D: {i־fʢ6̝Ľ.}n%t܄n66=J%8/h0ak K>+\Jl`f,va58Zez:j?Ӊ2Lte^PTB-,7 rx,d;hJ/Nv)dwvBZJp^ү85qEu}mGǻ=zŭM\6Ca:5NDvS.\%*NOȐh{jgYlj$~v?\,g~cY,=~~KLUbg=#âJPJ$&@ +~+?)f;*Tk4is "J@# acViE~51/̮k|<,=8*op?29jԥ@No(+]c%^1qsv1hct 5mCO>k;_&z38DD"LFC:n9bӨ:9t2IU;wDX߸XyIDRyKV QEiF0Cjl*  G\h-?lPJϷ.5)߱Ʀmw6 ֯V+ jj`ydø,w#|eF!]Y<LΨOBZÎ/k^{U'<{}Rn_TLaNtiNPH8.$$9Xx +(3w? F5y<0;yTyhxf'a FcӵC_Dcv^P &%'wP~_DE$scP ҋdBk>jS3$l㑉u1i'S0pX~Ep⬈RTQW7 P`38:!^Ltc=e/Z $~"҉*o>"[/ 031ą.bRӋG'3y/i9QgqN8cRktqF20Pm5 vuj7?ȜQRi$Oj{WWD鶠HvQYݶoP۱>j7N( 3 d}{A+q} "**LzWk&-0MܠP\.Ss3u$|T,óhXpRaI%KyUl9`ǬU3f/}h?i+R5\uR-+D L_qɈ RQS#tfCO V e|N1X` x*^|ZO}AwB)j2Bnk%Z#0{]E:96=aQ[΋WqhqeᆫW9Ѵ pT#R*-%ޢUlm|CM)٥G:s bGszY0yHuoÞDZ8uiَLi5ĺMD@b~Sf%qcB+* ޮ#fҁgxZ#sa($ϼPgpYHXǣ{))`Fk@o;Y;7;[m:Jf]jNsIKPӹYhb-)kiG4,;D s(+Ҋ{!{2\<=CUR={Us>*l9ON'tqݩ$}vha4(+%#C@E$ %& !ɧ _22{n'*5Ƅ$ָst?9 0Bh8U`)ѕ{H!M+Iyѡ뒫ܩ| *?g轌zAe*ra.le*R!BŎ #Kc)uݴ;KOG%Zn*I$W9K')/.pbծA:(uNN\Rx%4f; hנ]yt }W*e; l^-q'4E(ɦk ]`-3 y>2;Ip k|ˁ%nb>Z>/z,*$,=9}`Ls Mh;q\oϡ.jN~?qչPПq~?;zo%2;Ї;}EpDžY4Ko xf| 4pޏ-7Kg7(:11xjg :-Tl/}DoRwag!&*xn28: -xD96c6ށ A#"]N +dn]hRh,qpJ2>A. .16,9bTg ՃC~}U2o2i2A@W/V:{q9M{L9NE \Ԕֲ]s{C2R56\+#鎋Q$o=EqlWzm+IT,h9&hZV>ދ`c P5S>mw@{b` lCZq QM&CiS!ELUl!,;CbY 2NQ4~|f\K<Ý[f2VK29Xƥ%4ɧA"X`jyd&,+bWiE'YqV"@ &Ic01Ě@FۊK~NʩCltjj2&[HNw37^+88H]ԟqsáX' c%6Ltˆ;nh7W-R--Ł]{G'>mSėܲEjA NTXÕfaS¾U\nm(t" = jH>B׆ !e\X{#yf\>G:2Z9UU1E(awÔ>( #͡ă6bw`!G;Hf>c 4G)?6͘㲥xIy.;(G8&vފ@(LwB-C-:|hv{#l@tuJm `Nؾ<0\J t+fmN$ bt^iЩ)<&.mXhp=Sg7#OcVdmCe=m9Yq![Fdžo j8BUt܇ )Nd \\"mURt$~(0i۰[yi[>5ubGluVtp5p_ N gY뚋_$U9?1Ɍ4E$rW~"6<$Do`LTgio$&Sx=m't1$옰ѣt5أo/2<0@۬CӅم*j!:y"MSDr 'cCKk2 TNn*ep^ڳW uokrMͮWƊ52 C)/9pH~W6#<!õ }NЯ̓S:kEjW.?0 "w+˰:獵e+Uk'`FB`2FtHg# +KBqH՝/ 9zS#4qqĺtm6#M| Y!Km=AoMUekn *TT%heyx\f=*3B:6MfA 8 Tw«,{F>\0 䩄Zx,!JJNE%_|z> I68fkTbe S#G6d LqG_pB^DدA\I'pEJvUܨLH6aBȐ4y&  :w:H3Q`V򪓙`hIBapzV x鏉w#Qf6J5ѵڬ)jLdߩ<=J&uhX =VP9 Qe)FL?X*P*!Wɏ&Y6pMRKg7^HkV+&(=49 σΡqƢHUK!ۋˎ>$ZYZAm[t\՟Z>Nv /@a80KcuPp%6'#x6A+o+/dOP}B ;CJ=W<DO>ޯrjp+l+3ڮ8OR)f]b6BU3~$wXsw䯤ЯJׯ%v_ % +۷;9ԅT,rnsG_5͑aݩR:ɳi`<^c,"$N2Աg`i&e"3Ch#!&BaT ,f U;  abH<_5 G!p { LQhۼJ(.uϠI ZWGLdCWŢIO1s(z7UUzM&@5ő4 <X6ZJ-fq\`#412(s#W`DP Bg n` \!vM-ى5l$Lf2j<}ZJ=_d){mnÖ>ZT6eahbCSc0fVbR/Tjm@ ߠ)Ո| &9nD1UYR,'Qak)cwdԾOt V F1m*ЀXBv?97tRw\8_5#H̏~ ?:E5?cJX*<7N.nь'yT}g ɀtQg[#>3n\:[QFE!vx@`;}UTgfύ':߁Ђi4f| w$W:3Q?8CUϹ ޽ e?$Z{&Q܈ I5Fv/&t <&D%Q0LgIp=#2+0@0Qw9A[Q1"+-`)>O{8e ]?nvnca); ܂toVn:YwЩUv?ץ|Qzgm %Ҷ+lQb5toY0MӼT]7w`OpK}lW,rE *PċC^@vo_Pd^Csj7c.K b6.{ΦnoŢ+BexɦҜK+YB067T n[3H]d=Ni SDL`Lmv318ׁ=#v @GL5"UQ"T"(t9bʟWEWe9ZXy i<]av& kƅӞ+̃.f 20\uףJg%gb{1mW@ӱF{zU WCB,q*.ubI\*$ "w9 F-0̸C6 ts Ո_䊖*1v (&OIfΦZw>͍wBź[)X(2]Ver%soI1@vHj WIy((1:UuuVs]ĜtՈ;|V1|d@OD%[* #БEy۷*cݲ,%pƐU1A נtx,,zqBP!Z48?D"X|^l1{߁O4UrX%+ڣ-p7E3N 6 !ʗۼfs>\O!Ń%5$?5UʇTL4ex&܌+0:}2=z}{Gz9^~MsrGӥf-g~u;Fٷ-Ё50#Pu.KmT`} dէ4%>7ϞeWw Q&dE Hftg*5RnP3wd}9ѩ=gu;GA +qzՙ14DɎW Jo*f X@~J^Y^;YM/\%QbHſC{fB9 ; V@9[d6oLtuuctI+S/|w4q%y| !|z[p߷@M\NA~7# ,A #z>ZX "/-z5wIX*FjL9`\O@wVMᚦ:ȇxmWN:!~XcG  ;ٗg5=Jx_V!G Mh_>@gh:6i72k QdTJ3X=3 JG ~4L@Ɔ{ nZ RiU=}bW.`Kڵp{l9=:XU5VV3\Wn# X1QF¹ya.K5F=_[İ \=/G 1H'!x. Ôؔsr5Qr"ۋ Ic/U"t5pseBW'z63C$;0]v0X9jTE+*> 7T1fI3.e;_2J*mB*V>.7Iuݶ/ޜݰjm&W^CgOB*Л`W9R ll|UBqo.{7d:Pr' +*-΀$UL,衾H^ #MR!D$Y ;E{ π\tt F;m4`4X6RCxߡ0iyԵQE)SOXAR%Wt4|bU@4'L8T'B51J]#ߏU<ܒY8V= 8PpV &7^d79Xo@z8/5g-|kMw I;2i8Wk3Ė6l랥X1+Xj{}LIeY~5ozՎӨJ/@>FT$(=/6lb[XeLAz ']ڱe^Gd:8Xx|Z>QQzcǢީ/%/94"ZވYTk 8TCiT OCg&24h1=3A~hJc.{j#s.{fڛ49elYML_I5~_=W9.{"LȐ'MxF2tg{|5Yg<*/[^5m |T'k/ hZ uP(C*CS(s/>51J3%5݅鈻AOƈYZlc#}~a51?]krOvIHB_#SM@X$~ZKMqAj֭_L§VAum1' ڂ4~ㅁ]!QAc5:x1!a}V_@-fƵ"oݾwIskeGpHa&emJy J@F\*&M3_׮Z`"33wH&6'L'ASeqزl$ؽ~䧎fQ̻dNIx Z4I'Nva/\~;Be3-Ǯ{tyZD%FCA꽮Y„<\6%Z !̽c(]'e"k!f{/oa<arWNink:Iʘ7 e VISb aJd٘GyM݅OTJ.|ZG\{Lsr(jxo]qԺrԯAޱLҽ{Бjp7z{{+EA f5~lL GL1eANjHuqY6I7y,kR7:Rd1ĚsWByL-6~^wP\E .J m, C=_d-b)99G+1N^YrS |4 Ez W-ܬRN@ůnt54 bi -OЊuyOfrv@.M[<HqKzhE ?MkHpŌS><2g! Be;3s`6[ZǬLCNߐ'`y"-ZS䖧\{O)|WHS-(ejjmq"䵡_mhB !Nj^awwo?/hLuGFv4'"<%fpg|%d䖼ph?p)۰4D޿so= Ȝbj-,@Ѣ2lP+ELe*&vK$N%sk,hNj45dk{d8<8ғaHYf@HVۡ;c7#,YEfdL_ P+51p2\_RB^ M2v<dš:%/:q$z,|w_&ČlJM{'r Ls:j`Op1jWa+ \vXS)`.EUFB`+{$|J5[|㌃Doch8`3K_*Ϸ,W˭vU'1H$uL3 !fRr(`!K9KtO`>/@(dVdyW\=G8Rn Mnu_3E-XFӯ#A`Z>{Jm"KH4Q/H%%D>Y/jk| @w”Җ7ʽɈ(穾wr339H2A+47 @?X l2 4TGn5w~8,y2gÂfBT +z[`Ѿ]j GB'4.Ps(`s:!▴~og5F7ļFF^Hj-zVy\x6ԾLO,ެcG'F~/Ekz7E)]M!vUeIg(uNc;YaRY 'ok@=窈I!b>2 Yʋ #PH얰g 'Q'*s?g8g6v QMOe' c t2Кoզ!$XzqLK3'}NmTR!ZHC Ia.ֆ1'ñS|MfmaR;0Yvҧy3 8CN"xw-_!| EL[ˇ2}#ʞ-yyлܣԀ4 IP$$@iؗ>t \|eOU|TI\=:~KhRw![t(v49Wj/齚77AӔkM&ygv=X\zl5@~Ѩ%)̃km#Wb[&.vBq<ٞc6Cc dՊP+L!WڵM;#mQFٮ>P~ -%mrYG&=UEW<9|*I'OyʷMÑ2br6T4oi M74 n),7PR5E)Cw TFg[XǪɔ?$dp[ ˈv';%'cqYD}\4bpDӶ-g N0A=1|u"S} M6%݋5~IPeB4}OgEכ&Ѱ*q.7e/q+`Ql)f6tC5J3bSt6@ڍw^ -=4W"&LQj}]>pM sDo~M0ygu6ú> \r{Vj{e-@2S(8fq15@a#$[)f3ʆwc{͕ʫ2mˍKjʦX~וm˅F5\}Q%(U:-)AO@)(m5f*oџ4K%7z1A ÂcjrـBXW}6U"v5 εP-݃ hhL_m89oB5XzCW ZR^;Htlr*Eu$:$hle\Io4foUq.e''](>KU%;)t% $aZ!ec*(ܐXUvgwAmDw0 g+LpU+qKB1lᦓjeg_YfV?} ki/ SU3K}KX4Lê yoz:4:fGyNs3} -2 LTRAx a\{9-&oUp;l|2 ͡S83I<"TZ8[%UU](⩜?#z@MHY(Xǟ\TqmT4 Uo+r^\ª#Gj"#Rh^xZ!fPXoA&"S՘`۰{ۅGon\J={5y ׎3x8 K<{GuD8T2bV2QHim>dSzbaywL'vJvp_*kdAؐG (|)לqzii h7? 64hgLyhg?X7/6<qŽlBGEo'mX[9_ʭt(CTX:M ↡?3-pűMEp<+"PҰPo?Ue,5,Uס0wVB0KfbưDhjz6,a*|Sq ^/%𫹘.'_.4hgC. lUQVs1 [Tm Lk~1iSsK2Ģ!h}JS7桴lIɛLi^{mLmT!6%S#Yjec%ACM7Ud*Y('vف̠g$>"j8%Z c{g=; g (QF~;[hA7s)4RwqTeiLYs5OJ~Eq$ #-Fb`hSKRR/W;ܨ>U] ,b\϶߱ 蘞c4w?ܳ@9ӎZVor6Bw֒D_{Vs1UI?\vcV0MQ9 .@#OS2qpC^"(K&$,ZpU/^<#1/OI#H'YIgC,q{ݥ)VQrBcvS%tCx.aFn:)d>lUVrq$zNNʏgnmU7:3^mڼ?"QQ`S-^I}_pj"RW^RuF K dR[D̼[Y9 R+ Tň=( cus6h`MH:aM)f'+CceҦsWQeJ2!Չ92$f֫EV7j l#豤zy9rd 07 q-- /m<>c=[y>[8@W>M>3f_tYe(Ġ3uv[몫mS_=⧆C49id5\c;VxޕreUhդ~ 95u,#8tZȧ _ ٞ TkMLRI[dEd+ 'x_ 9>o>ݞWpʐR>^O{' wf_ onv+˥Zćo]i^ B+y"ku{PfwӃnf"ۂiSuEbоAxcnWtEhxfEᬩ4gļ^Ĵ29+"*nS]&܍oV̼l!u'HI# O&NR| )6ud2PzI叟#$CUof Q/@5kXZ$uew |Ma(uIU\$w S`d-dz.߼qR&/I O˘23KZ@p<^ =A[uzUב&guP g2M`$Ѩ|dξk"щ\~ yΕlnOvZ(mCV{*"m}=iu*,"$&Ʊɸ6MSm*S]ܠjfjW0AXݘ3 tDr3xke{l6!TaIґZ*:쇇SF0@1ݏ 3ȇH{ rz)\sHHzaвqÑ|d&tA\&w灜Pr$Nj}|"m~B>>*/۳1ɕ$(˜/5^!bnojΤi *1U#XEQB$l-%E Lqe3j>(JYj__ܟ'PPB˺/'RcIʏ͓##@ơ{VVCLEfWSG(w'e`LTQvKlG5h$:(*7Yɯwؿk ĦuE9>odm A'(;ټx{؊[ [MI GǢ*/_N Q B7睓^*$ڱ0!l+/$UY{'$a=ĉ,E^{0r:2h3,B4 R8cl!K06[_&bNmm17L P[(s:&_='jmfںl˓(hrKPD';D") =Z'&"5|-O|~SC <_Swtȝs"w$ xu?Y `O {pBB!]pZ;ً5B5 pp(AX{_mzئLdgc(!U0N˽ %-kgsp"V9*S468V5t yJk*fA+*z%oy#Jav`}Іeds-_&uW@%苰}cN4(]_^u<p7?$<}yk;7#