kernel-vanilla-base-3.0.101-105.1e>UAYUD0R ?HY6a?X &$j_\`ɞ!y<wZ`|e1[fSl*8>@(c?(cd $ bdhpt \   !` 9+ :4=BwGG8Jrprssss(s8sX9<X:JX=(5>(5'?(5/@(57F(5?G(5TH(9I(<X(=Y(A\(J ](M^(Y6b(b]c(bd(ce(cf(cl(cz(cCkernel-vanilla-base3.0.101105.1The Standard Kernel - without any SUSE patches - base modulesThe standard kernel - without any SUSE patches This package contains only the base modules, required in all installs. Source Timestamp: 2016-10-20 13:31:37 +0200 GIT Revision: 026b4651977ded94e4ed040e01364c1b8950c96b GIT Branch: evergreen-11.4-fastpathX &build22#EopenSUSE 11.4openSUSEGPL v2 onlyhttp://bugs.opensuse.orgSystem/Kernelhttp://www.kernel.org/linuxi586# see bug #259303 # this script runs when the kernel gets updated with YaST # YaST calls rpm always with -U # -U replaces all packages with the new one # rpm removes the files from the old packages after the postinstall script ran # this will double the required space below /boot # remove the files from the old packages to make room for the new initrd # rpm may complain about low disk space if /boot/vmlinux does not fit if [ 1 = 1 -a "$YAST_IS_RUNNING" != "" ]; then mydf="$( POSIXLY_CORRECT=1 df -P /boot/ | awk '/^(\/|-[[:blank:]])/{ print $4}' )" if test "$mydf" != "" ; then echo "Free diskspace below /boot: $mydf blocks" # echo "512 byte blocks: $(( 2 * 1024 * 20 ))" if test "$mydf" -lt "40960" ; then echo "make room for new kernel 'vanilla' because there are less than 20MB available." # disabled because it breaks patch rpms #rm -fv /boot/vmlinuz-*-vanilla rm -fv /boot/initrd-*-vanilla fi fi fi # Flag to trigger /etc/init.d/purge-kernels on next reboot (fate#312018) touch /boot/do_purge_kernels # It must be possible to install different kernel.rpm packages in parallel. # But in this post install script, the /boot/vmlinux symlink is replaced. # On powerpc, the different kernels are for different board/firmware types # They are not compatible. wrong_boardtype() { echo "This kernel-vanilla.i586.rpm is for $1, it will not boot on this system." echo "The /boot/vmlinux symlink will not be created or updated." exit 0 } if [ -f /proc/cpuinfo ]; then case "vanilla-i586" in vanilla-ppc64|default-ppc64|ps3-ppc64|ppc64-ppc64|kdump-ppc64|ps3-ppc|ppc64-ppc|kdump-ppc) if [ -d /proc/iSeries -o ! -d /proc/ppc64 ]; then wrong_boardtype "OpenFirmware based 64bit machines" fi ;; vanilla-ppc|default-ppc) if [ -d /proc/ppc64 -o -d /proc/iSeries ]; then wrong_boardtype "32bit systems" fi ;; *) ;; esac fi suffix= case vanilla in kdump|ps3|xen*|ec2|vanilla) suffix=-vanilla ;; esac for x in /boot/vmlinuz /boot/initrd; do rm -f $x$suffix ln -s ${x##*/}-3.0.101-105-vanilla $x$suffix done # Add symlinks of compatible modules to /lib/modules/$krel/weak-updates/, # run depmod and mkinitrd wm2=/usr/lib/module-init-tools/weak-modules2 if [ -x $wm2 ]; then if [ 1 = 1 ]; then /bin/bash -${-/e/} $wm2 --add-kernel 3.0.101-105-vanilla else nvr=kernel-vanilla-base-3.0.101-105.1 rpm -ql $nvr | /bin/bash -${-/e/} $wm2 --add-kernel-modules 3.0.101-105-vanilla fi else echo "$wm does not exist, please run depmod and mkinitrd manually" >&2 fi message_install_bl () { echo "You may need to setup and install the boot loader using the" echo "available bootloader for your platform (e.g. grub, lilo, zipl, ...)." } run_bootloader () { if [ -f /etc/sysconfig/bootloader ] && [ -f /boot/grub/menu.lst -o \ -f /etc/lilo.conf -o \ -f /etc/elilo.conf -o \ -f /etc/zipl.conf ] then return 0 else return 1 fi } # exit out early for Moblin as we don't want to touch the bootloader menu if [ -f /etc/SuSE-moblin-release ] ; then exit 0 fi if [ -f /etc/fstab -a ! -e /.buildenv ] ; then # only run the bootloader if the usual bootloader configuration # files are there -- this is different on every architecture initrd=initrd-3.0.101-105-vanilla if [ -e /boot/$initrd -o ! -e /lib/modules/3.0.101-105-vanilla ] && \ run_bootloader ; then [ -e /boot/$initrd ] || initrd= if [ -x /usr/lib/bootloader/bootloader_entry ]; then /usr/lib/bootloader/bootloader_entry \ add \ vanilla \ 3.0.101-105-vanilla \ vmlinuz-3.0.101-105-vanilla \ $initrd else message_install_bl fi fi else message_install_bl fi # vim: set sts=4 sw=4 ts=8 noet: if [ 1 = 0 ]; then nvr=kernel-vanilla-base-3.0.101-105.1 rpm -ql $nvr | grep '\.ko$' > /var/run/rpm-$nvr-modules fi # If a kernel package is removed before the next reboot, we assume that the # multiversion variable in /etc/zypp/zypp.conf is not configured and we delete # the flag again (fate#312018) rm -f /boot/do_purge_kernels wm2=/usr/lib/module-init-tools/weak-modules2 nvr=kernel-vanilla-base-3.0.101-105.1 if [ -e /boot/System.map-3.0.101-105-vanilla ]; then # the same package was reinstalled or just rebuilt, otherwise the files # would have been deleted by now # do not remove anything in this case (bnc#533766) rm -f /var/run/rpm-$nvr-modules exit 0 fi if [ 1 = 0 ]; then if [ -x $wm2 ]; then /bin/bash -${-/e/} $wm2 --remove-kernel-modules 3.0.101-105-vanilla < /var/run/rpm-$nvr-modules fi rm -f /var/run/rpm-$nvr-modules exit 0 fi # Remove symlinks from /lib/modules/$krel/weak-updates/. if [ -x $wm2 ]; then /bin/bash -${-/e/} $wm2 --remove-kernel 3.0.101-105-vanilla fi # exit out early for Moblin as we don't want to touch the bootloader menu if [ -f /etc/SuSE-moblin-release ] ; then exit 0 fi # remove fstab check once perl-Bootloader can cope with it if [ -f /etc/fstab ]; then if [ -x /usr/lib/bootloader/bootloader_entry ]; then /usr/lib/bootloader/bootloader_entry \ remove \ vanilla \ 3.0.101-105-vanilla \ vmlinuz-3.0.101-105-vanilla \ initrd-3.0.101-105-vanilla fi fi a >ID80ya0.@@ %jx@P88mLk6DJVzU8@0  xRF@2mvp~oj nz=+A666 m|bT T T T T T T @ @@ @@ @4P55 l\,30\00>JT{ <j5 099/ |W( 6\+p'+#"t"@074[ ) p{ /Rf +)I?́A큤AA큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤A큤AAAA큤A큤A큤A큤A큤A큤A큤AA큤A큤A큤AA큤AX lX 7X X X X X X yX X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X WX X X X X X X X X X X X X X X  X X LX cX X X X X X X X X X X X X X X X X X X X X X X X X X X X X X  X  X WX WX X WX VX VX WX X WX WX WX +X +X +6352904a5d948a54a68ec10e59c5cf6c232cdd5789ef7264fb25af47f7c5881db2d1236c286a3c0704224fe4105eca49d41d8cd98f00b204e9800998ecf8427ee00eec554c27e2bbb136dbe6bc80c8d7396436ee2ee528c89b78d104455280eaf16cdda7fafca80e627a6f0d374656098a0cc559a9865190d6a1c2cdb73088eefb28eb3f9fee1eb50dd7b362d27ae35af5038f7bc0229fb763283323733ed124f5d7bb785a623be84334b521dc09dc36be140f047d8aea1f6cdf1cd6a2fa335629220e3d5cd4b7fd3d4ea0f4afc73aa929220e3d5cd4b7fd3d4ea0f4afc73aa9a6e49029ed9993cf8e0f34061a9c9231757fc400f7775656c57347f8288799a1a1b794a219f991163c11dcf2dd480c71dfb2723d1d6b47bc5ae72f03390cd475cc7aaf2dd39e5bb17a63d298f765aea59158f1b596959cfd43cd1a462ee6f77c9c7e3239decffc8d1a3cc515a6ccc4e850919225ef097769d2a85d5fdc42253582d2d93e3537cd62c7320eff131eb1d0819dafab2a97829611b64badf1db3a6c9429d56e6f39222cf523f9ad925b79168710701d64d742e7153508bdd492f376c65d5381934a19f317de257781816cc3fdf06eef3b98228270c2689a9ad681c7064309527ab5c6f73f17f99f6b07e47151e99ef0d234ea1b455b0555336f737966748ecad364a24ea2150fccb1adbca0a1b4e46b220b7ecaec0287875f47e549fb612f42364fd06c46aa936386a79abbbee381e5d148bd073184a5cadfb6c31415bc79fe185e6cc00c888ab6e54a0640f6092c8b414a94b96e310654cc5cad04bc1d913acfd5b8b70a6694bbd48b5795b779b33a4a692557517a3e6edf343fb2fb7b7e2d7664771f0c4a1a39cc2efabfc9dd2f55d05d86f88cdf52f3e1363da28ae64c3275ce7c253c8c0deb056622a90d411ec2e719ed07dcbb1982bdf57f2362369b3c658c2315c191b1d2d80bf2fe90e5c6c2d26d81921e0f8d8c38c355f2159923927e490b44f798e538bf862ce5cfc2d76b393ef41d6dc2f3126f8571244d29eda1f635549e9606b0eb50d9320098d87754353de825024083a89e098a3828b5f92e5a859c3dda84091a91df33c83febb91dd31c3e0275fbd38e1aadd0d690d63ebf9987583fff5c62108490bc38f9e4b2fb2540ca121461911569de4f5fe5aaf5c9692069c15c1f62c4157e1a28a114afe93293e00d4e24189323efc1e316aff74fcc61b89d90719bc29c501d90b12a55869a1e706b750df8f59a7eff2735256959e37301b3b8a0033a74167e81c754371f93e28d9be45eabec82938d254bc8be4a30037ec7e50e672456ffa56409cd1af4eb240e2350589a1911118aa9c69fc5b1dee86506d2009d3e53f417811c4c4310e1da58314748db4af9e0c6d509cd1af4eb240e2350589a1911118aa9426eb6a6c32e5ad63949e14996883bc73757454da1c15d7a30974b7cf947402436590334c375c1241a5cc23dbfcfa3c3b3c93bc665b5155248845050830861b99474d9ea3c154bb43f4c1f3090472922e6b03b9719ba4552a577cb8657e2ef8d46575578639b2e7b3447d13de714dd9c34b7a202a1d4e0e9bd5aab52575ca4526396faf0ae8759e1e970a5983ffade19ca3f38284dee9f0cabcc1a2e9d00f8ec956e0d646b1b406ec4a32eac39dccb82581bfe4e76362798c124ffb4bd227235aa1e15136f6873c3620da97cd7cd6e5521eb86cd5ae5a5a798768eea58c072053213772bc59d9a64ad1e97856a3310c8a0566cca718dd81e9bff3e1eb8ce20257eedc9d391d172e0227b5363e1cbe92d8ebf4c924cd60d2d6c75aae28ed2364b7eedc9d391d172e0227b5363e1cbe92db00b84656006726ca92ae22a9425ebdf9979ddf2e948aaef7efab9a7f3d1c861eb1d8691cfae0fd1d9cc7dfbb00109d0885e615305edaacf1f3f5feaf1c833104794df9c325773c9f1cf46f47d6b5dfef4f27d17dc204e11632cf98a8294650d52a30faef239f286f497d95be7d2194ca05f4d9e10f0cdbfa3f96300048d300fc33ab57e1cc74b4c63bb09bc4d7bc1a25a097d5e86c991f54806e88ad6882585f2432caf487c4b586a2c391435f3749c448dbf1df580c31a0e55de22bb076be3801f81f19823e42e83f932d7ab73ab2516ed338f3be50b60fd163ce91cd36915cafce27d4a77066d3980b1751cd7fd240f7efc627708e22928dc1ef8da1646d805ac3fb7f6dd64f3d99f59d2c6ab5d66d9b7b8c30048a060b6d27fbf566108bd05ac3fb7f6dd64f3d99f59d2c6ab5d66d9b7b8c30048a060b6d27fbf566108bd3f2a89200db525a69d79c84458111a7dd9b7b8c30048a060b6d27fbf566108bd3f2a89200db525a69d79c84458111a7dd9b7b8c30048a060b6d27fbf566108bd6491f874139f311383e7d2e9ac0411f2d9b7b8c30048a060b6d27fbf566108bda3e162705012e104727b2487bd69083789d2d6c1d169d0c2019f2388def7df569fa1130a453e2a95a0a2de836cd9626089d2d6c1d169d0c2019f2388def7df56eaf386f2ae6d70779e9cb44da7bcad3f0d6cf0e479dcaf69f48322a74ddf90ea34075a94e4352aab332fc8ec5ccf48e59e12c4ad8c940e327636d0d895bb0c426a175f840620c2a0b852b2f651e0dd52e034c728b639275af88a3e06aaf2c6b8ebe85e3e7f9ab81140b1fe653907596cfd11e09e8e61694353f12b3de376292ab8e1cf61ae0a0eea2b47bd8d81e1c0457f5922c77552f490d3262779aa4ab3931bd4c2f47f292ec7f40186ea56ed6a7b1afe29d6fd1b3d71c3fb6932e6f93ee00366ccff4f095090ad2f5d20bc2c649aa1b68e7e91d24dd998e1eac1dd875b6ce12c5b7c5519b75109706ed5482fb4b6d21ffad81d06f5832b5d0064377dc3d2a9cd5cab2f849d8d4ad71b56fe49fa7f887d8a58db70054088aeff6300c25ccb2f52603fe75a93d26a135b5e42e2e45a377e6389909af5d7f1c61cc5a48a44b4a60df23da7e83dc7212ae850d24d2de20156d78c0216858a1b78b7a24580cf32e2d7e5b7796cf8592027fd2753fee048071718dbf6393bfac4428b004d9e1ed8cc62f8d6c5172aa4f91dfe8868288f5235131816335553c9ff56a44526aca216f9538649d2d02c0efaa9ac765d0beda8fc80f302bbe2af68c8fe65d464b0e7e9dce4298ad4aed65e192562db64db7abded6399f0ac23daff69f5603a6d76d4c75ccfcf54b118c0e59ad72dde94d9764ff4383d849e6a1f4951685a272b5717e3376c39bcb5e5b4d5c5f4de87a3a2a478cd55a227c056d3c15bb9ebbeb0ebfa25ee5a7b7f6cce91dfdc497ca25a2657e50ba87208bc01388bed2c9ada107393dfb3580eed3ea9d7482f89d0a9cb39a08310be97074cab9dc338be0d41aaeb6498a5f6bd7250ddc73b83a1a1d73f94e3152bad39f160b33d132705757de1b1834fe3c50c2d0e931d26bf12792f567e07099a90e0df11ed6763ccb41d41f54a4469d92ec20b14f121f24f4c88ad51ae13d0c5968c1809387c6482aae5b26c7ad5ab1df30e2f5e3b95486edb2e33251b7272b7de28912d1c9ab98394646610b0eade817c9895f32119f442c523e6f3a6bd6488c2707122d463ca245a2f74f9a98404d7e5ba2fc58a4181b642602f062940de52f455d960761716ee0f04c5e0cf9ef9656f0257e68fbe026a4166d4b8d9b27ace8f817f20c1e28c1fd2abf2c247b08f3b9fe6810b4110184225fc766eb2f4af72f8a76aa476409f12eb027191a5b32d588e842930545a9c3ad570f2dcb127564b81cd5de8072f6e021242cd47b6de0389faabca3959e2b86fc37a811bd0a9759e716135579abe430eaa79cabda6499ad8c1f54da3c4ec97dddba51169c5511f4a40f656e8ac59bc28c22ccdafe7fd332278e518cae14ccea8407d1027b48033a13a28f8c7c1432c22c34e7d2659160745f9d2df32163a5ecc46ba1c417af2f238da8c0de7fbf70b0a2a328a636c2a368ccdbd6b24a4f3ed898738bb617f65be33b525c3fca06657f4cad7b79ac705813eeb44f44bffa4663e3fba7e74248af19fb66b2345e22f6d64eea6c9c93c69597fdf57ac3e83905a690e3f94798fa3a54dc7629f68ca6d55de5e13e026c445410c2dd66194c7955ed79d77e2dd133068initrd-vanillavmlinuz-vanilla@@@@@@@@@@@@@rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootkernel-vanilla-3.0.101-105.1.nosrc.rpmmultiversion(kernel)kernel-vanilla-base_i586kernel-baselinux-gate.so.1linux-gate.so.1(LINUX_2.5)linux-gate.so.1(linux-gate.so.1)firmware(3.0.101-105-vanilla/3com/3C359.bin)firmware(3.0.101-105-vanilla/3com/typhoon.bin)firmware(3.0.101-105-vanilla/acenic/tg1.bin)firmware(3.0.101-105-vanilla/acenic/tg2.bin)firmware(3.0.101-105-vanilla/adaptec/starfire_rx.bin)firmware(3.0.101-105-vanilla/adaptec/starfire_tx.bin)firmware(3.0.101-105-vanilla/advansys/3550.bin)firmware(3.0.101-105-vanilla/advansys/38C0800.bin)firmware(3.0.101-105-vanilla/advansys/38C1600.bin)firmware(3.0.101-105-vanilla/advansys/mcode.bin)firmware(3.0.101-105-vanilla/atmsar11.fw)firmware(3.0.101-105-vanilla/av7110/bootcode.bin)firmware(3.0.101-105-vanilla/bnx2/bnx2-mips-06-6.2.1.fw)firmware(3.0.101-105-vanilla/bnx2/bnx2-mips-09-6.2.1a.fw)firmware(3.0.101-105-vanilla/bnx2/bnx2-rv2p-06-6.0.15.fw)firmware(3.0.101-105-vanilla/bnx2/bnx2-rv2p-09-6.0.17.fw)firmware(3.0.101-105-vanilla/bnx2/bnx2-rv2p-09ax-6.0.17.fw)firmware(3.0.101-105-vanilla/bnx2x/bnx2x-e1-6.2.9.0.fw)firmware(3.0.101-105-vanilla/bnx2x/bnx2x-e1h-6.2.9.0.fw)firmware(3.0.101-105-vanilla/bnx2x/bnx2x-e2-6.2.9.0.fw)firmware(3.0.101-105-vanilla/cis/3CCFEM556.cis)firmware(3.0.101-105-vanilla/cis/3CXEM556.cis)firmware(3.0.101-105-vanilla/cis/COMpad2.cis)firmware(3.0.101-105-vanilla/cis/COMpad4.cis)firmware(3.0.101-105-vanilla/cis/DP83903.cis)firmware(3.0.101-105-vanilla/cis/LA-PCM.cis)firmware(3.0.101-105-vanilla/cis/MT5634ZLX.cis)firmware(3.0.101-105-vanilla/cis/NE2K.cis)firmware(3.0.101-105-vanilla/cis/PCMLM28.cis)firmware(3.0.101-105-vanilla/cis/PE-200.cis)firmware(3.0.101-105-vanilla/cis/PE520.cis)firmware(3.0.101-105-vanilla/cis/RS-COM-2P.cis)firmware(3.0.101-105-vanilla/cis/SW_555_SER.cis)firmware(3.0.101-105-vanilla/cis/SW_7xx_SER.cis)firmware(3.0.101-105-vanilla/cis/SW_8xx_SER.cis)firmware(3.0.101-105-vanilla/cis/tamarack.cis)firmware(3.0.101-105-vanilla/cpia2/stv0672_vp4.bin)firmware(3.0.101-105-vanilla/cxgb3/ael2005_opt_edc.bin)firmware(3.0.101-105-vanilla/cxgb3/ael2005_twx_edc.bin)firmware(3.0.101-105-vanilla/cxgb3/ael2020_twx_edc.bin)firmware(3.0.101-105-vanilla/cxgb3/t3b_psram-1.1.0.bin)firmware(3.0.101-105-vanilla/cxgb3/t3c_psram-1.1.0.bin)firmware(3.0.101-105-vanilla/cxgb3/t3fw-7.10.0.bin)firmware(3.0.101-105-vanilla/e100/d101m_ucode.bin)firmware(3.0.101-105-vanilla/e100/d101s_ucode.bin)firmware(3.0.101-105-vanilla/e100/d102e_ucode.bin)firmware(3.0.101-105-vanilla/edgeport/boot.fw)firmware(3.0.101-105-vanilla/edgeport/boot2.fw)firmware(3.0.101-105-vanilla/edgeport/down.fw)firmware(3.0.101-105-vanilla/edgeport/down2.fw)firmware(3.0.101-105-vanilla/edgeport/down3.bin)firmware(3.0.101-105-vanilla/emi26/bitstream.fw)firmware(3.0.101-105-vanilla/emi26/firmware.fw)firmware(3.0.101-105-vanilla/emi26/loader.fw)firmware(3.0.101-105-vanilla/emi62/bitstream.fw)firmware(3.0.101-105-vanilla/emi62/loader.fw)firmware(3.0.101-105-vanilla/emi62/midi.fw)firmware(3.0.101-105-vanilla/emi62/spdif.fw)firmware(3.0.101-105-vanilla/ess/maestro3_assp_kernel.fw)firmware(3.0.101-105-vanilla/ess/maestro3_assp_minisrc.fw)firmware(3.0.101-105-vanilla/intelliport2.bin)firmware(3.0.101-105-vanilla/isci/isci_firmware.bin)firmware(3.0.101-105-vanilla/kaweth/new_code.bin)firmware(3.0.101-105-vanilla/kaweth/new_code_fix.bin)firmware(3.0.101-105-vanilla/kaweth/trigger_code.bin)firmware(3.0.101-105-vanilla/kaweth/trigger_code_fix.bin)firmware(3.0.101-105-vanilla/keyspan_pda/keyspan_pda.fw)firmware(3.0.101-105-vanilla/keyspan_pda/xircom_pgs.fw)firmware(3.0.101-105-vanilla/korg/k1212.dsp)firmware(3.0.101-105-vanilla/matrox/g200_warp.fw)firmware(3.0.101-105-vanilla/matrox/g400_warp.fw)firmware(3.0.101-105-vanilla/mts_cdma.fw)firmware(3.0.101-105-vanilla/mts_edge.fw)firmware(3.0.101-105-vanilla/mts_gsm.fw)firmware(3.0.101-105-vanilla/ositech/Xilinx7OD.bin)firmware(3.0.101-105-vanilla/qlogic/1040.bin)firmware(3.0.101-105-vanilla/qlogic/12160.bin)firmware(3.0.101-105-vanilla/qlogic/1280.bin)firmware(3.0.101-105-vanilla/r128/r128_cce.bin)firmware(3.0.101-105-vanilla/radeon/R100_cp.bin)firmware(3.0.101-105-vanilla/radeon/R200_cp.bin)firmware(3.0.101-105-vanilla/radeon/R300_cp.bin)firmware(3.0.101-105-vanilla/radeon/R420_cp.bin)firmware(3.0.101-105-vanilla/radeon/R520_cp.bin)firmware(3.0.101-105-vanilla/radeon/R600_me.bin)firmware(3.0.101-105-vanilla/radeon/R600_pfp.bin)firmware(3.0.101-105-vanilla/radeon/RS600_cp.bin)firmware(3.0.101-105-vanilla/radeon/RS690_cp.bin)firmware(3.0.101-105-vanilla/radeon/RS780_me.bin)firmware(3.0.101-105-vanilla/radeon/RS780_pfp.bin)firmware(3.0.101-105-vanilla/radeon/RV610_me.bin)firmware(3.0.101-105-vanilla/radeon/RV610_pfp.bin)firmware(3.0.101-105-vanilla/radeon/RV620_me.bin)firmware(3.0.101-105-vanilla/radeon/RV620_pfp.bin)firmware(3.0.101-105-vanilla/radeon/RV630_me.bin)firmware(3.0.101-105-vanilla/radeon/RV630_pfp.bin)firmware(3.0.101-105-vanilla/radeon/RV635_me.bin)firmware(3.0.101-105-vanilla/radeon/RV635_pfp.bin)firmware(3.0.101-105-vanilla/radeon/RV670_me.bin)firmware(3.0.101-105-vanilla/radeon/RV670_pfp.bin)firmware(3.0.101-105-vanilla/radeon/RV710_me.bin)firmware(3.0.101-105-vanilla/radeon/RV710_pfp.bin)firmware(3.0.101-105-vanilla/radeon/RV730_me.bin)firmware(3.0.101-105-vanilla/radeon/RV730_pfp.bin)firmware(3.0.101-105-vanilla/radeon/RV770_me.bin)firmware(3.0.101-105-vanilla/radeon/RV770_pfp.bin)firmware(3.0.101-105-vanilla/sb16/alaw_main.csp)firmware(3.0.101-105-vanilla/sb16/ima_adpcm_capture.csp)firmware(3.0.101-105-vanilla/sb16/ima_adpcm_init.csp)firmware(3.0.101-105-vanilla/sb16/ima_adpcm_playback.csp)firmware(3.0.101-105-vanilla/sb16/mulaw_main.csp)firmware(3.0.101-105-vanilla/sun/cassini.bin)firmware(3.0.101-105-vanilla/tehuti/bdx.bin)firmware(3.0.101-105-vanilla/ti_3410.fw)firmware(3.0.101-105-vanilla/ti_5052.fw)firmware(3.0.101-105-vanilla/tigon/tg3.bin)firmware(3.0.101-105-vanilla/tigon/tg3_tso.bin)firmware(3.0.101-105-vanilla/tigon/tg3_tso5.bin)firmware(3.0.101-105-vanilla/tr_smctr.bin)firmware(3.0.101-105-vanilla/ttusb-budget/dspbootcode.bin)firmware(3.0.101-105-vanilla/whiteheat.fw)firmware(3.0.101-105-vanilla/whiteheat_loader.fw)firmware(3.0.101-105-vanilla/yam/1200.bin)firmware(3.0.101-105-vanilla/yam/9600.bin)firmware(3.0.101-105-vanilla/yamaha/ds1_ctrl.fw)firmware(3.0.101-105-vanilla/yamaha/ds1_dsp.fw)firmware(3.0.101-105-vanilla/yamaha/ds1e_ctrl.fw)firmware(3.0.101-105-vanilla/yamaha/yss225_registers.bin)kernel(vanilla:drivers_tty)kernel(vanilla:drivers_rapidio)kernel(vanilla:drivers_mfd)kernel(vanilla:fs_quota)kernel(vanilla:drivers_net_8390)kernel(vanilla:fs_notify)kernel(vanilla:arch_x86_kernel)kernel(vanilla:drivers_of)kernel(vanilla:drivers_cpuidle)kernel(vanilla:arch_x86_mm)kernel(vanilla:fs_proc)kernel(vanilla:lib_lzo)kernel(vanilla:kernel)kernel(vanilla:drivers_acpi_acpica)kernel(vanilla:drivers_i2c)kernel(vanilla:drivers_scsi)kernel(vanilla:lib_xz)kernel(vanilla:net_ipv4)kernel(vanilla:arch_x86_pci)kernel(vanilla:security)kernel(vanilla:net_ipv6)kernel(vanilla:net_core)kernel(vanilla:drivers_pnp)kernel(vanilla:kernel_time)kernel(vanilla:arch_x86_vdso)kernel(vanilla:drivers_usb_early)kernel(vanilla:kernel_trace)kernel(vanilla:net_netfilter)kernel(vanilla:drivers_base)kernel(vanilla:drivers_tty_vt)kernel(vanilla:drivers_char_agp)kernel(vanilla:drivers_gpu_vga)kernel(vanilla:drivers_pci_pcie)kernel(vanilla:drivers_staging_zram)kernel(vanilla:drivers_dma)kernel(vanilla:net_sched)kernel(vanilla:arch_x86_kernel_apic)kernel(vanilla:arch_x86_lib)kernel(vanilla:arch_x86_kernel_cpu_mtrr)kernel(vanilla:net_xfrm)kernel(vanilla:drivers_rtc)kernel(vanilla:drivers_char)kernel(vanilla:fs_pstore)kernel(vanilla:net_wireless)kernel(vanilla:net_ceph)kernel(vanilla:drivers_base_power)kernel(vanilla:fs)kernel(vanilla:net_802)kernel(vanilla:drivers_net_phy)kernel(vanilla:arch_x86_video)kernel(vanilla:drivers_input_serio)kernel(vanilla:drivers_acpi)kernel(vanilla:fs_jbd)kernel(vanilla:init)kernel(vanilla:security_selinux)kernel(vanilla:net_dns_resolver)kernel(vanilla:lib)kernel(vanilla:drivers_tty_hvc)kernel(vanilla:drivers_cpufreq)kernel(vanilla:drivers_sfi)kernel(vanilla:kernel_events)kernel(vanilla:fs_exportfs)kernel(vanilla:arch_x86_platform_olpc)kernel(vanilla:arch_x86_kernel_acpi)kernel(vanilla:drivers_acpi_apei)kernel(vanilla:fs_debugfs)kernel(vanilla:drivers_video)kernel(vanilla:drivers_pnp_pnpacpi)kernel(vanilla:net_dcb)kernel(vanilla:drivers_regulator)kernel(vanilla:drivers_usb_storage_usb-storage)kernel(vanilla:drivers_usb_core_usbcore)kernel(vanilla:drivers_ata_libahci)kernel(vanilla:net_8021q)kernel(vanilla:fs_nls)kernel(vanilla:arch_x86_platform_efi)kernel(vanilla:drivers_pnp_pnpbios)kernel(vanilla:drivers_block_loop)kernel(vanilla:drivers_net)kernel(vanilla:vmlinux)kernel(vanilla:drivers_video_backlight)kernel(vanilla:drivers_gpio)kernel(vanilla:kernel_debug_kdb)kernel(vanilla:drivers_char_hw_random)kernel(vanilla:fs_sysfs)kernel(vanilla:mm)kernel(vanilla:net_ethernet)kernel(vanilla:kernel_power)kernel(vanilla:arch_x86_kernel_cpu_mcheck)kernel(vanilla:drivers_pci)kernel(vanilla:drivers_input)kernel(vanilla:drivers_cdrom_cdrom)kernel(vanilla:drivers_pnp_isapnp)kernel(vanilla:drivers_spi)kernel(vanilla:fs_partitions)kernel(vanilla:drivers_pci_pcie_aer)kernel(vanilla:drivers_video_console)kernel(vanilla:kernel_irq)kernel(vanilla:block)kernel(vanilla:security_keys)kernel(vanilla:drivers_power)kernel(vanilla:net_netlink)kernel(vanilla:drivers_md_dm-mod)kernel(vanilla:drivers_usb_host)kernel(vanilla:kernel_debug)kernel(vanilla:drivers_leds)kernel(vanilla:drivers_md)kernel(vanilla:crypto)kernel(vanilla:drivers_tty_serial)kernel(vanilla:arch_x86_kernel_cpu)kernel(vanilla:drivers_net_wireless_wl12xx)kernel(vanilla:drivers_ata_libata)kernel(vanilla:drivers_connector)kernel(vanilla:net)kernel(vanilla:lib_zlib_inflate)kernel(vanilla:arch_x86_power)kernel(vanilla:drivers_firmware)kernel(vanilla:drivers_edac)kernel-vanilla-basekernel-vanilla-base(x86-32)      rpmlib(VersionedDependencies)coreutilsawkmodule-init-toolsperl-Bootloadermkinitrd/bin/sh/bin/sh/bin/sh/bin/shrpmlib(PartialHardlinkSets)rpmlib(PayloadFilesHavePrefix)rpmlib(CompressedFileNames)rpmlib(PayloadIsBzip2)3.0.3-14.0.4-14.0-13.0.4-13.0.5-1libc.so.6()(64bit)4.8.0XW1@W1@W1@W1@W1@W1@W1@W(WW@W@W4W4W @W @W@W@WVVJV@VV@V@V޾VxVxV͛@VVV@VwVHVV_VvVV@V@V^V@VwVs@Vs@Vs@Vs@VqR@V\:@VXEVEVEVC-V;DV8V7P@V(V(V VV7@VBUYUXUoUoU@U@U@U@U@UU@UU@U'U@U>Ua@Uyx@U\w@U[%U[%U[%UUUPUPUL@UKSUKSUKSUKSUG_@U>$U8U7@U0U&iU&iU%@UUUQU hU hTTTTTTTT@T-@T-@T T,@T7T7T7T7T7T7T7T7T7T7T7T7T7T7T7T7T7T7T7T7T7T7T7T7T7T7T7T7T7T7T@TTTTTTTTTTTTTTTTC@TC@T@T@T@T@TTTTTTTTTTTTTTTp@T@TTA@T@Tto@Tg@@TcKTcKTT@SS@SS<@S<@S<@S<@S<@S<@S@SuSہ@Sہ@S׌S;@S@S@SS@SES @SSS"@S@S9@SS@S@SSS|@S|@S|@St@Sl@Sl@Sl@Sl@Sl@Sl@Sl@Sl@Sl@Sl@Sl@Sl@Sl@Sl@Sl@Sl@Sl@Sl@Sl@Sl@ShShShSg}@Sg}@S`SNpSNpSNpSNpSNpSNpSNpSM@SM@SM@SM@SM@SM@S;S;S:@S:@S:@S5d@S1oS0@S0@S0@S0@S0@S0@S,)S,)S,)SS@SnS(S S?S@Rb@RR@R>Ra@Rx@RΏ@R@R@R@R@RʚRʚRƦ@RTRRRRR@R@R@R@R@Q>@Q>@Q>@Q@Q@Q@QQQQQQQQQU@QU@QU@Q~`Q{Qzl@QyQw@Qw@Qu&@Qu&@Qq1Qo@Qo@Qo@QnQnQnQnQnQnQnQg@Qb@Qb@Qb@Q^Q^Q\Q\QZ@QU@QU@QU@QU@QU@QR@QQQP<@QP<@QP<@QNQLGQLGQLGQJ@QJ@QJ@QIQIQHS@QHS@QHS@QGQGQE@QC @QC @QC @QAQAQAQAQAQ@j@Q@j@Q?Q=@Q8@Q8@Q7/Q5@Q5@Q0@Q0@Q0@Q0@Q/FQ/FQ-@Q-@Q-@Q-@Q-@Q,Q,Q,Q,Q+R@Q+R@Q+R@Q+R@Q+R@Q+R@Q+R@Q']Q']Q& @Q& @Q& @Q& @Q#i@Q#i@Q"Q"Q"Q#@Q#@Q#@QQQQQQQ@Q@Q@Q@Q.Q.Q.Q.Q@QQ@QEQEQEQ@Q@Q@QQQ @Q \Q \Q \Q @Q @Q @Q @Q @Q @Q @QQh@Qh@Qh@Qh@QsQsQsQsQ"@Q"@Q"@PP@P@P-P-P-P9@P9@PDPDP@P@PPPP@P@P[P[P[P @P @P @P@P!@P!@P!@P!@P݉P8@P8@P8@PO@P @P @P@PqPqPP@PPPPPP7@P7@P7@PPPPPPN@PN@PN@PN@PN@PN@PN@PN@PPPPPP@P@P@P@P@P@P@P@P@PYPYPYPYPe@Pe@PP@PpPpP@P*P*P*P*P@P@PP6@P6@PPPM@PM@PM@PM@PM@PM@PM@PM@PM@PM@PM@PPPP@P@PPPPd@Pd@Pd@Pd@PPPP@P@PoPoPoPoP{@P@P@P@P@P@P@P@P@P@P~P~P~P~P~P}L@P}L@P{P{P{P{Px@PvPvPuc@Puc@Puc@Puc@Puc@PtPtPtPtPr@Pr@Pr@PqnPqnPqnPqnPqnPqnPnPmz@Pmz@Pl(Pl(Pl(Pj@PiPfPfPe@Pb@Pb@Pb@Pb@Pb@Pb@PaPaPaP`K@P`K@P\VP\VP\VP\VP\VP\VP\VP[@P[@P[@P[@P[@P[@P[@P[@PYPYPYPYPYPYPYPXb@PWPS@PS@PPy@PPy@PPy@PM@PIPIPIPH@PH@PH@PG>PG>PG>PE@PE@P?UP?UP?UP?UP?UP6@P4P4P4P4P4P3x@P3x@P2&P.2@P.2@P.2@P,P,P+@P+@P+@P+@P*=P(@P$P$P$P#@P#@P#@P#@P#@P"TP"TP!@P!@P!@PPPP@P@P@P@P@P@PkPkPkPkPkPkPkP@P@P@P@P@PPPPw@Pw@Pw@Pw@Pw@Pw@Pw@PPPP1@PPP

@N>@N>@N>@N>@N>@N>@N>@NNNNNIN@N@N@N@N@N@N@N@N@N@N@N@N@N@N@N@N@NNNNNNNNNNU@NU@NU@NU@NU@NU@NU@NU@NU@NU@NU@NU@NNNNܲ@Nܲ@N@NؽNؽNؽNؽNؽNؽNl@Nl@Nl@Nl@Nl@Nl@Nl@Nl@NNN@N@N@N@NwNwNσ@Nσ@Nσ@Nσ@Nσ@Nσ@N1N1N1N1N1N1N1N1N1N1N1N1N1N1N@N@N@N@N@N@N@N@N@N@N@N@N@N@NˎNˎNˎNˎNˎNˎNˎNˎNˎN=@N=@N=@NNǚ@Nǚ@NHNHN@NåNåNåNåNåNåNT@NT@NT@NT@NNNN_N_N@N@N@N@N@N@NNNNNNNNk@Nk@Nk@Nk@Nk@Nk@NNNNNN@N@N@N@N@N@NvN%@N%@NNNNNNNNNNNNNNNNNNNNNNNNNNN@N@N@N@N@N@N@N@N@N@N@N@N@N@N0N0N@N@N@N@NNN<@NNN@N@N@N@N@NGNGNGNGN@N@N@NNNNNS@NS@NS@NS@NS@NS@NS@NS@N^N^N^N^N^N^N^N @N @N @N @N @N @N @N @NNNNNNNNNj@Nj@Nj@Nj@Nj@Nj@NNNN$@N$@N$@N$@N$@N$@N$@N$@N@N@N/N/N/N/N@N@N@N@N@N@N@NNNNNNNNNNNNNNNNNNNN@N@N@N@N@N@N@N@N@N@N@N@N@NFNFNFNFNFNFNFNFNFNFNFNFNFNFNFNFN@N@N@N@N@N@N@NN@N]N]N]N]N @N @N @N @NNi@NN}@N}@N|tN|tN|tN|tN|tN|tN|tN|tN|tN|tN|tN{#@N{#@N{#@N{#@N{#@N{#@N{#@N{#@N{#@N{#@N{#@N{#@NyNyNyNyNyNyNyNyNyNyNyNyNx@Nx@Nx@Nx@Nx@Nx@Nx@Nx@Nx@Nw.Nw.Nw.Nw.Nw.Nw.Nw.Nw.Nw.Nw.Nw.Nu@Nu@NtNtNtNs:@Ns:@Ns:@Ns:@Ns:@Ns:@Ns:@Ns:@Ns:@Ns:@Ns:@NqNqNqNqNqNqNqNqNqNqNp@Np@NoENoENoENoENoENm@NiNiNiNiNiNiNh@Nh@Ng\Ng\Ng\Nf @Nf @Nf @Nf @Nf @Nf @Nf @NdNdNdNdNdNdNdNdNdNdNdNbNbN`@N`@N`@N`@N`@N`@N`@N`@N_sN_sN^"@N^"@N^"@N^"@N\N\N\N[@N[@N[@N[@N[@N[@N[@N[@N[@N[@NV9@NV9@NV9@NV9@NV9@NV9@NV9@NV9@NV9@NV9@NV9@NV9@NV9@NTNTNTNTNTNTNTNTNTNTNTNTNTNTNTNTNTNTNS@NS@NS@NS@NS@NS@NS@NRDNRDNRDNRDNRDNRDNRDNRDNRDNRDNRDNRDNRDNRDNRDNRDNRDNRDNRDNRDNRDNRDNRDNP@NP@NP@NP@NONONONONONONONONONONONONNP@NNP@NNP@NNP@NNP@NNP@NNP@NK@NC@NC@NC@NC@NC@NC@NC@NC@NC@NC@NC@NC@NC@NC@NC@NC@NBrNBrNBrNBrNBrNBrNBrNBrNA!@NA!@NA!@N?N?N?N?N>~@N>~@N=,N=,N=,N=,N;@N;@N;@N;@N;@N:N:N:N:N:N:N:N:N:N:N:N:N:N98@N98@N98@N98@N98@N98@N98@N98@N98@N98@N98@N7N7N7N7N7N7N7N7N7N7N6@N6@N6@N6@N6@N6@N6@N6@N6@N6@N6@N6@N6@N3@N3@N3@N3@N2N2N2N2N2N2N2N2N2N2N2N2N2N2N2N2N2N2N2N2N1O@N1O@N1O@N1O@N1O@N1O@N1O@N1O@N/N/N/N/N/N/N/N/N.@N.@N.@N.@N.@N.@N.@N.@N.@N.@N-ZN-ZN-ZN-ZN*N*N)f@N)f@N)f@N)f@N)f@N)f@N)f@N(N(N(N(N(N(N(N(N(N(N(N(N&@N&@N&@N&@N&@N&@N%qN%qN%qN%qN%qN$ @N$ @N$ @N$ @N$ @N$ @N$ @N$ @N$ @N +N +N +N +N@N@N@N@N@N@N@N@NNNNNNNNN7@N7@N7@N7@NNNNNNBN@N@N@N@N@N@N@N@NNNNNN@NN@NN@NN@NN@NNNNNNNNNN@N@N@NYNYNYN@N@N@N N N N N N N N N N N N N N N N N N N e@N e@N e@N e@N e@N e@N e@N e@N e@N e@N e@N e@N N N N N N N N N N N N @N @N @N @N @N @N @N @N @N @N @N @N @N @N @N @NpNpNpNpNpNpNpNpNpNpNpNpNpNpNNN|@N|@N|@N|@N|@N|@N|@N*N*N*N*N*N*N*N*N*N@N@N@N@N@N@N@N@N@NNNNNNNNM6@M6@M6@M6@M6@M6@M6@M6@M6@M6@M6@M6@MMMM@M@M@M@M@M@MAMAMAMAMAMAMAMAM@M@M@M@M@M@M@M@M@M@M@M@M@M@M@M@M@M@M@M@M@M@M@M@M@M@M@MMMMMMMMMMMMMM@MM@MM@MM@MM@MM@MM@MM@MM@MM@MM@M@M@M@M@M@M@MMMMMMMd@Md@Md@Md@Md@Md@Md@Md@MMMMMMMM@M@M@M@M@M@MoMM{@M{@M{@M{@M)M)M)M)M)M@M@M@M@M@M@M@MMMMMMMMM5@MMMMMMMߒ@Mߒ@Mߒ@M@M@M@M@M@M@M۝ML@MWMWMWMWMWM@MӴMc@Mc@Mc@MMMMMM@M@M@MMMMz@Mz@Mz@M(M(M(M(M@M@MMMM‘@M‘@M‘@M?M?M?M?M@M@M@M@M@M@M@M@M@M@M@M@M@M@MVMVM@MMMMM@MmM@MMMMy@My@My@M'M'M'M'M'MM3@M3@M3@M3@M3@MMMMMMM@M>M>M>M@M@MJ@MM@M@M@MUMUMUMUMM@M@M@M@M@M@MlM@M@M@M@MMMMMMx@Mx@Mx@M&MMMM2@M2@M2@M2@M2@M2@M2@M2@M2@M2@MMI@MMMMM@M@MTMzMzMzMx@Mx@Mx@Mx@Mv@Mv@Mv@Mv@Mp@Mp@Mp@Mp@Mp@MoMoMoMn1@Mn1@Mk@Mk@Mk@Mk@MgMfH@MfH@MfH@MfH@MdMdMdMc@Mc@Mc@Mc@Mc@MbSMbSM_M^_@M^_@M^_@M] M[@MZjMVv@MU$MU$MU$MU$MU$MU$MRMRMRMRMQ0@MQ0@MOMK@MK@MK@MJMJMJMJMJMJMIG@MIG@MIG@MIG@MGMGMGMGMF@MD@MBMBMBMA^@MA^@MA^@MA^@MA^@MA^@MA^@M@ M>@M>@M=iM=iM:M9u@M9u@M8#M8#M8#M8#M8#M8#M8#M6@M6@M6@M5M5M4/@M4/@M0:M.@M-M,F@M,F@M,F@M,F@M*M*M*M*M'@M%M%M%M%M$]@M# M# M!@M!@M"M"M"M"M@M@M @MMMM M M M M M@MgM@M@M@M@M@MMMLs@Ls@Ls@Ls@L@L@LL@L@L@L@L8L8L8L@LLLL@L@L@LLLL[@L[@L[@L[@L[@L[@LfLfLfLfL@L@L@LL}L,@L,@L,@L,@Lډ@Lډ@L7L7L7L7L7L7L7L7L7L@L@L@LΫLLLʷ@Lʷ@Lʷ@LeLeL@LLLq@Lq@Lq@L+@L+@L+@L+@L+@L+@L+@LLLL6L6L6L@L@L@L@L@L@L@LdLdLdLdL@L@L@L@LLL@L@L@L@L@L@L@L@L*@LLLLLLL@L@L@L@LA@LA@LLLLL@L@L@L@LLLLLLLLL@LX@LX@LX@LX@LX@LLLLLLLLLL@L@L@L@L@L@L@LcLcL@L@LzLzLzL)@L)@L)@L)@LL4L@L@L@LLLLL~@@L~@@L~@@L~@@L~@@L~@@L~@@L|L|L|L|L|L|L|L{@L{@LwLuLuLs@Ls@LrbLoLnn@Lnn@Lnn@Lnn@Lnn@Lnn@Lk@LjyLjyLi(@Lf@Lc@Lc@LbLbLbLbLa?@La?@L]JL]JL]JL[@L[@L[@LZLZLZLZLYV@LYV@LYV@LYV@LYV@LYV@LXLV@LT@LT@LRLQm@LPLPLN@LN@LN@LMxLMxLMxLI@LI@LI@LI@LI@LI@LF@LF@LELEL>@L>@L>@L=L=L=Lnext_offset covers remaining blob size (CVE-2016-3134 bsc#971126). - netfilter: x_tables: validate e->target_offset early (CVE-2016-3134 bsc#971126). - commit de2bbc7- s390/cio: update measurement characteristics (bsc#966460, bsc#966662). - commit d2bfbf5- s390/cio: collect format 1 channel-path description data (bsc#966460, bsc#966662). - commit 8763791- s390/cio: ensure consistent measurement state (bsc#966460, bsc#966662). - commit f42f957- s390/cio: fix measurement characteristics memleak (bsc#966460, bsc#966662). - commit cf0ff7d- mm/hugetlb: check for pte NULL pointer in __page_check_address() (bsc#977847). - commit e043a99- USB: usbip: fix potential out-of-bounds write (bnc#975945). - commit 6669144- [SCSI] bfa: Fix to handle firmware tskim abort request response (bsc#972510). - commit f08fc5c- pipe: limit the per-user amount of pages allocated in pipes (bsc#970948, CVE-2016-2847). - commit f3f81ca- USB: iowarrior: fix oops with malicious USB descriptors (bnc#970956, CVE-2016-2188). - commit cb014fd- USB: cdc-acm: more sanity checking (bnc#970911, CVE-2016-3138). - commit 8201f3a- USB: cypress_m8: add endpoint sanity check (bnc#970970, CVE-2016-3137). - commit a7fb5f2- af_unix: Guard against other == sk in unix_dgram_sendmsg (bsc#973570). - commit 5fd270c- USB: digi_acceleport: do sanity checking for the number of ports (bnc#970892, CVE-2016-3140). - commit 8a939d6- Input: powermate - fix oops with malicious USB descriptors (bnc#970958, CVE-2016-2186). - commit 54d61bb- USB: usb_driver_claim_interface: add sanity checking (bnc#971124, CVE-2016-2185). - commit cb90591- ipv4: Don't do expensive useless work during inetdev destroy (CVE-2016-3156 bsc#971360). - commit 394738e- ALSA: usb-audio: Add sanity checks for endpoint accesses (CVE-2016-2184,bsc#971125). - ALSA: usb-audio: Fix NULL dereference in create_fixed_stream_quirk() (CVE-2016-2184,bsc#971125). - commit 02ebf9f- wacom: fix crash due to missing endpoint (bnc#970909, CVE-2016-3139). - commit 11621ac- s390/mm: four page table levels vs. fork (bnc#970504, LTC#138810, CVE-2016-2143). - commit 9a584cc- USB: visor: fix null-deref at probe (bnc#968670, CVE-2016-2782). - commit d80b152- USB: fix invalid memory access in hub_activate() (bnc#968010, CVE-2015-8816). - commit fa20fd5- USB: serial: visor: fix crash on detecting device without write_urbs (bnc#961512, CVE-2015-7566). - commit 7a184d6- Revert "cuse: fix memory leak (bsc#969356, CVE-2015-1339)." This reverts commit cefe085a2f869a306bb23630bc02557f8bbe263e. This commit wasn't meant for SLE11 - it is v4.2 and onwards only. - commit cd4eec7- cuse: fix memory leak (bsc#969356, CVE-2015-1339). - commit cefe085- ALSA: hrtimer: Fix stall by hrtimer_cancel() (CVE-2016-2549,bsc#968013). - ALSA: timer: Harden slave timer list handling (CVE-2016-2547,CVE-2016-2548,bsc#968011,bsc#968012). - ALSA: timer: Fix race among timer ioctls (CVE-2016-2546,bsc#967975). - ALSA: timer: Fix double unlink of active_list (CVE-2016-2545,bsc#967974). - ALSA: seq: Fix race at timer setup and close (CVE-2016-2544,bsc#967973). - ALSA: seq: Fix missing NULL check at remove_events ioctl (CVE-2016-2543,bsc#967972). - commit 70c02a5- Fix handling of re-write-before-commit for mmapped NFS pages (bsc#964201). - commit a6a3293- ALSA: usb-audio: avoid freeing umidi object twice (CVE-2016-2384,bsc#966693). - commit 72b902d- iw_cxgb3: Fix incorrectly returning error on success (bsc#966437, CVE-2015-8812). - commit fef10ea- fuse: break infinite loop in fuse_fill_write_pages() (bsc#963765, CVE-2015-8785). - commit 392a7ef- Refresh patches.fixes/0001-tty-Fix-unsafe-ldisc-reference-via-ioctl-TIOCGETD.patch. Upstream status. - commit 45fd4cb- x86/mm: Add barriers and document switch_mm()-vs-flush synchronization (bnc#963767, CVE-2016-2069). - commit 1b64844- tty: Fix unsafe ldisc reference via ioctl(TIOCGETD) (bnc#961500 CVE-2016-0723). - commit 63d99ec- kabi: protect struct unix_sock layout after epoll fix (bsc#917648 bsc#955654 CVE-2013-7446). - unix: avoid use-after-free in ep_remove_wait_queue (bsc#917648 bsc#955654 CVE-2013-7446). - commit c33fa95- sctp: Prevent soft lockup when sctp_accept() is called during a timeout event (CVE-2015-8767 bsc#961509). - commit dd53423- Input: aiptek - adjust error-handling code label (bnc#956708, CVE-2015-7515). - commit 6a6c38b- Update patches.fixes/ipv6-addrconf-validate-new-MTU-before-applying-it.patch references (add bsc#955354 CVE-2015-8215). - commit 965412f- Input: aiptek - fix crash on detecting device without endpoints (bnc#956708, CVE-2015-7515). - commit 688a1ad- KEYS: Fix race between read and revoke (bnc#958951, CVE-2015-7550). - commit 00e3fc6- pptp: verify sockaddr_len in pptp_bind() and pptp_connect() (bsc#959190, CVE-2015-8569). - commit 8b1cb51- bluetooth: Validate socket address length in sco_sock_bind() (bsc#959399, CVE-2015-8575). - commit 058f76e- Refresh patches.fixes/net-add-validation-for-the-socket-syscall-protocol-a.patch. Fix build error caused by missing U8_MAX. - commit 0524508- net: add validation for the socket syscall protocol argument (bsc#958886, CVE-2015-8543). - commit 836d73b- nf_conntrack: fix bsc#758540 kabi fix (bsc#946117). - commit 83f7668- KEYS: Fix handling of stored error in a negatively instantiated user key (bnc#958463, CVE-2015-8539). - commit 037884f- privcmd: allow preempting long running user-mode originating hypercalls (bnc#861093). - Refresh patches.xen/xen-x86-per-cpu-vcpu-info. - commit 3d55c7e- ext4: make orphan functions be no-op in no-journal mode (bsc#956709 CVE-2015-7509). - commit bfb1191- ppp, slip: Validate VJ compression slot parameters completely (bsc#949936, CVE-2015-7799). - commit 1f0be9b- isdn_ppp: Add checks for allocation failure in isdn_ppp_open() (bsc#949936, CVE-2015-7799). - commit 5fe19f8- KVM: svm: unconditionally intercept #DB (CVE-2015-8104 bsc#954404). - KVM: x86: work around infinite loop in microcode when #AC is delivered (CVE-2015-5307 bsc#953527). - commit 1cd6391- RDS: fix race condition when sending a message on unbound socket (bsc#952384, CVE-2015-7990). - commit 127e3d1- xfs: Fix lost direct IO write in the last block (bsc#949744). - commit bdbd5f6- KEYS: Fix crash when attempt to garbage collect an uninstantiated keyring (CVE-2015-7872 bsc#951440). - KEYS: Don't permit request_key() to construct a new keyring (CVE-2015-7872 bsc#951440). - KEYS: Fix race between key destruction and finding a keyring by name (bsc#951440). - commit 5db2952- Move patches.drivers/0001-fix-lpfc_send_rscn_event-sends-bigger-buffer-size.patch to correct section in series.conf. - commit b8360ed- dm-snap: avoid deadock on s->lock when a read is split (bsc#939826). - commit d3aa05a- Delete unused rpm/config-subst. - commit a8f3dd4- ipv6: addrconf: validate new MTU before applying it (bsc#944296 CVE-2015-0272). - commit 0283702- RDS: verify the underlying transport exists before creating a connection (bsc#945825, CVE-2015-6937). - commit 72893d4- Make sure XPRT_CONNECTING gets cleared when needed (bsc#946309). - commit eb05785- fix lpfc_send_rscn_event allocation size claims bnc#935757 - commit 7083831- vhost: actually track log eventfd file (bsc#942367, CVE-2015-6252). - commit 1a485c3- Refresh patches.fixes/scsi-Add-eh_deadline-to-limit-SCSI-EH-runtime.patch. - commit 9d4d22a- [SCSI] vmw_pvscsi: Fix pvscsi_abort() function (bnc#940398 bsc#930934). - commit 6490209- kernel: fix data corruption when reading /proc/sysinfo (bsc#891087, bsc#937986, LTC#114480). - commit bdfa3f9- x86/asm/entry/64: Remove a bogus 'ret_from_fork' optimization (bsc#926240, CVE-2015-2830). - commit 7e87e77- usbback: copy only filled buffers to guest (bsc#917830 CVE-2015-0777). - Refresh patches.xen/xen3-patch-2.6.19. - commit d3b59e4- pciback: limit guest control of command register (bsc#919463 CVE-2015-2150 XSA-120). - Refresh patches.xen/xen3-patch-2.6.20. - Refresh patches.xen/xen3-patch-2.6.30. - commit e3ff7e0- Update patches.fixes/sg_start_req-make-sure-that-there-s-not-too-many-elements-in-iovec.patch (bsc#940338, CVE-2015-5707). - commit 6a941f4- Drop patches.fixes/dm-table-switch-to-readonly (bsc#928801) * Refresh patches.fixes/dm-ignore-merge_bvec-for-snapshots-when-safe.patch. * Delete patches.fixes/dm-release-map_lock-before-set_disk_ro. * Delete patches.fixes/dm-table-switch-to-readonly. - commit ef61cec- sg_start_req(): make sure that there's not too many elements in iovec (bsc#940338). - commit 73e08d1- x86/mm: Improve AMD Bulldozer ASLR workaround (bsc#937032). - commit bd8b963- Update patches.fixes/udp-fix-behavior-of-wrong-checksums.patch (bsc#936831, CVE-2015-5364, CVE-2015-5366). - commit 98ee143- udp: fix behavior of wrong checksums (bsc#936831, CVE-2015-5364). - commit 0705f59- vfs: read file_handle only once in handle_to_path (bsc#915517 CVE-2015-1420). - commit b475329- x86: bpf_jit: fix compilation of large bpf programs (bnc#935705,CVE-2015-4700). - commit 66029e9- libata: prevent HSM state change race between ISR and PIO (bsc#923245). - commit 8c83748- pipe: fix iov overrun for failed atomic copy (bsc#933429 CVE-2015-1805). - commit ea4314a- HID: usbhid: yet another mouse with ALWAYS_POLL (bnc#931474). - HID: usbhid: more mice with ALWAYS_POLL (bnc#931474). - HID: add quirk for PIXART OEM mouse used by HP (bnc#931474). - HID: add HP OEM mouse to quirk ALWAYS_POLL (bnc#931474). - HID: add ALWAYS_POLL quirk for a Logitech 0xc007 (bnc#931474). - HID: usbhid: enable always-poll quirk for Elan Touchscreen 0103 (bnc#931474). - HID: usbhid: enable always-poll quirk for Elan Touchscreen 016f (bnc#931474). - HID: usbhid: enable always-poll quirk for Elan Touchscreen 009b (bnc#931474). - HID: usbhid: add another mouse that needs QUIRK_ALWAYS_POLL (bnc#931474). - HID: usbhid: fix PIXART optical mouse (bnc#931474). - HID: usbhid: enable always-poll quirk for Elan Touchscreen. - HID: usbhid: add always-poll quirk (bnc#931474). - commit 33190ed- crypto: aesni - fix memory usage in GCM decryption (bsc#927257,CVE-2015-3331). - commit 15e8a9f- x86, xsave: remove thread_has_fpu() bug check in __sanitize_i387_state() (bsc#904671, bsc#929360). - commit 8a96e59- coredump: ensure the fpu state is flushed for proper multi-threaded core dump (bsc#904671, bsc#929360). - commit c23603f- ipv6: Don't reduce hop limit for an interface (bsc#922583, CVE-2015-2922). - net: llc: use correct size for sysctl timeout entries (bsc#919007, CVE-2015-2041). - ipv4: Missing sk_nulls_node_init() in ping_unhash() (bsc#929525, CVE-2015-3636). - commit 7b1a09b- x86/reboot: Fix a warning message triggered by stop_other_cpus() (bnc#930284). - Refresh patches.suse/kdb-v4.4-3.1-x86-1. - commit 9ff36c9- deal with deadlock in d_walk fix (bnc#929148, bnc#929283). - commit dae8da8- bnx2x: Fix kdump when iommu=on (bug#921769). - commit bea1265- Fixup kABI false positive patches.fixes/vfs-fix-race-between-fcntl-and-file-f_flags-checks.patch. - commit 87cf0d3- Fixup compiler warning in patches.fixes/vfs-fix-race-between-fcntl-and-file-f_flags-checks.patch. - commit d758cc3- Added hunks missing from the patch patches.fixes/vfs-fix-race-between-fcntl-and-file-f_flags-checks.patch. - commit ae792c8- vfs: Fix race between fcntl() and file->f_flags checks (bnc#900881 CVE-2014-8086). - commit e0a018a- xfs: prevent deadlock trying to cover an active log (bsc#917093). - commit dd679a2- fs: take i_mutex during prepare_binprm for setid executables (CVE-2015-3339 bnc#928130). - commit f8147aa- e1000: don't enable dma receives until after dma address has been setup (bsc#821931). - commit 069d1bf- scripts/refresh: Obsoleted by refresh_patch.sh - commit f920be8- IB/uverbs: Prevent integer overflow in ib_umem_get address arithmetic (bsc#914742, CVE-2014-8159). - commit 6545a2d- eCryptfs: Remove buggy and unnecessary write in file name decode routine (bsc#918333, CVE-2014-9683). - commit 6b8568f- net: rds: use correct size for max unacked packets and bytes (bsc#919018 CVE-2015-2042). - commit 07fbbcb- x86/asm/entry/64: Remove a bogus 'ret_from_fork' optimization (bsc#926240, CVE-2015-2830). - commit d6d09f0- Delete obsolete patches.suse/suse-hv-Drivers-hv-util-Fix-a-bug-in-util-version-negotiatio.patch (removed from series.conf by commit 7d878c8f) - commit 69feeaa- Generate rpm changelog from git - commit d65cefb- patches.arch/x86-mm-send-tlb-flush-ipis-to-online-cpus-only.patch: x86, mm: Send tlb flush IPIs to online cpus only (bnc#798406).- net: sctp: fix slab corruption from use after free on INIT collisions (bsc#915577, CVE-2015-1421). - commit 01d23ef- patches.fixes/cifs-fix-use-after-free-bug-in-find_writable_file.patch: cifs: fix use-after-free bug in find_writable_file (bnc#909477).- patches.arch/s390-3215-tty-hang.patch: Update references (bnc#898693, bnc#897995, LTC#114562).- patches.arch/s390-dasd-retry-partition-detection.patch: Update references (bsc#916010, LTC#120565).- patches.arch/s390-dasd-retry-partition-detection.patch: s390/dasd: retry partition detection (bsc#916010, LTC#94302).- patches.arch/s390-3215-tty-close-crash.patch: kernel: 3215 tty close crash (bsc#916010, LTC#120873).- patches.arch/s390-sclp-tty-refcount.patch: kernel: sclp console tty reference counting (bsc#916010, LTC#115466).- patches.arch/s390-3215-tty-close-race.patch: kernel: 3215 console crash (bsc#916010, LTC#94302).- patches.arch/s390-3215-tty-hang.patch: Renamed from patches.arch/s390-tty-hang.patch.- patches.fixes/fsnotify-Fix-handling-of-renames-in-audit.patch: fsnotify: Fix handling of renames in audit (bnc#915200).- patches.xen/xen-nested-spinlocks-reenable-irq.patch: Correctly re-enable interrupts in xen_spin_wait() (bsc#879878, bsc#908870).- patches.fixes/ntp-no-time_state-updates-during-leap-second.patch: time, ntp: Do not update time_state in middle of leap second (bsc#912916).- patches.fixes/timekeeping-avoid-possible-deadlock-from-clock_was_set.patch: timekeeping: Avoid possible deadlock from clock_was_set_delayed (bsc#771619, bsc#915335).- patches.fixes/deal-with-deadlock-in-d_walk.patch: deal with deadlock in d_walk() (bnc#903640 CVE-2014-8559). - patches.fixes/move-d_rcu-from-overlapping-d_child-to-overlapping-d.patch: move d_rcu from overlapping d_child to overlapping d_alias (bnc#903640 CVE-2014-8559). - patches.kabi/kabi-fix-for-move-d_rcu.patch: kabi: fix for move of d_rcu (bnc#903640 CVE-2014-8559).- patches.arch/kvm-fix-excessive-pages-un-pinning-in-kvm_iommu_map-error-path.patch: kvm: fix excessive pages un-pinning in kvm_iommu_map error path (CVE-2014-8369 bnc#902675).- patches.fixes/lzo-check-for-length-overrun-in-variable-length-enco: lzo: check for length overrun in variable length encoding (bnc#883948,CVE-2014-4608).- patches.fixes/skbuff-skb_segment-orphan-frags-before-copying.patch: Delete.- patches.arch/kvm-x86-sysexit-emulation-does-not-mask-rip-rsp.patch: KVM: x86: Sysexit emulation does not mask RIP/RSP (CVE-2014-3647 bnc#899192).- patches.arch/kvm-vmx-inject-gp-on-invalid-pat-cr.patch: KVM: vmx: Inject #GP on invalid PAT CR (CVE-2014-3647 bnc#899192).- patches.arch/kvm-x86-emulating-descriptor-load-misses-long-mode-case.patch: KVM: x86: emulating descriptor load misses long-mode case (CVE-2014-3647 bnc#899192).- patches.arch/kvm-x86-distinguish-between-stack-operation-and-near-branches.patch: KVM: x86: Distinguish between stack operation and near branches (CVE-2014-3647 bnc#899192).- patches.arch/kvm-x86-use-new-is_noncanonical_address-in-linearize.patch: KVM: x86: Use new is_noncanonical_address in _linearize (CVE-2014-3647 bnc#899192).- patches.arch/kvm-x86-handle-errors-when-rip-is-set-during-far-jumps.patch: KVM: x86: Handle errors when RIP is set during far jumps (CVE-2014-3647 bnc#899192).- patches.arch/kvm-x86-emulator-fixes-for-eip-canonical-checks-on-near-branches.patch: KVM: x86: Emulator fixes for eip canonical checks on near branches (CVE-2014-3647 bnc#899192).- patches.arch/kvm-x86-fix-wrong-masking-on-relative-jump-call.patch: KVM: x86: Fix wrong masking on relative jump/call (CVE-2014-3647 bnc#899192).- patches.arch/kvm-x86-check-non-canonical-addresses-upon-wrmsr.patch: Refresh.- patches.arch/kvm-x86-warn-if-guest-virtual-address-space-is-not-48-bits.patch: KVM: x86: Warn if guest virtual address space is not 48-bits (CVE-2014-3647 bnc#899192).- patches.arch/kvm-vmx-handle-invvpid-vm-exit-gracefully.patch: kvm: vmx: handle invvpid vm exit gracefully (CVE-2014-3646 bnc#899192).- patches.arch/kvm-x86-improve-thread-safety-in-pit.patch: KVM/x86: Improve thread safety in pit (CVE-2014-3647, bnc#899192).- patches.arch/kvm-x86-check-non-canonical-addresses-upon-wrmsr.patch: KVM: x86: Check non-canonical addresses upon WRMSR (CVE-2014-3610 bnc#899192).- patches.arch/kvm-iommu-fix-the-third-parameter-of-kvm_iommu_put_pages-cve-2014-3601.patch: kvm: iommu: fix the third parameter of kvm_iommu_put_pages (CVE-2014-3601) (CVE-2014-3601 bnc#892782).- patches.fixes/hid-picolcd-sanity-check-report-size-in-raw_event-callback.patch: HID: picolcd: sanity check report size in raw_event() callback (bsc#896392, CVE-2014-3186).- patches.fixes/ipv6-don-t-set-dst_nocount-for-remotely-added-routes.patch: ipv6: don't set DST_NOCOUNT for remotely added routes (bnc#867531, CVE-2014-2309).- patches.fixes/skbuff-skb_segment-orphan-frags-before-copying.patch: skbuff: skb_segment: orphan frags before copying (bnc#867723, CVE-2014-0131).- patches.fixes/exec-ptrace-fix-get_dumpable-incorrect-tests.patch: exec/ptrace: fix get_dumpable() incorrect tests (bnc#847652, CVE-2013-2929).- patches.fixes/hid-picolcd_core-validate-output-report-details.patch: HID: picolcd_core: validate output report details (bnc#835839, CVE-2013-2899).- patches.fixes/0001-hid-add-usage_index-in-struct-hid_usage.patch: HID: add usage_index in struct hid_usage (bnc#835839). - patches.kabi/kabi-hid-usage-index.patch: HID: fix kabi breakage. - patches.fixes/0002-hid-multitouch-validate-indexes-details.patch: HID: multitouch: validate indexes details (bnc#835839, CVE-2013-2897).- patches.fixes/hid-lg-validate-hid-output-report-details.patch: HID: LG: validate HID output report details (bnc#835839, CVE-2013-2893).- patches.fixes/0007-kmod-make-__request_module-killable.patch: kmod: make __request_module() killable (bnc#778463, CVE-2012-4398).- patches.fixes/0006-kmod-introduce-call_modprobe-helper.patch: kmod: introduce call_modprobe() helper (bnc#778463, CVE-2012-4398).- patches.fixes/0005-usermodehelper-____call_usermodehelper-doesn-t-need-.patch: usermodehelper: ____call_usermodehelper() doesn't need do_exit() (bnc#778463, CVE-2012-4398).- patches.fixes/0003-usermodehelper-implement-UMH_KILLABLE.patch: usermodehelper: implement UMH_KILLABLE (bnc#778463, CVE-2012-4398).- patches.fixes/0002-usermodehelper-introduce-umh_complete-sub_info.patch: usermodehelper: introduce umh_complete(sub_info) (bnc#778463, CVE-2012-4398).- patches.fixes/0001-usermodehelper-use-UMH_WAIT_PROC-consistently.patch: usermodehelper: use UMH_WAIT_PROC consistently (bnc#778463, CVE-2012-4398).- patches.fixes/futex-Unlock-hb-lock-in-futex_wait_requeue_pi-error.patch: Refresh.- patches.arch/x86-kvm-vmx-preserve-cr4-across-vm-entry.patch: x86,kvm,vmx: Preserve CR4 across VM entry (CVE-2014-3690, bnc#902232).- patches.fixes/hid-magicmouse-sanity-check-report-size-in-raw_event-callback.patch: HID: magicmouse: sanity check report size in raw_event() callback (bsc#896382, CVE-2014-3181).- patches.fixes/tracing-syscalls-ignore-numbers-outside-nr_syscalls-range.patch: tracing/syscalls: Ignore numbers outside NR_syscalls' range (bsc#904013, CVE-2014-7826).- patches.arch/x86_64-vdso-fix-the-vdso-address-randomization-algorithm.patch: x86_64, vdso: Fix the vdso address randomization algorithm (bsc#912705, CVE-2014-9585).- patches.fixes/isofs-Fix-unchecked-printing-of-ER-records.patch: Update references (bsc#912654, CVE-2014-9584).- patches.arch/x86-kvm-clear-paravirt_enabled-on-kvm-guests-for-espfix32-s-benefit.patch: x86, kvm: Clear paravirt_enabled on KVM guests for espfix32's benefit (bsc#909078, CVE-2014-8134).- patches.arch/kvm-x86-don-t-report-guest-userspace-emulation-error-to-userspace.patch: KVM: x86: Don't report guest userspace emulation error to userspace (CVE-2014-7842 bnc#905312).- patches.fixes/netlink-add-privilege-check-of-socket-opener.patch: netlink: add privilege check of socket opener (bsc#875051, CVE-2014-0181).- patches.fixes/net-sctp-fix-null-pointer-dereference-in-af-from_add.patch: net: sctp: fix NULL pointer dereference in af->from_addr_param on (bnc#905100, CVE-2014-7841).- patches.fixes/mac80211-fix-fragmentation-code-particularly-for-enc: mac80211: fix fragmentation code, particularly for encryption (bnc#904700,CVE-2014-8709).- patches.fixes/ipv6-fix-leaking-uninitialized-port-number-of-offender-sockaddr.patch: ipv6: fix leaking uninitialized port number of offender sockaddr (bsc#853040, CVE-2013-7263).- patches.fixes/futex-Unlock-hb-lock-in-futex_wait_requeue_pi-error.patch: futex: Unlock hb->lock in futex_wait_requeue_pi() error path (fix bnc#880892).- patches.fixes/USB-whiteheat-Added-bounds-checking-for-bulk-command: USB: whiteheat: Added bounds checking for bulk command response (CVE-2014-3185,bnc#896391).- patches.fixes/hid-fix-a-couple-of-off-by-ones.patch: HID: fix a couple of off-by-ones (bsc#896390, CVE-2014-3184).- patches.fixes/net-l2tp-don-t-fall-back-on-udp-get-set-sockopt.patch: net/l2tp: don't fall back on UDP [get|set]sockopt (bnc#887082, CVE-2014-4943).- patches.suse/suse-hv-heartbeat-sles11sp2-negotiate-serveral-versions.patch: handle more than just WS2008 in heartbeat negotiation (bnc#901885).- patches.fixes/xfs-recheck-buffer-pinned-status-after-push-trylock-.patch: xfs: recheck buffer pinned status after push trylock failure (bnc#907338). - patches.fixes/xfs-remove-log-force-from-xfs_buf_trylock.patch: xfs: remove log force from xfs_buf_trylock() (bnc#907338).- patches.xen/xen3-x86-asm-flip-restore_args-arguments-logic.patch: x86, asm, xen: Flip RESTORE_ARGS arguments logic (bnc#910251 CVE-9322).- patches.fixes/x86_64-traps-stop-using-ist-for-ss.patch: Update references (bsc#907818, CVE-2014-9090, CVE-2014-9322).- Update config files. - patches.fixes/x86-64-espfix-don-t-leak-bits-31-16-of-esp-returning-to-16-bit-stack.patch: x86-64, espfix: Don't leak bits 31:16 of %esp returning to 16-bit stack (bsc#907818,CVE-2014-9090). - patches.fixes/x86-asm-flip-restore_args-arguments-logic.patch: x86, asm: Flip RESTORE_ARGS arguments logic (bsc#907818,CVE-2014-9090). - patches.fixes/x86-asm-thin-down-save-restore_-asm-macros.patch: x86, asm: Thin down SAVE/RESTORE_* asm macros (bsc#907818,CVE-2014-9090). - patches.fixes/x86-espfix-make-espfix64-a-kconfig-option-fix-uml.patch: x86, espfix: Make espfix64 a Kconfig option, fix UML (bsc#907818,CVE-2014-9090). - patches.fixes/x86-espfix-make-it-possible-to-disable-16-bit-support.patch: x86, espfix: Make it possible to disable 16-bit support (bsc#907818,CVE-2014-9090). - patches.fixes/x86-extable-remove-open-coded-exception-table-entries-in-arch-x86-kernel-entry_64-s.patch: x86, extable: Remove open-coded exception table entries in arch/x86/kernel/entry_64.S (bsc#907818,CVE-2014-9090). - patches.fixes/x86-extable-use-pushsection-popsection-for-asm_extable.patch: x86, extable: Use .pushsection ... .popsection for _ASM_EXTABLE() (bsc#907818,CVE-2014-9090). - patches.fixes/x86-tls-validate-tls-entries-to-protect-espfix.patch: x86/tls: Validate TLS entries to protect espfix (bsc#909077,CVE-2014-8133). - patches.fixes/x86_64-entry-xen-do-not-invoke-espfix64-on-xen.patch: x86_64/entry/xen: Do not invoke espfix64 on Xen (bsc#907818,CVE-2014-9090). - patches.fixes/x86_64-traps-fix-the-espfix64-df-fixup-and-rewrite-it-in-c.patch: x86_64, traps: Fix the espfix64 #DF fixup and rewrite it in C (bsc#907818,CVE-2014-9090). - patches.fixes/x86_64-traps-rework-bad_iret.patch: x86_64, traps: Rework bad_iret (bsc#909077,CVE-2014-8133). - patches.fixes/x86_64-traps-stop-using-ist-for-ss.patch: x86_64, traps: Stop using IST for #SS (bsc#907818,CVE-2014-9090). - patches.xen/xen3-patch-2.6.31: Refresh. - patches.xen/xen3-x86-asm-flip-restore_args-arguments-logic.patch: x86, asm, xen: Flip RESTORE_ARGS arguments logic (bnc#910251 CVE-9322). - commit 47c233e- Update config files. - patches.fixes/x86-64-espfix-don-t-leak-bits-31-16-of-esp-returning-to-16-bit-stack.patch: x86-64, espfix: Don't leak bits 31:16 of %esp returning to 16-bit stack (bsc#907818,CVE-2014-9090). - patches.fixes/x86-asm-flip-restore_args-arguments-logic.patch: x86, asm: Flip RESTORE_ARGS arguments logic (bsc#907818,CVE-2014-9090). - patches.fixes/x86-asm-thin-down-save-restore_-asm-macros.patch: x86, asm: Thin down SAVE/RESTORE_* asm macros (bsc#907818,CVE-2014-9090). - patches.fixes/x86-espfix-make-espfix64-a-kconfig-option-fix-uml.patch: x86, espfix: Make espfix64 a Kconfig option, fix UML (bsc#907818,CVE-2014-9090). - patches.fixes/x86-espfix-make-it-possible-to-disable-16-bit-support.patch: x86, espfix: Make it possible to disable 16-bit support (bsc#907818,CVE-2014-9090). - patches.fixes/x86-extable-remove-open-coded-exception-table-entries-in-arch-x86-kernel-entry_64-s.patch: x86, extable: Remove open-coded exception table entries in arch/x86/kernel/entry_64.S (bsc#907818,CVE-2014-9090). - patches.fixes/x86-extable-use-pushsection-popsection-for-asm_extable.patch: x86, extable: Use .pushsection ... .popsection for _ASM_EXTABLE() (bsc#907818,CVE-2014-9090). - patches.fixes/x86-tls-validate-tls-entries-to-protect-espfix.patch: x86/tls: Validate TLS entries to protect espfix (bsc#909077,CVE-2014-8133). - patches.fixes/x86_64-entry-xen-do-not-invoke-espfix64-on-xen.patch: x86_64/entry/xen: Do not invoke espfix64 on Xen (bsc#907818,CVE-2014-9090). - patches.fixes/x86_64-traps-fix-the-espfix64-df-fixup-and-rewrite-it-in-c.patch: x86_64, traps: Fix the espfix64 #DF fixup and rewrite it in C (bsc#907818,CVE-2014-9090). - patches.fixes/x86_64-traps-rework-bad_iret.patch: x86_64, traps: Rework bad_iret (bsc#909077,CVE-2014-8133). - patches.fixes/x86_64-traps-stop-using-ist-for-ss.patch: x86_64, traps: Stop using IST for #SS (bsc#907818,CVE-2014-9090). - patches.xen/xen3-patch-2.6.31: Refresh. - patches.xen/xen3-x86-asm-flip-restore_args-arguments-logic.patch: x86, asm, xen: Flip RESTORE_ARGS arguments logic (bnc#910251 CVE-9322).- Update config files. - patches.fixes/x86-espfix-make-espfix64-a-kconfig-option-fix-uml.patch: Refresh. - patches.fixes/x86-espfix-make-it-possible-to-disable-16-bit-support.patch: Refresh.- patches.fixes/x86-tls-validate-tls-entries-to-protect-espfix.patch: x86/tls: Validate TLS entries to protect espfix (bsc#909077,CVE-2014-8133).- patches.fixes/x86_64-traps-rework-bad_iret.patch: x86_64, traps: Rework bad_iret (bsc#909077,CVE-2014-8133).- patches.fixes/x86_64-traps-stop-using-ist-for-ss.patch: x86_64, traps: Stop using IST for #SS (bsc#907818,CVE-2014-9090). - patches.xen/xen3-patch-2.6.31: Refresh.- patches.fixes/x86_64-traps-fix-the-espfix64-df-fixup-and-rewrite-it-in-c.patch: x86_64, traps: Fix the espfix64 #DF fixup and rewrite it in C (bsc#907818,CVE-2014-9090).- patches.fixes/x86_64-entry-xen-do-not-invoke-espfix64-on-xen.patch: x86_64/entry/xen: Do not invoke espfix64 on Xen (bsc#907818,CVE-2014-9090).- patches.fixes/x86-espfix-make-it-possible-to-disable-16-bit-support.patch: x86, espfix: Make it possible to disable 16-bit support (bsc#907818,CVE-2014-9090). - Update config files.- patches.fixes/x86-espfix-make-espfix64-a-kconfig-option-fix-uml.patch: x86, espfix: Make espfix64 a Kconfig option, fix UML (bsc#907818,CVE-2014-9090). - Update config files.- patches.fixes/x86-64-espfix-don-t-leak-bits-31-16-of-esp-returning-to-16-bit-stack.patch: x86-64, espfix: Don't leak bits 31:16 of %esp returning to 16-bit stack (bsc#907818,CVE-2014-9090).- patches.fixes/x86-extable-remove-open-coded-exception-table-entries-in-arch-x86-kernel-entry_64-s.patch: x86, extable: Remove open-coded exception table entries in arch/x86/kernel/entry_64.S (bsc#907818,CVE-2014-9090).- patches.fixes/x86-extable-use-pushsection-popsection-for-asm_extable.patch: x86, extable: Use .pushsection ... .popsection for _ASM_EXTABLE() (bsc#907818,CVE-2014-9090).- patches.fixes/x86-asm-flip-restore_args-arguments-logic.patch: x86, asm: Flip RESTORE_ARGS arguments logic (bsc#907818,CVE-2014-9090).- patches.fixes/x86-asm-thin-down-save-restore_-asm-macros.patch: x86, asm: Thin down SAVE/RESTORE_* asm macros (bsc#907818,CVE-2014-9090).- patches.fixes/scsi_dh_alua-disable-ALUA-handling-for-non-disk-devi.patch: scsi_dh_alua: disable ALUA handling for non-disk devices (bnc#876633).- patches.drivers/libata-set-proper-sk-when-ck_cond-is-set-fixup.patch: Fix HDIO_DRIVE_* ioctl() Linux 3.9 regression (bnc#833588, bnc#905799).- patches.suse/Revert-PM-reboot-call-syscore_shutdown-after-disable_nonboot_cpus.patch: Revert "PM / reboot: call syscore_shutdown() after disable_nonboot_cpus()" (Reduce time to shutdown large machines (bnc#865442 bnc#907396)). - patches.suse/Revert-kernel-sys.c-call-disable_nonboot_cpus-in-kernel_restart.patch: Revert "kernel/sys.c: call disable_nonboot_cpus() in kernel_restart()" (Reduce time to shutdown large machines (bnc#865442 bnc#907396)).- patches.suse/pagecache-limit-reduce-zone-lrulock-bouncing-fix.patch: pagecachelimit: reduce lru_lock congestion for heavy parallel reclaim fix (bnc#895680, bnc#907189).- patches.fixes/net-sctp-fix-remote-memory-pressure-from-excessive-q.patch: net: sctp: fix remote memory pressure from excessive queueing (bnc#902351 CVE-2014-3688).- patches.fixes/net-sctp-fix-panic-on-duplicate-ASCONF-chunks.patch: net: sctp: fix panic on duplicate ASCONF chunks (bnc#902349 CVE-2014-3687).- patches.fixes/mm-fix-BUG-in-__split_huge_page_pmd.patch: mm: fix BUG in __split_huge_page_pmd (bnc#906586).- patches.fixes/net-sctp-fix-skb_over_panic-when-receiving-malformed.patch: net: sctp: fix skb_over_panic when receiving malformed ASCONF chunks (bnc#902346 CVE-2014-3673).- patches.arch/s390-70-04-cio-improve-cio_commit_config.patch: s390/cio: improve cio_commit_config (bnc#864049, bnc#898693, LTC#104168).- patches.arch/s390-tty-hang.patch: s390/3215: fix hanging console issue (bnc#898693, bnc#897995, LTC#115466).- patches.fixes/do-not-expose-uninitialized-mem_cgroup_per_node: memcg: do not expose uninitialized mem_cgroup_per_node to world (bnc#883096).- patches.fixes/dm-mpath-fix-panic-on-deleting-sg-device.patch: dm-mpath: fix panic on deleting sg device (bnc#870161).- patches.fixes/audit_x86_32-entry-clean-up-sysenter_badsys-declaration-cve-2014-4508.patch: x86_32, entry: Clean up sysenter_badsys declaration (bnc#883724, CVE-2014-4508). - patches.fixes/audit_x86_32-entry-store-badsys-error-code-in-eax-cve-2014-4508.patch: x86_32, entry: Store badsys error code in %eax (bnc#883724, CVE-2014-4508).- patches.fixes/isofs-Fix-unbounded-recursion-when-processing-reloca.patch: isofs: Fix unbounded recursion when processing relocated directories (bnc#892490 CVE-2014-5471 CVE-2014-5472).- patches.drivers/target-rd-refactor-rd_build_device_space-rd_release_device_space: target/rd: Refactor rd_build_device_space + rd_release_device_space.- patches.suse/pagecache-limit-reduce-zone-lrulock-bouncing.patch: pagecachelimit: reduce lru_lock contention for heavy parallel reclaim (bnc#878509, bnc#864464). - patches.kabi/pagecache-limit-reduce-zone-lrulock-bouncing-kabi.patch: pagecachelimit: reduce lru_lock contention for heavy parallel reclaim kabi fixup (bnc#878509, bnc#864464). - patches.suse/pagecache-limit-fix-shmem-deadlock.patch: Refresh.- patches.fixes/NFSv4-Minor-cleanups-for-nfs4_handle_exception-and-n.patch: NFSv4: Minor cleanups for nfs4_handle_exception and nfs4_async_handle_error (bnc#889324).- patches.fixes/sctp-fix-sk_ack_backlog-wrap-around-problem.patch: sctp: Fix sk_ack_backlog wrap-around problem (bnc#885422, CVE-2014-4667).- patches.fixes/net-rework-recvmsg-handler-msg_name-and-msg_namelen-logic.patch: Update references (bnc#854722, CVE-2013-6463).- patches.arch/ptrace-x86-force-IRET-path-after-a-ptrace_stop.patch: ptrace,x86: force IRET path after a ptrace_stop() (bnc#885725, CVE-2014-4699).- patches.fixes/mac80211-fix-AP-powersave-TX-vs-wakeup-race: mac80211: fix AP powersave TX vs. wakeup race (bnc#871797, CVE-2014-2706).- patches.fixes/media-media-device-fix-infoleak-in-ioctl-media_enum_: [media] media-device: fix infoleak in ioctl media_enum_entities() (bnc#882804,CVE-2014-1739).- patches.fixes/megaraid-sas-mask-off-flags-in-ioctl-path.patch: megaraid_sas: mask off flags in ioctl path (bnc#886474).- patches.fixes/Fix-memory-allocator-deadlock.patch: cpuset: Fix memory allocator deadlock (bnc#876590).- patches.fixes/block-fix-race-between-rq-completion-and-timeout.patch: block: fix race between request completion and timeout handling (bnc#881051).- patches.fixes/net-sctp-inherit-auth_capable-on-INIT-collisions.patch: net: sctp: inherit auth_capable on INIT collisions (bnc#889173 CVE-2014-5077).- patches.fixes/scsi-Add-eh_deadline-to-limit-SCSI-EH-runtime.patch: Refresh.- kabi: hide bnc#860593 changes of struct inetpeer_addr_base (bnc#860593). - inetpeer: initialize ->redirect_genid in inet_getpeer() (bnc#860593). - inet: add a redirect generation id in inetpeer (bnc#860593). - commit 7d51d99- patches.fixes/tcp-allow-to-disable-cwnd-moderation-in-TCP_CA_Loss-.patch: tcp: allow to disable cwnd moderation in TCP_CA_Loss state (bnc#879921). - patches.fixes/tcp-adapt-selected-parts-of-RFC-5682-and-PRR-logic.patch: tcp: adapt selected parts of RFC 5682 and PRR logic (bnc#879921).- patches.fixes/acpi_pad_resched_fix.patch: ACPI / PAD: call schedule() when need_resched() is true (bnc#866911).- patches.xen/xen3-audit_x86_32-entry-do-syscall-exit-work-on-badsys-cve-2014-4508.patch: x86_32, entry: Do syscall exit work on badsys (CVE-2014-4508) (bnc#883724, CVE-2014-4508).- patches.fixes/audit_x86_32-entry-do-syscall-exit-work-on-badsys-cve-2014-4508.patch: x86_32, entry: Do syscall exit work on badsys (CVE-2014-4508) (bnc#883724, CVE-2014-4508).- patches.drivers/alsa-0001-control-Protect-user-controls-against-concurren: ALSA: control: Protect user controls against concurrent access (CVE-2014-4652,bnc#883795). - patches.drivers/alsa-0002-control-Fix-replacing-user-controls: ALSA: control: Fix replacing user controls (CVE-2014-4654,CVE-2014-4655,bnc#883795). - patches.drivers/alsa-0003-control-Don-t-access-controls-outside-of-protec: ALSA: control: Don't access controls outside of protected regions (CVE-2014-4653,bnc#883795). - patches.drivers/alsa-0004-control-Handle-numid-overflow: ALSA: control: Handle numid overflow (CVE-2014-4656,bnc#883795). - patches.drivers/alsa-0005-control-Make-sure-that-id-index-does-not-overfl: ALSA: control: Make sure that id->index does not overflow (CVE-2014-4656,bnc#883795). - patches.kabi/alsa-control-kabi-fix: Fix kABI breakage due to addition of user_ctl_lock (bnc#883795).- patches.fixes/drivers-rtc-interface.c-fix-infinite-loop-in-initial.patch: drivers/rtc/interface.c: fix infinite loop in initializing the alarm (bnc#871676).- patches.fixes/auditsc-audit_krule-mask-accesses-need-bounds-checking.patch: auditsc: audit_krule mask accesses need bounds checking (bnc#880484, CVE-2014-3917).- patches.fixes/vlan-more-careful-checksum-features-handling.patch: vlan: more careful checksum features handling (bnc#872634). - patches.fixes/bonding-fix-vlan_features-computing.patch: bonding: fix vlan_features computing (bnc#872634).- patches.fixes/0001-futex-Forbid-uaddr-uaddr2-in-requeue.patch: futex: Forbid uaddr == uaddr2 in futex_requeue(..., requeue_pi=1) (bnc#880892 CVE-2014-3153). - patches.fixes/0002-futex-Validate-atomic-acquisition-in-futex_lock_pi_atomic.patch: futex: Validate atomic acquisition in futex_lock_pi_atomic() (bnc#880892 CVE-2014-3153).- patches.fixes/svc_aged_on_shutdown.fix: Don't lose sockets when nfsd shutdown races with connection timeout (bnc#871854).- patches.fixes/filter-prevent-nla-extensions-to-peek-beyond-the-end.patch: filter: prevent nla extensions to peek beyond the end of the message (bnc#877257 CVE-2014-3144 CVE-2014-3145).- patches.fixes/vhost-fix-total-length-when-packets-are-too-short.patch: vhost: fix total length when packets are too short (bnc#870576 CVE-2014-0077).- patches.fixes/vhost-validate-vhost_get_vq_desc-return-value.patch: vhost: validate vhost_get_vq_desc return value (bnc#870173 CVE-2014-0055).- patches.fixes/dm-snapshot-fix-data-corruption.patch: dm snapshot: fix data corruption (bnc#846404).- patches.fixes/net-ipv4-current-group_info-should-be-put-after-usin.patch: net: ipv4: current group_info should be put after using (bnc#873374 CVE-2014-2851).- patches.fixes/reiserfs-call-truncate_setsize-under-tailpack-mutex: reiserfs: call truncate_setsize under tailpack mutex (bnc#878115). - patches.fixes/reiserfs-drop-vmtruncate: reiserfs: drop vmtruncate (bnc#878115).- patches.fixes/xfrm-check-peer-pointer-for-null-before-calling-inet.patch: xfrm: check peer pointer for null before calling inet_putpeer() (bnc#877775). - commit d2234c4- patches.fixes/xfrm-check-peer-pointer-for-null-before-calling-inet.patch: xfrm: check peer pointer for null before calling inet_putpeer() (bnc#877775).- supported.conf: Add firewire/nosy as supported. This driver is the replacement for the ieee1394/pcilynx driver, which was supported.- patches.fixes/dm-mpath-Fixup-race-condition-in-activate_path.patch: dm-mpath: Fixup race condition in activate_path() (bnc#708296). - patches.fixes/dm-mpath-do-not-detach-stale-hardware-handler.patch: dm-mpath: do not detach stale hardware handler (bnc#708296). - patches.fixes/dm-multipath-Improve-logging.patch: dm-multipath: Improve logging (bnc#708296). - patches.fixes/scsi_dh_alua-Simplify-state-machine.patch: scsi_dh_alua: Simplify state machine (bnc#854025). - patches.fixes/scsi_dh_alua-endless-STPG-retries-for-a-failed-LUN.patch: scsi_dh_alua: endless STPG retries for a failed LUN (bnc#865342). - patches.fixes/scsi_dh_alua-fixup-RTPG-retry-delay-miscalculation.patch: scsi_dh_alua: fixup RTPG retry delay miscalculation (bnc#854025). - patches.fixes/dm-mpath-abort-all-requests-when-failing-a-path.patch: Delete obsolete patch.- patches.fixes/Fix-a-few-incorrectly-checked-io_-remap_pfn_range-ca.patch: Update references (bnc#849021, bnc#850263, CVE-2013-4511, CVE-2013-6763).- patches.fixes/rds-prevent-dereference-of-a-NULL-device-in-rds_iw_l.patch: rds: prevent dereference of a NULL device in rds_iw_laddr_check (bnc#871561, CVE-2014-2678).- patches.fixes/rds-prevent-dereference-of-a-NULL-device.patch: rds: prevent dereference of a NULL device (bnc#869563, CVE-2013-7339).- patches.fixes/net-sctp-fix-sctp_sf_do_5_1d_ce-to-verify-if-we-peer.patch: net: sctp: fix sctp_sf_do_5_1D_ce to verify if we/peer is AUTH (bnc#866102, CVE-2014-0101).- patches.drivers/ath9k_htc-properly-set-MAC-address-and-BSSID-mask: ath9k_htc: properly set MAC address and BSSID mask (bnc#851426,CVE-2013-4579).- patches.fixes/cifs-ensure-that-uncached-writes-handle-unmapped-are.patch: cifs: ensure that uncached writes handle unmapped areas correctly (bnc#864025 CVE-2014-00691).- patches.arch/x86-cpu-amd-add-workaround-for-family-16h-erratum-793.patch: x86, cpu, amd: Add workaround for family 16h, erratum 793 (bnc#852967 CVE-2013-6885).- patches.fixes/dl2k-tighten-ioctl-permissions: Update references (bnc#758813, CVE-2012-2313).- patches.fixes/crypto-ansi_cprng-fix-off-by-one-error-in-non-block-size-request.patch: Update references (bnc#840226, CVE-2013-4345).- patches.kernel.org/patch-3.0.95-96: Update references (CVE-2013-0343).- patches.fixes/aacraid-missing-capable-check-in-compat-ioctl.patch: Update references (bnc#852558 CVE-2013-6383).- patches.kernel.org/patch-3.0.99-100: Update references (CVE-2013-1929 CVE-2013-2015 CVE-2013-2147 bnc#813733 bnc#817377 bnc#823260 bnc#841402).- patches.fixes/net-add-missing-bh_unlock_sock-calls.patch: net: add missing bh_unlock_sock() calls (bnc#862429). - patches.fixes/tcp-clear-xmit-timers-in-tcp_v4_syn_recv_sock.patch: tcp: clear xmit timers in tcp_v4_syn_recv_sock() (bnc#862429).- patches.fixes/n_tty-Fix-n_tty_write-crash-when-echoing-in-raw-mode.patch: n_tty: Fix n_tty_write crash when echoing in raw mode (bnc#871252 bnc#875690 CVE-2014-0196).- patches.arch/ia64-erratum-237-change-default-PSR.ac-from-1-to-0: [IA64] Change default PSR.ac from '1' to '0' (Fix erratum #237) (bnc#874108). - patches.suse/kdb-v4.4-3.1-ia64-1: Refresh.- patches.fixes/guarantee_unique_inodes_in_proc.patch: Update references (bnc#868049).- patches.fixes/guarantee_unique_inodes_in_proc.patch: vfs,proc: guarantee unique inodes in /proc.- patches.xen/xen-nested-spinlocks-fix.patch: Close a race condition in Xen nested spinlock (bnc#858280, bnc#819351).- patches.drivers/storvsc-null-pointer-dereference-fix: storvsc: NULL pointer dereference fix (bnc#865330).- patches.fixes/floppy-don-t-write-kernel-only-members-to-FDRAWCMD-i.patch: floppy: don't write kernel-only members to FDRAWCMD ioctl output (bnc#875798 CVE-2014-1737 CVE-2014-1738). - patches.fixes/floppy-ignore-kernel-only-members-in-FDRAWCMD-ioctl-.patch: floppy: ignore kernel-only members in FDRAWCMD ioctl input (bnc#875798 CVE-2014-1737 CVE-2014-1738).- patches.fixes/xfs-underflow-bug-in-xfs_attrlist_by_handle.patch: xfs: underflow bug in xfs_attrlist_by_handle() (bnc#852553, CVE-2013-6382).- patches.fixes/mm-try_to_unmap_cluster-should-lock_page-before-mlocking.patch: mm: try_to_unmap_cluster() should lock_page() before mlocking (bnc#876102, CVE-2014-3122).- patches.fixes/writeback-do-not-sync-data-dirtied-after-sync-start.patch: Remove the patch since sync(2) can skip inodes with it.- supported.conf: Driver corgi_bl was renamed to generic_bl in kernel 2.6.29.- patches.fixes/timer-prevent-overflow-in-apply_slack.patch: timer: Prevent overflow in apply_slack (bnc#873061).- patches.drivers/mpt2sas-Do-not-check-DIF-for-unwritten-blocks.patch: mpt2sas: Do not check DIF for unwritten blocks (bnc#746500, bnc#836347).- patches.drivers/mpt2sas-Add-a-module-parameter-that-permits-overridi.patch: mpt2sas: Add a module parameter that permits overriding protection capabilities (bnc#746500).- patches.drivers/mpt2sas-Return-the-correct-sense-key-for-DIF-errors.patch: mpt2sas: Return the correct sense key for DIF errors (bnc#746500).- scripts/log: uses bashisms so should explicitly call bash On non-SUSE systems, other shells may be used as /bin/sh. This has been observed to cause runtime failures.- patches.arch/s390-cio-Delay-scan-for-newly-available-IO-devs: s390/cio: Delay scan for newly available I/O devices (bnc#855347, bnc#814788, bnc#856083). - patches.arch/s390-cio-More-efficient-handling-of-CHPID-avl-events: s390/cio: More efficient handling of CHPID availability events (bnc#855347, bnc#814788, bnc#856083). - patches.arch/s390-cio-Relax-subchannel-scan-loop: s390/cio: Relax subchannel scan loop (bnc#855347, bnc#814788, bnc#856083). - patches.arch/s390-css-stop-stsch-loop-after-cc-3: s390/css: stop stsch loop after cc 3 (bnc#855347, bnc#814788, bnc#856083).- supported.conf: Add drivers/of/of_mdio That was a missing dependency for mdio-gpio on ppc64.- supported.conf: Fix mdio-gpio module name Module mdio-ofgpio was renamed to mdio-gpio in kernel 2.6.29, this should have been reflected in supported.conf.- patches.fixes/inetpeer-prevent-unlinking-from-unused-list-twice.patch: inetpeer: prevent unlinking from unused list twice (bnc#867953).- patches.fixes/inet-handle-rt-6-_bind_peer-failure-correctly.patch: inet: handle rt{,6}_bind_peer() failure correctly (bnc#870801).- patches.fixes/sched-Make-scale_rt_power-deal-with-backward-clocks.patch: sched: Make scale_rt_power() deal with backward clocks (bnc#865310).- patches.fixes/sched-Use-CPUPRI_NR_PRIORITIES-instead-of-MAX_RT_PRIO-in-cpupri-check.patch: sched: Use CPUPRI_NR_PRIORITIES instead of MAX_RT_PRIO in cpupri check (bnc#871861).- patches.fixes/sched-update_rq_clock-must-skip-ONE-update.patch: sched: update_rq_clock() must skip ONE update (bnc#868528, bnc#869033).- patches.fixes/sched-update_rq_clock-must-skip-ONE-update.patch: (bnc#868528, bnc#869033).- supported.conf: Adjust radio-si470x module names In kernel 2.6.32, module radio-si470x was split into two distinct modules, radio-usb-si470x for the USB access and radio-i2c-si470x for I2C access. USB access is what the original module was implementing so we should keep supporting radio-usb-si470x. I2C access was not implemented before and I suspect it's only needed on embedded systems so we don't have to support radio-i2c-si470x. We probably shouldn't build it at all.- patches.fixes/0001-inet-prevent-leakage-of-uninitialized-memory-to-user.patch: inet: prevent leakage of uninitialized memory to user in recv syscalls (bnc#857643 CVE-2013-7263 CVE-2013-7264 CVE-2013-7265). - patches.fixes/0002-inet-fix-addr_len-msg-msg_namelen-assignment-in-recv.patch: inet: fix addr_len/msg->msg_namelen assignment in recv_error and rxpmtu functions (bnc#857643 CVE-2013-7263 CVE-2013-7264 CVE-2013-7265).- Update config files: re-enable twofish crypto support Twofish crypto support was accidentally disabled on IA64 and PPC since SLES11 GA. Additionally, in SLES11 SP2, the software twofish implementation was renamed from twofish to twofish_generic, but supported.conf was not updated accordingly, so S/390 was without a supported twofish crypto implementation as well. Re-enable software twofish crypto support on IA64 and PPC, and adjust supported.conf to reflect the name change (bnc#871325).- patches.suse/btrfs-8241-don-t-loop-on-large-offsets-in-readdir.patch: btrfs: don't loop on large offsets in readdir (bnc#863300).- patches.arch/s390-fix-kernel-crash-due-to-linkage-stack-instructions.patch: s390: fix kernel crash due to linkage stack instructions (bnc#865307,CVE-2014-2039).- patches.fixes/0001-ACPICA-Add-a-lock-to-the-internal-object-reference-c.patch: ACPICA: Add a lock to the internal object reference count mechanism (bnc#857499).- patches.fixes/bug-853455_NFSD-sunrpc-avoid-deadlock-on-TCP-connection-due-to-.patch: NFSD/sunrpc: avoid deadlock on TCP connection due to memory pressure (bnc#853455).- patches.fixes/SELinux-Fix-kernel-BUG-on-empty-security-contexts: SELinux: Fix kernel BUG on empty security contexts (bnc#863335,CVE-2014-1874).- patches.fixes/hamradio-yam-fix-info-leak-in-ioctl: hamradio/yam: fix info leak in ioctl (bnc#858872,CVE-2014-1446).- patches.fixes/wanxl-fix-info-leak-in-ioctl: wanxl: fix info leak in ioctl (bnc#858870,CVE-2014-1445).- patches.fixes/farsync-fix-info-leak-in-ioctl: farsync: fix info leak in ioctl (bnc#858869,CVE-2014-1444).- patches.fixes/netfilter-nf_conntrack_dccp-fix-skb_header_pointer-api-usages: netfilter: nf_conntrack_dccp: fix skb_header_pointer API usages (bnc#868653 CVE-2014-2523).- patches.fixes/x86-PCI-reduce-severity-of-host-bridge-window-confli.patch: x86/PCI: reduce severity of host bridge window conflict warnings (bnc#858534).- patches.fixes/ipv6-fix-race-condition-regarding-dst-expires-and-ds.patch: ipv6: fix race condition regarding dst->expires and dst->from (bnc#843185).- patches.fixes/IPv6-routing-NLM_F_-flag-support-REPLACE-and-EXCL-fl.patch: IPv6 routing, NLM_F_* flag support: REPLACE and EXCL flags support, warn about missing CREATE flag (bnc#865783).- patches.fixes/inet-Pass-inetpeer-root-into-inet_getpeer-interfaces.patch: inet: Pass inetpeer root into inet_getpeer*() interfaces (bnc#864833). - patches.fixes/inet-Hide-route-peer-accesses-behind-helpers.patch: inet: Hide route peer accesses behind helpers (bnc#864833). - patches.fixes/inet-Avoid-potential-NULL-peer-dereference.patch: inet: Avoid potential NULL peer dereference (bnc#864833). - patches.kabi/kabi-protect-symbols-modified-by-bnc-864833-fix.patch: kabi: protect symbols modified by bnc#864833 fix (bnc#864833).- patches.drivers/watchdog-get-rid-of-module_alias_miscdev-statements.patch: Delete (bnc#867139, bnc#867255).- Remove misguided/buggy patch (bnc#862023). It will come back in a diferent form once patchlet queued by peterz lands upstream. - patches.fixes/sched-harden-rq-rt-usage-accounting.patch: Delete.- patches.fixes/inet-fix-possible-memory-corruption-with-UDP_CORK-an.patch: inet: fix possible memory corruption with UDP_CORK and UFO (bnc#847672 CVE-2013-4470).- patches.suse/btrfs-8236-restrict-snapshotting-to-own-subvolumes.patch: btrfs: restrict snapshotting to own subvolumes (bnc#736697). - patches.suse/btrfs-8239-fix-extent-boundary-check-in-bio_readpage_erro.patch: Btrfs: fix extent boundary check in bio_readpage_error. - patches.suse/btrfs-8240-fix-extent_map-block_len-after-merging.patch: Btrfs: fix extent_map block_len after merging.- patches.fixes/net-mlx4_en-Fix-pages-never-dma-unmapped-on-rx.patch: net/mlx4_en: Fix pages never dma unmapped on rx (bnc#858604).- patches.fixes/nfs-sock-timeout.fix: Avoid occasional hang with NFS (bnc#852488).- patches.fixes/fscache-crash-fix: FS-Cache: Handle removal of unadded object to the fscache_object_list rb tree (bnc#855885).- patches.fixes/nfs-state-fix: NFS: don't try to use lock state when we hold a delegation (bnc#831029) - add to series.conf - commit ffb87a0- patches.arch/iommu-vt-d-add-quirk-for-broken-interrupt.patch: Fix incorrect config symbol in #ifdef (bnc#844513). - patches.arch/iommu-vt-d-expand-interrupt-remapping-quirk.patch: Refresh.- scsi_dh_alua: fixup misplaced brace in alua_initialize() (bnc#858831).- Fix ntpd clock synchronization in Xen PV domains (bnc#816446). - Refresh other Xen patches. - commit 6d15157- patches.fixes/md-readd-fix: md: Change handling of save_raid_disk and metadata update during recovery (bnc#849364).- Refresh Xen patches (bnc#807434, bnc#848652, bnc#852624).- patches.drivers/0030-scsi-Added-support-for-adapter-and-firmware-reset.patch: Refresh. - patches.fixes/dm-mpath-abort-all-requests-when-failing-a-path.patch: dm-multipath: abort all requests when failing a path (bnc#798050). - patches.fixes/scsi-Add-eh_deadline-to-limit-SCSI-EH-runtime.patch: scsi: Add 'eh_deadline' to limit SCSI EH runtime (bnc#798050). - patches.fixes/scsi-Allow-error-handling-timeout-to-be-specified.patch: scsi: Allow error handling timeout to be specified (bnc#798050). - patches.fixes/scsi-Fixup-compilation-warning.patch: scsi: Fixup compilation warning (bnc#798050). - patches.fixes/scsi-Retry-failfast-commands-after-EH.patch: scsi: Retry failfast commands after EH (bnc#798050). - patches.fixes/scsi-Warn-on-invalid-command-completion.patch: scsi: Warn on invalid command completion (bnc#798050). - patches.fixes/scsi-advansys-Remove-last_reset-references.patch: advansys: Remove 'last_reset' references (bnc#798050). - patches.fixes/scsi-cleanup-setting-task-state-in-scsi_error_handler.patch: cleanup setting task state in scsi_error_handler() (bnc#798050). - patches.fixes/scsi-dc395-Move-last_reset-into-internal-host-structure.patch: dc395: Move 'last_reset' into internal host structure (bnc#798050). - patches.fixes/scsi-dpt_i2o-Remove-DPTI_STATE_IOCTL.patch: dpt_i2o: Remove DPTI_STATE_IOCTL (bnc#798050). - patches.fixes/scsi-dpt_i2o-return-SCSI_MLQUEUE_HOST_BUSY-when-in-reset.patch: dpt_i2o: return SCSI_MLQUEUE_HOST_BUSY when in reset (bnc#798050). - patches.fixes/scsi-kABI-fixes.patch: scsi: kABI fixes (bnc#798050). - patches.fixes/scsi-remove-check-for-resetting.patch: scsi: remove check for 'resetting' (bnc#798050). - patches.fixes/scsi-tmscsim-Move-last_reset-into-host-structure.patch: tmscsim: Move 'last_reset' into host structure (bnc#798050).- patches.fixes/tcp-bind-fix-autoselection-to-share-ports.patch: tcp: bind() fix autoselection to share ports (bnc#823618). - patches.fixes/tcp-bind-use-stronger-condition-for-bind_conflict.patch: tcp: bind() use stronger condition for bind_conflict (bnc#823618). - patches.fixes/tcp-ipv6-bind-use-stronger-condition-for-bind_confli.patch: tcp: ipv6: bind() use stronger condition for bind_conflict (bnc#823618). - patches.kabi/kabi-protect-bind_conflict-callback-in-struct-inet_c.patch: kabi: protect bind_conflict callback in struct inet_connection_sock_af_ops (bnc#823618).- patches.fixes/kvm-x86-convert-vapic-synchronization-to-cached-functions-cve-2013-6368.patch: KVM: x86: Convert vapic synchronization to _cached functions (CVE-2013-6368) (bnc#853052 CVE-2013-6368).- patches.fixes/block-factor-out-vector-mergeable-decision-to-a-help.patch: block: factor out vector mergeable decision to a helper function (bnc#769644). - patches.fixes/block-modify-__bio_add_page-check-to-accept-pages-th.patch: block: modify __bio_add_page check to accept pages that don't start a new segment (bnc#769644).- patches.fixes/macvlan-disable-LRO-on-lower-device-instead-of-macvl.patch: macvlan: disable LRO on lower device instead of macvlan (bnc#846984). - patches.fixes/macvlan-introduce-IFF_MACVLAN-flag-and-helper-functi.patch: macvlan: introduce IFF_MACVLAN flag and helper function (bnc#846984). - patches.fixes/macvlan-introduce-macvlan_dev_real_dev-helper-functi.patch: macvlan: introduce macvlan_dev_real_dev() helper function (bnc#846984).- patches.fixes/x86-dumpstack-Fix-printk_address-for-direct-addresse.patch: x86/dumpstack: Fix printk_address for direct addresses (bnc#845621). - patches.suse/stack-unwind: Refresh. - patches.xen/xen3-x86-dumpstack-Fix-printk_address-for-direct-addresse.patch: x86/dumpstack: Fix printk_address for direct addresses (bnc#845621).- patches.fixes/futex-fix-handling-of-read-only-mapped-hugepages.patch: futex: fix handling of read-only-mapped hugepages (VM Functionality).- patches.fixes/autofs4-autofs4_wait-vs-autofs4_catatonic_mode-race.patch: autofs4: autofs4_wait() vs. autofs4_catatonic_mode() race (bnc#851314). - patches.fixes/autofs4-catatonic_mode-vs-notify_daemon-race.patch: autofs4: catatonic_mode vs. notify_daemon race (bnc#851314). - patches.fixes/autofs4-close-the-races-around-autofs4_notify_daemon.patch: autofs4: close the races around autofs4_notify_daemon() (bnc#851314). - patches.fixes/autofs4-deal-with-autofs4_write-autofs4_write-races.patch: autofs4: deal with autofs4_write/autofs4_write races (bnc#851314). - patches.fixes/autofs4-dont-clear-DCACHE_NEED_AUTOMOUNT-on-rootless-mount.patch: autofs4 - dont clear DCACHE_NEED_AUTOMOUNT on rootless mount (bnc#851314). - patches.fixes/autofs4-fix-deal-with-autofs4_write-races.patch: autofs4 - fix deal with autofs4_write races (bnc#851314). - patches.fixes/autofs4-use-simple_empty-for-empty-directory-check.patch: autofs4 - use simple_empty() for empty directory check (bnc#851314).- patches.fixes/dlm-set-zero-linger-time-on-sctp-socket.patch: dlm: set zero linger time on sctp socket (bnc#787843).- patches.fixes/wireless-radiotap-fix-parsing-buffer-overrun.patch: wireless: radiotap: fix parsing buffer overrun (bnc#854634 CVE-2013-7027).- patches.fixes/kvm-x86-fix-potential-divide-by-0-in-lapic-cve-2013-6367.patch: KVM: x86: Fix potential divide by 0 in lapic (CVE-2013-6367) (bnc#853051 CVE-2013-6367).- patches.arch/s390-69-01-crypto-Fix_aes_xts_parameter_corruption.patch: crypto: Fix aes-xts parameter corruption (bnc#854546, LTC#100718).- patches.fixes/kvm-improve-create-vcpu-parameter-cve-2013-4587.patch: KVM: Improve create VCPU parameter (CVE-2013-4587) (bnc#853050 CVE-2013-4587).- patches.fixes/libertas-potential-oops-in-debugfs.patch: libertas: potential oops in debugfs (bnc#852559 CVE-2013-6378).- patches.fixes/aacraid-prevent-invalid-pointer-dereference.patch: aacraid: prevent invalid pointer dereference (bnc#852373 CVE-2013-6380).- patches.fixes/wlags49_h2-buffer-overflow-setting-station-name.patch: staging: wlags49_h2: buffer overflow setting station name (bnc#849029 CVE-2013-4514).- patches.fixes/staging-bcm-info-leak-in-ioctl.patch: Staging: bcm: info leak in ioctl (bnc#849034 CVE-2013-4515).- patches.fixes/net-rework-recvmsg-handler-msg_name-and-msg_namelen-logic.patch: Refresh.- patches.fixes/net-rework-recvmsg-handler-msg_name-and-msg_namelen-logic.patch: net: rework recvmsg handler msg_name and msg_namelen logic (bnc#854722).- patches.fixes/crypto-gf128mul-fix-call-to-memset.patch: crypto: gf128mul - fix call to memset() (obvious fix).- patches.fixes/crypto-ansi_cprng-fix-off-by-one-error-in-non-block-size-request.patch: crypto: ansi_cprng - Fix off by one error in non-block size request (bnc#840226).- patches.fixes/aacraid-missing-capable-check-in-compat-ioctl.patch: aacraid: missing capable() check in compat ioctl (bnc#852558).- patches.fixes/st-take-additional-queue-ref-in-st_probe.patch: Update upstream reference.- patches.fixes/SUNRPC-Fix-a-data-corruption-issue-when-retransmitti.patch: SUNRPC: Fix a data corruption issue when retransmitting RPC calls (bnc#855037)- patches.fixes/xfs-Account-log-unmount-transaction-correctly.patch: xfs: Account log unmount transaction correctly (bnc#849950).- patches.fixes/blkdev_max_block-make-private-to-fs-buffer.c.patch: blkdev_max_block: make private to fs/buffer.c (bnc#820338). - patches.fixes/vfs-avoid-attempt-to-access-beyond-end-of-device-war.patch: vfs: avoid "attempt to access beyond end of device" warnings (bnc#820338). - patches.fixes/vfs-fix-O_DIRECT-read-past-end-of-block-device.patch: vfs: fix O_DIRECT read past end of block device (bnc#820338). - patches.suse/block-nonblock-causes-failfast: Refresh.- patches.fixes/scsi_dh-invoke-callback-if-activate-is-not-present.patch: scsi_dh: invoke callback if ->activate is not present (bnc#708296). - patches.fixes/scsi_dh-return-individual-errors-in-scsi_dh_activate.patch: scsi_dh: return individual errors in scsi_dh_activate() (bnc#708296). - patches.fixes/scsi_dh_alua-Decode-EMC-Clariion-extended-inquiry.patch: scsi_dh_alua: Decode EMC Clariion extended inquiry (bnc#708296). - patches.fixes/scsi_dh_alua-Decode-HP-EVA-array-identifier.patch: scsi_dh_alua: Decode HP EVA array identifier (bnc#708296). - patches.fixes/scsi_dh_alua-Evaluate-state-for-all-port-groups.patch: scsi_dh_alua: Evaluate state for all port groups (bnc#708296). - patches.fixes/scsi_dh_alua-Fix-missing-close-brace-in-alua_check_s.patch: scsi_dh_alua: Fix missing close brace in alua_check_sense (bnc#843642). - patches.fixes/scsi_dh_alua-Make-stpg-synchronous.patch: scsi_dh_alua: Make stpg synchronous (bnc#708296). - patches.fixes/scsi_dh_alua-Pass-buffer-as-function-argument.patch: scsi_dh_alua: Pass buffer as function argument (bnc#708296). - patches.fixes/scsi_dh_alua-Re-evaluate-port-group-states-after-STP.patch: scsi_dh_alua: Re-evaluate port group states after STPG (bnc#708296). - patches.fixes/scsi_dh_alua-Recheck-state-on-transitioning.patch: scsi_dh_alua: Recheck state on transitioning (bnc#708296). - patches.fixes/scsi_dh_alua-Rework-rtpg-workqueue.patch: scsi_dh_alua: Rework rtpg workqueue (bnc#708296). - patches.fixes/scsi_dh_alua-Use-separate-alua_port_group-structure.patch: scsi_dh_alua: Use separate alua_port_group structure (bnc#708296). - patches.fixes/scsi_dh_alua-allow-get_alua_data-to-return-NULL.patch: scsi_dh_alua: Allow get_alua_data() to return NULL (bnc#839407). - patches.fixes/scsi_dh_alua-asynchronous-RTPG.patch: scsi_dh_alua: asynchronous RTPG (bnc#708296). - patches.fixes/scsi_dh_alua-correctly-terminate-target-port-strings.patch: scsi_dh_alua: correctly terminate target port strings (bnc#708296). - patches.fixes/scsi_dh_alua-defer-I-O-while-workqueue-item-is-pendi.patch: scsi_dh_alua: defer I/O while workqueue item is pending (bnc#708296). - patches.fixes/scsi_dh_alua-do-not-attach-raid-devices.patch: scsi_dh_alua: Do not attach to RAID or enclosure devices (bnc#819979). - patches.fixes/scsi_dh_alua-do-not-attach-to-WLUNs.patch: scsi_dh_alua: Do not attach to well-known LUNs (bnc#821980). - patches.fixes/scsi_dh_alua-fine-grained-locking-in-alua_rtpg_work.patch: scsi_dh_alua: fine-grained locking in alua_rtpg_work() (bnc#708296). - patches.fixes/scsi_dh_alua-invalid-state-information-for-optimized.patch: scsi_dh_alua: invalid state information for 'optimized' paths (bnc#843445). - patches.fixes/scsi_dh_alua-move-RTPG-to-workqueue.patch: scsi_dh_alua: move RTPG to workqueue (bnc#708296). - patches.fixes/scsi_dh_alua-move-expiry-into-PG-structure.patch: scsi_dh_alua: move 'expiry' into PG structure (bnc#708296). - patches.fixes/scsi_dh_alua-move-some-sense-codes.patch: scsi_dh_alua: move some sense code handling into generic code (bnc#813245). - patches.fixes/scsi_dh_alua-multipath-failover-fails.patch: scsi_dh_alua: multipath failover fails with error 15 (bnc#825696). - patches.fixes/scsi_dh_alua-parse-target-device-id.patch: scsi_dh_alua: parse target device id (bnc#708296). - patches.fixes/scsi_dh_alua-protect-accesses-to-struct-alua_port_gr.patch: scsi_dh_alua: protect accesses to struct alua_port_group (bnc#708296). - patches.fixes/scsi_dh_alua-put-sense-buffer-on-stack.patch: scsi_dh_alua: put sense buffer on stack (bnc#708296). - patches.fixes/scsi_dh_alua-reattach-device-handler-failure.patch: scsi_dh_alua: reattaching device handler fails with 'Error 15' (bnc#843429). - patches.fixes/scsi_dh_alua-remove-locking-when-checking-state.patch: scsi_dh_alua: remove locking when checking state (bnc#708296). - patches.fixes/scsi_dh_alua-remove-stale-variable.patch: scsi_dh_alua: remove stale variable (bnc#708296). - patches.fixes/scsi_dh_alua-retry-RTPG-on-UNIT-ATTENTION.patch: scsi_dh_alua: retry RTPG on UNIT ATTENTION (bnc#708296). - patches.fixes/scsi_dh_alua-retry-command-on-mode-parameter-changed.patch: scsi_dh_alua: retry command on 'mode parameter changed' sense code (bnc#843645). - patches.fixes/scsi_dh_alua-simplify-alua_check_sense.patch: scsi_dh_alua: simplify alua_check_sense() (bnc#843642). - patches.fixes/scsi_dh_alua-simplify-state-update.patch: scsi_dh_alua: simplify state update (bnc#708296). - patches.fixes/scsi_dh_alua-use-delayed_work.patch: scsi_dh_alua: use delayed_work (bnc#708296). - patches.fixes/scsi_dh_alua-use-flag-for-RTPG-extended-header.patch: scsi_dh_alua: use flag for RTPG extended header (bnc#708296). - patches.fixes/scsi_dh_alua-use-local-buffer-for-VPD-inquiry.patch: scsi_dh_alua: use local buffer for VPD inquiry (bnc#708296). - patches.fixes/scsi_dh_alua-use-spin_lock_irqsave-for-port-group.patch: scsi_dh_alua: use spin_lock_irqsave for port group (bnc#708296). - patches.fixes/sd-avoid-deadlocks-when-running-under-multipath.patch: sd: avoid deadlocks when running under multipath (bnc#818545).- Refresh Xen patches. - patches.xen/xen-netback-tx-queue-len: netback: bump tx queue length (bnc#849404).- patches.fixes/xfs-improve-ioend-error-handling: Refresh.- patches.fixes/nfs-lock-recovery.fix: Change NFSv4 to not recover locks after they are lost (bnc#828236).- patches.fixes/sg-fix-blk_get_queue-usage: sg: fix blk_get_queue usage (bnc#834808).- patches.fixes/netxen-fix-off-by-one-bug-in-netxen_release_tx_buffe.patch: netxen: fix off by one bug in netxen_release_tx_buffer() (bnc#845729).- patches.drivers/lpfc-Do-not-free-original-IOCB-whenever-ABTS-fails.patch: lpfc: Do not free original IOCB whenever ABTS fails (bnc#806988). - patches.drivers/lpfc-Fix-kernel-warning-on-spinlock-usage.patch: lpfc: Fix kernel warning on spinlock usage (bnc#806988). - patches.drivers/lpfc-Fixed-system-panic-due-to-midlayer-abort.patch: lpfc: Fixed system panic due to midlayer abort (bnc#806988).- patches.fixes/sd-fix-crash-when-UA-received.patch: Delete.- patches.drivers/qla2xxx-add-module-paremeter-to-override.patch: qla2xxx: Add module parameter to override the default request queue size (bnc#826756). - patches.fixes/sd-fix-crash-when-UA-received.patch: sd: fix crash when UA received on DIF enabled device (bnc#841445).- patches.drivers/watchdog-get-rid-of-module_alias_miscdev-statements.patch: watchdog: Get rid of MODULE_ALIAS_MISCDEV statements (bnc#827767).- patches.fixes/pci-fix-truncation-of-resource-size-to-32-bits.patch: PCI: fix truncation of resource size to 32 bits (bnc#843419).- patches.arch/s390-68-01-qeth-snmp-ioctl.patch: qeth: request length checking in snmp ioctl (bnc#849848, LTC#99511).- patches.fixes/random-fix-accounting-race-condition-with-lockless-i.patch: random: fix accounting race condition with lockless irq entropy_count update (bnc#789359). - patches.suse/revert-some-random-changes: Delete. Remove the temporary revert (workaround) and replace with proper fix.- Pragmatic workaround for realtime class abuse induced latency issues. - patches.fixes/sched-provide-nortsched-boot-option.patch: Provide boot option to disable sched_rt_runtime (bnc#610783). - patches.fixes/sched-provide-rtkthreads-rtworkqueues-boot-options.patch: Provide realtime priority kthread and workqueue boot options (bnc#836718). - patches.arch/bug-610783_uv_nortsched_boot_option.patch: Delete.- patches.fixes/sched-provide-nortsched-boot-option.patch: Provide boot option to disable sched_rt_runtime (bnc#610783). - patches.fixes/sched-provide-rtkthreads-rtworkqueues-boot-options.patch: - patches.arch/bug-610783_uv_nortsched_boot_option.patch: Delete.- patches.fixes/kvm-fix-iommu-map-unmap-to-handle-memory-slot-moves.patch: KVM: Fix iommu map/unmap to handle memory slot moves (CVE-2013-4592 bnc851101). - patches.fixes/kvm-perform-an-invalid-memslot-step-for-gpa-base-change.patch: KVM: perform an invalid memslot step for gpa base change (CVE-2013-4592 bnc851101).- bnc#848336 L3: Fix several races in CFS_BANDWIDTH - patches.fixes/sched-Fix-cfs_bandwidth-misuse-of-hrtimer_expires_remaining.patch: sched: Fix cfs_bandwidth misuse of hrtimer_expires_remaining (bnc#848336). - patches.fixes/sched-Fix-hrtimer_cancel-vs-rq-lock-deadlock.patch: sched: Fix hrtimer_cancel()/rq->lock deadlock (bnc#848336). - patches.fixes/sched-Fix-race-on-toggling-cfs_bandwidth_used.patch: sched: Fix race on toggling cfs_bandwidth_used (bnc#848336). - patches.fixes/sched-Guarantee-new-group-entities-always-have-weight.patch: sched: Guarantee new group-entities always have weight (bnc#848336). - patches.fixes/sched-Use-jump-labels-to-reduce-overhead-when-bandwidth-control-is-inactive.patch: sched: Use jump labels to reduce overhead when bandwidth control is inactive (bnc#848336). - patches.suse/perfmon2.patch: Refresh.- patches.fixes/sched-Fix-buglet-in-return_cfs_rq_runtime.patch: sched: Fix buglet in return_cfs_rq_runtime(). - patches.fixes/sched-Fix-cfs_bandwidth-misuse-of-hrtimer_expires_remaining.patch: sched: Fix cfs_bandwidth misuse of hrtimer_expires_remaining (bnc#848336). - patches.fixes/sched-Fix-hrtimer_cancel-vs-rq-lock-deadlock.patch: sched: Fix hrtimer_cancel()/rq->lock deadlock (bnc#848336). - patches.fixes/sched-Fix-race-on-toggling-cfs_bandwidth_used.patch: sched: Fix race on toggling cfs_bandwidth_used (bnc#848336). - patches.fixes/sched-Guarantee-new-group-entities-always-have-weight.patch: sched: Guarantee new group-entities always have weight (bnc#848336). - patches.fixes/sched-Use-jump-labels-to-reduce-overhead-when-bandwidth-control-is-inactive.patch: sched: Use jump labels to reduce overhead when bandwidth control is inactive (bnc#848336). - patches.suse/perfmon2.patch: Refresh.- patches.fixes/cifs-fix-mkdir-rmdir-bug-for-the-non-posix-case.patch patches.fixes/cifs-use-sensible-file-nlink-values-if-unprovided.patch: cifs: Improve performance of browsing directories with several files (bnc#810323). - patches.fixes/cifs-provide-sane-values-for-nlink-from-non-unix-servers.patch: cifs: Ensure cifs directories don't show up as files (bnc#826602).- patches.drivers/pci-Chelsio-quirk-Enable-Bus-Master-during-Function-Level-Reset.patch: Modify reset method for Chelsio T4 to avoid hanging when, for example, VM using it is terminated (bnc#831168).- patches.arch/iommu-vt-d-remove-stack-trace-from-broken-irq-remapping-warning.patch: Update upstream reference.- patches.fixes/xfs-improve-ioend-error-handling: xfs: improve ioend error handling (bnc#846036). - patches.fixes/xfs-reduce-ioend-latency: xfs: reduce ioend latency (bnc#846036). - patches.fixes/xfs-use-per-filesystem-i-o-completion-workqueues: xfs: use per-filesystem I/O completion workqueues (bnc#846036). - patches.kabi/xfs-use-per-filesystem-i-o-completion-workqueues-kabi: xfs: Hide additional entries in struct xfs_mount (bnc#846036 bnc#848544).- supported.conf: marked net/netfilter/xt_set as supported (bnc#851066) xt_set should have been enabled together with the ip_set modules in fate#313309- patches.suse/suse-hv-hv_kvp-sles11sp2-negotiate-serveral-versions.patch: handle more than just WS2008 in KVP negotiation (bnc#850640).- patches.fixes/mlx4-allocate-just-enough-pages-instead-of-always-4-.patch: mlx4: allocate just enough pages instead of always 4 pages (bnc#835186 bnc#835074). - patches.fixes/mlx4-allow-order-0-memory-allocations-in-RX-path.patch: mlx4: allow order-0 memory allocations in RX path (bnc#835186 bnc#835074). - patches.fixes/net-mlx4-use-one-page-fragment-per-incoming-frame.patch: net/mlx4: use one page fragment per incoming frame (bnc#835186 bnc#835074).- patches.fixes/NFS-Adapt-readdirplus-to-application-usage-patterns.patch: NFS: Adapt readdirplus to application usage patterns (bnc#834708).- patches.fixes/0001-PCI-pciehp-Retrieve-link-speed-after-link-is-trained.patch: PCI: pciehp: Retrieve link speed after link is trained (bnc#820102). - patches.fixes/0002-PCI-Separate-pci_bus_read_dev_vendor_id-from-pci_sca.patch: PCI: Separate pci_bus_read_dev_vendor_id from pci_scan_device (bnc#820102). - patches.fixes/0003-PCI-pciehp-replace-unconditional-sleep-with-config-s.patch: PCI: pciehp: replace unconditional sleep with config space access check (bnc#820102). - patches.fixes/0004-PCI-pciehp-make-check_link_active-more-helpful.patch: PCI: pciehp: make check_link_active more helpful (bnc#820102). - patches.fixes/0005-PCI-pciehp-Add-pcie_wait_link_not_active.patch: PCI: pciehp: Add pcie_wait_link_not_active() (bnc#820102). - patches.fixes/0006-PCI-pciehp-Add-Disable-enable-link-functions.patch: PCI: pciehp: Add Disable/enable link functions (bnc#820102). - patches.fixes/0007-PCI-pciehp-Disable-enable-link-during-slot-power-off.patch: PCI: pciehp: Disable/enable link during slot power off/on (bnc#820102).- patches.drivers/drm-don-t-add-inferred-modes-for-monitors-that-don-t-support-them.patch: drm: don't add inferred modes for monitors that don't support them (bnc #849809). This patch is a backport of 19874f6d774ef39dbfa5e12ecd19df7fd62a1af5 in the SP3 branch for bnc#798466.- patches.fixes/xfrm-invalidate-dst-on-policy-insertion-deletion.patch: xfrm: invalidate dst on policy insertion/deletion (bnc#842239). - patches.fixes/xfrm-prevent-ipcomp-scratch-buffer-race-condition.patch: xfrm: prevent ipcomp scratch buffer race condition (bnc#842239).- patches.fixes/dcache-soft-lockup.fix: Avoid softlockup in shrink_dcache_for_umount_subtree (bnc#834473).- patches.arch/s390-cio_robust-1-add_message_for_timeouts_on_internal_IO.patch: cio: add message for timeouts on internal I/O (bnc#837739,LTC#97047). - patches.arch/s390-cio_robust-2-dont_abort_verification_after_missing_irq.patch: s390/cio: dont abort verification after missing irq (bnc#837739,LTC#97047). - patches.arch/s390-cio_robust-3-skip_broken_paths.patch: s390/cio: skip broken paths (bnc#837739,LTC#97047). - patches.arch/s390-cio_robust-4-export_vpm_via_sysfs.patch: s390/cio: export vpm via sysfs (bnc#837739,LTC#97047). - patches.arch/s390-cio_robust-5-handle_unknown_pgroup_state.patch: s390/cio: handle unknown pgroup state (bnc#837739,LTC#97047).- patches.fixes/fix-printk-oops-from-nmi.patch: printk: forcibly flush nmi ringbuffer if oops is in progress (bnc#849675).- patches.fixes/ipc-ipc_rcu_putref-race.patch: fix ipc_rcu_{get,put}ref during destruction (bnc#848321, CVE-2013-4483).- patches.fixes/Fix-a-few-incorrectly-checked-io_-remap_pfn_range-ca.patch: Fix a few incorrectly checked [io_]remap_pfn_range() calls (bnc#849021, CVE-2013-4511).- patches.drivers/bna-do-not-register-ndo_set_rx_mode-callback.patch: bna: do not register ndo_set_rx_mode callback (bnc#847261). - patches.drivers/0005-net-remove-use-of-ndo_set_multicast_list-in-drivers.patch: Delete (bnc#847261). - patches.drivers/0022-net-remove-use-of-ndo_set_multicast_list-in-drivers.patch: Delete (bnc#847261). - patches.suse/msft-hv-0064-net-remove-use-of-ndo_set_multicast_list-in-drivers.patch: Delete (bnc#847261). - patches.suse/msft-hv-0287-staging-hv-move-hv_netvsc-out-of-staging-area.patch: Refresh. - patches.suse/msft-hv-0305-net-hyperv-Add-support-for-jumbo-frame-up-to-64KB.patch: Refresh. - patches.suse/msft-hv-0361-hyperv-Add-support-for-setting-MAC-from-within-guest.patch: Refresh.- patches.drivers/qla2xxx-Module-parameter-ql2xasynclogin.patch: qla2xxx: Module parameter 'ql2xasynclogin' (bnc#825896).- patches.drivers/qla2xxx-Module-parameter-ql2xasynclogin.patch: qla2xxx: Module parameter 'ql2xasynclogin' (bnc#825896).- patches.fixes/nfs-xs_tcp_setup_socket.fix: SUNRPC: close a rare race in xs_tcp_setup_socket (bnc#794824).- patches.kernel.org/revert-Btrfs-change-how-we-queue-blocks-for-backref-checkin.patch: Delete again, incorrectly identified as broken.- patches.fixes/watchdog-update-watchdog_thresh-atomically.patch: Add upstream commit info- patches.fixes/printk-make-nmi-ringbuffer-length-independent.patch: Warning fix.- patches.arch/iommu-vt-d-add-quirk-for-broken-interrupt.patch: iommu/vt-d: add quirk for broken interrupt remapping on 55XX chipsets (bnc#844513). - patches.arch/iommu-vt-d-expand-interrupt-remapping-quirk.patch: x86/iommu/vt-d: Expand interrupt remapping quirk to cover x58 chipset (bnc#844513). - patches.arch/iommu-vt-d-only-warn-on-broken-irq-remapping.patch: iommu/vt-d: Only warn about broken interrupt remapping (bnc#844513). - patches.arch/iommu-vt-d-remove-stack-trace-from-broken-irq-remapping-warning.patch: iommu: Remove stack trace from broken irq remapping warning (bnc#844513).- Refresh Xen patches (bnc#829682, bnc#842063).- patches.fixes/cifs-fill-TRANS2_QUERY_FILE_INFO-ByteCount-fields.patch: Fix TRANS2_QUERY_FILE_INFO ByteCount fields (bnc#804950).- Linux 3.0.101 (bnc#789115). - patches.fixes/ipv6-tcp-fix-panic-in-SYN-processing.patch: Delete.- patches.drivers/mlx4_en-fix-blueflame-race: net/mlx4_en: Fix BlueFlame race (bnc#835684).- patches.kabi/0001-Revert-tcp-RFC-5961-5.2-Blind-Data-Injection-Attack-.patch: Refresh. - patches.kabi/0003-Revert-tcp-refine-SYN-handling-in-tcp_validate_incom.patch: Refresh. - patches.kabi/0004-Revert-tcp-implement-RFC-5961-4.2.patch: Refresh. - patches.kabi/0002-Revert-tcp-tcp_replace_ts_recent-should-not-be-calle.patch: Delete. - patches.kabi/revert-tcp-call-tcp_replace_ts_recent-from-tcp_ack.patch: Delete. (bnc#845549)- patches.fixes/ipv6-don-t-call-fib6_run_gc-until-routing-is-ready.patch: ipv6: don't call fib6_run_gc() until routing is ready (bnc#836218).- patches.fixes/mm-do-not-walk-all-of-system-ram-during-show_mem.patch: mm: Do not walk all of system memory during show_mem (Reduce tasklist_lock hold times (bnc#821259)).- patches.drivers/0001-quirks-add-touchscreen-that-is-dazzeled-by-remote-wa.patch: quirks: add touchscreen that is dazzeled by remote wakeup (bnc#835930).- patches.fixes/blktrace-Send-BLK_TN_PROCESS-events-to-all-running-t.patch: blktrace: Send BLK_TN_PROCESS events to all running traces (bnc#838623).- patches.arch/s390-67-01-sclp-buffer.patch: kernel: sclp console hangs (bnc#841498, LTC#95711).- series.conf: disable XHCI ring expansion patches because on machines with large memory they cause a starvation problem - refresh so scripts don't complain (bnc#833635)- patches.fixes/nfs_flush_incompatible.fix: NFS: make nfs_flush_incompatible more generous (bnc#816099).- patches.fixes/xfs-growfs-use-uncached-buffers-for-new-headers: xfs: growfs: use uncached buffers for new headers (bnc#842604).- patches.fixes/mm-memcg-introduce-own-oom-handler-to-iterate-only-o.patch: - patches.fixes/mm-memcg-move-all-oom-handling-to-memcontrol.c.patch: - patches.fixes/mm-oom-avoid-looping-when-chosen-thread-detaches-its.patch: - patches.fixes/mm-oom-fold-oom_kill_task-into-oom_kill_process.patch: - patches.fixes/mm-oom-introduce-helper-function-to-process-threads-.patch: - patches.fixes/mm-oom-reduce-dependency-on-tasklist_lock.patch: Update references (Reduce tasklist_lock hold times (bnc#821259)).- Linux 3.0.100 (CVE-2013-1929 CVE-2013-2015 bnc#813733 bnc#817377 bnc#841402). - patches.drivers/cciss-update-to-4.6.28.patch: Refresh. - patches.drivers/tg3-return-size-from-tg3_vpd_readblock: Refresh. - patches.fixes/bonding-Convert-hw-addr-handling-to-sync-unsync-supp.patch: Refresh. - patches.suse/msft-hv-0246-Staging-hv-netvsc-Fix-a-dereferencing-issue.patch: Refresh. - patches.suse/msft-hv-0247-Staging-hv-move-hyperv-code-out-of-staging-directo.patch: Refresh. - patches.fixes/ext4-avoid-hang-when-mounting-non-journal-filesystem.patch: Delete. - patches.fixes/intel-iommu-fix-leaks-in-pagetable-freeing.patch: Delete. - patches.fixes/tg3-fix-length-overflow-in-vpd-firmware-parsing: Delete. - patches.suse/msft-hv-0360-Tools-hv-verify-origin-of-netlink-connector-message.patch: Delete.- Linux 3.0.99 (bnc#827246). - patches.arch/x86-reboot-blacklist-dell-optiplex-990.patch: Refresh. - patches.drivers/0001-xHCI-store-ring-s-type.patch: Refresh. - patches.suse/tmpfs-clone-shmem_file_splice_read.patch: Refresh. - patches.fixes/splice-fix-racy-pipe-buffers-uses.patch: Delete.- series.conf: disable XHCI ring expansion patches because on machines with large memory they cause a starvation problem (bnc#833635)- patches.fixes/nfs-state-fix: NFS: don't try to use lock state when we hold a delegation (bnc#831029).- patches.fixes/nfs_lookup_revalidate-fix-a-leak.patch: nfs_lookup_revalidate(): fix a leak (bnc#828894).- patches.fixes/do_add_mount-umount-l-races.patch: do_add_mount()/umount -l races (bnc#836801).- patches.fixes/mm-make-snapshotting-pages-for-stable-writes-a-per-bio-operation.patch: Refresh: add upstream reference- patches.fixes/bnx2x-Change-to-D3hot-only-on-removal.patch: bnx2x: Change to D3hot only on removal (bnc#838448).- patches.kernel.org/patch-3.0.97-98: Update references (add bnc#842231).- patches.fixes/ext4-avoid-hang-when-mounting-non-journal-filesystem.patch: Update references (bnc#817377 CVE-2013-2015).- Linux 3.0.98 (bnc#841094). - patches.fixes/perf-Optimize-event-scheduling-locking: Refresh. - patches.kabi/kabi-protect-struct-perf_cpu_context.patch: kABI: protect struct perf_cpu_context. - patches.fixes/SCSI-iscsi-don-t-hang-in-endless-loop-if-no-targets-.patch: Delete.- patches.fixes/intel-iommu-fix-leaks-in-pagetable-freeing.patch: intel-iommu: Fix leaks in pagetable freeing (bnc#841402).- patches.suse/msft-hv-0426-Drivers-hv-Support-handling-multiple-VMBUS-versions.patch: Drivers: hv: Support handling multiple VMBUS versions (fate#314665). - patches.suse/msft-hv-0429-Drivers-hv-Save-and-export-negotiated-vmbus-version.patch: Drivers: hv: Save and export negotiated vmbus version (fate#314665). - patches.suse/msft-hv-0432-Drivers-hv-Move-vmbus-version-definitions-to-hyperv..patch: Drivers: hv: Move vmbus version definitions to hyperv.h (fate#314665). - patches.suse/suse-hv-HV_DRV_VERSION.patch: Refresh.- patches.suse/msft-hv-0530-Drivers-hv-util-Fix-a-bug-in-version-negotiation-cod.patch: Drivers: hv: util: Fix a bug in version negotiation code for util services (bnc#828714). - patches.suse/msft-hv-0541-Drivers-hv-util-Correctly-support-ws2008R2-and-earli.patch: Drivers: hv: util: Correctly support ws2008R2 and earlier (bnc#838346). - patches.suse/suse-hv-Drivers-hv-util-Fix-a-bug-in-version-negotiation-cod.patch: Delete.- patches.fixes/ipv6-prevent-fib6_run_gc-contention.patch: ipv6: prevent fib6_run_gc() contention (bnc#797526). - patches.fixes/ipv6-update-ip6_rt_last_gc-every-time-GC-is-run.patch: ipv6: update ip6_rt_last_gc every time GC is run (bnc#797526).- patches.fixes/softirq-reduce-latencies.patch: softirq: reduce latencies (bnc#797526). - patches.fixes/Fix-lockup-related-to-stop_machine-being-stuck-in-__.patch: Fix lockup related to stop_machine being stuck in __do_softirq (bnc#797526).- patches.fixes/netfilter-nf_conntrack-use-RCU-safe-kfree-for-conntr.patch: netfilter: nf_conntrack: use RCU safe kfree for conntrack extensions (bnc#827416 bko#60853 bugzilla.netfilter.org:714).- patches.fixes/xfs-avoid-double-free-in-xfs_attr_node_addname: xfs: avoid double-free in xfs_attr_node_addname. - patches.fixes/xfs-check-the-return-value-of-xfs_buf_get: xfs: Check the return value of xfs_buf_get() (bnc#842604).- rpm/old-flavors, rpm/mkspec: Add version information to obsolete flavors (bnc#821465). - rpm/kernel-binary.spec.in: Move the xenpae obsolete to the old-flavors file.- rpm/old-flavors: Convert the old-packages.conf file to a flat list. - rpm/mkspec: Adjust. - rpm/old-packages.conf: Delete.- rpm/old-packages.conf: Drop bogus obsoletes for "smp" (bnc#821465).- rpm/kernel-binary.spec.in: Make sure that all KMP obsoletes are versioned (bnc#821465).- rpm/kernel-binary.spec.in: Remove unversioned provides/obsoletes for packages that were only seen in openSUSE releases up to 11.0. (bnc#821465).- Linux 3.0.97.- config/*/debug: Enable FSCACHE_DEBUG and CACHEFILES_DEBUG (bnc#837372).- patches.fixes/splice-fix-racy-pipe-buffers-uses.patch: splice: fix racy pipe->buffers uses (bnc#827246).- patches.fixes/SCSI-iscsi-don-t-hang-in-endless-loop-if-no-targets-.patch: iscsi: don't hang in endless loop if no targets present (bnc#841094).- patches.fixes/blktrace-fix-race-with-open-trace-files-and-directory-removal: blktrace: fix race with open trace files and directory removal (bnc#832292).- patches.fixes/net-remove-skb_orphan_try.patch: net: remove skb_orphan_try() (bnc#834600).- patches.fixes/cifs-cleanup-cifs_filldir.patch patches.fixes/cifs-don-t-instantiate-new-dentries-in-readdir-for-i.patch patches.fixes/cifs-get-rid-of-blind-d_drop-in-readdir.patch patches.fixes/cifs-rename-cifs_readdir_lookup-to-cifs_prime_dcache.patch patches.fixes/cifs-revalidate-directories-instiantiated-via-FIND_-in-or.patch cifs: Fix EREMOTE errors encountered on DFS links (bnc#831143).- patches.fixes/reiserfs-fix-race-with-flush_used_journal_lists-and-flush_journal_list: reiserfs: fix race with flush_used_journal_lists and flush_journal_list (bnc#837803). - patches.fixes/reiserfs-remove-useless-flush_old_journal_lists: reiserfs: remove useless flush_old_journal_lists.- patches.fixes/mm-bounce-allow-use-of-bounce-pool-via-config-option.patch Bounce memory pool initialisation (bnc#836347).- patches.fixes/block-initialize-the-bounce-pool-if-high-memory-may-be-added-later.patch Bounce memory pool initialisation (bnc#836347).- patches.fixes/writeback-do-not-sync-data-dirtied-after-sync-start.patch: writeback: Do not sync data dirtied after sync start (bnc#833820).- patches.suse/0001-elousb-some-systems-cannot-stomach-work-around.patch: elousb: some systems cannot stomach work around (bnc#840830).- patches.fixes/bio-integrity-track-owner.patch: bio-integrity: track owner of integrity payload (bnc#831380).- patches.fixes/bonding-check-bond-vlgrp-in-bond_vlan_rx_kill_vid.patch: bonding: check bond->vlgrp in bond_vlan_rx_kill_vid() (bnc#834905).- Linux 3.0.96.- Linux 3.0.95. - patches.drivers/target-0006-target-Core-cleanups-from-AGrover-round-1.patch: Refresh. - patches.drivers/target-0030-target-Make-all-control-CDBs-scatter-gather.patch: Refresh. - patches.fixes/x86_acer_acpi_ec_call_reg_blacklist.patch: Refresh.- Linux 3.0.94.- patches.fixes/sctp-deal-with-multiple-cookie_echo-chunks.patch: sctp: deal with multiple COOKIE_ECHO chunks (bnc#826102). - patches.fixes/sctp-use-correct-sideffect-command-in-duplicate-cook.patch: sctp: Use correct sideffect command in duplicate cookie handling (bnc#826102, CVE-2013-2206).- patches.fixes/lib-radix-tree.c-make-radix_tree_node_alloc-work-cor.patch: lib/radix-tree.c: make radix_tree_node_alloc() work correctly within interrupt (bnc#763463).- patches.fixes/netfilter-prevent-race-condition-breaking-net-refere.patch: netfilter: prevent race condition breaking net reference counting (bnc#835094).- patches.fixes/md-raid10-throttle: Throttle number of pending write requests in md/raid10 (bnc#833858).- patches.fixes/dm-ignore-merge_bvec-for-snapshots-when-safe.patch: dm: ignore merge_bvec for snapshots when safe (bnc#820848).- patches.fixes/rcu-reduce-false-positive-on-racing-rcu.patch: rcu: Do not trigger false positive RCU stall detection (bnc#834204).- patches.drivers/libata-set-proper-sk-when-ck_cond-is-set.patch: Set proper SK when CK_COND is set (bnc#833588).- patches.suse/suse-hv-Drivers-hv-util-Fix-a-bug-in-util-version-negotiatio.patch: Drivers: hv: util: Fix a bug in util version negotiation code (bnc#838346).- patches.fixes/vmxnet3-prevent-div-by-zero-panic-when-ring-resizing.patch: vmxnet3: prevent div-by-zero panic when ring resizing uninitialized dev (bnc#833321).- kabi: update reference files (evergreen) - commit 7281b6f- patches.fixes/mm-memcg-introduce-own-oom-handler-to-iterate-only-o.patch: mm, memcg: introduce own oom handler to iterate only over its own threads. - patches.fixes/mm-memcg-move-all-oom-handling-to-memcontrol.c.patch: mm, memcg: move all oom handling to memcontrol.c. - patches.fixes/mm-oom-avoid-looping-when-chosen-thread-detaches-its.patch: mm, oom: avoid looping when chosen thread detaches its mm. - patches.fixes/mm-oom-fold-oom_kill_task-into-oom_kill_process.patch: mm, oom: fold oom_kill_task() into oom_kill_process(). - patches.fixes/mm-oom-introduce-helper-function-to-process-threads-.patch: mm, oom: introduce helper function to process threads during scan. - patches.fixes/mm-oom-reduce-dependency-on-tasklist_lock.patch: mm, oom: reduce dependency on tasklist_lock.- Linux 3.0.92 (CVE-2013-2237 bnc#828119). - Linux 3.0.93. - patches.suse/0001-elousb-really-long-delays-for-broken-devices.patch: Refresh. - patches.fixes/af_key-initialize-satype-in-key_notify_policy_flush: Delete. - patches.fixes/futex-Take-hugepages-into-account-when-generating-futex_key.patch: Delete.- Linux 3.0.91 (bnc#773006). - patches.fixes/silence-weird-name-warning: Delete. - patches.kabi/kabi-protect-struct-trace_iterator.patch: kABI: protect struct trace_iterator.- Linux 3.0.90 (CVE-2013-2148 bnc#823517). - patches.fixes/fanotify-info-leak-in-copy_event_to_user.patch: Delete.- Linux 3.0.89. - patches.drivers/USB3-0098-xhci-Redundant-check-in-xhci_check_args-for-xhci-devs.patch: Refresh.- Linux 3.0.88 (CVE-2013-2232 CVE-2013-2234 CVE-2013-4162 bnc#789010 bnc#827749 bnc#827750 bnc#831058 LTC#86283). - patches.fixes/af_key-initialize-satype-in-key_notify_policy_flush: Refresh. - patches.fixes/writeback-split-inode_wb_list_lock-into-bdi_writebac.patch: Refresh. - patches.kabi/revert-net-fix-NULL-dereferences-in-check_peer_redir.patch: Refresh. - patches.arch/s390-61-01-zfcp-revert-xconf-handling.patch: Delete. - patches.fixes/af_key-fix-info-leaks-in-notify-messages: Delete. - patches.fixes/ipv6-call-udp_push_pending_frames-when-uncorking.patch: Delete. - patches.fixes/ipv6-ip6_sk_dst_check-must-not-assume-ipv6-dst.patch: Delete.- patches.fixes/x86-Add-workaround-to-NMI-iret-woes.patch: x86: Add workaround to NMI iret woes (bnc#831949). - patches.fixes/x86-Do-not-schedule-while-still-in-NMI-context.patch: x86: Do not schedule while still in NMI context (bnc#831949).- patches.fixes/bnx2x-Avoid-sending-multiple-statistics-queries.patch: bnx2x: Avoid sending multiple statistics queries (bnc#814336). - patches.fixes/bnx2x-protect-different-statistics-flows.patch: bnx2x: protect different statistics flows (bnc#814336).- patches.fixes/reiserfs-delay-reiserfs-lock-until-journal-initialization: - patches.fixes/reiserfs-don-t-lock-journal_init: Refresh. Refresh for series2git.- Add futex fix that didn't go into 3.0-stable - patches.fixes/futex-Take-hugepages-into-account-when-generating-futex_key.patch: futex: Take hugepages into account when generating futex_key.- patches.suse/suse-hv-Drivers-hv-util-Fix-a-bug-in-version-negotiation-cod.patch: Drivers: hv: util: Fix a bug in version negotiation code for util services (bnc#828714).- kabi/severities: Ignore changes in drivers/hv- patches.fixes/printk-add-nmi-ring-buffer.patch: printk: Add NMI ringbuffer (bnc#831949). - patches.fixes/printk-extract-ringbuffer-handling.patch: printk: extract ringbuffer handling from vprintk (bnc#831949). - patches.fixes/printk-safe-nmi-handling.patch: printk: NMI safe printk (bnc#831949). - patches.fixes/printk-fix-softlockups-during-heavy-printing.patch: Refresh. - patches.fixes/printk-fix-softlockups-during-heavy-printing.patch: Refresh. - patches.fixes/printk-make-nmi-ringbuffer-length-independent.patch: printk: Make NMI ringbuffer size independent on log_buf_len (bnc#831949). - patches.fixes/printk-do-not-call-unlock_console-from-nmi.patch: printk: Do not call console_unlock from nmi context (bnc#831949). - patches.fixes/printk-do-not-use-printk_cpu-from-finish_printk.patch: printk: Do not use printk_cpu from finish_printk (bnc#831949).- patches.xen/xen-netback-generalize: Refresh (bnc#827378). - Update other Xen patches to 3.0.87.- patches.fixes/mlx4_en-Adding-40gb-speed-report-for-ethtool.patch: mlx4_en: Adding 40gb speed report for ethtool (bnc#831410).- patches.fixes/reiserfs-locking-handle-nested-locks-properly: Fixed double unlock in reiserfs_setattr failure path.- patches.fixes/reiserfs-delay-reiserfs-lock-until-journal-initialization: reiserfs: delay reiserfs lock until journal initialization (bnc#815320). - patches.fixes/reiserfs-don-t-lock-journal_init: reiserfs: don't lock journal_init() (bnc#815320). - patches.fixes/reiserfs-locking-handle-nested-locks-properly: reiserfs: locking, handle nested locks properly (bnc#815320). - patches.fixes/reiserfs-locking-push-write-lock-out-of-xattr-code: reiserfs: locking, push write lock out of xattr code (bnc#815320). - patches.fixes/reiserfs-locking-release-lock-around-quota-operations: reiserfs: locking, release lock around quota operations (bnc#815320).- patches.suse/nfs-no-share-transport: NFS: support "nosharetransport" option (bnc#807502, bnc#828192, FATE#315593).- patches.fixes/ipv6-ip6_append_data_mtu-did-not-care-about-pmtudisc.patch: ipv6: ip6_append_data_mtu did not care about pmtudisc and frag_size (bnc#831055, CVE-2013-4163).- patches.fixes/include-linux-smp.h-define-__smp_call_function_singl.patch: Refresh to fix ia64 compile failure- patches.fixes/dm-mpath-add-retain_attached_hw_handler-feature.patch: Fixup typo.- patches.fixes/include-linux-smp.h-define-__smp_call_function_singl.patch: Refresh.- patches.fixes/dm-mpath-add-retain_attached_hw_handler-feature.patch: dm mpath: add retain_attached_hw_handler feature (bnc#760407). - patches.fixes/scsi_dh-add-scsi_dh_attached_handler_name.patch: scsi_dh: add scsi_dh_attached_handler_name (bnc#760407).- patches.fixes/af_key-fix-info-leaks-in-notify-messages: af_key: fix info leaks in notify messages (bnc#827749 CVE-2013-2234). - patches.fixes/af_key-initialize-satype-in-key_notify_policy_flush: af_key: initialize satype in key_notify_policy_flush() (bnc#828119 CVE-2013-2237).- patches.fixes/ipv6-call-udp_push_pending_frames-when-uncorking.patch: ipv6: call udp_push_pending_frames when uncorking a socket with (bnc#831058, CVE-2013-4162).- patches.fixes/tg3-fix-length-overflow-in-vpd-firmware-parsing: tg3: fix length overflow in VPD firmware parsing (bnc#813733 CVE-2013-1929).- patches.fixes/ipv6-ip6_sk_dst_check-must-not-assume-ipv6-dst.patch: ipv6: ip6_sk_dst_check() must not assume ipv6 dst (bnc#827750, CVE-2013-2232).- patches.fixes/xfs-fix-xfs_buf_find-oops-on-blocks-beyond-the-filesystem-end: xfs: fix _xfs_buf_find oops on blocks beyond the filesystem end (CVE-2013-1819 bnc#807471).- patches.fixes/bonding-disallow-change-of-MAC-if-fail_over_mac-enab.patch: bonding: disallow change of MAC if fail_over_mac enabled (bnc#827376).- patches.fixes/bonding-Convert-hw-addr-handling-to-sync-unsync-supp.patch: bonding: propagate unicast lists down to slaves (bnc#773255 bnc#827372).- patches.fixes/net-bonding-emit-address-change-event-also-in-bond_r.patch: net/bonding: emit address change event also in bond_release (bnc#773255 bnc#827372).- patches.fixes/bonding-emit-event-when-bonding-changes-MAC.patch: bonding: emit event when bonding changes MAC (bnc#773255 bnc#827372).- patches.fixes/SUNRPC-Ensure-we-release-the-socket-write-lock-if-th.patch: SUNRPC: Ensure we release the socket write lock if the rpc_task exits early (bnc#830901).- patches.suse/ext4-rw-unsupported.patch: ext4: force read-only unless rw=1 module option is used (fate#314864).- patches.fixes/hid-fix-data-access-in-implement-fix.patch: Refresh: fix context.- patches.fixes/hid-fix-data-access-in-implement-fix.patch: HID: fix unused rsize usage (bnc#783475).- patches.fixes/hid-fix-data-access-in-implement.patch: HID: fix data access in implement() (bnc#783475).- patches.fixes/xfs-fix-deadlock-in-xfs_rtfree_extent-with-kernel-v3.x.patch: xfs: fix deadlock in xfs_rtfree_extent with kernel v3.x (bnc#829622).- Linux 3.0.87. - patches.fixes/x86_acer_acpi_ec_call_reg_blacklist.patch: Refresh.- patches.drivers/r8169-allow-multicast-packets-on-sub-8168f-chipset.patch r8169: allow multicast packets on sub-8168f chipset (bnc#805371).- patches.drivers/r8169-support-new-chips-of-RTL8111F.patch r8169: support new chips of RTL8111F (bnc#805371).- patches.drivers/r8169-define-the-early-size-for-8111evl.patch r8169: define the early size for 8111evl (bnc#805371).- patches.drivers/r8169-fix-the-reset-setting-for-8111evl.patch r8169: fix the reset setting for 8111evl (bnc#805371).- patches.drivers/r8169-add-MODULE_FIRMWARE-for-the-firmware-of-8111ev.patch r8169: add MODULE_FIRMWARE for the firmware of 8111evl (bnc#805371).- patches.drivers/r8169-fix-sticky-accepts-packet-bits-in-RxConfig.patch r8169: fix sticky accepts packet bits in RxConfig (bnc#805371).- patches.drivers/r8169-adjust-the-RxConfig-settings.patch r8169: adjust the RxConfig settings (bnc#805371).- patches.drivers/r8169-support-RTL8111E-VL.patch r8169: support RTL8111E-VL (bnc#805371).- patches.drivers/r8169-add-ERI-functions.patch r8169: add ERI functions (bnc#805371).- patches.drivers/r8169-modify-the-flow-of-the-hw-reset.patch r8169: modify the flow of the hw reset (bnc#805371).- patches.drivers/r8169-adjust-some-registers.patch r8169: adjust some registers (bnc#805371).- patches.drivers/r8169-check-firmware-content-sooner.patch r8169: check firmware content sooner (bnc#805371).- patches.drivers/r8169-support-new-firmware-format.patch r8169: support new firmware format (bnc#805371).- patches.drivers/r8169-explicit-firmware-format-check.patch r8169: explicit firmware format check (bnc#805371).- patches.drivers/r8169-move-the-firmware-down-into-the-device-private.patch r8169: move the firmware down into the device private data (bnc#805371).- patches.fixes/mm-link_mem_sections-touch-nmi-watchdog.patch: mm: link_mem_sections make sure nmi watchdog doesn't trigger while linking memory sections (bnc#820434).- patches.arch/s390-66-02-smp-ipi.patch: kernel: lost IPIs on CPU hotplug (bnc#825048, LTC#94784).- patches.fixes/iwlwifi-use-correct-supported-firmware-for-6035-and-.patch: iwlwifi: use correct supported firmware for 6035 and 6000g2 (bnc#825887).- patches.fixes/watchdog-update-watchdog_thresh-atomically.patch: watchdog: Update watchdog_thresh atomically (bnc#829357). - patches.fixes/watchdog-update-watchdog_tresh-properly.patch: watchdog: update watchdog_tresh properly (bnc#829357). - patches.fixes/watchdog-make-disable-enable-hotplug-and-preempt-save.patch: watchdog-make-disable-enable-hotplug-and-preempt-save.patch (bnc#829357). - patches.fixes/include-linux-smp.h-define-__smp_call_function_singl.patch: include/linux/smp.h: define __smp_call_function_single for !CONFIG_SMP (bnc#829357).- patches.drivers/lpfc-return-correct-error-code-on-bsg_timeout.patch: lpfc: Return correct error code on bsg_timeout (bnc#816043).- patches.fixes/dm-drop-table-reference-on-ioctl-retry.patch: dm-multipath: Drop table when retrying ioctl (bnc#808940).- patches.suse/scsi-do-not-retry-invalid-function-error.patch: scsi: Do not retry invalid function error (bnc#809122).- patches.suse/scsi-always-retry-internal-target-error.patch: scsi: Always retry internal target error (bnc#745640, bnc#825227).- patches.drivers/drm-edid-Don-t-print-messages-regarding-stereo-or-csync-by-default.patch: Refresh: add upstream commit ID.- patches.suse/acpiphp-match-to-Bochs-dmi-data.patch: Refresh. (bnc#824915).- Linux 3.0.86 (CVE-2013-1059 CVE-2013-2164 CVE-2013-2851 bnc#822575 bnc#824295 bnc#826350). - patches.ceph/0125-libceph-auth-client-NULL-pointer-dereference.patch: Delete. - patches.fixes/block-do-not-pass-disk-names-as-format-strings.patch: Delete. - patches.fixes/cdrom-use-kzalloc-for-failing-hardware: Delete.- Linux 3.0.85.- patches.drivers/ibmvfc-Driver-version-1.0.11.patch: ibmvfc: Driver version 1.0.1 (bnc#825142). - patches.drivers/ibmvfc-Fix-for-offlining-devices-during-error-recove.patch: ibmvfc: Fix for offlining devices during error recovery (bnc#825142). - patches.drivers/ibmvfc-Properly-set-cancel-flags-when-cancelling-abo.patch: ibmvfc: Properly set cancel flags when cancelling abort (bnc#825142). - patches.drivers/ibmvfc-Send-cancel-when-link-is-down.patch: ibmvfc: Send cancel when link is down (bnc#825142). - patches.drivers/ibmvfc-Support-FAST_IO_FAIL-in-EH-handlers.patch: ibmvfc: Support FAST_IO_FAIL in EH handlers (bnc#825142). - patches.drivers/ibmvfc-Suppress-ABTS-if-target-gone.patch: ibmvfc: Suppress ABTS if target gone (bnc#825142).- patches.fixes/fs-dcache.c-add-cond_resched-to-shrink_dcache_parent.patch: fs/dcache.c: add cond_resched() to shrink_dcache_parent() (bnc#829082).- patches.fixes/cdrom-use-kzalloc-for-failing-hardware: drivers/cdrom/cdrom.c: use kzalloc() for failing hardware (bnc#824295, CVE-2013-2164).- patches.suse/0001-kmsg_dump-don-t-run-on-non-error-paths-by-default.patch: Refresh.- patches.suse/0001-kmsg_dump-don-t-run-on-non-error-paths-by-default.patch: kmsg_dump: don't run on non-error paths by default (bnc#820172).- patches.fixes/mm-honor-min_free_kbytes-set-by-user.patch: mm: honor min_free_kbytes set by user (bnc#826960).- patches.suse/msft-hv-0406-hyperv-Fix-a-kernel-warning-from-netvsc_linkstatus_c.patch: hyperv: Fix a kernel warning from netvsc_linkstatus_callback() (bnc#828574).- Fix up hardening patch to not gripe when avg > available, which lockless access makes possible and happens in -rt kernels running a cpubound ltp realtime testcase. Just keep the output sane in that case. - patches.fixes/sched-harden-rq-rt-usage-accounting.patch: Refresh.- patches.fixes/fanotify-info-leak-in-copy_event_to_user.patch: fanotify: info leak in copy_event_to_user() (CVE-2013-2148 bnc#823517).- patches.fixes/block-do-not-pass-disk-names-as-format-strings.patch: block: do not pass disk names as format strings (bnc#822575 CVE-2013-2851).- patches.ceph/0125-libceph-auth-client-NULL-pointer-dereference.patch: libceph: Fix NULL pointer dereference in auth client code. (CVE-2013-1059, bnc#826350)- patches.fixes/md-raid10-reshape-bugs: Fix two bug affecting RAID10 reshape (-).- patches.fixes/nfs-execute-only-files: Allow NFSv4 to run execute-only files (bnc#765523).- patches.fixes/ocfs2-remove-unnecssary-error-while-rm-non-empty-dirs.patch: fs/ocfs2/namei.c: remove unecessary ERROR when removing non-empty directory (bnc#819363).- patches.fixes/block-queue-depth-3.diff: block: Reserve only one queue tag for sync IO if only 3 tags are available (bnc#806396).- patches.suse/btrfs-0510-merge-contigous-regions-when-loading-free-spac.patch: Btrfs: merge contigous regions when loading free space cache (FATE#312888). - patches.suse/btrfs-0512-fix-how-we-deal-with-the-orphan-block-rsv.patch: Btrfs: fix how we deal with the orphan block rsv (FATE#312888). - patches.suse/btrfs-0589-fix-wrong-check-during-log-recovery.patch: Btrfs: fix wrong check during log recovery (FATE#312888). - patches.suse/btrfs-0615-change-how-we-indicate-we-re-adding-csums.patch: Btrfs: change how we indicate we're adding csums (FATE#312888). - patches.suse/btrfs-0768-delay-block-group-item-insertion.patch: Refresh. - patches.suse/btrfs-0769-remove-bytes-argument-from-do_chunk_alloc.patch: Refresh. - patches.suse/btrfs-0796-run-delayed-refs-first-when-out-of-space.patch: Refresh. - patches.suse/btrfs-0804-don-t-commit-instead-of-overcommitting.patch: Refresh. - patches.suse/btrfs-0954-don-t-take-inode-delalloc-mutex-if-we-re-a-fre.patch: Refresh. - patches.suse/btrfs-1092-use-reserved-space-for-creating-a-snapshot.patch: Refresh. - patches.suse/btrfs-1107-cleanup-to-make-the-function-btrfs_delalloc_re.patch: Refresh. - patches.suse/btrfs-1136-fix-space-leak-when-we-fail-to-reserve-metadat.patch: Refresh. - patches.suse/btrfs-1137-fix-space-accounting-for-unlink-and-rename.patch: Refresh. - patches.suse/btrfs-8235-simplify-unlink-reservations.patch: Refresh.- Linux 3.0.84.- Linux 3.0.83.- patches.drivers/drm-i915-add-wait_for-in-init_ring_common: drm/i915: Add wait_for in init_ring_common (bnc#813604). - patches.drivers/drm-i915-mark-the-ringbuffers-as-being-in-the-gtt-domain: drm/i915: Mark the ringbuffers as being in the GTT domain (bnc#813604).- patches.fixes/ext4-avoid-hang-when-mounting-non-journal-filesystem.patch: ext4: avoid hang when mounting non-journal filesystems with orphan list (bnc#817377).- Move kabi fixes to patches.kabi: patches.kabi/mm-compaction-scan-pfn-caching-KABI-fix.patch patches.kabi/mm-compaction-scan-pfn-caching-KABI.patch patches.kabi/mm-mmu_notifier-have-mmu_notifiers-use-a-global-SRCU-so-they-may-safely-schedule-kabi.patch patches.kabi/netfilter-kABI-fix-after-making-event-callback-regis.patch- patches.fixes/mm-compaction-scan-pfn-caching-KABI-fix.patch: mm: compaction: Scan PFN caching KABI workaround (Fix KABI breakage (bnc#825657)).- patches.fixes/autofs4-fix-get_next_positive_subdir.patch: autofs4 - fix get_next_positive_subdir() (bnc#819523).- patches.fixes/ocfs2-add-bits_wanted-to-ocfs2_calc_extend_credits.patch: Add bits_wanted while calculating credits in ocfs2_calc_extend_credits (bnc#822077).- patches.suse/trace-open.patch: re-enable io tracing (bnc#785901).- patches.xen/1230-netback-dont-disconnect-on-oversized-packet.patch: Update references (bnc#823342).- patches.suse/0001-pciehp-Ignore-missing-surprise-bit-on-some-hosts.patch: Refresh. Corrected the old mismatching DMI strings.- patches.fixes/SUNRPC-Prevent-an-rpc_task-wakeup-race.patch: SUNRPC: Prevent an rpc_task wakeup race (bnc#825591).- patches.drivers/tg3-Prevent-system-hang-during-repeated-EEH-errors.patch: tg3: Prevent system hang during repeated EEH errors (bnc#822066).- patches.suse/btrfs-0409-add-__get_block_group_index-helper.patch: Update references (bnc#801427). - patches.suse/btrfs-0609-flush-delayed-inodes-if-we-re-short-on-space.patch: Btrfs: flush delayed inodes if we're short on space (bnc#801427). - patches.suse/btrfs-0621-rework-shrink_delalloc.patch: Btrfs: rework shrink_delalloc (bnc#801427). - patches.suse/btrfs-0759-fix-our-overcommit-math.patch: Btrfs: fix our overcommit math (bnc#801427). - patches.suse/btrfs-0768-delay-block-group-item-insertion.patch: Btrfs: delay block group item insertion (bnc#801427). - patches.suse/btrfs-0769-remove-bytes-argument-from-do_chunk_alloc.patch: Btrfs: remove bytes argument from do_chunk_alloc (bnc#801427). - patches.suse/btrfs-0796-run-delayed-refs-first-when-out-of-space.patch: Btrfs: run delayed refs first when out of space (bnc#801427). - patches.suse/btrfs-0804-don-t-commit-instead-of-overcommitting.patch: Btrfs: don't commit instead of overcommitting (bnc#801427). - patches.suse/btrfs-0954-don-t-take-inode-delalloc-mutex-if-we-re-a-fre.patch: Btrfs: don't take inode delalloc mutex if we're a free space inode (bnc#801427). - patches.suse/btrfs-1033-fix-chunk-allocation-error-handling.patch: Btrfs: fix chunk allocation error handling (bnc#801427). - patches.suse/btrfs-1034-remove-extent-mapping-if-we-fail-to-add-chunk.patch: Btrfs: remove extent mapping if we fail to add chunk (bnc#801427). - patches.suse/btrfs-1035-do-not-overcommit-if-we-don-t-have-enough-spac.patch: Btrfs: do not overcommit if we don't have enough space for global rsv (bnc#801427). - patches.suse/btrfs-1050-rework-the-overcommit-logic-to-be-based-on-the.patch: Btrfs: rework the overcommit logic to be based on the total size (bnc#801427). - patches.suse/btrfs-1058-steal-from-global-reserve-if-we-are-cleaning-u.patch: Btrfs: steal from global reserve if we are cleaning up orphans (bnc#801427). - patches.suse/btrfs-1091-clear-chunk_alloc-flag-on-retryable-failure.patch: clear chunk_alloc flag on retryable failure (bnc#801427). - patches.suse/btrfs-1092-use-reserved-space-for-creating-a-snapshot.patch: Btrfs: use reserved space for creating a snapshot (bnc#801427). - patches.suse/btrfs-1107-cleanup-to-make-the-function-btrfs_delalloc_re.patch: Btrfs: cleanup to make the function btrfs_delalloc_reserve_metadata more logic (bnc#801427). - patches.suse/btrfs-1136-fix-space-leak-when-we-fail-to-reserve-metadat.patch: Btrfs: fix space leak when we fail to reserve metadata space (bnc#801427). - patches.suse/btrfs-1137-fix-space-accounting-for-unlink-and-rename.patch: Btrfs: fix space accounting for unlink and rename (bnc#801427). - patches.suse/btrfs-8190-limit-fallocate-extent-reservation-to-256MB.patch: Update references (bnc#801427). - patches.suse/btrfs-8233-allocate-new-chunks-if-the-space-is-not-enough.patch: Btrfs: allocate new chunks if the space is not enough for global rsv (bnc#801427). - patches.suse/btrfs-8234-various-abort-cleanups.patch: Btrfs: various abort cleanups (bnc#812526 bnc#801427). - patches.suse/btrfs-8235-simplify-unlink-reservations.patch: Btrfs: simplify unlink reservations (bnc#801427). - patches.suse/btrfs-handle-EIO: Refresh. - patches.suse/btrfs-8165-remove-bytes-argument-from-do_chunk_alloc.patch: Delete.- patches.suse/btrfs-0409-add-__get_block_group_index-helper.patch: Update references (bnc#801427). - patches.suse/btrfs-0609-flush-delayed-inodes-if-we-re-short-on-space.patch: Btrfs: flush delayed inodes if we're short on space (bnc#801427). - patches.suse/btrfs-0621-rework-shrink_delalloc.patch: Btrfs: rework shrink_delalloc (bnc#801427). - patches.suse/btrfs-0759-fix-our-overcommit-math.patch: Btrfs: fix our overcommit math (bnc#801427). - patches.suse/btrfs-0768-delay-block-group-item-insertion.patch: Btrfs: delay block group item insertion (bnc#801427). - patches.suse/btrfs-0769-remove-bytes-argument-from-do_chunk_alloc.patch: Btrfs: remove bytes argument from do_chunk_alloc (bnc#801427). - patches.suse/btrfs-0796-run-delayed-refs-first-when-out-of-space.patch: Btrfs: run delayed refs first when out of space (bnc#801427). - patches.suse/btrfs-0804-don-t-commit-instead-of-overcommitting.patch: Btrfs: don't commit instead of overcommitting (bnc#801427). - patches.suse/btrfs-0954-don-t-take-inode-delalloc-mutex-if-we-re-a-fre.patch: Btrfs: don't take inode delalloc mutex if we're a free space inode (bnc#801427). - patches.suse/btrfs-1033-fix-chunk-allocation-error-handling.patch: Btrfs: fix chunk allocation error handling (bnc#801427). - patches.suse/btrfs-1034-remove-extent-mapping-if-we-fail-to-add-chunk.patch: Btrfs: remove extent mapping if we fail to add chunk (bnc#801427). - patches.suse/btrfs-1035-do-not-overcommit-if-we-don-t-have-enough-spac.patch: Btrfs: do not overcommit if we don't have enough space for global rsv (bnc#801427). - patches.suse/btrfs-1050-rework-the-overcommit-logic-to-be-based-on-the.patch: Btrfs: rework the overcommit logic to be based on the total size (bnc#801427). - patches.suse/btrfs-1058-steal-from-global-reserve-if-we-are-cleaning-u.patch: Btrfs: steal from global reserve if we are cleaning up orphans (bnc#801427). - patches.suse/btrfs-1091-clear-chunk_alloc-flag-on-retryable-failure.patch: clear chunk_alloc flag on retryable failure (bnc#801427). - patches.suse/btrfs-1092-use-reserved-space-for-creating-a-snapshot.patch: Btrfs: use reserved space for creating a snapshot (bnc#801427). - patches.suse/btrfs-1107-cleanup-to-make-the-function-btrfs_delalloc_re.patch: Btrfs: cleanup to make the function btrfs_delalloc_reserve_metadata more logic (bnc#801427). - patches.suse/btrfs-1136-fix-space-leak-when-we-fail-to-reserve-metadat.patch: Btrfs: fix space leak when we fail to reserve metadata space (bnc#801427). - patches.suse/btrfs-1137-fix-space-accounting-for-unlink-and-rename.patch: Btrfs: fix space accounting for unlink and rename (bnc#801427). - patches.suse/btrfs-8190-limit-fallocate-extent-reservation-to-256MB.patch: Update references (bnc#801427). - patches.suse/btrfs-8233-allocate-new-chunks-if-the-space-is-not-enough.patch: Btrfs: allocate new chunks if the space is not enough for global rsv (bnc#801427). - patches.suse/btrfs-8234-various-abort-cleanups.patch: Btrfs: various abort cleanups (bnc#812526 bnc#801427). - patches.suse/btrfs-8235-simplify-unlink-reservations.patch: Btrfs: simplify unlink reservations (bnc#801427). - patches.suse/btrfs-handle-EIO: Refresh. - patches.suse/btrfs-8165-remove-bytes-argument-from-do_chunk_alloc.patch: Delete.- patches.xen/1232-backends-reject-ring-overruns.patch: backends: Check for insane amounts of requests on the ring. - Update Xen patches to 3.0.82.- patches.arch/netiucv-Hold-rtnl-between-name-allocation-and-device.patch: netiucv: Hold rtnl between name allocation and device registration (bnc#824159).- Linux 3.0.82.- Linux 3.0.81 (CVE-2013-1774 bnc#806976 bnc#817035 bnc#821052). - patches.fixes/mm-mmu_notifier-have-mmu_notifiers-use-a-global-SRCU-so-they-may-safely-schedule-kabi.patch: Refresh. - patches.drivers/0001-USB-UHCI-fix-for-suspend-of-virtual-HP-controller.patch: Delete. - patches.drivers/0001-USB-io_ti-Fix-NULL-dereference-in-chase_port.patch: Delete. - patches.fixes/mm-mmu_notifier-re-fix-freed-page-still-mapped-in-se.patch: Delete.- patches.fixes/mm-mmu_notifier-have-mmu_notifiers-use-a-global-SRCU-so-they-may-safely-schedule-kabi.patch: Refresh. - patches.kernel.org/patch-3.0.80-81: Linux 3.0.81 (CVE-2013-1774 bnc#806976 bnc#817035 bnc#821052). - patches.kernel.org/patch-3.0.81-82: Linux 3.0.82. - patches.drivers/0001-USB-UHCI-fix-for-suspend-of-virtual-HP-controller.patch: Delete. - patches.drivers/0001-USB-io_ti-Fix-NULL-dereference-in-chase_port.patch: Delete. - patches.fixes/mm-mmu_notifier-re-fix-freed-page-still-mapped-in-se.patch: Delete.- patches.drivers/drm-edid-Don-t-print-messages-regarding-stereo-or-csync-by-default.patch: drm/edid: Don't print messages regarding stereo or csync by default (bnc #821235).- patches.fixes/net-sunrpc-xpt_auth_cache-should-be-ignored-when-exp.patch: net/sunrpc: xpt_auth_cache should be ignored when expired (bnc#803320). - patches.fixes/sunrpc-cache-ensure-items-removed-from-cache-do-not-.patch: sunrpc/cache: ensure items removed from cache do not have pending upcalls (bnc#803320). - patches.fixes/sunrpc-cache-remove-races-with-queuing-an-upcall.patch: sunrpc/cache: remove races with queuing an upcall (bnc#803320). - patches.fixes/sunrpc-cache-use-cache_fresh_unlocked-consistently-a.patch: sunrpc/cache: use cache_fresh_unlocked consistently and correctly (bnc#803320).- patches.fixes/md-raid10-enough-fixes: md/raid10 'enough' fixes (bnc#773837).- Refresh vanilla config files.- Update config files: disable IP_PNP (bnc#822825)- patches.drivers/pstore_disable_efi_backend_by_default.patch: Disable efi pstore by default (bnc#804482 bnc#820172).- patches.fixes/md-get-bitmap-file.fix: md: Fix problem with GET_BITMAP_FILE returning wrong status (bnc#812974 bnc#823497).- patches.fixes/mm-pagewalk.c-walk_page_range-should-avoid-VM_PFNMAP.patch: mm/pagewalk.c: walk_page_range should avoid VM_PFNMAP areas (bnc#822942).- patches.drivers/0001-USB-xHCI-override-bogus-bulk-wMaxPacketSize-values.patch: USB: xHCI: override bogus bulk wMaxPacketSize values (bnc#823082).- patches.drivers/alsa-sp2-hda-034-Fix-system-panic-when-DMA-40-bits-for-Nvidi: ALSA: hda - Fix system panic when DMA > 40 bits for Nvidia audio controllers (bnc#818465).- patches.drivers/0001-USB-UHCI-fix-for-suspend-of-virtual-HP-controller.patch: USB: UHCI: fix for suspend of virtual HP controller (bnc#817035).- patches.fixes/reiserfs-fix-spurious-multiple-fill-in-reiserfs_readdir_dentry: reiserfs: fix spurious multiple-fill in reiserfs_readdir_dentry (bnc#822722).- patches.fixes/SCSI-libfc-don-t-exch_done-on-invalid-sequence-ptr.patch: libfc: don't exch_done() on invalid sequence ptr (bnc#810722).- patches.fixes/netfilter-ip6t_LOG-fix-logging-of-packet-mark.patch: netfilter: ip6t_LOG: fix logging of packet mark (bnc#821930).- patches.suse/suse-hv-HV_DRV_VERSION.patch: hyperv: use 3.4 as LIC version string (bnc#822431).- patches.fixes/virtio_net-introduce-VIRTIO_NET_HDR_F_DATA_VALID.patch: virtio_net: introduce VIRTIO_NET_HDR_F_DATA_VALID (bnc#819655).- Linux 3.0.80.- patches.fixes/mm-mmu_notifier-have-mmu_notifiers-use-a-global-SRCU-so-they-may-safely-schedule-kabi.patch: Refresh. - patches.fixes/mm-mmu_notifier-re-fix-freed-page-still-mapped-in-se.patch: mm: mmu_notifier: re-fix freed page still mapped in secondary MMU (bnc#821052).- patches.xen/1230-netback-dont-disconnect-on-oversized-packet.patch: netback: don't disconnect frontend when seeing oversize packet. - patches.xen/1231-netfront-limit-skblen.patch: netfront: reduce gso_max_size to account for max TCP header. - patches.kabi/1231-netfront-limit-skblen.patch: netfront: fix kABI after "reduce gso_max_size to account for max TCP header". - patches.xen/1167-x86_64-memset.patch: Delete. - Refresh other Xen patches.- patches.xen/1230-netback-dont-disconnect-on-oversized-packet.patch: netback: don't disconnect frontend when seeing oversize packet. - patches.xen/1231-netfront-limit-skblen.patch: netfront: reduce gso_max_size to account for max TCP header. - Refresh other Xen patches. - patches.xen/1167-x86_64-memset.patch: Delete.- patches.kabi/xfs-buffer-kabi.patch: xfs: Fix kABI due to change in xfs_buf (bnc#815356).- patches.fixes/xfs-fix-race-while-discarding-buffers-V4.patch: xfs: fix race while discarding buffers [V4] (bnc#815356 (comment 36)).- patches.fixes/xfs-DIO-i_size-corruption-fix.patch: xfs: Serialize file-extending direct IO (bnc#818371).- patches.fixes/iscsi-target-fix-heap-buffer-overflow-on-error.patch: iscsi-target: fix heap buffer overflow on error (CVE-2013-2850, bnc#821560).- patches.fixes/0001-Do-not-switch-webcams-in-some-HP-ProBooks-to-XHCI.patch: Do not switch webcams in some HP ProBooks to XHCI (bnc#805804).- patches.fixes/avoid_ehci_xhci_switch_for_BT_PB430.patch: Do not switch BT on HP ProBook 4340 (bnc#812281). - patches.fixes/0001-References-bnc-812281.patch: Delete.- patches.fixes/0001-References-bnc-812281.patch: Do not switch BT on HP ProBook 4340 (bnc#812281).- patches.arch/s390-ftrace-fix-mcount-adjustment.patch: s390/ftrace: fix mcount adjustment (bnc#809895).- patches.kernel.org/Revert-x86-amd-Disable-way-access-filter-on-Piledriv.patch: Revert "x86, amd: Disable way access filter on Piledriver CPUs" it is duplicated.- patches.fixes/memory_dev_init-do-not-soft-lockup.patch: mm: memory_dev_init make sure nmi watchdog doesn't trigger while registering memory sections (bnc#804609, bnc#820434).- Linux 3.0.79. - patches.xen/xen3-patch-2.6.36: Refresh.- Linux 3.0.78. - patches.fixes/x86-kexec-temporary-hack-v2: Refresh.- Linux 3.0.77. - patches.arch/ia64-page-migration: Refresh. - patches.drivers/0001-usb-storage-CY7C68300A-chips-do-not-support-Cypress-.patch: Delete. - patches.rpmify/revert-can-sja1000-fix-handling-on-dt-properties-on-.patch: Delete. - patches.rpmify/s390-move-dummy-io_remap_pfn_range-to-asm-pgtable.h.patch: Delete.- patches.fixes/xfs-backward-alloc-fix.diff: xfs: Avoid pathological backwards allocation (bnc#805945).- patches.fixes/mm-compaction-Restart-compaction-from-near-where-it-left-off.patch: mm: compaction: Restart compaction from near where it left off - patches.fixes/mm-compaction-cache-if-a-pageblock-was-scanned-and-no-pages-were-isolated.patch: mm: compaction: cache if a pageblock was scanned and no pages were isolated - patches.fixes/mm-compaction-clear-PG_migrate_skip-based-on-compaction-and-reclaim-activity.patch: mm: compaction: clear PG_migrate_skip based on compaction and reclaim activity - patches.fixes/mm-compaction-scan-pfn-caching-KABI.patch: mm: compaction: Scan PFN caching KABI workaround - patches.fixes/mm-page-allocat-remove-thp-guard.patch: mm: page_allocator: Remove first_pass guard - patches.fixes/mm-vmscan-do-not-stall-on-writeback-during-memory-compaction.patch: mm: vmscan: do not stall on writeback during memory compaction Cache compaction restart points for faster compaction cycles (bnc#816451)- patches.drivers/qlge-fix-dma-map-leak-when-the-last-chunk-is-not-all.patch: qlge: fix dma map leak when the last chunk is not allocated (bnc#819519).- patches.kernel.org/0002-SUNRPC-Get-rid-of-the-redundant-xprt-shutdown-bit-fi.patch: SUNRPC: Get rid of the redundant xprt->shutdown bit field (bnc#800907). - patches.kernel.org/0007-SUNRPC-Ensure-that-we-grab-the-XPRT_LOCK-before-call.patch: SUNRPC: Ensure that we grab the XPRT_LOCK before calling xprt_alloc_slot (bnc#800907). - patches.kernel.org/0008-SUNRPC-Fix-a-UDP-transport-regression.patch: SUNRPC: Fix a UDP transport regression (bnc#800907). - patches.kernel.org/0009-SUNRPC-Allow-caller-of-rpc_sleep_on-to-select-priori.patch: SUNRPC: Allow caller of rpc_sleep_on() to select priority levels (bnc#800907). - patches.kernel.org/0010-SUNRPC-Replace-xprt-resend-and-xprt-sending-with-a-p.patch: SUNRPC: Replace xprt->resend and xprt->sending with a priority queue (bnc#800907). - patches.kernel.org/0011-SUNRPC-Fix-potential-races-in-xprt_lock_write_next.patch: SUNRPC: Fix potential races in xprt_lock_write_next() (bnc#800907).- patches.fixes/perf-treat-attr.config-as-u64-in-perf_swevent_init.patch: Delete, obsoleted by 3.0.75 stable update.- patches.fixes/perf-treat-attr.config-as-u64-in-perf_swevent_init.patch: perf: Treat attr.config as u64 in perf_swevent_init() (bnc#819789, CVE-2013-2094).- patches.fixes/md-cannot-re-add-disks-after-recovery.patch: md: cannot re-add disks after recovery (bnc#808647).- patches.fixes/xattr-getxattr-improve-handling-of-allocation-f.patch: fs/xattr.c:getxattr(): improve handling of allocation failures (bnc#818053). - patches.fixes/xattr-listxattr-fall-back-to-vmalloc-if-kmalloc.patch: fs/xattr.c:listxattr(): fall back to vmalloc() if kmalloc() failed (bnc#818053). - patches.fixes/xattr-setxattr-improve-handling-of-allocation-f.patch: fs/xattr.c:setxattr(): improve handling of allocation failures (bnc#818053). - patches.fixes/xattr-suppress-page-allocation-failure-warnings.patch: fs/xattr.c: suppress page allocation failure warnings from sys_listxattr() (bnc#818053).- patches.fixes/virtio-blk-call-revalidate_disk-upon-online-disk-resize: virtio-blk: Call revalidate_disk() upon online disk resize (bnc#817339).- patches.drivers/0001-usb-storage-CY7C68300A-chips-do-not-support-Cypress-.patch: usb-storage: CY7C68300A chips do not support Cypress ATACB (bnc#819295).- patches.kernel.org/patch-3.0.60-61: Update references (add bnc#810580).- patches.drivers/0001-usb-Using-correct-way-to-clear-usb3.0-device-s-remot.patch: Refresh.- patches.drivers/0001-usb-Using-correct-way-to-clear-usb3.0-device-s-remot.patch: usb: Using correct way to clear usb3.0 device's remote wakeup feature (bnc#818516).- patches.drivers/0001-xhci-Fix-TD-size-for-isochronous-URBs.patch: xhci: Fix TD size for isochronous URBs (bnc#818514).- patches.drivers/alsa-sp3-pre-701-fixup-D3-pin-and-right-channel-mute-on-Hasw: ALSA: hda - fixup D3 pin and right channel mute on Haswell HDMI audio (bnc#818798). - patches.drivers/alsa-sp3-pre-702-Apply-pin-enablement-workaround-to-all-Hasw: ALSA: hda - Apply pin-enablement workaround to all Haswell HDMI codecs (bnc#818798).- patches.fixes/xfs-fallback-to-vmalloc-for-large-buffers-in-xfs_att.patch: xfs: fallback to vmalloc for large buffers in xfs_attrmulti_attr_get (bnc#818053). - patches.fixes/xfs-fallback-to-vmalloc-for-large-buffers-in-xfs_attrlist_by_handle: xfs: fallback to vmalloc for large buffers in xfs_attrlist_by_handle (bnc#818053). - patches.fixes/xfs-fallback-to-vmalloc-for-large-buffers-in-xfs_compat_attrlist_by_handle: xfs: xfs: fallback to vmalloc for large buffers in xfs_compat_attrlist_by_handle (bnc#818053).- patches.drivers/0001-xHCI-store-ring-s-type.patch: xHCI: store ring's type. - patches.drivers/0001-xhci-Fix-hang-on-back-to-back-Set-TR-Deq-Ptr-command.patch: xhci: Fix hang on back-to-back Set TR Deq Ptr commands. - patches.drivers/0002-xHCI-check-enqueue-pointer-advance-into-dequeue-seg.patch: xHCI: check enqueue pointer advance into dequeue seg. - patches.drivers/0002-xHCI-store-ring-s-last-segment-and-segment-numbers.patch: xHCI: store ring's last segment and segment numbers. - patches.drivers/0003-xHCI-Allocate-2-segments-for-transfer-ring.patch: xHCI: Allocate 2 segments for transfer ring. - patches.drivers/0003-xHCI-count-free-TRBs-on-transfer-ring.patch: xHCI: count free TRBs on transfer ring. - patches.drivers/0004-xHCI-factor-out-segments-allocation-and-free-functio.patch: xHCI: factor out segments allocation and free function. - patches.drivers/0004-xHCI-update-sg-tablesize.patch: xHCI: update sg tablesize. - patches.drivers/0005-xHCI-set-cycle-state-when-allocate-rings.patch: xHCI: set cycle state when allocate rings. - patches.drivers/0005-xhci-Reserve-one-command-for-USB3-LPM-disable.patch: xhci: Reserve one command for USB3 LPM disable. - patches.drivers/0006-xHCI-dynamic-ring-expansion.patch: xHCI: dynamic ring expansion. - patches.drivers/0007-xhci-Don-t-warn-on-empty-ring-for-suspended-devices.patch: xhci: Don't warn on empty ring for suspended devices.- patches.fixes/md-raid1-dont-release-reference.patch: md/raid1: Don't release reference to device while handling read error (bnc#809122, bnc#814719).- rpm/mkspec: Stop generating the get_release_number.sh file.- rpm/kernel-spec-macros: Properly handle KOTD release numbers with .g suffix.- rpm/kernel-spec-macros: Drop the %release_num macro We no longer put the -rcX tag into the release string.- rpm/kernel-*.spec.in, rpm/mkspec: Do not force the "" string in specfiles.- patches.fixes/mm-mmap-check-for-RLIMIT_AS-before-unmapping.patch: mm/mmap: check for RLIMIT_AS before unmapping (bnc#818327).- patches.suse/mm-Fix-add_page_wait_queue-to-work-for-locked.patch: Fix add_page_wait_queue() to work for PG_Locked bit waiters (bnc#792584).- patches.suse/mm-Fix-add_page_wait_queue-to-work-for-locked.patch: Fix add_page_wait_queue() to work for PG_Locked bit waiters (bnc#792584).- patches.fixes/bonding-only-use-primary-address-for-ARP.patch: bonding: only use primary address for ARP (bnc#815444). - patches.fixes/bonding-remove-entries-for-master_ip-and-vlan_ip-and.patch: bonding: remove entries for master_ip and vlan_ip and query devices instead (bnc#815444).- Linux 3.0.76 (CVE-2013-0160 bnc#797175 bnc#815745). - patches.kabi/kabi-undo-cred_to_ucred-change.patch: kABI: undo cred_to_ucred change. - patches.arch/s390-35-07-af_iucv-over-hsi: Refresh. - patches.arch/s390-45-01-af_iucv-remove-iucv-path.patch: Refresh. - patches.arch/s390-50-01-af_iucv-netdev-event.patch: Refresh. - patches.fixes/af_unix-do-not-pack-creds-for-dying-process: Refresh. - patches.kabi/revert-rtnetlink-Fix-problem-with-buffer-allocation.patch: Refresh. - patches.kabi/revert-rtnetlink-fix-rtnl_calcit-and-rtnl_dump_ifinf.patch: Refresh. - patches.kabi/revert-tcp-call-tcp_replace_ts_recent-from-tcp_ack.patch: Revert "tcp: call tcp_replace_ts_recent() from tcp_ack()". - patches.fixes/TTY-do-not-update-atime-mtime-on-read-write.patch: Delete. - patches.fixes/TTY-fix-atime-mtime-regression.patch: Delete.- Linux 3.0.75 (bnc#806980 bnc#816443 CVE-2013-1796 CVE-2013-1797 CVE-2013-1798). - patches.rpmify/revert-can-sja1000-fix-handling-on-dt-properties-on-.patch: Revert "can: sja1000: fix handling on dt properties on little endian systems". - patches.rpmify/s390-move-dummy-io_remap_pfn_range-to-asm-pgtable.h.patch: s390: move dummy io_remap_pfn_range() to asm/pgtable.h. - patches.arch/kvm-introduce-kvm_read_guest_cached.patch: Refresh. - patches.suse/btrfs-8120-return-error-of-btrfs_update_inode-to-caller.patch: Refresh. - patches.arch/kvm-convert-msr_kvm_system_time-to-use-gfn_to_hva_cache_init.patch: Delete. - patches.arch/kvm-fix-bounds-checking-in-ioapic-indirect-register-read.patch: Delete. - patches.arch/kvm-fix-for-buffer-overflow-in-handling-of-msr_kvm_system_time.patch: Delete. - patches.kernel.org/0011-Revert-sysfs-fix-race-between-readdir-and-lseek.patch: Delete. - patches.suse/Revert-8021q-fix-a-potential-use-after-free.patch: Delete.- patches.suse/mm-speedup-in-__early_pfn_to_nid.patch: mm: speedup in __early_pfn_to_nid (bnc#810624).- patches.fixes/TTY-fix-atime-mtime-regression.patch: TTY: fix atime/mtime regression (bnc#815745).- patches.drivers/sd_dif-problem-with-verify-of-type-1-protection-information: sd_dif: problem with verify of type 1 protection information (PI) (bnc#817010).- patches.fixes/sched-harden-rq-rt-usage-accounting.patch: Sched: harden rq rt usage accounting (bnc#769685, bnc#788590).- disable patches.fixes/TTY-do-not-update-atime-mtime-on-read-write.patch as it breaks 'w' utility (bnc#797175). Waiting for upstream opinion.- patches.kernel.org/revert-dmi_scan-changes-1.patch: Revert "dmi_scan: fix missing check for _DMI_ signature in smbios_present()". - patches.kernel.org/revert-dmi_scan-changes-2.patch: Revert "drivers/firmware/dmi_scan.c: fetch dmi version from SMBIOS if it exists". - patches.kernel.org/revert-dmi_scan-changes-3.patch: Revert "drivers/firmware/dmi_scan.c: check dmi version when get system uuid".- patches.fixes/rcu-Avoid-spurious-RCU-CPU-stall-warnings.patch: rcu: Avoid spurious RCU CPU stall warnings (bnc#816586). - patches.fixes/rcu-Dump-local-stack-if-cannot-dump-all-CPUs-stacks.patch: rcu: Dump local stack if cannot dump all CPUs' stacks (bnc#816586). - patches.fixes/rcu-Fix-detection-of-abruptly-ending-stall.patch: rcu: Fix detection of abruptly-ending stall (bnc#816586). - patches.fixes/rcu-Suppress-NMI-backtraces-when-stall-ends-before-dump.patch: rcu: Suppress NMI backtraces when stall ends before dump (bnc#816586).- patches.kernel.org/0011-Revert-sysfs-fix-race-between-readdir-and-lseek.patch: [PATCH 3.0-stable] Revert "sysfs: fix race between readdir and lseek" (bnc#816443).- patches.suse/Revert-8021q-fix-a-potential-use-after-free.patch: Revert "8021q: fix a potential use-after-free".- Update Xen patches to 3.0.74.- patches.suse/btrfs-1013-don-t-re-enter-when-allocating-a-chunk.patch: Btrfs: don't re-enter when allocating a chunk (FATE#312888). - patches.suse/btrfs-1019-save-us-a-read_lock.patch: Btrfs: save us a read_lock (FATE#312888). - patches.suse/btrfs-1026-Check-CAP_DAC_READ_SEARCH-for-btrfs_IOC_INO_PA.patch: Btrfs: Check CAP_DAC_READ_SEARCH for BTRFS_IOC_INO_PATHS (FATE#312888). - patches.suse/btrfs-1038-remove-unused-fs_info-from-btrfs_decode_error.patch: btrfs: remove unused fs_info from btrfs_decode_error() (FATE#312888). - patches.suse/btrfs-1039-handle-null-fs_info-in-btrfs_panic.patch: btrfs: handle null fs_info in btrfs_panic() (FATE#312888). - patches.suse/btrfs-1042-fix-varargs-in-__btrfs_std_error.patch: btrfs: fix varargs in __btrfs_std_error (FATE#312888). - patches.suse/btrfs-1056-fix-the-race-between-bio-and-btrfs_stop_worker.patch: Btrfs: fix the race between bio and btrfs_stop_workers (FATE#312888). - patches.suse/btrfs-1097-fix-NULL-pointer-after-aborting-a-transaction.patch: Btrfs: fix NULL pointer after aborting a transaction (FATE#312888). - patches.suse/btrfs-8195-fix-infinite-loop-when-we-abort-on-mount.patch: Btrfs: fix infinite loop when we abort on mount.- patches.suse/btrfs-8024-workaround-for-cleaner-deadlock.patch: Delete. - patches.suse/btrfs-8077-stop-defrag-the-files-automatically-when-doin-.patch: Refresh. - patches.suse/btrfs-8094-flush-all-the-dirty-pages-if-try_to_writeback_.patch: Refresh. - patches.suse/btrfs-8095-use-writeback_inodes_sb-_nr-_if_idle.patch: Refresh.- patches.suse/btrfs-0992-don-t-try-to-notify-udev-about-missing-devices.patch: btrfs: don't try to notify udev about missing devices (FATE#312888). - patches.suse/btrfs-1064-add-cancellation-points-to-defrag.patch: btrfs: add cancellation points to defrag (FATE#312888). - patches.suse/btrfs-1072-define-btrfs_MAGIC-as-a-u64-value.patch: btrfs: define BTRFS_MAGIC as a u64 value (FATE#312888). - patches.suse/btrfs-1089-make-sure-NODATACOW-also-gets-NODATASUM-set.patch: Btrfs: make sure NODATACOW also gets NODATASUM set (FATE#312888). - patches.suse/btrfs-1110-enforce-min_bytes-parameter-during-extent-allo.patch: Btrfs: enforce min_bytes parameter during extent allocation (FATE#312888). - patches.suse/btrfs-1116-build-up-error-handling-for-merge_reloc_roots.patch: Btrfs: build up error handling for merge_reloc_roots (FATE#312888). - patches.suse/btrfs-1117-free-all-recorded-tree-blocks-on-error.patch: Btrfs: free all recorded tree blocks on error (FATE#312888). - patches.suse/btrfs-1118-do-not-BUG_ON-in-prepare_to_reloc.patch: Btrfs: do not BUG_ON in prepare_to_reloc (FATE#312888). - patches.suse/btrfs-1119-do-not-BUG_ON-on-aborted-situation.patch: Btrfs: do not BUG_ON on aborted situation (FATE#312888). - patches.suse/btrfs-1130-handle-a-bogus-chunk-tree-nicely.patch: Btrfs: handle a bogus chunk tree nicely (FATE#312888). - patches.suse/btrfs-1143-don-t-drop-path-when-printing-out-tree-errors-.patch: Btrfs: don't drop path when printing out tree errors in scrub (FATE#312888). - patches.suse/btrfs-8194-make-subvol-creation-deletion-killable-in-the-.patch: btrfs: make subvol creation/deletion killable in the early stages. - patches.suse/btrfs-8204-abort-unlink-trans-in-missed-error-case.patch: btrfs: abort unlink trans in missed error case. - patches.suse/btrfs-8213-fix-reada-debug-code-compilation.patch: Btrfs: fix reada debug code compilation. - patches.suse/btrfs-8214-return-error-when-we-specify-wrong-start-to-de.patch: Btrfs: return error when we specify wrong start to defrag. - patches.suse/btrfs-8215-don-t-force-pages-under-writeback-to-finish-wh.patch: Btrfs: don't force pages under writeback to finish when aborting.- patches.suse/revert-some-random-changes: /dev/urandom returning EOF: trim down revert to not change kabi. (bnc#789359).- patches.drivers/alsa-sp3-pre-695-Yet-another-fix-for-broken-HSW-HDMI-pin: Refresh. Fix the invalid PCI SSID check (bnc#806404)- patches.fixes/tun-reserves-space-for-network-in-skb.patch: tun: reserves space for network in skb (bnc#803394).- Linux 3.0.74. - patches.kabi/revert-x86-mm-Patch-out-arch_flush_lazy_mmu_mode-whe.patch: Revert "x86, mm: Patch out arch_flush_lazy_mmu_mode() when running on bare metal".- Linux 3.0.73. - patches.suse/kdump-x86-remap-allocator: Delete.- Linux 3.0.72 (CVE-2010-3873 CVE-2011-4131 CVE-2011-4604 CVE-2011-4622 CVE-2012-1601 CVE-2012-2119 CVE-2012-2137 CVE-2012-4461 CVE-2012-5517 bnc#651219 bnc#730117 bnc#736149 bnc#738210 bnc#754898 bnc#758243 bnc#767612 bnc#787821 bnc#789235). - patches.kabi/kabi-protect-struct-tracer.patch: kABI: protect struct tracer. - patches.arch/005-efi_pstore_fixes.patch: Refresh. - patches.drivers/0001-add-firmware-update-for-Atheros-0cf3-311f.patch: Refresh. - patches.drivers/0001-enable-Atheros-0cf3-311e-for-firmware-upload.patch: Refresh. - patches.suse/btrfs-0448-fix-block_rsv-and-space_info-lock-ordering.patch: Refresh. - patches.drivers/drm-i915-don-t-set-unpin_work-if-vblank_get-fails: Delete. - patches.fixes/batman-adv-Only-write-requested-number-of-byte-to-us.patch: Delete. - patches.fixes/batman-adv-bat_socket_read-missing-checks.patch: Delete. - patches.fixes/kvm-KVM-Clean-up-error-handling-during-VCPU-creation.patch: Delete. - patches.fixes/kvm-KVM-Ensure-all-vcpus-are-consistent-with-in-kernel-i.patch: Delete. - patches.fixes/kvm-KVM-x86-Prevent-starting-PIT-timers-in-the-absence-o.patch: Delete. - patches.fixes/kvm-invalid-opcode-oops-on-SET_SREGS-with-OSXSAVE-bi.patch: Delete. - patches.fixes/kvm-set-irq.patch: Delete. - patches.fixes/macvtap-zerocopy-validate-vectors-before-building-sk.patch: Delete. - patches.fixes/mm-hotplug-correctly-add-zone-to-other-nodes-list.patch: Delete. - patches.fixes/nfs-bitmap-fix-fix: Delete. - patches.fixes/nfs-bitmap-size.fix: Delete. - patches.fixes/x25-Handle-undersized-fragmented-skbs.patch: Delete. - patches.fixes/x25-Validate-incoming-call-user-data-lengths.patch: Delete. - patches.rpmify/ia64-sa_restorer-fix.patch: Delete.- patches.suse/revert-tytsos-random-changes: /dev/urandom returning EOF (bnc#789359).- patches.fixes/mm-make-snapshotting-pages-for-stable-writes-a-per-bio-operation.patch: mm: Make snapshotting pages for stable writes a per-bio operation - patches.suse/fs-knows-MAY_APPEND.diff Refresh Only enable stable page writes when necessary (bnc#807517).- patches.drivers/ixgbe-Address-fact-that-RSC-was-not-setting-GSO-size.patch: Fix bnc#802712- patches.suse/SUSE-bootsplash: Refresh. Fix build error without CONFIG_BOOTSPLASH- patches.suse/SUSE-bootsplash: Refresh. Fix bootsplash breakage due to 3.0.67 stable fix (bnc#813963)- patches.fixes/drivers-base-memory.c-fix-memory_dev_init-long-delay.patch: drivers/base/memory.c: fix memory_dev_init() long delay (bnc#804609). - patches.fixes/init-mm-reschedule-when-initialising-large-numbers-of-sections.patch: Superseded by by the above patch.- patches.rpmify/mtd-drop-physmap_configure.patch: mtd: drop physmap_configure (bnc#809375).- patches.kernel.org/patch-3.0.70-71: More upstream commit id.- patches.kernel.org/patch-3.0.70-71: Add more upstream commit ids.- patches.drivers/0001-Bluetooth-btusb-hide-more-usb_submit_urb-errors.patch: Bluetooth: btusb: hide more usb_submit_urb errors (bnc#812281).- patches.fixes/o2dlm-fix-NULL-pointer-dereference-in-o2dlm_blocking_ast_wrapper: o2dlm: fix NULL pointer dereference in o2dlm_blocking_ast_wrapper (bnc#806492)- patches.arch/s390-65-01-qeth-fix_wait_for_threads_deadlock.patch: qeth: fix qeth_wait_for_threads() deadlock for OSN devices (bnc#812315, LTC#90910).- patches.fixes/o2dlm-fix-NULL-pointer-dereference-in-o2dlm_blocking_ast_wrapper: Fix NULL pointer dereference in o2dlm_blocking_ast_wrapper (bnc#806492)- patches.fixes/mm-page_alloc-avoid-marking-zones-full-prematurely.patch: fix ALLOC_WMARK_MASK check (bnc#808166)- Linux 3.0.71. - CVE-2012-6549: kernel: isofs information leak via isofs_export_encode_fh function in fs/isofs/export.c (bnc#809903) - CVE-2012-6548: kernel: udf: information leak in udf_encode_fh function in fs/udf/namei.c (bnc#809902) - patches.fixes/netfilter-fix-sending-ICMPv6-on-netfilter-reassembly.patch: Refresh. - patches.kabi/kabi-ipv4-remove-inclusion.patch: kABI: ipv4, remove inclusion. - patches.drivers/drm-i915-bounds-check-execbuffer-relocation-count: Delete.- patches.suse/0001-pciehp-Ignore-missing-surprise-bit-on-some-hosts.patch: Fix dmi match table definition and missing space in printk (bnc#796412).- patches.drivers/fnic-fix-SGEs-limit.patch: fnic: Fix SGEs limit (bnc#807431).- patches.drivers/0001-USB-io_ti-Fix-NULL-dereference-in-chase_port.patch: USB: io_ti: Fix NULL dereference in chase_port() (bnc#806976, CVE-2013-1774).- patches.suse/0001-pciehp-Ignore-missing-surprise-bit-on-some-hosts.patch: pciehp: Ignore missing surprise bit on some hosts (bnc#796412).- patches.fixes/mm-block-optionally-snapshot-page-contents-to-provide-stable-pages-during-write.patch: Refresh - compile fix- Linux 3.0.70 (CVE-2013-1848 bnc#793139 bnc#797042 bnc#806431 bnc#809155 bnc#809748). - CVE-2013-0914: kernel: sa_restorer address space information leak (bnc#808827) - CVE-2013-2634/CVE-2013-2635: kernel: net - three info leaks in rtnl (bnc#810473) - patches.rpmify/ia64-sa_restorer-fix.patch: ia64 sa_restorer fix. - patches.drivers/dcbnl-add-cee-notification: Refresh. - patches.drivers/dcbnl-aggregated-cee-get-operation: Refresh. - patches.suse/SoN-0010-netvm-Set-PF_MEMALLOC-as-appropriate-during-SKB-proc.patch: Refresh. - patches.drivers/0001-cdc-wdm-fix-buffer-overflow.patch: Delete. - patches.drivers/drm-i915-EBUSY-status-handling-added-to-i915_gem_fau: Delete. - patches.fixes/TTY-do-not-reset-master-s-packet-mode.patch: Delete. - patches.fixes/block-use-i_size_write-in-bd_set_size: Delete. - patches.fixes/ext3-Fix-format-string-issues.patch: Delete. - patches.fixes/loopdev-fix-a-deadlock: Delete.- patches.fixes/ipv6-Queue-fragments-per-interface-for-multicast-lin.patch: ipv6: Queue fragments per interface for multicast/link-local addresses (bnc#804220).- patches.fixes/netfilter-send-ICMPv6-message-on-fragment-reassembly.patch: netfilter: send ICMPv6 message on fragment reassembly timeout (bnc#773577). - patches.fixes/netfilter-fix-sending-ICMPv6-on-netfilter-reassembly.patch: netfilter: fix sending ICMPv6 on netfilter reassembly timeout (bnc#773577).- patches.fixes/jbd-clear-revoked-flag-on-buffers-before-a-new-trans.patch: jbd: clear revoked flag on buffers before a new transaction started (bnc#806395).- patches.fixes/xfrm6-count-extension-headers-into-payload-length.patch: xfrm6: count extension headers into payload length (bnc#794513).- patches.fixes/mm-page_alloc-avoid-marking-zones-full-prematurely.patch: mm: page_alloc: Avoid marking zones full prematurely after zone_reclaim() (Evict inactive pages when zone_reclaim is enabled (bnc#808166)).- patches.xen/1228-pciback-MSI-X-prepare.patch: pciback: notify hypervisor about devices intended to be assigned to guests. - patches.xen/xen-clockevents: Update (bnc#803712). - patches.xen/xen-ipi-per-cpu-irq: Update (bnc#803712). - patches.xen/xen3-patch-2.6.19: Update (bnc#809166). - Update Xen patches to 3.0.68.- patches.fixes/st-take-additional-queue-ref-in-st_probe.patch: st: Take additional queue ref in st_probe (bnc#801038, bnc#788826).- Update patches to what was accepted upstream. - patches.arch/kvm-convert-msr_kvm_system_time-to-use-gfn_to_hva_cache_init.patch: Refresh. - patches.arch/kvm-fix-for-buffer-overflow-in-handling-of-msr_kvm_system_time.patch: Refresh.- patches.drivers/0001-drivers-xhci-fix-incorrect-bit-test.patch: drivers: xhci: fix incorrect bit test (bnc#714604).- patches.fixes/xfrm-remove-unused-xfrm4_policy_fini.patch: xfrm: remove unused xfrm4_policy_fini() (bnc#801717). - patches.fixes/xfrm-make-gc_thresh-configurable-in-all-namespaces.patch: xfrm: make gc_thresh configurable in all namespaces (bnc#801717). - patches.kabi/kabi-use-net_generic-to-avoid-changes-in-struct-net.patch: kabi: use net_generic to avoid changes in struct net (bnc#801717).- Linux 3.0.69. - CVE-2013-1792 Linux kernel: KEYS: race with concurrent install_user_keyrings() (bnc#808358) - patches.fixes/md-raid0-fix-error-return-from-create_stripe_zones.patch: Delete.- patches.fixes/xfs-Fix-WARN_ON-delalloc-in-xfs_vm_releasepage.patch: xfs: Fix WARN_ON(delalloc) in xfs_vm_releasepage() (bnc#806631).- patches.drivers/alsa-sp2-hda-033-Support-mute-LED-on-HP-AiO-buttons: Refresh tags.- patches.fixes/block-use-i_size_write-in-bd_set_size: block: use i_size_write() in bd_set_size() (bnc#809748). - patches.fixes/loopdev-fix-a-deadlock: loopdev: fix a deadlock (bnc#809748).- patches.drivers/alsa-sp2-hda-033-Support-mute-LED-on-HP-AiO-buttons: ALSA: hda - Support mute LED on HP AiO buttons (bnc#808991).- patches.suse/supported-flag: fix mis-reported supported status (bnc#809493). - patches.suse/supported-flag-enterprise: Refresh.- patches.fixes/TTY-do-not-update-atime-mtime-on-read-write.patch: Refresh. - patches.fixes/kvm-invalid-opcode-oops-on-SET_SREGS-with-OSXSAVE-bi.patch: Refresh. - patches.fixes/nfs-bitmap-size.fix: Refresh. Update upstream tags.- patches.arch/kvm-convert-msr_kvm_system_time-to-use-gfn_to_hva_cache_init.patch: KVM: Convert MSR_KVM_SYSTEM_TIME to use gfn_to_hva_cache_init (bnc#806980 CVE-2013-1797). - patches.arch/kvm-fix-bounds-checking-in-ioapic-indirect-register-read.patch: KVM: Fix bounds checking in ioapic indirect register read (bnc#806980 CVE-2013-1798). - patches.arch/kvm-fix-for-buffer-overflow-in-handling-of-msr_kvm_system_time.patch: KVM: Fix for buffer overflow in handling of MSR_KVM_SYSTEM_TIME (bnc#806980 CVE-2013-1796). - patches.arch/kvm-introduce-kvm_read_guest_cached.patch: KVM: introduce kvm_read_guest_cached (bnc#806980).- patches.fixes/x86-numa-Add-constraints-check-for-nid-parameters.patch: x86/numa: Add constraints check for nid parameters (Cope with negative SRAT distances (bnc#807853)).- patches.drivers/0001-cdc-wdm-fix-buffer-overflow.patch: Refresh. Correct Git-Commit- patches.drivers/drm-i915-Periodically-sanity-check-power-management: drm/i915: Periodically sanity check power management (bnc#808307). - patches.drivers/drm-i915-bounds-check-execbuffer-relocation-count: drm/i915: bounds check execbuffer relocation count (bnc#808829,CVE-2013-0913).- series.conf: disabled patches.arch/s390-64-03-kernel-inc-phys-mem.patch due to excessive kabi break. (bnc#801720)- patches.fixes/ext3-Fix-format-string-issues.patch: ext3: Fix format string issues (bnc#809155, CVE-2013-1848).- patches.fixes/x86-64-Fix-memset-to-support-sizes-of-4Gb-and-above.patch: x86-64: Fix memset() to support sizes of 4Gb and above (Properly initialise memmap on large machines (bnc#802353)).- patches.drivers/alsa-sp3-pre-695-Yet-another-fix-for-broken-HSW-HDMI-pin: Refresh. Fix a superfluous incremental leading to the double array size (bnc#808966)- patches.fixes/mm-bdi-allow-block-devices-to-say-that-they-require-stable-page-writes.patch: bdi: allow block devices to say that they require stable page writes - patches.fixes/mm-only-enforce-stable-page-writes-if-the-backing-device-requires-it.patch: mm: only enforce stable page writes if the backing device requires it - patches.fixes/mm-block-optionally-snapshot-page-contents-to-provide-stable-pages-during-write.patch: block: optionally snapshot page contents to provide stable pages during write - patches.fixes/mm-9pfs-fix-filesystem-to-wait-for-stable-page-writeback.patch: 9pfs: fix filesystem to wait for stable page writeback - patches.fixes/mm-ocfs2-wait-for-page-writeback-to-provide-stable-pages.patch: ocfs2: wait for page writeback to provide stable pages - patches.fixes/mm-ubifs-wait-for-page-writeback-to-provide-stable-pages.patch: ubifs: wait for page writeback to provide stable pages - patches.suse/fs-knows-MAY_APPEND.diff Refresh Only enable stable page writes when required by underlying BDI (bnc#807517).- patches.arch/kvm-emulator-drop-rpl-check-from-linearize-function.patch: KVM: emulator: drop RPL check from linearize() function (bnc#754583).- patches.drivers/0001-USB-Don-t-use-EHCI-port-sempahore-for-USB-3.0-hubs.patch: USB: Don't use EHCI port sempahore for USB 3.0 hubs (bnc#807560). - patches.drivers/0002-USB-Prepare-for-refactoring-by-adding-extra-udev-che.patch: USB: Prepare for refactoring by adding extra udev checks (bnc#807560). - patches.drivers/0003-USB-Rip-out-recursive-call-on-warm-port-reset.patch: USB: Rip out recursive call on warm port reset (bnc#807560). - patches.drivers/0004-USB-Fix-connected-device-switch-to-Inactive-state.patch: USB: Fix connected device switch to Inactive state (bnc#807560). - patches.drivers/0005-modify-hub-to-detect-unplugs-in-all-states.patch: modify hub to detect unplugs in all states (bnc#807560).- patches.fixes/mlx4-correct-call-to_ib_ah_attr.patch: Correct calls to to_ib_ah_attr() (bnc#806847).- Linux 3.0.68 (bnc#768052 bnc#802153 bnc#804154 CVE-2013-0871). - CVE-2013-0311: kernel: vhost: fix length for cross region descriptor (bnc#804656) - patches.arch/x86_x2apic_use_phys_apic_mode_on_bios_request.patch: Delete. - patches.fixes/ptrace-ensure-arch_ptrace-ptrace_request-can-never-r.patch: Delete. - patches.fixes/ptrace-introduce-signal_wake_up_state-and-ptrace_sig.patch: Delete. - patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format: Delete. - patches.fixes/wake_up_process-should-be-never-used-to-wakeup-a-TAS.patch: Delete. - patches.rpmify/dca-check-against-empty-dca_domains-list-before-fix.patch: Delete. - patches.rpmify/s390-kvm-Fix-store-status-for-ACRS-FPRS-fix.patch: Delete.- patches.drivers/DRM-i915-On-G45-enable-cursor-plane-briefly-after-enabling-the-display-plane.patch: DRM/i915: On G45 enable cursor plane briefly after enabling the display plane (bnc #753371) [backported from drm-intel-fixes].- Update patches.suse/zcrypt-feed-hwrandom (bnc#806825). Allow zcrypt module unload even when the thread is blocked writing to a full random pool.- patches.drivers/0001-USB-move-usb_translate_errors-to-linux-usb.h.patch: USB: move usb_translate_errors to linux/usb (bnc#806908). - patches.drivers/0002-USB-add-EOPNOTSUPP-to-usb_translate_errors.patch: USB: add EOPNOTSUPP to usb_translate_errors (bnc#806908). - patches.suse/0001-cdc-wdm-add-helper-to-preserve-kABI.patch: Delete.- Linux 3.0.67 (bnc#578046, bnc#786814, bnc#806138, CVE-2013-1767, FATE#306952). - patches.rpmify/dca-check-against-empty-dca_domains-list-before-fix.patch: dca: check against empty dca_domains list before unregister provider fix. - patches.rpmify/s390-kvm-Fix-store-status-for-ACRS-FPRS-fix.patch: s390/kvm: Fix store status for ACRS/FPRS fix. - patches.kabi/kabi-restore-utf8s_to_utf16s.patch: kABI: restore utf8s_to_utf16s. - patches.suse/msft-hv-0247-Staging-hv-move-hyperv-code-out-of-staging-directo.patch: Refresh. - patches.suse/msft-hv-0344-Drivers-hv-Support-the-newly-introduced-KVP-messag.patch: Refresh. - patches.suse/msft-hv-0361-hyperv-Add-support-for-setting-MAC-from-within-guest.patch: Refresh. - patches.suse/msft-hv-0374-Drivers-hv-kvp-Support-the-new-IP-injection-messages.patch: Refresh. - patches.fixes/ext4-add-missing-kfree-on-error-return-path-in-add_new_gdb: Delete. - patches.fixes/ext4-free-resources-in-some-error-path-in-ext4_fill_super: Delete. - patches.fixes/mm-mmu_notifier-have-mmu_notifiers-use-a-global-SRCU-so-they-may-safely-schedule.patch: Delete. - patches.fixes/mm-mmu_notifier-make-the-mmu_notifier-srcu-static.patch: Delete. - patches.fixes/mm-mmu_notifier_unregister-NULL-Pointer-deref-and-multiple---release-callouts.patch: Delete. - patches.fixes/tmpfs-fix-use-after-free-of-mempolicy-object.patch: Delete. - patches.suse/msft-hv-0261-NLS-improve-UTF8-UTF16-string-conversion-routine.patch: Delete.- patches.drivers/0002-USB-cdc-wdm-sanitize-error-returns.patch: USB: cdc-wdm: sanitize error returns (bnc#806908). - patches.drivers/0003-USB-cdc-wdm-cleanup-error-codes.patch: USB: cdc-wdm: cleanup error codes (bnc#806908). - patches.suse/0001-cdc-wdm-add-helper-to-preserve-kABI.patch: cdc-wdm: add helper to preserve kABI (bnc#806908).- patches.drivers/cxgb4i-remove-the-scsi-host-device-when-removing-device: cxgb4i: Remove the scsi host device when removing device (bnc#722398)- patches.fixes/xprtrdma-transport-should-not-bug-check-when-a-dup-reply-is-received: The transport should not bug-check when a dup reply is received (bnc#763494).- patches.fixes/tmpfs-fix-use-after-free-of-mempolicy-object.patch: tmpfs: fix use-after-free of mempolicy object (bnc#806138, CVE-2013-1767).- patches.drivers/0001-cdc-wdm-fix-buffer-overflow.patch: Refresh. - patches.drivers/0004-USB-cdc-wdm-cannot-use-dev_printk-when-device-is-gon.patch: Refresh.- patches.drivers/0001-cdc-wdm-fix-buffer-overflow.patch: cdc-wdm: fix buffer overflow (bnc#806431).- patches.drivers/0004-USB-cdc-wdm-cannot-use-dev_printk-when-device-is-gon.patch: USB: cdc-wdm: cannot use dev_printk when device is gone (bnc#806469).- patches.drivers/0002-USB-cdc-wdm-fix-memory-leak.patch: USB: cdc-wdm: fix memory leak (bnc#806466).- patches.arch/s390-64-01-zfcpdump-diag308-loop.patch: ipl: Implement diag308 loop for zfcpdump (bnc#801720, LTC#88197). - patches.arch/s390-64-02-zfcpdump-hsa-attribute.patch: zcore: Add hsa file (bnc#801720, LTC#88198). - patches.arch/s390-64-03-kernel-inc-phys-mem.patch: kernel: support physical memory > 4TB (bnc#801720, LTC#88787). - patches.arch/s390-64-04-mm-mapfixed-crst-upgrade.patch: mm: Fix crst upgrade of mmap with MAP_FIXED (bnc#801720, LTC#88797).- patches.drivers/lpfc-Check-fc_block_scsi_eh-return-value-correctly-for-lpfc_abort_handler.patch: Check fc_block_scsi_eh return value correctly for lpfc_abort_handler (bnc#803674).- patches.fixes/md-fix-bug-in-handling-of-new_data_offset.patch: md: fix bug in handling of new_data_offset (bnc#805823).- patches.fixes/md-Avoid-OOPS-when-reshaping-raid1-to-raid0.patch: md: Avoid OOPS when reshaping raid1 to raid0 (Useful OOPS fix). - patches.fixes/md-fix-two-bugs-when-attempting-to-resize-RAID0-arra.patch: md: fix two bugs when attempting to resize RAID0 array (Useful BUG() fix). - patches.fixes/md-raid0-fix-error-return-from-create_stripe_zones.patch: md: raid0: fix error return from create_stripe_zones (useful bug fix).- patches.fixes/ext4-add-missing-kfree-on-error-return-path-in-add_new_gdb: ext4: add missing kfree() on error return path in add_new_gdb(). - patches.fixes/ext4-free-resources-in-some-error-path-in-ext4_fill_super: ext4: Free resources in some error path in ext4_fill_super.- patches.fixes/TTY-do-not-update-atime-mtime-on-read-write.patch: TTY: do not update atime/mtime on read/write (bnc#797175 CVE-2013-0160).- Linux 3.0.66. - CVE-2013-1772: kernel: Linux kernel: call_console_drivers() Function Log Prefix Stripping buffer overflow (bnc#806238)- patches.fixes/TTY-do-not-reset-master-s-packet-mode.patch: Refresh. - patches.rpmify/spi-mpc8xxx_spi-len.patch: Delete. Update upstream tags. The second one fixed differently.- patches.arch/intel_idle_add_haswell_support.patch: intel_idle: support Haswell (fate#313720).- patches.drivers/hp_accel-Add-a-new-PnP-ID-HPQ6007-for-new-HP-laptops: hp_accel: Add a new PnP ID HPQ6007 for new HP laptops (bnc#802445).- patches.fixes/nfs-umount-fix: Ensure NFS doesn't block on dead server during unmount (bnc#794529).- patches.fixes/block-disable-discard-request-merge-temporarily.patch: block: disable discard request merge temporarily (bnc#803067).Update HD-audio drivers for Nvidia/AMD HDMI and Haswell audio - patches.drivers/alsa-sp3-pre-002-Allow-multple-SPDIF-controls-per-codec: ALSA: hda: Allow multple SPDIF controls per codec (bnc#780977). - patches.drivers/alsa-sp3-pre-003-Virtualize-SPDIF-out-controls: ALSA: hda: Virtualize SPDIF out controls (bnc#780977). - patches.drivers/alsa-sp3-pre-004-Separate-generic-and-non-generic-implementa: ALSA: hda: Separate generic and non-generic implementations. - patches.drivers/alsa-sp3-pre-005-hdmi_eld_update_pcm_info-update-a-stream-in: ALSA: hda: hdmi_eld_update_pcm_info: update a stream in place. - patches.drivers/alsa-sp3-pre-006-HDMI-Support-codecs-with-fewer-cvts-than-pi: ALSA: hda: HDMI: Support codecs with fewer cvts than pins. - patches.drivers/alsa-sp3-pre-019-Add-snd_hda_get_conn_list-helper-function: ALSA: hda - Add snd_hda_get_conn_list() helper function. - patches.drivers/alsa-sp3-pre-122-Add-snd_hda_override_conn_list-helper-funct: ALSA: hda - Add snd_hda_override_conn_list() helper function. - patches.drivers/alsa-sp3-pre-305-Increase-the-max-number-of-coverters-pins-i: ALSA: hda - Increase the max number of coverters/pins in patch_hdmi.c (bnc#780977). - patches.drivers/alsa-sp3-pre-316-Check-non-snoop-in-a-single-place: ALSA: hda - Check non-snoop in a single place (bnc#801713). - patches.drivers/alsa-sp3-pre-319-Use-LPIB-Position-fix-for-Intel-SCH-Poulsbo: ALSA: HDA: Use LPIB Position fix for Intel SCH Poulsbo (bnc#801713). - patches.drivers/alsa-sp3-pre-336-hda_intel-Add-Oaktrail-identifiers: ALSA: hda_intel: Add Oaktrail identifiers (bnc#801713). - patches.drivers/alsa-sp3-pre-337-Use-LPIB-position-fix-for-Oaktrail: ALSA: HDA: Use LPIB position fix for Oaktrail (bnc#801713). - patches.drivers/alsa-sp3-pre-436-add-id-for-Atom-Cedar-Trail-HDMI-codec: ALSA: hda - add id for Atom Cedar Trail HDMI codec (bnc#801713). - patches.drivers/alsa-sp3-pre-514-Fix-detection-of-Creative-SoundCore3D-contr: ALSA: hda - Fix detection of Creative SoundCore3D controllers (bnc#762424). - patches.drivers/alsa-sp3-pre-527-add-power-states-information-in-proc: ALSA: hda - add power states information in proc (bnc#801713). - patches.drivers/alsa-sp3-pre-528-Show-D3cold-state-in-proc-files: ALSA: hda - Show D3cold state in proc files (bnc#801713). - patches.drivers/alsa-sp3-pre-529-check-supported-power-states: ALSA: hda - check supported power states (bnc#801713). - patches.drivers/alsa-sp3-pre-530-reduce-msleep-time-if-EPSS-power-states-sup: ALSA: hda - reduce msleep time if EPSS power states supported (bnc#801713). - patches.drivers/alsa-sp3-pre-531-check-proper-return-value: ALSA: hda - check proper return value (bnc#801713). - patches.drivers/alsa-sp3-pre-532-power-setting-error-check: ALSA: hda - power setting error check (bnc#801713). - patches.drivers/alsa-sp3-pre-560-Add-DeviceID-for-Haswell-HDA: ALSA: hda - Add DeviceID for Haswell HDA (bnc#801713). - patches.drivers/alsa-sp3-pre-561-add-Haswell-HDMI-codec-id: ALSA: hda - add Haswell HDMI codec id (bnc#801713). - patches.drivers/alsa-sp3-pre-562-Fix-driver-type-of-Haswell-controller-to-AZ: ALSA: hda - Fix driver type of Haswell controller to AZX_DRIVER_SCH. - patches.drivers/alsa-sp3-pre-563-Add-new-GPU-codec-ID-to-snd-hda: ALSA: hda - Add new GPU codec ID to snd-hda (bnc#780977). - patches.drivers/alsa-sp3-pre-596-hda_intel-Add-Device-IDs-for-Intel-Lynx-Point-L: Refresh. - patches.drivers/alsa-sp3-pre-621-HDMI-Fix-channel_allocation-array-wrong-order: ALSA: HDMI - Fix channel_allocation array wrong order (bnc#801713). - patches.drivers/alsa-sp3-pre-627-Avoid-BDL-position-workaround-when-no_perio: ALSA: hda - Avoid BDL position workaround when no_period_wakeup is set (bnc#801713). - patches.drivers/alsa-sp3-pre-635-Allow-to-pass-position_fix-0-explicitly: ALSA: hda - Allow to pass position_fix=0 explicitly (bnc#801713). - patches.drivers/alsa-sp3-pre-641-Add-another-pci-id-for-Haswell-board: ALSA: hda - Add another pci id for Haswell board. - patches.drivers/alsa-sp3-pre-647-force-use-of-SSYNC-bits: ALSA: hda - force use of SSYNC bits (bnc#801713). - patches.drivers/alsa-sp3-pre-648-use-LPIB-for-delay-estimation: ALSA: hda - use LPIB for delay estimation (bnc#801713). - patches.drivers/alsa-sp3-pre-649-add-PCI-identifier-for-Intel-5-Series-3400: ALSA: hda - add PCI identifier for Intel 5 Series/3400 (bnc#801713). - patches.drivers/alsa-sp3-pre-675-Add-workaround-for-conflicting-IEC958-contr: ALSA: hda - Add workaround for conflicting IEC958 controls (FATE#314311). - patches.drivers/alsa-sp3-pre-676-Stop-LPIB-delay-counting-on-broken-hardware: ALSA: hda - Stop LPIB delay counting on broken hardware (FATE#313695). - patches.drivers/alsa-sp3-pre-688-Always-turn-on-pins-for-HDMI-DP: ALSA: hda - Always turn on pins for HDMI/DP (FATE#313695). - patches.drivers/alsa-sp3-pre-689-bug-fix-for-invalid-connection-list-of-Hasw: ALSA: hda - bug fix for invalid connection list of Haswell HDMI codec pins (FATE#313695). - patches.drivers/alsa-sp3-pre-690-New-PCI-ID-for-Haswell-ULT: ALSA - HDA: New PCI ID for Haswell ULT (bnc#801713). - patches.drivers/alsa-sp3-pre-691-Release-assigned-pin-cvt-at-error-path: ALSA: hda - Release assigned pin/cvt at error path of hdmi_pcm_open() (bnc#801713). - patches.drivers/alsa-sp3-pre-692-Support-rereading-widgets-under-the-functio: ALSA: hda - Support rereading widgets under the function group (bnc#801713). - patches.drivers/alsa-sp3-pre-694-Add-fixup-for-Haswell-to-enable-all-pin: ALSA: hda - Add fixup for Haswell to enable all pin and convertor widgets (bnc#801713). - patches.drivers/alsa-sp3-pre-695-Yet-another-fix-for-broken-HSW-HDMI-pin: ALSA: hda - Yet another fix for broken HSW HDMI pin connections (bnc#801713). - patches.kabi/alsa-spdif-update-kabi-fixes: Fix kABI breakage due to HD-audio HDMI updates (bnc#780977).- Update Xen patches to 3.0.63. - patches.xen/1223-netback-count-requests-result.patch: netback: fix netbk_count_requests(). - patches.xen/xen3-mm-x86-mm-Check-if-PUD-is-large-when-validating-a-kernel-address.patch: x86/mm: Check if PUD is large when validating a kerneladdress (bnc#794805).- kabi: update reference files - Update reference module symbol versions. - commit f8098c6- Update reference module symbol versions.- patches.fixes/mm-mmu_notifier-have-mmu_notifiers-use-a-global-SRCU-so-they-may-safely-schedule.patch: mm: mmu_notifier: have mmu_notifiers use a global SRCU so they may safely schedule - patches.fixes/mm-mmu_notifier-make-the-mmu_notifier-srcu-static.patch: mm: mmu_notifier: make the mmu_notifier srcu static - patches.fixes/mm-mmu_notifier_unregister-NULL-Pointer-deref-and-multiple---release-callouts.patch: mmu_notifier_unregister NULL Pointer deref and multiple ->release() callouts - patches.fixes/mm-mmu_notifier-have-mmu_notifiers-use-a-global-SRCU-so-they-may-safely-schedule-kabi.patch: Have mmu_notifiers use SRCU so they may safely schedule kabi compatability - patches.fixes/Have-mmu_notifiers-use-SRCU-so-they-may-safely-schedule.patch: - patches.fixes/Have-mmu_notifiers-use-SRCU-so-they-may-safely-schedule-build-fix.patch: Delete, replace with upstream equivalent and add KABI workaround (bnc#578046, bnc#786814, FATE#306952).- patches.fixes/ptrace-ensure-arch_ptrace-ptrace_request-can-never-r.patch: Refresh.- patches.fixes/ptrace-ensure-arch_ptrace-ptrace_request-can-never-r.patch: ptrace: ensure arch_ptrace/ptrace_request can never race with SIGKILL (bnc#804154, CVE-2013-0871). - patches.fixes/ptrace-introduce-signal_wake_up_state-and-ptrace_sig.patch: ptrace: introduce signal_wake_up_state() and ptrace_signal_wake_up() (bnc#804154, CVE-2013-0871). - patches.fixes/wake_up_process-should-be-never-used-to-wakeup-a-TAS.patch: wake_up_process() should be never used to wakeup a TASK_STOPPED/TRACED task (bnc#804154, CVE-2013-0871).- Linux 3.0.65 (bnc#794805). - patches.fixes/mm-x86-mm-Check-if-PUD-is-large-when-validating-a-kernel-address.patch: Delete.- Linux 3.0.64 (bnc#799209 bnc#801782). - patches.drivers/0188-tg3-Migrate-phy-preprocessor-defs-to-system-defs.patch: Refresh. - patches.drivers/tg3-fix-link-down-notify-failure-when-eee-disabled: Refresh. - patches.kabi/revert-net-fix-NULL-dereferences-in-check_peer_redir.patch: Refresh. - patches.fixes/bridge-Pull-ip-header-into-skb-data-before-looking-i.patch: Delete. - patches.fixes/kernel-resource.c-fix-stack-overflow-in-__reserve_re.patch: Delete.- patches.fixes/ipv6-dont-send-packet-to-big-messages-to-self.patch: ipv6: Don't send packet to big messages to self (bnc#786150).- patches.drivers/hpwdt_allow_kdump_by_default.patch: hpwdt: Unregister NMI events on exit (bnc#777746). - patches.drivers/hpwdt_only_byte_reads_writes.patch: Refresh.- patches.fixes/mm-x86-mm-Check-if-PUD-is-large-when-validating-a-kernel-address.patch: x86/mm: Check if PUD is large when validating a kernel address (bnc#794805).- patches.drivers/ata-Fix-DVD-not-dectected-at-some-Haswell-platforms.patch: ata: Fix DVD not dectected at some Haswell platforms (bnc#792674).- config: add missing modules brcmsmac and rt2800pci These modules are needed as replacements for modules present in 11.4 kernel but not available in 3.0: - brcm80211 for PCIe wireless adapters with Broadcom IEEE802.11n SoftMac chipset - rt2860sta for wireless adapters with Ralink 2860/3090 chipsets Refresh of config files for 3.0.58 also removes uas module (USB attached SCSI) which wouldn't build anyway as it is marked broken because of bko#51031. - commit 99ca348- config: add modules brcmsmac and rt2800pci to replace removed rcm80211 and rt2860sta.- patches.fixes/printk-fix-softlockups-during-heavy-printing.patch: Avoid softlockups in printk (bnc#744692, bnc#789311).- patches.fixes/af_unix-do-not-pack-creds-for-dying-process: Do not pack credentials for dying processes (bnc#779577, bnc#803056). - Disable the following patches because of change in default behavior (bnc#803056) - patches.fixes/af_netlink-force-credentials-passing and - patches.fixes/af_unix-dnt-send-SCM_CREDENTIALS-by-default- patches.fixes/af_unix-do-not-pack-creds-for-dying-process: Do not pack credentials for dying processes (bnc#779577, bnc#803056). - patches.fixes/af_netlink-force-credentials-passing: Delete. - patches.fixes/af_unix-dnt-send-SCM_CREDENTIALS-by-default: Delete.- patches.fixes/xfs-punch-new-delalloc-blocks-out-of-failed-writes-i.patch: xfs: punch new delalloc blocks out of failed writes inside EOF (bnc#761849). - patches.fixes/xfs-xfs_sync_data-is-redundant.patch: xfs: xfs_sync_data is redundant (bnc#761849).- Linux 3.0.63.- patches.drivers/Intel-Centerton-03-sch_gpio.patch: Add GPIO support for Intel Centerton SOC (bnc#792793).- patches.drivers/Intel-Centerton-02-mfd-lpc_sch.patch: Add Multifunction Device support for Intel Centerton SOC (bnc#792793).- patches.drivers/Intel-Centerton-01-pci_ids.patch: Add Intel Legacy Block support for Intel Centerton SOC (bnc#792793).- patches.drivers/alsa-sp3-pre-693-Apply-mic-mute-LED-fixup-for-new-HP-laptops: ALSA: hda - Apply mic-mute LED fixup for new HP laptops (bnc#796418).- patches.kernel.org/patch-3.0.59-60: Update references (add bnc#799270).- patches.drivers/revert-libata-implement-on-demand-hpa-unlocking: Fix references.- patches.suse/SoN-0025-mm-net-allow-some-SOCK_MEMALLOC-traffic-through.patch: mm: net: Allow some !SOCK_MEMALLOC traffic through even if skb_pfmemalloc (Allow GPFS network traffic despite PF_MEMALLOC misuse (bnc#786900)).- patches.fixes/kernel-resource.c-fix-stack-overflow-in-__reserve_re.patch: kernel/resource.c: fix stack overflow in __reserve_region_with_split() (bnc#801782).- Lustre enablement patches - patches.suse/block-add-dev_check_rdonly-and-friends-for-lustre-testing: block: add dev_check_rdonly and friends for Lustre testing (FATE#314679). - patches.suse/dcache-add-dcache_lustre_invalid-flag-for-lustre-to-handle-its-own-invalidation: dcache: Add DCACHE_LUSTRE_INVALID flag for Lustre to handle its own invalidation (FATE#314679). - patches.suse/lsm-export-security_inode_unlink: lsm: export security_inode_unlink (FATE#315679). - patches.suse/lustre-add-lustre-kernel-version: lustre: Add lustre kernel version (FATE#314679).- patches.fixes/st-fix-memory-leak-with-1mb-tape-i-o.patch: st: fix memory leak with >1MB tape I/O (bnc#798921).- patches.fixes/proc-enable-writing-to-proc-pid-mem-revert.patch: Refresh.- patches.drivers/parport-release-io-region-properly.patch: Update upstream references.- patches.fixes/cifs-lower-default-wsize-when-unix-extensions-are-no.patch: cifs: lower default wsize when unix extensions are not used (bnc#799578).- patches.drivers/0001-ata_generic-Skip-is_intel_ider-check-when-ata_generi.patch: ata_generic: Skip is_intel_ider() check when ata_generic=1 is set (bnc#777616).- patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format: quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format (bnc#802153).- patches.xen/1215-vcpu-availability-field-width.patch: properly bound buffer access when parsing cpu/*/availability. - patches.xen/1219-netback-garbage-ring.patch: netback: shutdown the ring if it contains garbage (CVE-2013-0216 XSA-39 bnc#800280). - patches.xen/1220-netback-wrap-around.patch: netback: correct netbk_tx_err() to handle wrap around (CVE-2013-0216 XSA-39 bnc#800280). - patches.xen/1221-pciback-ratelimit.patch: pciback: rate limit error message from pciback_enable_msi() (CVE-2013-0231 XSA-43 bnc#801178). - patches.xen/1222-backends-cond-resched.patch: scsiback/usbback: move cond_resched() invocations to proper place. - Refresh other Xen patches.- patches.drivers/drm-i915-Implement-workaround-for-broken-CS-tlb-on-i830-845.patch: drm/i915: Implement workaround for broken CS tlb on i830/845 (bnc #758040).- Linux 3.0.62. - CVE-2013-0268: kernel: code exec via /dev/cpu/*/msr (bnc#802642)- patches.suse/suse-hv-Drivers-scsi-storvsc-Initialize-the-sglist.patch: Drivers: scsi: storvsc: Initialize the sglist.- patches.suse/0001-elousb-really-long-delays-for-broken-devices.patch: elousb: really long delays for broken devices (bnc#795269).- patches.drivers/0001-xhci-Fix-conditional-check-in-bandwidth-calculation.patch: xhci: Fix conditional check in bandwidth calculation (bnc#795961).- patches.drivers/0001-xHCI-Fix-TD-Size-calculation-on-1.0-hosts.patch: xHCI: Fix TD Size calculation on 1.0 hosts (bnc#795957).- patches.drivers/0001-From-c52804a472649b2e5005342308739434cbd51119-Mon-Se.patch: xhci: avoid "dead ports", add roothub port polling (bnc#799197).- patches.drivers/alsa-sp2-hda-032-Fix-non-snoop-page-handling: ALSA: hda - Fix non-snoop page handling (bnc#800701).- patches.drivers/0006-USB-Handle-warm-reset-failure-on-empty-port.patch: USB: Handle warm reset failure on empty port (bnc#799926).- patches.drivers/0005-USB-Ignore-port-state-until-reset-completes.patch: USB: Ignore port state until reset completes (bnc#799926).- patches.drivers/0003-From-41e7e056cdc662f704fa9262e5c6e213b4ab45dd-Mon-Se.patch: Allow USB 3.0 ports to be disabled (bnc#799926).- patches.drivers/0002-USB-Ignore-xHCI-Reset-Device-status.patch: USB: Ignore xHCI Reset Device status (bnc#799926).- patches.drivers/0001-USB-Handle-auto-transition-from-hot-to-warm-reset.patch: USB: Handle auto-transition from hot to warm reset (bnc#799926).- patches.fixes/ocfs2-use-spinlock-irqsave-for-downconvert-lock.patch: Update references (bnc#795928).- patches.arch/x86-pci-Increase-the-number-of-iommus-supported-to-be-MAX_IO_APICS.patch: Refresh.- Linux 3.0.61 (bnc#776787). - patches.kernel.org/revert-PCI-Allow-pcie_aspm-force-even-when-FADT-indi.patch: Revert "PCI: Allow pcie_aspm=force even when FADT indicates it is unsupported". - patches.fixes/sd-init_sd-reshuffle.patch: Delete.- Linux 3.0.60 (bnc#799275, LTC#87978). - patches.arch/s390-63-02-sched-clock.patch: Delete.- Linux 3.0.59 (bnc#793671). - patches.drivers/USB3-0128-usbcore-refine-warm-reset-logic.patch: Refresh. - patches.drivers/USB3-0131-USB-When-hot-reset-for-USB3-fails-try-warm-reset.patch: Refresh. - patches.drivers/qla2xxx-0003-Code-changes-to-support-new-dynamic-logging.patch: Refresh. - patches.kabi/revert-rtnetlink-Fix-problem-with-buffer-allocation.patch: Revert "rtnetlink: Fix problem with buffer allocation". - patches.kabi/revert-rtnetlink-fix-rtnl_calcit-and-rtnl_dump_ifinf.patch: Revert "rtnetlink: fix rtnl_calcit() and rtnl_dump_ifinfo()". - patches.drivers/rtnetlink-compute-and-store-minimum-ifinfo-dump-size: Delete. - patches.fixes/thp-memcg-split-hugepage-for-memcg-oom-on-cow.patch: Delete.- patches.drivers/e1000e-fix-tx-hang-recovery: e1000e: 82571 Fix Tx Data Corruption during Tx hang recovery (bnc#790867).- patches.fixes/kvm-set-irq.patch: KVM: Fix buffer overflow in kvm_set_irq() (bnc#767612 CVE-2012-2137).- patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch: x86: Hyper-V: register clocksource only if its advertised (bnc#792500).- patches.suse/btrfs-8202-Fix-typo-in-fs-btrfs.patch: Btrfs: Fix typo in fs/btrfs. - patches.suse/btrfs-8204-reset-path-lock-state-to-zero.patch: Btrfs: reset path lock state to zero. - patches.suse/btrfs-8205-fix-off-by-one-in-lseek.patch: Btrfs: fix off-by-one in lseek. - patches.suse/btrfs-8206-fix-btrfs_cont_expand-freeing-IS_ERR-em.patch: btrfs: fix btrfs_cont_expand() freeing IS_ERR em. - patches.suse/btrfs-8207-update-timestamps-on-truncate.patch: btrfs: update timestamps on truncate(). - patches.suse/btrfs-8208-put-csums-on-the-right-ordered-extent.patch: Btrfs: put csums on the right ordered extent. - patches.suse/btrfs-8194-fix-permissions-of-empty-files-not-affected-by.patch: Delete.- patches.fixes/xfrm-fix-freed-block-size-calculation-in-xfrm_policy.patch: xfrm: fix freed block size calculation in xfrm_policy_fini() (bnc#798960).- patches.fixes/bonding-in-balance-rr-mode-set-curr_active_slave-onl.patch: bonding: in balance-rr mode, set curr_active_slave only if it is up (bnc#789648).- patches.arch/s390-63-01-irq-stat.patch: kernel: broken interrupt statistics (bnc#799275, LTC#87893). - patches.arch/s390-63-02-sched-clock.patch: kernel: sched_clock() overflow (bnc#799275, LTC#87978).- patches.fixes/mm-call-sleep_on_page_killable-in-__wait_on_page_locked_killable.patch: mm: call sleep_on_page_killable from __wait_on_page_locked_killable (bnc#799909).- patches.fixes/TTY-do-not-reset-master-s-packet-mode.patch: TTY: do not reset master's packet mode (bnc#797042).- patches.suse/kbuild-record-built-in-o: Avoid using printf(1) in Makefile.build - rpm/built-in-where.mk: Do not rely on the *.parts file to be newline-separated.- Update DASD blk_timeout patches after review from IBM (FATE#311379): * patches.suse/blk-timeout-no-round: Refresh. * patches.suse/dasd-Abort-all-requests-from-ioctl.patch: dasd: Abort all requests from ioctl (FATE#311379). * patches.suse/dasd-Disable-block-timeouts-per-default.patch: dasd: Disable block timeouts per default (FATE#311379). * patches.suse/dasd-Reduce-amount-of-messages-for-specific-errors.patch: dasd: Reduce amount of messages for specific errors (FATE#311379). * patches.suse/dasd-Rename-ioctls.patch: dasd: Rename ioctls (FATE#311379). * patches.suse/dasd-check-blk_noretry_request-in-dasd_times_out.patch: dasd: check blk_noretry_request in dasd_times_out() (FATE#311379). * patches.suse/dasd-lock-ccw-queue-in-dasd_times_out.patch: dasd: lock ccw queue in dasd_times_out() (FATE#311379). * patches.suse/dasd-make-DASD_FLAG_TIMEOUT-setting-more-robust.patch: dasd: make DASD_FLAG_TIMEOUT setting more robust (FATE#311379). * patches.suse/dasd-rename-flag-to-abortall.patch: dasd: rename flag to 'abortall' (FATE#311379). * patches.suse/dasd-fail-all-requests-on-dasd_times_out.patch: Delete. * patches.suse/dasd-set-and-unset-TIMEOUT-flag.patch: Delete.- patches.drivers/lpfc-8.3.32-Correct-successful-aborts-returning-error-status.patch: lpfc 8.3.32: Correct successful aborts returning error status (bnc#793593). - patches.drivers/lpfc-8.3.34-Correct-lock-handling-to-eliminate-reset-escalation-on-io-abort.patch: lpfc 8.3.34: Correct lock handling to eliminate reset escalation on I/O abort (bnc#793593). - patches.drivers/lpfc-8.3.34-Streamline-fcp-underrun-message-printing.patch: lpfc 8.3.34: Streamline fcp underrun message printing (bnc#793593). - patches.drivers/lpfc-8.3.5.48.3p-update: Update lpfc version for 8.3.5.48.3p driver release (bnc#793593).- patches.fixes/bug-795354_Allow-sec-none-mounts-in-certain-cases.patch: NFS: Allow sec=none mounts in certain cases (bnc#795354).- patches.fixes/bridge-Pull-ip-header-into-skb-data-before-looking-i.patch: bridge: Pull ip header into skb->data before looking into ip header (bnc#799209).- patches.suse/btrfs-8191-use-existing-align-macros-in-btrfs_allocate.patch: Btrfs: use existing align macros in btrfs_allocate() - patches.suse/btrfs-8192-fix-off-by-one-error-of-the-reserved-size-of-b.patch: Btrfs: fix off-by-one error of the reserved size of btrfs_allocate() - patches.suse/btrfs-8193-add-fiemap-s-flag-check.patch: Btrfs: add fiemap's flag check - patches.suse/btrfs-8194-fix-permissions-of-empty-files-not-affected-by.patch: Btrfs: fix permissions of empty files not affected by umask - patches.suse/btrfs-8195-don-t-auto-defrag-a-file-when-doing-directIO.patch: Btrfs: don't auto defrag a file when doing directIO - patches.suse/btrfs-8196-fix-wrong-return-value-of-btrfs_truncate_page.patch: Btrfs: fix wrong return value of btrfs_truncate_page() - patches.suse/btrfs-8197-Notify-udev-when-removing-device.patch: btrfs: Notify udev when removing device - patches.suse/btrfs-8199-fix-permissions-of-empty-files-not-affected-by.patch: Btrfs: fix permissions of empty files not affected by umask - patches.suse/btrfs-8200-fix-hash-overflow-handling.patch: Btrfs: fix hash overflow handling - patches.suse/btrfs-8201-do-not-delete-a-subvolume-which-is-in-a-R-O-su.patch: Btrfs: do not delete a subvolume which is in a R/O subvolume - patches.suse/fs-fix-how-we-clear-DCACHE_NEED_LOOKUP.patch: Delete.- Fix vanilla builds by moving reverts to patches.kabi/- Linux 3.0.58 (bnc#791853 bnc#791904). - patches.kabi/0001-Revert-tcp-RFC-5961-5.2-Blind-Data-Injection-Attack-.patch: Revert "tcp: RFC 5961 5.2 Blind Data Injection Attack Mitigation". - patches.kabi/0002-Revert-tcp-tcp_replace_ts_recent-should-not-be-calle.patch: Revert "tcp: tcp_replace_ts_recent() should not be called from tcp_validate_incoming()". - patches.kabi/0003-Revert-tcp-refine-SYN-handling-in-tcp_validate_incom.patch: Revert "tcp: refine SYN handling in tcp_validate_incoming". - patches.kabi/0004-Revert-tcp-implement-RFC-5961-4.2.patch: Revert "tcp: implement RFC 5961 4.2". - patches.kabi/0005-Revert-tcp-implement-RFC-5961-3.2.patch: Revert "tcp: implement RFC 5961 3.2". - patches.kabi/revert-bonding-Bonding-driver-does-not-consider-the-.patch: kABI: Revert "bonding: Bonding driver does not consider the gso_max_size/gso_max_segs setting of slave devices.". - patches.drivers/0001-xhci-Add-Lynx-Point-LP-to-list-of-Intel-switchable-h.patch: Delete. - patches.fixes/mm-limit-mmu_gather-batching-to-fix-soft-lockups-on-.patch: Delete.- patches.fixes/dm-mpath-only-retry-ioctl-when-no-paths-if-queue_if_.patch: Fixup initialization.- patches.fixes/dm-mpath-allow-ioctls-to-trigger-pg-init.patch: dm mpath: allow ioctls to trigger pg init (bnc#787348). - patches.fixes/dm-mpath-only-retry-ioctl-when-no-paths-if-queue_if_.patch: dm mpath: only retry ioctl when no paths if queue_if_no_path set (bnc#787348).- patches.suse/btrfs-8186-continue-after-abort-during-snapshot-drop.patch: extend the error condition.- patches.suse/btrfs-8168-kill-obsolete-arguments-in-btrfs_wait_ordered_.patch: Refresh.- patches.suse/btrfs-8094-flush-all-the-dirty-pages-if-try_to_writeback_.patch: remove call to btrfs_wait_ordered_extents to avoid potential deadlock.- patches.fixes/lib-radix-tree-fix-preload-vector-size.patch: radix-tree: fix preload vector size (bnc#763463).- Commit a60395f4 added LTC patchset #62, but the series.conf was not properly updated. This commit adds the correct references to series.conf (bnc#792656)- Another upstream throttle bugfix that never went to -stable. - patches.fixes/sched-rt-Unthrottle-rt-runqueues-in-__disable_runtime.patch: sched, rt: Unthrottle rt runqueues in __disable_runtime().- Add upstream group scheduling starvation fix. - patches.fixes/sched-rt-Fix-SCHED_RR-across-cgroups.patch: sched/rt: Fix SCHED_RR across cgroups.- Move fixes only present in the stable-rt tree to the parent tree. They belong in both. - patches.fixes/sched-Do-not-throttle-due-to-PI-boosting.patch: sched/rt: Do not throttle when PI boosting. - patches.fixes/sched-Keep-period-timer-ticking-when-throttling-active.patch: sched/rt: Keep period timer ticking when rt throttling is active. - patches.fixes/sched-prevent-idle-boost.patch: sched/rt: Prevent idle task boosting.- patches.fixes/mm-limit-mmu_gather-batching-to-fix-soft-lockups-on-.patch: mm: limit mmu_gather batching to fix soft lockups on !CONFIG_PREEMPT (bnc#791904). - patches.kabi/mm-limit-mmu_gather-batching-to-fix-soft-lockups-on-kabi.patch: kabi fixup for mm: limit mmu_gather batching to fix soft lockups on !CONFIG_PREEMPT (bnc#791904).- patches.fixes/mm-compaction-Abort-async-compaction-if-locks-are-contended-or-taking-too-long.patch: mm: compaction: Abort async compaction if locks are contended or taking too long. - patches.fixes/mm-compaction-abort-compaction-loop-if-lock-is-contended-or-run-too-long.patch: mm: compaction: abort compaction loop if lock is contended or run too long. - patches.fixes/mm-compaction-acquire-the-zone--lock-as-late-as-possible.patch: mm: compaction: acquire the zone->lock as late as possible. - patches.fixes/mm-compaction-acquire-the-zone--lru_lock-as-late-as-possible.patch: mm: compaction: acquire the zone->lru_lock as late as possible. - patches.fixes/mm-compaction-move-fatal-signal-check-out-of-compact_checklock_irqsave.patch: mm: compaction: move fatal signal check out of compact_checklock_irqsave. Reduce LRU and zone lock contention when compacting memory for THP (bnc#796823).- Refresh Xen patches after update to 3.0.57.- patches.kernel.org/patch-3.0.55-56: Update references (add bnc#778136).- Linux 3.0.57 (bnc#762158). - patches.drivers/0001-USB-OHCI-workaround-for-hardware-bug-retired-TDs-not.patch: Delete. - patches.drivers/USB3-0157-usb-xhci-refactor-xhci_pci_setup.patch: Refresh. - patches.fixes/tmpfs-distribute-interleave-better-across-nodes.patch: Refresh.- Linux 3.0.56 (bnc#758104 bnc#789993). - patches.fixes/workqueue_exit_rescuer_thread_as_TASK_RUNNING.patch: Delete. - patches.suse/scsi-silence-ioctl-warnings.patch: Delete. - patches.fixes/net-prevent-NULL-dereference-in-check_peer_redir.patch: Refresh. - patches.kabi/revert-net-fix-NULL-dereferences-in-check_peer_redir.patch: Refresh.- Linux 3.0.55.- Linux 3.0.54 (bnc#790935 bnc#745876 bnc#791498 fate#314145). - patches.arch/x86_amd_fam16h_microcode_fix.patch: Delete. - patches.arch/x86_thermal_throttle_avoid_fake_mces.patch: Delete. - patches.fixes/jbd-Fix-lock-ordering-bug-in-journal_unmap_buffer.patch: Delete.- patches.fixes/aio-make-kiocb-private-NULL-in-init_sync_kiocb: aio: make kiocb->private NUll in init_sync_kiocb() (bnc#794231).- patches.suse/btrfs-_add_reloc_root-error-push-up: Refresh. - patches.suse/btrfs-clean_tree_block-should-panic-on-error-and-return-void: Refresh. - patches.suse/btrfs-handle-EIO: Refresh. - patches.suse/btrfs-8119-fix-error-handling-in-__add_reloc_root.patch: Refresh.- patches.arch/s390-62-01-qeth_fix_retries_on_hardsetup.patch: qeth: Fix retry logic in hardsetup (bnc#792656,LTC#87080). - patches.arch/s390-62-02-netiucv_fix_device_naming.patch: netiucv: reinsert dev_alloc_name for device naming (bnc#792656,LTC#87086). - patches.arch/s390-62-03-qeth-mac-cb.patch: qeth: set new mac even if old mac is gone (2) (bnc#792656,LTC#87138).- patches.fixes/ocfs2-use-spinlock-irqsave-for-downconvert-lock.patch: ocfs2: use spinlock irqsave for downconvert lock.patch (bnc#795928).- patches.fixes/af_netlink-force-credentials-passing: af_netlink: force credentials passing (bnc#779577). - patches.fixes/af_unix-dnt-send-SCM_CREDENTIALS-by-default: af_unix: dont send SCM_CREDENTIALS by default (bnc#779577).- patches.fixes/sunrpc-increase-max-slot-table.patch: SUNRPC: increase maximum slots to use (bnc#775685).- patches.fixes/bio-allocation-failure-due-to-bio_get_nr_vecs.patch: bio allocation failure due to bio_get_nr_vecs() (bnc#792270). - patches.fixes/bio-don-t-overflow-in-bio_get_nr_vecs.patch: bio: don't overflow in bio_get_nr_vecs() (bnc#792270).- patches.suse/btrfs-handle-EIO: Refresh.- patches.fixes/NFS-fix-recent-breakage-to-NFS-error-handling.patch: NFS - fix recent breakage to NFS error handling (bnc#793104). - patches.fixes/md-close-remove-add-race: md: close race between removing and adding a device (bnc#787848).- patches.suse/btrfs-0441-don-t-return-EINTR.patch: Refresh. - patches.suse/btrfs-0450-avoid-deadlocks-from-GFP_KERNEL-allocations-du.patch: Refresh. - patches.suse/btrfs-0457-fix-race-in-reada.patch: Refresh. - patches.suse/btrfs-enospc-debugging-messages.patch: Refresh. - patches.suse/btrfs-handle-EIO: Refresh. - patches.suse/btrfs-update-message-levels.patch: Refresh.- patches.fixes/thp-memcg-split-hugepage-for-memcg-oom-on-cow.patch: thp, memcg: split hugepage for memcg oom on cow (bnc#793671).- patches.fixes/bonding-delete-migrated-IP-addresses-from-the-rlb-ha.patch: bonding: delete migrated IP addresses from the rlb hash table (bnc#729854).reorder btrfs patches to match 3.4 state - patches.suse/btrfs-0404-stop-silently-switching-single-chunks-to-raid0.patch: Refresh. - patches.suse/btrfs-0405-add-wrappers-for-working-with-alloc-profiles.patch: Refresh. - patches.suse/btrfs-0406-make-profile_is_valid-check-more-strict.patch: Refresh. - patches.suse/btrfs-0407-move-alloc_profile_is_valid-to-volumes.c.patch: Refresh. - patches.suse/btrfs-0408-add-get_restripe_target-helper.patch: Refresh. - patches.suse/btrfs-0409-add-__get_block_group_index-helper.patch: Refresh. - patches.suse/btrfs-0410-improve-the-logic-in-btrfs_can_relocate.patch: Refresh. - patches.suse/btrfs-0411-validate-target-profiles-only-if-we-are-going-.patch: Refresh. - patches.suse/btrfs-0412-allow-dup-for-data-chunks-in-mixed-mode.patch: Refresh. - patches.suse/btrfs-0413-fix-memory-leak-in-resolver-code.patch: Refresh. - patches.suse/btrfs-0414-fix-infinite-loop-in-btrfs_shrink_device.patch: Refresh. - patches.suse/btrfs-0415-actually-call-btrfs_init_lockdep.patch: Refresh. - patches.suse/btrfs-0417-fix-regression-in-scrub-path-resolving.patch: Refresh. - patches.suse/btrfs-0418-show-useful-info-in-space-reservation-tracepoi.patch: Refresh. - patches.suse/btrfs-0419-flush-out-and-clean-up-any-block-device-pages-.patch: Refresh. - patches.suse/btrfs-0420-fix-deadlock-during-allocating-chunks.patch: Refresh. - patches.suse/btrfs-0421-fix-race-between-direct-io-and-autodefrag.patch: Refresh. - patches.suse/btrfs-0422-fix-the-mismatch-of-page-mapping.patch: Refresh. - patches.suse/btrfs-0423-fix-recursive-defragment-with-autodefrag-optio.patch: Refresh. - patches.suse/btrfs-0424-add-a-check-to-decide-if-we-should-defrag-the-.patch: Refresh. - patches.suse/btrfs-0425-do-not-bother-to-defrag-an-extent-if-it-is-a-b.patch: Refresh. - patches.suse/btrfs-0426-update-to-the-right-index-of-defragment.patch: Refresh. - patches.suse/btrfs-0427-update-the-checks-for-mixed-block-groups-with-.patch: Btrfs: update the checks for mixed block groups with big metadata blocks (FATE#306586). - patches.suse/btrfs-0428-fix-eof-while-discarding-extents.patch: Refresh. - patches.suse/btrfs-0429-check-return-value-of-bio_alloc-properly.patch: Refresh. - patches.suse/btrfs-0430-add-missing-free_fs_devices.patch: (FATE#306586 FATE#306586). - patches.suse/btrfs-0431-retrurn-void-from-clear_state_bit.patch: Refresh. - patches.suse/btrfs-0432-avoid-possible-use-after-free-in-clear_extent_.patch: Refresh. - patches.suse/btrfs-0433-Make-free_ipath-deal-gracefully-with-NULL-poin.patch: Refresh. - patches.suse/btrfs-0434-don-t-call-free_extent_buffer-twice-in-iterate.patch: Refresh. - patches.suse/btrfs-0435-add-missing-read-locks-in-backref.c.patch: Refresh. - patches.suse/btrfs-0436-fix-max-chunk-size-check-in-chunk-allocator.patch: Refresh. - patches.suse/btrfs-0440-double-unlock-bug-in-error-handling.patch: Refresh. - patches.suse/btrfs-0441-don-t-return-EINTR.patch: Refresh. - patches.suse/btrfs-0442-fix-btrfs_ioctl_dev_info-crash-on-missing-devi.patch: Refresh. - patches.suse/btrfs-0444-fix-that-check_int_data-mount-option-was-ignor.patch: Refresh. - patches.suse/btrfs-0445-do-not-start-delalloc-inodes-during-sync.patch: Refresh. - patches.suse/btrfs-0446-fix-repair-code-for-RAID10.patch: Refresh. - patches.suse/btrfs-0447-Prevent-root_list-corruption.patch: Refresh. - patches.suse/btrfs-0448-fix-block_rsv-and-space_info-lock-ordering.patch: Refresh. - patches.suse/btrfs-0449-Fix-space-checking-during-fs-resize.patch: Refresh. - patches.suse/btrfs-0450-avoid-deadlocks-from-GFP_KERNEL-allocations-du.patch: Refresh. - patches.suse/btrfs-0451-reduce-lock-contention-during-extent-insertion.patch: Refresh. - patches.suse/btrfs-0452-Add-properly-locking-around-add_root_to_dirty_.patch: Refresh. - patches.suse/btrfs-0453-Fix-mismatching-struct-members-in-ioctl.h.patch: Refresh. - patches.suse/btrfs-0454-Fix-use-after-free-in-__btrfs_end_transaction.patch: btrfs: Fix use-after-free in __btrfs_end_transaction (FATE#306586). - patches.suse/btrfs-0455-use-commit-root-when-loading-free-space-cache.patch: Btrfs: use commit root when loading free space cache. - patches.suse/btrfs-0456-avoid-setting-d_op-twice.patch: Btrfs: avoid setting ->d_op twice (FATE#306586 bnc#731387). - patches.suse/btrfs-0457-fix-race-in-reada.patch: btrfs: fix race in reada (FATE#306586). - patches.suse/btrfs-0458-don-t-add-both-copies-of-DUP-to-reada-extent-t.patch: btrfs: don't add both copies of DUP to reada extent tree (FATE#306586). - patches.suse/btrfs-0459-do-not-mount-when-we-have-a-sectorsize-unequal.patch: Btrfs: do not mount when we have a sectorsize unequal to PAGE_SIZE (FATE#306586). - patches.suse/btrfs-0460-add-missing-unlocks-to-transaction-abort.patch: btrfs: add missing unlocks to transaction abort paths (FATE#306586). - patches.suse/btrfs-0462-avoid-sleeping-in-verify_parent_transid-while-.patch: Btrfs: avoid sleeping in verify_parent_transid while atomic (FATE#306586). - patches.suse/btrfs-8061-handle-errors-from-read_tree_block.patch: Refresh. - patches.suse/btrfs-8051-avoid-setting-d_op-twice.patch: Delete. - patches.suse/btrfs-8053-fix-race-in-reada.patch: Delete. - patches.suse/btrfs-8054-don-t-add-both-copies-of-DUP-to-reada-extent-t.patch: Delete. - patches.suse/btrfs-8063-error-handling-locking-fixup.patch: Delete. - patches.suse/btrfs-8064-Fix-use-after-free-in-__btrfs_end_transaction.patch: Delete. - patches.suse/btrfs-8065-do-not-mount-when-we-have-a-sectorsize-unequal.patch: Delete. - patches.suse/btrfs-8096-avoid-sleeping-in-verify_parent_transid-while-.patch: Delete.- patches.fixes/xfs-fix-re-use-of-ewouldblock-during-read-on-dm-mirror: xfs: Fix re-use of EWOULDBLOCK during read on dm-mirror (bnc#736255).move btrfs error handling patches to the right upstream sequence - patches.suse/btrfs-0418-show-useful-info-in-space-reservation-tracepoi.patch: Refresh. - patches.suse/btrfs-0441-don-t-return-EINTR.patch: Refresh. - patches.suse/btrfs-8014-add-new-ioctl-to-determine-size-of-compressed-.patch: Refresh. - patches.suse/btrfs-8018-use-irqsave-spinlocks-everywhere.patch: Refresh. - patches.suse/btrfs-8042-make-btrfs_truncate_inode_items-more-readable.patch: Refresh. - patches.suse/btrfs-async_thread-btrfs_stop_workers-should-return-void: Refresh. - patches.suse/btrfs-btrfs_destroy_ordered_extents-should-return-void: Refresh. - patches.suse/btrfs-btrfs_destroy_ordered_operations-should-return-void: Refresh. - patches.suse/btrfs-btrfs_truncate_item-should-return-void: Refresh. - patches.suse/btrfs-disallow-unequal-data-metadata-blocksize-for-m.patch: btrfs: disallow unequal data/metadata blocksize for mixed block groups (FATE#306586). - patches.suse/btrfs-drop-gfp_t-from-lock_extent: Refresh. - patches.suse/btrfs-enhance-superblock-sanity-checks.patch: Btrfs: enhance superblock sanity checks (FATE#306586 bnc#749651). - patches.suse/btrfs-handle-EIO: Refresh. - patches.suse/btrfs-8058-disallow-unequal-data-metadata-blocksize-for-m.patch: Delete. - patches.suse/btrfs-superblock-sanity-checks.patch: Delete.- patches.drivers/qla2xxx-Determine-the-number-of-outstanding-commands.patch: qla2xxx: Determine the number of outstanding commands based on available resources (bnc#782721). - patches.drivers/qla2xxx-Ramp-down-queue-depth-for-attached-SCSI-devi.patch: qla2xxx: Ramp down queue depth for attached SCSI devices (bnc#782721).- patches.drivers/drm-i915-EBUSY-status-handling-added-to-i915_gem_fau: drm/i915: EBUSY status handling added to i915_gem_fault() (bnc#793139). - patches.drivers/drm-i915-Only-clear-the-GPU-domains-upon-a-successfu: drm/i915: Only clear the GPU domains upon a successful finish (bnc#793139). - patches.drivers/drm-i915-always-use-RPNSWREQ-for-turbo-change-reques: drm/i915: always use RPNSWREQ for turbo change requests (bnc#793139). - patches.drivers/drm-i915-don-t-call-modeset_init_hw-in-i915_reset: drm/i915: don't call modeset_init_hw in i915_reset (bnc#793139). - patches.drivers/drm-i915-don-t-hang-userspace-when-the-gpu-reset-is-: drm/i915: don't hang userspace when the gpu reset is stuck (bnc#793139). - patches.drivers/drm-i915-don-t-trylock-in-the-gpu-reset-code: drm/i915: don't trylock in the gpu reset code (bnc#793139). - patches.drivers/drm-i915-re-init-modeset-hw-state-after-gpu-reset: drm/i915: re-init modeset hw state after gpu reset (bnc#793139).- patches.fixes/autofs4-fix-lockdep-splat-in-autofs: autofs4 - fix lockdep splat in autofs (bnc#792834).- patches.suse/btrfs-2000-sanitizing-fs_info-parts-1-5.patch: btrfs: sanitizing ->fs_info, parts 1-5. - patches.suse/btrfs-2001-make-open_ctree-return-int.patch: btrfs: make open_ctree() return int. - patches.suse/btrfs-2002-kill-pointless-reassignment-of-s_fs_info-in-bt.patch: btrfs: kill pointless reassignment of ->s_fs_info in btrfs_fill_super(). - patches.suse/btrfs-2003-merge-free_fs_info-calls-on-fill_super-failure.patch: btrfs: merge free_fs_info() calls on fill_super failures. - patches.suse/btrfs-2004-make-free_fs_info-call-kill_sb-unconditional.patch: btrfs: make free_fs_info() call ->kill_sb() unconditional. - patches.suse/btrfs-2005-consolidate-failure-exits-in-btrfs_mount-a-bit.patch: btrfs: consolidate failure exits in btrfs_mount() a bit. - patches.suse/btrfs-2006-let-s_fs_info-point-to-fs_info-not-root.patch: btrfs: let ->s_fs_info point to fs_info, not root... - patches.suse/btrfs-2007-take-allocation-of-tree_root-into-open_ctree.patch: btrfs: take allocation of ->tree_root into open_ctree(). - patches.suse/btrfs-8077-stop-defrag-the-files-automatically-when-doin-.patch: Refresh. - patches.suse/btrfs-8111-restore-restriper-state-on-all-mounts.patch: Refresh. - patches.suse/btrfs-8112-resume-balance-on-rw-re-mounts-properly.patch: Refresh. - patches.suse/btrfs-8169-don-t-do-anything-in-our-freeze_fs-and-unfreez.patch: Refresh. - patches.suse/btrfs-8185-don-t-allow-degraded-mount-if-too-many-devices.patch: Refresh. - patches.suse/btrfs-add-btrfs_panic: Refresh. - patches.suse/btrfs-btrfs_set_item_key_safe-should-bug-and-return-void: Refresh. - patches.suse/btrfs-catch-locking-failures-in-set-clear-extent_bit: Refresh. - patches.suse/btrfs-clean_tree_block-should-panic-on-error-and-return-void: Refresh. - patches.suse/btrfs-handle-EIO: Refresh. - patches.suse/btrfs-panic-on-bad-rbtree-operations: Refresh. - patches.suse/btrfs-update-message-levels.patch: Refresh.- patches.fixes/ipv6-tcp-fix-panic-in-SYN-processing.patch: ipv6: tcp: fix panic in SYN processing (bnc#789115).refresh btrfs balancer patchset (no functional change) - patches.suse/btrfs-0306-get-rid-of-_alloc_profile-fields.patch: Btrfs: get rid of *_alloc_profile fields. - patches.suse/btrfs-0307-introduce-masks-for-chunk-type-and-profile.patch: Btrfs: introduce masks for chunk type and profile. - patches.suse/btrfs-0308-add-btrfs_AVAIL_ALLOC_BIT_SINGLE-bit.patch: Btrfs: add BTRFS_AVAIL_ALLOC_BIT_SINGLE bit. - patches.suse/btrfs-0309-make-avail_-_alloc_bits-fields-dynamic.patch: Btrfs: make avail_*_alloc_bits fields dynamic. - patches.suse/btrfs-0310-add-basic-restriper-infrastructure.patch: Btrfs: add basic restriper infrastructure. - patches.suse/btrfs-0311-add-basic-infrastructure-for-selective-balanci.patch: Btrfs: add basic infrastructure for selective balancing. - patches.suse/btrfs-0312-profiles-filter.patch: Btrfs: profiles filter. - patches.suse/btrfs-0313-usage-filter.patch: Btrfs: usage filter. - patches.suse/btrfs-0314-devid-filter.patch: Btrfs: devid filter. - patches.suse/btrfs-0315-devid-subset-filter.patch: Btrfs: devid subset filter. - patches.suse/btrfs-0316-virtual-address-space-subset-filter.patch: Btrfs: virtual address space subset filter. - patches.suse/btrfs-0317-do-not-reduce-profile-in-do_chunk_alloc.patch: Btrfs: do not reduce profile in do_chunk_alloc(). - patches.suse/btrfs-0318-implement-online-profile-changing.patch: Btrfs: implement online profile changing. - patches.suse/btrfs-0319-soft-profile-changing-mode-aka-soft-convert.patch: Btrfs: soft profile changing mode (aka soft convert). - patches.suse/btrfs-0320-save-balance-parameters-to-disk.patch: Btrfs: save balance parameters to disk. - patches.suse/btrfs-0321-recover-balance-on-mount.patch: Btrfs: recover balance on mount. - patches.suse/btrfs-0322-add-skip_balance-mount-option.patch: Btrfs: add skip_balance mount option. - patches.suse/btrfs-0323-allow-for-pausing-restriper.patch: Btrfs: allow for pausing restriper. - patches.suse/btrfs-0324-allow-for-canceling-restriper.patch: Btrfs: allow for canceling restriper. - patches.suse/btrfs-0325-allow-for-resuming-restriper-after-it-was-paus.patch: Btrfs: allow for resuming restriper after it was paused. - patches.suse/btrfs-0326-add-balance-progress-reporting.patch: Btrfs: add balance progress reporting. - patches.suse/btrfs-0333-don-t-pass-a-trans-handle-unnecessarily-in-vol.patch: Refresh. - patches.suse/btrfs-0334-don-t-pre-allocate-btrfs-bio.patch: Refresh. - patches.suse/btrfs-0359-preparation-to-fixing-mount-umount-race.patch: Refresh. - patches.suse/btrfs-8014-add-new-ioctl-to-determine-size-of-compressed-.patch: Refresh. - patches.suse/btrfs-add-btrfs_panic: Refresh. - patches.suse/btrfs-update-message-levels.patch: Refresh. - patches.suse/btrfs-1000-get-rid-of-_alloc_profile-fields.patch: Delete. - patches.suse/btrfs-1001-introduce-masks-for-chunk-type-and-profile.patch: Delete. - patches.suse/btrfs-1002-add-btrfs_AVAIL_ALLOC_BIT_SINGLE-bit.patch: Delete. - patches.suse/btrfs-1003-make-avail_-_alloc_bits-fields-dynamic.patch: Delete. - patches.suse/btrfs-1004-add-basic-restriper-infrastructure.patch: Delete. - patches.suse/btrfs-1005-add-basic-infrastructure-for-selective-balanci.patch: Delete. - patches.suse/btrfs-1006-profiles-filter.patch: Delete. - patches.suse/btrfs-1007-usage-filter.patch: Delete. - patches.suse/btrfs-1008-devid-filter.patch: Delete. - patches.suse/btrfs-1009-devid-subset-filter.patch: Delete. - patches.suse/btrfs-1010-virtual-address-space-subset-filter.patch: Delete. - patches.suse/btrfs-1011-do-not-reduce-profile-in-do_chunk_alloc.patch: Delete. - patches.suse/btrfs-1012-implement-online-profile-changing.patch: Delete. - patches.suse/btrfs-1013-soft-profile-changing-mode-aka-soft-convert.patch: Delete. - patches.suse/btrfs-1014-save-balance-parameters-to-disk.patch: Delete. - patches.suse/btrfs-1015-recover-balance-on-mount.patch: Delete. - patches.suse/btrfs-1016-add-skip_balance-mount-option.patch: Delete. - patches.suse/btrfs-1017-allow-for-pausing-restriper.patch: Delete. - patches.suse/btrfs-1018-allow-for-cancelling-restriper.patch: Delete. - patches.suse/btrfs-1019-allow-for-resuming-restriper-after-it-was-paus.patch: Delete. - patches.suse/btrfs-1020-add-balance-progress-reporting.patch: Delete. - patches.suse/btrfs-1021-restriper-updates-v2.patch: Delete.- add splash=black option to bootsplash code, to keep a black background, useful for remote access to VMs (bnc#773487)- Linux 3.0.53 (bnc#773831 bnc#786976 LTC#86307). - patches.xen/pci-reserve: Refresh. - patches.xen/xen3-patch-2.6.25: Refresh. - patches.arch/s390-60-03-gup-task-size.patch: Delete. - patches.rpmify/kbuild-fix-gcc-x-syntax.patch: Delete.- Linux 3.0.52 (bnc#739728 bnc#780008). - patches.kabi/kabi-protect-sound-structs.patch: kABI: protect sound structures. - patches.drivers/drm-i915-hdmi-HDMI-source-product-description-infofr: Refresh. - patches.fixes/ipv6-dont-use-inetpeer-to-store-metrics-for-routes.patch: Refresh. - patches.fixes/ipv6-unshare-inetpeers.patch: Refresh. - patches.kabi/revert-net-fix-NULL-dereferences-in-check_peer_redir.patch: Refresh. - patches.drivers/DRM-Radeon-Fix-Load-Detection-on-legacy-primary-DAC.patch: Delete. - patches.fixes/nfs-fix-oopses-in-nfs_lookup_revalidate-and-nfs_open_revalidate.patch: Delete.- patches.kabi/netfilter-ipset-ignore-kabi-changes.patch: netfilter: ipset: ignore KABI changes.- patches.suse/btrfs-0288-fix-double-mntput-in-mount_subvol.patch: Refresh.- patches.suse/btrfs-0211-btrfs_multi_bio-replaced-with-btrfs_bio.patch: Refresh. - patches.suse/btrfs-0288-fix-double-mntput-in-mount_subvol.patch: btrfs: fix double mntput() in mount_subvol().- patches.fixes/netfilter-ipset-fix-adding-ranges-to-hash-types.patch: Refresh. - patches.fixes/netfilter-ipset-timeout-can-be-modified-for-already.patch: netfilter: ipset: timeout can be modified for already added elements (bnc#790457).- patches.fixes/netfilter-ipset-fix-adding-ranges-to-hash-types.patch: netfilter: ipset: fix adding ranges to hash types (bnc#790498).- patches.fixes/workqueue_exit_rescuer_thread_as_TASK_RUNNING.patch: workqueue: exit rescuer_thread() as TASK_RUNNING (bnc#789993).- patches.drivers/0001-xhci-Add-Lynx-Point-LP-to-list-of-Intel-switchable-h.patch: xhci: Add Lynx Point LP to list of Intel switchable hosts (bnc#791853).- patches.drivers/0002-net-next-Add-netif_get_num_default_rss_queues.patch Move up in the series.- patches.arch/s390-61-01-zfcp-revert-xconf-handling.patch: zfcp: fix adapter (re)open recovery while link to SAN is down (bnc#789010,LTC#86283). - patches.arch/s390-61-02-qeth-setmac-after-delmac-fail.patch: qeth: set new mac even if old mac is gone (bnc#789010,LTC#86643). - patches.arch/s390-61-03-qdio-fix-kernel-panic-for-zfcp-31-bit.patch: qdio: fix kernel panic for zfcp 31-bit (bnc#789010,LTC#86623). - patches.arch/s390-61-04-crypto-perffix-msgtype50.patch: Crypto: msgType50 (RSA-CRT) Fix (bnc#789010,LTC#86378).- patches.drivers/0001-tg3-Introduce-separate-functions-to-allocate-free-RX.patch: tg3: Introduce separate functions to allocate/free RX/TX rings (bnc#785554). - patches.drivers/0002-net-next-Add-netif_get_num_default_rss_queues.patch: net-next: Add netif_get_num_default_rss_queues (bnc#785554). - patches.drivers/0003-tg3-set-maximal-number-of-default-RSS-queues.patch: tg3: set maximal number of default RSS queues (bnc#785554). - patches.drivers/0004-tg3-Allow-number-of-rx-and-tx-rings-to-be-set-indepe.patch: tg3: Allow number of rx and tx rings to be set independently (bnc#785554). - patches.drivers/0005-tg3-Separate-coalescing-setup-for-rx-and-tx.patch: tg3: Separate coalescing setup for rx and tx (bnc#785554). - patches.drivers/0006-tg3-Refactor-tg3_open.patch: tg3: Refactor tg3_open() (bnc#785554). - patches.drivers/0007-tg3-Refactor-tg3_close.patch: tg3: Refactor tg3_close() (bnc#785554). - patches.drivers/0008-tg3-Add-support-for-ethtool-L-l-to-get-set-the-numbe.patch: tg3: Add support for ethtool -L|-l to get/set the number of rings (bnc#785554). - patches.drivers/0009-tg3-Disable-multiple-TX-rings-by-default-due-to-hard.patch: tg3: Disable multiple TX rings by default due to hardware flaw (bnc#785554).- kabi/severities: Ignore md raid exports (fate#311379).- patches.arch/x86_amd_fam16h_microcode_fix.patch: x86, microcode, AMD: Add support for family 16h processors (bnc#791498,fate#314145).- patches.fixes/scsi_remove_target-fix-softlockup.patch: Delete patch, contained in -stable update.- patches.fixes/scsi_remove_target-fix-softlockup.patch: scsi_remove_target: fix softlockup regression on hot remove (bnc#789836).- patches.fixes/autofs4-allow-autofs-to-work-outside-the-initial-pid-namespace.patch: autofs4: allow autofs to work outside the initial PID namespace (bnc#779294). - patches.fixes/autofs4-translate-pids-to-the-right-namespace-for-the-daemon.patch: autofs4: translate pids to the right namespace for the daemon (bnc#779294).- patches.fixes/vfs-dont-chain-pipe-anon-sockets-on-superbloc-s_inodes-list: vfs: dont chain pipe/anon/socket on superblock s_inodes list (bnc#789703)- patches.fixes/reiserfs-fix-problems-with-chowning-setuid-file-w-xattrs: reiserfs: fix problems with chowning setuid file w/ xattrs (bnc#790920). - patches.fixes/reiserfs-fix-double-lock-while-chowning-setuid-file-w-xattrs: Delete.mwait number passed via driver_data is needed before 3.1, fixed: - patches.arch/intel_idle_add_ivy_bridge_support.patch: Refresh.- patches.suse/hid-drff-alias.patch: Update Patch-mainline tag.- patches.drivers/edac_i7core_phys_proc_id_use_socketid.patch: Add upstream reference.- patches.drivers/alsa-sp3-pre-010-Fix-SSYNC-register-value-for-non-Intel-cont: ALSA: hda - Fix SSYNC register value for non-Intel controllers (fate#313409,bnc#760833). - patches.drivers/alsa-sp3-pre-146-option-to-enable-arbitrary-buffer-period-si: ALSA: hda: option to enable arbitrary buffer/period sizes (fate#313409,bnc#760833). - patches.drivers/alsa-sp3-pre-355-Fix-buffer-alignment-regression-with-Nvidia: ALSA: hda - Fix buffer-alignment regression with Nvidia HDMI (fate#313409,bnc#760833). - patches.drivers/alsa-sp3-pre-388-explicitly-set-buffer-align-flag-for-Nvidia: ALSA: hda - explicitly set buffer-align flag for Nvidia controllers (fate#313409,bnc#760833). - patches.drivers/alsa-sp3-pre-393-Add-Lynx-Point-HD-Audio-Controller-DeviceID: ALSA: hda - Add Lynx Point HD Audio Controller DeviceIDs (fate#313409,bnc#760833). - patches.drivers/alsa-sp3-pre-596-hda_intel-Add-Device-IDs-for-Intel-Lynx-Point-L: ALSA: hda_intel: Add Device IDs for Intel Lynx Point-LP PCH (fate#313409,bnc#760833).- patches.drivers/0001-USB-OHCI-workaround-for-hardware-bug-retired-TDs-not.patch: USB: OHCI: workaround for hardware bug: retired TDs not added to the Done Queue (bnc#762158).- patches.drivers/0001-watchdog-iTCO_wdt-clean-up-PCI-device-ID-s.patch: watchdog: iTCO_wdt: clean-up PCI device ID's (fate#313409, bnc#760833). - patches.drivers/0002-watchdog-iTCO_wdt-add-Intel-Lynx-Point-DeviceIDs.patch: watchdog: iTCO_wdt: add Intel Lynx Point DeviceIDs (fate#313409, bnc#760833). - patches.drivers/0003-ahci-AHCI-mode-SATA-patch-for-Intel-Lynx-Point-Devi.patch: ahci: AHCI-mode SATA patch for Intel Lynx Point DeviceIDs (fate#313409, bnc#760833). - patches.drivers/0004-ata_piix-IDE-mode-SATA-patch-for-Intel-Lynx-Point-D.patch: ata_piix: IDE-mode SATA patch for Intel Lynx Point DeviceIDs (fate#313409, bnc#760833). - patches.drivers/0005-i2c-i801-Add-device-IDs-for-Intel-Lynx-Point.patch: i2c-i801: Add device IDs for Intel Lynx Point (fate#313409, bnc#760833).- patches.fixes/reiserfs-fix-double-lock-while-chowning-setuid-file-w-xattrs: reiserfs: fix double-lock while chowning setuid file w/ xattrs (bnc#790920).- patches.suse/readahead-request-tunables.patch: Fix typo. Shipped releases are unaffected.- patches.fixes/jbd-Fix-lock-ordering-bug-in-journal_unmap_buffer.patch: jbd: Fix lock ordering bug in journal_unmap_buffer() (bnc#790935).- Remove protective tags from multiple patches to enable various md/raid10 and DASD enhancements. These make is possible for RAID10 to cope with DASD devices being slow for various reasons - the affected device will be temporarily removed from the array. Also support reshaping of RAID10 arrays. (FATE#311379)- patches.drivers/0001-usb-host-xhci-Fix-Compliance-Mode-on-SN65LVPE502CP-H.patch: usb: host: xhci: Fix Compliance Mode on SN65LVPE502CP Hardware (bnc#788277). - patches.drivers/0002-usb-host-xhci-Fix-Null-pointer-dereferencing-with-71.patch: usb: host: xhci: Fix Null pointer dereferencing with 71c731a for non-x86 systems (bnc#788277).- rpm/kernel-binary.spec.in: Do not remove fillup from the buildsystem (bnc#781327)- patches.suse/btrfs-8163-fix-full-backref-problem-when-inserting-shared.patch: Refresh.- patches.suse/btrfs-8189-use-common-work-instead-of-delayed-work.patch: Btrfs: use common work instead of delayed work - patches.suse/btrfs-8190-limit-fallocate-extent-reservation-to-256MB.patch: btrfs: limit fallocate extent reservation to 256MB- Update series.conf (missed in previous commit).- Update Xen patches to 3.0.51.- patches.fixes/scsi-update-scsi.h-with-SYNCHRONIZE_CACHE_16.patch: Delete unused patch.- patches.drivers/ibmvfc-fix-double-completion-on-abort-timeout: ibmvfc: Fix double completion on abort timeout (bnc#788452) - patches.drivers/ibmvfc-ignore-fabric-RSCNs-when-link-dead: ibmvfc: Ignore fabric RSCNs when link is dead (bnc#788452).- patches.fixes/fs-only-send-IPI-to-invalidate-LRU-BH-when-needed.patch: fs: only send IPI to invalidate LRU BH when needed (bnc#763628 bnc#744692). - patches.fixes/smp-add-func-to-IPI-cpus-based-on-parameter-func.patch: smp: add func to IPI cpus based on parameter func (bnc#763628 bnc#744692). - patches.fixes/smp-introduce-a-generic-on_each_cpu_mask-function.patch: smp: introduce a generic on_each_cpu_mask() function (bnc#763628 bnc#744692).- patches.suse/btrfs-8187-fix-a-double-free-on-pending-snapshots-in-erro.patch: Btrfs: fix a double free on pending snapshots in error handling - patches.suse/btrfs-8188-Don-t-trust-the-superblock-label-and-simply-pr.patch: Btrfs: Don't trust the superblock label and simply printk("%s") it- patches.fixes/net-prevent-NULL-dereference-in-check_peer_redir.patch: net: prevent NULL dereference in check_peer_redir() (bnc#776044 bnc#784576).- patches.suse/btrfs-update-message-levels.patch: Refresh.- patches.suse/btrfs-enospc-debugging-messages.patch: Minor updates. - patches.suse/btrfs-update-message-levels.patch: Minor updates.- patches.suse/btrfs-8186-continue-after-abort-during-snapshot-drop.patch: btrfs: continue after abort during snapshot drop (bnc#752067).- patches.fixes/mm-hotplug-correctly-add-zone-to-other-nodes-list.patch: Refresh.- patches.fixes/mm-hotplug-correctly-add-zone-to-other-nodes-list.patch: mm/hotplug: correctly add new zone to all other nodes' zone lists. (CVE-2012-5517 bnc#789235)- Linux 3.0.51 (bnc#762259). - patches.kabi/x86-revert-HLT-removal.patch: x86: revert HLT removal. - patches.drivers/floppy-convert-to-single-threaded-wq.patch: Refresh. - patches.fixes/mm-Fix-XFS-oops-due-to-dirty-pages-without-buffers-o.patch: Delete.- patches.drivers/igb-fix-recent-VLAN-changes-that-would-leave-VLANs-d.patch: igb: fix recent VLAN changes that would leave VLANs disabled after reset (bnc#787168).- patches.drivers/DRM-Radeon-Clean-up-code-in-TV-DAC-load-detection.patch: Update references (bnc #739728). - patches.drivers/DRM-Radeon-Fix-Load-Detection-on-legacy-primary-DAC.patch: Update references (bnc #739728). - patches.drivers/DRM-Radeon-Fix-TV-DAC-Load-Detection-for-single-CRTC-chips.patch: Update references (bnc #739728). - patches.drivers/DRM-Radeon-Fix-primary-DAC-Load-Detection-for-RV100-chips.patch: Update references (bnc #739728). - patches.drivers/DRM-Radeon-On-DVI-I-use-Load-Detection-when-EDID-is-bogus.patch: Update references (bnc #739728).- patches.drivers/DRM-radeon-For-single-CRTC-GPUs-move-handling-of-CRTC_CRT_ON-to-crtc_dpms.patch: Update references (bnc #723776).- patches.drivers/DRM-radeon-For-single-CRTC-GPUs-move-handling-of-CRTC_CRT_ON-to-crtc_dpms.patch: DRM/radeon: For single CRTC GPUs move handling of CRTC_CRT_ON to crtc_dpms() (bnc #725152).- patches.drivers/DRM-Radeon-Fix-TV-DAC-Load-Detection-for-single-CRTC-chips.patch: DRM/Radeon: Fix TV DAC Load Detection for single CRTC chips (bnc #725152).- patches.drivers/DRM-Radeon-Clean-up-code-in-TV-DAC-load-detection.patch: DRM/Radeon: Clean up code in TV DAC load detection (bnc #725152).- patches.drivers/DRM-Radeon-On-DVI-I-use-Load-Detection-when-EDID-is-bogus.patch: DRM/Radeon: On DVI-I use Load Detection when EDID is bogus (bnc #725152).- patches.drivers/DRM-Radeon-Fix-primary-DAC-Load-Detection-for-RV100-chips.patch: DRM/Radeon: Fix primary DAC Load Detection for RV100 chips (bnc #725152).- patches.drivers/DRM-Radeon-Fix-Load-Detection-on-legacy-primary-DAC.patch: DRM/Radeon: Fix Load Detection on legacy primary DAC (bnc #725152).- patches.fixes/x86-kexec-temporary-hack-v2: Refresh. Fix of fix, sorry about that.- patches.fixes/x86-kexec-temporary-hack-v2: Refresh. Fix bug in 3.0.50 merge (compiler emitted a new warning).- patches.arch/s390-60-01-smsgiucv-resume.patch: smsgiucv: reestablish IUCV path after resume (bnc#786976,LTC#86245). - patches.arch/s390-60-02-dasd_move_wake_up_call.patch: dasd: move wake_up call (bnc#786976,LTC#86252). - patches.arch/s390-60-03-gup-task-size.patch: kernel: fix get_user_pages_fast() page table walk (bnc#786976,LTC#86307).- supported.conf: mark ipset modules supported (fate#313309)- patches.fixes/kvm-invalid-opcode-oops-on-SET_SREGS-with-OSXSAVE-bi.patch: kvm: invalid opcode oops on SET_SREGS with OSXSAVE bit set (bnc#787821 CVE-2012-4461).- patches.suse/md-Do-not-block-when-displaying-info.patch: Change 'goto' target to avoid pointless 'bug' messages in normal error cases. (bnc#787848)- patches.arch/intel_idle_add_ivy_bridge_support.patch: intel_idle: IVB support (fate#313719).- patches.suse/btrfs-8180-Return-EINVAL-when-length-to-trim-is-less-than.patch: btrfs: Return EINVAL when length to trim is less than FSB (FATE#306586). - patches.suse/btrfs-8181-fix-unnecessary-while-loop-when-search-the-fre.patch: Btrfs: fix unnecessary while loop when search the free space, cache (FATE#306586). - patches.suse/btrfs-8182-Use-btrfs_update_inode_fallback-when-creating-.patch: Btrfs: Use btrfs_update_inode_fallback when creating a snapshot (FATE#306586). - patches.suse/btrfs-8183-do-not-bug-when-we-fail-to-commit-the-transact.patch: Btrfs: do not bug when we fail to commit the transaction (FATE#306586). - patches.suse/btrfs-8184-fill-the-global-reserve-when-unpinning-space.patch: Btrfs: fill the global reserve when unpinning space (FATE#306586). - patches.suse/btrfs-8185-don-t-allow-degraded-mount-if-too-many-devices.patch: Btrfs: don't allow degraded mount if too many devices are missing (FATE#306586).- patches.arch/x86_powernow-k8-dont-complain-on-missing-cpufreq-on-hp.patch: X86 cpufreq: Do not complain on missing cpufreq tables on ProLiants (bnc#787202).- patches.fixes/hpilo-remove-pci_disable_device.patch: MISC: hpilo, remove pci_disable_device (bnc#752544).- Linux 3.0.50. - patches.fixes/x86-kexec-temporary-hack-v2: Refresh.- patches.drivers/ixgbe-Address-fact-that-RSC-was-not-setting-GSO-size.patch: ixgbe: Address fact that RSC was not setting GSO size for incoming frames (bnc#776144).- patches.suse/msft-hv-0404-Drivers-hv-Cleanup-error-handling-in-vmbus_open.patch: Drivers: hv: Cleanup error handling in vmbus_open(). - patches.suse/msft-hv-0405-SCSI-storvsc-Account-for-in-transit-packets-in-the-R.patch: [SCSI] storvsc: Account for in-transit packets in the RESET path. - patches.fixes/hv-storvsc-reset-wait.patch: Delete.- patches.kabi/kabi-rmap-remove-inclusion.patch: kABI: rmap, remove inclusion.- patches.drivers/sg-remove-sg_mutex.patch: sg: remove sg_mutex. (bnc#785496)- patches.fixes/perf-do-no-try-to-schedule-task-events.patch: perf: Do no try to schedule task events if there are none (bnc#781574). - patches.fixes/perf-do-not-set-task_ctx-pointer-in-cpuctx.patch: perf: Do not set task_ctx pointer in cpuctx if there are no events in the context (bnc#781574).- patches.suse/SoN-0018-mm-swap-Implement-generic-handlers-for-swap-related-fix-2.patch: mm: swap: Implement generic handlers for swap-related address ops fix. (bnc#778334)- patches.fixes/mm-Fix-XFS-oops-due-to-dirty-pages-without-buffers-o.patch: mm: Fix XFS oops due to dirty pages without buffers on s390 (bnc#762259).- patches.fixes/kvm-KVM-Clean-up-error-handling-during-VCPU-creation.patch: KVM: Clean up error handling during VCPU creation (bnc#754898 CVE-2012-1601). - patches.fixes/kvm-KVM-Ensure-all-vcpus-are-consistent-with-in-kernel-i.patch: KVM: Ensure all vcpus are consistent with in-kernel irqchip settings (bnc#754898 CVE-2012-1601).- patches.drivers/hpwdt_only_byte_reads_writes.patch: hpwdt: Only BYTE reads/writes to WD Timer port 0x72.- Linux 3.0.49 (bnc#722560). - patches.drivers/USB3-0148-xHCI-test-USB2-software-LPM.patch: Refresh. - patches.drivers/USB3-0152-xHCI-fix-debug-message.patch: Refresh. - patches.drivers/USB3-0158-usb-xhci-move-xhci_gen_setup-away-from-pci.patch: Refresh. - patches.fixes/0001-USB-fix-resource-leak-in-xhci-power-loss-path.patch: Refresh. - patches.fixes/xhci-Don-t-free-endpoints-in-xhci_mem_cleanup: Refresh. - patches.kabi/revert-net-fix-NULL-dereferences-in-check_peer_redir.patch: Refresh. - patches.drivers/drm-i915-apply-timing-generator-bug-workaround-on-CP: Delete.- Linux 3.0.48.- Linux 3.0.47 (bnc#731739). - patches.drivers/0184-tg3-Remove-40BIT_DMA_LIMIT_BUG.patch: Refresh. - patches.drivers/0185-tg3-Remove-4G_DMA_BNDRY_BUG-flag.patch: Refresh. - patches.drivers/tg3-break-larger-frags-into-4k-chunks-for-5719: Refresh. - patches.fixes/x86_acer_acpi_ec_call_reg_blacklist.patch: Refresh. - patches.suse/0001-Revert-x86-random-Verify-RDRAND-functionality-and-al.patch: Revert "x86, random: Verify RDRAND functionality and allow it to be disabled". - patches.suse/0002-Revert-x86-random-Architectural-inlines-to-get-rando.patch: Revert "x86, random: Architectural inlines to get random integers with RDRAND". - patches.drivers/drm-radeon-fix-panic-on-unload.patch: Delete. - Update config files.- patches.xen/1198-xenbus-dev-write-buflen.patch: xenbus: fix overflow check in xenbus_dev_write(). - patches.xen/1202-x86-signal-eip-corruption.patch: x86: don't corrupt %eip when returning from a signal handler. - Update Xen patches to 3.0.46.- patches.fixes/mm-check-if-PTE-is-already-allocated-during-page-fault.patch: mm: Check if PTE is already allocated during page fault.- patches.drivers/drm-radeon-fix-panic-on-unload.patch: Refresh: updated upstream commit info.- patches.drivers/drm-intel-do-not-delete-dpll-multiplier-during-dac-init.patch: Refresh: Added upstream commit note.- patches.drivers/DRM-i915-Restore-sdvo_flags-after-dtd-mode-dtd-Roundrtrip.patch: DRM/i915: Restore sdvo_flags after dtd->mode->dtd Roundrtrip (bnc #775577).- patches.drivers/DRM-i915-Don-t-clone-SDVO-LVDS-with-analog.patch: DRM/i915: Don't clone SDVO LVDS with analog (bnc #766410).- patches.drivers/drm_i915_Fix_backlight_control_for_systems_which_have_bl_polarity_reversed.patch: Refresh: Add mainline notice.- patches.arch/s390-59-01-qeth_Fix_IPA_CMD_QIPASSIST_rc_handling.patch: qeth: Fix IPA_CMD_QIPASSIST return code handling (bnc#785851,LTC#86101).- rpm/kernel-binary.spec.in: Ignore kabi errors if %%ignore_kabi_badness is defined. This is used in the Kernel:* projects in the OBS.- rpm/kernel-binary.spec.in: Revert f266e647f to allow building with icecream again, as patches.rpmify/kbuild-fix-gcc-x-syntax.patch is a real fix now.- patches.suse/btrfs-8112-resume-balance-on-rw-re-mounts-properly.patch: fix mismerge.- patches.kabi/ipmi-use-a-tasklet-for-handling-received-messages-kABI.patch: Fix ipmi-use-a-tasklet-for-handling-received-messages.patch kABI breakage.- patches.fixes/ipmi-decrease-the-ipmi-message-transaction-time-in-interrupt-mode.patch: ipmi: decrease the IPMI message transaction time in interrupt mode (bnc#763654). - patches.fixes/ipmi-simplify-locking.patch: ipmi: simplify locking (bnc#763654). - patches.fixes/ipmi-use-a-tasklet-for-handling-received-messages.patch: ipmi: use a tasklet for handling received messages (bnc#763654). - patches.fixes/ipmi-fix-deadlock-in-start_next_msg.patch: Delete.- patches.drivers/cxgb3-set-vlan_feature-on-net_device.patch: cxgb3: Set vlan_feature on net_device (bnc#776127, LTC#84260).- patches.drivers/qlge-add-offload-features-to-vlan-interfaces.patch: Add offload features to vlan interfaces (bnc#776081,LTC#84322).- patches.drivers/0001-mlx4_en-Added-missing-iounmap-upon-releasing-a-devic.patch: mlx4_en: Added missing iounmap upon releasing a device (bnc#774964,LTC#82768). - patches.drivers/0002-mlx4-allow-device-removal-by-fixing-dma-unmap-size.patch: mlx4: allow device removal by fixing dma unmap size (bnc#774964,LTC#82768).- patches.arch/s390-58-01-qeth-recovery-bonding_deadlock.patch: qeth: fix deadlock between recovery and bonding driver (bnc#785100,LTC#85905).- patches.fixes/st-add-st-nowait-eof-param-to-module: SCSI st: add st_nowait_eof param to module (bnc#775394).- patches.suse/btrfs-8161-do-not-allocate-chunks-as-agressively.patch: Btrfs: do not allocate chunks as agressively (FATE#306586). - patches.suse/btrfs-8162-btrfs_drop_extent_cache-should-never-fail.patch: Btrfs: btrfs_drop_extent_cache should never fail (FATE#306586). - patches.suse/btrfs-8163-fix-full-backref-problem-when-inserting-shared.patch: Btrfs: fix full backref problem when inserting shared block reference (FATE#306586). - patches.suse/btrfs-8164-wait-on-async-pages-when-shrinking-delalloc.patch: Btrfs: wait on async pages when shrinking delalloc (FATE#306586). - patches.suse/btrfs-8165-remove-bytes-argument-from-do_chunk_alloc.patch: Btrfs: remove bytes argument from do_chunk_alloc (FATE#306586). - patches.suse/btrfs-8166-cleanup-of-error-processing-in-btree_get_exten.patch: Btrfs: cleanup of error processing in btree_get_extent() (FATE#306586). - patches.suse/btrfs-8167-remove-unnecessary-code-in-btree_get_extent.patch: Btrfs: remove unnecessary code in btree_get_extent() (FATE#306586). - patches.suse/btrfs-8168-kill-obsolete-arguments-in-btrfs_wait_ordered_.patch: Btrfs: kill obsolete arguments in btrfs_wait_ordered_extents (FATE#306586). - patches.suse/btrfs-8169-don-t-do-anything-in-our-freeze_fs-and-unfreez.patch: Btrfs: don't do anything in our ->freeze_fs and ->unfreeze_fs (FATE#306586). - patches.suse/btrfs-8170-do-not-async-metadata-csumming-in-certain-situ.patch: Btrfs: do not async metadata csumming in certain situations (FATE#306586). - patches.suse/btrfs-8171-do-not-hold-the-file-extent-leaf-locked-when-a.patch: Btrfs: do not hold the file extent leaf locked when adding extent item (FATE#306586). - patches.suse/btrfs-8172-cache-extent-state-when-writing-out-dirty-meta.patch: Btrfs: cache extent state when writing out dirty metadata pages (FATE#306586). - patches.suse/btrfs-8173-don-t-lookup-csums-for-prealloc-extents.patch: Btrfs: don't lookup csums for prealloc extents (FATE#306586). - patches.suse/btrfs-8174-be-smarter-about-dropping-things-from-the-tree.patch: Btrfs: be smarter about dropping things from the tree log (FATE#306586). - patches.suse/btrfs-8175-confirmation-of-value-is-added-before-trace_bt.patch: Btrfs: confirmation of value is added before trace_btrfs_get_extent() is called (FATE#306586). - patches.suse/btrfs-8176-make-filesystem-read-only-when-submitting-barr.patch: Btrfs: make filesystem read-only when submitting barrier fails (FATE#306586). - patches.suse/btrfs-8177-cleanup-pages-properly-when-ENOMEM-in-compress.patch: Btrfs: cleanup pages properly when ENOMEM in compression (FATE#306586). - patches.suse/btrfs-8178-don-t-bug-on-enomem-in-readpage.patch: Btrfs: don't bug on enomem in readpage (FATE#306586). - patches.suse/btrfs-8179-do-not-warn_on-when-we-cannot-alloc-a-page-for.patch: Btrfs: do not warn_on when we cannot alloc a page for an extent buffer (FATE#306586). - patches.suse/btrfs-enospc-debugging-messages.patch: btrfs: enospc debugging messages (FATE#306586).- Linux 3.0.46 (bnc#781484 bnc#741814 bnc#730660 bnc#777024 bnc#774859 bnc#780012 LTC#84816 LTC#84941 LTC#84942 LTC#85285). - patches.kabi/kabi-protect-struct-xfrm_replay.patch: kABI: protect struct xfrm_replay. - patches.fixes/pci-hotplug-do-not-register-pcie-ports-for-acpiphp.patch: Refresh. - patches.arch/s390-56-01-zfcp-make-trace-record-tags-unique.patch: Delete. - patches.arch/s390-56-02-zfcp-do-not-wakeup-while-suspended.patch: Delete. - patches.arch/s390-56-03-zfcp-restore-port-refcount-check.patch: Delete. - patches.arch/s390-57-01-zfcp-sdev-crash.patch: Delete. - patches.drivers/r8169-fix-Config2-MSIEnable-bit-setting.patch: Delete. - patches.drivers/tg3-Fix-TSO-CAP-for-5704-devs-w-ASF-enabled.patch: Delete. - patches.fixes/mm-mempolicy-fix-a-memory-corruption-by-refcount-imbalance-in-alloc_pages_vma.patch: Delete. - patches.fixes/mm-mempolicy-fix-a-race-in-shared_policy_replace.patch: Delete. - patches.fixes/mm-mempolicy-fix-refcount-leak-in-mpol_set_shared_policy.patch: Delete. - patches.fixes/mm-mempolicy-remove-mempolicy-sharing.patch: Delete. - patches.fixes/mm-revert-mm-mempolicy-Let-vma_merge-and-vma_split-handle-vma-vm_policy-linkages.patch: Delete. - patches.fixes/net-do-not-disable-sg-for-packets-requiring-no-check.patch: Delete. - patches.fixes/tcp-flush-DMA-queue-before-sk_wait_data-if-rcv_wnd-i.patch: Delete. - patches.fixes/zfcp-remove-invalid-list-iterator.patch: Delete.- Correct bnc typo 773688 -> 773699 - patches.fixes/sched-fix-migration-thread-accounting-woes.patch: Update references (bnc#773699, bnc#769251).- Linux 3.0.45 (bnc#784334). - patches.fixes/dm-use-done-bytes-for-io-completion.patch: Refresh. - patches.xen/pci-reserve: Refresh. - patches.fixes/scsi_dh_alua-Enable-STPG-for-unavailable-ports.patch: Delete.- patches.drivers/rds-no-bug-in-xmit-for-loopback.patch: kernel: rds-ping triggering a BUG_ON() (bnc#767610,CVE-2012-2372).- supported.conf: mark cachefiles as supported (FATE#312793, bnc#782369).- patches.fixes/ext4-race-condition-protection-for-ext4_convert_unwr.patch: ext4: race-condition protection for ext4_convert_unwritten_extents_endio (bnc#784192).- patches.fixes/mm-oom-fix-totalpages-calculation.patch: memcg: oom: fix totalpages calculation for swappiness==0 (bnc#783965).- patches.fixes/cachefiles-add-support-for-large-files-in-filesys.patch: fs: cachefiles: add support for large files in filesystem caching (FATE#312793, bnc#782369).- patches.fixes/block-fix-race-on-request.end_io-invocations.patch: Update patch headers with mainline commit ids. - patches.fixes/scsi-scan-dont-fail-scans-when-host-is-in-recovery.patch: Update patch headers with mainline commit ids.- patches.fixes/mm-mempolicy.c-use-enum-value-MPOL_REBIND_ONCE-in-mpol_rebind_policy.patch: mm/mempolicy.c: use enum value MPOL_REBIND_ONCE in mpol_rebind_policy(). - patches.fixes/mm-mempolicy-fix-mbind-to-do-synchronous-migration.patch: mm, mempolicy: fix mbind() to do synchronous migration. - patches.fixes/mm-revert-mm-mempolicy-Let-vma_merge-and-vma_split-handle-vma-vm_policy-linkages.patch: revert "mm: mempolicy: Let vma_merge and vma_split handle vma->vm_policy linkages". - patches.fixes/mm-mempolicy-fix-a-race-in-shared_policy_replace.patch: mempolicy: fix a race in shared_policy_replace(). - patches.fixes/mm-mempolicy-fix-refcount-leak-in-mpol_set_shared_policy.patch: mempolicy: fix refcount leak in mpol_set_shared_policy(). - patches.fixes/mm-mempolicy-fix-a-memory-corruption-by-refcount-imbalance-in-alloc_pages_vma.patch: mempolicy: fix a memory corruption by refcount imbalance in alloc_pages_vma(). - patches.fixes/mm-mempolicy-remove-mempolicy-sharing.patch: mempolicy: remove mempolicy sharing. Memory policy enhancements for robustness against fuzz attacks and force mbind to use synchronous migration.- Update patch headers with mainline commit ids: * patches.fixes/scsi-stop-accepting-scsi-requests.patch * patches.fixes/scsi_dh_alua-Optimize-stpg-command.patch * patches.fixes/scsi_dh_alua-Store-pref-bit-from-RTPG.patch * patches.fixes/scsi_dh_alua-fix-time-interval-for-alua-rtpg-commands * patches.fixes/scsi_dh_alua-set_params-interface.patch - Update scsi_dh_alua to mainline version (bnc#708296, bnc#784334): * patches.fixes/scsi_dh_alua-Enable-STPG-for-unavailable-ports.patch scsi_dh_alua: Enable STPG for unavailable ports * patches.fixes/scsi_dh_alua-Re-enable-STPG-for-unavailable-por.patch scsi_dh_alua: Re-enable STPG for unavailable ports * patches.fixes/scsi_dh_alua-backoff-alua-rtpg-retry-linearly-v.patch scsi_dh_alua: backoff alua rtpg retry linearly vs. geometrically * patches.fixes/scsi_dh_alua-implement-implied-transition-timeout.patch: scsi_dh_alua: implement 'implied transition timeout' * patches.fixes/scsi_dh_alua-retry-rtpg-ext-hdr.patch: scsi_dh_alua: retry alua rtpg extended header for illegal request response - Remove obsolete patches: * patches.fixes/scsi-dh-alua-decode-rtpg-extended-header * patches.fixes/scsi_dh_alua-rtpg-flood-during-state-transitioning.patch - patches.fixes/scsi_dh_alua-Improve-error-handling.patch: Refresh patch to apply.- patches.drivers/drm-i915-enable-plain-RC6-on-Sandy-Bridge-by-default.patch: Update references, fixed a missing patch chunk (bnc#725355).- patches.drivers/drm-Export-drm_probe_ddc, patches.drivers/drm-dp-Update-DPCD-defines, patches.drivers/drm-i915-dp-Fetch-downstream-port-info, patches.drivers/drm-i915-dp-Be-smarter-about-connection-sense: Update patch tags. - patches.drivers/drm-dp-Document-DP-spec-versions-for-various-DPCD-re: drm/dp: Document DP spec versions for various DPCD registers (bnc#780461). - patches.drivers/drm-dp-Make-sink-count-DP-1.2-aware: drm/dp: Make sink count DP 1.2 aware (bnc#780461).- patches.kernel.org/revert-removal-of-ACPI-procfs-entries.patch: Revert removal of ACPI procfs entries (bnc#777283).- patches.arch/x86-clear-hpet-config-on-startup: x86: Clear HPET configuration registers on startup (bnc#748896).- patches.drivers/megaraid-sas-boot-hangs-while-LD-is-offline.patch: Typo fix.- patches.rpmify/kbuild-fix-gcc-x-syntax.patch: Update upstream reference.- Linux 3.0.44 (bnc#766654 bnc#772427 bnc#773267 bnc#773383,CVE-2012-3430 bnc#774612 bnc#779699 bnc#781018). - patches.drivers/cciss-update-to-4.6.28.patch: Refresh. - patches.drivers/target-0031-target-Enforce-1-page-max-for-control-cdb-buffer-si.patch: Refresh. - patches.kabi/kabi-protect-struct-l2tp_tunnel.patch: kABI: protect struct l2tp_tunnel. - patches.kabi/kabi-protect-struct-perf_event.patch: kABI: protect struct perf_event. - patches.kabi/kabi-protect-struct-task_struct-1.patch: kABI: protect thread_struct. - patches.kernel.org/0001-Revert-tcp-Apply-device-TSO-segment-limit-earlier.patch: Revert "tcp: Apply device TSO segment limit earlier". - patches.kernel.org/0002-Revert-sfc-Fix-maximum-number-of-TSO-segments-and-mi.patch: Revert "sfc: Fix maximum number of TSO segments and minimum TX queue size". - patches.kernel.org/0003-Revert-net-Allow-driver-to-limit-number-of-GSO-segme.patch: Revert "net: Allow driver to limit number of GSO segments per skb". - patches.suse/01a-md-failfast-metadata: Refresh. - patches.suse/perfmon2.patch: Refresh. - patches.arch/x86_mce_fix_32bit_v86_kernel_vs_user_ring.patch: Delete. - patches.drivers/btusb-BCM20702A0-device-id: Delete. - patches.drivers/rds-set-msg_namelen.patch: Delete. - patches.drivers/xhci_Fix_a_logical_vs_bitwise_AND_bug.patch: Delete. - patches.fixes/acpi_processor_fix_acpi_id_not_zero.patch: Delete. - patches.fixes/md-raid0-size-fix: Delete. - patches.fixes/sched-Fix-ancient-race-in-do_exit.patch: Delete. - patches.fixes/vfs-dcache-use-dcache_dentry_killed.patch: Delete.- kabi: update reference files after ceph backport Backport of 3.5 ceph in SLE11-SP2 modified symbol versions of some ceph functions. These symversions were not tracked in SLE11-SP2 branch before the backport but were tracked in openSUSE-11.4-3.0. Some other symversions changed as well but these are marked as ignored in kabi/severities - commit 3bb0d80- update kabi reference files after ceph backport- Update i386 Xen config file (CONFIG_ACPI_PROCESSOR_AGGREGATOR=m).- config: update i386/xen (add CONFIG_ACPI_PROCESSOR_AGGREGATOR=m) - commit b2c6269- evergreen: add missing parts of backported ceph patches Backported ceph patches from upstream 3.5 kernel have cephfs related parts removed as cephfs isn't built for SLE 11 SP2. As OpenSuSE 11.4 has cephfs enabled, we need these parts as well. - commit 36e75b8- patches.ceph/0001-libceph-create-messenger-with-client.cephfs.patch: add missing part of upstream commit - patches.ceph/0002-libceph-don-t-complain-on-msgpool-alloc-failures.cephfs.patch: add missing part of upstream commit - patches.ceph/0003-rbd-make-ceph_parse_options-return-a-pointer.cephfs.patch: add missing part of upstream commit - patches.ceph/0004-ceph-ensure-Boolean-options-support-both-senses.cephfs.patch: backport missing part of upstream commit - patches.ceph/0005-ceph-drop-support-for-preferred_osd-pgs.cephfs.patch: backport missing part of upstream commit - patches.ceph/0006-ceph-define-ceph_auth_handshake-type.cephfs.patch: add missing part of upstream commit - patches.ceph/0007-ceph-messenger-reduce-args-to-create_authorizer.cephfs.patch: add missing part of upstream commit - patches.ceph/0008-ceph-ensure-auth-ops-are-defined-before-use.cephfs.patch: add missing part of upstream commit - patches.ceph/0009-ceph-have-get_authorizer-methods-return-pointers.cephfs.patch: add missing part of upstream commit - patches.ceph/0010-ceph-use-info-returned-by-get_authorizer.cephfs.patch: add missing part of upstream commit- Hyper-V KVP IP injection (fate#31441): - patches.suse/msft-hv-0365-drivers-net-Remove-casts-to-same-type.patch: drivers: net: Remove casts to same type. - patches.suse/msft-hv-0366-drivers-hv-remove-IRQF_SAMPLE_RANDOM-which-is-now-a-.patch: drivers: hv: remove IRQF_SAMPLE_RANDOM which is now a no-op. - patches.suse/msft-hv-0367-hyperv-Move-wait-completion-msg-code-into-rndis_filt.patch: hyperv: Move wait completion msg code into rndis_filter_halt_device(). - patches.suse/msft-hv-0368-hyperv-Add-comments-for-the-extended-buffer-after-RN.patch: hyperv: Add comments for the extended buffer after RNDIS message. - patches.suse/msft-hv-0369-Drivers-hv-Cleanup-the-guest-ID-computation.patch: Drivers: hv: Cleanup the guest ID computation. - patches.suse/msft-hv-0370-Drivers-hv-vmbus-Use-the-standard-format-string-to-f.patch: Drivers: hv: vmbus: Use the standard format string to format GUIDs. - patches.suse/msft-hv-0371-Drivers-hv-Add-KVP-definitions-for-IP-address-inject.patch: Drivers: hv: Add KVP definitions for IP address injection. - patches.suse/msft-hv-0372-Drivers-hv-kvp-Cleanup-error-handling-in-KVP.patch: Drivers: hv: kvp: Cleanup error handling in KVP. - patches.suse/msft-hv-0374-Drivers-hv-kvp-Support-the-new-IP-injection-messages.patch: Drivers: hv: kvp: Support the new IP injection messages. - patches.suse/msft-hv-0375-Tools-hv-Prepare-to-expand-kvp_get_ip_address-functi.patch: Tools: hv: Prepare to expand kvp_get_ip_address() functionality. - patches.suse/msft-hv-0376-Tools-hv-Further-refactor-kvp_get_ip_address.patch: Tools: hv: Further refactor kvp_get_ip_address(). - patches.suse/msft-hv-0377-Tools-hv-Gather-address-family-information.patch: Tools: hv: Gather address family information. - patches.suse/msft-hv-0378-Tools-hv-Gather-subnet-information.patch: Tools: hv: Gather subnet information. - patches.suse/msft-hv-0379-Tools-hv-Represent-the-ipv6-mask-using-CIDR-notation.patch: Tools: hv: Represent the ipv6 mask using CIDR notation. - patches.suse/msft-hv-0380-Tools-hv-Gather-ipv-4-6-gateway-information.patch: Tools: hv: Gather ipv[4,6] gateway information. - patches.suse/msft-hv-0381-hv-fail-the-probing-immediately-when-we-are-not-in-h.patch: hv: fail the probing immediately when we are not in hyperv platform. - patches.suse/msft-hv-0382-hv-vmbus_drv-detect-hyperv-through-x86_hyper.patch: hv: vmbus_drv: detect hyperv through x86_hyper. - patches.suse/msft-hv-0383-Tools-hv-Get-rid-of-some-unused-variables.patch: Tools: hv: Get rid of some unused variables. - patches.suse/msft-hv-0384-Tools-hv-Correctly-type-string-variables.patch: Tools: hv: Correctly type string variables. - patches.suse/msft-hv-0385-Tools-hv-Add-an-example-script-to-retrieve-DNS-entri.patch: Tools: hv: Add an example script to retrieve DNS entries. - patches.suse/msft-hv-0386-Tools-hv-Gather-DNS-information.patch: Tools: hv: Gather DNS information. - patches.suse/msft-hv-0387-Drivers-hv-kvp-Copy-the-address-family-information.patch: Drivers: hv: kvp: Copy the address family information. - patches.suse/msft-hv-0388-Tools-hv-Add-an-example-script-to-retrieve-dhcp-stat.patch: Tools: hv: Add an example script to retrieve dhcp state. - patches.suse/msft-hv-0389-Tools-hv-Gather-DHCP-information.patch: Tools: hv: Gather DHCP information. - patches.suse/msft-hv-0390-Tools-hv-Add-an-example-script-to-configure-an-inter.patch: Tools: hv: Add an example script to configure an interface. - patches.suse/msft-hv-0391-Tools-hv-Implement-the-KVP-verb-KVP_OP_SET_IP_INFO.patch: Tools: hv: Implement the KVP verb - KVP_OP_SET_IP_INFO. - patches.suse/msft-hv-0392-Tools-hv-Rename-the-function-kvp_get_ip_address.patch: Tools: hv: Rename the function kvp_get_ip_address(). - patches.suse/msft-hv-0393-Tools-hv-Implement-the-KVP-verb-KVP_OP_GET_IP_INFO.patch: Tools: hv: Implement the KVP verb - KVP_OP_GET_IP_INFO. - patches.suse/msft-hv-0394-tools-hv-Fix-file-handle-leak.patch: tools/hv: Fix file handle leak. - patches.suse/msft-hv-0395-tools-hv-Fix-exit-error-code.patch: tools/hv: Fix exit() error code. - patches.suse/msft-hv-0396-tools-hv-Check-for-read-write-errors.patch: tools/hv: Check for read/write errors. - patches.suse/msft-hv-0397-tools-hv-Parse-etc-os-release.patch: tools/hv: Parse /etc/os-release. - patches.suse/msft-hv-0398-hyperv-Fix-the-max_xfer_size-in-RNDIS-initialization.patch: hyperv: Fix the max_xfer_size in RNDIS initialization. - patches.suse/msft-hv-0399-hyperv-Fix-the-missing-return-value-in-rndis_filter_.patch: hyperv: Fix the missing return value in rndis_filter_set_packet_filter(). - patches.suse/msft-hv-0400-hyperv-Fix-page-buffer-handling-in-rndis_filter_send.patch: hyperv: Fix page buffer handling in rndis_filter_send_request(). - patches.suse/msft-hv-0401-hyperv-Remove-extra-allocated-space-for-recv_pkt_lis.patch: hyperv: Remove extra allocated space for recv_pkt_list elements. - patches.suse/msft-hv-0402-hyperv-Report-actual-status-in-receive-completion-pa.patch: hyperv: Report actual status in receive completion packet. - patches.suse/msft-hv-0403-hyperv-Add-buffer-for-extended-info-after-the-RNDIS-.patch: hyperv: Add buffer for extended info after the RNDIS response message. - patches.suse/suse-hv-Cleanup-the-guest-ID-computation.patch: Delete.- patches.drivers/mlx4_en-map-entire-pages-to-increase-throughput: Fixed build warning, update references (bnc#774500,LTC#83966).- patches.xen/1189-frontends-unexpected-close.patch: frontends: handle backend CLOSED without CLOSING. - patches.xen/1191-pciback-find-error-paths.patch: pciback: properly clean up after calling pcistub_device_find(). - patches.xen/xen-netfront-poll: netfront: add netconsole support (bnc#763858 fate#313830). - Refresh other Xen patches.- patches.fixes/nf_conntrack_ipv6-fix-tracking-of-ICMPv6-error-messages-containing-fragments.patch: netfilter: nf_conntrack_ipv6: fix tracking of ICMPv6 error messages containing fragments (bnc#779750).- patches.fixes/ipv6-xfrm-use-conntrack-reassembled-packet-for-policy-lookup.patch: ipv6, xfrm: use conntrack-reassembled packet for policy lookup (bnc#780216).- patches.fixes/tcp-flush-DMA-queue-before-sk_wait_data-if-rcv_wnd-i.patch: update mainline reference- patches.fixes/inetpeer-add-namespace-support-for-inetpeer.patch: inetpeer: add namespace support for inetpeer (bnc#779969). - patches.fixes/inetpeer-add-parameter-net-for-inet_getpeer_v4-v6.patch: inetpeer: add parameter net for inet_getpeer_v4,v6 (bnc#779969). - patches.fixes/inetpeer-make-unused_peers-list-per-netns.patch: inetpeer: make unused_peers list per-netns (bnc#779969). - patches.kabi/kABI-use-net_generic-to-protect-struct-netns_ipv-4-6.patch: kABI: use net_generic to protect struct netns_ipv{4,6} (bnc#779969).- Update config files. Mark tipc kernel module as externally supported (FATE#305033)- patches.rpmify/kbuild-fix-gcc-x-syntax.patch: Fix more occurrences of the same.- patches.arch/s390-57-01-zfcp-sdev-crash.patch: zfcp: only access zfcp_scsi_dev for valid scsi_device (bnc#781484,LTC#85285). - patches.arch/s390-57-02-dasd_check_count_address.patch: dasd: check count address during online setting (bnc#781484,LTC#85346). - patches.arch/s390-57-03-hugetlbfs_deadlock.patch: hugetlbfs: fix deadlock in unmap_hugepage_range() (bnc#781484,LTC#85449). - patches.arch/s390-57-04-huge_pgtable_walk.patch: kernel: make user-access pagetable walk code huge page aware (bnc#781484,LTC#85455). - patches.arch/s390-57-05-hugetlbfs_tlb_invalidate.patch: hugetlbfs: add missing TLB invalidation (bnc#781484,LTC#85463).- patches.rpmify/kbuild-fix-gcc-x-syntax.patch: kbuild: Fix gcc - x syntax (bnc#773831).- patches.suse/supported-flag: Re-enabled warning on unsupported module loading.- patches.fixes/nbd-clear-waiting_queue-on-shutdown: nbd: clear waiting_queue on shutdown (bnc#778630).- patches.drivers/drm-i915-enable-plain-RC6-on-Sandy-Bridge-by-default.patch: drm/i915: enable plain RC6 on Sandy Bridge by default (bnc#725355).- patches.kernel.org/patch-3.0.42-43: Update references (bnc#762214 bnc#779462).- patches.fixes/nohz-fix-idle-ticks-in-cpu-summary-line-for-proc-stat.patch: nohz: fix idle ticks in cpu summary line of /proc/stat (follow up fix for bnc#767469, bnc#705551).- Linux 3.0.43. - patches.drivers/cciss-update-to-4.6.28.patch: Refresh. - patches.fixes/mm-hugetlbfs-Correctly-detect-if-page-tables-have-just-been-shared.patch: Refresh. - patches.suse/scsi-error-test-unit-ready-timeout: Refresh. - patches.fixes/audit-don-t-free_chunk-after-fsnotify_add_mark.patch: Delete. - patches.fixes/audit-fix-refcounting-in-audit-tree.patch: Delete. - patches.fixes/nfsd-svc_xprt_enqueue-busy-loop.fix: Delete.- patches.suse/fix-TAINT_NO_SUPPORT-handling-on-module-load.patch: fix TAINT_NO_SUPPORT handling on module load.- patches.fixes/nfs-fix-oopses-in-nfs_lookup_revalidate-and-nfs_open_revalidate.patch: NFS: Fix Oopses in nfs_lookup_revalidate and nfs4_lookup_revalidate (bnc#780008).- patches.fixes/nfsd-svc_xprt_enqueue-busy-loop.fix: svcrpc: fix svc_xprt_enqueue/svc_recv busy-looping (bnc@779462).- rpm/kernel-binary.spec.in: Temporarily disable icecream builds until miscompilation is resolved (bnc#763954 bnc#773831)- patches.fixes/net-do-not-disable-sg-for-packets-requiring-no-check.patch: net: do not disable sg for packets requiring no checksum (bnc#774859).- patches.drivers/sfc-prevent-extreme-TSO-parameters-from-stalling-TX-.patch: sfc: prevent extreme TSO parameters from stalling TX queues (bnc#774523 CVE-2012-3412). - patches.drivers/net-Allow-driver-to-limit-number-of-GSO-segments-per.patch: Delete. - patches.drivers/sfc-Fix-maximum-number-of-TSO-segments-and-minimum-T.patch: Delete. - patches.drivers/sfc-Replace-some-literal-constants-with-EFX_PAGE_SIZ.patch: Delete. - patches.drivers/tcp-Apply-device-TSO-segment-limit-earlier.patch: Delete.- patches.arch/x86_mce_fix_32bit_v86_kernel_vs_user_ring.patch: X86 MCE: Fix correct ring/severity identification in V86 case (bnc#773267).- patches.fixes/scsi_dh_rdac-Add-a-new-netapp-vendor-product-string.patch: scsi_dh_rdac: Add a new netapp vendor/product string (bnc#772483). - patches.fixes/scsi_dh_rdac-Consolidate-rdac-strings-together.patch: scsi_dh_rdac : Consolidate rdac strings together (bnc#772483). - patches.fixes/scsi_dh_rdac-minor-return-fix-for-rdac.patch: scsi_dh_rdac : minor return fix for rdac (bnc#772483).- Update reference module symbol versions.- patches.fixes/scsi-dh-rdac-associate-hba-and-storage.patch: dh_rdac: Associate HBA and storage in rdac_controller to support partitions in storage (bnc#772454). - patches.fixes/scsi-dh-rdac-fix-error-path.patch: scsi_dh_rdac: Fix error path (bnc#772454). - patches.fixes/scsi-dh-rdac-fix-for-unbalanced-ref-count.patch: scsi_dh_rdac: Fix for unbalanced reference count (bnc#772454).- patches.fixes/sd-ensure-we-correctly-disable-devices.patch: sd: Ensure we correctly disable devices with unknown protection type (bnc#780876).- patches.drivers/net-Allow-driver-to-limit-number-of-GSO-segments-per.patch: net: Allow driver to limit number of GSO segments per skb (bnc#774523 CVE-2012-3412). - patches.drivers/sfc-Fix-maximum-number-of-TSO-segments-and-minimum-T.patch: sfc: Fix maximum number of TSO segments and minimum TX queue size (bnc#774523 CVE-2012-3412). - patches.drivers/sfc-Replace-some-literal-constants-with-EFX_PAGE_SIZ.patch: sfc: Replace some literal constants with EFX_PAGE_SIZE/EFX_BUF_SIZE (bnc#774523 CVE-2012-3412). - patches.drivers/tcp-Apply-device-TSO-segment-limit-earlier.patch: tcp: Apply device TSO segment limit earlier (bnc#774523 CVE-2012-3412).- patches.drivers/rds-set-msg_namelen.patch: rds: set correct msg_namelen (bnc#773383,CVE-2012-3430).- patches.suse/no-partition-scan: Implement 'no_partition_scan' commandline option (FATE#303697).- patches.fixes/vfs-dcache-use-dcache_dentry_killed.patch: vfs: dcache: use DCACHE_DENTRY_KILLED instead of DCACHE_DISCONNECTED in d_kill() (bnc#779699).- patches.fixes/igb-convert-to-ndo_fix_features.patch: igb: convert to ndo_fix_features (bnc#777269). - patches.fixes/igb-do-vlan-cleanup.patch: igb: do vlan cleanup (bnc#777269).- patches.fixes/tcp-flush-DMA-queue-before-sk_wait_data-if-rcv_wnd-i.patch: tcp: flush DMA queue before sk_wait_data if rcv_wnd is zero (bnc#777024).- patches.drivers/drm-Export-drm_probe_ddc: drm: Export drm_probe_ddc() (bnc#780461). - patches.drivers/drm-dp-Update-DPCD-defines: drm/dp: Update DPCD defines (bnc#780461). - patches.drivers/drm-i915-dp-Be-smarter-about-connection-sense: drm/i915/dp: Be smarter about connection sense for branch devices (bnc#780461). - patches.drivers/drm-i915-dp-Fetch-downstream-port-info: drm/i915/dp: Fetch downstream port info if needed during DPCD fetch (bnc#780461).- rpm/kernel-binary.spec.in: add Conflicts for older hyper-v hv_kvp_daemon (bnc#770763) the kernel-user interface changed, old binaries will busyloop with newer kernel- patches.suse/md-Do-not-block-when-displaying-info.patch: fix so that GET_ARRAY_INFO and GET_DISK_INFO fail correctly when array has not "raid_disks" count yet.btrfs updates - patches.suse/btrfs-8156-allow-setting-NOCOW-for-a-zero-sized-file-via-.patch: btrfs: allow setting NOCOW for a zero sized file via ioctl (FATE#306586). - patches.suse/btrfs-8157-fix-a-bug-of-per-file-nocow.patch: Btrfs: fix a bug of per-file nocow (FATE#306586). - patches.suse/btrfs-8158-fix-the-missing-error-information-in-create_pe.patch: Btrfs: fix the missing error information in create_pending_snapshot() (FATE#306586). - patches.suse/btrfs-8159-fix-off-by-one-in-file-clone.patch: Btrfs: fix off-by-one in file clone (FATE#306586). - patches.suse/btrfs-8160-move-transaction-aborts-to-the-point-of-failur.patch: btrfs: move transaction aborts to the point of failure (FATE#306586).- patches.fixes/sched-Fix-ancient-race-in-do_exit.patch: sched: Fix ancient race in do_exit() (bnc#781018).- patches.fixes/scsi-dh-alua-retry-mode-parameters-changed.patch: scsi_dh_alua: Retry the check-condition in case Mode Parameters Changed (bnc#772473).- patches.drivers/megaraid-sas-boot-hangs-while-LD-is-offline.patch: megaraid_sas: boot hangs up while LD is offline issue (bnc#698102).- patches.suse/memcg-warn-on-deeper-hierarchies-with-use_hierarchy-.patch: memcg: warn on deeper hierarchies with use_hierarchy==0 (bnc#781134).- patches.fixes/zfcp-remove-invalid-list-iterator.patch: zfcp: remove invalid reference to list iterator variable (bnc#779461).- Fixup patches for series2git: * patches.arch/ppc-lower-min-virt-procs: Refresh. * patches.arch/ppc-restrict-devport-to-ISA-systems: Refresh. - patches.fixes/scsi-update-scsi.h-with-SYNCHRONIZE_CACHE_16.patch: scsi: update scsi.h with SYNCHRONIZE_CACHE_16 (FATE#313550,bnc#769195). - patches.fixes/sd-init_sd-reshuffle.patch: sd: Reshuffle init_sd to avoid crash (bnc#776787).- patches.arch/s390-56-01-zfcp-make-trace-record-tags-unique.patch: [BZ 84941] zfcp: Make trace record tags unique (bnc#780012,LTC#84941). - patches.arch/s390-56-02-zfcp-do-not-wakeup-while-suspended.patch: zfcp: Do not wakeup while suspended (bnc#780012,LTC#84816). - patches.arch/s390-56-03-zfcp-restore-port-refcount-check.patch: zfcp: restore refcount check on port_remove (bnc#780012,LTC#84942). - patches.arch/s390-56-04-zfcp-optional-port-rescan-on-rscn.patch: zfcp: No automatic port_rescan on events (bnc#780012,LTC#84817). - patches.arch/s390-56-05-dasd_fix_path_group_race.patch: dasd: System hang after all channel were lost (bnc#780012,LTC#85025).- patches.suse/btrfs-8152-fix-unnecessary-warning-when-the-fragments-mak.patch: Btrfs: fix unnecessary warning when the fragments make the space alloc fail (FATE#306586). - patches.suse/btrfs-8153-return-EPERM-upon-rmdir-on-a-subvolume.patch: btrfs: return EPERM upon rmdir on a subvolume (FATE#306586). - patches.suse/btrfs-8154-cleanup-for-duplicated-code-in-find_free_exten.patch: Btrfs: cleanup for duplicated code in find_free_extent (FATE#306586). - patches.suse/btrfs-8155-cleanup-fs_info-hashers.patch: Btrfs: cleanup fs_info->hashers (FATE#306586).- patches.suse/btrfs-8151-use-vfree-instead-of-kfree.patch: Btrfs: use vfree instead of kfree (FATE#306586).- patches.drivers/alsa-sp2-hda-031-Add-mic-mute-LED-control-for-HP-laptop: ALSA: hda - Add mic-mute LED control for HP laptop (bnc#779330).- patches.fixes/st-remove-st_mutex.patch: st: remove st_mutex (bnc#773007).- patches.suse/btrfs-8146-fix-error-path-in-create_pending_snapshot.patch: Btrfs: fix error path in create_pending_snapshot() (FATE#306586). - patches.suse/btrfs-8147-fix-file-extent-discount-problem-in-the-snapsh.patch: Btrfs: fix file extent discount problem in the, snapshot (FATE#306586). - patches.suse/btrfs-8147-fix-full-backref-problem-when-inserting-shared.patch: Btrfs: fix full backref problem when inserting shared block reference (FATE#306586). - patches.suse/btrfs-8148-fix-wrong-size-for-the-reservation-of-the-snap.patch: Btrfs: fix wrong size for the reservation of the, snapshot creation (FATE#306586). - patches.suse/btrfs-8149-fix-error-handling-in-delete_block_group_cache.patch: Btrfs: fix error handling in delete_block_group_cache() (FATE#306586). - patches.suse/btrfs-8150-polish-names-of-kmem-caches.patch: btrfs: polish names of kmem caches (FATE#306586).- patches.fixes/cifs-Assume-passwords-are-encoded-according-to-iocha.patch: cifs: Assume passwords are encoded according to iocharset (try #2) (bnc#731035).- patches.drivers/drm-fb-helper-delay-hotplug-handling-when-partially-: drm/fb-helper: delay hotplug handling when partially bound (bnc#778822). - patches.drivers/drm-fb-helper-don-t-call-drm_crtc_helper_set_config: drm/fb helper: don't call drm_crtc_helper_set_config (bnc#778822).- patches.drivers/drm-Skip-too-big-EDID-extensions: Delete. Fixed in firmware, so no longer needed (bnc#764900)- patches.drivers/drm_i915_Fix_backlight_control_for_systems_which_have_bl_polarity_reversed.patch: DRM/i915: Fix backlight control for systems which have bl polarity reversed (bnc #766156).- patches.suse/btrfs-update-message-levels.patch: add missing newlinesbtrfs fixes from next - patches.suse/btrfs-8134-update-last-trans-if-we-don-t-update-the-inode.patch: Btrfs: update last trans if we don't update the inode (FATE#306586). - patches.suse/btrfs-8135-fix-possible-corruption-when-fsyncing-written-.patch: Btrfs: fix possible corruption when fsyncing written prealloced extents (FATE#306586). - patches.suse/btrfs-8137-set-journal_info-in-async-trans-commit-worker.patch: Btrfs: set journal_info in async trans commit worker (FATE#306586). - patches.suse/btrfs-8138-fix-a-bug-in-parsing-return-value-in-logical-r.patch: Btrfs: fix a bug in parsing return value in logical resolve (FATE#306586). - patches.suse/btrfs-8139-use-helper-for-logical-resolve.patch: Btrfs: use helper for logical resolve (FATE#306586). - patches.suse/btrfs-8140-use-larger-limit-for-translation-of-logical-to.patch: Btrfs: use larger limit for translation of logical to inode (FATE#306586). - patches.suse/btrfs-8141-use-a-slab-for-ordered-extents-allocation.patch: Btrfs: use a slab for ordered extents allocation (FATE#306586). - patches.suse/btrfs-8142-fix-unprotected-log_batch.patch: Btrfs: fix unprotected ->log_batch (FATE#306586). - patches.suse/btrfs-8143-output-more-information-when-aborting-a-unused.patch: Btrfs: output more information when aborting a unused transaction handle (FATE#306586). - patches.suse/btrfs-8144-fix-wrong-size-for-the-reservation-when-doing-.patch: Btrfs: fix wrong size for the reservation when doing, file pre-allocation (FATE#306586).- patches.kernel.org/patch-3.0.27-28: Update references (bnc#770695 CVE-2012-2745).- Update serise.conf: adjust the location of ceph patches in serise.conf- patches.fixes/0012-rt2x00-Add-RT5372-chipset-support.patch: Fix typo.- patches.xen/1188-x86_64-hypercall-unwind-r11.patch: x86-64: fix hypercall page unwind info. - patches.xen/xen3-patch-3.0.40-41: Linux 3.0.41. - Refresh other Xen patches (bnc#776019).- patches.drivers/e1000e-EECD-clear-REQ-and-GNT.patch: e1000e: clear REQ and GNT in EECD (82571 && 82572) (bnc#762099).- patches.fixes/bonding-add-some-slack-to-arpmon-time-limits.patch: bonding: add some slack to arp monitoring time limits (bnc#776095).- patches.fixes/0001-rt2x00-Remove-incorrect-led-blink.patch: rt2x00: Remove incorrect led blink. (bnc#774902) - patches.fixes/0002-Revert-rt2x00-handle-spurious-pci-interrupts.patch: Revert "rt2x00: handle spurious pci interrupts". (bnc#774902) - patches.fixes/0003-rt2x00-Mark-active-channel-s-survey-data-as-in-use.patch: rt2x00: Mark active channel's survey data as "in use". (bnc#774902) - patches.fixes/0004-rt2x00-Convert-big-if-statements-to-switch-statemen.patch: rt2x00: Convert big if-statements to switch-statements. (bnc#774902) - patches.fixes/0005-rt2800-zero-MAC_SYS_CTRL-bits-during-BBP-and-MAC-re.patch: rt2800: zero MAC_SYS_CTRL bits during BBP and MAC reset. (bnc#774902) - patches.fixes/0006-rt2800lib-fix-wrong-128dBm-when-signal-is-stronger.patch: rt2800lib: fix wrong -128dBm when signal is stronger than - 12dBm. (bnc#774902) - patches.fixes/0007-rt2800-document-RF_R03-register-bits-7-4.patch: rt2800: document RF_R03 register bits [7:4]. (bnc#774902) - patches.fixes/0008-rt2x00-Introduce-concept-of-driver-data-in-struct-r.patch: rt2x00: Introduce concept of driver data in struct rt2x00_dev. (bnc#774902) - patches.fixes/0009-rt2x00-Use-struct-rt2x00_dev-driver-data-in-rt2800.patch: rt2x00: Use struct rt2x00_dev driver data in rt2800{pci,usb}. (bnc#774902) - patches.fixes/0010-rt2x00-fix-a-possible-NULL-pointer-dereference.patch: rt2x00: fix a possible NULL pointer dereference. (bnc#774902) - patches.fixes/0011-rt2x00-Add-VCO-recalibration.patch: rt2x00:Add VCO recalibration. (bnc#774902) - patches.fixes/0012-rt2x00-Add-RT5372-chipset-support.patch: rt2x00:Add RT5372 chipset support. (bnc#774902) - patches.fixes/0013-rt2x00-Set-IEEE80211_HW_REPORTS_TX_ACK_STATUS-in-rt.patch: rt2x00: Set IEEE80211_HW_REPORTS_TX_ACK_STATUS in rt2800. (bnc#774902) - patches.fixes/0014-rt2800-introduce-wpdma_disable-function.patch: rt2800: introduce wpdma_disable function. (bnc#774902) - patches.fixes/0015-rt2800-initialize-queues-before-giving-up-due-to-DM.patch: rt2800: initialize queues before giving up due to DMA error. (bnc#774902) - patches.fixes/0016-rt2800-zero-registers-of-unused-TX-rings.patch: rt2800: zero registers of unused TX rings. (bnc#774902) - patches.fixes/0017-wireless-rt2x00-rt2800pci-add-more-RT539x-ids.patch: wireless: rt2x00: rt2800pci add more RT539x ids. (bnc#774902) - patches.fixes/0018-rt2x00-Add-RT5392-chipset-support.patch: rt2x00:Add RT5392 chipset support. (bnc#774902)- patches.arch/x2apic_opt_out.patch: Refresh.- patches.arch/x2apic_opt_out.patch: Refresh. bnc#778082- Linux 3.0.42. - patches.drivers/USB3-0094-xhci-Implement-HS-FS-LS-bandwidth-checking.patch: Refresh. - patches.drivers/USB3-0095-xhci-Add-software-BW-checking-quirk-to-Intel-PPT-xHCI.patch: Refresh. - patches.drivers/USB3-0155-usb-xhci-hide-MSI-code-behind-PCI-bars.patch: Refresh. - patches.drivers/xhci.git-e95829f474f0db3a4d940cae1423783edd966027.patch: Delete. - patches.drivers/xhci_switchback_kabi_fixup.patch: Delete.- patches.arch/x86-mce-Do-not-call-del_timer_sync-in-IRQ-context: x86, mce: Do not call del_timer_sync() in IRQ context (bnc#776896).- patches.arch/x86-mce-Do-not-call-del_timer_sync-in-IRQ-context: x86, mce: Do not call del_timer_sync() in IRQ context (bnc#776896).- rpm/kernel-binary.spec.in: Do not run debugedit -i, use eu-unstrip to retrieve the build-id instead (bnc#768504).- Added patches.arch/s390-54-01-hypfs-missing-files.patch to series.conf. (bnc#769407)- patches.fixes/acpi_processor_fix_acpi_id_not_zero.patch: cpufreq / ACPI: Fix not loading acpi-cpufreq driver regression (bnc#766654). - patches.xen/xen3-patch-3.0.17-18: Refresh.- patches.drivers/0001-ida-simplified-functions-for-id-allocation.patch: Update references (bnc#740291). - patches.drivers/0002-ida-make-ida_simple_get-put-IRQ-safe.patch: Update references (bnc#740291). - patches.drivers/0003-virtio-blk-use-ida-to-allocate-disk-index.patch: Update references (bnc#740291). - also fixed bnc#740291 references in kernel-source.changes.- patches.fixes/audit-don-t-free_chunk-after-fsnotify_add_mark.patch: audit: don't free_chunk() after fsnotify_add_mark() (bnc#762214). - patches.fixes/audit-fix-refcounting-in-audit-tree.patch: audit: fix refcounting in audit-tree (bnc#762214).- patches.drivers/mlx4_en-map-entire-pages-to-increase-throughput: mlx4_en: map entire pages to increase throughput.- patches.drivers/0001-usb-Add-support-for-root-hub-port-status-CAS.patch: usb: Add support for root hub port status CAS (bnc#774289).- patches.fixes/nfs-slow-down-state-manager-after-an-unhandled-error.patch: NFS: Slow down state manager after an unhandled error (bnc#774973).- patches.fixes/reiserfs-unlock-superblock-before-calling-reiserfs_quota_on_mount.patch: fs,reiserfs: unlock superblock before calling reiserfs_quota_on_mount() (bnc#772786).- patches.fixes/nfs-increase-callback-threads: nfs: increase number of permitted callback connections (bnc#771706).- patches.fixes/kvm-kvmclock-apply-kvmclock-offset-to-guest-wall-clo.patch: Refresh.- patches.fixes/Freezer-sunrpc-NFS-dont-allow-TASK_KILLABLE-sleeps-to-block-the-freezer.patch: Freezer / sunrpc / NFS: don't allow TASK_KILLABLE sleeps to block the freezer (bnc#775182).- patches.fixes/block-do-no-artificially-constrain-max_sectors.patch: Add mainline commit id.- disable patch due to excessive warnings (patches.suse/btrfs-8133-fix-race-in-run_clustered_refs.patch)- Linux 3.0.41. - patches.drivers/edac_i7core_phys_proc_id_use_socketid.patch: Refresh. - patches.drivers/hwmon-coretemp-01-add-core-pkg-threshold-support-to-coretemp.patch: Refresh. - patches.drivers/hwmon-coretemp-05-dont-use-threshold-registers-for-tempX_max.patch: Refresh. - patches.fixes/Have-mmu_notifiers-use-SRCU-so-they-may-safely-schedule.patch: Refresh. - patches.kabi/kabi-protect-struct-irq_desc.patch: kABI: protect struct irq_desc. - patches.suse/zcrypt-feed-hwrandom: Refresh. - patches.xen/xen3-patch-2.6.31: Refresh. - patches.fixes/mm-hugetlbfs-Close-race-during-teardown-of-hugetlbfs-shared-page-tables-v3.patch: Delete.- patches.arch/ppc-lower-min-virt-procs: powerpc/pseries: Support lower minimum entitlement for virtual processors (bnc#775984). - patches.arch/ppc-restrict-devport-to-ISA-systems: powerpc: Disable /dev/port interface on systems without an ISA bridge (bnc#754670).- patches.fixes/ocfs2-Add-a-missing-journal-credit-in-ocfs2_link_cre.patch: ocfs2: Add a missing journal credit in ocfs2_link_credits() - v2 (bnc#773320).- patches.drivers/alsa-sp2-hda-030-Add-3stack-automute-model-to-AD1882-codec: ALSA: hda - Add 3stack-automute model to AD1882 codec (bnc#775373).- patches.fixes/block-do-no-artificially-constrain-max_sectors.patch: block: do not artificially constrain max_sectors for stacking drivers (bnc#774073).- patches.drivers/xhci_Fix_a_logical_vs_bitwise_AND_bug.patch: xhci: Fix a logical vs bitwise AND bug (bnc#772427).- patches.drivers/bnx2x-Clear-MDC-MDIO-warning-message.patch: bnx2x: Clear MDC/MDIO warning message (bnc#769035). - patches.drivers/bnx2x-Fix-BCM57810-KR-AN-speed-transition.patch: bnx2x: Fix BCM57810-KR AN speed transition (bnc#769035). - patches.drivers/bnx2x-Fix-BCM57810-KR-FC.patch: bnx2x: Fix BCM57810-KR FC (bnc#769035). - patches.drivers/bnx2x-Fix-BCM578x0-SFI-pre-emphasis-settings.patch: bnx2x: Fix BCM578x0-SFI pre-emphasis settings (bnc#769035). - patches.drivers/bnx2x-Fix-link-issue-for-BCM8727-boards.patch: bnx2x: Fix link issue for BCM8727 boards (bnc#769035). - patches.drivers/bnx2x-PFC-fix.patch: bnx2x: PFC fix (bnc#769035). - patches.drivers/bnx2x-fix-checksum-validation.patch: bnx2x: fix checksum validation (bnc#769035). - patches.drivers/bnx2x-fix-panic-when-TX-ring-is-full.patch: bnx2x: fix panic when TX ring is full (bnc#769035). - patches.drivers/bnx2x-previous-driver-unload-revised.patch: bnx2x: previous driver unload revised (bnc#769035). - patches.drivers/bnx2x-remove-WARN_ON.patch: bnx2x: remove WARN_ON (bnc#769035). - patches.drivers/bnx2x-update-driver-version.patch: bnx2x: update driver version (bnc#769035).- patches.drivers/xhci.git-e95829f474f0db3a4d940cae1423783edd966027.patch: xhci: Switch PPT ports to EHCI on shutdown (bnc#772427). - patches.drivers/xhci_register_fixup.diff: introduce private definitions of register definitions to preserve kABI (bnc#772427). - patches.drivers/xhci_switchback_kabi_fixup.patch: Introduce a private switchback method to preserve kABI (bnc#772427).- config.conf: Drop reference to a s390 vanilla config that does not exist.- Linux 3.0.40. - patches.suse/SoN-0022-nfs-enable-swap-on-NFS.patch: Refresh. - patches.arch/powerpc-Fix-wrong-divisor-in-usecs_to_cputime.patch: Delete. - patches.fixes/tcp-fix-MSG_TRUNC-dma-receive-offloading.patch: Delete.- patches.fixes/reiserfs-fix-deadlock-with-nfs-racing-on-create-lookup: reiserfs: fix deadlock with nfs racing on create/lookup (bnc#762693).- patches.suse/btrfs-8126-cleanup-for-unused-ref-cache-stuff.patch: Btrfs: cleanup for unused ref cache stuff (FATE#306586). - patches.suse/btrfs-8127-fix-a-misplaced-address-operator-in-a-conditio.patch: Btrfs: fix a misplaced address operator in a condition (FATE#306586). - patches.suse/btrfs-8128-fix-that-error-value-is-changed-by-mistake.patch: Btrfs: fix that error value is changed by mistake (FATE#306586). - patches.suse/btrfs-8129-fix-second-lock-in-btrfs_delete_delayed_items.patch: btrfs: fix second lock in btrfs_delete_delayed_items() (FATE#306586). - patches.suse/btrfs-8130-increase-the-size-of-the-free-space-cache.patch: Btrfs: increase the size of the free space cache (FATE#306586). - patches.suse/btrfs-8131-fix-enospc-problems-when-deleting-a-subvol.patch: Btrfs: fix enospc problems when deleting a subvol (FATE#306586). - patches.suse/btrfs-8132-fix-wrong-mtime-and-ctime-when-creating-snapsh.patch: Btrfs: fix wrong mtime and ctime when creating snapshots (FATE#306586). - patches.suse/btrfs-8133-fix-race-in-run_clustered_refs.patch: Btrfs: fix race in run_clustered_refs (FATE#306586).- patches.fixes/tmpfs-optimize-clearing-when-writing.patch: tmpfs: optimize clearing when writing (VM Performance). - patches.suse/tmpfs-simplify-filepage-swappage.patch: Refresh. - patches.suse/tmpfs-simplify-prealloc_page.patch: Refresh.- patches.fixes/sched-fix-divide-by-zero-in-thread_group-and-task_times.patch: sched: fix divide by zero in thread_group/task_times() (bnc#761774).- patches.fixes/block-avoid-infinite-discard-loop: block: eliminate potential for infinite loop in blkdev_issue_discard (bnc#773319).- patches.suse/dasd-set-and-unset-TIMEOUT-flag.patch: dasd: set and unset TIMEOUT flag automatically (bnc#768084).- Fix cosmetic (but worrisome to users) stop class accounting bug. - patches.fixes/sched-fix-migration-thread-accounting-woes.patch: sched: fix migration thread runtime bogosity (bnc#773688, bnc#769251).- rpm/kernel-binary.spec.in: Fix Obsoletes: tag for the SLE11-SP1 realtek-r8192ce_pci-kmp package.- patches.fixes/0001-rt2800-Add-documentation-on-MCU-requests.patch: rt2800: Add documentation on MCU requests. (bnc#744198) - patches.fixes/0002-rt2800pci-Fix-Error-MCU-request-failed-during-initia.patch: rt2800pci: Fix 'Error - MCU request failed' during initialization. (bnc#744198)- patches.drivers/btusb-BCM20702A0-device-id: Bluetooth: Another vendor specific ID for BCM20702A0 [0a5c:21f1] (bnc#774612).- patches.fixes/memcg-further-prevent-OOM-with-too-many-dirty-pages.patch: memcg: further prevent OOM with too many dirty pages (bnc#763198). - patches.fixes/mm-consider-PageReclaim-for-sync-reclaim.patch: Refresh to match the upstream version.- patches.fixes/tmpfs-distribute-interleave-better-across-nodes.patch: tmpfs: distribute interleave better across nodes (bnc#764209). - patches.fixes/tmpfs-implement-NUMA-node-interleaving.patch: droped in favor of the upstream patch- patches.arch/s390-55-03-crst-table-downgrade-v2.patch: kernel: incorrect task size after fork of a 31 bit process (bnc#772407,LTC#83674). - patches.arch/s390-55-03-crst-table-downgrade.patch: Deleted due to 31bit compile error.- patches.fixes/rt2800-add-chipset-revision-rt5390r-support: rt2800: add chipset revision RT5390R support (bnc#772566).- patches.fixes/reiserfs-fix-deadlock-in-quota-code: reiserfs: fix deadlocks with quotas (bnc#774285).btrfs fixes (3.3-3.5+) - patches.suse/btrfs-8096-avoid-sleeping-in-verify_parent_transid-while-.patch: Btrfs: avoid sleeping in verify_parent_transid while atomic (FATE#306586). - patches.suse/btrfs-8097-fix-btrfs_release_extent_buffer_page-with-the-.patch: Btrfs: fix btrfs_release_extent_buffer_page with the right usage of num_extent_pages (FATE#306586). - patches.suse/btrfs-8098-do-not-check-delalloc-when-updating-disk_i_siz.patch: Btrfs: do not check delalloc when updating disk_i_size (FATE#306586). - patches.suse/btrfs-8102-look-into-the-extent-during-find_all_leafs.patch: Btrfs: look into the extent during find_all_leafs (FATE#306586). - patches.suse/btrfs-8103-don-t-set-for_cow-parameter-for-tree-block-fun.patch: Btrfs: don't set for_cow parameter for tree block functions (FATE#306586). - patches.suse/btrfs-8105-fix-defrag-regression.patch: Btrfs: fix defrag regression (FATE#306586). - patches.suse/btrfs-8106-fix-missing-inherited-flag-in-rename.patch: Btrfs: fix missing inherited flag in rename (FATE#306586). - patches.suse/btrfs-8107-do-not-resize-a-seeding-device.patch: Btrfs: do not resize a seeding device (FATE#306586). - patches.suse/btrfs-8108-cast-devid-to-unsigned-long-long-for-printk-ll.patch: Btrfs: cast devid to unsigned long long for printk %llu (FATE#306586). - patches.suse/btrfs-8109-add-a-missing-spin_lock.patch: Btrfs: add a missing spin_lock (FATE#306586). - patches.suse/btrfs-8111-restore-restriper-state-on-all-mounts.patch: Btrfs: restore restriper state on all mounts (FATE#306586). - patches.suse/btrfs-8112-resume-balance-on-rw-re-mounts-properly.patch: Btrfs: resume balance on rw (re)mounts properly (FATE#306586). - patches.suse/btrfs-8114-fix-tree-log-remove-space-corner-case.patch: Btrfs: fix tree log remove space corner case (FATE#306586). - patches.suse/btrfs-8115-hold-a-ref-on-the-inode-during-writepages.patch: Btrfs: hold a ref on the inode during writepages (FATE#306586). - patches.suse/btrfs-8117-do-not-return-EINVAL-instead-of-ENOMEM-from-op.patch: Btrfs: do not return EINVAL instead of ENOMEM from open_ctree() (FATE#306586). - patches.suse/btrfs-8118-do-not-ignore-errors-from-btrfs_cleanup_fs_roo.patch: Btrfs: do not ignore errors from btrfs_cleanup_fs_roots() when mounting (FATE#306586). - patches.suse/btrfs-8119-fix-error-handling-in-__add_reloc_root.patch: Btrfs: fix error handling in __add_reloc_root() (FATE#306586). - patches.suse/btrfs-8120-return-error-of-btrfs_update_inode-to-caller.patch: Btrfs: return error of btrfs_update_inode() to caller (FATE#306586). - patches.suse/btrfs-8121-fix-typo-in-cow_file_range_async-and-async_cow.patch: Btrfs: fix typo in cow_file_range_async and async_cow_submit (FATE#306586). - patches.suse/btrfs-8122-fix-btrfs_is_free_space_inode-to-recognize-btr.patch: Btrfs: fix btrfs_is_free_space_inode to recognize btree inode (FATE#306586). - patches.suse/btrfs-8123-kill-root-from-btrfs_is_free_space_inode.patch: Btrfs: kill root from btrfs_is_free_space_inode (FATE#306586). - patches.suse/btrfs-8125-zero-unused-bytes-in-inode-item.patch: Btrfs: zero unused bytes in inode item (FATE#306586). - patches.suse/btrfs-update-message-levels.patch: Refresh.- patches.fixes/silence-weird-name-warning: VFS: avoid prepend_path warning about d_obtain_alias aliases (bnc#773006).- patches.fixes/md-raid0-size-fix: md: Don't truncate size at 4TB for RAID0 and Linear (email to Linux (Big md broken after update)).- patches.fixes/ntp-avoid-printk-under-xtime_lock.patch: ntp: avoid printk under xtime_lock (bnc#767684).- patches.suse/dasd-fail-all-requests-after-timeout.patch: Use correct queue for aborting requests.- patches.fixes/kvm-kvmclock-apply-kvmclock-offset-to-guest-wall-clo.patch: kvm: kvmclock: apply kvmclock offset to guest wall clock time (bnc#766445).- patches.arch/s390-do-not-clobber-personality-flags-on-exec.patch: [S390] Do not clobber personality flags on exec (bnc#770034).- Linux 3.0.39. - patches.arch/mm-avoid-bad-page-on-lru: Refresh. - patches.arch/mm-avoid-bad-page-on-lru-fix.patch: Refresh. - patches.fixes/cpuset-mm-optimise-put_mems_allowed-usage.patch: Refresh. - patches.fixes/cpuset-mm-reduce-memory-barrier-related-damage-fix.patch: Update references (VM performance). - patches.fixes/mm-vmscan-do-not-force-scan.patch: Refresh. - patches.fixes/mm-vmscan-drop-nr_force_scan-from-get_scan_count.patch: Refresh. - patches.kabi/kabi-protect-struct-task_struct.patch: kABI: protect thread_struct (VM performance). - patches.suse/dm-raid45-26-Nov-2009.patch: Refresh. - patches.suse/mm-vmscan-add-customisable-shrinker-batch-size.patch: Refresh. - patches.fixes/cpuset-mm-reduce-memory-barrier-related-damage-kabi.patch: Delete. - patches.fixes/cpuset-mm-reduce-memory-barrier-related-damage.patch: Delete. - patches.fixes/mm-cpusets-avoid-looping-when-storing-to-mems_allowed-if-one.patch: Delete. - patches.fixes/mm-cpusets-stall-when-updating-mems_allowed-for-mempolicy-or.patch: Delete. - patches.fixes/mm-hotplug-check-if-pages-reserved-on-per-section-basis.patch: Delete. - patches.fixes/mm-kswapd-assign-neworder-after-wakeup.patch: Delete. - patches.fixes/mm-kswapd-avoid-unnecessary-rebalance.patch: Delete. - patches.fixes/mm-reduce-work-done-when-updating-min_free_kbytes.patch: Delete. - patches.fixes/mm-test-PageSwapBacked-in-lumpy-reclaim.patch: Delete. - patches.fixes/mm-vmscan-activate-executable-pages-after-first-usage.patch: Delete. - patches.fixes/mm-vmscan-clear-ZONE_CONGESTED-for-zone-with-good-watermark.patch: Delete. - patches.fixes/mm-vmscan-fix-force-scanning-small-targets-without-swap.patch: Delete. - patches.fixes/mm-vmscan-promote-shared-file-mapped-pages.patch: Delete. - patches.fixes/mm-vmscan.c-consider-swap-space-when-deciding-whether-to-continue-reclaim.patch: Delete. - patches.suse/mm-compaction-Allow-compaction-to-isolate-dirty-pages.patch: Delete. - patches.suse/mm-compaction-Determine-if-dirty-pages-can-be-migrated-without-blocking-within-migratepage.patch: Delete. - patches.suse/mm-compaction-introduce-sync-light-migration-hugetlbfs-fix.patch: Delete. - patches.suse/mm-compaction-introduce-sync-light-migration.patch: Delete. - patches.suse/mm-compaction-make-isolate_lru_page-filter-aware-again.patch: Delete. - patches.suse/mm-compaction-make-isolate_lru_page-filter-aware.patch: Delete. - patches.suse/mm-compaction-trivial-clean-up-in-acct_isolated.patch: Delete. - patches.suse/mm-migration-clean-up-unmap_and_move.patch: Delete. - patches.suse/mm-page-allocator-Do-not-call-direct-reclaim-for-THP-allocations-while-compaction-is-deferred.patch: Delete. - patches.suse/mm-thp-abort-reclaim-compaction-if-compaction-can-proceed.patch: Delete. - patches.suse/mm-thp-limit-direct-reclaim-for-high-order-allocations.patch: Delete. - patches.suse/mm-vmscan-Check-if-reclaim-should-really-abort-even-if-compaction_ready-is-true-for-one-zone.patch: Delete. - patches.suse/mm-vmscan-add-shrink_slab-tracepoints.patch: Delete. - patches.suse/mm-vmscan-change-isolate-mode-from-define-to-bitwise-type.patch: Delete. - patches.suse/mm-vmscan-do-not-OOM-if-aborting-reclaim.patch: Delete. - patches.suse/mm-vmscan-ensure-sufficient-free-pages.patch: Delete. - patches.suse/mm-vmscan-reduce-wind-up-shrinker--nr-when-shrinker-cant-do-work.patch: Delete. - patches.suse/mm-vmscan-shrinker--nr-updates-race-and-go-wrong.patch: Delete. - patches.suse/mm-vmstat-cache-align-vm_stat.patch: Delete. - patches.suse/mm-zone_reclaim-make-isolate_lru_page-filter-aware.patch: Delete.- Refresh Xen patches (bnc#772831, add spinlock.nopoll option).- patches.suse/md-bitmap-unplug-fixes: md/bitmap: Don't write bitmap while earlier writes might be in-fligh (bnc#771398).- patches.suse/dasd-fail-all-requests-after-timeout.patch: Abort requests from correct queue.- patches.suse/md-abort-pending-requests: Fixup blktrace information.- patches.fixes/bonding-allow-all-slave-speeds.patch: bonding: allow all slave speeds (bnc#771428). - patches.fixes/bonding-comparing-a-u8-with-1-is-always-false.patch: Refresh. - patches.fixes/bonding-update-speed-duplex-for-NETDEV_CHANGE.patch: Refresh.- patches.fixes/mm-hugetlbfs-Close-race-during-teardown-of-hugetlbfs-shared-page-tables-v3.patch: mm: hugetlbfs: Close race during teardown of hugetlbfs shared page tables. - patches.fixes/mm-hugetlbfs-Correctly-detect-if-page-tables-have-just-been-shared.patch: mm: hugetlbfs: Correctly detect if page tables have just been shared. - patches.fixes/mm-hugetlb-decrement-mapcount-under-page_table_lock.patch: Delete. (Fix bad PMD message displayed while using hugetlbfs (bnc#762366)).- patches.fixes/proc-stats-Use-arch_idle_time-for-idle-and-iowait-ti.patch: Refresh - compile fix error- patches.drivers/alsa-sp2-hda-029-Evaluate-gpio_led-hints-at-the-right-moment: ALSA: hda - Evaluate gpio_led hints at the right moment (bnc#773878).- patches.suse/md-abort-pending-requests: Abort pending request for RAID10 (bnc#773251). - patches.suse/md-raid10-tracepoints: md: add raid10 tracepoints (bnc#768084). - patches.suse/md-wakeup-thread-upon-rdev_dec_pending: md: wakeup thread upon rdev_dec_pending() (bnc#771398).- patches.suse/dasd-fail-all-requests-after-timeout.patch: Kick tasklet instead of processing the request_queue directly.- patches.arch/s390-55-01-cpu-idle.patch: kernel: CPU idle vs CPU hotplug (bnc#772407,LTC#83468). - patches.arch/s390-55-02-lgr-early-panic.patch: lgr: Make lgr_page static (bnc#772407,LTC#83520). - patches.arch/s390-55-03-crst-table-downgrade.patch: kernel: incorrect task size after fork of a 31 bit process (bnc#772407,LTC#83674).- patches.suse/msft-hv-0359-net-hyperv-Use-wait_event-on-outstanding-sends-durin.patch: net/hyperv: Use wait_event on outstanding sends during device removal. - patches.suse/msft-hv-0360-Tools-hv-verify-origin-of-netlink-connector-message.patch: Tools: hv: verify origin of netlink connector message. - patches.suse/msft-hv-0361-hyperv-Add-support-for-setting-MAC-from-within-guest.patch: hyperv: Add support for setting MAC from within guests. - patches.suse/msft-hv-0362-Drivers-hv-Change-the-hex-constant-to-a-decimal-cons.patch: Drivers: hv: Change the hex constant to a decimal constant. - patches.suse/msft-hv-0363-hyperv-Add-error-handling-to-rndis_filter_device_add.patch: hyperv: Add error handling to rndis_filter_device_add(). - patches.suse/msft-hv-0364-hyperv-Add-a-check-for-ring_size-value.patch: hyperv: Add a check for ring_size value. - patches.suse/suse-hv-Cleanup-the-guest-ID-computation.patch: Drivers: hv: Cleanup the guest ID computation. - patches.suse/suse-hv-rndis_filter-defines.patch: hv: add RNDIS_OID_GEN_RNDIS_CONFIG_PARAMETER.- patches.suse/dasd-fail-all-requests-on-dasd_times_out.patch: Remove incorrect patch.- patches.suse/dasd-fail-all-requests-after-timeout.patch: Abort all requests on the request_queue, too (bnc#768084). - patches.suse/dasd-fail-all-requests-on-dasd_times_out.patch: dasd: Fail all requests on dasd_times_out() (bnc#768084).- patches.fixes/natsemi-long-cable-fix: Update Patch-mainline tag and add detailed explanations.)- patches.fixes/proc-stats-Use-arch_idle_time-for-idle-and-iowait-ti.patch: proc: stats: Use arch_idle_time for idle and iowait times if available (bnc#772893).- patches.fixes/tcp-fix-MSG_TRUNC-dma-receive-offloading.patch: tcp: perform DMA to userspace only if there is a task waiting for it (bnc#773606).- patches.fixes/rt2x00-RT3290-chip-support-v4.patch: Move to patches.drivers.- patches.drivers/rt2x00-fix_rt3290_resuming.patch: rt2x00 : fix rt3290 resuming failed (bnc#771778).- patches.suse/SUSE-bootsplash: Refresh. Fix wrong vfree() (bnc#773406)- patches.suse/dasd-timeout-attribute.patch: DASD: Add 'timeout' attribute (bnc#771361).- patches.suse/dasd-fail-all-requests-after-timeout.patch: Fixup typo in debugging message.- patches.kernel.org/patch-3.0.36-37: vhost: don't forget to schedule() (bnc#767983).- patches.suse/no-frame-pointer-select: Update mainline tag.- patches.kabi/powerpc-Fix-wrong-divisor-in-usecs_to_cputime-kabi.patch: powerpc, kabi: reintroduce __cputime_msec_factor (bnc#771242).- patches.suse/md-display-timeout-error.patch: Correctly register error code on failure.- patches.suse/md-unlock_rdev_access: Don't take mddev lock when reading rdev attributes from sysfs (bnc#772420).- Linux 3.0.38. - patches.kabi/kabi-protect-struct-hrtimer_cpu_base.patch: kABI: protect struct hrtimer_cpu_base. - patches.xen/xen3-patch-2.6.18: Refresh. - patches.drivers/intel_ips-blacklist-HP-ProBook-laptops: Delete. - patches.fixes/ntp-avoid-printk-under-xtime_lock.patch: Delete. - patches.fixes/ntp-fix-leap-second-hrtimer-deadlock.patch: Delete. - patches.fixes/tcp-drop-syn-fin-messages.patch: Delete.- patches.drivers/0031-bnx2fc-call-ctlr_link_up-only-when-the-interface-is-.patch: - patches.drivers/0033-bnx2fc-Return-error-statistics-of-remote-peer.patch: - patches.drivers/0034-bnx2fc-Bumped-version-to-1.0.8.patch: Fix Patch-mainline and Git-commit tags.- patches.fixes/scsi_dh-code-cleanup-and-remove-references-to-scsi_dev_info: - patches.fixes/scsi_dh_emc-adding-the-match-function-for-emc-device-handler: - patches.fixes/scsi_dh_hp_sw-adding-the-match-function-for-hp_sw-device_handler: - patches.fixes/scsi_dh_rdac-adding-the-match-function-for-rdac-device-handler: Fix Patch-mainline and Git-commit tags.- patches.arch/powerpc-Fix-wrong-divisor-in-usecs_to_cputime.patch: powerpc: Fix wrong divisor in usecs_to_cputime (bnc#771242).- patches.suse/led_classdev.sysfs-name.patch: Delete. All valid changes in this patch were merged into 2.6.32-rc3 The remaining change to default-on LED trigger changed the name from default-on to default::on, which is wrong.Fix Patch-mainline headers: - patches.suse/audit-export-logging.patch: Refresh. - patches.suse/perf-0277-x86-Fix-cmpxchg-usage-in-amd_put_event_constrai.patch: Refresh. - patches.suse/perf-userspace-no-werror.patch: Refresh. - patches.suse/perfmon2-remove_get_base_syscall_attr.patch: remove perfmon syscall_base attribute. - patches.suse/perfmon2-remove_syscalls.patch: Refresh. - patches.suse/perfmon2.patch: Refresh. - patches.suse/perfmon2_ioctl.patch: Refresh. - patches.suse/perfmon2_noutrace.patch: Refresh.Fix Patch-mainline headers: - patches.arch/x86_64-hpet-64bit-timer.patch: Refresh. - patches.fixes/ipv6-fix-problem-with-expired-dst-cache.patch: Refresh. - patches.fixes/net-allow-vlan-traffic-to-be-received-under-bond.patch: Refresh. - patches.fixes/net-make-ipv6-bind-honour-freebind.patch: Refresh. - patches.fixes/net-make-ipv6-pktinfo-honour-freebind.patch: Refresh. - patches.fixes/ntp-avoid-printk-under-xtime_lock.patch: Refresh. - patches.fixes/ntp-fix-leap-second-hrtimer-deadlock.patch: Refresh. - patches.fixes/vlan-allow-nested-vlan_do_receive.patch: Refresh. - patches.suse/ebt_vlan-dummy-debug-option.patch: Refresh. - patches.suse/enable_nf_conntrack_accounting_by_default.patch: Refresh. - patches.suse/ip6_tunnel-add-optional-fwmark-inherit.patch: Refresh. - patches.suse/ipv6-dont-block-modules-that-depend-on-ipv6-when-blacklisted.patch: Refresh. - patches.suse/l2tp_ppp-alias.patch: Refresh. - patches.suse/netfilter-ip_conntrack_slp.patch: Refresh.- Linux 3.0.37. - patches.arch/x86-reboot-blacklist-dell-optiplex-990.patch: Refresh. - patches.drivers/0143-be2net-support-multiple-TX-queues.patch: Refresh. - patches.drivers/rtnetlink-compute-and-store-minimum-ifinfo-dump-size: Refresh. - patches.kabi/kabi-add-padding-to-some-important-structures: Refresh. - patches.suse/SoN-0013-mm-Throttle-direct-reclaimers-if-PF_MEMALLOC-reserve.patch: Refresh. - patches.xen/xen3-patch-2.6.27: Refresh. - patches.drivers/0001-USB-option-Add-USB-ID-for-Novatel-Ovation-MC551.patch: Delete. - patches.drivers/0001-USB-option-add-id-for-Cellient-MEN-200.patch: Delete. - patches.drivers/drm-i915-Fix-eDP-blank-screen-after-S3-resume-on-HP: Delete. - patches.fixes/net-sock-validate-data_len-before-allocating-skb.patch: Delete. - patches.fixes/udf-Avoid-run-away-loop-when-partition-table-length-.patch: Delete. - patches.fixes/udf-Fortify-loading-of-sparing-table.patch: Delete. - patches.fixes/udf-Use-ret-instead-of-abusing-i-in-udf_load_logical.patch: Delete.- Add patch-mainline tags: patches.arch/ppc-efika-mpc52xx-ac97.patch patches.arch/ppc-efika-psc-console-autodetection.patch patches.arch/ppc64-xmon-dmesg-printing.patch patches.drivers/ehea-modinfo.patch patches.fixes/scsi-ibmvscsi-module_alias.patch patches.fixes/scsi-ibmvscsi-show-config.patch patches.suse/8250-sysrq-ctrl_o.patch patches.suse/led_classdev.sysfs-name.patch patches.suse/nameif-track-rename.patch patches.suse/ppc-powerbook-usb-fn-key-default.patch patches.suse/radeon-monitor-jsxx-quirk.patch- patches.suse/mm-use-cpu_chill-in-spin_trylock_page.patch: mm: use cpu_chill() in spin_trylock_page() and cancel on immediately RT. (bnc#768470)- patches.drivers/intel_ips-blacklist-HP-ProBook-laptops: Refresh. update git-commit and patch-mainline tags- patches.suse/acpiphp-match-to-Bochs-dmi-data.patch: Refresh. Fix Patch-mainline and From tags- patches.fixes/0001-usbhid-fix-error-handling-of-not-enough-bandwidth.patch: Refresh. - patches.suse/elousb-fix-api-usage.patch: Refresh. Patch-Mainline tags- Fixup Git-commit and Patch-Mainline tags: * patches.drivers/fcoe-0025-libfc-cache-align-struct-fc_fc.patch * patches.drivers/fcoe-0026-libfc-cache-align-struct-fc_ex.patch * patches.drivers/fcoe-0027-libfc-cache-align-fc_exch_pool.patch * patches.drivers/fcoe-0028-fcoe-use-real-dev-in-case-of-h.patch * patches.drivers/qla4xxx-Fixed-session-destroy-issue-on-link-up-down.patch * patches.drivers/qla4xxx-cleanup-make-qla4xxx_build_ddb_list-short * patches.drivers/qla4xxx-clear-the-risc-interrupt-bit-during-fw-init * patches.drivers/qla4xxx-disable-generating-pause-frames-in-case-of-fw-hung * patches.drivers/qla4xxx-temperature-monitoring-for-isp82xx-core * patches.drivers/qla4xxx-updated-device-id-check-for-BFS.patch * patches.fixes/fcoe-add-DCB-notifiers-to-set-skb-priority.patch * patches.fixes/fcoe-fix-regression-on-offload-em-matching-function * patches.fixes/fcoe-setup-default-initial-ddp-value * patches.fixes/fcoe-use_vlan_id-parameter- Update Git-commit and Patch-Mainline tags: * patches.drivers/qla4xxx-Add-new-FLT-firmware-region.patch * patches.drivers/qla4xxx-Clear-DDB-map-index-on-the-basis-of-AEN.patch * patches.drivers/qla4xxx-Do-not-add-duplicate-CHAP-entry-in-FLASH.patch * patches.drivers/qla4xxx-Fix-bidirectional-CHAP.patch * patches.drivers/qla4xxx-Fix-exporting-boot-targets-to-sysfs.patch * patches.drivers/qla4xxx-Fix-getting-BIDI-CHAP-for-boot-targets.patch * patches.drivers/qla4xxx-Fix-huge-delay-for-ISP4022.patch * patches.drivers/qla4xxx-Fix-un-necessary-delay-on-invalid-DDB.patch * patches.drivers/qla4xxx-Fix-verify-boot-idx-correctly.patch * patches.drivers/qla4xxx-Fixed-active-session-re-open-issue.patch * patches.drivers/qla4xxx-Fixed-device-blocked-issue-on-link-up-down.patch * patches.drivers/qla4xxx-Fixed-target-discovery-failed-issue.patch * patches.drivers/qla4xxx-Free-Device-Database-DDB-reserved-by-FW.patch * patches.drivers/qla4xxx-do-not-print-warning-when-rom-lock-fails.patch- Update git-commit and patch-mainline tags: patches.drivers/drm-Add-poll-blacklist-for-Dell-Latitude-E5420, patches.drivers/drm-Skip-too-big-EDID-extensions, patches.drivers/drm-edid-Add-a-workaround-for-1366x768-HD-panel, patches.drivers/drm-i915-Clear-TV-sense-state-bits-on-GM45, patches.drivers/iommu-Export-intel_iommu_enabled, patches.drivers/lis3-add-support-for-hp-2011-bnb, patches.drivers/synaptics-hp-clickpad, patches.drivers/synaptics-hp-new-model.diff, patches.fixes/xhci-Don-t-free-endpoints-in-xhci_mem_cleanup, patches.fixes/xhci-Fix-invalid-loop-check-in-xhci_free_tt_info- Update Git-commit and Patch-Mainline tags: * patches.drivers/0001-iscsi_transport-add-support-for-net-settings.patch * patches.drivers/0002-qla4xxx-add-support-for-set_net_config.patch * patches.drivers/0003-qla4xxx-Added-new-struct-ipaddress_config.patch * patches.drivers/0004-iscsi-class-add-iface-representation.patch * patches.drivers/0005-qla4xxx-added-support-to-show-multiple-iface-in-sys.patch * patches.drivers/0006-iscsi-cls-sysfs-group-is_visible-callout-for-conn-a.patch * patches.drivers/0007-iscsi-class-sysfs-group-is_visible-callout-for-sess.patch * patches.drivers/0008-iscsi-class-remove-iface-param-mask.patch * patches.drivers/0009-iscsi-class-sysfs-group-is_visible-callout-for-iscs.patch * patches.drivers/0010-be2iscsi-remove-host-and-session-casts.patch * patches.drivers/0011-iscsi-class-expand-vlan-support.patch * patches.drivers/0012-libiscsi-don-t-bugon-when-if-user-sets-markers.patch * patches.drivers/0013-qla4xxx-Add-VLAN-support.patch * patches.drivers/0014-iscsi-class-add-bsg-support-to-iscsi-class.patch * patches.drivers/0015-qla4xxx-add-bsg-support.patch * patches.drivers/0016-scsi_transport_iscsi-Add-conn-login-kernel-to-user.patch * patches.drivers/0017-qla4xxx-support-iscsiadm-session-mgmt.patch * patches.drivers/0018-qla4xxx-Remove-reduandant-code-after-open-iscsi-int.patch * patches.drivers/0019-qla4xxx-Boot-from-SAN-support-for-open-iscsi.patch * patches.drivers/0020-scsi_transport_iscsi-Added-support-to-update-mtu.patch * patches.drivers/0021-qla4xxx-Added-support-to-update-mtu.patch * patches.drivers/0022-qla4xxx-Code-cleanup-for-read-update-flash-using-BS.patch * patches.drivers/0023-qla4xxx-Add-get-ACB-state-support-using-BSG.patch * patches.drivers/0024-qla4xxx-Add-read-update-NVRAM-support-for-40xx-adap.patch * patches.drivers/0025-qla4xxx-Added-vendor-specific-sysfs-attributes.patch * patches.drivers/0026-scsi_transport_iscsi-Added-support-to-update-initia.patch * patches.drivers/0027-qla4xxx-added-support-to-update-initiator-iscsi-por.patch * patches.drivers/0028-qla4xxx-Added-restore-factory-defaults-support-usin.patch * patches.drivers/0029-qla4xxx-Added-Get-ACB-support-using-BSG.patch * patches.drivers/0030-scsi-Added-support-for-adapter-and-firmware-reset.patch * patches.drivers/0031-qla4xxx-Added-support-for-adapter-and-firmware-rese.patch: * patches.drivers/0032-qla4xxx-export-iface-name.patch * patches.drivers/0033-qla4xxx-select-iscsi-boot-sysfs-attrs.patch * patches.drivers/be2iscsi-Fix-for-case-where-task-sc-was-cleanedup.patch * patches.drivers/be2iscsi-Fix-for-wrong-dmsg-setting-in-wrb.patch * patches.drivers/be2iscsi-Move-Driver-Version-to-4.1.282.0.patch * patches.drivers/be2iscsi-memset-wrb-for-ring-create.patch * patches.drivers/be2iscsi-passing-correct-offset-in-async-paths.patch * patches.drivers/bnx2i-Fixed-kernel-panic-caused-by-unprotected-task.patch * patches.drivers/bnx2x-DCBX-use-define-instead-of-magic.patch * patches.drivers/bnx2x-Remove-on-stack-napi-struct-variable.patch * patches.drivers/bnx2x-add-endline-at-end-of-message.patch * patches.drivers/bnx2x-add-fan-failure-event-handling.patch * patches.drivers/bnx2x-cache-in-compressed-fw-image.patch * patches.drivers/bnx2x-prevent-race-in-statistics-flow.patch * patches.drivers/bnx2x-propagate-DCBX-negotiation.patch * patches.drivers/bnx2x-remove-unused-define.patch * patches.drivers/bnx2x-remove-unused-variable.patch * patches.drivers/bnx2x-separate-FCoE-and-iSCSI-license-initializatio.patch * patches.drivers/bnx2x-simplify-definition-of-RX_SGE_MASK_LEN-and-us.patch * patches.drivers/bnx2x-update-driver-version-to-1.70.35-0.patch * patches.drivers/bnx2x-use-rx_queue-index-for-skb_record_rx_queue.patch * patches.drivers/isci-SATA-STP-I-O-is-only-returned-in-the-no.patch * patches.drivers/isci-The-port-state-should-be-set-to-stoppin.patch * patches.drivers/isci-atapi-support.patch * patches.drivers/isci-export-phy-events-via-lldd_control_ph.patch * patches.drivers/isci-fix-decode-of-DONE_CRC_ERR-TC-completio.patch * patches.drivers/isci-fix-sgpio-register-definitions.patch * patches.drivers/isci-initial-sgpio-write-support.patch * patches.drivers/libsas-Allow-expander-T-T-attachments.patch * patches.drivers/libsas-disable-scanning-lun-0-on-ata-devic.patch * patches.drivers/libsas-dynamic-queue-depth.patch * patches.drivers/libsas-export-sas_alloc_task.patch * patches.drivers/libsas-fix-sas_queuecommand-return-values.patch * patches.drivers/libsas-fix-try_test_sas_gpio_gp_bit-build.patch * patches.drivers/libsas-fix-warnings-when-checking-sata-stp-p.patch * patches.drivers/libsas-libata-fix-change_queue_-depth-type.patch * patches.drivers/libsas-reindent-sas_queuecommand.patch * patches.drivers/libsas-sas_queuecommand-doesnt-need-host_loc.patch * patches.drivers/libsas-sgpio-write-support.patch * patches.drivers/lpfc-8.3.5.48.1p-update * patches.drivers/mvsas-remove-mvs_slave_-alloc-configure.patch * patches.drivers/pm8001-fix-DEV_IS_GONE-infinite-retry.patch * patches.drivers/pm8001-missing-break-statements.patch * patches.drivers/pm8001-remove-pm8001_slave_-alloc-configure.patch * patches.drivers/qla2xxx-0015-Add-support-for-ISP82xx-to-capture-dump-mi.patch * patches.drivers/qla2xxx-0016-Implemeted-beacon-on-off-for-ISP82XX.patch * patches.drivers/qla2xxx-0017-Prevent-CPU-lockups-when-ql2xdontresethba.patch * patches.drivers/qla2xxx-0018-Enable-write-permission-to-some-debug-relat.patch * patches.drivers/qla2xxx-0019-check-for-marker-IOCB-during-response-queue.patch * patches.drivers/qla2xxx-0020-Fix-array-out-of-bound-warning.patch * patches.drivers/qla2xxx-0021-During-loopdown-perform-Diagnostic-loopback.patch * patches.drivers/qla2xxx-0022-Correction-to-sysfs-edc-interface.patch * patches.drivers/qla2xxx-0023-Provide-method-for-updating-I2C-attached-VP.patch * patches.drivers/qla2xxx-0024-Return-sysfs-error-codes-appropriate-to-con.patch * patches.drivers/qla2xxx-0025-Issue-mailbox-command-only-when-firmware-hu.patch * patches.drivers/qla2xxx-0026-Fix-active_mask-may-be-used-uninitialized.patchUpdate Patch-mainline and Git-commit tags. - patches.drivers/floppy-cleanup-disk-queue-if-add_disk-was-never-called.patch: Refresh. - patches.drivers/floppy-fix-a-crash-during-rmmod.patch: Refresh.- patches.fixes/macvtap-zerocopy-validate-vectors-before-building-sk.patch: Fix erroneous commit id.Update tags in some patches. - patches.rpmify/rpm-kernel-config: Refresh. - patches.suse/file-capabilities-disable-by-default.diff: Refresh. - patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch: Refresh. - patches.suse/rlim-0022-FS-proc-make-limits-writable.patch: Refresh. - patches.suse/squashfs-3.4.patch: Refresh.- patches.fixes/memcg-fix-hierarchical-oom-locking.patch: Refresh. - patches.fixes/nfs-slot-table-alloc: Refresh. - patches.fixes/thp-avoid-atomic64_read-in-pmd_read_atomic-for-32-bit-PAE.patch: Refresh. - patches.suse/shmem-do-not-export-shmem_inode_info-struct.patch: Refresh.- patches.drivers/be2net-Fix-EEH-error-reset-before-a-flash-dump-compl.patch: be2net: Fix EEH error reset before a flash dump completes (bnc#755546).- patches.fixes/st-clean-up-device-file-creation-and-removal: Fix adding of 'tape' link from device directory (bnc#771102). - patches.fixes/st-get-rid-of-scsi_tapes-array: Fix locking of minor idr during failure-case removal and add freeing of minor idr during device removal.- patches.suse/dasd-fail-all-requests-after-timeout.patch: Fixup handling of failfast requests (bnc#768084).- patches.suse/zcrypt-feed-hwrandom-2: s390: allow zcrypt to /dev/random feeding to be resumed (bnc#718910)- patches.drivers/0001-add-firmware-update-for-Atheros-0cf3-311f.patch: add firmware update for Atheros 0cf3:311f (bnc#761775).- Update config files. - Unset CONFIG_WATCHDOG_NOWAYOUT to prevent reboot of openais on service stop. (bnc#756585)- patches.arch/s390-54-01-hypfs-missing-files.patch: hypfs: Missing files and directories (bnc#769407,LTC#82838).- patches.suse/dasd-fail-all-requests-after-timeout.patch: dasd: Fail all requests after timeout (bnc#768084).- Update config files: Enable CONFIG_RT2800PCI_RT3290.- patches.fixes/rt2x00-RT3290-chip-support-v4.patch: Fix Git-commit tag and adjust indentation to match upstream.- patches.drivers/0001-ida-simplified-functions-for-id-allocation.patch: ida: simplified functions for id allocation (bnc#740291). - patches.drivers/0002-ida-make-ida_simple_get-put-IRQ-safe.patch: ida: make ida_simple_get/put() IRQ safe (bnc#740291). - patches.drivers/0003-virtio-blk-use-ida-to-allocate-disk-index.patch: virtio-blk: use ida to allocate disk index (bnc#740291).- patches.drivers/0001-USB-option-Add-USB-ID-for-Novatel-Ovation-MC551.patch: USB: option: Add USB ID for Novatel Ovation MC551 (bnc#770269). - patches.drivers/0001-USB-option-add-id-for-Cellient-MEN-200.patch: USB: option: add id for Cellient MEN-200 (bnc#770269).- patches.suse/SUSE-bootsplash: Refresh. Fix the position of SUSE logo on text screen (bnc#770238)- patches.drivers/0001-enable-Atheros-0cf3-311e-for-firmware-upload.patch: enable Atheros 0cf3:311e for firmware upload (bnc#766733).- patches.fixes/scsi_dh_alua-Improve-error-handling.patch: scsi_dh_alua: Improve error handling (bnc#715635). - patches.suse/scsi-remove-unhandled-error-code-message.patch: scsi: remove 'unhandled error code' message (bnc#715635).- patches.fixes/rt2x00-RT3290-chip-support-v4.patch Add to support Ralink ROMA wifi chip. (bnc#758703)- patches.fixes/epoll-clear-the-tfile_check_list-on-eloop.patch: epoll: clear the tfile_check_list on -ELOOP (bnc#769896).- patches.fixes/sched-Make-sure-to-not-re-read-variables-after-valid.patch: sched: Make sure to not re-read variables after validation (bnc#769685).- patches.arch/uv-update-nmi-handler-for-uv2.patch: x86_64, UV: Update NMI handler for UV1000/2000 systems (bnc#746509, bnc#744655). - patches.suse/kdb-v4.4-3.1-x86-1-fix-merge-error.patch: Fix merge error in original kdb x86 patch (bnc#746509). - patches.arch/uv-optimize-uv-nmis: Delete.- patches.fixes/udf-Avoid-run-away-loop-when-partition-table-length-.patch: udf: Avoid run away loop when partition table length is corrupted (bnc#769784). - patches.fixes/udf-Fortify-loading-of-sparing-table.patch: udf: Fortify loading of sparing table (bnc#769784). - patches.fixes/udf-Use-ret-instead-of-abusing-i-in-udf_load_logical.patch: udf: Use 'ret' instead of abusing 'i' in udf_load_logicalvol() (bnc#769784).- patches.drivers/intel_ips-blacklist-HP-ProBook-laptops: intel_ips: blacklist HP ProBook laptops (bnc#720946).- patches.drivers/drm-edid-Don-t-add-inferred-modes-with-higher-resolu: drm: edid: Don't add inferred modes with higher resolution (bnc#753172).- patches.fixes/init-mm-reschedule-when-initialising-large-numbers-of-sections.patch: init: mm: Reschedule when initialising large numbers of memory sections. (bnc#755620).- kabi: update reference files for vmbus_prep_negotiate_resp signature change SLE11-SP2 commit 77737566e7bd6521461b7f9a4f5fcb18d80d1ba2 changed signature of function vmbus_prep_negotiate_resp() but this symbol wasn't tracked in SLE11-SP2. As openSUSE-11.4-3.0 branch tracks this symbol, kABI reference files have to be updated. - commit 1943606- patches.arch/x86_x2apic_use_phys_apic_mode_on_bios_request.patch: x86/apic: Use x2apic physical mode based on FADT setting (bnc#768052).- patches.arch/s390-53-01-lgr-detection.patch: kernel: Add z/VM LGR detection (bnc#767281,LTC#RAS1203).- patches.suse/acpiphp-match-to-Bochs-dmi-data.patch: acpiphp: add dmi info to acpiphp module (bnc#754391).- patches.fixes/ntp-fix-leap-second-hrtimer-deadlock.patch: ntp: fix leap second hrtimer deadlock (bnc#768632).- patches.fixes/nohz-Fix-update_ts_time_stat-idle-accounting.patch: nohz: Fix update_ts_time_stat idle accounting (bnc#767469, bnc#705551). - patches.fixes/nohz-Make-idle-iowait-counter-update-conditional.patch: nohz: Make idle/iowait counter update conditional (bnc#767469, bnc#705551).- patches.fixes/mm-bug-introduce-BUILD_BUG_ON_INVALID-macro.patch: bug: introduce BUILD_BUG_ON_INVALID() macro - patches.fixes/mm-bug-completely-remove-code-generated-by-disabled-VM_BUG_ON.patch: bug: completely remove code generated by disabled. (VM Performance).- patches.suse/md-unblock-SET_DISK_FAULTY.patch: md: unblock 'SET_DISK_FAULTY' ioctl (bnc#768084).- patches.suse/ibm_x3850M2_blacklist_modesetting.patch: Update references (bnc#744314).- patches.fixes/mm-cond_resced-in-putback_lru_pages.patch: mm: call cond_resched in putback_lru_pages (bnc#763968).- Linux 3.0.36. - patches.kabi/kabi-protect-struct-usb_hcd.patch: Delete.- Update x84-64 Xen config file (CONFIG_ACPI_PROCESSOR_AGGREGATOR=m).- ia64 is odd man out, CONFIG_SCHED_HRTICK is not set, fix build failure due to missing hrtick_enabled() in that case. - patches.fixes/sched-Save-some-hrtick_start_fair-cycles.patch: Refresh.- Update Xen patches to 3.0.35. - patches.xen/frontswap-cleancache-invalidate, patches.xen/frontswap-config, patches.xen/frontswap-core, patches.xen/frontswap-header, patches.xen/frontswap-hooks: Update mainline tags. - Refresh other Xen patches. - patches.xen/xen3-thp-avoid-atomic64_read-in-pmd_read_atomic-for-32-bit-PAE.patch: thp: avoid atomic64_read in pmd_read_atomic for 32bit PAE (bnc#762991). - Update Xen config files (CONFIG_XEN_SPINLOCK_ACQUIRE_NESTING=1).- patches.drivers/drm-Add-poll-blacklist-for-Dell-Latitude-E5420: drm: Add poll blacklist for Dell Latitude E5420 (bnc#756276).- supported.conf: mark libceph and rbd as unsupported.- patches.fixes/ntp-avoid-printk-under-xtime_lock.patch: ntp: avoid printk under xtime_lock (bnc#767684).- disable patches.suse/btrfs-8052-fix-wrong-information-of-the-directory-in-the-.patch (bnc#757059) - patches.suse/btrfs-0450-avoid-deadlocks-from-GFP_KERNEL-allocations-du.patch: Refresh. - patches.suse/btrfs-handle-EIO: Refresh.- patches.drivers/drm-i915-Fix-eDP-blank-screen-after-S3-resume-on-HP: drm/i915: Fix eDP blank screen after S3 resume on HP desktops (bnc#752352).- patches.fixes/mm-hugetlb-decrement-mapcount-under-page_table_lock.patch: mm: hugetlb: Decrement mapcount under page table lock (Consistent mapcount decrementing under lock (bnc#762366)). - patches.fixes/mm-hugetlb-flush_tlb_range-needs-page_table_lock-when-mmap_sem-is-not-held.patch: mm: hugetlb: flush_tlb_range() needs page_table_lock when mmap_sem is not held. (Consistent locking for TLB flush of hugetlb pages (bnc#762366)). - patches.fixes/mm-hugetlb.c-undo-change-to-page-mapcount-in-fault-handler.patch: mm/hugetlb.c: undo change to page mapcount in fault handler (Handle potential leaks in hugetlbfs error paths (bnc#762366)).FATE#312404 - Update config files. - patches.ceph/0001-libceph-don-t-time-out-osd-requests-that-haven-t-bee.patch: libceph: don't time out osd requests that haven't been received. - patches.ceph/0002-rbd-cancel-watch-request-when-releasing-the-device.patch: rbd: cancel watch request when releasing the device. - patches.ceph/0003-rbd-set-blk_queue-request-sizes-to-object-size.patch: rbd: set blk_queue request sizes to object size. - patches.ceph/0004-libceph-fix-msgpool.patch: libceph: fix msgpool. - patches.ceph/0005-libceph-fix-leak-of-osd-structs-during-shutdown.patch: libceph: fix leak of osd structs during shutdown. - patches.ceph/0006-libceph-initialize-ack_stamp-to-avoid-unnecessary-co.patch: libceph: initialize ack_stamp to avoid unnecessary connection reset. - patches.ceph/0007-libceph-fix-parse-options-memory-leak.patch: libceph: fix parse options memory leak. - patches.ceph/0008-libceph-fix-linger-request-requeuing.patch: libceph: fix linger request requeuing. - patches.ceph/0009-libceph-fix-pg_temp-mapping-calculation.patch: libceph: fix pg_temp mapping calculation. - patches.ceph/0010-libceph-fix-pg_temp-mapping-update.patch: libceph: fix pg_temp mapping update. - patches.ceph/0011-libceph-create-messenger-with-client.patch.filterdiff: libceph: create messenger with client. - patches.ceph/0012-libceph-always-preallocate-mon-connection.patch: libceph: always preallocate mon connection. - patches.ceph/0013-libceph-don-t-complain-on-msgpool-alloc-failures.patch.filterdiff: libceph: don't complain on msgpool alloc failures. - patches.ceph/0014-libceph-warn-on-msg-allocation-failures.patch: libceph: warn on msg allocation failures. - patches.ceph/0015-ceph-fix-ceph_monc_init-memory-leak.patch: ceph: fix ceph_monc_init memory leak. - patches.ceph/0016-ceph-use-kernel-DNS-resolver.patch: ceph: use kernel DNS resolver. - patches.ceph/0017-libceph-force-resend-of-osd-requests-if-we-skip-an-o.patch: libceph: force resend of osd requests if we skip an osdmap. - patches.ceph/0018-libceph-Allocate-larger-oid-buffer-in-request-msgs.patch: libceph: Allocate larger oid buffer in request msgs. - patches.ceph/0019-rbd-return-an-error-when-an-invalid-header-is-read.patch: rbd: return an error when an invalid header is read. - patches.ceph/0020-rbd-remove-buggy-rollback-functionality.patch: rbd: remove buggy rollback functionality. - patches.ceph/0021-crush-fix-mapping-calculation-when-force-argument-do.patch: crush: fix mapping calculation when force argument doesn't exist. - patches.ceph/0022-ceph-Use-kmemdup-rather-than-duplicating-its-impleme.patch: ceph: Use kmemdup rather than duplicating its implementation. - patches.ceph/0023-crush-fix-force-for-non-root-TAKE.patch: crush: fix force for non-root TAKE. - patches.ceph/0024-libceph-remove-useless-return-value-for-osd_client-_.patch: libceph: remove useless return value for osd_client __send_request(). - patches.ceph/0025-rbd-initialize-snap_rwsem-in-rbd_add.patch: rbd: initialize snap_rwsem in rbd_add(). - patches.ceph/0026-ceph-initialize-client-debugfs-outside-of-monc-mutex.patch: ceph: initialize client debugfs outside of monc->mutex. - patches.ceph/0027-rbd-fix-a-memory-leak-in-rbd_get_client.patch: rbd: fix a memory leak in rbd_get_client(). - patches.ceph/0028-rbd-fix-safety-of-rbd_put_client.patch: rbd: fix safety of rbd_put_client(). - patches.ceph/0029-net-ceph-Only-clear-SOCK_NOSPACE-when-there-is-suffi.patch: net/ceph: Only clear SOCK_NOSPACE when there is sufficient space in the socket buffer. - patches.ceph/0030-libceph-fix-overflow-check-in-crush_decode.patch: libceph: fix overflow check in crush_decode(). - patches.ceph/0031-ceph-use-a-shared-zero-page-rather-than-one-per-mess.patch: ceph: use a shared zero page rather than one per messenger. - patches.ceph/0032-ceph-make-use-of-else-where-appropriate.patch: ceph: make use of "else" where appropriate. - patches.ceph/0033-ceph-kill-addr_str_lock-spinlock-use-atomic-instead.patch: ceph: kill addr_str_lock spinlock; use atomic instead. - patches.ceph/0034-ceph-eliminate-some-needless-casts.patch: ceph: eliminate some needless casts. - patches.ceph/0035-ceph-eliminate-some-abusive-casts.patch: ceph: eliminate some abusive casts. - patches.ceph/0036-rbd-a-few-small-cleanups.patch: rbd: a few small cleanups. - patches.ceph/0037-rbd-make-ceph_parse_options-return-a-pointer.patch.filterdiff: rbd: make ceph_parse_options() return a pointer. - patches.ceph/0038-rbd-do-not-duplicate-ceph_client-pointer-in-rbd_devi.patch: rbd: do not duplicate ceph_client pointer in rbd_device. - patches.ceph/0039-rbd-use-a-single-value-of-snap_name-to-mean-no-snap.patch: rbd: use a single value of snap_name to mean no snap. - patches.ceph/0040-rbd-encapsulate-new-rbd-id-selection.patch: rbd: encapsulate new rbd id selection. - patches.ceph/0041-rbd-rework-calculation-of-new-rbd-id-s.patch: rbd: rework calculation of new rbd id's. - patches.ceph/0042-rbd-protect-the-rbd_dev_list-with-a-spinlock.patch: rbd: protect the rbd_dev_list with a spinlock. - patches.ceph/0043-rbd-tie-rbd_dev_list-changes-to-rbd_id-operations.patch: rbd: tie rbd_dev_list changes to rbd_id operations. - patches.ceph/0044-rbd-restore-previous-rbd-id-sequence-behavior.patch: rbd: restore previous rbd id sequence behavior. - patches.ceph/0045-rbd-release-client-list-lock-sooner.patch: rbd: release client list lock sooner. - patches.ceph/0046-rbd-move-ctl_mutex-lock-inside-rbd_get_client.patch: rbd: move ctl_mutex lock inside rbd_get_client(). - patches.ceph/0047-rbd-move-ctl_mutex-lock-inside-rbd_client_create.patch: rbd: move ctl_mutex lock inside rbd_client_create(). - patches.ceph/0048-rbd-rename-node_lock.patch: rbd: rename "node_lock". - patches.ceph/0049-remove-extra-semicolon.patch: ceph-backport: remove extra semicolon. - patches.ceph/0050-rbd-a-few-simple-changes.patch: rbd: a few simple changes. - patches.ceph/0051-rbd-have-rbd_get_client-return-a-rbd_client.patch: rbd: have rbd_get_client() return a rbd_client. - patches.ceph/0052-rbd-reduce-memory-used-for-rbd_dev-fields.patch: rbd: reduce memory used for rbd_dev fields. - patches.ceph/0053-rbd-simplify-error-handling-in-rbd_add.patch: rbd: simplify error handling in rbd_add(). - patches.ceph/0054-rbd-encapsulate-argument-parsing-for-rbd_add.patch: rbd: encapsulate argument parsing for rbd_add(). - patches.ceph/0055-rbd-don-t-use-sscanf-in-rbd_add_parse_args.patch: rbd: don't use sscanf() in rbd_add_parse_args(). - patches.ceph/0056-rbd-do-a-few-checks-at-build-time.patch: rbd: do a few checks at build time. - patches.ceph/0057-rbd-have-rbd_parse_args-report-found-mon_addrs-size.patch: rbd: have rbd_parse_args() report found mon_addrs size. - patches.ceph/0058-rbd-don-t-allocate-mon_addrs-buffer-in-rbd_add.patch: rbd: don't allocate mon_addrs buffer in rbd_add(). - patches.ceph/0059-rbd-fix-module-sysfs-setup-teardown-code.patch: rbd: fix module sysfs setup/teardown code. - patches.ceph/0060-rbd-do-some-refactoring.patch: rbd: do some refactoring. - patches.ceph/0061-rbd-small-changes.patch: rbd: small changes. - patches.ceph/0062-rbd-don-t-drop-the-rbd_id-too-early.patch: rbd: don't drop the rbd_id too early. - patches.ceph/0063-libceph-move-prepare_write_banner.patch: libceph: move prepare_write_banner(). - patches.ceph/0064-libceph-encapsulate-connection-kvec-operations.patch: libceph: encapsulate connection kvec operations. - patches.ceph/0065-libceph-make-ceph_msgr_wq-private.patch: libceph: make ceph_msgr_wq private. - patches.ceph/0066-libceph-encapsulate-some-messenger-cleanup-code.patch: libceph: encapsulate some messenger cleanup code. - patches.ceph/0067-libceph-make-ceph_tcp_connect-return-int.patch: libceph: make ceph_tcp_connect() return int. - patches.ceph/0068-libceph-a-few-small-changes.patch: libceph: a few small changes. - patches.ceph/0069-ceph-ensure-Boolean-options-support-both-senses.patch.filterdiff: ceph: ensure Boolean options support both senses. - patches.ceph/0070-libceph-use-do-in-CRC-related-Boolean-variables.patch: libceph: use "do" in CRC-related Boolean variables. - patches.ceph/0071-libceph-separate-CRC-calculation-from-byte-swapping.patch: libceph: separate CRC calculation from byte swapping. - patches.ceph/0072-libceph-do-crc-calculations-outside-loop.patch: libceph: do crc calculations outside loop. - patches.ceph/0073-libceph-small-refactor-in-write_partial_kvec.patch: libceph: small refactor in write_partial_kvec(). - patches.ceph/0074-libceph-some-simple-changes.patch: libceph: some simple changes. - patches.ceph/0075-libceph-fix-inverted-crc-option-logic.patch: libceph: fix inverted crc option logic. - patches.ceph/0076-libceph-use-kernel_sendpage-for-sending-zeroes.patch: libceph: use kernel_sendpage() for sending zeroes. - patches.ceph/0077-libceph-only-call-kernel_sendpage-via-helper.patch: libceph: only call kernel_sendpage() via helper. - patches.ceph/0078-libceph-get-rid-of-zero_page_address.patch: libceph: get rid of zero_page_address. - patches.ceph/0079-libceph-rename-page_shift-variable-to-something-sens.patch: libceph: rename "page_shift" variable to something sensible. - patches.ceph/0080-libceph-isolate-kmap-call-in-write_partial_msg_pages.patch: libceph: isolate kmap() call in write_partial_msg_pages(). - patches.ceph/0081-rbd-move-snap_rwsem-to-the-device-rename-to-header_r.patch: rbd: move snap_rwsem to the device, rename to header_rwsem. - patches.ceph/0082-rbd-don-t-hold-spinlock-during-messenger-flush.patch: rbd: don't hold spinlock during messenger flush. - patches.ceph/0083-ceph-drop-support-for-preferred_osd-pgs.patch.filterdiff: ceph: drop support for preferred_osd pgs. - patches.ceph/0084-crush-clean-up-types-const-ness.patch: crush: clean up types, const-ness. - patches.ceph/0085-crush-adjust-local-retry-threshold.patch: crush: adjust local retry threshold. - patches.ceph/0086-crush-be-more-tolerant-of-nonsensical-crush-maps.patch: crush: be more tolerant of nonsensical crush maps. - patches.ceph/0087-crush-use-a-temporary-variable-to-simplify-crush_do_.patch: crush: use a temporary variable to simplify crush_do_rule. - patches.ceph/0088-crush-remove-forcefeed-functionality.patch: crush: remove forcefeed functionality. - patches.ceph/0089-crush-remove-parent-maps.patch: crush: remove parent maps. - patches.ceph/0090-crush-fix-tree-node-weight-lookup.patch: crush: fix tree node weight lookup. - patches.ceph/0091-crush-fix-memory-leak-when-destroying-tree-buckets.patch: crush: fix memory leak when destroying tree buckets. - patches.ceph/0092-crush-warn-on-do_rule-failure.patch: crush: warn on do_rule failure. - patches.ceph/0093-ceph-osd_client-fix-endianness-bug-in-osd_req_encode.patch: ceph: osd_client: fix endianness bug in osd_req_encode_op(). - patches.ceph/0094-ceph-fix-bounds-check-in-ceph_decode_need-and-ceph_e.patch: ceph: fix bounds check in ceph_decode_need and ceph_encode_need. - patches.ceph/0095-rbd-use-gfp_flags-parameter-in-rbd_header_from_disk.patch: rbd: use gfp_flags parameter in rbd_header_from_disk(). - patches.ceph/0096-rbd-fix-integer-overflow-in-rbd_header_from_disk.patch: rbd: fix integer overflow in rbd_header_from_disk(). - patches.ceph/0097-rbd-protect-read-of-snapshot-sequence-number.patch: rbd: protect read of snapshot sequence number. - patches.ceph/0098-rbd-store-snapshot-id-instead-of-index.patch: rbd: store snapshot id instead of index. - patches.ceph/0099-rbd-remove-conditional-snapid-parameters.patch: rbd: remove conditional snapid parameters. - patches.ceph/0100-rbd-fix-snapshot-size-type.patch: rbd: fix snapshot size type. - patches.ceph/0101-rbd-rename-__rbd_update_snaps-to-__rbd_refresh_heade.patch: rbd: rename __rbd_update_snaps to __rbd_refresh_header. - patches.ceph/0102-rbd-correct-sysfs-snap-attribute-documentation.patch: rbd: correct sysfs snap attribute documentation. - patches.ceph/0103-ceph-messenger-use-read_partial-in-read_partial_mess.patch: ceph: messenger: use read_partial() in read_partial_message(). - patches.ceph/0104-ceph-messenger-update-to-in-read_partial-caller.patch: ceph: messenger: update "to" in read_partial() caller. - patches.ceph/0105-ceph-messenger-change-read_partial-to-take-end-arg.patch: ceph: messenger: change read_partial() to take "end" arg. - patches.ceph/0106-libceph-don-t-reset-kvec-in-prepare_write_banner.patch: libceph: don't reset kvec in prepare_write_banner(). - patches.ceph/0107-ceph-messenger-reset-connection-kvec-caller.patch: ceph: messenger: reset connection kvec caller. - patches.ceph/0108-ceph-messenger-send-banner-in-process_connect.patch: ceph: messenger: send banner in process_connect(). - patches.ceph/0109-ceph-drop-msgr-argument-from-prepare_write_connect.patch: ceph: drop msgr argument from prepare_write_connect(). - patches.ceph/0110-ceph-don-t-set-WRITE_PENDING-too-early.patch: ceph: don't set WRITE_PENDING too early. - patches.ceph/0111-ceph-messenger-check-prepare_write_connect-result.patch: ceph: messenger: check prepare_write_connect() result. - patches.ceph/0112-ceph-messenger-rework-prepare_connect_authorizer.patch: ceph: messenger: rework prepare_connect_authorizer(). - patches.ceph/0113-ceph-messenger-check-return-from-get_authorizer.patch: ceph: messenger: check return from get_authorizer. - patches.ceph/0114-ceph-define-ceph_auth_handshake-type.patch.filterdiff: ceph: define ceph_auth_handshake type. - patches.ceph/0115-ceph-messenger-reduce-args-to-create_authorizer.patch.filterdiff: ceph: messenger: reduce args to create_authorizer. - patches.ceph/0116-ceph-ensure-auth-ops-are-defined-before-use.patch.filterdiff: ceph: ensure auth ops are defined before use. - patches.ceph/0117-ceph-have-get_authorizer-methods-return-pointers.patch.filterdiff: ceph: have get_authorizer methods return pointers. - patches.ceph/0118-ceph-use-info-returned-by-get_authorizer.patch.filterdiff: ceph: use info returned by get_authorizer. - patches.ceph/0119-ceph-return-pointer-from-prepare_connect_authorizer.patch: ceph: return pointer from prepare_connect_authorizer(). - patches.ceph/0120-ceph-rename-prepare_connect_authorizer.patch: ceph: rename prepare_connect_authorizer(). - patches.ceph/0121-ceph-add-auth-buf-in-prepare_write_connect.patch: ceph: add auth buf in prepare_write_connect(). - patches.ceph/0122-libceph-avoid-unregistering-osd-request-when-not-reg.patch: libceph: avoid unregistering osd request when not registered. - patches.ceph/0123-libceph-fix-pg_temp-updates.patch: libceph: fix pg_temp updates. - patches.ceph/0124-rename-__atomic_add_unless.patch: ceph-backport: rename __atomic_add_unless as atomic_add_unless. - rpm/kernel-source.spec.in:- patches.drivers/drm-i915-Add-intel_backlight-for-edp: Not all systems expose a firmware or platform mechanism for changing the backlight intensity on i915, so add native driver support (bnc#752352). - patches.drivers/drm-i915-do-not-setup-intel_backlight-twice: i915: do not setup intel_backlight twice (bnc#752352). - patches.drivers/drm-i915-enable-vdd-when-switching-off-the-eDP-panel: drm/i915: enable vdd when switching off the eDP panel (bnc#752352).- patches.fixes/block-add-blk_queue_dead.patch: Add missing definition blk_queue_dead().- Backport patches from mainline to fix SCSI crash under heavy load (bnc#738284): * patches.fixes/block-add-blk_queue_dead.patch: block: add blk_queue_dead() (bnc#738284). * patches.fixes/block-add-missing-blk_queue_dead-checks.patch: block: add missing blk_queue_dead() checks (bnc#738284). * patches.fixes/block-fix-race-on-request.end_io-invocations.patch: block: Fix race on request.end_io invocations (bnc#738284). * patches.fixes/scsi-fc-class-fix-scanning-when-devs-are-offline.patch: fc class: fix scanning when devs are offline (bnc#738284). * patches.fixes/scsi-fix-device-removal-NULL-pointer-dereference.patch: scsi: Fix device removal NULL pointer dereference (bnc#738284). * patches.fixes/scsi-fix-the-new-host-byte-settings.patch: scsi: fix DID_TARGET_FAILURE and DID_NEXUS_FAILURE host byte settings (bnc#738284). * patches.fixes/scsi-stop-accepting-scsi-requests.patch: scsi: Stop accepting SCSI requests before removing a device (bnc#738284). * patches.fixes/scsi-Revert-put-stricter-guards-on-queue-dead-chec.patch: Delete preliminary patch.- patches.arch/paravirt-stub-kabi-for-KVM_MMU.patch: Refresh. Drop omitted ifdef in get_call_destination(), which resulted in all the stubs still going through NULL pointer, as pv_mmu_ops were not used properly for patching. This harmed KMPs with statically inlined APIs.- rpm/kernel-binary.spec.in: Provide obsoleted KMPs (bnc#753353), fix ath3k obsoletes.- patches.suse/lock_page_or_retry-speedup.patch: mm: filemap: Optimise file-backed page faulting by emulating an adaptive sleeping spinlock (bnc#762414)- Linux 3.0.35. - patches.fixes/mm-hugetlbfs-fix-use-after-free-bug-in-quota-handling.patch: Refresh. - patches.drivers/hwmon-fam15h_power-increase-output-resolution.patch: Delete. - patches.fixes/mm-fix-vma_resv_map-NULL-pointer.patch: Delete. - patches.fixes/mm-hugetlb-fix-resv_map-leak-in-error-path.patch: Delete.- config: update i386/vmi for KVM_MMU Adjust after commit 299b6540a6f5f7ac5ae6a55e93ef087cf1b333ca (Stub support KABI for KVM_MMU) - this config file is not used in SLE11-SP2. - commit 68817b5- patches.drivers/synaptics-hp-clickpad: Refresh. Add yet another product ID for HP cert machines (bnc#764339)- patches.arch/x86-check-for-valid-irq_cfg-pointer-in-smp_irq_move_cleanup_interrupt.patch: x86: check for valid irq_cfg pointer in smp_irq_move_cleanup_interrupt (bnc#763754).- patches.fixes/backing-dev-use-synchronize_rcu_expedited-instead-of.patch: backing-dev: use synchronize_rcu_expedited instead of synchronize_rcu (bnc#766027). - patches.fixes/sysfs-count-subdirectories.patch: sysfs: count subdirectories (bnc#766027). - patches.kabi/sysfs-count-subdirectories-kabi.patch: kABI fix for sysfs-count-subdirectories (bnc#766027).- Fix up UP box build booboo in 77e81365 backport, split domain flags handler patch into the two patches (part2 + handler) it should have already been, and refresh patches to kill much hated offsets. - patches.fixes/sched-Only-queue-remote-wakeups-when-crossing-cache-boundaries-part2.patch: sched: Only queue remote wakeups when crossing cache boundaries part2 (bnc#754690). - patches.fixes/sched-Clean-up-domain-traversal-in-select_idle_sibling.patch: Refresh. - patches.fixes/sched-Dont-call-task_group-too-many-times-in-set_task_rq.patch: Refresh. - patches.fixes/sched-Fix-the-sched-group-node-allocation-for-SD_OVERLAP-domains.patch: Refresh. - patches.fixes/sched-Wrap-scheduler-p--cpus_allowed-access.patch: Refresh. - patches.fixes/sched-domain-flags-proc-handler.patch: Refresh. - patches.fixes/sched-fix-select_idle_sibling-induced-bouncing.patch: Refresh. - patches.fixes/sched-set-skip_clock_update-when-yielding.patch: Refresh. - patches.fixes/sched-throttle-nohz.patch: Refresh.- patches.fixes/block-introduce-blk_set_stacking_limits-function: block: Introduce blk_set_stacking_limits function (bnc#763026).- patches.fixes/net-sock-validate-data_len-before-allocating-skb.patch: net: sock: validate data_len before allocating skb in sock_alloc_send_pskb() (bnc#765320, CVE-2012-2136). - patches.fixes/tcp-drop-syn-fin-messages.patch: tcp: drop SYN+FIN messages (bnc#765102, CVE-2012-2663).- patches.fixes/mm-hugetlb-fix-resv_map-leak-in-error-path.patch: hugetlb: fix resv_map leak in error path - patches.fixes/mm-fix-vma_resv_map-NULL-pointer.patch: mm: fix vma_resv_map() NULL pointer (Fix reservation leaks in hugetlbfs (bnc#764150, CVE-2012-2390)).- patches.fixes/sched-really-revert-latency-defaults.patch: sched: really revert latency defaults to SP1 values (bnc#754690). - patches.fixes/sched-optimize-latency-defaults.patch: sched: optimize latency defaults (bnc#754690). - patches.fixes/sched-Save-some-hrtick_start_fair-cycles.patch: sched: Save some hrtick_start_fair cycles (bnc#754690). - patches.fixes/sched-use-rt-nr_cpus_allowed-to-recover-select_task_rq-cycles.patch: sched: use rt.nr_cpus_allowed to recover select_task_rq() cycles (bnc#754690). - patches.fixes/sched-set-skip_clock_update-when-yielding.patch: sched: Set skip_clock_update in yield_task_fair() (bnc#754690). - patches.fixes/sched-Dont-call-task_group-too-many-times-in-set_task_rq.patch: sched: Don't call task_group() too many times in set_task_rq() (bnc#754690). - patches.fixes/sched-throttle-nohz.patch: sched: ratelimit nohz (bnc#754690). - patches.fixes/sched-Wrap-scheduler-p--cpus_allowed-access.patch: sched: Wrap scheduler p->cpus_allowed access (bnc#754690). - patches.fixes/sched-Avoid-SMT-siblings-in-select_idle_sibling-if-possible.patch: sched: Avoid SMT siblings in select_idle_sibling() if possible (bnc#754690). - patches.fixes/sched-Clean-up-domain-traversal-in-select_idle_sibling.patch: sched: Clean up domain traversal in select_idle_sibling() (bnc#754690). - patches.fixes/sched-Remove-rcu_read_lock-unlock-from-select_idle_sibling.patch: sched: Remove rcu_read_lock/unlock() from select_idle_sibling() (bnc#754690). - patches.fixes/sched-Fix-the-sched-group-node-allocation-for-SD_OVERLAP-domains.patch: sched: Fix the sched group node allocation for SD_OVERLAP domains (bnc#754690). - patches.fixes/sched-domain-flags-proc-handler.patch: sched: add SD_SHARE_PKG_RESOURCES domain flags proc handler (bnc#754690). - patches.fixes/sched-fix-select_idle_sibling-induced-bouncing.patch: sched: fix select_idle_sibling() induced bouncing (bnc#754690). monteverdi test results thench 1 2 4 8 16 32 64 128 SP1 270 491 958 1749 2597 2810 6349 6610 SP2 225 451 911 1573 2723 3501 11189 13951 SP2x 299 603 1211 2418 4697 6847 11606 14557 vs sp2 1.328 1.337 1.329 1.537 1.724 1.955 1.037 1.043 vs sp1 1.107 1.228 1.264 1.382 1.808 2.436 1.828 2.202 AIM7 Jobs/Min tasks 64 128 256 512 1024 2048 4096 8192 16384 32768 65536 SP1 19257 39414 77918 145054 270743 390647 470198 516044 543859 556604 559158 SP2 26401 51677 99001 177095 276042 377919 450976 501956 533571 548653 447072 SP2x 26600 51884 99255 179763 292158 395376 476974 529870 560532 576948 585850 vs sp1 1.381 1.316 1.273 1.239 1.079 1.012 1.014 1.026 1.030 1.036 1.047 vs sp2 1.007 1.004 1.002 1.015 1.058 1.046 1.057 1.055 1.050 1.051 1.310- patches.fixes/mm-avoid-swapping-out-with-swappiness-0.patch: mm: avoid swapping out with swappiness==0 (swappiness).- patches.suse/btrfs-update-message-levels.patch: more module message prefixes.- patches.fixes/thp-avoid-atomic64_read-in-pmd_read_atomic-for-32-bit-PAE.patch: thp: avoid atomic64_read in pmd_read_atomic for 32bit PAE (bnc#762991).- patches.arch/paravirt-split-paravirt-MMU-ops.patch: paravirt: Split paravirt MMU ops (bnc#556135, bnc#754690, FATE#306453). - patches.arch/paravirt-only-export-pv_mmu_ops-if-PARAVIRT_MMU.patch: paravirt: Only export pv_mmu_ops symbol if PARAVIRT_MMU - patches.arch/paravirt-stub-kabi-for-KVM_MMU.patch: parvirt: Stub support KABI for KVM_MMU (bnc#556135, bnc#754690, FATE#306453). - patches.xen/xen3-patch-2.6.31: Refresh.- Linux 3.0.34. - patches.kabi/kabi-reintroduce-skb_set_dev.patch: kABI: reintroduce skb_set_dev. - patches.fixes/0001-mm-pmd_read_atomic-fix-32bit-PAE-pmd-walk-vs-pmd_pop.patch: Delete. - patches.fixes/Add_support_for_Foxconn_Hon_Hai_AR5BBU22.diff: Delete. - patches.fixes/broadcom_softsailing.diff: Delete. - patches.fixes/cifs-fix-oops-while-traversing-open-file-list.patch: Delete. - patches.fixes/scsi-fix-dm-multipath-starvation.patch: Delete. - patches.fixes/xfrm-take-net-hdr-len-into-account-for-esp-payload-s.patch: Delete.- patches.fixes/tmpfs-implement-NUMA-node-interleaving.patch: tmpfs: implement NUMA node interleaving (bnc#764209).- patches.fixes/xfs-Don-t-allocate-new-buffers-on-every-call-to-_xfs.patch: xfs: Don't allocate new buffers on every call to _xfs_buf_find (bnc#763968). - patches.fixes/xfs-fix-buffer-lookup-race-on-allocation-failure.patch: xfs: fix buffer lookup race on allocation failure (bnc#763968).- Linux 3.0.33. - patches.drivers/USB3-0094-xhci-Implement-HS-FS-LS-bandwidth-checking.patch: Refresh. - patches.drivers/USB3-0352-xHCI-reset-on-resume-quirk-for-NEC-uPD720200.patch: Refresh. - patches.drivers/USB3-0366-Revert-xHCI-reset-on-resume-quirk-for-NEC-uPD720200.patch: Refresh. - patches.drivers/drm-i915-Flush-other-plane-register-writes: Refresh. - patches.fixes/writeback-split-inode_wb_list_lock-into-bdi_writebac.patch: Refresh. - patches.kabi/kabi-protect-struct-mmc_host.patch: kABI: protect struct mmc_host. - patches.arch/s390-52-02-pfault-race.patch: Delete.- patches.suse/0002-vfs-re-implement-writeback_inodes_sb-_nr-_if_idle-an.patch: vfs: re-implement writeback_inodes_sb(_nr)_if_idle() and rename them (FATE#306586). - patches.suse/btrfs-8094-flush-all-the-dirty-pages-if-try_to_writeback_.patch: Btrfs: flush all the dirty pages if try_to_writeback_inodes_sb_nr() fails (FATE#306586). - patches.suse/btrfs-8095-use-writeback_inodes_sb-_nr-_if_idle.patch: vfs: re-implement writeback_inodes_sb(_nr)_if_idle() and rename them (FATE#306586).- patches.fixes/macvtap-zerocopy-validate-vectors-before-building-sk.patch: macvtap: zerocopy: validate vectors before building skb (bnc#758243 CVE-2012-2119).- patches.drivers/synaptics-hp-clickpad: Refresh. patches.drivers/synaptics-hp-new-model.diff: Refresh. Fix the detection of LED on the recent HP laptops (bnc#765524)- patches.drivers/drm-Skip-too-big-EDID-extensions: drm: Skip too big EDID extensions (bnc#764900).- supported.conf: add xt_AUDIT (bnc#765253)- patches.fixes/bonding-start-slaves-with-link-down-for-ARP-monitor.patch: update upstream reference- patches.suse/btrfs-8089-fix-locking-in-btrfs_destroy_delayed_refs.patch: Btrfs: fix locking in btrfs_destroy_delayed_refs (FATE#306586). - patches.suse/btrfs-8090-wake-up-transaction-waiters-when-aborting-a-tr.patch: Btrfs: wake up transaction waiters when aborting a transaction (FATE#306586). - patches.suse/btrfs-8091-abort-the-transaction-if-the-commit-fails.patch: Btrfs: abort the transaction if the commit fails (FATE#306586). - patches.suse/btrfs-8092-fix-btrfs_destroy_marked_extents.patch: Btrfs: fix btrfs_destroy_marked_extents (FATE#306586). - patches.suse/btrfs-8093-unlock-everything-properly-in-the-error-case-f.patch: Btrfs: unlock everything properly in the error case for nocow (FATE#306586). - patches.suse/btrfs-8088-check-the-return-code-of-btrfs_save_ino_cache.patch: Delete.- patches.fixes/nfs-acl-fix.1: Fix length of buffer copied in __nfs4_get_acl_uncached (bnc#762992). - patches.fixes/nfs-acl-fix.2: Avoid beyond bounds copy while caching ACL (bnc#762992). - patches.fixes/nfs-acl-fix.3: Avoid reading past buffer when calling GETACL (bnc#762992).- patches.suse/msft-hv-0349-SCSI-storvsc-Properly-handle-errors-from-the-host.patch: [SCSI] storvsc: Properly handle errors from the host (bnc#747404). - patches.suse/msft-hv-0350-HID-hid-hyperv-Do-not-use-hid_parse_report-directly.patch: HID: hid-hyperv: Do not use hid_parse_report() directly. - patches.suse/msft-hv-0351-HID-hyperv-Set-the-hid-drvdata-correctly.patch: HID: hyperv: Set the hid drvdata correctly. - patches.suse/msft-hv-0352-Drivers-hv-Get-rid-of-an-unnecessary-check-in-vmbus_.patch: Drivers: hv: Get rid of an unnecessary check in vmbus_prep_negotiate_resp(). - patches.suse/msft-hv-0353-Drivers-hv-util-Properly-handle-version-negotiations.patch: Drivers: hv: util: Properly handle version negotiations. - patches.suse/msft-hv-0354-hv-fix-return-type-of-hv_post_message.patch: hv: fix return type of hv_post_message(). - patches.suse/msft-hv-0355-net-hyperv-Add-flow-control-based-on-hi-low-watermar.patch: net/hyperv: Add flow control based on hi/low watermark. - patches.suse/msft-hv-0356-usb-net-rndis-break-out-linux-rndis.h-defines.patch: usb/net: rndis: break out defines. only net/hyperv part - patches.suse/msft-hv-0357-usb-net-rndis-remove-ambigous-status-codes.patch: usb/net: rndis: remove ambigous status codes. only net/hyperv part - patches.suse/msft-hv-0358-usb-net-rndis-merge-command-codes.patch: usb/net: rndis: merge command codes. only net/hyperv part- patches.suse/suse-hv-pata_piix-ignore-disks.patch replace our version of this patch with upstream variant: ata_piix: defer disks to the Hyper-V drivers by default libata: add a host flag to ignore detected ATA devices.- patches.suse/btrfs-8085-fix-return-code-in-drop_objectid_items.patch: Btrfs: fix return code in drop_objectid_items (FATE#306586). - patches.suse/btrfs-8086-check-to-see-if-the-inode-is-in-the-log-before.patch: Btrfs: check to see if the inode is in the log before fsyncing (FATE#306586). - patches.suse/btrfs-8087-pass-locked_page-into-extent_clear_unlock_dela.patch: Btrfs: pass locked_page into extent_clear_unlock_delalloc if theres an error (FATE#306586). - patches.suse/btrfs-8088-check-the-return-code-of-btrfs_save_ino_cache.patch: Btrfs: check the return code of btrfs_save_ino_cache (FATE#306586).- patches.suse/btrfs-8084-do-not-update-atime-for-RO-snapshots.patch: btrfs: do not update atime for RO snapshots (FATE#306586).- patches.fixes/0001-mm-pmd_read_atomic-fix-32bit-PAE-pmd-walk-vs-pmd_pop.patch: mm: pmd_read_atomic: fix 32bit PAE pmd walk vs pmd_populate SMP race condition (bnc#762991 CVE-2012-2373).- patches.fixes/xhci-Don-t-free-endpoints-in-xhci_mem_cleanup: xhci: Don't free endpoints in xhci_mem_cleanup() (bnc#763307). - patches.fixes/xhci-Fix-invalid-loop-check-in-xhci_free_tt_info: xhci: Fix invalid loop check in xhci_free_tt_info() (bnc#763307).- patches.drivers/drm-i915-lvds-disable-at-modeset-for-hp-elitebook: drm/i915: Add HP EliteBook to LVDS-temporary-disable list (bnc#763717).- patches.drivers/floppy-convert-to-single-threaded-wq.patch: - patches.drivers/floppy-remove-floppy-specific-o_excl-handling.patch: Update references.delete unused patches - patches.suse/btrfs-0427-fix-uninit-variable-in-repair_eb_io_failure.patch: Delete. - patches.suse/btrfs-0439-always-store-the-mirror-we-read-the-eb-from.patch: Delete. - patches.suse/btrfs-0443-don-t-count-CRC-or-header-errors-twice-while-s.patch: Delete.- kabi/severities: add btrfs exception for ulist. - patches.kabi/kabi-fix-btrfs-ulist-realloc-bugfix.patch: Delete.- patches.drivers/0012-rt2800-radio-3xxx-reprogram-only-lower-bits-of-RF_R3: rt2800: radio 3xxx: reprogram only lower bits of RF_R3 (bnc#759805). - patches.drivers/0013-rt2800-radio-3xxx-program-RF_R1-during-channel-switch: rt2800: radio 3xxx: program RF_R1 during channel switch (bnc#759805). - patches.drivers/0014-rt2800-radio-3xxx-add-channel-switch-calibration-routines: Refresh. - patches.drivers/0015-rt2800-radio-3xxxx-channel-switch-RX-TX-calibration-fixes: rt2800: radio 3xxxx: channel switch RX/TX calibration fixes (bnc#759805).- rpm/config.sh, scripts/config.sh: Build the KOTD against SP2.- patches.drivers/hwmon-fam15h_power-increase-output-resolution.patch: hwmon: (fam15h_power) Increase output resolution (bnc#759336).- patches.drivers/hwmon-k10temp-add-support-for-amd-trinity-cpus.patch: hwmon: (k10temp) Add support for AMD Trinity CPUs (bnc#759336).- rpm/kernel-binary.spec.in: Own the right -kdump initrd (bnc#764500)- patches.kabi/kabi-fix-btrfs-ulist-realloc-bugfix.patch: kABI: fix update ulist_next signature change.- patches.fixes/mm-consider-PageReclaim-for-sync-reclaim.patch: memcg: prevent from OOM with too many dirty pages.- patches.arch/s390-52-01-dasd_reprioritize_partition_message.patch: dasd: re-prioritize partition detection message (bnc#764091,LTC#81617). - patches.arch/s390-52-02-pfault-race.patch: kernel: pfault task state race (bnc#764091,LTC#81724). - patches.arch/s390-52-03-hugetlb-clear-pgtable.patch: kernel: clear page table for sw large page emulation (bnc#764091,LTC#81933).- patches.suse/btrfs-8077-stop-defrag-the-files-automatically-when-doin-.patch: Refresh. - patches.suse/btrfs-8080-destroy-the-items-of-the-delayed-inodes-in-err.patch: Refresh.- patches.suse/btrfs-8075-convert-the-inode-bit-field-to-use-the-actual-.patch: Btrfs: convert the inode bit field to use the actual bit operations (FATE#306586). - patches.suse/btrfs-8076-fix-deadlock-when-the-process-of-delayed-refs-.patch: Btrfs: fix deadlock when the process of delayed refs fails (FATE#306586). - patches.suse/btrfs-8077-stop-defrag-the-files-automatically-when-doin-.patch: Btrfs: stop defrag the files automatically when doin readonly remount or umount (FATE#306586). - patches.suse/btrfs-8078-avoid-memory-leak-of-extent-state-in-error-han.patch: Btrfs: avoid memory leak of extent state in error handling routine (FATE#306586). - patches.suse/btrfs-8079-make-sure-that-we-ve-made-everything-in-pinned.patch: Btrfs: make sure that we've made everything in pinned tree clean (FATE#306586). - patches.suse/btrfs-8080-destroy-the-items-of-the-delayed-inodes-in-err.patch: Btrfs: destroy the items of the delayed inodes in error handling routine (FATE#306586). - patches.suse/btrfs-8081-ulist-realloc-bugfix.patch: Btrfs: ulist realloc bugfix (FATE#306586). - patches.suse/btrfs-8082-bugfix-in-btrfs_find_parent_nodes.patch: Btrfs: bugfix in btrfs_find_parent_nodes (FATE#306586). - patches.suse/btrfs-8083-bugfix-ignore-the-wrong-key-for-indirect-tree-.patch: Btrfs: bugfix: ignore the wrong key for indirect tree block backrefs (FATE#306586).- patches.drivers/0001-USB-fix-bug-of-device-descriptor-got-from-superspeed.patch: USB: fix bug of device descriptor got from superspeed device (bnc#761087).- patches.suse/btrfs-8066-avoid-buffer-overrun-in-btrfs_printk.patch: Btrfs: avoid buffer overrun in btrfs_printk (FATE#306586). - patches.suse/btrfs-8066-fall-back-to-non-inline-if-we-don-t-have-enoug.patch: Btrfs: fall back to non-inline if we don't have enough space (FATE#306586). - patches.suse/btrfs-8067-NUL-terminate-path-buffer-in-DEV_INFO-ioctl-re.patch: Btrfs: NUL-terminate path buffer in DEV_INFO ioctl result (FATE#306586). - patches.suse/btrfs-8068-avoid-buffer-overrun-in-mount-option-handling.patch: Btrfs: avoid buffer overrun in mount option handling (FATE#306586). - patches.suse/btrfs-8070-do-not-do-balance-in-readonly-mode.patch: Btrfs: do not do balance in readonly mode (FATE#306586). - patches.suse/btrfs-8072-fix-the-same-inode-id-problem-when-doing-auto-.patch: Btrfs: fix the same inode id problem when doing auto defragment (FATE#306586). - patches.suse/btrfs-8073-fix-wrong-error-returned-by-adding-a-device.patch: Btrfs: fix wrong error returned by adding a device (FATE#306586). - patches.suse/btrfs-8074-use-fastpath-in-extent-state-ops-as-much-as-po.patch: Btrfs: use fastpath in extent state ops as much as possible (FATE#306586).- patches.fixes/xfrm-take-net-hdr-len-into-account-for-esp-payload-s.patch: xfrm: take net hdr len into account for esp payload size calculation (bnc#759545).- patches.fixes/st-clean-up-dev-cleanup-in-st_probe: st: clean up dev cleanup in st_probe (bnc#760806). - patches.fixes/st-clean-up-device-file-creation-and-removal: st: clean up device file creation and removal (bnc#760806). - patches.fixes/st-get-rid-of-scsi_tapes-array: st: get rid of scsi_tapes array (bnc#760806). - patches.fixes/st-raise-device-limit: st: raise device limit (bnc#760806). - patches.fixes/st-use-static-class-attributes: st: Use static class attributes (bnc#760806).- patches.fixes/cpuset-mm-optimise-put_mems_allowed-usage.patch: mm: Optimize put_mems_allowed() usage (VM performance).- patches.fixes/cifs-fix-oops-while-traversing-open-file-list.patch: cifs: fix oops while traversing open file list (try #4) (bnc#756050).- config: update i386/vmi for CA0132 HDA codec Adjust after commit e2350e058bf8bf7d6616bb9d8eb364359f40d9f7 (add Creative CA0132 HDA codec support) - this config file is not used in SLE11-SP2. - commit 138bb1d- config/i386/vmi: adjust after commit e2350e058bf8bf7d6616bb9d8eb364359f40d9f7 (add Creative CA0132 HDA codec support) - this file is not present in SLE11-SP2- Linux 3.0.32. - patches.drivers/hpsa-update-to-hp-version.patch: Refresh. - patches.fixes/large-hash-dcache_init-fix.patch: Refresh. - patches.kabi/kabi-hide-proc_fs-inclusion.patch: kabi: hide proc_fs.h inclusion. - patches.suse/perfmon2-remove_syscalls.patch: Refresh. - patches.suse/perfmon2.patch: Refresh. - patches.drivers/0001-cdc_ether-Ignore-bogus-union-descriptor-for-RNDIS-de.patch: Delete. - patches.drivers/tg3-Avoid-panic-from-reserved-statblk-field-access.patch: Delete. - patches.fixes/ext3-Fix-error-handling-on-inode-bitmap-corruption.patch: Delete. - patches.fixes/procfs-namespace-pid_ns-fix-leakage-on-fork-failure: Delete.- patches.fixes/scsi-fix-dm-multipath-starvation.patch: scsi: Fix dm-multipath starvation when scsi host is busy (bnc#763485).- patches.fixes/scsi_dh_rdac-update-match-function.patch: Disable patch due to deadlocks.- patches.suse/dasd-continue-device-tasklet.patch: dasd: process all requests in the device tasklet (bnc#763267).- patches.suse/msft-hv-0348-net-hyperv-Adding-cancellation-to-ensure-rndis-filte.patch: net/hyperv: Adding cancellation to ensure rndis filter is closed.- update hv drivers to 3.4-rc1, requires new hv_kvp_daemon: - drivers: hv: kvp: Add/cleanup connector defines. - drivers: hv: kvp: Move the contents of hv_kvp.h to hyperv.h. - net/hyperv: Convert camel cased variables in rndis_filter.c to lower cases. - net/hyperv: Correct the assignment in netvsc_recv_callback(). - net/hyperv: Remove the unnecessary memset in rndis_filter_send(). - drivers: hv: Cleanup the kvp related state in hyperv.h. - tools: hv: Use hyperv.h to get the KVP definitions. - drivers: hv: kvp: Cleanup the kernel/user protocol. - drivers: hv: Increase the number of VCPUs supported in the guest. - net/hyperv: Fix data corruption in rndis_filter_receive(). - net/hyperv: Add support for vlan trunking from guests. - Drivers: hv: Add new message types to enhance KVP. - Drivers: hv: Support the newly introduced KVP messages in the driver. - Tools: hv: Fully support the new KVP verbs in the user level daemon. - Tools: hv: Support enumeration from all the pools. - net/hyperv: Fix the code handling tx busy.- patches.drivers/floppy-convert-to-single-threaded-wq.patch: floppy: convert to delayed work and single-thread wq (bnc#761245).- patches.drivers/rt2x00-add-RT539b: rt2x00:Add RT539b chipset support (bnc#760237).- kabi/severities: Ignore changes in drivers/net/wireless/rt2x00/*, these are just exports used among the rt2x00 modules.- patches.drivers/0001-rt2x00-Avoid-unnecessary-uncached: rt2x00: Avoid unnecessary uncached (bnc#759805). - patches.drivers/0002-rt2x00-Introduce-sta_add-remove-callbacks: rt2x00: Introduce sta_add/remove callbacks (bnc#759805). - patches.drivers/0003-rt2x00-Add-WCID-to-crypto-struct: rt2x00: Add WCID to crypto struct (bnc#759805). - patches.drivers/0004-rt2x00-Add-WCID-to-HT-TX-descriptor: rt2x00: Add WCID to HT TX descriptor (bnc#759805). - patches.drivers/0005-rt2x00-Move-bssidx-calculation-into-its-own-function: rt2x00: Move bssidx calculation into its own function (bnc#759805). - patches.drivers/0006-rt2x00-Make-use-of-sta_add-remove-callbacks-in-rt2800: rt2x00: Make use of sta_add/remove callbacks in rt2800 (bnc#759805). - patches.drivers/0007-rt2x00-Forbid-aggregation-for-STAs-not-programmed-into-the-hw: rt2x00: Forbid aggregation for STAs not programmed into the hw (bnc#759805). - patches.drivers/0009-rt2x00-handle-spurious-pci-interrupts: rt2x00: handle spurious pci interrupts (bnc#759805). - patches.drivers/0011-rt2800-disable-DMA-after-firmware-load: rt2800: disable DMA after firmware load. - patches.drivers/0012-rt2800-radio-3xxx-add-channel-switch-calibration-routines: rt2800: radio 3xxx: add channel switch calibration routines (bnc#759805).- Fixup patches for series2git: * patches.drivers/ehea-fix-allmulticast-support * patches.drivers/ehea-fix-promiscuous-mode * patches.drivers/ehea-register-irq-after-port-setup- rpm/kernel-binary.spec.in: Obsolete ath3k, as it's now in the tree.- patches.drivers/floppy-remove-floppy-specific-o_excl-handling.patch: floppy: remove floppy-specific O_EXCL handling (bnc#757315).- patches.kabi/netfilter-really-export-nf_conntrack_event_cb: kabi: Really preserve nf_{conntract,expect}_event_cb exports (bnc#758540).- Update Xen patches to 3.0.31. - patches.xen/1174-foreign-map.patch: fix VM_FOREIGN users after c/s 878:eba6fe6d8d53 (bnc#760974). - patches.xen/1175-gntdev-multi-page.patch: gntdev: fix multi-page slot allocation (bnc#760974). - patches.xen/xen-x86-bigmem: Refresh (bnc#756236).- patches.drivers/alsa-sp2-hda-026-Add-Creative-CA0132-HDA-codec-support: ALSA: hda - Add Creative CA0132 HDA codec support (bnc#762424). - patches.drivers/alsa-sp2-hda-027-Fix-error-handling-in-patch_ca0132_c: ALSA: hda - Fix error handling in patch_ca0132.c (bnc#762424). - patches.drivers/alsa-sp2-hda-028-Add-the-support-for-Creative-SoundCore3D: ALSA: hda - Add the support for Creative SoundCore3D (bnc#762424). - Update config files.- patches.drivers/rts_pstor-Avoid-Bad-target-number-message-wh: staging:rts_pstor:Avoid "Bad target number" message when probing driver (bnc#762329). - patches.drivers/rts_pstor-Complete-scanning_done-variable: staging:rts_pstor:Complete scanning_done variable (bnc#762329). - patches.drivers/rts_pstor-Fix-SDIO-issue: staging:rts_pstor:Fix SDIO issue (bnc#762329). - patches.drivers/rts_pstor-Fix-a-bug-that-a-MMCPlus-card-can: staging: rts_pstor: Fix a bug that a MMCPlus card can't be accessed (bnc#762329). - patches.drivers/rts_pstor-Fix-a-miswriting: staging: rts_pstor: Fix a miswriting (bnc#762329). - patches.drivers/rts_pstor-Fix-possible-panic-by-NULL-pointer: staging:rts_pstor:Fix possible panic by NULL pointer dereference (bnc#762329). - patches.drivers/rts_pstor-fix-thread-synchronization-flow: staging:rts_pstor: fix thread synchronization flow (bnc#762329). - patches.drivers/rts_pstor-freezer-don-t-unnecessarily-set-PF_NOFREEZE: freezer: don't unnecessarily set PF_NOFREEZE explicitly (bnc#762329). - patches.drivers/rts_pstor-off-by-one-in-for-loop: Staging: rts_pstor: off by one in for loop (bnc#762329).- patches.suse/cgroup-disable-memcg-when-low-lowmem.patch: fix typo: use if defined(CONFIG_*) rather than if CONFIG_*- patches.fixes/bonding-dont-increase-rx_dropped-after-processing-LACPDUs.patch: bonding: don't increase rx_dropped after processing LACPDUs (bnc#759657).- patches.drivers/drm-i915-delay-drm_irq_install-at-resume: drm/i915: delay drm_irq_install() at resume (bnc#753698).- patches.fixes/edd-check-for-correct-device_path_info_length.patch: EDD: Check for correct EDD 3.0 length (bnc#762285).- patches.suse/pagecache-limit-fix-shmem-deadlock.patch: fix the BUG_ON safety belt- patches.suse/pagecache-limit-fix-shmem-deadlock.patch: Fixed the GFP_NOWAIT is zero and not suitable for tests bug (bnc#755537)- patches.kabi/netfilter-additional-kABI-fix-after-making-event-cal.patch: netfilter: additional kABI fix after making event callback registration per-netns (bnc#758540). - kabi/severities: revert changes from commit a0a5ba2e2dfeb4ee2a25f3196ae5dd4f142366a6btrfs updates, 3.4 fixes - patches.suse/btrfs-0427-fix-uninit-variable-in-repair_eb_io_failure.patch: Btrfs: fix uninit variable in repair_eb_io_failure (FATE#306586). - patches.suse/btrfs-0439-always-store-the-mirror-we-read-the-eb-from.patch: Btrfs: always store the mirror we read the eb from (FATE#306586). - patches.suse/btrfs-0443-don-t-count-CRC-or-header-errors-twice-while-s.patch: Btrfs: don't count CRC or header errors twice while scrubbing (FATE#306586). - patches.suse/btrfs-0445-do-not-start-delalloc-inodes-during-sync.patch: Btrfs: do not start delalloc inodes during sync (FATE#306586). - patches.suse/btrfs-0446-fix-repair-code-for-RAID10.patch: Btrfs: fix repair code for RAID10 (FATE#306586). - patches.suse/btrfs-0447-Prevent-root_list-corruption.patch: Btrfs: Prevent root_list corruption (FATE#306586). - patches.suse/btrfs-0448-fix-block_rsv-and-space_info-lock-ordering.patch: Btrfs: fix block_rsv and space_info lock ordering (FATE#306586). - patches.suse/btrfs-0449-Fix-space-checking-during-fs-resize.patch: Btrfs: Fix space checking during fs resize (FATE#306586). - patches.suse/btrfs-0450-avoid-deadlocks-from-GFP_KERNEL-allocations-du.patch: Btrfs: avoid deadlocks from GFP_KERNEL allocations during btrfs_real_readdir (FATE#306586). - patches.suse/btrfs-0451-reduce-lock-contention-during-extent-insertion.patch: Btrfs: reduce lock contention during extent insertion (FATE#306586). - patches.suse/btrfs-0452-Add-properly-locking-around-add_root_to_dirty_.patch: Btrfs: Add properly locking around add_root_to_dirty_list (FATE#306586). - patches.suse/btrfs-0453-Fix-mismatching-struct-members-in-ioctl.h.patch: btrfs: Fix mismatching struct members in ioctl.h (FATE#306586). - patches.suse/btrfs-allow-cross-subvolume-file-clone.patch: Refresh.- patches.fixes/scsi_dh_rdac-update-match-function.patch: scsi_dh_rdac: Update match function to check page C8 (bnc#757077).- patches.fixes/scsi_dh_rdac-add-new-netapp-id.patch: scsi_dh_rdac: Add new NetApp IDs (bnc#757077).- patches.drivers/ehea-fix-losing-of-NEQ-events: ehea: fix losing of NEQ events when one event occurred early (bnc#758731).- patches.drivers/igb-reset-PHY-after-recovering-from-PHY-power-down.patch: igb: reset PHY after recovering from PHY power down. (bnc#745088)- patches.drivers/igb-fix-rtnl-race-in-PM-resume-path.patch: igb: fix rtnl race in PM resume path (bnc#748859). - patches.drivers/ixgbe-add-missing-rtnl_lock-in-PM-resume-path.patch: ixgbe: add missing rtnl_lock in PM resume path (bnc#748859).- patches.fixes/watchdog-iTCO_wdt-preserve-SMI-on-new-hardware.patch: watchdog: iTCO_wdt.c - problems with newer hardware due to SMI clearing (bnc#757373).- patches.fixes/watchdog-iTCO_wdt-preserve-SMI-on-new-hardware.patch: watchdog: iTCO_wdt.c - problems with newer hardware due to SMI clearing (bnc#757373, redhat#727875).- patches.fixes/cfq-iosched-Reduce-linked-group-count-upon-group-des.patch: cfq-iosched: Reduce linked group count upon group destruction (bnc#759541).- patches.drivers/0001-cdc_ether-Ignore-bogus-union-descriptor-for-RNDIS-de.patch: cdc_ether: Ignore bogus union descriptor for RNDIS devices (bnc#761772).- patches.fixes/0001-USB-fix-resource-leak-in-xhci-power-loss-path.patch: USB: fix resource leak in xhci power loss path (bnc#746938).- patches.fixes/sys_poll-fix-incorrect-type-for-timeout-parameter.patch: sys_poll: fix incorrect type for 'timeout' parameter (bnc#754428).- patches.arch/s390-51-01-sclp-sdias-async.patch: zfcpdump: Implement async sdias event processing (bnc#761387,LTC#81330).- Linux 3.0.31. - patches.arch/001-efi_pstore_fixes.patch: Refresh. - patches.arch/003-efi_pstore_fixes.patch: Refresh. - patches.drivers/003-pstore_3_2_fixes.patch: Refresh. - patches.drivers/006-pstore_3_2_fixes.patch: Refresh. - patches.drivers/hwmon-coretemp-01-add-core-pkg-threshold-support-to-coretemp.patch: Refresh. - patches.drivers/hwmon-coretemp-04-let-the-user-force-tjmax.patch: Refresh. - patches.drivers/hwmon-coretemp-05-dont-use-threshold-registers-for-tempX_max.patch: Refresh. - patches.kabi/kabi-protect-struct-usb_hcd.patch: kABI: protect struct usb_hcd. - patches.arch/002-efi_pstore_fixes.patch: Delete. - patches.arch/006-efi_pstore_fixes.patch: Delete. - patches.drivers/libata-skip-old-error-history-when-counting-probe-tr.patch: Delete. - patches.fixes/0001-cdc-wdm-fix-race-leading-leading-to-memory-corruptio.patch: Delete.- patches.drivers/alsa-sp2-hda-025-Always-resume-the-codec-immediately: ALSA: hda - Always resume the codec immediately (bnc#750426). - patches.drivers/alsa-sp2-hda-025-Set-codec-to-D3-forcibly-even-if-not-used: Delete.- patches.drivers/drm-i915-add-Ivy-Bridge-GT2-Server-entries: drm/i915: add Ivy Bridge GT2 Server entries (bnc#759971).- patches.fixes/netfilter-nf_conntrack-make-event-callback-registrat.patch: netfilter: nf_conntrack: make event callback registration per-netns (bnc#758540). - patches.fixes/netfilter-kABI-fix-after-making-event-callback-regis.patch: netfilter: kABI fix after making event callback registration per-netns (bnc#758540). - kabi/severities: ignore netfilter symbols touched by making event callback registration per-netns which are not supposed to be used by any third-party module (bnc#758540)- patches.drivers/ixgbe-fix-ring-assignment-issues-for-SR-IOV-and-drop.patch: ixgbe: fix ring assignment issues for SR-IOV and drop cases (bnc#761158).- patches.drivers/edac_amd_drop_too_granulary_family_model_checks.patch: MCE, AMD: Drop too granulary family model checks (bnc#758833). - patches.drivers/edac_amd_print_cpu_number.patch: EDAC, MCE, AMD: Print CPU number when reporting the error (bnc#758833). - patches.drivers/edac_amd_print_valid_addr.patch: EDAC, MCE, AMD: Print valid addr when reporting an error (bnc#758833).- patches.drivers/libata-skip-old-error-history-when-counting-probe-tr.patch: libata: skip old error history when counting probe trials.- patches.suse/kdb-restore-kdb-stack-trace.patch: x86: kdb: restore kdb stack trace (bnc#760015).- patches.suse/btrfs-revert-partial-truncate-improvements.patch: btrfs: partial revert of truncation improvements (FATE#306586 bnc#748463 bnc#760279). - patches.suse/btrfs-update-message-levels.patch: Refresh.- patches.drivers/tg3-Avoid-panic-from-reserved-statblk-field-access.patch: tg3: Avoid panic from reserved statblk field access (bnc#760346).- patches.fixes/procfs-namespace-pid_ns-fix-leakage-on-fork-failure: Refresh. Whack proc_fs.h include to fix odd kABI gripe. Oddly enough, the prototype isn't needed to build this kernel even with -Werror=implicit-function-declaration. No gripe, nada, just works. Upstream it is required. KABI: symbol __mmdrop(kernel/fork/built-in) changed crc from 0xbf464b89 to 0xa4b0b91f KABI: symbol __put_task_struct(kernel/fork/built-in) changed crc from 0xb64f68c2 to 0x13181232 KABI: symbol free_task(kernel/fork/built-in) changed crc from 0xa4879a04 to 0x72b0d120 KABI: symbol get_task_mm(kernel/fork/built-in) changed crc from 0xbfee2b4e to 0x8495fbe4 KABI: symbol mmput(kernel/fork/built-in) changed crc from 0xef280caf to 0x0b59f5be KABI: aborting due to kabi changes.- patches.fixes/procfs-namespace-pid_ns-fix-leakage-on-fork-failure: procfs, namespace, pid_ns: fix leakage upon fork() failure (bnc#757783).- patches.drivers/ehea-fix-allmulticast-support: ehea: fix allmulticast support, - patches.drivers/ehea-fix-promiscuous-mode: ehea: fix promiscuous mode (both bnc#757289) - patches.drivers/ehea-register-irq-after-port-setup: ehea: only register irq after setting up ports (bnc#758731).- patches.suse/dasd-detailed-io-errors.patch: Rediff.- patches.suse/dasd-blk-timeout.patch: Fixup typos in dasd_times_out().- patches.suse/dasd-blk-timeout.patch: Fix I/O stall when reserving dasds (bnc#757719). - patches.suse/dasd-detailed-io-errors.patch: Rediff.- rpm/kernel-binary.spec.in: Do not require distribution-release during build.- rpm/kernel-binary.spec.in: Depend on distribution-release, so that the grub entry has correct title (bnc#757565).- patches.suse/scsi-silence-ioctl-warnings.patch: scsi: Silence unnecessary warnings about ioctl to partition (bnc#758104).- patches.fixes/Add_support_for_Foxconn_Hon_Hai_AR5BBU22.diff: bluetooth: Add support for Foxconn/Hon Hai AR5BBU22 0489:E03C (bnc#759908).- Linux 3.0.30. - patches.drivers/USB3-0022-USB-EHCI-remove-usages-of-hcd-state.patch: Refresh. - patches.suse/btrfs-0192-add-a-log-of-past-tree-roots.patch: Refresh. - patches.arch/mm-s390-use-__set_page_dirty_no_writeback-on-swap.patch: Delete. - patches.drivers/0001-uwb-fix-error-handling.patch: Delete. - patches.drivers/0001-uwb-fix-use-of-del_timer_sync-in-interrupt.patch: Delete. - patches.drivers/0013-rt2x00-Properly-identify-rt2800usb-devices.patch: Delete. - patches.drivers/0015-rt2800usb-Add-new-device-ID-for-Belkin.patch: Delete. - patches.fixes/epoll-dont-limit-non-nested.patch: Delete.- patches.arch/x86_amd_add_translation_cache_extension_tce_cpuflag.patch: x86/amd: Add missing feature flag for fam15h models 10h-1fh processors (bnc#759340). - patches.arch/x86_amd_correct_cpuinfo_for_cpb_and_eff_freq_ro.patch: x86: Report cpb and eff_freq_ro flags correctly (bnc#759340). - patches.arch/x86_amd_numa_node_info_fam_15.patch: x86, amd: Fix up numa_node information for AMD CPU family 15h model 0-0fh northbridge functions (bnc#759340). - patches.arch/x86_amd_remove_misleading_message.patch: x86/PCI: amd: Kill misleading message about enablement of IO access to PCI ECS] (bnc#759340).- patches.fixes/0001-cdc-wdm-fix-race-leading-leading-to-memory-corruptio.patch: cdc-wdm: fix race leading leading to memory corruption (bnc#759539).- patches.fixes/0001-usbhid-fix-error-handling-of-not-enough-bandwidth.patch: Fixup patch for series2git.- patches.drivers/tlan-add-cast-needed-for-proper-64-bit-operation.patch: tlan: add cast needed for proper 64 bit operation (bnc#756840).- patches.fixes/dl2k-tighten-ioctl-permissions: dl2k: Tighten ioctl permissions (bnc#758813).- patches.suse/md-bm-20-bitmap-add-bitmap_resize-function-to-allow-bitmap.patch: Add missing EXPORT_SYMBOL.- patches.fixes/bonding-update-speed-duplex-for-NETDEV_CHANGE.patch: bonding:update speed/duplex for NETDEV_CHANGE (bnc#752634). - patches.fixes/bonding-comparing-a-u8-with-1-is-always-false.patch: bonding: comparing a u8 with -1 is always false (bnc#752634). - patches.fixes/bonding-start-slaves-with-link-down-for-ARP-monitor.patch: bonding: start slaves with link down for ARP monitor (bnc#752634).- patches.arch/x86-physnode_map-init.patch: x86: fix the initialization of physnode_map (bnc#748112).- patches.xen/1157-blkfront-per-device-io-lock.patch: blkfront: make blkif_io_lock spinlock per-device. - patches.xen/1171-blkback-streamline-main-loop.patch: blkback: streamline main processing loop (fate#309305). - patches.xen/xen-blkback-discard: blkback: Implement discard requests handling (fate#309305). - patches.xen/xen-blkback-discard-secure: blkback: Enhance discard support with secure erasing support (fate#309305). - patches.xen/xen-blkfront-cdrom: Refresh. - patches.xen/xen-blkfront-discard: blkfront: Handle discard requests (fate#309305). - patches.xen/xen-blkfront-discard-secure: blkfront: Enhance discard support with secure erasing support (fate#309305). - patches.xen/xen-blkif-discard: blkif: support discard (fate#309305). - patches.xen/xen-blkif-discard-secure: blkif: Enhance discard support with secure erasing support (fate#309305). - Refresh other Xen patches.- patches.arch/s390-50-01-af_iucv-netdev-event.patch: af_iucv: detect down state of HS transport interface (bnc#758279,LTC#80859). - patches.arch/s390-50-02-af_iucv-shutdown.patch: af_iucv: allow shutdown for HS transport sockets (bnc#758279,LTC#80860).- patches.suse/btrfs-0428-fix-eof-while-discarding-extents.patch: Btrfs: fix eof while discarding extents (FATE#306586). - patches.suse/btrfs-0429-check-return-value-of-bio_alloc-properly.patch: Btrfs: check return value of bio_alloc() properly (FATE#306586). - patches.suse/btrfs-0430-add-missing-free_fs_devices.patch: (FATE#306586 FATE#306586). - patches.suse/btrfs-0431-retrurn-void-from-clear_state_bit.patch: Btrfs: retrurn void from clear_state_bit (FATE#306586). - patches.suse/btrfs-0432-avoid-possible-use-after-free-in-clear_extent_.patch: Btrfs: avoid possible use-after-free in clear_extent_bit() (FATE#306586). - patches.suse/btrfs-0433-Make-free_ipath-deal-gracefully-with-NULL-poin.patch: Btrfs: Make free_ipath() deal gracefully with NULL pointers (FATE#306586). - patches.suse/btrfs-0434-don-t-call-free_extent_buffer-twice-in-iterate.patch: Btrfs: don't call free_extent_buffer twice in iterate_irefs (FATE#306586). - patches.suse/btrfs-0435-add-missing-read-locks-in-backref.c.patch: Btrfs: add missing read locks in backref.c (FATE#306586). - patches.suse/btrfs-0436-fix-max-chunk-size-check-in-chunk-allocator.patch: Btrfs: fix max chunk size check in chunk allocator (FATE#306586). - patches.suse/btrfs-0440-double-unlock-bug-in-error-handling.patch: Btrfs: double unlock bug in error handling (FATE#306586). - patches.suse/btrfs-0441-don-t-return-EINTR.patch: btrfs: don't return EINTR (FATE#306586). - patches.suse/btrfs-0442-fix-btrfs_ioctl_dev_info-crash-on-missing-devi.patch: Btrfs: fix btrfs_ioctl_dev_info() crash on missing device (FATE#306586). - patches.suse/btrfs-0444-fix-that-check_int_data-mount-option-was-ignor.patch: Btrfs: fix that check_int_data mount option was ignored (FATE#306586). - patches.suse/btrfs-1016-add-skip_balance-mount-option.patch: Refresh. - patches.suse/btrfs-handle-EIO: Refresh. - patches.suse/btrfs-8066-avoid-possible-use-after-free-in-clear_extent_.patch: Delete. - patches.suse/btrfs-8067-retrurn-void-from-clear_state_bit.patch: Delete.- patches.fixes/sched-rt-Fix-isolated-CPUs-leaving-root_task_group-indefinitely-throttled.patch: sched,rt: fix isolated CPUs leaving root_task_group indefinitely throttled (bnc#754085).- Fix SLE11-SP1->SLE11-SP2 interrupt latency regression. Revert 0209f649, and turn tick skew on globally, since 0209f649 came about to mitigate lock contention that skew removal induces, both on xtime_lock and on RCU leaf node locks. NOTE: This change trades ~400% latency regression fix for power consumption progression that skew removal bought (at high cost). - patches.fixes/rcu-Revert-limit-rcu_node-leaf-level-fanout.patch: Revert mainline 0209f649 - rcu: limit rcu_node leaf-level fanout (bnc#718521). - patches.fixes/clockevents-Reinstate-the-per-cpu-tick-skew.patch: Refresh.- patches.fixes/mm-hugetlbfs-fix-use-after-free-bug-in-quota-handling.patch: hugepages: fix use after free bug in "quota" handling (CVE-2012-2133 bnc#758532)- patches.fixes/md-no-readonly.fix: md: fix possible corruption of array metadata on shutdown.- Linux 3.0.29. - patches.arch/s390-add-FREE_PTE_NR: Refresh. - patches.drivers/USB3-0147-xHCI-Check-host-USB2-LPM-capability.patch: Refresh. - patches.drivers/USB3-0156-usb-xhci-replace-pci_-_consistent-with-dma_-_coherent.patch: Refresh. - patches.drivers/USB3-0157-usb-xhci-refactor-xhci_pci_setup.patch: Refresh. - patches.drivers/cciss-update-to-4.6.28.patch: Refresh. - patches.drivers/0001-USB-sierra-add-support-for-Sierra-Wireless-MC7710.patch: Delete. - patches.drivers/Bluetooth_Fixed_Atheros_AR3012_Maryann_PID_VID_supported.patch: Delete. - patches.drivers/bug-732296_ath3k-Add-Atheros-AR3012-Maryann-PID-VID-supported.patch: Delete. - patches.drivers/bug-732296_btusb-Add-Atheros-AR3012-Maryann-PID-VID-supported.patch: Delete. - patches.fixes/md-bitmap-init-lock: Delete.- patches.drivers/drm-edid-Add-a-workaround-for-1366x768-HD-panel: drm/edid: Add a workaround for 1366x768 HD panel (bnc#753172). - patches.drivers/drm-edid-Add-extra_modes: drm/edid: Add extra_modes (bnc#753172). - patches.drivers/drm-edid-Add-packed-attribute-to-new-gtf2-and-cvt-structs: drm/edid: Add packed attribute to new gtf2 and cvt structs (bnc#753172). - patches.drivers/drm-edid-Add-the-reduced-blanking-DMT-modes-to-the-D: drm/edid: Add the reduced blanking DMT modes to the DMT list (bnc#753172). - patches.drivers/drm-edid-Allow-drm_mode_find_dmt-to-hunt-for-reduced: drm/edid: Allow drm_mode_find_dmt to hunt for reduced-blanking modes (bnc#753172). - patches.drivers/drm-edid-Do-drm_dmt_modes_for_range-for-all-range-de: drm/edid: Do drm_dmt_modes_for_range() for all range descriptor types (bnc#753172). - patches.drivers/drm-edid-Document-drm_mode_find_dmt: drm/edid: Document drm_mode_find_dmt (bnc#753172). - patches.drivers/drm-edid-Fix-some-comment-typos-in-the-DMT-mode-list: drm/edid: Fix some comment typos in the DMT mode list (bnc#753172). - patches.drivers/drm-edid-Generate-modes-from-extra_modes-for-range-d: drm/edid: Generate modes from extra_modes for range descriptors (bnc#753172). - patches.drivers/drm-edid-Give-the-est3-mode-struct-a-real-name: drm/edid: Give the est3 mode struct a real name (bnc#753172). - patches.drivers/drm-edid-Remove-a-misleading-comment: drm/edid: Remove a misleading comment (bnc#753172). - patches.drivers/drm-edid-Rewrite-drm_mode_find_dmt-search-loop: drm/edid: Rewrite drm_mode_find_dmt search loop (bnc#753172). - patches.drivers/drm-edid-Update-range-descriptor-struct-for-EDID-1.4: drm/edid: Update range descriptor struct for EDID 1.4 (bnc#753172). - patches.drivers/drm-edid-add-missing-NULL-checks: drm/edid: add missing NULL checks (bnc#753172). - patches.drivers/drm-edid-s-drm_gtf_modes_for_range-drm_dmt_modes_for: drm/edid: s/drm_gtf_modes_for_range/drm_dmt_modes_for_range/ (bnc#753172). - patches.kabi/drm-edid-kabi-fix: Fix kABI for drm EDID improvement patches (bnc#753172).- patches.suse/SoN-0017-mm-Add-support-for-a-filesystem-to-control-swap-file.patch - patches.suse/SoN-0018-mm-swap-Implement-generic-handlers-for-swap-related-.patch Refresh - patches.arch/mm-s390-use-__set_page_dirty_no_writeback-on-swap.patch: mm: s390: Fix BUG by using __set_page_dirty_no_writeback on swap. (bnc#751550)- rename general_serial-blacklist to avoid warnings As modprobe complains about name not ending with .conf, rename general_serial-blacklist to general_serial-blacklist.conf - commit ccbc997- rpm/generic_serial-blacklist.conf: renamed from generic_serial-blacklist to avoid modprobe warnings about name not ending with .conf- patches.fixes/mqueue-fix-a-vfsmount-longterm-reference-leak: mqueue: fix a vfsmount longterm reference leak (bnc#757783).- patches.fixes/cciss-add-irqf_shared-back-in-for-the-non-msix-interrupt-handler: cciss: Add IRQF_SHARED back in for the non-MSI(X) interrupt handler (bnc#757789).- patches.fixes/procfs-fix-a-vfsmount-longterm-reference-leak: procfs: fix a vfsmount longterm reference leak (bnc#757783).- patches.drivers/drm-i915-lvds-add-standard-modes.diff: Refresh. Fix the case where multiple modes are returned from EDID (bnc#753172)- patches.drivers/tg3-Fix-5717-serdes-powerdown-problem.patch: tg3: Fix 5717 serdes powerdown problem (bnc#756940). - patches.drivers/tg3-Fix-RSS-ring-refill-race-condition.patch: tg3: Fix RSS ring refill race condition (bnc#756940). - patches.drivers/tg3-Fix-single-vector-MSI-X-code.patch: tg3: Fix single-vector MSI-X code (bnc#756940). - patches.drivers/tg3-fix-ipv6-header-length-computation.patch: tg3: fix ipv6 header length computation (bnc#756940).- patches.drivers/drm-i915-lvds-add-standard-modes.diff: drm/i915: Add more standard modes to LVDS output (bnc#753172).- patches.fixes/scsi_dh_alua-Optimize-stpg-command.patch: scsi_dh_alua: Optimize stpg command (bnc#744758). - patches.fixes/scsi_dh_alua-Store-pref-bit-from-RTPG.patch: scsi_dh_alua: Store 'pref' bit from RTPG (bnc#755758). - patches.fixes/scsi_dh_alua-set_params-interface.patch: scsi_dh_alua: set_params interface (bnc#755758).- patches.drivers/0001-uwb-fix-error-handling.patch: uwb: fix error handling (bnc#757950). - patches.drivers/0001-uwb-fix-use-of-del_timer_sync-in-interrupt.patch: uwb: fix use of del_timer_sync() in interrupt (bnc#757950).- patches.fixes/ipv6-fix-problem-with-expired-dst-cache.patch: Update patch header.- patches.fixes/0001-usbhid-fix-error-handling-of-not-enough-bandwidth.patch: usbhid: fix error handling of not enough bandwidth (bnc#704280).- patches.fixes/mm-test-PageSwapBacked-in-lumpy-reclaim.patch: - patches.fixes/mm-vmscan-activate-executable-pages-after-first-usage.patch: - patches.fixes/mm-vmscan-promote-shared-file-mapped-pages.patch: - patches.fixes/mm-vmscan-trace-Add-file-info-to-trace_mm_vmscan_lru_isolate.patch: - patches.fixes/mm-vmscan.c-consider-swap-space-when-deciding-whether-to-continue-reclaim.patch: - patches.fixes/mm-vmscan-do-not-force-scan.patch Improve preservation of page-age information (bnc#754690)- patches.suse/pagecache-limit-fix-shmem-deadlock.patch: pagecache limit: Fix the shmem deadlock (bnc#755537).- patches.drivers/0001-USB-sierra-add-support-for-Sierra-Wireless-MC7710.patch: USB: sierra: add support for Sierra Wireless MC7710 (bnc#757517).- patches.arch/x86-iommu-intel-Fix-identity-mapping-for-sandy-bridge.patch: x86/iommu/intel: Fix identity mapping for sandy bridge (bnc#743232).- Linux 3.0.28. - patches.fixes/pci_use_acpi_resources_whitelist.patch: Refresh. - patches.drivers/bug-708836_bluetooth-l2cap-security-race.patch: Delete. - patches.drivers/drm-i915-Sanitize-BIOS-debugging-bits: Delete.- patches.fixes/ipv6-check-dest-prefix-length-on-original-route.patch: ipv6: Check dest prefix length on original route not copied one in rt6_alloc_cow() (bnc#757202). - patches.fixes/ipv6-dont-use-inetpeer-to-store-metrics-for-routes.patch: ipv6: don't use inetpeer to store metrics for routes (bnc#757202). - patches.fixes/ipv6-fix-problem-with-expired-dst-cache.patch: ipv6: fix problem with expired dst cache (bnc#757205). - patches.fixes/ipv6-unshare-inetpeers.patch: unshare inetpeers.- patches.fixes/bridge-correct-IPv6-checksum-after-pull.patch: bridge: correct IPv6 checksum after pull (bnc#738644).- patches.drivers/cxgb4_collect_flush_cq_on_close.patch: Update references (bnc#721857). - patches.drivers/cxgb4_serialize_comp_handler_calls.patch: Update references (bnc#721857).- patches.suse/btrfs-8061-handle-errors-from-read_tree_block.patch: fix broken condition (bnc#756821)- patches.fixes/hv-storvsc-reset-wait.patch: Drivers: scsi: storvsc: Account for in-transit packets in the RESET path.- patches.arch/s390-49-01-qeth-fix-OSA4-blkt.patch: qeth: Improve OSA Express 4 blkt defaults (bnc#754969,LTC#80325). - patches.arch/s390-49-02-zcrypt-fix_copro_cprb_check.patch: zcrypt: Fix parameter checking for ZSECSENDCPRB ioctl (bnc#754969,LTC#80378).- patches.fixes/md-bitmap-init-lock: md/bitmap: prevent bitmap_daemon_work running while initialising bitmap.- patches.fixes/md-bitmap-hot-add.fix: Delete. Equivalent patch came in with 3.0.27- patches.fixes/mm-mempolicy.c-fix-pgoff-in-mbind-vma-merge.patch: - patches.fixes/mm-mempolicy.c-refix-mbind_range-vma-issue.patch: Fix vma merging issue during mbind affecting JVMs.- Sync kabi files for s390x (symsets and symtypes were outdated).btrfs fixes - patches.suse/btrfs-0408-add-get_restripe_target-helper.patch: Refresh. - patches.suse/btrfs-0409-add-__get_block_group_index-helper.patch: Refresh. - patches.suse/btrfs-8065-do-not-mount-when-we-have-a-sectorsize-unequal.patch: Btrfs: do not mount when we have a sectorsize unequal to PAGE_SIZE (FATE#306586). - patches.suse/btrfs-8066-avoid-possible-use-after-free-in-clear_extent_.patch: Btrfs: avoid possible use-after-free in clear_extent_bit() (FATE#306586). - patches.suse/btrfs-8067-retrurn-void-from-clear_state_bit.patch: Btrfs: retrurn void from clear_state_bit (FATE#306586). - patches.suse/btrfs-handle-EIO: Refresh.- patches.fixes/md-record-write-mostly-status: md: ensure changes to 'write-mostly' are reflected in metadata (bnc#755178).- patches.drivers/apei_check_acc_width_allow_not_byte_alligned_bit_offset.patch: ACPI, APEI: Fix incorrect APEI register bit width check and usage (bnc#725592).- patches.drivers/vmxnet3-cap-copy-length-at-size-of-skb-to-prevent-dr.patch: vmxnet3: cap copy length at size of skb to prevent dropped frames on tx (bnc#755812).btrfs updates - patches.suse/btrfs-0400-Fix-typo-in-free-space-cache.c.patch: btrfs: Fix typo in free-space-cache.c (FATE#306586). - patches.suse/btrfs-0401-remove-the-ideal-caching-code.patch: Btrfs: remove the ideal caching code (FATE#306586). - patches.suse/btrfs-0402-remove-search_start-and-search_end-from-find_f.patch: Btrfs: remove search_start and search_end from find_free_extent and callers (FATE#306586). - patches.suse/btrfs-0403-adjust-the-write_lock_level-as-we-unlock.patch: Btrfs: adjust the write_lock_level as we unlock (FATE#306586). - patches.suse/btrfs-0409-add-__get_block_group_index-helper.patch: Refresh. - patches.suse/btrfs-0415-actually-call-btrfs_init_lockdep.patch: Btrfs: actually call btrfs_init_lockdep (FATE#306586). - patches.suse/btrfs-0417-fix-regression-in-scrub-path-resolving.patch: Btrfs: fix regression in scrub path resolving (FATE#306586). - patches.suse/btrfs-0418-show-useful-info-in-space-reservation-tracepoi.patch: Btrfs: show useful info in space reservation tracepoint (FATE#306586). - patches.suse/btrfs-0419-flush-out-and-clean-up-any-block-device-pages-.patch: Btrfs: flush out and clean up any block device pages during mount (FATE#306586). - patches.suse/btrfs-0420-fix-deadlock-during-allocating-chunks.patch: Btrfs: fix deadlock during allocating chunks (FATE#306586). - patches.suse/btrfs-0421-fix-race-between-direct-io-and-autodefrag.patch: Btrfs: fix race between direct io and autodefrag (FATE#306586). - patches.suse/btrfs-0422-fix-the-mismatch-of-page-mapping.patch: Btrfs: fix the mismatch of page->mapping (FATE#306586). - patches.suse/btrfs-0423-fix-recursive-defragment-with-autodefrag-optio.patch: Btrfs: fix recursive defragment with autodefrag option (FATE#306586). - patches.suse/btrfs-0424-add-a-check-to-decide-if-we-should-defrag-the-.patch: Btrfs: add a check to decide if we should defrag the range (FATE#306586). - patches.suse/btrfs-0425-do-not-bother-to-defrag-an-extent-if-it-is-a-b.patch: Btrfs: do not bother to defrag an extent if it is a big real extent (FATE#306586). - patches.suse/btrfs-0426-update-to-the-right-index-of-defragment.patch: Btrfs: update to the right index of defragment (FATE#306586). - patches.suse/btrfs-handle-EIO: Refresh.- patches.xen/1166-smpboot-ordering.patch: smpboot: adjust ordering of operations. - patches.xen/1167-x86_64-memset.patch: x86-64: provide a memset() that can deal with 4Gb or above at a time (bnc#738528). - Update Xen patches to 3.0.27.- patches.suse/btrfs-8064-Fix-use-after-free-in-__btrfs_end_transaction.patch: btrfs: Fix use-after-free in __btrfs_end_transaction (FATE#306586).btrfs updates: restriper fixes - patches.suse/btrfs-0404-stop-silently-switching-single-chunks-to-raid0.patch: Btrfs: stop silently switching single chunks to raid0 on balance (FATE#306586). - patches.suse/btrfs-0405-add-wrappers-for-working-with-alloc-profiles.patch: Btrfs: add wrappers for working with alloc profiles (FATE#306586). - patches.suse/btrfs-0406-make-profile_is_valid-check-more-strict.patch: Btrfs: make profile_is_valid() check more strict (FATE#306586). - patches.suse/btrfs-0407-move-alloc_profile_is_valid-to-volumes.c.patch: Btrfs: move alloc_profile_is_valid() to volumes.c (FATE#306586). - patches.suse/btrfs-0408-add-get_restripe_target-helper.patch: Btrfs: add get_restripe_target() helper (FATE#306586). - patches.suse/btrfs-0409-add-__get_block_group_index-helper.patch: Btrfs: add __get_block_group_index() helper (FATE#306586). - patches.suse/btrfs-0410-improve-the-logic-in-btrfs_can_relocate.patch: Btrfs: improve the logic in btrfs_can_relocate() (FATE#306586). - patches.suse/btrfs-0411-validate-target-profiles-only-if-we-are-going-.patch: Btrfs: validate target profiles only if we are going to use them (FATE#306586). - patches.suse/btrfs-0412-allow-dup-for-data-chunks-in-mixed-mode.patch: Btrfs: allow dup for data chunks in mixed mode (FATE#306586). - patches.suse/btrfs-0413-fix-memory-leak-in-resolver-code.patch: Btrfs: fix memory leak in resolver code (FATE#306586). - patches.suse/btrfs-0414-fix-infinite-loop-in-btrfs_shrink_device.patch: Btrfs: fix infinite loop in btrfs_shrink_device() (FATE#306586). - patches.suse/btrfs-8055-stop-silently-switching-single-chunks-to-raid0.patch: Delete.- patches.drivers/drm-i915-lvds-disable-at-modeset-for-hp-probook: drm/i915: Disable LVDS at mode change (bnc#752022).- Linux 3.0.27. - patches.drivers/target-0030-target-Make-all-control-CDBs-scatter-gather.patch: Refresh. - patches.kernel.org/revert-ASPM-Fix-pcie-devices-with-non-pcie-children.patch: Revert "ASPM: Fix pcie devices with non-pcie children". - patches.kernel.org/revert-net-fix-a-potential-rcu_read_lock-imbalance-i.patch: Revert "net: fix a potential rcu_read_lock() imbalance in rt6_fill_node()". - patches.drivers/0001-Bluetooth-btusb-fix-bInterval-for-high-super-speed-i.patch: Delete. - patches.drivers/drm-i915-suspend-fbdev-device-around-suspend-hiberna: Delete. - patches.fixes/jbd2-clear-BH_Delay-BH_Unwritten-in-journal_unmap_buffer.patch: Delete. - patches.fixes/kvm-KVM-x86-extend-struct-x86_emulate_ops-with-get_cpuid.patch: Delete. - patches.fixes/kvm-KVM-x86-fix-missing-checks-in-syscall-emulation.patch: Delete. - patches.fixes/lockd-arg-parse.fix: Delete. - patches.fixes/mm-sparsemem-bootmem-catch-greater-than-section-size-allocations.patch: Delete. - patches.fixes/mm-thp-fix-pmd_bad-triggering-in-code-paths-holding-mmap_sem-read-mode.patch: Delete. - patches.fixes/xfs-Fix-oops-on-IO-error-during-xlog_recover_process.patch: Delete.- patches.drivers/rt2x00-Fix-rfkill_polling-register-function: rt2x00: rt2x00dev: move rfkill_polling register to proper place (bnc#748806).- patches.suse/btrfs-8063-error-handling-locking-fixup.patch: btrfs: error handling locking fixup (FATE#306586).- patches.fixes/ipmi-fix-deadlock-in-start_next_msg.patch: Refresh.- patches.drivers/drm-i915-suspend-fbdev-device-around-suspend-hiberna: drm/i915: suspend fbdev device around suspend/hibernate (bnc#732908).- patches.suse/btrfs-8059-handle-errors-when-excluding-super-extents.patch: disable due to potential corruptions (bnc#751743)- patches.fixes/pci-set-device-power-state-to-PCI_D0.patch: PCI: Set device power state to PCI_D0 for device without native PM support (bnc#752972).- patches.fixes/dlm-Do-not-allocate-a-fd-for-peeloff.patch: dlm: Do not allocate a fd for peeloff (bnc#729247). - patches.fixes/sctp-Export-sctp_do_peeloff.patch: sctp: Export sctp_do_peeloff (bnc#729247).- patches.suse/dasd-blk-timeout.patch: Only activate blk_timeout for failfast requests (bnc#753617).- patches.fixes/xfs-Fix-oops-on-IO-error-during-xlog_recover_process.patch: xfs: Fix oops on IO error during xlog_recover_process_iunlinks() (bnc#716850).- patches.fixes/watchdog-make-sure-the-watchdog-thread-gets-CPU-on-l.patch: watchdog: make sure the watchdog thread gets CPU on loaded system (bnc#738583).- patches.suse/md-Do-not-block-when-displaying-info.patch: md: Do not block when displaying info. (bnc#753617) This patch is currently disabled. Also remove (by tagging) some related patches that aren't wanted any more.- patches.drivers/0001-Bluetooth-btusb-fix-bInterval-for-high-super-speed-i.patch: Bluetooth: btusb: fix bInterval for high/super speed isochronous endpoints (bnc#754052).- Linux 3.0.26.- patches.suse/msft-hv-0286-Staging-hv-mousevsc-Remove-the-mouse-driver-from.patch: - patches.suse/msft-hv-0296-HID-hv_mouse-Properly-add-the-hid-device.patch: add mainline tags from staging-next tree- patches.suse/msft-hv-0327-net-hyperv-Use-netif_tx_disable-instead-of-netif_.patch: net/hyperv: Use netif_tx_disable() instead of netif_stop_queue() when necessary. - patches.suse/msft-hv-0328-net-hyperv-rx_bytes-should-account-the-ether-header.patch: net/hyperv: rx_bytes should account the ether header size. - patches.suse/msft-hv-0329-net-hyperv-fix-the-issue-that-large-packets-be-drop.patch: net/hyperv: fix the issue that large packets be dropped under bridge. - patches.suse/msft-hv-0330-net-hyperv-Fix-the-page-buffer-when-an-RNDIS-messag.patch: net/hyperv: Fix the page buffer when an RNDIS message goes beyond page boundary.- patches.suse/btrfs-8058-disallow-unequal-data-metadata-blocksize-for-m.patch: fix logic in condition.- patches.suse/btrfs-8059-handle-errors-when-excluding-super-extents.patch: fix incorrect exclusion of superblock from blockgroups (bnc#751743)- patches.fixes/proc-Consider-NO_HZ-when-printing-idle-and-iowait-ti.patch: proc: Consider NO_HZ when printing idle and iowait times (bnc#705551). - patches.fixes/procfs-do-not-confuse-jiffies-with-cputime64_t.patch: procfs: do not confuse jiffies with cputime64_t (bnc#705551). - patches.fixes/procfs-do-not-overflow-get_-idle-iowait-_time-for-no.patch: procfs: do not overflow get_{idle,iowait}_time for nohz (bnc#705551).- patches.drivers/drm-i915-Sanitize-BIOS-debugging-bits: drm/i915: Sanitize BIOS debugging bits from PIPECONF (bnc#751916).- patches.suse/dasd-blk-timeout.patch: Update patch by suggestion of Stefan Weinhuber. - patches.suse/dasd-detailed-io-errors.patch: Refresh.- patches.arch/s390-48-01-lcs-setoffline.patch: lcs: lcs offline failure (bnc#752484,LTC#79788). - patches.arch/s390-48-02-qeth-wake.patch: qeth: add missing wake_up call (bnc#752484,LTC#79899).- patches.drivers/bfa-set-correct-scsi-returncode: bfa: Do not return DID_ABORT on failure (bnc#745400).- Linux 3.0.25. - patches.drivers/0012-rt2x00-Reduce-window-of-a-queue-s-tx-lock.patch: Refresh. - patches.kernel.org/revert-PCI-ignore-pre-1.1-ASPM-quirking-when-ASPM-is.patch: Revert "PCI: ignore pre-1.1 ASPM quirking when ASPM is disabled". - patches.xen/xen3-auto-common.diff: Refresh. - patches.rpmify/compat-Re-add-missing-asm-compat.h-include.patch: Delete.- patches.fixes/mm-thp-fix-pmd_bad-triggering-in-code-paths-holding-mmap_sem-read-mode.patch: mm: thp: fix pmd_bad() triggering in code paths holding mmap_sem read mode (CVE-2012-1179, bnc#752599)- patches.suse/btrfs-8059-handle-errors-when-excluding-super-extents.patch: fix incorrect default value.- patches.suse/btrfs-volumes-schedule_bio-should-return-void: fix aio/dio bio refcounting bnc#718918.- Add patches.drivers/hp_accel-ignore-resume-error to series.conf- kABI: update default reference file on i386 for RTC config change update kABI reference files for kernel-default on i386 arch to reflect commit 399b8f330a2a3bec84373cc816a0dec79dffdf4c (config: enable RTC support on i386) - commit 90ab581- kabi/i386/*-default*: update kABI reference files for kernel-default on i386 arch to reflect commit 399b8f330a2a3bec84373cc816a0dec79dffdf4c- config: fix kernel-vanilla build when sanitizing config files through 'make oldconfig', unpatched upstream sources must be used for vanilla flavor - commit 2a5e9a8- config/i386/vanilla config/x86_64/vanilla: fix kernel-vanilla build; when sanitizing config files through 'make oldconfig', unpatched upstream sources must be used for vanilla flavor- config: enable RTC support on i386 build with RTC support on i386 - this was accidentally disabled when config files were updated for 3.0.24 kernel - commit 399b8f3- config/i386/*: build with RTC support on i386 - this was accidentally disabled when config files were updated for 3.0.24 kernel- patches.suse/ext4-rw-unsupported.patch: remove the patch disabling ext4 read-write mount - commit 04de24c- patches.suse/ext4-rw-unsupported.patch: remove the patch disabling ext4 read-write mount- patches.suse/0005-md-raid10-add-failfast-handling-for-writes.patch: Fix kernel oops during drive failure (bnc#750995).- patches.xen/1158-xenbus-remove-details.patch: xenbus: don't free other end details too early. - patches.xen/1162-blkback-disconnect.patch: blkback: also call blkif_disconnect() when frontend switched to closed. - patches.xen/1163-gnttab-deferred-end-access.patch: gnttab: add deferred freeing logic. - patches.xen/1164-blkback-feature-barrier-non-fatal.patch: blkback: failure to write "feature-barrier" node is non-fatal. - Refresh other Xen patches.- patches.drivers/drm-i915-Add-lvds_channel-module-option: drm/i915: Add lvds_channel module option (bnc#739837). - patches.drivers/drm-i915-Check-VBIOS-value-for-determining-LVDS-dual: drm/i915: Check VBIOS value for determining LVDS dual channel mode, too (bnc#739837).- patches.suse/btrfs-8053-fix-race-in-reada.patch: Refresh.btrfs sync with 3.3 - patches.suse/btrfs-0396-fix-locking-issues-in-find_parent_nodes.patch: btrfs: fix locking issues in find_parent_nodes() (FATE#306586). - patches.suse/btrfs-0397-fix-casting-error-in-scrub-reada-code.patch: Btrfs: fix casting error in scrub reada code (FATE#306586). - patches.suse/btrfs-8059-handle-errors-when-excluding-super-extents.patch: Fix uninitialized variable. - patches.suse/btrfs-8056-fix-locking-issues-in-find_parent_nodes.patch: Delete. - patches.suse/btrfs-8057-fix-casting-error-in-scrub-reada-code.patch: Delete.- patches.fixes/cpuset-mm-reduce-memory-barrier-related-damage-fix.patch: Fix uninitialised variable warning and obey the [get|put]_mems_allowed API.- update kABI reference files for x86_64 and i386 arch Update kabi/x86_64/* and kabi/i386/* to match kernel config changes. Remove kernel-trace symbols, add kernel-desktop. - commit 68d8e38- create a new branch for openSUSE 11.4 kernel 3.0 - adjust kernel config to better match openSUSE 11.4 kernel - update kABI reference files for x86_64 and i386 arch- adjust kernel config to match openSUSE 11.4 kernel Config files are modified to match 2.6.37.6 kernel where it differs from SLE11-SP2 one (if possible). Added config fori386 kernel-vmi. - commit cfaad80- create a branch for openSUSE 11.4 kernel 3.0 Create new branch for adopting 3.0 kernel from SLE11-SP2 into openSUSE 11.4 so that it can be used for Evergreen project when the regular maintenance period finishes. - commit 28ee037- patches.fixes/Fix-SMI-induced-variation-in-quick_pit_calibrate: x86, tsc: Fix SMI induced variation in quick_pit_calibrate(). (bnc#751322)- patches.fixes/epoll-dont-limit-non-nested.patch: Don't limit non-nested epoll paths (bnc#676204).- patches.drivers/mlx4_en-Assigning-TX-irq-per-ring.patch: mlx4_en: Assigning TX irq per ring (bnc#624072).- patches.suse/dasd-blk-timeout.patch: Terminate inactive cqrs correctly (bnc#750995) - patches.suse/dasd-detailed-io-errors.patch: dasd: detailed I/O errors (bnc#746717).- patches.suse/msft-hv-0326-net-hyperv-fix-erroneous-NETDEV_TX_BUSY-use.patch: net/hyperv: fix erroneous NETDEV_TX_BUSY use.- patches.suse/dasd-Implement-failfast_retries.patch: Fixup typo. - patches.suse/dasd-make-number-of-retries-configurable.patch: Fixup typo.- patches.suse/btrfs-8059-handle-errors-when-excluding-super-extents.patch: Refresh. - patches.suse/btrfs-8061-handle-errors-from-read_tree_block.patch: btrfs: handle errors from read_tree_block (FATE#306586 bnc#748632). - patches.suse/btrfs-8062-push-up-errors-in-btrfs-num-copies.patch: btrfs: push-up errors from btrfs_num_copies (FATE#306586 bnc#748632).- patches.suse/msft-hv-0324-Staging-hv-storvsc-Move-the-storage-driver-out-of.patch: Fixup patch for series2git. - patches.xen/xen3-patch-2.6.32: Fixup patch for series2git.- patches.suse/md-re-add-to-failed: Update references (bnc#746717).- patches.suse/sd_init.mark_majors_busy.patch: Update references (bnc#744658).- patches.fixes/bridge-always-send-NETDEV_CHANGEADDR-up-on-br-MAC-change.patch: Bridge: Always send NETDEV_CHANGEADDR up on br MAC change (bnc#752408).- patches.drivers/agp-fix-scratch-page-cleanup: agp: fix scratch page cleanup (bnc#738679).- patches.drivers/hp_accel-ignore-resume-error: hp_accel: Ignore the error from lis3lv02d_poweron() at resume (bnc#751903).- patches.drivers/pstore_fix_ia64_compile_warning.patch: efivars: add missing parameter to efi_pstore_read().- patches.suse/md-raid10-handle-merge_bvec_fn-in-member-devices.patch: md/raid10: handle merge_bvec_fn in member devices. - patches.suse/md-raid10-support-resizing-some-RAID10-arrays.patch: md/raid10 - support resizing some RAID10 arrays.- patches.suse/btrfs-handle-EIO: add a few error cleanups. - patches.suse/btrfs-update-message-levels.patch: Refreshed.- patches.suse/xfs-dmapi-send-rw-events.patch: XFS read/write calls do not generate DMAPI events (bnc#751885).- Linux 3.0.24. - Update config files. - patches.arch/s390-vmcp-module.patch: Refresh. - patches.kabi/hide-compat-h-inclusion.patch: kabi: hide compat.h inclusion. - patches.kabi/kabi-protect-struct-ath_hw.patch: kABI: protect struct ath_hw. - patches.drivers/USB3-0295-net-usb-Misc.-fixes-for-the-LG-VL600-LTE-USB-modem.patch: Refresh. - patches.drivers/drm-i915-Cache-GT-fifo-count-for-SandyBridge: Refresh. - patches.drivers/drm-i915-Flush-other-plane-register-writes: Refresh. - patches.drivers/drm-i915-Set-two-chicken-bits-implicated-in-missed-I: Refresh. - patches.drivers/drm-i915-Prevent-a-machine-hang-by-checking-crtc-act: Delete. - patches.drivers/drm-i915-gen7-Disable-the-RHWO-optimization-as-it-ca: Delete. - patches.drivers/drm-i915-gen7-Implement-an-L3-caching-workaround: Delete. - patches.drivers/drm-i915-gen7-implement-rczunit-workaround: Delete. - patches.drivers/drm-i915-gen7-work-around-a-system-hang-on-IVB: Delete. - patches.fixes/cifs-fix-dentry-refcount-leak-when-opening-a-fifo-on-lookup: Delete. - patches.fixes/mm-memcg-correct-unregistring-of-events-attached-to-the-same-eventfd: Delete. - patches.fixes/regset-prevent-null-pointer-reference-on-readonly-regsets: Delete. - patches.fixes/regset-return-efault-not-eio-on-host-side-memory-fault: Delete. - patches.rpmify/compat-Re-add-missing-asm-compat.h-include.patch: compat: Re-add missing asm/compat.h include to fix compile breakage on s390.- Linux 3.0.23. - patches.drivers/USB3-0154-usb-xhci-group-MSI-interrupt-registration-into-its-own-funct.patch: Refresh. - patches.drivers/USB3-0155-usb-xhci-hide-MSI-code-behind-PCI-bars.patch: Refresh. - patches.kabi/kabi-protect-struct-file.patch: kABI: protect struct file. - patches.kabi/kabi-protect-struct-us_data.patch: kABI: protect struct us_data. - patches.kabi/kabi-protect-thread-struct.patch: kABI: protect thread_struct. - patches.kabi/revert-i387-math_state_restore-isn-t-called-from-asm.patch: Revert "i387: math_state_restore() isn't called from asm". - patches.kabi/revert-ipv4-Fix-wrong-order-of-ip_rt_get_source-and-.patch: Revert "ipv4: Fix wrong order of ip_rt_get_source() and update iph->daddr.". - patches.kabi/revert-ipv4-Save-nexthop-address-of-LSRR-SSRR-option.patch: Revert "ipv4: Save nexthop address of LSRR/SSRR option to IPCB.". - patches.kabi/revert-net-fix-NULL-dereferences-in-check_peer_redir.patch: Refresh. - patches.kernel.org/0001-Revert-i387-re-introduce-FPU-state-preloading-at-con.patch: Revert "i387: re-introduce FPU state preloading at context switch time". - patches.kernel.org/0002-Revert-i387-move-TS_USEDFPU-flag-from-thread_info-to.patch: Revert "i387: move TS_USEDFPU flag from thread_info to task_struct". - patches.kernel.org/0003-Revert-i387-move-AMD-K7-K8-fpu-fxsave-fxrstor-workar.patch: Revert "i387: move AMD K7/K8 fpu fxsave/fxrstor workaround from save to restore". - patches.kernel.org/0004-Revert-i387-do-not-preload-FPU-state-at-task-switch-.patch: Revert "i387: do not preload FPU state at task switch time". - patches.kernel.org/0005-Revert-i387-don-t-ever-touch-TS_USEDFPU-directly-use.patch: Revert "i387: don't ever touch TS_USEDFPU directly, use helper functions". - patches.kernel.org/0006-Revert-i387-move-TS_USEDFPU-clearing-out-of-__save_i.patch: Revert "i387: move TS_USEDFPU clearing out of __save_init_fpu and into callers". - patches.kernel.org/0007-Revert-i387-fix-x86-64-preemption-unsafe-user-stack-.patch: Revert "i387: fix x86-64 preemption-unsafe user stack save/restore". - patches.kernel.org/0008-Revert-i387-fix-sense-of-sanity-check.patch: Revert "i387: fix sense of sanity check". - patches.kernel.org/0009-Revert-i387-make-irq_fpu_usable-tests-more-robust.patch: Revert "i387: make irq_fpu_usable() tests more robust". - patches.kernel.org/0010-Revert-i387-math_state_restore-isn-t-called-from-asm.patch: Revert "i387: math_state_restore() isn't called from asm". - patches.xen/xen3-fixup-arch-x86: Refresh. - patches.drivers/0001-USB-Don-t-fail-USB3-probe-on-missing-legacy-PCI-IRQ.patch: Delete. - patches.drivers/0001-USB-Fix-handoff-when-BIOS-disables-host-PCI-device.patch: Delete. - patches.drivers/0001-USB-Set-hub-depth-after-USB3-hub-reset.patch: Delete. - patches.drivers/0001-xhci-Fix-encoding-for-HS-bulk-control-NAK-rate.patch: Delete. - patches.drivers/0001-xhci-Fix-oops-caused-by-more-USB2-ports-than-USB3-po.patch: Delete. - patches.fixes/0001-USB-xhci-fix-port-switching-on-PantherPoint.patch: Delete. - patches.fixes/bug-735909_hard_wired_primary_bus.patch: Delete. - patches.fixes/epoll-limit-paths.patch: Delete. - patches.kabi/epoll-kabi-fix.patch: Delete.- disable patches.suse/msft-hv-0261-NLS-improve-UTF8-UTF16-string-conversion-routine.patch breaks KABI and is not strictly required- patches.fixes/nfs-noac-mount.fix: nfs: Do not allow multiple mounts on same mountpoint when using -o noac (bnc#745422).- patches.suse/md-raid10-disable-recovery: raid10: Disable recovery when recovery cannot proceed (bnc#751171).- update hyperv drivers to 3.3-rc7 and move them out of staging: hv_timesource -> merged into core kernel hv_vmbus -> drivers/hv/hv_vmbus hv_utils -> drivers/hv/hv_utils hv_storvsc -> drivers/scsi/hv_storvsc hv_netvsc -> drivers/net/hyperv/hv_netvsc hv_mousevsc -> drivers/hid/hid-hyperv add compat modalias for hv_mousevsc update supported.conf rename all 333 patches, use msft-hv- and suse-hv- as prefix- patches.suse/sd_init.mark_majors_busy.patch: mark busy sd majors as allocated (bug#744658).- patches.suse/dasd-blk-timeout.patch: Update patch after review from Stefan Weinhuber @ IBM.- Update reference module symbol versions. - patches.arch/s390-kmsg-dev-printk.patch: callhome: fix broken proc interface and activate compid (bnc#748862,LTC#79115).- patches.suse/btrfs-8059-handle-errors-when-excluding-super-extents.patch: btrfs: handle errors when excluding super extents (FATE#306586 bnc#751015).- patches.fixes/xfs-dmapi-remove-cached-vfsmount: xfs/dmapi: Remove cached vfsmount (bnc#749417).- patches.fixes/md-bitmap-hot-add.fix: md/bitmap: ensure to load bitmap when creating via sysfs.- patches.fixes/st-expand-ability-to-write-immediate-filemarks.patch: expand tape driver ability to write immediate filemarks (bnc#688996).- patches.fixes/md-no-readonly: md: don't set md arrays to readonly on shutdown (bnc#740180, bnc#713148, bnc#734900).- patches.fixes/regset-prevent-null-pointer-reference-on-readonly-regsets: regset: Prevent null pointer reference on readonly regsets (bnc#750079 CVE-2012-1097). - patches.fixes/regset-return-efault-not-eio-on-host-side-memory-fault: regset: Return -EFAULT, not -EIO, on host-side memory fault (bnc#750079 CVE-2012-1097).- patches.fixes/mm-memcg-correct-unregistring-of-events-attached-to-the-same-eventfd: mm: memcg: Correct unregistring of events attached to the same eventfd (CVE-2012-1146 bnc#750959).- patches.suse/btrfs-handle-EIO: Fix missing goto in btrfs_ioctl_clone.- patches.drivers/alsa-sp2-hda-025-Set-codec-to-D3-forcibly-even-if-not-used: ALSA: hda - Set codec to D3 forcibly even if not used (bnc#750426).- patches.suse/dasd-blk-timeout.patch: Fixup compilation error.- patches.suse/dasd-blk-timeout.patch: dasd: Implement block timeout handling (bnc#746717).- patches.drivers/alsa-sp2-hda-023-Add-Realtek-ALC269VC-codec-support: ALSA: hda - Add Realtek ALC269VC codec support (bnc#748827). - patches.drivers/alsa-sp2-hda-024-Apply-the-coef-setup-only-to-ALC269: ALSA: hda/realtek - Apply the coef-setup only to ALC269VB (bnc#748827).- patches.suse/md-allow-force-fail: md: allow last device to be forcibly removed from RAID1/RAID10 (bnc#746717). - patches.suse/md-re-add-to-failed: md: allow re-add to failed arrays (bnc#764717).- enable patches.suse/ext3-increase-reservation-window.patch. I forgot to enable it when committing the patch.- patches.suse/btrfs-handle-EIO: Fixed mishandled -EAGAIN error case from btrfs_split_item (bnc#750459).- patches.drivers/drm-i915-Force-explicit-bpp-selection-for-intel_dp_l: drm/i915: Force explicit bpp selection for intel_dp_link_required (bnc#749980). - patches.drivers/drm-i915-dp-Dither-down-to-6bpc-if-it-makes-the-mode: drm/i915/dp: Dither down to 6bpc if it makes the mode fit (bnc#749980). - patches.drivers/drm-i915-dp-Read-more-DPCD-registers-on-connection-p: drm/i915/dp: Read more DPCD registers on connection probe (bnc#749980). - patches.drivers/drm-i915-fixup-interlaced-bits-clearing-in-PIPECONF-: drm/i915: fixup interlaced bits clearing in PIPECONF on PCH_SPLIT (bnc#749980). - patches.drivers/drm-i915-read-full-receiver-capability-field-during-: drm/i915: read full receiver capability field during DP hot plug (bnc#749980). - patches.drivers/drm-intel-Fix-initialization-if-startup-happens-in-i: drm/intel: Fix initialization if startup happens in interlaced mode [v2] (bnc#749980).- patches.suse/btrfs-8058-disallow-unequal-data-metadata-blocksize-for-m.patch: btrfs: disallow unequal data/metadata blocksize for mixed block groups (FATE#306586).- supported.conf: Add acpi_ipmi as supported (bnc#716971).- patches.fixes/mm-cpusets-avoid-looping-when-storing-to-mems_allowed-if-one.patch: cpusets: avoid looping when storing to mems_allowed if one. - patches.fixes/mm-cpusets-stall-when-updating-mems_allowed-for-mempolicy-or.patch: cpusets: avoid stall when updating mems_allowed for mempolicy. - patches.fixes/cpuset-mm-reduce-memory-barrier-related-damage.patch: - patches.fixes/cpuset-mm-reduce-memory-barrier-related-damage-kabi.patch cpuset: mm: Reduce large amounts of memory barrier related slowdown. - patches.fixes/mm-make-swapin-readahead-skip-over-holes.patch mm: make swapin readahead skip over holes.- patches.fixes/cifs-fix-dentry-refcount-leak-when-opening-a-fifo-on-lookup: cifs: fix dentry refcount leak when opening a FIFO on lookup (CVE-2012-1090 bnc#749569).- patches.suse/btrfs-btrfs_destroy_ordered_extents-should-return-void: Refresh. - patches.suse/btrfs-btrfs_destroy_ordered_operations-should-return-void: Refresh. - patches.suse/btrfs-superblock-sanity-checks.patch: Btrfs: enhance superblock sanity checks (FATE#306586 bnc#749651). - patches.suse/btrfs-update-message-levels.patch: Btrfs: update message levels (FATE#306586).- patches.fixes/epoll-limit-paths.patch: epoll: limit paths (bnc#676204 CVE-2011-1083). - patches.kabi/epoll-kabi-fix.patch: epoll: hide kabi change in struct file (bnc#676204 CVE-2011-1083).- drm/i915 IVY/SNB fix patches from upstream 3.3-rc5 & rc6: patches.drivers/drm-i915-Prevent-a-machine-hang-by-checking-crtc-act, patches.drivers/drm-i915-do-not-enable-RC6p-on-Sandy-Bridge, patches.drivers/drm-i915-fix-operator-precedence-when-enabling-RC6p, patches.drivers/drm-i915-gen7-Disable-the-RHWO-optimization-as-it-ca, patches.drivers/drm-i915-gen7-Implement-an-L3-caching-workaround, patches.drivers/drm-i915-gen7-implement-rczunit-workaround, patches.drivers/drm-i915-gen7-work-around-a-system-hang-on-IVB- patches.xen/pci-reserve: Update for series2git.- patches.drivers/0001-xhci-Fix-encoding-for-HS-bulk-control-NAK-rate.patch: xhci: Fix encoding for HS bulk/control NAK rate (bnc#750402).btrfs 3.3-rc6 updates - patches.suse/btrfs-8051-avoid-setting-d_op-twice.patch: Btrfs: avoid setting ->d_op twice (FATE#306586 bnc#731387). - patches.suse/btrfs-8052-fix-wrong-information-of-the-directory-in-the-.patch: btrfs: fix wrong information of the directory in the snapshot (FATE#306586). - patches.suse/btrfs-8053-fix-race-in-reada.patch: btrfs: fix race in reada (FATE#306586). - patches.suse/btrfs-8054-don-t-add-both-copies-of-DUP-to-reada-extent-t.patch: btrfs: don't add both copies of DUP to reada extent tree (FATE#306586). - patches.suse/btrfs-8055-stop-silently-switching-single-chunks-to-raid0.patch: Btrfs: stop silently switching single chunks to raid0 on balance (FATE#306586). - patches.suse/btrfs-8056-fix-locking-issues-in-find_parent_nodes.patch: btrfs: fix locking issues in find_parent_nodes() (FATE#306586). - patches.suse/btrfs-8057-fix-casting-error-in-scrub-reada-code.patch: Btrfs: fix casting error in scrub reada code (FATE#306586). - patches.suse/btrfs-handle-EIO: Refresh.- patches.arch/s390-47-01-ctcmpc-idal.patch: ctcmpc: use correct idal word list for ctcmpc (bnc#750173,LTC#79264).- patches.drivers/alsa-sp2-hda-020-Export-snd_pcm_lib_default_mmap-helper: ALSA: pcm - Export snd_pcm_lib_default_mmap() helper (bnc#748384,bnc#738597). - patches.drivers/alsa-sp2-hda-021-Add-snoop-option: ALSA: hda - Add snoop option (bnc#748384,bnc#738597). - patches.drivers/alsa-sp2-hda-022-Add-support-for-new-AMD-products: ALSA: HDA: Add support for new AMD products (bnc#748384,bnc#738597).- patches.drivers/0001-USB-Fix-handoff-when-BIOS-disables-host-PCI-device.patch: USB: Fix handoff when BIOS disables host PCI device (bnc#747878).- patches.drivers/drm-i915-Clear-TV-sense-state-bits-on-GM45: drm/i915: Clear the TV sense state bits on cantiga to make TV detection reliable (bnc#750041).- patches.drivers/pci-introduce-option-to-disable-ARI.patch: PCI / PCIe: Introduce command line option to disable ARI (bnc#742845). - patches.xen/pci-reserve: Refresh.- patches.suse/SoN-0004a-mm-allow-PF_MEMALLOC-from-softirq-context.patch: mm: allow PF_MEMALLOC from softirq context. - patches.suse/SoN-0013d-mm-kswapd-awake-while-throttling.patch: patches.suse/SoN-0013e-mm-ensure-GFP_NOFS-does-not-block-forever.patch: - Refresh patches.suse/SoN-0014-mm-Account-for-the-number-of-times-direct-reclaimers.patch Ensure processes do not remain throttled under memory pressure. (Swap over NFS (fate#304949, bnc#747944).- patches.fixes/md-raid10-error-handling-fix: Correctly handle read failure from last working device in RAID10 (bnc#746717).- patches.drivers/alsa-sp2-hda-019-Fix-audio-playback-support-on-HP-Zephyr: ALSA: hda - Fix audio playback support on HP Zephyr system (bnc#749787).- patches.arch/x86-lower-uv-rtc-clocksource-rating.patch: x86/UV: Lower UV rtc clocksource rating (bnc#748456).- Update Xen patches to 3.0.22. - patches.xen/1148-xenbus-dev-write-watch-checks.patch: xenbus_dev: add missing error checks to watch handling. - patches.xen/1149-strlcpy.patch: drivers/xen/: use strlcpy() instead of strncpy(). - patches.xen/1153-xenoprof-escape-compat.patch: xenoprof: backward compatibility for changed XENOPROF_ESCAPE_CODE. - patches.xen/1154-blkfront-fail-packet-requests.patch: blkfront: properly fail packet requests (bnc#745929). - Refresh other Xen patches (bnc#732070, bnc#742871).- patches.drivers/0001-USB-Don-t-fail-USB3-probe-on-missing-legacy-PCI-IRQ.patch: USB: Don't fail USB3 probe on missing legacy PCI IRQ (bnc#749543).- patches.fixes/mm-sparsemem-bootmem-catch-greater-than-section-size-allocations.patch: Allow sparsemem usemap allocations for very large NUMA nodes (bnc#749049).- patches.drivers/0001-USB-Adding-define-in-hub_configure-and-hcd.c-file.patch: USB: Adding #define in hub_configure() and hcd.c file (bnc#714604). - patches.drivers/0001-USB-remove-BKL-comments.patch: USB: remove BKL comments (bnc#714604). - patches.drivers/0001-xHCI-Adding-define-values-used-for-hub-descriptor.patch: xHCI: Adding #define values used for hub descriptor (bnc#714604). - patches.drivers/0001-xHCI-Kick-khubd-when-USB3-resume-really-completes.patch: xHCI: Kick khubd when USB3 resume really completes (bnc#714604). - patches.drivers/0001-xhci-Fix-oops-caused-by-more-USB2-ports-than-USB3-po.patch: xhci: Fix oops caused by more USB2 ports than USB3 ports (bnc#714604). - patches.drivers/0002-USB-xhci-Enable-remote-wakeup-for-USB3-devices.patch: USB/xhci: Enable remote wakeup for USB3 devices (bnc#714604). - patches.drivers/0003-USB-Suspend-functions-before-putting-dev-into-U3.patch: USB: Suspend functions before putting dev into U3 (bnc#714604). - patches.drivers/0004-USB-xHCI-Enable-USB-3.0-hub-remote-wakeup.patch: USB/xHCI: Enable USB 3.0 hub remote wakeup (bnc#714604). - patches.drivers/0005-USB-Refactor-hub-remote-wake-handling.patch: USB: Refactor hub remote wake handling (bnc#714604). - patches.drivers/0006-USB-xHCI-Support-device-initiated-USB-3.0-resume.patch: USB/xHCI: Support device-initiated USB 3.0 resume (bnc#714604). - patches.drivers/0007-USB-Set-wakeup-bits-for-all-children-hubs.patch: USB: Set wakeup bits for all children hubs (bnc#714604). - patches.drivers/0008-USB-Turn-on-auto-suspend-for-USB-3.0-hubs.patch: USB: Turn on auto-suspend for USB 3.0 hubs (bnc#714604).- patches.drivers/cxgb4_collect_flush_cq_on_close.patch: RDMA/cxgb4: Make sure flush CQ entries are collected on connection close (bnc#721587). - patches.drivers/cxgb4_serialize_comp_handler_calls.patch: RDMA/cxgb4: Serialize calls to CQ's comp_handler (bnc#721587).btrfs sync with upstream up to 3.3-rc5 - patches.suse/btrfs-0373-Sector-Size-check-during-Mount.patch: btrfs: Sector Size check during Mount (FATE#306586). - patches.suse/btrfs-0374-avoid-positive-number-with-ERR_PTR.patch: Btrfs: avoid positive number with ERR_PTR (FATE#306586). - patches.suse/btrfs-0375-return-the-internal-error-unchanged-if-btrfs_g.patch: Btrfs: return the internal error unchanged if btrfs_get_extent_fiemap() call failed for SEEK_DATA/SEEK_HOLE inquiry (FATE#306586). - patches.suse/btrfs-0376-fix-trim-0-bytes-after-a-device-delete.patch: Btrfs: fix trim 0 bytes after a device delete (FATE#306586). - patches.suse/btrfs-0377-don-t-check-DUP-chunks-twice.patch: btrfs: don't check DUP chunks twice (FATE#306586). - patches.suse/btrfs-0378-fix-memory-leak-in-load_free_space_cache.patch: Btrfs: fix memory leak in load_free_space_cache() (FATE#306586). - patches.suse/btrfs-0379-delalloc-for-page-dirtied-out-of-band-in-fixup.patch: btrfs: delalloc for page dirtied out-of-band in fixup worker (FATE#306586). - patches.suse/btrfs-0380-fix-structs-where-bitfields-and-spinlock-atomi.patch: btrfs: fix structs where bitfields and spinlock/atomic share 8B word (FATE#306586). - patches.suse/btrfs-0381-silence-warning-in-raid-array-setup.patch: btrfs: silence warning in raid array setup (FATE#306586). - patches.suse/btrfs-0382-honor-umask-when-creating-subvol-root.patch: btrfs: honor umask when creating subvol root (FATE#306586). - patches.suse/btrfs-0383-fix-return-value-check-of-extent_io_ops.patch: Btrfs: fix return value check of extent_io_ops (FATE#306586). - patches.suse/btrfs-0384-fix-deadlock-on-page-lock-when-doing-auto-defr.patch: Btrfs: fix deadlock on page lock when doing auto-defragment (FATE#306586). - patches.suse/btrfs-0385-check-return-value-of-lookup_extent_mapping-co.patch: Btrfs: check return value of lookup_extent_mapping() correctly (FATE#306586). - patches.suse/btrfs-0386-skip-states-when-they-does-not-contain-bits-to.patch: Btrfs: skip states when they does not contain bits to clear (FATE#306586). - patches.suse/btrfs-0387-kick-out-redundant-stuff-in-convert_extent_bit.patch: Btrfs: kick out redundant stuff in convert_extent_bit (FATE#306586). - patches.suse/btrfs-0388-fix-a-bug-on-overcommit-stuff.patch: Btrfs: fix a bug on overcommit stuff (FATE#306586). - patches.suse/btrfs-0389-be-less-strict-on-finding-next-node-in-clear_e.patch: Btrfs: be less strict on finding next node in clear_extent_bit (FATE#306586). - patches.suse/btrfs-0390-improve-error-handling-for-btrfs_insert_dir_it.patch: Btrfs: improve error handling for btrfs_insert_dir_item callers (FATE#306586). - patches.suse/btrfs-0391-make-sure-we-update-latest_bdev.patch: Btrfs: make sure we update latest_bdev (FATE#306586). - patches.suse/btrfs-0392-add-extra-sanity-checks-on-the-path-names-in-b.patch: Btrfs: add extra sanity checks on the path names in btrfs_mksubvol (FATE#306586). - patches.suse/btrfs-0393-clear-the-extent-uptodate-bits-during-parent-t.patch: Btrfs: clear the extent uptodate bits during parent transid failures (FATE#306586). - patches.suse/btrfs-0394-increase-the-global-block-reserve-estimates.patch: Btrfs: increase the global block reserve estimates (FATE#306586). - patches.suse/btrfs-0395-fix-compiler-warnings-on-32-bit-systems.patch: Btrfs: fix compiler warnings on 32 bit systems (FATE#306586). - patches.suse/btrfs-handle-EIO: Refresh. - patches.suse/btrfs-volumes-btrfs_close_extra_devices-should-return-void: Refresh. - patches.suse/btrfs-8013-sector-size-check-during-mount.patch: Delete. - patches.suse/btrfs-8044-avoid-positive-number-with-ERR_PTR.patch: Delete. - patches.suse/btrfs-8045-return-the-internal-error-unchanged-if-btrfs_g.patch: Delete. - patches.suse/btrfs-8046-fix-trim-0-bytes-after-a-device-delete.patch: Delete. - patches.suse/btrfs-8047-don-t-check-DUP-chunks-twice.patch: Delete. - patches.suse/btrfs-8048-fix-memory-leak-in-load_free_space_cache.patch: Delete. - patches.suse/btrfs-8049-fix-new-subvol-perms.patch: Delete. - patches.suse/btrfs-8051-fix-return-value-check-of-extent_io_ops.patch: Delete. - patches.suse/btrfs-8052-fix-deadlock-on-page-lock-when-doing-auto-defr.patch: Delete. - patches.suse/btrfs-8053-check-return-value-of-lookup_extent_mapping-co.patch: Delete. - patches.suse/btrfs-8054-skip-states-when-they-does-not-contain-bits-to.patch: Delete. - patches.suse/btrfs-8055-kick-out-redundant-stuff-in-convert_extent_bit.patch: Delete. - patches.suse/btrfs-8056-fix-a-bug-on-overcommit-stuff.patch: Delete. - patches.suse/btrfs-8057-be-less-strict-on-finding-next-node-in-clear_e.patch: Delete. - patches.suse/btrfs-delalloc-for-page-dirtied-out-of-band-in-fixup-worker: Delete. - patches.suse/btrfs-fix-structs-spinlock-bitfield.patch: Delete. - patches.suse/btrfs-silence-warning-in-raid-array-setup.patch: Delete.- patches.drivers/0001-USB-Set-hub-depth-after-USB3-hub-reset.patch: USB: Set hub depth after USB3 hub reset (bnc#749115).- Removed redundant patches for a fix over an obsoleted fix (bnc#744315): no code change at all by this commit - patches.drivers/drm-i915-fix-intel-sdvo-lvds-connected-status.diff: Delete. - patches.drivers/drm-i915-sdvo-Fix-up-EDID-matching-logic.patch: Delete. - patches.drivers/drm-i915-sdvo-Include-LVDS-panels-for-the-IS_DIGITAL: Refresh.- patches.drivers/drm-i915-dont-write-DSPSURF-for-old-chips: drm/i915: Don't write DSPSURF for old chips (bnc#747071).- patches.arch/s390-46-01-qeth-recovery-async-delivery.patch: Fix recovery in case of concurrent asynchronous deliveries (bnc#748629,LTC#78309). - patches.arch/s390-46-02-3215-wakeup.patch: kernel: 3215 console deadlock (bnc#748629,LTC#78612). - patches.arch/s390-46-03-qeth_sync_modload.patch: qeth: synchronize discipline module loading (bnc#748629,LTC#78788). - patches.arch/s390-46-04-memplug_zone_interleave.patch: memory hotplug: prevent memory zone interleave (bnc#748629,LTC#79113). - patches.arch/s390-46-05-dasd-fix_fixpoint_devide_exception.patch: dasd: fix fixpoint divide exception in define_extent (bnc#748629,LTC#79125).- patches.fixes/make-taskstats-require-root-access: Make TASKSTATS require root access (CVE-2011-2494 bnc#703156).- patches.suse/btrfs-handle-EIO: Clean up unused code, fix use of error-indicated pointer in transaction teardown (bnc#748854).- patches.drivers/qlge-Removing-needless-print-s-which-are-not.patch: qlge: Removing needless print's which are not (bnc#718863).- patches.suse/drm-edid-workaround-shift.patch: Delete. This only addressed a small subset of EDID issues we have been seeing. Besides that the fix was broken.- patches.suse/drm-radeon-limit-bpp-for-low-vram.patch: Refresh. Fixing commit 7b4df11b1 - had forgotten to run commit --amend before pushing. oops.- patches.drivers/drm-intel-do-not-delete-dpll-multiplier-during-dac-init.patch: Don't delete DPLL Multiplier during DAC init (bnc #728840).- patches.suse/drm-radeon-limit-bpp-for-low-vram.patch: Set depth on low mem Radeon cards to 16 instead of 8 (bnc #746883).- patches.arch/x86-pci-Increase-the-number-of-iommus-supported-to-be-MAX_IO_APICS.patch: Refresh.- Linux 3.0.22. - patches.suse/SoN-0002-mm-sl-au-b-Add-knowledge-of-PFMEMALLOC-reserve-pages.patch: Refresh.- Linux 3.0.21. - patches.drivers/drm-i915-simplify-pipe-checking: Refresh. - patches.drivers/target-0034-target-Follow-up-core-updates-from-AGrover-and-HCH.patch: Refresh. - patches.fixes/proc-enable-writing-to-proc-pid-mem-revert.patch: Refresh. - patches.drivers/alsa-sp2-hda-017-Fix-duplicated-output-to-more-than-one-codec: Delete. - patches.drivers/drm-i915-DisplayPort-hot-remove-notification-to-audio-driver: Delete. - patches.drivers/drm-i915-HDMI-hot-remove-notification-to-audio-driver: Delete. - patches.drivers/drm-i915-check-ACTHD-of-all-rings: Delete. - patches.drivers/drm-i915-handle-3rd-pipe: Delete. - patches.fixes/mm-compaction-check-for-overlapping-nodes.patch: Delete. - patches.fixes/mm-compaction-check-pfn_valid-entering-MAX_ORDER_NR_PAGES-block.patch: Delete. - patches.fixes/readahead-fix-pipeline-break-caused-by-block-plug.patch: Delete. - patches.kabi/revert-net-fix-NULL-dereferences-in-check_peer_redir.patch: Revert "net: fix NULL dereferences in check_peer_redir()".- Linux 3.0.20. (This release changes no code.) - patches.kernel.org/revert-PCI-Rework-ASPM-disable-code.patch: Revert "PCI: Rework ASPM disable code".- Linux 3.0.19. - patches.drivers/USB3-0144-xHCI-set-link-state.patch: Refresh. - patches.suse/SoN-0006-net-Introduce-sk_allocation-to-allow-addition-of-GFP.patch: Refresh. - patches.suse/remove-syslog-WARN_ON.patch: Refresh. - patches.arch/x86-UV-uv_gpa_to_soc_phys_ram-shift.patch: Delete. - patches.drivers/0001-xhci-Fix-USB-3.0-device-restart-on-resume.patch: Delete. - patches.drivers/alsa-sp2-hda-016-Fix-silent-outputs-from-docking-station: Delete. - patches.drivers/drm-i915-sdvo-always-set-positive-sync-polarity: Delete. - patches.fixes/bonding-fix-enslaving-in-alb-mode-when-link-down.patch: Delete. - patches.fixes/serial-jsm-save-state: Delete. - patches.fixes/tty-fix-UV-serial-console-regression.patch: Delete. - patches.fixes/xfs-Fix-missing-xfs_iunlock-on-error-recovery-path-i.patch: Delete.- Linux 3.0.18. - patches.fixes/proc-enable-writing-to-proc-pid-mem-revert.patch: Refresh. - patches.xen/xen3-fixup-xen: Refresh. - patches.xen/xen3-patch-2.6.24: Refresh. - patches.xen/xen3-patch-2.6.28: Refresh. - patches.xen/xen3-patch-2.6.39: - patches.arch/acpi_srat-pxm-rev-ia64.patch: Delete. - patches.arch/acpi_srat-pxm-rev-store.patch: Delete. - patches.arch/acpi_srat-pxm-rev-x86-64.patch: Delete. - patches.arch/x86-UV2-Fix-BAU-destination-timeout-initialization.patch: Delete. - patches.arch/x86-UV2-harp-boot-message.patch: Delete. - patches.drivers/pci_acpi_crs_fix_32bit_addresses_exceeding_4g.patch: Delete. - patches.fixes/block-add-and-use-scsi_blk_cmd_ioctl.patch: Delete. - patches.fixes/block-fail-SCSI-passthrough-ioctls-on-partition-devi.patch: Delete. - patches.fixes/dm-do-not-forward-ioctls-from-logical-volumes-to-the.patch: Delete. - patches.fixes/fix-shrink_dcache_parent-livelock.patch: Delete. - patches.fixes/mm-Fix-NULL-ptr-dereference-in-__count_immobile_page.patch: Delete.- Linux 3.0.17. - patches.drivers/USB3-0034-USB-use-usb_endpoint_maxp-instead-of-le16_to_cpu.patch: Refresh. - patches.fixes/reiserfs-xattr-crash-fix: Refresh. - patches.drivers/USB3-0334-USB-option-add-id-for-3G-dongle-Model-VT1000-of-Viettel.patch: Delete. - patches.drivers/USB3-0345-OHCI-final-fix-for-NVIDIA-problems-I-hope.patch: Delete. - patches.drivers/USB3-0377-asix-new-device-id.patch: Delete. - patches.drivers/mpt2sas-added-missing-mpt2sas_base_detach-call-from-scsih_remove-context: Delete. - patches.drivers/usb-fix-number-of-mapped-sg-dma-entries.patch: Delete. - patches.fixes/CPU-hotplug-Freezer-Fix-race-between-CPU-hotplug-and-freezer.patch: Delete. - patches.fixes/ext3-Don-t-warn-from-writepage-when-readonly-inode-i.patch: Delete. - patches.fixes/igmp-Avoid-zero-delay: Delete. - patches.fixes/reiserfs-Fix-quota-mount-option-parsing.patch: Delete. - patches.fixes/xfs-fix-acl-count-validation-in-xfs_acl_from_disk: Delete.- Linux 3.0.16. - patches.kabi/reintroduce-removed-blk_init_allocated_queue_node.patch: Reintroduce removed blk_init_allocated_queue_node. - patches.arch/s390-41-03-zfcp-return-early-from-slave_destroy-if-slave_alloc-returned-early.patch: Delete. - patches.drivers/drm-i915-prevent-division-by-zero-when-asking-for-ch: Delete. - patches.fixes/hpwdt_fix_BIOS_calls_under_NX.patch: Delete. - patches.fixes/ipv4-reintroduce-route-cache-garbage-collector.patch: Delete. - patches.fixes/oom-fix-oom_badness-overflow.patch: Delete. - patches.fixes/per_cpu_ptr_to_phys-non-page-aligned.patch: Delete.- Linux 3.0.15.- Linux 3.0.14. - patches.arch/x86-pci-Increase-the-number-of-iommus-supported-to-be-MAX_IO_APICS.patch: Refresh. - patches.fixes/md-raid5-degraded-reshape-fix: Refresh. - patches.fixes/hfs-fix-hfs_find_init-sb-ext_tree-null-ptr-oops.patch: Delete. - patches.fixes/ibft-fix-finding-ibft-acpi-table-on-uefi.patch: Delete. - patches.fixes/jbd-validate-sb-s_first-in-journal_get_superblo.patch: Delete. - patches.fixes/log2.h-Fix-rounddown_pow_of_two-1.patch: Delete. - patches.fixes/percpu_fix_chunk_range_calculation.patch: Delete. - patches.kernel.org/alarmtimers-fix-time-comparison.patch: Delete. - patches.kernel.org/alsa-hda-realtek-fix-oops-in-alc_mux_select.patch: Delete. - patches.kernel.org/alsa-sis7019-give-slow-codecs-more-time-to-reset.patch: Delete. - patches.kernel.org/arm-at91-fix-clock-conid-for-atmel_tcb.1-on-9260-9g20.patch: Delete. - patches.kernel.org/arm-davinci-da850-evm-change-audio-edma-event-queue-to-eventq_0.patch: Delete. - patches.kernel.org/arm-davinci-dm646x-evm-wrong-register-used-in-setup_vpif_input_channel_mode.patch: Delete. - patches.kernel.org/arm-mx23-recognise-stmp378x-as-mx23.patch: Delete. - patches.kernel.org/asoc-provide-a-more-complete-dma-driver-stub.patch: Delete. - patches.kernel.org/fix-apparmor-dereferencing-potentially-freed-dentry-sanitize-__d_path-api.patch: Delete. - patches.kernel.org/fs-proc-meminfo.c-fix-compilation-error.patch: Delete. - patches.kernel.org/mm-ensure-that-pfn_valid-is-called-once-per-pageblock-when-reserving-pageblocks.patch: Delete. - patches.kernel.org/mm-vmalloc-check-for-page-allocation-failure-before-vmlist-insertion.patch: Delete. - patches.kernel.org/ptp-fix-clock_getres-implementation.patch: Delete. - patches.kernel.org/thp-add-compound-tail-page-_mapcount-when-mapped.patch: Delete. - patches.kernel.org/thp-set-compound-tail-page-_count-to-zero.patch: Delete.- patches.fixes/jbd2-clear-BH_Delay-BH_Unwritten-in-journal_unmap_buffer.patch: jbd2: clear BH_Delay & BH_Unwritten in journal_unmap_buffer (bnc#745832 CVE-2011-4086).- patches.fixes/ibft-fix-finding-ibft-acpi-table-on-uefi.patch: ibft: Fix finding IBFT ACPI table on UEFI (bnc#746579).- patches.fixes/scsi-scan-dont-fail-scans-when-host-is-in-recovery.patch: scsi scan: don't fail scans when host is in recovery (bnc#747867).btrfs update, fixes - patches.suse/btrfs-8051-fix-return-value-check-of-extent_io_ops.patch: Btrfs: fix return value check of extent_io_ops (FATE#306586). - patches.suse/btrfs-8052-fix-deadlock-on-page-lock-when-doing-auto-defr.patch: Btrfs: fix deadlock on page lock when doing auto-defragment (FATE#306586). - patches.suse/btrfs-8053-check-return-value-of-lookup_extent_mapping-co.patch: Btrfs: check return value of lookup_extent_mapping() correctly (FATE#306586). - patches.suse/btrfs-8054-skip-states-when-they-does-not-contain-bits-to.patch: Btrfs: skip states when they does not contain bits to clear (FATE#306586). - patches.suse/btrfs-8055-kick-out-redundant-stuff-in-convert_extent_bit.patch: Btrfs: kick out redundant stuff in convert_extent_bit (FATE#306586). - patches.suse/btrfs-8056-fix-a-bug-on-overcommit-stuff.patch: Btrfs: fix a bug on overcommit stuff (FATE#306586). - patches.suse/btrfs-8057-be-less-strict-on-finding-next-node-in-clear_e.patch: Btrfs: be less strict on finding next node in clear_extent_bit (FATE#306586). - patches.suse/btrfs-clear_extent_bit-api-change: Refresh. - patches.suse/btrfs-drop-gfp_t-from-lock_extent: Refresh. - patches.suse/btrfs-handle-EIO: Refresh.- patches.arch/x86_thermal_throttle_avoid_fake_mces.patch: x86, mce, therm_throt: Don't report power limit and package level thermal throttle events in mcelog (bnc#745876).bluetooth: - patches.drivers/bug-732296_ath3k-Add-Atheros-AR3012-Maryann-PID-VID-supported.patch: Bluetooth: Add Atheros AR3012 Maryann PID/VID supported in ath3k (bnc#732296).- patches.suse/0003-md-raid1-add-failfast-handling-for-writes.patch: Refresh to not crash when handling write error on FailFast devices. bnc#747159btrfs: enable block allocator fixes again - patches.suse/btrfs-btrfs_reserve_extent-check-sinfo: Refresh. - patches.suse/btrfs-handle-EIO: Refresh.btrfs updates, misc fixes - patches.suse/btrfs-0372-don-t-reserve-data-with-extents-locked-in-btrf.patch: Btrfs: don't reserve data with extents locked in btrfs_fallocate (FATE#306586). - patches.suse/btrfs-8044-avoid-positive-number-with-ERR_PTR.patch: Btrfs: avoid positive number with ERR_PTR (FATE#306586). - patches.suse/btrfs-8045-return-the-internal-error-unchanged-if-btrfs_g.patch: Btrfs: return the internal error unchanged if btrfs_get_extent_fiemap() call failed for SEEK_DATA/SEEK_HOLE inquiry (FATE#306586). - patches.suse/btrfs-8046-fix-trim-0-bytes-after-a-device-delete.patch: Btrfs: fix trim 0 bytes after a device delete (FATE#306586). - patches.suse/btrfs-8047-don-t-check-DUP-chunks-twice.patch: btrfs: don't check DUP chunks twice (FATE#306586). - patches.suse/btrfs-8048-fix-memory-leak-in-load_free_space_cache.patch: Btrfs: fix memory leak in load_free_space_cache() (FATE#306586). - patches.suse/btrfs-8049-fix-new-subvol-perms.patch: btrfs: fix permissions of new subvolume (FATE#306586 bnc#746373). - patches.suse/btrfs-8050-set-ioprio-of-scrub-readahead-to-idle.patch: Btrfs: set ioprio of scrub readahead to idle (FATE#306586). - patches.suse/btrfs-fix-new-subvol-perms.patch: Delete.- Disable broken patches.suse/drm-edid-workaround-shift.patch (bnc#746526)- patches.suse/drm-radeon-remove-ES1000-support: Remove the support for ES1000 from drm/radeon (bnc#746526).delete stale btrfs patches - patches.suse/btrfs-0010-go-readonly-on-insert-error-in-btrfs_add_root_.patch: Delete. - patches.suse/btrfs-0014-Document-BUG-in-find_lock_delalloc_range.patch: Delete. - patches.suse/btrfs-0015-Go-readonly-on-missing-ref-in-btrfs_get_parent.patch: Delete. - patches.suse/btrfs-0900-add-allocator-tracepoints.patch: Delete. - patches.suse/btrfs-0901-protect-orphan-block-rsv-with-spin_lock.patch: Delete. - patches.suse/btrfs-8027-fix-dirtied-pages-accounting-on-sub-page-write.patch: Delete. - patches.suse/btrfs-8053-rewrite-btrfs_trim_block_group.patch: Delete. - patches.suse/btrfs-8054-update-global-block_rsv-when-creating-a-new-bl.patch: Delete. - patches.suse/btrfs-8055-fix-possible-deadlock-when-opening-a-seed-devi.patch: Delete. - patches.suse/btrfs-_btrfs_mod_ref-s-process_func-should-return-void: Delete. - patches.suse/btrfs-_btrfs_mod_ref-should-return-void: Delete. - patches.suse/btrfs-add_excluded_extent-should-return-void: Delete. - patches.suse/btrfs-async_thread-btrfs_queue_worker-should-return-void: Delete. - patches.suse/btrfs-btrfs_free_extent-void-return-prep: Delete. - patches.suse/btrfs-btrfs_inc_extent_ref-void-return-prep: Delete. - patches.suse/btrfs-btrfs_pin_extent-error-push-up: Delete. - patches.suse/btrfs-btrfs_start_transaction-non-looped-error-push-up: Delete. - patches.suse/btrfs-clean_tree_block-should-return-void: Delete. - patches.suse/btrfs-clear_extent_bit-can-drop_gfp_t: Delete. - patches.suse/btrfs-clear_extent_bit-error-push-up: Delete. - patches.suse/btrfs-clear_extent_bit-should-return-void-with-_gfp_wait-set: Delete. - patches.suse/btrfs-clear_extent_bits-can-drop-gfp_t: Delete. - patches.suse/btrfs-clear_extent_dirty-can-drop-gfp_t: Delete. - patches.suse/btrfs-clear_extent_uptodate-can-drop_gfp_t: Delete. - patches.suse/btrfs-convert_extent_bit-should-return-void-with-_gfp_wait-set: Delete. - patches.suse/btrfs-delayed-ref-mempool-functions-should-return-void: Delete. - patches.suse/btrfs-drop-gfp_t-from-set_extent_bit: Delete. - patches.suse/btrfs-extent_io-set_range_writeback-should-return-void: Delete. - patches.suse/btrfs-file-btrfs_run_defrag_inodes-should-return-void: Delete. - patches.suse/btrfs-lock-extent-can-drop-gfp_t-argument: Delete. - patches.suse/btrfs-pin_down_extent-should-return-void: Delete. - patches.suse/btrfs-set_extent_bit-error-push-up: Delete. - patches.suse/btrfs-set_extent_bit-should-return-void: Delete. - patches.suse/btrfs-set_extent_bits-can-drop-gfp_t-argument: Delete. - patches.suse/btrfs-set_extent_buffer_uptodate-should-return-void: Delete. - patches.suse/btrfs-set_extent_delalloc-can-drop-gfp_t-argument: Delete. - patches.suse/btrfs-set_extent_dirty-can-drop-gfp_t-argument: Delete. - patches.suse/btrfs-set_extent_new-can-drop-gfp_t-argument: Delete. - patches.suse/btrfs-set_extent_uptodate-can-drop-gfp_t-argument: Delete. - patches.suse/btrfs-split-set_extent_bit-exclusive-mode-out: Delete. - patches.suse/btrfs-try_lock_extent-can-drop-gfp_t: Delete. - patches.suse/btrfs-unlock_extent-can-eliminate-gfp_t: Delete. - patches.suse/btrfs-unlock_extent-can-eliminate-gfp_t-addon: Delete. - patches.suse/btrfs-unlock_extent-can-return-void: Delete. - patches.suse/btrfs-unlock_extent_cached-can-return-void: Delete. - patches.suse/btrfs-use-mempools-for-delayed-refs: Delete. - patches.suse/btrfs-use-mempools-for-extent_state-structures: Delete.- patches.arch/x86-fix-unknown_nmi_error.patch: Refresh.- patches.fixes/jbd-validate-sb-s_first-in-journal_get_superblo.patch: jbd/jbd2: validate sb->s_first in journal_get_superblock() (bnc#730118).- patches.fixes/writeback-fix-sb-locking.diff: Delete unused patch.- patches.drivers/0006-benet-Add-missing-comma-between-constant-string-arr.patch patches.drivers/0018-benet-fix-build-error-on-32bit-arch.patch patches.drivers/0025-benet-remove-bogus-unlikely-on-vlan-check.patch: Enable missing patches in be2net series. - patches.drivers/benet-32bit-fix: Delete.- use guard instead of comment for my patches- Add patches.suse/kdb-x86-unlock-nmi-lock-after-kdb-ipi.patch to series.conf.- patches.suse/btrfs-fix-new-subvol-perms.patch: btrfs: fix permissions of new subvolume (FATE#306586 bnc#746373).- patches.fixes/readahead-fix-pipeline-break-caused-by-block-plug.patch: readahead: fix pipeline break caused by block plug (bnc#746454).- patches.drivers/0001-xhci-Fix-USB-3.0-device-restart-on-resume.patch: xhci: Fix USB 3.0 device restart on resume (bnc#745867). - patches.drivers/0001-xhci-Remove-scary-warnings-about-transfer-issues.patch: xhci: Remove scary warnings about transfer issues (bnc#745867). - patches.drivers/0001-xhci-Remove-warnings-about-MSI-and-MSI-X-capabilitie.patch: xhci: Remove warnings about MSI and MSI-X capabilities (bnc#745867).- patches.suse/tmpfs-fix-kmap_atomic-leak: tmpfs: Fix kmap_atomic leak in shmem_read_mapping_page*() (bnc#744392).- Add a few missing drm/i915 fixes from upstream 3.2 kernel (bnc#744392): patches.drivers/drm-i915-Fix-wrong-initializer-for-locked-variable, patches.drivers/drm-i915-fix-transcoder-PLL-select-masking, patches.drivers/drm-i915-remove-transcoder-PLL-mashing-from-mode_set- patches.fixes/mm-backing-dev-fix-wakeup-timer-races-with-bdi_unregister.patch: backing-dev: fix wakeup timer races with bdi_unregister() (bnc#741824).- patches.drivers/alsa-sp2-hda-018-Fix-mute-LED-VREF-value-for-new-HP-laptops: ALSA: hda - Fix mute-LED VREF value for new HP laptops (bnc#745741).- patches.fixes/mm-page-allocator-drain-local-per-cpu-lists.patch: Drain local per-cpu lists for any allocation failure (bnc744392)- patches.drivers/drm-i915-sdvo-Fix-up-EDID-matching-logic.patch: drm/i915/sdvo: Fix up EDID matching logic (bnc #744315).- patches.drivers/drm-i915-set-AUD_CONFIG_N_index-for-DP: Refresh. Updated the patch from the upstream (bnc#722560)- patches.suse/kdb-x86-unlock-nmi-lock-after-kdb-ipi.patch: x86: Unlock nmi lock after kdb_ipi call (bnc#745424).- patches.fixes/lockd-arg-parse.fix: lockd: fix arg parsing for grace_period and timeout (bnc#733761).- patches.fixes/nfs-bitmap-fix-fix: NFSv4: Fix an Oops in the NFSv4 getacl code (bnc#730117).- patches.arch/s390-45-04-kmsg-tag-jhash-v2.patch: kernel: incorrect kernel message tags (bnc#744795,LTC#78356).- patches.arch/s390-45-01-af_iucv-remove-iucv-path.patch: af_iucv: remove IUCV-pathes completely (bnc#744795,LTC#78292). - patches.arch/s390-45-02-af_iucv-net-device.patch: af_iucv: performance improvements for new HS transport (bnc#744795,LTC#78346). - patches.arch/s390-45-03-af_iucv-getsockopt-msgsize.patch: af_iucv: offer new getsockopt SO_MSGSIZE (bnc#744795,LTC#78348).- patches.suse/btrfs-handle-EIO: Fix typo.- patches.suse/btrfs-handle-EIO: Fix incorrect transaction abort in __btrfs_prealloc_file_range, add new error handling cases.- Update config files: disable CONFIG_PTP_1588_CLOCK (bnc#744206) - kabi/severities: work around the resulting kabi change- patches.fixes/0001-USB-xhci-fix-port-switching-on-PantherPoint.patch: USB:xhci: fix port switching on PantherPoint (bnc#744963).- patches.arch/x86-pci-Increase-the-number-of-iommus-supported-to-be-MAX_IO_APICS.patch: Work around ia64 build problem. - patches.suse/kdb-nmis-are-not-catastrophic: Fix build on non-UV enabled configs.- patches.suse/block-add-WARN_ON-in-blk_complete_requests.patch: block: Add WARN_ON in blk_complete_request() (bnc#738284).- rpm/kernel-binary.spec.in: Create build-id symlink for the vmlinux image.- patches.arch/x86-pci-Increase-the-number-of-iommus-supported-to-be-MAX_IO_APICS.patch: x86, pci: Increase the number of iommus supported to be MAX_IO_APICS (bnc#744400).- patches.arch/uv-optimize-uv-nmis: UV: Optimize UV NMIs (bnc#744655). - patches.arch/uv-use-nmi-backend: UV: Use NMI Backend (bnc#744655). - patches.arch/uv-use-show_regs-in-nmi-handling: UV: Use show_regs in NMI handling (bnc#744655). - patches.suse/kdb-fix-conflict-in-function-prototypes-between-kdb-h-and-lkdb-h: KDB: Fix conflict in function prototypes between kdb.h and lkdb.h (bnc#744655). - patches.suse/kdb-nmis-are-not-catastrophic: KDB: NMIs are not catastrophic (bnc#744655).- patches.fixes/sched-disable-FAIR_SLEEPERS-for-S390.patch: sched: disable FAIR_SLEEPERS for S390 (bnc#724577).- patches.arch/x86-UV-Enable-64-bit-ACPI-MFCG-support-for-SGI-UV2-platform.patch: x66, UV: Enable 64-bit ACPI MFCG support for SGI UV2 platform (bnc#744404).- patches.suse/ibm_x3850M2_blacklist_modesetting.patch: Blacklist IBM 3850 M2 / x3950 M2 to not use radeon modesetting by default (bnc#743579).- patches.fixes/ipv4-reintroduce-route-cache-garbage-collector.patch: fix build on some architectures (forgotten #include)- patches.fixes/ipv4-reintroduce-route-cache-garbage-collector.patch: ipv4: reintroduce route cache garbage collector (bnc#724014).- patches.suse/btrfs-delalloc-for-page-dirtied-out-of-band-in-fixup-worker: Refresh.- patches.arch/x86-reduce-clock-calibration-time-during-slave-cpu-startup.patch: x86: Reduce clock calibration time during slave cpu startup (bnc#727650).- patches.suse/btrfs-fix-structs-spinlock-bitfield.patch: btrfs: fix structs where bitfields and spinlock/atomic share 8B word (FATE#306586 bnc#734522).- patches.drivers/qla4xxx-do-not-print-warning-when-rom-lock-fails.patch: qla4xxx: Do not print warning when rom lock fails (bnc#744652).- btrfs: back out patches.suse/btrfs-0363-make-sure-a-bitmap-has-enough-bytes.patch patches.suse/btrfs-0366-use-cluster-window_start-when-allocating-from-.patch patches.suse/btrfs-0368-fix-enospc-error-caused-by-wrong-checks-of-the.patch patches.suse/btrfs-0370-advance-window_start-if-we-re-using-a-bitmap.patch - patches.suse/btrfs-btrfs_reserve_extent-check-sinfo: Refresh. - patches.suse/btrfs-handle-EIO: Refresh.- patches.arch/x86-UV2-Ack-BAU-interrupt-earlier.patch: x86/UV2: Ack BAU interrupt earlier (bnc#743212). - patches.arch/x86-UV2-Add-accounting-for-BAU-strong-nacks.patch: x86/UV2: Add accounting for BAU strong nacks (bnc#743212). - patches.arch/x86-UV2-Fix-BAU-destination-timeout-initialization.patch: x86/UV2: Fix BAU destination timeout initialization (bnc#743212). - patches.arch/x86-UV2-Remove-stale-no-resources-test-for-UV2-BAU.patch: x86/UV2: Remove stale no-resources test for UV2 BAU (bnc#743212). - patches.arch/x86-UV2-Work-around-BAU-bug.patch: x86/UV2: Work around BAU bug (bnc#743212). - patches.arch/x86-UV2-use-native-UV2-broadcast-mode.patch: x86, UV2: use native UV2 broadcast mode (bnc#743212). - patches.arch/x86-uv-fix-uninitialized-spinlocks-in-tlb_uv_c.patch: x86/uv: Fix uninitialized spinlocks (bnc#743212).- patches.arch/x86-UV-Allow-for-non-consecutive-sockets.patch: x86, UV: Allow for non-consecutive sockets (bnc#743212). - patches.arch/x86-UV-Correct-failed-topology-memory-leak.patch: x86, UV: Correct failed topology memory leak (bnc#743212). - patches.arch/x86-UV-Correct-reset_with_ipi.patch: x86, UV: Correct reset_with_ipi() (bnc#743212). - patches.arch/x86-UV-Fix-smp_processor_id-use-in-a-preemptable-region.patch: x86, UV: Fix smp_processor_id() use in a preemptable region (bnc#743212). - patches.arch/x86-UV-Remove-cpumask_t-from-the-stack.patch: x86, UV: Remove cpumask_t from the stack (bnc#743212). - patches.arch/x86-UV-Rename-hubmask-to-pnmask.patch: x86, UV: Rename hubmask to pnmask (bnc#743212).- patches.drivers/alsa-sp2-hda-017-Fix-duplicated-output-to-more-than-one-codec: ALSA: HDA: Fix duplicated output to more than one codec.- patches.drivers/qla4xxx-Fix-verify-boot-idx-correctly.patch: qla4xxx: Fix verify boot idx correctly (bnc#742570).- patches.fixes/mm-compaction-check-for-overlapping-nodes.patch: mm: compaction: Check for overlapping nodes during isolation (bnc737581)- Add missing two patches from 3.2 for fixing drm/i915 issues: patches.drivers/drm-bpp-and-depth-changes-require-full-mode-sets, patches.drivers/drm-try-to-restore-previous-CRTC-config-if-mode-set- patches.drivers/mpt2sas-Fix-for-Panic-when-inactive-volume-is-tried-deleting.patch: mpt2sas: Fix for Panic when inactive volume is tried deleting (bnc#736743).- Update config files: disable CONFIG_RTC_HCTOSYS (bnc#743735)- patches.drivers/qla4xxx-Fix-huge-delay-for-ISP4022.patch: qla4xxx: Fix huge delay for ISP4022 (bnc#744253).- patches.fixes/kvm-KVM-x86-Prevent-starting-PIT-timers-in-the-absence-o.patch: KVM: x86: Prevent starting PIT timers in the absence of irqchip support (bnc#738210 CVE-2011-4622). - patches.fixes/kvm-KVM-x86-extend-struct-x86_emulate_ops-with-get_cpuid.patch: KVM: x86: extend "struct x86_emulate_ops" with "get_cpuid" (bnc#740969 CVE-2012-0045). - patches.fixes/kvm-KVM-x86-fix-missing-checks-in-syscall-emulation.patch: KVM: x86: fix missing checks in syscall emulation (bnc#740969 CVE-2012-0045).- patches.suse/btrfs-handle-EIO: Refresh; quickfix to print abort warning only once (bnc#743978)- patches.drivers/qla4xxx-Fix-un-necessary-delay-on-invalid-DDB.patch: qla4xxx: Fix un-necessary delay on invalid DDB (bnc#744253).btrfs: sync with upstream, add a few fixes - patches.suse/btrfs-0300-run-chunk-allocations-while-we-do-delayed-refs.patch: Btrfs: run chunk allocations while we do delayed refs (FATE#306586). - patches.suse/btrfs-0301-lower-the-bar-for-chunk-allocation.patch: Btrfs: lower the bar for chunk allocation (FATE#306586). - patches.suse/btrfs-0302-use-bigger-metadata-chunks-on-bigger-filesyste.patch: Btrfs: use bigger metadata chunks on bigger filesystems (FATE#306586). - patches.suse/btrfs-0303-test-free-space-only-for-unclustered-allocatio.patch: Btrfs: test free space only for unclustered allocation (FATE#306586). - patches.suse/btrfs-0304-don-t-set-up-allocation-result-twice.patch: Btrfs: don't set up allocation result twice (FATE#306586). - patches.suse/btrfs-0305-revamp-clustered-allocation-logic.patch: Btrfs: revamp clustered allocation logic (FATE#306586). - patches.suse/btrfs-0328-add-pinned-extents-to-on-disk-free-space-cache.patch: Btrfs: add pinned extents to on-disk free space cache correctly (FATE#306586). - patches.suse/btrfs-0329-avoid-possible-NULL-deref-in-io_ctl_drop_pages.patch: Btrfs: avoid possible NULL deref in io_ctl_drop_pages() (FATE#306586). - patches.suse/btrfs-0330-check-the-return-value-of-io_ctl_init.patch: Btrfs: check the return value of io_ctl_init() (FATE#306586). - patches.suse/btrfs-0331-remove-BUG_ON-s-in-btrfs_ioctl_setflags.patch: Btrfs: remove BUG_ON()s in btrfs_ioctl_setflags() (FATE#306586). - patches.suse/btrfs-0332-reserve-metadata-space-in-btrfs_ioctl_setflags.patch: Btrfs: reserve metadata space in btrfs_ioctl_setflags() (FATE#306586). - patches.suse/btrfs-0333-don-t-pass-a-trans-handle-unnecessarily-in-vol.patch: Btrfs: don't pass a trans handle unnecessarily in volumes.c (FATE#306586). - patches.suse/btrfs-0334-don-t-pre-allocate-btrfs-bio.patch: Btrfs: don't pre-allocate btrfs bio (FATE#306586). - patches.suse/btrfs-0335-simplfy-calculation-of-stripe-length-for-disca.patch: Btrfs: simplfy calculation of stripe length for discard operation (FATE#306586). - patches.suse/btrfs-0336-rewrite-btrfs_trim_block_group.patch: Btrfs: rewrite btrfs_trim_block_group() (FATE#306586). - patches.suse/btrfs-0337-update-global-block_rsv-when-creating-a-new-bl.patch: Btrfs: update global block_rsv when creating a new block group (FATE#306586). - patches.suse/btrfs-0338-fix-possible-deadlock-when-opening-a-seed-devi.patch: Btrfs: fix possible deadlock when opening a seed device (FATE#306586). - patches.suse/btrfs-0339-generic-data-structure-to-build-unique-lists.patch: Btrfs: generic data structure to build unique lists (FATE#306586). - patches.suse/btrfs-0340-added-helper-btrfs_next_item.patch: Btrfs: added helper btrfs_next_item() (FATE#306586). - patches.suse/btrfs-0341-mark-delayed-refs-as-for-cow.patch: Btrfs: mark delayed refs as for cow (FATE#306586). - patches.suse/btrfs-0342-always-save-ref_root-in-delayed-refs.patch: Btrfs: always save ref_root in delayed refs (FATE#306586). - patches.suse/btrfs-0343-add-nested-locking-mode-for-paths.patch: Btrfs: add nested locking mode for paths (FATE#306586). - patches.suse/btrfs-0344-add-sequence-numbers-to-delayed-refs.patch: Btrfs: add sequence numbers to delayed refs (FATE#306586). - patches.suse/btrfs-0345-put-back-delayed-refs-that-are-too-new.patch: Btrfs: put back delayed refs that are too new (FATE#306586). - patches.suse/btrfs-0346-add-waitqueue-instead-of-doing-busy-waiting-fo.patch: Btrfs: add waitqueue instead of doing busy waiting for more delayed refs (FATE#306586). - patches.suse/btrfs-0347-added-btrfs_find_all_roots.patch: Btrfs: added btrfs_find_all_roots() (FATE#306586). - patches.suse/btrfs-0348-new-backref-walking-code.patch: Btrfs: new backref walking code (FATE#306586). - patches.suse/btrfs-0349-make-sure-we-re-not-using-obsolete-code-in-btr.patch: Btrfs: make sure we're not using obsolete code in btrfs_get_extent (FATE#306586). - patches.suse/btrfs-0350-do-not-use-btrfs_end_transaction_throttle-ever.patch: Btrfs: do not use btrfs_end_transaction_throttle everywhere (FATE#306586). - patches.suse/btrfs-0351-fix-btrfsck-error-400-when-truncating-a-compre.patch: Btrfs: fix btrfsck error 400 when truncating a compressed (FATE#306586). - patches.suse/btrfs-0352-release-space-on-error-in-page_mkwrite.patch: Btrfs: release space on error in page_mkwrite (FATE#306586). - patches.suse/btrfs-0353-don-t-call-btrfs_throttle-in-file-write.patch: Btrfs: don't call btrfs_throttle in file write (FATE#306586). - patches.suse/btrfs-0354-add-allocator-tracepoints.patch: Btrfs: add allocator tracepoints (FATE#306586). - patches.suse/btrfs-0355-protect-orphan-block-rsv-with-spin_lock.patch: Btrfs: protect orphan block rsv with spin_lock (FATE#306586). - patches.suse/btrfs-0356-space-leak-tracepoints.patch: Btrfs: space leak tracepoints (FATE#306586). - patches.suse/btrfs-0357-add-a-delalloc-mutex-to-inodes-for-delalloc-re.patch: Btrfs: add a delalloc mutex to inodes for delalloc reservations (FATE#306586). - patches.suse/btrfs-0358-use-larger-system-chunks.patch: Btrfs: use larger system chunks (FATE#306586). - patches.suse/btrfs-0359-preparation-to-fixing-mount-umount-race.patch: btrfs: preparation to fixing mount/umount race (FATE#306586). - patches.suse/btrfs-0360-get-kill_sb-of-its-own.patch: btrfs: get ->kill_sb() of its own (FATE#306586). - patches.suse/btrfs-0361-fix-mount-umount-race.patch: btrfs: fix mount/umount race (FATE#306586). - patches.suse/btrfs-0362-fix-a-deadlock-in-btrfs_scan_one_device.patch: btrfs: fix a deadlock in btrfs_scan_one_device() (FATE#306586). - patches.suse/btrfs-0363-make-sure-a-bitmap-has-enough-bytes.patch: Btrfs: make sure a bitmap has enough bytes (FATE#306586). - patches.suse/btrfs-0364-Fix-busyloops-in-transaction-waiting-code.patch: btrfs: Fix busyloops in transaction waiting code (FATE#306586). - patches.suse/btrfs-0365-Check-for-NULL-page-in-extent_range_uptodate.patch: Btrfs: Check for NULL page in extent_range_uptodate (FATE#306586). - patches.suse/btrfs-0366-use-cluster-window_start-when-allocating-from-.patch: Btrfs: use cluster->window_start when allocating from a cluster bitmap (FATE#306586). - patches.suse/btrfs-0367-do-not-defrag-a-file-partially.patch: Btrfs: do not defrag a file partially (FATE#306586). - patches.suse/btrfs-0368-fix-enospc-error-caused-by-wrong-checks-of-the.patch: Btrfs: fix enospc error caused by wrong checks of the chunk (FATE#306586). - patches.suse/btrfs-0369-mask-out-gfp-flags-in-releasepage.patch: btrfs: mask out gfp flags in releasepage (FATE#306586). - patches.suse/btrfs-0370-advance-window_start-if-we-re-using-a-bitmap.patch: Btrfs: advance window_start if we're using a bitmap (FATE#306586). - patches.suse/btrfs-0371-fix-reservations-in-btrfs_page_mkwrite.patch: Btrfs: fix reservations in btrfs_page_mkwrite (FATE#306586). - patches.suse/btrfs-1005-add-basic-infrastructure-for-selective-balanci.patch: Refresh. - patches.suse/btrfs-1015-recover-balance-on-mount.patch: Refresh. - patches.suse/btrfs-1017-allow-for-pausing-restriper.patch: Refresh. - patches.suse/btrfs-8043-improve-truncation-of-btrfs.patch: Refresh. - patches.suse/btrfs-add-btrfs_panic: Refresh. - patches.suse/btrfs-btrfs_reserve_extent-check-sinfo: Refresh. - patches.suse/btrfs-handle-EIO: Refresh. - patches.suse/btrfs-tree-log-wait_for_writer-should-return-void: Refresh. - patches.suse/btrfs-0902-do-not-use-btrfs_end_transaction_throttle-ever.patch: Delete. - patches.suse/btrfs-0903-don-t-call-btrfs_throttle-in-file-write.patch: Delete. - patches.suse/btrfs-8001-rewrite-btrfs_trim_block_group.patch: Delete. - patches.suse/btrfs-8025-update-global-block_rsv-when-creating-a-new-bl.patch: Delete. - patches.suse/btrfs-8026-fix-possible-deadlock-when-opening-a-seed-devi.patch: Delete. - patches.suse/btrfs-8030-generic-data-structure-to-build-unique-lists.patch: Delete. - patches.suse/btrfs-8031-added-helper-btrfs_next_item.patch: Delete. - patches.suse/btrfs-8032-mark-delayed-refs-as-for-cow.patch: Delete. - patches.suse/btrfs-8033-always-save-ref_root-in-delayed-refs.patch: Delete. - patches.suse/btrfs-8034-add-nested-locking-mode-for-paths.patch: Delete. - patches.suse/btrfs-8035-add-sequence-numbers-to-delayed-refs.patch: Delete. - patches.suse/btrfs-8036-put-back-delayed-refs-that-are-too-new.patch: Delete. - patches.suse/btrfs-8037-add-waitqueue-instead-of-doing-busy-waiting-fo.patch: Delete. - patches.suse/btrfs-8038-added-btrfs_find_all_roots.patch: Delete. - patches.suse/btrfs-8039-new-backref-walking-code.patch: Delete. - patches.suse/btrfs-8040-make-sure-we-re-not-using-obsolete-code-in-btr.patch: Delete. - patches.suse/btrfs-8041-fix-btrfsck-error-400-when-truncating-a-compre.patch: Delete. - patches.suse/btrfs-8044-release-space-on-error-in-page_mkwrite.patch: Delete. - patches.suse/btrfs-8045-add-pinned-extents-to-on-disk-free-space-cache.patch: Delete. - patches.suse/btrfs-8046-avoid-possible-NULL-deref-in-io_ctl_drop_pages.patch: Delete. - patches.suse/btrfs-8047-check-the-return-value-of-io_ctl_init.patch: Delete. - patches.suse/btrfs-8048-remove-BUG_ON-s-in-btrfs_ioctl_setflags.patch: Delete. - patches.suse/btrfs-8049-reserve-metadata-space-in-btrfs_ioctl_setflags.patch: Delete. - patches.suse/btrfs-8050-don-t-pass-a-trans-handle-unnecessarily-in-vol.patch: Delete. - patches.suse/btrfs-8051-don-t-pre-allocate-btrfs-bio.patch: Delete. - patches.suse/btrfs-8052-simplfy-calculation-of-stripe-length-for-disca.patch: Delete. - patches.suse/btrfs-8056-run-chunk-allocations-while-we-do-delayed-refs.patch: Delete. - patches.suse/btrfs-8057-lower-the-bar-for-chunk-allocation.patch: Delete. - patches.suse/btrfs-8058-use-bigger-metadata-chunks-on-bigger-filesyste.patch: Delete. - patches.suse/btrfs-8059-test-free-space-only-for-unclustered-allocatio.patch: Delete. - patches.suse/btrfs-8060-don-t-set-up-allocation-result-twice.patch: Delete. - patches.suse/btrfs-8061-revamp-clustered-allocation-logic.patch: Delete. - patches.suse/btrfs-8062-add-allocator-tracepoints.patch: Delete. - patches.suse/btrfs-8063-protect-orphan-block-rsv-with-spin_lock.patch: Delete. - patches.suse/btrfs-8064-space-leak-tracepoints.patch: Delete. - patches.suse/btrfs-8065-add-a-delalloc-mutex-to-inodes-for-delalloc-re.patch: Delete. - patches.suse/btrfs-8066-use-larger-system-chunks.patch: Delete. - patches.suse/btrfs-8067-mask-out-gfp-flags-in-releasepage.patch: Delete. - patches.suse/btrfs-Fix-busyloops-in-transaction-waiting-code.patch: Delete.- patches.suse/supported-flag patches.suse/supported-flag-enterprise: s/Novell/SUSE/ (bnc#741478).- patches.fixes/large-hash-dcache_init-fix.patch: Fix oops when initializing large hash on > 16TB machine (bnc#742210).- patches.drivers/qla4xxx-bug-fixes-for-mixed-mode-support.patch: Revert ql4xdisablesysfsboot=0 (bnc#742570).- More stability fix patches for IvyBridge / SandyBridge graphics backported from 3.3-rc2 kernel: patches.drivers/drm-i915-Hold-gt_lock-across-forcewake-register-read, patches.drivers/drm-i915-Hold-gt_lock-during-reset, patches.drivers/drm-i915-Move-reset-forcewake-processing-to-gen6, patches.drivers/drm-i915-Re-enable-gen7-RC6-and-GPU-turbo-after-resume, patches.drivers/drm-i915-VBT-Parser-cleanup-for-eDP-block, patches.drivers/drm-i915-allow-userspace-forcewake-references, patches.drivers/drm-i915-convert-force_wake_get-to-func-pointer, patches.drivers/drm-i915-handle-3rd-pipe, patches.drivers/drm-i915-mask-transcoder-select-bits-before-setting, patches.drivers/drm-i915-paper-over-missed-irq-issues, patches.drivers/drm-i915-protect-force_wake_-get-put-with-the-gt_lock, patches.drivers/drm-i915-rip-out-the-HWSTAM-missed-irq-workaround, patches.drivers/drm-i915-sdvo-always-set-positive-sync-polarity, patches.drivers/drm-i915-simplify-pipe-checking - patches.drivers/drm-i915-Work-around-gen7-BLT-ring-synchronization-i: Delete. Obsoleted by the new fix.Add dev_warn() if the workaround gets active: - patches.fixes/bug-735909_hard_wired_primary_bus.patch: Refresh.- patches.fixes/bug-735909_hard_wired_primary_bus.patch: workaround hard-wired bus number (bnc#735909).- patches.drivers/floppy-cleanup-disk-queue-if-add_disk-was-never-called.patch: floppy: Cleanup disk->queue before caling put_disk() if add_disk() was never called (bnc#739381). - patches.drivers/floppy-fix-a-crash-during-rmmod.patch: floppy: Fix a crash during rmmmod (bnc#739381).- patches.fixes/nfs-bitmap-size.fix: NFSv4: include bitmap in nfsv4 get acl data (bnc#730117, CVE-2011-4131).- patches.fixes/nfs-reval-dot.fix: nfs - handle d_revalidate of 'dot' correctly (bnc#731809).- patches.fixes/md-raid5-degraded-reshape-fix: md/raid5: ensure correct assessment of drives during degraded reshape (bcn#741289).- patches.suse/btrfs-delalloc-for-page-dirtied-out-of-band-in-fixup-worker: btrfs: delalloc for page dirtied out-of-band in fixup worker (bnc#720753).- patches.fixes/block-fail-SCSI-passthrough-ioctls-on-partition-devi.patch: Silence warnings about some ioctls on partition.- patches.suse/revert-U6715-16550A-serial-driver-support.patch: Revert "U6715 16550A serial driver support" (bnc#739111).- patches.suse/elousb-fix-api-usage.patch: Fixed bug in USB core API usage, code cleanup (bnc#733863).- patches.suse/SoN-0009c-netvm-Propagate-page-pfmemalloc-to-skb.patch: Avoid NULL pointer dereference when propagating pfmemalloc to skb (bnc#743518)- patches.arch/x86-UV-uv_gpa_to_soc_phys_ram-shift.patch: x86 / UV: Fix uv_gpa_to_soc_phys_ram shift. (bnc#740898) - patches.arch/x86-UV2-harp-boot-message.patch: x86 / UV2: Fix blade count in boot messages. (bnc#741117)- patches.fixes/tty-fix-UV-serial-console-regression.patch: TTY: fix UV serial console regression (bnc#718518). - patches.suse/0001-Revert-serial-core-remove-uart_update_termios.patch: Delete. - patches.suse/0002-Revert-serial-core-do-not-set-DTR-RTS-twice-on-st.patch: Delete. - patches.suse/0003-Revert-serial-core-move-termios-handling-to-uart_.patch: Delete. - patches.suse/0004-Revert-serial-fix-termios-settings-in-open.patch: Delete. - patches.suse/0005-Revert-serial-Use-block_til_ready-helper.patch: Delete.- patches.drivers/r8169-fix-Config2-MSIEnable-bit-setting.patch: r8169: fix Config2 MSIEnable bit setting. (bnc#741814)- patches.fixes/xfs-Fix-missing-xfs_iunlock-on-error-recovery-path-i.patch: xfs: Fix missing xfs_iunlock() on error recovery path in xfs_readlink() (bnc#726600).- patches.fixes/block-fail-SCSI-passthrough-ioctls-on-partition-devi.patch: Fixup return value from EINVAL to ENOTTY.- patches.fixes/ipr-eeh-recovery-for-64-bit-adapters: ipr: fix eeh recovery for 64-bit adapters (bnc#742353).- patches.suse/0001-iw_cxgb4-workaround-powerpc64-rping-hang-as-a-driver.patch: iw_cxgb4: workaround powerpc64 rping hang as a driver specific change (bnc#721857).- patches.fixes/block-add-and-use-scsi_blk_cmd_ioctl.patch: block: add and use scsi_blk_cmd_ioctl (bnc#738400 CVE-2011-4127). - patches.fixes/block-fail-SCSI-passthrough-ioctls-on-partition-devi.patch: block: fail SCSI passthrough ioctls on partition devices (bnc#738400 CVE-2011-4127). - patches.fixes/dm-do-not-forward-ioctls-from-logical-volumes-to-the.patch: dm: do not forward ioctls from logical volumes to the underlying device (bnc#738400 CVE-2011-4127).- enable patches.suse/btrfs-Fix-busyloop-in-transaction-kthread.patch in series.conf- patches.suse/btrfs-Fix-busyloop-in-transaction-kthread.patch: btrfs: Fix busyloop in transaction_kthread() (bnc#730103).- patches.suse/btrfs-Fix-busyloops-in-transaction-waiting-code.patch: btrfs: Fix busyloops in transaction waiting code (bnc#730103).- patches.drivers/alsa-sp2-hda-016-Fix-silent-outputs-from-docking-station: ALSA: hda - Fix silent outputs from docking-station jacks of Dell laptops (bnc#740347).- patches.fixes/ocfs2-serialize-unaligned-aio.patch: ocfs2: serialize unaligned aio (bnc#671479).- patches.drivers/bug-708836_bluetooth-l2cap-security-race.patch: Bluetooth: Fix l2cap conn failures for ssp devices (bnc#708836).- patches.fixes/scsi-return-BLKPREP_KILL-in-prep_fn.patch: sd,sr: Return BLKPREP_KILL in prep_fn() (bnc#739381).- patches.drivers/ixgbe-only-enable-WoL-for-magic-packet-by-default.patch: ixgbe: only enable WoL for magic packet by default. (bnc#741863)- patches.fixes/xfs-fix-acl-count-validation-in-xfs_acl_from_disk: xfs: fix acl count validation in xfs_acl_from_disk() (bnc#740703, CVE-2012-0038).- patches.fixes/proc-enable-writing-to-proc-pid-mem-revert.patch: proc: enable writing to /proc/pid/mem (bnc#742279 CVE-2012-0056).- patches.suse/supported-flag-sysfs: Delete, this has been merged into patches.suse/supported-flag.- patches.fixes/igmp-Avoid-zero-delay: igmp: Avoid zero delay when receiving odd mixture of IGMP queries (CVE-2012-0207, bnc#740448).- patches.kabi/ata_scsi_unlock_native_capacity-stub: kabi: Provide stub for ata_scsi_unlock_native_capacity().- patches.drivers/revert-libata-implement-on-demand-hpa-unlocking: Fixup patch for series2git.- patches.fixes/bonding-dont-allow-mode-change-via-sysfs-with-slaves-present.patch: bonding: Don't allow mode change via sysfs with slaves present (bnc#737833). - patches.fixes/bonding-fix-enslaving-in-alb-mode-when-link-down.patch: bonding: fix enslaving in alb mode when link down (bnc#737833).- patches.drivers/revert-libata-implement-on-demand-hpa-unlocking: revert: libata: implement on-demand HPA unlocking (bnc#713675).- patches.suse/btrfs-handle-EIO: Add missing unlock during failure in cow_file_range().- patches.suse/dasd-Clarify-comment.patch: dasd: Clarify comment (bnc#735543). - patches.suse/dasd-Implement-failfast_retries.patch: dasd: Implement failfast_retries (bnc#735543). - patches.suse/dasd-make-number-of-retries-configurable.patch: dasd: make number of retries configurable (bnc#735543).- patches.suse/btrfs-8067-mask-out-gfp-flags-in-releasepage.patch: btrfs: mask out gfp flasg in releasepage (FATE#306586 bnc#742181). - patches.suse/btrfs-debug-setpagedirty-tracing.patch: Refresh.- Ward off potential SP1->SP2 HPC jitter regression - patches.fixes/clockevents-Reinstate-the-per-cpu-tick-skew.patch: clockevents: Reinstate the per cpu tick skew.- patches.suse/btrfs-1021-restriper-updates-v2.patch: Btrfs: restriper updates (FATE#306586).- patches.suse/btrfs-btrfs_reserve_extent-check-sinfo: btrfs: avoid NULL deref in btrfs_reserve_extent with DEBUG_ENOSPC. - patches.suse/btrfs-btrfs_set_item_key_safe-should-bug-and-return-void: btrfs: btrfs_set_item_key_safe should BUG on error and return void. - patches.suse/btrfs-btrfs_tree_unlock-should-return-void: btrfs: btrfs_tree_{,un}lock should return void. - patches.suse/btrfs-clean_tree_block-should-panic-on-error-and-return-void: btrfs: clean_tree_block should panic on observed memory corruption and return void. - patches.suse/btrfs-copy_for_split-should-return-void: Refresh. - patches.suse/btrfs-disk-io-__setup_root-should-return-void: Refresh. - patches.suse/btrfs-drop-gfp_t-from-lock_extent: btrfs: drop gfp_t from lock_extent. - patches.suse/btrfs-handle-EIO: btrfs: Handle EIO- patches.kabi/struct-bootsplash_data: Fix typo.- patches.kabi/struct-bootsplash_data: bootsplash: Hide kabi change in struct bootsplash_data.- patches.suse/btrfs-add-extent_state-alloc-free-tracing: Refresh.- patches.suse/btrfs-8062-add-allocator-tracepoints.patch: Btrfs: add allocator tracepoints (FATE#306586). - patches.suse/btrfs-8063-protect-orphan-block-rsv-with-spin_lock.patch: Btrfs: protect orphan block rsv with spin_lock (FATE#306586). - patches.suse/btrfs-8064-space-leak-tracepoints.patch: Btrfs: space leak tracepoints (FATE#306586). - patches.suse/btrfs-8065-add-a-delalloc-mutex-to-inodes-for-delalloc-re.patch: Btrfs: add a delalloc mutex to inodes for delalloc reservations (FATE#306586). - patches.suse/btrfs-8066-use-larger-system-chunks.patch: Btrfs: use larger system chunks (FATE#306586).- patches.suse/btrfs-8042-make-btrfs_truncate_inode_items-more-readable.patch: Refresh. - patches.suse/btrfs-8059-test-free-space-only-for-unclustered-allocatio.patch: Btrfs: test free space only for unclustered allocation (FATE#306586). - patches.suse/btrfs-8060-don-t-set-up-allocation-result-twice.patch: Btrfs: don't set up allocation result twice (FATE#306586). - patches.suse/btrfs-8061-revamp-clustered-allocation-logic.patch: Btrfs: revamp clustered allocation logic (FATE#306586). - patches.suse/btrfs-add-extent_state-alloc-free-tracing: Refresh. - patches.suse/btrfs-unlock_extent-can-eliminate-gfp_t: Refresh.- patches.fixes/pci_blacklist_usecrs.patch: Blacklist IBM 3850 M2, x3950 M2 to use pci=nocrs (bnc#735909).- patches.suse/SUSE-bootsplash: Refresh; add a proper support for Xen fb (bnc#739020); fix the bootsplash-verbose switch race (bnc#734213)- kabi/severities: One more fix for the pstore kabi change.- patches.suse/kdump-x86-remap-allocator: Add missing include.- kabi/severities: Ignore pstore_write.- patches.fixes/mm-compaction-check-pfn_valid-entering-MAX_ORDER_NR_PAGES-block.patch: Check pfn_valid when entering a new MAX_ORDER_NR_PAGES block during isolation for migration.- patches.suse/kdump-x86-remap-allocator: Save remap allocator symbols to VMCOREINFO (bnc#738742).- patches.suse/btrfs-0901-protect-orphan-block-rsv-with-spin_lock.patch: Btrfs: protect orphan block rsv with spin_lock (FATE#306586). - patches.suse/btrfs-0902-do-not-use-btrfs_end_transaction_throttle-ever.patch: Btrfs: do not use btrfs_end_transaction_throttle everywhere (FATE#306586). - patches.suse/btrfs-0903-don-t-call-btrfs_throttle-in-file-write.patch: Btrfs: don't call btrfs_throttle in file write (FATE#306586). - patches.suse/btrfs-8043-improve-truncation-of-btrfs.patch: Refresh. - patches.suse/btrfs-8056-run-chunk-allocations-while-we-do-delayed-refs.patch: Btrfs: run chunk allocations while we do delayed refs (FATE#306586). - patches.suse/btrfs-8057-lower-the-bar-for-chunk-allocation.patch: Btrfs: lower the bar for chunk allocation (FATE#306586). - patches.suse/btrfs-8058-use-bigger-metadata-chunks-on-bigger-filesyste.patch: Btrfs: use bigger metadata chunks on bigger filesystems (FATE#306586).- kabi/severities: allow pstore/uefivars kabi change and re-enable: patches.drivers/006-pstore_3_2_fixes.patch- patches.fixes/log2.h-Fix-rounddown_pow_of_two-1.patch: linux/log2.h: Fix rounddown_pow_of_two(1) (bnc#739356).- patches.suse/btrfs-8024-workaround-for-cleaner-deadlock.patch: enhance the workaroundCleanup only: remove attempt to fix c-states init on physical cpu hotplug. Patches are not mainline and Intel agrees with it. - patches.arch/acpi_processor_delay_cpuidle_init_on_hotplug.patch: Delete. - patches.arch/acpi_processor_split_add.patch: Delete. - patches.arch/intel_idle_register_per_cpu.patch: Delete.- patches.suse/SUSE-bootsplash: Refresh. Suppress bootsplash with xenfb (bnc#739020)- patches.drivers/mpt-fusion-check-sili-bit-read_6-for-data-underrun-errata: mptfusion : Added check for SILI bit in READ_6 CDB for DATA UNDERRUN ERRATA (bnc #712456).- patches.suse/SUSE-bootsplash: Update the patch from master to fix a copule of bugs.- patches.suse/btrfs-btrfs_truncate_item-should-return-void: Refresh.- patches.suse/kdump-save-PG_compound: Save PG_compound or PG_head value in VMCOREINFO (bnc#741191).- patches.fixes/fcoe-fix-regression-on-offload-em-matching-function: fcoe: fix regression on offload em matching function for initiator/target (bnc#739856). - patches.fixes/scsi_dh_alua-rtpg-flood-during-state-transitioning.patch: Update patch after suggestions from upstream discussion.- patches.drivers/qla4xxx-add-error-logging-for-firmware-abort: qla4xxx: Added error logging for firmware abort (bnc#738421). - patches.drivers/qla4xxx-check-for-fw-alive-before-calling-chip_reset: qla4xxx: check for FW alive before calling chip_reset (bnc#738421). - patches.drivers/qla4xxx-cleanup-make-qla4xxx_build_ddb_list-short: qla4xxx: cleanup, make qla4xxx_build_ddb_list short (bnc#738421). - patches.drivers/qla4xxx-clear-the-risc-interrupt-bit-during-fw-init: qla4xxx: Clear the RISC interrupt bit during FW init (bnc#738421). - patches.drivers/qla4xxx-disable-generating-pause-frames-in-case-of-fw-hung: qla4xxx: Disable generating pause frames in case of FW hung (bnc#738421). - patches.drivers/qla4xxx-don-t-recover-adapter-if-device-state-is-failed: qla4xxx: Don't recover adapter if device state is FAILED (bnc#738421). - patches.drivers/qla4xxx-fix-call-trace-on-rmmod-with-ql4xdontresethba-1: qla4xxx: fix call trace on rmmod with ql4xdontresethba=1 (bnc#738421). - patches.drivers/qla4xxx-fix-cpu-lockups-when-ql4xdontresethba-set: qla4xxx: Fix CPU lockups when ql4xdontresethba set (bnc#738421). - patches.drivers/qla4xxx-fix-qla4xxx_dump_buffer-to-dump-buffer-correctly: qla4xxx: Fix qla4xxx_dump_buffer to dump buffer correctly (bnc#738421). - patches.drivers/qla4xxx-fix-the-idc-locking-mechanism: qla4xxx: Fix the IDC locking mechanism (bnc#738421). - patches.drivers/qla4xxx-perform-context-resets-in-case-of-context-failures: qla4xxx: Perform context resets in case of context failures (bnc#738421). - patches.drivers/qla4xxx-temperature-monitoring-for-isp82xx-core: qla4xxx: Temperature monitoring for ISP82XX core (bnc#738421). - patches.drivers/qla4xxx-wait-for-disable_acb-before-doing-set_acb: qla4xxx: Wait for disable_acb before doing set_acb (bnc#738421).btrfs fixes - patches.suse/btrfs-0005-Don-t-BUG_ON-errors-in-__finish_chunk_alloc.patch: Refresh. - patches.suse/btrfs-1001-introduce-masks-for-chunk-type-and-profile.patch: Refresh. - patches.suse/btrfs-1004-add-basic-restriper-infrastructure.patch: Refresh. - patches.suse/btrfs-1015-recover-balance-on-mount.patch: Refresh. - patches.suse/btrfs-1017-allow-for-pausing-restriper.patch: Refresh. - patches.suse/btrfs-1018-allow-for-cancelling-restriper.patch: Refresh. - patches.suse/btrfs-1019-allow-for-resuming-restriper-after-it-was-paus.patch: Refresh. - patches.suse/btrfs-8001-rewrite-btrfs_trim_block_group.patch: Refresh. - patches.suse/btrfs-8025-update-global-block_rsv-when-creating-a-new-bl.patch: Refresh. - patches.suse/btrfs-8026-fix-possible-deadlock-when-opening-a-seed-devi.patch: Refresh. - patches.suse/btrfs-8027-fix-dirtied-pages-accounting-on-sub-page-write.patch: btrfs: fix dirtied pages accounting on sub-page writes (FATE#306586). - patches.suse/btrfs-8030-generic-data-structure-to-build-unique-lists.patch: Btrfs: generic data structure to build unique lists (FATE#306586). - patches.suse/btrfs-8031-added-helper-btrfs_next_item.patch: Btrfs: added helper btrfs_next_item() (FATE#306586). - patches.suse/btrfs-8032-mark-delayed-refs-as-for-cow.patch: Btrfs: mark delayed refs as for cow (FATE#306586). - patches.suse/btrfs-8033-always-save-ref_root-in-delayed-refs.patch: Btrfs: always save ref_root in delayed refs (FATE#306586). - patches.suse/btrfs-8034-add-nested-locking-mode-for-paths.patch: Btrfs: add nested locking mode for paths (FATE#306586). - patches.suse/btrfs-8035-add-sequence-numbers-to-delayed-refs.patch: Btrfs: add sequence numbers to delayed refs (FATE#306586). - patches.suse/btrfs-8036-put-back-delayed-refs-that-are-too-new.patch: Btrfs: put back delayed refs that are too new (FATE#306586). - patches.suse/btrfs-8037-add-waitqueue-instead-of-doing-busy-waiting-fo.patch: Btrfs: add waitqueue instead of doing busy waiting for more delayed refs (FATE#306586). - patches.suse/btrfs-8038-added-btrfs_find_all_roots.patch: Btrfs: added btrfs_find_all_roots() (FATE#306586). - patches.suse/btrfs-8039-new-backref-walking-code.patch: Btrfs: new backref walking code (FATE#306586). - patches.suse/btrfs-8040-make-sure-we-re-not-using-obsolete-code-in-btr.patch: Btrfs: make sure we're not using obsolete code in btrfs_get_extent (FATE#306586). - patches.suse/btrfs-8041-fix-btrfsck-error-400-when-truncating-a-compre.patch: Btrfs: fix btrfsck error 400 when truncating a compressed file extent (FATE#306586). - patches.suse/btrfs-8042-make-btrfs_truncate_inode_items-more-readable.patch: Btrfs: make btrfs_truncate_inode_items() more readable (FATE#306586). - patches.suse/btrfs-8043-improve-truncation-of-btrfs.patch: Btrfs: improve truncation of btrfs (FATE#306586). - patches.suse/btrfs-8044-release-space-on-error-in-page_mkwrite.patch: Btrfs: release space on error in page_mkwrite (FATE#306586). - patches.suse/btrfs-8045-add-pinned-extents-to-on-disk-free-space-cache.patch: Btrfs: add pinned extents to on-disk free space cache correctly (FATE#306586). - patches.suse/btrfs-8046-avoid-possible-NULL-deref-in-io_ctl_drop_pages.patch: Btrfs: avoid possible NULL deref in io_ctl_drop_pages() (FATE#306586). - patches.suse/btrfs-8047-check-the-return-value-of-io_ctl_init.patch: Btrfs: check the return value of io_ctl_init() (FATE#306586). - patches.suse/btrfs-8048-remove-BUG_ON-s-in-btrfs_ioctl_setflags.patch: Btrfs: remove BUG_ON()s in btrfs_ioctl_setflags() (FATE#306586). - patches.suse/btrfs-8049-reserve-metadata-space-in-btrfs_ioctl_setflags.patch: Btrfs: reserve metadata space in btrfs_ioctl_setflags() (FATE#306586). - patches.suse/btrfs-8050-don-t-pass-a-trans-handle-unnecessarily-in-vol.patch: Btrfs: don't pass a trans handle unnecessarily in volumes.c (FATE#306586). - patches.suse/btrfs-8051-don-t-pre-allocate-btrfs-bio.patch: Btrfs: don't pre-allocate btrfs bio (FATE#306586). - patches.suse/btrfs-8052-simplfy-calculation-of-stripe-length-for-disca.patch: Btrfs: simplfy calculation of stripe length for discard operation (FATE#306586). - patches.suse/btrfs-8053-rewrite-btrfs_trim_block_group.patch: Btrfs: rewrite btrfs_trim_block_group() (FATE#306586). - patches.suse/btrfs-8054-update-global-block_rsv-when-creating-a-new-bl.patch: Btrfs: update global block_rsv when creating a new block group (FATE#306586). - patches.suse/btrfs-8055-fix-possible-deadlock-when-opening-a-seed-devi.patch: Btrfs: fix possible deadlock when opening a seed device (FATE#306586). - patches.suse/btrfs-_btrfs_mod_ref-s-process_func-should-return-void: Refresh. - patches.suse/btrfs-_btrfs_mod_ref-should-return-void: Refresh. - patches.suse/btrfs-add_delayed_data_ref-should-return-void: Refresh. - patches.suse/btrfs-add_delayed_ref_head-should-return-void: Refresh. - patches.suse/btrfs-add_delayed_tree_ref-should-return-void: Refresh. - patches.suse/btrfs-btrfs_drop_snapshot-should-return-int: Refresh. - patches.suse/btrfs-btrfs_free_extent-void-return-prep: Refresh. - patches.suse/btrfs-btrfs_inc_extent_ref-void-return-prep: Refresh. - patches.suse/btrfs-btrfs_pin_extent-error-push-up: Refresh. - patches.suse/btrfs-btrfs_truncate_item-should-return-void: Refresh. - patches.suse/btrfs-del_ptr-should-return-void: Refresh. - patches.suse/btrfs-delayed-ref-mempool-functions-should-return-void: Refresh. - patches.suse/btrfs-lock-extent-can-drop-gfp_t-argument: Refresh. - patches.suse/btrfs-unlock_extent-can-eliminate-gfp_t: Refresh. - patches.suse/btrfs-use-mempools-for-delayed-refs: Refresh.- Disable patches.drivers/006-pstore_3_2_fixes.patch due to kabi breakage- patches.drivers/004-pstore_3_2_fixes.patch: Refresh. - patches.drivers/005-pstore_3_2_fixes.patch: pstore: gracefully handle NULL pstore_info functions (bnc#718551). - patches.drivers/006-pstore_3_2_fixes.patch: pstore: pass reason to backend write callback (bnc#718551).- patches.fixes/SCSI-libcxgbi-do-not-print-a-message-when-memory-all.patch: [SCSI] libcxgbi: do not print a message when memory allocation fails. (bnc#725594)- patches.fixes/powerpc-migration-vphn-fix: fix hang during live partition migration (bnc#740866).- patches.drivers/hpwdt_avoid_double_nmi_msg.patch: watchdog: hpwdt: prevent multiple "NMI occurred" messages (bnc#740997).btrfs: update restriper - patches.suse/btrfs-1000-get-rid-of-_alloc_profile-fields.patch: Refresh. - patches.suse/btrfs-1001-introduce-masks-for-chunk-type-and-profile.patch: Refresh. - patches.suse/btrfs-1002-add-btrfs_AVAIL_ALLOC_BIT_SINGLE-bit.patch: Refresh. - patches.suse/btrfs-1003-make-avail_-_alloc_bits-fields-dynamic.patch: Refresh. - patches.suse/btrfs-1004-add-basic-restriper-infrastructure.patch: Refresh. - patches.suse/btrfs-1005-add-basic-infrastructure-for-selective-balanci.patch: Btrfs: add basic infrastructure for selective balancing (FATE#306586). - patches.suse/btrfs-1006-profiles-filter.patch: Btrfs: profiles filter (FATE#306586). - patches.suse/btrfs-1007-usage-filter.patch: Btrfs: usage filter (FATE#306586). - patches.suse/btrfs-1008-devid-filter.patch: Btrfs: devid filter (FATE#306586). - patches.suse/btrfs-1009-devid-subset-filter.patch: Btrfs: devid subset filter (FATE#306586). - patches.suse/btrfs-1010-virtual-address-space-subset-filter.patch: Btrfs: virtual address space subset filter (FATE#306586). - patches.suse/btrfs-1011-do-not-reduce-profile-in-do_chunk_alloc.patch: Btrfs: do not reduce profile in do_chunk_alloc() (FATE#306586). - patches.suse/btrfs-1012-implement-online-profile-changing.patch: Btrfs: implement online profile changing (FATE#306586). - patches.suse/btrfs-1013-soft-profile-changing-mode-aka-soft-convert.patch: Btrfs: soft profile changing mode (aka soft convert) (FATE#306586). - patches.suse/btrfs-1014-save-balance-parameters-to-disk.patch: Btrfs: save balance parameters to disk (FATE#306586). - patches.suse/btrfs-1015-recover-balance-on-mount.patch: Btrfs: recover balance on mount (FATE#306586). - patches.suse/btrfs-1016-add-skip_balance-mount-option.patch: Btrfs: add skip_balance mount option (FATE#306586). - patches.suse/btrfs-1017-allow-for-pausing-restriper.patch: Btrfs: allow for pausing restriper (FATE#306586). - patches.suse/btrfs-1018-allow-for-cancelling-restriper.patch: Btrfs: allow for cancelling restriper (FATE#306586). - patches.suse/btrfs-1019-allow-for-resuming-restriper-after-it-was-paus.patch: Btrfs: allow for resuming restriper after it was paused (FATE#306586). - patches.suse/btrfs-1020-add-balance-progress-reporting.patch: Btrfs: add balance progress reporting (FATE#306586). - patches.suse/btrfs-1005-implement-online-profile-changing.patch: Delete. - patches.suse/btrfs-1006-add-basic-infrastructure-for-selective-balanci.patch: Delete. - patches.suse/btrfs-1007-soft-profile-changing-mode-aka-soft-convert.patch: Delete. - patches.suse/btrfs-1008-profiles-filter.patch: Delete. - patches.suse/btrfs-1009-usage-filter.patch: Delete. - patches.suse/btrfs-1010-devid-filter.patch: Delete. - patches.suse/btrfs-1011-devid-subset-filter.patch: Delete. - patches.suse/btrfs-1012-virtual-address-space-subset-filter.patch: Delete. - patches.suse/btrfs-1013-save-restripe-parameters-to-disk.patch: Delete. - patches.suse/btrfs-1014-recover-restripe-on-mount.patch: Delete. - patches.suse/btrfs-1015-allow-for-cancelling-restriper.patch: Delete. - patches.suse/btrfs-1016-allow-for-pausing-restriper.patch: Delete. - patches.suse/btrfs-1017-allow-for-resuming-restriper-after-it-was-paus.patch: Delete. - patches.suse/btrfs-1018-add-skip_restripe-mount-option.patch: Delete. - patches.suse/btrfs-1019-get-rid-of-btrfs_balance-function.patch: Delete. - patches.suse/btrfs-1020-add-restripe-progress-reporting.patch: Delete.- patches.xen/1140-xs-payload-limit.patch: xenbus: Reject replies with payload > XENSTORE_PAYLOAD_MAX. - patches.xen/1142-xenbus-reset-watches-check.patch: xenbus: check availibility of XS_RESET_WATCHES command. - Refresh Xen patches (bnc#733822, bnc#738528). - Update Xen config files.- patches.fixes/sched-Only-queue-remote-wakeups-when-crossing-cache-boundaries.patch: sched: Only queue remote wakeups when crossing cache boundaries (bnc#722993).- patches.suse/pci-pciehp-Automatically-load-on-VMware.patch: pciehp: Automatically load on VMware (bnc#736669).btrfs update up to 3.2 - patches.suse/btrfs-0286-fix-worker-lock-misuse-in-find_worker.patch: Btrfs: fix worker lock misuse in find_worker (FATE#306586). - patches.suse/btrfs-0287-call-d_instantiate-after-all-ops-are-setup.patch: Btrfs: call d_instantiate after all ops are setup (FATE#306586).- patches.suse/btrfs-debug-setpagedirty-tracing.patch: setpagedirty tracing v4.- patches.arch/s390-44-01-pgste-update.patch: kernel: no storage key operations for invalid page table entries (bnc#740780,LTC#77697).- patches.suse/stack-unwind: Fix more 2.6.29 merge problems plus a glue code problem (bnc#736018).- patches.drivers/alsa-sp2-hda-015-Fix-the-lost-power-setup-of-seconary-pins-a: ALSA: hda - Fix the lost power-setup of seconary pins after PM resume (bnc#740347).- patches.fixes/fix-shrink_dcache_parent-livelock.patch: fix shrink_dcache_parent() livelock (bnc#735277).- supported.conf: (bnc#737969) add ums-realtek to base and supported, as well as ums-eneub6250, both of which we supported as part of the usb-storage driver in SLE11 SP1 (the driver split since then.) Also mark uas.ko as unsupported as it is not good quality yet, and wasn't even listed in the file.- patches.drivers/cciss_fix_const.patch: Fix compiler warning, no functional change (bnc#740281). - patches.drivers/cciss_simple_mode.patch: cciss: Adds simple mode functionality (bnc#737574).- patches.drivers/drm-i915-Add-support-for-resetting-the-SO-write-poin: patches.drivers/drm-i915-Clean-up-multi-threaded-forcewake-patch: patches.drivers/drm-i915-Do-the-fallback-non-IRQ-wait-in-ring-thrott: patches.drivers/drm-i915-Force-sync-command-ordering-Gen6: patches.drivers/drm-i915-Make-the-fallback-IRQ-wait-not-sleep: patches.drivers/drm-i915-Set-two-chicken-bits-implicated-in-missed-I: patches.drivers/drm-i915-Update-GEN6_RP_CONTROL-definitions: patches.drivers/drm-i915-Work-around-gen7-BLT-ring-synchronization-i: patches.drivers/drm-i915-check-ACTHD-of-all-rings: patches.drivers/drm-i915-don-t-bail-out-of-intel_wait_ring_buffer-to: patches.drivers/drm-i915-don-t-disable-a-PCH-DPLL-that-s-in-use: patches.drivers/drm-i915-kicking-rings-stuck-on-semaphores-considere: patches.drivers/drm-i915-only-set-the-intel_crtc-DPMS-mode-to-on-if-: patches.drivers/drm-i915-relative_constants_mode-race-fix: Backport 3.3-fix patches for SNB/IVB GPUs (bnc#735417) - patches.drivers/drm-i915-set-AUD_CONFIG_N_index-for-DP: Refresh.- patches.fixes/xfs-dmapi-fix-crash-due-to-null-pointer-dereference: xfs/dmapi: Fix crash due to NULL pointer dereference (bnc#735765).- patches.drivers/drm-i915-DisplayPort-hot-remove-notification-to-audio-driver: patches.drivers/drm-i915-HDMI-hot-remove-notification-to-audio-driver: patches.drivers/drm-i915-dont-trigger-hotplug-events-on-uncached-ELD: patches.drivers/drm-i915-fix-ELD-writing-for-SandyBridge: patches.drivers/drm-i915-rename-audio-ELD-registers: Refresh. just update tags.- patches.drivers/drm-i915-set-AUD_CONFIG_N_index-for-DP: drm/i915: set AUD_CONFIG N_value_index for DisplayPort (bnc#722560,bnc#711201).- patches.drivers/cciss_fix_const.patch: Fix pointer type mismatch which leads to corruptions in kdump case (bnc#740281).- Final 3.1 -> 3.2 usb 3 patch set: - patches.drivers/USB3-0377-asix-new-device-id.patch: asix: new device id. - patches.drivers/usb-fix-number-of-mapped-sg-dma-entries.patch: Refresh.- patches.fixes/mm-Fix-NULL-ptr-dereference-in-__count_immobile_page.patch: mm: Fix NULL ptr dereference in __count_immobile_pages (bnc#738117).- patches.fixes/jbd-Issue-cache-flush-after-checkpointing.patch: jbd: Issue cache flush after checkpointing (bnc#731770).- patches.drivers/sfc-dummy-option: sfc: Provide dummy module parameters for compatibility with SLE11-SP1 (bnc#720460).- patches.drivers/lpfc-8.3.5.48.2p-update: Update Emulex LPFC driver to 8.3.5.48.2p (bnc#736896).- patches.drivers/drm-i915-Disable-RC6-on-Sandybridge-by-default: drm/i915: Disable RC6 on Sandybridge by default (bnc#735417). - patches.drivers/drm-i915-Disable-semaphores-by-default-on-SNB: drm/i915: Disable semaphores by default on SNB (bnc#735417).- patches.drivers/ixgbe-resolve-errors-with-many-to-one-mappings.patch: ixgbe: Resolve errors with many to one up2tc mappings (bnc#714789).- patches.xen/1134-blktap-locking.patch: blktap: fix locking (again) (bnc#724734). - patches.xen/1135-blktap-map-once.patch: blktap: ensure mmap() is called only once per region. - patches.xen/1137-netback-wait-for-hotplug.patch: netback: wait for hotplug scripts to complete before signalling connected to frontend. - patches.xen/1138-netfront-delay-gARP.patch: netfront: delay gARP until backend switches to Connected. - Update Xen patches to 3.0.14. - patches.xen/xen-x86-msr-on-pcpu: Rename and extend to ... - patches.xen/xen-x86-pcpu: ... this (x86: pCPU handling).- patches.fixes/net-make-ipv6-bind-honour-freebind.patch: net: make ipv6 bind honour freebind (bnc#736182). - patches.fixes/net-make-ipv6-pktinfo-honour-freebind.patch: net: make ipv6 PKTINFO honour freebind (bnc#736182). - patches.fixes/net-relax-pktinfo-non-local-ipv6-udp-xmit-check.patch: relax PKTINFO non local ipv6 udp xmit check (bnc#736182).- patches.fixes/mm-stop_machine-reorganize-stop_cpus-implementation.patch - patches.fixes/mm-stop_machine-implement-stop_machine_from_inactive_cpu.patch - patches.fixes/mm-x86,-mtrr-use-stop_machine-APIs-for-doing-MTRR-rendezvous.patch - patches.fixes/mm-x86-Serialize-SMP-bootup-CMOS-accesses-on-rtc_lock.patch - patches.fixes/mm-VFS--mount-lock-scalability-for-internal-mounts.patch - patches.fixes/fs-sysfs-do-dcache-related-updates-to-sysfs-under-sysfs_mutex.patch - patches.fixes/mm-page-allocator-do-not-drain-per-cpu-lists-via-IPI-from-page-allocator-context.patch Guard against sending IPI to offline CPUs (bnc#729122 bnc#738567)- patches.fixes/oom-thaw-threads-if-oom-killed-thread-is-frozen-befo.patch: Update references (bnc#718831).- patches.fixes/x25-Handle-undersized-fragmented-skbs.patch: x25: Handle undersized/fragmented skbs (CVE-2010-3873 bnc#651219). - patches.fixes/x25-Validate-incoming-call-user-data-lengths.patch: x25: Validate incoming call user data lengths (CVE-2010-3873 bnc#651219).- patches.fixes/net-check-return-value-for-dst_alloc.patch: net: check return value for dst_alloc (bnc#737624). - patches.fixes/net-Add-a-flow_cache_flush_deferred-function.patch: net: Add a flow_cache_flush_deferred function (bnc#737624).- patches.fixes/reiserfs-writeback-buffer-lock.patch: reiserfs: Lock buffers unconditionally in reiserfs_write_full_page() (bnc#716023). - patches.fixes/writeback-include-all-inodes-in-background.patch: writeback: Include all dirty inodes in background writeback (bnc#716023).- patches.fixes/ext3-Fix-error-handling-on-inode-bitmap-corruption.patch: ext3: Fix error handling on inode bitmap corruption (bnc#733270).- patches.fixes/ext3-Don-t-warn-from-writepage-when-readonly-inode-i.patch: ext3: Don't warn from writepage when readonly inode is spotted after error (bnc#731945).- patches.suse/btrfs-debug-setpagedirty-tracing.patch: Refresh.- patches.fixes/reiserfs-Fix-quota-mount-option-parsing.patch: reiserfs: Fix quota mount option parsing (bnc#728626).- patches.fixes/ACPI-Battery-Add-the-check-before-refresh-sysfs-in-t: ACPI / Battery: Add the check before refresh sysfs in the battery_notify() (bnc#738056). - patches.fixes/ACPI-Battery-Add-the-hibernation-process-in-the-batt: ACPI / Battery: Add the hibernation process in the battery_notify() (bnc#738056). - patches.fixes/ACPI-Battery-Resolve-the-race-condition-in-the-sysfs: ACPI / Battery: Resolve the race condition in the sysfs_remove_battery() (bnc#738056). - patches.fixes/ACPI-Battery-avoid-acpi_battery_add-use-after-free: ACPI / Battery: avoid acpi_battery_add() use-after-free (bnc#738056). - patches.fixes/ACPI-Battery-propagate-sysfs-error-in-acpi_battery_a: ACPI / Battery: propagate sysfs error in acpi_battery_add() (bnc#738056). - patches.fixes/Battery-sysfs_remove_battery-possible-circular-locki: Battery: sysfs_remove_battery(): possible circular locking (bnc#738056).- patches.kabi/drm-i915-ILK-VT-d-workaround-kABI-fix: Fix kABI for patches.drivers/drm-i915-ILK-VT-d-workaround.- Fixed series.conf to apply the missing patches.drivers/drm-i915-close-PM-interrupt-masking-races-in-the-rps.patch- patches.drivers/drm-i915-ILK-VT-d-workaround: drm/i915: ILK + VT-d workaround; missing patch from the previous commit.- patches.drivers/Revert-and-fix-drm-i915-dp-remove-DPMS-mode-tracking, patches.drivers/drm-i915-Add-an-interface-to-dynamically-change-the-, patches.drivers/drm-i915-All-PCH-refclks-are-120MHz, drm/i915, patches.drivers/drm-i915-Allow-SSC-parameter-to-override-VBT-value, patches.drivers/drm-i915-Cache-GT-fifo-count-for-SandyBridge, patches.drivers/drm-i915-Check-eDP-power-when-doing-aux-channel-comm, patches.drivers/drm-i915-Check-for-eDP-inside-edp-panel-on-off-funcs, patches.drivers/drm-i915-Combine-pinning-with-setting-to-the-display, patches.drivers/drm-i915-Correct-eDP-panel-power-sequencing-delay-co, patches.drivers/drm-i915-Create-helper-functions-to-determine-eDP-po, patches.drivers/drm-i915-Defend-against-userspace-creating-a-gem-obj, patches.drivers/drm-i915-Delay-DP-i2c-initialization-until-panel-pow, patches.drivers/drm-i915-Disable-FBC-across-page-flipping, patches.drivers/drm-i915-Disable-eDP-VDD-in-a-delayed-work-proc-inst, patches.drivers/drm-i915-Document-a-few-more-BDB_GENERAL_FEATURES-bi, patches.drivers/drm-i915-Dumb-down-the-semaphore-logic, patches.drivers/drm-i915-Enable-SDVO-hotplug-interrupts-for-HDMI-and, patches.drivers/drm-i915-Enable-digital-port-hotplug-on-PCH-systems, patches.drivers/drm-i915-Enable-dither-whenever-display-bpc-frame-bu, patches.drivers/drm-i915-Enable-eDP-panel-power-during-I2C-initializ, patches.drivers/drm-i915-Ensure-eDP-powered-up-during-DP_SET_POWER-o, patches.drivers/drm-i915-Ensure-panel-is-on-during-DPMS-off, patches.drivers/drm-i915-FBC-off-for-ironlake-and-older-otherwise-on, patches.drivers/drm-i915-Fix-PCH-SSC-reference-clock-settings, patches.drivers/drm-i915-Fix-memory-leak-in-i915_gem_busy_ioctl, patches.drivers/drm-i915-Fix-multifunction-SDVO-detection, patches.drivers/drm-i915-Flush-other-plane-register-writes, patches.drivers/drm-i915-Hook-up-Ivybridge-eDP, drm/i915, patches.drivers/drm-i915-In-intel_dp_init-replace-read-of-DPCD-with-, patches.drivers/drm-i915-Initialize-PCH-refclks-at-modeset-init-time, patches.drivers/drm-i915-Initiate-DP-link-training-only-on-the-lanes, patches.drivers/drm-i915-Introduce-i915_gem_object_finish_gpu, patches.drivers/drm-i915-Introduce-i915_gem_object_finish_gtt, patches.drivers/drm-i915-Let-panel-power-sequencing-hardware-do-its-, patches.drivers/drm-i915-Make-DP-prepare-commit-consistent-with-DP-d, patches.drivers/drm-i915-Mark-the-cursor-and-the-overlay-as-being-pa, patches.drivers/drm-i915-Move-common-PCH_PP_CONTROL-setup-to-ironlak, patches.drivers/drm-i915-Move-eDP-panel-fixed-mode-from-dev_priv-to-, patches.drivers/drm-i915-No-need-to-wait-for-eDP-power-off-delay-if-, patches.drivers/drm-i915-Only-export-the-generic-intel_disable_fbc-i, patches.drivers/drm-i915-Only-use-VBT-panel-mode-on-eDP-if-no-EDID-i, patches.drivers/drm-i915-PLL-macro-cleanup-and-pipe-assertion-check, patches.drivers/drm-i915-Perform-intel_enable_fbc-from-a-delayed-tas, patches.drivers/drm-i915-Remove-early-exit-on-i915_gpu_idle, patches.drivers/drm-i915-Remove-i2c_speed-nonsense-from-child-device, patches.drivers/drm-i915-Remove-implied-length-of-2-from-GFX_OP_PIPE, patches.drivers/drm-i915-Remove-link_status-field-from-intel_dp-stru, patches.drivers/drm-i915-Remove-redundant-bit-shifting-from-intel_gm, patches.drivers/drm-i915-Remove-vestigial-pitch-from-post-gen2-FBC-c, patches.drivers/drm-i915-Rename-PIPE_CONTROL-bit-defines-to-be-less-, patches.drivers/drm-i915-Rename-i915_dp_detect_common-to-intel_dp_ge, patches.drivers/drm-i915-Rename-intel_sdvo_hdmi_sink_detect, patches.drivers/drm-i915-Replace-direct-calls-to-vfunc.disable_fbc-w, patches.drivers/drm-i915-Restrict-ILK-specific-eDP-power-hack-to-ILK, patches.drivers/drm-i915-Select-correct-pipe-during-TV-detect, patches.drivers/drm-i915-Set-crtc-DPMS-mode-to-ON-in-intel_crtc_mode, patches.drivers/drm-i915-Set-persistent-mode-for-ILK-SNB-framebuffer, patches.drivers/drm-i915-Share-the-common-work-of-disabling-active-F, patches.drivers/drm-i915-Shut-down-PCH-interrupts-during-irq_uninsta, patches.drivers/drm-i915-Skip-GPU-wait-for-scanout-pin-while-wedged, patches.drivers/drm-i915-TVDAC_STATE_CHG-does-not-indicate-successfu, patches.drivers/drm-i915-Treat-PCH-eDP-like-DP-in-most-places, patches.drivers/drm-i915-Treat-pre-gen4-backlight-duty-cycle-value-c, patches.drivers/drm-i915-Try-harder-during-dp-pattern-1-link-trainin, patches.drivers/drm-i915-Turn-force-VDD-back-off-when-panel-running-, patches.drivers/drm-i915-Unlock-PCH_PP_CONTROL-always, drm/i915, patches.drivers/drm-i915-Use-CK505-as-non-SSC-source-where-available, patches.drivers/drm-i915-Use-DPCD-value-for-max-DP-lanes, patches.drivers/drm-i915-Use-PIPE_CONTROL-for-flushing-on-gen6, patches.drivers/drm-i915-Use-dp_detect_common-in-hotplug-helper-func, patches.drivers/drm-i915-Use-mode_config.mutex-in-ironlake_panel_vdd, patches.drivers/drm-i915-Use-of-a-CPU-fence-is-mandatory-to-update-F, patches.drivers/drm-i915-Use-the-LLC-mode-on-gen6-for-everything-but, patches.drivers/drm-i915-Use-the-uncached-domain-for-the-display-pla, patches.drivers/drm-i915-add-DP-test-request-handling, drm/i915, patches.drivers/drm-i915-add-PLL-sharing-support-to-handle-3-pipes, patches.drivers/drm-i915-allow-cache-sharing-policy-control, patches.drivers/drm-i915-apply-phase-pointer-override-on-SNB-too, patches.drivers/drm-i915-bios-Avoid-temporary-allocation-whilst-sear, patches.drivers/drm-i915-check-for-supported-depth-at-fb-init-time, patches.drivers/drm-i915-close-PM-interrupt-masking-races-in-the-irq, patches.drivers/drm-i915-close-PM-interrupt-masking-races-in-the-rps.patch, patches.drivers/drm-i915-disable-temporal-dithering-on-the-internal-, patches.drivers/drm-i915-don-t-set-SDVO-color-range-on-ILK, patches.drivers/drm-i915-don-t-set-transcoder-bpc-on-CougarPoint, patches.drivers/drm-i915-don-t-set-unpin_work-if-vblank_get-fails, patches.drivers/drm-i915-don-t-use-uninitialized-EDID-bpc-values-whe, patches.drivers/drm-i915-dp-Don-t-turn-CPT-DP-ports-on-too-early, patches.drivers/drm-i915-dp-Explicitly-disable-symbol-scrambling-whi, patches.drivers/drm-i915-dp-Explicitly-request-8-10-channel-coding, patches.drivers/drm-i915-dp-Fix-eDP-on-PCH-DP-on-CPT-PPT, patches.drivers/drm-i915-dp-Fix-the-math-in-intel_dp_link_required, patches.drivers/drm-i915-dp-Introduce-is_cpu_edp, drm/i915/dp, patches.drivers/drm-i915-dp-Remove-eDP-special-cases-from-bandwidth-, patches.drivers/drm-i915-dp-Retry-DPCD-fetch-on-G4X-too, patches.drivers/drm-i915-dp-wait-for-previous-AUX-channel-activity-t, patches.drivers/drm-i915-edp_panel_on-does-not-need-to-return-a-bool, patches.drivers/drm-i915-enable-cacheable-objects-on-Ivybridge, patches.drivers/drm-i915-enable-semaphores-on-per-device, patches.drivers/drm-i915-export-a-CPT-mode-set-verification-function, patches.drivers/drm-i915-fix-ILK-infoframe-support, drm/i915, patches.drivers/drm-i915-fix-PCH-PLL-assertion-check-for-3-pipes, patches.drivers/drm-i915-fix-debug-output-for-3-pipe-configs, patches.drivers/drm-i915-fix-swizzling-on-gen6, drm/i915, patches.drivers/drm-i915-flush-plane-control-changes-on-ILK-as-well, patches.drivers/drm-i915-gtt-Split-out-i915_gem_gtt_rebind_object, patches.drivers/drm-i915-hdmi-HDMI-source-product-description-infofr, patches.drivers/drm-i915-hdmi-send-AVI-info-frames-on-ILK-as-well, patches.drivers/drm-i915-hdmi-split-infoframe-setting-from-infoframe, patches.drivers/drm-i915-i915_gem_object_finish_gtt-must-always-rele, patches.drivers/drm-i915-only-match-on-PCI_BASE_CLASS_DISPLAY, patches.drivers/drm-i915-prevent-division-by-zero-when-asking-for-ch, patches.drivers/drm-i915-properly-cancel-rps_work-on-module-unload-v, patches.drivers/drm-i915-sdvo-Include-LVDS-panels-for-the-IS_DIGITAL, patches.drivers/drm-i915-set-GFX_MODE-to-pre-Ivybridge-default-value, patches.drivers/drm-i915-set-bpc-for-DP-transcoder, drm/i915, patches.drivers/drm-i915-set-watermarks-for-third-pipe-on-IVB, patches.drivers/drm-i915-show-interrupt-info-on-IVB, drm/i915, patches.drivers/drm-i915-simplify-swapin-out-swizzle-checking-a-bit, patches.drivers/drm-i915-split-out-Ironlake-pipe-bpp-picking-code, patches.drivers/drm-i915-split-out-PCH-refclk-update-code, patches.drivers/drm-i915-split-out-plane-update-code, drm/i915, patches.drivers/drm-i915-split-refclk-code-out-of-ironlake_crtc_mode, patches.drivers/drm-i915-support-3-pipes-on-IVB, drm/i915, patches.drivers/drm-i915-use-correct-SPD-type-value, drm/i915, patches.drivers/drm-i915-use-pipe-bpp-in-DP-link, drm/i915, patches.drivers/drm-i915-use-pipe-bpp-in-DP-link-bandwidth-calculati, patches.drivers/drm-i915-use-pipe-bpp-when-setting-HDMI-bpc, patches.drivers/drm-i915-use-transcoder-select-bits-on-VGA-and-HDMI-, patches.drivers/drv-i915-Pull-display_clock_mode-out-of-VBT-table: update drm/i915 to 3.2-rc6 equivalent (bnc#7297470,bnc#729466, bnc#735417)- patches.fixes/dasd-fix-erp-expiration.patch: Delete. Duplicate of s390-43-03-dasd-fix-erp-expiration.patch- patches.arch/s390-43-01-qeth_hd_recover.patch: qeth: improve recovery during resource shortage (bnc#737328,LTC#77239). - patches.arch/s390-43-02-console-panic.patch: kernel: console interrupts vs. panic (bnc#737328,LTC#77272). - patches.arch/s390-43-03-dasd-fix-erp-expiration.patch: dasd: fix expiration handling for recovery requests (bnc#737328,bnc#735543,LTC#77273).- patches.suse/btrfs-8014-add-new-ioctl-to-determine-size-of-compressed-.patch: Refresh. - patches.suse/btrfs-lock-extent-can-drop-gfp_t-argument: Refresh. - patches.suse/btrfs-unlock_extent-can-eliminate-gfp_t-addon: Refresh.- patches.drivers/alsa-sp1-hda-119-Fix-invalid-mute-led-state-on-resume-of-IDT, patches.drivers/alsa-sp1-hda-120-Make-sure-mute-led-reflects-master-mute-state, patches.drivers/alsa-sp1-hda-121-Add-support-of-4-internal-speakers-on-cNB, patches.drivers/alsa-sp2-hda-002-Make-CONFIG_SND_HDA_POWER_SAVE-depending, patches.drivers/alsa-sp2-hda-003-Add-post_suspend-patch-ops, patches.drivers/alsa-sp2-hda-004-Allow-codec-specific-set_power_state-ops, patches.drivers/alsa-sp2-hda-008-sigmatel-Automatically-retrieve-digital-I-O, patches.drivers/alsa-sp2-hda-010-Avoid-touching-mute-VREF-pin-for-IDT-codecs, patches.drivers/alsa-sp2-hda-011-Fix-S3-S4-problem-on-machines-with-VREF-pin, patches.drivers/alsa-sp2-hda-012-Fix-GPIO-LED-setup-for-IDT-92HD75-codecs, patches.drivers/alsa-sp2-hda-013-Fix-remaining-VREF-mute-LED-NID-check-in-po, patches.drivers/drm-i915-By-default-enable-RC6-on-IVB-and-SNB, patches.drivers/drm-i915-add-multi-threaded-forcewake, patches.drivers/drm-i915-pass-ELD-to-HDMI-DP-audio-driver, patches.drivers/drm-i915-set-the-right-SDVO-transcoder-for-CPT, patches.drivers/drm-support-routines-for-HDMI-DP-ELD, patches.drivers/hp_accel-Add-a-new-PNP-id: Refreshed GIT and mainline tagsbtrfs sync with upstream - patches.suse/btrfs-0270-fix-wrong-i_size-when-truncating-a-file-to-a-l.patch: Btrfs: fix wrong i_size when truncating a file to a larger size (FATE#306586). - patches.suse/btrfs-0271-fix-wrong-disk-space-information-of-the-files.patch: Btrfs: fix wrong disk space information of the files (FATE#306586). - patches.suse/btrfs-0272-fix-inaccurate-available-space-on-raid0-profil.patch: Btrfs: fix inaccurate available space on raid0 profile (FATE#306586). - patches.suse/btrfs-0273-keep-orphans-for-subvolume-deletion.patch: btrfs: keep orphans for subvolume deletion (FATE#306586). - patches.suse/btrfs-0274-fix-ctime-update-of-on-disk-inode.patch: Btrfs: fix ctime update of on-disk inode (FATE#306586). - patches.suse/btrfs-0275-add-a-cond_resched-into-the-worker-loop.patch: Btrfs: add a cond_resched() into the worker loop (FATE#306586). - patches.suse/btrfs-0276-Establish-i_ops-before-calling-d_instantiate.patch: BTRFS: Establish i_ops before calling d_instantiate (FATE#306586). - patches.suse/btrfs-0277-deal-with-NULL-srv_rsv-in-the-delalloc-inode-r.patch: Btrfs: deal with NULL srv_rsv in the delalloc inode reservation code (FATE#306586). - patches.suse/btrfs-0278-fix-num_workers_starting-bug-and-other-bugs-in.patch: Btrfs: fix num_workers_starting bug and other bugs in async thread (FATE#306586). - patches.suse/btrfs-0279-deal-with-enospc-from-dirtying-inodes-properly.patch: Btrfs: deal with enospc from dirtying inodes properly (FATE#306586). - patches.suse/btrfs-0280-fix-how-we-do-delalloc-reservations-and-how-we.patch: Btrfs: fix how we do delalloc reservations and how we free reservations on error (FATE#306586). - patches.suse/btrfs-0281-fix-leaked-space-in-truncate.patch: Btrfs: fix leaked space in truncate (FATE#306586). - patches.suse/btrfs-0282-don-t-panic-if-orphan-item-already-exists.patch: Btrfs: don't panic if orphan item already exists (FATE#306586). - patches.suse/btrfs-0283-only-set-cache_generation-if-we-setup-the-bloc.patch: Btrfs: only set cache_generation if we setup the block group (FATE#306586). - patches.suse/btrfs-0284-unplug-every-once-and-a-while.patch: Btrfs: unplug every once and a while (FATE#306586). - patches.suse/btrfs-8018-use-irqsave-spinlocks-everywhere.patch: Refresh. - patches.suse/btrfs-0901-fix-num_workers_starting-bug-and-other-bugs-in.patch: Delete. - patches.suse/btrfs-0902-deal-with-enospc-from-dirtying-inodes-properly.patch: Delete. - patches.suse/btrfs-0903-fix-how-we-do-delalloc-reservations-and-how-we.patch: Delete. - patches.suse/btrfs-0904-fix-leaked-space-in-truncate.patch: Delete. - patches.suse/btrfs-0905-only-set-cache_generation-if-we-setup-the-bloc.patch: Delete. - patches.suse/btrfs-0906-don-t-panic-if-orphan-item-already-exists.patch: Delete. - patches.suse/btrfs-8027-fix-ctime-update-of-on-disk-inode.patch: Delete. - patches.suse/btrfs-8028-fix-wrong-disk-space-information-of-the-files.patch: Delete. - patches.suse/btrfs-8029-fix-wrong-i_size-when-truncating-a-file-to-a-l.patch: Delete. - patches.suse/btrfs-8030-fix-inaccurate-available-space-on-raid0-profil.patch: Delete.- patches.drivers/libata-unlock-hpa-by-default: libata: unlock HPA by default (bnc#299267 bnc#713675).- patches.drivers/cciss-stable-controller-enumeration.patch: Set 'cciss_allow_hpsa=0' per default (bnc#713707).- patches.fixes/pci-hotplug-do-not-register-pcie-ports-for-acpiphp.patch: Refresh.- patches.fixes/per_cpu_ptr_to_phys-non-page-aligned.patch: percpu: fix per_cpu_ptr_to_phys() handling of non-page-aligned addresses (bnc#733543).- Update Xen patches to 3.0.13.- patches.fixes/mac80211-be-more-careful-in-suspend-resume: mac80211: be more careful in suspend/resume (bnc#728329).- patches.fixes/perf-fail-softly-on-eopnotsupp.patch: perf fail softly on EOPNOTSUPP (bnc#736079).- Import RC2 kabi kabi files.btrfs fixes - patches.suse/btrfs-0006-fix-error-check-of-btrfs_lookup_dentry.patch: Refresh. - patches.suse/btrfs-0903-fix-how-we-do-delalloc-reservations-and-how-we.patch: Refresh. - patches.suse/btrfs-0905-only-set-cache_generation-if-we-setup-the-bloc.patch: Btrfs: only set cache_generation if we setup the block group (FATE#306586). - patches.suse/btrfs-0906-don-t-panic-if-orphan-item-already-exists.patch: Btrfs: don't panic if orphan item already exists (FATE#306586). - patches.suse/btrfs-8014-add-new-ioctl-to-determine-size-of-compressed-.patch: Refresh. - patches.suse/btrfs-8024-workaround-for-cleaner-deadlock.patch: btrfs: workaround for cleaner deadlock (FATE#306586). - patches.suse/btrfs-8025-update-global-block_rsv-when-creating-a-new-bl.patch: Btrfs: update global block_rsv when creating a new block group (FATE#306586). - patches.suse/btrfs-8026-fix-possible-deadlock-when-opening-a-seed-devi.patch: Btrfs: fix possible deadlock when opening a seed device (FATE#306586). - patches.suse/btrfs-8027-fix-ctime-update-of-on-disk-inode.patch: Btrfs: fix ctime update of on-disk inode (FATE#306586). - patches.suse/btrfs-8028-fix-wrong-disk-space-information-of-the-files.patch: Btrfs: fix wrong disk space information of the files (FATE#306586). - patches.suse/btrfs-8029-fix-wrong-i_size-when-truncating-a-file-to-a-l.patch: Btrfs: fix wrong i_size when truncating a file to a larger size (FATE#306586). - patches.suse/btrfs-8030-fix-inaccurate-available-space-on-raid0-profil.patch: Btrfs: fix inaccurate available space on raid0 profile (FATE#306586). - patches.suse/btrfs-debug-setpagedirty-tracing.patch: setpagedirty tracing v2. [disabled]- patches.fixes/ipmi-fix-deadlock-in-start_next_msg.patch: ipmi: Fix deadlock in start_next_msg() (bnc#730749).- fix typo in series.conf (no cat involved)- disable fs-fix-how-we-clear-DCACHE_NEED_LOOKUP.patch for now- patches.suse/mm-compaction-introduce-sync-light-migration-hugetlbfs-fix.patch Update signature of hugetlbfs migration callback- patches.drivers/alsa-sp2-hda-014-fix-GPIO-to-control-mute-LED: ALSA: hda - GPIO to control mute LED may be enabled on HP systems with no such HW (bnc#732535).- patches.fixes/dasd-fix-erp-expiration.patch: I/O stalls when writing to a reserved DASD (bnc#735543).- patches.suse/0003a-md-improve-raid10-failure: md/raid10: Improve decision on whether to fail a device with a read error (bnc#735543). - patches.suse/0004-md-raid10-add-failfast-handling-for-reads.patch: Refresh. - patches.suse/0005-md-raid10-add-failfast-handling-for-writes.patch: Refresh.- patches.fixes/batman-adv-Only-write-requested-number-of-byte-to-us.patch: batman-adv: Only write requested number of byte to user buffer (bnc#736149 CVE-2011-4604). - patches.fixes/batman-adv-bat_socket_read-missing-checks.patch: batman-adv: bat_socket_read missing checks (bnc#736149 CVE-2011-4604).- patches.drivers/drm-i915-By-default-enable-RC6-on-IVB-and-SNB: drm/i915: By default, enable RC6 on IVB and SNB when reasonable (bnc#735417). - patches.drivers/iommu-Export-intel_iommu_enabled: iommu: Export intel_iommu_enabled to signal when iommu is in use (bnc#735417).- patches.suse/btrfs-0269-fix-btrfs_end_bio-to-deal-with-write-errors-to.patch: Btrfs: fix btrfs_end_bio to deal with write errors to a single mirror (FATE#306586). - patches.suse/btrfs-0903-fix-how-we-do-delalloc-reservations-and-how-we.patch: Btrfs: fix how we do delalloc reservations and how we free reservations on error (FATE#306586). - patches.suse/btrfs-0904-fix-leaked-space-in-truncate.patch: Btrfs: fix leaked space in truncate (FATE#306586). - patches.suse/btrfs-8014-add-new-ioctl-to-determine-size-of-compressed-.patch: Refresh. - patches.suse/btrfs-unlock_extent-can-eliminate-gfp_t-addon: Refresh.- patches.drivers/0001-iwlagn-separate-firmware-version-warning.patch: Delete. - patches.drivers/0002-iwlagn-bump-firmware-API-for-some-devices.patch: Delete, the 3.0 driver does not work with the new firmware.- patches.arch/s390-42-01-ap-process-requests-after-reset.patch: ap: Setup timer for sending messages after reset (bnc#735369,LTC#76969). - patches.arch/s390-42-02-cio_disallow_driver_io_for_known_to_be_broken_paths.patch: cio: disallow driver io for known to be broken paths (bnc#735369,LTC#77108). - patches.arch/s390-42-03-irq-accounting.patch: kernel: fix interrupt accounting (bnc#735369,LTC#77186).- patches.suse/0004-md-raid10-add-failfast-handling-for-reads.patch: Fix bug which caused an oops (bnc#736257) - patches.suse/0005-md-raid10-add-failfast-handling-for-writes.patch: Refresh to align with previous patch.- patches.fixes/pci-hotplug-do-not-register-pcie-ports-for-acpiphp.patch: PCI / Hotplug: Do not register slots for PCIe ports with native HP (bnc#714552, bnc#732471). - patches.fixes/acpiphp-ignore-root-bridges-using-PCIe-native-hotplug: Delete.- patches.fixes/net-fix-crash-due-to-wrong-dev-in-calling.patch: Reshuffle patch to apply.- patches.fixes/net-fix-crash-due-to-wrong-dev-in-calling.patch: net: fixes a crash due to wrong dev in calling __netif_receive_skb (bnc#732582).- patches.fixes/net-ipv4-relax-AF_INET-check-in-bind.patch: net: ipv4: relax AF_INET check in bind() (bnc#735216).- patches.drivers/Bluetooth_Fixed_Atheros_AR3012_Maryann_PID_VID_supported.patch: Bluetooth: Fixed Atheros AR3012 Maryann PID/VID supported (bnc#732296).- patches.drivers/usb-fix-number-of-mapped-sg-dma-entries.patch: usb: fix number of mapped SG DMA entries.- start of 3.0.14 patches, needed now as there are ABI changes. - patches.kernel.org/alarmtimers-fix-time-comparison.patch: alarmtimers: Fix time comparison. - patches.kernel.org/alsa-hda-realtek-fix-oops-in-alc_mux_select.patch: ALSA: hda/realtek - Fix Oops in alc_mux_select(). - patches.kernel.org/alsa-sis7019-give-slow-codecs-more-time-to-reset.patch: ALSA: sis7019 - give slow codecs more time to reset. - patches.kernel.org/arm-at91-fix-clock-conid-for-atmel_tcb.1-on-9260-9g20.patch: ARM: at91: fix clock conid for atmel_tcb.1 on 9260/9g20. - patches.kernel.org/arm-davinci-da850-evm-change-audio-edma-event-queue-to-eventq_0.patch: ARM: davinci: da850 evm: change audio edma event queue to EVENTQ_0. - patches.kernel.org/arm-davinci-dm646x-evm-wrong-register-used-in-setup_vpif_input_channel_mode.patch: ARM: davinci: dm646x evm: wrong register used in setup_vpif_input_channel_mode. - patches.kernel.org/arm-mx23-recognise-stmp378x-as-mx23.patch: arm: mx23: recognise stmp378x as mx23. - patches.kernel.org/asoc-provide-a-more-complete-dma-driver-stub.patch: ASoC: Provide a more complete DMA driver stub. - patches.kernel.org/fix-apparmor-dereferencing-potentially-freed-dentry-sanitize-__d_path-api.patch: fix apparmor dereferencing potentially freed dentry, sanitize __d_path() API. - patches.kernel.org/fs-proc-meminfo.c-fix-compilation-error.patch: fs/proc/meminfo.c: fix compilation error. - patches.kernel.org/mm-ensure-that-pfn_valid-is-called-once-per-pageblock-when-reserving-pageblocks.patch: mm: Ensure that pfn_valid() is called once per pageblock when reserving pageblocks. - patches.kernel.org/mm-vmalloc-check-for-page-allocation-failure-before-vmlist-insertion.patch: mm: vmalloc: check for page allocation failure before vmlist insertion. - patches.kernel.org/ptp-fix-clock_getres-implementation.patch: ptp: Fix clock_getres() implementation. - patches.kernel.org/thp-add-compound-tail-page-_mapcount-when-mapped.patch: thp: add compound tail page _mapcount when mapped. - patches.kernel.org/thp-set-compound-tail-page-_count-to-zero.patch: thp: set compound tail page _count to zero. - patches.fixes/mm-Ensure-that-pfn_valid-is-called-once-per-pagebloc.patch: Delete. - patches.fixes/mm-vmalloc-check-for-allocation-failure-before-insertion.patch: Delete.- patches.kernel.org/patch-3.0.12-13: Linux 3.0.13. - patches.kernel.org/add-missing-.set-function-for-nt_s390_last_break-regset.patch: Delete. - patches.kernel.org/alsa-lx6464es-fix-device-communication-via-command-bus.patch: Delete. - patches.kernel.org/arm-7161-1-errata-no-automatic-store-buffer-drain.patch: Delete. - patches.kernel.org/arm-mx28-fix-bit-operation-in-clock-setting.patch: Delete. - patches.kernel.org/arm-omap-smartreflex-fix-irq-handling-bug.patch: Delete. - patches.kernel.org/arm-omap2-select-arm_amba-if-omap3_emu-is-defined.patch: Delete. - patches.kernel.org/arm-pxa-fix-inconsistent-config_usb_pxa27x.patch: Delete. - patches.kernel.org/asoc-ensure-wm8731-register-cache-is-synced-when-resuming-from-disabled.patch: Delete. - patches.kernel.org/asoc-fsl_ssi-properly-initialize-the-sysfs-attribute-object.patch: Delete. - patches.kernel.org/asoc-wm8753-skip-noop-reconfiguration-of-dai-mode.patch: Delete. - patches.kernel.org/cfg80211-amend-regulatory-null-dereference-fix.patch: Delete. - patches.kernel.org/cfg80211-fix-race-on-init-and-driver-registration.patch: Delete. - patches.kernel.org/cfg80211-fix-regulatory-null-dereference.patch: Delete. - patches.kernel.org/cgroup_freezer-fix-freezing-groups-with-stopped-tasks.patch: Delete. - patches.kernel.org/clockevents-set-noop-handler-in-clockevents_exchange_device.patch: Delete. - patches.kernel.org/clocksource-fix-bug-with-max_deferment-margin-calculation.patch: Delete. - patches.kernel.org/crypto-mv_cesa-fix-hashing-of-chunks-1920-bytes.patch: Delete. - patches.kernel.org/drm-i915-fix-cb-tuning-check-for-ilk.patch: Delete. - patches.kernel.org/drm-i915-ivybridge-still-has-fences.patch: Delete. - patches.kernel.org/drm-i915-turn-on-a-required-3d-clock-gating-bit-on-sandybridge.patch: Delete. - patches.kernel.org/drm-i915-turn-on-another-required-clock-gating-bit-on-gen6.patch: Delete. - patches.kernel.org/drm-integer-overflow-in-drm_mode_dirtyfb_ioctl.patch: Delete. - patches.kernel.org/drm-radeon-kms-add-some-loop-timeouts-in-pageflip-code.patch: Delete. - patches.kernel.org/drm-radeon-kms-add-some-new-pci-ids.patch: Delete. - patches.kernel.org/drm-radeon-kms-fix-up-gpio-i2c-mask-bits-for-r4xx-for-real.patch: Delete. - patches.kernel.org/drm-radeon-kms-fix-up-gpio-i2c-mask-bits-for-r4xx.patch: Delete. - patches.kernel.org/drm-ttm-request-zeroed-system-memory-pages-for-new-tt-buffer-objects.patch: Delete. - patches.kernel.org/ecryptfs-extend-array-bounds-for-all-filename-chars.patch: Delete. - patches.kernel.org/ecryptfs-flush-file-in-vma-close.patch: Delete. - patches.kernel.org/ehci-fix-a-regression-in-the-iso-scheduler.patch: Delete. - patches.kernel.org/firmware-sigma-fix-endianess-issues.patch: Delete. - patches.kernel.org/firmware-sigma-prevent-out-of-bounds-memory-access.patch: Delete. - patches.kernel.org/firmware-sigma-skip-header-during-crc-generation.patch: Delete. - patches.kernel.org/genirq-fix-race-condition-when-stopping-the-irq-thread.patch: Delete. - patches.kernel.org/genirq-fix-regression-in-irqfixup-irqpoll.patch: Delete. - patches.kernel.org/hid-correct-general-touch-pid.patch: Delete. - patches.kernel.org/hrtimer-fix-extra-wakeups-from-__remove_hrtimer.patch: Delete. - patches.kernel.org/hugetlb-release-pages-in-the-error-path-of-hugetlb_cow.patch: Delete. - patches.kernel.org/hwmon-coretemp-fix-oops-on-driver-load.patch: Delete. - patches.kernel.org/i2c-algo-bit-generate-correct-i2c-address-sequence-for-10-bit-target.patch: Delete. - patches.kernel.org/jump_label-jump_label_inc-may-return-before-the-code-is-patched.patch: Delete. - patches.kernel.org/mac80211-don-t-stop-a-single-aggregation-session-twice.patch: Delete. - patches.kernel.org/mac80211-fix-race-between-the-agg-sm-and-the-tx-data-path.patch: Delete. - patches.kernel.org/nfs-prevent-3.0-from-crashing-if-it-receives-a-partial-layout.patch: Delete. - patches.kernel.org/nl80211-fix-mac-address-validation.patch: Delete. - patches.kernel.org/oprofile-fix-crash-when-unloading-module-hr-timer-mode.patch: Delete. - patches.kernel.org/oprofile-x86-fix-crash-when-unloading-module-nmi-timer-mode.patch: Delete. - patches.kernel.org/p54spi-add-missing-spin_lock_init.patch: Delete. - patches.kernel.org/p54spi-fix-workqueue-deadlock.patch: Delete. - patches.kernel.org/pci-hotplug-shpchp-don-t-blindly-claim-non-amd-0x7450-device-ids.patch: Delete. - patches.kernel.org/perf-fix-parsing-of-__print_flags-in-tp_printk.patch: Delete. - patches.kernel.org/perf-x86-fix-pebs-instruction-unwind.patch: Delete. - patches.kernel.org/revert-mfd-fix-twl4030-dependencies-for-audio-codec.patch: Delete. - patches.kernel.org/rt2x00-fix-efuse-eeprom-reading-on-ppc32.patch: Delete. - patches.kernel.org/rtc-disable-the-alarm-in-the-hardware.patch: Delete. - patches.kernel.org/sched-x86-avoid-unnecessary-overflow-in-sched_clock.patch: Delete. - patches.kernel.org/scsi-silencing-killing-requests-for-dead-queue.patch: Delete. - patches.kernel.org/staging-comedi-fix-mmap_count.patch: Delete. - patches.kernel.org/staging-comedi-fix-oops-for-usb-daq-devices.patch: Delete. - patches.kernel.org/staging-comedi-fix-signal-handling-in-read-and-write.patch: Delete. - patches.kernel.org/staging-usbip-bugfix-for-deadlock.patch: Delete. - patches.kernel.org/sunrpc-ensure-we-return-eagain-in-xs_nospace-if-congestion-is-cleared.patch: Delete. - patches.kernel.org/tick-broadcast-stop-active-broadcast-device-when-replacing-it.patch: Delete. - patches.kernel.org/timekeeping-add-arch_offset-hook-to-ktime_get-functions.patch: Delete. - patches.kernel.org/trace_events_filter-use-rcu_assign_pointer-when-setting-ftrace_event_call-filter.patch: Delete. - patches.kernel.org/tracing-fix-event_subsystem-ref-counting.patch: Delete. - patches.kernel.org/usb-ehci-fix-hub-tt-scheduling-issue-with-iso-transfer.patch: Delete. - patches.kernel.org/usb-ftdi_sio-add-pid-for-propox-ispcable-iii.patch: Delete. - patches.kernel.org/usb-option-add-huawei-e353-controlling-interfaces.patch: Delete. - patches.kernel.org/usb-option-add-simcom-sim5218.patch: Delete. - patches.kernel.org/usb-usb-storage-unusual_devs-entry-for-kingston-dt-101-g2.patch: Delete. - patches.kernel.org/usb-whci-hcd-fix-endian-conversion-in-qset_clear.patch: Delete. - patches.kernel.org/viafb-correct-sync-polarity-for-olpc-dcon.patch: Delete. - patches.kernel.org/x86-fix-acer-aspire-1-reboot-hang.patch: Delete. - patches.kernel.org/x86-mpparse-account-for-bus-types-other-than-isa-and-pci.patch: Delete. - patches.kernel.org/x86-paravirt-pte-updates-in-k-un-map_atomic-need-to-be-synchronous-regardless-of-lazy_mmu-mode.patch: Delete. - patches.kernel.org/xfs-fix-attr2-vs-large-data-fork-assert.patch: Delete. - patches.kernel.org/xfs-force-buffer-writeback-before-blocking-on-the-ilock-in-inode-reclaim.patch: Delete. - patches.kernel.org/xfs-validate-acl-count.patch: Delete. - patches.kernel.org/xhci-fix-bug-in-xhci_clear_command_ring.patch: Delete.- patches.xen/xen3-3.1-fix-i915-tsc_khz: Temporary build fix for Xen kernel (bnc#728329); now retrieved from master branch xen patch, and renamed from patches.drivers/drm-i915-fix-xen-build- patches.drivers/qla4xxx-rc2-update.patch: qla4xxx update to 5.02.00.00.11.2-k2 (bnc#735800). - patches.suse/mm-page-allocator-Do-not-call-direct-reclaim-for-THP-allocations-while-compaction-is-deferred.patch: Fixup patch for series2git. - patches.suse/mm-thp-limit-writes-in-direct-reclaim.patch: Fixup patch for series2git.- patches.drivers/bnx2i-Fixed-kernel-panic-caused-by-unprotected-task.patch: bnx2i: Fixed kernel panic caused by unprotected deref (bnc#734771).- patches.drivers/drm-i915-fix-xen-build: Temporary build fix for Xen kernel (bnc#728329).- patches.suse/mm-thp-limit-writes-in-direct-reclaim.patch: Refresh.- Update hv_storvsc to current to-become-mainline state - patches.suse/staging-hv-storvsc-cleanup_error_handling_in_the_probe_function.patch: Staging: hv: storvsc: Cleanup error handling in the probe function. - patches.suse/staging-hv-storvsc-fix_checkpatch_warnings.patch: Staging: hv: storvsc: Fix checkpatch warnings. - patches.suse/staging-hv-storvsc-fix_error_handling_storvsc_host_reset.patch: Staging: hv: storvsc: Fix error handling storvsc_host_reset(). - patches.suse/staging-hv-storvsc-fixup_the_error_when_processing_set_window_command.patch: Staging: hv: storvsc: Fixup the error when processing SET_WINDOW command. - patches.suse/staging-hv-storvsc-get_rid_of_an_unnecessary_forward_declaration.patch: Staging: hv: storvsc: Get rid of an unnecessary forward declaration. - patches.suse/staging-hv-storvsc-implement_per_device_memory_pools.patch: Staging: hv: storvsc: Implement per device memory pools. - patches.suse/staging-hv-storvsc-remove-last-usage-of-DPRINT_WARN.patch: Staging: hv: storvsc: remove last usage of DPRINT_WARN. - patches.suse/staging-hv-storvsc-support_hot_add_of_scsi_disks.patch: Staging: hv: storvsc: Support hot add of scsi disks. - patches.suse/staging-hv-storvsc-support_hotremoving_of_scsi_devices.patch: Staging: hv: storvsc: Support hot-removing of scsi devices. - patches.suse/staging-hv-storvsc-upgrade_the_vmstor_protocol_version.patch: Staging: hv: storvsc: Upgrade the vmstor protocol version. - patches.suse/staging-hv-storvsc-use_mempools_to_allocate_struct_storvsc_cmd_request.patch: Staging: hv: storvsc: Use mempools to allocate struct storvsc_cmd_request. - patches.suse/staging-hv-storvsc-use_the_accessor_function_shost_priv.patch: Staging: hv: storvsc: Use the accessor function shost_priv(). - patches.suse/staging-hv-storvsc-use_the_macro_kbuild_modname.patch: Staging: hv: storvsc: use the macro KBUILD_MODNAME. - patches.suse/staging-hv-storvsc-use_the_unlocked_version_queuecommand.patch: Staging: hv: storvsc: Use the unlocked version queuecommand.- patches.drivers/drm-i915-DisplayPort-hot-remove-notification-to-audio-driver: drm/i915: DisplayPort hot remove notification to audio driver (bnc#722560). - patches.drivers/drm-i915-HDMI-hot-remove-notification-to-audio-driver: drm/i915: HDMI hot remove notification to audio driver (bnc#722560). - patches.drivers/drm-i915-dont-trigger-hotplug-events-on-uncached-ELD: drm/i915: dont trigger hotplug events on unchanged ELD (bnc#722560). - patches.drivers/drm-i915-fix-ELD-writing-for-SandyBridge: Refresh. - patches.drivers/drm-i915-rename-audio-ELD-registers: drm/i915: rename audio ELD registers (bnc#722560).- patches.drivers/cpufreq-expose-a-cpufreq_quick_get_max-routine: cpufreq: expose a cpufreq_quick_get_max routine (bnc#728329). - patches.drivers/drm-i915-load-a-ring-frequency-scaling-table-v3: drm/i915: load a ring frequency scaling table v3 (bnc#728329). - patches.xen/xen-cpufreq-report: Refresh.- patches.drivers/alsa-sp2-hda-007-Fix-DAC-assignment-for-secondary-headphone-: ALSA: HDA: Fix DAC assignment for secondary headphone on Sigmatel/IDT (bnc#732535). - patches.drivers/alsa-sp2-hda-008-sigmatel-Automatically-retrieve-digital-I-O: ALSA: hda/sigmatel - Automatically retrieve digital I/O widgets (bnc#732535). - patches.drivers/alsa-sp2-hda-009-pwr_nids-cleanup-for-IDT-codecs: ALSA: hda - pwr_nids cleanup for IDT codecs (bnc#732535). - patches.drivers/alsa-sp2-hda-010-Avoid-touching-mute-VREF-pin-for-IDT-codecs: ALSA: hda - Avoid touching mute-VREF pin for IDT codecs (bnc#732535). - patches.drivers/alsa-sp2-hda-011-Fix-S3-S4-problem-on-machines-with-VREF-pin: ALSA: hda - Fix S3/S4 problem on machines with VREF-pin mute-LED (bnc#732535). - patches.drivers/alsa-sp2-hda-012-Fix-GPIO-LED-setup-for-IDT-92HD75-codecs: ALSA: hda - Fix GPIO LED setup for IDT 92HD75 codecs (bnc#732535). - patches.drivers/alsa-sp2-hda-013-Fix-remaining-VREF-mute-LED-NID-check-in-po: ALSA: hda - Fix remaining VREF mute-LED NID check in post-3.1 changes (bnc#732535).- patches.drivers/0001-be2net-don-t-create-multiple-TXQs-in-BE2.patch: be2net: don't create multiple TXQs in BE2. (bnc#733435)- Update Xen patches to c/s 1131.- patches.fixes/md-refine-interpretation-of-hold_active-UNTIL_IOCTL.patch: md: refine interpretation of "hold_active == UNTIL_IOCTL". - patches.fixes/md-take-a-reference-to-mddev-during-sysfs-access.patch: md: take a reference to mddev during sysfs access. Patches from mainline that solve some issues with races in sysfs access.- patches.suse/btrfs-8019-let-fiemap-flag-compressed-extents.patch: btrfs: let fiemap flag compressed extents (FATE#306586). - patches.suse/btrfs-8020-simplify-move_pages-and-copy_pages.patch: btrfs: simplify move_pages and copy_pages (FATE#306586). - patches.suse/btrfs-8021-Prefix-mount-messages-with-btrfs-for-clarity.patch: Prefix mount messages with btrfs: for clarity (FATE#306586). - patches.suse/btrfs-8022-forced-readonly-when-free_log_tree-fails.patch: Btrfs: forced readonly when free_log_tree fails (FATE#306586). - patches.suse/btrfs-8023-forced-readonly-when-orphan_del-fails.patch: Btrfs: forced readonly when orphan_del fails (FATE#306586). - patches.suse/fs-FIEMAP-add-flag-for-compressed-extent.patch: fs: FIEMAP: add flag for compressed extent (FATE#306586).Patch is mainline, correct patch header: - patches.fixes/percpu_fix_chunk_range_calculation.patch: Refresh.btrfs sync upstream accepted patches - patches.suse/btrfs-0265-try-to-allocate-from-cluster-even-at-LOOP_NO_E.patch: Btrfs: try to allocate from cluster even at LOOP_NO_EMPTY_SIZE (FATE#306586). - patches.suse/btrfs-0266-try-cluster-but-don-t-advance-in-search-list.patch: Btrfs: try cluster but don't advance in search list (FATE#306586). - patches.suse/btrfs-0267-check-if-the-to-be-added-device-is-writable.patch: Btrfs: check if the to-be-added device is writable (FATE#306586). - patches.suse/btrfs-0268-drop-spin-lock-when-memory-alloc-fails.patch: Btrfs: drop spin lock when memory alloc fails (FATE#306586). - patches.suse/btrfs-0900-add-allocator-tracepoints.patch: Refresh. - patches.suse/btrfs-8008-drop-spin-lock-when-memory-alloc-fails.patch: Delete. - patches.suse/btrfs-8010-check-if-the-to-be-added-device-is-writable.patch: Delete.- patches.fixes/bonding-eliminate-bond_close-race-conditions-prepare.patch: bonding: properly stop queuing work when requested. - patches.fixes/bonding-eliminate-bond_close-race-conditions.patch: bonding: eliminate bond_close race conditions (bnc#602969, bnc#735277). - patches.fixes/bonding-minimize-race-window-on-miimon-rearming.patch: Delete.- patches.arch/ia64-resvd-overlap: ia64: Merge overlapping reserved regions (bnc#73149).- patches.drivers/megaraid-sas-continue-booting-on-FAULT.patch: megaraid_sas: Continue booting immediately if FW in FAULT at driver load time (bnc#731009).- patches.fixes/disable-hifn_795x-64-bit-compile: crypto: Make hifn_795x build depend on !ARCH_DMA_ADDR_T_64BIT (bnc#733248).- patches.suse/btrfs-8018-use-irqsave-spinlocks-everywhere.patch: Refresh. - patches.suse/btrfs-async_thread-btrfs_stop_workers-should-return-void: Refresh.- patches.suse/btrfs-8017-reduce-btrfs_path-size.patch: Refresh. - patches.suse/btrfs-8018-use-irqsave-spinlocks-everywhere.patch: btrfs: use irqsave spinlocks everywhere (FATE#306586 bnc#734522).- patches.suse/btrfs-add-extent_state-alloc-free-tracing: Refresh.- patches.suse/0002-btrfs-Introduce-btrfs_get_maps_dev.patch: Refresh. - patches.suse/btrfs-0900-add-allocator-tracepoints.patch: Btrfs: add allocator tracepoints (FATE#306586). - patches.suse/btrfs-0901-fix-num_workers_starting-bug-and-other-bugs-in.patch: Btrfs: fix num_workers_starting bug and other bugs in async thread (FATE#306586). - patches.suse/btrfs-0902-deal-with-enospc-from-dirtying-inodes-properly.patch: Btrfs: deal with enospc from dirtying inodes properly (FATE#306586). - patches.suse/btrfs-8016-skip-compression-of-very-small-extents.patch: btrfs: skip compression of very small extents (FATE#306586). - patches.suse/btrfs-8017-reduce-btrfs_path-size.patch: btrfs: reduce btrfs_path size (FATE#306586). - patches.suse/btrfs-async_thread-btrfs_stop_workers-should-return-void: Refresh. - patches.suse/btrfs-set_extent_bit-should-return-void: Refresh.- patches.suse/dmapi-xfs_free_eof_haslock-flag-is-not-always-checked: DMAPI: XFS_FREE_EOF_HASLOCK flag is not always checked (bnc#733390).- Forgot my signed-off-by: on some patches: - patches.drivers/USB3-0287-usb-fix-implicit-usage-of-gfp.h-in-host-xhci-hub.c.patch: Refresh. - patches.drivers/USB3-0293-usbnet-fix-oops-in-usbnet_start_xmit.patch: Refresh. - patches.drivers/USB3-0294-Fix-incorrect-usage-of-NET_IP_ALIGN.patch: Refresh. - patches.drivers/USB3-0295-net-usb-Misc.-fixes-for-the-LG-VL600-LTE-USB-modem.patch: Refresh. - patches.drivers/USB3-0336-net-next-asix-PHY_MODE_RTL8211CL-should-be-0xC.patch: Refresh. - patches.drivers/USB3-0337-net-next-asix-poll-in-asix_get_phyid-in-case-phy-not-ready.patch: Refresh. - patches.drivers/USB3-0338-net-next-asix-reduce-AX88772-init-time-by-about-2-seconds.patch: Refresh. - patches.drivers/USB3-0339-net-next-asix-V2-more-fixes-for-ax88178-phy-init-sequence.patch: Refresh. - patches.drivers/USB3-0340-net-next-asix-V2-Update-VERSION.patch: Refresh. - patches.drivers/USB3-0352-xHCI-reset-on-resume-quirk-for-NEC-uPD720200.patch: Refresh. - patches.drivers/USB3-0366-Revert-xHCI-reset-on-resume-quirk-for-NEC-uPD720200.patch: Refresh.- More USB updates as 3.2 starts to settle down. - patches.drivers/USB3-0281-NET-asix-fix-ethtool-e-for-AX88178-USB-dongle.patch: Refresh. - patches.drivers/USB3-0287-usb-fix-implicit-usage-of-gfp.h-in-host-xhci-hub.c.patch: usb: fix implicit usage of gfp.h in host/xhci-hub.c. - patches.drivers/USB3-0293-usbnet-fix-oops-in-usbnet_start_xmit.patch: usbnet: fix oops in usbnet_start_xmit. - patches.drivers/USB3-0294-Fix-incorrect-usage-of-NET_IP_ALIGN.patch: Fix incorrect usage of NET_IP_ALIGN. - patches.drivers/USB3-0295-net-usb-Misc.-fixes-for-the-LG-VL600-LTE-USB-modem.patch: net/usb: Misc. fixes for the LG-VL600 LTE USB modem. - patches.drivers/USB3-0334-USB-option-add-id-for-3G-dongle-Model-VT1000-of-Viettel.patch: USB: option: add id for 3G dongle Model VT1000 of Viettel. - patches.drivers/USB3-0336-net-next-asix-PHY_MODE_RTL8211CL-should-be-0xC.patch: net-next:asix:PHY_MODE_RTL8211CL should be 0xC. - patches.drivers/USB3-0337-net-next-asix-poll-in-asix_get_phyid-in-case-phy-not-ready.patch: net-next:asix:poll in asix_get_phyid in case phy not ready. - patches.drivers/USB3-0338-net-next-asix-reduce-AX88772-init-time-by-about-2-seconds.patch: net-next:asix: reduce AX88772 init time by about 2 seconds. - patches.drivers/USB3-0339-net-next-asix-V2-more-fixes-for-ax88178-phy-init-sequence.patch: net-next:asix: V2 more fixes for ax88178 phy init sequence. - patches.drivers/USB3-0340-net-next-asix-V2-Update-VERSION.patch: net-next:asix: V2 Update VERSION. - patches.drivers/USB3-0345-OHCI-final-fix-for-NVIDIA-problems-I-hope.patch: OHCI: final fix for NVIDIA problems (I hope). - patches.drivers/USB3-0352-xHCI-reset-on-resume-quirk-for-NEC-uPD720200.patch: xHCI: reset-on-resume quirk for NEC uPD720200. - patches.drivers/USB3-0366-Revert-xHCI-reset-on-resume-quirk-for-NEC-uPD720200.patch: Revert "xHCI: reset-on-resume quirk for NEC uPD720200".- patches.kernel.org/drm-radeon-kms-fix-up-gpio-i2c-mask-bits-for-r4xx.patch: Refresh.- Update to 3.0.13-rc1 patch level + one revert - Update config files. - patches.kernel.org/add-missing-.set-function-for-nt_s390_last_break-regset.patch: add missing .set function for NT_S390_LAST_BREAK regset. - patches.kernel.org/alsa-lx6464es-fix-device-communication-via-command-bus.patch: ALSA: lx6464es - fix device communication via command bus. - patches.kernel.org/arm-7161-1-errata-no-automatic-store-buffer-drain.patch: ARM: 7161/1: errata: no automatic store buffer drain. - patches.kernel.org/arm-mx28-fix-bit-operation-in-clock-setting.patch: arm: mx28: fix bit operation in clock setting. - patches.kernel.org/arm-omap-smartreflex-fix-irq-handling-bug.patch: ARM: OMAP: smartreflex: fix IRQ handling bug. - patches.kernel.org/arm-omap2-select-arm_amba-if-omap3_emu-is-defined.patch: ARM: OMAP2: select ARM_AMBA if OMAP3_EMU is defined. - patches.kernel.org/arm-pxa-fix-inconsistent-config_usb_pxa27x.patch: ARM: pxa: fix inconsistent CONFIG_USB_PXA27X. - patches.kernel.org/asoc-ensure-wm8731-register-cache-is-synced-when-resuming-from-disabled.patch: ASoC: Ensure WM8731 register cache is synced when resuming from disabled. - patches.kernel.org/asoc-fsl_ssi-properly-initialize-the-sysfs-attribute-object.patch: ASoC: fsl_ssi: properly initialize the sysfs attribute object. - patches.kernel.org/asoc-wm8753-skip-noop-reconfiguration-of-dai-mode.patch: ASoC: wm8753: Skip noop reconfiguration of DAI mode. - patches.kernel.org/cfg80211-amend-regulatory-null-dereference-fix.patch: cfg80211: amend regulatory NULL dereference fix. - patches.kernel.org/cfg80211-fix-race-on-init-and-driver-registration.patch: cfg80211: fix race on init and driver registration. - patches.kernel.org/cfg80211-fix-regulatory-null-dereference.patch: cfg80211: fix regulatory NULL dereference. - patches.kernel.org/cgroup_freezer-fix-freezing-groups-with-stopped-tasks.patch: cgroup_freezer: fix freezing groups with stopped tasks. - patches.kernel.org/clockevents-set-noop-handler-in-clockevents_exchange_device.patch: clockevents: Set noop handler in clockevents_exchange_device(). - patches.kernel.org/clocksource-fix-bug-with-max_deferment-margin-calculation.patch: clocksource: Fix bug with max_deferment margin calculation. - patches.kernel.org/crypto-mv_cesa-fix-hashing-of-chunks-1920-bytes.patch: crypto: mv_cesa - fix hashing of chunks > 1920 bytes. - patches.kernel.org/drm-i915-fix-cb-tuning-check-for-ilk.patch: drm/i915: fix CB tuning check for ILK+. - patches.kernel.org/drm-i915-ivybridge-still-has-fences.patch: drm/i915: Ivybridge still has fences!. - patches.kernel.org/drm-i915-turn-on-a-required-3d-clock-gating-bit-on-sandybridge.patch: drm/i915: Turn on a required 3D clock gating bit on Sandybridge. - patches.kernel.org/drm-i915-turn-on-another-required-clock-gating-bit-on-gen6.patch: drm/i915: Turn on another required clock gating bit on gen6. - patches.kernel.org/drm-integer-overflow-in-drm_mode_dirtyfb_ioctl.patch: drm: integer overflow in drm_mode_dirtyfb_ioctl(). - patches.kernel.org/drm-radeon-kms-add-some-loop-timeouts-in-pageflip-code.patch: drm/radeon/kms: add some loop timeouts in pageflip code. - patches.kernel.org/drm-radeon-kms-add-some-new-pci-ids.patch: drm/radeon/kms: add some new pci ids. - patches.kernel.org/drm-radeon-kms-fix-up-gpio-i2c-mask-bits-for-r4xx-for-real.patch: drm/radeon/kms: fix up gpio i2c mask bits for r4xx for real. - patches.kernel.org/drm-radeon-kms-fix-up-gpio-i2c-mask-bits-for-r4xx.patch: drm/radeon/kms: fix up gpio i2c mask bits for r4xx. - patches.kernel.org/drm-ttm-request-zeroed-system-memory-pages-for-new-tt-buffer-objects.patch: drm/ttm: request zeroed system memory pages for new TT buffer objects. - patches.kernel.org/ecryptfs-extend-array-bounds-for-all-filename-chars.patch: eCryptfs: Extend array bounds for all filename chars. - patches.kernel.org/ecryptfs-flush-file-in-vma-close.patch: eCryptfs: Flush file in vma close. - patches.kernel.org/ehci-fix-a-regression-in-the-iso-scheduler.patch: EHCI : Fix a regression in the ISO scheduler. - patches.kernel.org/firmware-sigma-fix-endianess-issues.patch: firmware: Sigma: Fix endianess issues. - patches.kernel.org/firmware-sigma-prevent-out-of-bounds-memory-access.patch: firmware: Sigma: Prevent out of bounds memory access. - patches.kernel.org/firmware-sigma-skip-header-during-crc-generation.patch: firmware: Sigma: Skip header during CRC generation. - patches.kernel.org/genirq-fix-race-condition-when-stopping-the-irq-thread.patch: genirq: Fix race condition when stopping the irq thread. - patches.kernel.org/genirq-fix-regression-in-irqfixup-irqpoll.patch: genirq: fix regression in irqfixup, irqpoll. - patches.kernel.org/hid-correct-general-touch-pid.patch: HID: Correct General touch PID. - patches.kernel.org/hrtimer-fix-extra-wakeups-from-__remove_hrtimer.patch: hrtimer: Fix extra wakeups from __remove_hrtimer(). - patches.kernel.org/hugetlb-release-pages-in-the-error-path-of-hugetlb_cow.patch: hugetlb: release pages in the error path of hugetlb_cow(). - patches.kernel.org/hwmon-coretemp-fix-oops-on-driver-load.patch: hwmon: (coretemp) Fix oops on driver load. - patches.kernel.org/i2c-algo-bit-generate-correct-i2c-address-sequence-for-10-bit-target.patch: i2c-algo-bit: Generate correct i2c address sequence for 10-bit target. - patches.kernel.org/jump_label-jump_label_inc-may-return-before-the-code-is-patched.patch: jump_label: jump_label_inc may return before the code is patched. - patches.kernel.org/mac80211-don-t-stop-a-single-aggregation-session-twice.patch: mac80211: don't stop a single aggregation session twice. - patches.kernel.org/mac80211-fix-race-between-the-agg-sm-and-the-tx-data-path.patch: mac80211: fix race between the AGG SM and the Tx data path. - patches.kernel.org/nfs-prevent-3.0-from-crashing-if-it-receives-a-partial-layout.patch: NFS: Prevent 3.0 from crashing if it receives a partial layout. - patches.kernel.org/nl80211-fix-mac-address-validation.patch: nl80211: fix MAC address validation. - patches.kernel.org/oprofile-fix-crash-when-unloading-module-hr-timer-mode.patch: oprofile: Fix crash when unloading module (hr timer mode). - patches.kernel.org/oprofile-x86-fix-crash-when-unloading-module-nmi-timer-mode.patch: oprofile, x86: Fix crash when unloading module (nmi timer mode). - patches.kernel.org/p54spi-add-missing-spin_lock_init.patch: p54spi: Add missing spin_lock_init. - patches.kernel.org/p54spi-fix-workqueue-deadlock.patch: p54spi: Fix workqueue deadlock. - patches.kernel.org/pci-hotplug-shpchp-don-t-blindly-claim-non-amd-0x7450-device-ids.patch: PCI hotplug: shpchp: don't blindly claim non-AMD 0x7450 device IDs. - patches.kernel.org/perf-fix-parsing-of-__print_flags-in-tp_printk.patch: perf: Fix parsing of __print_flags() in TP_printk(). - patches.kernel.org/perf-x86-fix-pebs-instruction-unwind.patch: perf/x86: Fix PEBS instruction unwind. - patches.kernel.org/revert-hwmon-coretemp-fix-oops-on-driver-load.patch: Revert "hwmon: (coretemp) Fix oops on driver load". - patches.kernel.org/revert-mfd-fix-twl4030-dependencies-for-audio-codec.patch: revert "mfd: Fix twl4030 dependencies for audio codec". - patches.kernel.org/rt2x00-fix-efuse-eeprom-reading-on-ppc32.patch: rt2x00: Fix efuse EEPROM reading on PPC32. - patches.kernel.org/rtc-disable-the-alarm-in-the-hardware.patch: rtc: Disable the alarm in the hardware. - patches.kernel.org/sched-x86-avoid-unnecessary-overflow-in-sched_clock.patch: sched, x86: Avoid unnecessary overflow in sched_clock. - patches.kernel.org/scsi-silencing-killing-requests-for-dead-queue.patch: SCSI: Silencing 'killing requests for dead queue'. - patches.kernel.org/staging-comedi-fix-mmap_count.patch: Staging: comedi: fix mmap_count. - patches.kernel.org/staging-comedi-fix-oops-for-usb-daq-devices.patch: staging: comedi: fix oops for USB DAQ devices. - patches.kernel.org/staging-comedi-fix-signal-handling-in-read-and-write.patch: Staging: comedi: fix signal handling in read and write. - patches.kernel.org/staging-usbip-bugfix-for-deadlock.patch: staging: usbip: bugfix for deadlock. - patches.kernel.org/sunrpc-ensure-we-return-eagain-in-xs_nospace-if-congestion-is-cleared.patch: SUNRPC: Ensure we return EAGAIN in xs_nospace if congestion is cleared. - patches.kernel.org/tick-broadcast-stop-active-broadcast-device-when-replacing-it.patch: tick-broadcast: Stop active broadcast device when replacing it. - patches.kernel.org/timekeeping-add-arch_offset-hook-to-ktime_get-functions.patch: timekeeping: add arch_offset hook to ktime_get functions. - patches.kernel.org/trace_events_filter-use-rcu_assign_pointer-when-setting-ftrace_event_call-filter.patch: trace_events_filter: Use rcu_assign_pointer() when setting ftrace_event_call->filter. - patches.kernel.org/tracing-fix-event_subsystem-ref-counting.patch: tracing: fix event_subsystem ref counting. - patches.kernel.org/usb-ehci-fix-hub-tt-scheduling-issue-with-iso-transfer.patch: USB: EHCI: fix HUB TT scheduling issue with iso transfer. - patches.kernel.org/usb-ftdi_sio-add-pid-for-propox-ispcable-iii.patch: usb: ftdi_sio: add PID for Propox ISPcable III. - patches.kernel.org/usb-option-add-huawei-e353-controlling-interfaces.patch: usb: option: add Huawei E353 controlling interfaces. - patches.kernel.org/usb-option-add-simcom-sim5218.patch: usb: option: add SIMCom SIM5218. - patches.kernel.org/usb-usb-storage-unusual_devs-entry-for-kingston-dt-101-g2.patch: USB: usb-storage: unusual_devs entry for Kingston DT 101 G2. - patches.kernel.org/usb-whci-hcd-fix-endian-conversion-in-qset_clear.patch: USB: whci-hcd: fix endian conversion in qset_clear(). - patches.kernel.org/viafb-correct-sync-polarity-for-olpc-dcon.patch: viafb: correct sync polarity for OLPC DCON. - patches.kernel.org/x86-fix-acer-aspire-1-reboot-hang.patch: x86: Fix "Acer Aspire 1" reboot hang. - patches.kernel.org/x86-mpparse-account-for-bus-types-other-than-isa-and-pci.patch: x86/mpparse: Account for bus types other than ISA and PCI. - patches.kernel.org/x86-paravirt-pte-updates-in-k-un-map_atomic-need-to-be-synchronous-regardless-of-lazy_mmu-mode.patch: x86/paravirt: PTE updates in k(un)map_atomic need to be synchronous, regardless of lazy_mmu mode. - patches.kernel.org/xfs-fix-attr2-vs-large-data-fork-assert.patch: xfs: fix attr2 vs large data fork assert. - patches.kernel.org/xfs-force-buffer-writeback-before-blocking-on-the-ilock-in-inode-reclaim.patch: xfs: force buffer writeback before blocking on the ilock in inode reclaim. - patches.kernel.org/xfs-validate-acl-count.patch: xfs: validate acl count. - patches.kernel.org/xhci-fix-bug-in-xhci_clear_command_ring.patch: xHCI: fix bug in xhci_clear_command_ring(). - patches.fixes/cgroup_freezer_freeze_stopped_tasks_correctly.patch: Delete. - patches.fixes/drm-radeon-kms-fix-up-gpio-i2c-mask-bits-for-r4xx.patch: Delete. - patches.fixes/pnfs-fix: Delete. - patches.fixes/scsi-silencing-killing-requests-for-dead-queue: Delete. - patches.fixes/x86-sched-avoid-overflow-in-cyc_2_ns.patch: Delete.- patches.kernel.org/b43-refuse-to-load-unsupported-firmware.patch: Delete.- supported.conf: Update supported status of read-only, spectator mode GFS2. (FATE#307584)- patches.suse/btrfs-8015-make-lzo-the-default-compression-scheme.patch: Btrfs: make lzo the default compression scheme (FATE#306586).- patches.suse/btrfs-1004-add-basic-restriper-infrastructure.patch: Refresh. - patches.suse/btrfs-1015-allow-for-cancelling-restriper.patch: Refresh. - patches.suse/btrfs-1019-get-rid-of-btrfs_balance-function.patch: Refresh. - patches.suse/btrfs-1020-add-restripe-progress-reporting.patch: Refresh. - patches.suse/btrfs-8014-add-new-ioctl-to-determine-size-of-compressed-.patch: btrfs: add new ioctl to determine size of compressed file (FATE#306586). - patches.suse/btrfs-unlock_extent-can-eliminate-gfp_t-addon: fixup -- btrfs: unlock_extent can drop gfp_t argument.- patches.drivers/bug-732296_btusb-Add-Atheros-AR3012-Maryann-PID-VID-supported.patch: Bluetooth: Add Atheros AR3012 Maryann PID/VID supported. (bnc#732296)- patches.suse/staging-hv-storvsc-fix-a-bug-in-create_bounce_buffer.patch: Staging: hv: storvsc: Fix a bug in create_bounce_buffer() (bnc#724616).- patches.arch/intel_iommu_fix_wrong_firmware_warning.patch: intel iommu: Only check for iommu ioat BIOS bug if iommu is detected (bnc#733702).- patches.fixes/0001-pciehp-By-default-handle-resume.patch: pciehp: By default handle resume (bnc#734526).- patches.suse/0001-Revert-serial-core-remove-uart_update_termios.patch: Revert "serial: core, remove uart_update_termios" (bnc#718518). - patches.suse/0002-Revert-serial-core-do-not-set-DTR-RTS-twice-on-st.patch: Revert "serial: core, do not set DTR/RTS twice on startup" (bnc#718518). - patches.suse/0003-Revert-serial-core-move-termios-handling-to-uart_.patch: Revert "serial: core, move termios handling to uart_startup" (bnc#718518). - patches.suse/0004-Revert-serial-fix-termios-settings-in-open.patch: Revert "serial: fix termios settings in open" (bnc#718518). - patches.suse/0005-Revert-serial-Use-block_til_ready-helper.patch: Revert "serial: Use block_til_ready helper" (bnc#718518).- patches.fixes/dm-use-done-bytes-for-io-completion.patch: dm: Use done_bytes for io completion (bnc#711378).- patches.suse/staging-hv-storvsc_cleanup_storvsc_device_alloc.patch: Staging: hv: storvsc: Cleanup storvsc_device_alloc() (bnc#724616). - patches.suse/staging-hv-storvsc_disable_clustering.patch: Staging: hv: storvsc: Disable clustering (bnc#724616). - patches.suse/staging-hv-storvsc_fix_a_bug_in_copy_from_bounce_buffer.patch: Staging: hv: storvsc: Fix a bug in copy_from_bounce_buffer() (bnc#724616). - patches.suse/staging-hv-storvsc_fix_a_bug_in_storvsc_command_completion.patch: Staging: hv: storvsc: Fix a bug in storvsc_command_completion() (bnc#724616).- patches.fixes/kvm-KVM-IOMMU-Disable-device-assignment-without-interrup.patch: KVM: IOMMU: Disable device assignment without interrupt remapping (bnc#724906).- patches.suse/btrfs-8013-sector-size-check-during-mount.patch: Sector Size check during Mount (FATE#306586 bnc#724620).- patches.suse/01a-md-failfast-metadata: Use FAILFAST on metadata writes where appropriate (FATE#311379).- patches.fixes/x86-sched-avoid-overflow-in-cyc_2_ns.patch: sched, x86: Avoid unnecessary overflow in sched_clock (bnc#725709).- patches.suse/drm-edid-workaround-shift.patch: drm/edid: Fix EDID block that is shifted by up to 3 bytes (bnc#712899 et.al.). This workaround will be removed once the underlying issue has been understood and fixed.- patches.drivers/drm_radeon_fix_panic_on_unload.patch: drm/radeon: Don't destroy i2c bus rec in radeon_ext_tmds_enc_destroy() (bnc#731739).- patches.fixes/scsi-don-t-use-execute_in_process_context.patch: Remove patch which was rejected upstream (bnc#733236).- patches.suse/dasd-failfast-expires: Fixup patch to actually display the sysfs attribute.- supported.conf: mark ide-cd_mod as supported (bnc#732132).- enable 'restriper' patchset- patches.suse/btrfs-submit_bio_hook-error-push-up: Refresh.- patches.suse/btrfs-0254-scrub-handle-ENOMEM-from-init_ipath.patch: btrfs scrub: handle -ENOMEM from init_ipath() (FATE#306586). - patches.suse/btrfs-0256-fix-deadlock-on-metadata-reservation-when-evic.patch: Btrfs: fix deadlock on metadata reservation when evicting a inode (FATE#306586). - patches.suse/btrfs-0257-Don-t-error-on-resizing-FS-to-same-size.patch: Btrfs: Don't error on resizing FS to same size (FATE#306586). - patches.suse/btrfs-0258-fix-oops-when-calling-statfs-on-readonly-devic.patch: Btrfs: fix oops when calling statfs on readonly device (FATE#306586). - patches.suse/btrfs-0259-initialize-new-bitmaps-list.patch: Btrfs: initialize new bitmaps' list (FATE#306586). - patches.suse/btrfs-0260-reset-cluster-s-max_size-when-creating-bitmap.patch: Btrfs: reset cluster's max_size when creating bitmap (FATE#306586). - patches.suse/btrfs-0261-start-search-for-new-cluster-at-the-beginning.patch: Btrfs: start search for new cluster at the beginning (FATE#306586). - patches.suse/btrfs-0262-skip-block-groups-without-enough-space-for-a-c.patch: Btrfs: skip block groups without enough space for a cluster (FATE#306586). - patches.suse/btrfs-0263-skip-allocation-attempt-from-empty-cluster.patch: Btrfs: skip allocation attempt from empty cluster (FATE#306586). - patches.suse/btrfs-0264-fix-meta-data-raid-repair-merge-problem.patch: Btrfs: fix meta data raid-repair merge problem (FATE#306586). - patches.suse/btrfs-8003-scrub-handle-ENOMEM-from-init_ipath.patch: Delete. - patches.suse/btrfs-8005-fix-deadlock-on-metadata-reservation-when-evic.patch: Delete. - patches.suse/btrfs-8006-Don-t-error-on-resizing-FS-to-same-size.patch: Delete. - patches.suse/btrfs-8009-fix-oops-when-calling-statfs-on-readonly-devic.patch: Delete. - patches.suse/btrfs-8011-initialize-new-bitmaps-list.patch: Delete.- patches.suse/btrfs-8008-drop-spin-lock-when-memory-alloc-fails.patch: Btrfs: drop spin lock when memory alloc fails (FATE#306586). - patches.suse/btrfs-8009-fix-oops-when-calling-statfs-on-readonly-devic.patch: Btrfs: fix oops when calling statfs on readonly device (FATE#306586). - patches.suse/btrfs-8010-check-if-the-to-be-added-device-is-writable.patch: Btrfs: check if the to-be-added device is writable (FATE#306586). - patches.suse/btrfs-8011-initialize-new-bitmaps-list.patch: Btrfs: initialize new bitmaps' list (FATE#306586). - patches.suse/btrfs-catch-locking-failures-in-set-clear-extent_bit: Refresh. - patches.suse/btrfs-use-mempools-for-extent_state-structures: Refresh. - patches.suse/btrfs-8001-btrfs_calc_avail_data_space-cope-with-no-read-.patch: Delete. - patches.suse/btrfs-8002-Fix-the-write-error-into-tiny-space.patch: Delete.- patches.fixes/cgroup_freezer_freeze_stopped_tasks_correctly.patch: Updated reference to the upstream commmit. Patch got accepted in the meantime- patches.fixes/mm-Ensure-that-pfn_valid-is-called-once-per-pagebloc.patch: mm: Ensure that pfn_valid is called once per pageblock when reserving pageblocks (bnc#731261, bnc#730731).- patches.drivers/drm-i915-Move-i915_read-write-out-of-line: i915: Move i915_read/write out of line (bnc#729518). - patches.drivers/drm-i915-add-multi-threaded-forcewake: drm/i915: add multi-threaded forcewake support (bnc#729518).- patches.xen/xen-pcpu-hotplug: Fix a number of problems. - Refresh other Xen patches.- patches.drivers/mpt2sas-added-missing-mpt2sas_base_detach-call-from-scsih_remove-context: mpt2sas: Added missing mpt2sas_base_detach call from scsih_remove context (bnc#728086).- patches.fixes/pnfs-fix: NFSv4.1: File layout only supports whole file layouts (FATE#310250).- patches.drivers/001-pstore_3_2_fixes.patch: pstore: defer inserting OOPS entries into pstore (bnc#718551). - patches.drivers/002-pstore_3_2_fixes.patch: pstore: change mutex locking to spin_locks (bnc#718551). - patches.drivers/003-pstore_3_2_fixes.patch: pstore: make pstore write function return normal success/fail value (bnc#718551). - patches.drivers/004-pstore_3_2_fixes.patch: pstore: pass allocated memory region back to caller (bnc#718551).- patches.drivers/tg3-Fix-TSO-CAP-for-5704-devs-w-ASF-enabled.patch: tg3: Fix TSO CAP for 5704 devs w / ASF enabled. - patches.drivers/tg3-Scale-back-code-that-modifies-MRRS.patch: tg3: Scale back code that modifies MRRS.- Linux 3.0.12- patches.suse/dasd-failfast-expires: Add failfast_expires configuration to dasd (Fate#311379).btrfs: experimental 'restriper' patchset, not applied by default - patches.suse/btrfs-1000-get-rid-of-_alloc_profile-fields.patch: Btrfs: get rid of *_alloc_profile fields (FATE#306586). - patches.suse/btrfs-1001-introduce-masks-for-chunk-type-and-profile.patch: Btrfs: introduce masks for chunk type and profile (FATE#306586). - patches.suse/btrfs-1002-add-btrfs_AVAIL_ALLOC_BIT_SINGLE-bit.patch: Btrfs: add BTRFS_AVAIL_ALLOC_BIT_SINGLE bit (FATE#306586). - patches.suse/btrfs-1003-make-avail_-_alloc_bits-fields-dynamic.patch: Btrfs: make avail_*_alloc_bits fields dynamic (FATE#306586). - patches.suse/btrfs-1004-add-basic-restriper-infrastructure.patch: Btrfs: add basic restriper infrastructure (FATE#306586). - patches.suse/btrfs-1005-implement-online-profile-changing.patch: Btrfs: implement online profile changing (FATE#306586). - patches.suse/btrfs-1006-add-basic-infrastructure-for-selective-balanci.patch: Btrfs: add basic infrastructure for selective balancing (FATE#306586). - patches.suse/btrfs-1007-soft-profile-changing-mode-aka-soft-convert.patch: Btrfs: soft profile changing mode (aka soft convert) (FATE#306586). - patches.suse/btrfs-1008-profiles-filter.patch: Btrfs: profiles filter (FATE#306586). - patches.suse/btrfs-1009-usage-filter.patch: Btrfs: usage filter (FATE#306586). - patches.suse/btrfs-1010-devid-filter.patch: Btrfs: devid filter (FATE#306586). - patches.suse/btrfs-1011-devid-subset-filter.patch: Btrfs: devid subset filter (FATE#306586). - patches.suse/btrfs-1012-virtual-address-space-subset-filter.patch: Btrfs: virtual address space subset filter (FATE#306586). - patches.suse/btrfs-1013-save-restripe-parameters-to-disk.patch: Btrfs: save restripe parameters to disk (FATE#306586). - patches.suse/btrfs-1014-recover-restripe-on-mount.patch: Btrfs: recover restripe on mount (FATE#306586). - patches.suse/btrfs-1015-allow-for-cancelling-restriper.patch: Btrfs: allow for cancelling restriper (FATE#306586). - patches.suse/btrfs-1016-allow-for-pausing-restriper.patch: Btrfs: allow for pausing restriper (FATE#306586). - patches.suse/btrfs-1017-allow-for-resuming-restriper-after-it-was-paus.patch: Btrfs: allow for resuming restriper after it was paused (FATE#306586). - patches.suse/btrfs-1018-add-skip_restripe-mount-option.patch: Btrfs: add skip_restripe mount option (FATE#306586). - patches.suse/btrfs-1019-get-rid-of-btrfs_balance-function.patch: Btrfs: get rid of btrfs_balance() function (FATE#306586). - patches.suse/btrfs-1020-add-restripe-progress-reporting.patch: Btrfs: add restripe progress reporting (FATE#306586).- Linux 3.0.11 - patches.arch/s390-message-catalog.diff: Refresh. - patches.drivers/USB3-0001-xhci-Remove-some-unnecessary-casts-and-tidy-some-endian-swap.patch: Refresh. - patches.drivers/drm-i915-always-set-FDI-composite-sync-bit: Delete. - patches.drivers/drm-i915-fix-IVB-cursor-support: Delete. - patches.fixes/scsi-set-queuedata-to-NULL.patch: Delete.- patches.drivers/0003-ixgbe-consolidate-MRQC-and-MTQC-handling.patch: ixgbe: consolidate MRQC and MTQC handling (bnc#714789). - patches.drivers/0004-ixgbe-dcbnl-reduce-duplicated-code-and-indentation.patch: ixgbe: dcbnl reduce duplicated code and indentation (bnc#714789). - patches.drivers/0005-ixgbe-configure-minimal-packet-buffers-to-support-TC.patch: ixgbe: configure minimal packet buffers to support TC (bnc#714789). - patches.drivers/0006-ixgbe-consolidate-packet-buffer-allocation.patch: ixgbe: consolidate packet buffer allocation (bnc#714789). - patches.drivers/0007-ixgbe-add-basic-support-for-setting-and-getting-nfc-.patch: ixgbe: add basic support for setting and getting nfc controls (bnc#714789). - patches.drivers/0008-ixgbe-DCB-use-existing-TX-and-RX-queues.patch: ixgbe: DCB use existing TX and RX queues (bnc#714789). - patches.drivers/0009-ixgbe-add-support-for-displaying-ntuple-filters-via-.patch: ixgbe: add support for displaying ntuple filters via the nfc interface (bnc#714789). - patches.drivers/0010-ixgbe-fix-flags-relating-to-perfect-filters-to-suppo.patch: ixgbe: fix flags relating to perfect filters to support coexistence (bnc#714789). - patches.drivers/0011-ixgbe-remove-ntuple-filtering.patch: ixgbe: remove ntuple filtering (bnc#714789). - patches.drivers/0012-ixgbe-update-perfect-filter-framework-to-support-ret.patch: ixgbe: update perfect filter framework to support retaining filters (bnc#714789). - patches.drivers/0013-ixgbe-add-support-for-nfc-addition-and-removal-of-fi.patch: ixgbe: add support for nfc addition and removal of filters (bnc#714789). - patches.drivers/0014-ixgbe-remove-redundant-configuration-of-tx_sample_ra.patch: ixgbe: remove redundant configuration of tx_sample_rate (bnc#714789). - patches.drivers/0015-ixgbe-PFC-not-cleared-on-X540-devices.patch: ixgbe: PFC not cleared on X540 devices (bnc#714789). - patches.drivers/0016-ixgbe-DCB-and-perfect-filters-can-coexist.patch: ixgbe: DCB and perfect filters can coexist (bnc#714789). - patches.drivers/0017-ixgbe-consolidate-setup-for-multiple-traffic-classes.patch: ixgbe: consolidate, setup for multiple traffic classes (bnc#714789). - patches.drivers/0018-v2-ixgbe-Update-packet-buffer-reservation-to-correct.patch: v2 ixgbe: Update packet buffer reservation to correct fdir headroom size (bnc#714789). - patches.drivers/0019-ixgbe-update-P-FC-thresholds-to-account-for-X540-and.patch: ixgbe: update {P}FC thresholds to account for X540 and loopback (bnc#714789). - patches.drivers/0020-ixgbe-Make-certain-to-initialize-the-fdir_perfect_lo.patch: ixgbe: Make certain to initialize the fdir_perfect_lock in all cases (bnc#714789). - patches.drivers/0021-ixgbe-complete-FCoE-initialization-from-setapp-routi.patch: ixgbe: complete FCoE initialization from setapp() routine (bnc#714789). - patches.drivers/0022-ixgbe-DCB-do-not-call-set_state-from-IEEE-mode.patch: ixgbe: DCB, do not call set_state() from IEEE mode (bnc#714789). - patches.drivers/0023-ixgbe-add-structure-for-containing-RX-TX-rings-to-q_.patch: ixgbe: add structure for containing RX/TX rings to q_vector (bnc#714789). - patches.drivers/0024-ixgbe-Move-interrupt-related-values-out-of-ring-and-.patch: ixgbe: Move interrupt related values out of ring and into q_vector (bnc#714789). - patches.drivers/0025-ixgbe-DCB-X540-devices-support-max-traffic-class-of-.patch: ixgbe: DCB X540 devices support max traffic class of 4 (bnc#714789). - patches.drivers/0026-ixgbe-Move-all-values-that-deal-with-count-next_to_u.patch: ixgbe: Move all values that deal with count, next_to_use, next_to_clean to u16 (bnc#714789). - patches.drivers/0027-ixgbe-Update-method-used-for-determining-descriptor-.patch: ixgbe: Update method used for determining descriptor count for an skb (bnc#714789). - patches.drivers/0028-ixgbe-Add-one-function-that-handles-most-of-context-.patch: ixgbe: Add one function that handles most of context descriptor setup (bnc#714789). - patches.drivers/0029-ixgbe-Refactor-transmit-map-and-cleanup-routines.patch: ixgbe: Refactor transmit map and cleanup routines (bnc#714789). - patches.drivers/0030-ixgbe-Cleanup-FCOE-and-VLAN-handling-in-xmit_frame_r.patch: ixgbe: Cleanup FCOE and VLAN handling in xmit_frame_ring (bnc#714789). - patches.drivers/0031-ixgbe-Always-tag-VLAN-tagged-packets.patch: ixgbe: Always tag VLAN tagged packets (bnc#714789). - patches.drivers/0032-ixgbe-fixup-hard-dependencies-on-supporting-8-traffi.patch: ixgbe: fixup hard dependencies on supporting 8 traffic classes (bnc#714789).- patches.drivers/0001-qlge-fix-size-of-external-list-for-TX-address-descri.patch: qlge: fix size of external list for TX address descriptors. (bnc#727638)- patches.suse/0001-md-failfast-add-failfast-flag-for-md-to-be-used-by-s.patch: md/failfast: add failfast flag for md to be used by some personalities (Fate#311379). - patches.suse/0002-md-raid1-add-failfast-handling-for-reads.patch: md/raid1 add failfast handling for reads (Fate#311379). - patches.suse/0003-md-raid1-add-failfast-handling-for-writes.patch: md/raid1 - add failfast handling for writes (Fate#311379). - patches.suse/0004-md-raid10-add-failfast-handling-for-reads.patch: md/raid10 add failfast handling for reads (Fate#311379). - patches.suse/0005-md-raid10-add-failfast-handling-for-writes.patch: md/raid10 - add failfast handling for writes (Fate#311379).- patches.suse/0001-md-failfast-add-failfast-flag-for-md-to-be-used-by-s.patch: md/failfast: add failfast flag for md to be used by some personalities (Fate#311379). - patches.suse/0002-md-raid1-add-failfast-handling-for-reads.patch: md/raid1 add failfast handling for reads (Fate#311379). - patches.suse/0003-md-raid1-add-failfast-handling-for-writes.patch: md/raid1 - add failfast handling for writes (Fate#311379). - patches.suse/0004-md-raid10-add-failfast-handling-for-reads.patch: md/raid10 add failfast handling for reads (Fate#311379). - patches.suse/0005-md-raid10-add-failfast-handling-for-writes.patch: md/raid10 - add failfast handling for writes (Fate#311379).- patches.suse/0001-md-failfast-add-failfast-flag-for-md-to-be-used-by-s.patch: md/failfast: add failfast flag for md to be used by some personalities (Fate#311379). - patches.suse/0002-md-raid1-add-failfast-handling-for-reads.patch: md/raid1 add failfast handling for reads (Fate#311379). - patches.suse/0003-md-raid1-add-failfast-handling-for-writes.patch: md/raid1 - add failfast handling for writes (Fate#311379). - patches.suse/0004-md-raid10-add-failfast-handling-for-reads.patch: md/raid10 add failfast handling for reads (Fate#311379). - patches.suse/0005-md-raid10-add-failfast-handling-for-writes.patch: md/raid10 - add failfast handling for writes (Fate#311379).- Btrfs error handling update: - Quilt-refresh patchset - Added simplification for ->submit_bio_hook - Added missing btree locking panic for convert_extent_bit. - Fixed typos in Subject headers- Update config files: Disable CEPH_FS and BLK_DEV_RBD, they will be shipped separately(fate#312934, bnc#731701).- patches.arch/s390-41-01-qeth-avoid-siga-r-cost.patch: qeth: reduce SIGA-r to avoid CPU cost implications (bnc#732371,LTC#76691). - patches.arch/s390-41-02-z10-topology.patch: kernel: fix z10 CPU topology (bnc#732371,LTC#76623). - patches.arch/s390-41-03-zfcp-return-early-from-slave_destroy-if-slave_alloc-returned-early.patch: zfcp: return early from slave_destroy if slave_alloc returned early (bnc#732371,LTC#76754). - patches.arch/s390-41-04-qeth-shutdown-no-recovery.patch: qeth: forbid recovery during shutdown (bnc#732371,LTC#76845).- patches.fixes/dcb-add-stub-routines-for-not-CONFIG_DCB.patch: dcb: Add stub routines for !CONFIG_DCB (bnc#714789).- patches.suse/shmem-do-not-export-shmem_inode_info-struct.patch: Refresh.- Build kdb modules as modules, not built-in.- patches.fixes/perf-events-Fix-slow-and-broken-cgroup-context-switch-code: perf events: Fix slow and broken cgroup context switch code.- patches.suse/radix_tree-exceptional-entries-and-indices.patch: radix_tree: exceptional entries and indices (bnc#731999 FATE#313009). - patches.suse/shmem-do-not-export-shmem_inode_info-struct.patch: Do not export shmem internal data structures (bnc#731999 FATE#313009).- patches.suse/mm-cleanup-descriptions-of-filler-arg.patch: mm: cleanup descriptions of filler arg (bnc#731999). - patches.suse/mm-consistent-truncate-and-invalidate-loops.patch: mm: consistent truncate and invalidate loops (bnc#731999). - patches.suse/mm-pincer-in-truncate_inode_pages_range.patch: mm: pincer in truncate_inode_pages_range (bnc#731999). - patches.suse/mm-tidy-vmtruncate_range-and-related-functions.patch: mm: tidy vmtruncate_range and related functions (bnc#731999). - patches.suse/mm-truncate-functions-are-in-truncate.c.patch: mm: truncate functions are in truncate.c (bnc#731999). - patches.suse/tmpfs-clone-shmem_file_splice_read.patch: tmpfs: clone shmem_file_splice_read() (bnc#731999). - patches.suse/tmpfs-no-need-to-use-i_lock.patch: tmpfs: no need to use i_lock (bnc#731999). - patches.suse/tmpfs-pass-gfp-to-shmem_getpage_gfp.patch: tmpfs: pass gfp to shmem_getpage_gfp (bnc#731999). - patches.suse/tmpfs-refine-shmem_file_splice_read.patch: tmpfs: refine shmem_file_splice_read (bnc#731999). - patches.suse/tmpfs-remove_shmem_readpage.patch: tmpfs: remove_shmem_readpage (bnc#731999). - patches.suse/tmpfs-simplify-filepage-swappage.patch: tmpfs: simplify filepage/swappage (bnc#731999). - patches.suse/tmpfs-simplify-prealloc_page.patch: tmpfs: simplify prealloc_page (bnc#731999). - patches.suse/tmpfs-simplify-unuse-and-writepage.patch: tmpfs: simplify unuse and writepage (bnc#731999). - patches.xen/cleancache-update: Refresh.- patches.fixes/dcb-Use-ifindex-instead-of-ifname.patch: dcb: Use ifindex instead of ifname (bnc#714789). - patches.fixes/dcb-add-DCBX-mode-to-event-notifier-attributes.patch: dcb: add DCBX mode to event notifier attributes (bnc#714789). - patches.suse/SoN-0009b-netvm-Propagate-page-pfmemalloc-to-skb.patch: Fixup typo.- patches.fixes/drm-radeon-kms-fix-up-gpio-i2c-mask-bits-for-r4xx.patch: Add missing git-commit.- patches.fixes/percpu_fix_chunk_range_calculation.patch: percpu: fix chunk range calculation (bnc#668872).- patches.fixes/fcoe-add-DCB-notifiers-to-set-skb-priority.patch: fcoe: add DCB notifiers to set skb priority (bnc#714789).- Update bnx2x driver to version 1.70.35-0 (bnc#732335): * patches.drivers/bnx2x-DCBX-use-define-instead-of-magic.patch: bnx2x: DCBX: use #define instead of magic. * patches.drivers/bnx2x-Remove-on-stack-napi-struct-variable.patch: bnx2x: Remove on-stack napi struct variable. * patches.drivers/bnx2x-add-endline-at-end-of-message.patch: bnx2x: add endline at end of message. * patches.drivers/bnx2x-add-fan-failure-event-handling.patch: bnx2x: add fan failure event handling. * patches.drivers/bnx2x-cache-in-compressed-fw-image.patch: bnx2x: cache-in compressed fw image. * patches.drivers/bnx2x-prevent-race-in-statistics-flow.patch: bnx2x: prevent race in statistics flow. * patches.drivers/bnx2x-propagate-DCBX-negotiation.patch: bnx2x: propagate DCBX negotiation. * patches.drivers/bnx2x-remove-unused-define.patch: bnx2x: remove unused #define. * patches.drivers/bnx2x-remove-unused-variable.patch: bnx2x: remove unused variable. * patches.drivers/bnx2x-separate-FCoE-and-iSCSI-license-initializatio.patch: bnx2x: separate FCoE and iSCSI license initialization. * patches.drivers/bnx2x-simplify-definition-of-RX_SGE_MASK_LEN-and-us.patch: bnx2x: simplify definition of RX_SGE_MASK_LEN and use it. * patches.drivers/bnx2x-update-driver-version-to-1.70.35-0.patch: bnx2x: update driver version to 1.70.35-0. * patches.drivers/bnx2x-use-rx_queue-index-for-skb_record_rx_queue.patch: bnx2x: use rx_queue index for skb_record_rx_queue().- Latest btrfs error handling update. - extent_state allocs now use mempools - eliminates a bunch of error push-ups since they now return voidbtrfs hotfixes - patches.suse/btrfs-8001-btrfs_calc_avail_data_space-cope-with-no-read-.patch: btrfs: btrfs_calc_avail_data_space cope with no read/write devices V2 (FATE#306586). - patches.suse/btrfs-8001-rewrite-btrfs_trim_block_group.patch: Btrfs: rewrite btrfs_trim_block_group() (FATE#306586). - patches.suse/btrfs-8002-Fix-the-write-error-into-tiny-space.patch: Btrfs: Fix the write error into tiny space (FATE#306586). - patches.suse/btrfs-8003-scrub-handle-ENOMEM-from-init_ipath.patch: btrfs scrub: handle -ENOMEM from init_ipath() (FATE#306586). - patches.suse/btrfs-8005-fix-deadlock-on-metadata-reservation-when-evic.patch: Btrfs: fix deadlock on metadata reservation when evicting a inode (FATE#306586). - patches.suse/btrfs-8006-Don-t-error-on-resizing-FS-to-same-size.patch: Btrfs: Don't error on resizing FS to same size (FATE#306586). - patches.suse/btrfs-8007-lock-and-disable-irq-during-space-alloc.patch: btrfs: lock and disable irq during space alloc (FATE#306586 bnc#730103). - patches.suse/btrfs-8001-kill-space_info-pointer-from-inode-structure.patch: Delete.- supported.conf: mbp_nvidia_bl got renamed to apple_bl.- supported.conf: Remove radio-gemtek-pci (duplicate of radio-maxiradio).- supported.conf: Add back mt9m001 and mt9v022. The chances of someone using these with SLE are pretty slim, but we used to have them in SP1.- supported.conf: Add gspca drivers that replaced usbvideo ones.- patches.drivers/bfa-set-correct-scsi-returncode: Fixup typo.- patches.drivers/cciss-stable-controller-enumeration.patch: cciss: Stable controller enumeration (bnc#713707).- patches.drivers/bfa-set-correct-scsi-returncode: bfa: set correct command return code (bnc#721874).- Update Xen patches to c/s 1127. - patches.xen/xen3-pnp_fix_misleading_error_msg.patch: PNP ACPI: Fix a buggy debug messagge (bnc#720750). - Update EC2 config files.- supported.conf: mark iscsi_target_mod as supported (bnc#730440).- patches.suse/mkinitrd-scsi_host_template-proc_name.patch: Remove WARN_ON(), as it breaks PLDP drivers (bnc#732082).- patches.drivers/be2iscsi-Move-Driver-Version-to-4.1.282.0.patch: be2iscsi: Move Driver Version to 4.1.282.0 (bnc#732178). - patches.drivers/be2iscsi-memset-wrb-for-ring-create.patch: be2iscsi: memset wrb for ring create (bnc#732178). - patches.drivers/be2iscsi-passing-correct-offset-in-async-paths.patch: be2iscsi: passing correct offset in async paths (bnc#732178).- patches.drivers/bnx2fc-bumped-version-to-1-0-9: bnx2fc: Bumped version to 1.0.9 (bnc#726703). - patches.drivers/bnx2fc-handle-abts-timeout-during-ulp-timeout: bnx2fc: Handle ABTS timeout during ulp timeout (bnc#726703). - patches.drivers/bnx2fc-handle-srr-ls_acc-drop-scenario: bnx2fc: Handle SRR LS_ACC drop scenario (bnc#726703).- The abreviated version of facc4307 (perf-oprofile-fix) breaks perf. Fix the problem by bringing perf core up to the 27eb4a1e merge point instead, and add b58f6b0d, the follow-up fix for the series. Discovered while adding a8d757ef076f0f95f13a918808824058de25b3eb perf events: Fix slow and broken cgroup context switch code. - patches.fixes/perf-oprofile-fix: Delete. - patches.fixes/perf-Change-and-simplify-ctx-is_active-semantics: perf: Change and simplify ctx::is_active semantics (bnc#723171). - patches.fixes/perf-Change-close-semantics-for-group-events: perf: Change close() semantics for group events. - patches.fixes/perf-Clean-up-ctx-reference-counting: perf: Clean up 'ctx' reference counting (bnc#723171). - patches.fixes/perf-Collect-the-schedule-in-rules-in-one-function: perf: Collect the schedule-in rules in one function (bnc#723171). - patches.fixes/perf-De-schedule-a-task-context-when-removing-the-last-event: perf: De-schedule a task context when removing the last event (bnc#723171). - patches.fixes/perf-Optimize-ctx_sched_out: perf: Optimize ctx_sched_out() (bnc#723171). - patches.fixes/perf-Optimize-event-scheduling-locking: perf: Optimize event scheduling locking (bnc#723171). - patches.fixes/perf-Remove-task_ctx_sched_in: perf: Remove task_ctx_sched_in() (bnc#723171). - patches.fixes/perf-Simplify-and-fix-__perf_install_in_context: perf: Simplify and fix __perf_install_in_context() (bnc#723171). - patches.fixes/perf-core-Fix-initial-task_ctx-slash-event-installation: perf, core: Fix initial task_ctx/event installation (bnc#723171).- patches.fixes/pci-pciehp-fix-pcied_cleanup.patch: PCI / Hotplug: Fix the ordering of operations in pcied_cleanup() (bnc#729789).- patches.arch/x86-UV-make-uv_mmrs.h-be-identical-with-upstream.patch: x86 / UV: Make uv_mmrs.h be identical with the upstream version (bnc#722795).- Linux 3.0.10 - patches.kernel.org/alsa-hda-don-t-add-elements-of-other-codecs-to-vmaster-slave.patch: Delete. - patches.kernel.org/alsa-usb-audio-check-the-db-range-validity-in-the-later-read-too.patch: Delete. - patches.kernel.org/alsa-usb-audio-fix-the-missing-volume-quirks-at-delayed-init.patch: Delete. - patches.kernel.org/asoc-don-t-use-wm8994-control_data-in-wm8994_readable_register.patch: Delete. - patches.kernel.org/backing-dev-ensure-wakeup_timer-is-deleted.patch: Delete. - patches.kernel.org/block-always-check-length-of-all-iov-entries-in.patch: Delete. - patches.kernel.org/drm-i915-enable-ring-freq-scaling-rc6-and-graphics-turbo-on-ivy-bridge-v3.patch: Delete. - patches.kernel.org/drm-i915-fix-object-refcount-leak-on-mmappable-size-limit-error-path.patch: Delete. - patches.kernel.org/drm-nouveau-initialize-chan-fence.lock-before-use.patch: Delete. - patches.kernel.org/drm-radeon-add-some-missing-firemv-pci-ids.patch: Delete. - patches.kernel.org/drm-radeon-kms-make-an-aux-failure-debug-only.patch: Delete. - patches.kernel.org/hfs-add-sanity-check-for-file-name-length.patch: Delete. - patches.kernel.org/keys-fix-a-null-pointer-deref-in-the-user-defined-key-type.patch: Delete. - patches.kernel.org/md-raid5-abort-any-pending-parity-operations-when-array-fails.patch: Delete. - patches.kernel.org/mfd-fix-twl4030-dependencies-for-audio-codec.patch: Delete. - patches.kernel.org/powerpc-copy-down-exception-vectors-after-feature-fixups.patch: Delete. - patches.kernel.org/powerpc-ps3-fix-lost-smp-ipis.patch: Delete. - patches.kernel.org/revert-leds-save-the-delay-values-after-a-successful-call-to-blink_set.patch: Delete. - patches.kernel.org/sfi-table-irq-0xff-means-no-interrupt.patch: Delete. - patches.kernel.org/sh-fix-cached-uncaced-address-calculation-in-29bit-mode.patch: Delete. - patches.kernel.org/virtio-pci-fix-use-after-free.patch: Delete. - patches.kernel.org/x86-mrst-use-a-temporary-variable-for-sfi-irq.patch: Delete. - patches.kernel.org/xen-gntalloc-integer-overflow-in-gntalloc_ioctl_alloc.patch: Delete. - patches.kernel.org/xen-gntalloc-signedness-bug-in-add_grefs.patch: Delete. - patches.kernel.org/xen-pvhvm-enable-pvhvm-vcpu-placement-when-using-more-than-32-cpus.patch: Delete.- patches.suse/pagecache-limit-warn-on-usage.patch: Refresh. Do not report on the proc file read.- patches.fixes/drm-radeon-kms-fix-up-gpio-i2c-mask-bits-for-r4xx.patch: drm/radeon/kms: fix up gpio i2c mask bits for r4xx (bnc#691052).post 3.2-rc2 updates and critical fixes - patches.suse/btrfs-0243-fix-barrier-flushes.patch: Btrfs: fix barrier flushes (FATE#306586). - patches.suse/btrfs-0244-Fix-up-32-64-bit-compatibility-for-new-ioctls.patch: btrfs: Fix up 32/64-bit compatibility for new ioctls (FATE#306586). - patches.suse/btrfs-0245-mirror_num-should-be-int-not-u64.patch: btrfs: mirror_num should be int, not u64 (FATE#306586). - patches.suse/btrfs-0246-fix-to-search-one-more-bitmap-for-cluster-setu.patch: Btrfs: fix to search one more bitmap for cluster setup (FATE#306586). - patches.suse/btrfs-0247-avoid-unnecessary-bitmap-search-for-cluster-se.patch: Btrfs: avoid unnecessary bitmap search for cluster setup (FATE#306586). - patches.suse/btrfs-0248-fix-stat-blocks-accounting.patch: btrfs: fix stat blocks accounting (FATE#306586). - patches.suse/btrfs-0249-prefix-resize-related-printks-with-btrfs.patch: Btrfs: prefix resize related printks with btrfs: (FATE#306586). - patches.suse/btrfs-0250-wait-on-caching-if-we-re-loading-the-free-spac.patch: Btrfs: wait on caching if we're loading the free space cache (FATE#306586). - patches.suse/btrfs-0251-clear-pages-dirty-for-io-and-set-them-extent-m.patch: Btrfs: clear pages dirty for io and set them extent mapped (FATE#306586). - patches.suse/btrfs-0252-sectorsize-align-offsets-in-fiemap.patch: Btrfs: sectorsize align offsets in fiemap (FATE#306586). - patches.suse/btrfs-0253-remove-free-space-cache.c-WARN-during-log-repl.patch: Btrfs: remove free-space-cache.c WARN during log replay (FATE#306586). - patches.suse/btrfs-lock_extent-error-push-up: Refresh. - patches.suse/btrfs-fix-up-32-64-bit-compatibility-for-new-ioctls: Delete.- patches.fixes/cgroup_freezer_freeze_stopped_tasks_correctly.patch: cgroup_freezer: fix freezing groups with stopped tasks (bnc#713933).- patches.fixes/0001-genksyms-Minor-parser-cleanup.patch: genksyms: Minor parser cleanup. - patches.fixes/0002-genksyms-Do-not-expand-internal-types.patch: genksyms: Do not expand internal types. - patches.fixes/0003-genksyms-Regenerate-lexer-and-parser.patch: genksyms: Regenerate lexer and parser.- patches.fixes/xfs-Fix-wrong-return-value-of-xfs_file_aio_write.patch: xfs: Fix wrong return value of xfs_file_aio_write (bnc#719079).- patches.drivers/qla4xxx-bug-fixes-for-mixed-mode-support.patch: qla4xxx: bug fixes for mixed mode support (bnc#731029).- patches.fixes/aggressive-zone-reclaim.patch: Delete. No feedback from the requester (bnc#476525)- Fixup patches for series2git: * patches.suse/btrfs-_btrfs_mod_ref-s-process_func-should-return-void * patches.suse/btrfs-btrfs_inc_extent_ref-void-return-prep * patches.suse/btrfs-clean_tree_block-should-return-void * patches.suse/btrfs-disk-io-__setup_root-should-return-void * patches.suse/btrfs-extent-tree-btrfs_prepare_extent_commit-should-return-void * patches.suse/btrfs-extent-tree-btrfs_set_block_group_rw-should-return-void * patches.suse/btrfs-lock_extent-error-push-up * patches.suse/btrfs-unlock_extent-error-push-up- CFS Hard Limits bugfix (for FATE#311682) - patches.fixes/sched-Fix-buglet-in-return_cfs_rq_runtime: sched: Fix buglet in return_cfs_rq_runtime().- patches.arch/ccwgroup-fix-uevent-vs-dev-attrs-race.patch: ccwgroup: fix uevent vs dev attrs race (bnc#717797).- Linux 3.0.10 patches queued up - patches.kernel.org/alsa-hda-don-t-add-elements-of-other-codecs-to-vmaster-slave.patch: ALSA: hda - Don't add elements of other codecs to vmaster slave. - patches.kernel.org/alsa-usb-audio-check-the-db-range-validity-in-the-later-read-too.patch: ALSA: usb-audio - Check the dB-range validity in the later read, too. - patches.kernel.org/alsa-usb-audio-fix-the-missing-volume-quirks-at-delayed-init.patch: ALSA: usb-audio - Fix the missing volume quirks at delayed init. - patches.kernel.org/asoc-don-t-use-wm8994-control_data-in-wm8994_readable_register.patch: ASoC: Don't use wm8994->control_data in wm8994_readable_register(). - patches.kernel.org/b43-refuse-to-load-unsupported-firmware.patch: b43: refuse to load unsupported firmware. - patches.kernel.org/backing-dev-ensure-wakeup_timer-is-deleted.patch: backing-dev: ensure wakeup_timer is deleted. - patches.kernel.org/block-always-check-length-of-all-iov-entries-in.patch: block: Always check length of all iov entries in blk_rq_map_user_iov(). - patches.kernel.org/drm-i915-enable-ring-freq-scaling-rc6-and-graphics-turbo-on-ivy-bridge-v3.patch: drm/i915: enable ring freq scaling, RC6 and graphics turbo on Ivy Bridge v3. - patches.kernel.org/drm-i915-fix-object-refcount-leak-on-mmappable-size-limit-error-path.patch: drm/i915: Fix object refcount leak on mmappable size limit error path. - patches.kernel.org/drm-nouveau-initialize-chan-fence.lock-before-use.patch: drm/nouveau: initialize chan->fence.lock before use. - patches.kernel.org/drm-radeon-add-some-missing-firemv-pci-ids.patch: drm/radeon: add some missing FireMV pci ids. - patches.kernel.org/drm-radeon-kms-make-an-aux-failure-debug-only.patch: drm/radeon/kms: make an aux failure debug only. - patches.kernel.org/hfs-add-sanity-check-for-file-name-length.patch: hfs: add sanity check for file name length. - patches.kernel.org/keys-fix-a-null-pointer-deref-in-the-user-defined-key-type.patch: KEYS: Fix a NULL pointer deref in the user-defined key type. - patches.kernel.org/md-raid5-abort-any-pending-parity-operations-when-array-fails.patch: md/raid5: abort any pending parity operations when array fails. - patches.kernel.org/mfd-fix-twl4030-dependencies-for-audio-codec.patch: mfd: Fix twl4030 dependencies for audio codec. - patches.kernel.org/powerpc-copy-down-exception-vectors-after-feature-fixups.patch: powerpc: Copy down exception vectors after feature fixups. - patches.kernel.org/powerpc-ps3-fix-lost-smp-ipis.patch: powerpc/ps3: Fix lost SMP IPIs. - patches.kernel.org/revert-leds-save-the-delay-values-after-a-successful-call-to-blink_set.patch: Revert "leds: save the delay values after a successful call to blink_set()". - patches.kernel.org/sfi-table-irq-0xff-means-no-interrupt.patch: sfi: table irq 0xFF means 'no interrupt'. - patches.kernel.org/sh-fix-cached-uncaced-address-calculation-in-29bit-mode.patch: sh: Fix cached/uncaced address calculation in 29bit mode. - patches.kernel.org/virtio-pci-fix-use-after-free.patch: virtio-pci: fix use after free. - patches.kernel.org/x86-mrst-use-a-temporary-variable-for-sfi-irq.patch: x86, mrst: use a temporary variable for SFI irq. - patches.kernel.org/xen-gntalloc-integer-overflow-in-gntalloc_ioctl_alloc.patch: xen-gntalloc: integer overflow in gntalloc_ioctl_alloc(). - patches.kernel.org/xen-gntalloc-signedness-bug-in-add_grefs.patch: xen-gntalloc: signedness bug in add_grefs(). - patches.kernel.org/xen-pvhvm-enable-pvhvm-vcpu-placement-when-using-more-than-32-cpus.patch: xen:pvhvm: enable PVHVM VCPU placement when using more than 32 CPUs. - patches.drivers/drm_add_radeon_rv380_3151_rv280_4C6E_support: Delete.- rpm/symsets.pl: Fix --list-exported-symbols for 3.0 (bnc#727793).- patches.kabi/kabi-add-padding-to-some-important-structures: kabi: Add placeholders to a couple of important structures (fate#312013). - patches.suse/perfmon2.patch: Refresh.- patches.arch/x86-uv2-drop-UV2_HUB_KABI_HACKS.patch: x86 / UV2: Drop the unnecessary definition of UV2_HUB_KABI_HACKS (bnc#722795).- patches.fixes/x86-kexec-temporary-hack-v2: x86: kexec: Temporary hack to allow crashkernel=512M on server hardware (v2) (bnc#726850). - patches.fixes/x86-kexec-temporary-hack-for-large-crashkernels-on-servers.patch: Delete.- patches.fixes/dm-mpath-do-not-call-request_module: dm-multipath: Do not call request_module for existing hw_handlers (bnc#721738).- patches.drivers/pci_acpi_crs_fix_32bit_addresses_exceeding_4g.patch: x86/PCI: Ignore CPU non-addressable _CRS reserved memory resources (bnc#727453). - patches.drivers/pnp_fix_misleading_error_msg.patch: PNP ACPI: Fix a buggy debug messagge (bnc#720750). - patches.drivers/pnp_gsi_irq_override.patch: PNP ACPI: Use real gsi (bnc#720750).- patches.suse/btrfs-add-btrfs_panic: Refresh.- patches.suse/btrfs-0214-Moved-repair-code-from-inode.c-to-extent_io.c.patch: Refresh. - patches.suse/btrfs-0241-rename-the-option-to-nospace_cache.patch: btrfs: rename the option to nospace_cache (FATE#306586). - patches.suse/btrfs-0242-fix-tree-corruption-after-multi-thread-snapsho.patch: Btrfs: fix tree corruption after multi-thread snapshots and inode_cache flush (FATE#306586). - patches.suse/btrfs-fixup_low_keys-should-return-void: Refresh. - patches.suse/btrfs-setup_items_for_insert-should-return-void: Refresh. - patches.suse/btrfs-0214-Moved-repair-code-from-inode.c-to-extent_io.c.patch-fix: Delete.- patches.arch/x86-reboot-blacklist-dell-optiplex-990.patch: x86 / reboot: Blacklist Dell OptiPlex 990 known to require PCI reboot (bnc#727324).- patches.arch/x2apic_opt_out.patch: x86, x2apic: Enable the bios request for x2apic optout (bnc#718401).- Update Xen patches to c/s 1125 and 3.0.9. - Update frontswap patches to v10.- patches.suse/btrfs-fix-up-32-64-bit-compatibility-for-new-ioctls: btrfs: Fix up 32/64-bit compatibility for new ioctls.- patches.suse/btrfs-0214-Moved-repair-code-from-inode.c-to-extent_io.c.patch-fix: btrfs: Fix btree_io_failed_hook prototype.- patches.drivers/drm_add_radeon_rv380_3151_rv280_4C6E_support: Add two missing PCI IDs for Radeon Chips (bnc#730265).- patches.fixes/ipv6-check-dst_alloc-retval: ipv6: check return value for dst_alloc (bnc#726309).- supported.conf: Add mtd_blkdevs and mtdblock again, for compatibility with SP1.- Updated btrfs error handling patchset. - patches.suse/btrfs-use-mempools-for-delayed-refs: btrfs: Use mempools for delayed refs. - patches.suse/btrfs-panic-on-bad-rbtree-operations: btrfs: Panic on bad rbtree operations. - patches.suse/btrfs-simplify-btrfs_insert_root: btrfs: Simplify btrfs_insert_root. - patches.suse/btrfs-clear_extent_bit-api-change: btrfs: Remove set bits return from clear_extent_bit. - patches.suse/btrfs-convert_extent_bit-error-push-up: btrfs: convert_extent_bit error push-up. - patches.suse/btrfs-btrfs_update_root-error-push-up: btrfs: btrfs_update_root error push-up. - patches.suse/btrfs-_add_reloc_root-error-push-up: btrfs: __add_reloc_root error push-up. - patches.suse/btrfs-setup_items_for_insert-should-return-void: btrfs: setup_items_for_insert should return void. - patches.suse/btrfs-delayed-ref-mempool-functions-should-return-void: btrfs: Delayed ref mempool functions should return void. - patches.suse/btrfs-btrfs_inc_extent_ref-void-return-prep: btrfs: btrfs_inc_extent_ref void return prep. - patches.suse/btrfs-btrfs_free_extent-void-return-prep: btrfs: btrfs_free_extent void return prep. - patches.suse/btrfs-_btrfs_mod_ref-s-process_func-should-return-void: btrfs: __btrfs_mod_ref's process_func should return void. - patches.suse/btrfs-_btrfs_mod_ref-should-return-void: btrfs: __btrfs_mod_ref should return void. - patches.suse/btrfs-clean_tree_block-should-return-void: btrfs: clean_tree_block should return void. - patches.suse/btrfs-btrfs_truncate_item-should-return-void: btrfs: btrfs_truncate_item should return void. - patches.suse/btrfs-btrfs_extend_item-should-return-void: btrfs: btrfs_extend_item should return void. - patches.suse/btrfs-end_compressed_writeback-should-return-void: btrfs: end_compressed_writeback should return void. - patches.suse/btrfs-copy_for_split-should-return-void: btrfs: copy_for_split should return void. - patches.suse/btrfs-extent-tree-update_inline_extent_backref-should-return-void: btrfs: update_inline_extent_backref should return void. - patches.suse/btrfs-fix-kfree-of-member-instead-of-structure: btrfs: Fix kfree of member instead of structure.- patches.kernel.org/patch-3.0.8-9: Linux 3.0.9. - patches.kernel.org/acpi-atomicio-convert-width-in-bits-to-bytes-in-__acpi_ioremap_fast.patch: Delete. - patches.kernel.org/alsa-hda-add-new-revision-for-alc662.patch: Delete. - patches.kernel.org/alsa-hda-add-support-for-92hd65-92hd66-family-of-codecs.patch: Delete. - patches.kernel.org/alsa-hda-disable-power-widget-control-for-idt-92hd83-93.patch: Delete. - patches.kernel.org/alsa-hda-fix-adc-input-amp-handling-for-cx20549-codec.patch: Delete. - patches.kernel.org/alsa-hda-realtek-skip-invalid-digital-out-pins.patch: Delete. - patches.kernel.org/alsa-hda-remove-bad-code-for-idt-92hd83-family-patch.patch: Delete. - patches.kernel.org/alsa-ua101-fix-crash-when-unplugging.patch: Delete. - patches.kernel.org/apic-i386-bigsmp-fix-false-warnings-regarding-logical-apic-id-mismatches.patch: Delete. - patches.kernel.org/arm-mach-ux500-unlock-i-d-l2x0-caches-before-init.patch: Delete. - patches.kernel.org/asix-simplify-condition-in-rx_fixup.patch: Delete. - patches.kernel.org/asix-use-only-11-bits-of-header-for-data-size.patch: Delete. - patches.kernel.org/asoc-ak4535-fixup-cache-register-table.patch: Delete. - patches.kernel.org/asoc-ak4642-fixup-cache-register-table.patch: Delete. - patches.kernel.org/asoc-ensure-the-wm8962-oscillator-and-plls-start-up-disabled.patch: Delete. - patches.kernel.org/asoc-ensure-wm8962-pll-registers-are-reset.patch: Delete. - patches.kernel.org/asoc-fix-a-bug-in-wm8962-dsp_a-and-dsp_b-settings.patch: Delete. - patches.kernel.org/asoc-leave-input-audio-data-bit-length-settings-untouched-in-wm8711_set_dai_fmt.patch: Delete. - patches.kernel.org/asoc-remove-direct-register-cache-accesses-from-wm8962.patch: Delete. - patches.kernel.org/asoc-wm8711-fix-wrong-mask-for-setting-input-audio-data-bit-length-select.patch: Delete. - patches.kernel.org/asoc-wm8741-fix-setting-interface-format-for-dsp-modes.patch: Delete. - patches.kernel.org/asoc-wm8904-set-invert-bit-for-capture-switch.patch: Delete. - patches.kernel.org/asoc-wm8940-properly-set-codec-dapm.bias_level.patch: Delete. - patches.kernel.org/asoc-wm8994-use-snd_soc_dapm_aif_out-for-aif3-capture.patch: Delete. - patches.kernel.org/ata_piix-make-dvd-drive-recognisable-on-systems-with-intel-sandybridge-chipsets-v2.patch: Delete. - patches.kernel.org/ath9k-disable-unnecessary-phy-error-reporting.patch: Delete. - patches.kernel.org/ath9k_htc-add-avm-fritz-wlan-11n-v2-support.patch: Delete. - patches.kernel.org/ath9k_hw-fix-descriptor-status-of-txopexceeded.patch: Delete. - patches.kernel.org/ath9k_hw-fix-magnitude-phase-coeff-correction.patch: Delete. - patches.kernel.org/ath9k_hw-fix-number-of-gpio-pins-for-ar9287-9300.patch: Delete. - patches.kernel.org/ath9k_hw-fix-regression-of-register-offset-for-ar9003-chips.patch: Delete. - patches.kernel.org/ath9k_hw-update-ar9485-initvals-to-fix-system-hang-issue.patch: Delete. - patches.kernel.org/binfmt_elf-fix-pie-execution-with-randomization-disabled.patch: Delete. - patches.kernel.org/block-make-gendisk-hold-a-reference-to-its-queue.patch: Delete. - patches.kernel.org/bluetooth-add-atheros-ar3012-one-pid-vid-supported.patch: Delete. - patches.kernel.org/bluetooth-add-macbookair4-1-support.patch: Delete. - patches.kernel.org/bluetooth-add-support-for-2011-mac-mini.patch: Delete. - patches.kernel.org/bluetooth-add-toshiba-laptops-ar30xx-device-id.patch: Delete. - patches.kernel.org/bonding-use-local-function-pointer-of-bond-recv_probe-in-bond_handle_frame.patch: Delete. - patches.kernel.org/bridge-fix-hang-on-removal-of-bridge-via-netlink.patch: Delete. - patches.kernel.org/bridge-leave-carrier-on-for-empty-bridge.patch: Delete. - patches.kernel.org/btusb-add-device-entry-for-broadcom-softsailing.patch: Delete. - patches.kernel.org/caif-fix-bug-with-network-namespaces.patch: Delete. - patches.kernel.org/can-bcm-fix-incomplete-tx_setup-fix.patch: Delete. - patches.kernel.org/can-bcm-fix-tx_setup-off-by-one-errors.patch: Delete. - patches.kernel.org/carminefb-fix-module-parameters-permissions.patch: Delete. - patches.kernel.org/cciss-add-small-delay-when-using-pci-power-management-to-reset-for-kump.patch: Delete. - patches.kernel.org/ccwgroup-move-attributes-to-attribute-group.patch: Delete. - patches.kernel.org/cifs-fix-dfs-handling-in-cifs_get_file_info.patch: Delete. - patches.kernel.org/cifs-fix-incorrect-max-rfc1002-write-size-value.patch: Delete. - patches.kernel.org/cris-fix-a-build-error-in-drivers-tty-serial-crisv10.c.patch: Delete. - patches.kernel.org/crypto-cryptd-use-subsys_initcall-to-prevent-races-with-aesni.patch: Delete. - patches.kernel.org/dib0700-protect-the-dib0700-buffer-access.patch: Delete. - patches.kernel.org/dibcom-protect-the-i2c-bufer-access.patch: Delete. - patches.kernel.org/dp83640-free-packet-queues-on-remove.patch: Delete. - patches.kernel.org/dp83640-use-proper-function-to-free-transmit-time-stamping.patch: Delete. - patches.kernel.org/drivers-net-rionet.c-fix-ethernet-address-macros-for-le-platforms.patch: Delete. - patches.kernel.org/drivers-power-ds2780_battery.c-add-a-nolock-function-to-w1-interface.patch: Delete. - patches.kernel.org/drivers-power-ds2780_battery.c-create-central-point-for-calling-w1-interface.patch: Delete. - patches.kernel.org/drivers-power-ds2780_battery.c-fix-deadlock-upon-insertion-and-removal.patch: Delete. - patches.kernel.org/drm-i915-panel-always-record-the-backlight-level-again-but-cleverly.patch: Delete. - patches.kernel.org/drm-i915-wrap-dp-edid-fetch-functions-to-enable-edp-panel.patch: Delete. - patches.kernel.org/drm-radeon-avoid-bouncing-connector-status-btw-disconnected-unknown.patch: Delete. - patches.kernel.org/drm-radeon-kms-add-msi-module-parameter.patch: Delete. - patches.kernel.org/drm-radeon-kms-add-msi-quirk-for-dell-rs690.patch: Delete. - patches.kernel.org/drm-radeon-kms-add-msi-quirk-for-hp-rs690.patch: Delete. - patches.kernel.org/drm-radeon-kms-bail-early-in-dvi_detect-for-digital-only-connectors.patch: Delete. - patches.kernel.org/drm-radeon-kms-fix-i2c-mask-definitions.patch: Delete. - patches.kernel.org/drm-radeon-kms-handle-force-case-in-connector-detect-more-gracefully.patch: Delete. - patches.kernel.org/drm-radeon-kms-properly-set-panel-mode-for-edp.patch: Delete. - patches.kernel.org/drm-radeon-kms-set-hpd-polarity-in-hpd_init.patch: Delete. - patches.kernel.org/drm-radeon-kms-split-msi-check-into-a-separate-function.patch: Delete. - patches.kernel.org/drm-radeon-set-hpd-polarity-at-init-time-so-hotplug-detect-works.patch: Delete. - patches.kernel.org/ehci-introduce-a-common-ehci_setup.patch: Delete. - patches.kernel.org/ehci-workaround-for-moschip-controller-bug.patch: Delete. - patches.kernel.org/enic-bug-fix-fix-hardware-transmit-queue-indexing-in-enic_poll_controller.patch: Delete. - patches.kernel.org/epoll-fix-spurious-lockdep-warnings.patch: Delete. - patches.kernel.org/ext2-ext3-ext4-don-t-inherit-append_fl-or-immutable_fl-for-new-inodes.patch: Delete. - patches.kernel.org/ext4-call-ext4_handle_dirty_metadata-with-correct-inode-in-ext4_dx_add_entry.patch: Delete. - patches.kernel.org/ext4-ext4_mkdir-should-dirty-dir_block-with-newly-created-directory-inode.patch: Delete. - patches.kernel.org/ext4-ext4_rename-should-dirty-dir_bh-with-the-correct-directory.patch: Delete. - patches.kernel.org/ext4-fix-race-in-xattr-block-allocation-path.patch: Delete. - patches.kernel.org/ext4-remove-i_mutex-lock-in-ext4_evict_inode-to-fix-lockdep-complaining.patch: Delete. - patches.kernel.org/fb-avoid-possible-deadlock-caused-by-fb_set_suspend.patch: Delete. - patches.kernel.org/fb-sh-mobile-fix-deadlock-risk-between-lock_fb_info-and-console_lock.patch: Delete. - patches.kernel.org/fix-block-queue-and-elevator-memory-leak-in-scsi_alloc_sdev.patch: Delete. - patches.kernel.org/genirq-add-irqf_resume_early-and-resume-such-irqs-earlier.patch: Delete. - patches.kernel.org/hid-acrux-fix-enabling-force-feedback-support.patch: Delete. - patches.kernel.org/hid-add-device-ids-for-macbook-pro-8-keyboards.patch: Delete. - patches.kernel.org/hid-add-macbookair4-2-to-hid_have_special_driver.patch: Delete. - patches.kernel.org/hid-add-support-for-huijia-usb-gamepad-connector.patch: Delete. - patches.kernel.org/hid-add-support-for-macbookair4-2-keyboard.patch: Delete. - patches.kernel.org/hid-add-support-for-new-revision-of-apple-aluminum-keyboard.patch: Delete. - patches.kernel.org/hid-add-support-macbookair-4-1-keyboard.patch: Delete. - patches.kernel.org/hid-apple-modern-macbook-airs-use-the-standard-apple-function-key-translations.patch: Delete. - patches.kernel.org/hid-consolidate-macbookair-4-1-mappings.patch: Delete. - patches.kernel.org/hid-hid-apple-add-device-id-of-another-wireless-aluminium.patch: Delete. - patches.kernel.org/hid-hid-multitouch-add-lg-display-multitouch-device.patch: Delete. - patches.kernel.org/hppfs-missing-include.patch: Delete. - patches.kernel.org/hpsa-add-small-delay-when-using-pci-power-management-to-reset-for-kump.patch: Delete. - patches.kernel.org/hwmon-coretemp-fix-for-non-smp-builds.patch: Delete. - patches.kernel.org/hwmon-w83627ehf-fix-broken-driver-init.patch: Delete. - patches.kernel.org/hwmon-w83627ehf-properly-report-peci-and-amd-si-sensor-types.patch: Delete. - patches.kernel.org/hwspinlock-core-use-a-mutex-to-protect-the-radix-tree.patch: Delete. - patches.kernel.org/io-mapping-ensure-io_mapping_map_atomic-_is_-atomic.patch: Delete. - patches.kernel.org/iommu-amd-fix-wrong-shift-direction.patch: Delete. - patches.kernel.org/ipheth-iphone-4-verizon-cdma-usb-product-id-add.patch: Delete. - patches.kernel.org/ipr-always-initiate-hard-reset-in-kdump-kernel.patch: Delete. - patches.kernel.org/ipv4-fix-ipsec-forward-performance-regression.patch: Delete. - patches.kernel.org/ipv6-nullify-ipv6_ac_list-and-ipv6_fl_list-when-creating-new-socket.patch: Delete. - patches.kernel.org/isci-fix-missed-unlock-in-apc_agent_timeout.patch: Delete. - patches.kernel.org/isci-fix-support-for-large-smp-requests.patch: Delete. - patches.kernel.org/iwlagn-do-not-use-interruptible-waits.patch: Delete. - patches.kernel.org/jsm-remove-buggy-write-queue.patch: Delete. - patches.kernel.org/kbuild-fix-help-text-not-displayed-in-choice-option.patch: Delete. - patches.kernel.org/kmod-prevent-kmod_loop_msg-overflow-in-__request_module.patch: Delete. - patches.kernel.org/kobj_uevent-ignore-if-some-listeners-cannot-handle-message.patch: Delete. - patches.kernel.org/kvm-s390-check-cpu_id-prior-to-using-it.patch: Delete. - patches.kernel.org/l2tp-fix-a-potential-skb-leak-in-l2tp_xmit_skb.patch: Delete. - patches.kernel.org/leds-save-the-delay-values-after-a-successful-call-to-blink_set.patch: Delete. - patches.kernel.org/leds-turn-the-blink_timer-off-before-starting-to-blink.patch: Delete. - patches.kernel.org/libsas-set-sas_address-and-device-type-of-rphy.patch: Delete. - patches.kernel.org/mac80211-config-hw-when-going-back-on-channel.patch: Delete. - patches.kernel.org/mac80211-disable-powersave-for-broken-aps.patch: Delete. - patches.kernel.org/mac80211-fix-offchannel-tx-cookie-matching.patch: Delete. - patches.kernel.org/mac80211-fix-remain_off_channel-regression.patch: Delete. - patches.kernel.org/macvlan-macvtap-fix-unicast-between-macvtap-interfaces-in-bridge-mode.patch: Delete. - patches.kernel.org/maintaners-update-qualcomm-atheros-addresses.patch: Delete. - patches.kernel.org/make-packet_statistics-getsockopt-report-consistently-between-ring-and-non-ring.patch: Delete. - patches.kernel.org/make-scsi_free_queue-kill-pending-scsi-commands.patch: Delete. - patches.kernel.org/md-raid5-fix-bug-that-could-result-in-reads-from-a-failed-device.patch: Delete. - patches.kernel.org/megaraid_sas-fix-instance-access-in-megasas_reset_timer.patch: Delete. - patches.kernel.org/memory-leak-with-rcu_table_free.patch: Delete. - patches.kernel.org/mm-avoid-null-pointer-access-in-vm_struct-via-proc-vmallocinfo.patch: Delete. - patches.kernel.org/mm-thp-tail-page-refcounting-fix.patch: Delete. - patches.kernel.org/mmc-core-ext_csd.raw_-used-in-comparison-but-never-set.patch: Delete. - patches.kernel.org/mmc-core-fix-hangs-related-to-insert-remove-of-cards.patch: Delete. - patches.kernel.org/mpt2sas-fix-for-system-hang-when-discovery-in-progress.patch: Delete. - patches.kernel.org/mtd-mtdchar-add-missing-initializer-on-raw-write.patch: Delete. - patches.kernel.org/mtd-nand_base-always-initialise-oob_poi-before-writing-oob-data.patch: Delete. - patches.kernel.org/mtd-provide-an-alias-for-the-redboot-module-name.patch: Delete. - patches.kernel.org/mtd-pxa3xx_nand-fix-blank-page-ecc-mismatch.patch: Delete. - patches.kernel.org/mtd-pxa3xx_nand-fix-nand-detection-issue.patch: Delete. - patches.kernel.org/net-align-af-specific-flowi-structs-to-long.patch: Delete. - patches.kernel.org/net-handle-different-key-sizes-between-address-families-in-flow-cache.patch: Delete. - patches.kernel.org/net-hold-sock-reference-while-processing-tx-timestamps.patch: Delete. - patches.kernel.org/net-unlock-sock-before-calling-sk_free.patch: Delete. - patches.kernel.org/net-xen-netback-correctly-restart-tx-after-a-vm-restore-migrate.patch: Delete. - patches.kernel.org/netconsole-enable-netconsole-can-make-net_device-refcnt-incorrent.patch: Delete. - patches.kernel.org/netlink-validate-nla_msecs-length.patch: Delete. - patches.kernel.org/nfs-don-t-redirty-inode-when-ncommit-0-in.patch: Delete. - patches.kernel.org/nfs-don-t-try-to-migrate-pages-with-active-requests.patch: Delete. - patches.kernel.org/nfs-sunrpc-don-t-use-a-credential-with-extra-groups.patch: Delete. - patches.kernel.org/nfsd4-fix-open-downgrade-again.patch: Delete. - patches.kernel.org/nfsd4-fix-seqid_mutating_error.patch: Delete. - patches.kernel.org/nfsd4-ignore-want-bits-in-open-downgrade.patch: Delete. - patches.kernel.org/nfsd4-permit-read-opens-of-executable-only-files.patch: Delete. - patches.kernel.org/nfsd4-remove-check-for-a-32-bit-cookie-in-nfsd4_readdir.patch: Delete. - patches.kernel.org/nfsd4-stop-using-nfserr_resource-for-transitory-errors.patch: Delete. - patches.kernel.org/pci-quirk-mmc-always-check-for-lower-base-frequency-quirk-for-ricoh-1180-e823.patch: Delete. - patches.kernel.org/perf-probe-fix-to-show-correct-error-string.patch: Delete. - patches.kernel.org/plat-mxc-iomux-v3.h-implicitly-enable-pull-up-down-when-that-s-desired.patch: Delete. - patches.kernel.org/platform-fix-error-path-in-samsung-laptop-init.patch: Delete. - patches.kernel.org/platform-samsung_laptop-add-dmi-information-for-samsung.patch: Delete. - patches.kernel.org/platform-samsung_laptop-add-support-for-x520-machines.patch: Delete. - patches.kernel.org/platform-samsung_laptop-fix-samsung-brightness-min-max.patch: Delete. - patches.kernel.org/platform-samsung_laptop-samsung-backlight-for-r528-r728.patch: Delete. - patches.kernel.org/pm-runtime-automatically-retry-failed-autosuspends.patch: Delete. - patches.kernel.org/pm-suspend-off-by-one-in-pm_suspend.patch: Delete. - patches.kernel.org/powerpc-eeh-fix-proc-ppc64-eeh-creation.patch: Delete. - patches.kernel.org/powerpc-fix-deadlock-in-icswx-code.patch: Delete. - patches.kernel.org/powerpc-fix-oops-when-echoing-bad-values-to-sys-devices-system-memory-probe.patch: Delete. - patches.kernel.org/powerpc-get_hugepte-don-t-put_page-the-wrong-page.patch: Delete. - patches.kernel.org/powerpc-gup_huge_pmd-return-0-if-pte-changes.patch: Delete. - patches.kernel.org/powerpc-gup_hugepte-avoid-freeing-the-head-page-too-many-times.patch: Delete. - patches.kernel.org/powerpc-gup_hugepte-support-thp-based-tail-recounting.patch: Delete. - patches.kernel.org/powerpc-numa-remove-double-of_node_put-in-hot_add_node_scn_to_nid.patch: Delete. - patches.kernel.org/powerpc-pseries-avoid-spurious-error-during-hotplug-cpu-add.patch: Delete. - patches.kernel.org/powerpc-remove-superfluous-pagetail-checks-on-the-pte-gup_fast.patch: Delete. - patches.kernel.org/proc-self-numa_maps-restore-huge-tag-for-hugetlb-vmas.patch: Delete. - patches.kernel.org/ptrace-don-t-clear-group_stop_sigmask-on-double-stop.patch: Delete. - patches.kernel.org/qe-fhci-fixed-the-control-bug.patch: Delete. - patches.kernel.org/readlinkat-ensure-we-return-enoent-for-the-empty-pathname-for-normal-lookups.patch: Delete. - patches.kernel.org/revert-nfs-ensure-that-writeback_single_inode-calls-write_inode-when-syncing.patch: Delete. - patches.kernel.org/rtl8150-rtl8150_disconnect-...-does-not-need-tasklet_disable.patch: Delete. - patches.kernel.org/rtnetlink-add-missing-manual-netlink-notification-in.patch: Delete. - patches.kernel.org/s390-gup_huge_pmd-return-0-if-pte-changes.patch: Delete. - patches.kernel.org/s390-gup_huge_pmd-support-thp-tail-recounting.patch: Delete. - patches.kernel.org/scsi_dh-check-queuedata-pointer-before-proceeding-further.patch: Delete. - patches.kernel.org/serial-core-power-up-uart-port-early-before-we-do-set_termios-when-resuming.patch: Delete. - patches.kernel.org/serial-pxa-work-around-for-errata-20.patch: Delete. - patches.kernel.org/st-fix-race-in-st_scsi_execute_end.patch: Delete. - patches.kernel.org/staging-hv-add-support-for-2-tb-lun-in-storage-driver.patch: Delete. - patches.kernel.org/staging-quatech_usb2-potential-lost-wakeup-scenario-in-tiocmiwait.patch: Delete. - patches.kernel.org/staging-serqt_usb2-remove-ssu100-from-supported-devices.patch: Delete. - patches.kernel.org/target-fix-report-target-port-groups-handling-with-small-allocation-length.patch: Delete. - patches.kernel.org/tcm_loop-add-explict-read-buffer-memset-for-scf_scsi_control_sg_io_cdb.patch: Delete. - patches.kernel.org/tcp-properly-handle-md5sig_pool-references.patch: Delete. - patches.kernel.org/tcp-properly-update-lost_cnt_hint-during-shifting.patch: Delete. - patches.kernel.org/tg3-negate-use_phylib-flag-check.patch: Delete. - patches.kernel.org/thp-share-get_huge_page_tail.patch: Delete. - patches.kernel.org/time-change-jiffies_to_clock_t-argument-type-to-unsigned-long.patch: Delete. - patches.kernel.org/tracing-fix-returning-of-duplicate-data-after-eof-in-trace_pipe_raw.patch: Delete. - patches.kernel.org/tty-drop-driver-reference-in-tty_open-fail-path.patch: Delete. - patches.kernel.org/tty-make-tty_add_file-non-failing.patch: Delete. - patches.kernel.org/tty-pty-release-tty-in-all-ptmx_open-fail-paths.patch: Delete. - patches.kernel.org/tuner_xc2028-allow-selection-of-the-frequency-adjustment-code-for-xc3028.patch: Delete. - patches.kernel.org/um-fix-ubd-cow-size.patch: Delete. - patches.kernel.org/update-email-address-for-stable-patch-submission.patch: Delete. - patches.kernel.org/usb-add-quirk-for-logitech-c300-web-cam.patch: Delete. - patches.kernel.org/usb-add-reset_resume-for-webcams-shown-to-be-quirky.patch: Delete. - patches.kernel.org/usb-avoid-null-pointer-deref-in-usb_hcd_alloc_bandwidth.patch: Delete. - patches.kernel.org/usb-cdc-acm-owen-si-30-support.patch: Delete. - patches.kernel.org/usb-core-devio.c-check-for-printer-class-specific-request.patch: Delete. - patches.kernel.org/usb-ehci-fix-test-mode-sequence.patch: Delete. - patches.kernel.org/usb-fix-ehci-alignment-error.patch: Delete. - patches.kernel.org/usb-fix-runtime-wakeup-on-ohci.patch: Delete. - patches.kernel.org/usb-for-usb_autopm_get_interface_async-einprogress-is-not-an-error.patch: Delete. - patches.kernel.org/usb-ftdi_sio-add-pid-for-sony-ericsson-urban.patch: Delete. - patches.kernel.org/usb-ftdi_sio-support-ti-luminary-micro-stellaris-bd-icdi.patch: Delete. - patches.kernel.org/usb-g_printer-fix-bug-in-unregistration.patch: Delete. - patches.kernel.org/usb-isp1760-added-missing-call-to-usb_hcd_check_unlink_urb-during-unlink.patch: Delete. - patches.kernel.org/usb-option-add-various-zte-device-network-interfaces-to.patch: Delete. - patches.kernel.org/usb-option-add-zte-product-0x0037-to-sendsetup-blacklist.patch: Delete. - patches.kernel.org/usb-option-convert-huawei-k3765-k4505-k4605-reservered.patch: Delete. - patches.kernel.org/usb-option-convert-interface-blacklisting-to-bitfields.patch: Delete. - patches.kernel.org/usb-pid_ns-ensure-pid-is-not-freed-during.patch: Delete. - patches.kernel.org/usb-pl2303-add-id-for-smart-device.patch: Delete. - patches.kernel.org/usb-qcserial-add-device-id-for-hp-un2430-mobile-broadband-module.patch: Delete. - patches.kernel.org/usb-qcserial-add-support-for-sierra-wireless-mc8355-gobi-3000.patch: Delete. - patches.kernel.org/usb-serial-add-device-id-for-sierra-wireless-mc8305.patch: Delete. - patches.kernel.org/usb-serial-add-pid-0xf7c0-to-ftdi-sio-driver-for-a-zeitcontrol-device.patch: Delete. - patches.kernel.org/usb-storage-use-normalized-sense-when-emulating-autosense.patch: Delete. - patches.kernel.org/usb-update-last_busy-time-after-autosuspend-fails.patch: Delete. - patches.kernel.org/usb-xhci-prevent-infinite-loop-when-processing-mse-event.patch: Delete. - patches.kernel.org/usb_storage-don-t-freeze-in-usb-stor-scan.patch: Delete. - patches.kernel.org/usbmon-vs.-tcpdump-fix-dropped-packet-count.patch: Delete. - patches.kernel.org/usbnet-cdc_ncm-don-t-use-stack-variables-for-dma.patch: Delete. - patches.kernel.org/user-per-registers-vs.-ptrace-single-stepping.patch: Delete. - patches.kernel.org/uvcvideo-set-alternate-setting-0-on-resume-if-the-bus-has-been-reset.patch: Delete. - patches.kernel.org/vfs-add-device-tag-to-proc-self-mountstats.patch: Delete. - patches.kernel.org/vfs-automount-should-ignore-lookup_follow.patch: Delete. - patches.kernel.org/vfs-fix-automount-for-negative-autofs-dentries.patch: Delete. - patches.kernel.org/vfs-fix-statfs-automounter-semantics-regression.patch: Delete. - patches.kernel.org/vfs-fix-the-remaining-automounter-semantics-regressions.patch: Delete. - patches.kernel.org/vfs-pathname-lookup-add-lookup_automount-flag.patch: Delete. - patches.kernel.org/vfs-show-o_cloexe-bit-properly-in-proc-pid-fdinfo-fd-files.patch: Delete. - patches.kernel.org/vfs-we-need-to-set-lookup_jumped-on-mountpoint-crossing.patch: Delete. - patches.kernel.org/viafb-improve-pitch-handling.patch: Delete. - patches.kernel.org/viafb-use-display-information-in-info-not-in-var-for.patch: Delete. - patches.kernel.org/wl12xx-fix-forced-passive-scans.patch: Delete. - patches.kernel.org/wmi-properly-cleanup-devices-to-avoid-crashes.patch: Delete. - patches.kernel.org/x86-fix-compilation-bug-in-kprobes-twobyte_is_boostable.patch: Delete. - patches.kernel.org/x86-uv2-workaround-for-uv2-hub-bug-system-global-address-format.patch: Delete. - patches.kernel.org/xen-blkback-report-vbd_wsect-wr_sect-properly.patch: Delete. - patches.kernel.org/xen-pcifront-update-warning-comment-to-use-e820_host.patch: Delete. - patches.kernel.org/xen-swiotlb-fix-wrong-panic.patch: Delete. - patches.kernel.org/xhci-amd-isoc-link-trb-chain-bit-quirk.patch: Delete. - patches.kernel.org/xhci-clear-plc-for-usb2-root-hub-ports.patch: Delete. - patches.kernel.org/xhci-if-no-endpoints-changed-don-t-issue-bw-command.patch: Delete. - patches.kernel.org/xhci-mem.c-check-for-ring-first_seg-null.patch: Delete. - patches.kernel.org/xhci-test-and-clear-rwc-bit.patch: Delete.- patches.arch/s390-40-01-ap-process-requestq.patch: ap: Setup timer for processing messages in request queue (bnc#729840,LTC#76476).- patches.arch/s390-vmlinux-note-header.patch: incorrect note program header.patches up to 3.2-rc2 - patches.suse/btrfs-0240-handle-bio_add_page-failure-gracefully-in-scru.patch: Btrfs: handle bio_add_page failure gracefully in scrub (FATE#306586).- patches.suse/btrfs-0214-Moved-repair-code-from-inode.c-to-extent_io.c.patch: Refresh. - patches.suse/btrfs-0224-fix-double-free-tree_root-in-btrfs_mount.patch: Refresh. - patches.suse/btrfs-0225-fix-oops-on-NULL-trans-handle-in-btrfs_truncat.patch: Btrfs: fix oops on NULL trans handle in btrfs_truncate (FATE#306586). - patches.suse/btrfs-0226-fix-our-reservations-for-updating-an-inode-whe.patch: Btrfs: fix our reservations for updating an inode when completing io (FATE#306586). - patches.suse/btrfs-0227-fix-memory-leak-in-btrfs_parse_early_options.patch: Btrfs: fix memory leak in btrfs_parse_early_options() (FATE#306586). - patches.suse/btrfs-0228-fix-subvol_name-leak-on-error-in-btrfs_mount.patch: Btrfs: fix subvol_name leak on error in btrfs_mount() (FATE#306586). - patches.suse/btrfs-0229-avoid-null-dereference-and-leaks-when-bailing-.patch: Btrfs: avoid null dereference and leaks when bailing from open_ctree() (FATE#306586). - patches.suse/btrfs-0230-close-devices-on-all-error-paths-in-open_ctree.patch: Btrfs: close devices on all error paths in open_ctree() (FATE#306586). - patches.suse/btrfs-0231-rework-error-handling-in-btrfs_mount.patch: Btrfs: rework error handling in btrfs_mount() (FATE#306586). - patches.suse/btrfs-0232-tweak-the-delayed-inode-reservations-again.patch: Btrfs: tweak the delayed inode reservations again (FATE#306586). - patches.suse/btrfs-0233-fix-nocow-when-deleting-the-item.patch: Btrfs: fix nocow when deleting the item (FATE#306586). - patches.suse/btrfs-0234-fix-no-reserved-space-for-writing-out-inode-ca.patch: Btrfs: fix no reserved space for writing out inode cache (FATE#306586). - patches.suse/btrfs-0235-fix-unreleased-path-in-btrfs_orphan_cleanup.patch: Btrfs: fix unreleased path in btrfs_orphan_cleanup() (FATE#306586). - patches.suse/btrfs-0236-Abstract-similar-code-for-btrfs_block_rsv_add-.patch: Btrfs: Abstract similar code for btrfs_block_rsv_add{, _noflush} (FATE#306586). - patches.suse/btrfs-0237-fix-orphan-backref-nodes.patch: Btrfs: fix orphan backref nodes (FATE#306586). - patches.suse/btrfs-0238-only-map-pages-if-we-know-we-need-them-when-re.patch: Btrfs: only map pages if we know we need them when reading the space cache (FATE#306586). - patches.suse/btrfs-0239-fix-deadlock-caused-by-the-race-between-reloca.patch: Btrfs: fix deadlock caused by the race between relocation (FATE#306586). - patches.suse/btrfs-push-up-unlock_extent-errors-to-callers: Refresh.- patches.suse/btrfs-8019-Free-inode-mutex-on-lseek-error.patch: Delete.- patches.drivers/i915-Fix-opregion-notifications: i915: Fix opregion notifications (bnc#647567). - patches.suse/acpi-video-switch-option: Delete. Replaced with the upstream fix.- patches.fixes/Documentation-update-cgroups-notes.patch: Documentation: update cgroups notes (bnc#724133).- patches.fixes/dm-mpath-reset-map_pointer-on-requeue: dm-mpath: Reset map pointer when requeing.- patches.fixes/scsi-set-queuedata-to-NULL.patch: SCSI: set queuedata to NULL before calling scsi_free_queue() (bnc#729548).- patches.drivers/drm-i915-fix-ELD-writing-for-SandyBridge: drm/i915: fix ELD writing for SandyBridge (bnc#722560).- patches.drivers/lis3lv02d-avoid-divide-by-zero-due-to-unchecked: lis3lv02d: avoid divide by zero due to unchecked (bnc#728035). - patches.drivers/lis3lv02d-Avoid-zero-division: Delete. Replaced with the upstream fix.- patches.suse/pagecache-limit-warn-on-usage.patch: Warn on pagecache limit usage (FATE309111).- Final 3.0.9 patchset - patches.drivers/USB3-0144-xHCI-set-link-state.patch: Refresh. - patches.drivers/target-0008-target-More-core-cleanups-from-AGrover-round-2.patch: Refresh. - patches.kernel.org/acpi-atomicio-convert-width-in-bits-to-bytes-in-__acpi_ioremap_fast.patch: ACPI atomicio: Convert width in bits to bytes in __acpi_ioremap_fast(). - patches.kernel.org/alsa-hda-add-support-for-92hd65-92hd66-family-of-codecs.patch: ALSA: hda - Add support for 92HD65 / 92HD66 family of codecs. - patches.kernel.org/alsa-hda-disable-power-widget-control-for-idt-92hd83-93.patch: ALSA: hda - Disable power-widget control for IDT 92HD83/93 as default. - patches.kernel.org/alsa-hda-realtek-skip-invalid-digital-out-pins.patch: ALSA: hda/realtek - Skip invalid digital out pins. - patches.kernel.org/alsa-ua101-fix-crash-when-unplugging.patch: ALSA: ua101: fix crash when unplugging. - patches.kernel.org/asix-simplify-condition-in-rx_fixup.patch: ASIX: Simplify condition in rx_fixup(). - patches.kernel.org/asix-use-only-11-bits-of-header-for-data-size.patch: ASIX: Use only 11 bits of header for data size. - patches.kernel.org/asoc-ensure-the-wm8962-oscillator-and-plls-start-up-disabled.patch: ASoC: Ensure the WM8962 oscillator and PLLs start up disabled. - patches.kernel.org/asoc-ensure-wm8962-pll-registers-are-reset.patch: ASoC: Ensure WM8962 PLL registers are reset. - patches.kernel.org/asoc-leave-input-audio-data-bit-length-settings-untouched-in-wm8711_set_dai_fmt.patch: ASoC: Leave input audio data bit length settings untouched in wm8711_set_dai_fmt. - patches.kernel.org/asoc-wm8711-fix-wrong-mask-for-setting-input-audio-data-bit-length-select.patch: ASoC: wm8711: Fix wrong mask for setting input audio data bit length select. - patches.kernel.org/asoc-wm8904-set-invert-bit-for-capture-switch.patch: ASoC: WM8904: Set `invert' bit for Capture Switch. - patches.kernel.org/ath9k_hw-fix-regression-of-register-offset-for-ar9003-chips.patch: ath9k_hw: Fix regression of register offset for AR9003 chips. - patches.kernel.org/ath9k_hw-update-ar9485-initvals-to-fix-system-hang-issue.patch: ath9k_hw: Update AR9485 initvals to fix system hang issue. - patches.kernel.org/block-make-gendisk-hold-a-reference-to-its-queue.patch: block: make gendisk hold a reference to its queue. - patches.kernel.org/bluetooth-add-atheros-ar3012-one-pid-vid-supported.patch: Bluetooth: Add Atheros AR3012 one PID/VID supported. - patches.kernel.org/bluetooth-add-macbookair4-1-support.patch: Bluetooth: Add MacBookAir4,1 support. - patches.kernel.org/bluetooth-add-support-for-2011-mac-mini.patch: Bluetooth: add support for 2011 mac mini. - patches.kernel.org/bluetooth-add-toshiba-laptops-ar30xx-device-id.patch: Bluetooth: Add Toshiba laptops AR30XX device ID. - patches.kernel.org/bridge-leave-carrier-on-for-empty-bridge.patch: bridge: leave carrier on for empty bridge. - patches.kernel.org/btusb-add-device-entry-for-broadcom-softsailing.patch: btusb: add device entry for Broadcom SoftSailing. - patches.kernel.org/can-bcm-fix-incomplete-tx_setup-fix.patch: can bcm: fix incomplete tx_setup fix. - patches.kernel.org/cciss-add-small-delay-when-using-pci-power-management-to-reset-for-kump.patch: cciss: add small delay when using PCI Power Management to reset for kump. - patches.kernel.org/crypto-cryptd-use-subsys_initcall-to-prevent-races-with-aesni.patch: crypto: cryptd - Use subsys_initcall to prevent races with aesni. - patches.kernel.org/dp83640-use-proper-function-to-free-transmit-time-stamping.patch: dp83640: use proper function to free transmit time stamping packets. - patches.kernel.org/drm-i915-wrap-dp-edid-fetch-functions-to-enable-edp-panel.patch: Refresh. - patches.kernel.org/drm-radeon-avoid-bouncing-connector-status-btw-disconnected-unknown.patch: drm/radeon: avoid bouncing connector status btw disconnected & unknown. - patches.kernel.org/drm-radeon-kms-add-msi-module-parameter.patch: drm/radeon/kms: add MSI module parameter. - patches.kernel.org/drm-radeon-kms-add-msi-quirk-for-dell-rs690.patch: drm/radeon/kms: Add MSI quirk for Dell RS690. - patches.kernel.org/drm-radeon-kms-add-msi-quirk-for-hp-rs690.patch: drm/radeon/kms: Add MSI quirk for HP RS690. - patches.kernel.org/drm-radeon-kms-properly-set-panel-mode-for-edp.patch: drm/radeon/kms: properly set panel mode for eDP. - patches.kernel.org/drm-radeon-kms-set-hpd-polarity-in-hpd_init.patch: drm/radeon/kms: set HPD polarity in hpd_init(). - patches.kernel.org/drm-radeon-kms-split-msi-check-into-a-separate-function.patch: drm/radeon/kms: split MSI check into a separate function. - patches.kernel.org/drm-radeon-set-hpd-polarity-at-init-time-so-hotplug-detect-works.patch: drm/radeon: set hpd polarity at init time so hotplug detect works. - patches.kernel.org/ext4-remove-i_mutex-lock-in-ext4_evict_inode-to-fix-lockdep-complaining.patch: ext4: remove i_mutex lock in ext4_evict_inode to fix lockdep complaining. - patches.kernel.org/fix-block-queue-and-elevator-memory-leak-in-scsi_alloc_sdev.patch: Fix block queue and elevator memory leak in scsi_alloc_sdev. - patches.kernel.org/hid-add-device-ids-for-macbook-pro-8-keyboards.patch: HID: Add device IDs for Macbook Pro 8 keyboards. - patches.kernel.org/hid-add-macbookair4-2-to-hid_have_special_driver.patch: HID: add MacBookAir4,2 to hid_have_special_driver. - patches.kernel.org/hid-add-support-for-huijia-usb-gamepad-connector.patch: HID: add support for HuiJia USB Gamepad connector. - patches.kernel.org/hid-add-support-for-macbookair4-2-keyboard.patch: HID: add support for MacBookAir4,2 keyboard. - patches.kernel.org/hid-add-support-for-new-revision-of-apple-aluminum-keyboard.patch: HID: add support for new revision of Apple aluminum keyboard. - patches.kernel.org/hid-add-support-macbookair-4-1-keyboard.patch: HID: Add support MacbookAir 4,1 keyboard. - patches.kernel.org/hid-apple-modern-macbook-airs-use-the-standard-apple-function-key-translations.patch: hid/apple: modern macbook airs use the standard apple function key translations. - patches.kernel.org/hid-consolidate-macbookair-4-1-mappings.patch: HID: consolidate MacbookAir 4,1 mappings. - patches.kernel.org/hid-hid-apple-add-device-id-of-another-wireless-aluminium.patch: HID: hid-apple: add device ID of another wireless aluminium. - patches.kernel.org/hid-hid-multitouch-add-lg-display-multitouch-device.patch: HID: hid-multitouch: Add LG Display Multitouch device. - patches.kernel.org/hpsa-add-small-delay-when-using-pci-power-management-to-reset-for-kump.patch: hpsa: add small delay when using PCI Power Management to reset for kump. - patches.kernel.org/hwmon-coretemp-fix-for-non-smp-builds.patch: hwmon: (coretemp) Fix for non-SMP builds. - patches.kernel.org/hwmon-w83627ehf-fix-broken-driver-init.patch: hwmon: (w83627ehf) Fix broken driver init. - patches.kernel.org/hwmon-w83627ehf-properly-report-peci-and-amd-si-sensor-types.patch: hwmon: (w83627ehf) Properly report PECI and AMD-SI sensor types. - patches.kernel.org/ipheth-iphone-4-verizon-cdma-usb-product-id-add.patch: ipheth: iPhone 4 Verizon CDMA USB Product ID add. - patches.kernel.org/kbuild-fix-help-text-not-displayed-in-choice-option.patch: kbuild: Fix help text not displayed in choice option. - patches.kernel.org/mac80211-config-hw-when-going-back-on-channel.patch: mac80211: config hw when going back on-channel. - patches.kernel.org/mac80211-disable-powersave-for-broken-aps.patch: mac80211: disable powersave for broken APs. - patches.kernel.org/mac80211-fix-remain_off_channel-regression.patch: mac80211: fix remain_off_channel regression. - patches.kernel.org/make-scsi_free_queue-kill-pending-scsi-commands.patch: Make scsi_free_queue() kill pending SCSI commands. - patches.kernel.org/mpt2sas-fix-for-system-hang-when-discovery-in-progress.patch: mpt2sas: Fix for system hang when discovery in progress. - patches.kernel.org/mtd-mtdchar-add-missing-initializer-on-raw-write.patch: mtd: mtdchar: add missing initializer on raw write. - patches.kernel.org/mtd-nand_base-always-initialise-oob_poi-before-writing-oob-data.patch: mtd: nand_base: always initialise oob_poi before writing OOB data. - patches.kernel.org/mtd-provide-an-alias-for-the-redboot-module-name.patch: mtd: provide an alias for the redboot module name. - patches.kernel.org/mtd-pxa3xx_nand-fix-blank-page-ecc-mismatch.patch: mtd: pxa3xx_nand: Fix blank page ECC mismatch. - patches.kernel.org/mtd-pxa3xx_nand-fix-nand-detection-issue.patch: mtd: pxa3xx_nand: fix nand detection issue. - patches.kernel.org/net-align-af-specific-flowi-structs-to-long.patch: net: Align AF-specific flowi structs to long. - patches.kernel.org/net-handle-different-key-sizes-between-address-families-in-flow-cache.patch: net: Handle different key sizes between address families in flow cache. - patches.kernel.org/net-unlock-sock-before-calling-sk_free.patch: net: Unlock sock before calling sk_free(). - patches.kernel.org/netlink-validate-nla_msecs-length.patch: netlink: validate NLA_MSECS length. - patches.kernel.org/nfs-don-t-redirty-inode-when-ncommit-0-in.patch: Refresh. - patches.kernel.org/nfs-sunrpc-don-t-use-a-credential-with-extra-groups.patch: NFS/sunrpc: don't use a credential with extra groups. - patches.kernel.org/platform-samsung_laptop-add-dmi-information-for-samsung.patch: Refresh. - patches.kernel.org/platform-samsung_laptop-fix-samsung-brightness-min-max.patch: Refresh. - patches.kernel.org/pm-runtime-automatically-retry-failed-autosuspends.patch: PM / Runtime: Automatically retry failed autosuspends. - patches.kernel.org/pm-suspend-off-by-one-in-pm_suspend.patch: PM / Suspend: Off by one in pm_suspend(). - patches.kernel.org/powerpc-eeh-fix-proc-ppc64-eeh-creation.patch: powerpc/eeh: Fix /proc/ppc64/eeh creation. - patches.kernel.org/powerpc-fix-deadlock-in-icswx-code.patch: powerpc: Fix deadlock in icswx code. - patches.kernel.org/powerpc-fix-oops-when-echoing-bad-values-to-sys-devices-system-memory-probe.patch: powerpc: Fix oops when echoing bad values to /sys/devices/system/memory/probe. - patches.kernel.org/powerpc-get_hugepte-don-t-put_page-the-wrong-page.patch: powerpc: get_hugepte() don't put_page() the wrong page. - patches.kernel.org/powerpc-gup_huge_pmd-return-0-if-pte-changes.patch: powerpc: gup_huge_pmd() return 0 if pte changes. - patches.kernel.org/powerpc-gup_hugepte-avoid-freeing-the-head-page-too-many-times.patch: powerpc: gup_hugepte() avoid freeing the head page too many times. - patches.kernel.org/powerpc-gup_hugepte-support-thp-based-tail-recounting.patch: powerpc: gup_hugepte() support THP based tail recounting. - patches.kernel.org/powerpc-numa-remove-double-of_node_put-in-hot_add_node_scn_to_nid.patch: powerpc/numa: Remove double of_node_put in hot_add_node_scn_to_nid. - patches.kernel.org/powerpc-pseries-avoid-spurious-error-during-hotplug-cpu-add.patch: powerpc/pseries: Avoid spurious error during hotplug CPU add. - patches.kernel.org/powerpc-remove-superfluous-pagetail-checks-on-the-pte-gup_fast.patch: powerpc: remove superfluous PageTail checks on the pte gup_fast. - patches.kernel.org/revert-nfs-ensure-that-writeback_single_inode-calls-write_inode-when-syncing.patch: Refresh. - patches.kernel.org/rtl8150-rtl8150_disconnect-...-does-not-need-tasklet_disable.patch: rtl8150: rtl8150_disconnect(...) does not need tasklet_disable(...). - patches.kernel.org/s390-gup_huge_pmd-return-0-if-pte-changes.patch: s390: gup_huge_pmd() return 0 if pte changes. - patches.kernel.org/s390-gup_huge_pmd-support-thp-tail-recounting.patch: s390: gup_huge_pmd() support THP tail recounting. - patches.kernel.org/scsi_dh-check-queuedata-pointer-before-proceeding-further.patch: scsi_dh: check queuedata pointer before proceeding further. - patches.kernel.org/st-fix-race-in-st_scsi_execute_end.patch: st: fix race in st_scsi_execute_end. - patches.kernel.org/tcm_loop-add-explict-read-buffer-memset-for-scf_scsi_control_sg_io_cdb.patch: tcm_loop: Add explict read buffer memset for SCF_SCSI_CONTROL_SG_IO_CDB. - patches.kernel.org/thp-share-get_huge_page_tail.patch: thp: share get_huge_page_tail(). - patches.kernel.org/usb-avoid-null-pointer-deref-in-usb_hcd_alloc_bandwidth.patch: USB: Avoid NULL pointer deref in usb_hcd_alloc_bandwidth. - patches.kernel.org/usb-ehci-fix-test-mode-sequence.patch: USB: EHCI: Fix test mode sequence. - patches.kernel.org/usb-ftdi_sio-support-ti-luminary-micro-stellaris-bd-icdi.patch: Refresh. - patches.kernel.org/usb-isp1760-added-missing-call-to-usb_hcd_check_unlink_urb-during-unlink.patch: usb/isp1760: Added missing call to usb_hcd_check_unlink_urb() during unlink. - patches.kernel.org/usb-option-add-various-zte-device-network-interfaces-to.patch: Refresh. - patches.kernel.org/usb-option-convert-huawei-k3765-k4505-k4605-reservered.patch: Refresh. - patches.kernel.org/usb-pid_ns-ensure-pid-is-not-freed-during.patch: Refresh. - patches.kernel.org/usb-serial-add-device-id-for-sierra-wireless-mc8305.patch: USB: Serial: Add device ID for Sierra Wireless MC8305. - patches.kernel.org/usb-serial-add-pid-0xf7c0-to-ftdi-sio-driver-for-a-zeitcontrol-device.patch: USB: Serial: Add PID(0xF7C0) to FTDI SIO driver for a zeitcontrol-device. - patches.kernel.org/usb-update-last_busy-time-after-autosuspend-fails.patch: USB: Update last_busy time after autosuspend fails. - patches.kernel.org/usb-xhci-prevent-infinite-loop-when-processing-mse-event.patch: USB: xHCI: prevent infinite loop when processing MSE event. - patches.kernel.org/usb_storage-don-t-freeze-in-usb-stor-scan.patch: usb_storage: Don't freeze in usb-stor-scan. - patches.kernel.org/usbnet-cdc_ncm-don-t-use-stack-variables-for-dma.patch: usbnet/cdc_ncm: Don't use stack variables for DMA. - patches.kernel.org/vfs-fix-statfs-automounter-semantics-regression.patch: VFS: fix statfs() automounter semantics regression. - patches.kernel.org/vfs-we-need-to-set-lookup_jumped-on-mountpoint-crossing.patch: VFS: we need to set LOOKUP_JUMPED on mountpoint crossing. - patches.kernel.org/xen-blkback-report-vbd_wsect-wr_sect-properly.patch: xen/blkback: Report VBD_WSECT (wr_sect) properly. - patches.kernel.org/xen-pcifront-update-warning-comment-to-use-e820_host.patch: Refresh. - patches.kernel.org/xhci-clear-plc-for-usb2-root-hub-ports.patch: xHCI: Clear PLC for USB2 root hub ports. - patches.kernel.org/xhci-if-no-endpoints-changed-don-t-issue-bw-command.patch: xhci: If no endpoints changed, don't issue BW command. - patches.kernel.org/xhci-test-and-clear-rwc-bit.patch: xHCI: test and clear RWC bit. - patches.arch/ppc-fix-oops-on-wrong-memory-probe: Delete. - patches.drivers/0001-btusb-add-device-entry-for-Broadcom-SoftSailing.patch: Delete. - patches.drivers/USB3-0087-xhci-If-no-endpoints-changed-don-t-issue-BW-command.patch: Delete. - patches.drivers/USB3-0132-ASIX-Simplify-condition-in-rx_fixup.patch: Delete. - patches.drivers/USB3-0133-ASIX-Use-only-11-bits-of-header-for-data-size.patch: Delete. - patches.drivers/USB3-0145-xHCI-test-and-clear-RWC-bit.patch: Delete. - patches.drivers/USB3-0146-rtl8150-rtl8150_disconnect-.-does-not-need-tasklet_disable.patch: Delete. - patches.drivers/USB3-0146-xHCI-Clear-PLC-for-USB2-root-hub-ports.patch: Delete. - patches.drivers/USB3-0155-USB-EHCI-Fix-test-mode-sequence.patch: Delete. - patches.drivers/USB3-0156-usb-isp1760-Added-missing-call-to-usb_hcd_check_unlink_urb-d.patch: Delete. - patches.drivers/USB3-0169-USB-Serial-Add-device-ID-for-Sierra-Wireless-MC8305.patch: Delete. - patches.drivers/USB3-0170-USB-Serial-Add-PID-0xF7C0-to-FTDI-SIO-driver-for-a-zeitcontr.patch: Delete. - patches.drivers/USB3-0187-usbnet-cdc_ncm-Don-t-use-stack-variables-for-DMA.patch: Delete. - patches.drivers/USB3-0188-USB-Avoid-NULL-pointer-deref-in-usb_hcd_alloc_bandwidth.patch: Delete. - patches.drivers/USB3-0197-ipheth-iPhone-4-Verizon-CDMA-USB-Product-ID-add.patch: Delete. - patches.drivers/USB3-0199-USB-xHCI-prevent-infinite-loop-when-processing-MSE-event.patch: Delete. - patches.fixes/rpc-cred-test: Delete. - patches.fixes/scsi-fix-block-queue-and-elevator-mem-leak: Delete. - patches.fixes/scsi-make-scsi-free-kill-pending-scmds.patch: Delete. - patches.fixes/scsi_dh-check-queuedata-pointer.patch: Delete. - patches.fixes/st-fix-race-in-st_scsi_execute_end.patch: Delete. - patches.kernel.org/proc-fix-races-against-execve-of-proc-pid-fd.patch: Delete.- patches.suse/btrfs-0001-Don-t-BUG_ON-errors-from-btrfs_create_subvol_r.patch: Refresh. - patches.suse/btrfs-0005-Don-t-BUG_ON-errors-in-__finish_chunk_alloc.patch: Refresh. - patches.suse/btrfs-0010-go-readonly-on-insert-error-in-btrfs_add_root_.patch: Refresh.- patches.fixes/vlan-allow-nested-vlan_do_receive.patch: vlan: allow nested vlan_do_receive() (bnc#728597).- patches.fixes/vlan-allow-nested-vlan_do_receive.patch: (bnc#728597).- supported.conf: * added xt_CONNSECMARK, removed by mistake in a2a68b74- patches.suse/ebt_vlan-dummy-debug-option.patch: ebt_vlan: add a dummy debug option (bnc#720451).- patches.drivers/mlx4_en-0001-fix-endianness-with-blue-frame-support.patch: mlx4_en: fix endianness with blue frame support (bnc#727611).- Fix compile error when CONFIG_DEBUG_RODATA=n (bnc#725836) patches.suse/x86-mark_rodata_rw.patch: Refresh. patches.suse/perf-0278-x86-Fix-redefinition-of-mark_rodata_ro-compile-error.patch: Delete.- patches.fixes/scsi-silencing-killing-requests-for-dead-queue: scsi: silencing 'killing requests for dead queue'.updates up to 3.2-rc1 - patches.suse/btrfs-0110-move-stuff-around-in-btrfs_inode-to-get-better.patch: Btrfs: move stuff around in btrfs_inode to get better packing (FATE#306586). - patches.suse/btrfs-0111-kill-reserved_bytes-in-inode.patch: Btrfs: kill reserved_bytes in inode (FATE#306586). - patches.suse/btrfs-0112-use-d_obtain_alias-when-mounting-subvol-subvol.patch: Btrfs: use d_obtain_alias when mounting subvol/subvolid (FATE#306586). - patches.suse/btrfs-0113-fix-how-we-mount-subvol-whatever.patch: Btrfs: fix how we mount subvol= (FATE#306586). - patches.suse/btrfs-0114-use-bytes_may_use-for-all-ENOSPC-reservations.patch: Btrfs: use bytes_may_use for all ENOSPC reservations (FATE#306586). - patches.suse/btrfs-0115-skip-looking-for-delalloc-if-we-don-t-have-fil.patch: Btrfs: skip looking for delalloc if we don't have - >fill_delalloc (FATE#306586). - patches.suse/btrfs-0116-calculate-checksum-space-correctly.patch: Btrfs: calculate checksum space correctly (FATE#306586). - patches.suse/btrfs-0117-kill-the-orphan-space-calculation-for-snapshot.patch: Btrfs: kill the orphan space calculation for snapshots (FATE#306586). - patches.suse/btrfs-0118-kill-the-durable-block-rsv-stuff.patch: Btrfs: kill the durable block rsv stuff (FATE#306586). - patches.suse/btrfs-0119-fix-how-we-reserve-space-for-deleting-inodes.patch: Btrfs: fix how we reserve space for deleting inodes (FATE#306586). - patches.suse/btrfs-0120-ratelimit-the-generation-printk-for-the-free-s.patch: Btrfs: ratelimit the generation printk for the free space cache (FATE#306586). - patches.suse/btrfs-0121-kill-unused-parts-of-block_rsv.patch: Btrfs: kill unused parts of block_rsv (FATE#306586). - patches.suse/btrfs-0122-don-t-try-to-commit-in-btrfs_block_rsv_check.patch: Btrfs: don't try to commit in btrfs_block_rsv_check (FATE#306586). - patches.suse/btrfs-0123-optimize-how-we-account-for-space-in-truncate.patch: Btrfs: optimize how we account for space in truncate (FATE#306586). - patches.suse/btrfs-0124-kill-btrfs_truncate_reserve_metadata.patch: Btrfs: kill btrfs_truncate_reserve_metadata (FATE#306586). - patches.suse/btrfs-0125-only-reserve-space-in-fallocate-if-we-have-to-.patch: Btrfs: only reserve space in fallocate if we have to do a preallocate (FATE#306586). - patches.suse/btrfs-0126-reduce-the-amount-of-space-needed-for-truncate.patch: Btrfs: reduce the amount of space needed for truncates (FATE#306586). - patches.suse/btrfs-0127-allow-callers-to-specify-if-flushing-can-occur.patch: Btrfs: allow callers to specify if flushing can occur for btrfs_block_rsv_check (FATE#306586). - patches.suse/btrfs-0128-fix-call-to-btrfs_search_slot-in-free-space-ca.patch: Btrfs: fix call to btrfs_search_slot in free space cache (FATE#306586). - patches.suse/btrfs-0129-fix-space-leak-when-we-fail-to-make-an-allocat.patch: Btrfs: fix space leak when we fail to make an allocation (FATE#306586). - patches.suse/btrfs-0130-don-t-increase-the-block_rsv-s-size-when-emerg.patch: Btrfs: don't increase the block_rsv's size when emergency allocating space (FATE#306586). - patches.suse/btrfs-0131-set-truncate-block-rsv-s-size.patch: Btrfs: set truncate block rsv's size (FATE#306586). - patches.suse/btrfs-0132-put-the-block-group-cache-after-we-commit-the-.patch: Btrfs: put the block group cache after we commit the super (FATE#306586). - patches.suse/btrfs-0133-handle-enospc-accounting-for-free-space-inodes.patch: Btrfs: handle enospc accounting for free space inodes (FATE#306586). - patches.suse/btrfs-0134-use-the-transactions-block_rsv-for-the-csum-ro.patch: Btrfs: use the transactions block_rsv for the csum root (FATE#306586). - patches.suse/btrfs-0135-don-t-get-the-block_rsv-in-btrfs_free_tree_blo.patch: Btrfs: don't get the block_rsv in btrfs_free_tree_block (FATE#306586). - patches.suse/btrfs-0136-stop-passing-a-trans-handle-all-around-the-res.patch: Btrfs: stop passing a trans handle all around the reservation code (FATE#306586). - patches.suse/btrfs-0137-make-sure-to-unset-trans-block_rsv-before-runn.patch: Btrfs: make sure to unset trans->block_rsv before running delayed refs (FATE#306586). - patches.suse/btrfs-0138-delay-iput-when-deleting-a-block-group.patch: Btrfs: delay iput when deleting a block group (FATE#306586). - patches.suse/btrfs-0139-use-the-inode-s-mapping-mask-for-allocating-pa.patch: Btrfs: use the inode's mapping mask for allocating pages (FATE#306586). - patches.suse/btrfs-0140-fix-orphan-cleanup-regression.patch: Btrfs: fix orphan cleanup regression (FATE#306586). - patches.suse/btrfs-0141-check-unused-against-how-much-space-we-actuall.patch: Btrfs: check unused against how much space we actually want (FATE#306586). - patches.suse/btrfs-0142-introduce-convert_extent_bit.patch: Btrfs: introduce convert_extent_bit (FATE#306586). - patches.suse/btrfs-0143-stop-using-write_one_page.patch: Btrfs: stop using write_one_page (FATE#306586). - patches.suse/btrfs-0144-use-the-global-reserve-as-a-backup-for-deletin.patch: Btrfs: use the global reserve as a backup for deleting inodes (FATE#306586). - patches.suse/btrfs-0145-break-out-of-orphan-cleanup-if-we-can-t-make-p.patch: Btrfs: break out of orphan cleanup if we can't make progress (FATE#306586). - patches.suse/btrfs-0146-allow-us-to-overcommit-our-enospc-reservations.patch: Btrfs: allow us to overcommit our enospc reservations (FATE#306586). - patches.suse/btrfs-0147-only-inherit-btrfs-specific-flags-when-creatin.patch: Btrfs: only inherit btrfs specific flags when creating files (FATE#306586). - patches.suse/btrfs-0148-introduce-mount-option-no_space_cache.patch: Btrfs: introduce mount option no_space_cache (FATE#306586). - patches.suse/btrfs-0149-don-t-skip-writing-out-a-empty-block-groups-ca.patch: Btrfs: don't skip writing out a empty block groups cache (FATE#306586). - patches.suse/btrfs-0150-add-a-io_ctl-struct-and-helpers-for-dealing-wi.patch: Btrfs: add a io_ctl struct and helpers for dealing with the space cache (FATE#306586). - patches.suse/btrfs-0151-check-the-return-value-of-filemap_write_and_wa.patch: Btrfs: check the return value of filemap_write_and_wait in the space cache (FATE#306586). - patches.suse/btrfs-0152-take-overflow-into-account-in-reserving-space.patch: Btrfs: take overflow into account in reserving space (FATE#306586). - patches.suse/btrfs-0153-inline-checksums-into-the-disk-free-space-cach.patch: Btrfs: inline checksums into the disk free space cache (FATE#306586). - patches.suse/btrfs-0154-wait-for-ordered-extents-if-we-didn-t-reclaim-.patch: Btrfs: wait for ordered extents if we didn't reclaim enough (FATE#306586). - patches.suse/btrfs-0155-fix-the-amount-of-space-reserved-for-unlink.patch: Btrfs: fix the amount of space reserved for unlink (FATE#306586). - patches.suse/btrfs-0156-fix-regression-in-re-setting-a-large-xattr.patch: Btrfs: fix regression in re-setting a large xattr (FATE#306586). - patches.suse/btrfs-0157-don-t-check-bytes_pinned-to-determine-if-we-sh.patch: Btrfs: don't check bytes_pinned to determine if we should commit the transaction (FATE#306586). - patches.suse/btrfs-0158-wait-for-ordered-extents-if-we-re-in-trouble-w.patch: Btrfs: wait for ordered extents if we're in trouble when shrinking delalloc (FATE#306586). - patches.suse/btrfs-0159-allow-shrink_delalloc-flush-the-needed-reclaim.patch: Btrfs: allow shrink_delalloc flush the needed reclaimed pages (FATE#306586). - patches.suse/btrfs-0160-release-trans-metadata-bytes-before-flushing-d.patch: Btrfs: release trans metadata bytes before flushing delayed refs (FATE#306586). - patches.suse/btrfs-0161-reserve-some-space-for-an-orphan-item-when-unl.patch: Btrfs: reserve some space for an orphan item when unlinking (FATE#306586). - patches.suse/btrfs-0162-seperate-out-btrfs_block_rsv_check-out-into-2-.patch: Btrfs: seperate out btrfs_block_rsv_check out into 2 different functions (FATE#306586). - patches.suse/btrfs-0163-if-we-have-a-lot-of-pinned-space-commit-the-tr.patch: Btrfs: if we have a lot of pinned space, commit the transaction (FATE#306586). - patches.suse/btrfs-0164-don-t-flush-the-cache-inode-before-writing-it.patch: Btrfs: don't flush the cache inode before writing it (FATE#306586). - patches.suse/btrfs-0165-check-file-extent-backref-offset-underflow.patch: btrfs: check file extent backref offset underflow (FATE#306586). - patches.suse/btrfs-0166-fix-memory-leak-in-btrfs_defrag_file.patch: btrfs: fix memory leak in btrfs_defrag_file (FATE#306586). - patches.suse/btrfs-0167-fix-defragmentation-regression.patch: Btrfs: fix defragmentation regression (FATE#306586). - patches.suse/btrfs-0168-use-i_size_read-in-btrfs_defrag_file.patch: Btrfs: use i_size_read() in btrfs_defrag_file() (FATE#306586). - patches.suse/btrfs-0169-fix-wrong-max_to_defrag-in-btrfs_defrag_file.patch: Btrfs: fix wrong max_to_defrag in btrfs_defrag_file() (FATE#306586). - patches.suse/btrfs-0170-trivial-fix-a-potential-memory-leak-in-btrfs_p.patch: btrfs: trivial fix, a potential memory leak in btrfs_parse_early_options() (FATE#306586). - patches.suse/btrfs-0171-honor-extent-thresh-during-defragmentation.patch: Btrfs: honor extent thresh during defragmentation (FATE#306586). - patches.suse/btrfs-0172-return-EINVAL-if-start-total_bytes-in-fitrim-i.patch: btrfs: return EINVAL if start > total_bytes in fitrim ioctl (FATE#306586). - patches.suse/btrfs-0173-fix-array-bound-checking.patch: Btrfs: fix array bound checking (FATE#306586). - patches.suse/btrfs-0174-remove-BUG_ON-in-compress_file_range.patch: Btrfs: remove BUG_ON() in compress_file_range() (FATE#306586). - patches.suse/btrfs-0175-fix-direct-io-vs-nodatacow.patch: Btrfs: fix direct-io vs nodatacow (FATE#306586). - patches.suse/btrfs-0176-do-not-set-EXTENT_DIRTY-along-with-EXTENT_DELA.patch: Btrfs: do not set EXTENT_DIRTY along with EXTENT_DELALLOC (FATE#306586). - patches.suse/btrfs-0177-pass-the-correct-root-to-lookup_free_space_ino.patch: Btrfs: pass the correct root to lookup_free_space_inode() (FATE#306586). - patches.suse/btrfs-0178-fix-return-value-of-btrfs_get_acl.patch: Btrfs: fix return value of btrfs_get_acl() (FATE#306586). - patches.suse/btrfs-0179-fix-race-between-multi-task-space-allocation-a.patch: Btrfs: fix race between multi-task space allocation and caching space (FATE#306586). - patches.suse/btrfs-0180-fix-oops-on-failure-path.patch: btrfs: fix oops on failure path (FATE#306586). - patches.suse/btrfs-0181-fix-a-bug-when-opening-seed-devices.patch: Btrfs: fix a bug when opening seed devices (FATE#306586). - patches.suse/btrfs-0182-close-all-bdevs-on-mount-failure.patch: Btrfs: close all bdevs on mount failure (FATE#306586). - patches.suse/btrfs-0183-do-not-allow-mounting-non-subvolumes-via-subvo.patch: btrfs: do not allow mounting non-subvolumes via subvol option (FATE#306586). - patches.suse/btrfs-0184-ratelimit-WARN_ON-in-use_block_rsv.patch: btrfs: ratelimit WARN_ON in use_block_rsv (FATE#306586). - patches.suse/btrfs-0185-don-t-wait-as-long-for-more-batches-during-SSD.patch: Btrfs: don't wait as long for more batches during SSD log commit (FATE#306586). - patches.suse/btrfs-0186-make-sure-btrfs_remove_free_space-doesn-t-leak.patch: Btrfs: make sure btrfs_remove_free_space doesn't leak EAGAIN (FATE#306586). - patches.suse/btrfs-0187-fix-extent-pinning-bugs-in-the-tree-log.patch: Btrfs: fix extent pinning bugs in the tree log (FATE#306586). - patches.suse/btrfs-0188-make-sure-to-flush-queued-bios-if-write_cache_.patch: Btrfs: make sure to flush queued bios if write_cache_pages waits (FATE#306586). - patches.suse/btrfs-0189-release-metadata-from-global-reserve-if-we-hav.patch: Btrfs: release metadata from global reserve if we have to fallback for unlink (FATE#306586). - patches.suse/btrfs-0190-use-the-global-reserve-when-truncating-the-fre.patch: Btrfs: use the global reserve when truncating the free space cache inode (FATE#306586). - patches.suse/btrfs-0191-separate-superblock-items-out-of-fs_info.patch: btrfs: separate superblock items out of fs_info (FATE#306586). - patches.suse/btrfs-0192-add-a-log-of-past-tree-roots.patch: Btrfs: add a log of past tree roots (FATE#306586). - patches.suse/btrfs-0193-make-a-delayed_block_rsv-for-the-delayed-item-.patch: Btrfs: make a delayed_block_rsv for the delayed item insertion (FATE#306586). - patches.suse/btrfs-0194-be-smarter-about-committing-the-transaction-in.patch: Btrfs: be smarter about committing the transaction in reserve_metadata_bytes (FATE#306586). - patches.suse/btrfs-0195-ClearPageError-during-writepage-and-clean_tree.patch: Btrfs: ClearPageError during writepage and clean_tree_block (FATE#306586). - patches.suse/btrfs-0196-fix-delayed-insertion-reservation.patch: Btrfs: fix delayed insertion reservation (FATE#306586). - patches.suse/btrfs-0197-add-an-extra-wait-mode-to-read_extent_buffer_p.patch: btrfs: add an extra wait mode to read_extent_buffer_pages (FATE#306586). - patches.suse/btrfs-0198-add-READAHEAD-extent-buffer-flag.patch: btrfs: add READAHEAD extent buffer flag (FATE#306586). - patches.suse/btrfs-0199-state-information-for-readahead.patch: btrfs: state information for readahead (FATE#306586). - patches.suse/btrfs-0200-initial-readahead-code-and-prototypes.patch: btrfs: initial readahead code and prototypes (FATE#306586). - patches.suse/btrfs-0201-hooks-for-readahead.patch: btrfs: hooks for readahead (FATE#306586). - patches.suse/btrfs-0202-use-readahead-API-for-scrub.patch: btrfs: use readahead API for scrub (FATE#306586). - patches.suse/btrfs-0203-added-helper-functions-to-iterate-backrefs.patch: btrfs: added helper functions to iterate backrefs (FATE#306586). - patches.suse/btrfs-0204-scrub-added-unverified_errors.patch: btrfs scrub: added unverified_errors (FATE#306586). - patches.suse/btrfs-0205-scrub-print-paths-of-corrupted-files.patch: btrfs scrub: print paths of corrupted files (FATE#306586). - patches.suse/btrfs-0206-scrub-bugfix-mirror_num-off-by-one.patch: btrfs scrub: bugfix: mirror_num off by one (FATE#306586). - patches.suse/btrfs-0207-add-mirror_num-to-extent_read_full_page.patch: btrfs: add mirror_num to extent_read_full_page (FATE#306586). - patches.suse/btrfs-0208-scrub-use-int-for-mirror_num-not-u64.patch: btrfs scrub: use int for mirror_num, not u64 (FATE#306586). - patches.suse/btrfs-0209-scrub-add-fixup-code-for-errors-on-nodatasum-f.patch: btrfs scrub: add fixup code for errors on nodatasum files (FATE#306586). - patches.suse/btrfs-0210-new-ioctls-to-do-logical-inode-and-inode-path-.patch: btrfs: new ioctls to do logical->inode and inode->path resolving (FATE#306586). - patches.suse/btrfs-0211-btrfs_multi_bio-replaced-with-btrfs_bio.patch: btrfs: btrfs_multi_bio replaced with btrfs_bio (FATE#306586). - patches.suse/btrfs-0212-Do-not-use-bio-bi_bdev-after-submission.patch: btrfs: Do not use bio->bi_bdev after submission (FATE#306586). - patches.suse/btrfs-0213-Put-mirror_num-in-bi_bdev.patch: btrfs: Put mirror_num in bi_bdev (FATE#306586). - patches.suse/btrfs-0214-Moved-repair-code-from-inode.c-to-extent_io.c.patch: btrfs: Moved repair code from inode.c to extent_io.c (FATE#306586). - patches.suse/btrfs-0215-integrating-raid-repair-and-scrub-fixup-nodata.patch: btrfs: integrating raid-repair and scrub-fixup-nodatasum (FATE#306586). - patches.suse/btrfs-0216-fix-the-new-inspection-ioctls-for-32-bit-compa.patch: Btrfs: fix the new inspection ioctls for 32 bit compat (FATE#306586). - patches.suse/btrfs-0217-fix-extent_buffer-leak-in-the-metadata-IO-erro.patch: Btrfs: fix extent_buffer leak in the metadata IO error handling (FATE#306586). - patches.suse/btrfs-0218-stop-the-readahead-threads-on-failed-mount.patch: Btrfs: stop the readahead threads on failed mount (FATE#306586). - patches.suse/btrfs-0219-stop-leaking-btrfs_bios-on-readahead.patch: Btrfs: stop leaking btrfs_bios on readahead (FATE#306586). - patches.suse/btrfs-0221-fix-a-potential-btrfs_bio-leak-on-scrub-fixups.patch: Btrfs: fix a potential btrfs_bio leak on scrub fixups (FATE#306586). - patches.suse/btrfs-0222-fix-race-during-transaction-joins.patch: Btrfs: fix race during transaction joins (FATE#306586). - patches.suse/btrfs-0223-check-for-a-null-fs-root-when-writing-to-the-b.patch: Btrfs: check for a null fs root when writing to the backup root log (FATE#306586). - patches.suse/btrfs-0224-fix-double-free-tree_root-in-btrfs_mount.patch: btrfs: fix double-free 'tree_root' in 'btrfs_mount()'. - patches.suse/btrfs-add-btrfs_panic: Refresh. - patches.suse/btrfs-extent_io-return-void: Refresh. - patches.suse/btrfs-extent_tree-void-functions: Refresh. - patches.suse/btrfs-push-up-btrfs_pin_extent-failures: Refresh. - patches.suse/btrfs-push-up-clear_extent_bit-errors-to-callers: Refresh. - patches.suse/btrfs-push-up-set_extent_bit-errors-to-callers: Refresh. - patches.suse/btrfs-push-up-submit_bio_hook-failures: Refresh. - patches.suse/btrfs-0901-move-stuff-around-in-btrfs_inode-to-get-better.patch: Delete. - patches.suse/btrfs-0902-kill-reserved_bytes-in-inode.patch: Delete. - patches.suse/btrfs-0903-use-d_obtain_alias-when-mounting-subvol-subvol.patch: Delete. - patches.suse/btrfs-0904-fix-how-we-mount-subvol-whatever.patch: Delete. - patches.suse/btrfs-0905-use-bytes_may_use-for-all-ENOSPC-reservations.patch: Delete. - patches.suse/btrfs-0906-skip-looking-for-delalloc-if-we-don-t-have-fil.patch: Delete. - patches.suse/btrfs-0907-calculate-checksum-space-correctly.patch: Delete. - patches.suse/btrfs-0908-kill-the-orphan-space-calculation-for-snapshot.patch: Delete. - patches.suse/btrfs-0909-kill-the-durable-block-rsv-stuff.patch: Delete. - patches.suse/btrfs-0910-fix-how-we-reserve-space-for-deleting-inodes.patch: Delete. - patches.suse/btrfs-0911-ratelimit-the-generation-printk-for-the-free-s.patch: Delete. - patches.suse/btrfs-0912-kill-unused-parts-of-block_rsv.patch: Delete. - patches.suse/btrfs-0913-don-t-try-to-commit-in-btrfs_block_rsv_check.patch: Delete. - patches.suse/btrfs-0914-optimize-how-we-account-for-space-in-truncate.patch: Delete. - patches.suse/btrfs-0915-kill-btrfs_truncate_reserve_metadata.patch: Delete. - patches.suse/btrfs-0916-only-reserve-space-in-fallocate-if-we-have-to-.patch: Delete. - patches.suse/btrfs-0918-reduce-the-amount-of-space-needed-for-truncate.patch: Delete. - patches.suse/btrfs-0919-allow-callers-to-specify-if-flushing-can-occur.patch: Delete. - patches.suse/btrfs-0920-fix-call-to-btrfs_search_slot-in-free-space-ca.patch: Delete. - patches.suse/btrfs-0921-fix-space-leak-when-we-fail-to-make-an-allocat.patch: Delete. - patches.suse/btrfs-0922-don-t-increase-the-block_rsv-s-size-when-emerg.patch: Delete. - patches.suse/btrfs-0923-set-truncate-block-rsv-s-size.patch: Delete. - patches.suse/btrfs-0924-put-the-block-group-cache-after-we-commit-the-.patch: Delete. - patches.suse/btrfs-0925-handle-enospc-accounting-for-free-space-inodes.patch: Delete. - patches.suse/btrfs-0926-use-the-transactions-block_rsv-for-the-csum-ro.patch: Delete. - patches.suse/btrfs-0927-don-t-get-the-block_rsv-in-btrfs_free_tree_blo.patch: Delete. - patches.suse/btrfs-0928-stop-passing-a-trans-handle-all-around-the-res.patch: Delete. - patches.suse/btrfs-0929-make-sure-to-unset-trans-block_rsv-before-runn.patch: Delete. - patches.suse/btrfs-0930-delay-iput-when-deleting-a-block-group.patch: Delete. - patches.suse/btrfs-0931-use-the-inode-s-mapping-mask-for-allocating-pa.patch: Delete. - patches.suse/btrfs-0932-fix-orphan-cleanup-regression.patch: Delete. - patches.suse/btrfs-0932-use-the-inode-s-mapping-mask-for-allocating-pa.patch: Delete. - patches.suse/btrfs-0933-check-unused-against-how-much-space-we-actuall.patch: Delete. - patches.suse/btrfs-0934-introduce-convert_extent_bit.patch: Delete. - patches.suse/btrfs-0935-stop-using-write_one_page.patch: Delete. - patches.suse/btrfs-0936-use-the-global-reserve-as-a-backup-for-deletin.patch: Delete. - patches.suse/btrfs-0937-break-out-of-orphan-cleanup-if-we-can-t-make-p.patch: Delete. - patches.suse/btrfs-0938-allow-us-to-overcommit-our-enospc-reservations.patch: Delete. - patches.suse/btrfs-0939-only-inherit-btrfs-specific-flags-when-creatin.patch: Delete. - patches.suse/btrfs-0940-introduce-mount-option-no_space_cache.patch: Delete. - patches.suse/btrfs-0941-don-t-skip-writing-out-a-empty-block-groups-ca.patch: Delete. - patches.suse/btrfs-0942-add-a-io_ctl-struct-and-helpers-for-dealing-wi.patch: Delete. - patches.suse/btrfs-0943-check-the-return-value-of-filemap_write_and_wa.patch: Delete. - patches.suse/btrfs-0944-take-overflow-into-account-in-reserving-space.patch: Delete. - patches.suse/btrfs-0945-inline-checksums-into-the-disk-free-space-cach.patch: Delete. - patches.suse/btrfs-0946-wait-for-ordered-extents-if-we-didn-t-reclaim-.patch: Delete. - patches.suse/btrfs-0947-fix-the-amount-of-space-reserved-for-unlink.patch: Delete. - patches.suse/btrfs-8003-check-file-extent-backref-offset-underflow.patch: Delete. - patches.suse/btrfs-8004-fix-memory-leak-in-btrfs_defrag_file.patch: Delete. - patches.suse/btrfs-8005-fix-defragmentation-regression.patch: Delete. - patches.suse/btrfs-8006-use-i_size_read-in-btrfs_defrag_file.patch: Delete. - patches.suse/btrfs-8007-fix-wrong-max_to_defrag-in-btrfs_defrag_file.patch: Delete. - patches.suse/btrfs-8008-honor-extent-thresh-during-defragmentation.patch: Delete. - patches.suse/btrfs-8009-return-EINVAL-if-start-total_bytes-in-fitrim-i.patch: Delete. - patches.suse/btrfs-8010-fix-array-bound-checking.patch: Delete. - patches.suse/btrfs-8011-remove-BUG_ON-in-compress_file_range.patch: Delete. - patches.suse/btrfs-8012-fix-direct-io-vs-nodatacow.patch: Delete. - patches.suse/btrfs-8013-fix-race-between-multi-task-space-allocation-a.patch: Delete. - patches.suse/btrfs-8014-trivial-fix-a-potential-memory-leak-in-btrfs_p.patch: Delete. - patches.suse/btrfs-8017-ratelimit-WARN_ON-in-use_block_rsv.patch: Delete. - patches.suse/btrfs-8018-ratelimit-WARN_ON-before-iput-in-orphan-cleanu.patch: Delete. - patches.suse/btrfs-8020-do-not-set-EXTENT_DIRTY-along-with-EXTENT_DELA.patch: Delete. - patches.suse/btrfs-8021-pass-the-correct-root-to-lookup_free_space_ino.patch: Delete. - patches.suse/btrfs-8023-fix-return-value-of-btrfs_get_acl.patch: Delete. - patches.suse/btrfs-8024-fix-oops-on-failure-path.patch: Delete. - patches.suse/btrfs-do-not-allow-mounting-non-subvolumes-via-subvol.patch: Delete.- patches.xen/xen3-x86_do_not_set_nvs_ram_busy.patch: x86: allow NVS can be accessed by driver (bnc#725592). - Refresh other Xen patches.- patches.fixes/scsi-fix-block-queue-and-elevator-mem-leak: Set queuedata to NULL before calling scsi_free_queue().- patches.fixes/hpwdt_fix_BIOS_calls_under_NX.patch: watchdog/hpwdt: Allow BIOS calls when NX is enabled (bnc#720674).- patches.fixes/hpwdt_fix_BIOS_calls_under_NX.patch: watchdog/hpwdt: Allow BIOS calls when NX is enabled (bnc#720674 ).- patches.drivers/0001-tg3-fix-tigon3_dma_hwbug_workaround.patch: tg3: fix tigon3_dma_hwbug_workaround(). - patches.drivers/0002-tg3-Fix-4k-tx-bd-segmentation-code.patch: tg3: Fix 4k tx bd segmentation code. - patches.drivers/0003-tg3-Obtain-PCI-function-number-from-device.patch: tg3: Obtain PCI function number from device. - patches.drivers/0004-tg3-Fix-4k-skb-error-recovery-path.patch: tg3: Fix 4k skb error recovery path. - patches.drivers/0005-tg3-Fix-irq-alloc-error-cleanup-path.patch: tg3: Fix irq alloc error cleanup path.- patches.suse/ext3-increase-reservation-window.patch: ext3: Increase maximum reservation window (bnc#716023).- patches.fixes/st-fix-race-in-st_scsi_execute_end.patch: [SCSI] st: fix race in st_scsi_execute_end (bnc#720536).- Disable CONFIG_DEBUG_PAGEALLOC for ia64- Update config files. - patches.suse/kdb-modules-fix-lm.patch: KDB: fix build in kdbm_fl(). - patches.suse/kdb-modules-fix-xfs.patch: KDB: fix build in XFS code.- patches.drivers/0001-bnx2-remove-unnecessary-read-of-PCI_CAP_ID_EXP.patch: bnx2: remove unnecessary read of PCI_CAP_ID_EXP. - patches.drivers/0001-bnx2x-Remove-local-defines-for-pM-and-mac-address.patch: bnx2x: Remove local defines for %pM and mac address. - patches.drivers/0001-drivers-net-Remove-casts-of-void.patch: drivers/net: Remove casts of void *. - patches.drivers/0001-net-add-external-loopback-test-in-ethtool-self-test.patch: net: add external loopback test in ethtool self test. - patches.drivers/0001-vlan-introduce-__vlan_find_dev_deep.patch: vlan: introduce __vlan_find_dev_deep(). - patches.drivers/0002-bnx2x-Coalesce-pr_cont-uses-and-fix-DP-typos.patch: bnx2x: Coalesce pr_cont uses and fix DP typos. - patches.drivers/0002-cnic-Add-timeout-for-ramrod-replies.patch: cnic: Add timeout for ramrod replies. - patches.drivers/0002-qlcnic-Add-capability-to-take-FW-dump-deterministica.patch: qlcnic: Add capability to take FW dump deterministically. - patches.drivers/0003-bnx2x-Use-pr_fmt-and-message-logging-cleanups.patch: bnx2x: Use pr_fmt and message logging cleanups. - patches.drivers/0003-cnic-bnx2fc-Increase-maximum-FCoE-sessions.patch: cnic, bnx2fc: Increase maximum FCoE sessions. - patches.drivers/0003-qlcnic-Remove-holding-api-lock-while-taking-the-dump.patch: qlcnic: Remove holding api lock while taking the dump. - patches.drivers/0004-bnx2-don-t-request-firmware-when-there-s-no-userspac.patch: bnx2: don't request firmware when there's no userspace. - patches.drivers/0004-bnx2x-downgrade-Max-BW-error-message-to-debug.patch: bnx2x: downgrade Max BW error message to debug. - patches.drivers/0004-qlcnic-Add-code-to-tune-FW-dump.patch: qlcnic: Add code to tune FW dump. - patches.drivers/0005-bnx2x-resurrect-RX-hashing.patch: bnx2x: resurrect RX hashing. - patches.drivers/0005-qlcnic-fix-initial-number-of-msix-entries-in-adapter.patch: qlcnic: fix initial number of msix entries in adapter. - patches.drivers/0006-bnx2x-fix-WOL-by-enablement-PME-in-config-space.patch: bnx2x: fix WOL by enablement PME in config space. - patches.drivers/0006-qlcnic-fix-default-operating-state-of-interface.patch: qlcnic: fix default operating state of interface. - patches.drivers/0007-bnx2x-fix-cl_id-allocation-for-non-eth-clients-for.patch: bnx2x: fix cl_id allocation for non-eth clients for NPAR mode. - patches.drivers/0007-qlcnic-Add-support-to-enable-disable-FW-dump-capabil.patch: qlcnic: Add support to enable/disable FW dump capability. - patches.drivers/0008-bnx2x-fix-skb-truesize-underestimation.patch: bnx2x: fix skb truesize underestimation. - patches.drivers/0008-qlcnic-multi-protocol-internal-loopback-support-adde.patch: qlcnic: multi protocol internal loopback support added. - patches.drivers/0009-bnx2x-Fix-LED-blink-rate-for-578xx.patch: bnx2x: Fix LED blink rate for 578xx. - patches.drivers/0009-qlcnic-add-external-loopback-support.patch: qlcnic: add external loopback support. - patches.drivers/0010-bnx2x-Add-link-retry-to-578xx-KR.patch: bnx2x: Add link retry to 578xx-KR. - patches.drivers/0010-qlcnic-fix-chip-reset-logic.patch: qlcnic: fix chip reset logic. - patches.drivers/0011-bnx2x-Fix-RX-TX-problem-caused-by-the-MAC-layer.patch: bnx2x: Fix RX/TX problem caused by the MAC layer. - patches.drivers/0011-qlcnic-updated-supported-cards-information.patch: qlcnic: updated supported cards information. - patches.drivers/0012-bnx2x-Fix-54618se-LED-behavior.patch: bnx2x: Fix 54618se LED behavior. - patches.drivers/0012-qlcnic-enable-mac-learning-in-promiscous-mode.patch: qlcnic: enable mac-learning in promiscous mode. - patches.drivers/0013-bnx2x-Enable-changing-speed-when-port-type-is-PORT_D.patch: bnx2x: Enable changing speed when port type is PORT_DA. - patches.drivers/0013-qlcnic-fix-race-in-skb-len-access.patch: qlcnic: fix race in skb->len access. - patches.drivers/0014-bnx2x-use-FW-7.0.29.0.patch: bnx2x: use FW 7.0.29.0. - patches.drivers/0014-qlcnic-define-error-code-for-loopback-test.patch: qlcnic: define error code for loopback test. - patches.drivers/0015-bnx2x-update-driver-version-to-1.70.30-0.patch: bnx2x: update driver version to 1.70.30-0. - patches.drivers/0015-qlcnic-change-capture-mask-for-FW-dump.patch: qlcnic: change capture mask for FW dump. - patches.drivers/0016-net-vlan-qlcnic-make-vlan_find_dev-private.patch: net: vlan, qlcnic: make vlan_find_dev private. - patches.drivers/0017-qlcnic-Fix-enviroment-variable-for-udev-event-genera.patch: qlcnic: Fix enviroment variable for udev event generation during FW dump. - patches.drivers/0018-qlcnic-FW-dump-related-changes.patch: qlcnic: FW dump related changes. - patches.drivers/0019-qlcnic-Fix-delay-in-reset-path.patch: qlcnic: Fix delay in reset path. - patches.drivers/0020-qlcnic-Move-get-template-from-probe-to-start-fw.patch: qlcnic: Move get template from probe to start fw. - patches.drivers/0021-qlcnic-Added-debug-info.patch: qlcnic: Added debug info. - patches.drivers/0022-net-remove-use-of-ndo_set_multicast_list-in-drivers.patch: net: remove use of ndo_set_multicast_list in drivers. - patches.drivers/0023-qlcnic-detect-fan-failure.patch: qlcnic: detect fan failure. - patches.drivers/0024-qlcnic-Change-debug-messages-in-loopback-path.patch: qlcnic: Change debug messages in loopback path. - patches.drivers/0025-qlcnic-Add-FLT-entry-for-CO-cards-FW-image-region.patch: qlcnic: Add FLT entry for CO cards FW image region. - patches.drivers/0026-qlcnic-fix-cdrp-race-condition.patch: qlcnic: fix cdrp race condition. - patches.drivers/0027-qlcnic-add-beacon-test-support.patch: qlcnic: add beacon test support. - patches.drivers/0028-qlcnic-Added-error-logging-for-firmware-abort.patch: qlcnic: Added error logging for firmware abort. - patches.drivers/0029-qlcnic-Change-CDRP-function.patch: qlcnic: Change CDRP function.- patches.fixes/Documentation-fix-typo-in-freezer-subsystem_txt.patch: Documentation: Fix typo in freezer-subsystem.txt (bnc#724544).- supported.conf: add usb-common to supported list.- patches.suse/hid-drff-alias.patch: provide a hid-drff module alias for hid-dr.- Update config files.- Final USB 3 work to bring us from 3.1 -> 3.2-rc1 - patches.drivers/USB3-0262-xHCI-USB-Make-xHCI-driver-have-a-BOS-descriptor.patch: xHCI/USB: Make xHCI driver have a BOS descriptor. - patches.drivers/USB3-0266-USB-ftdi_sio.c-Basic-icount-infrastructure-for-ftdi_sio.patch: USB: ftdi_sio.c: Basic icount infrastructure for ftdi_sio. - patches.drivers/USB3-0267-USB-ftdi_sio.c-Fill-the-RX-field-of-the-ftdi-async_icount-st.patch: USB: ftdi_sio.c: Fill the RX field of the ftdi async_icount structure. - patches.drivers/USB3-0268-USB-ftdi_sio.c-Fill-TX-field-of-the-ftdi-async_icount-struct.patch: USB: ftdi_sio.c:Fill TX field of the ftdi async_icount structure. - patches.drivers/USB3-0269-USB-ftdi_sio.c-Fill-LSR-fields-of-the-ftdi-async_icount-stru.patch: USB: ftdi_sio.c: Fill LSR fields of the ftdi async_icount structure. - patches.drivers/USB3-0270-USB-ftdi_sio.c-Fill-MSR-fields-of-the-ftdi-async_icount-stru.patch: USB: ftdi_sio.c:Fill MSR fields of the ftdi async_icount structure. - patches.drivers/USB3-0271-USB-ftdi_sio.c-Use-ftdi-async_icount-structure-for-TIOCMIWAI.patch: USB: ftdi_sio.c: Use ftdi async_icount structure for TIOCMIWAIT, as in other drivers. - patches.drivers/USB3-0281-NET-asix-fix-ethtool-e-for-AX88178-USB-dongle.patch: NET: asix: fix ethtool -e for AX88178 USB dongle.- supported.conf: reflect the upstream rename of hid-drff to hid-dr in commit 152fd6347e63d176d1f03c8d142e534a5227ef3f.- More USB 3 work from 3.1 -> 3.2 - patches.drivers/USB3-0106-USB-Add-endpoint-usage-definitions-to-ch9.h.patch: USB: Add endpoint usage definitions to ch9.h. - patches.drivers/USB3-0115-usb-Provide-usb_speed_string-function.patch: usb: Provide usb_speed_string() function. - patches.drivers/USB3-0120-usb-ehci-remove-wmb-in-qh_update.patch: usb: ehci: remove wmb in qh_update. - patches.drivers/USB3-0121-usb-ehci-only-prepare-zero-packet-for-out-transfer-if-requir.patch: usb: ehci: only prepare zero packet for out transfer if required. - patches.drivers/USB3-0122-usb-ehci-fix-comment-for-EHCI_SHRINK_JIFFIES.patch: usb: ehci: fix comment for EHCI_SHRINK_JIFFIES. - patches.drivers/USB3-0123-usb-ehci-remove-the-1st-wmb-in-qh_append_tds.patch: usb: ehci: remove the 1st wmb in qh_append_tds. - patches.drivers/USB3-0124-USB-irq-Remove-IRQF_DISABLED.patch: USB: irq: Remove IRQF_DISABLED. - patches.drivers/USB3-0126-USB-Realtek-cr-Fix-driver-freeze-issue.patch: USB: Realtek cr: Fix driver freeze issue. - patches.drivers/USB3-0127-usb-xhci-ignore-xhci-version-while-checking-for-the-link-qui.patch: usb/xhci: ignore xhci version while checking for the link quirk. - patches.drivers/USB3-0128-usbcore-refine-warm-reset-logic.patch: usbcore: refine warm reset logic. - patches.drivers/USB3-0129-xhci-Fix-mult-base-in-endpoint-bandwidth-info.patch: xhci: Fix mult base in endpoint bandwidth info. - patches.drivers/USB3-0130-xhci-USB-3.0-BW-checking.patch: xhci: USB 3.0 BW checking. - patches.drivers/USB3-0131-USB-When-hot-reset-for-USB3-fails-try-warm-reset.patch: USB: When hot reset for USB3 fails, try warm reset. - patches.drivers/USB3-0133-xhci-mem.c-xhci_segment_free-No-need-for-checking-seg-argume.patch: xhci-mem.c: xhci_segment_free: No need for checking seg argument. - patches.drivers/USB3-0135-USB-export-video.h-to-the-includes-available-for-userspace.patch: USB: export video.h to the includes available for userspace. - patches.drivers/USB3-0142-usbcore-get-BOS-descriptor-set.patch: usbcore: get BOS descriptor set. - patches.drivers/USB3-0143-usbcore-check-device-s-LPM-capability.patch: usbcore: check device's LPM capability. - patches.drivers/USB3-0144-xHCI-set-link-state.patch: xHCI: set link state. - patches.drivers/USB3-0145-xHCI-test-and-clear-RWC-bit.patch: xHCI: test and clear RWC bit. - patches.drivers/USB3-0146-xHCI-Clear-PLC-for-USB2-root-hub-ports.patch: xHCI: Clear PLC for USB2 root hub ports. - patches.drivers/USB3-0147-xHCI-Check-host-USB2-LPM-capability.patch: xHCI: Check host USB2 LPM capability. - patches.drivers/USB3-0148-xHCI-test-USB2-software-LPM.patch: xHCI: test USB2 software LPM. - patches.drivers/USB3-0149-xHCI-set-USB2-hardware-LPM.patch: xHCI: set USB2 hardware LPM. - patches.drivers/USB3-0150-usbcore-add-sysfs-support-to-xHCI-usb2-hardware-LPM.patch: usbcore: add sysfs support to xHCI usb2 hardware LPM. - patches.drivers/USB3-0152-xHCI-fix-debug-message.patch: xHCI: fix debug message. - patches.drivers/USB3-0153-usb-host-introduce-USB_ARCH_HAS_XHCI.patch: usb/host: introduce USB_ARCH_HAS_XHCI. - patches.drivers/USB3-0154-usb-xhci-group-MSI-interrupt-registration-into-its-own-funct.patch: usb/xhci: group MSI interrupt registration into its own function. - patches.drivers/USB3-0155-usb-xhci-hide-MSI-code-behind-PCI-bars.patch: usb/xhci: hide MSI code behind PCI bars. - patches.drivers/USB3-0156-usb-xhci-replace-pci_-_consistent-with-dma_-_coherent.patch: usb/xhci: replace pci_*_consistent() with dma_*_coherent(). - patches.drivers/USB3-0157-usb-xhci-refactor-xhci_pci_setup.patch: usb/xhci: refactor xhci_pci_setup(). - patches.drivers/USB3-0158-usb-xhci-move-xhci_gen_setup-away-from-pci.patch: usb/xhci: move xhci_gen_setup() away from -pci. - patches.drivers/USB3-0159-usb-xhci-remove-CONFIG_PCI-in-xhci.c-s-probe-function.patch: usb/xhci: remove CONFIG_PCI in xhci.c's probe function. - patches.drivers/USB3-0160-USB-Update-USB-default-wakeup-settings.patch: USB: Update USB default wakeup settings. - patches.drivers/USB3-0161-USB-UHCI-improve-comments-and-logic-for-root-hub-suspend.patch: USB: UHCI: improve comments and logic for root-hub suspend. - patches.drivers/USB3-0166-usbnet-add-timestamping-support.patch: usbnet: add timestamping support. - patches.drivers/USB3-0168-USB-message-cleanup-min_t-cast-in-usb_sg_init.patch: USB: message: cleanup min_t() cast in usb_sg_init(). - patches.drivers/USB3-0169-user-namespace-usb-make-usb-urbs-user-namespace-aware-v2.patch: user namespace: usb: make usb urbs user namespace aware (v2). - patches.drivers/USB3-0190-NET-fix-phy-init-for-AX88772-USB-ethernet.patch: NET: fix phy init for AX88772 USB ethernet. - patches.drivers/USB3-0191-NET-fix-phy-init-for-Asix-AX88178-USB-GigE.patch: NET: fix phy init for Asix AX88178 USB (GigE). - patches.drivers/USB3-0192-NET-white-space-coding-style-cleanup-of-asix-driver.patch: NET: white space/coding style cleanup of asix driver. - patches.suse/0001-USB-resurrect-the-vstusb-driver.patch: Refresh.- patches.drivers/0001-drivers-net-Remove-unnecessary-semicolons.patch: drivers/net: Remove unnecessary semicolons (bnc#720960). - patches.drivers/0002-netxen-convert-to-64-bit-statistics.patch: netxen: convert to 64 bit statistics (bnc#720960). - patches.drivers/0003-drivers-net-netxen-Remove-casts-of-void.patch: drivers/net/netxen: Remove casts of void * (bnc#720960). - patches.drivers/0004-netxen-add-fw-version-compatibility-check.patch: netxen: add fw version compatibility check (bnc#720960). - patches.drivers/0005-net-remove-use-of-ndo_set_multicast_list-in-drivers.patch: net: remove use of ndo_set_multicast_list in drivers (bnc#720960). - patches.drivers/0006-netxen-add-vlan-LRO-support.patch: netxen: add vlan LRO support (bnc#720960). - patches.drivers/0007-netxen-Fix-vhdr_len-in-case-of-non-vlan-packets.patch: netxen: Fix vhdr_len in case of non vlan packets (bnc#720960). - patches.drivers/0008-netxen-Add-pcie-workaround.patch: netxen: Add pcie workaround (bnc#720960).Re-add: - patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch: Refresh.- patches.drivers/0001-Separate-handling-of-irq-type-flags-variable-from-th.patch: Separate handling of irq type flags variable from the irq_flags request_irq variable (bnc#689230, fate#311451). - patches.drivers/0002-net-Remove-unneeded-version.h-includes-from-drivers-.patch: net: Remove unneeded version.h includes from drivers/net/bna (bnc#689230, fate#311451). - patches.drivers/0003-drivers-net-Remove-casts-of-void.patch: drivers/net: Remove casts of void * (bnc#689230, fate#311451). - patches.drivers/bna-Multiple-Definition-and-Interface-Setup-Fix.patch: bna: Multiple Definition and Interface Setup Fix (bnc#689230, fate#311451).- patches.drivers/rds-add-pf-sol-sysctl.diff: RDS: Re-add pf/sol access via sysctl (bnc#708204).- patches.fixes/oom-fix-oom_badness-overflow.patch: oom: fix integer overflow of points in oom_badness (bnc#727493, bnc#725208, CVE-2011-4097).- patches.drivers/mlx4_0080_profile_parm.patch: mlx4-core: enable changing default max HCA resource limits (bnc#726710).- patches.drivers/0001-iwlagn-separate-firmware-version-warning.patch: Update references (bnc#727250). - patches.drivers/0002-iwlagn-bump-firmware-API-for-some-devices.patch: Update references (bnc#727250).- patches.drivers/qla4xxx-Support-mixed-mode.patch: Fixup patch.- patches.drivers/qla4xxx-Support-mixed-mode.patch: qla4xxx: Support mixed mode (bnc#727415).- patches.fixes/scsi_dh-code-cleanup-and-remove-references-to-scsi_dev_info: scsi_dh: code cleanup and remove the references to scsi_dev_info (bnc#726504). - patches.fixes/scsi_dh_emc-adding-the-match-function-for-emc-device-handler: scsi_dh_emc: Adding the match function for emc device handler (bnc#726504). - patches.fixes/scsi_dh_hp_sw-adding-the-match-function-for-hp_sw-device_handler: scsi_dh_hp_sw: Adding the match function for hp_sw device handler (bnc#726504). - patches.fixes/scsi_dh_rdac-adding-the-match-function-for-rdac-device-handler: scsi_dh_rdac: Adding the match function for rdac device handler (bnc#726504).- patches.fixes/fcoe-setup-default-initial-ddp-value: fcoe: setup default initial value for DDP threshold (bnc#728195).- patches.arch/ia64-sn-genirq: ia64: genirq fixup for SGI/SN. (bnc#718160) - patches.suse/kdb-v4.4-3.1-common-1: Refresh. (Don't kill 'console_initcall()'!)- patches.fixes/scsi-dh-rdac-get-sdev-reference-in-queue_mode_select: scsi_dh_rdac: Get sdev reference in queue_mode_select() (bnc#721738).- patches.fixes/scsi-fix-block-queue-and-elevator-mem-leak: Fix block queue and elevator memory leak in scsi_alloc_sdev (bnc#727814). - patches.fixes/scsi-make-scsi-free-kill-pending-scmds.patch: Make scsi_free_queue() kill pending SCSI commands (bnc#727814). - patches.fixes/scsi_dh-check-queuedata-pointer.patch: scsi_dh: check queuedata pointer before proceeding further (bnc#721738). - patches.fixes/scsi_dh-do-not-access-invalid-sdev: Delete.- patches.drivers/hpsa-add-new-controller-names: hpsa: add Gen8 controller names (bnc#703426).- patches.fixes/CPU-hotplug-Freezer-Fix-race-between-CPU-hotplug-and-freezer.patch: PM / Sleep: Fix race between CPU hotplug and freezer (bnc#719280).- patches.drivers/USB3-0001-net-usb-Add-IPv6-support-to-the-LG-VL600-LTE-USB-modem-drive.patch: Refresh. - patches.drivers/USB3-0009-USB-ipw-convert-to-usb-wwan-framework.patch: Refresh. - patches.drivers/USB3-0020-usb-add-usb_endpoint_maxp-macro.patch: Refresh. - patches.drivers/USB3-0022-USB-EHCI-remove-usages-of-hcd-state.patch: Refresh. - patches.drivers/USB3-0023-usb-ch9-add-function-defines-from-ch9-USB-3.0-spec.patch: Refresh. - patches.drivers/USB3-0032-USB-usbtest-use-URB_ZERO_PACKET-for-BULK-OUT-transfers.patch: Refresh. - patches.drivers/USB3-0034-USB-use-usb_endpoint_maxp-instead-of-le16_to_cpu.patch: Refresh. - patches.drivers/USB3-0040-USB-pl2303-remove-unreachable-code.patch: Refresh. - patches.drivers/USB3-0087-xhci-If-no-endpoints-changed-don-t-issue-BW-command.patch: Refresh. - patches.drivers/USB3-0088-xhci-Rename-virt_dev-port-to-fake_port.patch: Refresh. - patches.drivers/USB3-0089-xhci-Refactor-endpoint-limit-checking.patch: Refresh. - patches.drivers/USB3-0090-xhci-Store-the-real-root-port-number.patch: Refresh. - patches.drivers/USB3-0091-xhci-Store-information-about-roothubs-and-TTs.patch: Refresh. - patches.drivers/USB3-0092-xhci-Store-endpoint-bandwidth-information.patch: Refresh. - patches.drivers/USB3-0093-xhci-Track-interval-bandwidth-tables-per-port-TT.patch: Refresh. - patches.drivers/USB3-0094-xhci-Implement-HS-FS-LS-bandwidth-checking.patch: Refresh. - patches.drivers/USB3-0095-xhci-Add-software-BW-checking-quirk-to-Intel-PPT-xHCI.patch: Refresh. - patches.drivers/USB3-0096-xhci-Don-t-print-short-isoc-packets.patch: Refresh. - patches.drivers/USB3-0097-xHCI-refine-td-allocation.patch: Refresh. - patches.drivers/USB3-0098-xhci-Redundant-check-in-xhci_check_args-for-xhci-devs.patch: Refresh.- USB 3.0 work from 3.1 -> 3.2 - patches.drivers/USB3-0001-net-usb-Add-IPv6-support-to-the-LG-VL600-LTE-USB-modem-drive.patch: net/usb: Add IPv6 support to the LG-VL600 LTE USB modem driver. - patches.drivers/USB3-0009-USB-ipw-convert-to-usb-wwan-framework.patch: USB: ipw: convert to usb-wwan framework. - patches.drivers/USB3-0020-usb-add-usb_endpoint_maxp-macro.patch: usb: add usb_endpoint_maxp() macro. - patches.drivers/USB3-0022-USB-EHCI-remove-usages-of-hcd-state.patch: USB: EHCI: remove usages of hcd->state. - patches.drivers/USB3-0023-usb-ch9-add-function-defines-from-ch9-USB-3.0-spec.patch: usb: ch9: add function defines from ch9, USB 3.0 spec. - patches.drivers/USB3-0032-USB-usbtest-use-URB_ZERO_PACKET-for-BULK-OUT-transfers.patch: USB: usbtest: use URB_ZERO_PACKET for BULK-OUT transfers. - patches.drivers/USB3-0034-USB-use-usb_endpoint_maxp-instead-of-le16_to_cpu.patch: USB: use usb_endpoint_maxp() instead of le16_to_cpu(). - patches.drivers/USB3-0040-USB-pl2303-remove-unreachable-code.patch: USB: pl2303: remove unreachable code. - patches.drivers/USB3-0087-xhci-If-no-endpoints-changed-don-t-issue-BW-command.patch: xhci: If no endpoints changed, don't issue BW command. - patches.drivers/USB3-0088-xhci-Rename-virt_dev-port-to-fake_port.patch: xhci: Rename virt_dev->port to fake_port. - patches.drivers/USB3-0089-xhci-Refactor-endpoint-limit-checking.patch: xhci: Refactor endpoint limit checking. - patches.drivers/USB3-0090-xhci-Store-the-real-root-port-number.patch: xhci: Store the "real" root port number. - patches.drivers/USB3-0091-xhci-Store-information-about-roothubs-and-TTs.patch: xhci: Store information about roothubs and TTs. - patches.drivers/USB3-0092-xhci-Store-endpoint-bandwidth-information.patch: xhci: Store endpoint bandwidth information. - patches.drivers/USB3-0093-xhci-Track-interval-bandwidth-tables-per-port-TT.patch: xhci: Track interval bandwidth tables per port/TT. - patches.drivers/USB3-0094-xhci-Implement-HS-FS-LS-bandwidth-checking.patch: xhci: Implement HS/FS/LS bandwidth checking. - patches.drivers/USB3-0095-xhci-Add-software-BW-checking-quirk-to-Intel-PPT-xHCI.patch: xhci: Add software BW checking quirk to Intel PPT xHCI. - patches.drivers/USB3-0096-xhci-Don-t-print-short-isoc-packets.patch: xhci: Don't print short isoc packets. - patches.drivers/USB3-0097-xHCI-refine-td-allocation.patch: xHCI: refine td allocation. - patches.drivers/USB3-0098-xhci-Redundant-check-in-xhci_check_args-for-xhci-devs.patch: xhci: Redundant check in xhci_check_args for xhci->devs.- patches.drivers/USB3-0146-rtl8150-rtl8150_disconnect-.-does-not-need-tasklet_disable.patch: Refresh. - patches.drivers/USB3-0187-usbnet-cdc_ncm-Don-t-use-stack-variables-for-DMA.patch: Refresh. - patches.drivers/USB3-0188-USB-Avoid-NULL-pointer-deref-in-usb_hcd_alloc_bandwidth.patch: Refresh. - patches.drivers/USB3-0197-ipheth-iPhone-4-Verizon-CDMA-USB-Product-ID-add.patch: Refresh.- USB patches to get to 3.1 level (most will end up in next 3.0-stable release) - patches.drivers/USB3-0146-rtl8150-rtl8150_disconnect-.-does-not-need-tasklet_disable.patch: rtl8150: rtl8150_disconnect(...) does not need tasklet_disable(...). - patches.drivers/USB3-0155-USB-EHCI-Fix-test-mode-sequence.patch: USB: EHCI: Fix test mode sequence. - patches.drivers/USB3-0156-usb-isp1760-Added-missing-call-to-usb_hcd_check_unlink_urb-d.patch: usb/isp1760: Added missing call to usb_hcd_check_unlink_urb() during unlink. - patches.drivers/USB3-0157-usb-serial-ftdi_sio.c-For-the-FT232H-FTDI_SIO_SET_BAUDRATE_R.patch: usb: serial: ftdi_sio.c: For the FT232H FTDI_SIO_SET_BAUDRATE_REQUEST, index needs to be shifted too. - patches.drivers/USB3-0169-USB-Serial-Add-device-ID-for-Sierra-Wireless-MC8305.patch: USB: Serial: Add device ID for Sierra Wireless MC8305. - patches.drivers/USB3-0170-USB-Serial-Add-PID-0xF7C0-to-FTDI-SIO-driver-for-a-zeitcontr.patch: USB: Serial: Add PID(0xF7C0) to FTDI SIO driver for a zeitcontrol-device. - patches.drivers/USB3-0187-usbnet-cdc_ncm-Don-t-use-stack-variables-for-DMA.patch: usbnet/cdc_ncm: Don't use stack variables for DMA. - patches.drivers/USB3-0188-USB-Avoid-NULL-pointer-deref-in-usb_hcd_alloc_bandwidth.patch: USB: Avoid NULL pointer deref in usb_hcd_alloc_bandwidth. - patches.drivers/USB3-0197-ipheth-iPhone-4-Verizon-CDMA-USB-Product-ID-add.patch: ipheth: iPhone 4 Verizon CDMA USB Product ID add. - patches.drivers/USB3-0199-USB-xHCI-prevent-infinite-loop-when-processing-MSE-event.patch: USB: xHCI: prevent infinite loop when processing MSE event.- patches.kernel.org/series: Delete.- patches.kernel.org/ath9k_hw-fix-descriptor-status-of-txopexceeded.patch: Refresh.- Add 3.0.9 pre-release patches - Update config files. - patches.drivers/target-0006-target-Core-cleanups-from-AGrover-round-1.patch: Refresh. - patches.drivers/target-0008-target-More-core-cleanups-from-AGrover-round-2.patch: Refresh. - patches.drivers/target-0011-target-Updates-from-AGrover-and-HCH-round-3.patch: Refresh. - patches.drivers/target-0030-target-Make-all-control-CDBs-scatter-gather.patch: Refresh. - patches.kernel.org/alsa-hda-add-new-revision-for-alc662.patch: ALSA: HDA: Add new revision for ALC662. - patches.kernel.org/alsa-hda-fix-adc-input-amp-handling-for-cx20549-codec.patch: ALSA: hda - Fix ADC input-amp handling for Cx20549 codec. - patches.kernel.org/alsa-hda-remove-bad-code-for-idt-92hd83-family-patch.patch: ALSA: hda - Remove bad code for IDT 92HD83 family patch. - patches.kernel.org/apic-i386-bigsmp-fix-false-warnings-regarding-logical-apic-id-mismatches.patch: apic, i386/bigsmp: Fix false warnings regarding logical APIC ID mismatches. - patches.kernel.org/arm-mach-ux500-unlock-i-d-l2x0-caches-before-init.patch: ARM: mach-ux500: unlock I&D l2x0 caches before init. - patches.kernel.org/asoc-ak4535-fixup-cache-register-table.patch: ASoC: ak4535: fixup cache register table. - patches.kernel.org/asoc-ak4642-fixup-cache-register-table.patch: ASoC: ak4642: fixup cache register table. - patches.kernel.org/asoc-fix-a-bug-in-wm8962-dsp_a-and-dsp_b-settings.patch: ASoC: Fix a bug in WM8962 DSP_A and DSP_B settings. - patches.kernel.org/asoc-remove-direct-register-cache-accesses-from-wm8962.patch: ASoC: Remove direct register cache accesses from WM8962 driver. - patches.kernel.org/asoc-wm8741-fix-setting-interface-format-for-dsp-modes.patch: ASoC: wm8741: Fix setting interface format for DSP modes. - patches.kernel.org/asoc-wm8940-properly-set-codec-dapm.bias_level.patch: ASoC: wm8940: Properly set codec->dapm.bias_level. - patches.kernel.org/asoc-wm8994-use-snd_soc_dapm_aif_out-for-aif3-capture.patch: ASoC: wm8994: Use SND_SOC_DAPM_AIF_OUT for AIF3 Capture. - patches.kernel.org/ata_piix-make-dvd-drive-recognisable-on-systems-with-intel-sandybridge-chipsets-v2.patch: ata_piix: make DVD Drive recognisable on systems with Intel Sandybridge chipsets(v2). - patches.kernel.org/ath9k-disable-unnecessary-phy-error-reporting.patch: ath9k: disable unnecessary PHY error reporting. - patches.kernel.org/ath9k_htc-add-avm-fritz-wlan-11n-v2-support.patch: ath9k_htc: add AVM FRITZ!WLAN 11N v2 support. - patches.kernel.org/ath9k_hw-fix-descriptor-status-of-txopexceeded.patch: ath9k_hw: Fix descriptor status of TxOpExceeded. - patches.kernel.org/ath9k_hw-fix-magnitude-phase-coeff-correction.patch: ath9k_hw: Fix magnitude/phase coeff correction. - patches.kernel.org/ath9k_hw-fix-number-of-gpio-pins-for-ar9287-9300.patch: ath9k_hw: Fix number of GPIO pins for AR9287/9300. - patches.kernel.org/binfmt_elf-fix-pie-execution-with-randomization-disabled.patch: binfmt_elf: fix PIE execution with randomization disabled. - patches.kernel.org/bonding-use-local-function-pointer-of-bond-recv_probe-in-bond_handle_frame.patch: bonding: use local function pointer of bond->recv_probe in bond_handle_frame. - patches.kernel.org/bridge-fix-hang-on-removal-of-bridge-via-netlink.patch: bridge: fix hang on removal of bridge via netlink. - patches.kernel.org/caif-fix-bug-with-network-namespaces.patch: caif: Fix BUG() with network namespaces. - patches.kernel.org/can-bcm-fix-tx_setup-off-by-one-errors.patch: can bcm: fix tx_setup off-by-one errors. - patches.kernel.org/carminefb-fix-module-parameters-permissions.patch: carminefb: Fix module parameters permissions. - patches.kernel.org/ccwgroup-move-attributes-to-attribute-group.patch: ccwgroup: move attributes to attribute group. - patches.kernel.org/cifs-fix-dfs-handling-in-cifs_get_file_info.patch: CIFS: Fix DFS handling in cifs_get_file_info. - patches.kernel.org/cifs-fix-incorrect-max-rfc1002-write-size-value.patch: CIFS: Fix incorrect max RFC1002 write size value. - patches.kernel.org/cris-fix-a-build-error-in-drivers-tty-serial-crisv10.c.patch: cris: fix a build error in drivers/tty/serial/crisv10.c. - patches.kernel.org/dib0700-protect-the-dib0700-buffer-access.patch: dib0700: protect the dib0700 buffer access. - patches.kernel.org/dibcom-protect-the-i2c-bufer-access.patch: DiBcom: protect the I2C bufer access. - patches.kernel.org/dp83640-free-packet-queues-on-remove.patch: dp83640: free packet queues on remove. - patches.kernel.org/drivers-net-rionet.c-fix-ethernet-address-macros-for-le-platforms.patch: drivers/net/rionet.c: fix ethernet address macros for LE platforms. - patches.kernel.org/drivers-power-ds2780_battery.c-add-a-nolock-function-to-w1-interface.patch: drivers/power/ds2780_battery.c: add a nolock function to w1 interface. - patches.kernel.org/drivers-power-ds2780_battery.c-create-central-point-for-calling-w1-interface.patch: drivers/power/ds2780_battery.c: create central point for calling w1 interface. - patches.kernel.org/drivers-power-ds2780_battery.c-fix-deadlock-upon-insertion-and-removal.patch: drivers/power/ds2780_battery.c: fix deadlock upon insertion and removal. - patches.kernel.org/drm-i915-panel-always-record-the-backlight-level-again-but-cleverly.patch: drm/i915/panel: Always record the backlight level again (but cleverly). - patches.kernel.org/drm-i915-wrap-dp-edid-fetch-functions-to-enable-edp-panel.patch: drm/i915: Wrap DP EDID fetch functions to enable eDP panel power. - patches.kernel.org/drm-radeon-kms-bail-early-in-dvi_detect-for-digital-only-connectors.patch: drm/radeon/kms: bail early in dvi_detect for digital only connectors. - patches.kernel.org/drm-radeon-kms-fix-i2c-mask-definitions.patch: drm/radeon/kms: Fix I2C mask definitions. - patches.kernel.org/drm-radeon-kms-handle-force-case-in-connector-detect-more-gracefully.patch: drm/radeon/kms: handle !force case in connector detect more gracefully. - patches.kernel.org/ehci-introduce-a-common-ehci_setup.patch: EHCI : introduce a common ehci_setup. - patches.kernel.org/ehci-workaround-for-moschip-controller-bug.patch: EHCI: workaround for MosChip controller bug. - patches.kernel.org/enic-bug-fix-fix-hardware-transmit-queue-indexing-in-enic_poll_controller.patch: enic: Bug Fix: Fix hardware transmit queue indexing in enic_poll_controller. - patches.kernel.org/epoll-fix-spurious-lockdep-warnings.patch: epoll: fix spurious lockdep warnings. - patches.kernel.org/ext2-ext3-ext4-don-t-inherit-append_fl-or-immutable_fl-for-new-inodes.patch: ext2,ext3,ext4: don't inherit APPEND_FL or IMMUTABLE_FL for new inodes. - patches.kernel.org/ext4-call-ext4_handle_dirty_metadata-with-correct-inode-in-ext4_dx_add_entry.patch: ext4: call ext4_handle_dirty_metadata with correct inode in ext4_dx_add_entry. - patches.kernel.org/ext4-ext4_mkdir-should-dirty-dir_block-with-newly-created-directory-inode.patch: ext4: ext4_mkdir should dirty dir_block with newly created directory inode. - patches.kernel.org/ext4-ext4_rename-should-dirty-dir_bh-with-the-correct-directory.patch: ext4: ext4_rename should dirty dir_bh with the correct directory. - patches.kernel.org/ext4-fix-race-in-xattr-block-allocation-path.patch: ext4: fix race in xattr block allocation path. - patches.kernel.org/fb-avoid-possible-deadlock-caused-by-fb_set_suspend.patch: fb: avoid possible deadlock caused by fb_set_suspend. - patches.kernel.org/fb-sh-mobile-fix-deadlock-risk-between-lock_fb_info-and-console_lock.patch: fb: sh-mobile: Fix deadlock risk between lock_fb_info() and console_lock(). - patches.kernel.org/genirq-add-irqf_resume_early-and-resume-such-irqs-earlier.patch: genirq: Add IRQF_RESUME_EARLY and resume such IRQs earlier. - patches.kernel.org/hid-acrux-fix-enabling-force-feedback-support.patch: HID: ACRUX - fix enabling force feedback support. - patches.kernel.org/hppfs-missing-include.patch: hppfs: missing include. - patches.kernel.org/hwspinlock-core-use-a-mutex-to-protect-the-radix-tree.patch: hwspinlock/core: use a mutex to protect the radix tree. - patches.kernel.org/io-mapping-ensure-io_mapping_map_atomic-_is_-atomic.patch: io-mapping: ensure io_mapping_map_atomic _is_ atomic. - patches.kernel.org/iommu-amd-fix-wrong-shift-direction.patch: iommu/amd: Fix wrong shift direction. - patches.kernel.org/ipr-always-initiate-hard-reset-in-kdump-kernel.patch: ipr: Always initiate hard reset in kdump kernel. - patches.kernel.org/ipv4-fix-ipsec-forward-performance-regression.patch: ipv4: fix ipsec forward performance regression. - patches.kernel.org/ipv6-nullify-ipv6_ac_list-and-ipv6_fl_list-when-creating-new-socket.patch: ipv6: nullify ipv6_ac_list and ipv6_fl_list when creating new socket. - patches.kernel.org/isci-fix-missed-unlock-in-apc_agent_timeout.patch: isci: fix missed unlock in apc_agent_timeout(). - patches.kernel.org/isci-fix-support-for-large-smp-requests.patch: isci: fix support for large smp requests. - patches.kernel.org/iwlagn-do-not-use-interruptible-waits.patch: iwlagn: do not use interruptible waits. - patches.kernel.org/jsm-remove-buggy-write-queue.patch: jsm: remove buggy write queue. - patches.kernel.org/kmod-prevent-kmod_loop_msg-overflow-in-__request_module.patch: kmod: prevent kmod_loop_msg overflow in __request_module(). - patches.kernel.org/kobj_uevent-ignore-if-some-listeners-cannot-handle-message.patch: kobj_uevent: Ignore if some listeners cannot handle message. - patches.kernel.org/kvm-s390-check-cpu_id-prior-to-using-it.patch: KVM: s390: check cpu_id prior to using it. - patches.kernel.org/l2tp-fix-a-potential-skb-leak-in-l2tp_xmit_skb.patch: l2tp: fix a potential skb leak in l2tp_xmit_skb(). - patches.kernel.org/leds-save-the-delay-values-after-a-successful-call-to-blink_set.patch: leds: save the delay values after a successful call to blink_set(). - patches.kernel.org/leds-turn-the-blink_timer-off-before-starting-to-blink.patch: leds: turn the blink_timer off before starting to blink. - patches.kernel.org/libsas-set-sas_address-and-device-type-of-rphy.patch: libsas: set sas_address and device type of rphy. - patches.kernel.org/mac80211-fix-offchannel-tx-cookie-matching.patch: mac80211: fix offchannel TX cookie matching. - patches.kernel.org/macvlan-macvtap-fix-unicast-between-macvtap-interfaces-in-bridge-mode.patch: macvlan/macvtap: Fix unicast between macvtap interfaces in bridge mode. - patches.kernel.org/maintaners-update-qualcomm-atheros-addresses.patch: MAINTANERS: update Qualcomm Atheros addresses. - patches.kernel.org/make-packet_statistics-getsockopt-report-consistently-between-ring-and-non-ring.patch: make PACKET_STATISTICS getsockopt report consistently between ring and non-ring. - patches.kernel.org/md-raid5-fix-bug-that-could-result-in-reads-from-a-failed-device.patch: md/raid5: fix bug that could result in reads from a failed device. - patches.kernel.org/megaraid_sas-fix-instance-access-in-megasas_reset_timer.patch: megaraid_sas: Fix instance access in megasas_reset_timer. - patches.kernel.org/memory-leak-with-rcu_table_free.patch: memory leak with RCU_TABLE_FREE. - patches.kernel.org/mm-avoid-null-pointer-access-in-vm_struct-via-proc-vmallocinfo.patch: mm: avoid null pointer access in vm_struct via /proc/vmallocinfo. - patches.kernel.org/mm-thp-tail-page-refcounting-fix.patch: mm: thp: tail page refcounting fix. - patches.kernel.org/mmc-core-ext_csd.raw_-used-in-comparison-but-never-set.patch: mmc: core: ext_csd.raw_* used in comparison but never set. - patches.kernel.org/mmc-core-fix-hangs-related-to-insert-remove-of-cards.patch: mmc: core: Fix hangs related to insert/remove of cards. - patches.kernel.org/net-hold-sock-reference-while-processing-tx-timestamps.patch: net: hold sock reference while processing tx timestamps. - patches.kernel.org/net-xen-netback-correctly-restart-tx-after-a-vm-restore-migrate.patch: net: xen-netback: correctly restart Tx after a VM restore/migrate. - patches.kernel.org/netconsole-enable-netconsole-can-make-net_device-refcnt-incorrent.patch: netconsole: enable netconsole can make net_device refcnt incorrent. - patches.kernel.org/nfs-don-t-redirty-inode-when-ncommit-0-in.patch: nfs: don't redirty inode when ncommit == 0 in nfs_commit_unstable_pages. - patches.kernel.org/nfs-don-t-try-to-migrate-pages-with-active-requests.patch: nfs: don't try to migrate pages with active requests. - patches.kernel.org/nfsd4-fix-open-downgrade-again.patch: nfsd4: fix open downgrade, again. - patches.kernel.org/nfsd4-fix-seqid_mutating_error.patch: nfsd4: fix seqid_mutating_error. - patches.kernel.org/nfsd4-ignore-want-bits-in-open-downgrade.patch: nfsd4: ignore WANT bits in open downgrade. - patches.kernel.org/nfsd4-permit-read-opens-of-executable-only-files.patch: nfsd4: permit read opens of executable-only files. - patches.kernel.org/nfsd4-remove-check-for-a-32-bit-cookie-in-nfsd4_readdir.patch: nfsd4: Remove check for a 32-bit cookie in nfsd4_readdir(). - patches.kernel.org/nfsd4-stop-using-nfserr_resource-for-transitory-errors.patch: nfsd4: stop using nfserr_resource for transitory errors. - patches.kernel.org/pci-quirk-mmc-always-check-for-lower-base-frequency-quirk-for-ricoh-1180-e823.patch: PCI quirk: mmc: Always check for lower base frequency quirk for Ricoh 1180:e823. - patches.kernel.org/perf-probe-fix-to-show-correct-error-string.patch: perf probe: Fix to show correct error string. - patches.kernel.org/plat-mxc-iomux-v3.h-implicitly-enable-pull-up-down-when-that-s-desired.patch: plat-mxc: iomux-v3.h: implicitly enable pull-up/down when that's desired. - patches.kernel.org/platform-fix-error-path-in-samsung-laptop-init.patch: Platform: Fix error path in samsung-laptop init. - patches.kernel.org/platform-samsung_laptop-add-dmi-information-for-samsung.patch: platform: samsung_laptop: add dmi information for Samsung R700 laptops. - patches.kernel.org/platform-samsung_laptop-add-support-for-x520-machines.patch: Platform: samsung_laptop: add support for X520 machines. - patches.kernel.org/platform-samsung_laptop-fix-samsung-brightness-min-max.patch: platform: samsung_laptop: fix samsung brightness min/max calculations. - patches.kernel.org/platform-samsung_laptop-samsung-backlight-for-r528-r728.patch: Platform: samsung_laptop: samsung backlight for R528/R728. - patches.kernel.org/proc-fix-races-against-execve-of-proc-pid-fd.patch: proc: fix races against execve() of /proc/PID/fd**. - patches.kernel.org/proc-self-numa_maps-restore-huge-tag-for-hugetlb-vmas.patch: /proc/self/numa_maps: restore "huge" tag for hugetlb vmas. - patches.kernel.org/ptrace-don-t-clear-group_stop_sigmask-on-double-stop.patch: ptrace: don't clear GROUP_STOP_SIGMASK on double-stop. - patches.kernel.org/qe-fhci-fixed-the-control-bug.patch: QE/FHCI: fixed the CONTROL bug. - patches.kernel.org/readlinkat-ensure-we-return-enoent-for-the-empty-pathname-for-normal-lookups.patch: readlinkat: ensure we return ENOENT for the empty pathname for normal lookups. - patches.kernel.org/revert-nfs-ensure-that-writeback_single_inode-calls-write_inode-when-syncing.patch: Revert "NFS: Ensure that writeback_single_inode() calls write_inode() when syncing". - patches.kernel.org/rtnetlink-add-missing-manual-netlink-notification-in.patch: rtnetlink: Add missing manual netlink notification in dev_change_net_namespaces. - patches.kernel.org/serial-core-power-up-uart-port-early-before-we-do-set_termios-when-resuming.patch: serial-core: power up uart port early before we do set_termios when resuming. - patches.kernel.org/serial-pxa-work-around-for-errata-20.patch: serial: pxa: work around for errata #20. - patches.kernel.org/series: - patches.kernel.org/staging-hv-add-support-for-2-tb-lun-in-storage-driver.patch: Staging: hv: Add support for >2 TB LUN in storage driver. - patches.kernel.org/staging-quatech_usb2-potential-lost-wakeup-scenario-in-tiocmiwait.patch: staging: quatech_usb2: Potential lost wakeup scenario in TIOCMIWAIT. - patches.kernel.org/staging-serqt_usb2-remove-ssu100-from-supported-devices.patch: staging: serqt_usb2: remove ssu100 from supported devices. - patches.kernel.org/target-fix-report-target-port-groups-handling-with-small-allocation-length.patch: target: Fix REPORT TARGET PORT GROUPS handling with small allocation length. - patches.kernel.org/tcp-properly-handle-md5sig_pool-references.patch: tcp: properly handle md5sig_pool references. - patches.kernel.org/tcp-properly-update-lost_cnt_hint-during-shifting.patch: tcp: properly update lost_cnt_hint during shifting. - patches.kernel.org/tg3-negate-use_phylib-flag-check.patch: tg3: negate USE_PHYLIB flag check. - patches.kernel.org/time-change-jiffies_to_clock_t-argument-type-to-unsigned-long.patch: time: Change jiffies_to_clock_t() argument type to unsigned long. - patches.kernel.org/tracing-fix-returning-of-duplicate-data-after-eof-in-trace_pipe_raw.patch: tracing: Fix returning of duplicate data after EOF in trace_pipe_raw. - patches.kernel.org/tty-drop-driver-reference-in-tty_open-fail-path.patch: TTY: drop driver reference in tty_open fail path. - patches.kernel.org/tty-make-tty_add_file-non-failing.patch: TTY: make tty_add_file non-failing. - patches.kernel.org/tty-pty-release-tty-in-all-ptmx_open-fail-paths.patch: TTY: pty, release tty in all ptmx_open fail paths. - patches.kernel.org/tuner_xc2028-allow-selection-of-the-frequency-adjustment-code-for-xc3028.patch: tuner_xc2028: Allow selection of the frequency adjustment code for XC3028. - patches.kernel.org/um-fix-ubd-cow-size.patch: um: fix ubd cow size. - patches.kernel.org/update-email-address-for-stable-patch-submission.patch: Update email address for stable patch submission. - patches.kernel.org/usb-add-quirk-for-logitech-c300-web-cam.patch: USB: add quirk for Logitech C300 web cam. - patches.kernel.org/usb-add-reset_resume-for-webcams-shown-to-be-quirky.patch: USB: add RESET_RESUME for webcams shown to be quirky. - patches.kernel.org/usb-cdc-acm-owen-si-30-support.patch: usb: cdc-acm: Owen SI-30 support. - patches.kernel.org/usb-core-devio.c-check-for-printer-class-specific-request.patch: usb/core/devio.c: Check for printer class specific request. - patches.kernel.org/usb-fix-ehci-alignment-error.patch: USB: fix ehci alignment error. - patches.kernel.org/usb-fix-runtime-wakeup-on-ohci.patch: USB: Fix runtime wakeup on OHCI. - patches.kernel.org/usb-for-usb_autopm_get_interface_async-einprogress-is-not-an-error.patch: USB: for usb_autopm_get_interface_async -EINPROGRESS is not an error. - patches.kernel.org/usb-ftdi_sio-add-pid-for-sony-ericsson-urban.patch: USB: ftdi_sio: add PID for Sony Ericsson Urban. - patches.kernel.org/usb-ftdi_sio-support-ti-luminary-micro-stellaris-bd-icdi.patch: USB: ftdi_sio: Support TI/Luminary Micro Stellaris BD-ICDI Board. - patches.kernel.org/usb-g_printer-fix-bug-in-unregistration.patch: USB: g_printer: fix bug in unregistration. - patches.kernel.org/usb-option-add-various-zte-device-network-interfaces-to.patch: USB: option: add various ZTE device network interfaces to the blacklist. - patches.kernel.org/usb-option-add-zte-product-0x0037-to-sendsetup-blacklist.patch: USB: option: add ZTE product 0x0037 to sendsetup blacklist. - patches.kernel.org/usb-option-convert-huawei-k3765-k4505-k4605-reservered.patch: USB: option: convert Huawei K3765, K4505, K4605 reservered interface to blacklist. - patches.kernel.org/usb-option-convert-interface-blacklisting-to-bitfields.patch: USB: option: convert interface blacklisting to bitfields. - patches.kernel.org/usb-pid_ns-ensure-pid-is-not-freed-during.patch: USB: pid_ns: ensure pid is not freed during kill_pid_info_as_uid. - patches.kernel.org/usb-pl2303-add-id-for-smart-device.patch: USB: pl2303: add id for SMART device. - patches.kernel.org/usb-qcserial-add-device-id-for-hp-un2430-mobile-broadband-module.patch: USB: qcserial: add device ID for "HP un2430 Mobile Broadband Module". - patches.kernel.org/usb-qcserial-add-support-for-sierra-wireless-mc8355-gobi-3000.patch: USB: qcserial: Add support for Sierra Wireless MC8355/Gobi 3000. - patches.kernel.org/usb-storage-use-normalized-sense-when-emulating-autosense.patch: USB: storage: Use normalized sense when emulating autosense. - patches.kernel.org/usbmon-vs.-tcpdump-fix-dropped-packet-count.patch: usbmon vs. tcpdump: fix dropped packet count. - patches.kernel.org/user-per-registers-vs.-ptrace-single-stepping.patch: user per registers vs. ptrace single stepping. - patches.kernel.org/uvcvideo-set-alternate-setting-0-on-resume-if-the-bus-has-been-reset.patch: uvcvideo: Set alternate setting 0 on resume if the bus has been reset. - patches.kernel.org/vfs-add-device-tag-to-proc-self-mountstats.patch: vfs: add "device" tag to /proc/self/mountstats. - patches.kernel.org/vfs-automount-should-ignore-lookup_follow.patch: vfs: automount should ignore LOOKUP_FOLLOW. - patches.kernel.org/vfs-fix-automount-for-negative-autofs-dentries.patch: Refresh. - patches.kernel.org/vfs-fix-the-remaining-automounter-semantics-regressions.patch: VFS: Fix the remaining automounter semantics regressions. - patches.kernel.org/vfs-pathname-lookup-add-lookup_automount-flag.patch: vfs pathname lookup: Add LOOKUP_AUTOMOUNT flag. - patches.kernel.org/vfs-show-o_cloexe-bit-properly-in-proc-pid-fdinfo-fd-files.patch: vfs: show O_CLOEXE bit properly in /proc//fdinfo/ files. - patches.kernel.org/viafb-improve-pitch-handling.patch: viafb: improve pitch handling. - patches.kernel.org/viafb-use-display-information-in-info-not-in-var-for.patch: viafb: use display information in info not in var for panning. - patches.kernel.org/wl12xx-fix-forced-passive-scans.patch: wl12xx: fix forced passive scans. - patches.kernel.org/wmi-properly-cleanup-devices-to-avoid-crashes.patch: WMI: properly cleanup devices to avoid crashes. - patches.kernel.org/x86-fix-compilation-bug-in-kprobes-twobyte_is_boostable.patch: x86: Fix compilation bug in kprobes' twobyte_is_boostable. - patches.kernel.org/x86-uv2-workaround-for-uv2-hub-bug-system-global-address-format.patch: x86: uv2: Workaround for UV2 Hub bug (system global address format). - patches.kernel.org/xen-pcifront-update-warning-comment-to-use-e820_host.patch: xen-pcifront: Update warning comment to use 'e820_host' option. - patches.kernel.org/xen-swiotlb-fix-wrong-panic.patch: xen-swiotlb: Fix wrong panic. - patches.kernel.org/xhci-amd-isoc-link-trb-chain-bit-quirk.patch: xHCI: AMD isoc link TRB chain bit quirk. - patches.kernel.org/xhci-mem.c-check-for-ring-first_seg-null.patch: xhci-mem.c: Check for ring->first_seg != NULL. - patches.suse/SoN-0006-net-Introduce-sk_allocation-to-allow-addition-of-GFP.patch: Refresh. - patches.suse/SoN-0019-mm-Methods-for-teaching-filesystems-about-PG_swapcac.patch: Refresh. - patches.suse/SoN-0020-nfs-teach-the-NFS-client-how-to-treat-PG_swapcache-p.patch: Refresh. - patches.suse/staging-hv-staging-next-20110829-0327-Staging-hv-storvsc-Add-the-contents-of-hyperv_sto.patch: Refresh. - patches.xen/xen-x86-no-lapic: Refresh. - patches.arch/s390-37-01-rcu-table-free-leak.diff: Delete. - patches.arch/x86_uv2_GRU_TLB_fix.patch: Delete. - patches.drivers/drm-i915-panel-Alwyas-record-the-backlight-level-again: Delete. - patches.drivers/isci-fix-missed-unlock-in-apc_agent_timeout.patch: Delete. - patches.drivers/isci-fix-support-for-large-smp-requests.patch: Delete. - patches.drivers/libsas-set-sas_address-and-device-type-of-rp.patch: Delete. - patches.drivers/xhci-amd-isoc-link-trb-chain-bit-quirk.patch: Delete. - patches.fixes/ata-piix-atapi-fix.patch: Delete. - patches.fixes/ccwgroup-fix-availability-of-attributes.patch: Delete. - patches.fixes/drm-radeon-kms-fix-i2c-masks.patch: Delete. - patches.fixes/hp_gobi3000id_1bfac90d1b8e63a4d44158c3445d8fda3fb6d5eb.diff: Delete. - patches.fixes/jsm-remove-buggy-write-queue.patch: Delete. - patches.fixes/vfs-automount-should-ignore-lookup_follow.patch: Delete. - patches.fixes/vfs-fix-the-remaining-automounter-semantics-regressi.patch: Delete. - patches.fixes/vfs-pathname-lookup-add-lookup_automount-flag.patch: Delete. - patches.suse/staging-hv-staging-next-20111001-0129-Staging-hv-Add-support-for-2-TB-LUN-in-storage-dr.patch: Delete.- patches.arch/s390-39-01-qeth-remove-warning.txt: qeth: remove kernel warning qeth_core_main.c:884 (bnc#728043,LTC#76146).- rpm/kernel-binary.spec.in: Removed kerntypes references (bnc#726400,LTC#76221) - patches.suse/s390-Kerntypes.diff: Delete.- patches.fixes/hfs-fix-hfs_find_init-sb-ext_tree-null-ptr-oops.patch: hfs: fix hfs_find_init() sb->ext_tree NULL ptr oops (CVE-2011-2203 bnc#699709).- patches.fixes/drm-radeon-kms-fix-i2c-masks.patch: Add git commit ID.- patches.fixes/oom-thaw-threads-if-oom-killed-thread-is-frozen-befo.patch: oom: thaw threads if oom killed thread is frozen before deferring (bnc#723999).- patches.fixes/scsi_dh_alua-add-one-more-check-condition-for-alua-handler: scsi_dh_alua: Add one more check-condition for alua handler (bnc#727367). - patches.fixes/scsi_dh_alua-fix-time-interval-for-alua-rtpg-commands: scsi_dh_alua: Fix the time inteval for alua rtpg commands (bnc#727367).- patches.drivers/drm-i915-set-the-right-SDVO-transcoder-for-CPT: drm/i915: set the right SDVO transcoder for CPT (bnc#715031).- patches.drivers/lis3lv02d-Avoid-zero-division: lis3lv02d: Avoid zero-division (bnc#728035).- patches.drivers/ipr-add-bluehawk-IDs: ipr: add bluehawk PCI IDs (bnc#726214). - patches.fixes/perf-oprofile-fix: perf: Optimize event scheduling locking (bnc#723171).- patches.drivers/ipoib-sp1-compatible-options.patch: Add SP1-compatible module options to ipoib driver (bnc#720456). - patches.drivers/srp-sp1-compatible-options.patch: Add SP1-compatible module options to srp driver (bnc#720456).- patches.fixes/rpc-cred-test: NFS/sunrpc: don't use a credential with extra groups (bnc#725878).- patches.suse/acpi_osi_sle11_not_winp_key.patch: Provide possibility for vendors to workaround WIN-P key issue (kernel@suse.de list, subject: About acpi osi string for SUSE issue).- Fix typo - patches.fixes/sched-Fix-idle_cpu: Refresh.- patches.drivers/drm-i915-panel-Alwyas-record-the-backlight-level-again: Refresh. Update tags.- patches.fixes/sched-Fix-idle_cpu: sched: Fix idle_cpu() (bnc#726023). - patches.fixes/sched-Request-for-idle-balance-during-nohz-idle-load-balance: sched: Request for idle balance during nohz idle load balance (bnc#726023). - patches.fixes/sched-Use-resched-IPI-to-kick-off-the-nohz-idle-balance: sched: Use resched IPI to kick off the nohz idle balance (bnc#726023). - patches.suse/kdb-v4.4-3.1-common-1: Refresh.- patches.drivers/igb-Fix-for-Alt-MAC-Address-feature-on-82580-and-la.patch: igb: Fix for Alt MAC Address feature on 82580 and later devices.This one is mainline: - patches.arch/acpi_ec_delay_param.patch: Delete.- patches.suse/fcoe-reduce-max_sectors: fcoe: Reduce max_sectors to 1024 (bnc#695898).- patches.fixes/scsi-edd-Treat-XPRS-host-bus-type-the-same-as.patch: edd: Treat "XPRS" host bus type the same as "PCI" (bnc#726699). - patches.fixes/scsi-libfc-avoid-exchanges-collision-during-lport.patch: libfc: avoid exchanges collision during lport reset (bnc#726699). - patches.fixes/scsi-libfc-fix-checking-FC_TYPE_BLS.patch: libfc: fix checking FC_TYPE_BLS (bnc#726699). - patches.fixes/scsi-libfc-improve-flogi-retries-to-avoid-lport-s.patch: libfc: improve flogi retries to avoid lport stuck (bnc#726699). - patches.drivers/fcoe-0029-libfc-fix_deadlock_bug_in_fc_e.patch: Delete obsolete patch.- patches.drivers/0001-iwlagn-separate-firmware-version-warning.patch: iwlagn: separate firmware version warning. - patches.drivers/0002-iwlagn-bump-firmware-API-for-some-devices.patch: iwlagn: bump firmware API for some devices.- patches.fixes/perf-sched-fix-script-command-documentation.patch: perf sched: Fix script command documentation (bnc#726156).- patches.fixes/acpi-introduce-acpi_rsdp-parameter-for-kdump.patch: ACPI: introduce "acpi_rsdp=" parameter for kdump (bnc#717263).- patches.suse/0001-vfs-allow-proc-pid-maps-to-return-a-custom-device.patch: vfs: allow /proc/pid/maps to return a custom device (bnc#672923). - patches.suse/0002-btrfs-Introduce-btrfs_get_maps_dev.patch: btrfs: Introduce btrfs_get_maps_dev() (bnc#672923).- patches.fixes/ata-piix-atapi-fix.patch: Add upstream commit id.- patches.fixes/broadcom_softsailing.diff: Fix Broadcom device IDs (bnc#719296).- patches.fixes/bug-722429_0001-add-device-entry-for-Broadcom-Valentine-combo-card.patch: add device entry for Broadcom Valentine combo card. From SP1. (bnc#726176).- patches.fixes/hp_gobi3000id_1bfac90d1b8e63a4d44158c3445d8fda3fb6d5eb.diff: new device ID to make HP's rebranded Gobi3000 work (bnc#726999)- patches.fixes/ip_vs-fix-netns-shutdown-startup-deadlock.patch: IPVS netns shutdown/startup dead-lock (bnc#725350).- patches.suse/staging-hv-mousevsc-module-name.patch: hv_mouse: use KBUILD_MODNAME as drivername.- patches.suse/ip6_tunnel-add-optional-fwmark-inherit.patch: ip6_tunnel: add optional fwmark inherit (bnc#725346).- patches.drivers/0001-rt2x00-Enable-PA_PE-bits-in-TX_PIN_CFG-according-to-.patch: rt2x00: Enable PA_PE bits in TX_PIN_CFG according to active band (bnc#720741). - patches.drivers/0002-rt2x00-Don-t-disable-G0-PA_PE-bit-in-case-of-BT-coex.patch: rt2x00: Don't disable G0 PA_PE bit in case of BT coexistence (bnc#720741). - patches.drivers/0003-rt2x00-Add-support-for-RT3572-RT3592-RT3592-Bluetoot.patch: rt2x00: Add support for RT3572/RT3592/RT3592+Bluetooth combo card. - patches.drivers/0004-rt2x00-Interface-sequence-lock-doesn-t-have-to-disab.patch: rt2x00: Interface sequence lock doesn't have to disable interrupts. - patches.drivers/0005-rt2x00-Enabled-rt35xx-device-support-by-default.patch: rt2x00: Enabled rt35xx device support by default (bnc#720741). - patches.drivers/0006-drivers-net-Remove-unnecessary-semicolons.patch: drivers/net: Remove unnecessary semicolons (bnc#720741). - patches.drivers/0007-net-remove-interrupt.h-inclusion-from-netdevice.h.patch: net: remove interrupt.h inclusion from netdevice.h (bnc#720741). - patches.drivers/0008-rt2x00-fix-possible-memory-corruption-in-case-of-inv.patch: rt2x00: fix possible memory corruption in case of invalid rxdesc.size (bnc#720741). - patches.drivers/0009-rt2x00-reset-usb-devices-at-probe.patch: rt2x00: reset usb devices at probe (bnc#720741). - patches.drivers/0010-rt2x00-Fix-unspeficied-typo.patch: rt2x00: Fix unspeficied typo (bnc#720741). - patches.drivers/0011-rt2x00-Don-t-use-queue-entry-as-parameter-when-creat.patch: rt2x00: Don't use queue entry as parameter when creating TX descriptor (bnc#720741). - patches.drivers/0012-rt2x00-Reduce-window-of-a-queue-s-tx-lock.patch: rt2x00: Reduce window of a queue's tx lock (bnc#720741). - patches.drivers/0013-rt2x00-Properly-identify-rt2800usb-devices.patch: rt2x00: Properly identify rt2800usb devices (bnc#720741). - patches.drivers/0014-rt2x00-Implement-tx_frames_pending-mac80211-callback.patch: rt2x00: Implement tx_frames_pending mac80211 callback function. - patches.drivers/0015-rt2800usb-Add-new-device-ID-for-Belkin.patch: rt2800usb: Add new device ID for Belkin. - patches.drivers/0016-rt2x00-Fix-compilation-without-CONFIG_RT2X00_LIB_CRY.patch: rt2x00: Fix compilation without CONFIG_RT2X00_LIB_CRYPTO. - patches.drivers/0017-rt2x00-Fix-PCI-interrupt-processing-race-on-SMP-syst.patch: rt2x00: Fix PCI interrupt processing race on SMP systems. - patches.drivers/0018-rt2x00-Add-new-chipset-support.patch: rt2x00: Add new chipset support.- patches.drivers/drm-i915-fix-intel-sdvo-lvds-connected-status.diff: Fix detection of connected LVDS sdvo devices (bnc#707270, bnc #710575).- patches.fixes/acpiphp-ignore-root-bridges-using-PCIe-native-hotplug: PCI / ACPI: Make acpiphp ignore root bridges using PCIe native hotplug (bnc#714552).- supported.conf: Added rds_rdma and rds_tcp from /net/rds (bnc#708204)- patches.xen/xencons-tty_mutex.patch: tty deadlock in kernel-xen, xenconsole (bnc#726333).- Linux 3.0.8. - patches.arch/x86-fix-S4-regression: Delete. - patches.kernel.org/arm-7113-1-mm-align-bank-start-to-max_order_nr_pages.patch: Delete. - patches.kernel.org/arm-7117-1-perf-fix-hw_cache_-events-on-cortex-a9.patch: Delete. - patches.kernel.org/avoid-using-variable-length-arrays-in-kernel-sys.c.patch: Delete. - patches.kernel.org/cifs-fix-err_ptr-dereference-in-cifs_get_root.patch: Delete. - patches.kernel.org/cputimer-cure-lock-inversion.patch: Delete. - patches.kernel.org/drm-radeon-kms-atom-fix-handling-of-fb-scratch-indices.patch: Delete. - patches.kernel.org/drm-ttm-ensure-ttm-for-new-node-is-bound-before-calling-move_notify.patch: Delete. - patches.kernel.org/drm-ttm-unbind-ttm-before-destroying-node-in-accel-move-cleanup.patch: Delete. - patches.kernel.org/firewire-sbp2-fix-panic-after-rmmod-with-slow-targets.patch: Delete. - patches.kernel.org/fuse-fix-memory-leak.patch: Delete. - patches.kernel.org/hfsplus-ensure-bio-requests-are-not-smaller-than-the-hardware-sectors.patch: Delete. - patches.kernel.org/hid-magicmouse-ignore-ivalid-report-id-while-switching-modes-v2.patch: Delete. - patches.kernel.org/hid-usbhid-add-support-for-sigma-micro-chip.patch: Delete. - patches.kernel.org/hwmon-w83627ehf-properly-report-thermal-diode-sensors.patch: Delete. - patches.kernel.org/mm-fix-race-between-mremap-and-removing-migration-entry.patch: Delete. - patches.kernel.org/platform-fix-samsung-laptop-dmi-identification-for-n150-n210-220-n230.patch: Delete. - patches.kernel.org/uvcvideo-fix-crash-when-linking-entities.patch: Delete. - patches.kernel.org/x25-prevent-skb-overreads-when-checking-call-user-data.patch: Delete. - patches.kernel.org/xfs-do-not-update-xa_last_pushed_lsn-for-locked-items.patch: Delete. - patches.kernel.org/xfs-force-the-log-if-we-encounter-pinned-buffers-in-.iop_pushbuf.patch: Delete. - patches.kernel.org/xfs-revert-to-using-a-kthread-for-ail-pushing.patch: Delete. - patches.kernel.org/xfs-start-periodic-workers-later.patch: Delete. - patches.kernel.org/xfs-use-a-cursor-for-bulk-ail-insertion.patch: Delete.- fix LOOKUP_PARENT -> LOOKUP_CONTINUE patches.fixes/vfs-automount-should-ignore-lookup_follow.patch patches.fixes/vfs-pathname-lookup-add-lookup_automount-flag.patch patches.kernel.org/vfs-fix-automount-for-negative-autofs-dentries.patch- patches.fixes/vfs-automount-should-ignore-lookup_follow.patch: Refresh. - patches.fixes/vfs-pathname-lookup-add-lookup_automount-flag.patch: Refresh. - Reenable patches.kernel.org/vfs-fix-automount-for-negative-autofs-dentries.patch- patches.suse/SoN-0009b-netvm-Propagate-page-pfmemalloc-to-skb.patch: Add hack to avoid crash in propagate_pfmemalloc_skb (bnc#726075)- Update config files. - patches.fixes/sched-reinstate-FAIR_SLEEPERS-feature: sched: reinstate FAIR_SLEEPERS feature (bnc#724577). - Fix regression caused by FAIR_SLEEPERS_ON_BY_DEFAULT being mistakenly applied to GENTLE_FAIR_SLEEPERS. Because s390 did not have FAIR_SLEEPERS_ON_BY_DEFAULT set, it ended up with full sleeper credit, where it had none at all. Per agreement with IBM, SP2 will have sleeper fairness enabled like everyone else. FAIR_SLEEPERS_ON_BY_DEFAULT config option is now superfluous, so remove it. Restore the FAIR_SLEEPERS scheduler feature for SP2 (status-quo), and plan on that being removed in SLE12, with SCHED_BATCH being used as intended for loads which do not react well to wakeup preemption.- patches.drivers/benet-32bit-fix: benet: fix build error on 32bit arch.- patches.suse/staging-hv-pata_piix-ignore-disks.patch: Update comments in code and reduce patch size- patches.drivers/be2net-update-version-2.101.346u-to-2.102.147s.patch: Obsolete, delete.- patches.drivers/0000-be2net-fix-netdev_stats_update.patch: be2net: fix netdev_stats_update (bnc#722092). - patches.drivers/0001-be2net-get-rid-of-multi_rxq-module-param.patch: be2net: get rid of multi_rxq module param (bnc#722092). - patches.drivers/0002-be2net-fix-initialization-of-vlan_prio_bmap.patch: be2net: fix initialization of vlan_prio_bmap (bnc#722092). - patches.drivers/0003-be2net-fix-certain-cmd-failure-logging.patch: be2net: fix certain cmd failure logging (bnc#722092). - patches.drivers/0004-be2net-create-destroy-rx-queues-on-interface-open-c.patch: be2net: create/destroy rx-queues on interface open/close (bnc#722092). - patches.drivers/0005-be2net-clear-intr-bit-in-be_probe.patch: be2net: clear intr bit in be_probe() (bnc#722092). - patches.drivers/0006-benet-Add-missing-comma-between-constant-string-arr.patch: benet: Add missing comma between constant string array (bnc#722092). - patches.drivers/0007-be2net-account-for-skb-allocation-failures.patch: be2net: account for skb allocation failures (bnc#722092). - patches.drivers/0008-be2net-move-to-new-vlan-model.patch: be2net: move to new vlan model (bnc#722092). - patches.drivers/0009-be2net-cleanup-and-refactor-stats-code.patch: be2net: cleanup and refactor stats code (bnc#722092). - patches.drivers/0010-be2net-use-stats-sync-to-read-write-64-bit-stats.patch: be2net: use stats-sync to read/write 64-bit stats (bnc#722092). - patches.drivers/0011-be2net-remove-wrong-and-unnecessary-calls-to-netif_.patch: be2net: remove wrong and unnecessary calls to netif_carrier_off() (bnc#722092). - patches.drivers/0012-be2net-no-need-to-query-link-status.patch: be2net: no need to query link status (bnc#722092). - patches.drivers/0013-be2net-non-member-vlan-pkts-not-received-in-promisc.patch: be2net: non-member vlan pkts not received in promiscous mode (bnc#722092). - patches.drivers/0014-be2net-use-RX_FILTER-cmd-to-program-multicast-addre.patch: be2net: use RX_FILTER cmd to program multicast addresses (bnc#722092). - patches.drivers/0015-be2net-add-support-for-flashing-Teranetics-PHY-firmw.patch: be2net: add support for flashing Teranetics PHY firmware (bnc#722092). - patches.drivers/0016-be2net-drop-pkts-that-do-not-belong-to-the-port.patch: be2net: drop pkts that do not belong to the port (bnc#722092). - patches.drivers/0017-be2net-fix-cmd-rx-filter-not-notifying-MCC.patch: be2net: fix cmd-rx-filter not notifying MCC (bnc#722092). - patches.drivers/0018-benet-fix-build-error-on-32bit-arch.patch: benet: fix build error on 32bit arch (bnc#722092). - patches.drivers/0019-be2net-Storing-the-vid-got-by-the-grp5-event-inst.patch: be2net: Storing the 'vid' got by the grp5 event instead of storing the vlan_tag (bnc#722092). - patches.drivers/0020-be2net-Fix-race-in-posting-rx-buffers.patch: be2net: Fix race in posting rx buffers (bnc#722092). - patches.drivers/0021-be2net-get-rid-of-memory-mapped-pci-cfg-space-addre.patch: be2net: get rid of memory mapped pci-cfg space address (bnc#722092). - patches.drivers/0022-be2net-fix-erx-rx_drops_no_frags-wrap-around.patch: be2net: fix erx->rx_drops_no_frags wrap around (bnc#722092). - patches.drivers/0023-be2net-increase-FW-update-completion-timeout.patch: be2net: increase FW update completion timeout (bnc#722092). - patches.drivers/0024-be2net-remove-unused-variable.patch: be2net: remove unused variable (bnc#722092). - patches.drivers/0025-benet-remove-bogus-unlikely-on-vlan-check.patch: benet: remove bogus "unlikely" on vlan check (bnc#722092). - patches.drivers/0026-be2net-fix-multicast-filter-programming.patch: be2net: fix multicast filter programming (bnc#722092). - patches.drivers/0027-be2net-Show-newly-flashed-FW-ver-in-ethtool.patch: be2net: Show newly flashed FW ver in ethtool (bnc#722092). - patches.drivers/0028-be2net-Add-60-second-delay-to-allow-FAT-dump-comple.patch: be2net: Add 60 second delay to allow FAT dump completion on recovery from EEH (bnc#722092). - patches.drivers/0029-be2net-Change-the-data-type-of-the-on-die-temperat.patch: be2net: Change the data type of the 'on die temperature' stat (bnc#722092). - patches.drivers/0030-be2net-Fixed-Endianness-issues-in-the-response-read.patch: be2net: Fixed Endianness issues in the response read log length field while retrieving FAT data (bnc#722092). - patches.drivers/0031-be2net-Modified-PCI-MaxReadReq-size-to-4096-bytes.patch: be2net: Modified PCI MaxReadReq size to 4096 bytes (bnc#722092). - patches.drivers/0032-be2net-Making-die-temperature-ioctl-call-async.patch: be2net: Making die temperature ioctl call async (bnc#722092). - patches.drivers/0033-be2net-Changed-version-to-4.1.227.patch: be2net: Changed version to 4.1.227 (bnc#722092).- patches.fixes/scsi-dh-rdac-allow-for-empty-scsi_dh_data-pointer: scsi_dh_rdac: Allow for empty scsi_dh_data pointer (bnc#721738).- patches.fixes/nfs-check-rpcclient-validity.patch: Check validity of cl_rpcclient in nfs_server_list_show (bnc#717884).- patches.drivers/hpsa-remove-closed-source-hpvsa-hooks.patch: hpsa: remove closed source hpvsa hooks (bnc#703426,FATE#311201). - patches.drivers/hpsa-sanitize-version-number.patch: hpsa: sanitize version number (bnc#703426,FATE#311201).- patches.fixes/scsi-check-for-invalid-sdev-in-scsi_prep_fn: Check for invalid sdev in scsi_prep_fn() (bnc#722569).- patches.suse/dm-mpath-accept-failed-paths: Fix crash on multipath destroy (bnc#721738).- patches.arch/x86_do_not_set_nvs_ram_busy.patch: x86: allow NVS can be accessed by driver (bnc#725592).- patches.drivers/xhci-amd-isoc-link-trb-chain-bit-quirk.patch: xHCI: AMD isoc link TRB chain bit quirk (bnc#721045).- patches.arch/qeth-l3-add-large_send-and-checksumming-sysfs-attributes-again.patch: qeth: l3 add large_send and checksumming sysfs attributes again (bnc#718149).- 3.0.8 patches: - patches.kernel.org/arm-7113-1-mm-align-bank-start-to-max_order_nr_pages.patch: ARM: 7113/1: mm: Align bank start to MAX_ORDER_NR_PAGES. - patches.kernel.org/arm-7117-1-perf-fix-hw_cache_-events-on-cortex-a9.patch: ARM: 7117/1: perf: fix HW_CACHE_* events on Cortex-A9. - patches.kernel.org/avoid-using-variable-length-arrays-in-kernel-sys.c.patch: Avoid using variable-length arrays in kernel/sys.c. - patches.kernel.org/cifs-fix-err_ptr-dereference-in-cifs_get_root.patch: CIFS: Fix ERR_PTR dereference in cifs_get_root. - patches.kernel.org/cputimer-cure-lock-inversion.patch: cputimer: Cure lock inversion. - patches.kernel.org/drm-radeon-kms-atom-fix-handling-of-fb-scratch-indices.patch: drm/radeon/kms/atom: fix handling of FB scratch indices. - patches.kernel.org/drm-ttm-ensure-ttm-for-new-node-is-bound-before-calling-move_notify.patch: drm/ttm: ensure ttm for new node is bound before calling move_notify(). - patches.kernel.org/drm-ttm-unbind-ttm-before-destroying-node-in-accel-move-cleanup.patch: drm/ttm: unbind ttm before destroying node in accel move cleanup. - patches.kernel.org/firewire-sbp2-fix-panic-after-rmmod-with-slow-targets.patch: firewire: sbp2: fix panic after rmmod with slow targets. - patches.kernel.org/fuse-fix-memory-leak.patch: fuse: fix memory leak. - patches.kernel.org/hfsplus-ensure-bio-requests-are-not-smaller-than-the-hardware-sectors.patch: hfsplus: ensure bio requests are not smaller than the hardware sectors. - patches.kernel.org/hid-magicmouse-ignore-ivalid-report-id-while-switching-modes-v2.patch: HID: magicmouse: ignore 'ivalid report id' while switching modes, v2. - patches.kernel.org/hid-usbhid-add-support-for-sigma-micro-chip.patch: HID: usbhid: Add support for SiGma Micro chip. - patches.kernel.org/hwmon-w83627ehf-properly-report-thermal-diode-sensors.patch: hwmon: (w83627ehf) Properly report thermal diode sensors. - patches.kernel.org/mm-fix-race-between-mremap-and-removing-migration-entry.patch: mm: fix race between mremap and removing migration entry. - patches.kernel.org/platform-fix-samsung-laptop-dmi-identification-for-n150-n210-220-n230.patch: Platform: fix samsung-laptop DMI identification for N150/N210/220/N230. - patches.kernel.org/uvcvideo-fix-crash-when-linking-entities.patch: uvcvideo: Fix crash when linking entities. - patches.kernel.org/vfs-fix-automount-for-negative-autofs-dentries.patch: VFS: Fix automount for negative autofs dentries. - patches.kernel.org/x25-prevent-skb-overreads-when-checking-call-user-data.patch: x25: Prevent skb overreads when checking call user data. - patches.kernel.org/xfs-do-not-update-xa_last_pushed_lsn-for-locked-items.patch: xfs: do not update xa_last_pushed_lsn for locked items. - patches.kernel.org/xfs-force-the-log-if-we-encounter-pinned-buffers-in-.iop_pushbuf.patch: xfs: force the log if we encounter pinned buffers in .iop_pushbuf. - patches.kernel.org/xfs-revert-to-using-a-kthread-for-ail-pushing.patch: xfs: revert to using a kthread for AIL pushing. - patches.kernel.org/xfs-start-periodic-workers-later.patch: xfs: start periodic workers later. - patches.kernel.org/xfs-use-a-cursor-for-bulk-ail-insertion.patch: xfs: use a cursor for bulk AIL insertion. - patches.suse/xfs-dmapi-obtain-vfsmount-for-use-in-xfs_dm_rdwr: Refresh. - patches.suse/xfs-restore-dmapi-infrastructure: Refresh. - patches.suse/mm-thp-fix-race-between-migration-mremap.patch: Delete.- patches.drivers/tg3-fix-VLAN-tagging-regression: tg3: fix VLAN tagging regression (bnc#724865).- patches.drivers/via-velocity-revive-txcsum_offload: via-velocity: revive txcsum_offload option for backwards compatibility (bnc#720459).- patches.fixes/net-allow-vlan-traffic-to-be-received-under-bond.patch: net: allow vlan traffic to be received under bond (bnc#725344).Update to latest x86-tip version: - patches.arch/x2apic_opt_out.patch: Refresh.- patches.drivers/r8169-dummy-option: r8169: add dummy rx_copybreak option for backwards compatibility (bnc#720459). - patches.drivers/via-velocity-dummy-option: via-velocity: add dummy int_works option for backwards compatibility (bnc#720459).- patches.arch/s390-38-01-qdio-partial_eqbs.patch: qdio: EQBS retry after CCQ 96 (bnc#725424,LTC#76117).- patches.fixes/dm-table-set-flush-capability: Rediff patch to apply.- patches.fixes/dm-table-set-flush-capability: dm table: set flush capability based on underlying devices (bnc#725077).- patches.suse/btrfs-push-up-clear_extent_bit-errors-to-callers: Refresh.- patches.suse/btrfs-0940-introduce-mount-option-no_space_cache.patch: Btrfs: introduce mount option no_space_cache (FATE#306586). - patches.suse/btrfs-0941-don-t-skip-writing-out-a-empty-block-groups-ca.patch: Btrfs: don't skip writing out a empty block groups cache (FATE#306586). - patches.suse/btrfs-0942-add-a-io_ctl-struct-and-helpers-for-dealing-wi.patch: Btrfs: add a io_ctl struct and helpers for dealing with the space cache (FATE#306586). - patches.suse/btrfs-0943-check-the-return-value-of-filemap_write_and_wa.patch: Btrfs: check the return value of filemap_write_and_wait in the space cache (FATE#306586). - patches.suse/btrfs-0944-take-overflow-into-account-in-reserving-space.patch: Btrfs: take overflow into account in reserving space (FATE#306586). - patches.suse/btrfs-0945-inline-checksums-into-the-disk-free-space-cach.patch: Btrfs: inline checksums into the disk free space cache (FATE#306586). - patches.suse/btrfs-0946-wait-for-ordered-extents-if-we-didn-t-reclaim-.patch: Btrfs: wait for ordered extents if we didn't reclaim enough (FATE#306586). - patches.suse/btrfs-0947-fix-the-amount-of-space-reserved-for-unlink.patch: Btrfs: fix the amount of space reserved for unlink (FATE#306586). - patches.suse/btrfs-8024-fix-oops-on-failure-path.patch: btrfs: fix oops on failure path (FATE#306586). - patches.suse/btrfs-add-btrfs_panic: Refresh. - patches.suse/btrfs-push-up-clear_extent_bit-errors-to-callers: Refresh. - patches.suse/btrfs-push-up-lock_extent-errors-to-callers: Refresh. - patches.suse/btrfs-push-up-unlock_extent-errors-to-callers: Refresh. - patches.suse/btrfs-0940-don-t-skip-writing-out-a-empty-block-groups-ca.patch: Delete. - patches.suse/btrfs-0941-check-the-return-value-of-filemap_write_and_wa.patch: Delete. - patches.suse/btrfs-0942-take-overflow-into-account-in-reserving-space.patch: Delete.- patches.fixes/linux-3.0.0-fix-strim.txt: lib/string: Fix strim regression on all-whitespace strings (bnc#717248).- patches.fixes/scsi_dh-do-not-access-invalid-sdev: scsi_dh: Do not access invalid sdev (bnc#721738).- patches.fixes/libfc-check-fc_block_scsi_eh-return-success: libfc - fc_block_scsi_eh returns SUCCESS instead of zero (bnc#722414).- patches.fixes/dm-mpath-reattach-dh: Remove obsolete patch (bnc#719911).- patches.drivers/lpfc-8.3.5.48.1p-update: Update lpfc to 8.3.5.48.1p (bnc#714274).- patches.drivers/alsa-sp2-hda-005-Add-support-for-vref-out-based-mute-LED-con: ALSA: hda - Add support for vref-out based mute LED control on IDT codecs (bnc#724800). - patches.drivers/alsa-sp2-hda-006-Add-CONFIG_SND_HDA_POWER_SAVE-to-stac_vrefout: ALSA: hda - Add CONFIG_SND_HDA_POWER_SAVE to stac_vrefout_set() (bnc#724800).- patches.suse/btrfs-0937-break-out-of-orphan-cleanup-if-we-can-t-make-p.patch: Refresh.- patches.drivers/acpi_apei_disable_suse.patch: Fix two typos.- Update Xen patches to c/s 1123. - patches.xen/xen3-hwmon-coretemp-01-add-core-pkg-threshold-support-to-coretemp.patch: hwmon: (coretemp) Add core/pkg threshold support to Coretemp (bnc#698797, FATE#311941). - patches.xen/xen3-hwmon-coretemp-02-initialize-tmin.patch: hwmon: (coretemp) Initialize tmin (bnc#698797, FATE#311941). - patches.xen/xen3-hwmon-coretemp-03-drop-duplicate-function-get_pkg_tjmax.patch: hwmon: (coretemp) Drop duplicate function get_pkg_tjmax (bnc#698797, FATE#311941). - patches.xen/xen3-hwmon-coretemp-04-let-the-user-force-tjmax.patch: hwmon: (coretemp) Let the user force TjMax (bnc#698797, FATE#311941). - patches.xen/xen3-hwmon-coretemp-05-dont-use-threshold-registers-for-tempX_max.patch: hwmon: (coretemp) Don't use threshold registers for tempX_max (bnc#698797, FATE#311941). - patches.xen/xen3-hwmon-coretemp-09-fixup-platform-device-id-change.patch: hwmon: (coretemp) Fixup platform device ID change (bnc#698797, FATE#311941).- patches.suse/btrfs-0106-fix-recursive-auto-defrag.patch: Btrfs: fix recursive auto-defrag (FATE#306586). - patches.suse/btrfs-0107-make-sure-not-to-defrag-extents-past-i_size.patch: Btrfs: make sure not to defrag extents past i_size (FATE#306586). - patches.suse/btrfs-0937-break-out-of-orphan-cleanup-if-we-can-t-make-p.patch: Refresh. - patches.suse/btrfs-8007-fix-wrong-max_to_defrag-in-btrfs_defrag_file.patch: Refresh. - patches.suse/btrfs-8022-fix-recursive-auto-defrag.patch: Delete.- patches.fixes/sched-cgroups-Disallow-attaching-kthreadd: sched, cgroups: disallow attaching kthreadd (bnc#721840).- Update config files. Disable USB_OTG_BLACKLIST_HUB as it kills USB in practice- patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: jbd: longer commit interval (was in SLE11-SP1).- Linux 3.0.7. - patches.fixes/pci_use_acpi_resources_whitelist.patch: Refresh. - patches.drivers/lis3-Fix-regression-of-HP-DriveGuard-with-8bit-chip: Delete. - patches.drivers/qla2xxx-0014-Fix-crash-in-qla2x00_abort_all_cmds-on-un.patch: Delete.- move pci mps patches to patches.fixes as they are not going to be in the upstream 3.0-stable tree. - patches.fixes/pci-disable_MPS_configuration_by_default.patch: PCI: Disable MPS configuration by default (bnc#720075). - patches.fixes/pci-don-t-crash-when-reading-mpss-from-root-complex.patch: pci: Don't crash when reading mpss from root complex. - patches.fixes/pci-export-pcie_bus_configure_settings-symbol.patch: PCI: export pcie_bus_configure_settings symbol. - patches.fixes/pci-fix_pointer_dereference_before_call_to_pcie_bus_configure_settings.patch: Fix pointer dereference before call to pcie_bus_configure_settings (bnc#720075). - patches.fixes/pci-remove-mrrs-modification-from-mps-setting-code.patch: PCI: Remove MRRS modification from MPS setting code. - patches.fixes/pci-set-pci-e-max-payload-size-on-fabric.patch: PCI: Set PCI-E Max Payload Size on fabric. - patches.kernel.org/pci-disable_MPS_configuration_by_default.patch: Delete. - patches.kernel.org/pci-don-t-crash-when-reading-mpss-from-root-complex.patch: Delete. - patches.kernel.org/pci-export-pcie_bus_configure_settings-symbol.patch: Delete. - patches.kernel.org/pci-fix_pointer_dereference_before_call_to_pcie_bus_configure_settings.patch: Delete. - patches.kernel.org/pci-remove-mrrs-modification-from-mps-setting-code.patch: Delete. - patches.kernel.org/pci-set-pci-e-max-payload-size-on-fabric.patch: Delete.- patches.arch/s390-37-01-rcu-table-free-leak.diff: kernel: memory leak with RCU_TABLE_FREE (bnc#724227,LTC#75848). - patches.arch/s390-37-02-dasd-wait_for_clear.patch: dasd: wait for terminated request (bnc#724227,LTC#75904). - patches.arch/s390-37-03-dasd-fix_uid_readout.patch: dasd: fix UID readout for z/VM (bnc#724227,LTC#75905).- patches.drivers/drm-i915-always-set-FDI-composite-sync-bit: drm/i915: always set FDI composite sync bit (bnc#720661).- patches.fixes/ipr-flag-dump-timeout: ipr: introduce timeout flag (bnc#721042).Fix s390x build. These are required by the bnx2fc driver update. - patches.fixes/net-bnx2x-fix-build-error: bnx2x: Fix build error (bnc#722414). - patches.fixes/net-dev-define-NETDEV_FCOE_WWNN-only-when-LIBFCOE-enabled: net: Define NETDEV_FCOE_WWNN, NETDEV_FCOE_WWPN only when CONFIG_LIBFCOE is enabled (bnc#722414).- Update config files: Disable CRYPTO_MANAGER_DISABLE_TESTS and enable FIPS (bnc#723884).Update bnx2fc to 1.0.8: - patches.drivers/0001-bnx2fc-Reset-the-max-receive-frame-size.patch: bnx2fc: Reset the max receive frame size (bnc#722414). - patches.drivers/0002-bnx2fc-Bug-fixes-in-percpu_thread_create-destroy.patch: bnx2fc: Bug fixes in percpu_thread_create/destroy (bnc#722414). - patches.drivers/0003-bnx2fc-Enable-bsg_request-support-for-bnx2fc.patch: bnx2fc: Enable bsg_request support for bnx2fc (bnc#722414). - patches.drivers/0004-bnx2fc-Remove-erroneous-kref_get-on-IO-request.patch: bnx2fc: Remove erroneous kref_get on IO request (bnc#722414). - patches.drivers/0005-bnx2fc-Do-not-attempt-destroying-NPIV-port-twice.patch: bnx2fc: Do not attempt destroying NPIV port twice (bnc#722414). - patches.drivers/0006-bnx2fc-Change-function-names-of-bnx2fc_netdev_setup-.patch: bnx2fc: Change function names of bnx2fc_netdev_setup/bnx2fc_netdev_cleanup (bnc#722414). - patches.drivers/0007-bnx2fc-Reorganize-cleanup-code-between-interface_cle.patch: bnx2fc: Reorganize cleanup code between interface_cleanup and if_destory (bnc#722414). - patches.drivers/0008-bnx2fc-Handle-NETDEV_UNREGISTER-for-vlan-devices.patch: bnx2fc: Handle NETDEV_UNREGISTER for vlan devices (bnc#722414). - patches.drivers/0009-bnx2fc-Clear-DESTROY_CMPL-flag-after-firmware-destro.patch: bnx2fc: Clear DESTROY_CMPL flag after firmware destroy (bnc#722414). - patches.drivers/0010-bnx2fc-Do-not-reuse-the-fcoe-connection-id-immediate.patch: bnx2fc: Do not reuse the fcoe connection id immediately (bnc#722414). - patches.drivers/0011-bnx2fc-IO-errors-when-receiving-unsolicited-LOGO.patch: bnx2fc: IO errors when receiving unsolicited LOGO (bnc#722414). - patches.drivers/0012-bnx2fc-Fix-NULL-pointer-deref-during-arm_cq.patch: bnx2fc: Fix NULL pointer deref during arm_cq (bnc#722414). - patches.drivers/0013-bnx2fc-code-cleanup-in-bnx2fc_offload_session.patch: bnx2fc: code cleanup in bnx2fc_offload_session (bnc#722414). - patches.drivers/0014-bnx2fc-Drop-incoming-ABTS.patch: bnx2fc: Drop incoming ABTS (bnc#722414). - patches.drivers/0015-fcoe-Move-common-functions-to-fcoe_transport-library.patch: fcoe: Move common functions to fcoe_transport library. - patches.drivers/0016-bnx2fc-Obtain-WWNN-WWPN-from-the-shared-memory.patch: bnx2fc: Obtain WWNN/WWPN from the shared memory (bnc#722414). - patches.drivers/0017-bnx2fc-Prevent-creating-of-NPIV-port-with-duplicate-.patch: bnx2fc: Prevent creating of NPIV port with duplicate WWN (bnc#722414). - patches.drivers/0018-bnx2fc-Bump-version-to-1.0.5.patch: bnx2fc: Bump version to 1.0.5 (bnc#722414). - patches.drivers/0019-bnx2fc-Need-not-schedule-destroy_work-from-__bnx2fc_.patch: bnx2fc: Need not schedule destroy_work from __bnx2fc_destroy (bnc#722414). - patches.drivers/0020-bnx2fc-Reset-max-receive-frame-size-during-link-up.patch: bnx2fc: Reset max receive frame size during link up (bnc#722414). - patches.drivers/0021-bnx2fc-Send-solicitation-only-after-vlan-discovery-i.patch: bnx2fc: Send solicitation only after vlan discovery is complete (bnc#722414). - patches.drivers/0022-bnx2fc-No-abort-issued-for-REC-when-it-times-out.patch: bnx2fc: No abort issued for REC when it times out (bnc#722414). - patches.drivers/0023-bnx2fc-Validate-vlan-id-in-NETDEV_UNREGISTER-handler.patch: bnx2fc: Validate vlan id in NETDEV_UNREGISTER handler (bnc#722414). - patches.drivers/0024-bnx2fc-Avoid-calling-bnx2fc_if_destroy-with-unnecess.patch: bnx2fc: Avoid calling bnx2fc_if_destroy with unnecessary locks (bnc#722414). - patches.drivers/0025-bnx2fc-Fix-panic-caused-because-of-incorrect-errror-.patch: bnx2fc: Fix panic caused because of incorrect errror handling in create() (bnc#722414). - patches.drivers/0026-bnx2fc-Fix-FW-assert-during-RSCN-stress-tests.patch: bnx2fc: Fix FW assert during RSCN stress tests (bnc#722414). - patches.drivers/0027-bnx2fc-Bumped-version-to-1.0.6.patch: bnx2fc: Bumped version to 1.0.6 (bnc#722414). - patches.drivers/0028-bnx2fc-Replace-scsi_dma_map-with-dma_map_sg.patch: bnx2fc: Replace scsi_dma_map() with dma_map_sg() (bnc#722414). - patches.drivers/0029-bnx2fc-Handle-bnx2fc_map_sg-failure.patch: bnx2fc: Handle bnx2fc_map_sg failure (bnc#722414). - patches.drivers/0030-bnx2fc-Bumped-version-to-1.0.7.patch: bnx2fc: Bumped version to 1.0.7 (bnc#722414). - patches.drivers/0031-bnx2fc-call-ctlr_link_up-only-when-the-interface-is-.patch: bnx2fc: call ctlr_link_up only when the interface is enabled. - patches.drivers/0032-fcoe-libfcoe-Move-common-code-for-fcoe_get_lesb-to-f.patch: fcoe/libfcoe: Move common code for fcoe_get_lesb to fcoe_transport. - patches.drivers/0033-bnx2fc-Return-error-statistics-of-remote-peer.patch: bnx2fc: Return error statistics of remote peer (bnc#722414). - patches.drivers/0034-bnx2fc-Bumped-version-to-1.0.8.patch: bnx2fc: Bumped version to 1.0.8 (bnc#722414). - patches.drivers/0035-bnx2fc-Unable-to-send-lun-tgt-reset-on-SLES-11-kerne.patch: bnx2fc: Unable to send lun/tgt reset on SLES 11 kernels (bnc#722414). - patches.drivers/0036-bnx2fc-Add-driver-documentation.patch: bnx2fc: Add driver documentation (bnc#722414).- patches.drivers/drm-i915-apply-timing-generator-bug-workaround-on-CP: drm/i915: apply timing generator bug workaround on CPT and PPT (bnc#722560). - patches.drivers/drm-i915-fix-IVB-cursor-support: drm/i915: fix IVB cursor support (bnc#720353). - patches.drivers/drm-i915-panel-Alwyas-record-the-backlight-level-again: drm/i915/panel: Alwyas record the backlight level again (but cleverly) (v2) (bnc#720996). - patches.drivers/drm-i915-pass-ELD-to-HDMI-DP-audio-driver: drm/i915: pass ELD to HDMI/DP audio driver (bnc#722560). - patches.drivers/drm-support-routines-for-HDMI-DP-ELD: drm: support routines for HDMI/DP ELD (bnc#722560).- patches.fixes/ata-piix-atapi-fix.patch: IDE mode ATAPI fix for Intel chipsets (bnc#719693).- patches.fixes/virtio-console-early-console.patch: virtio: console: wait for first console port for early console output (bnc#723597).- patches.suse/SUSE-bootsplash: Fix crash when splash is off (ie. (struct fb_info *)->splash_data == NULL) but someone tries to manipulate the splash image thru the /proc interface. All other functions in render.c seem to be save - ie. upper level code already protects them from being called if the splash_data member is NULL (bnc #718666).- patches.arch/x86-UV2-Update-UV2-hub-part-number.patch: x86 / UV: Update UV2 hub part number (bnc#722793).- patches.arch/x86_uv2_GRU_TLB_fix.patch: x86 / UV: Fix GRU API for UV2 after incompatible hardware change (bnc#722795).- patches.fixes/PM-Runtime-Return-special-error-code-if-runtime-PM-is-disabled.patch: PM / Runtime: Return special error code if runtime PM is disabled.- patches.drivers/fcoe-0029-libfc-fix_deadlock_bug_in_fc_e.patch: libfc: fix deadlock bug in fc_exch_abort_locked (bnc#722414).- patches.drivers/hwmon-coretemp-01-add-core-pkg-threshold-support-to-coretemp.patch: hwmon: (coretemp) Add core/pkg threshold support to Coretemp (bnc#698797, FATE#311941). - patches.drivers/hwmon-coretemp-02-initialize-tmin.patch: hwmon: (coretemp) Initialize tmin (bnc#698797, FATE#311941). - patches.drivers/hwmon-coretemp-03-drop-duplicate-function-get_pkg_tjmax.patch: hwmon: (coretemp) Drop duplicate function get_pkg_tjmax (bnc#698797, FATE#311941). - patches.drivers/hwmon-coretemp-04-let-the-user-force-tjmax.patch: hwmon: (coretemp) Let the user force TjMax (bnc#698797, FATE#311941). - patches.drivers/hwmon-coretemp-05-dont-use-threshold-registers-for-tempX_max.patch: hwmon: (coretemp) Don't use threshold registers for tempX_max (bnc#698797, FATE#311941). - patches.drivers/hwmon-coretemp-06-dont-use-kernel-assigned-cpu-number-as-platform-device-id.patch: hwmon: (coretemp) don't use kernel assigned CPU number as platform device ID (bnc#698797, FATE#311941). - patches.drivers/hwmon-coretemp-07-constify-static-data.patch: hwmon: (coretemp) constify static data (bnc#698797, FATE#311941). - patches.drivers/hwmon-coretemp-08-remove-struct-platform_data-parameter-from-create_core_data.patch: hwmon: (coretemp) remove struct platform_data * parameter from create_core_data() (bnc#698797, FATE#311941). - patches.drivers/hwmon-coretemp-09-fixup-platform-device-id-change.patch: hwmon: (coretemp) Fixup platform device ID change (bnc#698797, FATE#311941). - patches.drivers/hwmon-coretemp-10-avoid-leaving-around-dangling-pointer.patch: hwmon: (coretemp) Avoid leaving around dangling pointer (bnc#698797, FATE#311941).- patches.fixes/drm-radeon-kms-fix-i2c-masks.patch: drm/radeon/kms: Fix I2C mask definitions (bnc#712023).- Update config files. Disable CPUMASK_OFFSTACK for ia64. (bnc#721410)- patches.drivers/qla4xxx-Add-new-FLT-firmware-region.patch: qla4xxx: Add new FLT firmware region (bnc#723008). - patches.drivers/qla4xxx-Clear-DDB-map-index-on-the-basis-of-AEN.patch: qla4xxx: Clear DDB map index on the basis of AEN (bnc#723008). - patches.drivers/qla4xxx-Do-not-add-duplicate-CHAP-entry-in-FLASH.patch: qla4xxx: Do not add duplicate CHAP entry in FLASH (bnc#723008). - patches.drivers/qla4xxx-Fix-bidirectional-CHAP.patch: qla4xxx: Fix bidirectional CHAP (bnc#723008). - patches.drivers/qla4xxx-Fix-exporting-boot-targets-to-sysfs.patch: qla4xxx: Fix exporting boot targets to sysfs (bnc#723008). - patches.drivers/qla4xxx-Fix-getting-BIDI-CHAP-for-boot-targets.patch: qla4xxx: Fix getting BIDI CHAP for boot targets (bnc#723008). - patches.drivers/qla4xxx-Fixed-active-session-re-open-issue.patch: qla4xxx: Fixed active session re-open issue (bnc#723008). - patches.drivers/qla4xxx-Fixed-device-blocked-issue-on-link-up-down.patch: qla4xxx: Fixed device blocked issue on link up-down (bnc#723008). - patches.drivers/qla4xxx-Fixed-session-destroy-issue-on-link-up-down.patch: qla4xxx: Fixed session destroy issue on link up-down (bnc#723008). - patches.drivers/qla4xxx-Fixed-target-discovery-failed-issue.patch: qla4xxx: Fixed target discovery failed issue (bnc#723008). - patches.drivers/qla4xxx-Free-Device-Database-DDB-reserved-by-FW.patch: qla4xxx: Free Device Database (DDB) reserved by FW (bnc#723008). - patches.drivers/qla4xxx-Update-driver-version-to-5.02.00-k8.patch: qla4xxx: Update driver version to 5.02.00-k8 (bnc#723008). - patches.drivers/qla4xxx-Update-license.patch: qla4xxx: Update license (bnc#723008). - patches.drivers/qla4xxx-updated-device-id-check-for-BFS.patch: qla4xxx: updated device id check for BFS (bnc#723008).- Update config files. Disable CONFIG_STRICT_DEVMEM for s390(x) (bnc#719645, LTC75336).- patches.suse/staging-hv-storvsc-ignore-SET_WINDOW.patch: prepare for upstream submission- patches.suse/staging-hv-netvsc-rndis_filter_receive-dereferencing-issue.patch: Staging: hv: netvsc: Fix a dereferencing issue. - patches.suse/staging-hv-util-fix-a-bug-in-kvp-implementation.patch: Staging: hv: util: Fix a bug in kvp implementation. - patches.suse/staging-hv-util-invoke-cn_netlink_send-in-a-work-context.patch: Staging: hv: util: Invoke cn_netlink_send() in a work context.- patches.fixes/jsm-remove-buggy-write-queue.patch: jsm: remove buggy write queue (bnc#719592). - patches.fixes/serial-jsm-save-state: Refresh.- add back this patch as it's really needed for our tree: - patches.fixes/vfs-automount-should-ignore-lookup_follow.patch: vfs: automount should ignore LOOKUP_FOLLOW.- remove 2 3.0.5 potential patches that were NAKed: - patches.kernel.org/sfi-table-irq-0xff-means-no-interrupt.patch: Delete. - patches.kernel.org/vfs-automount-should-ignore-lookup_follow.patch: Delete.- patches.suse/btrfs-silence-warning-in-raid-array-setup.patch: Fix compilation warning/error.- patches.suse/btrfs-silence-warning-in-raid-array-setup.patch: btrfs: silence warning in raid array setup (bnc#709974).- patches.suse/btrfs-0105-force-a-page-fault-if-we-have-a-shorty-copy-on.patch: Btrfs: force a page fault if we have a shorty copy on a page boundary (FATE#306586). - patches.suse/btrfs-0940-don-t-skip-writing-out-a-empty-block-groups-ca.patch: Btrfs: don't skip writing out a empty block groups cache (FATE#306586). - patches.suse/btrfs-0941-check-the-return-value-of-filemap_write_and_wa.patch: Btrfs: check the return value of filemap_write_and_wait in the space cache (FATE#306586). - patches.suse/btrfs-0942-take-overflow-into-account-in-reserving-space.patch: Btrfs: take overflow into account in reserving space (FATE#306586). - patches.suse/btrfs-8019-Free-inode-mutex-on-lseek-error.patch: BTRFS: Free inode mutex on lseek error (FATE#306586). - patches.suse/btrfs-8020-do-not-set-EXTENT_DIRTY-along-with-EXTENT_DELA.patch: Btrfs: do not set EXTENT_DIRTY along with EXTENT_DELALLOC (FATE#306586). - patches.suse/btrfs-8021-pass-the-correct-root-to-lookup_free_space_ino.patch: Btrfs: pass the correct root to lookup_free_space_inode() (FATE#306586). - patches.suse/btrfs-8022-fix-recursive-auto-defrag.patch: Btrfs: fix recursive auto-defrag (FATE#306586). - patches.suse/btrfs-8023-fix-return-value-of-btrfs_get_acl.patch: Btrfs: fix return value of btrfs_get_acl() (FATE#306586).- patches.suse/staging-hv-storvsc-ignore-SET_WINDOW.patch: staging: hv: storvsc: ignore some scsi commands from smartd (bnc#722646).Re-enabled latest version: - patches.arch/x2apic_opt_out.patch: Refresh. Added mainline commit: - patches.kernel.org/pci-disable_MPS_configuration_by_default.patch: PCI: Disable MPS configuration by default (bnc#720075). And move this one down because above patch depends on it: - patches.kernel.org/pci-fix_pointer_dereference_before_call_to_pcie_bus_configure_settings.patch: Fix pointer dereference before call to pcie_bus_configure_settings (bnc#720075). - patches.arch/x86-Fix-pointer-dereference-before-call-to-pcie_bus_configure_settings.patch: Delete.- patches.fixes/iscsi-class-fix-link-local-mispelling.patch: iscsi class: fix link local mispelling (bnc#722260). - patches.fixes/iscsi-class-fix-vlan-configuration.patch: iscsi class: fix vlan configuration (bnc#722260). - patches.fixes/qla4xxx-fix-data-alignment-and-use-nl-helpers.patch: qla4xxx: fix data alignment and use nl helpers (bnc#722260).- Rediff patches to apply: * patches.drivers/mvsas-remove-mvs_slave_-alloc-configure.patch * patches.drivers/pm8001-remove-pm8001_slave_-alloc-configure.patch * patches.suse/mkinitrd-scsi_host_template-proc_name.patch- SAS & isci driver update (bnc#721246): - patches.drivers/isci-SATA-STP-I-O-is-only-returned-in-the-no.patch: isci: SATA/STP I/O is only returned in the normal path to libsas (bnc#721246). - patches.drivers/isci-The-port-state-should-be-set-to-stoppin.patch: isci: The port state should be set to stopping on the last phy (bnc#721246). - patches.drivers/isci-atapi-support.patch: isci: atapi support (bnc#721246). - patches.drivers/isci-export-phy-events-via-lldd_control_ph.patch: isci: export phy events via ->lldd_control_phy() (bnc#721246). - patches.drivers/isci-fix-decode-of-DONE_CRC_ERR-TC-completio.patch: isci: fix decode of DONE_CRC_ERR TC completion status (bnc#721246). - patches.drivers/isci-fix-missed-unlock-in-apc_agent_timeout.patch: isci: fix missed unlock in apc_agent_timeout() (bnc#721246). - patches.drivers/isci-fix-sgpio-register-definitions.patch: isci: fix sgpio register definitions (bnc#721246). - patches.drivers/isci-fix-support-for-large-smp-requests.patch: isci: fix support for large smp requests (bnc#721246). - patches.drivers/isci-initial-sgpio-write-support.patch: isci: initial sgpio write support (bnc#721246). - patches.drivers/libsas-Allow-expander-T-T-attachments.patch: libsas: Allow expander T-T attachments (bnc#721246). - patches.drivers/libsas-disable-scanning-lun-0-on-ata-devic.patch: libsas: disable scanning lun > 0 on ata devices (bnc#721246). - patches.drivers/libsas-dynamic-queue-depth.patch: libsas: dynamic queue depth (bnc#721246). - patches.drivers/libsas-export-sas_alloc_task.patch: libsas: export sas_alloc_task() (bnc#721246). - patches.drivers/libsas-fix-sas_queuecommand-return-values.patch: libsas: fix sas_queuecommand return values (bnc#721246). - patches.drivers/libsas-fix-try_test_sas_gpio_gp_bit-build.patch: libsas: fix try_test_sas_gpio_gp_bit() build error (bnc#721246). - patches.drivers/libsas-fix-warnings-when-checking-sata-stp-p.patch: libsas: fix warnings when checking sata/stp protocol (bnc#721246). - patches.drivers/libsas-libata-fix-change_queue_-depth-type.patch: libsas,libata: fix ->change_queue_{depth|type} for sata devices (bnc#721246). - patches.drivers/libsas-reindent-sas_queuecommand.patch: libsas: reindent sas_queuecommand (bnc#721246). - patches.drivers/libsas-sas_queuecommand-doesnt-need-host_loc.patch: libsas: sas_queuecommand doesnt need host_lock (bnc#721246). - patches.drivers/libsas-set-sas_address-and-device-type-of-rp.patch: libsas: set sas_address and device type of rphy (bnc#721246). - patches.drivers/libsas-sgpio-write-support.patch: libsas: sgpio write support (bnc#721246). - patches.drivers/mvsas-remove-mvs_slave_-alloc-configure.patch: mvsas: remove mvs_slave_{alloc|configure} (bnc#721246). - patches.drivers/pm8001-fix-DEV_IS_GONE-infinite-retry.patch: pm8001: fix DEV_IS_GONE infinite retry (bnc#721246). - patches.drivers/pm8001-missing-break-statements.patch: pm8001: missing break statements (bnc#721246). - patches.drivers/pm8001-remove-pm8001_slave_-alloc-configure.patch: pm8001: remove pm8001_slave_{alloc|configure} (bnc#721246).- Update config files. - Fixup patches for series2git: * patches.drivers/bna-formatting-and-code-cleanup * patches.drivers/bna-initialization-and-locking-fix * patches.drivers/bna-minor-irq-index-and-definition-change * patches.drivers/bna-naming-change-and-minor-macro-fix- patches.fixes/sched-reinstate-sched_compat_yield.patch: sched: reinstate sched_compat_yield (bnc#722449).- patches.drivers/mvsas-0001-Add-support-for-Non-specific-NCQ-error.patch: mvsas: Add support for Non specific NCQ error interrupt (bnc#722635). - patches.drivers/mvsas-0002-add-support-for-94xx-phy-tuning-and-mu.patch: mvsas: add support for 94xx phy tuning and multiple revisions (bnc#722635). - patches.drivers/mvsas-0003-Add-driver-version-and-interrupt-coale.patch: mvsas: Add driver version and interrupt coalescing to device attributes in sysfs (bnc#722635). - patches.drivers/mvsas-0004-fix-94xx-hotplug-issue.patch: mvsas: fix 94xx hotplug issue (bnc#722635). - patches.drivers/mvsas-0005-Remove-unused-macros-variables-and-fu.patch: mvsas: Remove unused macros, variables and functions (bnc#722635). - patches.drivers/mvsas-0006-Add-new-macros-and-functions.patch: mvsas: Add new macros and functions (bnc#722635). - patches.drivers/mvsas-0007-misc-improvements.patch: mvsas: misc improvements (bnc#722635). - patches.drivers/mvsas-0008-update-comments.patch: mvsas: update comments (bnc#722635). - patches.drivers/mvsas-0009-Add-support-for-interrupt-tasklet.patch: mvsas: Add support for interrupt tasklet (bnc#722635).- Reshuffle patches to apply. - Remove obsolete patches: * patches.drivers/3w-9xxx-fix-iommu_iova-leak.patch * patches.drivers/aacraid-reset-should-disable-MSI-interrupt.patch * patches.drivers/cxgb3i-convert-cdev-l2opt-to-use-rcu-to-pre.patch- patches.drivers/3w-9xxx-fix-iommu_iova-leak.patch: 3w-9xxx: fix iommu_iova leak (bnc#722640). - patches.drivers/aacraid-reset-should-disable-MSI-interrupt.patch: aacraid: reset should disable MSI interrupt (bnc#722640). - patches.drivers/aha152x-add-missing-ISA-PNP-IDs.patch: aha152x: add missing ISA PNP IDs (bnc#722640). - patches.drivers/cxgb3i-convert-cdev-l2opt-to-use-rcu-to-pre.patch: cxgb3i: convert cdev->l2opt to use rcu to prevent NULL dereference (bnc#722640). - patches.drivers/cxgb3i-fixed-programing-of-the-dma-page-size.patch: cxgb3i: fixed programing of the dma page sizes (bnc#722640). - patches.drivers/fnic-fix-incorrect-use-of-SLAB_CACHE_DMA-fla.patch: fnic: fix incorrect use of SLAB_CACHE_DMA flag (bnc#722640).- patches.drivers/bnx2i-Added-the-use-of-kthreads-to-handle-SC.patch: bnx2i: Added the use of kthreads to handle SCSI cmd completion (bnc#722433). - patches.drivers/bnx2i-Fixed-kernel-panic-due-to-illegal-usag.patch: bnx2i: Fixed kernel panic due to illegal usage of sc->request->cpu (bnc#722433). - patches.drivers/bnx2i-Fixed-the-endian-on-TTT-for-NOP-out-tr.patch: bnx2i: Fixed the endian on TTT for NOP out transmission (bnc#722433). - patches.drivers/bnx2i-Modified-to-skip-CNIC-registration-if.patch: bnx2i: Modified to skip CNIC registration if iSCSI is not supported (bnc#722433). - patches.drivers/bnx2i-Updated-copyright-and-bump-version.patch: bnx2i: Updated copyright and bump version (bnc#722433). - patches.fixes/iscsi_ibft-be2iscsi-iscsi_boot-fix-boot-kobj-data.patch: Add upstream commit ID.- Update bnx2fc patches with upstream commit ids: * patches.drivers/bnx2fc-Do-not-arm-CQ-when-there-are-no-CQEs.patch * patches.drivers/bnx2fc-Enable-REC-CONF-support-for-the-session.patch * patches.drivers/bnx2fc-Enable-support-for-sequence-level-error-reco.patch * patches.drivers/bnx2fc-HSI-changes-for-tape.patch * patches.drivers/bnx2fc-Handle-REC_TOV-error-code-from-firmware.patch * patches.drivers/bnx2fc-Introduce-interface-structure-for-each-vlan.patch * patches.drivers/bnx2fc-REC-SRR-link-service-request-and-response-ha.patch * patches.drivers/bnx2fc-Replace-printks-with-KERN_ALERT-to-KERN_ERR.patch * patches.drivers/bnx2fc-Support-sequence-cleanup-task.patch * patches.drivers/bnx2fc-Tx-BDs-cache-in-write-tasks.patch * patches.drivers/bnx2fc-hold-tgt-lock-when-calling-cmd_release.patch - Add missing patch: * patches.drivers/bnx2fc-host-stats-show-the-link-speed-unkno.patch: bnx2fc: host stats show the link speed 'unknown' on NIC partitioned interfaces (bnc#698053, FATE#311462). - Add missing upstream commit ids: * patches.fixes/scsi_lib-pause-between-error-retries.patch * patches.fixes/scsi_transport_spi-export-host-width-and-HBA-id- patches.drivers/parport-release-io-region-properly.patch: parport_pc: release IO region properly if unsupported ITE887x card is found (bnc#721464).- patches.arch/x86-kdump-ioapic_reset-remote-IRR-in-clear_IO_APIC.patch: x86, kdump, ioapic: reset remote IRR in clear_IO_APIC (bnc#701686).- patches.suse/ipv6-dont-block-modules-that-depend-on-ipv6-when-blacklisted.patch: Cleanup, allow NET_NS to be disabled.- patches.fixes/ibmveth-bounce-oops2: ibmveth: Fix oops on request_irq failure (bnc#719943). - patches.fixes/ipr-dump-state-fix: ipr: Stop reading adapter dump prematurely (bnc#721042). - patches.fixes/ipr-fpga-flash: ipr: Add support to flash FPGA and flash back DRAM images (bnc#722437). - patches.fixes/serial-jsm-save-state: jsm: Fixed EEH recovery error (bnc#721239).- Update Xen patches to c/s 1116.- Update config files. - patches.fixes/block-add-bsg-helper-library.patch: block: add bsg helper library (bnc#722260).APEI cleanup: delete left over patches, did some #ifdef cleanup (found and taken over from Jan Beulich): - patches.drivers/acpi_apei_disable_suse.patch: Refresh. - patches.drivers/acpi_apei_whitelist_hest_dell.patch: Refresh. - patches.drivers/acpi_apei_add_apei_bit_support_in_generic_OSC_call_3_4.patch: Delete. - patches.drivers/acpi_apei_add_whea_osc_support_4_4.patch: Delete. - patches.drivers/acpi_apei_ghes_prevent_ghes_to_be_built_as_module_1_4.patch: Delete. - patches.drivers/acpi_apei_ghes_support_disable_ghes_at_boot_time_2_4.patch: Delete. - patches.drivers/apei_pstore_mainline_000.patch: Delete.- patches.drivers/0001-iscsi_transport-add-support-for-net-settings.patch: iscsi_transport: add support for net settings (bnc#722265). - patches.drivers/0002-qla4xxx-add-support-for-set_net_config.patch: qla4xxx: add support for set_net_config (bnc#722260). - patches.drivers/0003-qla4xxx-Added-new-struct-ipaddress_config.patch: qla4xxx: Added new "struct ipaddress_config" (bnc#722260). - patches.drivers/0004-iscsi-class-add-iface-representation.patch: iscsi class: add iface representation (bnc#722265). - patches.drivers/0005-qla4xxx-added-support-to-show-multiple-iface-in-sys.patch: qla4xxx: added support to show multiple iface in sysfs (bnc#722260). - patches.drivers/0006-iscsi-cls-sysfs-group-is_visible-callout-for-conn-a.patch: iscsi cls: sysfs group is_visible callout for conn attrs (bnc#722265). - patches.drivers/0007-iscsi-class-sysfs-group-is_visible-callout-for-sess.patch: iscsi class: sysfs group is_visible callout for session attrs (bnc#722265). - patches.drivers/0008-iscsi-class-remove-iface-param-mask.patch: iscsi class: remove iface param mask (bnc#722265). - patches.drivers/0009-iscsi-class-sysfs-group-is_visible-callout-for-iscs.patch: iscsi class: sysfs group is_visible callout for iscsi host attrs (bnc#722265). - patches.drivers/0010-be2iscsi-remove-host-and-session-casts.patch: be2iscsi: remove host and session casts (bnc#722260). - patches.drivers/0011-iscsi-class-expand-vlan-support.patch: iscsi class: expand vlan support (bnc#722265). - patches.drivers/0012-libiscsi-don-t-bugon-when-if-user-sets-markers.patch: libiscsi: don't bugon when if user sets markers (bnc#722265). - patches.drivers/0013-qla4xxx-Add-VLAN-support.patch: qla4xxx: Add VLAN support (bnc#722260). - patches.drivers/0014-iscsi-class-add-bsg-support-to-iscsi-class.patch: iscsi class: add bsg support to iscsi class (bnc#722265). - patches.drivers/0015-qla4xxx-add-bsg-support.patch: qla4xxx: add bsg support (bnc#722260). - patches.drivers/0016-scsi_transport_iscsi-Add-conn-login-kernel-to-user.patch: scsi_transport_iscsi: Add conn login, kernel to user, event to support offload session login (bnc#722265). - patches.drivers/0017-qla4xxx-support-iscsiadm-session-mgmt.patch: qla4xxx: support iscsiadm session mgmt (bnc#722260). - patches.drivers/0018-qla4xxx-Remove-reduandant-code-after-open-iscsi-int.patch: qla4xxx: Remove reduandant code after open-iscsi integration (bnc#722260). - patches.drivers/0019-qla4xxx-Boot-from-SAN-support-for-open-iscsi.patch: qla4xxx: Boot from SAN support for open-iscsi (bnc#722260). - patches.drivers/0020-scsi_transport_iscsi-Added-support-to-update-mtu.patch: scsi_transport_iscsi: Added support to update mtu (bnc#722265). - patches.drivers/0021-qla4xxx-Added-support-to-update-mtu.patch: qla4xxx: Added support to update mtu (bnc#722260). - patches.drivers/0022-qla4xxx-Code-cleanup-for-read-update-flash-using-BS.patch: qla4xxx: Code cleanup for read/update flash using BSG (bnc#722260). - patches.drivers/0023-qla4xxx-Add-get-ACB-state-support-using-BSG.patch: qla4xxx: Add get ACB state support using BSG (bnc#722260). - patches.drivers/0024-qla4xxx-Add-read-update-NVRAM-support-for-40xx-adap.patch: qla4xxx: Add read/update NVRAM support for 40xx adapters using BSG (bnc#722260). - patches.drivers/0025-qla4xxx-Added-vendor-specific-sysfs-attributes.patch: qla4xxx: Added vendor specific sysfs attributes (bnc#722260). - patches.drivers/0026-scsi_transport_iscsi-Added-support-to-update-initia.patch: scsi_transport_iscsi: Added support to update initiator iscsi port (bnc#722265). - patches.drivers/0027-qla4xxx-added-support-to-update-initiator-iscsi-por.patch: qla4xxx: added support to update initiator iscsi port (bnc#722260). - patches.drivers/0028-qla4xxx-Added-restore-factory-defaults-support-usin.patch: qla4xxx: Added restore factory defaults support using BSG (bnc#722260). - patches.drivers/0029-qla4xxx-Added-Get-ACB-support-using-BSG.patch: qla4xxx: Added Get ACB support using BSG (bnc#722260). - patches.drivers/0030-scsi-Added-support-for-adapter-and-firmware-reset.patch: scsi: Added support for adapter and firmware reset (bnc#722265). - patches.drivers/0031-qla4xxx-Added-support-for-adapter-and-firmware-rese.patch: qla4xxx: Added support for adapter and firmware reset (bnc#722260). - patches.drivers/0032-qla4xxx-export-iface-name.patch: qla4xxx: export iface name (bnc#722260). - patches.drivers/0033-qla4xxx-select-iscsi-boot-sysfs-attrs.patch: qla4xxx: select iscsi boot sysfs attrs (bnc#722260).- Update qla2xxx for Beta6 (bnc#718279) - patches.drivers/qla2xxx-0001-fix-comment-typo-hammmer.patch: scsi: qla_isr.c: fix comment typo 'hammmer' (bnc#718279). - patches.drivers/qla2xxx-0002-Basic-infrastructure-for-dynamic-logging.patch: qla2xxx: Basic infrastructure for dynamic logging (bnc#718279). - patches.drivers/qla2xxx-0003-Code-changes-to-support-new-dynamic-logging.patch: qla2xxx: Code changes to support new dynamic logging infrastructure (bnc#718279). - patches.drivers/qla2xxx-0004-Cleanup-of-previous-infrastructure.patch: qla2xxx: Cleanup of previous infrastructure (bnc#718279). - patches.drivers/qla2xxx-0005-T10-DIF-Handle-uninitalized-sectors.patch: qla2xxx: T10 DIF - Handle uninitalized sectors (bnc#718279). - patches.drivers/qla2xxx-0006-T10-DIF-Fix-incorrect-error-reporting.patch: qla2xxx: T10 DIF - Fix incorrect error reporting (bnc#718279). - patches.drivers/qla2xxx-0007-Fix-qla24xx-revision-check-while-enabling-i.patch: qla2xxx: Fix qla24xx revision check while enabling interrupts (bnc#718279). - patches.drivers/qla2xxx-0008-Acquire-hardware-lock-while-manipulating-ds.patch: qla2xxx: Acquire hardware lock while manipulating dsd list (bnc#718279). - patches.drivers/qla2xxx-0009-Double-check-for-command-completion-if-abor.patch: qla2xxx: Double check for command completion if abort mailbox command fails (bnc#718279). - patches.drivers/qla2xxx-0010-Save-and-restore-irq-in-the-response-queue.patch: qla2xxx: Save and restore irq in the response queue interrupt handler (bnc#718279). - patches.drivers/qla2xxx-0011-Set-the-task-attributes-after-memsetting-fc.patch: qla2xxx: Set the task attributes after memsetting fcp cmnd (bnc#718279). - patches.drivers/qla2xxx-0012-Update-version-number-to-8.03.07.07-k.patch: qla2xxx: Update version number to 8.03.07.07-k (bnc#718279). - patches.drivers/qla2xxx-0013-fix-printk-format-warning.patch: scsi: fix qla2xxx printk format warning (bnc#718279). - patches.drivers/qla2xxx-0014-Fix-crash-in-qla2x00_abort_all_cmds-on-un.patch: qla2xxx: Fix crash in qla2x00_abort_all_cmds() on unload (bnc#718279). - patches.drivers/qla2xxx-0015-Add-support-for-ISP82xx-to-capture-dump-mi.patch: qla2xxx: Add support for ISP82xx to capture dump (minidump) on failure (bnc#718279). - patches.drivers/qla2xxx-0016-Implemeted-beacon-on-off-for-ISP82XX.patch: qla2xxx: Implemeted beacon on/off for ISP82XX (bnc#718279). - patches.drivers/qla2xxx-0017-Prevent-CPU-lockups-when-ql2xdontresethba.patch: qla2xxx: Prevent CPU lockups when "ql2xdontresethba" module param is set (bnc#718279). - patches.drivers/qla2xxx-0018-Enable-write-permission-to-some-debug-relat.patch: qla2xxx: Enable write permission to some debug related module parameters to be changed dynamically (bnc#718279). - patches.drivers/qla2xxx-0019-check-for-marker-IOCB-during-response-queue.patch: qla2xxx: check for marker IOCB during response queue processing (bnc#718279). - patches.drivers/qla2xxx-0020-Fix-array-out-of-bound-warning.patch: qla2xxx: Fix array out of bound warning (bnc#718279). - patches.drivers/qla2xxx-0021-During-loopdown-perform-Diagnostic-loopback.patch: qla2xxx: During loopdown perform Diagnostic loopback (bnc#718279). - patches.drivers/qla2xxx-0022-Correction-to-sysfs-edc-interface.patch: qla2xxx: Correction to sysfs edc interface (bnc#718279). - patches.drivers/qla2xxx-0023-Provide-method-for-updating-I2C-attached-VP.patch: qla2xxx: Provide method for updating I2C attached VPD (bnc#718279). - patches.drivers/qla2xxx-0024-Return-sysfs-error-codes-appropriate-to-con.patch: qla2xxx: Return sysfs error codes appropriate to conditions (bnc#718279). - patches.drivers/qla2xxx-0025-Issue-mailbox-command-only-when-firmware-hu.patch: qla2xxx: Issue mailbox command only when firmware hung bit is reset for ISP82xx (bnc#718279). - patches.drivers/qla2xxx-0026-Fix-active_mask-may-be-used-uninitialized.patch: qla2xxx: Fix "active_mask" may be used uninitialized warning (bnc#718279). - patches.fixes/qla2xxx-skip-msix-correction.diff: Delete.- patches.drivers/be2iscsi-Fix-for-case-where-task-sc-was-cleanedup.patch: be2iscsi: Fix for case where task->sc was cleanedup earlier (bnc#713490). - patches.drivers/be2iscsi-Fix-for-wrong-dmsg-setting-in-wrb.patch: be2iscsi: Fix for wrong dmsg setting in wrb (bnc#713490).- patches.drivers/lis3-Fix-regression-of-HP-DriveGuard-with-8bit-chip: Refresh.- patches.suse/add_efi_memmap-update-e820_saved.patch: Refresh.- patches.suse/add_efi_memmap-update-e820_saved.patch: x86 efi: Fill all reserved memmap entries if add_efi_memmap specified (bnc#603738).- patches.arch/x86_64-numa-Cacheline-aliasing-makes-for_each_populated_zone-extremely-expensive-V2.patch: Refresh.- Update config files. s390x/vanilla still build vmcp as in-kernel.- patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table revision (bnc#503038). - patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). - patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table rev to use 8bit or 32bit PXM fields (x86/x86-64) (bnc#503038).- patches.suse/revert-pcmcia-remove-irq_list-parameter-from-pd6729.patch: Revert "pcmcia: remove irq_list parameter from pd6729" (bnc#720458).- patches.drivers/ixgbe-add-WOL-support-for-X540: ixgbe: add WOL support for X540 (bnc#721206).- Update config files to enable fixed hv_mouse driver - patches.suse/staging-hv-bind-hv_blkkvsc-to-hv_storvsc.patch: Refresh. - patches.suse/staging-hv-netvsc-module-name.patch: Refresh. - patches.suse/staging-hv-staging-next-20111001-0051-Staging-hv-util-Deal-with-driver-register-failure.patch: Staging: hv: util: Deal with driver register failures. - patches.suse/staging-hv-staging-next-20111001-0052-Staging-hv-vmbus-Fix-a-bug-in-error-handling-in-v.patch: Staging: hv: vmbus: Fix a bug in error handling in vmbus_bus_init(). - patches.suse/staging-hv-staging-next-20111001-0053-Staging-hv-vmbus-Check-for-events-before-messages.patch: Staging: hv: vmbus: Check for events before messages. - patches.suse/staging-hv-staging-next-20111001-0054-Staging-hv-vmbus-Cleanup-the-code-in-process_chn_.patch: Staging: hv: vmbus: Cleanup the code in process_chn_event(). - patches.suse/staging-hv-staging-next-20111001-0055-staging-hv-remove-unnecessary-includes-in-netvsc.patch: staging: hv: remove unnecessary includes in netvsc. - patches.suse/staging-hv-staging-next-20111001-0056-staging-hv-add-newline-to-log-messages-in-netvsc.patch: staging: hv: add newline to log messages in netvsc. - patches.suse/staging-hv-staging-next-20111001-0057-staging-hv-convert-dev_-loglevel-to-netdev_-logle.patch: staging: hv: convert dev_ to netdev_ in netvsc. - patches.suse/staging-hv-staging-next-20111001-0058-staging-hv-fix-a-kernel-warning-in-netvsc_linkstat.patch: staging: hv: fix a kernel warning in netvsc_linkstatus_callback(). - patches.suse/staging-hv-staging-next-20111001-0059-staging-hv-re-order-the-code-in-netvsc_probe.patch: staging: hv: re-order the code in netvsc_probe(). - patches.suse/staging-hv-staging-next-20111001-0060-staging-hv-fix-counting-of-outstanding-sends-in-f.patch: staging: hv: fix counting of #outstanding-sends in failed sends. - patches.suse/staging-hv-staging-next-20111001-0061-staging-hv-fix-counting-of-available-buffer-slots.patch: staging: hv: fix counting of available buffer slots when send fails. - patches.suse/staging-hv-staging-next-20111001-0062-staging-hv-fix-the-return-status-of-netvsc_start_x.patch: staging: hv: fix the return status of netvsc_start_xmit(). - patches.suse/staging-hv-staging-next-20111001-0063-staging-hv-fix-the-page-buffer-when-rndis-data-go.patch: staging: hv: fix the page buffer when rndis data go across page boundary. - patches.suse/staging-hv-staging-next-20111001-0064-staging-hv-fix-some-typos-in-netvsc.c.patch: staging: hv: fix some typos in netvsc.c. - patches.suse/staging-hv-staging-next-20111001-0065-Staging-hv-Update-TODO-file.patch: Staging: hv: Update TODO file. - patches.suse/staging-hv-staging-next-20111001-0066-Staging-hv-vmbus-Show-the-modalias-in-sys-bus-vm.patch: Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/. - patches.suse/staging-hv-staging-next-20111001-0129-Staging-hv-Add-support-for-2-TB-LUN-in-storage-dr.patch: Staging: hv: Add support for >2 TB LUN in storage driver. - patches.suse/staging-hv-staging-next-20111001-0243-Staging-hv-vmbus-Rename-vmbus_child_device_create.patch: Staging: hv: vmbus: Rename vmbus_child_device_create. - patches.suse/staging-hv-staging-next-20111001-0244-Staging-hv-vmbus-Rename-vmbus_child_device_regist.patch: Staging: hv: vmbus: Rename vmbus_child_device_register. - patches.suse/staging-hv-staging-next-20111001-0245-Staging-hv-vmbus-Rename-vmbus_child_device_unregi.patch: Staging: hv: vmbus: Rename vmbus_child_device_unregister. - patches.suse/staging-hv-staging-next-20111001-0246-Staging-hv-vmbus-Cleanup-dated-comments-in-channe.patch: Staging: hv: vmbus: Cleanup dated comments in channel_mgmt.c. - patches.suse/staging-hv-staging-next-20111001-0293-Staging-hv-vmbus-Introduce-a-utility-function-to.patch: Staging: hv: vmbus: Introduce a utility function to match hv_vmbus_device_id. - patches.suse/staging-hv-staging-next-20111001-0294-Staging-hv-vmbus-Change-the-signature-of-struct-h.patch: Staging: hv: vmbus: Change the signature of struct hv_driver probe function. - patches.suse/staging-hv-staging-next-20111001-0295-Staging-hv-storvsc-Use-the-driver_data-to-identif.patch: Staging: hv: storvsc: Use the driver_data to identify ide. - patches.suse/staging-hv-staging-next-20111001-0296-Staging-hv-vmbus-Introduce-functions-for-setting.patch: Staging: hv: vmbus: Introduce functions for setting and getting driver data. - patches.suse/staging-hv-staging-next-20111001-0297-Staging-hv-vmbus-Cleanup-vmbus_remove.patch: Staging: hv: vmbus: Cleanup vmbus_remove(). - patches.suse/staging-hv-staging-next-20111001-0298-Staging-hv-storvsc-Get-rid-of-storvsc_dev_add-b.patch: Staging: hv: storvsc: Get rid of storvsc_dev_add() by inlining the code. - patches.suse/staging-hv-staging-next-20111001-0299-Staging-hv-storvsc-Get-rid-of-alloc_stor_device.patch: Staging: hv: storvsc: Get rid of alloc_stor_device() by inlining the code. - patches.suse/staging-hv-staging-next-20111001-0300-Staging-hv-storvsc-Get-rid-of-some-unnecessary-st.patch: Staging: hv: storvsc: Get rid of some unnecessary state and definitions. - patches.suse/staging-hv-staging-next-20111001-0301-Staging-hv-storvsc-Eliminate-the-usage-of-ext-fie.patch: Staging: hv: storvsc: Eliminate the usage of ext field in struct hv_device. - patches.suse/staging-hv-staging-next-20111001-0302-Staging-hv-netvsc-Get-rid-of-the-usage-of-the-ext.patch: Staging: hv: netvsc: Get rid of the usage of the ext field in struct hv_device. - patches.suse/staging-hv-staging-next-20111001-0303-Staging-hv-mousevsc-Get-rid-of-the-usage-of-the-e.patch: Staging: hv: mousevsc: Get rid of the usage of the ext field in struct hv_device. - patches.suse/staging-hv-staging-next-20111001-0304-Staging-hv-vmbus-Get-rid-of-the-ext-field-in-stru.patch: Staging: hv: vmbus: Get rid of the ext field in struct hv_device. - patches.suse/staging-hv-staging-next-20111001-0305-Staging-hv-vmbus-Do-not-allocate-struct-hv_device.patch: Staging: hv: vmbus: Do not allocate struct hv_device_info on the stack. - patches.suse/staging-hv-staging-next-20111001-0306-Staging-hv-vmbus-Get-rid-of-the-module-dependency.patch: Staging: hv: vmbus: Get rid of the module dependency. - patches.suse/staging-hv-staging-next-20111001-0307-Staging-hv-netvsc-Rename-netDevice-as-net_device.patch: Staging: hv: netvsc: Rename netDevice as net_device. - patches.suse/staging-hv-staging-next-20111001-0308-Staging-hv-netvsc-Rename-rndisDevice-to-rndis_dev.patch: Staging: hv: netvsc: Rename rndisDevice to rndis_device. - patches.suse/staging-hv-staging-next-20111001-0309-Staging-hv-netvsc-Rename-deviceInfo-as-device_inf.patch: Staging: hv: netvsc: Rename deviceInfo as device_info. - patches.suse/staging-hv-staging-next-20111001-0310-Staging-hv-netvsc-Cleanup-the-name-and-type-of-li.patch: Staging: hv: netvsc: Cleanup the name and type of link_stat variable. - patches.suse/staging-hv-staging-next-20111001-0421-Staging-hv-util-Perform-some-service-specific-ini.patch: Staging: hv: util: Perform some service specific init/deinit in probe/remove. - patches.suse/staging-hv-staging-next-20111001-0422-Staging-hv-util-Properly-handle-util-services-in.patch: Staging: hv: util: Properly handle util services in the util driver. - patches.suse/staging-hv-staging-next-20111001-0423-Staging-hv-vmbus-Get-rid-of-hv_cb_utils-and-oth.patch: Staging: hv: vmbus: Get rid of hv_cb_utils[] and other unneeded code. - patches.suse/staging-hv-staging-next-20111001-0476-Staging-hv-Update-the-TODO-file.patch: Staging: hv: Update the TODO file. - patches.suse/staging-hv-staging-next-20111001-0479-staging-hv-remove-the-carrier-status-check-from-ne.patch: staging: hv: remove the carrier status check from netvsc_open(). - patches.suse/staging-hv-staging-next-20111001-0579-Staging-hv-mousevsc-Fixup-struct-hv_input_dev_inf.patch: Staging: hv: mousevsc: Fixup struct hv_input_dev_info. - patches.suse/staging-hv-staging-next-20111001-0580-Staging-hv-mousevsc-Get-rid-of-the-struct-input_d.patch: Staging: hv: mousevsc: Get rid of the struct input_device_context. - patches.suse/staging-hv-staging-next-20111001-0581-Staging-hv-mousevsc-Fixup-some-bogus-WARN_ON-ca.patch: Staging: hv: mousevsc: Fixup some bogus WARN_ON() calls. - patches.suse/staging-hv-staging-next-20111001-0582-Staging-hv-mousevsc-Change-the-allocation-flags-t.patch: Staging: hv: mousevsc: Change the allocation flags to reflect interrupt context. - patches.suse/staging-hv-staging-next-20111001-0583-Staging-hv-mousevsc-Handle-the-case-where-we-may.patch: Staging: hv: mousevsc: Handle the case where we may get bogus report desc size. - patches.suse/staging-hv-staging-next-20111001-0584-Staging-hv-mousevsc-Correctly-initialize-the-head.patch: Staging: hv: mousevsc: Correctly initialize the header size. - patches.suse/staging-hv-staging-next-20111001-0585-Staging-hv-mousevsc-Use-completion-primitive-to-s.patch: Staging: hv: mousevsc: Use completion primitive to synchronize. - patches.suse/staging-hv-staging-next-20111001-0586-Staging-hv-mousevsc-Cleanup-and-properly-implemen.patch: Staging: hv: mousevsc: Cleanup and properly implement reportdesc_callback(). - patches.suse/staging-hv-staging-next-20111001-0587-Staging-hv-mousevsc-Get-rid-of-unnecessary-DPRINT.patch: Staging: hv: mousevsc: Get rid of unnecessary DPRINT calls. - patches.suse/staging-hv-staging-next-20111001-0588-Staging-hv-mousevsc-Cleanup-error-handling.patch: Staging: hv: mousevsc: Cleanup error handling. - patches.suse/staging-hv-staging-next-20111001-0589-Staging-hv-mousevsc-Get-rid-of-unnecessary-pr_-c.patch: Staging: hv: mousevsc: Get rid of unnecessary pr_* calls. - patches.suse/staging-hv-staging-next-20111001-0590-Staging-hv-mousevsc-Free-allocated-memory-in-free.patch: Staging: hv: mousevsc: Free allocated memory in free_input_device(). - patches.suse/staging-hv-staging-next-20111001-0591-Staging-hv-mousevsc-Get-rid-of-the-unused-state.patch: Staging: hv: mousevsc: Get rid of the unused state: num_outstanding_req. - patches.suse/staging-hv-staging-next-20111001-0592-Staging-hv-mousevsc-Cleanup-alloc_input_device.patch: Staging: hv: mousevsc: Cleanup alloc_input_device(). - patches.suse/staging-hv-staging-next-20111001-0593-Staging-hv-mousevsc-Get-rid-of-mousevsc_on_send_c.patch: Staging: hv: mousevsc: Get rid of mousevsc_on_send_completion(). - patches.suse/staging-hv-staging-next-20111001-0594-Staging-hv-mousevsc-Cleanup-mousevsc_connect_to_v.patch: Staging: hv: mousevsc: Cleanup mousevsc_connect_to_vsp(). - patches.suse/staging-hv-staging-next-20111001-0595-Staging-hv-mousevsc-Get-rid-of-mousevsc_on_device.patch: Staging: hv: mousevsc: Get rid of mousevsc_on_device_remove() by inlining code. - patches.suse/staging-hv-staging-next-20111001-0596-Staging-hv-mousevsc-Now-cleanup-mousevsc_remove.patch: Staging: hv: mousevsc: Now cleanup mousevsc_remove(). - patches.suse/staging-hv-staging-next-20111001-0597-Staging-hv-mousevsc-Get-rid-of-ref_count-state-in.patch: Staging: hv: mousevsc: Get rid of ref_count state in struct mousevsc_dev. - patches.suse/staging-hv-staging-next-20111001-0598-Staging-hv-mousevsc-Cleanup-camel-cased-enums.patch: Staging: hv: mousevsc: Cleanup camel cased enums. - patches.suse/staging-hv-staging-next-20111001-0599-Staging-hv-mousevsc-Get-rid-of-mousevsc_on_receiv.patch: Staging: hv: mousevsc: Get rid of mousevsc_on_receive_input_report() by inlining. - patches.suse/staging-hv-staging-next-20111001-0600-Staging-hv-mousevsc-Cleanup-mousevsc_on_device_ad.patch: Staging: hv: mousevsc: Cleanup mousevsc_on_device_add(). - patches.suse/staging-hv-staging-next-20111001-0601-Staging-hv-mousevsc-Enable-autoloading-of-the-mou.patch: Staging: hv: mousevsc: Enable autoloading of the mouse driver. - patches.suse/staging-hv-staging-next-20111001-0602-Staging-hv-mousevsc-Get-rid-of-unnecessary-commen.patch: Staging: hv: mousevsc: Get rid of unnecessary comments. - patches.suse/staging-hv-storvsc-module-name.patch: Refresh. - patches.suse/staging-hv-storvsc-scsi-proc_name.patch: Refresh. - patches.xen/xen3-patch-2.6.32: Refresh. - patches.suse/staging-hv-vmbus-modalias-show.patch: Delete.- Update config files to build VMCP as a module. - patches.arch/s390-vmcp-module.patch: Revert vmcp in-kernel only change (bnc#721007).- patches.drivers/bna-add-callback-to-fix-rxq-stop: bna: Add Callback to Fix RXQ Stop (FATE#311451 bnc#689230). - patches.drivers/bna-add-hw-semaphore-unlock-logic: bna: Add HW Semaphore Unlock Logic (FATE#311451 bnc#689230). - patches.drivers/bna-add-new-hw-defs: bna: Add New HW Defs (FATE#311451 bnc#689230). - patches.drivers/bna-async-mode-tx-rx-init-fix: bna: Async Mode Tx Rx Init Fix (FATE#311451 bnc#689230). - patches.drivers/bna-brocade-1860-hw-enablement: bna: Brocade 1860 HW Enablement (FATE#311451 bnc#689230). - patches.drivers/bna-brocade-1860-ioc-pll-reg-defs-and-asic-mode-changes: bna: Brocade 1860 IOC PLL, Reg Defs and ASIC Mode Changes (FATE#311451 bnc#689230). - patches.drivers/bna-capability-map-and-mfg-block-changes-for-new-hw: bna: Capability Map and MFG Block Changes for New HW (FATE#311451 bnc#689230). - patches.drivers/bna-checkpatch-cleanup: bna: CheckPatch Cleanup (FATE#311451 bnc#689230). - patches.drivers/bna-consolidated-hw-registers-for-supported-hws: bna: Consolidated HW Registers for Supported HWs (FATE#311451 bnc#689230). - patches.drivers/bna-driver-version-changed-to-3-0-2-0: bna: Driver Version changed to 3.0.2.0 (FATE#311451 bnc#689230). - patches.drivers/bna-driver-version-changed-to-3-0-2-1: bna: Driver Version changed to 3.0.2.1 (FATE#311451 bnc#689230). - patches.drivers/bna-driver-version-changed-to-3-0-2-2: bna: Driver Version changed to 3.0.2.2 (FATE#311451 bnc#689230). - patches.drivers/bna-eliminate-small-race-condition-window-in-rx-path: bna: Eliminate Small Race Condition Window in RX Path (FATE#311451 bnc#689230). - patches.drivers/bna-enet-and-tx-rx-redesign-enablement: bna: ENET and Tx Rx Redesign Enablement (FATE#311451 bnc#689230). - patches.drivers/bna-ethtool-enhancements-and-fix: bna: Ethtool Enhancements and Fix (FATE#311451 bnc#689230). - patches.drivers/bna-formatting-and-code-cleanup: bna: Formatting and Code Cleanup (FATE#311451 bnc#689230). - patches.drivers/bna-header-file-consolidation: bna: Header File Consolidation (FATE#311451 bnc#689230). - patches.drivers/bna-hw-error-counter-fix: bna: HW Error Counter Fix (FATE#311451 bnc#689230). - patches.drivers/bna-hw-interface-init-update: bna: HW Interface Init Update (FATE#311451 bnc#689230). - patches.drivers/bna-implement-fw-download-for-new-hw: bna: Implement FW Download for New HW (FATE#311451 bnc#689230). - patches.drivers/bna-initialization-and-locking-fix: bna: Initialization and Locking Fix (FATE#311451 bnc#689230). - patches.drivers/bna-interrupt-polling-and-napi-init-changes: bna: Interrupt Polling and NAPI Init Changes (FATE#311451 bnc#689230). - patches.drivers/bna-introduce-enet-as-new-driver-and-fw-interface: bna: Introduce ENET as New Driver and FW Interface (FATE#311451 bnc#689230). - patches.drivers/bna-ioc-event-name-change: bna: IOC Event Name Change (FATE#311451 bnc#689230). - patches.drivers/bna-ioc-event-notification-enhancement: bna: IOC Event Notification Enhancement (FATE#311451 bnc#689230). - patches.drivers/bna-make-function-tables-cont: bna: make function tables cont (FATE#311451 bnc#689230). - patches.drivers/bna-mbox-irq-flag-check-after-locking: bna: MBOX IRQ Flag Check after Locking (FATE#311451 bnc#689230). - patches.drivers/bna-mboxq-flush-when-ioc-disabled: bna: Mboxq Flush When IOC Disabled (FATE#311451 bnc#689230). - patches.drivers/bna-minor-irq-index-and-definition-change: bna: Minor IRQ Index and Definition Change (FATE#311451 bnc#689230). - patches.drivers/bna-msgq-implementation: bna: MSGQ Implementation (FATE#311451 bnc#689230). - patches.drivers/bna-naming-change-and-minor-macro-fix: bna: Naming Change and Minor Macro Fix (FATE#311451 bnc#689230). - patches.drivers/bna-off-by-one-in-bfa_msgq_rspq_pi_update: bna: off by one in bfa_msgq_rspq_pi_update() (FATE#311451 bnc#689230). - patches.drivers/bna-pci-probe-conf-lock-fix: bna: PCI Probe Conf Lock Fix (FATE#311451 bnc#689230). - patches.drivers/bna-pci-probe-fix: bna: PCI Probe Fix (FATE#311451 bnc#689230). - patches.drivers/bna-pll-init-fix-and-add-stats-attributes: bna: PLL Init Fix and Add Stats Attributes (FATE#311451 bnc#689230). - patches.drivers/bna-print-driver-version: bna: Print Driver Version (FATE#311451 bnc#689230). - patches.drivers/bna-remove-get_regs-ethtool-support: bna: Remove get_regs Ethtool Support (FATE#311451 bnc#689230). - patches.drivers/bna-remove-obsolete-file-bfi_ctreg-h: bna: Remove Obsolete File bfi_ctreg.h (FATE#311451 bnc#689230). - patches.drivers/bna-remove-obsolete-files: bna: Remove Obsolete Files (FATE#311451 bnc#689230). - patches.drivers/bna-remove-unnecessary-cna-check: bna: Remove Unnecessary CNA Check (FATE#311451 bnc#689230). - patches.drivers/bna-remove-unused-code: bna: Remove Unused Code (FATE#311451 bnc#689230). - patches.drivers/bna-semaphore-lock-fix: bna: Semaphore Lock Fix (FATE#311451 bnc#689230). - patches.drivers/bna-set-ring-param-fix: bna: Set Ring Param Fix (FATE#311451 bnc#689230). - patches.drivers/bna-skb-pci-unmap-fix: bna: SKB PCI UNMAP Fix (FATE#311451 bnc#689230). - patches.drivers/bna-state-machine-fault-handling-cleanup: bna: State Machine Fault Handling Cleanup (FATE#311451 bnc#689230). - patches.drivers/bna-tx-and-rx-redesign: bna: Tx and Rx Redesign (FATE#311451 bnc#689230). - patches.drivers/bna-tx-path-and-rx-path-changes: bna: TX Path and RX Path Changes (FATE#311451 bnc#689230). - patches.drivers/bna-tx-queue-depth-fix: bna: TX Queue Depth Fix (FATE#311451 bnc#689230). - patches.drivers/bna-unlock-on-error-path-in-bnad_pci_probe: bna: unlock on error path in bnad_pci_probe() (FATE#311451 bnc#689230).- patches.suse/0001-bttv-add-dummy-module-parameter.patch: bttv: add dummy module parameter (bnc#720457).- patches.suse/0001-saa7134-add-dummy-compatibility-parameter.patch: saa7134: add dummy compatibility parameter (bnc#720457).- patches.suse/0001-ir-kbd-i2c-add-back-dummy-module-parameter.patch: ir-kbd-i2c: add back dummy module parameter (bnc#720457).- patches.suse/supported-flag: Also look for Module.supported in the source tree. - patches.suse/supported-flag-enterprise: Refresh.- patches.suse/0001-USB-usbvision-more-compatibility-parameters.patch: USB: usbvision: more compatibility parameters (bnc#720457).- patches.suse/0001-USB-usbvision-add-compatibility-module-parameters.patch: USB: usbvision: add compatibility module parameters (bnc#720457).- Update config files: disable KDB on ec2 and xen flavours- patches.suse/0001-USB-pwc-add-dummy-module-parameter.patch: USB: pwc: add dummy module parameter (bnc#720457).- Update config files: enable KDB on i586 - patches.suse/kdb-v4.4-3.1-x86-1: fix i586 build- patches.fixes/mm-vmscan-drop-nr_force_scan-from-get_scan_count.patch: Refresh. - patches.fixes/mm-vmscan-fix-force-scanning-small-targets-without-swap.patch: Refresh. Update upstream info.- Linux 3.0.6. - patches.drivers/0320-cnic-Fix-interrupt-logic.patch: Delete. - patches.drivers/0321-cnic-Fix-race-conditions-with-firmware.patch: Delete. - patches.drivers/0322-cnic-Randomize-initial-TCP-port-for-iSCSI-connection.patch: Delete. - patches.drivers/0323-cnic-Improve-NETDEV_UP-event-handling.patch: Delete. - patches.drivers/0324-cnic-bnx2-Check-iSCSI-support-early-in-bnx2_init_one.patch: Delete. - patches.drivers/bnx2fc-Fix-kernel-panic-when-deleting-NPIV-ports.patch: Delete. - patches.drivers/bnx2fc-scsi_dma_unmap-not-invoked-on-IO-completio.patch: Delete. - patches.fixes/mm-memcg-fix-vmscan-count-in-small-memcgs.patch: Delete. - patches.kernel.org/8250-fix-race-condition-in-serial8250_backup_timeout.patch: Delete. - patches.kernel.org/8250_pci-add-support-for-rosewill-rc-305-4x-serial-port.patch: Delete. - patches.kernel.org/9p-close-acl-leaks.patch: Delete. - patches.kernel.org/acpica-acpi_max_sleep-should-be-2-sec-not-20.patch: Delete. - patches.kernel.org/acpica-do-not-repair-_tss-return-package-if-_pss-is-present.patch: Delete. - patches.kernel.org/ahci-raid-mode-sata-patch-for-intel-panther-point-deviceids.patch: Delete. - patches.kernel.org/alarmtimers-avoid-possible-denial-of-service-with-high-freq-periodic-timers.patch: Delete. - patches.kernel.org/alarmtimers-avoid-possible-null-pointer-traversal.patch: Delete. - patches.kernel.org/alarmtimers-memset-itimerspec-passed-into-alarm_timer_get.patch: Delete. - patches.kernel.org/alsa-fm801-fix-double-free-in-case-of-error-in-tuner-detection.patch: Delete. - patches.kernel.org/alsa-fm801-gracefully-handle-failure-of-tuner-auto-detect.patch: Delete. - patches.kernel.org/alsa-hda-cirrus-fix-surround-speaker-volume-control-name.patch: Delete. - patches.kernel.org/alsa-hda-realtek-fix-auto-mute-with-hp-lo-configuration.patch: Delete. - patches.kernel.org/alsa-pcm-fix-race-condition-in-wait_for_avail.patch: Delete. - patches.kernel.org/alsa-usb-audio-clear-chip-probing-on-error-exit.patch: Delete. - patches.kernel.org/arch-powerpc-sysdev-fsl_rio.c-correct-iecsr-register-clear.patch: Delete. - patches.kernel.org/arm-7014-1-cache-l2x0-fix-l2-cache-size-calculation.patch: Delete. - patches.kernel.org/arm-7081-1-mach-integrator-fix-the-clocksource.patch: Delete. - patches.kernel.org/arm-davinci-da850-evm-read-mac-address-from-spi-flash.patch: Delete. - patches.kernel.org/arm-davinci-fix-cache-flush-build-error.patch: Delete. - patches.kernel.org/arm-dove-fix-second-spi-initialization-call.patch: Delete. - patches.kernel.org/arp-fix-rcu-lockdep-splat-in-arp_process.patch: Delete. - patches.kernel.org/asix-add-ax88772b-usb-id.patch: Delete. - patches.kernel.org/asoc-ad193x-fix-dac-word-len-setting.patch: Delete. - patches.kernel.org/asoc-ad193x-fix-registers-definition.patch: Delete. - patches.kernel.org/asoc-blackfin-bf5xx-ad193x-fix-codec-device-name.patch: Delete. - patches.kernel.org/asoc-fix-reporting-of-partial-jack-updates.patch: Delete. - patches.kernel.org/asoc-mpc5200-replace-of_device-with-platform_device.patch: Delete. - patches.kernel.org/asoc-soc-jack-fix-checking-return-value-of-request_any_context_irq.patch: Delete. - patches.kernel.org/ath9k-fix-ps-wrappers-in-ath9k_set_coverage_class.patch: Delete. - patches.kernel.org/ath9k_hw-fix-calibration-on-5-ghz.patch: Delete. - patches.kernel.org/ath9k_hw-fix-sta-ar9485-bringup-issue-due-to-incorrect-mac-address.patch: Delete. - patches.kernel.org/atm-br2684-fix-oops-due-to-skb-dev-being-null.patch: Delete. - patches.kernel.org/avoid-dereferencing-a-request_queue-after-last-close.patch: Delete. - patches.kernel.org/b43-fix-beacon-problem-in-ad-hoc-mode.patch: Delete. - patches.kernel.org/blk-cgroup-be-able-to-remove-the-record-of-unplugged-device.patch: Delete. - patches.kernel.org/bluetooth-fix-timeout-on-scanning-for-the-second-time.patch: Delete. - patches.kernel.org/break-out-numa_maps-gather_pte_stats-checks.patch: Delete. - patches.kernel.org/bridge-fix-a-possible-net_device-leak.patch: Delete. - patches.kernel.org/bridge-fix-a-possible-use-after-free.patch: Delete. - patches.kernel.org/bridge-pseudo-header-required-for-the-checksum-of-icmpv6.patch: Delete. - patches.kernel.org/btrfs-fix-d_off-in-the-first-dirent.patch: Delete. - patches.kernel.org/carl9170-fix-mismatch-in-carl9170_op_set_key-mutex.patch: Delete. - patches.kernel.org/cdc_ncm-fix-endianness-problem.patch: Delete. - patches.kernel.org/cifs-fix-possible-memory-corruption-in-cifsfindnext.patch: Delete. - patches.kernel.org/drivers-cpufreq-pcc-cpufreq.c-avoid-null-pointer-dereference.patch: Delete. - patches.kernel.org/drivers-leds-ledtrig-timer.c-fix-broken-sysfs-delay-handling.patch: Delete. - patches.kernel.org/drm-nouveau-properly-handle-allocation-failure-in-nouveau_sgdma_populate.patch: Delete. - patches.kernel.org/drm-radeon-don-t-read-from-cp-ring-write-pointer-registers.patch: Delete. - patches.kernel.org/drm-radeon-kms-add-s-r-quirk-for-compaq-presario-v5245eu.patch: Delete. - patches.kernel.org/drm-radeon-kms-evergreen-ni-reset-spi-block-on-cp-resume.patch: Delete. - patches.kernel.org/drm-radeon-kms-fix-ddia-enable-on-some-rs690-systems.patch: Delete. - patches.kernel.org/drm-radeon-kms-fix-typo-in-r100_blit_copy.patch: Delete. - patches.kernel.org/drm-radeon-kms-make-gpu-cpu-page-size-handling-consistent-in-blit-code-v2.patch: Delete. - patches.kernel.org/drm-radeon-kms-make-sure-pci-max-read-request-size-is-valid-on-evergreen-v2.patch: Delete. - patches.kernel.org/drm-radeon-kms-set-a-default-max_pixel_clock.patch: Delete. - patches.kernel.org/e1000-fix-driver-to-be-used-on-pa-risc-c8000-workstations.patch: Delete. - patches.kernel.org/ehci-add-pci-quirk-for-ordissimo-and-rm-slate-100-too.patch: Delete. - patches.kernel.org/ehci-refactor-pci-quirk-to-use-standard-dmi_check_system-method.patch: Delete. - patches.kernel.org/fcoe-unable-to-select-the-exchangeid-from-offload-pool-for-storage-targets.patch: Delete. - patches.kernel.org/fib-fix-bug_on-in-fib_nl_newrule-when-add-new-fib-rule.patch: Delete. - patches.kernel.org/firewire-ohci-add-no-msi-quirk-for-o2micro-controller.patch: Delete. - patches.kernel.org/fix-the-conflict-between-rwpidforward-and-rw-mount-options.patch: Delete. - patches.kernel.org/fix-the-size-of-receive-buffer-packing-onto-virtio-ring.patch: Delete. - patches.kernel.org/floppy-use-del_timer_sync-in-init-cleanup.patch: Delete. - patches.kernel.org/fs-9p-add-fid-before-dentry-instantiation.patch: Delete. - patches.kernel.org/fs-9p-add-os-dependent-open-flags-in-9p-protocol.patch: Delete. - patches.kernel.org/fs-9p-always-ask-new-inode-in-create.patch: Delete. - patches.kernel.org/fs-9p-always-ask-new-inode-in-lookup-for-cache-mode.patch: Delete. - patches.kernel.org/fs-9p-don-t-update-file-type-when-updating-file-attributes.patch: Delete. - patches.kernel.org/fs-9p-fid-is-not-valid-after-a-failed-clunk.patch: Delete. - patches.kernel.org/fs-9p-fix-invalid-mount-options-args.patch: Delete. - patches.kernel.org/fs-9p-use-protocol-defined-value-for-lock-getlock-type-field.patch: Delete. - patches.kernel.org/fs-9p-when-doing-inode-lookup-compare-qid-details-and-inode.patch: Delete. - patches.kernel.org/genirq-make-irq_shutdown-symmetric-vs.-irq_startup-again.patch: Delete. - patches.kernel.org/hpsa-fix-physical-device-lun-and-target-numbering-problem.patch: Delete. - patches.kernel.org/hpsa-fix-problem-that-obdr-devices-are-not-detected.patch: Delete. - patches.kernel.org/hwmon-max16065-fix-current-calculation.patch: Delete. - patches.kernel.org/ibmveth-checksum-offload-is-always-disabled.patch: Delete. - patches.kernel.org/ibmveth-fix-dma-unmap-error.patch: Delete. - patches.kernel.org/ibmveth-fix-issue-with-dma-mapping-failure.patch: Delete. - patches.kernel.org/ibmveth-fix-leak-when-recycling-skb-and-hypervisor-returns.patch: Delete. - patches.kernel.org/igb-fix-wol-on-second-port-of-i350-device.patch: Delete. - patches.kernel.org/iommu-amd-don-t-take-domain-lock-recursivly.patch: Delete. - patches.kernel.org/iommu-amd-make-sure-iommu-need_sync-contains-correct-value.patch: Delete. - patches.kernel.org/ipc-mqueue.c-fix-mq_open-return-value.patch: Delete. - patches.kernel.org/ipc-mqueue.c-refactor-failure-handling.patch: Delete. - patches.kernel.org/ipv4-some-rt_iif-rt_route_iif-conversions.patch: Delete. - patches.kernel.org/ipv6-fix-ipv6_getsockopt-for-ipv6_2292pktoptions.patch: Delete. - patches.kernel.org/irda-fix-smsc-ircc2-section-mismatch-warning.patch: Delete. - patches.kernel.org/isci-change-sas-phy-timeouts-from-54us-to-59us.patch: Delete. - patches.kernel.org/isci-fix-32-bit-operation-when-config_highmem64g-n.patch: Delete. - patches.kernel.org/isci-fix-event-get-pointer-increment.patch: Delete. - patches.kernel.org/isci-fix-sata-response-handling.patch: Delete. - patches.kernel.org/isci-leave-requests-alone-if-already-terminating.patch: Delete. - patches.kernel.org/iscsi_tcp-fix-locking-around-iscsi-sk-user-data.patch: Delete. - patches.kernel.org/iwlagn-fix-command-queue-timeout.patch: Delete. - patches.kernel.org/iwlagn-workaround-bug-crashing-some-aps.patch: Delete. - patches.kernel.org/iwlegacy-fix-bug_on-info-control.rates.idx-0.patch: Delete. - patches.kernel.org/ixgbe-fix-possible-null-buffer-error.patch: Delete. - patches.kernel.org/kernel-printk-do-not-turn-off-bootconsole-in-printk_late_init-if-keep_bootcon.patch: Delete. - patches.kernel.org/libfc-enhancement-to-rport-state-machine-applicable-only-for-vn2vn-mode.patch: Delete. - patches.kernel.org/libiscsi_tcp-fix-lld-data-allocation.patch: Delete. - patches.kernel.org/lpfc-8.3.25-adapter-interface-fixes-and-changes.patch: Delete. - patches.kernel.org/lpfc-8.3.25-fabric-and-target-discovery-fixes.patch: Delete. - patches.kernel.org/lpfc-8.3.25-miscellaneous-bug-fixes-and-code-cleanup.patch: Delete. - patches.kernel.org/lpfc-8.3.25-pci-and-sr-iov-fixes.patch: Delete. - patches.kernel.org/lpfc-8.3.25-t10-dif-fixes.patch: Delete. - patches.kernel.org/mac80211-fix-missing-sta_lock-in-__sta_info_destroy.patch: Delete. - patches.kernel.org/make-proc-pid-numa_maps-gather_stats-take-variable-page.patch: Delete. - patches.kernel.org/mcast-fix-source-address-selection-for-multicast-listener-report.patch: Delete. - patches.kernel.org/md-fix-handling-for-devices-from-2tb-to-4tb-in-0.90.patch: Delete. - patches.kernel.org/md-linear-avoid-corrupting-structure-while-waiting-for.patch: Delete. - patches.kernel.org/mfd-fix-initialisation-of-tps65910-interrupts.patch: Delete. - patches.kernel.org/mfd-fix-value-of-wm8994_configure_gpio.patch: Delete. - patches.kernel.org/mfd-make-omap-usb-host-tll-mode-work-again.patch: Delete. - patches.kernel.org/mm-page-allocator-initialise-zlc-for-first-zone-eligible-for-zone_reclaim.patch: Delete. - patches.kernel.org/mm-page-allocator-reconsider-zones-for-allocation-after-direct-reclaim.patch: Delete. - patches.kernel.org/mm-sync-vmalloc-address-space-page-tables-in-alloc_vm_area.patch: Delete. - patches.kernel.org/mmc-core-prevent-aggressive-clock-gating-racing-with-ios.patch: Delete. - patches.kernel.org/mmc-core-use-non-reentrant-workqueue-for-clock-gating.patch: Delete. - patches.kernel.org/mmc-rename-mmc_host_clk_-ungate-gate-to-mmc_host_clk_-hold-release.patch: Delete. - patches.kernel.org/mmc-sdhci-s3c-fix-mmc-card-i-o-problem.patch: Delete. - patches.kernel.org/mpt2sas-added-did_no_connect-return-when-driver-remove-and-avoid-shutdown-call.patch: Delete. - patches.kernel.org/mpt2sas-adding-support-for-customer-specific-branding.patch: Delete. - patches.kernel.org/mxc-iomux-v3-correct-no_pad_ctrl-definition.patch: Delete. - patches.kernel.org/net-9p-fix-client-code-to-fail-more-gracefully-on-protocol-error.patch: Delete. - patches.kernel.org/net-9p-fix-kernel-crash-with-msize-512k.patch: Delete. - patches.kernel.org/net-9p-fix-the-msize-calculation.patch: Delete. - patches.kernel.org/net_sched-prio-use-qdisc_dequeue_peeked.patch: Delete. - patches.kernel.org/netfilter-tcp-and-raw-fix-for-ip_route_me_harder.patch: Delete. - patches.kernel.org/nuvoton-cir-simplify-raw-ir-sample-handling.patch: Delete. - patches.kernel.org/omap-serial-allow-ixon-and-ixoff-to-be-disabled.patch: Delete. - patches.kernel.org/pata_via-disable-atapi-dma-on-averatec-3200.patch: Delete. - patches.kernel.org/perf-symbols-fix-ppc64-segv-in-dso__load_sym-with-debuginfo-files.patch: Delete. - patches.kernel.org/perf-x86-add-model-45-sandybridge-support.patch: Delete. - patches.kernel.org/qdio-clear-shared-dsci-before-scheduling-the-queue-handler.patch: Delete. - patches.kernel.org/qla2xxx-correct-inadvertent-loop-state-transitions-during-port-update-handling.patch: Delete. - patches.kernel.org/rapidio-fix-use-of-non-compatible-registers.patch: Delete. - patches.kernel.org/regulator-tps65910-add-missing-breaks-in-switch-case.patch: Delete. - patches.kernel.org/restore-pinning-the-victim-dentry-in-vfs_rmdir-vfs_rename_dir.patch: Delete. - patches.kernel.org/revert-sfc-use-write-combining-to-reduce-tx-latency-and-follow-ups.patch: Delete. - patches.kernel.org/rt2800pci-fix-compiler-error-on-powerpc.patch: Delete. - patches.kernel.org/rt2x00-do-not-drop-usb-dev-reference-counter-on-suspend.patch: Delete. - patches.kernel.org/rt2x00-fix-crash-in-rt2800usb_get_txwi.patch: Delete. - patches.kernel.org/rt2x00-fix-crash-in-rt2800usb_write_tx_desc.patch: Delete. - patches.kernel.org/rtc-fix-rtc-pie-frequency-limit.patch: Delete. - patches.kernel.org/rtl2800usb-fix-incorrect-storage-of-mac-address-on.patch: Delete. - patches.kernel.org/rtlwifi-fix-problem-when-switching-connections.patch: Delete. - patches.kernel.org/rtlwifi-rtl8192su-fix-problem-connecting-to-ht-enabled-ap.patch: Delete. - patches.kernel.org/savagedb-fix-typo-causing-regression-in-savage4-series.patch: Delete. - patches.kernel.org/sched-fix-a-memory-leak-in-__sdt_free.patch: Delete. - patches.kernel.org/sched-move-blk_schedule_flush_plug-out-of-__schedule.patch: Delete. - patches.kernel.org/sched-separate-the-scheduler-entry-for-preemption.patch: Delete. - patches.kernel.org/scm-capture-the-full-credentials-of-the-scm-sender.patch: Delete. - patches.kernel.org/sendmmsg-sendmsg-fix-unsafe-user-pointer-access.patch: Delete. - patches.kernel.org/serial-8250_pnp-add-intermec-cv60-touchscreen-device.patch: Delete. - patches.kernel.org/sparc-allow-handling-signals-when-stack-is-corrupted.patch: Delete. - patches.kernel.org/sparc-fix-array-bounds-error-setting-up-pcic-nmi-trap.patch: Delete. - patches.kernel.org/sparc32-sun4d-change-ipi-irq-level-to-prevent-collision.patch: Delete. - patches.kernel.org/sparc32-unbreak-arch_write_unlock.patch: Delete. - patches.kernel.org/sparc64-only-panther-cheetah-chips-have-popc.patch: Delete. - patches.kernel.org/sparc64-remove-unnecessary-macros-from-spinlock_64.h.patch: Delete. - patches.kernel.org/sparc64-set-have_c_recordmcount.patch: Delete. - patches.kernel.org/tcp-fix-validation-of-d-sack.patch: Delete. - patches.kernel.org/tcp-initialize-variable-ecn_ok-in-syncookies-path.patch: Delete. - patches.kernel.org/teach-proc-pid-numa_maps-about-transparent-hugepages.patch: Delete. - patches.kernel.org/tg3-add-5719-and-5720-to-eee_cap-list.patch: Delete. - patches.kernel.org/tg3-fix-int-selftest-for-recent-devices.patch: Delete. - patches.kernel.org/tg3-fix-io-failures-after-chip-reset.patch: Delete. - patches.kernel.org/tpm-call-tpm_transmit-with-correct-size.patch: Delete. - patches.kernel.org/tpm-zero-buffer-after-copying-to-userspace.patch: Delete. - patches.kernel.org/tty-add-spi-prefix-for-spi-modalias.patch: Delete. - patches.kernel.org/tty-pty-fix-pty-counting.patch: Delete. - patches.kernel.org/usb-ehci-do-not-rely-on-port_suspend-to-stop-usb-resuming-in-ehci_bus_resume.patch: Delete. - patches.kernel.org/usb-ftdi_sio-add-calao-reference-board-support.patch: Delete. - patches.kernel.org/usb-host-pci-quirks.c-correct-annotation-of.patch: Delete. - patches.kernel.org/usb-musb-cppi-fix-build-errors-due-to-dbg-and-missing.patch: Delete. - patches.kernel.org/usb-option-add-yuga-device-id-to-driver.patch: Delete. - patches.kernel.org/usb-option-driver-add-pid-of-huawei-vodafone-k3806.patch: Delete. - patches.kernel.org/usb-option-driver-add-pid-of-huawei-vodafone-k4605.patch: Delete. - patches.kernel.org/usb-option-driver-k3765-k4505-avoid-cdc_data-interface.patch: Delete. - patches.kernel.org/usb-pl2303-correctly-handle-baudrates-above-115200.patch: Delete. - patches.kernel.org/usb-s5p-ehci-fix-a-null-pointer-deference.patch: Delete. - patches.kernel.org/usb-xhci-set-change-bit-when-warm-reset-change-is-set.patch: Delete. - patches.kernel.org/virtio-can-transfer-virtqueue_num-of-pages.patch: Delete. - patches.kernel.org/vlan-reset-headers-on-accel-emulation-path.patch: Delete. - patches.kernel.org/vp7045-fix-buffer-setup.patch: Delete. - patches.kernel.org/wireless-reset-beacon_found-while-updating-regulatory.patch: Delete. - patches.kernel.org/workqueue-lock-cwq-access-in-drain_workqueue.patch: Delete. - patches.kernel.org/writeback-introduce-.tagged_writepages-for-the-wb_sync_none-sync-stage.patch: Delete. - patches.kernel.org/writeback-update-dirtied_when-for-synced-inode-to-prevent-livelock.patch: Delete. - patches.kernel.org/x86-iommu-mark-dmar-irq-as-non-threaded.patch: Delete. - patches.kernel.org/x86-perf-check-that-current-mm-is-alive-before-getting-user-callchain.patch: Delete. - patches.kernel.org/xen-e820-if-there-is-no-dom0_mem-don-t-tweak-extra_pages.patch: Delete. - patches.kernel.org/xen-smp-warn-user-why-they-keel-over-nosmp-or-noapic-and-what-to-use-instead.patch: Delete. - patches.kernel.org/xen-use-maximum-reservation-to-limit-amount-of-usable-ram.patch: Delete. - patches.kernel.org/xen-x86_32-do-not-enable-iterrupts-when-returning-from.patch: Delete. - patches.kernel.org/xfrm-perform-a-replay-check-after-return-from-async-codepaths.patch: Delete. - patches.kernel.org/xhci-fix-failed-enqueue-in-the-middle-of-isoch-td.patch: Delete. - patches.kernel.org/xhci-fix-memory-leak-during-failed-enqueue.patch: Delete. - patches.kernel.org/xhci-fix-port-u3-status-check-condition.patch: Delete. - patches.kernel.org/xhci-handle-zero-length-isochronous-packets.patch: Delete. - patches.kernel.org/xhci-remove-tds-from-td-lists-when-urbs-are-canceled.patch: Delete. - patches.kernel.org/xhci-report-usb2-port-in-resuming-as-suspend.patch: Delete. - patches.kernel.org/xz-fix-incorrect-xz_buf_error.patch: Delete. - patches.kernel.org/zorro-defer-device_register-until-all-devices-have-been-identified.patch: Delete.- supported.conf: enable rtc_cmos, inadvertently disabled by commit a2a68b74 (the intention was to disable rtc-lib). Fixes bnc#721517.- patches.drivers/pci-skip-IOV-BARs: Typo: #if should be #ifdef.- Enable iSCSI target module.- patches.drivers/target-0001-tcm_fc-Fixing-reference-counting-problem-whi.patch: tcm_fc: Fixing reference counting problem which was causing ft_sess to be deleted (bnc#718950). - patches.drivers/target-0002-target-Check-LUN-numbers-in-transport_get_lun_for_.patch: target: Check LUN numbers in transport_get_lun_for_[cmd,tmr] (bnc#718950). - patches.drivers/target-0003-target-use-MAINTENANCE_IN-and-MAINTENANCE_OUT-defin.patch: target: use MAINTENANCE_IN and MAINTENANCE_OUT definitions in scsi.h (bnc#718950). - patches.drivers/target-0004-target-Remove-unnecessary-cdb-transport_get_lun_fo.patch: target: Remove unnecessary *cdb transport_get_lun_for_cmd parameter (bnc#718950). - patches.drivers/target-0005-target-Remove-unused-su_group-usage-in-fabric-regis.patch: target: Remove unused su_group usage in fabric register/dergister (bnc#718950). - patches.drivers/target-0006-target-Core-cleanups-from-AGrover-round-1.patch: target: Core cleanups from AGrover (round 1) (bnc#718950). - patches.drivers/target-0007-target-Fix-double-test-of-inquiry_prod.patch: target: Fix double test of inquiry_prod (bnc#718950). - patches.drivers/target-0008-target-More-core-cleanups-from-AGrover-round-2.patch: target: More core cleanups from AGrover (round 2) (bnc#718950). - patches.drivers/target-0009-target-Fix-WRITE_SAME_16-t_task_lba-assignment-bug.patch: target: Fix WRITE_SAME_16 t_task_lba assignment bug (bnc#718950). - patches.drivers/target-0010-target-Fix-WRITE_SAME_-16-32-number-of-blocks-0-ca.patch: target: Fix WRITE_SAME_[16,32] number of blocks=0 case (bnc#718950). - patches.drivers/target-0011-target-Updates-from-AGrover-and-HCH-round-3.patch: target: Updates from AGrover and HCH (round 3) (bnc#718950). - patches.drivers/target-0012-target-remove-the-always-noop-new_cmd_failure-met.patch: target: remove the always-noop ->new_cmd_failure method (bnc#718950). - patches.drivers/target-0013-target-remove-the-unused-SCF_-flags.patch: target: remove the unused SCF_* flags (bnc#718950). - patches.drivers/target-0014-target-merge-release_cmd-methods.patch: target: merge release_cmd methods (bnc#718950). - patches.drivers/target-0015-target-Add-transport_handle_cdb_direct-optimization.patch: target: Add transport_handle_cdb_direct optimization (bnc#718950). - patches.drivers/target-0016-target-Add-SCF_EMULATE_QUEUE_FULL-transport_hand.patch: target: Add SCF_EMULATE_QUEUE_FULL -> transport_handle_queue_full (bnc#718950). - patches.drivers/target-0017-target-Make-transport_lookup_cmd_lun-locking-IRQ.patch: target: Make transport_lookup_cmd_lun() locking IRQ-safe (bnc#718950). - patches.drivers/target-0018-target-Make-se_dev_check_online-locking-IRQ-safe.patch: target: Make se_dev_check_online() locking IRQ-safe (bnc#718950). - patches.drivers/target-0019-target-Make-se_tmr_lock-IRQ-safe.patch: target: Make se_tmr_lock IRQ-safe (bnc#718950). - patches.drivers/target-0020-target-iblock-Use-request_queue-nr_request-for-se_.patch: target/iblock: Use request_queue->nr_request for se_device defaults (bnc#718950). - patches.drivers/target-0021-target-iblock-Remove-unused-iblock_dev-members.patch: target/iblock: Remove unused iblock_dev members (bnc#718950). - patches.drivers/target-0022-loopback-off-by-one-in-tcm_loop_make_naa_tpg.patch: loopback: off by one in tcm_loop_make_naa_tpg() (bnc#718950). - patches.drivers/target-0023-loopback-Remove-duplicate-scsi-scsi_tcq.h-include.patch: loopback: Remove duplicate scsi/scsi_tcq.h include (bnc#718950). - patches.drivers/target-0024-loopback-Fix-memory-leak-in-tcm_loop_make_scsi_hba.patch: loopback: Fix memory leak in tcm_loop_make_scsi_hba() (bnc#718950). - patches.drivers/target-0025-tcm_fc-Makefile-cleanups.patch: tcm_fc: Makefile cleanups (bnc#718950). - patches.drivers/target-0026-tcm_fc-Convert-to-wake_up_process-and-schedule_time.patch: tcm_fc: Convert to wake_up_process and schedule_timeout_interruptible (bnc#718950). - patches.drivers/target-0027-target-Allow-for-built-in-target-modules.patch: target: Allow for built-in target modules (bnc#718950). - patches.drivers/target-0028-target-Fix-reporting-of-supported-VPD-pages.patch: target: Fix reporting of supported VPD pages (bnc#718950). - patches.drivers/target-0029-target-Implement-Block-Device-Characteristics-VPD-p.patch: target: Implement Block Device Characteristics VPD page (bnc#718950). - patches.drivers/target-0030-target-Make-all-control-CDBs-scatter-gather.patch: target: Make all control CDBs scatter-gather (bnc#718950). - patches.drivers/target-0031-target-Enforce-1-page-max-for-control-cdb-buffer-si.patch: target: Enforce 1 page max for control cdb buffer sizes (bnc#718950). - patches.drivers/target-0032-target-Pass-2nd-param-of-transport_split_cdb-by-val.patch: target: Pass 2nd param of transport_split_cdb by value (bnc#718950). - patches.drivers/target-0033-target-Eliminate-usage-of-struct-se_mem.patch: target: Eliminate usage of struct se_mem (bnc#718950). - patches.drivers/target-0034-target-Follow-up-core-updates-from-AGrover-and-HCH.patch: target: Follow up core updates from AGrover and HCH (round 4) (bnc#718950). - patches.drivers/target-0035-target-map_task_SG-conversion-to-map_control_SG.patch: target: ->map_task_SG conversion to ->map_control_SG and - >map_data_SG (bnc#718950). - patches.drivers/target-0036-target-Update-QUEUE-ALGORITHM-MODIFIER-control-page.patch: target: Update QUEUE ALGORITHM MODIFIER control page default (bnc#718950). - patches.drivers/target-0037-target-fix-typo-Assoication-Association.patch: target: fix typo Assoication -> Association (bnc#718950). - patches.drivers/target-0038-target-remove-custom-hex2bin-implementation.patch: target: remove custom hex2bin() implementation (bnc#718950). - patches.drivers/target-0039-target-Bump-version-to-v4.1.0-rc1-ml.patch: target: Bump version to v4.1.0-rc1-ml (bnc#718950). - patches.drivers/target-0040-iscsi-target-Add-iSCSI-fabric-support-for-target-v4.patch: iscsi-target: Add iSCSI fabric support for target v4.1 (bnc#718950). - patches.drivers/target-0041-target-Convert-to-DIV_ROUND_UP_SECTOR_T-usage-for-s.patch: target: Convert to DIV_ROUND_UP_SECTOR_T usage for sectors / dev_max_sectors (bnc#718950). - patches.drivers/target-0042-iscsi-target-Fix-NULL-dereference-on-allocation-fai.patch: iscsi-target: Fix NULL dereference on allocation failure (bnc#718950). - patches.drivers/target-0043-iscsi-target-strlen-doesn-t-count-the-terminator.patch: iscsi-target: strlen() doesn't count the terminator (bnc#718950). - patches.drivers/target-0044-iscsi-target-Fix-uninitialized-usage-of-cmd-pad_by.patch: iscsi-target: Fix uninitialized usage of cmd->pad_bytes (bnc#718950). - patches.drivers/target-0045-iscsi-target-Fix-snprintf-usage-with-MAX_PORTAL_LEN.patch: iscsi-target: Fix snprintf usage with MAX_PORTAL_LEN (bnc#718950). - patches.drivers/target-0046-iscsi-target-Fix-CONFIG_SMP-n-and-CONFIG_MODULES-n.patch: iscsi-target: Fix CONFIG_SMP=n and CONFIG_MODULES=n build failure (bnc#718950). - patches.drivers/target-0047-target-Fix-WRITE_SAME_16-lba-assignment-breakage.patch: target: Fix WRITE_SAME_16 lba assignment breakage (bnc#718950). - patches.drivers/target-0048-target-iscsi_target-depends-on-NET.patch: target: iscsi_target depends on NET (bnc#718950). - patches.drivers/target-0049-target-Fix-bug-for-transport_generic_wait_for_tasks.patch: target: Fix bug for transport_generic_wait_for_tasks with direct operation (bnc#718950). - patches.drivers/target-0050-tcm_fc-Handle-DDP-SW-fc_frame_payload_get-failures.patch: tcm_fc: Handle DDP/SW fc_frame_payload_get failures in ft_recv_write_data (bnc#718950). - patches.drivers/target-0051-target-Change-TCM_NON_EXISTENT_LUN-response-to-ASC.patch: target: Change TCM_NON_EXISTENT_LUN response to ASC=LOGICAL UNIT NOT SUPPORTED (bnc#718950). - patches.drivers/target-0052-target-Make-standard-INQUIRY-return-not-connected.patch: target: Make standard INQUIRY return 'not connected' for tpg_virt_lun0 (bnc#718950). - patches.drivers/target-0053-target-Use-ERR_CAST-inlined-function.patch: target: Use ERR_CAST inlined function (bnc#718950). - patches.drivers/target-0054-iscsi-target-Fix-leak-on-failure-in-iscsi_copy_para.patch: iscsi-target: Fix leak on failure in iscsi_copy_param_list() (bnc#718950). - patches.drivers/target-0055-target-Convert-target_core_rd.c-to-use-use-BUG_ON.patch: target: Convert target_core_rd.c to use use BUG_ON (bnc#718950). - patches.drivers/target-0056-iscsi-target-remove-duplicate-return.patch: iscsi-target: remove duplicate return (bnc#718950). - patches.drivers/target-0057-iscsi-target-forever-loop-bug-in-iscsit_attach_ooo_.patch: iscsi-target: forever loop bug in iscsit_attach_ooo_cmdsn() (bnc#718950). - patches.drivers/target-0058-target-Fix-write-payload-exception-handling-with.patch: target: Fix write payload exception handling with ->new_cmd_map (bnc#718950). - patches.drivers/target-0059-target-Add-WRITE_SAME-10-parsing-and-refactor-pas.patch: target: Add WRITE_SAME (10) parsing and refactor passthrough checks (bnc#718950). - patches.drivers/target-0060-target-Fix-WRITE_SAME-usage-with-transport_get_size.patch: target: Fix WRITE_SAME usage with transport_get_size (bnc#718950). - patches.drivers/target-0061-target-Remove-duplicate-task-completions-in-transpo.patch: target: Remove duplicate task completions in transport_emulate_control_cdb (bnc#718950). - patches.drivers/target-0062-target-Fix-SYNCHRONIZE_CACHE-zero-LBA-range-break.patch: target: Fix SYNCHRONIZE_CACHE zero LBA + range breakage (bnc#718950). - patches.drivers/target-0063-target-Add-missing-DATA_SG_IO-transport_cmd_get_val.patch: target: Add missing DATA_SG_IO transport_cmd_get_valid_sectors check (bnc#718950). - patches.drivers/target-0064-target-Fix-task-count-1-handling-breakage-and-use.patch: target: Fix task count > 1 handling breakage and use max_sector page alignment (bnc#718950). - patches.drivers/target-0065-target-Fix-task-SGL-chaining-breakage-with-transpor.patch: target: Fix task SGL chaining breakage with transport_allocate_data_tasks (bnc#718950). - patches.drivers/target-0066-iscsi-target-Implement-iSCSI-target-IPv6-address-pr.patch: iscsi-target: Implement iSCSI target IPv6 address printing (bnc#718950). - patches.drivers/target-0067-iscsi-target-Fix-iscsit_allocate_se_cmd_for_tmr-fai.patch: iscsi-target: Fix iscsit_allocate_se_cmd_for_tmr failure path bugs (bnc#718950). - patches.drivers/target-0068-target-Print-subpage-too-for-unhandled-MODE-SENSE-p.patch: target: Print subpage too for unhandled MODE SENSE pages (bnc#718950). - patches.drivers/target-0069-tcm_fc-init-exit-functions-should-not-be-protected.patch: tcm_fc: init/exit functions should not be protected by "#ifdef MODULE" (bnc#718950). - patches.drivers/target-0070-target-Make-locking-in-transport_deregister_session.patch: target: Make locking in transport_deregister_session() IRQ safe (bnc#718950). - patches.drivers/target-0071-target-Convert-acl_node_lock-to-be-IRQ-disabling.patch: target: Convert acl_node_lock to be IRQ-disabling (bnc#718950). - patches.drivers/target-0072-target-Fix-race-between-multiple-invocations-of-tar.patch: target: Fix race between multiple invocations of target_qf_do_work() (bnc#718950). - patches.drivers/target-0073-tcm_fc-Invalidation-of-DDP-context-for-FCoE-target.patch: tcm_fc: Invalidation of DDP context for FCoE target in error conditions (bnc#718950). - patches.drivers/target-0074-tcm_fc-Work-queue-based-approach-instead-of-managin.patch: tcm_fc: Work queue based approach instead of managing own thread and event based mechanism (bnc#718950). - patches.drivers/target-0075-target-Skip-non-hex-characters-for-VPD-0x83-NAA-IEE.patch: target: Skip non hex characters for VPD=0x83 NAA IEEE Registered Extended (bnc#718950). - patches.drivers/target-0076-iscsi-target-Disable-markers-remove-dangerous-loc.patch: iscsi-target: Disable markers + remove dangerous local scope array usage (bnc#718950). - patches.drivers/target-0077-iscsi-target-Fix-sendpage-breakage-with-proper-padd.patch: iscsi-target: Fix sendpage breakage with proper padding+DataDigest iovec offsets (bnc#718950). - patches.fixes/iscsi-Add-Serial-Number-Arithmetic-LT-and-GT-into-i.patch: iscsi: Add Serial Number Arithmetic LT and GT into iscsi_proto.h (bnc#718950). - patches.fixes/iscsi-Resolve-iscsi_proto.h-naming-conflicts-with-d.patch: iscsi: Resolve iscsi_proto.h naming conflicts with drivers/target/iscsi (bnc#718950). - patches.fixes/iscsi-Use-struct-scsi_lun-in-iscsi-structs-instead.patch: iscsi: Use struct scsi_lun in iscsi structs instead of u8 (bnc#718950). - patches.fixes/kernel.h-Add-DIV_ROUND_UP_ULL-and-DIV_ROUND_UP_SECT.patch: kernel.h: Add DIV_ROUND_UP_ULL and DIV_ROUND_UP_SECTOR_T macro usage (bnc#718950).- Re-enable SR-IOV for powerpc (bnc#711566). - patches.drivers/pci-skip-IOV-BARs: pci: skip IOV BARs in __pci_enable_device_flags (bnc#711566).- config.conf: Build KMPs for the -trace flavor as well (fate#312759, bnc#712404, bnc#712405, bnc#721337).- patches.drivers/acpi_apei_whitelist_hest_dell.patch: Enable HEST parsing on Dell platforms by default (bnc#714106).- patches.suse/btrfs-0904-fix-how-we-mount-subvol-whatever.patch: Refresh. - patches.suse/btrfs-0933-check-unused-against-how-much-space-we-actuall.patch: Btrfs: check unused against how much space we actually want (FATE#306586). - patches.suse/btrfs-0934-introduce-convert_extent_bit.patch: Btrfs: introduce convert_extent_bit (FATE#306586). - patches.suse/btrfs-0935-stop-using-write_one_page.patch: Btrfs: stop using write_one_page (FATE#306586). - patches.suse/btrfs-0936-use-the-global-reserve-as-a-backup-for-deletin.patch: Btrfs: use the global reserve as a backup for deleting inodes (FATE#306586). - patches.suse/btrfs-0937-break-out-of-orphan-cleanup-if-we-can-t-make-p.patch: Btrfs: break out of orphan cleanup if we can't make progress (FATE#306586). - patches.suse/btrfs-0938-allow-us-to-overcommit-our-enospc-reservations.patch: Btrfs: allow us to overcommit our enospc reservations (FATE#306586). - patches.suse/btrfs-0939-only-inherit-btrfs-specific-flags-when-creatin.patch: Btrfs: only inherit btrfs specific flags when creating files (FATE#306586). - patches.suse/btrfs-8014-trivial-fix-a-potential-memory-leak-in-btrfs_p.patch: Refresh. - patches.suse/btrfs-8017-ratelimit-WARN_ON-in-use_block_rsv.patch: Refresh. - patches.suse/btrfs-do-not-allow-mounting-non-subvolumes-via-subvol.patch: Refresh. - patches.suse/btrfs-push-up-clear_extent_bit-errors-to-callers: Refresh.- patches.drivers/lis3-Fix-regression-of-HP-DriveGuard-with-8bit-chip: lis3: Fix regression of HP DriveGuard with 8bit chip (bnc#721212).- patches.fixes/scsi-dh-rdac-use-wwwid-from-c8-to-identify-storage: dh_rdac: Use WWID from C8 page instead of Subsystem id from C4 page to identify storage (bnc#714786).- patches.drivers/acpi_apei_allow_partly_enabling.patch: ACPI APEI: Allow enabling of APEI parts via boot param: hest_enable, erst_enable (bnc#714106).- patches.fixes/vgaarb-backout-7ad35cf2: Revert "x86/uv/x2apic: update for change in pci bridge handling." (bnc#711684).- patches.drivers/drm-i915-DP_PIPE_ENABLED-must-check-transcoder-on-CPT: drm/i915: DP_PIPE_ENABLED must check transcoder on CPT (bnc#720661). - patches.drivers/drm-i915-Fix-PCH-port-pipe-select-in-CPT-disable-paths: drm/i915: Fix PCH port pipe select in CPT disable paths (bnc#720661). - patches.drivers/drm-i915-Leave-LVDS-registers-unlocked: drm/i915: Leave LVDS registers unlocked (bnc#720661). - patches.drivers/drm-i915-Remove-unused-reg-argument: drm/i915: Remove unused 'reg' argument to dp_pipe_enabled (bnc#720661). - patches.drivers/drm-i915-Wait-for-LVDS-panel-power-sequence: drm/i915: Wait for LVDS panel power sequence (bnc#720661).- patches.fixes/vgaarb-backout-3448a19d: VGA arb: Back out Commit 3448a19d. - patches.fixes/vgaarb-enable-legacy-resources-only-if-device-decodes.patch: Refresh.- patches.fixes/vfs-fix-the-remaining-automounter-semantics-regressi.patch: VFS: Fix the remaining automounter semantics regressions (bnc#715496). - patches.fixes/vfs-pathname-lookup-add-lookup_automount-flag.patch: vfs pathname lookup: Add LOOKUP_AUTOMOUNT flag (bnc#715496).- more 3.0.5 patches - patches.kernel.org/ahci-raid-mode-sata-patch-for-intel-panther-point-deviceids.patch: ahci: RAID-mode SATA patch for Intel Panther Point DeviceIDs. - patches.kernel.org/alsa-fm801-fix-double-free-in-case-of-error-in-tuner-detection.patch: ALSA: fm801: Fix double free in case of error in tuner detection. - patches.kernel.org/alsa-fm801-gracefully-handle-failure-of-tuner-auto-detect.patch: ALSA: fm801: Gracefully handle failure of tuner auto-detect. - patches.kernel.org/alsa-usb-audio-clear-chip-probing-on-error-exit.patch: ALSA: usb-audio - clear chip->probing on error exit. - patches.kernel.org/bluetooth-fix-timeout-on-scanning-for-the-second-time.patch: Bluetooth: Fix timeout on scanning for the second time. - patches.kernel.org/btrfs-fix-d_off-in-the-first-dirent.patch: btrfs: fix d_off in the first dirent. - patches.kernel.org/drm-radeon-kms-fix-ddia-enable-on-some-rs690-systems.patch: drm/radeon/kms: fix DDIA enable on some rs690 systems. - patches.kernel.org/isci-change-sas-phy-timeouts-from-54us-to-59us.patch: isci: change sas phy timeouts from 54us to 59us. - patches.kernel.org/isci-fix-event-get-pointer-increment.patch: isci: fix event-get pointer increment. - patches.kernel.org/isci-leave-requests-alone-if-already-terminating.patch: isci: Leave requests alone if already terminating. - patches.kernel.org/libiscsi_tcp-fix-lld-data-allocation.patch: libiscsi_tcp: fix LLD data allocation. - patches.kernel.org/lpfc-8.3.25-adapter-interface-fixes-and-changes.patch: lpfc 8.3.25: Adapter Interface fixes and changes. - patches.kernel.org/lpfc-8.3.25-fabric-and-target-discovery-fixes.patch: lpfc 8.3.25: Fabric and Target Discovery Fixes. - patches.kernel.org/lpfc-8.3.25-miscellaneous-bug-fixes-and-code-cleanup.patch: lpfc 8.3.25: Miscellaneous Bug fixes and code cleanup. - patches.kernel.org/lpfc-8.3.25-pci-and-sr-iov-fixes.patch: lpfc 8.3.25: PCI and SR-IOV Fixes. - patches.kernel.org/lpfc-8.3.25-t10-dif-fixes.patch: lpfc 8.3.25: T10 DIF Fixes. - patches.kernel.org/pci-don-t-crash-when-reading-mpss-from-root-complex.patch: pci: Don't crash when reading mpss from root complex. - patches.kernel.org/perf-symbols-fix-ppc64-segv-in-dso__load_sym-with-debuginfo-files.patch: perf symbols: Fix ppc64 SEGV in dso__load_sym with debuginfo files. - patches.kernel.org/usb-host-pci-quirks.c-correct-annotation-of.patch: usb/host/pci-quirks.c: correct annotation of `ehci_dmi_nohandoff_table'. - patches.drivers/intel-panther-point-pch-deviceid-fix.patch: Delete. - patches.drivers/lpfc-8.3.25-Adapter-Interface-fixes-and-chan.patch: Delete. - patches.drivers/lpfc-8.3.25-Fabric-and-Target-Discovery-Fixe.patch: Delete. - patches.drivers/lpfc-8.3.25-Miscellaneous-Bug-fixes-and-code.patch: Delete. - patches.drivers/lpfc-8.3.25-PCI-and-SR-IOV-Fixes.patch: Delete. - patches.drivers/lpfc-8.3.25-T10-DIF-Fixes.patch: Delete. - patches.fixes/0003-isci-change-sas-phy-timeouts-from-54us-to-59us.patch: Delete. - patches.fixes/0005-isci-Leave-requests-alone-if-already-terminating.patch: Delete. - patches.fixes/0007-isci-fix-event-get-pointer-increment.patch: Delete. - patches.fixes/Bluetooth_Periodic_Inquiry_and_mgmt_discovering_event.patch: Delete. - patches.fixes/libiscsi_tcp-fix-LLD-data-allocation.patch: Delete. - patches.kernel.org/pci-Don_t-crash-when-reading-mpss-from-root-complex.patch: Delete. - patches.suse/btrfs-0098-fix-d_off-in-the-first-dirent.patch: Delete.- patches.kernel.org/pci-Don_t-crash-when-reading-mpss-from-root-complex.patch: pci: Don't crash when reading mpss from root complex (bnc#719846).- SGI says this patch shouldn't be necessary any more. - patches.arch/x86-fix_irq_assignment-on-NUMA-systems.patch: Delete.- remove old moblin patches that are no longer needed here at all: - patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: Delete. - patches.suse/linux-2.6.29-enable-async-by-default.patch: Delete. - patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: Delete. - patches.suse/linux-2.6.29-kms-after-sata.patch: Delete. - patches.suse/linux-2.6.29-silence-acer-message.patch: Delete. - patches.suse/linux-2.6.29-touchkit.patch: Delete.- more 3.0.5 patches: - patches.kernel.org/arp-fix-rcu-lockdep-splat-in-arp_process.patch: arp: fix rcu lockdep splat in arp_process(). - patches.kernel.org/bridge-fix-a-possible-net_device-leak.patch: bridge: fix a possible net_device leak. - patches.kernel.org/bridge-fix-a-possible-use-after-free.patch: bridge: fix a possible use after free. - patches.kernel.org/bridge-pseudo-header-required-for-the-checksum-of-icmpv6.patch: bridge: Pseudo-header required for the checksum of ICMPv6. - patches.kernel.org/fib-fix-bug_on-in-fib_nl_newrule-when-add-new-fib-rule.patch: fib:fix BUG_ON in fib_nl_newrule when add new fib rule. - patches.kernel.org/ipv4-some-rt_iif-rt_route_iif-conversions.patch: ipv4: some rt_iif -> rt_route_iif conversions. - patches.kernel.org/ipv6-fix-ipv6_getsockopt-for-ipv6_2292pktoptions.patch: ipv6: Fix ipv6_getsockopt for IPV6_2292PKTOPTIONS. - patches.kernel.org/mcast-fix-source-address-selection-for-multicast-listener-report.patch: mcast: Fix source address selection for multicast listener report. - patches.kernel.org/net_sched-prio-use-qdisc_dequeue_peeked.patch: net_sched: prio: use qdisc_dequeue_peeked. - patches.kernel.org/netfilter-tcp-and-raw-fix-for-ip_route_me_harder.patch: netfilter: TCP and raw fix for ip_route_me_harder. - patches.kernel.org/revert-sfc-use-write-combining-to-reduce-tx-latency-and-follow-ups.patch: Revert "sfc: Use write-combining to reduce TX latency" and follow-ups. - patches.kernel.org/scm-capture-the-full-credentials-of-the-scm-sender.patch: scm: Capture the full credentials of the scm sender. - patches.kernel.org/tcp-fix-validation-of-d-sack.patch: tcp: fix validation of D-SACK. - patches.kernel.org/tcp-initialize-variable-ecn_ok-in-syncookies-path.patch: tcp: initialize variable ecn_ok in syncookies path. - patches.kernel.org/tpm-call-tpm_transmit-with-correct-size.patch: TPM: Call tpm_transmit with correct size. - patches.kernel.org/tpm-zero-buffer-after-copying-to-userspace.patch: TPM: Zero buffer after copying to userspace. - patches.kernel.org/vlan-reset-headers-on-accel-emulation-path.patch: vlan: reset headers on accel emulation path. - patches.kernel.org/xfrm-perform-a-replay-check-after-return-from-async-codepaths.patch: xfrm: Perform a replay check after return from async codepaths. - patches.kernel.org/zorro-defer-device_register-until-all-devices-have-been-identified.patch: zorro: Defer device_register() until all devices have been identified. - patches.arch/s390-32-01-qdio_shared_dsci_race: Delete. - patches.drivers/USB3-0103-ehci-refactor-pci-quirk-to-use-standard-dmi_check_system-met.patch: Delete. - patches.drivers/USB3-0104-ehci-add-pci-quirk-for-Ordissimo-and-RM-Slate-100-too.patch: Delete. - patches.drivers/USB3-0113-USB-PL2303-correctly-handle-baudrates-above-115200.patch: Delete. - patches.drivers/USB3-0127-ASIX-Add-AX88772B-USB-ID.patch: Delete. - patches.drivers/USB3-0134-cdc_ncm-fix-endianness-problem.patch: Delete. - patches.drivers/fcoe-0001-libfc-Enhancement-to-RPORT-state-machine-app.patch: Delete. - patches.drivers/fcoe-0004-fcoe-Unable-to-select-the-exchangeID-from-of.patch: Delete. - patches.drivers/mpt2sas-Added-DID_NO_CONNECT-return-when-dri.patch: Delete. - patches.drivers/mpt2sas-Adding-support-for-customer-specific.patch: Delete. - patches.drivers/tg3-add-5719-and-5720-to-eee_cap-list: Delete. - patches.drivers/tg3-fix-int-selftest-for-recent-devices: Delete. - patches.fixes/iscsi_tcp-fix-locking-around-iscsi-sk-user-data.patch: Delete. - patches.fixes/mqueue-fix-mq_open-return-value.patch: Delete. - patches.fixes/mqueue-refactor-failure-handling.patch: Delete. - patches.fixes/tg3-Fix-io-failures-after-chip-reset.patch: Delete. - patches.fixes/writeback-introduce-.tagged_writepages-for-the-WB_SY.patch: Delete. - patches.fixes/writeback-update-dirtied_when-for-synced-inode-to-pr.patch: Delete. - patches.suse/intel-perf-add-model-45.patch: Delete.- patches.suse/staging-hv-pata_piix-ignore-disks.patch: Reduce patch size.- patches.suse/mkinitrd-scsi_host_template-proc_name.patch: remove duplicate entry in drivers/scsi/eata_pio.c- patches.suse/staging-hv-bind-hv_blkkvsc-to-hv_storvsc.patch: remove unused alias from sles11sp2 betas and keep only hv_blkvsc- patches.suse/btrfs-0006-fix-error-check-of-btrfs_lookup_dentry.patch: Refresh. - patches.suse/btrfs-0904-fix-how-we-mount-subvol-whatever.patch: Refresh. - patches.suse/btrfs-0929-make-sure-to-unset-trans-block_rsv-before-runn.patch: Btrfs: make sure to unset trans->block_rsv before running delayed refs (FATE#306586). - patches.suse/btrfs-0930-delay-iput-when-deleting-a-block-group.patch: Btrfs: delay iput when deleting a block group (FATE#306586). - patches.suse/btrfs-0931-use-the-inode-s-mapping-mask-for-allocating-pa.patch: Btrfs: use the inode's mapping mask for allocating pages (FATE#306586). - patches.suse/btrfs-0932-fix-orphan-cleanup-regression.patch: Btrfs: fix orphan cleanup regression (FATE#306586). - patches.suse/fs-fix-how-we-clear-DCACHE_NEED_LOOKUP.patch: Refresh. - patches.suse/btrfs-0930-make-sure-to-unset-trans-block_rsv-before-runn.patch: Delete. - patches.suse/btrfs-0931-delay-iput-when-deleting-a-block-group.patch: Delete. - patches.suse/btrfs-0933-fix-orphan-cleanup-regression.patch: Delete.- patches.arch/001-efi_pstore_fixes.patch: efi: Add support for using efivars as a pstore backend (bnc#718551). - patches.arch/002-efi_pstore_fixes.patch: efivars: String functions (bnc#718551). - patches.arch/003-efi_pstore_fixes.patch: efivars: introduce utf16_strncmp (bnc#718551). - patches.arch/004-efi_pstore_fixes.patch: efivars: Use string functions in pstore_write (bnc#718551). - patches.arch/005-efi_pstore_fixes.patch: efivars: Introduce PSTORE_EFI_ATTRIBUTES (bnc#718551). - patches.arch/006-efi_pstore_fixes.patch: efivars: fix warnings when CONFIG_PSTORE=n (bnc#718551).- Update config files: disable KDB on x86_32 before it gets fixed there.- rpm/kernel-binary.spec.in: Remove forgotten backslash.- Update config files. - patches.suse/kdb-fix-cpumask-usage.patch: Refresh. - patches.suse/kdb-v4.4-3.1-common-1: kdb-v4.4-2.6.32-common-3 (FATE#303971). - patches.suse/kdb-v4.4-3.1-ia64-1: kdb-v4.4-2.6.32-common-3 (FATE#303971). - patches.suse/kdb-v4.4-3.1-x86-1: kdb-v4.4-2.6.32-common-3 (FATE#303971). - patches.suse/perfmon2.patch: Refresh. - patches.suse/stack-unwind: Refresh. - patches.xen/xen3-fixup-common: Refresh. - patches.xen/xen3-patch-2.6.24: Refresh. - patches.xen/xen3-patch-2.6.27: Refresh. - patches.xen/xen3-patch-2.6.28: Refresh. - patches.xen/xen3-patch-2.6.33: Refresh. - patches.fixes/kdb-no-printk-logging.patch: Delete. - patches.suse/kdb-bt-with-pt-regs.patch: Delete. - patches.suse/kdb-build-fixes: Delete. - patches.suse/kdb-common: Delete. - patches.suse/kdb-fix-incomplete-backtrace.patch: Delete. - patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: Delete. - patches.suse/kdb-fix-the-multi-word-nop-instructions-in-the-disassembler: Delete. - patches.suse/kdb-fix-uhci-build-issues.patch: Delete. - patches.suse/kdb-handle-nonexistance-keyboard-controller: Delete. - patches.suse/kdb-ia64: Delete. - patches.suse/kdb-usb-rework: Delete. - patches.suse/kdb-x86: Delete. - patches.suse/kdb-x86-backtrace-code-to-use-the-in-kernel-show_stack-function: Delete. - patches.suse/kdb-x86-build-fixes: Delete. - patches.suse/kdb_fix_ia64_build.patch: Delete. - patches.suse/mm-change-anon_vma_linking-for-scalability-kdb.patch: Delete. - patches.suse/x86-add-kdb-support-for-unknown_nmi_error-handler.patch: Delete. - patches.suse/x86-uv-kdb-support-for-uv-nmi-handler.patch: Delete.- patches.drivers/bnx2x-advance-version.patch: bnx2x: advance version (bnc#698050, fate#311461).- Update Xen patches to c/s 1105. - patches.xen/xen-pci-multi-segment: pass PCI segment information to Xen. - patches.xen/xen3-x86_amd_interlagos_mem_alignment_perf_improve_2_4.patch: x86: Add a BSP cpu_dev helper (bnc#711285). - patches.xen/xen-x86-mmcfg-ACPI-reserved: Delete (merged into other patches).- patches.arch/x86-fix-S4-regression: x86: Fix S4 regression (bnc#714605).- patches.arch/x86-Fix-pointer-dereference-before-call-to-pcie_bus_configure_settings.patch: x86: Fix pointer dereference before call to pcie_bus_configure_settings (bnc#717372).- patches.arch/x86-efi-use-old-memmap.patch: x86: Fix efi boot breakage on UV (bnc#718165).- patches.drivers/bnx2x-add-new-PHY-BCM54616: bnx2x: Add new PHY BCM54616 (bnc#698050, fate#311461).- patches.suse/btrfs-0006-fix-error-check-of-btrfs_lookup_dentry.patch: Refresh. - patches.suse/btrfs-0098-fix-d_off-in-the-first-dirent.patch: btrfs: fix d_off in the first dirent (FATE#306586). - patches.suse/btrfs-0099-fix-pages-truncation-in-btrfs_ioctl_clone.patch: Btrfs: fix pages truncation in btrfs_ioctl_clone() (FATE#306586). - patches.suse/btrfs-0100-don-t-make-a-file-partly-checksummed-through-f.patch: Btrfs: don't make a file partly checksummed through file clone (FATE#306586). - patches.suse/btrfs-0101-don-t-change-inode-flag-of-the-dest-clone-file.patch: Btrfs: don't change inode flag of the dest clone file (FATE#306586). - patches.suse/btrfs-0102-Fix-lseek-return-value-for-error.patch: BTRFS: Fix lseek return value for error (FATE#306586). - patches.suse/btrfs-0103-only-clear-the-need-lookup-flag-after-the-dent.patch: Btrfs: only clear the need lookup flag after the dentry is setup (FATE#306586). - patches.suse/btrfs-0104-reserve-sufficient-space-for-ioctl-clone.patch: Btrfs: reserve sufficient space for ioctl clone (FATE#306586). - patches.suse/btrfs-0930-make-sure-to-unset-trans-block_rsv-before-runn.patch: Btrfs: make sure to unset trans->block_rsv before running delayed refs (FATE#306586). - patches.suse/btrfs-0931-delay-iput-when-deleting-a-block-group.patch: Btrfs: delay iput when deleting a block group (FATE#306586). - patches.suse/btrfs-0932-use-the-inode-s-mapping-mask-for-allocating-pa.patch: Btrfs: use the inode's mapping mask for allocating pages (FATE#306586). - patches.suse/btrfs-0933-fix-orphan-cleanup-regression.patch: Btrfs: fix orphan cleanup regression (FATE#306586). - patches.suse/btrfs-8014-trivial-fix-a-potential-memory-leak-in-btrfs_p.patch: Refresh. - patches.suse/btrfs-push-up-unlock_extent-errors-to-callers: Refresh. - patches.suse/btrfs-8002-Free-inode-mutex-on-lseek-error.patch: Delete. - patches.suse/btrfs-8015-don-t-change-inode-flag-of-the-dest-clone-file.patch: Delete. - patches.suse/btrfs-8016-fix-d_off-in-the-first-dirent.patch: Delete. - patches.suse/btrfs-8019-fix-pages-truncation-in-clone.patch: Delete. - patches.suse/btrfs-reserve-sufficient-space-for-ioctl-clone.patch: Delete.- supported.conf: Added /net/rds- supported.conf: Match whole unsupported directories by wildcards, remove drivers/mtd/devices/ps3vram and dependencies.- patches.suse/supported-flag-wildcards: Match also subdirectories with '*'. - supported.conf: Mark Documentation/* and drivers/staging/* as unsupported, except for drivers/stating/hv.- rpm/split-modules: Print the full path for modules missing in supported.conf.- supported.conf: Fix stray line making net/atm/atm suddenly unsupported.- Update config files. - patches.trace/utrace-core: Delete. - patches.trace/utrace-core.patch: update utrace core for 3.0- more 3.0.5 patches - patches.kernel.org/arm-dove-fix-second-spi-initialization-call.patch: ARM: Dove: fix second SPI initialization call. - patches.kernel.org/asix-add-ax88772b-usb-id.patch: ASIX: Add AX88772B USB ID. - patches.kernel.org/b43-fix-beacon-problem-in-ad-hoc-mode.patch: b43: Fix beacon problem in ad-hoc mode. - patches.kernel.org/blk-cgroup-be-able-to-remove-the-record-of-unplugged-device.patch: blk-cgroup: be able to remove the record of unplugged device. - patches.kernel.org/break-out-numa_maps-gather_pte_stats-checks.patch: break out numa_maps gather_pte_stats() checks. - patches.kernel.org/cdc_ncm-fix-endianness-problem.patch: cdc_ncm: fix endianness problem. - patches.kernel.org/ehci-add-pci-quirk-for-ordissimo-and-rm-slate-100-too.patch: ehci: add pci quirk for Ordissimo and RM Slate 100 too. - patches.kernel.org/ehci-refactor-pci-quirk-to-use-standard-dmi_check_system-method.patch: ehci: refactor pci quirk to use standard dmi_check_system method. - patches.kernel.org/fcoe-unable-to-select-the-exchangeid-from-offload-pool-for-storage-targets.patch: fcoe: Unable to select the exchangeID from offload pool for storage targets. - patches.kernel.org/floppy-use-del_timer_sync-in-init-cleanup.patch: floppy: use del_timer_sync() in init cleanup. - patches.kernel.org/ipc-mqueue.c-fix-mq_open-return-value.patch: ipc/mqueue.c: fix mq_open() return value. - patches.kernel.org/ipc-mqueue.c-refactor-failure-handling.patch: ipc/mqueue.c: refactor failure handling. - patches.kernel.org/iscsi_tcp-fix-locking-around-iscsi-sk-user-data.patch: iscsi_tcp: fix locking around iscsi sk user data. - patches.kernel.org/iwlagn-workaround-bug-crashing-some-aps.patch: iwlagn: workaround bug crashing some APs. - patches.kernel.org/ixgbe-fix-possible-null-buffer-error.patch: ixgbe: fix possible null buffer error. - patches.kernel.org/libfc-enhancement-to-rport-state-machine-applicable-only-for-vn2vn-mode.patch: libfc: Enhancement to RPORT state machine applicable only for VN2VN mode. - patches.kernel.org/make-proc-pid-numa_maps-gather_stats-take-variable-page.patch: make /proc/$pid/numa_maps gather_stats() take variable page size. - patches.kernel.org/mpt2sas-added-did_no_connect-return-when-driver-remove-and-avoid-shutdown-call.patch: mpt2sas: Added DID_NO_CONNECT return when driver remove and avoid shutdown call. - patches.kernel.org/mpt2sas-adding-support-for-customer-specific-branding.patch: mpt2sas: Adding support for customer specific branding. - patches.kernel.org/perf-x86-add-model-45-sandybridge-support.patch: perf, x86: Add model 45 SandyBridge support. - patches.kernel.org/qdio-clear-shared-dsci-before-scheduling-the-queue-handler.patch: qdio: clear shared DSCI before scheduling the queue handler. - patches.kernel.org/rt2800pci-fix-compiler-error-on-powerpc.patch: rt2800pci: Fix compiler error on PowerPC. - patches.kernel.org/rtl2800usb-fix-incorrect-storage-of-mac-address-on.patch: rtl2800usb: Fix incorrect storage of MAC address on big-endian platforms. - patches.kernel.org/teach-proc-pid-numa_maps-about-transparent-hugepages.patch: teach /proc/$pid/numa_maps about transparent hugepages. - patches.kernel.org/tg3-add-5719-and-5720-to-eee_cap-list.patch: tg3: Add 5719 and 5720 to EEE_CAP list. - patches.kernel.org/tg3-fix-int-selftest-for-recent-devices.patch: tg3: Fix int selftest for recent devices. - patches.kernel.org/tg3-fix-io-failures-after-chip-reset.patch: tg3: Fix io failures after chip reset. - patches.kernel.org/usb-pl2303-correctly-handle-baudrates-above-115200.patch: USB: PL2303: correctly handle baudrates above 115200. - patches.kernel.org/wireless-reset-beacon_found-while-updating-regulatory.patch: wireless: Reset beacon_found while updating regulatory. - patches.kernel.org/writeback-introduce-.tagged_writepages-for-the-wb_sync_none-sync-stage.patch: writeback: introduce .tagged_writepages for the WB_SYNC_NONE sync stage. - patches.kernel.org/writeback-update-dirtied_when-for-synced-inode-to-prevent-livelock.patch: writeback: update dirtied_when for synced inode to prevent livelock. - patches.kernel.org/xen-e820-if-there-is-no-dom0_mem-don-t-tweak-extra_pages.patch: xen/e820: if there is no dom0_mem=, don't tweak extra_pages. - patches.kernel.org/xen-use-maximum-reservation-to-limit-amount-of-usable-ram.patch: xen: use maximum reservation to limit amount of usable RAM. - patches.kernel.org/xz-fix-incorrect-xz_buf_error.patch: XZ: Fix incorrect XZ_BUF_ERROR.- patches.drivers/pci-set-pci-e-max-payload-size-on-fabric.patch: Delete. not needed anymore- patches.fixes/ccwgroup-fix-availability-of-attributes.patch: ccwgroup: fix availability of attributes (bnc#717797).- patches.suse/mkinitrd-scsi_host_template-proc_name.patch: fill scsi_host_template.proc_name and add runtime warning if its missing (bnc#718366).- patches.suse/trace-open.patch: Delete. It was for preload only and is no longer needed in our trees.- series.conf: When one adds patches, one should make sure the series.conf file is updated as well. Fixed git-id:f6f28136 (bnc#706587)- Add support for wildcards in supported.conf: - rpm/kernel-binary.spec.in: Generate Module.supported with all lines from supported conf, unsupported modules are marked as "no" - rpm/split-modules: Use the supported flag in modules, instead of parsing the Module.supported file and report modules that have no supported marking. - rpm/check-supported-list: Delete, this is done by split-modules now.- patches.drivers/intel-panther-point-pch-deviceid-fix.patch: New RAID DeviceID for Intel Panther Point PCH (bnc#682755 fate#311837).- supported.conf: Remove the kernel/ prefix from module paths.- patches.drivers/hpwdt_add_next_gen_HP_servers.patch: watchdog: hpwdt: add next gen HP servers (bnc#718936).- patches.drivers/iwlwifi-sp1-compatible-options: Add SP1-compatible module options to IWLWIFI drivers (bnc#719408).- Update config files: Enable CONFIG_IWLWIFI_LEGACY_DEBUG=y to be compatible with SP1- patches.drivers/0001-btusb-add-device-entry-for-Broadcom-SoftSailing.patch: btusb: add device entry for Broadcom SoftSailing (bnc#719296).- patches.drivers/snd-hdspm-compat-options: Add dummy compatible options to snd-hdspm driver (bnc#719408).- patches.rpmify/fix-WARN_RATELIMIT-for-non-CONFIG_BUG.patch: Delete, it's no longer needed.- patches.kernel.org/qla2xxx-correct-inadvertent-loop-state-transitions-during-port-update-handling.patch: Refresh.- patches.kernel.org/iwlagn-fix-command-queue-timeout.patch: Refresh.- More 3.0.5 patches: - patches.drivers/hpsa-update-to-hp-version.patch: Refresh. - patches.kernel.org/acpica-acpi_max_sleep-should-be-2-sec-not-20.patch: acpica: ACPI_MAX_SLEEP should be 2 sec, not 20. - patches.kernel.org/alsa-hda-cirrus-fix-surround-speaker-volume-control-name.patch: ALSA: HDA: Cirrus - fix "Surround Speaker" volume control name. - patches.kernel.org/alsa-hda-realtek-fix-auto-mute-with-hp-lo-configuration.patch: ALSA: hda/realtek - Fix auto-mute with HP+LO configuration. - patches.kernel.org/alsa-pcm-fix-race-condition-in-wait_for_avail.patch: ALSA: pcm - fix race condition in wait_for_avail(). - patches.kernel.org/asoc-blackfin-bf5xx-ad193x-fix-codec-device-name.patch: ASoC: Blackfin: bf5xx-ad193x: Fix codec device name. - patches.kernel.org/asoc-fix-reporting-of-partial-jack-updates.patch: ASoC: Fix reporting of partial jack updates. - patches.kernel.org/asoc-mpc5200-replace-of_device-with-platform_device.patch: ASoC: MPC5200: replace of_device with platform_device. - patches.kernel.org/ath9k_hw-fix-calibration-on-5-ghz.patch: ath9k_hw: fix calibration on 5 ghz. - patches.kernel.org/cifs-fix-possible-memory-corruption-in-cifsfindnext.patch: cifs: fix possible memory corruption in CIFSFindNext. - patches.kernel.org/drivers-cpufreq-pcc-cpufreq.c-avoid-null-pointer-dereference.patch: drivers/cpufreq/pcc-cpufreq.c: avoid NULL pointer dereference. - patches.kernel.org/drivers-leds-ledtrig-timer.c-fix-broken-sysfs-delay-handling.patch: drivers/leds/ledtrig-timer.c: fix broken sysfs delay handling. - patches.kernel.org/drm-radeon-don-t-read-from-cp-ring-write-pointer-registers.patch: drm/radeon: Don't read from CP ring write pointer registers. - patches.kernel.org/drm-radeon-kms-fix-typo-in-r100_blit_copy.patch: drm/radeon/kms: fix typo in r100_blit_copy. - patches.kernel.org/drm-radeon-kms-make-gpu-cpu-page-size-handling-consistent-in-blit-code-v2.patch: drm/radeon/kms: Make GPU/CPU page size handling consistent in blit code (v2). - patches.kernel.org/e1000-fix-driver-to-be-used-on-pa-risc-c8000-workstations.patch: e1000: Fix driver to be used on PA RISC C8000 workstations. - patches.kernel.org/firewire-ohci-add-no-msi-quirk-for-o2micro-controller.patch: firewire: ohci: add no MSI quirk for O2Micro controller. - patches.kernel.org/fix-the-conflict-between-rwpidforward-and-rw-mount-options.patch: Fix the conflict between rwpidforward and rw mount options. - patches.kernel.org/genirq-make-irq_shutdown-symmetric-vs.-irq_startup-again.patch: genirq: Make irq_shutdown() symmetric vs. irq_startup again. - patches.kernel.org/hpsa-fix-physical-device-lun-and-target-numbering-problem.patch: hpsa: fix physical device lun and target numbering problem. - patches.kernel.org/hpsa-fix-problem-that-obdr-devices-are-not-detected.patch: hpsa: fix problem that OBDR devices are not detected. - patches.kernel.org/ibmveth-checksum-offload-is-always-disabled.patch: ibmveth: Checksum offload is always disabled. - patches.kernel.org/ibmveth-fix-dma-unmap-error.patch: ibmveth: Fix DMA unmap error. - patches.kernel.org/ibmveth-fix-issue-with-dma-mapping-failure.patch: ibmveth: Fix issue with DMA mapping failure. - patches.kernel.org/isci-fix-32-bit-operation-when-config_highmem64g-n.patch: isci: fix 32-bit operation when CONFIG_HIGHMEM64G=n. - patches.kernel.org/isci-fix-sata-response-handling.patch: isci: fix sata response handling. - patches.kernel.org/iwlagn-fix-command-queue-timeout.patch: iwlagn: fix command queue timeout. - patches.kernel.org/iwlegacy-fix-bug_on-info-control.rates.idx-0.patch: iwlegacy: fix BUG_ON(info->control.rates.idx < 0). - patches.kernel.org/mac80211-fix-missing-sta_lock-in-__sta_info_destroy.patch: mac80211: fix missing sta_lock in __sta_info_destroy. - patches.kernel.org/mfd-fix-initialisation-of-tps65910-interrupts.patch: mfd: Fix initialisation of tps65910 interrupts. - patches.kernel.org/mfd-fix-value-of-wm8994_configure_gpio.patch: mfd: Fix value of WM8994_CONFIGURE_GPIO. - patches.kernel.org/mfd-make-omap-usb-host-tll-mode-work-again.patch: mfd: Make omap-usb-host TLL mode work again. - patches.kernel.org/mm-sync-vmalloc-address-space-page-tables-in-alloc_vm_area.patch: mm: sync vmalloc address space page tables in alloc_vm_area(). - patches.kernel.org/qla2xxx-correct-inadvertent-loop-state-transitions-during-port-update-handling.patch: qla2xxx: Correct inadvertent loop state transitions during port-update handling. - patches.kernel.org/restore-pinning-the-victim-dentry-in-vfs_rmdir-vfs_rename_dir.patch: restore pinning the victim dentry in vfs_rmdir()/vfs_rename_dir(). - patches.kernel.org/rtlwifi-fix-problem-when-switching-connections.patch: rtlwifi: Fix problem when switching connections. - patches.kernel.org/rtlwifi-rtl8192su-fix-problem-connecting-to-ht-enabled-ap.patch: rtlwifi: rtl8192su: Fix problem connecting to HT-enabled AP. - patches.kernel.org/usb-xhci-set-change-bit-when-warm-reset-change-is-set.patch: USB: xhci: Set change bit when warm reset change is set. - patches.kernel.org/vfs-automount-should-ignore-lookup_follow.patch: vfs: automount should ignore LOOKUP_FOLLOW. - patches.kernel.org/workqueue-lock-cwq-access-in-drain_workqueue.patch: workqueue: lock cwq access in drain_workqueue. - patches.kernel.org/x86-iommu-mark-dmar-irq-as-non-threaded.patch: x86, iommu: Mark DMAR IRQ as non-threaded. - patches.drivers/cpufreq_pcc_sanity_check_acpi_processor_data.patch: Delete. - patches.fixes/0001-isci-fix-sata-response-handling.patch: Delete. - patches.fixes/0002-isci-fix-32-bit-operation-when-CONFIG_HIGHMEM64G-n.patch: Delete. - patches.fixes/cifs-fix-possible-memory-corruption-in-CIFSFindNext.patch: Delete.- patches.suse/supported-flag-underscores: Mark underscores() as static.- patches.suse/supported-flag-wildcards: modpost: Allow wildcards in the Module.supported file.- patches.suse/supported-flag-underscores: modpost: Fix matching of dashes and underscores in Module.supported (bnc#719090).- patches.drivers/ixgbe-Fix-FCOE-memory-leak-for-DDP-packets.patch: ixgbe: Fix FCOE memory leak for DDP packets (bnc#719029). - patches.drivers/ixgbe-setup-per-CPU-PCI-pool-for-FCoE-DDP.patch: ixgbe: setup per CPU PCI pool for FCoE DDP (bnc#719029).- More 3.0.5 patches: - patches.kernel.org/fs-9p-add-os-dependent-open-flags-in-9p-protocol.patch: fs/9p: Add OS dependent open flags in 9p protocol. - patches.kernel.org/fs-9p-use-protocol-defined-value-for-lock-getlock-type-field.patch: Refresh. - patches.kernel.org/pci-export-pcie_bus_configure_settings-symbol.patch: PCI: export pcie_bus_configure_settings symbol. - patches.kernel.org/pci-remove-mrrs-modification-from-mps-setting-code.patch: PCI: Remove MRRS modification from MPS setting code. - patches.kernel.org/pci-set-pci-e-max-payload-size-on-fabric.patch: PCI: Set PCI-E Max Payload Size on fabric.- Update config files: Enabled PNFS support (FATE#310250).- patches.drivers/tg3-add-5719-and-5720-to-eee_cap-list: tg3: Add 5719 and 5720 to EEE_CAP list (bnc#709075). - patches.drivers/tg3-add-function-status-reporting: tg3: Add function status reporting (bnc#709075). - patches.drivers/tg3-add-partial-fragment-unmapping-code: tg3: Add partial fragment unmapping code (bnc#709075). - patches.drivers/tg3-add-tx-bd-budgeting-code: tg3: Add tx BD budgeting code (bnc#709075). - patches.drivers/tg3-break-larger-frags-into-4k-chunks-for-5719: tg3: Break larger frags into 4k chunks for 5719 (bnc#709075). - patches.drivers/tg3-check-transitions-to-d0-power-state: tg3: Check transitions to D0 power state (bnc#709075). - patches.drivers/tg3-consolidate-code-that-calls-tg3_tx_set_bd: tg3: Consolidate code that calls tg3_tx_set_bd() (bnc#709075). - patches.drivers/tg3-create-critical-section-around-gpio-toggling: tg3: Create critical section around GPIO toggling (bnc#709075). - patches.drivers/tg3-detect-ape-enabled-devs-earlier: tg3: Detect APE enabled devs earlier (bnc#709075). - patches.drivers/tg3-determine-pci-function-number-in-one-place: tg3: Determine PCI function number in one place (bnc#709075). - patches.drivers/tg3-fix-int-selftest-for-recent-devices: tg3: Fix int selftest for recent devices (bnc#709075). - patches.drivers/tg3-fix-link-down-notify-failure-when-eee-disabled: tg3: Fix link down notify failure when EEE disabled (bnc#709075). - patches.drivers/tg3-fix-link-flap-at-100mbps-with-eee-enabled: tg3: Fix link flap at 100Mbps with EEE enabled (bnc#709075). - patches.drivers/tg3-fix-nvram-selftest-failures-for-5720-devs: tg3: Fix NVRAM selftest failures for 5720 devs (bnc#709075). - patches.drivers/tg3-fix-race-in-transmit-time-stamping: tg3: fix race in transmit time stamping (bnc#709075). - patches.drivers/tg3-fix-rss-indirection-table-distribution: tg3: Fix RSS indirection table distribution (bnc#709075). - patches.drivers/tg3-generalize-tg3_skb_error_unmap: tg3: Generalize tg3_skb_error_unmap() (bnc#709075). - patches.drivers/tg3-match-power-source-to-driver-state: tg3: Match power source to driver state (bnc#709075). - patches.drivers/tg3-move-power-state-transitions-to-init_one: tg3: Move power state transitions to init_one (bnc#709075). - patches.drivers/tg3-reintroduce-tg3_tx_ring_info: tg3: Reintroduce tg3_tx_ring_info (bnc#709075). - patches.drivers/tg3-remove-5719-jumbo-frames-and-tso-blocks: tg3: Remove 5719 jumbo frames and TSO blocks (bnc#709075). - patches.drivers/tg3-remove-short-dma-check-for-1st-fragment: tg3: Remove short DMA check for 1st fragment (bnc#709075). - patches.drivers/tg3-remove-unnecessary-read-of-pci_cap_id_exp: tg3: remove unnecessary read of PCI_CAP_ID_EXP. - patches.drivers/tg3-return-size-from-tg3_vpd_readblock: tg3: Return size from tg3_vpd_readblock() (bnc#709075). - patches.drivers/tg3-simplify-tx-bd-assignments: tg3: Simplify tx bd assignments (bnc#709075). - patches.drivers/tg3-workaround-tagged-status-update-bug: tg3: Workaround tagged status update bug (bnc#697783, FATE#311457). - patches.drivers/0183-tg3-Workaround-tagged-status-update-bug.patch: Delete.- patches.drivers/bnx2x-add-autogreeen-support: bnx2x: Add autogrEEEn support (bnc#709064). - patches.drivers/bnx2x-add-cl37-bam-for-warpcore: bnx2x: Add CL37 BAM for Warpcore (bnc#709064). - patches.drivers/bnx2x-add-dcbnl-notification: bnx2x: Add dcbnl notification (bnc#709064). - patches.drivers/bnx2x-add-missing-command-in-error-handling-flow: bnx2x: add missing command in error handling flow (bnc#709064). - patches.drivers/bnx2x-change-bcm54616s-to-bcm54618se: bnx2x: Change BCM54616S to BCM54618SE (bnc#709064). - patches.drivers/bnx2x-clear-mdio-access-warning-during-first-driver-load: bnx2x: Clear MDIO access warning during first driver load (bnc#709064). - patches.drivers/bnx2x-count-statistic-ramrods-on-eq-to-prevent-mc-assert: bnx2x: count statistic ramrods on EQ to prevent MC assert (bnc#709064). - patches.drivers/bnx2x-dcb-rework: bnx2x: DCB rework (bnc#709064). - patches.drivers/bnx2x-dcb-send-all-unmapped-priorities-to-same-cos-as-l2: bnx2x: dcb - send all unmapped priorities to same COS as L2 (bnc#709064). - patches.drivers/bnx2x-decrease-print-level-to-debug: bnx2x: decrease print level to debug (bnc#709064). - patches.drivers/bnx2x-disable-dcb-on-578xx-since-not-supported-yet: bnx2x: disable dcb on 578xx since not supported yet (bnc#709064). - patches.drivers/bnx2x-disable-fcoe-for-578xx-devices-since-not-yet-supported: bnx2x: disable FCoE for 578xx devices since not yet supported (bnc#709064). - patches.drivers/bnx2x-disable-loacal-bh-when-scheduling-fcoe-napi: bnx2x: disable loacal BH when scheduling FCOE napi (bnc#709064). - patches.drivers/bnx2x-don-t-access-removed-registers-on-57712-and-above: bnx2x: don't access removed registers on 57712 and above (bnc#709064). - patches.drivers/bnx2x-don-t-reset-device-while-reading-its-configuration: bnx2x: don't reset device while reading its configuration (bnc#709064). - patches.drivers/bnx2x-enable-fec-for-57810-kr: bnx2x: Enable FEC for 57810-KR (bnc#709064). - patches.drivers/bnx2x-enable-internal-target-read-for-57712-and-up-only: bnx2x: enable internal target-read for 57712 and up only (bnc#709064). - patches.drivers/bnx2x-fix-578xx-link-led: bnx2x: Fix 578xx link LED (bnc#709064). - patches.drivers/bnx2x-fix-bcm54618se-invalid-link-indication: bnx2x: Fix BCM54618se invalid link indication (bnc#709064). - patches.drivers/bnx2x-fix-bcm578xx-b0-mdio-access: bnx2x: Fix BCM578xx-B0 MDIO access (bnc#709064). - patches.drivers/bnx2x-fix-bcm578xx-mac-test: bnx2x: Fix BCM578xx MAC test (bnc#709064). - patches.drivers/bnx2x-fix-bcm84833-initialization: bnx2x: Fix BCM84833 initialization (bnc#709064). - patches.drivers/bnx2x-fix-bcm84833-link: bnx2x: Fix BCM84833 link (bnc#709064). - patches.drivers/bnx2x-fix-bnx2x_stop_on_error-flow-in-bnx2x_sp_rtnl_task: bnx2x: fix bnx2x_stop_on_error flow in bnx2x_sp_rtnl_task (bnc#709064). - patches.drivers/bnx2x-fix-brb-thresholds-for-dropless_fc-mode: bnx2x: fix BRB thresholds for dropless_fc mode (bnc#709064). - patches.drivers/bnx2x-fix-chip-hanging-due-to-tx-pipe-stall: bnx2x: Fix chip hanging due to TX pipe stall (bnc#709064). - patches.drivers/bnx2x-fix-compilation-when-cnic-is-not-selected-in-config: bnx2x: Fix compilation when CNIC is not selected in config (bnc#709064). - patches.drivers/bnx2x-fix-ethtool-advertisement: bnx2x: Fix ethtool advertisement (bnc#709064). - patches.drivers/bnx2x-fix-ets-bandwidth: bnx2x: Fix ETS bandwidth (bnc#709064). - patches.drivers/bnx2x-fix-false-link-indication-at-link-partner-when-dac-is-used: bnx2x: Fix false link indication at link partner when DAC is used (bnc#709064). - patches.drivers/bnx2x-fix-for-a-host-coalescing-bug-which-impared-latency: bnx2x: Fix for a host coalescing bug which impared latency (bnc#709064). - patches.drivers/bnx2x-fix-led-behavior: bnx2x: Fix LED behavior (bnc#709064). - patches.drivers/bnx2x-fix-link-issue-with-dac-over-578xx: bnx2x: Fix link issue with DAC over 578xx (bnc#709064). - patches.drivers/bnx2x-fix-loopback-for-non-10g-link: bnx2x: fix loopback for non 10G link (bnc#709064). - patches.drivers/bnx2x-fix-mb-index-for-4-port-devices: bnx2x: fix MB index for 4-port devices (bnc#709064). - patches.drivers/bnx2x-fix-memory-barriers: bnx2x: fix memory barriers (bnc#709064). - patches.drivers/bnx2x-fix-mf-for-4-port-devices: bnx2x: fix MF for 4-port devices (bnc#709064). - patches.drivers/bnx2x-fix-missing-pause-on-for-578xx: bnx2x: Fix missing pause on for 578xx (bnc#709064). - patches.drivers/bnx2x-fix-remote-fault-handling: bnx2x: Fix remote fault handling (bnc#709064). - patches.drivers/bnx2x-fix-rx-ring-size-report: bnx2x: fix rx ring size report (bnc#709064). - patches.drivers/bnx2x-fix-select_queue-when-fcoe-is-disabled: bnx2x: fix select_queue when FCoE is disabled (bnc#709064). - patches.drivers/bnx2x-fix-warning-message-during-57712-8727-initialization: bnx2x: Fix warning message during 57712/8727 initialization (bnc#709064). - patches.drivers/bnx2x-fix-xmac-loopback-test: bnx2x: Fix XMAC loopback test (bnc#709064). - patches.drivers/bnx2x-fixes-for-848x3-phys: bnx2x: fixes for 848x3 phys (bnc#709064). - patches.drivers/bnx2x-init-fcoe-fp-only-once: bnx2x: init FCOE FP only once (bnc#709064). - patches.drivers/bnx2x-init-fw_seq-after-undi_unload-is-done: bnx2x: init fw_seq after undi_unload is done (bnc#709064). - patches.drivers/bnx2x-pfc-fixes: bnx2x: PFC fixes (bnc#709064). - patches.drivers/bnx2x-prevent-race-between-undi_unload-and-load-flows: bnx2x: prevent race between undi_unload and load flows (bnc#709064). - patches.drivers/bnx2x-prevent-restarting-tx-during-bnx2x_nic_unload: bnx2x: Prevent restarting Tx during bnx2x_nic_unload (bnc#709064). - patches.drivers/bnx2x-properly-clean-indirect-addresses: bnx2x: properly clean indirect addresses (bnc#709064). - patches.drivers/bnx2x-remove-fiber-remote-fault-detection: bnx2x: Remove fiber remote fault detection (bnc#709064). - patches.drivers/bnx2x-remove-unnecessary-dma_sync: bnx2x: remove unnecessary dma_sync (bnc#709064). - patches.drivers/bnx2x-reset-phy-due-to-fan-failure-for-578xx: bnx2x: Reset PHY due to fan failure for 578xx (bnc#709064). - patches.drivers/bnx2x-stop-tx-before-cnic_stop: bnx2x: stop tx before CNIC_STOP (bnc#709064). - patches.drivers/bnx2x-use-bnx2x_q_flg_tpa_ipv6-for-tpa-queue-configuration: bnx2x: use BNX2X_Q_FLG_TPA_IPV6 for TPA queue configuration (bnc#709064). - patches.drivers/bnx2x-use-correct-dma_sync-function: bnx2x: use correct dma_sync function (bnc#709064). - patches.drivers/bnx2x-use-pci_pcie_cap: bnx2x: use pci_pcie_cap() (bnc#709064). - patches.drivers/dcb-add-dcb_ieee_getapp_mask-for-drivers-to-query-app-settings: dcb: Add dcb_ieee_getapp_mask() for drivers to query APP settings. - patches.drivers/dcb-add-dcbx-capabilities-bitmask-to-the-get_ieee-response: dcb: Add DCBX capabilities bitmask to the get_ieee response. - patches.drivers/dcb-add-ieee_dcb_delapp-and-dcb-op-to-delete-app-entry: dcb: Add ieee_dcb_delapp() and dcb op to delete app entry. - patches.drivers/dcb-add-ieee_dcb_setapp-to-be-used-for-ieee-802-1qaz-app-data: dcb: Add ieee_dcb_setapp() to be used for IEEE 802.1Qaz APP data. - patches.drivers/dcb-add-missing-error-check-in-dcb_ieee_set: dcb: Add missing error check in dcb_ieee_set(). - patches.drivers/dcb-fix-return-type-on-dcb_setapp: dcb: fix return type on dcb_setapp(). - patches.drivers/dcb-use-nlmsg_free-instead-of-kfree: dcb: use nlmsg_free() instead of kfree(). - patches.drivers/dcbnl-add-cee-notification: dcbnl: Add CEE notification. - patches.drivers/dcbnl-aggregated-cee-get-operation: dcbnl: Aggregated CEE GET operation. - patches.drivers/dcbnl-unlock-on-an-error-path-in-dcbnl_cee_fill: dcbnl: unlock on an error path in dcbnl_cee_fill(). - patches.drivers/net-dcbnl-add-multicast-group-for-dcb: net: dcbnl, add multicast group for DCB. - patches.drivers/rtnetlink-compute-and-store-minimum-ifinfo-dump-size: rtnetlink: Compute and store minimum ifinfo dump size. - patches.suse/ipv6-dont-block-modules-that-depend-on-ipv6-when-blacklisted.patch: Refresh.- Update config files: Drop all remaining drivers related to Intel Moorestown or Medfield (MID) platforms. - supported.conf: Drop i2c-intel-mid, no longer built.- supported.conf: Fix a typo.- patches.drivers/bfa-0001-Introduced-generic-address-len-pair-to-r.patch: bfa: Introduced generic address len pair to represent DMA memory chunk (FATE#311450,bnc#689227). - patches.drivers/bfa-0002-Introduce-IOC-event-notification-mechani.patch: bfa: Introduce IOC event notification mechanism (FATE#311450,bnc#689227). - patches.drivers/bfa-0003-Add-pbc-port-disable-check-and-fix-LPS-m.patch: bfa: Add pbc port disable check and fix LPS message name (FATE#311450,bnc#689227). - patches.drivers/bfa-0004-Brocade-1860-Fabric-Adapter-Hardware-Ena.patch: bfa: Brocade-1860 Fabric Adapter Hardware Enablement (FATE#311450,bnc#689227). - patches.drivers/bfa-0005-Changes-to-support-vport-disable-and-ena.patch: bfa: Changes to support vport disable and enable operations (FATE#311450,bnc#689227). - patches.drivers/bfa-0006-IOC-and-PLL-init-changes-for-Brocade-186.patch: bfa: IOC and PLL init changes for Brocade-1860 Fabric Adapter (FATE#311450,bnc#689227). - patches.drivers/bfa-0007-Brocade-1860-Fabric-Adapter-16Gbs-suppor.patch: bfa: Brocade-1860 Fabric Adapter 16Gbs support and flash controller fixes (FATE#311450,bnc#689227). - patches.drivers/bfa-0008-FC-credit-recovery-and-misc-bug-fixes.patch: bfa: FC credit recovery and misc bug fixes (FATE#311450,bnc#689227). - patches.drivers/bfa-0009-Enhancement-for-fcpim-and-IO-tag-handlin.patch: bfa: Enhancement for fcpim and IO tag handling (FATE#311450,bnc#689227). - patches.drivers/bfa-0010-Driver-initialization-and-model-descript.patch: bfa: Driver initialization and model description fix (FATE#311450,bnc#689227). - patches.drivers/bfa-0011-Add-BSG-interface-to-support-ELS-CT-and.patch: bfa: Add BSG interface to support ELS, CT and vendor commands (FATE#311450,bnc#689227). - patches.drivers/bfa-0012-Update-the-driver-version-to-3.0.2.0.patch: bfa: Update the driver version to 3.0.2.0 (FATE#311450,bnc#689227). - patches.drivers/bfa-0013-Enable-ASIC-block-configuration-and-quer.patch: bfa: Enable ASIC block configuration and query (FATE#311450,bnc#689227). - patches.drivers/bfa-0014-IOC-bug-fixes.patch: bfa: IOC bug fixes (FATE#311450,bnc#689227). - patches.drivers/bfa-0015-Added-Fabric-Assigned-Address-FAA-suppo.patch: bfa: Added Fabric Assigned Address(FAA) support (FATE#311450,bnc#689227). - patches.drivers/bfa-0016-Brocade-1860-Fabric-Adapter-PLL-init-fix.patch: bfa: Brocade-1860 Fabric Adapter PLL init fixes (FATE#311450,bnc#689227). - patches.drivers/bfa-0017-Brocade-1860-Fabric-Adapter-vHBA-support.patch: bfa: Brocade-1860 Fabric Adapter vHBA support (FATE#311450,bnc#689227). - patches.drivers/bfa-0018-DMA-memory-allocation-enhancement.patch: bfa: DMA memory allocation enhancement (FATE#311450,bnc#689227). - patches.drivers/bfa-0019-FCS-bug-fixes.patch: bfa: FCS bug fixes (FATE#311450,bnc#689227). - patches.drivers/bfa-0020-Extend-BSG-interface.patch: bfa: Extend BSG interface (FATE#311450,bnc#689227). - patches.drivers/bfa-0021-Added-support-for-CEE-info-and-stats-que.patch: bfa: Added support for CEE info and stats query (FATE#311450,bnc#689227). - patches.drivers/bfa-0022-Added-support-to-obtain-SFP-info.patch: bfa: Added support to obtain SFP info (FATE#311450,bnc#689227). - patches.drivers/bfa-0023-Added-support-for-flash-configuration.patch: bfa: Added support for flash configuration (FATE#311450,bnc#689227). - patches.drivers/bfa-0024-Added-HBA-diagnostics-support.patch: bfa: Added HBA diagnostics support (FATE#311450,bnc#689227). - patches.drivers/bfa-0025-Added-support-to-query-PHY.patch: bfa: Added support to query PHY (FATE#311450,bnc#689227). - patches.drivers/bfa-0026-Driver-and-BSG-enhancements.patch: bfa: Driver and BSG enhancements (FATE#311450,bnc#689227). - patches.drivers/bfa-0027-Update-the-driver-version-to-3.0.2.1.patch: bfa: Update the driver version to 3.0.2.1 (FATE#311450,bnc#689227). - patches.drivers/bfa-0028-Add-FC-transport-based-Asynchronous-Even.patch: bfa: Add FC-transport based Asynchronous Event Notification support (FATE#311450,bnc#689227). - patches.drivers/bfa-0029-use-negative-error-return-values-in-all.patch: bfa: use negative error return values in all functions (FATE#311450,bnc#689227). - patches.drivers/bfa-0030-Update-RME-interrupt-handling.patch: bfa: Update RME interrupt handling (FATE#311450,bnc#689227). - patches.drivers/bfa-0031-Check-supported-speed-based-on-port-mode.patch: bfa: Check supported speed based on port mode (FATE#311450,bnc#689227). - patches.drivers/bfa-0032-Extend-BSG-to-support-more-user-commands.patch: bfa: Extend BSG to support more user commands (FATE#311450,bnc#689227). - patches.drivers/bfa-0033-Add-support-for-IO-profiling.patch: bfa: Add support for IO profiling (FATE#311450,bnc#689227). - patches.drivers/bfa-0034-Added-support-to-collect-and-reset-fcpor.patch: bfa: Added support to collect and reset fcport stats (FATE#311450,bnc#689227). - patches.drivers/bfa-0035-Add-support-to-configure-and-query-flash.patch: bfa: Add support to configure and query flash boot partition (FATE#311450,bnc#689227). - patches.drivers/bfa-0036-Add-support-to-configure-trunking-on-Bro.patch: bfa: Add support to configure trunking on Brocade adapter ports (FATE#311450,bnc#689227). - patches.drivers/bfa-0037-Added-support-to-configure-QOS-and-colle.patch: bfa: Added support to configure QOS and collect stats (FATE#311450,bnc#689227). - patches.drivers/bfa-0038-Add-support-to-collect-reset-fabric-st.patch: bfa: Add support to collect / reset fabric stats (FATE#311450,bnc#689227). - patches.drivers/bfa-0039-Add-support-to-store-driver-configuratio.patch: bfa: Add support to store driver configuration in flash (FATE#311450,bnc#689227). - patches.drivers/bfa-0040-Introduced-initiator-based-lun-masking-f.patch: bfa: Introduced initiator based lun masking feature (FATE#311450,bnc#689227). - patches.drivers/bfa-0041-Added-support-to-configure-lunmasking.patch: bfa: Added support to configure lunmasking (FATE#311450,bnc#689227). - patches.drivers/bfa-0042-Update-the-driver-version-to-3.0.2.2.patch: bfa: Update the driver version to 3.0.2.2 (FATE#311450,bnc#689227).- patches.fixes/scsi-dh-rdac-Adding-NetApp-as-a-brand-name-for-rdac.patch: scsi_dh_rdac: Adding NetApp as a brand name for rdac (bnc#716970).- patches.arch/ppc-fix-oops-on-wrong-memory-probe: powerpc: Fix oops when echoing bad values to /sys/devices/system/memory/probe (bnc#717142).- patches.suse/revert-network-error-fixes: inappropriate ioctl operation should return ENOTTY (bnc#717500).- patches.drivers/fcoe-0025-libfc-cache-align-struct-fc_fc.patch: libfc: cache align struct fc_fcp_pkt fields (bnc#718265). - patches.drivers/fcoe-0026-libfc-cache-align-struct-fc_ex.patch: libfc: cache align struct fc_exch fields (bnc#718265). - patches.drivers/fcoe-0027-libfc-cache-align-fc_exch_pool.patch: libfc: cache align fc_exch_pool (bnc#718265). - patches.drivers/fcoe-0028-fcoe-use-real-dev-in-case-of-h.patch: fcoe: use real dev in case of HW vlan acceleration (bnc#718265).- patches.fixes/dm-mpath-never-requeue-request-on-ITL-failure.patch: dm mpath: never re-queue request if I_T_L nexus failure and no paths (bnc#717848). - patches.fixes/scsi-Revert-put-stricter-guards-on-queue-dead-chec.patch: scsi: Revert 'put stricter guards on queue dead checks' (bnc#717848). - patches.fixes/scsi-don-t-use-execute_in_process_context.patch: scsi: don't use execute_in_process_context() (bnc#717848).- patches.fixes/mqueue-fix-mq_open-return-value.patch: ipc/mqueue.c: fix mq_open() return value (bnc#691714). - patches.fixes/mqueue-refactor-failure-handling.patch: ipc/mqueue.c: refactor failure handling (bnc#691714).- supported.conf: remove deleted generic_serial based modules. They were broken anyway. See commit 412145947a upstream.- patches.drivers/core_0120_XRC_base_implementation.patch: IB/core: Implement XRC support at verbs layer (for case in which fd is not used when opening an xrc_domain) (bnc#706587). - patches.drivers/core_0130_XRC_file_descriptors.patch: ib/core: Add XRC support for userspace file descriptors (bnc#706587). - patches.drivers/core_0140_XRC_QP_kernel_app.patch: IB/core: implement kernel-space XRC (bnc#706587). - patches.drivers/core_0150_xrc_rcv.patch: IB/core: Implement XRC receive-only QPs for userspace apps (bnc#706587). - patches.drivers/core_0160_xrc_fix_memleak.patch: IB/core: fix memory leak in XRC userspace cleanup (bnc#706587). - patches.drivers/mlx4_0450_xrc_base_implementation.patch: IB/mlx4: Implements XRC support (bnc#706587). - patches.drivers/mlx4_0460_xrc_kernel.patch: IB/mlx4: Implement kernel-space XRC (bnc#706587). - patches.drivers/mlx4_0470_xrc_rcv.patch: IB/mlx4: Implement XRC receive-only QP support (bnc#706587). - patches.drivers/mlx4_1470_xrc_qp_lookup_lock.patch: IB/mlx4_ib: XRC locking fixes, and prevention of null dereference (bnc#706587). - patches.drivers/mlx4_1480_xrc_rcv_spinlock.patch: IB/mlx4_ib: Add spinlock to xrc_reg_list changes and scanning in interrupt context (bnc#706587). - patches.drivers/mlx4_x_0150_Fix_mlx4_ib_reg_xrc_rcv_qp_locking.patch: IB/mlx4_ib XRC RCV: Fix mlx4_ib_reg_xrc_rcv_qp() locking (bnc#706587).- supported.conf: remove ricoh_mmc, the code is now as a PCI quirk.- Update config files: CONFIG_ACPI_APEI_ERST_DEBUG=m [#] CONFIG_ACPI_APEI_MEMORY_FAILURE is not set CONFIG_LLIST=y for all i386/x86_64 flavors. The latter 2 are newly introduced. - patches.drivers/acpi_apei_disable_suse.patch: Refresh. - patches.drivers/apei_lockless_list.patch: lib, Add lock-less NULL terminated single list (bnc#697859). - patches.drivers/apei_make_gen_pool_memory_allocator_lockless.patch: lib, Make gen_pool memory allocator lockless (bnc#697859). - patches.drivers/apei_memory_failure_queue.patch: HWPoison: add memory_failure_queue() (bnc#697859). - patches.drivers/apei_pstore_mainline_000.patch: ACPI, APEI, Add APEI bit support in generic _OSC call (bnc#697859). - patches.drivers/apei_pstore_mainline_001.patch: ACPI, APEI, Add APEI bit support in generic _OSC call (bnc#697859). - patches.drivers/apei_pstore_mainline_002.patch: ACPI, APEI, ERST, Prevent erst_dbg from loading if ERST is disabled (bnc#697859). - patches.drivers/apei_pstore_mainline_003.patch: ACPI, APEI, ERST, Fix erst-dbg long record reading issue (bnc#697859). - patches.drivers/apei_pstore_mainline_004.patch: ACPI, APEI, GHES, Do not ratelimit fatal error printk before panic (bnc#697859). - patches.drivers/apei_pstore_mainline_005.patch: ACPI, APEI, Add apei_exec_run_optional (bnc#697859). - patches.drivers/apei_pstore_mainline_006.patch: ACPI, APEI, Use apei_exec_run_optional in APEI EINJ and ERST (bnc#697859). - patches.drivers/apei_pstore_mainline_007.patch: ACPI, APEI, GHES, Prevent GHES to be built as module (bnc#697859). - patches.drivers/apei_pstore_mainline_008.patch: ACPI, APEI, GHES, Support disable GHES at boot time (bnc#697859). - patches.drivers/apei_pstore_mainline_009.patch: ACPI, APEI, Add WHEA _OSC support (bnc#697859). - patches.drivers/apei_pstore_mainline_010.patch: pstore: Extend API for more flexibility in new backends (bnc#697859). - patches.drivers/apei_pstore_mainline_011.patch: pstore: Add extra context for writes and erases (bnc#697859). - patches.drivers/apei_pstore_mainline_012.patch: pstore: Make "part" unsigned (bnc#697859). - patches.drivers/apei_pstore_mainline_013.patch: pstore: Allow the user to explicitly choose a backend (bnc#697859). - patches.drivers/apei_pstore_mainline_014.patch: ACPI, APEI, GHES, printk support for recoverable error via NMI (bnc#697859). - patches.drivers/apei_pstore_mainline_015.patch: ACPI, APEI, GHES, Error records content based throttle (bnc#697859). - patches.drivers/apei_pstore_mainline_016.patch: ACPI, APEI, GHES: Add hardware memory error recovery support (bnc#697859). - patches.drivers/apei_pstore_mainline_017.patch: ACPI: APEI build fix (bnc#697859). - patches.drivers/apei_pstore_mainline_018.patch: APEI GHES: 32-bit buildfix (bnc#697859). - patches.drivers/apei_pstore_mainline_019.patch: ACPI, APEI, EINJ Param support is disabled by default (bnc#697859). - patches.drivers/apei_pstore_mainline_020.patch: APEI: Fix WHEA _OSC call (bnc#697859). - patches.drivers/apei_pstore_mainline_021.patch: ACPI APEI: Add Kconfig option IRQ_WORK for GHES (bnc#697859).- patches.suse/btrfs-0010-go-readonly-on-insert-error-in-btrfs_add_root_.patch: Refresh. - patches.suse/btrfs-0014-Document-BUG-in-find_lock_delalloc_range.patch: Refresh. - patches.suse/btrfs-0020-Remove-BUG_ON-from-__finish_chunk_alloc.patch: Refresh.- patches.suse/btrfs-0001-Don-t-BUG_ON-errors-from-btrfs_create_subvol_r.patch: btrfs: Don't BUG_ON errors from btrfs_create_subvol_root(). - patches.suse/btrfs-0002-Don-t-BUG_ON-errors-in-update_ref_for_cow.patch: btrfs: Don't BUG_ON() errors in update_ref_for_cow(). - patches.suse/btrfs-0003-Don-t-BUG_ON-kzalloc-error-in-btrfs_lookup_csu.patch: btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range(). - patches.suse/btrfs-0004-make-insert_ptr-void.patch: btrfs: make insert_ptr() void. - patches.suse/btrfs-0005-Don-t-BUG_ON-errors-in-__finish_chunk_alloc.patch: btrfs: Don't BUG_ON errors in __finish_chunk_alloc(). - patches.suse/btrfs-0006-fix-error-check-of-btrfs_lookup_dentry.patch: btrfs: fix error check of btrfs_lookup_dentry(). - patches.suse/btrfs-0007-make-fixup_low_keys-void.patch: btrfs: make fixup_low_keys() void. - patches.suse/btrfs-0008-make-del_ptr-and-btrfs_del_leaf-void.patch: btrfs: make del_ptr() and btrfs_del_leaf() void. - patches.suse/btrfs-0009-Don-t-BUG_ON-failures-in-find_and_setup_root.patch: btrfs: Don't BUG_ON failures in find_and_setup_root(). - patches.suse/btrfs-0010-go-readonly-on-insert-error-in-btrfs_add_root_.patch: btrfs: go readonly on insert error in btrfs_add_root_ref(). - patches.suse/btrfs-0011-Go-readonly-on-bad-extent-refs-in-update_ref_f.patch: btrfs: Go readonly on bad extent refs in update_ref_for_cow(). - patches.suse/btrfs-0012-Don-t-BUG_ON-errors-from-update_ref_for_cow.patch: btrfs: Don't BUG_ON errors from update_ref_for_cow(). - patches.suse/btrfs-0013-Go-readonly-on-tree-errors-in-balance_level.patch: btrfs: Go readonly on tree errors in balance_level. - patches.suse/btrfs-0014-Document-BUG-in-find_lock_delalloc_range.patch: btrfs: Document BUG() in find_lock_delalloc_range(). - patches.suse/btrfs-0015-Go-readonly-on-missing-ref-in-btrfs_get_parent.patch: btrfs: Go readonly on missing ref in btrfs_get_parent(). - patches.suse/btrfs-0016-make-add_delayed_ref_head-void.patch: btrfs: make add_delayed_ref_head() void. - patches.suse/btrfs-0017-make-add_delayed_tree_ref-void.patch: btrfs: make add_delayed_tree_ref() void. - patches.suse/btrfs-0018-Don-t-BUG_ON-insert-errors-in-btrfs_alloc_dev_.patch: btrfs: Don't BUG_ON insert errors in btrfs_alloc_dev_extent(). - patches.suse/btrfs-0019-Remove-BUG_ON-from-__btrfs_alloc_chunk.patch: btrfs: Remove BUG_ON from __btrfs_alloc_chunk(). - patches.suse/btrfs-0020-Remove-BUG_ON-from-__finish_chunk_alloc.patch: btrfs: Remove BUG_ON from __finish_chunk_alloc().- patches.suse/zcrypt-feed-hwrandom: With a machine to test on, I could now replace my previous guesswork with a working version. (bnc#709266, bnc#709269)- Import future 3.0.5 kernel.org release: - patches.kernel.org/8250-fix-race-condition-in-serial8250_backup_timeout.patch: 8250: Fix race condition in serial8250_backup_timeout(). - patches.kernel.org/8250_pci-add-support-for-rosewill-rc-305-4x-serial-port.patch: 8250_pci: add support for Rosewill RC-305 4x serial port card. - patches.kernel.org/9p-close-acl-leaks.patch: 9p: close ACL leaks. - patches.kernel.org/acpica-do-not-repair-_tss-return-package-if-_pss-is-present.patch: ACPICA: Do not repair _TSS return package if _PSS is present. - patches.kernel.org/alarmtimers-avoid-possible-denial-of-service-with-high-freq-periodic-timers.patch: alarmtimers: Avoid possible denial of service with high freq periodic timers. - patches.kernel.org/alarmtimers-avoid-possible-null-pointer-traversal.patch: alarmtimers: Avoid possible null pointer traversal. - patches.kernel.org/alarmtimers-memset-itimerspec-passed-into-alarm_timer_get.patch: alarmtimers: Memset itimerspec passed into alarm_timer_get. - patches.kernel.org/arch-powerpc-sysdev-fsl_rio.c-correct-iecsr-register-clear.patch: arch/powerpc/sysdev/fsl_rio.c: correct IECSR register clear value. - patches.kernel.org/arm-7014-1-cache-l2x0-fix-l2-cache-size-calculation.patch: ARM: 7014/1: cache-l2x0: Fix L2 Cache size calculation. - patches.kernel.org/arm-7081-1-mach-integrator-fix-the-clocksource.patch: ARM: 7081/1: mach-integrator: fix the clocksource. - patches.kernel.org/arm-davinci-da850-evm-read-mac-address-from-spi-flash.patch: ARM: davinci: da850 EVM: read mac address from SPI flash. - patches.kernel.org/arm-davinci-fix-cache-flush-build-error.patch: ARM: davinci: fix cache flush build error. - patches.kernel.org/asoc-ad193x-fix-dac-word-len-setting.patch: ASoC: ad193x: fix dac word len setting. - patches.kernel.org/asoc-ad193x-fix-registers-definition.patch: ASoC: ad193x: fix registers definition. - patches.kernel.org/asoc-soc-jack-fix-checking-return-value-of-request_any_context_irq.patch: ASoC: soc-jack: Fix checking return value of request_any_context_irq. - patches.kernel.org/ath9k-fix-ps-wrappers-in-ath9k_set_coverage_class.patch: ath9k: Fix PS wrappers in ath9k_set_coverage_class. - patches.kernel.org/ath9k_hw-fix-sta-ar9485-bringup-issue-due-to-incorrect-mac-address.patch: ath9k_hw: Fix STA (AR9485) bringup issue due to incorrect MAC address. - patches.kernel.org/atm-br2684-fix-oops-due-to-skb-dev-being-null.patch: atm: br2684: Fix oops due to skb->dev being NULL. - patches.kernel.org/avoid-dereferencing-a-request_queue-after-last-close.patch: Avoid dereferencing a 'request_queue' after last close. - patches.kernel.org/carl9170-fix-mismatch-in-carl9170_op_set_key-mutex.patch: carl9170: Fix mismatch in carl9170_op_set_key mutex lock-unlock. - patches.kernel.org/drm-nouveau-properly-handle-allocation-failure-in-nouveau_sgdma_populate.patch: drm/nouveau: properly handle allocation failure in nouveau_sgdma_populate. - patches.kernel.org/drm-radeon-kms-add-s-r-quirk-for-compaq-presario-v5245eu.patch: drm/radeon/kms: add s/r quirk for Compaq Presario V5245EU. - patches.kernel.org/drm-radeon-kms-evergreen-ni-reset-spi-block-on-cp-resume.patch: drm/radeon/kms: evergreen & ni reset SPI block on CP resume. - patches.kernel.org/drm-radeon-kms-make-sure-pci-max-read-request-size-is-valid-on-evergreen-v2.patch: drm/radeon/kms: make sure pci max read request size is valid on evergreen+ (v2). - patches.kernel.org/drm-radeon-kms-set-a-default-max_pixel_clock.patch: drm/radeon/kms: set a default max_pixel_clock. - patches.kernel.org/fix-the-size-of-receive-buffer-packing-onto-virtio-ring.patch: Fix the size of receive buffer packing onto VirtIO ring. - patches.kernel.org/fs-9p-add-fid-before-dentry-instantiation.patch: fs/9p: Add fid before dentry instantiation. - patches.kernel.org/fs-9p-always-ask-new-inode-in-create.patch: fs/9p: Always ask new inode in create. - patches.kernel.org/fs-9p-always-ask-new-inode-in-lookup-for-cache-mode.patch: fs/9p: Always ask new inode in lookup for cache mode disabled. - patches.kernel.org/fs-9p-don-t-update-file-type-when-updating-file-attributes.patch: fs/9p: Don't update file type when updating file attributes. - patches.kernel.org/fs-9p-fid-is-not-valid-after-a-failed-clunk.patch: fs/9p: Fid is not valid after a failed clunk. - patches.kernel.org/fs-9p-fix-invalid-mount-options-args.patch: fs/9p: Fix invalid mount options/args. - patches.kernel.org/fs-9p-use-protocol-defined-value-for-lock-getlock-type-field.patch: fs/9p: Use protocol-defined value for lock/getlock 'type' field. - patches.kernel.org/fs-9p-when-doing-inode-lookup-compare-qid-details-and-inode.patch: fs/9p: When doing inode lookup compare qid details and inode mode bits. - patches.kernel.org/hwmon-max16065-fix-current-calculation.patch: hwmon: (max16065) Fix current calculation. - patches.kernel.org/ibmveth-fix-leak-when-recycling-skb-and-hypervisor-returns.patch: ibmveth: Fix leak when recycling skb and hypervisor returns error. - patches.kernel.org/igb-fix-wol-on-second-port-of-i350-device.patch: igb: fix WOL on second port of i350 device. - patches.kernel.org/iommu-amd-don-t-take-domain-lock-recursivly.patch: iommu/amd: Don't take domain->lock recursivly. - patches.kernel.org/iommu-amd-make-sure-iommu-need_sync-contains-correct-value.patch: iommu/amd: Make sure iommu->need_sync contains correct value. - patches.kernel.org/irda-fix-smsc-ircc2-section-mismatch-warning.patch: irda: fix smsc-ircc2 section mismatch warning. - patches.kernel.org/kernel-printk-do-not-turn-off-bootconsole-in-printk_late_init-if-keep_bootcon.patch: kernel/printk: do not turn off bootconsole in printk_late_init() if keep_bootcon. - patches.kernel.org/md-fix-handling-for-devices-from-2tb-to-4tb-in-0.90.patch: md: Fix handling for devices from 2TB to 4TB in 0.90 metadata. - patches.kernel.org/md-linear-avoid-corrupting-structure-while-waiting-for.patch: md/linear: avoid corrupting structure while waiting for rcu_free to complete. - patches.kernel.org/mm-page-allocator-initialise-zlc-for-first-zone-eligible-for-zone_reclaim.patch: mm: page allocator: initialise ZLC for first zone eligible for zone_reclaim. - patches.kernel.org/mm-page-allocator-reconsider-zones-for-allocation-after-direct-reclaim.patch: mm: page allocator: reconsider zones for allocation after direct reclaim. - patches.kernel.org/mmc-core-prevent-aggressive-clock-gating-racing-with-ios.patch: mmc: core: prevent aggressive clock gating racing with ios updates. - patches.kernel.org/mmc-core-use-non-reentrant-workqueue-for-clock-gating.patch: mmc: core: use non-reentrant workqueue for clock gating. - patches.kernel.org/mmc-rename-mmc_host_clk_-ungate-gate-to-mmc_host_clk_-hold-release.patch: mmc: rename mmc_host_clk_{ungate|gate} to mmc_host_clk_{hold|release}. - patches.kernel.org/mmc-sdhci-s3c-fix-mmc-card-i-o-problem.patch: mmc: sdhci-s3c: Fix mmc card I/O problem. - patches.kernel.org/mxc-iomux-v3-correct-no_pad_ctrl-definition.patch: MXC: iomux-v3: correct NO_PAD_CTRL definition. - patches.kernel.org/net-9p-fix-client-code-to-fail-more-gracefully-on-protocol-error.patch: net/9p: fix client code to fail more gracefully on protocol error. - patches.kernel.org/net-9p-fix-kernel-crash-with-msize-512k.patch: net/9p: Fix kernel crash with msize 512K. - patches.kernel.org/net-9p-fix-the-msize-calculation.patch: net/9p: Fix the msize calculation. - patches.kernel.org/nuvoton-cir-simplify-raw-ir-sample-handling.patch: nuvoton-cir: simplify raw IR sample handling. - patches.kernel.org/omap-serial-allow-ixon-and-ixoff-to-be-disabled.patch: omap-serial: Allow IXON and IXOFF to be disabled. - patches.kernel.org/pata_via-disable-atapi-dma-on-averatec-3200.patch: pata_via: disable ATAPI DMA on AVERATEC 3200. - patches.kernel.org/rapidio-fix-use-of-non-compatible-registers.patch: rapidio: fix use of non-compatible registers. - patches.kernel.org/regulator-tps65910-add-missing-breaks-in-switch-case.patch: regulator: tps65910: Add missing breaks in switch/case. - patches.kernel.org/rt2x00-do-not-drop-usb-dev-reference-counter-on-suspend.patch: rt2x00: do not drop usb dev reference counter on suspend. - patches.kernel.org/rt2x00-fix-crash-in-rt2800usb_get_txwi.patch: rt2x00: fix crash in rt2800usb_get_txwi. - patches.kernel.org/rt2x00-fix-crash-in-rt2800usb_write_tx_desc.patch: rt2x00: fix crash in rt2800usb_write_tx_desc. - patches.kernel.org/rtc-fix-rtc-pie-frequency-limit.patch: rtc: Fix RTC PIE frequency limit. - patches.kernel.org/savagedb-fix-typo-causing-regression-in-savage4-series.patch: savagedb: Fix typo causing regression in savage4 series video chip detection. - patches.kernel.org/sched-fix-a-memory-leak-in-__sdt_free.patch: sched: Fix a memory leak in __sdt_free(). - patches.kernel.org/sched-move-blk_schedule_flush_plug-out-of-__schedule.patch: sched: Move blk_schedule_flush_plug() out of __schedule(). - patches.kernel.org/sched-separate-the-scheduler-entry-for-preemption.patch: sched: Separate the scheduler entry for preemption. - patches.kernel.org/sendmmsg-sendmsg-fix-unsafe-user-pointer-access.patch: sendmmsg/sendmsg: fix unsafe user pointer access. - patches.kernel.org/serial-8250_pnp-add-intermec-cv60-touchscreen-device.patch: serial: 8250_pnp: add Intermec CV60 touchscreen device. - patches.kernel.org/sfi-table-irq-0xff-means-no-interrupt.patch: sfi: table irq 0xFF means 'no interrupt'. - patches.kernel.org/sparc-allow-handling-signals-when-stack-is-corrupted.patch: sparc: Allow handling signals when stack is corrupted. - patches.kernel.org/sparc-fix-array-bounds-error-setting-up-pcic-nmi-trap.patch: sparc: fix array bounds error setting up PCIC NMI trap. - patches.kernel.org/sparc32-sun4d-change-ipi-irq-level-to-prevent-collision.patch: sparc32,sun4d: Change IPI IRQ level to prevent collision between IPI and timer interrupt. - patches.kernel.org/sparc32-unbreak-arch_write_unlock.patch: sparc32: unbreak arch_write_unlock(). - patches.kernel.org/sparc64-only-panther-cheetah-chips-have-popc.patch: sparc64: Only Panther cheetah+ chips have POPC. - patches.kernel.org/sparc64-remove-unnecessary-macros-from-spinlock_64.h.patch: sparc64: remove unnecessary macros from spinlock_64.h. - patches.kernel.org/sparc64-set-have_c_recordmcount.patch: sparc64: Set HAVE_C_RECORDMCOUNT. - patches.kernel.org/tty-add-spi-prefix-for-spi-modalias.patch: tty: Add "spi:" prefix for spi modalias. - patches.kernel.org/tty-pty-fix-pty-counting.patch: TTY: pty, fix pty counting. - patches.kernel.org/usb-ehci-do-not-rely-on-port_suspend-to-stop-usb-resuming-in-ehci_bus_resume.patch: USB: EHCI: Do not rely on PORT_SUSPEND to stop USB resuming in ehci_bus_resume(). - patches.kernel.org/usb-ftdi_sio-add-calao-reference-board-support.patch: USB: ftdi_sio: add Calao reference board support. - patches.kernel.org/usb-musb-cppi-fix-build-errors-due-to-dbg-and-missing.patch: usb: musb: cppi: fix build errors due to DBG and missing musb variable. - patches.kernel.org/usb-option-add-yuga-device-id-to-driver.patch: USB: option: add YUGA device id to driver. - patches.kernel.org/usb-option-driver-add-pid-of-huawei-vodafone-k3806.patch: USB option driver add PID of Huawei Vodafone K3806. - patches.kernel.org/usb-option-driver-add-pid-of-huawei-vodafone-k4605.patch: USB option driver add PID of Huawei Vodafone K4605. - patches.kernel.org/usb-option-driver-k3765-k4505-avoid-cdc_data-interface.patch: USB option driver K3765/K4505 avoid CDC_DATA interface. - patches.kernel.org/usb-s5p-ehci-fix-a-null-pointer-deference.patch: usb: s5p-ehci: fix a NULL pointer deference. - patches.kernel.org/virtio-can-transfer-virtqueue_num-of-pages.patch: VirtIO can transfer VIRTQUEUE_NUM of pages. - patches.kernel.org/vp7045-fix-buffer-setup.patch: vp7045: fix buffer setup. - patches.kernel.org/x86-perf-check-that-current-mm-is-alive-before-getting-user-callchain.patch: x86, perf: Check that current->mm is alive before getting user callchain. - patches.kernel.org/xen-smp-warn-user-why-they-keel-over-nosmp-or-noapic-and-what-to-use-instead.patch: xen/smp: Warn user why they keel over - nosmp or noapic and what to use instead. - patches.kernel.org/xen-x86_32-do-not-enable-iterrupts-when-returning-from.patch: xen: x86_32: do not enable iterrupts when returning from exception in interrupt context. - patches.kernel.org/xhci-fix-failed-enqueue-in-the-middle-of-isoch-td.patch: xhci: Fix failed enqueue in the middle of isoch TD. - patches.kernel.org/xhci-fix-memory-leak-during-failed-enqueue.patch: xhci: Fix memory leak during failed enqueue. - patches.kernel.org/xhci-fix-port-u3-status-check-condition.patch: xHCI: fix port U3 status check condition. - patches.kernel.org/xhci-handle-zero-length-isochronous-packets.patch: xhci: Handle zero-length isochronous packets. - patches.kernel.org/xhci-remove-tds-from-td-lists-when-urbs-are-canceled.patch: xhci: Remove TDs from TD lists when URBs are canceled. - patches.kernel.org/xhci-report-usb2-port-in-resuming-as-suspend.patch: xHCI: report USB2 port in resuming as suspend. - patches.fixes/mm-page-allocator-initialise-zlc-for-first-zone-eligible-for-zone_reclaim.patch: Delete. - patches.fixes/mm-page-allocator-reconsider-zones-for-allocation-after-direct-reclaim.patch: Delete. - patches.fixes/pty-fix-pty-counting.patch: Delete.- patches.kabi/kabi-add-padding-to-usb-host-structures-for-potential-security-fixes.patch: kabi: add padding to USB host structures for potential security fixes (FATE#312013).- Update config files. Disable CONFIG_OLPC as this platform is not for our kernel packages.- patches.drivers/fcoe-0001-libfc-Enhancement-to-RPORT-state-machine-app.patch: libfc: Enhancement to RPORT state machine applicable only for VN2VN mode (bnc#718265). - patches.drivers/fcoe-0002-libfc-tcm_fc-add-ddp_targ-to-libfc-functi.patch: libfc, tcm_fc: add ddp_targ() to libfc function template to supprot FCoE DDP in target mode (bnc#718265). - patches.drivers/fcoe-0003-fcoe-support-ndo_fcoe_ddp_target-for-DDP-i.patch: fcoe: support ndo_fcoe_ddp_target() for DDP in FCoE targe (bnc#718265). - patches.drivers/fcoe-0004-fcoe-Unable-to-select-the-exchangeID-from-of.patch: fcoe: Unable to select the exchangeID from offload pool for storage targets (bnc#718265). - patches.drivers/fcoe-0005-fcoe-Round-robin-based-selection-of-CPU-for.patch: fcoe: Round-robin based selection of CPU for post-processing of incoming commands (bnc#718265). - patches.drivers/fcoe-0006-fcoe-Amends-previous-patch-Round-robin-base.patch: fcoe: Amends previous patch, Round-robin based selection of CPU for post processing of incoming request for FCoE target (bnc#718265). - patches.drivers/fcoe-0007-libfc-Fix-for-exchange-seq-loopup-failure-whe.patch: libfc:Fix for exchange/seq loopup failure when FCoE stack is used as target and connected to windows initaitor (bnc#718265). - patches.drivers/fcoe-0008-libfc-post-reset-event-on-lport-reset.patch: libfc: post reset event on lport reset (bnc#718265). - patches.drivers/fcoe-0009-fcoe-Rearrange-fcoe-port-and-NPIV-port-clean.patch: fcoe: Rearrange fcoe port and NPIV port cleanup (bnc#718265). - patches.drivers/fcoe-0010-scsi-rcu-Convert-call_rcu-fc_rport_free_rcu-to-kfr.patch: scsi,rcu: Convert call_rcu(fc_rport_free_rcu) to kfree_rcu() (bnc#718265). - patches.drivers/fcoe-0011-fcoe-remove-unused-ptype-field-in-fcoe_rcv_i.patch: fcoe: remove unused ptype field in fcoe_rcv_info (bnc#718265). - patches.drivers/fcoe-0012-libfc-use-FC_MAX_ERROR_CNT.patch: libfc: use FC_MAX_ERROR_CNT (bnc#718265). - patches.drivers/fcoe-0013-libfc-release-exchg-cache.patch: libfc: release exchg cache (bnc#718265). - patches.drivers/fcoe-0014-libfc-fcoe-ignore-rx-frame-with-wrong-xid-i.patch: libfc, fcoe: ignore rx frame with wrong xid info (bnc#718265). - patches.drivers/fcoe-0015-libfc-two-minor-changes-in-comments.patch: libfc: two minor changes in comments (bnc#718265). - patches.drivers/fcoe-0016-libfc-cleanup-sending-SRR-request.patch: libfc: cleanup sending SRR request (bnc#718265). - patches.drivers/fcoe-0017-libfc-Remove-the-reference-to-FCP-packet-fro.patch: libfc: Remove the reference to FCP packet from scsi_cmnd in case of error (bnc#718265). - patches.drivers/fcoe-0018-libfc-fix-warn-on-in-lport-retry.patch: libfc: fix warn on in lport retry (bnc#718265). - patches.drivers/fcoe-0019-fcoe-add-fip-retry-to-avoid-missing-critical.patch: fcoe: add fip retry to avoid missing critical keep alive (bnc#718265). - patches.drivers/fcoe-0020-fcoe-cleanup-cpu-selection-for-incoming-requ.patch: fcoe: cleanup cpu selection for incoming requests (bnc#718265). - patches.drivers/fcoe-0021-fcoe-Fix-deadlock-between-fip-s-recv_work-an.patch: fcoe: Fix deadlock between fip's recv_work and rtnl (bnc#718265). - patches.drivers/fcoe-0022-libfc-fix-fc_eh_host_reset.patch: libfc: fix fc_eh_host_reset (bnc#718265). - patches.drivers/fcoe-0023-libfc-block-SCSI-eh-thread-for-blocked-rport.patch: libfc: block SCSI eh thread for blocked rports (bnc#718265). - patches.drivers/fcoe-0024-libfc-fix-referencing-to-fc_fcp_pkt-from-the.patch: libfc: fix referencing to fc_fcp_pkt from the frame pointer via fr_fsp() (bnc#718265).- supported.conf: Mark i2c-pxa as unsupported.- patches.suse/btrfs-8019-fix-pages-truncation-in-clone.patch: Btrfs: fix pages truncation in btrfs_ioctl_clone() (FATE#306586).- patches.suse/btrfs-0087-fix-an-oops-when-deleting-snapshots.patch: Btrfs: fix an oops when deleting snapshots (FATE#306586). - patches.suse/btrfs-0088-fix-warning-in-iput-for-bad-inode.patch: btrfs: fix warning in iput for bad-inode (FATE#306586). - patches.suse/btrfs-0089-skip-locking-if-searching-the-commit-root-in-c.patch: Btrfs: skip locking if searching the commit root in csum lookup (FATE#306586). - patches.suse/btrfs-0090-reset-to-appropriate-block-rsv-after-orphan-op.patch: Btrfs: reset to appropriate block rsv after orphan operations (FATE#306586). - patches.suse/btrfs-0091-fix-misuse-of-trans-block-rsv.patch: Btrfs: fix misuse of trans block rsv (FATE#306586). - patches.suse/btrfs-0092-fix-unclosed-transaction-handle-in-btrfs_cont_.patch: Btrfs: fix unclosed transaction handle in btrfs_cont_expand (FATE#306586). - patches.suse/btrfs-0093-fix-the-file-extent-gap-when-doing-direct-IO.patch: Btrfs: fix the file extent gap when doing direct IO (FATE#306586). - patches.suse/btrfs-0094-fix-wrong-nbytes-information-of-the-inode.patch: Btrfs: fix wrong nbytes information of the inode (FATE#306586). - patches.suse/btrfs-0095-xattr-fix-attribute-removal.patch: btrfs: xattr: fix attribute removal (FATE#306586). - patches.suse/btrfs-0096-calc-file-extent-num_bytes-correctly-in-file-c.patch: Btrfs: calc file extent num_bytes correctly in file clone (FATE#306586). - patches.suse/btrfs-0097-add-dummy-extent-if-dst-offset-excceeds-file-e.patch: Btrfs: add dummy extent if dst offset excceeds file end in (FATE#306586). - patches.suse/btrfs-0908-kill-the-orphan-space-calculation-for-snapshot.patch: Refresh. - patches.suse/btrfs-0922-don-t-increase-the-block_rsv-s-size-when-emerg.patch: Btrfs: don't increase the block_rsv's size when emergency allocating space (FATE#306586). - patches.suse/btrfs-0923-set-truncate-block-rsv-s-size.patch: Btrfs: set truncate block rsv's size (FATE#306586). - patches.suse/btrfs-0924-put-the-block-group-cache-after-we-commit-the-.patch: Btrfs: put the block group cache after we commit the super (FATE#306586). - patches.suse/btrfs-0925-handle-enospc-accounting-for-free-space-inodes.patch: Btrfs: handle enospc accounting for free space inodes (FATE#306586). - patches.suse/btrfs-0926-use-the-transactions-block_rsv-for-the-csum-ro.patch: Btrfs: use the transactions block_rsv for the csum root (FATE#306586). - patches.suse/btrfs-0927-don-t-get-the-block_rsv-in-btrfs_free_tree_blo.patch: Btrfs: don't get the block_rsv in btrfs_free_tree_block (FATE#306586). - patches.suse/btrfs-0928-stop-passing-a-trans-handle-all-around-the-res.patch: Btrfs: stop passing a trans handle all around the reservation code (FATE#306586). - patches.suse/btrfs-8001-kill-space_info-pointer-from-inode-structure.patch: Btrfs: kill space_info pointer from inode structure (FATE#306586). - patches.suse/btrfs-8002-Free-inode-mutex-on-lseek-error.patch: BTRFS: Free inode mutex on lseek error (FATE#306586). - patches.suse/btrfs-8003-check-file-extent-backref-offset-underflow.patch: btrfs: check file extent backref offset underflow (FATE#306586). - patches.suse/btrfs-8004-fix-memory-leak-in-btrfs_defrag_file.patch: btrfs: fix memory leak in btrfs_defrag_file (FATE#306586). - patches.suse/btrfs-8005-fix-defragmentation-regression.patch: Btrfs: fix defragmentation regression (FATE#306586). - patches.suse/btrfs-8006-use-i_size_read-in-btrfs_defrag_file.patch: Btrfs: use i_size_read() in btrfs_defrag_file() (FATE#306586). - patches.suse/btrfs-8007-fix-wrong-max_to_defrag-in-btrfs_defrag_file.patch: Btrfs: fix wrong max_to_defrag in btrfs_defrag_file() (FATE#306586). - patches.suse/btrfs-8008-honor-extent-thresh-during-defragmentation.patch: Btrfs: honor extent thresh during defragmentation (FATE#306586). - patches.suse/btrfs-8009-return-EINVAL-if-start-total_bytes-in-fitrim-i.patch: btrfs: return EINVAL if start > total_bytes in fitrim ioctl (FATE#306586). - patches.suse/btrfs-8010-fix-array-bound-checking.patch: Btrfs: fix array bound checking (FATE#306586). - patches.suse/btrfs-8011-remove-BUG_ON-in-compress_file_range.patch: Btrfs: remove BUG_ON() in compress_file_range() (FATE#306586). - patches.suse/btrfs-8012-fix-direct-io-vs-nodatacow.patch: Btrfs: fix direct-io vs nodatacow (FATE#306586). - patches.suse/btrfs-8013-fix-race-between-multi-task-space-allocation-a.patch: Btrfs: fix race between multi-task space allocation and caching space (FATE#306586). - patches.suse/btrfs-8014-trivial-fix-a-potential-memory-leak-in-btrfs_p.patch: btrfs: trivial fix, a potential memory leak in btrfs_parse_early_options() (FATE#306586). - patches.suse/btrfs-8015-don-t-change-inode-flag-of-the-dest-clone-file.patch: Btrfs: don't change inode flag of the dest clone file (FATE#306586). - patches.suse/btrfs-8016-fix-d_off-in-the-first-dirent.patch: btrfs: fix d_off in the first dirent (FATE#306586). - patches.suse/btrfs-8017-ratelimit-WARN_ON-in-use_block_rsv.patch: btrfs: ratelimit WARN_ON in use_block_rsv (FATE#306586). - patches.suse/btrfs-8018-ratelimit-WARN_ON-before-iput-in-orphan-cleanu.patch: btrfs: ratelimit WARN_ON before iput in orphan cleanup (FATE#306586). - patches.suse/btrfs-push-up-clear_extent_bit-errors-to-callers: Refresh. - patches.suse/btrfs-push-up-lock_extent-errors-to-callers: Refresh. - patches.suse/btrfs-push-up-unlock_extent-errors-to-callers: Refresh. - scripts/sequence-patch.sh: - patches.suse/btrfs-xattr-fix-attribute-removal.patch: Delete.- Update config files: Disable CONFIG_X86_MRST as it is not a target platform for our kernel packages. This allows CONFIG_I2C to go back to being a module.- patches.arch/x86_amd_interlagos_mem_alignment_perf_improve_1_4.patch: x86, amd: Avoid cache aliasing penalties on AMD family 15h (bnc#711285). - patches.arch/x86_amd_interlagos_mem_alignment_perf_improve_2_4.patch: x86: Add a BSP cpu_dev helper (bnc#711285). - patches.arch/x86_amd_interlagos_mem_alignment_perf_improve_3_4.patch: x86, amd: Move BSP code to cpu_dev helper (bnc#711285). - patches.arch/x86_amd_interlagos_mem_alignment_perf_improve_4_4.patch: x86-32, amd: Move va_align definition to unbreak 32-bit build (bnc#711285).- Forward port perfmon 2.X (ia64) for 3.0 kernel. - Update config files. - patches.suse/perfmon2-remove_syscalls.patch: Refresh. - patches.suse/perfmon2.patch: Refresh. - patches.suse/perfmon2_ioctl.patch: Refresh. - patches.xen/xen3-patch-2.6.28: Refresh.- patches.suse/l2tp_ppp-alias.patch: provide a pppol2tp module alias for l2tp_ppp. - supported.conf: * ipt_addrtype renamed to xt_addrtype * pppol2tp renamed to l2tp_ppp * rtc_core and rtc_lib are now built into the kernel * xt_CONNMARK and xt_MARK merged with xt_connmark and xt_mark- rpm/kernel-binary.spec.in: Always abort build if supported modules depend on supported ones.- supported.conf: Update to include new dependencies, removed mt9m001, mt9v022, which are only found on some SoC systems.- Update mpt2sas to 09.100.00.00: * patches.drivers/mpt2sas-Added-DID_NO_CONNECT-return-when-dri.patch: mpt2sas: Added DID_NO_CONNECT return when driver remove and avoid shutdown call (bnc#717573). * patches.drivers/mpt2sas-Adding-support-for-customer-specific.patch: mpt2sas: Adding support for customer specific branding (bnc#717573). * patches.drivers/mpt2sas-Bump-version-09.100.00.00.patch: mpt2sas: Bump version 09.100.00.00 (bnc#717573). * patches.drivers/mpt2sas-MPI-next-revision-header-update.patch: mpt2sas MPI next revision header update (bnc#717573). * patches.drivers/mpt2sas-Set-max_sector-count-from-module-par.patch: mpt2sas: Set max_sector count from module parameter (bnc#717573). * patches.drivers/mpt2sas-fix-broadcast-AEN-and-task-managemen.patch: mpt2sas: fix broadcast AEN and task management issue (bnc#717573).- patches.drivers/hp_accel-Add-a-new-PNP-id: hp_accel: Add a new PNP id (bnc#717996).- patches.drivers/lpfc-8.3.25-Change-driver-version-to-8.3.25.patch: Fixup patch header. - patches.drivers/lpfc-8.3.5.45-update: Delete. - patches.drivers/lpfc-8.3.5.46-update: Delete.- Update lpfc driver to 8.3.25 (bnc#714274): * patches.drivers/lpfc-8.3.25-Adapter-Interface-fixes-and-chan.patch: lpfc 8.3.25: Adapter Interface fixes and changes (bnc#714274). * patches.drivers/lpfc-8.3.25-Add-FCF-priority-failover-functi.patch: lpfc 8.3.25: Add FCF priority failover functionality (bnc#714274). * patches.drivers/lpfc-8.3.25-Change-driver-version-to-8.3.25.patch: lpfc 8.3.25: Change driver version to 8.3.25 (bnc#714274). * patches.drivers/lpfc-8.3.25-Enhancements-to-Debug-infrastruc.patch: lpfc 8.3.25: Enhancements to Debug infrastructure (bnc#714274). * patches.drivers/lpfc-8.3.25-Fabric-and-Target-Discovery-Fixe.patch: lpfc 8.3.25: Fabric and Target Discovery Fixes (bnc#714274). * patches.drivers/lpfc-8.3.25-Miscellaneous-Bug-fixes-and-code.patch: lpfc 8.3.25: Miscellaneous Bug fixes and code cleanup (bnc#714274). * patches.drivers/lpfc-8.3.25-PCI-and-SR-IOV-Fixes.patch: lpfc 8.3.25: PCI and SR-IOV Fixes (bnc#714274). * patches.drivers/lpfc-8.3.25-T10-DIF-Fixes.patch: lpfc 8.3.25: T10 DIF Fixes (bnc#714274). - Update lpfc driver to 8.3.26 (bnc#714274): * patches.drivers/lpfc-8.3.26-Change-driver-version-to-8.3.26.patch: lpfc 8.3.26: Change driver version to 8.3.26 (bnc#714274). * patches.drivers/lpfc-8.3.26-Fix-HBA-initialization-issues.patch: lpfc 8.3.26: Fix HBA initialization issues (bnc#714274). * patches.drivers/lpfc-8.3.26-Fix-SYSFS-interface-issues.patch: lpfc 8.3.26: Fix SYSFS interface issues (bnc#714274). * patches.drivers/lpfc-8.3.26-Fix-issues-pertaining-to-SCSI-FC-protoc.patch: lpfc 8.3.26: Fix issues pertaining to SCSI/FC protocol (bnc#714274).- patches.arch/s390-36-01-cio-irq-statistics.patch: cio: fix incorrect summation count in interrupt statistics (bnc#717840,LTC#74949). - patches.arch/s390-36-02-cpuinfo-warning.patch: kernel: warning when accessing /proc/cpuinfo (bnc#717840,LTC#75096).- patches.fixes/blkdev-fsync.fix: fix block device fallout from - >fsync() changes i.e. fix patches.suse/fs-push-i_mutex-and-filemap_write_and_wait-down-into.patch (bnc#717574).- Disable SR-IOV for ppc (bnc#711566)- Update config files. (bring back orinoco_pci)- supported.conf: fix some network-related module dependencies (bnc#717160)- supported.conf: Update sound driver modules for 3.0; comment out old ieee1394 drivers- Update config files (missed out on vanilla).- Update config files (disable KVM for PPC due to potential performance degradation in non-KVM workloads)- patches.drivers/cpufreq_pcc_sanity_check_acpi_processor_data.patch: cpufreq: pcc-cpufreq: sanity check to prevent a NULL pointer dereference (bnc#=709412).- patches.suse/staging-hv-netvsc-module-name.patch: - patches.suse/staging-hv-storvsc-module-name.patch: Use KBUILD_MODNAME- patches.suse/staging-hv-netvsc-module-name.patch: advertise hv_netvsc instead of netvsc as sysfs driver name - patches.suse/staging-hv-storvsc-module-name.patch: advertise hv_storvsc instead of storvsc as sysfs driver name (bnc#716708).- Update vanilla config files.- patches.suse/btrfs-add-btrfs_panic: btrfs: Add btrfs_panic(). - patches.suse/btrfs-catch-locking-failures-in-set-clear-extent_bit: btrfs: Catch locking failures in {set,clear}_extent_bit. - patches.suse/btrfs-disk-io-void-functions: btrfs: disk-io.c: Make functions with no error conditions return void. - patches.suse/btrfs-extent_io-return-void: btrfs: extent_io.c: Make functions with no error conditions return void. - patches.suse/btrfs-extent_tree-void-functions: btrfs: extent-tree.c: Make functions with no error conditions return void. - patches.suse/btrfs-file-return-void: btrfs: file.c: Make functions with no error conditions return void. - patches.suse/btrfs-make-btrfs_init_compress-return-void: btrfs: Make btrfs_init_compress return void. - patches.suse/btrfs-make-btrfs_invalidate_inodes-return-void: btrfs: Make btrfs_invalidate_inodes return void. - patches.suse/btrfs-make-btrfs_queue_functions-return-void: btrfs: async-thread.c: Make functions with no error conditions return void. - patches.suse/btrfs-make-pin_down_extent-return-void: btrfs: Make pin_down_extent return void. - patches.suse/btrfs-make-set_range_writeback-return-void: btrfs: Make set_range_writeback return void. - patches.suse/btrfs-push-up-btrfs_pin_extent-failures: btrfs: Push up btrfs_pin_extent failures. - patches.suse/btrfs-push-up-clear_extent_bit-errors-to-callers: btrfs: Push up clear_extent_bit errors to callers. - patches.suse/btrfs-push-up-lock_extent-errors-to-callers: btrfs: Push up lock_extent errors to callers. - patches.suse/btrfs-push-up-non-looped-btrfs_start_transaction-failures: btrfs: Push up non-looped btrfs_start_transaction failures. - patches.suse/btrfs-push-up-set_extent_bit-errors-to-callers: btrfs: Push up set_extent_bit errors to callers. - patches.suse/btrfs-push-up-submit_bio_hook-failures: btrfs: Push up ->submit_bio_hook failures. - patches.suse/btrfs-push-up-unlock_extent-errors-to-callers: btrfs: Push up unlock_extent errors to callers. - patches.suse/btrfs-return-int-from-btrfs_drop_snapshot: btrfs: btrfs_drop_snapshot should return int. - patches.suse/btrfs-simplify-btrfs_submit_bio_hook: btrfs: simplify btrfs_submit_bio_hook. - patches.suse/btrfs-simplify-tree-merge-hook: btrfs: Factor out tree->ops->merge_bio_hook call. - patches.suse/btrfs-tree-log-void-functions: btrfs: tree-log.c: Make functions with no error conditions return void. - patches.suse/btrfs-volumes-return-void: btrfs: volumes.c: Make functions with no error conditions return void.- patches.fixes/kvm-macos.patch: Refresh.- patches.fixes/bonding-fix-arp_validate-inside-bridge.patch: Delete. Obsoleted by upstream commit 3aba891d.- patches.suse/staging-hv-storvsc-scsi-proc_name.patch: staging/hv: fill scsi/proc_name for the sake of mkinitrd. (bnc#716708)- Update Xen patches to 3.0.4 and c/s 1104. - patches.xen/frontswap-*: Update to v8 of upstream submission. - patches.xen/xen3-acpi_processor_delay_cpuidle_init_on_hotplug.patch: Delete.- patches.suse/xfs-exports-dmapi: Refresh. - patches.fixes/xfs-export-debug: Delete.- patches.suse/nfs4acl-ext3.diff: Fixed call signature of some functions.- patches.fixes/xfs-export-debug: Refresh.- Update config files: Enable DMAPI.- patches.fixes/xfs-always-use-iget-in-bulkstat-dmapi: Refresh. - patches.fixes/xfs-dmapi-fix-crash-on-mount: xfs/dmapi: fix crash on mount (bnc#458027). - patches.fixes/xfs-force-when-pinned: Refresh. - patches.suse/nfs4acl-common.diff: Refresh. - patches.suse/xfs-3.0-dmapi-fixes: XFS/DMAPI: Update to 3.0 API. - patches.suse/xfs-dmapi-add-missing-unlocks-after-transaction-commit: xfs/dmapi: Add missing unlocks after transaction commit. - patches.suse/xfs-dmapi-enable: Refresh. - patches.suse/xfs-dmapi-initialize-the-function-pointer-vector-statically: xfs/dmapi: Initialize the function pointer vector statically. - patches.suse/xfs-dmapi-obtain-vfsmount-for-use-in-xfs_dm_rdwr: xfs/dmapi: Obtain vfsmount for use in xfs_dm_rdwr. - patches.suse/xfs-dmapi-send_correct_flags_for_preunmount_event.patch: Refresh. - patches.suse/xfs-dmapi-src: Refresh. - patches.suse/xfs-dmapi-xfs-enable: Refresh. - patches.suse/xfs-exports-dmapi: xfs: Add exports for DMAPI. - patches.suse/xfs-nfsd-dmapi-aware: Refresh. - patches.suse/xfs-restore-dmapi-infrastructure: XFS: Restore DMAPI infrastructure. - patches.fixes/xfs-dmapi-fixes: Delete.- patches.suse/ipv6-dont-block-modules-that-depend-on-ipv6-when-blacklisted.patch: allow bonding with blacklisted ipv6 (bnc#585463). - supported.conf: - patches.suse/allow_bonding_with_blacklisted_ipv6.patch: Delete.- patches.suse/pagecache-limit.patch: Refresh.- supported.conf: mark hyperv drivers as externall supported (bnc#676890)- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() to un-protect read-only kernel code pages (bnc#439348). Patch reintroduced because AV vendors are not ready to use FANOTIFY interface yet (this reverts 239f59c3 commit). - patches.xen/xen3-x86-mark_rodata_rw.patch: Add mark_rodata_rw() to un-protect read-only kernel code pages (bnc#439348).- patches.suse/btrfs-xattr-fix-attribute-removal.patch: btrfs: xattr: fix attribute removal (FATE#306586). Fixes xfstests/062.- config.conf: Enable -xen kmps again.- supported.conf: Add new hwmon drivers (almost all unsupported), update paths of drivers which moved from hwmon to misc or platform/x86.- supported.conf: Update paths of drivers which once lived under drivers/i2c/chips.- supported.conf: Add new i2c bus drivers, core i2c bus drivers, and i2c mux drivers, all supported.- Update config files: - ppc _still_ has no TPMs; bnc#711297 reloaded-3.0 - consistently enable suspend to RAM on all power systems.- Delete now unused System Z patches: - patches.arch/s390-04-06-dasd-move-diag-kmsg.patch: Delete. - patches.arch/s390-10-03-dasd-fix-erp-tcw-alignment.patch: Delete. - patches.arch/s390-11-01-zfcp-ccw_remove_lock_dep.patch: Delete. - patches.arch/s390-11-02-zfcp-unit_add_lock_dep.patch: Delete. - patches.arch/s390-11-03-zfcp_unit_remove_lock_dep.patch: Delete. - patches.arch/s390-23-05-qeth-osxosm.patch: Delete. - patches.arch/s390-af_iucv-over-hsi: Delete. - patches.arch/s390-sles11sp2-kmsg.patch: Delete. - patches.suse/s390-messages-fix: Delete.- patches.fixes/mm-pagealloc-fix-congestion-wait.patch: Delete. It is no longer needed as we have upstream 0e093d99 commit.- patches.arch/s390-message-catalog.diff: Refresh. - patches.arch/s390-35-06-zfcp-kmsg-lun-limit-reached: zfcp: Update parameter name in LUN limit kernel message (bnc#713134). - patches.arch/s390-35-07-af_iucv-over-hsi: Refresh.- enabled CONFIG_OCFS2_DEBUG_MASKLOG to match state in SLE11 SP1.- patches.arch/s390-35-01-nss-initrd: NSS creation with initrd fails (bnc#713134). - patches.arch/s390-35-02-page-referenced: first time swap use results in heavy swapping (bnc#713134). - patches.arch/s390-35-03-zfcp-dif-dix-2: zfcp: non-experimental support for DIF/DIX (bnc#713134). - patches.arch/s390-35-04-zfcp-disable-auto-lun-scan: zfcp: disable automatic LUN scanning by default (bnc#713134). - patches.arch/s390-35-05-qdio-busy_bit: qdio: 2nd stage retry on SIGA-W busy conditions (bnc#713134). - patches.arch/s390-35-07-af_iucv-over-hsi: s390: af_iucv (new function): add HiperSockets transport (bnc#708636). - Update config files.- rpm/kernel-binary.spec.in: Obsolete following KMPs from SP1 preloads: realtek-r8192ce_pci, realtek-r8192se, rt3090, rt3592 and rt5390.- rpm/kernel-binary.spec.in: Obsolete hyper-v-kmp The modprobe.conf rules from the package are not needed anymore and the drivers itself are now part of the kernel packageWriteback fixes & improvements from 3.1-rc1: - patches.fixes/mm-properly-reflect-task-dirty-limits-in-dirty_excee.patch: mm: properly reflect task dirty limits in dirty_exceeded logic. - patches.fixes/writeback-don-t-busy-retry-the-inode-on-failed-grab_super_pass.patch: don't busy retry the inode on failed grab_super_passive(). - patches.fixes/writeback-don-t-busy-retry-writeback-on-new-freeing-.patch: writeback: don't busy retry writeback on new/freeing inodes. - patches.fixes/writeback-introduce-.tagged_writepages-for-the-WB_SY.patch: writeback: introduce .tagged_writepages for the WB_SYNC_NONE sync stage. - patches.fixes/writeback-skip-balance_dirty_pages-for-in-memory-fs.patch: writeback: skip balance_dirty_pages() for in-memory fs. - patches.fixes/writeback-skip-tmpfs-early-in-balance_dirty_pages_ra.patch: writeback: skip tmpfs early in balance_dirty_pages_ratelimited_nr(). - patches.fixes/writeback-split-inode_wb_list_lock-into-bdi_writebac.patch: writeback: split inode_wb_list_lock into bdi_writeback.list_lock. - patches.fixes/writeback-trace-event-writeback_single_inode.patch: writeback: trace event writeback_single_inode. - patches.fixes/writeback-update-dirtied_when-for-synced-inode-to-pr.patch: writeback: update dirtied_when for synced inode to prevent livelock.- patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch: Delete - fixed differently by commit 08142579.- patches.suse/staging-hv-vmbus-modalias-show.patch: Staging: hv: vmbus: Show the modalias in /sys/bus/vmbus/devices/*/ (fate#311487).- patches.fixes/Bluetooth_Periodic_Inquiry_and_mgmt_discovering_event.patch: Bluetooth: Periodic Inquiry and mgmt discovering event (bnc#714911).- Update config files for compatibilty with old users of vstusb even on xen, where it makes no sense, but the build requires it- patches.suse/btrfs-0904-fix-how-we-mount-subvol-whatever.patch: fix build warning.- Update config files.- patches.suse/0001-USB-resurrect-the-vstusb-driver.patch: USB: resurrect the vstusb driver (Michal's list of dropped modules).- patches.suse/staging-hv-bind-hv_blkkvsc-to-hv_storvsc.patch: bind old hv_blkvsc to hv_storvsc.- patches.suse/staging-hv-vmbus-init-on-dmi-match.patch: Delete, at the expense of 5 seconds delay when loading hv_vmbus on native hardware.- patches.suse/staging-hv-pata_piix-ignore-disks.patch: ata_piix: ignore disks in a hyper-v guest.- Update config files. CONFIG_VIDEO_GO7007=m and the sub drivers under this.- Update config files. CONFIG_USB_SL811_HCD_ISO=y- patches.suse/staging-hv-vmbus-init-on-dmi-match.patch: add suse_no_dmi module option- patches.fixes/pty-fix-pty-counting.patch: TTY: pty, fix pty counting (bnc#711203).- Update hv drivers This series removes the hv_blkvsc driver: hda becomes sda, sda becomes sdb! - patches.suse/staging-hv-staging-next-20110829-0303-Staging-hv-storvsc-Inline-free_stor_device.patch: Staging: hv: storvsc: Inline free_stor_device(). - patches.suse/staging-hv-staging-next-20110829-0304-Staging-hv-storvsc-Do-not-aquire-an-unnecessary-r.patch: Staging: hv: storvsc: Do not aquire an unnecessary reference on stor_device. - patches.suse/staging-hv-staging-next-20110829-0305-Staging-hv-storvsc-Rename-must_get_stor_device.patch: Staging: hv: storvsc: Rename must_get_stor_device(). - patches.suse/staging-hv-staging-next-20110829-0306-Staging-hv-storvsc-Rename-get_stor_device.patch: Staging: hv: storvsc: Rename get_stor_device(). - patches.suse/staging-hv-staging-next-20110829-0307-Staging-hv-storvsc-Cleanup-alloc_stor_device.patch: Staging: hv: storvsc: Cleanup alloc_stor_device(). - patches.suse/staging-hv-staging-next-20110829-0308-Staging-hv-storvsc-Introduce-state-to-manage-the.patch: Staging: hv: storvsc: Introduce state to manage the lifecycle of stor device. - patches.suse/staging-hv-staging-next-20110829-0309-Staging-hv-storvsc-Prevent-outgoing-traffic-when.patch: Staging: hv: storvsc: Prevent outgoing traffic when stor dev is being destroyed. - patches.suse/staging-hv-staging-next-20110829-0310-Staging-hv-storvsc-Get-rid-of-release_stor_device.patch: Staging: hv: storvsc: Get rid of release_stor_device() by inlining the code. - patches.suse/staging-hv-staging-next-20110829-0311-Staging-hv-storvsc-Get-rid-of-final_release_stor_.patch: Staging: hv: storvsc: Get rid of final_release_stor_device() by inlining code. - patches.suse/staging-hv-staging-next-20110829-0312-Staging-hv-storvsc-Get-rid-of-the-reference-count.patch: Staging: hv: storvsc: Get rid of the reference counting in struct storvsc_device. - patches.suse/staging-hv-staging-next-20110829-0313-Staging-hv-netvsc-Inline-the-code-for-free_net_de.patch: Staging: hv: netvsc: Inline the code for free_net_device(). - patches.suse/staging-hv-staging-next-20110829-0314-Staging-hv-netvsc-Cleanup-alloc_net_device.patch: Staging: hv: netvsc: Cleanup alloc_net_device(). - patches.suse/staging-hv-staging-next-20110829-0315-Staging-hv-netvsc-Introduce-state-to-manage-the-l.patch: Staging: hv: netvsc: Introduce state to manage the lifecycle of net device. - patches.suse/staging-hv-staging-next-20110829-0316-Staging-hv-netvsc-Prevent-outgoing-traffic-when-n.patch: Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev is destroyed. - patches.suse/staging-hv-staging-next-20110829-0317-Staging-hv-netvsc-Get-rid-of-release_outbound_net.patch: Staging: hv: netvsc: Get rid of release_outbound_net_device() by inlining the code. - patches.suse/staging-hv-staging-next-20110829-0318-Staging-hv-netvsc-Get-rid-of-release_inbound_net_.patch: Staging: hv: netvsc: Get rid of release_inbound_net_device() by inlining the code. - patches.suse/staging-hv-staging-next-20110829-0319-Staging-hv-netvsc-Get-rid-of-the-refcnt-field-in.patch: Staging: hv: netvsc: Get rid of the refcnt field in struct netvsc_device. - patches.suse/staging-hv-staging-next-20110829-0320-Staging-hv-storvsc-Add-code-to-handle-IDE-devices.patch: Staging: hv: storvsc: Add code to handle IDE devices using the storvsc driver. - patches.suse/staging-hv-staging-next-20110829-0321-Staging-hv-storvsc-Handle-IDE-devices-using-the-s.patch: Staging: hv: storvsc: Handle IDE devices using the storvsc driver. - patches.suse/staging-hv-staging-next-20110829-0322-Staging-hv-blkvsc-Get-rid-of-blkvsc_drv.c-as-this.patch: Staging: hv: blkvsc: Get rid of blkvsc_drv.c as this code is not used. - patches.suse/staging-hv-staging-next-20110829-0323-Staging-hv-storvsc-Optimize-bounce-buffer-handlin.patch: Staging: hv: storvsc: Optimize bounce buffer handling for the "write" case. - patches.suse/staging-hv-staging-next-20110829-0324-Staging-hv-storvsc-Optimize-the-bounce-buffer-han.patch: Staging: hv: storvsc: Optimize the bounce buffer handling in the "read" case. - patches.suse/staging-hv-staging-next-20110829-0325-Staging-hv-storvsc-Include-storvsc.c-in-storvsc_d.patch: Staging: hv: storvsc: Include storvsc.c in storvsc_drv.c. - patches.suse/staging-hv-staging-next-20110829-0326-Staging-hv-storvsc-Cleanup-storvsc_drv.c-after-ad.patch: Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the contents of storvsc.c. - patches.suse/staging-hv-staging-next-20110829-0327-Staging-hv-storvsc-Add-the-contents-of-hyperv_sto.patch: Staging: hv: storvsc: Add the contents of hyperv_storage.h to storvsc_drv.c. - patches.suse/staging-hv-staging-next-20110829-0328-Staging-hv-storvsc-Cleanup-storvsc_drv.c-after-ad.patch: Staging: hv: storvsc: Cleanup storvsc_drv.c after adding the contents of hyperv_storage.h. - patches.suse/staging-hv-staging-next-20110829-0329-Staging-hv-storvsc-Fixup-srb-and-scsi-status-for.patch: Staging: hv: storvsc: Fixup srb and scsi status for INQUIRY and MODE_SENSE. - patches.suse/staging-hv-staging-next-20110829-0330-Staging-hv-storvsc-Fix-a-typo.patch: Staging: hv: storvsc: Fix a typo. - patches.suse/staging-hv-staging-next-20110829-0331-Staging-hv-storvsc-In-case-of-scsi-errors-offline.patch: Staging: hv: storvsc: In case of scsi errors offline the device. - patches.suse/staging-hv-staging-next-20110829-0332-Staging-hv-storvsc-No-need-to-copy-from-bounce-bu.patch: Staging: hv: storvsc: No need to copy from bounce buffer in case of a failure. - patches.suse/staging-hv-staging-next-20110829-0333-Staging-hv-util-Forcefully-shutdown-when-shutdown.patch: Staging: hv: util: Forcefully shutdown when shutdown is requested. - patches.suse/staging-hv-staging-next-20110829-0334-Staging-hv-util-Adjust-guest-time-in-a-process-co.patch: Staging: hv: util: Adjust guest time in a process context. - patches.suse/staging-hv-staging-next-20110829-0335-Staging-hv-vmbus-Check-before-invoking-the-channe.patch: Staging: hv: vmbus: Check before invoking the channel callback. - patches.suse/staging-hv-staging-next-20110829-0336-Staging-hv-vmbus-Properly-deal-with-de-registerin.patch: Staging: hv: vmbus: Properly deal with de-registering channel callback. - patches.suse/staging-hv-staging-next-20110829-0337-Staging-hv-Fix-a-bug-in-vmbus_match.patch: Staging: hv: Fix a bug in vmbus_match(). - patches.suse/staging-hv-staging-next-20110829-0338-Staging-hv-vmbus-Get-rid-of-vmbus_on_isr-by-inl.patch: Staging: hv: vmbus: Get rid of vmbus_on_isr() by inlining the code. - patches.suse/staging-hv-staging-next-20110829-0339-Staging-hv-vmbus-Do-not-enable-auto-eoi.patch: Staging: hv: vmbus: Do not enable auto eoi. - patches.suse/staging-hv-staging-next-20110829-0340-Staging-hv-vmbus-Fixup-indentation-in-vmbus_acpi_.patch: Staging: hv: vmbus: Fixup indentation in vmbus_acpi_add(). - patches.suse/staging-hv-staging-next-20110829-0341-Staging-hv-vmbus-Get-rid-of-some-dated-redundant.patch: Staging: hv: vmbus: Get rid of some dated/redundant comments. - patches.suse/staging-hv-staging-next-20110829-0342-Staging-hv-vmbus-Get-rid-of-an-unnecessary-check.patch: Staging: hv: vmbus: Get rid of an unnecessary check in vmbus_connect(). - patches.suse/staging-hv-staging-next-20110829-0343-Staging-hv-vmbus-Fix-a-checkpatch-warning-in-ring.patch: Staging: hv: vmbus: Fix a checkpatch warning in ring_buffer.c. - patches.suse/staging-hv-staging-next-20110829-0344-Staging-hv-vmbus-Fix-checkpatch-warnings-in-conne.patch: Staging: hv: vmbus: Fix checkpatch warnings in connection.c. - patches.suse/staging-hv-staging-next-20110829-0345-Staging-hv-mousevsc-Fix-checkpatch-errors-and-war.patch: Staging: hv: mousevsc: Fix checkpatch errors and warnings. - patches.suse/staging-hv-staging-next-20110829-0346-Staging-hv-netvsc-return-negative-error-codes.patch: Staging: hv: netvsc: return negative error codes. - patches.suse/staging-hv-HDIO_GET_IDENTITY.patch: Delete. - patches.suse/staging-hv-fixup-reference-counting-for-net-and-stor.patch: Delete. - patches.suse/staging-hv-update-to-3.0.patch: Delete. - patches.suse/staging-hv-vmbus-modalias-namespace.patch: Delete. - patches.suse/staging-hv-vmbus-modalias-show.patch: Delete.- Linux 3.0.4. - patches.fixes/x86_mtrr_fix_deadlock_condition.patch: Delete. - patches.suse/btrfs-0073-detect-wether-a-device-supports-discard.patch: Delete. - patches.suse/btrfs-0074-fix-an-oops-of-log-replay.patch: Delete.- Update config files. - patches.suse/nfs4acl-common.diff: Fixed buggy forward port. - patches.suse/nfs4acl-ext3.diff: Refresh. - reenabled patches.suse/nfs4acl-ext3.diff after porting it- supported.conf: add kernel/drivers/s390/net/smsgiucv_app (bnc#712420)- supported.conf: add kernel/arch/s390/crypto/ghash_s390 (bnc#714096)- patches.drivers/pci-export-pcie_bus_configure_settings-symbol.patch: PCI: export pcie_bus_configure_settings symbol (bnc#711519).- patches.drivers/pci-set-pci-e-max-payload-size-on-fabric.patch: PCI: Set PCI-E Max Payload Size on fabric (bnc#711519).Unmerged btrfs upstream fixes. - patches.suse/btrfs-0901-move-stuff-around-in-btrfs_inode-to-get-better.patch: Btrfs: move stuff around in btrfs_inode to get better packing (FATE#306586). - patches.suse/btrfs-0902-kill-reserved_bytes-in-inode.patch: Btrfs: kill reserved_bytes in inode (FATE#306586). - patches.suse/btrfs-0903-use-d_obtain_alias-when-mounting-subvol-subvol.patch: Btrfs: use d_obtain_alias when mounting subvol/subvolid (FATE#306586). - patches.suse/btrfs-0904-fix-how-we-mount-subvol-whatever.patch: Btrfs: fix how we mount subvol= (FATE#306586). - patches.suse/btrfs-0905-use-bytes_may_use-for-all-ENOSPC-reservations.patch: Btrfs: use bytes_may_use for all ENOSPC reservations (FATE#306586). - patches.suse/btrfs-0906-skip-looking-for-delalloc-if-we-don-t-have-fil.patch: Btrfs: skip looking for delalloc if we don't have - >fill_delalloc (FATE#306586). - patches.suse/btrfs-0907-calculate-checksum-space-correctly.patch: Btrfs: calculate checksum space correctly (FATE#306586). - patches.suse/btrfs-0908-kill-the-orphan-space-calculation-for-snapshot.patch: Btrfs: kill the orphan space calculation for snapshots (FATE#306586). - patches.suse/btrfs-0909-kill-the-durable-block-rsv-stuff.patch: Btrfs: kill the durable block rsv stuff (FATE#306586). - patches.suse/btrfs-0910-fix-how-we-reserve-space-for-deleting-inodes.patch: Btrfs: fix how we reserve space for deleting inodes (FATE#306586). - patches.suse/btrfs-0911-ratelimit-the-generation-printk-for-the-free-s.patch: Btrfs: ratelimit the generation printk for the free space cache (FATE#306586). - patches.suse/btrfs-0912-kill-unused-parts-of-block_rsv.patch: Btrfs: kill unused parts of block_rsv (FATE#306586). - patches.suse/btrfs-0913-don-t-try-to-commit-in-btrfs_block_rsv_check.patch: Btrfs: don't try to commit in btrfs_block_rsv_check (FATE#306586). - patches.suse/btrfs-0914-optimize-how-we-account-for-space-in-truncate.patch: Btrfs: optimize how we account for space in truncate (FATE#306586). - patches.suse/btrfs-0915-kill-btrfs_truncate_reserve_metadata.patch: Btrfs: kill btrfs_truncate_reserve_metadata (FATE#306586). - patches.suse/btrfs-0916-only-reserve-space-in-fallocate-if-we-have-to-.patch: Btrfs: only reserve space in fallocate if we have to do a preallocate (FATE#306586). - patches.suse/btrfs-0918-reduce-the-amount-of-space-needed-for-truncate.patch: Btrfs: reduce the amount of space needed for truncates (FATE#306586). - patches.suse/btrfs-0919-allow-callers-to-specify-if-flushing-can-occur.patch: Btrfs: allow callers to specify if flushing can occur for btrfs_block_rsv_check (FATE#306586). - patches.suse/btrfs-0920-fix-call-to-btrfs_search_slot-in-free-space-ca.patch: Btrfs: fix call to btrfs_search_slot in free space cache (FATE#306586). - patches.suse/btrfs-0921-fix-space-leak-when-we-fail-to-make-an-allocat.patch: Btrfs: fix space leak when we fail to make an allocation (FATE#306586). - patches.suse/fs-fix-how-we-clear-DCACHE_NEED_LOOKUP.patch: fs: fix how we clear DCACHE_NEED_LOOKUP (FATE#306586).post 3.0 btrfs updates and fixes: - patches.suse/btrfs-0002-try-to-only-do-one-btrfs_search_slot-in-do_set.patch: Btrfs: try to only do one btrfs_search_slot in do_setxattr (FATE#306586). - patches.suse/btrfs-0003-do-transaction-space-reservation-before-joinin.patch: Btrfs: do transaction space reservation before joining the transaction (FATE#306586). - patches.suse/btrfs-0004-serialize-flushers-in-reserve_metadata_bytes.patch: Btrfs: serialize flushers in reserve_metadata_bytes (FATE#306586). - patches.suse/btrfs-0005-use-the-normal-checksumming-infrastructure-for.patch: Btrfs: use the normal checksumming infrastructure for free space cache (FATE#306586). - patches.suse/btrfs-0006-fix-how-we-merge-extent-states-and-deal-with-c.patch: Btrfs: fix how we merge extent states and deal with cached states (FATE#306586). - patches.suse/btrfs-0007-don-t-BUG_ON-btrfs_alloc_path-errors.patch: btrfs: don't BUG_ON btrfs_alloc_path() errors (FATE#306586). - patches.suse/btrfs-0008-Don-t-BUG_ON-alloc_path-errors-in-replay_one_b.patch: btrfs: Don't BUG_ON alloc_path errors in replay_one_buffer() (FATE#306586). - patches.suse/btrfs-0009-Don-t-BUG_ON-alloc_path-errors-in-btrfs_trunca.patch: btrfs: Don't BUG_ON alloc_path errors in btrfs_truncate_inode_items (FATE#306586). - patches.suse/btrfs-0010-Don-t-BUG_ON-alloc_path-errors-in-btrfs_read_l.patch: btrfs: Don't BUG_ON alloc_path errors in btrfs_read_locked_inode (FATE#306586). - patches.suse/btrfs-0011-Don-t-BUG_ON-alloc_path-errors-in-btrfs_balanc.patch: btrfs: Don't BUG_ON alloc_path errors in btrfs_balance() (FATE#306586). - patches.suse/btrfs-0019-implement-our-own-llseek.patch: Btrfs: implement our own ->llseek (FATE#306586). - patches.suse/btrfs-0021-get-rid-of-useless-dget_parent-in-fs-btrfs-ioctl.c.patch: get rid of useless dget_parent() in fs/btrfs/ioctl.c (FATE#306586). - patches.suse/btrfs-0022-get-rid-of-useless-dget_parent-in-btrfs-rename-and-l.patch: get rid of useless dget_parent() in btrfs rename() and link() (FATE#306586). - patches.suse/btrfs-0027-Don-t-BUG_ON-alloc_path-errors-in-find_next_ch.patch: btrfs: Don't BUG_ON alloc_path errors in find_next_chunk (FATE#306586). - patches.suse/btrfs-0028-don-t-BUG_ON-allocation-errors-in-btrfs_drop_s.patch: btrfs: don't BUG_ON allocation errors in btrfs_drop_snapshot (FATE#306586). - patches.suse/btrfs-0029-S_ISREG-mode-is-not-mode-S_IFREG.patch: btrfs: S_ISREG(mode) is not mode & S_IFREG.. (FATE#306586). - patches.suse/btrfs-0031-use-a-worker-thread-to-do-caching.patch: Btrfs: use a worker thread to do caching (FATE#306586). - patches.suse/btrfs-0032-use-find_or_create_page-instead-of-grab_cache_.patch: Btrfs: use find_or_create_page instead of grab_cache_page (FATE#306586). - patches.suse/btrfs-0033-don-t-flush-delalloc-arbitrarily.patch: Btrfs: don't flush delalloc arbitrarily (FATE#306586). - patches.suse/btrfs-0034-fix-enospc-problems-with-delalloc.patch: Btrfs: fix enospc problems with delalloc (FATE#306586). - patches.suse/btrfs-0035-tag-pages-for-writeback-in-sync.patch: Btrfs: tag pages for writeback in sync (FATE#306586). - patches.suse/btrfs-0036-fix-BUG_ON-caused-by-ENOSPC-when-relocating-sp.patch: Btrfs: fix BUG_ON() caused by ENOSPC when relocating space (FATE#306586). - patches.suse/btrfs-0037-stop-using-highmem-for-extent_buffers.patch: Btrfs: stop using highmem for extent_buffers (FATE#306586). - patches.suse/btrfs-0038-fix-deadlock-when-throttling-transactions.patch: Btrfs: fix deadlock when throttling transactions (FATE#306586). - patches.suse/btrfs-0039-switch-the-btrfs-tree-locks-to-reader-writer.patch: Btrfs: switch the btrfs tree locks to reader/writer (FATE#306586). - patches.suse/btrfs-0040-make-a-lockdep-class-for-each-root.patch: Btrfs: make a lockdep class for each root (FATE#306586). - patches.suse/btrfs-0041-remove-lockdep-magic-from-btrfs_next_leaf.patch: Btrfs: remove lockdep magic from btrfs_next_leaf (FATE#306586). - patches.suse/btrfs-0042-reduce-extent_state-lock-contention-for-metada.patch: Btrfs: reduce extent_state lock contention for metadata (FATE#306586). - patches.suse/btrfs-0043-use-the-commit_root-for-reading-free_space_ino.patch: Btrfs: use the commit_root for reading free_space_inode crcs (FATE#306586). - patches.suse/btrfs-0044-make-sure-reserve_metadata_bytes-doesn-t-leak-.patch: Btrfs: make sure reserve_metadata_bytes doesn't leak out strange errors (FATE#306586). - patches.suse/btrfs-0045-load-the-key-from-the-dir-item-in-readdir-into.patch: Btrfs: load the key from the dir item in readdir into a fake dentry (FATE#306586). - patches.suse/btrfs-0048-don-t-check-the-return-value-of-__btrfs_add_in.patch: Btrfs:don't check the return value of __btrfs_add_inode_defrag (FATE#306586). - patches.suse/btrfs-0049-return-error-to-caller-when-btrfs_unlink-faile.patch: Btrfs: return error to caller when btrfs_unlink() failes (FATE#306586). - patches.suse/btrfs-0050-fix-readahead-in-file-defrag.patch: Btrfs: fix readahead in file defrag (FATE#306586). - patches.suse/btrfs-0051-Make-extent-io-callbacks-that-never-fail-retur.patch: btrfs: Make extent-io callbacks that never fail return void (FATE#306586). - patches.suse/btrfs-0052-Protect-the-readonly-flag-of-block-group.patch: Btrfs: Protect the readonly flag of block group (FATE#306586). - patches.suse/btrfs-0053-fix-oops-while-writing-data-to-SSD-partitions.patch: Btrfs: fix oops while writing data to SSD partitions (FATE#306586). - patches.suse/btrfs-0054-make-btrfs_set_root_node-void.patch: btrfs: make btrfs_set_root_node void (FATE#306586). - patches.suse/btrfs-0055-don-t-print-the-leaf-if-we-had-an-error.patch: Btrfs: don't print the leaf if we had an error (FATE#306586). - patches.suse/btrfs-0056-copy-string-correctly-in-INO_LOOKUP-ioctl.patch: Btrfs: copy string correctly in INO_LOOKUP ioctl (FATE#306586). - patches.suse/btrfs-0057-check-the-nodatasum-flag-when-writing-compress.patch: Btrfs: check the nodatasum flag when writing compressed files (FATE#306586). - patches.suse/btrfs-0058-use-wait_event.patch: Btrfs: use wait_event() (FATE#306586). - patches.suse/btrfs-0059-remove-a-BUG_ON-in-btrfs_commit_transaction.patch: Btrfs: remove a BUG_ON() in btrfs_commit_transaction() (FATE#306586). - patches.suse/btrfs-0060-remove-remaining-ref-cache-code.patch: Btrfs: remove remaining ref-cache code (FATE#306586). - patches.suse/btrfs-0061-make-acl-functions-really-no-op-if-acl-is-not-.patch: Btrfs: make acl functions really no-op if acl is not enabled (FATE#306586). - patches.suse/btrfs-0062-remove-redundant-code-for-dir-item-lookup.patch: Btrfs: remove redundant code for dir item lookup (FATE#306586). - patches.suse/btrfs-0063-clean-up-search_extent_mapping.patch: Btrfs: clean up search_extent_mapping() (FATE#306586). - patches.suse/btrfs-0064-clean-up-code-for-extent_map-lookup.patch: Btrfs: clean up code for extent_map lookup (FATE#306586). - patches.suse/btrfs-0065-clean-up-code-for-merging-extent-maps.patch: Btrfs: clean up code for merging extent maps (FATE#306586). - patches.suse/btrfs-0066-remove-unused-members-from-struct-extent_state.patch: Btrfs: remove unused members from struct extent_state (FATE#306586). - patches.suse/btrfs-0067-clean-up-for-insert_state.patch: Btrfs: clean up for insert_state() (FATE#306586). - patches.suse/btrfs-0068-clean-up-for-wait_extent_bit.patch: Btrfs: clean up for wait_extent_bit() (FATE#306586). - patches.suse/btrfs-0069-clean-up-for-find_first_extent_bit.patch: Btrfs: clean up for find_first_extent_bit() (FATE#306586). - patches.suse/btrfs-0070-Remove-unused-variable-last_index-in-file.c.patch: Btrfs: Remove unused variable 'last_index' in file.c (FATE#306586). - patches.suse/btrfs-0071-don-t-call-writepages-from-within-write_full_p.patch: Btrfs: don't call writepages from within write_full_page (FATE#306586). - patches.suse/btrfs-0072-force-unplugs-when-switching-from-high-to-regu.patch: Btrfs: force unplugs when switching from high to regular priority bios (FATE#306586). - patches.suse/btrfs-0073-detect-wether-a-device-supports-discard.patch: Btrfs: detect wether a device supports discard (FATE#306586). - patches.suse/btrfs-0074-fix-an-oops-of-log-replay.patch: Btrfs: fix an oops of log replay (FATE#306586). - patches.suse/btrfs-0075-fix-a-bug-of-balance-on-full-multi-disk-partit.patch: Btrfs: fix a bug of balance on full multi-disk partitions (FATE#306586). - patches.suse/btrfs-0076-check-if-there-is-enough-space-for-balancing-s.patch: Btrfs: check if there is enough space for balancing smarter (FATE#306586). - patches.suse/btrfs-0077-forced-readonly-when-btrfs_drop_snapshot-fails.patch: Btrfs: forced readonly when btrfs_drop_snapshot() fails (FATE#306586). - patches.suse/btrfs-0078-use-plain-page_address-in-header-fields-setget.patch: Btrfs: use plain page_address() in header fields setget functions (FATE#306586). - patches.suse/btrfs-0079-memory-leak-in-btrfs_add_inode_defrag.patch: btrfs: memory leak in btrfs_add_inode_defrag() (FATE#306586). - patches.suse/btrfs-0080-fix-wrong-free-space-information.patch: Btrfs: fix wrong free space information (FATE#306586). - patches.suse/btrfs-0081-fix-uninitialized-sync_pending.patch: Btrfs: fix uninitialized sync_pending (FATE#306586). - patches.suse/btrfs-0082-truncate-pages-from-clone-ioctl-target-range.patch: Btrfs: truncate pages from clone ioctl target range (FATE#306586). - patches.suse/btrfs-0083-btrfs_permission-s-RO-check-shouldn-t-apply-to.patch: btrfs: btrfs_permission's RO check shouldn't apply to device nodes (FATE#306586). - patches.suse/btrfs-0084-unlock-on-error-in-btrfs_file_llseek.patch: btrfs: unlock on error in btrfs_file_llseek() (FATE#306586). - patches.suse/btrfs-0085-set-i_size-properly-when-fallocating-and-we-al.patch: Btrfs: set i_size properly when fallocating and we already (FATE#306586). - patches.suse/btrfs-0086-fix-64-bit-divide-problem.patch: Btrfs: fix 64 bit divide problem (FATE#306586). - patches.suse/fs-add-SEEK_HOLE-and-SEEK_DATA-flags.patch: fs: add SEEK_HOLE and SEEK_DATA flags (FATE#306586). - patches.suse/fs-add-a-DCACHE_NEED_LOOKUP-flag-for-d_flags.patch: fs: add a DCACHE_NEED_LOOKUP flag for d_flags (FATE#306586). - patches.suse/fs-add-missing-unlock-in-default_llseek.patch: fs: add missing unlock in default_llseek() (FATE#306586). - patches.suse/fs-handle-SEEK_HOLE-SEEK_DATA-properly-in-all-fs-s-t.patch: fs: handle SEEK_HOLE/SEEK_DATA properly in all fs's that define their own llseek (FATE#306586). - patches.suse/fs-push-i_mutex-and-filemap_write_and_wait-down-into.patch: fs: push i_mutex and filemap_write_and_wait down into ->fsync() handlers (FATE#306586).- patches.fixes/cifs-fix-possible-memory-corruption-in-CIFSFindNext.patch: cifs: fix possible memory corruption in CIFSFindNext (bnc#714001, CVE-2011-3191).- rpm/kernel-module-subpackage: Drop the 'k' prefix from the kernel version (bnc#713448).- patches.suse/staging-hv-staging-next-20110825-0001-Staging-hv-vmbus-Don-t-wait-indefinitely-for-IRQ.patch: Staging: hv: vmbus: Don't wait indefinitely for IRQ resouces. - patches.suse/staging-hv-staging-next-20110825-0002-Staging-hv-tools-Fix-a-checkpatch-warning-in-hv_k.patch: Staging: hv: tools: Fix a checkpatch warning in hv_kvp_daemon.c. - patches.suse/staging-hv-staging-next-20110825-0003-Staging-hv-vmbus-Fix-checkpatch-warnings.patch: Staging: hv: vmbus: Fix checkpatch warnings. - patches.suse/staging-hv-staging-next-20110825-0004-Staging-hv-util-kvp-Fix-the-reported-OSVersion-s.patch: Staging: hv: util: kvp: Fix the reported OSVersion string. - patches.suse/staging-hv-staging-next-20110825-0005-Staging-hv-util-kvp-Cleanup-kvp_get_domain_name.patch: Staging: hv: util: kvp: Cleanup kvp_get_domain_name(). - patches.suse/staging-hv-staging-next-20110825-0006-Staging-hv-Fix-macros-tab-errors-and-warning-in-d.patch: Staging: hv: Fix macros, tab errors and warning in drivers/staging/hv/hv_mouse.c. - patches.suse/staging-hv-staging-next-20110825-0007-Staging-hv-vmbus-VMBUS-is-an-ACPI-enumerated-devi.patch: Staging: hv: vmbus: VMBUS is an ACPI enumerated device, get rid of the PCI signature. - patches.suse/staging-hv-staging-next-20110825-0008-Staging-hv-Replace-struct-hv_guid-with-the-uuid-ty.patch: Staging: hv: Replace struct hv_guid with the uuid type already defined in Linux. - patches.suse/staging-hv-staging-next-20110825-0009-Staging-hv-vmbus-Introduce-vmbus-ID-space-in-stru.patch: Staging: hv: vmbus: Introduce vmbus ID space in struct hv_driver. - patches.suse/staging-hv-staging-next-20110825-0010-Staging-hv-blkvsc-Use-the-newly-introduced-vmbus.patch: Staging: hv: blkvsc: Use the newly introduced vmbus ID in the blockvsc driver. - patches.suse/staging-hv-staging-next-20110825-0011-Staging-hv-storvsc-Use-the-newly-introduced-vmbus.patch: Staging: hv: storvsc: Use the newly introduced vmbus ID in storvsc driver. - patches.suse/staging-hv-staging-next-20110825-0012-Staging-hv-netvsc-Use-the-newly-introduced-vmbus.patch: Staging: hv: netvsc: Use the newly introduced vmbus ID in netvsc driver. - patches.suse/staging-hv-staging-next-20110825-0013-Staging-hv-mousevsc-Use-the-newly-introduced-vmbu.patch: Staging: hv: mousevsc: Use the newly introduced vmbus ID in mouse driver. - patches.suse/staging-hv-staging-next-20110825-0014-Staging-hv-util-Make-hv_utils-a-vmbus-device-driv.patch: Staging: hv: util: Make hv_utils a vmbus device driver. - patches.suse/staging-hv-staging-next-20110825-0015-Staging-hv-create-VMBUS_DEVICE-macro-and-use-it.patch: Staging: hv: create VMBUS_DEVICE macro and use it. - patches.suse/staging-hv-staging-next-20110825-0016-Staging-hv-vmbus-Cleanup-vmbus_match.patch: Staging: hv: vmbus: Cleanup vmbus_match(). - patches.suse/staging-hv-staging-next-20110825-0017-Staging-hv-vmbus-Cleanup-vmbus_uevent-code.patch: Staging: hv: vmbus: Cleanup vmbus_uevent() code. - patches.suse/staging-hv-staging-next-20110825-0018-Staging-hv-vmbus-Support-the-notion-of-id-tables.patch: Staging: hv: vmbus: Support the notion of id tables in vmbus_match(). - patches.suse/staging-hv-staging-next-20110825-0019-Staging-hv-vmbus-Get-rid-of-an-unnecessary-includ.patch: Staging: hv: vmbus: Get rid of an unnecessary include line in vmbus_drv.c. - patches.suse/staging-hv-staging-next-20110825-0020-Staging-hv-storvsc-Get-rid-of-the-DMI-signature.patch: Staging: hv: storvsc: Get rid of the DMI signature. - patches.suse/staging-hv-staging-next-20110825-0021-Staging-hv-netvsc-Get-rid-of-the-PCI-signature.patch: Staging: hv: netvsc: Get rid of the PCI signature. - patches.suse/staging-hv-staging-next-20110825-0022-Staging-hv-netvsc-Get-rid-of-the-DMI-signature-in.patch: Staging: hv: netvsc: Get rid of the DMI signature in netvsc_drv.c. - patches.suse/staging-hv-staging-next-20110825-0023-Staging-hv-util-Get-rid-of-the-DMI-signature-in-h.patch: Staging: hv: util: Get rid of the DMI signature in hv_util.c. - patches.suse/staging-hv-staging-next-20110825-0024-Staging-hv-util-Get-rid-of-the-PCI-signature-in-h.patch: Staging: hv: util: Get rid of the PCI signature in hv_util.c. - patches.suse/staging-hv-staging-next-20110825-0025-Staging-hv-fix-up-driver-registering-mess.patch: Staging: hv: fix up driver registering mess. - patches.suse/staging-hv-staging-next-20110825-0026-Staging-hv-vmbus-Get-rid-of-some-unnecessary-comm.patch: Staging: hv: vmbus: Get rid of some unnecessary comments. - patches.suse/staging-hv-staging-next-20110825-0027-Staging-hv-vmbus-Cleanup-unnecessary-comments-in.patch: Staging: hv: vmbus: Cleanup unnecessary comments in hv.c. - patches.suse/staging-hv-staging-next-20110825-0028-Staging-hv-vmbus-Cleanup-error-handling-in-hv_ini.patch: Staging: hv: vmbus: Cleanup error handling in hv_init(). - patches.suse/staging-hv-staging-next-20110825-0029-Staging-hv-vmbus-Get-rid-of-unnecessay-comments-i.patch: Staging: hv: vmbus: Get rid of unnecessay comments in connection.c. - patches.suse/staging-hv-staging-next-20110825-0030-Staging-hv-vmbus-Get-rid-of-the-function-dump_gpa.patch: Staging: hv: vmbus: Get rid of the function dump_gpadl_body(). - patches.suse/staging-hv-staging-next-20110825-0031-Staging-hv-vmbus-Get-rid-of-the-function-dump_gpa.patch: Staging: hv: vmbus: Get rid of the function dump_gpadl_header(). - patches.suse/staging-hv-staging-next-20110825-0032-Staging-hv-vmbus-Rename-openMsg-to-open_msg-in-ch.patch: Staging: hv: vmbus: Rename openMsg to open_msg in channel.c. - patches.suse/staging-hv-staging-next-20110825-0033-Staging-hv-vmbus-Get-rid-of-unnecessary-comments.patch: Staging: hv: vmbus: Get rid of unnecessary comments in channel.c. - patches.suse/staging-hv-staging-next-20110825-0034-Staging-hv-vmbus-Change-the-variable-name-openInf.patch: Staging: hv: vmbus: Change the variable name openInfo to open_info in channel.c. - patches.suse/staging-hv-staging-next-20110825-0035-Staging-hv-vmbus-Cleanup-error-values-in-ringbuff.patch: Staging: hv: vmbus: Cleanup error values in ringbuffer.c. - patches.suse/staging-hv-staging-next-20110825-0036-Staging-hv-vmbus-Cleanup-the-error-return-value-i.patch: Staging: hv: vmbus: Cleanup the error return value in vmbus_recvpacket_raw(). - patches.suse/staging-hv-staging-next-20110825-0037-Staging-hv-netvsc-Get-rid-of-an-unnecessary-print.patch: Staging: hv: netvsc: Get rid of an unnecessary print statement in netvsc_probe(). - patches.suse/staging-hv-staging-next-20110825-0038-Staging-hv-vmbus-Retry-vmbus_post_msg-before-gi.patch: Staging: hv: vmbus: Retry vmbus_post_msg() before giving up. - patches.suse/staging-hv-staging-next-20110825-0039-Staging-hv-storvsc-Cleanup-error-handling-in-stor.patch: Staging: hv: storvsc: Cleanup error handling in storvsc_dev_add(). - patches.suse/staging-hv-staging-next-20110825-0040-Staging-hv-storvsc-Cleanup-error-handling-in-stor.patch: Staging: hv: storvsc: Cleanup error handling in storvsc_channel_init(). - patches.suse/staging-hv-staging-next-20110825-0041-Staging-hv-storvsc-Cleanup-error-handling-in-stor.patch: Staging: hv: storvsc: Cleanup error handling in storvsc_connect_to_vsp(). - patches.suse/staging-hv-staging-next-20110825-0042-Staging-hv-storvsc-Cleanup-error-handling-in-stor.patch: Staging: hv: storvsc: Cleanup error handling in storvsc_do_io(). - patches.suse/staging-hv-staging-next-20110825-0043-Storage-hv-storvsc-Get-rid-of-some-unnecessary-DP.patch: Storage: hv: storvsc: Get rid of some unnecessary DPRINTs from storvsc.c. - patches.suse/staging-hv-staging-next-20110825-0044-Staging-hv-storvsc-Fix-cleanup-some-dated-comment.patch: Staging: hv: storvsc: Fix/cleanup some dated comments in storvsc.c. - patches.suse/staging-hv-staging-next-20110825-0045-Staging-hv-storvsc-Cleanup-returned-error-code-in.patch: Staging: hv: storvsc: Cleanup returned error code in storvsc_host_reset(). - patches.suse/staging-hv-staging-next-20110825-0046-Staging-hv-storvsc-Cleanup-error-code-returned-in.patch: Staging: hv: storvsc: Cleanup error code returned in storvsc_probe(). - patches.suse/staging-hv-staging-next-20110825-0047-Staging-hv-storvsc-Cleanup-returned-error-code-in.patch: Staging: hv: storvsc: Cleanup returned error code in storvsc_drv_init(). - patches.suse/staging-hv-staging-next-20110825-0048-Staging-hv-netvsc-Cleanup-the-returned-error-code.patch: Staging: hv: netvsc: Cleanup the returned error code in netvsc_probe(). - patches.suse/staging-hv-staging-next-20110825-0049-Staging-hv-netvsc-Cleanup-error-return-codes-in-n.patch: Staging: hv: netvsc: Cleanup error return codes in netvsc_destroy_recv_buf(). - patches.suse/staging-hv-staging-next-20110825-0050-Staging-hv-netvsc-Cleanup-error-return-values-in.patch: Staging: hv: netvsc: Cleanup error return values in netvsc_init_recv_buf(). - patches.suse/staging-hv-staging-next-20110825-0051-Staging-hv-netvsc-Cleanup-error-returns-in-netvsc.patch: Staging: hv: netvsc: Cleanup error returns in netvsc_connect_vsp(). - patches.suse/staging-hv-staging-next-20110825-0052-Staging-hv-netvsc-Cleanup-error-return-values-in.patch: Staging: hv: netvsc: Cleanup error return values in netvsc_send(). - patches.suse/staging-hv-staging-next-20110825-0053-Staging-hv-netvsc-Cleanup-error-return-codes-in-n.patch: Staging: hv: netvsc: Cleanup error return codes in netvsc_device_add(). - patches.suse/staging-hv-staging-next-20110825-0054-Staging-hv-netvsc-Cleanup-error-codes-in-rndis_fi.patch: Staging: hv: netvsc: Cleanup error codes in rndis_filter_receive(). - patches.suse/staging-hv-staging-next-20110825-0055-Staging-hv-netvsc-Cleanup-error-code-in-rndis_fil.patch: Staging: hv: netvsc: Cleanup error code in rndis_filter_query_device(). - patches.suse/staging-hv-staging-next-20110825-0056-Staging-hv-netvsc-Cleanup-error-return-values-in.patch: Staging: hv: netvsc: Cleanup error return values in rndis_filter_set_packet_filter(). - patches.suse/staging-hv-staging-next-20110825-0057-Staging-hv-netvsc-Cleanup-error-returns-in-rndis_.patch: Staging: hv: netvsc: Cleanup error returns in rndis_filter_init_device(). - patches.suse/staging-hv-staging-next-20110825-0058-Staging-hv-netvsc-Cleanup-error-code-in-rndis_fil.patch: Staging: hv: netvsc: Cleanup error code in rndis_filter_device_add(). - patches.suse/staging-hv-staging-next-20110825-0059-Staging-hv-mouse-Change-the-jump-label-Cleanup-to.patch: Staging: hv: mouse: Change the jump label Cleanup to cleanup. - patches.suse/staging-hv-staging-next-20110825-0060-Staging-hv-netvsc-Change-the-jump-label-Cleanup-t.patch: Staging: hv: netvsc: Change the jump label Cleanup to cleanup. - patches.suse/staging-hv-staging-next-20110825-0061-Staging-hv-netvsc-Change-the-jump-label-Exit-to-e.patch: Staging: hv: netvsc: Change the jump label Exit to exit. - patches.suse/staging-hv-staging-next-20110825-0062-Staging-hv-mouse-Get-rid-of-the-unused-PCI-signat.patch: Staging: hv: mouse: Get rid of the unused PCI signature. - patches.suse/staging-hv-staging-next-20110825-0063-Staging-hv-hv_mouse-remove-deviceinfo_callback-fu.patch: Staging: hv: hv_mouse: remove deviceinfo_callback function. - patches.suse/staging-hv-staging-next-20110825-0064-Staging-hv-hv_mouse-remove-inputreport_callback-f.patch: Staging: hv: hv_mouse: remove inputreport_callback function. - patches.suse/staging-hv-staging-next-20110825-0065-Staging-hv-hv_mouse-remove-a-forward-declaration.patch: Staging: hv: hv_mouse: remove a forward declaration. - patches.suse/staging-hv-staging-next-20110825-0066-Staging-hv-hv_mouse-fix-up-remove-function.patch: Staging: hv: hv_mouse: fix up remove() function. - patches.suse/staging-hv-staging-next-20110825-0562-Staging-hv-Add-struct-hv_vmbus_device_id-to-mod_de.patch: Staging: hv: Add struct hv_vmbus_device_id to mod_devicetable.h. - patches.suse/staging-hv-staging-next-20110825-0563-Staging-hv-add-driver_data-to-hv_vmbus_device_id.patch: Staging: hv: add driver_data to hv_vmbus_device_id. - patches.suse/staging-hv-staging-next-20110825-0568-Staging-hv-Add-code-to-parse-struct-hv_vmbus_devic.patch: Staging: hv: Add code to parse struct hv_vmbus_device_id table. - patches.suse/staging-hv-staging-next-20110825-0570-Staging-hv-file2alias-fix-up-alias-creation-logic.patch: Staging: hv: file2alias: fix up alias creation logic for hv_vmbus_device_id. - patches.suse/staging-hv-vmbus-init-on-dmi-match.patch: Refresh.- Update staging/hv drivers to 3.1-rc4. - patches.suse/staging-hv-vmbus-init-on-dmi-match.patch: Refresh.- patches.suse/revert-mkuboot.sh-Fail-if-mkimage-is-missing.patch: Delete.- Also disable CONFIG_PPC_MPC512x and CONFIG_PPC_MPC52xx; Those reselect DEFAULT_UIMAGE.- patches.fixes/bridge-module-get-put.patch: Refresh to fix wrong conflict resolution during rebase.- patches.fixes/block-check-for-QUEUE_FLAG_DEAD-in-elv_completed_re.patch: block: check for QUEUE_FLAG_DEAD in elv_completed_request (bko#38842,bnc#714215). - patches.fixes/block-check-for-QUEUE_FLAG_DEAD-in-elv_put_request.patch: block: check for QUEUE_FLAG_DEAD in elv_put_request (bko#38842,bnc#714215). - patches.fixes/scsi_dh_alua-rtpg-flood-during-state-transitioning.patch: scsi_dh_alua: rtpg flood during state transitioning (bnc#708296). - patches.arch/s390-09-05-zfcp-ccw_fix_remove_list.patch: Delete.- Disable CONFIG_DEFAULT_UIMAGE for ppc32- patches.drivers/USB3-0004-USB-Add-authorized_default-parameter-to-the-usbcore-module.patch: patches.suse/dm-mpath-leastpending-path-update: Refresh, to be applicable via series2git- patches.suse/slab-memless-node-01-introduce-numa_mem_id.patch: Delete. Deprecated by upstrem 7aac7898 - patches.suse/slab-memless-node-02-slab-use-numa_mem_id.patch: Delete. Deprecated by upstrem 7d6e6d09 - patches.suse/slab-memless-node-03-ia64-memoryless-nodes.patch: Delete. Deprecated by upstrem fd1197f1 - patches.suse/slab-memless-node-04-kernel-profile-memoryless-nodes.patch: Delete. Deprecated by upstrem 3dd6b5fb- Forward port hpsa patches to 3.0: * patches.drivers/hpsa-section-annotations: hpsa: annotation fixes. * patches.drivers/hpsa-update-to-hp-version.patch- Forward port cciss patches to 3.0: * patches.drivers/cciss-update-to-4.6.28.patch * patches.fixes/cciss-unmap-xfer-buffer-correctly - Delete old patches: * patches.drivers/bfa-2.1.2.1-update * patches.fixes/cciss-remove-scan-thread.patch- patches.suse/revert-mkuboot.sh-Fail-if-mkimage-is-missing.patch: Revert "mkuboot.sh: Fail if mkimage is missing".- patches.drivers/lpfc-8.3.5.3-update: Delete. - patches.drivers/lpfc-8.3.5.6-update: Delete. - patches.drivers/lpfc-8.3.5.8.2p-update: Delete. - patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: Delete. - patches.drivers/qla4xxx-5.01.00.00.11.01-k11_5.01.00.00.11.01-k12.patch: Delete. - patches.drivers/qla4xxx-5.01.00.00.11.01-k12_5.01.00.00.11.01-k13.patch: Delete. - patches.drivers/qla4xxx-5.01.00.00.11.01-k13_5.01.00.00.11.01-k14.patch: Delete. - patches.fixes/ipr-strstrip-retval-fix: Delete.- Update config files. - patches.suse/netfilter-ipv4options: Refresh.- Update config files: disable FSL_SPI on ppc (unsupported anyway).- Re-enabled more kmsg patches: - patches.arch/s390-04-06-dasd-move-diag-kmsg.patch - patches.arch/s390-23-05-qeth-osxosm.patch- Update config files: disable MCP8XXX on ppc (unsupported anyway).- patches.drivers/libata-unlock-hpa-by-default: Delete. Obsoleted by on-demand unlocking in 2.6.35 (d8d9129e).- patches.drivers/USB3-0004-USB-Add-authorized_default-parameter-to-the-usbcore-module.patch: Refresh. - patches.suse/stack-unwind: Refresh. - patches.suse/supported-flag: Refresh. - patches.suse/supported-flag-enterprise: Refresh.- Update config files. Disable CONFIG_DRM_NOUVEAU.- Re-enabled KMSG_IDS and patches.arch/s390-message-catalog.diff.- patches.suse/pagecache-limit-dirty.diff: Refresh. - patches.suse/pagecache-limit-unmapped.diff: Refresh. - patches.suse/pagecache-limit.patch: Refresh.- Update config files, build fixes: + disable ACPI_HED for ia64 + disabled NOUVEAU for ia64 + disable DEBUG_STACK_USAGE for ia64 -debug + disable KMSG_IDS for s390 - series.conf: disable a bunch of printk changes specific to s390 for jjolly to fix- Re-enabled patches.suse/mm-compaction-migrate-pages-ia64.patch- Update config files: Synced vanilla with default from each arch.- patches.drivers/mpt2sas-09.102.00.00-update: mpt2sas: Update to version 09.102.00.00 (FATE#311801,bnc#680809). - patches.drivers/mpt2sas-04.100.01.02-update: Delete. - patches.drivers/mpt2sas-04.100.01.04-update: Delete. - patches.drivers/mpt2sas-base-map-resources: Delete.- Update config files. Enable CONFIG_FIREWIRE=m & co.- patches.drivers/aacraid-24701-update: Delete. - patches.drivers/aacraid-24702-update: Delete. - patches.drivers/qla2xxx-8.03.01.05.11.1-k8-update: Delete. - patches.drivers/qla2xxx-8.03.01.07.11.1-k8-update: Delete. - patches.drivers/qla2xxx-fix-tgt-init-prli-payload.diff: Delete.- patches.suse/dm-mpath-disable-abort-queue: Delete.- patches.fixes/scsi-return-success-for-fc_block_scsi_eh: Return 'SUCCESS' for fc_block_scsi_eh() instead of '0' (bnc#613330). - patches.fixes/scsi-short-circuit-scsi_abort_eh_cmnds: Short-circuit scsi_abort_eh_cmds() for FAST_IO_FAIL (bnc#591401). - patches.fixes/scsi-allow-fc-lld-to-fast-fail-scsi-eh: Delete. - patches.fixes/scsi-update-fc_block_scsi_eh: Delete.- Update ALUA device handler: * patches.fixes/scsi-dh-alua-always-update-tpgs-status: scsi_dh_alua: always update TPGS status on activate. * patches.fixes/scsi-dh-check-for-sdev-state-in-store_dh_state: scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). * patches.fixes/scsi-dh-fixup-kernel-doc: scsi_dh: Fixup kernel-doc comments. * patches.fixes/scsi-dh-queuedata-accessors: Use queuedata accessors for device handler (bnc#486001). * patches.fixes/scsi-evaluate-tpgs-setting: scsi_dh_alua: Evaluate TPGS setting from inquiry data. * patches.suse/scsi-dh-implement-match-callback: scsi_dh: Implement match callback function. - Delete old patches: * patches.drivers/hpsa-only-unmap-buffer-when-allocated * patches.fixes/scsi-add-tgps-setting * patches.fixes/scsi-dh-alua-crash-on-stpg-failback * patches.fixes/scsi-dh-alua-handle-all-states * patches.fixes/scsi-dh-alua-retry-UA * patches.fixes/scsi-dh-alua-send-stpg * patches.fixes/scsi-dh-check-for-sdev-state-before-calling-activate: * patches.fixes/scsi-dh-rdac-add-ibm-174x * patches.fixes/scsi-dh-rdac-add-stk * patches.fixes/scsi_dh-make-alua-handler-asynchronous- patches.suse/x86-mark_rodata_rw.patch: Delete. Patch obsoleted because we now have CONFIG_FANOTIFY - patches.xen/xen3-x86-mark_rodata_rw.patch: Delete.- patches.fixes/Fix-unmap_vma-bug-related-to-mmu_notifiers.patch: Refresh.- patches.suse/gfs2-ro-mounts-only.patch: Added fix to refuse mounting a file system with a dirty journal instead of removing the writable file ops. - patches.suse/gfs2-ro-fixes.patch: Delete.- patches.suse/netfilter-ipt_LOG-mac: Delete. The new qeth driver (since v2.6.26, 4a71df50) uses a standard ethernet hard_header_len, so this workaround is no longer needed (bnc#176921)- Update config files. Reverted many MFD_* for embedded devices. DVB_FE_CUSTOMISE=y and enable all frontends.- patches.suse/enable_nf_conntrack_accounting_by_default.patch: enable nf_conntrack accounting by default. - patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: Delete.- Update config files. Disable BRCM* staging drivers- Update Xen config files. - config.conf: Re-enable Xen flavors.- patches.rpmify/spi-mpc8xxx_spi-len.patch: SPI: fix build with CONFIG_SPI_FSL_ESPI=m.- patches.arch/x86-efi-10-merge-contiguous-early-reservations: Delete.- patches.arch/acpi_srat-pxm-rev-ia64.patch: Delete. - patches.arch/acpi_srat-pxm-rev-store.patch: Delete. - patches.arch/acpi_srat-pxm-rev-x86-64.patch: Delete.- patches.arch/x86-UV-map-ACPI-tables-as-cacheable.patch: Delete.- patches.suse/s390-messages-fix: s390 message catalog: build fixes.- patches.suse/suse-ppc32-mol-3.0-fixes.patch: Delete. - patches.suse/suse-ppc32-mol-BIT: Delete. - patches.suse/suse-ppc32-mol-get-property: Delete. - patches.suse/suse-ppc32-mol-handle-mm-fault: Delete. - patches.suse/suse-ppc32-mol-ioctl: Delete. - patches.suse/suse-ppc32-mol-kbuild.patch: Delete. - patches.suse/suse-ppc32-mol-semaphore: Delete. - patches.suse/suse-ppc32-mol-sheep: Delete. - patches.suse/suse-ppc32-mol.patch: Delete. It is not supported and causes a build failure.- patches.fixes/mm-do_fault-preallocate-cow-page.patch: Refresh.- patches.fixes/memcg-fix-hierarchical-oom-locking.patch: Refresh. - patches.fixes/memcg-make-oom_lock-0-and-1-based-rather-than-coutne.patch: compile fix.- patches.arch/x86_64-unwind-annotations: Restore (from master branch).- Update Xen patches to 3.0.3 and c/s 1103. - Update config files.- patches.fixes/cpusets-randomize-node-rotor-used-in-cpuset_mem_spre.patch: Refresh.- patches.suse/silent-stack-overflow-2.patch: Delete. No longer needed because we now have 320b2b8d and 8ca3eb08 upstream commits.- Update config files. - patches.drivers/mptfusion-Update-to-4.28.00.00suse.patch: Update to match 3.0 driver version. - patches.drivers/mpt-fusion-4.22.00.00-update: Delete.- patches.drivers/VMware-Balloon-driver-2.6.32.28.patch: Delete. Driver is identical in 3.0- Update config files. - patches.suse/squashfs-3.4.patch: Refresh.- Update config files. - patches.suse/squashfs-3.4.patch: Refresh.- rpm/kernel-binary.spec.in: More obsoletes for firewire and compat-ath9k- rpm/kernel-binary.spec.in: Add obsolets for firewire, iwlagn, compat-ath9k KMPs- Fixup patches for series2git: * patches.drivers/ixgbe-entropy-source.patch * patches.drivers/tg3-entropy-source.patch * patches.fixes/dm-release-map_lock-before-set_disk_ro * patches.fixes/dm-table-switch-to-readonly * patches.suse/dm-mpath-accept-failed-paths - patches.suse/staging-Update-dst-to-handle-FLUSH-FUA.patch: Remove obsolete patch. - Reshuffle and re-enable: * patches.suse/scsi-netlink-ml-module-param * patches.fixes/scsi-error-netlink-GFP_ATOMIC.patch- Update config files: changed CONFIG_SND_HDA_INPUT_BEEP_MODE to be compatible with SP1- supported.conf: updated for hd-audio drivers- patches.drivers/synaptics-hp-new-model.diff: Refresh, enabled again. - patches.fixes/vgaarb-enable-legacy-resources-only-if-device-decodes.patch: Refresh, enabled again. - patches.suse/acpi-video-switch-option: Refresh, enabled again. - patches.drm/*: Delete. - patches.fixes/bug-691216_hp_accel-resume-warning-fix.diff: Delete.- misc/xen-port-patches.py: Move... - scripts/xen-port-patches.py: ... here and update from master branch.- patches.fixes/md-raid1-throttle: Refresh. - patches.fixes/nfs-slot-table-alloc: Refresh. - patches.fixes/nfs-sync-writes: Delete. - patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: Delete. - patches.fixes/sunrpc-cache-completion.fix: Delete. Update nfsd and md patches for 3.0- patches.suse/suse-ppc32-mol-3.0-fixes.patch: MOL: fix build on newer kernels.- Fix fuzz - patches.arch/bug-610783_uv_nortsched_boot_option.patch: Refresh.- Re-activate fixed up patch. - patches.fixes/sched-rtsched_debug-boot-option.patch: Refresh.- Update config files: fix x86-64 vanilla config file based on the stable branch's version so it will at least build properly.- patches.suse/remove-syslog-WARN_ON.patch: Remove triggerable WARN_ONCE from check_syslog_permissions.- patches.suse/remove-syslog-WARN_ON.patch: Remove triggerable WARN_ONCE from check_syslog_permissions.- Pick up sched fixes/cleanups leading to and including the TIP merge of CFS Hard Limits (FATE#311682). Drop 2.6.32 backports. - patches.suse/sched-Balance-RT-tasks-when-forked-as-well: sched: Balance RT tasks when forked as well. - patches.suse/sched-Cleanup-duplicate-local-variable-in-enqueue-and-dequeue_task_fair: sched: Cleanup duplicate local variable in [enqueue|dequeue]_task_fair. - patches.suse/sched-Do-not-attempt-to-destroy-uninitialized-rt_bandwidth: sched: Do not attempt to destroy uninitialized rt_bandwidth. - patches.suse/sched-Fix-harmless-typo-CONFG_FAIR_GROUP_SCHED: sched: Fix (harmless) typo 'CONFG_FAIR_GROUP_SCHED'. - patches.suse/sched-Kill-WAKEUP_PREEMPT: sched: Kill WAKEUP_PREEMPT. - patches.suse/sched-Remove-noop-in-lowest_flag_domain: sched: Remove noop in lowest_flag_domain(). - patches.suse/sched-Remove-noop-in-next_prio: sched: Remove noop in next_prio(). - patches.suse/sched-Remove-resetting-exec_start-in-put_prev_task_rt: sched: Remove resetting exec_start in put_prev_task_rt(). - patches.suse/sched-Remove-rq-avg_load_per_task: sched: Remove rq->avg_load_per_task. - patches.suse/sched-Remove-unused-function-cpu_cfs_rq: sched: Remove unused function cpu_cfs_rq(). - patches.suse/sched-Reorder-root_domain-to-remove-64-bit-alignment-padding: sched: Reorder root_domain to remove 64 bit alignment padding. - patches.suse/sched-Replace-use-of-entity_key: sched: Replace use of entity_key(). - patches.suse/sched-Separate-group-scheduling-code-more-clearly: sched: Separate group-scheduling code more clearly. - patches.suse/sched-Use-pushable_tasks-to-determine-next-highest-prio: sched: Use pushable_tasks to determine next highest prio. - patches.suse/sched-accumulate-per-cfs_rq-cpu-usage-and-charge-against-bandwidth: sched: Accumulate per-cfs_rq cpu usage and charge against bandwidth. - patches.suse/sched-add-a-timer-to-handle-CFS-bandwidth-refresh: sched: Add a timer to handle CFS bandwidth refresh (FATE#311682). - patches.suse/sched-add-documentation-for-bandwidth-control: sched: Add documentation for bandwidth control (FATE#311682). - patches.suse/sched-add-exports-tracking-cfs-bandwidth-control-statistics: sched: Add exports tracking cfs bandwidth control statistics (FATE#311682). - patches.suse/sched-add-support-for-throttling-group-entities: sched: Add support for throttling group entities (FATE#311682). - patches.suse/sched-add-support-for-unthrottling-group-entities: sched: Add support for unthrottling group entities (FATE#311682). - patches.suse/sched-allow-for-positional-tg_tree-walks: sched: Allow for positional tg_tree walks (FATE#311682). - patches.suse/sched-cgroup-Optimize-load_balance_fair: sched, cgroup: Optimize load_balance_fair(). - patches.suse/sched-cpupri-Fix-memory-barriers-for-vec-updates-to-always-be-in-order: sched/cpupri: Fix memory barriers for vec updates to always be in order. - patches.suse/sched-cpupri-Remove-cpupri-pri_active: sched/cpupri: Remove cpupri->pri_active. - patches.suse/sched-cpupri-Remove-the-vec-lock: sched/cpupri: Remove the vec->lock. - patches.suse/sched-expire-invalid-runtime: sched: Expire invalid runtime (FATE#311682). - patches.suse/sched-fix-broken-SCHED_RESET_ON_FORK-handling: sched: fix broken SCHED_RESET_ON_FORK handling. - patches.suse/sched-fixlet-dont-update-shares-twice-on-on_rq-parent: sched: Don't update shares twice on on_rq parent. - patches.suse/sched-implement-hierarchical-task-accounting-for-SCHED_OTHER: sched: Implement hierarchical task accounting for SCHED_OTHER (FATE#311682). - patches.suse/sched-introduce-primitives-to-account-for-CFS-bandwidth-tracking: sched: Introduce primitives to account for CFS bandwidth tracking (FATE#311682). - patches.suse/sched-migrate-throttled-tasks-on-HOTPLUG: sched: Migrate throttled tasks on HOTPLUG (FATE#311682). - patches.suse/sched-prevent-buddy-interactions-with-throttled-entities: sched: Prevent buddy interactions with throttled entities (FATE#311682). - patches.suse/sched-prevent-interactions-with-throttled-entities: sched: Prevent interactions with throttled entities (FATE#311682). - patches.suse/sched-return-unused-runtime-on-group-dequeue: sched: Return unused runtime on group dequeue (FATE#311682). - patches.suse/sched-rt-Fix-rq-rt-pushable_tasks-bug-in-push_rt_task: sched, rt: Fix rq->rt.pushable_tasks bug in push_rt_task(). - patches.suse/sched-throttle-entities-exceeding-their-allowed-bandwidth: sched: Throttle entities exceeding their allowed bandwidth (FATE#311682). - patches.suse/sched-update-correct-entitys-runtime-in-check_preempt_wakeup: sched: update correct entity's runtime in check_preempt_wakeup(). - patches.suse/sched-validate-CFS-quota-hierarchies: sched: Validate CFS quota hierarchies (FATE#311682). - Fix sched-rtsched_debug-boot-option.patch spin/raw_spin[lock/unlock] merge error - patches.fixes/sched-rtsched_debug-boot-option.patch: Refresh. - Obsoleted patches: - patches.suse/01-18-sched-fixlet-dont-update-shares-twice-on-on_rq-parent: Delete. - patches.suse/02-18-sched-hierarchical-task-accounting-for-SCHED_OTHER: Delete. - patches.suse/03-18-sched-introduce-primitives-to-account-for-CFS-bandwidth-tracking: Delete. - patches.suse/04-18-sched-validate-CFS-quota-hierarchies: Delete. - patches.suse/05-18-sched-accumulate-per-cfs_rq-cpu-usage-and-charge-against-bandwidth: Delete. - patches.suse/06-18-sched-add-a-timer-to-handle-CFS-bandwidth-refresh: Delete. - patches.suse/07-18-sched-expire-invalid-runtime: Delete. - patches.suse/08-18-sched-add-support-for-throttling-group-entities: Delete. - patches.suse/09-18-sched-add-support-for-unthrottling-group-entities: Delete. - patches.suse/10-18-sched-allow-for-positional-tg_tree-walks: Delete. - patches.suse/11-18-sched-prevent-interactions-with-throttled-entities: Delete. - patches.suse/12-18-sched-prevent-buddy-interactions-with-throttled-entities: Delete. - patches.suse/13-18-sched-migrate-throttled-tasks-on-HOTPLUG: Delete. - patches.suse/14-18-sched-throttle-entities-exceeding-their-allowed-bandwidth: Delete. - patches.suse/15-18-sched-add-exports-tracking-cfs-bandwidth-control-statistics: Delete. - patches.suse/16-18-sched-return-unused-runtime-on-group-dequeue: Delete. - patches.suse/18-18-sched-add-documentation-for-bandwidth-control: Delete.- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: Refresh. Fix and reenable.- patches.fixes/make-note_interrupt-fast.diff: Delete. __do_IRQ from ia64 lapic code is no longer called, because they use genirqs properly. So this patch doesn't make sense anymore. If we need something to do at all, then it's adding action_ret == IRQ_NONE test into handle_percpu_irq before jumping into note_interrupt.- patches.arch/bug-610783_uv_nortsched_boot_option.patch: Refresh. Let's disable scheduler patches. They think rq->lock is spinlock. But in 3.0, it's raw_spinlock.- Linux 3.0.3. - patches.drivers/USB_xhci_fix_OS_want_to_own_HC.patch: Delete.- Linux 3.0.2. - patches.drm/drm-033-i915-Fix-typo-in-DRM_I915_OVERLAY_PUT_IMAGE-ioctl: Delete. - patches.drm/drm-034-i915-Initialize-RCS-ring-status-page-address-in: Delete. - patches.drm/drm-035-i915-load-the-LUT-before-pipe-enable-on-ILK: Delete. - patches.drm/drm-036-i915-Hold-mode_config-mutex-during-hotplug-procedure: Delete. - patches.drm/drm-037-i915-pch-Fix-integer-math-bugs-in-panel-fitting: Delete. - patches.drm/drm-038-Separate-EDID-Header-Check-from-EDID-Block-Check: Delete. - patches.drm/drm-039-radeon-Extended-DDC-Probing-for-Connectors-with: Delete. - patches.drm/drm-040-radeon-Log-Subsystem-Vendor-and-Device-Information: Delete. - patches.drm/drm-041-radeon-Extended-DDC-Probing-for-ECS-A740GM-M-DVI: Delete.- Linux 3.0.1. - patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops: Refresh. - patches.arch/x86_intel_set_default_energy_perf_bias.patch: Delete. - patches.drivers/USB3-0105-USB-EHCI-go-back-to-using-the-system-clock-for-QH-unlinks.patch: Delete. - patches.drm/drm-030-radeon-kms-fix-i2c-map-for-rv250-280: Delete. - patches.drm/drm-031-radeon-kms-add-missing-vddci-setting-on-NI: Delete. - patches.drm/drm-032-radeon-kms-fix-DP-training-for-DPEncoderService: Delete.- supported.conf: mark xhci-hcd as supported and as part of base- patches.fixes/proc-scsi-scsi-fix.diff: Delete.- Update config files: Disabled CONFIG_DEBUG_STACK_USAGE on non-debug flavors.- patches.arch/ppc-vio-modalias.patch: Delete.- Eliminated patches.suse/ppc-no-LDFLAGS_MODULE.patch by including crtsavres.o in kernel-devel for ppc.- patches.suse/btrfs-fix-dio-locking.patch: Delete.- series.conf: fix marker for olh -> ohering- series.conf: annotate fixup responsibilities- patches.arch/x86-efi-09-ignore-EFI_RESERVED_TYPE: Refresh. - patches.arch/x86-efi-10-merge-contiguous-early-reservations: Refresh. - patches.arch/ppc-vmcoreinfo.diff: Delete. - patches.arch/x86-UV-Fix-uninitialized-uvhub_mask.patch: Delete. - patches.suse/of_platform_driver.module-owner.patch: Delete.- Initial merge of 3.0, lots of patches are disabled with a +needs_update guard in series.conf, config files might have errors xen is disabled.- patches.fixes/memcg-fix-hierarchical-oom-locking.patch: memcg: fix hierarchical oom locking (bnc#705487).- USB 3 update, 3.0 -> 3.1-rc1 - patches.drivers/USB3-0001-xhci-Remove-some-unnecessary-casts-and-tidy-some-endian-swap.patch: xhci: Remove some unnecessary casts and tidy some endian swap code. - patches.drivers/USB3-0004-USB-Add-authorized_default-parameter-to-the-usbcore-module.patch: USB: Add "authorized_default" parameter to the usbcore module. - patches.drivers/USB3-0007-USB-wusbcore-return-negative-error-codes.patch: USB: wusbcore: return negative error codes. - patches.drivers/USB3-0008-ehci-hcd-remove-EOL-from-MODULE_PARM_DESC-for-hird-option.patch: ehci-hcd: remove EOL from MODULE_PARM_DESC for 'hird' option. - patches.drivers/USB3-0022-iph-use-default-get_stats.patch: iph: use default get_stats. - patches.drivers/USB3-0097-Staging-Merge-ENE-UB6250-MS-card-codes-from-keucr-to-drivers.patch: Staging: Merge ENE UB6250 MS card codes from keucr to drivers/usb/storage/ene_ub6250.c. - patches.drivers/USB3-0099-drivers-usb-atm-ueagle-atm-use-__packed.patch: drivers: usb: atm: ueagle-atm: use __packed. - patches.drivers/USB3-0100-drivers-usb-atm-ueagle-atm-Add-missing-const-qualifier.patch: drivers: usb: atm: ueagle-atm: Add missing const qualifier. - patches.drivers/USB3-0101-USB-EHCI-Move-sysfs-related-bits-into-ehci-sysfs.c.patch: USB: EHCI: Move sysfs related bits into ehci-sysfs.c. - patches.drivers/USB3-0103-ehci-refactor-pci-quirk-to-use-standard-dmi_check_system-met.patch: ehci: refactor pci quirk to use standard dmi_check_system method. - patches.drivers/USB3-0104-ehci-add-pci-quirk-for-Ordissimo-and-RM-Slate-100-too.patch: ehci: add pci quirk for Ordissimo and RM Slate 100 too. - patches.drivers/USB3-0105-USB-EHCI-go-back-to-using-the-system-clock-for-QH-unlinks.patch: USB: EHCI: go back to using the system clock for QH unlinks. - patches.drivers/USB3-0106-USB-mon-Allow-to-use-usbmon-without-debugfs.patch: USB: mon: Allow to use usbmon without debugfs. - patches.drivers/USB3-0113-USB-PL2303-correctly-handle-baudrates-above-115200.patch: USB: PL2303: correctly handle baudrates above 115200. - patches.drivers/USB3-0120-drivers-net-static-should-be-at-beginning-of-declaration.patch: drivers/net: static should be at beginning of declaration. - patches.drivers/USB3-0127-ASIX-Add-AX88772B-USB-ID.patch: ASIX: Add AX88772B USB ID. - patches.drivers/USB3-0132-ASIX-Simplify-condition-in-rx_fixup.patch: ASIX: Simplify condition in rx_fixup(). - patches.drivers/USB3-0133-ASIX-Use-only-11-bits-of-header-for-data-size.patch: ASIX: Use only 11 bits of header for data size. - patches.drivers/USB3-0134-cdc_ncm-fix-endianness-problem.patch: cdc_ncm: fix endianness problem. - patches.drivers/USB_xhci_fix_OS_want_to_own_HC.patch: Refresh.- patches.suse/kdb-common: Refresh. - patches.suse/kdb-fix-uhci-build-issues.patch: KDB: fix uhci build issues.- Final USB 3 2.6.39 -> 3.0 update - KDB is broken, I need to figure out how to resolve that, and will do so next... - Update config files. - patches.drivers/USB3-0203-USB-remove-remaining-usages-of-hcd-state-from-usbcore-and-fi.patch: USB: remove remaining usages of hcd->state from usbcore and fix regression. - patches.drivers/USB3-0206-usb-storage-Correct-adjust_quirks-to-include-latest-flags.patch: usb-storage: Correct adjust_quirks to include latest flags. - patches.drivers/USB3-0207-USB-UHCI-Add-support-for-big-endian-mmio.patch: USB: UHCI: Add support for big endian mmio. - patches.drivers/USB3-0208-USB-UHCI-Use-ACCESS_ONCE-rather-than-using-a-full-compiler-b.patch: USB: UHCI: Use ACCESS_ONCE rather than using a full compiler barrier. - patches.drivers/USB3-0209-USB-UHCI-Add-support-for-big-endian-descriptors.patch: USB: UHCI: Add support for big endian descriptors. - patches.drivers/USB3-0210-USB-UHCI-Support-big-endian-GRUSBHC-HC.patch: USB: UHCI: Support big endian GRUSBHC HC. - patches.drivers/USB3-0213-CDC-NCM-release-interfaces-fix-in-unbind.patch: CDC NCM: release interfaces fix in unbind(). - patches.drivers/USB3-0214-xhci-Clear-stopped_td-when-Stop-Endpoint-command-completes.patch: xhci: Clear stopped_td when Stop Endpoint command completes. - patches.drivers/USB3-0215-xhci-Don-t-submit-commands-when-the-host-is-dead.patch: xhci: Don't submit commands when the host is dead. - patches.drivers/USB3-0216-xhci-STFU-Remove-function-tracing.patch: xhci: STFU: Remove function tracing. - patches.drivers/USB3-0217-xhci-STFU-Don-t-print-event-ring-dequeue-pointer.patch: xhci: STFU: Don't print event ring dequeue pointer. - patches.drivers/USB3-0218-xhci-STFU-Be-quieter-during-URB-submission-and-completion.patch: xhci: STFU: Be quieter during URB submission and completion. - patches.drivers/USB3-0220-Intel-xhci-Support-EHCI-xHCI-port-switching.patch: Intel xhci: Support EHCI/xHCI port switching. - patches.drivers/USB3-0221-Intel-xhci-Ignore-spurious-successful-event.patch: Intel xhci: Ignore spurious successful event. - patches.drivers/USB3-0222-Intel-xhci-Limit-number-of-active-endpoints-to-64.patch: Intel xhci: Limit number of active endpoints to 64. - patches.drivers/USB3-0223-drivers-net-usb-catc.c-Fix-potential-deadlock-in-catc_ctrl_r.patch: drivers/net/usb/catc.c: Fix potential deadlock in catc_ctrl_run(). - patches.drivers/USB3-0224-xhci-Bigendian-fix-for-skip_isoc_td.patch: xhci: Bigendian fix for skip_isoc_td(). - patches.drivers/USB3-0225-usbnet-cdc_ncm-add-missing-.reset_resume-hook.patch: usbnet/cdc_ncm: add missing .reset_resume hook. - patches.drivers/USB3-0226-xhci-Bigendian-fix-for-xhci_check_bandwidth.patch: xhci: Bigendian fix for xhci_check_bandwidth(). - patches.drivers/USB3-0227-xhci-Add-defines-for-hardcoded-slot-states.patch: xhci: Add defines for hardcoded slot states. - patches.drivers/USB3-0228-xhci-Do-not-issue-device-reset-when-device-is-not-setup.patch: xhci: Do not issue device reset when device is not setup. - patches.drivers/USB3-0229-xhci-Disable-MSI-for-some-Fresco-Logic-hosts.patch: xhci: Disable MSI for some Fresco Logic hosts. - patches.drivers/USB3-0231-option-add-Zoom-4597-modem-USB-IDs.patch: option: add Zoom 4597 modem USB IDs. - patches.drivers/USB3-0232-option-add-Alcatel-X200-to-sendsetup-blacklist.patch: option: add Alcatel X200 to sendsetup blacklist. - patches.drivers/USB3-0233-option-add-Prolink-PH300-modem-IDs.patch: option: add Prolink PH300 modem IDs. - patches.drivers/USB3-0234-USB-option-Add-blacklist-for-ZTE-K3765-Z-19d2-2002.patch: USB: option Add blacklist for ZTE K3765-Z (19d2:2002). - patches.drivers/USB3-0246-usb-storage-redo-incorrect-reads.patch: usb-storage: redo incorrect reads. - patches.drivers/USB3-0248-USB-CONFIG_USB_GADGET_DUALSPEED-is-not-user-configurable.patch: USB: CONFIG_USB_GADGET_DUALSPEED is not user-configurable. - patches.drivers/USB3-0249-drivers-usb-host-ohci-pxa27x.c-add-missing-clk_put.patch: drivers/usb/host/ohci-pxa27x.c: add missing clk_put. - patches.drivers/USB3-0250-Revert-USB-option-add-ID-for-ZTE-MF-330.patch: Revert "USB: option: add ID for ZTE MF 330". - patches.drivers/USB3-0254-USB-TI-3410-5052-USB-Serial-Driver-Fix-mem-leak-when-firmwar.patch: USB: TI 3410/5052 USB Serial Driver: Fix mem leak when firmware is too big. - patches.drivers/USB3-0256-USB-Free-bandwidth-when-usb_disable_device-is-called.patch: USB: Free bandwidth when usb_disable_device is called. - patches.drivers/USB3-0257-xhci-Don-t-warn-about-zeroed-bMaxBurst-descriptor-field.patch: xhci: Don't warn about zeroed bMaxBurst descriptor field. - patches.drivers/USB3-0258-xHCI-1.0-Force-Stopped-Event-FSE.patch: xHCI 1.0: Force Stopped Event(FSE). - patches.drivers/USB3-0259-USB-change-maintainership-of-ohci-hcd-and-ehci-hcd.patch: USB: change maintainership of ohci-hcd and ehci-hcd. - patches.drivers/USB3-0262-net-usb-Add-Samsung-Kalmia-driver-for-Samsung-GT-B3730.patch: net/usb: Add Samsung Kalmia driver for Samsung GT-B3730. - patches.drivers/USB3-0263-xHCI-1.0-Incompatible-Device-Error.patch: xHCI 1.0: Incompatible Device Error. - patches.drivers/USB3-0264-xhci-Add-reset-on-resume-quirk-for-asrock-p67-host.patch: xhci: Add reset on resume quirk for asrock p67 host. - patches.drivers/USB3-0265-xhci-Always-set-urb-status-to-zero-for-isoc-endpoints.patch: xhci: Always set urb->status to zero for isoc endpoints. - patches.drivers/USB3-0267-net-usb-kalmia-Various-fixes-for-better-support-of-non-x86-a.patch: net/usb: kalmia: Various fixes for better support of non-x86 architectures. - patches.drivers/USB3-0268-net-usb-kalmia-signedness-bug-in-kalmia_bind.patch: net/usb/kalmia: signedness bug in kalmia_bind(). - patches.drivers/USB3-0270-USB-Add-new-FT232H-chip-to-drivers-usb-serial-ftdi_sio.c.patch: USB: Add new FT232H chip to drivers/usb/serial/ftdi_sio.c. - patches.drivers/USB3-0272-usb-r8a66597-hcd-fix-cannot-detect-low-full-speed-device.patch: usb: r8a66597-hcd: fix cannot detect low/full speed device. - patches.drivers/USB3-0273-usbnet-Remove-over-broad-module-alias-from-zaurus.patch: usbnet: Remove over-broad module alias from zaurus. - patches.drivers/USB3-0275-USB-fix-regression-occurring-during-device-removal.patch: USB: fix regression occurring during device removal. - patches.drivers/USB3-0276-USB-additional-regression-fix-for-device-removal.patch: USB: additional regression fix for device removal. - patches.drivers/USB3-0277-hso-fix-a-use-after-free-condition.patch: hso: fix a use after free condition. - patches.drivers/USB3-intel-xhci-add-pci-id-for-panther-point-xhci-host.patch: Intel xhci: Add PCI id for Panther Point xHCI host. - patches.drivers/USB_xhci_fix_OS_want_to_own_HC.patch: Refresh. - patches.drivers/intel-add-panther-point-pch-support.patch: Refresh. - patches.suse/kdb-common: Refresh.- more USB 3 2.6.39 -> 3.0 patches - patches.drivers/USB3-0161-USB-cp210x-fix-typo-Telegesys-should-have-been-Telegesis.patch: USB: cp210x: fix typo, Telegesys should have been Telegesis. - patches.drivers/USB3-0163-usb-fix-warning-in-usbtest-module-v2.patch: usb: fix warning in usbtest module v2. - patches.drivers/USB3-0166-USB-cdc_acm-Fix-oops-when-Droids-MuIn-LCD-is-connected.patch: USB: cdc_acm: Fix oops when Droids MuIn LCD is connected. - patches.drivers/USB3-0169-xhci-Fix-bug-in-control-transfer-cancellation.patch: xhci: Fix bug in control transfer cancellation. - patches.drivers/USB3-0170-ehci-pci-quirk-cleanup.patch: ehci: pci quirk cleanup. - patches.drivers/USB3-0171-ehci-workaround-for-pci-quirk-timeout-on-ExoPC.patch: ehci: workaround for pci quirk timeout on ExoPC. - patches.drivers/USB3-0172-xhci-move-the-common-code-to-a-function-to-get-max-ports-and.patch: xhci: move the common code to a function to get max ports and port array. - patches.drivers/USB3-0173-CDC-NCM-Add-mising-short-packet-in-cdc_ncm-driver.patch: CDC NCM: Add mising short packet in cdc_ncm driver. - patches.drivers/USB3-0184-drivers-usb-serial-opticon.c-Release-resources-on-kmalloc-fa.patch: drivers/usb/serial/opticon.c: Release resources on kmalloc failure. - patches.drivers/USB3-0188-xhci-Fix-memory-leak-in-ring-cache-deallocation.patch: xhci: Fix memory leak in ring cache deallocation. - patches.drivers/USB3-0189-xhci-Fix-memory-leak-bug-when-dropping-endpoints.patch: xhci: Fix memory leak bug when dropping endpoints. - patches.drivers/USB3-0190-USB-option-add-support-for-Huawei-E353-device.patch: USB: option: add support for Huawei E353 device. - patches.drivers/USB3-0194-EHCI-don-t-rescan-interrupt-QHs-needlessly.patch: EHCI: don't rescan interrupt QHs needlessly. - patches.drivers/USB3-0196-usb-storage-fix-up-the-unusual_realtek-device-list.patch: usb-storage: fix up the unusual_realtek device list.- USB 3 work, the big xhci 1.0 update (FATE#311390), as part of the USB backport of 2.6.39 -> 3.0 - patches.drivers/USB3-0100-xhci-1.0-Update-TD-size-field-format.patch: xhci 1.0: Update TD size field format. - patches.drivers/USB3-0101-xhci-1.0-Set-transfer-burst-count-field.patch: xhci 1.0: Set transfer burst count field. - patches.drivers/USB3-0102-xhci-1.0-Set-transfer-burst-last-packet-count-field.patch: xhci 1.0: Set transfer burst last packet count field. - patches.drivers/USB3-0123-USB-ehci-remove-structure-packing-from-ehci_def.patch: USB: ehci: remove structure packing from ehci_def. - patches.drivers/USB3-0124-USB-ldusb-add-several-new-devices.patch: USB: ldusb: add several new devices. - patches.drivers/USB3-0133-USB-EHCI-Support-controllers-with-big-endian-capability-regs.patch: USB: EHCI: Support controllers with big endian capability regs. - patches.drivers/USB3-0141-USB-UHCI-Remove-PCI-dependencies-from-uhci-hub.patch: USB: UHCI: Remove PCI dependencies from uhci-hub. - patches.drivers/USB3-0142-USB-UHCI-Allow-dynamic-assignment-of-bus-specific-functions.patch: USB: UHCI: Allow dynamic assignment of bus specific functions. - patches.drivers/USB3-0143-USB-UHCI-Codingstyle-fixes.patch: USB: UHCI: Codingstyle fixes. - patches.drivers/USB3-0144-USB-UHCI-Move-PCI-specific-functions-to-uhci-pci.c.patch: USB: UHCI: Move PCI specific functions to uhci-pci.c. - patches.drivers/USB3-0145-USB-UHCI-Wrap-I-O-register-accesses.patch: USB: UHCI: Wrap I/O register accesses. - patches.drivers/USB3-0146-USB-UHCI-Support-non-PCI-host-controllers.patch: USB: UHCI: Support non-PCI host controllers. - patches.drivers/USB3-0147-USB-UHCI-Add-support-for-GRLIB-GRUSBHC-controller.patch: USB: UHCI: Add support for GRLIB GRUSBHC controller. - patches.drivers/USB3-0152-xHCI-1.0-Setup-Stage-TRB-Transfer-Type-flag.patch: xHCI 1.0: Setup Stage TRB Transfer Type flag. - patches.drivers/USB3-0153-xHCI-1.0-Control-endpoint-average-TRB-length-field-set.patch: xHCI 1.0: Control endpoint average TRB length field set. - patches.drivers/USB3-0154-xHCI-1.0-Isoch-endpoint-CErr-field-set.patch: xHCI 1.0: Isoch endpoint CErr field set. - patches.drivers/USB3-0155-xHCI-1.0-Block-Interrupts-for-Isoch-transfer.patch: xHCI 1.0: Block Interrupts for Isoch transfer. - patches.drivers/USB3-0156-xHCI-1.0-TT_THINK_TIME-set.patch: xHCI 1.0: TT_THINK_TIME set. - patches.drivers/USB3-0157-xHCI-1.0-Max-Exit-Latency-Too-Large-Error.patch: xHCI 1.0: Max Exit Latency Too Large Error. - patches.suse/kdb-common: Refresh.- USB 3 update, more 2.6.39 -> 3.0 patches - patches.drivers/USB3-0054-USB-cdc-wdm-reset-handling-according-to-new-requirements.patch: USB: cdc-wdm: reset handling according to new requirements. - patches.drivers/USB3-0055-Bind-only-modem-AT-command-endpoint-to-option-module.patch: Bind only modem AT command endpoint to option module. - patches.drivers/USB3-0056-USB-documentation-update-for-the-pre_reset-method.patch: USB: documentation update for the pre_reset method. - patches.drivers/USB3-0074-usb-hcd-don-t-return-0-on-error-in-usb_add_hcd.patch: usb/hcd: don't return 0 on error in usb_add_hcd(). - patches.drivers/USB3-0077-USB-ohci-s3c2410-use-__devinit-and-__devexit-macros-for-prob.patch: USB: ohci-s3c2410: use __devinit and __devexit macros for probe and remove. - patches.drivers/USB3-0078-USB-ohci-s3c2410-use-resource_size.patch: USB: ohci-s3c2410: use resource_size(). - patches.drivers/USB3-0080-USB-add-queued-unlinks-test-case-to-usbtest-driver.patch: USB: add queued-unlinks test case to usbtest driver. - patches.drivers/USB3-0081-usb-core-Change-usb_create_sysfs_intf_files-return-type-to-v.patch: usb: core: Change usb_create_sysfs_intf_files()' return type to void. - patches.drivers/USB3-0082-xhci-hcd-Include-linux-slab.h-in-xhci-pci.c.patch: xhci-hcd: Include in xhci-pci.c. - patches.drivers/USB3-0083-SCSI-usb-storage-do-not-increment-cmd-serial_number.patch: usb-storage: do not increment cmd->serial_number. - patches.drivers/USB3-0084-usb-usbtest-print-super-on-super-speed.patch: usb/usbtest: print super on super speed. - patches.drivers/USB3-0085-usb-usbtest-fix-test10-on-superpseed.patch: usb/usbtest: fix test10 on superpseed. - patches.drivers/USB3-0087-xhci-Make-xHCI-driver-endian-safe.patch: xhci: Make xHCI driver endian-safe. - patches.drivers/USB3-0088-xhci-Add-rmb-between-reading-event-validity-event-data-acces.patch: xhci: Add rmb() between reading event validity & event data access. - patches.drivers/USB3-0089-xhci-Add-an-assertion-to-check-for-virt_dev-0-bug.patch: xhci: Add an assertion to check for virt_dev=0 bug. - patches.drivers/USB3-0090-xhci-Remove-recursive-call-to-xhci_handle_event.patch: xhci: Remove recursive call to xhci_handle_event. - patches.drivers/USB3-0091-usb-ch9-use-proper-endianess-for-wBytesPerInterval.patch: usb/ch9: use proper endianess for wBytesPerInterval. - patches.drivers/USB3-0092-xHCI-warm-reset-support.patch: xHCI: warm reset support. - patches.drivers/USB3-0093-xHCI-Clear-link-state-change-support.patch: xHCI: Clear link state change support. - patches.drivers/USB3-0094-xHCI-Set-link-state-support.patch: xHCI: Set link state support. - patches.drivers/USB3-0095-xHCI-report-USB3.0-portstatus-comply-with-USB3.0-specificati.patch: xHCI: report USB3.0 portstatus comply with USB3.0 specification. - patches.drivers/USB3-0096-usbcore-Refine-USB3.0-device-suspend-and-resume.patch: usbcore: Refine USB3.0 device suspend and resume. - patches.drivers/USB3-0097-usbcore-warm-reset-USB3-port-in-SS.Inactive-state.patch: usbcore: warm reset USB3 port in SS.Inactive state. - patches.drivers/USB3-0098-xhci-Remove-sparse-warning-about-cmd_status.patch: xhci: Remove sparse warning about cmd_status. - patches.drivers/USB3-0099-xhci-1.0-Only-interrupt-on-short-packet-for-IN-EPs.patch: xhci 1.0: Only interrupt on short packet for IN EPs.- Enable the first bit of USB 3 2.6.39 -> 3.0 patches, again. - Update config files. - patches.drivers/USB3-0001-net-convert-SMSC-USB-net-drivers-to-hw_features.patch: Delete.- patches.arch/s390-33-01-qeth-nr-out-queues: qeth: wrong number of output queues for HiperSockets (bnc#711765). - patches.drivers/ehea-statsbuf-GFP_KERNEL: ehea: Allocate stats buffer with GFP_KERNEL (bnc#711592).- patches.suse/btrfs-add-btrfs_trim_fs-to-handle-FITRIM.patch: Btrfs: add btrfs_trim_fs() to handle FITRIM (FATE#306586). - patches.suse/btrfs-drop-unused-parameter-from-btrfs_release_path.patch: Refresh. - patches.suse/btrfs-fix-oops-of-empty-filesystem-after-balance.patch: Refresh. - patches.suse/btrfs-make-free-space-cache-code-generic.patch: Refresh. - patches.suse/btrfs-support-reading-writing-on-disk-free-ino-cache.patch: Refresh.- and yet, even when trying to just "revert all my previous changes" to fix the build, it breaks the build again. It's time for some wine... - Update config files.- comment out the last USB3 update from series.conf, as I obviously can't get it right this evening. Hopefully in the morning, with a new start, all will be better and I can actually get it right without breaking the build, three times in a row...- fix up build breakage in: patches.drivers/USB3-0027-usb-don-t-enter-usb-subdirectories-directly.patch:- Fix VLAN on tg3 and cxgb4 (bnc#709300). - patches.drivers/0131-tg3-Fix-inline-keyword-usage.patch: Refresh. - patches.drivers/0143-net-tg3-convert-to-hw_features.patch: Refresh. - patches.drivers/0163-tg3-Convert-u32-flag-flg2-flg3-uses-to-bitmap.patch: Refresh. - patches.drivers/0166-tg3-Set-tx-bug-flags-for-more-devices.patch: Refresh. - patches.drivers/0175-tg3-Consolidate-all-netdev-feature-assignments.patch: Refresh. - patches.drivers/cxgb4-chelsio-t4-driver-compat: Refresh. - patches.drivers/0113-tg3-Use-new-VLAN-code.patch: Delete. - patches.drivers/cxgb4-update-to-utilize-the-newer-vlan-infrastructure: Delete.- USB 3 2.6.39 -> 3.0, first round of easy patches - Update config files. - patches.drivers/USB3-0001-net-convert-SMSC-USB-net-drivers-to-hw_features.patch: net: convert SMSC USB net drivers to hw_features. - patches.drivers/USB3-0002-usb-plusb-Whitespace.patch: usb: plusb: Whitespace. - patches.drivers/USB3-0003-usb-plusb-Add-support-for-PL-25A1.patch: usb: plusb: Add support for PL-25A1. - patches.drivers/USB3-0004-usb-plusb-Add-debug-to-reset-function.patch: usb: plusb: Add debug to reset function. - patches.drivers/USB3-0005-rndis_host-Poll-status-before-control-channel-where-necessar.patch: rndis_host: Poll status before control channel where necessary. - patches.drivers/USB3-0008-USB-change-the-way-we-initialize-format-strings.patch: USB: change the way we initialize format strings. - patches.drivers/USB3-0009-USB-cdc-acm-add-missing-newlines-to-dev_dbg-and-dev_err.patch: USB: cdc-acm: add missing newlines to dev_dbg and dev_err. - patches.drivers/USB3-0010-USB-cdc-acm-use-dev_err-to-report-failed-allocations.patch: USB: cdc-acm: use dev_err to report failed allocations. - patches.drivers/USB3-0011-USB-cdc-acm-clean-up-dev_err-and-dev_dbg.patch: USB: cdc-acm: clean up dev_err and dev_dbg. - patches.drivers/USB3-0012-USB-cdc-acm-replace-dbg-macros-with-dev_dbg.patch: USB: cdc-acm: replace dbg macros with dev_dbg. - patches.drivers/USB3-0013-USB-cdc-acm-clean-up-verbose-debug.patch: USB: cdc-acm: clean up verbose debug. - patches.drivers/USB3-0014-USB-cdc-acm-use-dev_vdbg-in-read-write-paths.patch: USB: cdc-acm: use dev_vdbg in read/write paths. - patches.drivers/USB3-0015-USB-cdc-acm-remove-version-information-and-changelog.patch: USB: cdc-acm: remove version information and changelog. - patches.drivers/USB3-0016-USB-cdc-acm-remove-superfluous-prototype.patch: USB: cdc-acm: remove superfluous prototype. - patches.drivers/USB3-0017-USB-cdc-acm-remove-unused-drain-delay-code.patch: USB: cdc-acm: remove unused drain-delay code. - patches.drivers/USB3-0018-USB-cdc-acm-clean-up-rx_buflimit-references.patch: USB: cdc-acm: clean up rx_buflimit references. - patches.drivers/USB3-0019-USB-cdc-acm-clean-up-open-error-handling.patch: USB: cdc-acm: clean up open error handling. - patches.drivers/USB3-0020-USB-cdc-acm-clean-up-read-urb-allocation.patch: USB: cdc-acm: clean up read urb allocation. - patches.drivers/USB3-0021-USB-cdc-acm-re-write-read-processing.patch: USB: cdc-acm: re-write read processing. - patches.drivers/USB3-0023-USB-remove-dead-code-from-usb_deregister_dev.patch: USB: remove dead code from usb_deregister_dev(). - patches.drivers/USB3-0025-USB-sl811-add-Kconfig-option-for-ISOCHRONOUS-mode.patch: USB: sl811: add Kconfig option for ISOCHRONOUS mode. - patches.drivers/USB3-0027-usb-don-t-enter-usb-subdirectories-directly.patch: usb: don't enter usb subdirectories directly. - patches.drivers/USB3-0028-USB-UHCI-remove-uses-of-hcd-state.patch: USB: UHCI: remove uses of hcd->state. - patches.drivers/USB3-0029-USB-UHCI-don-t-try-to-revive-a-dead-controller.patch: USB: UHCI: don't try to revive a dead controller. - patches.drivers/USB3-0030-usb-ftdi-elan-Drop-__TIME__-usage.patch: usb: ftdi-elan: Drop __TIME__ usage. - patches.drivers/USB3-0031-usb-u132-hcd-Drop-__TIME__-usage.patch: usb: u132-hcd: Drop __TIME__ usage. - patches.drivers/USB3-0038-Revert-USB-sam-ba-add-driver-for-Atmel-SAM-Boot-Assistant-SA.patch: Revert "USB: sam-ba: add driver for Atmel SAM Boot Assistant (SAM-BA)". - patches.drivers/USB3-0045-rndis_host-Quirky-devices-are-still-point-to-point.patch: rndis_host: Quirky devices are still 'point-to-point'. - patches.drivers/USB3-0046-drivers-net-usb-usbnet.c-Use-FIELD_SIZEOF-macro-in-usbnet_in.patch: drivers/net/usb/usbnet.c: Use FIELD_SIZEOF macro in usbnet_init() function.- Fix up some USB3 fuzz issues that got introduced with the ehci and cdc_ether changes. - patches.drivers/USB3-0001-net-use-helpers-to-access-mc-list-v2.patch: Refresh. - patches.drivers/USB3-0001-net-use-helpers-to-access-uc-list-v2.patch: Refresh. - patches.drivers/USB3-0002-drivers-usb-Remove-unnecessary-return-s-from-void-functions.patch: Refresh. - patches.drivers/USB3-0036-USB-remove-bogus-USB_PORT_FEAT_-_SPEED-symbols.patch: Refresh. - patches.drivers/USB3-0037-USB-straighten-out-port-feature-vs.-port-status-usage.patch: Refresh. - patches.drivers/USB3-0040-usb-serial-Use-tty_port-version-console-instead-of-usb_seria.patch: Refresh. - patches.drivers/USB3-0044-USB-xhci-Add-watchdog-timer-for-URB-cancellation.patch: Refresh. - patches.drivers/USB3-0046-USB-ehci-Minor-constant-fix-for-SCHEDULE_SLOP.patch: Refresh. - patches.drivers/USB3-0047-USB-ehci-Respect-IST-when-scheduling-new-split-iTDs.patch: Refresh. - patches.drivers/USB3-0049-USB-add-a-remove-hardware-sysfs-attribute.patch: Refresh. - patches.drivers/USB3-0049-USB-xhci-Fix-error-path-when-configuring-endpoints.patch: Refresh. - patches.drivers/USB3-0050-USB-xhci-Refactor-code-to-free-or-cache-endpoint-rings.patch: Refresh. - patches.drivers/USB3-0051-USB-xhci-Allow-allocation-of-commands-without-input-contexts.patch: Refresh. - patches.drivers/USB3-0052-USB-EHCI-EHCI-1.1-addendum-preparation.patch: Refresh. - patches.drivers/USB3-0052-usb-fix-serial-build-when-SYSRQ-is-disabled.patch: Refresh. - patches.drivers/USB3-0053-USB-EHCI-EHCI-1.1-addendum-Basic-LPM-feature-support.patch: Refresh. - patches.drivers/USB3-0054-USB-EHCI-EHCI-1.1-addendum-Enable-Per-port-change-detect-bit.patch: Refresh. - patches.drivers/USB3-0055-USB-xhci-Notify-the-xHC-when-a-device-is-reset.patch: Refresh. - patches.drivers/USB3-0056-USB-Add-call-to-notify-xHC-of-a-device-reset.patch: Refresh. - patches.drivers/USB3-0057-USB-ehci-add-call-of-free_cached_itd_list-function-in-disabl.patch: Refresh. - patches.drivers/USB3-0057-USB-pl2303-increase-the-bulk-out-buffer-size-to-256-byte.patch: Refresh. - patches.drivers/USB3-0058-USB-ehci-fix-audio-record-functionality-for-some-Full-speed-.patch: Refresh. - patches.drivers/USB3-0058-USB-pl2303-increase-bulk-in-buffer-size-to-256-byte.patch: Refresh. - patches.drivers/USB3-0068-USB-pl2303-switch-to-generic-read-implementation.patch: Refresh. - patches.drivers/USB3-0073-USB-pl2303-switch-to-generic-write-implementation.patch: Refresh. - patches.drivers/USB3-0074-USB-pl2303-use-generic-close.patch: Refresh. - patches.drivers/USB3-0077-USB-convert-usb_hcd-bitfields-into-atomic-flags.patch: Refresh. - patches.drivers/USB3-0078-USB-remove-the-auto_pm-flag.patch: Refresh. - patches.drivers/USB3-0090-USB-rename-USB_SPEED_VARIABLE-to-USB_SPEED_WIRELESS.patch: Refresh. - patches.drivers/USB3-0109-USB-xhci-Add-memory-allocation-for-USB3-bulk-streams.patch: Refresh. - patches.drivers/USB3-0110-USB-xhci-Correct-assumptions-about-number-of-rings-per-endpo.patch: Refresh. - patches.drivers/USB3-0113-USB-ehci-Elide-I-O-watchdog-on-NEC-parts.patch: Refresh. - patches.drivers/USB3-0114-USB-prepare-for-changover-to-Runtime-PM-framework.patch: Refresh. - patches.drivers/USB3-0119-USB-EHCI-remove-dead-code-in-the-periodic-scheduler.patch: Refresh. - patches.drivers/USB3-0126-USB-xhci-Make-reverting-an-alt-setting-unfailable.patch: Refresh. - patches.drivers/USB3-0129-USB-Check-bandwidth-when-switching-alt-settings.patch: Refresh. - patches.drivers/USB3-0131-USB-remove-the-usb_host_ss_ep_comp-structure.patch: Refresh. - patches.drivers/USB3-0133-USB-change-locking-for-device-level-autosuspend.patch: Refresh. - patches.drivers/USB3-0133-USB-xhci-Avoid-double-free-after-streams-are-disabled.patch: Refresh. - patches.drivers/USB3-0134-USB-consolidate-remote-wakeup-routines.patch: Refresh. - patches.drivers/USB3-0136-USB-implement-usb_enable_autosuspend.patch: Refresh. - patches.drivers/USB3-0144-wimax-i2400m-usb-remove-unnecessary-power-management.patch: Refresh. - patches.drivers/USB3-0145-USB-cdc_ether-remove-unneeded-check.patch: Refresh. - patches.drivers/USB3-0148-USB-hub-make-USB-device-id-constant.patch: Refresh. - patches.drivers/USB3-0149-const-constify-remaining-dev_pm_ops.patch: Refresh. - patches.drivers/USB3-0161-USB-xhci-Set-stream-ID-to-0-after-cleaning-up-stalls.patch: Refresh. - patches.drivers/USB3-0169-USB-pl2303-use-tty_insert_flip_string_fixed_flag.patch: Refresh. - patches.drivers/USB3-0193-usbnet-use-eth-d-name-for-known-ethernet-devices.patch: Refresh. - patches.drivers/USB3-0200-USB-Fix-duplicate-sysfs-problem-after-device-reset.patch: Refresh. - patches.drivers/USB3-0217-USB-ehci-phy-low-power-mode-bug-fixing.patch: Refresh. - patches.drivers/USB3-0231-USB-tty-Prune-uses-of-tty_request_room-in-the-USB-layer.patch: Refresh. - patches.drivers/USB3-0239-USB-pl2303-initial-TIOCGSERIAL-support.patch: Refresh. - patches.drivers/USB3-0243-USB-pl2303-remove-unnecessary-reset-of-usb_device-in-urbs.patch: Refresh. - patches.drivers/USB3-0245-echi-dbgp-Add-kernel-debugger-support-for-the-usb-debug-port.patch: Refresh. - patches.drivers/USB3-0306-drivers-net-usb-Add-new-driver-ipheth.patch: Refresh. - patches.drivers/USB3-0318-USB-xhci-Set-EP0-dequeue-ptr-after-reset-of-configured-devic.patch: Refresh. - patches.drivers/USB3-0318-usb-Increase-timeout-value-for-device-reset.patch: Refresh. - patches.drivers/usb3-paper-over-warn_on-warning-in-drivers-usb-core-driver.c.patch: Refresh.- Fix up the cdc_ether mess for wwan devices. This fixes the build error that was previously happening, and now properly detects a wider range of devices and tells userspace how to handle them correctly. - patches.drivers/USB3-0001-usbnet-Use-wwan-d-interface-name-for-mobile-broadband-device.patch: Refresh. - patches.drivers/USB3-0007-cdc_ether-Identify-MBM-devices-by-GUID-in-MDLM-descriptor.patch: cdc_ether: Identify MBM devices by GUID in MDLM descriptor. - patches.drivers/USB3-0012-cdc-ether-Implement-reset_resume.patch: Refresh. - patches.drivers/USB3-0013-usbnet-cdc-ether-Autosuspend-for-online-devices.patch: Refresh. - patches.drivers/USB3-0191-net-usb-Ethernet-quirks-for-the-LG-VL600-4G-modem.patch: Refresh. - patches.drivers/USB3-0224-cdc_ether-new-PID-for-Ericsson-C3607w-to-the-whitelist-resub.patch: cdc_ether: new PID for Ericsson C3607w to the whitelist (resubmit). - patches.drivers/USB3-0242-usbnet-add-support-for-some-Huawei-modems-with-cdc-ether-por.patch: usbnet: add support for some Huawei modems with cdc-ether ports. - patches.drivers/USB3-0251-net-usb-mark-LG-VL600-LTE-modem-ethernet-interface-as-WWAN.patch: Refresh. - patches.drivers/USB3-0321-cdc_ether-fix-autosuspend-for-mbm-devices.patch: cdc_ether: fix autosuspend for mbm devices.- USB 3. Final chunk of .38 -> .39 patches. - patches.drivers/USB3-0217-USB-host-Fix-lockdep-warning-in-AMD-PLL-quirk.patch: USB host: Fix lockdep warning in AMD PLL quirk. - patches.drivers/USB3-0221-usb-Fix-qcserial-memory-leak-on-rmmod.patch: usb: Fix qcserial memory leak on rmmod. - patches.drivers/USB3-0222-usb-qcserial-avoid-pointing-to-freed-memory.patch: usb: qcserial avoid pointing to freed memory. - patches.drivers/USB3-0223-usb-qcserial-add-missing-errorpath-kfrees.patch: usb: qcserial add missing errorpath kfrees. - patches.drivers/USB3-0228-USB-xhci-unsigned-char-never-equals-1.patch: USB: xhci: unsigned char never equals -1. - patches.drivers/USB3-0229-USB-xhci-remove-excessive-inline-markings.patch: USB: xhci - remove excessive 'inline' markings. - patches.drivers/USB3-0230-USB-xhci-simplify-logic-of-skipping-missed-isoc-TDs.patch: USB: xhci: simplify logic of skipping missed isoc TDs. - patches.drivers/USB3-0232-xhci-Fix-NULL-pointer-deref-in-handle_port_status.patch: xhci: Fix NULL pointer deref in handle_port_status(). - patches.drivers/USB3-0233-USB-xhci-also-free-streams-when-resetting-devices.patch: USB: xhci - also free streams when resetting devices. - patches.drivers/USB3-0234-USB-Fix-unplug-of-device-with-active-streams.patch: USB: Fix unplug of device with active streams. - patches.drivers/USB3-0235-usbcore-Bug-fix-system-can-t-suspend-with-USB3.0-device-conn.patch: usbcore: Bug fix: system can't suspend with USB3.0 device connected to USB3.0 hub. - patches.drivers/USB3-0236-xhci-Tell-USB-core-both-roothubs-lost-power.patch: xhci: Tell USB core both roothubs lost power. - patches.drivers/USB3-0237-xHCI-Implement-AMD-PLL-quirk.patch: xHCI: Implement AMD PLL quirk. - patches.drivers/USB3-0238-usbnet-Fix-up-FLAG_POINTTOPOINT-and-FLAG_MULTI_PACKET-overla.patch: usbnet: Fix up 'FLAG_POINTTOPOINT' and 'FLAG_MULTI_PACKET' overlaps. - patches.drivers/USB3-0240-cdc_ncm-fix-short-packet-issue-on-some-devices.patch: cdc_ncm: fix short packet issue on some devices. - patches.drivers/USB3-0241-usbnet-Resubmit-interrupt-URB-if-device-is-open.patch: usbnet: Resubmit interrupt URB if device is open. - patches.drivers/USB3-0246-smsc95xx-fix-reset-check.patch: smsc95xx: fix reset check. - patches.drivers/USB3-0248-xHCI-Clear-PLC-in-xhci_bus_resume.patch: xHCI: Clear PLC in xhci_bus_resume(). - patches.drivers/USB3-0249-usbnet-runtime-pm-fix-out-of-memory.patch: usbnet: runtime pm: fix out of memory. - patches.drivers/USB3-0250-ipheth-Properly-distinguish-length-and-alignment-in-URBs-and.patch: ipheth: Properly distinguish length and alignment in URBs and skbs. - patches.drivers/USB3-0251-net-usb-mark-LG-VL600-LTE-modem-ethernet-interface-as-WWAN.patch: net/usb: mark LG VL600 LTE modem ethernet interface as WWAN. - patches.drivers/USB_xhci_fix_OS_want_to_own_HC.patch: Refresh.- more USB 3 updates, .39 patches still. - Update config files. - patches.drivers/USB3-0160-xhci-Fixes-for-suspend-resume-of-shared-HCDs.patch: xhci: Fixes for suspend/resume of shared HCDs. - patches.drivers/USB3-0161-xhci-Return-canceled-URBs-immediately-when-host-is-halted.patch: xhci: Return canceled URBs immediately when host is halted. - patches.drivers/USB3-0162-USB-Remove-bogus-USB_PORT_STAT_SUPER_SPEED-symbol.patch: USB: Remove bogus USB_PORT_STAT_SUPER_SPEED symbol. - patches.drivers/USB3-0163-USB-Disable-auto-suspend-for-USB-3.0-hubs.patch: USB: Disable auto-suspend for USB 3.0 hubs. - patches.drivers/USB3-0164-xhci-Update-internal-dequeue-pointers-after-stalls.patch: xhci: Update internal dequeue pointers after stalls. - patches.drivers/USB3-0166-xhci-Clean-up-cycle-bit-math-used-during-stalls.patch: xhci: Clean up cycle bit math used during stalls. - patches.drivers/USB3-0167-USB-Add-support-for-SuperSpeed-isoc-endpoints.patch: USB: Add support for SuperSpeed isoc endpoints. - patches.drivers/USB3-0168-NET-cdc-phonet-fix-stop-queue-handling.patch: NET: cdc-phonet, fix stop-queue handling. - patches.drivers/USB3-0170-USB-Hub-Do-not-call-device_set_wakeup_capable-under-spinlock.patch: USB / Hub: Do not call device_set_wakeup_capable() under spinlock. - patches.drivers/USB3-0174-NET-smsc95xx-don-t-use-stack-for-async-writes-to-the-device.patch: NET: smsc95xx: don't use stack for async writes to the device. - patches.drivers/USB3-0178-USB-Do-not-pass-negative-length-to-snoop_urb.patch: USB: Do not pass negative length to snoop_urb(). - patches.drivers/USB3-0185-usb-wwan-fix-compilation-without-CONFIG_PM_RUNTIME.patch: usb: wwan: fix compilation without CONFIG_PM_RUNTIME. - patches.drivers/USB3-0186-USB-Fix-bad-dma-problem-on-WDM-device-disconnect.patch: USB: Fix 'bad dma' problem on WDM device disconnect. - patches.drivers/USB3-0191-net-usb-Ethernet-quirks-for-the-LG-VL600-4G-modem.patch: net/usb: Ethernet quirks for the LG-VL600 4G modem. - patches.drivers/USB3-0193-usbnet-use-eth-d-name-for-known-ethernet-devices.patch: usbnet: use eth%d name for known ethernet devices. - patches.drivers/USB3-0194-usb-serial-fix-function-args-warnings-dropping-filp.patch: usb/serial: fix function args warnings, dropping *filp. - patches.drivers/USB3-0195-net-Add-support-for-SMSC-LAN9530-LAN9730-and-LAN89530.patch: net: Add support for SMSC LAN9530, LAN9730 and LAN89530. - patches.drivers/USB_xhci_fix_OS_want_to_own_HC.patch: Refresh.- more USB 3 updates, .39 patches still. - Update config files. - patches.drivers/USB3-0103-USB-host-Move-AMD-PLL-quirk-to-pci-quirks.c.patch: USB host: Move AMD PLL quirk to pci-quirks.c. - patches.drivers/USB3-0105-wusb-fix-find_first_zero_bit-return-value-check.patch: wusb: fix find_first_zero_bit() return value check. - patches.drivers/USB3-0107-USB-Remove-delay_t-unused-variable-from-sierra_ms.c-driver-i.patch: USB: Remove delay_t unused variable from sierra_ms.c driver initialisation code. - patches.drivers/USB3-0108-USB-Remove-unused-is_iso-from-fsl_udc_core.c.patch: USB: Remove unused is_iso from fsl_udc_core.c. - patches.drivers/USB3-0109-USB-Remove-unused-timeout-from-io_edgeport.c.patch: USB: Remove unused timeout from io_edgeport.c. - patches.drivers/USB3-0111-USB-move-usbcore-away-from-hcd-state.patch: USB: move usbcore away from hcd->state. - patches.drivers/USB3-0114-USB-OHCI-use-pci_dev-revision.patch: USB: OHCI: use pci_dev->revision. - patches.drivers/USB3-0116-Staging-Merge-ENE-UB6250-SD-card-codes-from-keucr-to-drivers.patch: Staging: Merge ENE UB6250 SD card codes from keucr to drivers/usb/storage. - patches.drivers/USB3-0118-USB-serial-option-Apply-OPTION_BLACKLIST_SENDSETUP-also-for-.patch: USB: serial: option: Apply OPTION_BLACKLIST_SENDSETUP also for ZTE MF626. - patches.drivers/USB3-0119-USB-serial-ftdi_sio-adding-support-for-OLIMEX-ARM-USB-OCD-H.patch: USB: serial: ftdi_sio: adding support for OLIMEX ARM-USB-OCD-H. - patches.drivers/USB3-0120-ehci-atmel-fix-section-mismatch-warning.patch: ehci-atmel: fix section mismatch warning. - patches.drivers/USB3-0121-USB-Only-treat-lasting-over-current-conditions-as-errors.patch: USB: Only treat lasting over-current conditions as errors. - patches.drivers/USB3-0126-USB-ene_ub6250-fix-memory-leak-in-ene_load_bincode.patch: USB: ene_ub6250: fix memory leak in ene_load_bincode(). - patches.drivers/USB3-0127-usb-storage-ene_ub6250-depends-on-USB_STORAGE.patch: usb-storage: ene_ub6250 depends on USB_STORAGE. - patches.drivers/USB3-0128-usb-storage-fix-menu-ordering.patch: usb-storage: fix menu ordering. - patches.drivers/USB3-0130-xhci-Remove-old-no-op-test.patch: xhci: Remove old no-op test. - patches.drivers/USB3-0131-USB-Remove-bitmap-define-from-hcd.h.patch: USB: Remove bitmap #define from hcd.h. - patches.drivers/USB3-0132-USB-Fix-usb_add_hcd-checkpatch-errors.patch: USB: Fix usb_add_hcd() checkpatch errors. - patches.drivers/USB3-0133-xhci-Rework-port-suspend-structures-for-limited-ports.patch: xhci: Rework port suspend structures for limited ports. - patches.drivers/USB3-0134-xhci-Rename-variables-and-reduce-register-reads.patch: xhci: Rename variables and reduce register reads. - patches.drivers/USB3-0135-xHCI-Remove-redundant-variable-in-xhci_resume.patch: xHCI: Remove redundant variable in xhci_resume(). - patches.drivers/USB3-0136-xHCI-prolong-host-controller-halt-time-limit.patch: xHCI: prolong host controller halt time limit. - patches.drivers/USB3-0137-xhci-Remove-references-to-HC_STATE_HALT.patch: xhci: Remove references to HC_STATE_HALT. - patches.drivers/USB3-0138-usb-Initialize-hcd-state-roothubs.patch: usb: Initialize hcd->state roothubs. - patches.drivers/USB3-0139-xhci-Remove-references-to-HC_STATE_RUNNING.patch: xhci: Remove references to HC_STATE_RUNNING. - patches.drivers/USB3-0140-USB-3.0-Hub-Changes.patch: USB 3.0 Hub Changes. - patches.drivers/USB3-0141-USB-Clear-warm-port-reset-change.patch: USB: Clear "warm" port reset change. - patches.drivers/USB3-0142-usb-Make-USB-3.0-roothub-have-a-SS-EP-comp-descriptor.patch: usb: Make USB 3.0 roothub have a SS EP comp descriptor. - patches.drivers/USB3-0143-xhci-Modify-check-for-TT-info.patch: xhci: Modify check for TT info. - patches.drivers/USB3-0144-xhci-Always-use-usb_hcd-in-URB-instead-of-converting-xhci_hc.patch: xhci: Always use usb_hcd in URB instead of converting xhci_hcd. - patches.drivers/USB3-0145-xhci-Change-hcd_priv-into-a-pointer.patch: xhci: Change hcd_priv into a pointer. - patches.drivers/USB3-0146-usb-Make-usb_hcd_pci_probe-labels-more-descriptive.patch: usb: Make usb_hcd_pci_probe labels more descriptive. - patches.drivers/USB3-0147-usb-Refactor-irq-enabling-out-of-usb_add_hcd.patch: usb: Refactor irq enabling out of usb_add_hcd(). - patches.drivers/USB3-0148-usb-Change-usb_hcd-bandwidth_mutex-to-a-pointer.patch: usb: Change usb_hcd->bandwidth_mutex to a pointer. - patches.drivers/USB3-0149-usb-Store-bus-type-in-usb_hcd-not-in-driver-flags.patch: usb: Store bus type in usb_hcd, not in driver flags. - patches.drivers/USB3-0150-usb-Make-core-allocate-resources-per-PCI-device.patch: usb: Make core allocate resources per PCI-device. - patches.drivers/USB3-0151-USB-Set-usb_hcd-state-and-flags-for-shared-roothubs.patch: USB: Set usb_hcd->state and flags for shared roothubs. - patches.drivers/USB3-0152-xhci-Index-with-a-port-array-instead-of-PORTSC-addresses.patch: xhci: Index with a port array instead of PORTSC addresses. - patches.drivers/USB3-0153-xhci-Refactor-bus-suspend-state-into-a-struct.patch: xhci: Refactor bus suspend state into a struct. - patches.drivers/USB3-0154-xhci-Change-xhci_find_slot_id_by_port-API.patch: xhci: Change xhci_find_slot_id_by_port() API. - patches.drivers/USB3-0155-xhci-Register-second-xHCI-roothub.patch: xhci: Register second xHCI roothub. - patches.drivers/USB3-0156-xhci-Return-a-USB-3.0-hub-descriptor-for-USB3-roothub.patch: xhci: Return a USB 3.0 hub descriptor for USB3 roothub. - patches.drivers/USB3-0157-xhci-Limit-roothub-ports-to-15-USB3-31-USB2-ports.patch: xhci: Limit roothub ports to 15 USB3 & 31 USB2 ports. - patches.drivers/USB3-0158-xhci-Make-roothub-functions-deal-with-device-removal.patch: xhci: Make roothub functions deal with device removal. - patches.drivers/USB3-0159-xhci-Fix-re-init-on-power-loss-after-resume.patch: xhci: Fix re-init on power loss after resume. - patches.suse/kdb-common: Refresh.- More USB3 patches - patches.drivers/USB3-0067-USB-serial-keyspan-Fix-possible-null-pointer-dereference.patch: USB: serial: keyspan: Fix possible null pointer dereference. - patches.drivers/USB3-0068-USB-serial-mos7720-Fix-possible-null-pointer-dereference.patch: USB: serial: mos7720: Fix possible null pointer dereference. - patches.drivers/USB3-0074-USB-use-device-number-instead-of-address.patch: USB: use "device number" instead of "address". - patches.drivers/USB3-0077-USB-serial-drivers-need-to-use-larger-bulk-in-buffers.patch: USB: serial drivers need to use larger bulk-in buffers. - patches.drivers/USB3-0078-USB-fix-unsafe-USB_SS_MAX_STREAMS-definition.patch: USB: fix unsafe USB_SS_MAX_STREAMS() definition. - patches.drivers/USB3-0079-USB-opticon-add-rts-and-cts-support.patch: USB: opticon: add rts and cts support. - patches.drivers/USB3-0080-drivers-usb-wusbhc.h-remove-one-to-many-l-s-in-the-word.patch: drivers:usb:wusbhc.h remove one to many l's in the word. - patches.drivers/USB3-0082-usb-host-uhci-hcd.c-Remove-one-to-many-n-s-in-a-word.patch: usb: host: uhci-hcd.c Remove one to many n's in a word. - patches.drivers/USB3-0083-usb-core-hub.c-Remove-one-to-many-n-s-in-a-word.patch: usb: core: hub.c Remove one to many n's in a word. - patches.drivers/USB3-0091-USB-serial-keyspan_pda-fix-potential-tty-NULL-dereferences.patch: USB: serial/keyspan_pda, fix potential tty NULL dereferences. - patches.suse/kdb-common: Refresh.- Update Xen patches to 2.6.32.44 and c/s 1102. - patches.xen/xen-blkfront-hvm-no-cdrom: In HVM guests do not take over the CDROM device (bnc#645893). - patches.xen/xen-x86-mmcfg-ACPI-reserved: x86: report ACPI-reserved state of PCI MMCONFIG region to hypervisor. - patches.xen/xen3-001-cpuidle__fail_to_register_if_CONFIG_CPU_IDLE.patch: cpuidle: fail to register if !CONFIG_CPU_IDLE (fate#311818,fate#311942). - patches.xen/xen3-005-intel_idle__native_hardware_cpuidle_driver_for_latest_Intel_processors.patch: intel_idle: native hardware cpuidle driver for latest Intel processors (fate#311818,fate#311942). - patches.xen/xen3-0654-drm-ttm-add-pool-wc-uc-page-allocator-V3.patch: drm/ttm: add pool wc/uc page allocator V3 (fate#310916). - patches.xen/xen3-function-graph-x86-replace-unbalanced-ret-with-jmp: function-graph/x86: Replace unbalanced ret with jmp.- Disable TPMs on power. They don't seem to exist and loading their drivers causes Oopses (bnc#711297)- some tty patches needed for the USB 3 code (well, for the drivers) - patches.drivers/USB3-0056-tiocmget-kill-off-the-passing-of-the-struct-file.patch: tiocmget: kill off the passing of the struct file. - patches.drivers/USB3-0057-tiocmset-kill-the-file-pointer-argument.patch: tiocmset: kill the file pointer argument. - patches.drivers/USB3-0058-tty-remove-filp-from-the-USB-tty-ioctls.patch: tty: remove filp from the USB tty ioctls. - patches.drivers/USB3-0059-tty-now-phase-out-the-ioctl-file-pointer-for-good.patch: tty: now phase out the ioctl file pointer for good.- USB 3 update .38 -> .39, first portion - Update config files. - patches.drivers/USB3-0001-USB-add-helper-to-convert-USB-error-codes.patch: USB: add helper to convert USB error codes. - patches.drivers/USB3-0002-USB-Core-Fix-minor-coding-style-issues.patch: USB: Core: Fix minor coding style issues. - patches.drivers/USB3-0003-USB-wusbcore-rh.c-Typo-change-desciptor-to-descriptor.patch: USB: wusbcore: rh.c Typo change desciptor to descriptor. - patches.drivers/USB3-0004-USB-ehci-dbgp-fix-typo-in-startup-message.patch: USB: ehci-dbgp: fix typo in startup message. - patches.drivers/USB3-0006-USB-ftdi_sio-fix-resolution-of-2232H-baud-rate-dividers.patch: USB: ftdi_sio: fix resolution of 2232H baud rate dividers. - patches.drivers/USB3-0007-USB-usb_storage-add-ums-realtek-driver.patch: USB: usb_storage: add ums-realtek driver. - patches.drivers/USB3-0008-USB-usbtest-Add-tests-to-ensure-HCDs-can-accept-byte-aligned.patch: USB: usbtest - Add tests to ensure HCDs can accept byte aligned buffers. - patches.drivers/USB3-0012-USB-serial-mct_u232-added-_ioctl-_msr_to_icount-and-_get_ico.patch: USB: serial: mct_u232: added _ioctl, _msr_to_icount and _get_icount functions. - patches.drivers/USB3-0015-USB-host-Move-AMD-PLL-quirk-to-pci-quirks.c.patch: USB host: Move AMD PLL quirk to pci-quirks.c. - patches.drivers/USB3-0016-USB-EHCI-Remove-dead-code-from-ehci-sched.c.patch: USB: EHCI: Remove dead code from ehci-sched.c. - patches.drivers/USB3-0017-USB-EHCI-Cleanup-and-rewrite-ehci_vdgb.patch: USB: EHCI: Cleanup and rewrite ehci_vdgb(). - patches.drivers/USB3-0018-USB-EHCI-Rearrange-EHCI_URB_TRACE-code-to-avoid-GCC-4.6-warn.patch: USB: EHCI: Rearrange EHCI_URB_TRACE code to avoid GCC-4.6 warnings. - patches.drivers/USB3-0019-USB-EHCI-Rearrange-create_companion_file-to-avoid-GCC-4.6-wa.patch: USB: EHCI: Rearrange create_companion_file() to avoid GCC-4.6 warnings. - patches.drivers/USB3-0020-USB-usbmon-fix-up-docs-and-text-API-for-sparse-ISO.patch: USB: usbmon: fix-up docs and text API for sparse ISO. - patches.drivers/USB3-0021-USB-HCD-Add-usb_hcd-prefix-to-exported-functions.patch: USB: HCD: Add usb_hcd prefix to exported functions. - patches.drivers/USB3-0022-USB-HCD-Add-driver-hooks-for-un-map_urb_for_dma.patch: USB: HCD: Add driver hooks for (un)?map_urb_for_dma. - patches.drivers/USB3-0027-Revert-USB-host-Move-AMD-PLL-quirk-to-pci-quirks.c.patch: Revert "USB host: Move AMD PLL quirk to pci-quirks.c". - patches.drivers/USB3-0033-USB-Mark-EHCI-LPM-functions-as-__maybe_unused.patch: USB: Mark EHCI LPM functions as __maybe_unused. - patches.drivers/USB3-0034-USB-isp1760-Implement-solution-for-erratum-2.patch: USB: isp1760: Implement solution for erratum 2. - patches.drivers/USB3-0036-usb_wwan-fix-error-in-marking-device-busy.patch: usb_wwan: fix error in marking device busy. - patches.drivers/USB3-0037-usb_wwan-fix-runtime-PM-in-error-case.patch: usb_wwan: fix runtime PM in error case. - patches.drivers/USB3-0038-usb_wwan-data-consistency-in-error-case.patch: usb_wwan: data consistency in error case. - patches.drivers/USB3-0039-usb_wwan-error-case-of-resume.patch: usb_wwan: error case of resume. - patches.drivers/USB3-0040-usb_wwan-fix-error-case-in-close.patch: usb_wwan: fix error case in close(). - patches.drivers/USB3-0041-USB-sierra-error-handling-in-runtime-PM.patch: USB: sierra: error handling in runtime PM. - patches.drivers/USB3-0042-USB-usb.h-Make-comment-match-the-defines-it-describes.patch: USB: usb.h: Make comment match the defines it describes. - patches.drivers/USB3-0043-usb_storage-realtek_cr-patch-fix-sparse-warning.patch: usb_storage: realtek_cr patch: fix sparse warning. - patches.drivers/USB3-0044-usb_storage-realtek_cr-patch-add-const-modifier.patch: usb_storage: realtek_cr patch: add const modifier. - patches.drivers/USB3-0047-USB-don-t-run-ehci_reset-in-ehci_run-for-tdi-device.patch: USB: don't run ehci_reset in ehci_run for tdi device.- patches.suse/btrfs-truncate-pages-from-clone-ioctl-target-range.patch: Btrfs: truncate pages from clone ioctl target range (bnc#698540).- patches.suse/0001-btrfs-Don-t-BUG_ON-errors-from-btrfs_create_subvol_r.patch: Refresh. - patches.suse/0001-btrfs-Handle-NULL-inode-return-from-btrfs_lookup_den.patch: Refresh. - patches.suse/0001-btrfs-don-t-BUG_ON-btrfs_alloc_path-errors.patch: Refresh. - patches.suse/0002-btrfs-Don-t-BUG_ON-alloc_path-errors-in-replay_one_b.patch: Refresh. - patches.suse/0003-btrfs-Don-t-BUG_ON-alloc_path-errors-in-btrfs_trunca.patch: Refresh. - patches.suse/0004-btrfs-Don-t-BUG_ON-alloc_path-errors-in-btrfs_read_l.patch: Refresh. - patches.suse/0005-btrfs-Don-t-BUG_ON-alloc_path-errors-in-btrfs_balanc.patch: Refresh. - patches.suse/0006-btrfs-Don-t-BUG_ON-alloc_path-errors-in-find_next_ch.patch: Refresh. - patches.suse/0007-btrfs-don-t-BUG_ON-allocation-errors-in-btrfs_drop_s.patch: Refresh.- patches.suse/btrfs-reserve-sufficient-space-for-ioctl-clone.patch: Btrfs: reserve sufficient space for ioctl clone (bnc#698540). - patches.suse/patches.suse/btrfs-reserve-sufficient-space-for-ioctl-clone.patch: enable, previous patch fixes the crash.- Update to 2.6.32.44 - patches.arch/x86_64-hpet-64bit-timer.patch: Refresh. - patches.drivers/cciss-update-to-3.6.26.patch: Refresh. - patches.drivers/cciss-update-to-4.6.28.patch: Refresh. - patches.fixes/sched-rtsched_debug-boot-option.patch: Refresh. - patches.suse/cifs-064-add-separate-cred_uid-field-to-sesInfo.patch: Refresh. - patches.suse/cifs-150-convert-cifs_tcp_ses_lock-from-a-rwlock-to-a-sp.patch: Refresh. - patches.suse/perf-allow-for-custom-overflow-handlers: Refresh. - patches.xen/kexec-move-segment-code-i386.patch: Refresh. - patches.xen/kexec-move-segment-code-x86_64.patch: Refresh. - patches.arch/x86-hpet-pre-read: Delete. - patches.drivers/USB3-0203-USB-pl2303.h-checkpatch-cleanups.patch: Delete. - patches.drivers/USB3-0314-USB-pl2303-add-AdLink-ND-6530-USB-IDs.patch: Delete. - patches.fixes/cifs-ensure-credentials-match-when-using-existing-session: Delete. - patches.fixes/gre-fix-netns-vs-proto-registration-ordering: Delete. - patches.fixes/proc-restrict-access-to-proc-pid-io: Delete. - patches.fixes/ses-requesting-a-fault-indication: Delete. - patches.fixes/tunnels-fix-netns-vs-proto-registration-ordering: Delete. - patches.suse/cifs-052-clean-up-cifs_find_smb_ses-try-2.patch: Delete.- patches.suse/0004-netdev-ethtool-RXHASH-flag: Delete (bnc#710969). - patches.drivers/cxgb4-chelsio-t4-driver-compat: Refresh. - patches.suse/0005-ethtool-Add-support-for-vlan-accleration: Refresh.- Fix rtsched_debug "Danger Will Robinson" warnings to only be emitted if the current task is still a realtime task. This will not be the case once the runqueue is throttled, which led to false "potential runaway" warnings pointing the finger at SCHED_OTHER tasks which had been given the CPU while the realtime hog waits for runtime refill. - patches.fixes/sched-rtsched_debug-boot-option.patch: Refresh.Remove arch/x86/kernel/traps.c parts (bnc#708720): - patches.drivers/001-apei_infrastructure.patch: Refresh.- rpm/kernel-binary.spec.in: obsoletes drm-kmp <= 3.0- patches.drm/drm-033-i915-Fix-typo-in-DRM_I915_OVERLAY_PUT_IMAGE-ioctl: drm/i915: Fix typo in DRM_I915_OVERLAY_PUT_IMAGE ioctl define. - patches.drm/drm-034-i915-Initialize-RCS-ring-status-page-address-in: drm/i915: Initialize RCS ring status page address in intel_render_ring_init_dri. - patches.drm/drm-035-i915-load-the-LUT-before-pipe-enable-on-ILK: drm/i915: load the LUT before pipe enable on ILK+. - patches.drm/drm-036-i915-Hold-mode_config-mutex-during-hotplug-procedure: drm/i915: Hold mode_config->mutex during hotplug processing. - patches.drm/drm-037-i915-pch-Fix-integer-math-bugs-in-panel-fitting: drm/i915/pch: Fix integer math bugs in panel fitting. - patches.drm/drm-038-Separate-EDID-Header-Check-from-EDID-Block-Check: drm: Separate EDID Header Check from EDID Block Check. - patches.drm/drm-039-radeon-Extended-DDC-Probing-for-Connectors-with: drm/radeon: Extended DDC Probing for Connectors with Improperly Wired DDC Lines (here: Asus M2A-VM HDMI). - patches.drm/drm-040-radeon-Log-Subsystem-Vendor-and-Device-Information: drm/radeon: Log Subsystem Vendor and Device Information. - patches.drm/drm-041-radeon-Extended-DDC-Probing-for-ECS-A740GM-M-DVI: drm/radeon: Extended DDC Probing for ECS A740GM-M DVI-D Connector.- patches.drivers/coredump-04-use-task-comm-instead-of-unknown.patch: coredump: use task comm instead of (unknown) (bnc#710868 fate#309473). - patches.drivers/coredump-05-escape-in-hostname-and-comm.patch: coredump: escape / in hostname and comm (bnc#710868 fate#309473). - patches.drivers/coredump-06-do_coredump-fix-the-ispipe-error-check.patch: do_coredump: fix the "ispipe" error check (bnc#710868 fate#309473).- patches.drivers/intr-remap-allow-disabling-source-id-checking.patch: intr-remap: allow disabling source id checking (bnc#710352).- patches.drivers/USB3-0059-USB-CDC-NCM-host-driver.patch: fix build error in that linux/asm.h is not a file.- USB 3.0 update .37->.38 patchset - Update config files. - patches.drivers/USB3-0002-usb-ohci-sh-Set-IRQ-as-shared.patch: usb: ohci-sh: Set IRQ as shared. - patches.drivers/USB3-0004-drivers-net-usb-Update-WARN-uses.patch: drivers/net/usb: Update WARN uses. - patches.drivers/USB3-0005-Staging-beceem-Move-ZTE-TU25-s-USB-id-to-the-beceem-module.patch: Staging: beceem: Move ZTE TU25's USB id to the beceem module. - patches.drivers/USB3-0006-USB-ssu100-remove-max_packet_size-calculation.patch: USB: ssu100: remove max_packet_size calculation. - patches.drivers/USB3-0016-usb-USB3.0-ch11-definitions.patch: usb: USB3.0 ch11 definitions. - patches.drivers/USB3-0017-usb-dummy_hcd-code-simplification.patch: usb: dummy_hcd code simplification. - patches.drivers/USB3-0020-hso-Fix-unused-variable-warning.patch: hso: Fix unused variable warning. - patches.drivers/USB3-0022-drivers-usb-host-uhci-hcd.c-Remove-unnecessary-casts-of-pci_.patch: drivers/usb/host/uhci-hcd.c: Remove unnecessary casts of pci_get_drvdata. - patches.drivers/USB3-0032-drivers-net-usb-Remove-unnecessary-casts-of-netdev_priv.patch: drivers/net/usb: Remove unnecessary casts of netdev_priv. - patches.drivers/USB3-0034-USB-ce4100-Add-support-for-CE4100-EHCI-IP-block-to-EHCI-driv.patch: USB: ce4100: Add support for CE4100 EHCI IP block to EHCI driver. - patches.drivers/USB3-0044-usbmon-correct-length-for-isochronous.patch: usbmon: correct length for isochronous. - patches.drivers/USB3-0045-USB-Remove-unnecessary-casts-of-void-ptr-returning-alloc-fun.patch: USB: Remove unnecessary casts of void ptr returning alloc function return values. - patches.drivers/USB3-0046-usb-wwan-implement-TIOCGSERIAL-and-TIOCSSERIAL-to-avoid-bloc.patch: usb-wwan: implement TIOCGSERIAL and TIOCSSERIAL to avoid blocking close(2). - patches.drivers/USB3-0058-usbnet-changes-for-upcoming-cdc_ncm-driver.patch: usbnet: changes for upcoming cdc_ncm driver. - patches.drivers/USB3-0059-USB-CDC-NCM-host-driver.patch: USB CDC NCM host driver. - patches.drivers/USB3-0096-USB-whci-hcd-fix-compiler-warning.patch: USB: whci-hcd: fix compiler warning. - patches.drivers/USB3-0098-USB-host-uhci-q-Fixed-minor-coding-style-issues.patch: USB: host: uhci-q: Fixed minor coding style issues. - patches.drivers/USB3-0101-USB-serial-usb_wwan-Add-missing-uaccess.h-fix-build-failure.patch: USB: serial: usb_wwan: Add missing uaccess.h / fix build failure. - patches.drivers/USB3-0123-USB-uas-Fix-up-the-Sense-IU.patch: USB: uas: Fix up the Sense IU. - patches.drivers/USB3-0124-USB-uas-Use-kzalloc-instead-of-kmalloc.patch: USB: uas: Use kzalloc instead of kmalloc. - patches.drivers/USB3-0125-USB-uas-Rename-sense-pipe-and-sense-urb-to-status-pipe-and-s.patch: USB: uas: Rename sense pipe and sense urb to status pipe and status urb. - patches.drivers/USB3-0126-USB-uas-Ensure-we-only-bind-to-a-UAS-interface.patch: USB: uas: Ensure we only bind to a UAS interface. - patches.drivers/USB3-0127-USB-uas-Use-GFP_NOIO-instead-of-GFP_KERNEL-in-I-O-submission.patch: USB: uas: Use GFP_NOIO instead of GFP_KERNEL in I/O submission path. - patches.drivers/USB3-0138-USB-serial-ftdi_sio-add-support-for-TIOCSERGETLSR.patch: USB: serial: ftdi_sio: add support for TIOCSERGETLSR. - patches.drivers/USB3-0140-usb-Use-static-const-consolidate-code.patch: usb: Use static const, consolidate code. - patches.drivers/USB3-0143-speedtch-don-t-abuse-struct-delayed_work.patch: speedtch: don't abuse struct delayed_work. - patches.drivers/USB3-0145-USB-cdc_ether-remove-unneeded-check.patch: USB: cdc_ether: remove unneeded check. - patches.drivers/USB3-0152-USB-CDC-NCM-Don-t-deref-NULL-in-cdc_ncm_rx_fixup-and-don-t-u.patch: USB CDC NCM: Don't deref NULL in cdc_ncm_rx_fixup() and don't use uninitialized variable. - patches.drivers/USB3-0153-xhci-Resume-bus-on-any-port-status-change.patch: xhci: Resume bus on any port status change. - patches.drivers/USB3-0154-xHCI-synchronize-irq-in-xhci_suspend.patch: xHCI: synchronize irq in xhci_suspend(). - patches.drivers/USB3-0155-xhci-Do-not-run-xhci_cleanup_msix-with-irq-disabled.patch: xhci: Do not run xhci_cleanup_msix with irq disabled. - patches.drivers/USB3-0157-xhci-Use-GFP_NOIO-during-device-reset.patch: xhci: Use GFP_NOIO during device reset. - patches.drivers/USB3-0158-xHCI-fix-queue_trb-in-isoc-transfer.patch: xHCI: fix queue_trb in isoc transfer. - patches.drivers/USB3-0159-xHCI-remove-redundant-parameter-in-giveback_first_trb.patch: xHCI: remove redundant parameter in giveback_first_trb(). - patches.drivers/USB3-0160-xHCI-fix-cycle-bit-set-in-giveback_first_trb.patch: xHCI: fix cycle bit set in giveback_first_trb(). - patches.drivers/USB3-0161-xHCI-replace-dev_dbg-with-xhci_dbg.patch: xHCI: replace dev_dbg() with xhci_dbg(). - patches.drivers/USB3-0162-xHCI-fix-printk_ratelimit-usage.patch: xHCI: fix printk_ratelimit() usage. - patches.drivers/USB3-0163-xhci-Remove-more-doorbell-related-reads.patch: xhci: Remove more doorbell-related reads. - patches.drivers/USB3-0164-USB-CDC-NCM-tx_fixup-race-condition-fix.patch: USB CDC NCM: tx_fixup() race condition fix. - patches.drivers/USB3-0168-USB-qcaux-add-Pantech-UML290-device-ID.patch: USB: qcaux: add Pantech UML290 device ID. - patches.drivers/USB3-0175-USB-cdc-wdm-fix-misuse-of-logical-operation-in-place-of-bito.patch: USB: cdc-wdm: fix misuse of logical operation in place of bitop. - patches.drivers/USB3-0181-USB-uss720-remove-duplicate-USB-device.patch: USB: uss720: remove duplicate USB device. - patches.drivers/USB3-0185-USB-serial-add-missing-.usb_driver-field-in-serial-drivers.patch: USB serial: add missing .usb_driver field in serial drivers. - patches.drivers/USB3-0196-USB-NET-KL5KUSB101-Fix-mem-leak-in-error-path-of-kaweth_down.patch: USB NET KL5KUSB101: Fix mem leak in error path of kaweth_download_firmware(). - patches.drivers/USB3-0206-USB-SL811HS-HCD-Fix-memory-leak-in-sl811h_urb_enqueue.patch: USB SL811HS HCD: Fix memory leak in sl811h_urb_enqueue(). - patches.drivers/USB3-0218-CDC-NCM-errata-updates-for-cdc.h.patch: CDC NCM errata updates for cdc.h. - patches.drivers/USB3-0219-USB-CDC-NCM-errata-updates-for-cdc_ncm-host-driver.patch: USB CDC NCM errata updates for cdc_ncm host driver. - patches.drivers/USB3-0220-USB-Network-driver-infrastructure-Fix-leak-when-usb_autopm_g.patch: USB Network driver infrastructure: Fix leak when usb_autopm_get_interface() returns less than zero in kevent(). - patches.drivers/USB3-0221-Net-USB-Option-hso-Do-not-dereference-NULL-pointer.patch: Net, USB, Option, hso: Do not dereference NULL pointer. - patches.drivers/USB3-0227-USB-Reset-USB-3.0-devices-on-re-discovery.patch: USB: Reset USB 3.0 devices on (re)discovery. - patches.drivers/USB3-0228-USB-serial-usb_wwan-fix-tty-NULL-dereference.patch: USB: serial/usb_wwan, fix tty NULL dereference. - patches.drivers/USB3-0231-Revert-USB-Reset-USB-3.0-devices-on-re-discovery.patch: Revert "USB: Reset USB 3.0 devices on (re)discovery". - patches.drivers/USB3-0236-USB-Reset-USB-3.0-devices-on-re-discovery.patch: USB: Reset USB 3.0 devices on (re)discovery. - patches.drivers/USB3-0237-USB-xhci-rework-xhci_print_ir_set-to-get-ir-set-from-xhci-it.patch: USB: xhci: rework xhci_print_ir_set() to get ir set from xhci itself. - patches.drivers/USB3-0238-USB-xhci-fix-couple-sparse-annotations.patch: USB: xhci: fix couple sparse annotations. - patches.drivers/USB3-0239-USB-xhci-mark-local-functions-as-static.patch: USB: xhci: mark local functions as static. - patches.drivers/USB3-0240-Added-support-for-usb-ethernet-0x0fe6-0x9700.patch: Added support for usb ethernet (0x0fe6, 0x9700). - patches.drivers/USB3-0242-f_phonet-avoid-pskb_pull-fix-OOPS-with-CONFIG_HIGHMEM.patch: f_phonet: avoid pskb_pull(), fix OOPS with CONFIG_HIGHMEM. - patches.suse/kdb-common: Refresh.- disable CONFIG_HYPERV_MOUSE, hv_mouse still broken (bnc#710790)- Update config files: Enable radeon KMS for i386 and x86-64- move a patch higher up the series to let things build properly: - patches.suse/kernel.h-add-pr_warn-for-symmetry-to-dev_warn-netdev.patch: kernel.h: add pr_warn for symmetry to dev_warn, netdev_warn (FATE#309728, FATE#309730, BNC#686840). - patches.suse/oprofile-026-kernel.h-add-pr_warn-for-symmetry-to-dev_warn-netdev.patch: Delete.- patches.drivers/USB3-0124-scsi-sd-add-a-no_read_capacity_16-scsi_device-flag.patch: Refresh to fix build error in sd.ko that was fixed up in a kernel merge commit, no wonder I missed it...- USB 3 update, final .36->.37 patches - patches.drivers/0001-V4L-DVB-uvc-Enable-USB-autosuspend-by-default-on-uvc.patch: Refresh. - patches.drivers/USB3-0094-usb-musb-host-unmap-the-buffer-for-PIO-data-transfers.patch: usb: musb: host: unmap the buffer for PIO data transfers. - patches.drivers/USB3-0102-usb-change-to-new-flag-variable.patch: usb: change to new flag variable. - patches.drivers/USB3-0103-USB-cdc-acm-fix-code-indentation.patch: USB: cdc-acm: fix code indentation. - patches.drivers/USB3-0104-USB-Add-more-empty-functions-in-otg.h.patch: USB: Add more empty functions in otg.h. - patches.drivers/USB3-0111-USB-UHCI-add-native-scatter-gather-support-v1.patch: USB: UHCI: add native scatter-gather support(v1). - patches.drivers/USB3-0115-USB-EHCI-remove-PCI-assumption.patch: Refresh. - patches.drivers/USB3-0115-USB-usbtest-fix-coding-style.patch: USB: usbtest fix coding style. - patches.drivers/USB3-0116-USB-EHCI-simplify-remainder-computations.patch: Refresh. - patches.drivers/USB3-0116-USB-usbtest-ensure-correct-isoc-data-length.patch: USB: usbtest - ensure correct isoc data length. - patches.drivers/USB3-0117-USB-EHCI-add-missing-frame-microframe-conversion.patch: Refresh. - patches.drivers/USB3-0118-USB-EHCI-reorganize-isochronous-scheduler-routine.patch: Refresh. - patches.drivers/USB3-0119-USB-EHCI-remove-dead-code-in-the-periodic-scheduler.patch: Refresh. - patches.drivers/USB3-0120-USB-introduce-unmap_urb_setup_for_dma.patch: USB: introduce unmap_urb_setup_for_dma(). - patches.drivers/USB3-0123-scsi-sr-add-no_read_disc_info-scsi_device-flag.patch: scsi/sr: add no_read_disc_info scsi_device flag. - patches.drivers/USB3-0123-usb-storage-add-new-no_read_disc_info-quirk.patch: usb-storage: add new no_read_disc_info quirk. - patches.drivers/USB3-0124-scsi-sd-add-a-no_read_capacity_16-scsi_device-flag.patch: scsi/sd: add a no_read_capacity_16 scsi_device flag. - patches.drivers/USB3-0124-usb-storage-add-new-no_read_capacity_16-quirk.patch: usb-storage: add new no_read_capacity_16 quirk. - patches.drivers/USB3-0127-usb-core-endpoint-Fix-error-path.patch: usb: core: endpoint: Fix error path. - patches.drivers/USB3-0129-usb-makefile-cleanup.patch: usb: makefile cleanup. - patches.drivers/USB3-0131-usb-usb3.0-ch9-definitions.patch: usb: usb3.0 ch9 definitions. - patches.drivers/USB3-0133-USB-visor-fix-initialisation-of-UX50-TH55-devices.patch: USB: visor: fix initialisation of UX50/TH55 devices. - patches.drivers/USB3-0135-USB-ftdi_sio-set-device-latency-timeout-at-port-probe.patch: USB: ftdi_sio: set device latency timeout at port probe. - patches.drivers/USB3-0137-USB-opticon-Add-Opticon-OPN2001-write-support.patch: USB: opticon: Add Opticon OPN2001 write support. - patches.drivers/USB3-0138-USB-opticon-Whitespace-fixes-in-opticon-driver.patch: USB: opticon: Whitespace fixes in opticon driver. - patches.drivers/USB3-0142-USB-xHCI-Add-pointer-to-udev-in-struct-xhci_virt_device.patch: USB: xHCI: Add pointer to udev in struct xhci_virt_device. - patches.drivers/USB3-0143-USB-xHCI-change-xhci_reset_device-to-allocate-new-device.patch: USB: xHCI: change xhci_reset_device() to allocate new device. - patches.drivers/USB3-0144-USB-core-use-kernel-assigned-address-for-devices-under-xHCI.patch: USB: core: use kernel assigned address for devices under xHCI. - patches.drivers/USB3-0145-usb-Fix-issue-with-USB-3.0-devices-after-system-resume.patch: usb: Fix issue with USB 3.0 devices after system resume. - patches.drivers/USB3-0146-USB-xHCI-port-power-management-implementation.patch: USB: xHCI: port power management implementation. - patches.drivers/USB3-0147-USB-xHCI-port-remote-wakeup-implementation.patch: USB: xHCI: port remote wakeup implementation. - patches.drivers/USB3-0148-USB-xHCI-bus-power-management-implementation.patch: USB: xHCI: bus power management implementation. - patches.drivers/USB3-0149-USB-xHCI-PCI-power-management-implementation.patch: USB: xHCI: PCI power management implementation. - patches.drivers/USB3-0151-USB-xhci-Fix-compile-error-when-CONFIG_PM-n.patch: USB: xhci: Fix compile error when CONFIG_PM=n. - patches.drivers/USB3-0152-USB-isp116x-hcd-use-resource_size-instead-of-defining-its-ow.patch: USB: isp116x-hcd - use resource_size instead of defining its own resource_len macro. - patches.drivers/USB3-0153-USB-isp1362-hcd-use-resource_size-instead-of-defining-its-ow.patch: USB: isp1362-hcd - use resource_size instead of defining its own resource_len macro. - patches.drivers/USB3-0154-USB-ohci-sh-use-resource_size-instead-of-defining-its-own-re.patch: USB: ohci-sh - use resource_size instead of defining its own resource_len macro. - patches.drivers/USB3-0155-usb-Fix-linker-errors-with-CONFIG_PM-n.patch: usb: Fix linker errors with CONFIG_PM=n. - patches.drivers/USB3-0159-USB-ehci-fix-remove-of-ehci-debugfs-dir.patch: Refresh. - patches.drivers/USB3-0164-USB-mct_u232-fix-broken-close.patch: USB: mct_u232: fix broken close. - patches.drivers/USB3-0171-usbnet-fix-usb_autopm_get_interface-failure-v1.patch: usbnet: fix usb_autopm_get_interface failure(v1). - patches.drivers/USB3-0185-usb.h-fix-ioctl-kernel-doc-info.patch: usb.h: fix ioctl kernel-doc info. - patches.drivers/USB3-0192-USB-xhci-Use-GFP_ATOMIC-under-spin_lock.patch: USB: xhci: Use GFP_ATOMIC under spin_lock. - patches.drivers/USB3-0194-usb-subtle-increased-memory-usage-in-u_serial.patch: usb: subtle increased memory usage in u_serial. - patches.drivers/USB3-0199-Revert-USB-xhci-Use-GFP_ATOMIC-under-spin_lock.patch: Revert "USB: xhci: Use GFP_ATOMIC under spin_lock". - patches.drivers/USB3-0200-xhci-Remove-excessive-printks-with-shared-IRQs.patch: xhci: Remove excessive printks with shared IRQs. - patches.drivers/USB3-0201-xHCI-release-spinlock-when-setup-interrupt.patch: xHCI: release spinlock when setup interrupt. - patches.drivers/USB3-0202-xHCI-fix-wMaxPacketSize-mask.patch: xHCI: fix wMaxPacketSize mask. - patches.drivers/USB3-0203-xhci-Fix-command-ring-replay-after-resume.patch: xhci: Fix command ring replay after resume. - patches.drivers/USB3-0205-USB-ehci-fix-debugfs-lpm-permissions.patch: USB: ehci: fix debugfs 'lpm' permissions. - patches.drivers/USB3-0213-USB-EHCI-AMD-periodic-frame-list-table-quirk.patch: USB: EHCI: AMD periodic frame list table quirk. - patches.drivers/USB3-0214-USB-isp1362-hcd-fix-section-mismatch-warning.patch: USB: isp1362-hcd - fix section mismatch warning. - patches.drivers/USB3-0218-xhci-Fix-reset-device-and-configure-endpoint-commands.patch: xhci: Fix reset-device and configure-endpoint commands. - patches.drivers/USB3-0219-xhci-Setup-array-of-USB-2.0-and-USB-3.0-ports.patch: xhci: Setup array of USB 2.0 and USB 3.0 ports. - patches.drivers/USB3-0220-xhci-Don-t-let-the-USB-core-disable-SuperSpeed-ports.patch: xhci: Don't let the USB core disable SuperSpeed ports. - patches.drivers/USB3-0225-hso-fix-disable_net.patch: hso: fix disable_net. - patches.drivers/USB3-0227-USB-yurex-add-.llseek-fop-to-file_operations.patch: USB: yurex: add .llseek fop to file_operations. - patches.drivers/USB3-0229-USB-ehci-disable-LPM-and-PPCD-for-nVidia-MCP89-chips.patch: USB: ehci: disable LPM and PPCD for nVidia MCP89 chips. - patches.drivers/USB3-0230-USB-fix-autosuspend-bug-in-usb-serial.patch: USB: fix autosuspend bug in usb-serial. - patches.drivers/USB3-0231-USB-EHCI-Disable-langwell-penwell-LPM-capability.patch: Refresh. - patches.drivers/USB3-0231-xhci-Fix-issue-with-port-array-setup-and-buggy-hosts.patch: xhci: Fix issue with port array setup and buggy hosts. - patches.drivers/USB3-0232-hso-IP-checksuming-doesn-t-work-on-GE0301-option-cards.patch: hso: IP checksuming doesn't work on GE0301 option cards. - patches.drivers/USB3-0240-asix-add-USB-ID-for-Logitec-LAN-GTJ-U2A.patch: asix: add USB ID for Logitec LAN-GTJ U2A. - patches.drivers/USB3-0241-net-Add-USB-PID-for-new-MOSCHIP-USB-ethernet-controller-MCS7.patch: net: Add USB PID for new MOSCHIP USB ethernet controller MCS7832 variant. - patches.drivers/USB3-0242-USB-mcs7830-return-negative-if-auto-negotiate-fails.patch: USB: mcs7830: return negative if auto negotiate fails. - patches.drivers/USB_xhci_fix_OS_want_to_own_HC.patch: Refresh. - patches.fixes/usb-ehci-amd-periodic-frame-list-table-quirk.patch: Delete.- patches.fixes/qla2xxx-skip-msix-correction.diff: Skip MSI-X for qla2xxx (bnc#693513).- first half of USB3 .36->.37 patchset - Update config files. - patches.drivers/USB3-0002-drivers-usb-Remove-unnecessary-return-s-from-void-functions.patch: drivers/usb: Remove unnecessary return's from void functions. - patches.drivers/USB3-0004-Revert-drivers-usb-Remove-unnecessary-return-s-from-void-fun.patch: Revert "drivers/usb: Remove unnecessary return's from void functions" partially. - patches.drivers/USB3-0005-introduce-cx82310_eth-Conexant-CX82310-based-ADSL-router-USB.patch: introduce cx82310_eth: Conexant CX82310-based ADSL router USB ethernet driver. - patches.drivers/USB3-0006-cxacru-ignore-cx82310_eth-devices.patch: cxacru: ignore cx82310_eth devices. - patches.drivers/USB3-0007-cx82310_eth-check-usb_string-return-value-for-error.patch: cx82310_eth: check usb_string() return value for error. - patches.drivers/USB3-0008-cx82310_eth-allow-empty-URBs.patch: cx82310_eth: allow empty URBs. - patches.drivers/USB3-0009-usb-Fix-up-r8a66597-hcd-section-mismatches.patch: usb: Fix up r8a66597-hcd section mismatches. - patches.drivers/USB3-0020-Revert-drivers-usb-Remove-unnecessary-return-s-from-void-fun.patch: Revert "drivers/usb: Remove unnecessary return's from void functions" for musb gadget. - patches.drivers/USB3-0021-ARM-ohci-pxa27x-enable-OHCI-over-U2DC-for-pxa3xx.patch: ARM: ohci-pxa27x: enable OHCI over U2DC for pxa3xx. - patches.drivers/USB3-0025-smsc95xx-generate-random-MAC-address-once-not-every-ifup.patch: smsc95xx: generate random MAC address once, not every ifup. - patches.drivers/USB3-0026-tty-Make-tiocgicount-a-handler.patch: tty: Make tiocgicount a handler. - patches.drivers/USB3-0027-tty-Convert-the-USB-drivers-to-the-new-icount-interface.patch: tty: Convert the USB drivers to the new icount interface. - patches.drivers/USB3-0028-tty-Fix-warning-left-over-from-TIOCGICOUNT-changes.patch: tty: Fix warning left over from TIOCGICOUNT changes. - patches.drivers/USB3-0036-USB-sam-ba-add-driver-for-Atmel-SAM-Boot-Assistant-SAM-BA.patch: USB: sam-ba: add driver for Atmel SAM Boot Assistant (SAM-BA). - patches.drivers/USB3-0037-USB-Gadget-Verify-VBUS-current-before-setting-the-device-sel.patch: USB Gadget: Verify VBUS current before setting the device self-powered bit. - patches.drivers/USB3-0038-USB-core-update-comment-to-match-current-function-name.patch: USB: core: update comment to match current function name. - patches.drivers/USB3-0052-USB-output-an-error-message-when-the-pipe-type-doesn-t-match.patch: USB: output an error message when the pipe type doesn't match the endpoint type. - patches.drivers/USB3-0058-usb-ftdi-elan-Convert-mutex-to-semaphore.patch: usb: ftdi-elan: Convert "mutex" to semaphore. - patches.drivers/USB3-0062-USB-Change-acm_iad_descriptor-bFunctionProtocol-to-USB_CDC_A.patch: USB: Change acm_iad_descriptor bFunctionProtocol to USB_CDC_ACM_PROTO_AT_V25TER. - patches.drivers/USB3-0063-USB-ohci-sm501-add-iounmap-on-error-path.patch: USB: ohci-sm501: add iounmap on error path. - patches.drivers/USB3-0066-USB-isp1362-hcd-Removes-CONFIG_USB_OTG-dependent-code-fix-bu.patch: USB: isp1362-hcd: Removes CONFIG_USB_OTG dependent code, fix build breakage. - patches.drivers/USB3-0070-usb-host-oxu210hp-hcd-Use-static-const-char-const-where-poss.patch: usb: host: oxu210hp-hcd: Use static const char * const where possible. - patches.drivers/USB3-0072-usb-omap-ohci-Missing-driver-unregister-in-module-exit.patch: usb: omap: ohci: Missing driver unregister in module exit. - patches.drivers/USB3-0075-USB-cdc.h-ncm-typo-and-style-fixes.patch: USB: cdc.h: ncm: typo and style fixes. - patches.drivers/USB3-0076-Revert-USB-ncm-added-ncm.h-with-auxiliary-definitions.patch: Revert "USB: ncm: added ncm.h with auxiliary definitions". - patches.drivers/USB3-0077-USB-cdc.h-ncm-add-missed-constants-and-structures.patch: USB: cdc.h: ncm: add missed constants and structures. - patches.drivers/USB3-0079-USB-serial-Enable-USB-autosuspend-by-default-on-qcserial.patch: USB: serial: Enable USB autosuspend by default on qcserial. - patches.drivers/USB3-0081-USB-cdc.h-ncm-fix-one-more-typo.patch: USB: cdc.h: ncm: fix one more typo. - patches.drivers/USB3-0082-USB-qcserial-Enable-Diagnostics-Monitor-and-GPS-ports-on-Gob.patch: USB: qcserial: Enable Diagnostics Monitor and GPS ports on Gobi 2000. - patches.drivers/USB3-0083-USB-storage-Use-USB_-prefix-instead-of-US_-prefix.patch: USB: storage: Use USB_ prefix instead of US_ prefix. - patches.drivers/USB3-0084-USB-Move-USB-Storage-definitions-to-their-own-header-file.patch: USB: Move USB Storage definitions to their own header file. - patches.drivers/USB3-0085-USB-Add-UAS-driver.patch: USB: Add UAS driver. - patches.drivers/USB3-0085-block-remove-req_hardbarrier_UAS.patch: block: remove REQ_HARDBARRIER. - patches.drivers/USB3-0087-USB-add-driver-for-Meywa-Denki-Kayac-YUREX.patch: USB: add driver for Meywa-Denki & Kayac YUREX. - patches.drivers/USB3-0088-USB-yurex-assign-a-real-minor-number-to-the-driver.patch: USB: yurex: assign a real minor number to the driver. - patches.drivers/USB3-0089-USB-yurex-fix-memory-leak-and-corrupted-messages.patch: USB: yurex: fix memory leak and corrupted messages.- patches.drivers/0001-ixgbe-fix-WOL-register-setup-for-82599: ixgbe: fix WOL register setup for 82599 (bnc#691742, fate#311957). - patches.drivers/0002-ixgbe-Mailbox-header-and-code-module: ixgbe: Mailbox header and code module (bnc#691742, fate#311957). - patches.drivers/0003-ixgbe-Add-SR-IOV-register-structure-and-bit-defines: ixgbe: Add SR-IOV register, structure and bit defines (bnc#691742, fate#311957). - patches.drivers/0004-ixgbe-Add-SR-IOV-specific-features: ixgbe: Add SR-IOV specific features (bnc#691742, fate#311957). - patches.drivers/0005-ixgbe-Add-SR-IOV-specific-modules-to-driver-Makefile: ixgbe: Add SR-IOV specific modules to driver Makefile (bnc#691742, fate#311957). - patches.drivers/0006-ixgbe-Add-SR-IOV-feature-enablement-code: ixgbe: Add SR-IOV feature enablement code (bnc#691742, fate#311957). - patches.drivers/0007-ixgbe-Refactor-common-code-between-82598-82599-to-accommodate-new-hardware: ixgbe: Refactor common code between 82598 & 82599 to accommodate new hardware (bnc#691742, fate#311957). - patches.drivers/0008-ixgbe-add-support-for-a-new-82599-10G-Base-T-device: ixgbe:add support for a new 82599 10G Base-T device (bnc#691742, fate#311957). - patches.drivers/0009-ixgbe-move-all-Rx-DMA-control-register-writes-to-one-central-location: ixgbe: move all Rx DMA control register writes to one central location (bnc#691742, fate#311957). - patches.drivers/0010-ixgbe-change-mac_type-if-statements-to-switch-statements: ixgbe: change mac_type if statements to switch statements (bnc#691742, fate#311957). - patches.drivers/0011-ixgbe-make-silicon-specific-functions-generic: ixgbe: make silicon specific functions generic (bnc#691742, fate#311957). - patches.drivers/0012-ixgbe-move-CPU-variable-from-ring-into-q_vector-add-ring--q_vector: ixgbe: move CPU variable from ring into q_vector, add ring->q_vector (bnc#691742, fate#311957). - patches.drivers/0013-ixgbe-add-MAC-and-PHY-support-for-x540: ixgbe: add MAC and PHY support for x540 (bnc#691742, fate#311957). - patches.drivers/0014-ixgbe-add-support-for-x540-MAC: ixgbe: add support for x540 MAC (bnc#691742, fate#311957). - patches.drivers/0015-ixgbe-fix-X540-to-use-it-s-own-info-struct: ixgbe: fix X540 to use it's own info struct (bnc#691742, fate#311957). - patches.drivers/0016-ixgbe-add-support-for-new-HW: ixgbe: add support for new HW (bnc#691742, fate#311957).- Disable patches.drm/2098-drm-do-not-leak-kernel-*, as printk %pK format isn't supported in SP2 kernel- patches.drivers/i915-fix-ironlake-edp-panel-setup-v4: Delete.- patches.drm/drm-010-revert-shrinker-changes: drm: Revert shrinker changes for 2.6.32 (fate#310916). - patches.drm/drm-020-revert-broken-vga-output-at-boot: drm/i915/lvds: Fix status register check. - patches.drm/drm-021-drm-i915-redetect-connections-at-resume: drm/i915: re-detect connections at resume. - patches.drm/drm-022-drm-fix-fb-switch-after-s4: drm: Fix fb after S4. - patches.drm/drm-030-radeon-kms-fix-i2c-map-for-rv250-280: drm/radeon/kms: fix i2c map for rv250/280. - patches.drm/drm-031-radeon-kms-add-missing-vddci-setting-on-NI: drm/radeon/kms: add missing vddci setting on NI+. - patches.drm/drm-032-radeon-kms-fix-DP-training-for-DPEncoderService: drm/radeon/kms: fix DP training for DPEncoderService revision bigger than 1.1.- patches.drm/drm-001-drm_err-use-printk: drm: Revert the new printk() format in drm_err() for 2.6.32 (fate#310916). - patches.drm/drm-002-revert-slowwork-conversion: drm: Revert to use slow_work for 2.6.32 (fate#310916). - patches.drm/drm-003-slow-work-oops-fix: drm: Fix Oops with slow_work in 2.6.32 (fate#310916). - patches.drm/drm-004-revert-use-shmem_read_page: drm: Revert shmem_read_mapping_page() for 2.6.32 (fate#310916). - patches.drm/drm-005-i830-build-fix: Fix build of i830 module with the updated drm stack (fate#310916). - patches.drm/drm-006-io_mapping-merge-fixes: Fix merge errors to correct io_mappin_map_atomic*() (fate#310916). - patches.drm/drm-007-revert-fb-debug-hooks: drm: Revert new fb_debug_* hooks for 2.6.32 (fate#310916). - patches.drm/drm-008-radeon-backlight-compat: drm/radeon: Revert new backlight API (fate#310916). - patches.drm/drm-009-radeon-i2c-new-ops-revert: drm: Revert i2c changes in drm/radeon for 2.6.32 (fate#310916). - patches.drm/drm-compat-for-3.0: drm: add compatibility definitions (fate#310916).- Update config files for DRM/AGP updates- patches.xen/xen3-patch-2.6.32: Refresh. Fix for 3.0-agp- patches.drm/*: Update DRM and AGP stack as of 3.0-kernel for new hardware (fate#310916) - patches.arch/0017-x86-k8-gart-Decouple-handling-of-garts-and.patch: Refresh. - patches.arch/0018-x86-k8-Rename-k8.-ch-to-amd_nb.-ch-and.patch: Refresh. - patches.arch/x86_agpgart-g33-stoeln-fix-2.patch: Delete.Preliminary changes for DRM; add patches.drm and remove old patches- patches.arch/s390-zfcp-dif-dix: zfcp: support for T10 DIF / DIX (bnc#708635). - Update config files. - patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: Refresh.- patches.kernel.org/export_wake_up_locked_key: export __wake_up_locked_key as may be needed for NFS update (FATE#310250).- patches.arch/s390-af_iucv-over-hsi: s390: af_iucv (new function): add HiperSockets transport (bnc#708636).- patches.suse/staging-hv-HDIO_GET_IDENTITY.patch: remove support for ioctl, its not supported upstream (bnc#709332)- patches.suse/btrfs-allow-cross-subvolume-file-clone.patch: update and disable in series.conf for now, exposes a bug in delayed-inode code.- patches.arch/s390-32-02-qeth_ipv6_vlan: qeth: l3 ipv6 vlan not working on shared OSA chpid (bnc#709866).- patches.arch/s390-32-01-qdio_shared_dsci_race: clear shared DSCI before scheduling the queue handler (bnc#709866).- patches.suse/btrfs-allow-cross-subvolume-file-clone.patch: btrfs: allow cross-subvolume file clone (bnc#698540).Cleanup and split kmsg_dumper patches out of pstore ones, no code change: - patches.drivers/001-apei_infrastructure.patch: Refresh. - patches.drivers/001-kmsg_dump.patch: new error reporting interface with APEI (fate#311705). - patches.drivers/002-kmsg_dump.patch: gcc-4.6: printk: use stable variable to dump kmsg buffer (fate#311705). - patches.drivers/011a-apei-pstore: pstore: X86 platform interface using ACPI/APEI/ERST (fate#311705). - patches.drivers/002-apei_pstore.patch: Delete. - patches.drivers/004-apei-pstore: Delete.- patches.drivers/qla4xxx-5.02.10.01.11.2-k0-update: qla4xxx: Update to 5.02.10.01.11.2-k0 (bnc#689435). - patches.drivers/qla4xxx-Remove-host_lock-in-queuecommand-fun.patch: qla4xxx: Remove host_lock in queuecommand function (bnc#689436).Tiny patches for pcc-cpufreq driver which looked worth adding: - patches.drivers/001-pcc-cpufreq-fixes.patch: Fix PCC driver error path (none). - patches.drivers/002-pcc-cpufreq-fixes.patch: pcc driver should check for pcch method before calling _OSC (none). - patches.drivers/003-pcc-cpufreq-fixes.patch: fix double freeing in error path of pcc-cpufreq (none). - patches.drivers/004-pcc-cpufreq-fixes.patch: Fix memory leaks in pcc_cpufreq_do_osc (none). - patches.drivers/005-pcc-cpufreq-fixes.patch: pcc-cpufreq: don't load driver if get_freq fails during init (none). - patches.drivers/006-pcc-cpufreq-fixes.patch: pcc-cpufreq: remove duplicate statements (none). - patches.drivers/007-pcc-cpufreq-fixes.patch: Fix _OSC UUID in pcc-cpufreq (none).- supported.conf: Add qlcnic to supported list (bnc#698272)- patches.drivers/bnx2-add-mcp-dump: bnx2: Add MCP dump (bnc#709063). - patches.drivers/bnx2-close-device-if-tx_timeout-reset-fails: bnx2: Close device if tx_timeout reset fails (bnc#709063). - patches.drivers/bnx2-fix-endian-swapping-on-firmware-version-string: bnx2: Fix endian swapping on firmware version string (bnc#709063). - patches.drivers/bnx2-read-iscsi-config-from-shared-memory-during-probe: bnx2: Read iSCSI config from shared memory during ->probe() (bnc#709063). - patches.drivers/cnic-Add-VLAN-ID-as-a-parameter-during-netevent-upca.patch: Refresh. - patches.drivers/cnic-fix-context-id-space-calculation: cnic: Fix Context ID space calculation (bnc#709063). - patches.drivers/cnic-fix-port_mode-setting: cnic: Fix port_mode setting (bnc#709063). - patches.drivers/cnic-fix-ring-setup-shutdown-code: cnic: Fix ring setup/shutdown code (bnc#709063). - patches.drivers/cnic-replace-get_random_bytes-with-random32: cnic: Replace get_random_bytes() with random32() (bnc#709063). - patches.drivers/cnic-return-proper-error-code-if-we-fail-to-send-netlink-message: cnic: Return proper error code if we fail to send netlink message (bnc#709063). - patches.drivers/cnic-wait-for-all-context-ids-to-be-deleted-before-sending-fcoe_destroy_func: cnic: Wait for all Context IDs to be deleted before sending FCOE_DESTROY_FUNC (bnc#709063).- patches.drivers/bnx2x-broken-self-test-in-sf-mode-on-578xx: bnx2x: Broken self-test in SF mode on 578xx (bnc#698050). - patches.drivers/bnx2x-configure-silent-stripping-for-a-vid0-vlan-tag: bnx2x: configure silent stripping for a VID0 VLAN tag (bnc#698050). - patches.drivers/bnx2x-fixed-ethtool-d-for-578xx: bnx2x: Fixed ethtool -d for 578xx (bnc#698050). - patches.drivers/bnx2x-implementation-for-netdev-ndo_fcoe_get_wwn: bnx2x: Implementation for netdev->ndo_fcoe_get_wwn (bnc#698050). - patches.drivers/bnx2x-parity-errors-recovery-for-578xx: bnx2x: Parity errors recovery for 578xx (bnc#698050). - patches.drivers/bnx2x-read-fip-mac-from-shmem-in-single-function-mode: bnx2x: Read FIP mac from SHMEM in single function mode (bnc#698050).- patches.drivers/be2net-request-native-mode-each-time-the-card-is-reset: be2net: request native mode each time the card is reset (bnc#708274).- patches.arch/ppc-fate-311669-03: Delete. - patches.arch/ppc-fate-311669-04: Delete. - patches.arch/ppc-fate-311669-05: Delete. - patches.arch/ppc-fate-311687-03-kmsg_dump_more_events: Delete.- patches.suse/staging-hv-HDIO_GET_IDENTITY.patch: provide correct model string, append guid (bnc#709332)- patches.fixes/scsi-dh-alua-decode-rtpg-extended-header: scsi_dh_alua: Decode RTPG extended header format (FATE#311300).- patches.xen/xen3-patch-2.6.31: Refresh for intel-agp patch.- Refresh Xen patches for DRM-3.0 update patches.xen/xen3-patch-2.6.29: Refresh. patches.xen/xen3-patch-2.6.31: Refresh. patches.xen/xen3-patch-2.6.32: Refresh. - patches.xen/xen3-patch-2.6.35: Xen patch for 2.6.35.- patches.drivers/USB_xhci_fix_OS_want_to_own_HC.patch: USB: xhci: fix OS want to own HC.- patches.suse/dm-raid45-dm_put.fix: Remove incorrect dm_put calls from dm-raid45 (bnc#706485).- patches.suse/0001-btrfs-Don-t-BUG_ON-errors-from-btrfs_create_subvol_r.patch: btrfs: Don't BUG_ON errors from btrfs_create_subvol_root(). - patches.suse/0001-btrfs-Handle-NULL-inode-return-from-btrfs_lookup_den.patch: btrfs: Handle NULL inode return from btrfs_lookup_dentry(). - patches.suse/0001-btrfs-don-t-BUG_ON-btrfs_alloc_path-errors.patch: btrfs: don't BUG_ON btrfs_alloc_path() errors. - patches.suse/0002-btrfs-Don-t-BUG_ON-alloc_path-errors-in-replay_one_b.patch: btrfs: Don't BUG_ON alloc_path errors in replay_one_buffer(). - patches.suse/0003-btrfs-Don-t-BUG_ON-alloc_path-errors-in-btrfs_trunca.patch: btrfs: Don't BUG_ON alloc_path errors in btrfs_truncate_inode_items. - patches.suse/0004-btrfs-Don-t-BUG_ON-alloc_path-errors-in-btrfs_read_l.patch: btrfs: Don't BUG_ON alloc_path errors in btrfs_read_locked_inode. - patches.suse/0005-btrfs-Don-t-BUG_ON-alloc_path-errors-in-btrfs_balanc.patch: btrfs: Don't BUG_ON alloc_path errors in btrfs_balance(). - patches.suse/0006-btrfs-Don-t-BUG_ON-alloc_path-errors-in-find_next_ch.patch: btrfs: Don't BUG_ON alloc_path errors in find_next_chunk. - patches.suse/0007-btrfs-don-t-BUG_ON-allocation-errors-in-btrfs_drop_s.patch: btrfs: don't BUG_ON allocation errors in btrfs_drop_snapshot.- patches.suse/stop_machine-implement-lazy: Delete. Unused and not needed.split out most of patches.drivers/002-apei_pstore.patch into mainline commits: - patches.arch/ppc-fate-311687-kmsg_dump: Refresh. - patches.drivers/002-apei_pstore.patch: Refresh. - patches.drivers/004-apei-pstore: gcc-4.6: printk: use stable variable to dump kmsg buffer (fate#311705). - patches.drivers/005-apei-pstore: pstore: new filesystem interface to platform persistent storage (fate#311705). - patches.drivers/006-apei-pstore: pstore: fix build warning for unused return value from sysfs_create_file (fate#311705). - patches.drivers/007-apei-pstore: kmsg_dump: add kmsg_dump() calls to the reboot, halt, poweroff and emergency_restart paths (fate#311705). - patches.drivers/008-apei-pstore: printk: use RCU to prevent potential lock contention in kmsg_dump (fate#311705). - patches.drivers/009-apei-pstore: Some fixes for pstore (fate#311705). - patches.drivers/010-apei-pstore: pstore: use mount option instead sysfs to tweak kmsg_bytes (fate#311705). - patches.drivers/011-apei-pstore: pstore: cleanups to pstore_dump() (fate#311705). - patches.drivers/012-apei-pstore: Fix common misspellings (fate#311705). - patches.drivers/013-apei-pstore: pstore: Fix Kconfig dependencies for apei->pstore (fate#311705). - patches.drivers/014-apei-pstore: pstore: fix one type of return value in pstore (fate#311705). - patches.drivers/015-apei-pstore: pstore: fix pstore filesystem mount/remount issue (fate#311705). - patches.drivers/016-apei-pstore: pstore: fix potential logic issue in pstore read interface (fate#311705). - patches.drivers/017-apei-pstore: kmsg_dump.h: fix build when CONFIG_PRINTK is disabled (fate#311705).- patches.suse/staging-hv-HDIO_GET_IDENTITY.patch: hv: return correct data for HDIO_GET_IDENTITY ioctl (bnc#709332).- patches.arch/x86-efi-07-introduce-e820-check_early: double MAX_EARLY_RES and improve 'check_early()'. - patches.arch/x86-efi-09-ignore-EFI_RESERVED_TYPE: Refresh. - patches.arch/x86-efi-10-merge-contiguous-early-reservations: x86, efi: Merge contiguous early reservations. (bnc#681242)- rpm/modversions: Support for new genksyms format with E# tags for enum constants.- patches.drivers/isci-add-compat-isci_compath.h: Re-add after it got lost with the latest update. - patches.drivers/0000-isci-mainline-update.patch: Refresh.- Fixup compilation failures: * patches.fixes/block-strict-rq_affinity * patches.fixes/block-strict-rq_affinity-fix-warning- patches.fixes/block-strict-rq_affinity: block: strict rq_affinity (bnc#709528). - patches.fixes/block-strict-rq_affinity-fix-warning: block: fix warning with calling smp_processor_id() in preemptible section (bnc#709528).- patches.drivers/0000-isci-mainline-update.patch: isci: update to mainline version (bnc#709528). - patches.drivers/0001-isci-remove-unused-SC_LIBRARY_HANDLE_T-typedef.patch: isci: remove unused SC_LIBRARY_HANDLE_T typedef (FATE#311808,bnc#709528). - patches.drivers/0002-isci-remove-SCI_INVALID_HANDLE.patch: isci: remove SCI_INVALID_HANDLE (FATE#311808,bnc#709528). - patches.drivers/0003-isci-kill-SCI_IO_REQUEST_DATA_DIRECTION.patch: isci: kill SCI_IO_REQUEST_DATA_DIRECTION (FATE#311808,bnc#709528). - patches.drivers/0004-isci-kill-sci_types.h.patch: isci: kill sci_types.h (FATE#311808,bnc#709528). - patches.drivers/0005-isci-removing-unused-loglevel-module-param.patch: isci: removing unused loglevel module param (FATE#311808,bnc#709528). - patches.drivers/0006-isci-remote-device-and-node-cleanup-step1.patch: isci: remote device and node cleanup step1 (FATE#311808,bnc#709528). - patches.drivers/0007-isci-coding-style-changes-for-remote-device.patch: isci: coding style changes for remote device (FATE#311808,bnc#709528). - patches.drivers/0008-isci-c99-tables-cleanup-step1.patch: isci: c99 tables cleanup step1 (FATE#311808,bnc#709528). - patches.drivers/0009-isci-cleanup-core-consolidation-leftovers.patch: isci: cleanup core consolidation leftovers (FATE#311808,bnc#709528). - patches.drivers/0010-isci-coding-style-changes-for-remote-device.patch: isci: coding style changes for remote device (FATE#311808,bnc#709528). - patches.drivers/0011-isci-kill-a-callback-cast.patch: isci: kill a callback cast (FATE#311808,bnc#709528). - patches.drivers/0012-isci-remove-SCIC_DEBUG_ENABLED-and-fixup-an-odd-ma.patch: isci: remove SCIC_DEBUG_ENABLED, and fixup an odd macro (FATE#311808,bnc#709528). - patches.drivers/0013-isci-bypass-scic_controller_get_handler_methods.patch: isci: bypass scic_controller_get_handler_methods() (FATE#311808,bnc#709528). - patches.drivers/0014-isci-cleanup-starting-state-handling.patch: isci: cleanup "starting" state handling (FATE#311808,bnc#709528). - patches.drivers/0015-isci-enable-interrupts-during-controller-start-and.patch: isci: enable interrupts during controller start, and flush discovery (FATE#311808,bnc#709528). - patches.drivers/0016-isci-implement-error-isr.patch: isci: implement error isr (FATE#311808,bnc#709528). - patches.drivers/0017-isci-advertise-linkrate.patch: isci: advertise linkrate (FATE#311808,bnc#709528). - patches.drivers/0018-isci-debug-fixes.patch: isci: debug fixes (FATE#311808,bnc#709528). - patches.drivers/0019-isci-remove-scic_controller_get_handler_methods-and.patch: isci: remove scic_controller_get_handler_methods and ilk (FATE#311808,bnc#709528). - patches.drivers/0020-isci-Initialize-proc_name-field-in-scsi_host_templa.patch: isci: Initialize proc_name field in scsi_host_template (FATE#311808,bnc#709528). - patches.drivers/0021-isci-Move-firmware-loading-to-per-PCI-device.patch: isci: Move firmware loading to per PCI device (FATE#311808,bnc#709528). - patches.drivers/0022-isci-phy-state-machine-cleanup-step1.patch: isci: phy state machine cleanup step1 (FATE#311808,bnc#709528). - patches.drivers/0023-isci-fix-no-outbound-task-timeout-default-value.patch: isci: fix "no outbound task timeout" default value (FATE#311808,bnc#709528). - patches.drivers/0024-isci-Move-transport-layer-registers-from-port-to-ph.patch: isci: Move transport layer registers from port to phy (FATE#311808,bnc#709528). - patches.drivers/0025-isci-Add-support-for-user-parameters-in-SCIC-layer.patch: isci: Add support for user parameters in SCIC layer (FATE#311808,bnc#709528). - patches.drivers/0026-isci-clean-up-remaining-silicon-revision-ifdefs-in.patch: isci: clean up remaining silicon revision ifdefs in phy init (FATE#311808,bnc#709528). - patches.drivers/0027-isci-Add-Support-for-new-TC-completion-codes.patch: isci: Add Support for new TC completion codes (FATE#311808,bnc#709528). - patches.drivers/0028-isci-fix-for-asserts-during-aborts-resets-to-SAS-SA.patch: isci: fix for asserts during aborts/resets to SAS/SATA in APC mode (FATE#311808,bnc#709528). - patches.drivers/0029-isci-Removed-special-macros-that-does-64bit-address.patch: isci: Removed special macros that does 64bit address math (FATE#311808,bnc#709528). - patches.drivers/0030-isci-Make-the-driver-copy-data-directly-from-and-to.patch: isci: Make the driver copy data directly from and to sg for PIO (FATE#311808,bnc#709528). - patches.drivers/0031-isci-have-the-driver-use-native-SG-calls-and-DMA-AP.patch: isci: have the driver use native SG calls and DMA-API (FATE#311808,bnc#709528). - patches.drivers/0032-isci-Change-event-notify-calls-from-scic_cb_-to-is.patch: isci: Change event notify calls from scic_cb_* to isci_event_* (FATE#311808,bnc#709528). - patches.drivers/0033-isci-Removing-deprecated-functions.patch: isci: Removing deprecated functions (FATE#311808,bnc#709528). - patches.drivers/0034-isci-fix-sas-address-reporting.patch: isci: fix sas address reporting (FATE#311808,bnc#709528). - patches.drivers/0035-isci-rework-timer-api.patch: isci: rework timer api (FATE#311808,bnc#709528). - patches.drivers/0036-isci-workaround-port-task-scheduler-starvation-issu.patch: isci: workaround port task scheduler starvation issue (FATE#311808,bnc#709528). - patches.drivers/0037-isci-handle-cases-where-a-d2h-fis-is-used-report-an.patch: isci: handle cases where a d2h fis is used report an ncq error (FATE#311808,bnc#709528). - patches.drivers/0038-isci-controller-stop-start-fixes.patch: isci: controller stop/start fixes (FATE#311808,bnc#709528). - patches.drivers/0039-isci-Adding-support-for-phy-enable-and-disable.patch: isci: Adding support for phy enable and disable (FATE#311808,bnc#709528). - patches.drivers/0040-isci-Cleanup-warning-messages-for-phy-resets.patch: isci: Cleanup warning messages for phy resets (FATE#311808,bnc#709528). - patches.drivers/0041-isci-fix-hang-after-target-reset.patch: isci: fix hang after target reset (FATE#311808,bnc#709528). - patches.drivers/0042-isci-pad-stp-and-smp-request-sizes.patch: isci: pad stp and smp request sizes (FATE#311808,bnc#709528). - patches.drivers/0043-isci-enable-isci-for-dmar-builds.patch: isci: enable isci for dmar builds (FATE#311808,bnc#709528). - patches.drivers/0044-isci-kill-isci_host-list-in-favor-of-an-array.patch: isci: kill isci_host list in favor of an array (FATE#311808,bnc#709528). - patches.drivers/0045-isci-remove-sci_device_handle.patch: isci: remove sci_device_handle (FATE#311808,bnc#709528). - patches.drivers/0046-isci-kill-host-quiesce-mechanism.patch: isci: kill "host quiesce" mechanism (FATE#311808,bnc#709528). - patches.drivers/0047-isci-replace-isci_remote_device-completion-with-eve.patch: isci: replace isci_remote_device completion with event queue (FATE#311808,bnc#709528). - patches.drivers/0048-isci-preallocate-remote-devices.patch: isci: preallocate remote devices (FATE#311808,bnc#709528). - patches.drivers/0049-isci-replace-remote_device_lock-with-scic_lock.patch: isci: replace remote_device_lock with scic_lock (FATE#311808,bnc#709528). - patches.drivers/0050-isci-cleanup-debug-leftovers-in-isci.h.patch: isci: cleanup debug leftovers in isci.h (FATE#311808,bnc#709528). - patches.drivers/0051-isci-isci_request_cleanup_completed_loiterer-checks.patch: isci: isci_request_cleanup_completed_loiterer checks task before task_done (FATE#311808,bnc#709528). - patches.drivers/0052-isci-Changes-in-isci_host_completion_routine.patch: isci: Changes in isci_host_completion_routine (FATE#311808,bnc#709528). - patches.drivers/0053-isci-fix-completion-abort-path.patch: isci: fix completion / abort path (FATE#311808,bnc#709528). - patches.drivers/0054-isci-Any-reset-indicated-on-an-I-O-completion-escal.patch: isci: Any reset indicated on an I/O completion escalates it to the error path (FATE#311808,bnc#709528). - patches.drivers/0055-isci-save-the-i-o-tag-outside-the-scic-request-stru.patch: isci: save the i/o tag outside the scic request structure (FATE#311808,bnc#709528). - patches.drivers/0056-isci-Cleaning-up-task-execute-path.patch: isci: Cleaning up task execute path (FATE#311808,bnc#709528). - patches.drivers/0057-isci-Code-review-change-for-completion-pointer-clea.patch: isci: Code review change for completion pointer cleanup (FATE#311808,bnc#709528). - patches.drivers/0058-isci-Termination-handling-cleanup-added-terminatio.patch: isci: Termination handling cleanup, added termination timeouts (FATE#311808,bnc#709528). - patches.drivers/0059-isci-Fix-TMF-build-for-SAS-SATA-LUN-reset-cases.patch: isci: Fix TMF build for SAS/SATA LUN reset cases (FATE#311808,bnc#709528). - patches.drivers/0060-isci-Fixed-BUG_ON-in-isci_abort_task_process_cb-cal.patch: isci: Fixed BUG_ON in isci_abort_task_process_cb callback (FATE#311808,bnc#709528). - patches.drivers/0061-isci-Errors-in-the-submit-path-for-SATA-devices-man.patch: isci: Errors in the submit path for SATA devices manage the ap lock (FATE#311808,bnc#709528). - patches.drivers/0062-isci-Always-set-response-status-for-requests-going.patch: isci: Always set response/status for requests going into the error path (FATE#311808,bnc#709528). - patches.drivers/0063-isci-All-pending-requests-are-terminated-before-sto.patch: isci: All pending requests are terminated before stopping the device (FATE#311808,bnc#709528). - patches.drivers/0064-isci-add-isci_id-attribute.patch: isci: add "isci_id" attribute (FATE#311808,bnc#709528). - patches.drivers/0065-isci-fix-incorrect-assumptions-about-task-dev-and.patch: isci: fix incorrect assumptions about task->dev and task->dev->port being NULL (FATE#311808,bnc#709528). - patches.drivers/0066-isci-don-t-hold-scic_lock-over-calls-to-sas_task_ab.patch: isci: don't hold scic_lock over calls to sas_task_abort() (FATE#311808,bnc#709528). - patches.drivers/0067-isci-task.h-compile-and-checkpatch-fixes.patch: isci: task.h compile and checkpatch fixes (FATE#311808,bnc#709528). - patches.drivers/0068-isci-reset-hardware-at-init.patch: isci: reset hardware at init (FATE#311808,bnc#709528). - patches.drivers/0069-isci-Add-support-for-probing-OROM-for-OEM-params.patch: isci: Add support for probing OROM for OEM params (FATE#311808,bnc#709528). - patches.drivers/0070-isci-Adding-EFI-variable-skeletal-support.patch: isci: Adding EFI variable skeletal support (FATE#311808,bnc#709528). - patches.drivers/0071-isci-add-support-for-2-more-oem-parmeters.patch: isci: add support for 2 more oem parmeters (FATE#311808,bnc#709528). - patches.drivers/0072-isci-update-efi-variable-name-and-guid.patch: isci: update efi variable name and guid (FATE#311808,bnc#709528). - patches.drivers/0073-isci-copy-the-oem-parameters-instead-of-assign.patch: isci: copy the oem parameters instead of assign (FATE#311808,bnc#709528). - patches.drivers/0074-isci-fixup-with-testing-from-isci-OROM-in-BIOS.patch: isci: fixup with testing from isci OROM in BIOS (FATE#311808,bnc#709528). - patches.drivers/0075-isci-Fixup-for-OEM-parameter-EFI-variable-retrieval.patch: isci: Fixup for OEM parameter EFI variable retrieval (FATE#311808,bnc#709528). - patches.drivers/0076-isci-fix-oem-parameter-initialization-and-mode-dete.patch: isci: fix oem parameter initialization and mode detection (FATE#311808,bnc#709528). - patches.drivers/0077-isci-exposing-user-parameters-via-module-params.patch: isci: exposing user parameters via module params (FATE#311808,bnc#709528). - patches.drivers/0078-isci-fix-apc-mode-definition.patch: isci: fix apc mode definition (FATE#311808,bnc#709528). - patches.drivers/0079-isci-fix-a-build-warning.patch: isci: fix a build warning (FATE#311808,bnc#709528). - patches.drivers/0080-isci-Remove-event_-calls-as-they-are-just-wrappers.patch: isci: Remove event_* calls as they are just wrappers (FATE#311808,bnc#709528). - patches.drivers/0081-isci-reorder-init-to-cleanup-unneeded-declarations.patch: isci: reorder init to cleanup unneeded declarations (FATE#311808,bnc#709528). - patches.drivers/0082-isci-kill-some-long-macros.patch: isci: kill some long macros (FATE#311808,bnc#709528). - patches.drivers/0083-isci-namespacecheck-cleanups.patch: isci: namespacecheck cleanups (FATE#311808,bnc#709528). - patches.drivers/0084-isci-remove-unused-remote_device_started.patch: isci: remove unused "remote_device_started" (FATE#311808,bnc#709528). - patches.drivers/0085-isci-Remove-screaming-data-types.patch: isci: Remove "screaming" data types (FATE#311808,bnc#709528). - patches.drivers/0086-isci-Properly-handle-requests-in-the-aborting-sta.patch: isci: Properly handle requests in the "aborting" state (FATE#311808,bnc#709528). - patches.drivers/0087-isci-Free-host-lock-for-SATA-STP-abort-escalation-a.patch: isci: Free host lock for SATA/STP abort escalation at submission time (FATE#311808,bnc#709528). - patches.drivers/0088-isci-Fix-use-of-SATA-soft-reset-state-machine.patch: isci: Fix use of SATA soft reset state machine (FATE#311808,bnc#709528). - patches.drivers/0089-isci-Qualify-when-the-host-lock-is-managed-for-STP.patch: isci: Qualify when the host lock is managed for STP/SATA callbacks (FATE#311808,bnc#709528). - patches.drivers/0090-isci-cleanup-isci_remote_device-_not-_ready-interfa.patch: isci: cleanup isci_remote_device[_not]_ready interface (FATE#311808,bnc#709528). - patches.drivers/0091-isci-fix-fragile-conditional-isci_host-lookups.patch: isci: fix fragile/conditional isci_host lookups (FATE#311808,bnc#709528). - patches.drivers/0092-isci-remove-mmio-wrappers.patch: isci: remove mmio wrappers (FATE#311808,bnc#709528). - patches.drivers/0093-isci-remove-base_controller-abstraction.patch: isci: remove base_controller abstraction (FATE#311808,bnc#709528). - patches.drivers/0094-isci-remove-base_request-abstraction.patch: isci: remove base_request abstraction (FATE#311808,bnc#709528). - patches.drivers/0095-isci-kill-dead-data-structurs-in-scic_io_request.h.patch: isci: kill dead data structurs in scic_io_request.h (FATE#311808,bnc#709528). - patches.drivers/0096-isci-simplify-request-state-handlers.patch: isci: simplify request state handlers (FATE#311808,bnc#709528). - patches.drivers/0097-isci-simplify-dma-coherent-allocation.patch: isci: simplify dma coherent allocation (FATE#311808,bnc#709528). - patches.drivers/0098-isci-remove-scic_controller-state-handlers.patch: isci: remove scic_controller state handlers (FATE#311808,bnc#709528). - patches.drivers/0099-isci-remove-base_remote_device-abstraction.patch: isci: remove base_remote_device abstraction (FATE#311808,bnc#709528). - patches.drivers/0100-isci-remove-base_port-abstraction.patch: isci: remove base_port abstraction (FATE#311808,bnc#709528). - patches.drivers/0101-isci-remove-base_phy-abstraction.patch: isci: remove base_phy abstraction (FATE#311808,bnc#709528). - patches.drivers/0102-isci-replace-sci_sas_link_rate-with-sas_linkrate.patch: isci: replace sci_sas_link_rate with sas_linkrate (FATE#311808,bnc#709528). - patches.drivers/0103-isci-sparse-warnings-cleanup.patch: isci: sparse warnings cleanup (FATE#311808,bnc#709528). - patches.drivers/0104-isci-audit-usage-of-BUG_ON-macro-in-isci-driver.patch: isci: audit usage of BUG_ON macro in isci driver (FATE#311808,bnc#709528). - patches.drivers/0105-isci-fix-oem-parameter-header-definition.patch: isci: fix oem parameter header definition (FATE#311808,bnc#709528). - patches.drivers/0106-isci-validate-oem-parameters-early-and-fallback.patch: isci: validate oem parameters early, and fallback (FATE#311808,bnc#709528). - patches.drivers/0107-isci-replace-this_-and-the_-variables-with-more-m.patch: isci: replace this_* and the_* variables with more meaningful names (FATE#311808,bnc#709528). - patches.drivers/0108-isci-rely-on-irq-core-for-intx-multiplexing-and-si.patch: isci: rely on irq core for intx multiplexing, and silence screaming intx (FATE#311808,bnc#709528). - patches.drivers/0109-isci-make-a-remote_node_context-a-proper-member-of.patch: isci: make a remote_node_context a proper member of a remote_device (FATE#311808,bnc#709528). - patches.drivers/0110-isci-remove-rnc-device-back-pointer.patch: isci: remove rnc->device back pointer (FATE#311808,bnc#709528). - patches.drivers/0111-isci-unify-remote_device-data-structures.patch: isci: unify remote_device data structures (FATE#311808,bnc#709528). - patches.drivers/0112-isci-move-remote_device-handling-out-of-the-core.patch: isci: move remote_device handling out of the core (FATE#311808,bnc#709528). - patches.drivers/0113-isci-cleanup-remote-device-construction-and-comment.patch: isci: cleanup remote device construction and comments (FATE#311808,bnc#709528). - patches.drivers/0114-isci-kill-smp_discover_response_protocols-in-favor.patch: isci: kill smp_discover_response_protocols in favor of domain_device.dev_type (FATE#311808,bnc#709528). - patches.drivers/0115-isci-kill-smp_discover_response.patch: isci: kill smp_discover_response (FATE#311808,bnc#709528). - patches.drivers/0116-isci-remove-usage-of-sci_sas_address-in-scic_sds_re.patch: isci: remove usage of sci_sas_address in scic_sds_remote_device (FATE#311808,bnc#709528). - patches.drivers/0117-isci-remove-scic_sds_remote_device_get_port_index.patch: isci: remove scic_sds_remote_device_get_port_index (FATE#311808,bnc#709528). - patches.drivers/0118-isci-removing-non-working-ATAPI-code.patch: isci: removing non-working ATAPI code (FATE#311808,bnc#709528). - patches.drivers/0119-isci-allow-fallback-to-option-rom-if-efi-variable-r.patch: isci: allow fallback to option-rom if efi variable retrieval fails (FATE#311808,bnc#709528). - patches.drivers/0120-isci-Remove-excessive-log-noise-with-expander-hot-u.patch: isci: Remove excessive log noise with expander hot-unplug (FATE#311808,bnc#709528). - patches.drivers/0121-isci-Implement-SCU-AFE-recipe-10.patch: isci: Implement SCU AFE recipe 10 (FATE#311808,bnc#709528). - patches.drivers/0122-isci-Removed-struct-sci_base_object-from-state-mach.patch: isci: Removed struct sci_base_object from state machine (FATE#311808,bnc#709528). - patches.drivers/0123-isci-Removed-sci_base_object-from-scic_sds_controll.patch: isci: Removed sci_base_object from scic_sds_controller (FATE#311808,bnc#709528). - patches.drivers/0124-isci-Removed-sci_base_object-from-scic_sds_phy.patch: isci: Removed sci_base_object from scic_sds_phy (FATE#311808,bnc#709528). - patches.drivers/0125-isci-Removed-sci_base_object-from-scic_sds_port.patch: isci: Removed sci_base_object from scic_sds_port (FATE#311808,bnc#709528). - patches.drivers/0126-isci-Removed-sci_base_object-from-scic_sds_remote_d.patch: isci: Removed sci_base_object from scic_sds_remote_device (FATE#311808,bnc#709528). - patches.drivers/0127-isci-Removed-sci_base_object-from-scic_sds_remote_n.patch: isci: Removed sci_base_object from scic_sds_remote_node_context (FATE#311808,bnc#709528). - patches.drivers/0128-isci-Removed-sci_base_object-from-scic_sds_request.patch: isci: Removed sci_base_object from scic_sds_request (FATE#311808,bnc#709528). - patches.drivers/0129-isci-Removed-sci_object.h-from-project.patch: isci: Removed sci_object.h from project (FATE#311808,bnc#709528). - patches.drivers/0130-isci-merge-remote_device-substates-into-a-single-st.patch: isci: merge remote_device substates into a single state machine (FATE#311808,bnc#709528). - patches.drivers/0131-isci-kill-scic_remote_device_get_connection_rate.patch: isci: kill scic_remote_device_get_connection_rate (FATE#311808,bnc#709528). - patches.drivers/0132-isci-fix-remote_device-start_io-regressions.patch: isci: fix remote_device start_io regressions (FATE#311808,bnc#709528). - patches.drivers/0133-isci-unify-remote_device-start_handlers.patch: isci: unify remote_device start_handlers (FATE#311808,bnc#709528). - patches.drivers/0134-isci-unify-remote_device-stop_handlers.patch: isci: unify remote_device stop_handlers (FATE#311808,bnc#709528). - patches.drivers/0135-isci-kill-remote_device-fail_handler.patch: isci: kill remote_device fail_handler (FATE#311808,bnc#709528). - patches.drivers/0136-isci-unify-remote_device-destruct_handlers.patch: isci: unify remote_device destruct_handlers (FATE#311808,bnc#709528). - patches.drivers/0137-isci-unify-remote_device-reset_handlers.patch: isci: unify remote_device reset_handlers (FATE#311808,bnc#709528). - patches.drivers/0138-isci-unify-remote_device-reset_complete_handlers.patch: isci: unify remote_device reset_complete_handlers (FATE#311808,bnc#709528). - patches.drivers/0139-isci-unify-remote_device-start_io_handlers.patch: isci: unify remote_device start_io_handlers (FATE#311808,bnc#709528). - patches.drivers/0140-isci-unify-remote_device-complete_io_handlers.patch: isci: unify remote_device complete_io_handlers (FATE#311808,bnc#709528). - patches.drivers/0141-isci-kill-remote_device-continue_io_handler.patch: isci: kill remote_device continue_io_handler (FATE#311808,bnc#709528). - patches.drivers/0142-isci-unify-remote_device-start_task_handlers.patch: isci: unify remote_device start_task_handlers (FATE#311808,bnc#709528). - patches.drivers/0143-isci-kill-remote_device-complete_task_handler.patch: isci: kill remote_device complete_task_handler (FATE#311808,bnc#709528). - patches.drivers/0144-isci-unify-remote_device-suspend_handlers.patch: isci: unify remote_device suspend_handlers (FATE#311808,bnc#709528). - patches.drivers/0145-isci-kill-remote_device-resume_handler.patch: isci: kill remote_device resume_handler (FATE#311808,bnc#709528). - patches.drivers/0146-isci-unify-remote_device-event_handlers.patch: isci: unify remote_device event_handlers (FATE#311808,bnc#709528). - patches.drivers/0147-isci-unify-remote_device-frame_handlers.patch: isci: unify remote_device frame_handlers (FATE#311808,bnc#709528). - patches.drivers/0148-isci-kill-scic_sds_remote_device.state_handlers.patch: isci: kill scic_sds_remote_device.state_handlers (FATE#311808,bnc#709528). - patches.drivers/0149-isci-Removing-unused-define-SCIC_SDS_4_ENABLED.patch: isci: Removing unused define SCIC_SDS_4_ENABLED (FATE#311808,bnc#709528). - patches.drivers/0150-isci-remove-compile-time-Kconfig-silicon-configur.patch: isci: remove compile-time (Kconfig) silicon configuration (FATE#311808,bnc#709528). - patches.drivers/0151-isci-Convert-SATA-fis-data-structures-to-Linux-nati.patch: isci: Convert SATA fis data structures to Linux native (FATE#311808,bnc#709528). - patches.drivers/0152-isci-Convert-ATA-defines-to-Linux-native-defines.patch: isci: Convert ATA defines to Linux native defines (FATE#311808,bnc#709528). - patches.drivers/0153-isci-Convert-SAS-identify-address-frame-to-Linux-Na.patch: isci: Convert SAS identify address frame to Linux Native format (FATE#311808,bnc#709528). - patches.drivers/0154-isci-Collapsing-of-phy_type-data-structure.patch: isci: Collapsing of phy_type data structure (FATE#311808,bnc#709528). - patches.drivers/0155-isci-renaming-sas_capabilities-to-scic_phy_cap.patch: isci: renaming sas_capabilities to scic_phy_cap (FATE#311808,bnc#709528). - patches.drivers/0156-isci-Fixup-SSP-command-IU-and-task-IU.patch: isci: Fixup SSP command IU and task IU (FATE#311808,bnc#709528). - patches.drivers/0157-isci-Convert-of-sci_ssp_response_iu-to-ssp_response.patch: isci: Convert of sci_ssp_response_iu to ssp_response_iu (FATE#311808,bnc#709528). - patches.drivers/0158-isci-Fixup-of-smp-request.patch: isci: Fixup of smp request (FATE#311808,bnc#709528). - patches.drivers/0159-isci-Converting-smp_response-to-Linux-native-smp_re.patch: isci: Converting smp_response to Linux native smp_resp (FATE#311808,bnc#709528). - patches.drivers/0160-isci-remove-redundant-copies-of-IAF.patch: isci: remove redundant copies of IAF (FATE#311808,bnc#709528). - patches.drivers/0161-isci-fixup-SAS-iaf-protocols-data-structure.patch: isci: fixup SAS iaf protocols data structure (FATE#311808,bnc#709528). - patches.drivers/0162-isci-Remove-SCIC_SWAP_DWORD.patch: isci: Remove SCIC_SWAP_DWORD() (FATE#311808,bnc#709528). - patches.drivers/0163-isci-Using-Linux-SSP-frame-header.patch: isci: Using Linux SSP frame header (FATE#311808,bnc#709528). - patches.drivers/0164-isci-removing-intel_-.h-headers.patch: isci: removing intel_*.h headers (FATE#311808,bnc#709528). - patches.drivers/0165-isci-fix-ata-locking.patch: isci: fix ata locking (FATE#311808,bnc#709528). - patches.drivers/0166-isci-implement-I_T_nexus_reset.patch: isci: implement I_T_nexus_reset (FATE#311808,bnc#709528). - patches.drivers/0167-isci-unify-isci_host-data-structures.patch: isci: unify isci_host data structures (FATE#311808,bnc#709528). - patches.drivers/0168-isci-Removing-unnecessary-functions-in-request.c.patch: isci: Removing unnecessary functions in request.c (FATE#311808,bnc#709528). - patches.drivers/0169-isci-kill-scic_controller_get_port_handle-function.patch: isci: kill scic_controller_get_port_handle function (FATE#311808,bnc#709528). - patches.drivers/0170-isci-remove-scic_sds_port_increment_request_count.patch: isci: remove scic_sds_port_increment_request_count (FATE#311808,bnc#709528). - patches.drivers/0171-isci-rnc-state-machine-table-c99-conversion.patch: isci: rnc state machine table c99 conversion (FATE#311808,bnc#709528). - patches.drivers/0172-isci-unify-phy-data-structures.patch: isci: unify phy data structures (FATE#311808,bnc#709528). - patches.drivers/0173-isci-unify-port-data-structures.patch: isci: unify port data structures (FATE#311808,bnc#709528). - patches.drivers/0174-isci-move-stp-request-info-to-scic_sds_request.patch: isci: move stp request info to scic_sds_request (FATE#311808,bnc#709528). - patches.drivers/0175-isci-make-sgl-explicit-aligned-request-object-membe.patch: isci: make sgl explicit/aligned request object member (FATE#311808,bnc#709528). - patches.drivers/0176-isci-move-task-context-alignment-from-run-time-to-c.patch: isci: move task context alignment from run-time to compile time (FATE#311808,bnc#709528). - patches.drivers/0177-isci-make-command-response-iu-explicit-request-obje.patch: isci: make command/response iu explicit request object members (FATE#311808,bnc#709528). - patches.drivers/0178-isci-unify-request-data-structures.patch: isci: unify request data structures (FATE#311808,bnc#709528). - patches.drivers/0179-isci-unify-constants.patch: isci: unify constants (FATE#311808,bnc#709528). - patches.drivers/0180-isci-move-core-controller-to-host.patch: isci: move core/controller to host (FATE#311808,bnc#709528). - patches.drivers/0181-isci-uplevel-register-hardware-data-structures-and.patch: isci: uplevel register hardware data structures and unsolicited frame handling (FATE#311808,bnc#709528). - patches.drivers/0182-isci-uplevel-state-machine.patch: isci: uplevel state machine (FATE#311808,bnc#709528). - patches.drivers/0183-isci-uplevel-request-infrastructure.patch: isci: uplevel request infrastructure (FATE#311808,bnc#709528). - patches.drivers/0184-isci-uplevel-phy-infrastructure.patch: isci: uplevel phy infrastructure (FATE#311808,bnc#709528). - patches.drivers/0185-isci-uplevel-port-infrastructure.patch: isci: uplevel port infrastructure (FATE#311808,bnc#709528). - patches.drivers/0186-isci-merge-ssp-task-management-substates-into-prima.patch: isci: merge ssp task management substates into primary state machine (FATE#311808,bnc#709528). - patches.drivers/0187-isci-merge-smp-request-substates-into-primary-state.patch: isci: merge smp request substates into primary state machine (FATE#311808,bnc#709528). - patches.drivers/0188-isci-merge-stp-request-substates-into-primary-state.patch: isci: merge stp request substates into primary state machine (FATE#311808,bnc#709528). - patches.drivers/0189-isci-unify-request-abort-handlers.patch: isci: unify request abort handlers (FATE#311808,bnc#709528). - patches.drivers/0190-isci-unify-request-start-handlers.patch: isci: unify request start handlers (FATE#311808,bnc#709528). - patches.drivers/0191-isci-unify-request-frame-handlers.patch: isci: unify request frame handlers (FATE#311808,bnc#709528). - patches.drivers/0192-isci-remove-request-task-context-completion-state-h.patch: isci: remove request task context completion state handler (FATE#311808,bnc#709528). - patches.drivers/0193-isci-remove-the-completion-and-event-state-handlers.patch: isci: remove the completion and event state handlers (FATE#311808,bnc#709528). - patches.drivers/0194-isci-merge-phy-substates.patch: isci: merge phy substates (FATE#311808,bnc#709528). - patches.drivers/0195-isci-unify-phy-start-handlers.patch: isci: unify phy start handlers (FATE#311808,bnc#709528). - patches.drivers/0196-isci-unify-phy-stop-handlers.patch: isci: unify phy stop handlers (FATE#311808,bnc#709528). - patches.drivers/0197-isci-unify-phy-reset-handlers.patch: isci: unify phy reset handlers (FATE#311808,bnc#709528). - patches.drivers/0198-isci-remove-phy-destruct-handlers.patch: isci: remove phy destruct handlers (FATE#311808,bnc#709528). - patches.drivers/0199-isci-unify-phy-frame-handlers.patch: isci: unify phy frame handlers (FATE#311808,bnc#709528). - patches.drivers/0200-isci-unify-phy-event-handlers.patch: isci: unify phy event handlers (FATE#311808,bnc#709528). - patches.drivers/0201-isci-unify-phy-consume_power-handlers.patch: isci: unify phy consume_power handlers (FATE#311808,bnc#709528). - patches.drivers/0202-isci-clarify-phy-to-port-lookups.patch: isci: clarify phy to port lookups (FATE#311808,bnc#709528). - patches.drivers/0203-isci-c99-port-state-handlers.patch: isci: c99 port state handlers (FATE#311808,bnc#709528). - patches.drivers/0204-isci-merge-port-ready-substates-into-primary-state.patch: isci: merge port ready substates into primary state machine (FATE#311808,bnc#709528). - patches.drivers/0205-isci-remove-port-start-handler.patch: isci: remove port start handler (FATE#311808,bnc#709528). - patches.drivers/0206-isci-unify-port-stop-handlers.patch: isci: unify port stop handlers (FATE#311808,bnc#709528). - patches.drivers/0207-isci-remove-port-destruct-handler.patch: isci: remove port destruct handler (FATE#311808,bnc#709528). - patches.drivers/0208-isci-unify-port-reset-add_phy-and-remove_phy-hand.patch: isci: unify port reset, add_phy, and remove_phy handlers (FATE#311808,bnc#709528). - patches.drivers/0209-isci-remove-port-frame-and-event-handlers.patch: isci: remove port frame and event handlers (FATE#311808,bnc#709528). - patches.drivers/0210-isci-unify-port-link_up-and-link_down-handlers.patch: isci: unify port link_up and link_down handlers (FATE#311808,bnc#709528). - patches.drivers/0211-isci-unify-port-start_io-and-complete_io-handlers.patch: isci: unify port start_io and complete_io handlers (FATE#311808,bnc#709528). - patches.drivers/0212-isci-unify-rnc-event-handlers.patch: isci: unify rnc event handlers (FATE#311808,bnc#709528). - patches.drivers/0213-isci-unify-rnc-destruct-handlers.patch: isci: unify rnc destruct handlers (FATE#311808,bnc#709528). - patches.drivers/0214-isci-unify-rnc-suspend-resume-handlers.patch: isci: unify rnc suspend/resume handlers (FATE#311808,bnc#709528). - patches.drivers/0215-isci-unify-rnc-start-io-task-handlers.patch: isci: unify rnc start{io|task} handlers (FATE#311808,bnc#709528). - patches.drivers/0216-isci-add-some-type-safety-to-the-state-machine-inte.patch: isci: add some type safety to the state machine interface (FATE#311808,bnc#709528). - patches.drivers/0217-isci-replace-isci_timer-list-with-proper-embedded-t.patch: isci: replace isci_timer list with proper embedded timers (FATE#311808,bnc#709528). - patches.drivers/0218-isci-convert-port-config-agent-timer-to-sci_timer.patch: isci: convert port config agent timer to sci_timer (FATE#311808,bnc#709528). - patches.drivers/0219-isci-convert-phy-sata_timeout_timer-to-sci_timer.patch: isci: convert phy sata_timeout_timer to sci_timer (FATE#311808,bnc#709528). - patches.drivers/0220-isci-convert-power-control-timer-to-sci_timer.patch: isci: convert power control timer to sci_timer (FATE#311808,bnc#709528). - patches.drivers/0221-isci-convert-scic_timeout_timer-to-sci_timer.patch: isci: convert scic_timeout_timer to sci_timer (FATE#311808,bnc#709528). - patches.drivers/0222-isci-convert-phy_startup_timer-to-sci_timer.patch: isci: convert phy_startup_timer to sci_timer (FATE#311808,bnc#709528). - patches.drivers/0223-isci-Remove-tmf-timeout_timer.patch: isci: Remove tmf timeout_timer (FATE#311808,bnc#709528). - patches.drivers/0224-isci-remove-isci_timer-interface.patch: isci: remove isci_timer interface (FATE#311808,bnc#709528). - patches.drivers/0225-isci-removing-the-kmalloc-in-smp-request-construct.patch: isci: removing the kmalloc in smp request construct (FATE#311808,bnc#709528). - patches.drivers/0226-isci-Retrieve-the-EFI-variable-for-OEM-parameter.patch: isci: Retrieve the EFI variable for OEM parameter (FATE#311808,bnc#709528). - patches.drivers/0227-isci-Removing-unused-variables-compiler-warnings.patch: isci: Removing unused variables compiler warnings (FATE#311808,bnc#709528). - patches.drivers/0228-isci-state-machine-cleanup.patch: isci: state machine cleanup (FATE#311808,bnc#709528). - patches.drivers/0229-isci-additional-state-machine-cleanup.patch: isci: additional state machine cleanup (FATE#311808,bnc#709528). - patches.drivers/0230-isci-Added-support-for-C0-to-SCU-Driver.patch: isci: Added support for C0 to SCU Driver (FATE#311808,bnc#709528). - patches.drivers/0231-isci-remove-min-memory-infrastructure.patch: isci: remove 'min memory' infrastructure (FATE#311808,bnc#709528). - patches.drivers/0232-isci-Move-the-reset-delay-after-the-remote-node-res.patch: isci: Move the reset delay after the remote node resumption (FATE#311808,bnc#709528). - patches.drivers/0233-isci-filter-broadcast-change-notifications-during-S.patch: isci: filter broadcast change notifications during SMP phy resets (FATE#311808,bnc#709528). - patches.drivers/0234-isci-Add-decode-for-SMP-request-retry-error-conditi.patch: isci: Add decode for SMP request retry error condition (FATE#311808,bnc#709528). - patches.drivers/0235-isci-Requests-that-do-not-start-must-be-set-to-com.patch: isci: Requests that do not start must be set to "complete" (FATE#311808,bnc#709528). - patches.drivers/0236-isci-Handle-timed-out-request-terminations-correctl.patch: isci: Handle timed-out request terminations correctly (FATE#311808,bnc#709528). - patches.drivers/0237-isci-fix-isci_terminate_pending-list-management.patch: isci: fix isci_terminate_pending() list management (FATE#311808,bnc#709528). - patches.drivers/0238-isci-Explicitly-decode-remote-node-ready-and-suspen.patch: isci: Explicitly decode remote node ready and suspended states (FATE#311808,bnc#709528). - patches.drivers/0239-isci-Hard-reset-failure-will-link-reset-all-phys-in.patch: isci: Hard reset failure will link reset all phys in the port (FATE#311808,bnc#709528). - patches.drivers/0240-isci-Disable-link-layer-hang-detection.patch: isci: Disable link layer hang detection (FATE#311808,bnc#709528). - patches.drivers/0241-isci-cleanup-optimize-pool-implementation.patch: isci: cleanup/optimize pool implementation (FATE#311808,bnc#709528). - patches.drivers/0242-isci-cleanup-tag-macros.patch: isci: cleanup tag macros (FATE#311808,bnc#709528). - patches.drivers/0243-isci-cleanup-optimize-queue-increment-macros.patch: isci: cleanup/optimize queue increment macros (FATE#311808,bnc#709528). - patches.drivers/0244-isci-cleanup-request-allocation.patch: isci: cleanup request allocation (FATE#311808,bnc#709528). - patches.drivers/0245-isci-fix-ssp-response-iu-buffer-size-in-isci_tmf.patch: isci: fix ssp response iu buffer size in isci_tmf (FATE#311808,bnc#709528). - patches.drivers/0246-isci-atomic-device-lookup-and-reference-counting.patch: isci: atomic device lookup and reference counting (FATE#311808,bnc#709528). - patches.drivers/0247-isci-kill-isci_remote_device_change_state.patch: isci: kill isci_remote_device_change_state() (FATE#311808,bnc#709528). - patches.drivers/0248-isci-kill-device_sequence.patch: isci: kill device_sequence (FATE#311808,bnc#709528). - patches.drivers/0249-isci-fix-smp-response-frame-overrun.patch: isci: fix smp response frame overrun (FATE#311808,bnc#709528). - patches.drivers/0250-isci-fix-dma_unmap_sg-usage.patch: isci: fix dma_unmap_sg usage (FATE#311808,bnc#709528). - patches.drivers/0251-isci-fix-support-for-arbitrarily-large-smp-requests.patch: isci: fix support for arbitrarily large smp requests (FATE#311808,bnc#709528). - patches.drivers/0252-isci-fix-isci_task_execute_tmf-completion.patch: isci: fix isci_task_execute_tmf completion (FATE#311808,bnc#709528). - patches.drivers/0253-isci-possible-buffer-overflow-in-isci_parse_oem_par.patch: isci: possible buffer overflow in isci_parse_oem_parameters fixed (FATE#311808,bnc#709528). - patches.drivers/0254-isci-fix-frame-received-locking.patch: isci: fix frame received locking (FATE#311808,bnc#709528). - patches.drivers/0255-isci-Terminate-dev-requests-on-FIS-err-bit-rx-in-NC.patch: isci: Terminate dev requests on FIS err bit rx in NCQ (FATE#311808,bnc#709528). - patches.drivers/0256-isci-unify-can_queue-tracking-on-the-tci_pool-uple.patch: isci: unify can_queue tracking on the tci_pool, uplevel tag assignment (FATE#311808,bnc#709528). - patches.drivers/0257-isci-combine-request-flags.patch: isci: combine request flags (FATE#311808,bnc#709528). - patches.drivers/0258-isci-preallocate-requests.patch: isci: preallocate requests (FATE#311808,bnc#709528). - patches.drivers/0259-isci-rename-clean-up-scic_sds_stp_request.patch: isci: rename / clean up scic_sds_stp_request (FATE#311808,bnc#709528). - patches.drivers/0260-isci-unify-isci_request-and-scic_sds_request.patch: isci: unify isci_request and scic_sds_request (FATE#311808,bnc#709528). - patches.drivers/0261-isci-unify-isci_phy-and-scic_sds_phy.patch: isci: unify isci_phy and scic_sds_phy (FATE#311808,bnc#709528). - patches.drivers/0262-isci-fix-scic_sds_remote_device_terminate_requests.patch: isci: fix scic_sds_remote_device_terminate_requests (FATE#311808,bnc#709528). - patches.drivers/0263-isci-unify-isci_port-and-scic_sds_port.patch: isci: unify isci_port and scic_sds_port (FATE#311808,bnc#709528). - patches.drivers/0264-isci-unify-isci_remote_device-and-scic_sds_remote_d.patch: isci: unify isci_remote_device and scic_sds_remote_device (FATE#311808,bnc#709528). - patches.drivers/0265-isci-unify-isci_host-and-scic_sds_controller.patch: isci: unify isci_host and scic_sds_controller (FATE#311808,bnc#709528). - patches.drivers/0266-isci-retire-scic_sds_-and-scic_-prefixes.patch: isci: retire scic_sds_ and scic_ prefixes (FATE#311808,bnc#709528). - patches.drivers/0267-isci-kill-get-set-macros.patch: isci: kill 'get/set' macros (FATE#311808,bnc#709528). - patches.drivers/0268-isci-merge-sata.-ch-into-request.c.patch: isci: merge sata.[ch] into request.c (FATE#311808,bnc#709528). - patches.drivers/0269-isci-merge-scu_unsolicited_frame.h-into-unsolicited.patch: isci: merge scu_unsolicited_frame.h into unsolicited_frame_control.h (FATE#311808,bnc#709528). - patches.drivers/0270-isci-cleanup-silicon-revision-detection.patch: isci: cleanup silicon revision detection (FATE#311808,bnc#709528). - patches.drivers/0271-isci-pare-back-error-messsages.patch: isci: pare back error messsages (FATE#311808,bnc#709528). - patches.drivers/0272-isci-Device-reset-should-request-sas_phy_reset-phy.patch: isci: Device reset should request sas_phy_reset(phy, true) (FATE#311808,bnc#709528). - patches.drivers/0273-isci-fix-checkpatch-errors.patch: isci: fix checkpatch errors (FATE#311808,bnc#709528). - patches.fixes/0001-isci-fix-sata-response-handling.patch: isci: fix sata response handling (FATE#311808,bnc#709528). - patches.fixes/0002-isci-fix-32-bit-operation-when-CONFIG_HIGHMEM64G-n.patch: isci: fix 32-bit operation when CONFIG_HIGHMEM64G=n (FATE#311808,bnc#709528). - patches.fixes/0003-isci-change-sas-phy-timeouts-from-54us-to-59us.patch: isci: change sas phy timeouts from 54us to 59us (FATE#311808,bnc#709528). - patches.fixes/0004-isci-Adding-documentation-to-API-change-and-fixup-s.patch: isci: Adding documentation to API change and fixup sysfs registration (FATE#311808,bnc#709528). - patches.fixes/0005-isci-Leave-requests-alone-if-already-terminating.patch: isci: Leave requests alone if already terminating (FATE#311808,bnc#709528). - patches.fixes/0006-isci-dynamic-interrupt-coalescing.patch: isci: dynamic interrupt coalescing (FATE#311808,bnc#709528). - patches.fixes/0007-isci-fix-event-get-pointer-increment.patch: isci: fix event-get pointer increment (FATE#311808,bnc#709528). - patches.fixes/0008-isci-add-version-number.patch: isci: add version number (FATE#311808,bnc#709528).Always disable APEI by default: - patches.drivers/acpi_apei_disable_suse.patch: Refresh.- patches.arch/ppc-fate-311687-kmsg_dump: core: Add kernel message dumper to call on oopses and panics (bnc#701198, FATE#311687). - patches.suse/kdump-dump_after_notifier.patch: Refresh. - patches.arch/ppc-fate-311687-01-kmsg_dump: Delete. - patches.arch/ppc-fate-311687-02-kmsg_dump_on_kexec: Delete.- patches.fixes/iscsi_boot_sysfs-have-this-module-check-for-null-on.patch: iscsi_boot_sysfs: have this module check for null on destruction (bnc#709467). - patches.fixes/iscsi_ibft-be2iscsi-iscsi_boot-fix-boot-kobj-data.patch: iscsi_ibft, be2iscsi, iscsi_boot: fix boot kobj data lifetime management (bnc#709467). - patches.fixes/iscsi_tcp-fix-locking-around-iscsi-sk-user-data.patch: iscsi_tcp: fix locking around iscsi sk user data (bnc#709467). - patches.fixes/libiscsi_tcp-fix-LLD-data-allocation.patch: libiscsi_tcp: fix LLD data allocation (bnc#709467).- patches.drivers/cnic-Add-VLAN-ID-as-a-parameter-during-netevent-upca.patch: cnic: Add VLAN ID as a parameter during netevent upcall (bnc#709068). - patches.fixes/kvm-stable-fix-information-leak-to-userland.patch: Fixup for series2git. - patches.xen/xen3-patch-2.6.30: Fixup for series2git.- Update config files (add HAVE_MIXED_BREAKPOINTS_REGS for ppc64 hw breakpt) - Fix debug/trace build errors in latest ibm submission: add patches.fixes/ksym_tracer_increment_count_race.patch add patches.fixes/ksym_tracer_remove_trace_stat.patch refresh patches.suse/ppc64-hwbp-15.patch- Update config files: Disable VMXNET3 on !X86.- patches.drivers/0001-vmxnet-trivial-annotation-of-protocol-constant.patch: vmxnet: trivial annotation of protocol constant (bnc#674189, fate#311981). - patches.drivers/0002-net-Getting-rid-of-the-x86-dependency-to-built-vmxne.patch: net: Getting rid of the x86 dependency to built vmxnet3 (bnc#674189, fate#311981). - patches.drivers/0003-drivers-net-Move-and-to-end-of-previous-line.patch: drivers/net: Move && and || to end of previous line (bnc#674189, fate#311981). - patches.drivers/0004-drivers-net-use-DEFINE_PCI_DEVICE_TABLE.patch: drivers/net/: use DEFINE_PCI_DEVICE_TABLE() (bnc#674189, fate#311981). - patches.drivers/0005-net-use-netdev_mc_count-and-netdev_mc_empty-when-app.patch: net: use netdev_mc_count and netdev_mc_empty when appropriate (bnc#674189, fate#311981). - patches.drivers/0006-net-convert-multiple-drivers-to-use-netdev_for_each_.patch: net: convert multiple drivers to use netdev_for_each_mc_addr, part6 (bnc#674189, fate#311981). - patches.drivers/0007-drivers-net-last_rx-elimination.patch: drivers: net: last_rx elimination (bnc#674189, fate#311981). - patches.drivers/0008-net-trans_start-cleanups.patch: net: trans_start cleanups (bnc#674189, fate#311981). - patches.drivers/0009-drivers-net-vmxnet3-Use-kzalloc.patch: drivers/net/vmxnet3: Use kzalloc (bnc#674189, fate#311981). - patches.drivers/0010-vmxnet3-fail-when-try-to-setup-unsupported-features.patch: vmxnet3: fail when try to setup unsupported features (bnc#674189, fate#311981). - patches.drivers/0011-vmxnet3-remove-duplicate-include.patch: vmxnet3: remove duplicate #include (bnc#674189, fate#311981). - patches.drivers/0015-vmxnet3-make-bit-twiddle-routines-inline.patch: vmxnet3: make bit twiddle routines inline (bnc#674189, fate#311981). - patches.drivers/0016-vmxnet3-Remove-incorrect-implementation-of-ethtool_o.patch: vmxnet3: Remove incorrect implementation of ethtool_ops::get_flags() (bnc#674189, fate#311981). - patches.drivers/0017-vmxnet3-annotate-hwaddr-members-as-__iomem-pointers.patch: vmxnet3: annotate hwaddr members as __iomem pointers (bnc#674189, fate#311981). - patches.drivers/0018-vmxnet3-fix-typo-setting-confPA.patch: vmxnet3: fix typo setting confPA (bnc#674189, fate#311981). - patches.drivers/0019-vmxnet3-remove-set_flag_le-16-64-helpers.patch: vmxnet3: remove set_flag_le{16,64} helpers (bnc#674189, fate#311981). - patches.drivers/0020-vmxnet3-remove-unnecessary-byteswapping-in-BAR-writi.patch: vmxnet3: remove unnecessary byteswapping in BAR writing macros (bnc#674189, fate#311981). - patches.drivers/0027-net-next-Add-multiqueue-support-to-vmxnet3-driver.patch: net-next: Add multiqueue support to vmxnet3 driver (bnc#674189, fate#311981). - patches.drivers/0028-vmxnet3-fix-compilation-when-RSS-is-disabled.patch: vmxnet3: fix compilation when RSS is disabled (bnc#674189, fate#311981). - patches.drivers/0029-drivers-net-don-t-use-flush_scheduled_work.patch: drivers/net: don't use flush_scheduled_work() (bnc#674189, fate#311981). - patches.drivers/0031-net-Fix-drivers-advertising-HW_CSUM-feature-to-use-c.patch: net: Fix drivers advertising HW_CSUM feature to use csum_start. - patches.drivers/0032-vmxnet3-locking-problems-in-xmit.patch: vmxnet3: locking problems in xmit (bnc#674189, fate#311981). - patches.drivers/0033-drivers-net-Use-static-const.patch: drivers/net/*/: Use static const (bnc#674189, fate#311981). - patches.drivers/0034-vmxnet3-fix-ring-size-update.patch: vmxnet3: fix ring size update (bnc#674189, fate#311981). - patches.drivers/0035-vmxnet3-Preserve-the-MAC-address-configured-by-ifcon.patch: vmxnet3: Preserve the MAC address configured by ifconfig (bnc#674189, fate#311981). - patches.drivers/0036-vmxnet3-Enable-HW-Rx-VLAN-stripping-by-default.patch: vmxnet3: Enable HW Rx VLAN stripping by default (bnc#674189, fate#311981). - patches.drivers/0037-vmxnet3-Provide-required-number-of-bytes-in-first-SG.patch: vmxnet3: Provide required number of bytes in first SG buffer (bnc#674189, fate#311981). - patches.drivers/0038-vmxnet3-Make-ethtool-handlers-multiqueue-aware.patch: vmxnet3: Make ethtool handlers multiqueue aware (bnc#674189, fate#311981). - patches.drivers/0039-vmxnet3-Disable-napi-in-suspend-reenable-in-resume.patch: vmxnet3: Disable napi in suspend, reenable in resume (bnc#674189, fate#311981). - patches.drivers/0040-vmxnet3-Add-locking-for-access-to-command-register.patch: vmxnet3: Add locking for access to command register (bnc#674189, fate#311981). - patches.drivers/0041-vmxnet3-Dont-allocate-extra-MSI-x-vectors.patch: vmxnet3: Dont allocate extra MSI-x vectors (bnc#674189, fate#311981). - patches.drivers/0042-Fix-common-misspellings.patch: Fix common misspellings (bnc#674189, fate#311981). - patches.drivers/0043-vmxnet3-Consistently-disable-irqs-when-taking-adapte.patch: vmxnet3: Consistently disable irqs when taking adapter->cmd_lock (bnc#674189, fate#311981). - patches.drivers/0044-vmxnet3-Use-single-tx-queue-when-CONFIG_PCI_MSI-not-.patch: vmxnet3: Use single tx queue when CONFIG_PCI_MSI not defined (bnc#674189, fate#311981). - patches.drivers/0045-vmxnet3-fix-starving-rx-ring-whenoc_skb-kb-fails.patch: vmxnet3: fix starving rx ring whenoc_skb kb fails (bnc#674189, fate#311981). - patches.drivers/0046-vmxnet3-round-down-of-queues-to-power-of-two.patch: vmxnet3: round down # of queues to power of two (bnc#674189, fate#311981). - patches.xen/xen3-patch-2.6.32: Refresh.- patches.fixes/oprofile_bios_ctr.patch: Delete Obsoleted by following 2 upstream patches: oprofile-007-x86-warn-user-if-a-counter-is-already-activ.patch oprofile-008-x86-add-comment-to-counter-in-use-warning.patch- Delete patches obsoleted by previous PEBS checkin (fate#311939) patches.suse/perf-0261-x86-Undo-some-some-_counter-_event-renames.patch patches.suse/perf-0262-x86-implement-ARCH_PERFMON_EVENTSEL-bit-masks.patch patches.suse/perf-0270-x86-Use-helper-function-in-x86_pmu_enable_all.patch patches.suse/perf-0271-x86-Calculate-perfctr-msr-addresses-in-helper-f.patch patches.suse/perf-0272-x86-Add-new-AMD-family-15h-msrs-to-perfctr-rese.patch patches.suse/perf-0273-x86-Store-perfctr-msr-addresses-in-config_base-.patch patches.suse/perf-0274-x86-Add-support-for-AMD-family-15h-core-counter.patch patches.suse/perf-0275-x86-Fix-pre-defined-cache-misses-event-for-AMD-.patch patches.suse/perf-0276-x86-Fix-AMD-family-15h-FPU-event-constraints.patch- Rework ppc64 hardware break point patches. patches.suse/ppc64-hardware-breakpoints.patch: Delete original patches.suse/ppc64-hwbp-{1-24}.patch: Add new series split by commit - patches.xen/xen3-patch-2.6.30: Refresh.- patches.suse/ethtool-Add-support-for-control-of-RX-flow-hash-indi.patch: ethtool: Add support for control of RX flow hash indirection (bnc#674189, fate#311981). - patches.suse/ethtool-Fix-filter-addition-when-caching-n-tuple-fil.patch: ethtool: Fix filter addition when caching n-tuple filters (bnc#674189, fate#311981). - patches.suse/net-Introduce-skb_checksum_start_offset.patch: net: Introduce skb_checksum_start_offset() (bnc#674189, fate#311981).- patches.arch/ppc-early-scan_dispatch_log-safeguard: powerpc: Fix oops if scan_dispatch_log is called too early (bnc#707988). - patches.drivers/ibmvscsi_recover_reset_notready: ibmvscsi: Improve CRQ reset reliability (bnc#708809).- patches.drivers/0166-bnx2x-Look-inside-vlan-when-determining-checksum-pro.patch: Refresh. - patches.suse/vlan-Add-function-to-retrieve-EtherType-from-vlan-packets: vlan: Add function to retrieve EtherType from vlan packets (bnc#691742, fate#311957).- patches.drivers/0142-tg3-implement-ethtool-set_phys_id.patch: Refresh. - patches.drivers/cxgb4-chelsio-t4-driver-compat: Refresh. - patches.suse/0001-ethtool-Add-reset-operation: [PATCHv2 1/8] ethtool: Add reset operation (bnc#691742, fate#311957). - patches.suse/0002-ethtool-Introduce-n-tuple-filter-programming-support: [PATCHv2 2/8] ethtool: Introduce n-tuple filter programming support (bnc#691742, fate#311957). - patches.suse/0003-ethtool-Fix-includes-build-break: [PATCHv2 3/8] ethtool: Fix includes build break (bnc#691742, fate#311957). - patches.suse/0004-netdev-ethtool-RXHASH-flag: [PATCHv2 4/8] netdev: ethtool RXHASH flag (bnc#691742, fate#311957). - patches.suse/0005-ethtool-Add-support-for-vlan-accleration: [PATCHv2 5/8] ethtool: Add support for vlan accleration (bnc#691742, fate#311957). - patches.suse/0007-ethtool-Change-ETHTOOL_PHYS_ID-implementation-to-allow-dropping-RTNL: [PATCHv2 7/8] ethtool: Change ETHTOOL_PHYS_ID implementation to allow dropping RTNL (bnc#691742, fate#311957).- Add a realtime debug and/or safety net boot option. If the user runs a 100% CPU hog on a box booted with rtsched_debug option, the box will survive and warn. - patches.fixes/sched-rtsched_debug-boot-option.patch: Add rtsched_debug boot option (bnc#708730). - patches.arch/bug-610783_uv_nortsched_boot_option.patch: Refresh.- rpm/kernel-binary.spec.in: Obsolete intel-e1000e-kmp after e1000e has been updated.- patches.fixes/x86_mtrr_fix_deadlock_condition.patch: Update references (bnc#706410).Replace patch with x86-tip patch fixing online/offline cpu issues by using cpu_active instead of online (bnc#706410): - patches.fixes/x86_mtrr_fix_deadlock_condition.patch: x86, mtrr: lock stop machine during MTRR rendezvous sequence. - patches.fixes/010-numa-hotadd.patch: Delete.- patches.fixes/mm-remove-unused-nonblocking-and-congestion-checks.patch: Refresh. - patches.fixes/writeback-avoid-unnecessary-determine_dirtyable_memo.patch: writeback: avoid unnecessary determine_dirtyable_memory call (bnc#699354). - patches.fixes/writeback-balance_dirty_pages-reduce-calls-to-global.patch: writeback: balance_dirty_pages(): reduce calls to global_page_state (bnc#699354). - patches.fixes/writeback-limit-write_cache_pages-integrity-scanning.patch: writeback: limit write_cache_pages integrity scanning to current EOF (bnc#699354). - patches.fixes/xfs-handle-negative-wbc-nr_to_write-during-sync-writ.patch: xfs: handle negative wbc->nr_to_write during sync writeback (bnc#699354). - patches.fixes/xfs-remove-nr_to_write-writeback-windup.patch: xfs: remove nr_to_write writeback windup (bnc#699354).- patches.fixes/mm-remove-unused-nonblocking-and-congestion-checks.patch: Refresh. - patches.fixes/writeback-avoid-unnecessary-determine_dirtyable_memo.patch: writeback: avoid unnecessary determine_dirtyable_memory call (bnc#699354). - patches.fixes/writeback-balance_dirty_pages-reduce-calls-to-global.patch: writeback: balance_dirty_pages(): reduce calls to global_page_state (bnc#699354). - patches.fixes/writeback-limit-write_cache_pages-integrity-scanning.patch: writeback: limit write_cache_pages integrity scanning to current EOF (bnc#699354). - patches.fixes/xfs-handle-negative-wbc-nr_to_write-during-sync-writ.patch: xfs: handle negative wbc->nr_to_write during sync writeback (bnc#699354). - patches.fixes/xfs-remove-nr_to_write-writeback-windup.patch: xfs: remove nr_to_write writeback windup (bnc#699354).- patches.fixes/tg3-Fix-io-failures-after-chip-reset.patch: tg3: Fix io failures after chip reset (bnc#705962).- patches.suse/btrfs-do-not-allow-mounting-non-subvolumes-via-subvol.patch: btrfs: do not allow mounting non-subvolumes via subvol option (bnc#703204).- series.conf: add forgotten patches.xen/xen3-intel-additional-Intel-Cougar-Point.patch- patches.drivers/0001-V4L-DVB-uvc-Enable-USB-autosuspend-by-default-on-uvc.patch: Enabling USB autosuspend for uvc devices. This was overlooked in the big backport.- supported.conf: Mark sgiioc4 ide driver as supported (bnc#706913).- e1000e update (fate#311825): - patches.drivers/0001-e1000e-Use-the-instance-of-net_device_stats-from-net.patch: e1000e: Use the instance of net_device_stats from net_device (bnc#699092, fate#311825). - patches.drivers/0003-e1000e-Fix-erroneous-display-of-stats-by-ethtool-S.patch: e1000e: Fix erroneous display of stats by ethtool -S (bnc#699092, fate#311825). - patches.drivers/0006-e1000e-check-WoL-mode-is-among-set-of-supported-mode.patch: e1000e: check WoL mode is among set of supported modes (bnc#699092, fate#311825). - patches.drivers/0007-e1000e-add-missing-tests-for-82583-in-ethtool-functi.patch: e1000e: add missing tests for 82583 in ethtool functions (bnc#699092, fate#311825). - patches.drivers/0008-e1000e-clearing-interrupt-timers-causes-descriptors-.patch: e1000e: clearing interrupt timers causes descriptors to get flushed (bnc#699092, fate#311825). - patches.drivers/0009-e1000e-function-pointers-for-ethtool-set-get-offload.patch: e1000e: function pointers for ethtool set/get offloads (bnc#699092, fate#311825). - patches.drivers/0010-e1000e-don-t-clean-Rx-ring-while-resetting.patch: e1000e: don't clean Rx ring while resetting (bnc#699092, fate#311825). - patches.drivers/0011-e1000e-link-reporting-problems.patch: e1000e: link reporting problems (bnc#699092, fate#311825). - patches.drivers/0012-e1000e-improper-return-code-signage.patch: e1000e: improper return code signage (bnc#699092, fate#311825). - patches.drivers/0013-e1000e-disable-K1-on-PCH-LOM-when-in-PHY-loopback-mo.patch: e1000e: disable K1 on PCH LOM when in PHY loopback mode (bnc#699092, fate#311825). - patches.drivers/0014-e1000e-Incorrect-MII-Link-beat-reporting.patch: e1000e: Incorrect MII Link beat reporting (bnc#699092, fate#311825). - patches.drivers/0015-e1000e-cleanup-redundant-include-s.patch: e1000e: cleanup redundant #include's (bnc#699092, fate#311825). - patches.drivers/0016-e1000e-consolidate-two-dbug-macros-into-one-simpler-.patch: e1000e: consolidate two dbug macros into one simpler one (bnc#699092, fate#311825). - patches.drivers/0017-e1000e-cleanup-ops-function-pointers.patch: e1000e: cleanup ops function pointers (bnc#699092, fate#311825). - patches.drivers/0018-e1000e-update-copyright-information.patch: e1000e: update copyright information (bnc#699092, fate#311825). - patches.drivers/0019-e1000e-remove-comments-regarding-a-non-existent-api-.patch: e1000e: remove comments regarding a non-existent api module (bnc#699092, fate#311825). - patches.drivers/0020-e1000e-provide-comment-for-82571-workaround.patch: e1000e: provide comment for 82571 workaround (bnc#699092, fate#311825). - patches.drivers/0021-e1000e-set-bools-to-true-false-instead-of-1-0.patch: e1000e: set bools to true/false instead of 1/0 (bnc#699092, fate#311825). - patches.drivers/0022-e1000e-cleanup-shift-indentation-left-by-exiting-ear.patch: e1000e: cleanup - shift indentation left by exiting early in e1000_tso (bnc#699092, fate#311825). - patches.drivers/0023-e1000e-cleanup-functions-that-clear-hardware-statist.patch: e1000e: cleanup functions that clear hardware statistics (bnc#699092, fate#311825). - patches.drivers/0024-e1000e-set-pm_qos-DMA-latency-requirement-per-interf.patch: e1000e: set pm_qos DMA latency requirement per interface when needed (bnc#699092, fate#311825). - patches.drivers/0025-e1000e-do-not-error-out-on-identification-LED-init-f.patch: e1000e: do not error out on identification LED init failure (bnc#699092, fate#311825). - patches.drivers/0026-e1000e-remove-redundant-might_sleep.patch: e1000e: remove redundant might_sleep() (bnc#699092, fate#311825). - patches.drivers/0027-e1000e-cosmetic-group-local-variables-of-the-same-ty.patch: e1000e: cosmetic - group local variables of the same type (bnc#699092, fate#311825). - patches.drivers/0028-e1000e-update-Tx-Unit-hang-detection-message.patch: e1000e: update Tx Unit hang detection message (bnc#699092, fate#311825). - patches.drivers/0029-e1000e-provide-family-specific-functions-to-manage-V.patch: e1000e: provide family-specific functions to manage VLAN filter arrays (bnc#699092, fate#311825). - patches.drivers/0030-e1000e-guard-against-buffer-overflow-in-cable-length.patch: e1000e: guard against buffer overflow in cable length tables (bnc#699092, fate#311825). - patches.drivers/0031-e1000e-provide-family-specific-PHY-power-up-down-ope.patch: e1000e: provide family-specific PHY power up/down operations (bnc#699092, fate#311825). - patches.drivers/0032-e1000e-ensure-the-link-state-is-correct-for-serdes-l.patch: e1000e: ensure the link state is correct for serdes links (bnc#699092, fate#311825). - patches.drivers/0034-e1000e-comment-corrections.patch: e1000e: comment corrections (bnc#699092, fate#311825). - patches.drivers/0035-e1000e-add-debug-messages.patch: e1000e: add debug messages (bnc#699092, fate#311825). - patches.drivers/0036-e1000e-PHY-type-cleanups-in-e1000e_check_downshift.patch: e1000e: PHY type cleanups in e1000e_check_downshift() (bnc#699092, fate#311825). - patches.drivers/0037-e1000e-Use-sizeof-struct-rather-than-pointer-in-e100.patch: e1000e: Use sizeof struct rather than pointer in e1000_get_eeprom() (bnc#699092, fate#311825). - patches.drivers/0039-e1000e-check_polarity-function-pointers-not-set-for-.patch: e1000e: check_polarity function pointers not set for 8257x (bnc#699092, fate#311825). - patches.drivers/0040-e1000e-refactor-PHY-ID-detection-workaround.patch: e1000e: refactor PHY ID detection workaround (bnc#699092, fate#311825). - patches.drivers/0041-e1000e-correct-ICH-PCH-PHY-operations-function-point.patch: e1000e: correct ICH/PCH PHY operations function pointers (bnc#699092, fate#311825). - patches.drivers/0043-e1000e-minor-correction-to-name-of-bit-in-CTRL_EXT-r.patch: e1000e: minor correction to name of bit in CTRL_EXT register (bnc#699092, fate#311825). - patches.drivers/0044-e1000e-replace-incorrect-use-of-GG82563_REG-macro.patch: e1000e: replace incorrect use of GG82563_REG macro (bnc#699092, fate#311825). - patches.drivers/0045-e1000e-only-perform-ESB2-MDIC-workaround-on-certain-.patch: e1000e: only perform ESB2 MDIC workaround on certain configurations (bnc#699092, fate#311825). - patches.drivers/0046-e1000e-LED-settings-in-EEPROM-ignored-on-82571-and-8.patch: e1000e: LED settings in EEPROM ignored on 82571 and 82572 (bnc#699092, fate#311825). - patches.drivers/0049-e1000e-don-t-accumulate-PHY-statistics-on-PHY-read-f.patch: e1000e: don't accumulate PHY statistics on PHY read failure (bnc#699092, fate#311825). - patches.drivers/0050-e1000e-perform-10-100-adaptive-IFS-only-on-parts-tha.patch: e1000e: perform 10/100 adaptive IFS only on parts that support it (bnc#699092, fate#311825). - patches.drivers/0051-e1000e-e1000e_enable_tx_pkt_filtering-returns-wrong-.patch: e1000e: e1000e_enable_tx_pkt_filtering() returns wrong value (bnc#699092, fate#311825). - patches.drivers/0052-e1000e-fix-and-commonize-code-for-setting-the-receiv.patch: e1000e: fix and commonize code for setting the receive address registers (bnc#699092, fate#311825). - patches.drivers/0053-e1000e-MDIO-slow-mode-should-always-be-done-for-8257.patch: e1000e: MDIO slow mode should always be done for 82577 (bnc#699092, fate#311825). - patches.drivers/0054-e1000e-workaround-link-issues-on-busy-hub-in-half-du.patch: e1000e: workaround link issues on busy hub in half duplex on 82577/82578 (bnc#699092, fate#311825). - patches.drivers/0055-e1000e-use-alternate-MAC-address-on-ESB2-if-availabl.patch: e1000e: use alternate MAC address on ESB2 if available (bnc#699092, fate#311825). - patches.drivers/0056-e1000e-provide-MAC-family-specific-function-to-set-L.patch: e1000e: provide MAC-family-specific function to set LAN ID (bnc#699092, fate#311825). - patches.drivers/0057-e1000e-genericize-the-update-multicast-address-list.patch: e1000e: genericize the update multicast address list (bnc#699092, fate#311825). - patches.drivers/0058-e1000-e1000e-igb-igbvf-ixgb-ixgbe-Fix-tests-of-unsig.patch: e1000/e1000e/igb/igbvf/ixgb/ixgbe: Fix tests of unsigned in * _tx_map() (bnc#699092, fate#311825). - patches.drivers/0061-net-Fix-IPv6-GSO-type-checks-in-Intel-ethernet-drive.patch: net: Fix IPv6 GSO type checks in Intel ethernet drivers (bnc#699092, fate#311825). - patches.drivers/0062-e1000e-Fix-namespace-conflicts-wrt.-e1000_has_link.patch: e1000e: Fix namespace conflicts wrt. e1000_has_link (bnc#699092, fate#311825). - patches.drivers/0063-net-e1000e-convert-to-use-mc-helpers.patch: net: e1000e: convert to use mc helpers (bnc#699092, fate#311825). - patches.drivers/0064-tree-wide-Assorted-spelling-fixes.patch: tree-wide: Assorted spelling fixes (bnc#699092, fate#311825). - patches.drivers/0065-e1000e-fix-packet-corruption-and-tx-hang-during-NFSv.patch: e1000e: fix packet corruption and tx hang during NFSv2 (bnc#699092, fate#311825). - patches.drivers/0069-e1000e-do-not-modify-tx_queue_len-on-link-speed-chan.patch: e1000e: do not modify tx_queue_len on link speed change (bnc#699092, fate#311825). - patches.drivers/0070-e1000e-Use-pr_-level-and-netdev_-level.patch: e1000e: Use pr_ and netdev_ (bnc#699092, fate#311825). - patches.drivers/0071-include-cleanup-Update-gfp.h-and-slab.h-includes-to-.patch: include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h (bnc#699092, fate#311825). - patches.drivers/0072-e1000e-typo-corrections.patch: e1000e: typo corrections (bnc#699092, fate#311825). - patches.drivers/0074-e1000e-use-static-params-to-save-stack-space.patch: e1000e: use static params to save stack space (bnc#699092, fate#311825). - patches.drivers/0076-drivers-net-use-skb_headlen.patch: drivers: net: use skb_headlen() (bnc#699092, fate#311825). - patches.drivers/0077-e1000e-enable-disable-ASPM-L0s-and-L1-and-ERT-accord.patch: e1000e: enable/disable ASPM L0s and L1 and ERT according to hardware errata (bnc#699092, fate#311825). - patches.drivers/0079-e1000e-add-registers-etc.-printout-code-just-before-.patch: e1000e: add registers etc. printout code just before resetting adapters (bnc#699092, fate#311825). - patches.drivers/0080-e1000e-Fix-oops-caused-by-ASPM-patch.patch: e1000e: Fix oops caused by ASPM patch (bnc#699092, fate#311825). - patches.drivers/0081-e1000e-save-skb-counts-in-TX-to-avoid-cache-misses.patch: e1000e: save skb counts in TX to avoid cache misses (bnc#699092, fate#311825). - patches.drivers/0082-e1000e-reduce-writes-of-RX-producer-ptr.patch: e1000e: reduce writes of RX producer ptr (bnc#699092, fate#311825). - patches.drivers/0083-e1000e-Remove-unnessary-log-message.patch: e1000e: Remove unnessary log message (bnc#699092, fate#311825). - patches.drivers/0084-e1000e-Save-irq-into-netdev-structure.patch: e1000e: Save irq into netdev structure (bnc#699092, fate#311825). - patches.drivers/0085-e1000e-increase-rx-fifo-size-to-36K-on-82574-and-825.patch: e1000e: increase rx fifo size to 36K on 82574 and 82583 (bnc#699092, fate#311825). - patches.drivers/0086-e1000-e1000e-implement-a-simple-interrupt-moderation.patch: e1000/e1000e: implement a simple interrupt moderation (bnc#699092, fate#311825). - patches.drivers/0087-e1000e-reset-MAC-PHY-interconnect-on-82577-82578-dur.patch: e1000e: reset MAC-PHY interconnect on 82577/82578 during Sx->S0 (bnc#699092, fate#311825). - patches.drivers/0088-e1000e-Reset-82577-82578-PHY-before-first-PHY-regist.patch: e1000e: Reset 82577/82578 PHY before first PHY register read (bnc#699092, fate#311825). - patches.drivers/0090-e1000e-use-static-params-to-save-stack-space-part-2.patch: e1000e: use static params to save stack space (part 2) (bnc#699092, fate#311825). - patches.drivers/0091-e1000e-bad-state-after-running-ethtool-diagnostics-w.patch: e1000e: bad state after running ethtool diagnostics with AMT enabled (bnc#699092, fate#311825). - patches.drivers/0092-e1000e-initialize-manageability-IPMI-pass-through-in.patch: e1000e: initialize manageability (IPMI) pass-through in 82574/82583 (bnc#699092, fate#311825). - patches.drivers/0093-e1000e-s-w-initiated-LSC-MSI-X-interrupts-not-genera.patch: e1000e: s/w initiated LSC MSI-X interrupts not generated; no transmit (bnc#699092, fate#311825). - patches.drivers/0094-e1000e-cleanup-multiple-common-exit-points.patch: e1000e: cleanup multiple common exit points (bnc#699092, fate#311825). - patches.drivers/0095-e1000e-Remove-EN_MAC_ADDR_FILTER-check-from-enable_m.patch: e1000e: Remove EN_MAC_ADDR_FILTER check from enable_mng_pass_thru check (bnc#699092, fate#311825). - patches.drivers/0096-e1000e-Cleanup-e1000_sw_lcd_config_ich8lan.patch: e1000e: Cleanup e1000_sw_lcd_config_ich8lan() (bnc#699092, fate#311825). - patches.drivers/0097-e1000e-Incorrect-function-pointer-set-for-force_spee.patch: e1000e: Incorrect function pointer set for force_speed_duplex on 82577 (bnc#699092, fate#311825). - patches.drivers/0098-e1000e-fix-checks-for-manageability-enabled-and-mana.patch: e1000e: fix checks for manageability enabled and management pass-through (bnc#699092, fate#311825). - patches.drivers/0099-e1000e-move-settting-of-flow-control-refresh-timer-t.patch: e1000e: move settting of flow control refresh timer to link setup code (bnc#699092, fate#311825). - patches.drivers/0100-e1000e-Fix-cleanup-PHY-reset-code-for-ICHx-PCHx.patch: e1000e: Fix/cleanup PHY reset code for ICHx/PCHx (bnc#699092, fate#311825). - patches.drivers/0101-e1000e-add-PCI-device-id-to-enable-support-for-82567.patch: e1000e: add PCI device id to enable support for 82567V-4 (bnc#699092, fate#311825). - patches.drivers/0102-drivers-net-Remove-unnecessary-returns-from-void-fun.patch: drivers/net: Remove unnecessary returns from void function()s (bnc#699092, fate#311825). - patches.drivers/0103-e1000e-change-logical-negate-to-bitwise.patch: e1000e: change logical negate to bitwise (bnc#699092, fate#311825). - patches.drivers/0104-e1000e-cleanup-ethtool-loopback-setup-code.patch: e1000e: cleanup ethtool loopback setup code (bnc#699092, fate#311825). - patches.drivers/0105-e1000e-cleanup-e1000_sw_lcd_config_ich8lan.patch: e1000e: cleanup e1000_sw_lcd_config_ich8lan() (bnc#699092, fate#311825). - patches.drivers/0106-e1000e-separate-out-PHY-statistics-register-updates.patch: e1000e: separate out PHY statistics register updates (bnc#699092, fate#311825). - patches.drivers/0107-e1000e-fix-check-for-manageability-on-ICHx-PCH.patch: e1000e: fix check for manageability on ICHx/PCH (bnc#699092, fate#311825). - patches.drivers/0108-e1000e-initial-support-for-82579-LOMs.patch: e1000e: initial support for 82579 LOMs (bnc#699092, fate#311825). - patches.drivers/0109-e1000e-enable-support-for-EEE-on-82579.patch: e1000e: enable support for EEE on 82579 (bnc#699092, fate#311825). - patches.drivers/0110-e1000e-update-copyright-information.patch: e1000e: update copyright information (bnc#699092, fate#311825). - patches.drivers/0111-e1000e-update-driver-version-number.patch: e1000e: update driver version number (bnc#699092, fate#311825). - patches.drivers/0112-e1000e-avoid-polling-h-w-registers-during-link-negot.patch: e1000e: avoid polling h/w registers during link negotiation (bnc#699092, fate#311825). - patches.drivers/0113-e1000e-do-not-touch-PHY-page-800-registers-when-link.patch: e1000e: do not touch PHY page 800 registers when link speed is 1000Mbps (bnc#699092, fate#311825). - patches.drivers/0114-e1000e-packet-split-should-not-be-used-with-early-re.patch: e1000e: packet split should not be used with early receive (bnc#699092, fate#311825). - patches.drivers/0115-e1000e-disable-gig-speed-when-in-S0-Sx-transition.patch: e1000e: disable gig speed when in S0->Sx transition (bnc#699092, fate#311825). - patches.drivers/0116-e1000e-fail-when-try-to-setup-unsupported-features.patch: e1000e: fail when try to setup unsupported features (bnc#699092, fate#311825). - patches.drivers/0118-e1000e-suppress-compile-warnings-on-certain-archs.patch: e1000e: suppress compile warnings on certain archs (bnc#699092, fate#311825). - patches.drivers/0119-e1000e-remove-EEE-module-parameter.patch: e1000e: remove EEE module parameter (bnc#699092, fate#311825). - patches.drivers/0120-e1000e-disable-EEE-support-by-default.patch: e1000e: disable EEE support by default (bnc#699092, fate#311825). - patches.drivers/0122-e1000e-Drop-a-useless-statement.patch: e1000e: Drop a useless statement (bnc#699092, fate#311825). - patches.drivers/0126-e1000e-Fix-irq_synchronize-in-MSI-X-case.patch: e1000e: Fix irq_synchronize in MSI-X case (bnc#699092, fate#311825). - patches.drivers/0127-e1000e-correct-MAC-PHY-interconnect-register-offset-.patch: e1000e: correct MAC-PHY interconnect register offset for 82579 (bnc#699092, fate#311825). - patches.drivers/0128-e100-e1000-igb-ixgb-Add-missing-read-memory-barrier.patch: e100/e1000*/igb*/ixgb*: Add missing read memory barrier (bnc#699092, fate#311825). - patches.drivers/0129-e1000e-disable-ASPM-L1-on-82573.patch: e1000e: disable ASPM L1 on 82573 (bnc#699092, fate#311825). - patches.drivers/0130-e1000e-don-t-check-for-alternate-MAC-addr-on-parts-t.patch: e1000e: don't check for alternate MAC addr on parts that don't support it (bnc#699092, fate#311825). - patches.drivers/0131-drivers-net-Remove-address-use-from-assignments-of-f.patch: drivers/net: Remove address use from assignments of function pointers (bnc#699092, fate#311825). - patches.drivers/0132-drivers-net-avoid-some-skb-ip_summed-initializations.patch: drivers/net: avoid some skb->ip_summed initializations (bnc#699092, fate#311825). - patches.drivers/0133-e1000e-Simplify-MSI-interrupt-testing.patch: e1000e: Simplify MSI interrupt testing (bnc#699092, fate#311825). - patches.drivers/0134-e1000e-82577-8-9-issues-with-device-in-Sx.patch: e1000e: 82577/8/9 issues with device in Sx (bnc#699092, fate#311825). - patches.drivers/0135-e1000e-82579-SMBus-address-and-LEDs-incorrect-after-.patch: e1000e: 82579 SMBus address and LEDs incorrect after device reset (bnc#699092, fate#311825). - patches.drivers/0136-e1000e-82566DC-fails-to-get-link.patch: e1000e: 82566DC fails to get link (bnc#699092, fate#311825). - patches.drivers/0137-e1000e-82579-unaccounted-missed-packets.patch: e1000e: 82579 unaccounted missed packets (bnc#699092, fate#311825). - patches.drivers/0138-e1000e-82579-jumbo-frame-workaround-causing-CRC-erro.patch: e1000e: 82579 jumbo frame workaround causing CRC errors (bnc#699092, fate#311825). - patches.drivers/0139-e1000e-82579-do-not-gate-auto-config-of-PHY-by-hardw.patch: e1000e: 82579 do not gate auto config of PHY by hardware during nominal use (bnc#699092, fate#311825). - patches.drivers/0140-e1000-e1000e-igb-ixgb-ixgbe-set-NETIF_F_HIGHDMA-for-.patch: e1000/e1000e/igb/ixgb/ixgbe: set NETIF_F_HIGHDMA for VLAN feature flags (bnc#699092, fate#311825). - patches.drivers/0142-e1000e-use-hardware-writeback-batching.patch: e1000e: use hardware writeback batching (bnc#699092, fate#311825). - patches.drivers/0144-e1000e-Fix-for-offline-diag-test-failure-at-first-ca.patch: e1000e: Fix for offline diag test failure at first call (bnc#699092, fate#311825). - patches.drivers/0148-e1000e-Add-check-for-reset-flags-before-displaying-r.patch: e1000e: Add check for reset flags before displaying reset message (bnc#699092, fate#311825). - patches.drivers/0150-drivers-net-e1000e-Remove-unnecessary-semicolons.patch: drivers/net/e1000e: Remove unnecessary semicolons (bnc#699092, fate#311825). - patches.drivers/0151-e1000e-82571-SerDes-link-handle-null-code-word-from-.patch: e1000e: 82571 SerDes link handle null code word from partner (bnc#699092, fate#311825). - patches.drivers/0152-e1000e-82574-intermittently-fails-to-initialize-with.patch: e1000e: 82574 intermittently fails to initialize with manageability f/w (bnc#699092, fate#311825). - patches.drivers/0153-e1000e-add-netpoll-support-for-MSI-MSI-X-IRQ-modes.patch: e1000e: add netpoll support for MSI/MSI-X IRQ modes (bnc#699092, fate#311825). - patches.drivers/0156-Intel-Wired-LAN-drivers-Use-static-const.patch: Intel Wired LAN drivers: Use static const (bnc#699092, fate#311825). - patches.drivers/0157-e1000e-fix-double-initialization-in-blink-path.patch: e1000e: fix double initialization in blink path (bnc#699092, fate#311825). - patches.drivers/0158-e1000e-82571-based-mezzanine-card-can-fail-ethtool-l.patch: e1000e: 82571-based mezzanine card can fail ethtool link test (bnc#699092, fate#311825). - patches.drivers/0160-e1000e-82577-8-must-acquire-h-w-semaphore-before-wor.patch: e1000e: 82577/8 must acquire h/w semaphore before workaround (bnc#699092, fate#311825). - patches.drivers/0161-e1000e-82571-Serdes-can-fail-to-get-link.patch: e1000e: 82571 Serdes can fail to get link (bnc#699092, fate#311825). - patches.drivers/0162-e1000e-82577-8-9-mis-configured-OEM-bits-during-S0-S.patch: e1000e: 82577/8/9 mis-configured OEM bits during S0->Sx (bnc#699092, fate#311825). - patches.drivers/0163-e1000e-82579-PHY-incorrectly-identified-during-init.patch: e1000e: 82579 PHY incorrectly identified during init (bnc#699092, fate#311825). - patches.drivers/0164-e1000e-support-new-PBA-format-from-EEPROM.patch: e1000e: support new PBA format from EEPROM (bnc#699092, fate#311825). - patches.drivers/0165-e1000e-prevent-null-ptr-dereference-in-e1000_tx_queu.patch: e1000e: prevent null ptr dereference in e1000_tx_queue() (bnc#699092, fate#311825). - patches.drivers/0166-e1000e-minor-error-message-corrections.patch: e1000e: minor error message corrections (bnc#699092, fate#311825). - patches.drivers/0167-e1000e-static-analysis-tools-complain-of-a-possible-.patch: e1000e: static analysis tools complain of a possible null ptr p dereference (bnc#699092, fate#311825). - patches.drivers/0168-e1000e-increment-the-driver-version.patch: e1000e: increment the driver version (bnc#699092, fate#311825). - patches.drivers/0169-drivers-net-don-t-use-flush_scheduled_work.patch: drivers/net: don't use flush_scheduled_work() (bnc#699092, fate#311825). - patches.drivers/0171-e1000e-checkpatch-error-macro-panethesis.patch: e1000e: checkpatch error - macro panethesis (bnc#699092, fate#311825). - patches.drivers/0172-e1000e-checkpatch-error-trailing-statements.patch: e1000e: checkpatch error - trailing statements (bnc#699092, fate#311825). - patches.drivers/0173-e1000e-checkpatch-error-open-braces.patch: e1000e: checkpatch error - open braces (bnc#699092, fate#311825). - patches.drivers/0174-e1000e-checkpatch-warnings-braces.patch: e1000e: checkpatch warnings - braces (bnc#699092, fate#311825). - patches.drivers/0175-e1000e-cleanup-variables-set-but-not-used.patch: e1000e: cleanup variables set but not used (bnc#699092, fate#311825). - patches.drivers/0176-e1000e-convert-calls-of-ops.-read-write-_reg-to-e1e_.patch: e1000e: convert calls of ops.[read|write]_reg to e1e_[r|w]phy (bnc#699092, fate#311825). - patches.drivers/0177-e1000e-properly-bounds-check-string-functions.patch: e1000e: properly bounds-check string functions (bnc#699092, fate#311825). - patches.drivers/0178-e1000e-use-either_crc_le-rather-than-re-write-it.patch: e1000e: use either_crc_le() rather than re-write it (bnc#699092, fate#311825). - patches.drivers/0179-e1000e-power-off-PHY-after-reset-when-interface-is-d.patch: e1000e: power off PHY after reset when interface is down (bnc#699092, fate#311825). - patches.drivers/0180-e1000e-add-custom-set_d-0-3-_lplu_state-function-poi.patch: e1000e: add custom set_d[0|3]_lplu_state function pointer for 82574 (bnc#699092, fate#311825). - patches.drivers/0181-e1000e-update-Copyright-for-2011.patch: e1000e: update Copyright for 2011 (bnc#699092, fate#311825). - patches.drivers/0184-e1000e-reduce-scope-of-some-variables-remove-unneces.patch: e1000e: reduce scope of some variables, remove unnecessary ones (bnc#699092, fate#311825). - patches.drivers/0185-e1000e-Use-kmemdup-rather-than-duplicating-its-imple.patch: e1000e: Use kmemdup rather than duplicating its implementation (bnc#699092, fate#311825). - patches.drivers/0186-e1000e-tx_timeout-should-not-increment-for-non-hang-.patch: e1000e: tx_timeout should not increment for non-hang events (bnc#699092, fate#311825). - patches.drivers/0187-e1000e-replace-unbounded-sprintf-with-snprintf.patch: e1000e: replace unbounded sprintf with snprintf (bnc#699092, fate#311825). - patches.drivers/0188-e1000e-use-correct-pointer-when-memcpy-ing-a-2-dimen.patch: e1000e: use correct pointer when memcpy'ing a 2-dimensional array (bnc#699092, fate#311825). - patches.drivers/0189-e1000e-return-appropriate-errors-for-ethtool-r.patch: e1000e: return appropriate errors for 'ethtool -r' (bnc#699092, fate#311825). - patches.drivers/0190-e1000e-check-down-flag-in-tasks.patch: e1000e: check down flag in tasks (bnc#699092, fate#311825). - patches.drivers/0191-e1000e-flush-all-writebacks-before-unload.patch: e1000e: flush all writebacks before unload (bnc#699092, fate#311825). - patches.drivers/0194-e1000e-use-dev_kfree_skb_irq-instead-of-dev_kfree_sk.patch: e1000e: use dev_kfree_skb_irq() instead of dev_kfree_skb() (bnc#699092, fate#311825). - patches.drivers/0195-e1000e-magic-number-cleanup-ETH_ALEN.patch: e1000e: magic number cleanup - ETH_ALEN (bnc#699092, fate#311825). - patches.drivers/0196-e1000e-extend-timeout-for-ethtool-link-test-diagnost.patch: e1000e: extend timeout for ethtool link test diagnostic (bnc#699092, fate#311825). - patches.drivers/0197-e1000e-extend-EEE-LPI-timer-to-prevent-dropped-link.patch: e1000e: extend EEE LPI timer to prevent dropped link (bnc#699092, fate#311825). - patches.drivers/0198-e1000e-do-not-toggle-LANPHYPC-value-bit-when-PHY-res.patch: e1000e: do not toggle LANPHYPC value bit when PHY reset is blocked (bnc#699092, fate#311825). - patches.drivers/0199-e1000e-disable-jumbo-frames-on-82579-when-MACsec-ena.patch: e1000e: disable jumbo frames on 82579 when MACsec enabled in EEPROM (bnc#699092, fate#311825). - patches.drivers/0200-e1000e-do-not-suggest-the-driver-supports-Wake-on-AR.patch: e1000e: do not suggest the driver supports Wake-on-ARP (bnc#699092, fate#311825). - patches.drivers/0201-e1000e-bump-version-number.patch: e1000e: bump version number (bnc#699092, fate#311825). - patches.drivers/0203-Fix-common-misspellings.patch: Fix common misspellings (bnc#699092, fate#311825). - patches.drivers/0205-e1000e-PCIe-link-speed-in-GT-s-not-GB-s.patch: e1000e: PCIe link speed in GT/s, not GB/s (bnc#699092, fate#311825). - patches.drivers/0210-ethtool-Use-full-32-bit-speed-range-in-ethtool-s-set.patch: ethtool: Use full 32 bit speed range in ethtool's set_settings (bnc#699092, fate#311825). - patches.drivers/0211-ethtool-cosmetic-Use-ethtool-ethtool_cmd_speed-API.patch: ethtool: cosmetic: Use ethtool ethtool_cmd_speed API (bnc#699092, fate#311825). - patches.drivers/0212-net-igb-e1000-e1000e-more-robust-ethtool-duplex-spee.patch: net/igb/e1000/e1000e: more robust ethtool duplex/speed configuration (bnc#699092, fate#311825). - patches.drivers/0213-e1000e-minor-comment-cleanups.patch: e1000e: minor comment cleanups (bnc#699092, fate#311825). - patches.drivers/0215-Add-appropriate-linux-prefetch.h-include-for-prefetc.patch: Add appropriate include for prefetch users (bnc#699092, fate#311825). - patches.drivers/0217-e1000e-disable-far-end-loopback-mode-on-ESB2.patch: e1000e: disable far-end loopback mode on ESB2 (bnc#699092, fate#311825). - patches.drivers/0218-e1000e-82579-intermittently-disabled-during-S0-Sx.patch: e1000e: 82579 intermittently disabled during S0->Sx (bnc#699092, fate#311825). - patches.drivers/0219-e1000e-log-when-swflag-is-cleared-unexpectedly-on-IC.patch: e1000e: log when swflag is cleared unexpectedly on ICH/PCH devices (bnc#699092, fate#311825). - patches.drivers/0221-e1000e-access-multiple-PHY-registers-on-same-page-at.patch: e1000e: access multiple PHY registers on same page at the same time (bnc#699092, fate#311825). - patches.drivers/0222-e1000e-Clear-host-wakeup-bit-on-82577-8-without-touc.patch: e1000e: Clear host wakeup bit on 82577/8 without touching PHY page 800 (bnc#699092, fate#311825). - patches.drivers/0223-e1000e-update-driver-version.patch: e1000e: update driver version (bnc#699092, fate#311825). - patches.drivers/0224-e1000e-remove-unnecessary-reads-of-PCI_CAP_ID_EXP.patch: e1000e: remove unnecessary reads of PCI_CAP_ID_EXP (bnc#699092, fate#311825). - patches.drivers/0226-e1000e-remove-e1000_queue_stats.patch: e1000e: remove e1000_queue_stats (bnc#699092, fate#311825). - patches.drivers/e1000e-entropy-source.patch: Refresh. - patches.drivers/e1000e-remove-use-of-skb_dma_map.patch: Move up.- patches.fixes/cpusets-randomize-node-rotor-used-in-cpuset_mem_spre.patch: fixed mem_rotor overflow- patches.xen/xen3-intel-additional-Intel-Cougar-Point.patch: x86/PCI: irq and pci_ids patch for additional Intel Cougar Point DeviceIDs (bnc#708269).- patches.xen/xen3-auto-common.diff: Refresh.- patches.fixes/cpusets-randomize-node-rotor-used-in-cpuset_mem_spre.patch: Compile fix for !x86_64 architectures which do not have NUMA_NO_NODE- patches.arch/s390-31-02-ap-status-struct-packed: ap: Fix ap_queue_status structure declaration (bnc#705906). - patches.fixes/page-referenced: kernel: first time swap use results in heavy swapping (bnc#705906).- patches.fixes/mm-more-unused-nonblocking-and-congestion-checks.patch: writeback: remove nonblocking/encountered_congestion references (bnc#699354). - patches.fixes/mm-pay-attention-to-wbc-nr_to_write.patch: Refresh. - patches.fixes/mm-remove-unused-nonblocking-and-congestion-checks.patch: writeback: remove unused nonblocking and congestion checks (bnc#699354). - patches.fixes/mm-write_cache_pages-terminate-nr_to_write-negative.patch: Refresh.- patches.fixes/cpusets-randomize-node-rotor-used-in-cpuset_mem_spre.patch: cpusets: randomize node rotor used in cpuset_mem_spread_node() (bnc#602150).- patches.fixes/mm-pay-attention-to-wbc-nr_to_write.patch: writeback: pay attention to wbc->nr_to_write in write_cache_pages (bnc#699354). - patches.fixes/mm-write_cache_pages-terminate-nr_to_write-negative.patch: writeback: write_cache_pages doesn't terminate at nr_to_write <= 0 (bnc#699354).- patches.fixes/memcg-change-memcg_oom_mutex-to-spinlock.patch: memcg: change memcg_oom_mutex to spinlock (bnc#705487) - patches.fixes/memcg-make-oom_lock-0-and-1-based-rather-than-coutne.patch: memcg: make oom_lock 0 and 1 based rather than counter (bnc#705487).- patches.fixes/fs-fix-null-ref-discard_alignment: Fix oops when accessing discard_alignment sysfs file. (bnc #707917).- rpm/kernel-binary.spec.in: Build a -hmac subpackage with HMACs for the kernel and modules (fate#312218). - rpm/gen-hmacs: Helper script.- patches.drivers/intel-additional-Intel-Cougar-Point.patch: Refresh - fix typo.- patches.arch/ppc-normalize-xtime-after-rounding: time: Normalize xtime after rounding (bnc#685226). - patches.suse/ppc-temporary-bugon-timer-workaround.patch: Delete.- patches.drivers/intel-add-panther-point-pch-support.patch: Core Driver Enabling for Intel Panther Point PCH (bnc#682755 fate#311837): rename the patch to fix typo; update upstream references.- patches.drivers/intel-additional-Intel-Cougar-Point.patch: x86/PCI: irq and pci_ids patch for additional Intel Cougar Point DeviceIDs (bnc#708269).- patches.drivers/cxgb4-chelsio-t4-driver-compat: Remove now duplicate PCI_EXP_LNKSTA_CLS_{2_5,5_0}GB defines.- igb backport (FATE#311863) - patches.drivers/0001-igb-remove-unused-temp-variable-from-stats-clearing-.patch: igb: remove unused temp variable from stats clearing path (FATE#311863 ,bnc#699089). - patches.drivers/0002-igb-update-comments-for-serdes-config-and-update-to-.patch: igb: update comments for serdes config and update to handle duplex (FATE#311863 ,bnc#699089). - patches.drivers/0003-igb-update-the-approach-taken-to-acquiring-and-relea.patch: igb: update the approach taken to acquiring and releasing the phy lock (FATE#311863 ,bnc#699089). - patches.drivers/0004-igb-add-locking-to-reads-of-the-i2c-interface.patch: igb: add locking to reads of the i2c interface (FATE#311863 ,bnc#699089). - patches.drivers/0005-igb-add-combined-function-for-setting-rar-and-pool-b.patch: igb: add combined function for setting rar and pool bits (FATE#311863 ,bnc#699089). - patches.drivers/0006-igb-make-use-of-the-uta-to-allow-for-promiscous-mode.patch: igb: make use of the uta to allow for promiscous mode filter (FATE#311863 ,bnc#699089). - patches.drivers/0008-igb-add-function-to-handle-mailbox-lock.patch: igb: add function to handle mailbox lock (FATE#311863 ,bnc#699089). - patches.drivers/0009-igb-fix-a-few-items-where-weren-t-correctly-setup-fo.patch: igb: fix a few items where weren't correctly setup for mbx timeout (FATE#311863 ,bnc#699089). - patches.drivers/0010-igb-change-how-we-handle-alternate-mac-addresses.patch: igb: change how we handle alternate mac addresses (FATE#311863 ,bnc#699089). - patches.drivers/0011-igb-remove-microwire-support-from-igb.patch: igb: remove microwire support from igb (FATE#311863 ,bnc#699089). - patches.drivers/0012-igb-move-the-generic-copper-link-setup-code-into-e10.patch: igb: move the generic copper link setup code into e1000_phy.c (FATE#311863 ,bnc#699089). - patches.drivers/0013-igb-add-code-to-retry-a-phy-read-in-the-event-of-fai.patch: igb: add code to retry a phy read in the event of failure on link check (FATE#311863 ,bnc#699089). - patches.drivers/0014-igb-add-additional-error-handling-to-the-phy-code.patch: igb: add additional error handling to the phy code (FATE#311863 ,bnc#699089). - patches.drivers/0015-igb-add-flushes-between-RAR-writes-when-setting-mac-.patch: igb: add flushes between RAR writes when setting mac address (FATE#311863 ,bnc#699089). - patches.drivers/0016-igb-Use-the-instance-of-net_device_stats-from-net_de.patch: igb: Use the instance of net_device_stats from net_device (FATE#311863 ,bnc#699089). - patches.drivers/0018-igb-Fix-erroneous-display-of-stats-by-ethtool-S.patch: igb: Fix erroneous display of stats by ethtool -S (FATE#311863 ,bnc#699089). - patches.drivers/0020-igb-remove-rx-checksum-good-counter.patch: igb: remove rx checksum good counter (FATE#311863 ,bnc#699089). - patches.drivers/0021-igb-increase-minimum-rx-buffer-size-to-1K.patch: igb: increase minimum rx buffer size to 1K (FATE#311863 ,bnc#699089). - patches.drivers/0022-igb-move-the-tx-and-rx-ring-specific-config-into-sep.patch: igb: move the tx and rx ring specific config into seperate functions (FATE#311863 ,bnc#699089). - patches.drivers/0023-igb-remove-rx_ps_hdr_len.patch: igb: remove rx_ps_hdr_len (FATE#311863 ,bnc#699089). - patches.drivers/0024-igb-move-SRRCTL-register-configuration-into-ring-spe.patch: igb: move SRRCTL register configuration into ring specific config (FATE#311863 ,bnc#699089). - patches.drivers/0025-igb-change-the-head-and-tail-offsets-into-pointers.patch: igb: change the head and tail offsets into pointers (FATE#311863 ,bnc#699089). - patches.drivers/0026-igb-add-pci-device-pointer-to-ring-structure.patch: igb: add pci device pointer to ring structure (FATE#311863 ,bnc#699089). - patches.drivers/0027-igb-move-rx_buffer_len-into-the-ring-structure.patch: igb: move rx_buffer_len into the ring structure (FATE#311863 ,bnc#699089). - patches.drivers/0028-igb-move-alloc_failed-and-csum_err-stats-into-per-rx.patch: igb: move alloc_failed and csum_err stats into per rx-ring stat (FATE#311863 ,bnc#699089). - patches.drivers/0029-igb-add-a-flags-value-to-the-ring.patch: igb: add a flags value to the ring (FATE#311863 ,bnc#699089). - patches.drivers/0030-igb-place-a-pointer-to-the-netdev-struct-in-the-ring.patch: igb: place a pointer to the netdev struct in the ring itself (FATE#311863 ,bnc#699089). - patches.drivers/0031-igb-move-the-multiple-receive-queue-configuration-in.patch: igb: move the multiple receive queue configuration into seperate function (FATE#311863 ,bnc#699089). - patches.drivers/0032-igb-delay-VF-reset-notification-until-after-interrup.patch: igb: delay VF reset notification until after interrupts are enabed (FATE#311863 ,bnc#699089). - patches.drivers/0033-igb-setup-vlan-tag-replication-stripping-in-igb_vmm_.patch: igb: setup vlan tag replication stripping in igb_vmm_control (FATE#311863 ,bnc#699089). - patches.drivers/0034-igb-re-use-ring-configuration-code-in-ethtool-testin.patch: igb: re-use ring configuration code in ethtool testing (FATE#311863 ,bnc#699089). - patches.drivers/0035-igb-make-tx-ring-map-and-free-functionality-non-stat.patch: igb: make tx ring map and free functionality non-static (FATE#311863 ,bnc#699089). - patches.drivers/0036-igb-make-ethtool-use-core-xmit-map-and-free-function.patch: igb: make ethtool use core xmit map and free functionality (FATE#311863 ,bnc#699089). - patches.drivers/0037-igb-add-single-vector-msi-x-testing-to-interrupt-tes.patch: igb: add single vector msi-x testing to interrupt test (FATE#311863 ,bnc#699089). - patches.drivers/0038-igb-cleanup-todo-code-found-in-igb_ethtool.c.patch: igb: cleanup "todo" code found in igb_ethtool.c (FATE#311863 ,bnc#699089). - patches.drivers/0039-igb-add-support-for-seperate-tx-usecs-setting-in-eth.patch: igb: add support for seperate tx-usecs setting in ethtool (FATE#311863 ,bnc#699089). - patches.drivers/0041-igb-misc-cleanups-within-igb_ethtool.c.patch: igb: misc cleanups within igb_ethtool.c (FATE#311863 ,bnc#699089). - patches.drivers/0045-igb-rework-handling-of-the-vfta-and-vlvf-registers-i.patch: igb: rework handling of the vfta and vlvf registers in relation to mng_vlan (FATE#311863 ,bnc#699089). - patches.drivers/0046-igb-move-vf-init-into-a-seperate-function.patch: igb: move vf init into a seperate function (FATE#311863 ,bnc#699089). - patches.drivers/0047-igb-only-process-global-stats-in-igb_update_stats.patch: igb: only process global stats in igb_update_stats (FATE#311863 ,bnc#699089). - patches.drivers/0048-igb-move-global_quad_port_a-from-global-into-local-s.patch: igb: move global_quad_port_a from global into local static define (FATE#311863 ,bnc#699089). - patches.drivers/0049-igb-make-tx-hang-check-multiqueue-check-eop-descript.patch: igb: make tx hang check multiqueue, check eop descriptor (FATE#311863 ,bnc#699089). - patches.drivers/0050-igb-cleanup-code-related-to-ring-resource-allocation.patch: igb: cleanup code related to ring resource allocation and free (FATE#311863 ,bnc#699089). - patches.drivers/0051-igb-change-queue-ordering-for-82576-based-adapters.patch: igb: change queue ordering for 82576 based adapters (FATE#311863 ,bnc#699089). - patches.drivers/0053-igb-Remove-invalid-stats-counters.patch: igb: Remove invalid stats counters (FATE#311863 ,bnc#699089). - patches.drivers/0054-igb-cleanup-igb.h-header-whitespace-and-some-structu.patch: igb: cleanup igb.h header whitespace and some structure formatting (FATE#311863 ,bnc#699089). - patches.drivers/0055-igb-cleanup-igb-xmit-frame-path.patch: igb: cleanup igb xmit frame path (FATE#311863 ,bnc#699089). - patches.drivers/0056-igb-cleanup-clean_rx_irq_adv-and-alloc_rx_buffers_ad.patch: igb: cleanup clean_rx_irq_adv and alloc_rx_buffers_adv (FATE#311863 ,bnc#699089). - patches.drivers/0057-igb-replace-unecessary-adapter-hw-with-just-hw-where.patch: igb: replace unecessary &adapter->hw with just hw where applicable (FATE#311863 ,bnc#699089). - patches.drivers/0058-igb-add-pci_dev-in-few-spots-to-clean-up-use-of-dev_.patch: igb: add pci_dev in few spots to clean up use of dev_err/info/warn (FATE#311863 ,bnc#699089). - patches.drivers/0059-igb-limit-minimum-mtu-to-68-to-keep-ip-bound-to-inte.patch: igb: limit minimum mtu to 68 to keep ip bound to interface (FATE#311863 ,bnc#699089). - patches.drivers/0060-igb-open-up-SCTP-checksum-offloads-to-all-MACs-82576.patch: igb: open up SCTP checksum offloads to all MACs 82576 and newer (FATE#311863 ,bnc#699089). - patches.drivers/0061-igb-cleanup-whitespace-issues-in-igb_main.c.patch: igb: cleanup whitespace issues in igb_main.c (FATE#311863 ,bnc#699089). - patches.drivers/0062-igb-Fix-warnings-in-igb_set_ringparam.patch: igb: Fix warnings in igb_set_ringparam() (FATE#311863 ,bnc#699089). - patches.drivers/0063-igb-change-type-for-ring-sizes-to-u16-in-igb_set_rin.patch: igb: change type for ring sizes to u16 in igb_set_ring_param (FATE#311863 ,bnc#699089). - patches.drivers/0064-igb-move-timesync-init-into-a-seperate-function.patch: igb: move timesync init into a seperate function (FATE#311863 ,bnc#699089). - patches.drivers/0065-igb-when-number-of-CPUs-4-combine-tx-rx-queues-to-al.patch: igb: when number of CPUs > 4 combine tx/rx queues to allow more queues (FATE#311863 ,bnc#699089). - patches.drivers/0066-igb-Rework-how-netdev-stats-is-handled.patch: igb: Rework how netdev->stats is handled (FATE#311863 ,bnc#699089). - patches.drivers/0067-igb-removed-unused-tx-rx-total-bytes-packets-from-ad.patch: igb: removed unused tx/rx total bytes/packets from adapter struct (FATE#311863 ,bnc#699089). - patches.drivers/0068-igb-check-for-packets-on-all-tx-rings-when-link-is-d.patch: igb: check for packets on all tx rings when link is down (FATE#311863 ,bnc#699089). - patches.drivers/0069-igb-only-recycle-page-if-it-is-on-our-numa-node.patch: igb: only recycle page if it is on our numa node (FATE#311863 ,bnc#699089). - patches.drivers/0070-drivers-net-request_irq-Remove-unnecessary-leading-f.patch: drivers/net: request_irq - Remove unnecessary leading & from second arg (FATE#311863 ,bnc#699089). - patches.drivers/0075-drivers-net-Move-and-to-end-of-previous-line.patch: drivers/net: Move && and || to end of previous line (FATE#311863 ,bnc#699089). - patches.drivers/0076-igb-fix-handling-of-mailbox-collisions-between-PF-VF.patch: igb: fix handling of mailbox collisions between PF/VF (FATE#311863 ,bnc#699089). - patches.drivers/0077-igb-do-not-force-pcs-link-when-in-KX-mode.patch: igb: do not force pcs link when in KX mode (FATE#311863 ,bnc#699089). - patches.drivers/0078-igb-do-not-force-retry-count-to-1-on-82580-phy.patch: igb: do not force retry count to 1 on 82580 phy (FATE#311863 ,bnc#699089). - patches.drivers/0079-igb-correctly-offset-82575-flow-control-watermarks-b.patch: igb: correctly offset 82575 flow control watermarks by 16 bytes (FATE#311863 ,bnc#699089). - patches.drivers/0081-drivers-net-use-DEFINE_PCI_DEVICE_TABLE.patch: drivers/net/: use DEFINE_PCI_DEVICE_TABLE() (FATE#311863 ,bnc#699089). - patches.drivers/0082-igb-add-support-for-device-reset-interrupt.patch: igb: add support for device reset interrupt (FATE#311863 ,bnc#699089). - patches.drivers/0083-igb-igbvf-cleanup-exception-handling-in-tx_map_adv.patch: igb/igbvf: cleanup exception handling in tx_map_adv (FATE#311863 ,bnc#699089). - patches.drivers/0084-net-Fix-IPv6-GSO-type-checks-in-Intel-ethernet-drive.patch: net: Fix IPv6 GSO type checks in Intel ethernet drivers (FATE#311863 ,bnc#699089). - patches.drivers/0085-net-use-helpers-to-access-uc-list-V2.patch: net: use helpers to access uc list V2 (FATE#311863 ,bnc#699089). - patches.drivers/0086-igb-make-certain-to-reassign-legacy-interrupt-vector.patch: igb: make certain to reassign legacy interrupt vectors after reset (FATE#311863 ,bnc#699089). - patches.drivers/0087-tree-wide-Assorted-spelling-fixes.patch: tree-wide: Assorted spelling fixes (FATE#311863 ,bnc#699089). - patches.drivers/0088-net-use-netdev_mc_count-and-netdev_mc_empty-when-app.patch: net: use netdev_mc_count and netdev_mc_empty when appropriate (FATE#311863 ,bnc#699089). - patches.drivers/0090-igb-remove-unecessary-q_vector-declarations-and-remo.patch: igb: remove unecessary q_vector declarations and remove itr_shift (FATE#311863 ,bnc#699089). - patches.drivers/0091-igb-add-support-for-wake-on-link.patch: igb: add support for wake-on-link (FATE#311863 ,bnc#699089). - patches.drivers/0092-igb-Report-link-status-in-ethtool-when-interface-is-.patch: igb: Report link status in ethtool when interface is down (FATE#311863 ,bnc#699089). - patches.drivers/0093-igb-ignore-EEPROM-APME-check-when-shutting-down-serd.patch: igb: ignore EEPROM APME check when shutting down serdes link (FATE#311863 ,bnc#699089). - patches.drivers/0094-igb-Power-down-link-when-interface-is-down.patch: igb: Power down link when interface is down (FATE#311863 ,bnc#699089). - patches.drivers/0095-igb-call-pci_save_state-after-pci_restore_state.patch: igb: call pci_save_state after pci_restore_state (FATE#311863 ,bnc#699089). - patches.drivers/0096-igb-Allocate-rings-seperately-instead-of-as-a-block.patch: igb: Allocate rings seperately instead of as a block (FATE#311863 ,bnc#699089). - patches.drivers/0097-igb-remove-adaptive-IFS-from-driver.patch: igb: remove adaptive IFS from driver (FATE#311863 ,bnc#699089). - patches.drivers/0098-igb-cap-interrupts-at-20K-per-queue-when-in-itr-mode.patch: igb: cap interrupts at 20K per queue when in itr mode 3 (FATE#311863 ,bnc#699089). - patches.drivers/0099-igb-only-support-SRRCTL_DROP_EN-when-using-multiple-.patch: igb: only support SRRCTL_DROP_EN when using multiple queues (FATE#311863 ,bnc#699089). - patches.drivers/0100-igb-only-read-phy-specific-stats-if-in-internal-phy-.patch: igb: only read phy specific stats if in internal phy mode (FATE#311863 ,bnc#699089). - patches.drivers/0101-igb-inline-igb_maybe_stop_tx.patch: igb: inline igb_maybe_stop_tx (FATE#311863 ,bnc#699089). - patches.drivers/0102-igb-move-gso_segs-into-buffer_info-structure.patch: igb: move gso_segs into buffer_info structure (FATE#311863 ,bnc#699089). - patches.drivers/0103-igb-minor-type-cleanups.patch: igb: minor type cleanups (FATE#311863 ,bnc#699089). - patches.drivers/0104-igb-remove-unused-vmolr-value.patch: igb: remove unused vmolr value (FATE#311863 ,bnc#699089). - patches.drivers/0105-igb-use-igb_free_q_vectors-to-cleanup-failure-in-igb.patch: igb: use igb_free_q_vectors to cleanup failure in igb_alloc_q_vectors (FATE#311863 ,bnc#699089). - patches.drivers/0106-igb-change-descriptor-control-thresholds.patch: igb: change descriptor control thresholds (FATE#311863 ,bnc#699089). - patches.drivers/0107-igb-update-tx-DMA-mapping-error-handling.patch: igb: update tx DMA mapping error handling (FATE#311863 ,bnc#699089). - patches.drivers/0108-net-convert-multiple-drivers-to-use-netdev_for_each_.patch: net: convert multiple drivers to use netdev_for_each_mc_addr, part4 (FATE#311863 ,bnc#699089). - patches.drivers/0110-igb-Do-not-overwrite-mdicnfg-register-when-accessing.patch: igb: Do not overwrite mdicnfg register when accessing 82580 phy (FATE#311863 ,bnc#699089). - patches.drivers/0111-igb-cleanup-usage-of-virtualization-registers.patch: igb: cleanup usage of virtualization registers (FATE#311863 ,bnc#699089). - patches.drivers/0113-igb-count-Rx-FIFO-errors-correctly.patch: igb: count Rx FIFO errors correctly (FATE#311863 ,bnc#699089). - patches.drivers/0114-igb-do-not-modify-tx_queue_len-on-link-speed-change.patch: igb: do not modify tx_queue_len on link speed change (FATE#311863 ,bnc#699089). - patches.drivers/0116-igb-use-correct-bits-to-identify-if-managability-is-.patch: igb: use correct bits to identify if managability is enabled (FATE#311863 ,bnc#699089). - patches.drivers/0117-include-cleanup-Update-gfp.h-and-slab.h-includes-to-.patch: include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h (FATE#311863 ,bnc#699089). - patches.drivers/0118-igb-update-hw_debug-macro-to-make-use-of-netdev_dbg-.patch: igb: update hw_debug macro to make use of netdev_dbg call (FATE#311863 ,bnc#699089). - patches.drivers/0119-igb-add-per-packet-timestamping.patch: igb: add per-packet timestamping (FATE#311863 ,bnc#699089). - patches.drivers/0121-igb-modify-register-test-for-i350-to-reflect-read-on.patch: igb: modify register test for i350 to reflect read only bits in RDLEN/TDLEN (FATE#311863 ,bnc#699089). - patches.drivers/0122-igb-restrict-WoL-for-82576-ET2-Quad-Port-Server-Adap.patch: igb: restrict WoL for 82576 ET2 Quad Port Server Adapter (FATE#311863 ,bnc#699089). - patches.drivers/0123-igb-double-increment-nr_frags.patch: igb: double increment nr_frags (FATE#311863 ,bnc#699089). - patches.drivers/0124-igb-add-support-for-reporting-5GT-s-during-probe-on-.patch: igb: add support for reporting 5GT/s during probe on PCIe Gen2 (FATE#311863 ,bnc#699089). - patches.drivers/0125-igb-convert-igb-from-using-PCI-DMA-functions-to-usin.patch: igb: convert igb from using PCI DMA functions to using DMA API functions (FATE#311863 ,bnc#699089). - patches.drivers/0126-igb-add-registers-etc.-printout-code-just-before-res.patch: igb: add registers etc. printout code just before resetting adapters (FATE#311863 ,bnc#699089). - patches.drivers/0127-igb-Clean-up-left-over-prototype-of-igb_get_hw_dev_n.patch: igb: Clean up left over prototype of igb_get_hw_dev_name() (FATE#311863 ,bnc#699089). - patches.drivers/0128-igb-reduce-cache-misses-on-tx-cleanup.patch: igb: reduce cache misses on tx cleanup (FATE#311863 ,bnc#699089). - patches.drivers/0129-drivers-net-Remove-unnecessary-returns-from-void-fun.patch: drivers/net: Remove unnecessary returns from void function()s (FATE#311863 ,bnc#699089). - patches.drivers/0130-igb-fix-PHY-config-access-on-82580.patch: igb: fix PHY config access on 82580 (FATE#311863 ,bnc#699089). - patches.drivers/0131-igb-Use-only-a-single-Tx-queue-in-SR-IOV-mode.patch: igb: Use only a single Tx queue in SR-IOV mode (FATE#311863 ,bnc#699089). - patches.drivers/0132-igb-Fix-Tx-hangs-seen-when-loading-igb-with-max_vfs-.patch: igb: Fix Tx hangs seen when loading igb with max_vfs > 7 (FATE#311863 ,bnc#699089). - patches.drivers/0133-igb-correct-link-test-not-being-run-when-link-is-dow.patch: igb: correct link test not being run when link is down (FATE#311863 ,bnc#699089). - patches.drivers/0134-igb-Add-comment.patch: igb: Add comment (FATE#311863 ,bnc#699089). - patches.drivers/0135-igb-drop-support-for-UDP-hashing-w-RSS.patch: igb: drop support for UDP hashing w/ RSS (FATE#311863 ,bnc#699089). - patches.drivers/0136-ixgbe-igb-catch-invalid-VF-settings.patch: ixgbe/igb: catch invalid VF settings (FATE#311863 ,bnc#699089). - patches.drivers/0137-igb-add-support-for-SGMII-based-MDIO-PHYs.patch: igb: add support for SGMII-based MDIO PHYs (FATE#311863 ,bnc#699089). - patches.drivers/0138-igb-restore-EEPROM-values-of-MDICNFG-on-reset-with-8.patch: igb: restore EEPROM values of MDICNFG on reset with 82580 (FATE#311863 ,bnc#699089). - patches.drivers/0139-igb-Use-irq_synchronize-per-vector-when-using-MSI-X.patch: igb: Use irq_synchronize per vector when using MSI-X (FATE#311863 ,bnc#699089). - patches.drivers/0140-igb-Program-MDICNFG-register-prior-to-PHY-init.patch: igb: Program MDICNFG register prior to PHY init (FATE#311863 ,bnc#699089). - patches.drivers/0141-e100-e1000-igb-ixgb-Add-missing-read-memory-barrier.patch: e100/e1000*/igb*/ixgb*: Add missing read memory barrier (FATE#311863 ,bnc#699089). - patches.drivers/0144-drivers-net-Remove-address-use-from-assignments-of-f.patch: drivers/net: Remove address use from assignments of function pointers (FATE#311863 ,bnc#699089). - patches.drivers/0146-igb-clear-VF_PROMISC-bits-instead-of-setting-all-oth.patch: igb: clear VF_PROMISC bits instead of setting all other bits (FATE#311863 ,bnc#699089). - patches.drivers/0147-igb-Add-support-for-DH89xxCC.patch: igb: Add support for DH89xxCC (FATE#311863 ,bnc#699089). - patches.drivers/0148-e1000-e1000e-igb-ixgb-ixgbe-set-NETIF_F_HIGHDMA-for-.patch: e1000/e1000e/igb/ixgb/ixgbe: set NETIF_F_HIGHDMA for VLAN feature flags (FATE#311863 ,bnc#699089). - patches.drivers/0149-drivers-net-return-operator-cleanup.patch: drivers/net: return operator cleanup (FATE#311863 ,bnc#699089). - patches.drivers/0150-igb-Use-netif_set_real_num_-rx-tx-_queues.patch: igb: Use netif_set_real_num_{rx,tx}_queues() (FATE#311863 ,bnc#699089). - patches.drivers/0151-igb-add-check-for-fiber-serdes-devices-to-igb_set_sp.patch: igb: add check for fiber/serdes devices to igb_set_spd_dplx; (FATE#311863 ,bnc#699089). - patches.drivers/0154-vlan-Don-t-check-for-vlan-group-before-vlan_tx_tag_p.patch: vlan: Don't check for vlan group before vlan_tx_tag_present (FATE#311863 ,bnc#699089). - patches.drivers/0155-igb-Fix-unused-variable-warning.patch: igb: Fix unused variable warning (FATE#311863 ,bnc#699089). - patches.drivers/0157-Intel-Wired-LAN-drivers-Use-static-const.patch: Intel Wired LAN drivers: Use static const (FATE#311863 ,bnc#699089). - patches.drivers/0158-igb-Add-new-function-to-read-part-number-from-EEPROM.patch: igb: Add new function to read part number from EEPROM in string format (FATE#311863 ,bnc#699089). - patches.drivers/0159-igb-v-ixgbe-don-t-use-flush_scheduled_work.patch: igb,ixgbe: don't use flush_scheduled_work() (FATE#311863 ,bnc#699089). - patches.drivers/0160-igb-Fix-overwrite-of-the-VF-s-flags.patch: igb: Fix overwrite of the VF's flags (FATE#311863 ,bnc#699089). - patches.drivers/0161-igb-Warn-on-attempt-to-override-administratively-set.patch: igb: Warn on attempt to override administratively set MAC/VLAN (FATE#311863 ,bnc#699089). - patches.drivers/0162-igb-Some-fine-tuning.patch: igb: Some fine tuning (FATE#311863 ,bnc#699089). - patches.drivers/0163-igb-Add-Anti-spoofing-feature-support.patch: igb: Add Anti-spoofing feature support (FATE#311863 ,bnc#699089). - patches.drivers/0164-igb-Add-support-for-i340-Quad-Port-Fiber-Adapter.patch: igb: Add support for i340 Quad Port Fiber Adapter (FATE#311863 ,bnc#699089). - patches.drivers/0165-igb-Enable-PF-side-of-SR-IOV-support-for-i350-device.patch: igb: Enable PF side of SR-IOV support for i350 devices (FATE#311863 ,bnc#699089). - patches.drivers/0166-igb-add-support-for-VF-Transmit-rate-limit-using-ipr.patch: igb: add support for VF Transmit rate limit using iproute2 (FATE#311863 ,bnc#699089). - patches.drivers/0167-igb-Update-Intel-copyright-notice-for-driver-source.patch: igb: Update Intel copyright notice for driver source (FATE#311863 ,bnc#699089). - patches.drivers/0168-igb-update-version-string.patch: igb: update version string (FATE#311863 ,bnc#699089). - patches.drivers/0169-igb-warn-if-max_vfs-limit-is-exceeded.patch: igb: warn if max_vfs limit is exceeded (FATE#311863 ,bnc#699089). - patches.drivers/0170-igb-Fix-reg-pattern-test-in-ethtool-for-i350-devices.patch: igb: Fix reg pattern test in ethtool for i350 devices (FATE#311863 ,bnc#699089). - patches.drivers/0171-igb-Fix-strncpy-calls-to-be-safe-per-source-code-rev.patch: igb: Fix strncpy calls to be safe per source code review tools (FATE#311863 ,bnc#699089). - patches.drivers/0172-igb-Add-stats-output-for-OS2BMC-feature-on-i350-devi.patch: igb: Add stats output for OS2BMC feature on i350 devices (FATE#311863 ,bnc#699089). - patches.drivers/0173-igb-Add-Energy-Efficient-Ethernet-EEE-for-i350-devic.patch: igb: Add Energy Efficient Ethernet (EEE) for i350 devices (FATE#311863 ,bnc#699089). - patches.drivers/0174-igb-Update-NVM-functions-to-work-with-i350-devices.patch: igb: Update NVM functions to work with i350 devices (FATE#311863 ,bnc#699089). - patches.drivers/0175-igb-Add-DMA-Coalescing-feature-to-driver.patch: igb: Add DMA Coalescing feature to driver (FATE#311863 ,bnc#699089). - patches.drivers/0176-igb-Bump-version-to-3.0.6.patch: igb: Bump version to 3.0.6 (FATE#311863 ,bnc#699089). - patches.drivers/0177-igb-fix-hw-timestamping.patch: igb: fix hw timestamping (FATE#311863 ,bnc#699089). - patches.drivers/0178-igb-Add-messaging-for-thermal-sensor-events-on-i350-.patch: igb: Add messaging for thermal sensor events on i350 devices (FATE#311863 ,bnc#699089). - patches.drivers/0179-Fix-common-misspellings.patch: Fix common misspellings (FATE#311863 ,bnc#699089). - patches.drivers/0180-igb-fix-typo-in-igb_validate_nvm_checksum_82580.patch: igb: fix typo in igb_validate_nvm_checksum_82580 (FATE#311863 ,bnc#699089). - patches.drivers/0181-igb-introduce-igb_thermal_sensor_event-for-sensor-ch.patch: igb: introduce igb_thermal_sensor_event for sensor checking (FATE#311863 ,bnc#699089). - patches.drivers/0182-ethtool-Use-full-32-bit-speed-range-in-ethtool-s-set.patch: ethtool: Use full 32 bit speed range in ethtool's set_settings (FATE#311863 ,bnc#699089). - patches.drivers/0183-ethtool-cosmetic-Use-ethtool-ethtool_cmd_speed-API.patch: ethtool: cosmetic: Use ethtool ethtool_cmd_speed API (FATE#311863 ,bnc#699089). - patches.drivers/0184-net-igb-e1000-e1000e-more-robust-ethtool-duplex-spee.patch: net/igb/e1000/e1000e: more robust ethtool duplex/speed configuration (FATE#311863 ,bnc#699089). - patches.drivers/0185-igb-Add-check-for-invalid-size-to-igb_get_invariants.patch: igb: Add check for invalid size to igb_get_invariants_82575() (FATE#311863 ,bnc#699089). - patches.drivers/0187-Add-appropriate-linux-prefetch.h-include-for-prefetc.patch: Add appropriate include for prefetch users (FATE#311863 ,bnc#699089). - patches.drivers/0188-igb-fix-i350-SR-IOV-failture.patch: igb: fix i350 SR-IOV failture (FATE#311863 ,bnc#699089). - patches.drivers/igb-entropy-source.patch: Refresh. - patches.drivers/igb-remove-use-of-skb_dma_map.patch: Refresh and move up. - patches.drivers/net-add-netdev_alloc_skb_ip_al: Move up. - patches.drivers/net-use-netdev_alloc_skb_ip_al: Move up.- patches.fixes/scsi_transport_spi-export-host-width-and-HBA-id: Update Git-* tags, to reflect that the patch has been accepted upstream.Revert __meminit from hugetlb_sysfs_add_hstate again. - patches.fixes/017-numa-hotadd.patch: Refresh.Fix compile warnings: - patches.fixes/mm-fix_possible_compile_issue_page_cgroup.patch: Refresh.- patches.fixes/kvm-stable-fix-information-leak-to-userland.patch: KVM: x86: fix information leak to userland (bnc#706696).- patches.drivers/alsa-sp2-hda-001-Support-max-codecs-to-8-for-Nvidia: ALSA: hda - Support max codecs to 8 for nvidia hda controller (bnc#708376). - patches.drivers/alsa-sp2-hda-002-Make-CONFIG_SND_HDA_POWER_SAVE-depending: ALSA: hda - Make CONFIG_SND_HDA_POWER_SAVE depending on CONFIG_PM (bnc#708376). - patches.drivers/alsa-sp2-hda-003-Add-post_suspend-patch-ops: ALSA: hda - Add post_suspend patch ops (bnc#708376). - patches.drivers/alsa-sp2-hda-004-Allow-codec-specific-set_power_state-ops: ALSA: hda - Allow codec-specific set_power_state ops (bnc#708376).- patches.drivers/alsa-sp1-hda-119-Fix-invalid-mute-led-state-on-resume-of-IDT: ALSA: hda - Fix invalid mute led state on resume of IDT codecs (bnc#708376). - patches.drivers/alsa-sp1-hda-120-Make-sure-mute-led-reflects-master-mute-state: ALSA: hda - Make sure mute led reflects master mute state (bnc#708376). - patches.drivers/alsa-sp1-hda-121-Add-support-of-4-internal-speakers-on-cNB: ALSA: hda - Add support of the 4 internal speakers on certain HP laptops (bnc#708376).- patches.drivers/alsa-sp1-hda-100-keep-ABI-for-LSI-modem-driver: Delete. No SP1-kABI patch needed. - patches.drivers/alsa-sp1-hda-116-Reorganize-controller-quriks-with-bit-flags: Refresh.Delete unused patches. - patches.suse/btrfs-constify-xattr_handler.patch: Delete. - patches.suse/btrfs-update-the-delayed-inode-code-to-use-the-btrfs.patch: Delete. - patches.suse/btrfs-use-bitmap_set-clear.patch: Delete. - patches.suse/btrfs-use-printk_ratelimited-instead-of-printk_ratel.patch: Delete.- patches.fixes/mm-do_fault-preallocate-cow-page.patch: updated reference - patch got merged- patches.fixes/mm-fix_possible_compile_issue_page_cgroup.patch: Fix node_start/end_pfn() definition for mm/page_cgroup.c (bnc#708160).- patches.fixes/mm-fix_memoryless_nodes_exact_nid.patch: memcg: fix init_page_cgroup nid with sparsemem (bnc#708160).- fix kernel build by relocating previous patch- patches.arch/ppc-pcie-bridge-support: fully support pcie multi-function adapters using pcie bridges/switches (bnc#706882).- complete FATE#311650: - patches.arch/ppc-fate-311650-07: ibmveth: Add scatter-gather support (bnc#700514, FATE#311650). - patches.arch/ppc-fate-311650-11-veth-remove-procfs-support: ibmveth: remove procfs code (bnc#700514, FATE#311650). - patches.arch/ppc-fate-311650-cosmetics-and-versionbump: ibmveth: fix coding style and bump the version number (bnc#700514, FATE#311650).- patches.drivers/lpfc-8.3.5.46-update: lpfc: Update to version 8.3.5.46 (bnc#686702). - patches.fixes/scsi_lib-pause-between-error-retries.patch: scsi_lib: pause between error retries (bnc#675127).- patches.fixes/cpu_down_fix_uncorrect_bug_on.patch: cpu: Remove incorrect BUG_ON (bnc#707389).- patches.fixes/sched-Allow-for-overlapping-sched_domain-spans: sched: Allow for overlapping sched_domain spans (bnc#706838). - patches.fixes/sched-Avoid-creating-superfluous-NUMA-domains-on-non-NUMA-systems: sched: Avoid creating superfluous NUMA domains on non-NUMA systems (bnc#706838). - patches.fixes/sched-Break-out-cpu_power-from-the-sched_group-structure: sched: Break out cpu_power from the sched_group structure (bnc#706838).- Update config files: enable CONFIG_INTEL_TXT (bnc#707666 FATE##311962) for x86_64.- patches.suse/pci-check-caps-from-sysfs-file-open-to-read-device.patch: Refresh. - patches.suse/sysfs-add-struct-file-to-bin_attr-callbacks.patch: Refresh.- patches.arch/ppc-pseries-remove-xics-badness: powerpc: Remove redundant xics badness warning (bnc#707094).- patches.arch/ppc-extended_h_cede-add_offline_states: Update references (bnc#550447 / FATE#307059, bnc#706841), reflecting merge of bnc#706841 fix.- Update Xen patches to 2.6.32.43 and c/s 1098. - Update Xen config files. - patches.xen/xen-x86-bigmem: Extend and update references (bnc#700856). - patches.xen/xen3-006-numa-hotadd.patch: mem-hotplug: avoid multiple zones sharing same boot strapping boot_pageset (fate#311831,bnc#703100). - patches.xen/xen3-USB3-0077-USB-convert-usb_hcd-bitfields-into-atomic-flags.patch: USB: convert usb_hcd bitfields into atomic flags. - patches.xen/xen3-acpi_processor_delay_cpuidle_init_on_hotplug.patch: acpi processor hotplug: Delay most initialization to cpu online (fate#311831,bnc#703100). - patches.xen/xen3-hw-breakpoints-modifying-generic-debug-exception-to-use-thread-specific-debug-registers: hw-breakpoints: modifying generic debug exception to usethread-specific debug registers. - patches.xen/xen3-hw-breakpoints-prepare-the-code-for-hardware-breakpoint-interfaces: hw-breakpoints: prepare the code for Hardware Breakpoint interfaces. - patches.xen/xen3-hw-breakpoints-reset-bits-in-dr6-after-the-corresponding-exception-is-handled: hw-breakpoints: reset bits in dr6 after the corresponding exceptionis handled. - patches.xen/xen3-hw-breakpoints-rewrite-the-hw-breakpoints-layer-on-top-of-perf-events: hw-breakpoints: Rewrite the hw-breakpoints layer on top of perf events. - patches.xen/xen3-hw-breakpoints-use-the-new-wrapper-routines-to-access-debug-registers-in-process-thread-code: hw-breakpoints: use the new wrapper routines to access debugregisters in process/thread code. - patches.xen/xen3-intel-add-partner-point-pch-support.patch: Core Driver Enabling for Intel Panther Point PCH (bnc#682755 fate#311837). - patches.xen/xen3-intel-perf-0108-plus-pmu.patch: perf, arch: Cleanup perf-pmu init vs lockup-detector (fate#311939, bnc#704917). - patches.xen/xen3-kprobes-x86-32-move-irq-exit-functions-to-kprobes-section: kprobes/x86-32: Move irq-exit functions to kprobes section. - patches.xen/xen3-kprobes-x86-fix-to-add-__kprobes-to-in-kernel-fault-handing-functions: kprobes/x86: Fix to add __kprobes to in-kernel fault handing functions. - patches.xen/xen3-revert-x86-under-bios-control-restore-ap-s-apic_lvtthmr-to-the-bsp-value: revert: x86: Under BIOS control,restore AP's APIC_LVTTHMR to the BSP value. - patches.xen/xen3-x86-hw-breakpoints-actually-flush-thread-breakpoints-in-flush_thread: x86/hw-breakpoints: Actually flush thread breakpoints inflush_thread(). - patches.xen/xen3-x86-mce-fix-up-mce-naming-nomenclature: x86, mce: Fix up MCE naming nomenclature. - patches.xen/xen3-x86-under-bios-control-restore-ap-s-apic_lvtthmr-to-the-bsp-value: x86: Under BIOS control, restore AP's APIC_LVTTHMR to the BSP value. - patches.xen/xen3-x86_64-unwind-annotations: Refresh. - patches.xen/xen3-perf-0001-Single-patch-that-merges-f4c4176-into-sles11.patch: Delete.- ppc default failed build on a config error, run_oldconfig.sh - Update config files.- Update CFS hard limits to V7.2 for FATE 311682 - patches.suse/01-18-sched-fixlet-dont-update-shares-twice-on-on_rq-parent: sched: (fixlet) dont update shares twice on on_rq (FATE#311682). - patches.suse/02-18-sched-hierarchical-task-accounting-for-SCHED_OTHER: sched: hierarchical task accounting for SCHED_OTHER (FATE#311682). - patches.suse/03-18-sched-introduce-primitives-to-account-for-CFS-bandwidth-tracking: sched: introduce primitives to account for CFS bandwidth tracking (FATE#311682). - patches.suse/04-18-sched-validate-CFS-quota-hierarchies: sched: validate CFS quota hierarchies (FATE#311682). - patches.suse/05-18-sched-accumulate-per-cfs_rq-cpu-usage-and-charge-against-bandwidth: sched: accumulate per-cfs_rq cpu usage and charge against bandwidth (FATE#311682). - patches.suse/06-18-sched-add-a-timer-to-handle-CFS-bandwidth-refresh: sched: add a timer to handle CFS bandwidth refresh (FATE#311682). - patches.suse/07-18-sched-expire-invalid-runtime: sched: expire invalid runtime (FATE#311682). - patches.suse/08-18-sched-add-support-for-throttling-group-entities: sched: add support for throttling group entities (FATE#311682). - patches.suse/09-18-sched-add-support-for-unthrottling-group-entities: sched: add support for unthrottling group entities (FATE#311682). - patches.suse/10-18-sched-allow-for-positional-tg_tree-walks: sched: allow for positional tg_tree walks (FATE#311682). - patches.suse/11-18-sched-prevent-interactions-with-throttled-entities: sched: prevent interactions with throttled entities (FATE#311682). - patches.suse/12-18-sched-prevent-buddy-interactions-with-throttled-entities: sched: prevent buddy interactions with throttled entities (FATE#311682). - patches.suse/13-18-sched-migrate-throttled-tasks-on-HOTPLUG: sched: migrate throttled tasks on HOTPLUG (FATE#311682). - patches.suse/14-18-sched-throttle-entities-exceeding-their-allowed-bandwidth: sched: throttle entities exceeding their allowed (FATE#311682). - patches.suse/15-18-sched-add-exports-tracking-cfs-bandwidth-control-statistics: sched: add exports tracking cfs bandwidth control statistics (FATE#311682). - patches.suse/16-18-sched-return-unused-runtime-on-group-dequeue: sched: return unused runtime on group dequeue (FATE#311682). - patches.suse/18-18-sched-add-documentation-for-bandwidth-control: sched: add documentation for bandwidth control (FATE#311682). - patches.suse/01-15-sched-fixlet-dont-update-shares-twice-on-on_rq-parent: Delete. - patches.suse/02-15-sched-hierarchical-task-accounting-for-SCHED_OTHER: Delete. - patches.suse/03-15-sched-introduce-primitives-to-account-for-CFS-bandwidth-tracking: Delete. - patches.suse/03-15-sched-introduce-primitives-to-account-for-CFS-bandwidth-tracking-fix: Delete. - patches.suse/04-15-sched-validate-CFS-quota-hierarchies: Delete. - patches.suse/04-15-sched-validate-CFS-quota-hierarchies-fix: Delete. - patches.suse/05-15-sched-add-a-timer-to-handle-CFS-bandwidth-refresh: Delete. - patches.suse/06-15-sched-accumulate-per-cfs_rq-cpu-usage-and-charge-against-bandwidth: Delete. - patches.suse/07-15-sched-expire-invalid-runtime: Delete. - patches.suse/08-15-sched-throttle-cfs_rq-entities-which-exceed-their-local-runtime: Delete. - patches.suse/09-15-sched-unthrottle-cfs_rqs-who-ran-out-of-quota-at-period-refresh: Delete. - patches.suse/10-15-sched-allow-for-positional-tg_tree-walks: Delete. - patches.suse/11-15-sched-prevent-interactions-between-throttled-entities-and-load-balance: Delete. - patches.suse/12-15-sched-migrate-throttled-tasks-on-HOTPLUG: Delete. - patches.suse/13-15-sched-add-exports-tracking-cfs-bandwidth-control-statistics: Delete. - patches.suse/14-15-sched-return-unused-runtime-on-voluntary-sleep: Delete. - patches.suse/15-15-sched-add-documentation-for-bandwidth-control: Delete. - patches.suse/16-15-sched-fix-hotplug-lockup: Delete.- patches.fixes/net-deliver-skbs-on-inactive-slaves-to-exact-matches.patch: Refresh (fix typo).- patches.drivers/x86_amd_microcode_be_less_verbose.patch: x86: ucode-amd: Don't warn when no ucode is available for a CPU revision (bnc#706557).Fix double calling some functions in processor_start() - patches.arch/acpi_processor_fix_cpuidle_unregister.patch: Refresh. - patches.arch/acpi_processor_split_add.patch: Refresh. - patches.xen/xen3-auto-common.diff: Refresh.- patches.fixes/net-deliver-skbs-on-inactive-slaves-to-exact-matches.patch: net: deliver skbs on inactive slaves to exact matches (bnc#649355). - patches.fixes/net-fix-deliver_no_wcard-regression-on-loopback-device.patch: net: fix deliver_no_wcard regression on loopback device (bnc#649355).- Get rid of private copies of skb_checksum_none_assert() - patches.drivers/drivers_net_avoid_some_skb-_ip_summed_initializations: drivers/net: avoid some skb->ip_summed initializations. - patches.drivers/0063-drivers-net-avoid-some-skb-ip_summed-initializations.patch: Refresh. - patches.drivers/0103-tg3-Move-EEE-definitions-into-mdio.h.patch: Refresh. - patches.drivers/0182-tg3-enable-transmit-time-stamping.patch: Refresh. - patches.drivers/0188-tg3-Migrate-phy-preprocessor-defs-to-system-defs.patch: Refresh. - patches.drivers/cxgb4-chelsio-t4-driver-compat: Refresh. - Rename patches.drivers/020-drivers_net_avoid_some_skb-_ip_summed_initializations to patches.drivers/020-igbvf-drivers_net_avoid_some_skb-_ip_summed_initializations.- patches.fixes/natsemi-long-cable-fix: natsemi: make cable length magic configurable (bnc#225091, bnc#704361). - patches.fixes/net-natsemi-fix-module-parameter-permissions.patch: net/natsemi: Fix module parameter permissions.- igbvf update (fate#311862) - patches.drivers/001-net_Convert_ethtool_get_stats_self_test_count_ops_to_get_sset_count: net: Convert ethtool {get_stats, self_test}_count() ops to get_sset_count() (bnc#699087, fate#311862). - patches.drivers/002-drivers_net_request_irq_-_Remove_unnecessary_leading_from_second_arg: drivers/net: request_irq - Remove unnecessary leading & from second arg (bnc#699087, fate#311862). - patches.drivers/003-igbvf_remove_skb_dma_map_unmap_call_from_drivers: igbvf: remove skb_dma_map/unmap call from drivers (bnc#699087, fate#311862). - patches.drivers/004-drivers_net_Move_and_to_end_of_previous_line: drivers/net: Move && and || to end of previous line (bnc#699087, fate#311862). - patches.drivers/005-igbvf_avoid_reset_storms_due_to_mailbox_issues: igbvf: avoid reset storms due to mailbox issues (bnc#699087, fate#311862). - patches.drivers/006-igbvf_Make_igbvf_error_message_more_informative: igbvf: Make igbvf error message more informative (bnc#699087, fate#311862). - patches.drivers/007-drivers_net_igbvf_netdev.c_use_pM_to_shown_MAC_address: drivers/net/igbvf/netdev.c: use %pM to shown MAC address (bnc#699087, fate#311862). - patches.drivers/008-drivers_net_use_DEFINE_PCI_DEVICE_TABLE: drivers/net/: use DEFINE_PCI_DEVICE_TABLE() (bnc#699087, fate#311862). - patches.drivers/009-e1000_e1000e_igb_igbvf_ixgb_ixgbe_Fix_tests_of_unsigned_in_tx_map: e1000/e1000e/igb/igbvf/ixgb/ixgbe: Fix tests of unsigned in * _tx_map() (bnc#699087, fate#311862). - patches.drivers/010-igb_igbvf_cleanup_exception_handling_in_tx_map_adv: igb/igbvf: cleanup exception handling in tx_map_adv (bnc#699087, fate#311862). - patches.drivers/011-net_Fix_IPv6_GSO_type_checks_in_Intel_ethernet_drivers: net: Fix IPv6 GSO type checks in Intel ethernet drivers (bnc#699087, fate#311862). - patches.drivers/012-igbvf_fix_issue_w_mapped_as_page_being_left_set_after_unmap: igbvf: fix issue w/ mapped_as_page being left set after unmap (bnc#699087, fate#311862). - patches.drivers/013-net_use_netdev_mc_count_and_netdev_mc_empty_when_appropriate: net: use netdev_mc_count and netdev_mc_empty when appropriate (bnc#699087, fate#311862). - patches.drivers/014-net_convert_multiple_drivers_to_use_netdev_for_each_mc_addr_part4: net: convert multiple drivers to use netdev_for_each_mc_addr, part4 (bnc#699087, fate#311862). - patches.drivers/015-igbvf_do_not_modify_tx_queue_len_on_link_speed_change: igbvf: do not modify tx_queue_len on link speed change (bnc#699087, fate#311862). - patches.drivers/016-include_cleanup_Update_gfp.h_and_slab.h_includes_to_prepare_for_breaking_implicit_slab.h_inclusion_from_percpu.h: include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h (bnc#699087, fate#311862). - patches.drivers/017-igbvf_double_increment_nr_frags: igbvf: double increment nr_frags (bnc#699087, fate#311862). - patches.drivers/018-drivers_net_Remove_unnecessary_returns_from_void_function_s: drivers/net: Remove unnecessary returns from void function()s (bnc#699087, fate#311862). - patches.drivers/019-e100_e1000_igb_ixgb_Add_missing_read_memory_barrier: e100/e1000*/igb*/ixgb*: Add missing read memory barrier (bnc#699087, fate#311862). - patches.drivers/020-drivers_net_avoid_some_skb-_ip_summed_initializations: drivers/net: avoid some skb->ip_summed initializations (bnc#699087, fate#311862). - patches.drivers/021-drivers_net_return_operator_cleanup: drivers/net: return operator cleanup (bnc#699087, fate#311862). - patches.drivers/022-igbvf_Remove_unneeded_pm_qos_calls: igbvf: Remove unneeded pm_qos* calls (bnc#699087, fate#311862). - patches.drivers/023-igbvf_fix_panic_on_load: igbvf: fix panic on load (bnc#699087, fate#311862). - patches.drivers/024-igbvf_Update_version_and_Copyright: igbvf: Update version and Copyright (bnc#699087, fate#311862). - patches.drivers/025-igbvf_Remove_some_dead_code_in_igbvf: igbvf: Remove some dead code in igbvf (bnc#699087, fate#311862). - patches.drivers/026-netdev_Use_default_implementation_of_ethtool_ops_get_link_where_possible: netdev: Use default implementation of ethtool_ops::get_link where possible (bnc#699087, fate#311862). - patches.drivers/027-igb_ixgbe_don_t_use_flush_scheduled_work: igb[v],ixgbe: don't use flush_scheduled_work() (bnc#699087, fate#311862). - patches.drivers/028-igbvf_force_link_checking_when_mailbox_timeout_has_occurred: igbvf: force link checking when mailbox timeout has occurred (bnc#699087, fate#311862). - patches.drivers/029-igbvf_add_support_for_i350_VF_device: igbvf: add support for i350 VF device (bnc#699087, fate#311862).- rpm/kernel-binary.spec.in: Obsolete brocade-bna-kmp (fate#311451).- supported.conf: Add iw_cxgb4- patches.drivers/iw_cxgb4-0001-RDMA-cxgb4-Add-driver-for-Chelsio-T4-RNIC: RDMA/cxgb4: Add driver for Chelsio T4 RNIC (fate#311869). - patches.drivers/iw_cxgb4-0002-Add-cxgb4-and-iw_cxgb4-entries: MAINTAINERS: Add cxgb4 and iw_cxgb4 entries (fate#311869). - Update config files.- patches.arch/x86_64-unwind-annotations: Add two more fixes, git commit IDs, and another bugzilla reference.- patches.suse/KVM-remove-CAP_SYS_RAWIO-requirement-from-kvm_vm_io.patch: KVM: remove CAP_SYS_RAWIO requirement from kvm_vm_ioctl_assign_irq (bnc#706131). - patches.suse/pci-check-caps-from-sysfs-file-open-to-read-device.patch: pci: check caps from sysfs file open to read device dependent config space (bnc#706131). - patches.suse/sysfs-add-struct-file-to-bin_attr-callbacks.patch: sysfs: add struct file* to bin_attr callbacks (bnc#706131).- patches.suse/0001-net-use-net_eq-to-compare-nets.patch: net: use net_eq to compare nets (bnc#687049, fate#311957). - patches.suse/0002-net-Move-and-to-end-of-previous-line.patch: net: Move && and || to end of previous line (bnc#687049, fate#311957). - patches.suse/0003-const-struct-nla_policy.patch: const: struct nla_policy (bnc#687049, fate#311957). - patches.suse/0004-include-cleanup-Update-gfp.h-and-slab.h-includes-to-.patch: include cleanup: Update gfp.h and slab.h includes to (bnc#687049, fate#311957). - patches.suse/0005-dcbnl-add-support-for-ieee8021Qaz-attributes.patch: dcbnl: add support for ieee8021Qaz attributes (bnc#687049, fate#311957). - patches.suse/0006-dcbnl-add-appliction-tlv-handlers.patch: dcbnl: add appliction tlv handlers (bnc#687049, fate#311957). - patches.suse/0007-net_dcb-add-application-notifiers.patch: net_dcb: add application notifiers (bnc#687049, fate#311957). - patches.suse/0008-dcbnl-adding-DCBX-engine-capability.patch: dcbnl: adding DCBX engine capability (bnc#687049, fate#311957). - patches.suse/0009-dcbnl-adding-DCBX-feature-flags-get-set.patch: dcbnl: adding DCBX feature flags get-set (bnc#687049, fate#311957). - patches.suse/0010-dcbnl-cleanup.patch: dcbnl: cleanup (bnc#687049, fate#311957). - patches.suse/0011-dcbnl-more-informed-return-values-for-new-dcbnl-rout.patch: dcbnl: more informed return values for new dcbnl (bnc#687049, fate#311957). - patches.suse/0012-dcb-unlock-on-error-in-dcbnl_ieee_get.patch: dcb: unlock on error in dcbnl_ieee_get() (bnc#687049, fate#311957). - patches.suse/0013-dcb-use-after-free-in-dcb_flushapp.patch: dcb: use after free in dcb_flushapp() (bnc#687049, fate#311957). - patches.suse/0014-dcbnl-make-get_app-handling-symmetric-for-IEEE-and-C.patch: dcbnl: make get_app handling symmetric for IEEE and (bnc#687049, fate#311957). - patches.suse/0015-net-dcb-application-priority-is-per-net_device.patch: net: dcb: application priority is per net_device (bnc#687049, fate#311957). - patches.suse/0016-Don-t-potentially-dereference-NULL-in-net-dcb-dcbnl..patch: Don't potentially dereference NULL in (bnc#687049, fate#311957). - patches.suse/0017-net-dcbnl-check-correct-ops-in-dcbnl_ieee_set.patch: net: dcbnl: check correct ops in dcbnl_ieee_set() (bnc#687049, fate#311957). - patches.suse/0018-dcbnl-add-support-for-retrieving-peer-configuration-.patch: dcbnl: add support for retrieving peer configuration - (bnc#687049, fate#311957). - patches.suse/0019-dcbnl-add-support-for-retrieving-peer-configuration-.patch: dcbnl: add support for retrieving peer configuration - (bnc#687049, fate#311957). - patches.suse/0020-net-dcbnl-Update-copyright-dates.patch: net: dcbnl: Update copyright dates (bnc#687049, fate#311957). - patches.suse/0021-dcb-Add-DCBX-capabilities-bitmask-to-the-get_ieee-re.patch: dcb: Add DCBX capabilities bitmask to the get_ieee (bnc#687049, fate#311957). - patches.suse/0022-net-dcbnl-add-multicast-group-for-DCB.patch: net: dcbnl, add multicast group for DCB (bnc#687049, fate#311957). - patches.suse/0023-dcb-Add-ieee_dcb_setapp-to-be-used-for-IEEE-802.1Qaz.patch: dcb: Add ieee_dcb_setapp() to be used for IEEE (bnc#687049, fate#311957). - patches.suse/0024-dcb-Add-ieee_dcb_delapp-and-dcb-op-to-delete-app-ent.patch: dcb: Add ieee_dcb_delapp() and dcb op to delete app (bnc#687049, fate#311957). - patches.suse/0025-dcb-Add-dcb_ieee_getapp_mask-for-drivers-to-query-AP.patch: dcb: Add dcb_ieee_getapp_mask() for drivers to query (bnc#687049, fate#311957). - patches.suse/0026-dcb-fix-return-type-on-dcb_setapp.patch: dcb: fix return type on dcb_setapp() (bnc#687049, fate#311957). - patches.suse/0027-dcb-Add-missing-error-check-in-dcb_ieee_set.patch: dcb: Add missing error check in dcb_ieee_set() (bnc#687049, fate#311957). - patches.suse/0028-dcb-use-nlmsg_free-instead-of-kfree.patch: dcb: use nlmsg_free() instead of kfree() (bnc#687049, fate#311957). - patches.suse/0029-dcbnl-Aggregated-CEE-GET-operation.patch: dcbnl: Aggregated CEE GET operation (bnc#687049, fate#311957). - patches.suse/0030-dcbnl-Add-CEE-notification.patch: dcbnl: Add CEE notification (bnc#687049, fate#311957). - patches.suse/0031-dcbnl-unlock-on-an-error-path-in-dcbnl_cee_fill.patch: dcbnl: unlock on an error path in dcbnl_cee_fill() (bnc#687049, fate#311957).- Add the ixgbevf driver (fate#311956): - patches.drivers/0001-ixgbevf-Macros-data-structures-useful-defines-and.patch: ixgbevf: Macros, data structures, useful defines and registers (bnc#699085, fate#311956). - patches.drivers/0002-ixgbevf-82599-Virtual-Function-core-functions-and-h.patch: ixgbevf: 82599 Virtual Function core functions and header (bnc#699085, fate#311956). - patches.drivers/0003-ixgbevf-Mailbox-communication.patch: ixgbevf: Mailbox communication (bnc#699085, fate#311956). - patches.drivers/0004-ixgbevf-Driver-main-and-ethool-interface-module-and.patch: ixgbevf: Driver main and ethool interface module and main header (bnc#699085, fate#311956). - patches.drivers/0005-ixgbevf-Driver-Makefile.patch: ixgbevf: Driver Makefile (bnc#699085, fate#311956). - patches.drivers/0006-ixgbevf-Kconfig-Makefile-and-Documentation.patch: ixgbevf: Kconfig, Makefile and Documentation (bnc#699085, fate#311956). - patches.drivers/0007-ixgbevf-Take-action-when-the-PF-notifies-the-VF-it.patch: ixgbevf: Take action when the PF notifies the VF it is resetting (bnc#699085, fate#311956). - patches.drivers/0008-ixgbevf-Fix-panics-in-the-VF-driver.patch: ixgbevf: Fix panics in the VF driver (bnc#699085, fate#311956). - patches.drivers/0009-ixgbevf-Tell-network-stack-to-stop-tx-when-the-VF-d.patch: ixgbevf: Tell network stack to stop tx when the VF detects PF reset (bnc#699085, fate#311956). - patches.drivers/0010-ixgbevf-Fix-IPv6-GSO-type-checks.patch: ixgbevf: Fix IPv6 GSO type checks (bnc#699085, fate#311956). - patches.drivers/0011-ixgbevf-Fix-VF-Stats-accounting-after-reset.patch: ixgbevf: Fix VF Stats accounting after reset (bnc#699085, fate#311956). - patches.drivers/0012-ixgbevf-Shorten-up-delay-timer-for-watchdog-task.patch: ixgbevf: Shorten up delay timer for watchdog task (bnc#699085, fate#311956). - patches.drivers/0013-ixgbevf-Message-formatting-cleanups.patch: ixgbevf: Message formatting cleanups (bnc#699085, fate#311956). - patches.drivers/0014-ixgbevf-Fix-signed-unsigned-int-error.patch: ixgbevf: Fix signed/unsigned int error (bnc#699085, fate#311956). - patches.drivers/0015-ixgbevf-ethtool-cosmetic-Use-ethtool-ethtool_cmd_speed-API.patch: ethtool: cosmetic: Use ethtool ethtool_cmd_speed API (bnc#699085, fate#311956). - patches.drivers/0016-ixgbevf-Add-macvlan-support-in-the-set-rx-mode-op.patch: ixgbevf: Add macvlan support in the set rx mode op (bnc#699085, fate#311956). - patches.drivers/0017-ixgbevf-Add-appropriate-linux-prefetch.h-include-for-prefe.patch: Add appropriate include for prefetch users (bnc#699085, fate#311956). - patches.drivers/0018-ixgbevf-Update-the-driver-string.patch: ixgbevf: Update the driver string (bnc#699085, fate#311956). - patches.drivers/0019-ixgbevf-Fix-bungled-declaration-of-ixgbevf_mbx_ops.patch: ixgbevf: Fix bungled declaration of ixgbevf_mbx_ops (bnc#699085, fate#311956). - patches.drivers/0020-ixgbevf-remove-unnecessary-ampersands.patch: ixgbevf: remove unnecessary ampersands (bnc#699085, fate#311956).- patches.drivers/bnx2x-enable-lro-disablement: bnx2x - enable LRO disablement (bnc#698050). - patches.drivers/bnx2x-fix-compat-to-allow-multiqueue: bnx2x - fix compat to allow multiqueue (bnc#698050). - patches.drivers/bnx2x-fix-inappropriate-msg-lvl: bnx2x - fix inappropriate msg lvl (bnc#698050). - patches.drivers/bnx2x-fix-vlan-stripping-configuration: bnx2x - fix VLAN stripping configuration (bnc#698050).- patches.fixes/proc-restrict-access-to-proc-pid-io: proc: restrict access to /proc/PID/io (CVE-2011-2495 bnc#703155).- patches.fixes/mm-allow-non-rt-sleep-__lock_page.patch: Update references (bnc#699916). - patches.fixes/mm-fix_priority-inversion-__lock_page.patch: Update references (bnc#699916).- patches.drivers/hpsa-update-to-hp-version.patch: Fixup definition of DIRECT_LOOKUP_BIT (bnc#706821).- patches.drivers/ixgbe-Make-descriptor-ring-allocations-NUMA-aware.patch: ixgbe: Make descriptor ring allocations NUMA-aware (FATE#311997). - patches.drivers/ixgbe-add-a-refcnt-when-turning-on-off-FCoE-offload.patch: ixgbe: add a refcnt when turning on/off FCoE offload capability (FATE#311997). - patches.drivers/ixgbe-cleanup-variable-initialization.patch: ixgbe: cleanup variable initialization (FATE#311997). - patches.drivers/ixgbe-entropy-source.patch: Refresh. - patches.drivers/ixgbe-remove-some-redundant-code-in-setting-FCoE-FI.patch: ixgbe: remove some redundant code in setting FCoE FIP filter (FATE#311997). - patches.drivers/ixgbe-update-all-DESC_ADV-macros-to-accept-a-ring-p.patch: ixgbe: update all DESC_ADV macros to accept a ring pointer (FATE#311997). - patches.drivers/ixgbe-update-copyright-dates.patch: ixgbe: update copyright dates (FATE#311997).- patches.drivers/aacraid-Add-new-code-for-PMC-Sierra-s-SRC-ba.patch: aacraid: Add new code for PMC-Sierra's SRC based controller family (bnc#705472,FATE#311522).- patches.suse/net-add-ndo_fcoe_ddp_target-to-support-FCoE-DDP-i.patch: net: add ndo_fcoe_ddp_target() to support FCoE DDP in target mode (bnc#699950). - patches.suse/vlan-add-support-to-ndo_fcoe_ddp_target.patch: vlan: add support to ndo_fcoe_ddp_target() (bnc#699950). - patches.suse/vlan-allow-null-vlan-id-to-be-used.patch: Refresh.- patches.arch/s390-fate311926-ap-type10-toleration.patch: ap: Toleration for ap bus devices with device type 10 (bnc#703653,LTC#69692,FATE#311926).- patches.drivers/cxgb3-fix-device-opening-error-path: cxgb3: fix device opening error path (FATE#311470 bnc#694966). - patches.drivers/cxgb3-fix-panic-in-free_tx_desc: cxgb3: Fix panic in free_tx_desc() (FATE#311470 bnc#694966). - patches.drivers/cxgb3-skb_record_rx_queue-now-records-the-queue-index-relative-to-the-net_device: cxgb3: skb_record_rx_queue now records the queue index relative to the net_device (FATE#311470 bnc=694966).- patches.fixes/vfs-fix_double_put_in_sync_filesystems.patch: Fix double put in sync_filesystems() (bnc#706472).- Fix config files after 71b7422.- Enable the writeback patches again, the performance regression is solved in SP2 (bnc#703786#c2) - patches.suse/laptop-mode-Make-flushes-per-device.patch: Refresh.- supported.conf: mark pseries_energy.ko as supported (by IBM) (bnc#706473 / FATE 311643)- Update config files. - patches.drivers/bna-add-appropriate-linux-prefetch-h-include-for-prefetch-users: Add appropriate include for prefetch users (FATE#311451 bnc#689230). - patches.drivers/bna-brocade-10gb-ethernet-device-driver: bna: Brocade 10Gb Ethernet device driver (FATE#311451 bnc#689230). - patches.drivers/bna-check-for-null-before-deref-in-bnad_cb_tx_cleanup: bna: Check for NULL before deref in bnad_cb_tx_cleanup (FATE#311451 bnc#689230). - patches.drivers/bna-compatibility-fixes-for-sle11sp2-backport: bna: Compatibility fixes for SLE11SP2 backport (FATE#311451 bnc#689230). - patches.drivers/bna-delete-get_flags-and-set_flags-ethtool-methods: bna: Delete get_flags and set_flags ethtool methods (FATE#311451 bnc#689230). - patches.drivers/bna-drivers-net-return-operator-cleanup: drivers/net: return operator cleanup (FATE#311451 bnc#689230). - patches.drivers/bna-enable-pure-priority-tagged-packet-reception-and-rxf-uninit-cleanup-fix: bna: Enable pure priority tagged packet reception and rxf uninit cleanup fix (FATE#311451 bnc#689230). - patches.drivers/bna-ethtool-cosmetic-use-ethtool-ethtool_cmd_speed-api: ethtool: cosmetic: Use ethtool ethtool_cmd_speed API (FATE#311451 bnc#689230). - patches.drivers/bna-ethtool-use-full-32-bit-speed-range-in-ethtool-s-set_settings: ethtool: Use full 32 bit speed range in ethtool's set_settings (FATE#311451 bnc#689230). - patches.drivers/bna-fix-call-trace-when-interrupts-are-disabled-while-sleeping-function-kzalloc-is-called: Fix call trace when interrupts are disabled while sleeping function kzalloc is called (FATE#311451 bnc#689230). - patches.drivers/bna-fix-common-misspellings: Fix common misspellings (FATE#311451 bnc#689230). - patches.drivers/bna-fix-ethtool-register-dump-and-reordered-an-api: bna: Fix ethtool register dump and reordered an API (FATE#311451 bnc#689230). - patches.drivers/bna-fix-for-clean-fw-re-initialization: bna: fix for clean fw re-initialization (FATE#311451 bnc#689230). - patches.drivers/bna-fix-for-handling-firmware-heartbeat-failure: bna: Fix for handling firmware heartbeat failure (FATE#311451 bnc#689230). - patches.drivers/bna-fix-for-tx-queue: bna: Fix for TX queue (FATE#311451 bnc#689230). - patches.drivers/bna-fix-interrupt-handling: bna: fix interrupt handling (FATE#311451 bnc#689230). - patches.drivers/bna-fix-memory-leak-during-rx-path-cleanup: bna: fix memory leak during RX path cleanup (FATE#311451 bnc#689230). - patches.drivers/bna-fix-set-but-unused-variables: bna: Fix set-but-unused variables (FATE#311451 bnc#689230). - patches.drivers/bna-fix-stats-handling: bna: fix stats handling (FATE#311451 bnc#689230). - patches.drivers/bna-fixed-build-break-for-allyesconfig: bna: Fixed build break for allyesconfig (FATE#311451 bnc#689230). - patches.drivers/bna-ioc-failure-auto-recovery-fix: bna: IOC failure auto recovery fix (FATE#311451 bnc#689230). - patches.drivers/bna-ioc-uninit-check-and-misc-cleanup: bna: IOC uninit check and misc cleanup (FATE#311451 bnc#689230). - patches.drivers/bna-net-bna-fix-compile-warning-of-bfa_ioc_smem_pgoff-defined-but-not-used: net:bna: fix compile warning of ‘bfa_ioc_smem_pgoff’ defined but not used (FATE#311451 bnc#689230). - patches.drivers/bna-net-bna-fix-lock-imbalance: NET: bna, fix lock imbalance (FATE#311451 bnc#689230). - patches.drivers/bna-off-by-one: bna: off by one (FATE#311451 bnc#689230). - patches.drivers/bna-port-enable-disable-sync-and-txq-priority-fix: bna: Port enable disable sync and txq priority fix (FATE#311451 bnc#689230). - patches.drivers/bna-remove-unnecessary-memset-0: bna: Remove unnecessary memset(,0,) (FATE#311451 bnc#689230). - patches.drivers/bna-removed-unused-code: bna: Removed unused code (FATE#311451 bnc#689230). - patches.drivers/bna-restore-vlan-filter-table: bna: Restore VLAN filter table (FATE#311451 bnc#689230). - patches.drivers/bna-scope-and-dead-code-cleanup: bna: scope and dead code cleanup (FATE#311451 bnc#689230). - patches.drivers/bna-txrx-and-datapath-fix: bna: TxRx and datapath fix (FATE#311451 bnc#689230). - patches.drivers/bna-update-the-driver-version-to-2-3-2-3: bna: Update the driver version to 2.3.2.3 (FATE#311451 bnc#689230). - patches.drivers/bna-use-device-model-dma-api: bna: use device model DMA API (FATE#311451 bnc#689230). - patches.drivers/bna-vlan-don-t-check-for-vlan-group-before-vlan_tx_tag_present: vlan: Don't check for vlan group before vlan_tx_tag_present (FATE#311451 bnc#689230).- patches.suse/laptop-mode-Make-flushes-per-device.patch: Fix build.- patches.suse/zcrypt-feed-hwrandom: s390: provide hardware randomness from zcrypt card to /dev/random (fate 310591).- bnx2fc update to 1.0.4: * patches.drivers/bnx2fc-Do-not-arm-CQ-when-there-are-no-CQEs.patch: bnx2fc: Do not arm CQ when there are no CQEs (bnc#698053, FATE#311462). * patches.drivers/bnx2fc-Enable-REC-CONF-support-for-the-session.patch: bnx2fc: Enable REC & CONF support for the session (bnc#698053, FATE#311462). * patches.drivers/bnx2fc-Enable-support-for-sequence-level-error-reco.patch: bnx2fc: Enable support for sequence level error recovery (bnc#698053, FATE#311462). * patches.drivers/bnx2fc-Fix-kernel-panic-when-deleting-NPIV-ports.patch: bnx2fc: Fix kernel panic when deleting NPIV ports (bnc#698053, FATE#311462). * patches.drivers/bnx2fc-HSI-changes-for-tape.patch: bnx2fc: HSI changes for tape (bnc#698053, FATE#311462). * patches.drivers/bnx2fc-Handle-REC_TOV-error-code-from-firmware.patch: bnx2fc: Handle REC_TOV error code from firmware (bnc#698053, FATE#311462). * patches.drivers/bnx2fc-Introduce-interface-structure-for-each-vlan.patch: bnx2fc: Introduce interface structure for each vlan interface (bnc#698053, FATE#311462). * patches.drivers/bnx2fc-REC-SRR-link-service-request-and-response-ha.patch: bnx2fc: REC/SRR link service request and response handling (bnc#698053, FATE#311462). * patches.drivers/bnx2fc-Replace-printks-with-KERN_ALERT-to-KERN_ERR.patch: bnx2fc: Replace printks with KERN_ALERT to KERN_ERR/KERN_INFO (bnc#698053, FATE#311462). * patches.drivers/bnx2fc-Support-sequence-cleanup-task.patch: bnx2fc: Support 'sequence cleanup' task (bnc#698053, FATE#311462). * patches.drivers/bnx2fc-Tx-BDs-cache-in-write-tasks.patch: bnx2fc: Tx BDs cache in write tasks (bnc#698053, FATE#311462). * patches.drivers/bnx2fc-Update-copyright-and-bump-version-to-1.0.4.patch: bnx2fc: Update copyright and bump version to 1.0.4 (bnc#698053, FATE#311462). * patches.drivers/bnx2fc-hold-tgt-lock-when-calling-cmd_release.patch: bnx2fc: hold tgt lock when calling cmd_release (bnc#698053, FATE#311462). * patches.drivers/bnx2fc-host-stats-show-the-link-speed-unknown-on.patch: bnx2fc: host stats show the link speed 'unknown' on NIC partitioned interfaces (bnc#698053, FATE#311462). * patches.drivers/bnx2fc-scsi_dma_unmap-not-invoked-on-IO-completio.patch: bnx2fc: scsi_dma_unmap() not invoked on IO completions (bnc#698053, FATE#311462).- patches.drivers/alsa-sp1-hda-117-add-Intel-Panther-Point-HDMI-codec-id: Refresh; added the missing module-alias definition for PPT.- patches.fixes/mm-do_fault-preallocate-cow-page.patch: mm: preallocate page before lock_page() at filemap COW (bnc#7000995).- patches.suse/intel-perf-0001-pmu.patch: perf, x86: Add PEBS infrastructure (fate#311939, bnc#704917). - patches.suse/intel-perf-0002-pmu.patch: perf, x86: Implement simple LBR support (fate#311939, bnc#704917). - patches.suse/intel-perf-0003-pmu.patch: perf, x86: use LBR for PEBS IP+1 fixup (fate#311939, bnc#704917). - patches.suse/intel-perf-0004-pmu.patch: perf, x86: Clean up IA32_PERF_CAPABILITIES usage (fate#311939, bnc#704917). - patches.suse/intel-perf-0005-pmu.patch: perf, x86: Expose the full PEBS record using PERF_SAMPLE_RAW (fate#311939, bnc#704917). - patches.suse/intel-perf-0006-pmu.patch: perf, x86: Fix silly bug in data store buffer allocation (fate#311939, bnc#704917). - patches.suse/intel-perf-0007-pmu.patch: perf, x86: Disable PEBS on clovertown chips (fate#311939, bnc#704917). - patches.suse/intel-perf-0008-pmu.patch: perf, x86: Clear the LBRs on init (fate#311939, bnc#704917). - patches.suse/intel-perf-0009-pmu.patch: perf, x86: Robustify PEBS fixup (fate#311939, bnc#704917). - patches.suse/intel-perf-0010-pmu.patch: perf, x86: Avoid double disable on throttle vs ioctl(PERF_IOC_DISABLE) (fate#311939, bnc#704917). - patches.suse/intel-perf-0011-pmu.patch: perf, x86: Fix pebs drains (fate#311939, bnc#704917). - patches.suse/intel-perf-0012-pmu.patch: perf, x86: Fix PEBS enable/disable vs cpuc->enabled (fate#311939, bnc#704917). - patches.suse/intel-perf-0013-pmu.patch: perf, x86: Fix LBR enable/disable vs cpuc->enabled (fate#311939, bnc#704917). - patches.suse/intel-perf-0014-pmu.patch: perf, x86: Reorder intel_pmu_enable_all() (fate#311939, bnc#704917). - patches.suse/intel-perf-0015-pmu.patch: perf, x86: Deal with multiple state bits for pebs-fmt1 (fate#311939, bnc#704917). - patches.suse/intel-perf-0016-pmu.patch: perf, x86: Fix silly bug in intel_pmu_pebs_{enable,disable} (fate#311939, bnc#704917). - patches.suse/intel-perf-0017-pmu.patch: perf, x86: Don't reset the LBR as frequently (fate#311939, bnc#704917). - patches.suse/intel-perf-0018-pmu.patch: perf, x86: Remove checking_{wr,rd}msr() usage (fate#311939, bnc#704917). - patches.suse/intel-perf-0019-pmu.patch: perf, x86: Fixup the PEBS handler for Core2 cpus (fate#311939, bnc#704917). - patches.suse/intel-perf-0020-pmu.patch: perf, x86: Fix LBR read-out (fate#311939, bnc#704917). - patches.suse/intel-perf-0021-pmu.patch: perf, x86: Fix the !CONFIG_CPU_SUP_INTEL build (fate#311939, bnc#704917). - patches.suse/intel-perf-0022-pmu.patch: perf: Introduce new perf_fetch_caller_regs() for hot regs snapshot (fate#311939, bnc#704917). - patches.suse/intel-perf-0023-pmu.patch: perf: export perf_trace_regs and perf_arch_fetch_caller_regs (fate#311939, bnc#704917). - patches.suse/intel-perf-0024-pmu.patch: perf, x86: Implement initial P4 PMU driver (fate#311939, bnc#704917). - patches.suse/intel-perf-0025-pmu.patch: x86, perf: Fix NULL deref on not assigned x86_pmu (fate#311939, bnc#704917). - patches.suse/intel-perf-0026-pmu.patch: x86, perf: Unmask LVTPC only if we have APIC supported (fate#311939, bnc#704917). - patches.suse/intel-perf-0027-pmu.patch: perf, x86: Enable not tagged retired instruction counting on P4s (fate#311939, bnc#704917). - patches.suse/intel-perf-0028-pmu.patch: perf: Fix unexported generic perf_arch_fetch_caller_regs (fate#311939, bnc#704917). - patches.suse/intel-perf-0029-pmu.patch: perf, x86: Report error code that returned from x86_pmu.hw_config() (fate#311939, bnc#704917). - patches.suse/intel-perf-0030-pmu.patch: perf/core, x86: Reduce number of CONFIG_X86_LOCAL_APIC macros (fate#311939, bnc#704917). - patches.suse/intel-perf-0031-pmu.patch: perf/core, x86: Remove cpu_hw_events.interrupts (fate#311939, bnc#704917). - patches.suse/intel-perf-0032-pmu.patch: perf/core, x86: Remove duplicate perf_event_mask variable (fate#311939, bnc#704917). - patches.suse/intel-perf-0033-pmu.patch: x86, perf: Use apic_write unconditionally (fate#311939, bnc#704917). - patches.suse/intel-perf-0034-pmu.patch: perf, x86: Add a key to simplify template lookup in Pentium-4 PMU (fate#311939, bnc#704917). - patches.suse/intel-perf-0035-pmu.patch: perf, x86: Add cache events for the Pentium-4 PMU (fate#311939, bnc#704917). - patches.suse/intel-perf-0036-pmu.patch: perf_events: Fix resource leak in x86 __hw_perf_event_init() (fate#311939, bnc#704917). - patches.suse/intel-perf-0037-pmu.patch: x86, perf: Fix few cosmetic dabs for P4 pmu (comments and constantify) (fate#311939, bnc#704917). - patches.suse/intel-perf-0038-pmu.patch: x86, perf: Add raw events support for the P4 PMU (fate#311939, bnc#704917). - patches.suse/intel-perf-0039-pmu.patch: perf, x86: Clean up debugctlmsr bit definitions (fate#311939, bnc#704917). - patches.suse/intel-perf-0040-pmu.patch: perf, x86: Add Nehelem PMU programming errata workaround (fate#311939, bnc#704917). - patches.suse/intel-perf-0041-pmu.patch: perf: Use hot regs with software sched switch/migrate events (fate#311939, bnc#704917). - patches.suse/intel-perf-0042-pmu.patch: perf, x86: Undo some some *_counter* -> *_event* renames (fate#311939, bnc#704917). - patches.suse/intel-perf-0043-pmu.patch: perf, x86: implement ARCH_PERFMON_EVENTSEL bit masks (fate#311939, bnc#704917). - patches.suse/intel-perf-0044-pmu.patch: perf, x86: Fix up the ANY flag stuff (fate#311939, bnc#704917). - patches.suse/intel-perf-0045-pmu.patch: perf, x86: Fix __initconst vs const (fate#311939, bnc#704917). - patches.suse/intel-perf-0046-pmu.patch: perf, x86: Add Nehalem programming quirk to Westmere (fate#311939, bnc#704917). - patches.suse/intel-perf-0047-pmu.patch: perf: Drop the frame reliablity check (fate#311939, bnc#704917). - patches.suse/intel-perf-0048-pmu.patch: perf: Enhance perf to allow for guest statistic collection from host (fate#311939, bnc#704917). - patches.suse/intel-perf-0049-pmu.patch: perf & kvm: Clean up some of the guest profiling callback API details (fate#311939, bnc#704917). - patches.suse/intel-perf-0050-pmu.patch: perf, x86: Move perfctr init code to x86_setup_perfctr() (fate#311939, bnc#704917). - patches.suse/intel-perf-0051-pmu.patch: perf, x86: Move x86_setup_perfctr() (fate#311939, bnc#704917). - patches.suse/intel-perf-0052-pmu.patch: perf, x86: Call x86_setup_perfctr() from .hw_config() (fate#311939, bnc#704917). - patches.suse/intel-perf-0053-pmu.patch: perf, x86: Pass enable bit mask to __x86_pmu_enable_event() (fate#311939, bnc#704917). - patches.suse/intel-perf-0054-pmu.patch: perf, x86: Use weight instead of cmask in for_each_event_constraint() (fate#311939, bnc#704917). - patches.suse/intel-perf-0055-pmu.patch: perf, x86: Remove PEBS SAMPLE_RAW support (fate#311939, bnc#704917). - patches.suse/intel-perf-0056-pmu.patch: perf, x86: Consolidate some code repetition (fate#311939, bnc#704917). - patches.suse/intel-perf-0057-pmu.patch: perf, x86: Improve the PEBS ABI (fate#311939, bnc#704917). - patches.suse/intel-perf-0058-pmu.patch: perf, x86: implement group scheduling transactional APIs (fate#311939, bnc#704917). - patches.suse/intel-perf-0059-pmu.patch: x86, perf: P4 PMU -- configure predefined events (fate#311939, bnc#704917). - patches.suse/intel-perf-0060-pmu.patch: x86, perf: P4 PMU -- protect sensible procedures from preemption (fate#311939, bnc#704917). - patches.suse/intel-perf-0061-pmu.patch: x86, perf: P4 PMU -- Get rid of redundant check for array index (fate#311939, bnc#704917). - patches.suse/intel-perf-0062-pmu.patch: x86, perf: P4 PMU -- check for proper event index in RAW events (fate#311939, bnc#704917). - patches.suse/intel-perf-0063-pmu.patch: x86, perf: P4 PMU -- use hash for p4_get_escr_idx() (fate#311939, bnc#704917). - patches.suse/intel-perf-0064-pmu.patch: x86, perf: P4 PMU - fix counters management logic (fate#311939, bnc#704917). - patches.suse/intel-perf-0065-pmu.patch: perf, x86: P4 PMU -- handle unflagged events (fate#311939, bnc#704917). - patches.suse/intel-perf-0066-pmu.patch: perf, x86: P4 PMU -- fix typo in unflagged NMI handling (fate#311939, bnc#704917). - patches.suse/intel-perf-0067-pmu.patch: perf, x86: P4 PMU -- do a real check for ESCR address being in hash (fate#311939, bnc#704917). - patches.suse/intel-perf-0068-pmu.patch: perf, x86: P4_pmu_schedule_events -- use smp_processor_id instead of raw_ (fate#311939, bnc#704917). - patches.suse/intel-perf-0069-pmu.patch: perf, trace: Fix !x86 build bug (fate#311939, bnc#704917). - patches.suse/intel-perf-0070-pmu.patch: perf_events: Fix event scheduling issues introduced by transactional API (fate#311939, bnc#704917). - patches.suse/intel-perf-0071-pmu.patch: perf, x86: Make a second write to performance counter if needed (fate#311939, bnc#704917). - patches.suse/intel-perf-0072-pmu.patch: perf_events: Fix Intel Westmere event constraints (fate#311939, bnc#704917). - patches.suse/intel-perf-0073-pmu.patch: perf, x86: Fix incorrect branches event on AMD CPUs (fate#311939, bnc#704917). - patches.suse/intel-perf-0074-pmu.patch: perf, x86: P4 PMU -- redesign cache events (fate#311939, bnc#704917). - patches.suse/intel-perf-0075-pmu.patch: perf, x86: P4 PMU - - update nmi irq statistics and unmask lvt entry properly (fate#311939, bnc#704917). - patches.suse/intel-perf-0076-pmu.patch: perf, x86: Fix Intel-nhm PMU programming errata workaround (fate#311939, bnc#704917). - patches.suse/intel-perf-0077-pmu.patch: perf: Drop unappropriate tests on arch callchains (fate#311939, bnc#704917). - patches.suse/intel-perf-0078-pmu.patch: perf, x86, Pentium4: Clear the P4_CCCR_FORCE_OVF flag (fate#311939, bnc#704917). - patches.suse/intel-perf-0079-pmu.patch: perf, x86, Pentium4: Add RAW events verification (fate#311939, bnc#704917). - patches.suse/intel-perf-0080-pmu.patch: perf, x86: Fix accidentally ack'ing a second event on intel perf counter (fate#311939, bnc#704917). - patches.suse/intel-perf-0081-pmu.patch: perf, x86: Fix handle_irq return values (fate#311939, bnc#704917). - patches.suse/intel-perf-0082-pmu.patch: perf, x86: Try to handle unknown nmis with an enabled PMU (fate#311939, bnc#704917). - patches.suse/intel-perf-0083-pmu.patch: perf_events: Fix BTS interrupt handling to avoid being dazed by NMI (v2) (fate#311939, bnc#704917). - patches.suse/intel-perf-0084-pmu.patch: perf, x86: Catch spurious interrupts after disabling counters (fate#311939, bnc#704917). - patches.suse/intel-perf-0085-pmu.patch: perf, x86: Handle in flight NMIs on P4 platform (fate#311939, bnc#704917). - patches.suse/intel-perf-0086-pmu.patch: perf, gcc-4.6: Fix set but unused variable (fate#311939, bnc#704917). - patches.suse/intel-perf-0087-pmu.patch: perf_events: Fix bogus AMD64 generic TLB events (fate#311939, bnc#704917). - patches.suse/intel-perf-0088-pmu.patch: perf, x86: Extract PEBS/BTS buffer free routines (fate#311939, bnc#704917). - patches.suse/intel-perf-0089-pmu.patch: perf, x86: Extract PEBS/BTS allocation functions (fate#311939, bnc#704917). - patches.suse/intel-perf-0090-pmu.patch: perf, x86: Extract DS alloc/free functions (fate#311939, bnc#704917). - patches.suse/intel-perf-0091-pmu.patch: perf, x86: Fixup the precise_ip computation (fate#311939, bnc#704917). - patches.suse/intel-perf-0092-pmu.patch: perf, x86: Less disastrous PEBS/BTS buffer allocation failure (fate#311939, bnc#704917). - patches.suse/intel-perf-0093-pmu.patch: perf, x86: Clean up reserve_ds_buffers() signature (fate#311939, bnc#704917). - patches.suse/intel-perf-0094-pmu.patch: perf, x86: Use NUMA aware allocations for PEBS/BTS/DS allocations (fate#311939, bnc#704917). - patches.suse/intel-perf-0095-pmu.patch: x86, perf, nmi: Disable perf if counters are not accessible (fate#311939, bnc#704917). - patches.suse/intel-perf-0096-pmu.patch: perf: Introduce is_sampling_event() (fate#311939, bnc#704917). - patches.suse/intel-perf-0097-pmu.patch: perf, x86: Detect broken BIOSes that corrupt the PMU (fate#311939, bnc#704917). - patches.suse/intel-perf-0098-pmu.patch: perf, x86: Provide a PEBS capable cycle event (fate#311939, bnc#704917). - patches.suse/intel-perf-0099-pmu.patch: perf, x86: P4 PMU - Fix unflagged overflows handling (fate#311939, bnc#704917). - patches.suse/intel-perf-0100-pmu.patch: perf: Fix Pentium4 raw event validation (fate#311939, bnc#704917). - patches.suse/intel-perf-0101-pmu.patch: perf, x86: P4 PMU: Fix spurious NMI messages (fate#311939, bnc#704917). - patches.suse/intel-perf-0102-pmu.patch: perf, x86: Use helper function in x86_pmu_enable_all() (fate#311939, bnc#704917). - patches.suse/intel-perf-0103-pmu.patch: perf, x86: Calculate perfctr msr addresses in helper functions (fate#311939, bnc#704917). - patches.suse/intel-perf-0104-pmu.patch: perf, x86: Add new AMD family 15h msrs to perfctr reservation code (fate#311939, bnc#704917). - patches.suse/intel-perf-0105-pmu.patch: perf, x86: Store perfctr msr addresses in config_base/event_base (fate#311939, bnc#704917). - patches.suse/intel-perf-0106-pmu.patch: perf, x86: Add support for AMD family 15h core counters (fate#311939, bnc#704917). - patches.suse/intel-perf-0107-pmu.patch: perf, x86: Add Intel SandyBridge CPU support (fate#311939, bnc#704917). - patches.suse/intel-perf-0108-plus-pmu.patch: perf, arch: Cleanup perf-pmu init vs lockup-detector (fate#311939, bnc#704917). - patches.suse/intel-perf-0108-pmu.patch: perf_events: Update PEBS event constraints (fate#311939, bnc#704917). - patches.suse/intel-perf-0109-pmu.patch: perf: Add support for supplementary event registers (fate#311939, bnc#704917). - patches.suse/intel-perf-0110-pmu.patch: perf: Fix LLC-* events on Intel Nehalem/Westmere (fate#311939, bnc#704917). - patches.suse/intel-perf-0111-pmu.patch: perf: Avoid the percore allocations if the CPU is not HT capable (fate#311939, bnc#704917). - patches.suse/intel-perf-0112-pmu.patch: perf, x86: Clean up SandyBridge PEBS events (fate#311939, bnc#704917). - patches.suse/intel-perf-0113-pmu.patch: perf, x86: Use INTEL_*_CONSTRAINT() for all PEBS event constraints (fate#311939, bnc#704917). - patches.suse/intel-perf-0114-pmu.patch: perf, x86: Fix Intel fixed counters base initialization (fate#311939, bnc#704917). - patches.suse/intel-perf-0115-pmu.patch: perf, x86: P4 PMU - Read proper MSR register to catch unflagged overflows (fate#311939, bnc#704917). - patches.suse/intel-perf-0116-pmu.patch: perf, x86: Complain louder about BIOSen corrupting CPU/PMU state and continue (fate#311939, bnc#704917). - patches.suse/intel-perf-0117-pmu.patch: perf, x86: P4 PMU - clean up the code a bit (fate#311939, bnc#704917). - patches.suse/intel-perf-0118-pmu.patch: perf, x86: Fix pre-defined cache-misses event for AMD family 15h cpus (fate#311939, bnc#704917). - patches.suse/intel-perf-0119-pmu.patch: perf, x86: Fix AMD family 15h FPU event constraints (fate#311939, bnc#704917). - patches.suse/intel-perf-0120-pmu.patch: perf, x86: Use ALTERNATIVE() to check for X86_FEATURE_PERFCTR_CORE (fate#311939, bnc#704917). - patches.suse/intel-perf-0121-pmu.patch: perf: Support Xeon E7's via the Westmere PMU driver (fate#311939, bnc#704917). - patches.suse/intel-perf-0122-pmu.patch: x86, perf event: Turn off unstructured raw event access to offcore registers (fate#311939, bnc#704917). - patches.suse/intel-perf-0123-pmu.patch: perf, x86: P4 PMU -- Use perf_sample_data_init helper (fate#311939, bnc#704917). - patches.suse/intel-perf-0124-pmu.patch: perf, x86: Update/fix Intel Nehalem cache events (fate#311939, bnc#704917). - patches.suse/intel-perf-0125-pmu.patch: perf events, x86, P4: Fix typo in comment (fate#311939, bnc#704917). - patches.suse/intel-perf-0126-pmu.patch: perf, x86: Fix BTS condition (fate#311939, bnc#704917). - patches.suse/intel-perf-0127-pmu.patch: perf events, x86: Work around the Nehalem AAJ80 erratum (fate#311939, bnc#704917). - patches.suse/intel-perf-0128-pmu.patch: perf events: Add stalled cycles generic event - PERF_COUNT_HW_STALLED_CYCLES (fate#311939, bnc#704917). - patches.suse/intel-perf-0129-pmu.patch: perf events, x86: Mark constrant tables read mostly (fate#311939, bnc#704917). - patches.suse/intel-perf-0130-pmu.patch: perf, x86, nmi: Move LVT un-masking into irq handlers (fate#311939, bnc#704917). - patches.suse/intel-perf-0131-pmu.patch: perf event, x86: Use better stalled cycles metric (fate#311939, bnc#704917). - patches.suse/intel-perf-0132-pmu.patch: perf events: Add generic front-end and back-end stalled cycle event definitions (fate#311939, bnc#704917). - patches.suse/intel-perf-0133-pmu.patch: perf, x86: Add new stalled cycles events for Intel and AMD CPUs (fate#311939, bnc#704917). - patches.suse/intel-perf-0134-pmu.patch: perf events, x86: Add Westmere stalled-cycles-frontend/backend events (fate#311939, bnc#704917). - patches.suse/intel-perf-0135-pmu.patch: perf events, x86: Add SandyBridge stalled-cycles-frontend/backend events (fate#311939, bnc#704917). - patches.suse/intel-perf-0136-pmu.patch: perf events, x86: Fix Intel Nehalem and Westmere last level cache event definitions (fate#311939, bnc#704917).- patches.fixes/mm-avoid-null-pointer-deref-in-sync_mm_rss.patch: mm: avoid null-pointer deref in sync_mm_rss() (bnc#704163).Boxboro-EX: Memory/CPU hot add - Fate#311831: - patches.arch/acpi_processor_delay_cpuidle_init_on_hotplug.patch: acpi processor hotplug: Delay most initialization to cpu online (fate#311831,bnc#703100). - patches.arch/acpi_processor_fix_cpuidle_unregister.patch: acpi processor: Avoid WARN message on processor driver removal (fate#311831,bnc#703100). - patches.arch/acpi_processor_split_add.patch: acpi processor: Split up acpi_processor_add() (fate#311831,bnc#703100). - patches.arch/intel_idle_register_per_cpu.patch: intel_idle: Split up and provide per CPU initialization func (fate#311831,bnc#703100). - patches.fixes/001-numa-hotadd.patch: memory-hotplug: create /sys/firmware/memmap entry for new memory (fate#311831,bnc#703100). - patches.fixes/002-numa-hotadd.patch: slab: add memory hotplug support (fate#311831,bnc#703100). - patches.fixes/003-numa-hotadd.patch: x86, mm: Separate x86_64 vmalloc_sync_all() into separate functions (fate#311831,bnc#703100). - patches.fixes/004-numa-hotadd.patch: cpu/mem hotplug: enable CPUs online before local memory online (fate#311831,bnc#703100). - patches.fixes/005a-numa-hotadd.patch: mm: do not iterate over NR_CPUS in __zone_pcp_update() (fate#311831,bnc#703100). - patches.fixes/006-numa-hotadd.patch: mem-hotplug: avoid multiple zones sharing same boot strapping boot_pageset (fate#311831,bnc#703100). - patches.fixes/007-numa-hotadd.patch: mem-hotplug: fix potential race while building zonelist for new populated zone (fate#311831,bnc#703100). - patches.fixes/008-numa-hotadd.patch: x86-64, mem: Update all PGDs for direct mapping and vmemmap mapping changes (fate#311831,bnc#703100). - patches.fixes/009-numa-hotadd.patch: x86, mtrr: Use stop machine context to rendezvous all the cpu's (fate#311831,bnc#703100). - patches.fixes/010-numa-hotadd.patch: x86, mtrr: lock stop machine during MTRR rendezvous sequence (fate#311831,bnc#703100,bnc#672008). - patches.fixes/011-numa-hotadd.patch: mem-hotplug: introduce {un}lock_memory_hotplug() (fate#311831,bnc#703100). - patches.fixes/012-numa-hotadd.patch: memory hotplug: one more lock on memory hotplug (fate#311831,bnc#703100). - patches.fixes/013-numa-hotadd.patch: mm, mem-hotplug: recalculate lowmem_reserve when memory hotplug occurs (fate#311831,bnc#703100). - patches.fixes/014-numa-hotadd.patch: mm/memory_hotplug.c: fix building of node hotplug zonelist (fate#311831,bnc#703100). - patches.fixes/015-numa-hotadd.patch: mm, hotplug: fix error handling in mem_online_node() (fate#311831,bnc#703100). - patches.fixes/016-numa-hotadd.patch: mm, hotplug: protect zonelist building with zonelists_mutex (fate#311831,bnc#703100). - patches.fixes/017-numa-hotadd.patch: hugetlb: fix section mismatches (fate#311831,bnc#703100). - patches.fixes/018-numa-hotadd.patch: x86, mm: fix uninitialized addr in kernel_physical_mapping_init() (fate#311831,bnc#703100). - patches.xen/xen3-auto-common.diff: Refresh. - patches.xen/xen3-patch-2.6.19: Refresh. - patches.xen/xen3-patch-2.6.23: Refresh. - patches.xen/xen3-patch-2.6.24: Refresh. - patches.xen/xen3-patch-2.6.27: Refresh. - patches.xen/xen3-patch-2.6.32: Refresh.- patches.arch/x86-efi-00-introduce-free_boot_mem_late, patches.arch/x86-efi-01-remove-virtual-mode-SetVirtualAddressMap, patches.arch/x86-efi-02-consolidate-NX-control, patches.arch/x86-efi-03-merge-contiguous-memory-regions, patches.arch/x86-efi-04-minimize-SetVirtualAddressMap, patches.arch/x86-efi-05-ensure-complete-mapping, patches.arch/x86-efi-06-retain-boot-service-code-longer, patches.arch/x86-efi-07-introduce-e820-check_early, patches.arch/x86-efi-08-reserve_early-only-unreserved-regions, patches.arch/x86-efi-09-ignore-EFI_RESERVED_TYPE: Backport of a series of patches for 3.0, which significantly improve support for recent UEFI systems. (bnc#568848, bnc#655434, bnc#681242)- patches.fixes/arch-mm-filter-disallowed-nodes-from-arch-specific-s.patch: arch, mm: filter disallowed nodes from arch specific show_mem functions (bnc#705433). - patches.fixes/lib-arch-add-filter-argument-to-show_mem-and-fix-pri.patch: lib, arch: add filter argument to show_mem and fix private implementations (bnc#705433). - patches.fixes/oom-suppress-nodes-that-are-not-allowed-from-meminfo-on-page-alloc.patch: oom: suppress nodes that are not allowed from meminfo on page alloc failure (bnc#705433). - patches.fixes/oom-suppress-nodes-that-are-not-allowed-from-meminfo.patch: oom: suppress nodes that are not allowed from meminfo on oom kill (bnc#705433). - patches.fixes/oom-suppress-show_mem-for-many-nodes-in-irq-context-.patch: oom: suppress show_mem() for many nodes in irq context on page alloc failure (bnc#705433). - patches.suse/SoN-08-mm-page_alloc-emerg.patch: Refresh.- patches.suse/staging-hv-fixup-reference-counting-for-net-and-stor.patch: Fixup reference counting for both net and stor devices. - patches.suse/staging-hv-vmbus-init-on-dmi-match.patch: only load the driver in a hyper-v guest (bnc#704957). - patches.suse/staging-hv-vmbus-modalias-namespace.patch: - patches.suse/staging-hv-vmbus-modalias-show.patch: hv: show the modalias files in /sys/bus/vmbus/devices/*/ (fate#311487).- patches.drivers/intel-add-partner-point-pch-support.patch: Core Driver Enabling for Intel Panther Point PCH (bnc#682755 fate#311837).- patches.fixes/fs-d_validate-fixes.patch: fs: d_validate fixes (bnc#701170).- Disable: patches.fixes/writeback-fix-sb-locking.diff patches.fixes/writeback-check-background-flush-after-work.diff patches.fixes/writeback-stop-background-for-other-work.diff patches.fixes/writeback-avoid-new-file-livelock.diff patches.fixes/writeback-avoid-WB_SYNC_ALL-livelock.diff as they cause sync(1) to have larger overhead (bnc#703786)- patches.suse/mm-thp-fix-dev-zero.patch: mm: thp: fix /dev/zero MAP_PRIVATE and vm_flags cleanups (bnc#701163, CVE-2011-2479).- patches.suse/0001-9p-connect-fixes.patch: 9p connect fixes (FATE#311639). - patches.suse/0002-Kill-9p-readlink.patch: Kill 9p readlink() (FATE#311639). - patches.suse/0003-net-9p-fix-virtio-transport-to-correctly-update-stat.patch: net/9p: fix virtio transport to correctly update status on connect (FATE#311639). - patches.suse/0004-net-9p-fail-when-user-specifies-a-transport-which-we.patch: net/9p: fail when user specifies a transport which we can't find (FATE#311639). - patches.suse/0005-net-9p-fix-statsize-inside-twstat.patch: net/9p: fix statsize inside twstat (FATE#311639). - patches.suse/0006-9p-Include-fsync-support-for-9p-client.patch: 9p: Include fsync support for 9p client (FATE#311639). - patches.suse/0007-9p-fix-option-parsing.patch: 9p: fix option parsing (FATE#311639). - patches.suse/0008-9p-Fix-the-kernel-crash-on-a-failed-mount.patch: 9p: Fix the kernel crash on a failed mount (FATE#311639). - patches.suse/0009-9p-fix-memory-leak-in-v9fs_parse_options.patch: 9p: fix memory leak in v9fs_parse_options() (FATE#311639). - patches.suse/0010-9p-fix-p9_client_destroy-unconditional-calling-v9fs_.patch: 9p: fix p9_client_destroy unconditional calling v9fs_put_trans (FATE#311639). - patches.suse/0011-net-9p-Add-multi-channel-support.patch: net/9p: Add multi channel support (FATE#311639). - patches.suse/0012-net-9p-Remove-MAX_9P_CHAN-limit.patch: net/9p: Remove MAX_9P_CHAN limit (FATE#311639). - patches.suse/0013-net-9p-Handle-mount-errors-correctly.patch: net/9p: Handle mount errors correctly (FATE#311639). - patches.suse/0014-9P2010.L-handshake-Add-VFS-flags.patch: 9P2010.L handshake: Add VFS flags (FATE#311639). - patches.suse/0015-9P2010.L-handshake-Add-mount-option.patch: 9P2010.L handshake: Add mount option (FATE#311639). - patches.suse/0016-9P2010.L-handshake-Remove-dotu-variable.patch: 9P2010.L handshake: Remove "dotu" variable (FATE#311639). - patches.suse/0017-9P2010.L-handshake-.L-protocol-negotiation.patch: 9P2010.L handshake: .L protocol negotiation (FATE#311639). - patches.suse/0018-fs-9p-Add-hardlink-support-to-.u-extension.patch: fs/9p: Add hardlink support to .u extension (FATE#311639). - patches.suse/0019-net-9p-Use-the-tag-name-in-the-config-space-for-iden.patch: net/9p: Use the tag name in the config space for identifying mount point (FATE#311639). - patches.suse/0020-net-9p-Add-sysfs-mount_tag-file-for-virtio-9P-device.patch: net/9p: Add sysfs mount_tag file for virtio 9P device (FATE#311639). - patches.suse/0021-fs-9p-re-init-the-wstat-in-readdir-loop.patch: fs/9p: re-init the wstat in readdir loop (FATE#311639). - patches.suse/0022-9p-Change-the-name-of-new-protocol-from-9p2010.L-to-.patch: 9p: Change the name of new protocol from 9p2010.L to 9p2000.L (FATE#311639). - patches.suse/0023-9p-Fixes-a-simple-bug-enabling-writes-beyond-2GB.patch: 9p: Fixes a simple bug enabling writes beyond 2GB (FATE#311639). - patches.suse/0024-9p-Fix-setting-of-protocol-flags-in-v9fs_session_inf.patch: 9p: Fix setting of protocol flags in v9fs_session_info structure (FATE#311639). - patches.suse/0025-9p-documentation-update.patch: 9p: documentation update (FATE#311639). - patches.suse/0026-fs-9p-Clunk-the-fid-resulting-from-partial-walk-of-t.patch: fs/9p: Clunk the fid resulting from partial walk of the name (FATE#311639). - patches.suse/0027-9p-drop-nlink-remove.patch: 9p: drop nlink remove (FATE#311639). - patches.suse/0028-9p-Make-sure-we-are-able-to-clunk-the-cached-fid-on-.patch: 9p: Make sure we are able to clunk the cached fid on umount (FATE#311639). - patches.suse/0029-9p-Creating-files-with-names-too-long-should-fail-wi.patch: 9p: Creating files with names too long should fail with ENAMETOOLONG (FATE#311639). - patches.suse/0030-9p-return-on-mutex_lock_interruptible.patch: 9p: return on mutex_lock_interruptible() (FATE#311639). - patches.suse/0031-9p-saving-negative-to-unsigned-char.patch: 9p: saving negative to unsigned char (FATE#311639). - patches.suse/0032-9p-add-bdi-backing-to-mount-session.patch: 9p: add bdi backing to mount session (FATE#311639). - patches.suse/0033-Backport-fix-for-bdi-patch-to-make-it-work-with-SLES.patch: Backport fix for bdi patch to make it work with SLES kernel (FATE#311639). - patches.suse/0034-9p-VFS-switches-for-9p2000.L-protocol-and-client-cha.patch: 9p: VFS switches for 9p2000.L: protocol and client changes (FATE#311639). - patches.suse/0035-9p-VFS-switches-for-9p2000.L-VFS-switches.patch: 9p: VFS switches for 9p2000.L: VFS switches (FATE#311639). - patches.suse/0036-9p-add-9P2000.L-statfs-operation.patch: 9p: add 9P2000.L statfs operation (FATE#311639). - patches.suse/0037-9p-add-9P2000.L-rename-operation.patch: 9p: add 9P2000.L rename operation (FATE#311639). - patches.suse/0038-fs-9p-Make-sure-we-properly-instantiate-dentry.patch: fs/9p: Make sure we properly instantiate dentry (FATE#311639). - patches.suse/0039-9p-Add-mksock-support.patch: 9p: Add mksock support (FATE#311639). - patches.suse/0040-9p-cleanup-remove-unneeded-assignment.patch: 9p: cleanup: remove unneeded assignment (FATE#311639). - patches.suse/0041-9p-Optimize-TCREATE-by-eliminating-a-redundant-fid-c.patch: 9p: Optimize TCREATE by eliminating a redundant fid clone (FATE#311639). - patches.suse/0042-9p-Pass-the-correct-end-of-buffer-to-p9stat_read.patch: 9p: Pass the correct end of buffer to p9stat_read (FATE#311639). - patches.suse/0043-virtio_9p.h-needs-linux-types.h.patch: virtio_9p.h needs (FATE#311639). - patches.suse/0044-9p-Make-use-of-iounit-for-read-write.patch: 9p: Make use of iounit for read/write (FATE#311639). - patches.suse/0045-9p-readdir-implementation-for-9p2000.L.patch: 9p: readdir implementation for 9p2000.L (FATE#311639). - patches.suse/0046-net-9p-Handle-the-server-returned-error-properly.patch: net/9p: Handle the server returned error properly (FATE#311639). - patches.suse/0047-fs-9p-Pass-the-correct-user-credentials-during-attac.patch: fs/9p: Pass the correct user credentials during attach (FATE#311639). - patches.suse/0048-9p-getattr-client-implementation-for-9P2000.L-protoc.patch: 9p: getattr client implementation for 9P2000.L protocol (FATE#311639). - patches.suse/0049-9p-Implement-client-side-of-setattr-for-9P2000.L-pro.patch: 9p: Implement client side of setattr for 9P2000.L protocol (FATE#311639). - patches.suse/0050-9p-Define-and-implement-TLINK-for-9P2000.L.patch: 9p: Define and implement TLINK for 9P2000.L (FATE#311639). - patches.suse/0051-9p-Define-and-implement-TLINK-for-9P2000.L.patch: 9p: Define and implement TLINK for 9P2000.L (FATE#311639). - patches.suse/0052-9p-Define-and-implement-TSYMLINK-for-9P2000.L.patch: 9p: Define and implement TSYMLINK for 9P2000.L (FATE#311639). - patches.suse/0053-9p-Implement-TMKNOD.patch: 9p: Implement TMKNOD (FATE#311639). - patches.suse/0054-9p-Implement-TMKDIR.patch: 9p: Implement TMKDIR (FATE#311639). - patches.suse/0055-fs-9p-This-patch-implements-TLCREATE-for-9p2000.L-pr.patch: fs/9p: This patch implements TLCREATE for 9p2000.L protocol (FATE#311639). - patches.suse/0056-9p-Implement-LOPEN.patch: 9p: Implement LOPEN (FATE#311639). - patches.suse/0057-fs-9p-Prevent-parallel-rename-when-doing-fid_lookup.patch: fs/9p: Prevent parallel rename when doing fid_lookup (FATE#311639). - patches.suse/0058-fs-9p-destroy-fid-on-failed-remove.patch: fs/9p: destroy fid on failed remove (FATE#311639). - patches.suse/0059-fs-9p-remove-sparse-warning-in-vfs_inode.patch: fs/9p: remove sparse warning in vfs_inode (FATE#311639). - patches.suse/0060-virtio_9p.h-include-linux-types.h.patch: virtio_9p.h: include linux/types.h (FATE#311639). - patches.suse/0061-9p-potential-ERR_PTR-dereference.patch: 9p: potential ERR_PTR() dereference (FATE#311639). - patches.suse/0062-net-9p-trans_fd.c-Fix-unsigned-return-type.patch: net/9p/trans_fd.c: Fix unsigned return type (FATE#311639). - patches.suse/0063-fs-9p-net-9p-memory-leak-fixes.patch: fs/9p, net/9p: memory leak fixes (FATE#311639). - patches.suse/0064-fs-9p-Fix-error-handling-in-v9fs_get_sb.patch: fs/9p: Fix error handling in v9fs_get_sb (FATE#311639). - patches.suse/0065-9p-Check-for-NULL-fid-in-v9fs_dir_release.patch: 9p: Check for NULL fid in v9fs_dir_release() (FATE#311639). - patches.suse/0066-fs-9p-Use-the-correct-dentry-operations.patch: fs/9p: Use the correct dentry operations (FATE#311639). - patches.suse/0067-fs-9p-Don-t-use-dotl-version-of-mknod-for-dotu-inode.patch: fs/9p: Don't use dotl version of mknod for dotu inode operations (FATE#311639). - patches.suse/0068-net-9p-fix-memory-handling-allocation-in-rdma_reques.patch: net/9p: fix memory handling/allocation in rdma_request() (FATE#311639). - patches.suse/0069-net-9p-Mount-only-matching-virtio-channels.patch: net/9p: Mount only matching virtio channels (FATE#311639). - patches.suse/0070-9p-client-code-cleanup.patch: 9p: client code cleanup (FATE#311639). - patches.suse/0071-9p-remove-unneeded-checks.patch: 9p: remove unneeded checks (FATE#311639). - patches.suse/0072-fs-9p-setrlimit-fix-for-9p-write.patch: fs/9p: setrlimit fix for 9p write (FATE#311639). - patches.suse/0073-9p-Pass-the-correct-end-of-buffer-to-p9dirent_read.patch: 9p: Pass the correct end of buffer to p9dirent_read (FATE#311639). - patches.suse/0074-fs-9p-mkdir-fix-for-setting-S_ISGID-bit-as-per-paren.patch: fs/9p: mkdir fix for setting S_ISGID bit as per parent directory (FATE#311639). - patches.suse/0075-net-9p-This-patch-implements-TLERROR-RLERROR-on-the-.patch: net/9p: This patch implements TLERROR/RLERROR on the 9P client (FATE#311639). - patches.suse/0076-9p-Add-a-Direct-IO-support-for-non-cached-operations.patch: 9p: Add a Direct IO support for non-cached operations (FATE#311639). - patches.suse/0077-fs-9p-Remove-the-redundant-rsize-calculation-in-v9fs.patch: fs/9p: Remove the redundant rsize calculation in v9fs_file_write() (FATE#311639). - patches.suse/0078-net-9p-Add-a-Warning-to-catch-NULL-fids-passed-to-p9.patch: net/9p: Add a Warning to catch NULL fids passed to p9_client_clunk() (FATE#311639). - patches.suse/0079-fs-9p-Add-file_operations-for-cached-mode-in-dotl-pr.patch: [fs/9p] Add file_operations for cached mode in dotl protocol (FATE#311639). - patches.suse/0080-9p-Introduce-client-side-TFSYNC-RFSYNC-for-dotl.patch: [9p] Introduce client side TFSYNC/RFSYNC for dotl (FATE#311639). - patches.suse/0081-Backport-fix-change-fsync-signature-to-make-it-compa.patch: Backport fix: change fsync signature to make it compatible with SLES kernel (FATE#311639). - patches.suse/0082-9p-Implement-TLOCK.patch: 9p: Implement TLOCK (FATE#311639). - patches.suse/0083-9p-Implement-TGETLOCK.patch: 9p: Implement TGETLOCK (FATE#311639). - patches.suse/0084-9p-Use-V9FS_MAGIC-in-statfs.patch: 9p: Use V9FS_MAGIC in statfs (FATE#311639). - patches.suse/0085-9p-Implement-TREADLINK-operation-for-9p2000.L.patch: 9p: Implement TREADLINK operation for 9p2000.L (FATE#311639). - patches.suse/0086-net-9p-Serialize-virtqueue-operations-to-make-VirtIO.patch: [net/9p]Serialize virtqueue operations to make VirtIO transport SMP safe (FATE#311639). - patches.suse/0087-net-9p-Add-waitq-to-VirtIO-transport.patch: net/9p: Add waitq to VirtIO transport (FATE#311639). - patches.suse/0088-fs-9p-Use-mknod-9p-operation-on-create-without-open-.patch: fs/9p: Use mknod 9p operation on create without open request (FATE#311639). - patches.suse/0089-fs-9p-Add-missing-iput-in-v9fs_vfs_lookup.patch: fs/9p: Add missing iput in v9fs_vfs_lookup (FATE#311639). - patches.suse/0090-fs-9p-Use-generic_file_open-with-lookup_instantiate_.patch: fs/9p: Use generic_file_open with lookup_instantiate_filp (FATE#311639). - patches.suse/0091-net-9p-Return-error-if-we-fail-to-encode-protocol-da.patch: net/9p: Return error if we fail to encode protocol data (FATE#311639). - patches.suse/0092-9p-Add-datasync-to-client-side-TFSYNC-RFSYNC-for-dot.patch: 9p: Add datasync to client side TFSYNC/RFSYNC for dotl (FATE#311639). - patches.suse/0093-net-9p-Return-error-on-read-with-NULL-buffer.patch: net/9p: Return error on read with NULL buffer (FATE#311639). - patches.suse/0094-net-9p-protocol.c-Remove-duplicated-macros.patch: net/9p/protocol.c: Remove duplicated macros (FATE#311639). - patches.suse/0095-fs-9p-fix-menu-presentation.patch: fs/9p: fix menu presentation (FATE#311639). - patches.suse/0096-fs-9p-Move-dotl-inode-operations-into-a-seperate-fil.patch: fs/9p: Move dotl inode operations into a seperate file (FATE#311639). - patches.suse/0097-fs-9p-Simplify-the-.L-create-operation.patch: fs/9p: Simplify the .L create operation (FATE#311639). - patches.suse/0098-net-9p-Use-proper-data-types.patch: net/9p: Use proper data types (FATE#311639). - patches.suse/0099-fs-9p-TREADLINK-bugfix.patch: fs/9p: TREADLINK bugfix (FATE#311639). - patches.suse/0100-fs-9p-fix-spelling-typo.patch: fs/9p: fix spelling typo (FATE#311639). - patches.suse/0101-fs-9p-Don-t-set-dentry-d_op-in-create-routines.patch: fs/9p: Don't set dentry->d_op in create routines (FATE#311639). - patches.suse/0102-Backport-fix-set-root-d_op-and-add-dummy-revalidate-.patch: Backport fix: set root->d_op and add dummy revalidate func (FATE#311639). - patches.suse/0103-net-9p-Preparation-and-helper-functions-for-zero-cop.patch: [net/9p] Preparation and helper functions for zero copy (FATE#311639). - patches.suse/0104-net-9p-Assign-type-of-transaction-to-tc-pdu-id-which.patch: [net/9p] Assign type of transaction to tc->pdu->id which is otherwise unsed (FATE#311639). - patches.suse/0105-net-9p-Add-gup-zero_copy-support-to-VirtIO-transport.patch: [net/9p] Add gup/zero_copy support to VirtIO transport layer (FATE#311639). - patches.suse/0106-net-9p-Add-preferences-to-transport-layer.patch: [net/9p] Add preferences to transport layer (FATE#311639). - patches.suse/0107-net-9p-Read-side-zerocopy-changes-for-9P2000.L-proto.patch: [net/9p] Read side zerocopy changes for 9P2000.L protocol (FATE#311639). - patches.suse/0108-net-9p-Write-side-zerocopy-changes-for-9P2000.L-prot.patch: [net/9p] Write side zerocopy changes for 9P2000.L protocol (FATE#311639). - patches.suse/0109-net-9p-readdir-zerocopy-changes-for-9P2000.L-protoco.patch: [net/9p] readdir zerocopy changes for 9P2000.L protocol (FATE#311639). - patches.suse/0110-net-9p-Handle-Zero-Copy-TREAD-RERROR-case-in-dotl-ca.patch: [net/9p] Handle Zero Copy TREAD/RERROR case in !dotl case (FATE#311639). - patches.suse/0111-net-9p-Small-non-IO-PDUs-for-zero-copy-supporting-tr.patch: [net/9p] Small non-IO PDUs for zero-copy supporting transports (FATE#311639).- patches.fixes/proc_irq_ease_smp_affinity_setting.patch: bitmap, irq: add smp_affinity_list interface to /proc/irq (bnc#700448).- Update to 2.6.32.43 - patches.fixes/PM-Hibernate-Avoid-hitting-OOM-during-preallocation-of-memory.patch: Delete. - patches.fixes/PM-Hibernate-Fix-free_unnecessary_pages.patch: Delete. - patches.fixes/ksm-fix-null-pointer-dereference-in-scan_get_next_rmap_item.patch: Delete. - patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch: Delete. - patches.kabi/kabi-fix-struct-clocksource-breakage.patch: kabi: fix struct clocksource breakage. - patches.kabi/revert-mm-prevent-concurrent-unmap_mapping_range-on-.patch: Revert "mm: prevent concurrent unmap_mapping_range() on the same inode". - patches.fixes/mm-prevent-concurrent-unmap_mapping_range-on-.patch: mm: prevent concurrent unmap_mapping_range() on the same inode. - patches.rpmify/fix-WARN_RATELIMIT-for-non-CONFIG_BUG.patch: fix WARN_RATELIMIT for non CONFIG_BUG.- patches.fixes/audit-filter-rules-cred-perf.patch: Update SP1 patch with upstream commit info. No code changes.- patches.fixes/audit-filter-rules-cred-perf.patch: Update SP1 patch with upstream commit info.- patches.drivers/pmcraid-add-support-for-set-timestamp-comman.patch: pmcraid: add support for set timestamp command and other fixes (FATE#311474,bnc#690611). - patches.drivers/pmcraid-disable-msix-and-expand-device-confi.patch: pmcraid: disable msix and expand device config entry (FATE#311474,bnc#690611).- patches.xen/xen3-auto-common.diff: Re-add removed Makefile hunk.- patches.fixes/vgaarb-enable-legacy-resources-only-if-device-decodes.patch: VGA arb: Only enable legacy resources if device really decodes them.- patches.fixes/md-bitmap-flush-when-readonly: Flush the md bitmap when switching to read-only (bnc#701977).- patches.suse/add-target-mode-infrastructure.patch: Fixup build failure on utsrelease.- Update config files. - patches.suse/add-target-mode-infrastructure.patch: drivers/target: Add target-mode infrastructure (FATE#311801,bnc#687068). - patches.suse/target-Backport-for-SLES11-SP2.patch: target: Backport for SLES11 SP2 (FATE#311801,bnc#687068). - patches.xen/xen3-auto-common.diff: Refresh. - supported.conf: Mark target core modules as supported.- patches.fixes/memcg-bugfix-check-mem_cgroup_disabled-at-split-fixu.patch: memcg: bugfix check mem_cgroup_disabled() at split fixup (bnc#704592). - patches.fixes/memcg-change-page_cgroup_zoneinfo-signature.patch: memcg: change page_cgroup_zoneinfo signature (bnc#704592). - patches.fixes/memcg-charged-pages-always-have-valid-per-memcg-zone.patch: memcg: charged pages always have valid per-memcg zone info (bnc#704592). - patches.fixes/memcg-condense-page_cgroup-to-page-lookup-points.patch: memcg: condense page_cgroup-to-page lookup points (bnc#704592). - patches.fixes/memcg-count-the-soft_limit-reclaim-in-global-backgro.patch: memcg: count the soft_limit reclaim in global background reclaim (bnc#704592). - patches.fixes/memcg-css_id-must-be-called-under-rcu_read_lock.patch: memcg: css_id() must be called under rcu_read_lock() (bnc#704592). - patches.fixes/memcg-fix-css_id-RCU-locking-for-real.patch: memcg: fix css_id() RCU locking for real (bnc#704592). - patches.fixes/memcg-fix-css_is_ancestor-RCU-locking.patch: memcg: fix css_is_ancestor() RCU locking (bnc#704592). - patches.fixes/memcg-fix-false-positive-VM_BUG-on-non-SMP.patch: memcg: fix false positive VM_BUG on non-SMP (bnc#704592). - patches.fixes/memcg-fix-memory-migration-of-shmem-swapcache.patch: memcg: fix memory migration of shmem swapcache (bnc#704592). - patches.fixes/memcg-fix-mis-accounting-of-file-mapped-racy-with-mi.patch: memcg: fix mis-accounting of file mapped racy with migration (bnc#704592). - patches.fixes/memcg-fix-off-by-one-when-calculating-swap-cgroup-ma.patch: memcg: fix off-by-one when calculating swap cgroup map length (bnc#704592). - patches.fixes/memcg-fix-race-in-file_mapped-accounting.patch: memcg: fix race in file_mapped accounting (bnc#704592). - patches.fixes/memcg-fix-race-in-file_mapped-accouting-flag-managem.patch: memcg: fix race in file_mapped accouting flag management (bnc#704592). - patches.fixes/memcg-fix-wake-up-in-oom-wait-queue.patch: memcg: fix wake up in oom wait queue (bnc#704592). - patches.fixes/memcg-give-current-access-to-memory-reserves-if-it-s.patch: memcg: give current access to memory reserves if it's trying to die (bnc#704592). - patches.fixes/memcg-kill-unnecessary-initialization-in-mem_cgroup_.patch: memcg: kill unnecessary initialization in mem_cgroup_shrink_node_zone() (bnc#704592). - patches.fixes/memcg-make-oom-killer-a-no-op-when-no-killable-task-.patch: memcg: make oom killer a no-op when no killable task can be found (bnc#704592). - patches.fixes/memcg-mark-init_section_page_cgroup-properly.patch: memcg: mark init_section_page_cgroup() properly (bnc#704592). - patches.fixes/memcg-more-mem_cgroup_uncharge-batching.patch: memcg: more mem_cgroup_uncharge() batching (bnc#704592). - patches.fixes/memcg-move-memcg-reclaimable-page-into-tail-of-inact.patch: memcg: move memcg reclaimable page into tail of inactive list (bnc#704592). - patches.fixes/memcg-move-page-freeing-code-out-of-lock.patch: memcg: move page-freeing code out of lock (bnc#704592). - patches.fixes/memcg-never-OOM-when-charging-huge-pages.patch: memcg: never OOM when charging huge pages (bnc#704592). - patches.fixes/memcg-no-uncharged-pages-reach-page_cgroup_zoneinfo.patch: memcg: no uncharged pages reach page_cgroup_zoneinfo (bnc#704592). - patches.fixes/memcg-prevent-endless-loop-when-charging-huge-pages-.patch: memcg: prevent endless loop when charging huge pages to near-limit group (bnc#704592). - patches.fixes/memcg-remove-NULL-check-from-lookup_page_cgroup-resu.patch: memcg: remove NULL check from lookup_page_cgroup() result (bnc#704592). - patches.fixes/memcg-remove-direct-page_cgroup-to-page-pointer.patch: memcg: remove direct page_cgroup-to-page pointer (bnc#704592). - patches.fixes/memcg-remove-memcg-reclaim_param_lock.patch: memcg: remove memcg->reclaim_param_lock (bnc#704592). - patches.fixes/memcg-remove-unused-page-flag-bitfield-defines.patch: memcg: remove unused page flag bitfield defines (bnc#704592). - patches.fixes/memcg-rework-usage-of-stats-by-soft-limit.patch: memcg: rework usage of stats by soft limit (bnc#704592). - patches.fixes/memcg-sc.nr_to_reclaim-should-be-initialized.patch: memcg: sc.nr_to_reclaim should be initialized (bnc#704592). - patches.fixes/memcg-soft-limit-reclaim-should-end-at-limit-not-bel.patch: memcg: soft limit reclaim should end at limit not below (bnc#704592). - patches.fixes/memcg-use-for_each_mem_cgroup.patch: memcg: use for_each_mem_cgroup (bnc#704592). - patches.fixes/mm-thp-optimize-memcg-charge-in-khugepaged.patch: mm: thp: optimize memcg charge in khugepaged (bnc#704592). - patches.suse/cgroups-blkio-subsystem-as-module.patch: Refresh.- patches.fixes/drm_i85x_watermark_fix.patch: IS_MOBILE() catches 85x, so we'd always try to use the 9xx FIFO sizing; since there's an explicit 85x version, this seems wrong. v2: Handle 830m correctly too. - patches.fixes/drm_i85x_chip_id_fix.patch: pci.ids and the datasheet both say it's 358e, not 35e8. (bnc #677443).- patches.fixes/perf-eliminate-getimeofday.patch: perf record: remove unneeded gettimeofday() call (bnc#607339).- patches.suse/memcg-unify-charge-uncharge-quantities-to-units-of-pages.patch: Refresh. Use hpage_nr_pages rather than compound_order (bnc#704592)Cleanup: Remove patches already added by others or which are not needed: - patches.arch/012-intel_idle__Change_mode_755__644.patch: Delete. - patches.drivers/2009-10-12-0001-mce-edac-Use-an-atomic-notifier-for-MCEs-decoding.patch: Delete. - patches.drivers/2009-10-12-0003-x86-Export-k8-physical-topology.patch: Delete. - patches.drivers/Modified-2010-03-08-0001-Driver-core-Constify-struct-sysfs_ops-in-struct-kob.patch: Delete. - patches.drivers/Modified-2010-05-25-0001-kernel.h-add-pr_warn-for-symmetry-to-dev_warn-netd.patch: Delete.- Remove unused patches: * patches.suse/blk-queue-unprep-fn * patches.suse/gfs2-generalize-flags-for-blkdev_issue_fn-functio.patch * patches.suse/scsi-Retry-commands-with-UNIT_ATTENTION-sense-code.patch * patches.suse/staging-hv-host-lock-push-down.patch- patches.arch/s390-sles11sp2-kmsg.patch: kmsg: add descriptions for new messages (bnc#702651,LTC#72829).- patches.fixes/sched-divide-by-zero-workaround-and-diag.diff: Delete.- patches.suse/ppc-temporary-bugon-timer-workaround.patch: Refresh.- patches.suse/ppc-temporary-bugon-timer-workaround.patch: ppc: temporary workaround for ppc timer BUG_ON() (bnc#702384).- patches.fixes/PM-Hibernate-Avoid-hitting-OOM-during-preallocation-of-memory.patch: PM / Hibernate: Avoid hitting OOM during preallocation of memory. - patches.fixes/PM-Hibernate-Fix-free_unnecessary_pages.patch: PM / Hibernate: Fix free_unnecessary_pages().- patches.drivers/igb-support-for-VF-configuration-tools.patch: Refresh.- patches.drivers/alsa-sp1-hda-118-Add-a-fix-up-for-HP-RP5800: patch name corrected, fixed the upstream git commit id- patches.drivers/igb-rework-use-of-VMOLR-in-regards-to-PF-and-VFs.patch: Fixup compilation error.- Fixup patches for series2git: * patches.drivers/0335-New-7.0-FW-bnx2x-cnic-bnx2i-bnx2fc.patch * patches.drivers/merge-branch-master-of-master-kernel-org-pub-scm-linux-kernel-git-davem-net-2-6 * patches.suse/events-rename-trace_event_template-to-declare_event_class * patches.suse/hw-breakpoints-prepare-the-code-for-hardware-breakpoint-interfaces * patches.suse/hw-breakpoints-rewrite-the-hw-breakpoints-layer-on-top-of-perf-events * patches.suse/hw-breakpoints-use-the-new-wrapper-routines-to-access-debug-registers-in-process-thread-code * patches.suse/hw-breakpoints-x86-architecture-implementation-of-hardware-breakpoint-interfaces * patches.suse/ksym_tracer-extract-trace-entry-from-struct-trace_ksym * patches.suse/merge-hw-breakpoints-rewrite-the-hw-breakpoints-layer-on-top-of-perf-events * patches.suse/perf_events-add-event-constraints-support-for-intel-processors * patches.suse/perf_events-x86-fix-event-constraints-code * patches.suse/revert-x86-apic-fix-spurious-error-interrupts-triggering-on-all-non-boot-aps * patches.suse/trace_syscalls-set-event_enter_-sname-data-to-its-metadata * patches.suse/tracing-add-kprobe-based-event-tracer * patches.suse/tracing-create-new-define_event_print * patches.suse/tracing-create-new-trace_event_template * patches.suse/tracing-kprobe-tracer-assigns-new-event-ids-for-each-event * patches.suse/tracing-kprobes-cleanup-kprobe-tracer-code * patches.suse/tracing-profile-add-filter-support * patches.suse/tracing-syscalls-make-syscall-events-print-callbacks-static * patches.suse/x86-hw-breakpoints-actually-flush-thread-breakpoints-in-flush_thread * patches.xen/xen3-patch-2.6.30- Add igb update (FATE#311304).- Revert accidental low_latency change: * patches.suse/blkio-Implement-group_isolation-tunable.patch: Refresh. * patches.suse/cfq-iosched-Always-provide-group-isolation.patch: Refresh. * patches.suse/cfq-iosched-Implement-tunable-group_idle.patch: Refresh. * patches.suse/cfq-iosched-commenting-non-obvious-initialization.patch: Refresh. * patches.suse/cfq-iosched-fix-ncq-detection-code.patch: Reset latency to 0. * patches.suse/cfq-iosched-reduce-write-depth-only-if-sync-was-del.patch: Refresh.- patches.xen/xen3-auto-xen-drivers.diff: fix hcd->poll_rh build error. Hand edited the patch, odds are, something in the xen patch refresh in the future will break this, but the xen developer can fix that up.- USB 3.0 update, .35->.36. ISO support should now be complete. - Update config files. - patches.drivers/USB3-0100-usb-storage-freecom-Fixed-several-coding-style-issues.patch: usb: storage: freecom: Fixed several coding style issues. - patches.drivers/USB3-0101-USB-autoconvert-trivial-BKL-users-to-private-mutex.patch: USB: autoconvert trivial BKL users to private mutex. - patches.drivers/USB3-0103-USB-misc-Remove-unnecessary-casts-of-private_data.patch: USB: misc: Remove unnecessary casts of private_data. - patches.drivers/USB3-0109-USB-io_ti.c-don-t-return-0-if-writing-the-download-record-fa.patch: USB: io_ti.c: don't return 0 if writing the download record failed. - patches.drivers/USB3-0114-USB-xHCI-Supporting-MSI-MSI-X.patch: USB: xHCI: Supporting MSI/MSI-X. - patches.drivers/USB3-0115-USB-EHCI-remove-PCI-assumption.patch: USB: EHCI: remove PCI assumption. - patches.drivers/USB3-0116-USB-EHCI-simplify-remainder-computations.patch: USB: EHCI: simplify remainder computations. - patches.drivers/USB3-0117-USB-EHCI-add-missing-frame-microframe-conversion.patch: USB: EHCI: add missing frame -> microframe conversion. - patches.drivers/USB3-0118-USB-EHCI-reorganize-isochronous-scheduler-routine.patch: USB: EHCI: reorganize isochronous scheduler routine. - patches.drivers/USB3-0119-USB-EHCI-remove-dead-code-in-the-periodic-scheduler.patch: USB: EHCI: remove dead code in the periodic scheduler. - patches.drivers/USB3-0124-USB-xHCI-handle_tx_event-refactor-finish_td.patch: USB: xHCI: handle_tx_event() refactor: finish_td. - patches.drivers/USB3-0125-USB-xHCI-handle_tx_event-refactor-process_ctrl_td.patch: USB: xHCI: handle_tx_event() refactor: process_ctrl_td. - patches.drivers/USB3-0126-USB-xHCI-handle_tx_event-refactor-process_bulk_intr_td.patch: USB xHCI: handle_tx_event() refactor: process_bulk_intr_td. - patches.drivers/USB3-0127-USB-xHCI-remove-redundant-print-messages.patch: USB: xHCI: remove redundant print messages. - patches.drivers/USB3-0128-USB-xHCI-adds-new-cases-to-trb_comp_code-switch.patch: USB: xHCI: adds new cases to trb_comp_code switch. - patches.drivers/USB3-0129-USB-xHCI-Missed-Service-Error-Event-process.patch: USB: xHCI: Missed Service Error Event process. - patches.drivers/USB3-0130-USB-xHCI-Introduce-urb_priv-structure.patch: USB: xHCI: Introduce urb_priv structure. - patches.drivers/USB3-0131-USB-xHCI-Isochronous-transfer-implementation.patch: USB: xHCI: Isochronous transfer implementation. - patches.drivers/USB3-0132-USB-xHCI-allocate-bigger-ring-for-isochronous-endpoint.patch: USB: xHCI: allocate bigger ring for isochronous endpoint. - patches.drivers/USB3-0133-USB-xHCI-Isoc-urb-enqueue.patch: USB: xHCI: Isoc urb enqueue. - patches.drivers/USB3-0155-USB-accept-RNDIS-configs-if-there-s-no-alternative.patch: USB: accept RNDIS configs if there's no alternative. - patches.drivers/USB3-0159-USB-ehci-fix-remove-of-ehci-debugfs-dir.patch: USB: ehci: fix remove of ehci debugfs dir. - patches.drivers/USB3-0160-USB-usb-storage-implement-autosuspend.patch: USB: usb-storage: implement autosuspend. - patches.drivers/USB3-0161-USB-add-USB-serial-ssu100-driver.patch: USB: add USB serial ssu100 driver. - patches.drivers/USB3-0162-USB-fix-linux-usb.h-kernel-doc-warnings.patch: USB:: fix linux/usb.h kernel-doc warnings. - patches.drivers/USB3-0163-USB-xhci-Performance-move-functions-that-find-ep-ring.patch: USB: xhci: Performance - move functions that find ep ring. - patches.drivers/USB3-0164-USB-xhci-Performance-move-interrupt-handlers-into-xhci-ring..patch: USB: xhci: Performance - move interrupt handlers into xhci-ring.c. - patches.drivers/USB3-0165-USB-xhci-Performance-move-xhci_work-into-xhci_irq.patch: USB: xhci: Performance - move xhci_work() into xhci_irq(). - patches.drivers/USB3-0166-USB-xhci-Remove-unnecessary-reads-of-IRQ_PENDING-register.patch: USB: xhci: Remove unnecessary reads of IRQ_PENDING register. - patches.drivers/USB3-0167-USB-xhci-Make-xhci_handle_event-static.patch: USB: xhci: Make xhci_handle_event() static. - patches.drivers/USB3-0168-USB-xhci-Minimize-HW-event-ring-dequeue-pointer-writes.patch: USB: xhci: Minimize HW event ring dequeue pointer writes. - patches.drivers/USB3-0169-USB-xhci-Make-xhci_set_hc_event_deq-static.patch: USB: xhci: Make xhci_set_hc_event_deq() static. - patches.drivers/USB3-0170-USB-xhci-Reduce-reads-and-writes-of-interrupter-registers.patch: USB: xhci: Reduce reads and writes of interrupter registers. - patches.drivers/USB3-0171-USB-xhci-Don-t-flush-doorbell-writes.patch: USB: xhci: Don't flush doorbell writes. - patches.drivers/USB3-0172-USB-xhci-Set-DMA-mask-for-host.patch: USB: xhci: Set DMA mask for host. - patches.drivers/USB3-0174-USB-usbtest-support-test-device-with-only-one-iso-in-or-iso-.patch: USB: usbtest: support test device with only one iso-in or iso-out endpoint. - patches.drivers/USB3-0176-USB-remove-fake-address-of-expressions.patch: USB: remove fake "address-of" expressions. - patches.drivers/USB3-0177-USB-serial-fix-stalled-writes.patch: USB: serial: fix stalled writes. - patches.drivers/USB3-0182-ipheth-add-support-for-iPhone-4.patch: ipheth: add support for iPhone 4. - patches.drivers/USB3-0187-USB-serial-fix-leak-of-usb-serial-module-refrence-count.patch: USB: serial: fix leak of usb serial module refrence count. - patches.drivers/USB3-0193-USB-ssu100-add-locking-for-port-private-data-in-ssu100.patch: USB: ssu100: add locking for port private data in ssu100. - patches.drivers/USB3-0194-USB-ssu100-refine-process_packet-in-ssu100.patch: USB: ssu100: refine process_packet in ssu100. - patches.drivers/USB3-0195-USB-ssu100-remove-duplicate-defines-in-ssu100.patch: USB: ssu100: remove duplicate #defines in ssu100. - patches.drivers/USB3-0196-USB-ssu100-add-register-parameter-to-ssu100_setregister.patch: USB: ssu100: add register parameter to ssu100_setregister. - patches.drivers/USB3-0197-USB-ssu100-rework-logic-for-TIOCMIWAIT.patch: USB: ssu100: rework logic for TIOCMIWAIT. - patches.drivers/USB3-0198-USB-serial-export-symbol-usb_serial_generic_disconnect.patch: USB: serial: export symbol usb_serial_generic_disconnect. - patches.drivers/USB3-0199-USB-ssu100-add-disconnect-function-for-ssu100.patch: USB: ssu100: add disconnect function for ssu100. - patches.drivers/USB3-0200-USB-ssu100-set-tty_flags-in-ssu100_process_packet.patch: USB: ssu100: set tty_flags in ssu100_process_packet. - patches.drivers/USB3-0204-USB-serial-io_ti.c-don-t-return-0-if-writing-the-download-re.patch: USB: serial: io_ti.c: don't return 0 if writing the download record failed. - patches.drivers/USB3-0207-USB-xHCI-update-ring-dequeue-pointer-when-process-missed-tds.patch: USB: xHCI: update ring dequeue pointer when process missed tds. - patches.drivers/USB3-0208-USB-iowarrior-fix-misuse-of-return-value-of-copy_to_user.patch: USB: iowarrior: fix misuse of return value of copy_to_user(). - patches.drivers/USB3-0209-USB-adutux-fix-misuse-of-return-value-of-copy_to_user.patch: USB: adutux: fix misuse of return value of copy_to_user(). - patches.drivers/USB3-0215-USB-option-fix-incorrect-novatel-entries.patch: USB: option: fix incorrect novatel entries. - patches.drivers/USB3-0219-usb-allow-drivers-to-use-allocated-bandwidth-until-unbound.patch: usb: allow drivers to use allocated bandwidth until unbound. - patches.drivers/USB3-0220-USB-ssu100-turn-off-debug-flag.patch: USB: ssu100: turn off debug flag. - patches.drivers/USB3-0224-USB-cxacru-Use-a-bulk-int-URB-to-access-the-command-endpoint.patch: USB: cxacru: Use a bulk/int URB to access the command endpoint. - patches.drivers/USB3-0228-ipheth-remove-incorrect-devtype-to-WWAN.patch: ipheth: remove incorrect devtype to WWAN. - patches.drivers/USB3-0231-USB-EHCI-Disable-langwell-penwell-LPM-capability.patch: USB: EHCI: Disable langwell/penwell LPM capability. - supported.conf: - patches.drivers/USB3-0244-USB-remove-unused-usb_buffer_alloc-and-usb_buffer_free-macro.patch: Delete.- supported.conf: Added cxgb4 as a dependency of cxgb4i- patches.drivers/USB3-0002-usbnet-Print-device-statistics-as-unsigned.patch: Refresh. - patches.drivers/USB3-0008-usb-pegasus-fixed-coding-style-issues.patch: Refresh. - patches.drivers/USB3-0009-usbnet-remove-direct-access-to-urb-status.patch: Refresh. - patches.drivers/USB3-0014-ehci-hcd-Fix-typo-in-an-error-message.patch: Refresh. - patches.drivers/USB3-0015-hso-remove-driver-version.patch: Refresh. - patches.drivers/USB3-0015-include-linux-usb-audio.h-add-__attribute__-packed.patch: Refresh. - patches.drivers/USB3-0021-usbnet-use-jiffies-in-schedule_timeout-not-msecs.patch: Refresh. - patches.drivers/USB3-0028-hso-Add-new-product-ID.patch: Refresh. - patches.drivers/USB3-0031-usbnet-remove-noisy-and-hardly-useful-printk.patch: Refresh. - patches.drivers/USB3-0033-usbnet-rx_submit-should-return-an-error-code.patch: Refresh.- USB 3.0 work, .35->.36 half done - patches.drivers/USB3-0002-usbnet-Print-device-statistics-as-unsigned.patch: usbnet: Print device statistics as unsigned. - patches.drivers/USB3-0008-usb-pegasus-fixed-coding-style-issues.patch: usb: pegasus: fixed coding style issues. - patches.drivers/USB3-0009-usbnet-remove-direct-access-to-urb-status.patch: usbnet: remove direct access to urb->status. - patches.drivers/USB3-0015-hso-remove-driver-version.patch: hso: remove driver version. - patches.drivers/USB3-0021-usbnet-use-jiffies-in-schedule_timeout-not-msecs.patch: usbnet: use jiffies in schedule_timeout(), not msecs. - patches.drivers/USB3-0028-hso-Add-new-product-ID.patch: hso: Add new product ID. - patches.drivers/USB3-0031-usbnet-remove-noisy-and-hardly-useful-printk.patch: usbnet: remove noisy and hardly useful printk. - patches.drivers/USB3-0033-usbnet-rx_submit-should-return-an-error-code.patch: usbnet: rx_submit() should return an error code. - patches.drivers/USB3-0034-tty-Fix-the-digi-acceleport-driver-NULL-checks.patch: tty: Fix the digi acceleport driver NULL checks. - patches.drivers/USB3-0035-cdc-acm-remove-dead-code.patch: cdc-acm: remove dead code. - patches.drivers/USB3-0036-USB-fix-failure-path-in-usb_add_hcd.patch: USB: fix failure path in usb_add_hcd(). - patches.drivers/USB3-0037-USB-don-t-stop-root-hub-status-polls-too-soon.patch: USB: don't stop root-hub status polls too soon. - patches.drivers/USB3-0038-USB-add-check-to-detect-host-controller-hardware-removal.patch: USB: add check to detect host controller hardware removal. - patches.drivers/USB3-0039-USB-UHCI-acquire-spinlock-before-calling-start_rh.patch: USB: UHCI: acquire spinlock before calling start_rh(). - patches.drivers/USB3-0040-USB-speedtouch-fixed-brace-and-spacing-coding-style-issues.patch: USB: speedtouch: fixed brace and spacing coding style issues. - patches.drivers/USB3-0041-USB-speedtouch-fixed-more-brace-and-spacing-coding-style-iss.patch: USB: speedtouch: fixed more brace and spacing coding style issues. - patches.drivers/USB3-0042-USB-xhci-Remove-obsolete-debugging-printk.patch: USB: xhci: Remove obsolete debugging printk. - patches.drivers/USB3-0043-USB-iuu_phoenix-Add-support-for-different-baud-rates.patch: USB: iuu_phoenix: Add support for different baud rates. - patches.drivers/USB3-0044-USB-EHCI-make-CONFIG_USB_EHCI_TT_NEWSCHED-default-to-Y.patch: USB: EHCI: make CONFIG_USB_EHCI_TT_NEWSCHED default to Y. - patches.drivers/USB3-0047-USB-core-endpoint-Fix-Coding-Styles.patch: USB: core endpoint: Fix Coding Styles. - patches.drivers/USB3-0049-USB-host-Eliminate-NULL-dereference.patch: USB: host: Eliminate NULL dereference. - patches.drivers/USB3-0050-USB-isd200.c-Remove-unnecessary-kmalloc-cast.patch: USB: isd200.c: Remove unnecessary kmalloc cast. - patches.drivers/USB3-0052-USB-EHCI-EHCI-1.1-addendum-preparation.patch: USB: EHCI: EHCI 1.1 addendum: preparation. - patches.drivers/USB3-0053-USB-EHCI-EHCI-1.1-addendum-Basic-LPM-feature-support.patch: USB: EHCI: EHCI 1.1 addendum: Basic LPM feature support. - patches.drivers/USB3-0054-USB-EHCI-EHCI-1.1-addendum-Enable-Per-port-change-detect-bit.patch: USB: EHCI: EHCI 1.1 addendum: Enable Per-port change detect bits. - patches.drivers/USB3-0055-USB-option-Remove-duplicate-AMOI_VENDOR_ID.patch: USB: option: Remove duplicate AMOI_VENDOR_ID. - patches.drivers/USB3-0056-Revert-USB-Adding-support-for-HTC-Smartphones-to-ipaq.patch: Revert "USB: Adding support for HTC Smartphones to ipaq". - patches.drivers/USB3-0058-usb-conexant-fixed-spacing-and-brace-coding-style-issues.patch: usb: conexant: fixed spacing and brace coding style issues. - patches.drivers/USB3-0060-usb-atm-fixed-spacing-and-indentation-coding-style-issues.patch: usb: atm: fixed spacing and indentation coding style issues. - patches.drivers/USB3-0063-USB-BKL-Remove-BKL-use-for-usb-serial-driver-probing.patch: USB-BKL: Remove BKL use for usb serial driver probing. - patches.drivers/USB3-0064-USB-BKL-Remove-BKL-use-in-uhci-debug.patch: USB-BKL: Remove BKL use in uhci-debug. - patches.drivers/USB3-0077-USB-convert-usb_hcd-bitfields-into-atomic-flags.patch: USB: convert usb_hcd bitfields into atomic flags. - patches.drivers/USB3-0079-USB-refactor-the-powermac-specific-ASIC-clock-code.patch: USB: refactor the powermac-specific ASIC clock code. - patches.drivers/USB3-0086-USB-usblp-fixed-switch-brace-whitespace-and-spacing-coding-s.patch: USB: usblp: fixed switch, brace, whitespace and spacing coding style issues. - patches.drivers/USB3-0087-USB-drivers-usb-Makefile-conditionally-descend-to-early.patch: USB: drivers/usb/Makefile: conditionally descend to 'early'. - patches.drivers/USB3-0088-USB-xhci-trivial-use-ARRAY_SIZE.patch: USB: xhci: trivial: use ARRAY_SIZE. - patches.drivers/USB3-0089-USB-EHCI-fix-NULL-pointer-dererence-in-HCDs-that-use-HCD_LOC.patch: USB: EHCI: fix NULL pointer dererence in HCDs that use HCD_LOCAL_MEM. - patches.drivers/USB3-0092-USB-serial-io_ti-Don-t-return-0-if-writing-the-download-reco.patch: USB: serial: io_ti: Don't return 0 if writing the download record failed. - patches.suse/kdb-common: Refresh.- patches.arch/x86-Introduce-struct-fpu-and-related-API.patch: Refresh. - patches.arch/x86-ptrace-xstate-support.patch: Rename to patches.arch/x86-xstate-01-ptrace-support.patch - patches.arch/x86-xstate-02-ptrace-generic-PTRACE_GETREGSET-SETREGSET.patch: ptrace: Add support for generic PTRACE_GETREGSET/PTRACE_SETREGSET (bnc#698803 fate#311964). - patches.arch/x86-xstate-03-fix-returned-error.patch: ptrace: Fix ptrace_regset() comments and diagnose errors specifically (bnc#698803 fate#311964). - patches.arch/x86-xstate-04-simplify-xstateregs_get.patch: x86, ptrace: Simplify xstateregs_get() (bnc#698803 fate#311964). - patches.arch/x86-xstate-05-remove-set_stopped_child_used_math.patch: x86, ptrace: Remove set_stopped_child_used_math() infpregs_set (bnc#698803 fate#311964). - patches.arch/xsaveopt-05-sync-xsave-memory-layout.patch: Refresh.- patches.drivers/mpt-fusion-fix-races-with-deleted.patch: Add a note about upstream equivalent fix.- Update config files. - patches.drivers/cxgb4-add-a-missing-error-interrupt: cxgb4: add a missing error interrupt (FATE#311470, bnc#694966). - patches.drivers/cxgb4-add-const-to-static-arrays: cxgb4: add const to static arrays (FATE#311470, bnc#694966). - patches.drivers/cxgb4-add-hw-and-fw-support-code: cxgb4: Add HW and FW support code (FATE#311470, bnc#694966). - patches.drivers/cxgb4-add-main-driver-file-and-driver-makefile: cxgb4: Add main driver file and driver Makefile (FATE#311470, bnc#694966). - patches.drivers/cxgb4-add-new-pci-ids: cxgb4: add new PCI IDs (FATE#311470, bnc#694966). - patches.drivers/cxgb4-add-packet-queues-and-packet-dma-code: cxgb4: Add packet queues and packet DMA code (FATE#311470, bnc#694966). - patches.drivers/cxgb4-add-register-message-and-fw-definitions: cxgb4: Add register, message, and FW definitions (FATE#311470, bnc#694966). - patches.drivers/cxgb4-add-remaining-driver-headers-and-l2t-management: cxgb4: Add remaining driver headers and L2T management (FATE#311470, bnc#694966). - patches.drivers/cxgb4-add-user-manipulation-of-the-rss-table: cxgb4: add user manipulation of the RSS table (FATE#311470, bnc#694966). - patches.drivers/cxgb4-advertise-netif_f_tso_ecn: cxgb4: advertise NETIF_F_TSO_ECN (FATE#311470, bnc#694966). - patches.drivers/cxgb4-allocate-more-space-for-msi-x-interrupt-names: cxgb4: allocate more space for MSI-X interrupt names (FATE#311470, bnc#694966). - patches.drivers/cxgb4-avoid-duplicating-some-resource-freeing-code: cxgb4: avoid duplicating some resource freeing code (FATE#311470, bnc#694966). - patches.drivers/cxgb4-chelsio-t4-driver-compat: cxgb4: Chelsio T4 driver (compat) (bnc#694966, FATE#311470). - patches.drivers/cxgb4-configure-hw-vlan-extraction-through-fw: cxgb4: configure HW VLAN extraction through FW (FATE#311470, bnc#694966). - patches.drivers/cxgb4-correct-formatting-of-msi-x-interrupt-names: cxgb4: correct formatting of MSI-X interrupt names (FATE#311470, bnc#694966). - patches.drivers/cxgb4-disable-an-interrupt-that-is-neither-used-nor-serviced: cxgb4: disable an interrupt that is neither used nor serviced (FATE#311470, bnc#694966). - patches.drivers/cxgb4-distinguish-between-1-lane-kr-kx-and-4-lane-kr-kx-kx4-ports: cxgb4: distinguish between 1-lane KR/KX and 4-lane KR/KX/KX4 ports (FATE#311470, bnc#694966). - patches.drivers/cxgb4-do-not-read-the-clock-frequency-from-vpd: cxgb4: do not read the clock frequency from VPD (FATE#311470, bnc#694966). - patches.drivers/cxgb4-don-t-offload-rx-checksums-for-ipv6-fragments: cxgb4: don't offload Rx checksums for IPv6 fragments (FATE#311470, bnc#694966). - patches.drivers/cxgb4-dynamically-determine-flash-size-and-fw-image-location: cxgb4: dynamically determine flash size and FW image location (FATE#311470, bnc#694966). - patches.drivers/cxgb4-enable-pcie-relaxed-ordering: cxgb4: enable PCIe relaxed ordering (FATE#311470, bnc#694966). - patches.drivers/cxgb4-exclude-registers-with-read-side-effects-from-register-dumps: cxgb4: exclude registers with read side effects from register dumps (FATE#311470, bnc#694966). - patches.drivers/cxgb4-extend-vpd-parsing: cxgb4: extend VPD parsing (FATE#311470, bnc#694966). - patches.drivers/cxgb4-fix-crash-due-to-manipulating-queues-before-registration: cxgb4: fix crash due to manipulating queues before registration (FATE#311470, bnc#694966). - patches.drivers/cxgb4-fix-for-new-ndo_get_stats64-signature: cxgb4: fix for new ndo_get_stats64 signature (FATE#311470, bnc#694966). - patches.drivers/cxgb4-fix-initial-addition-of-mac-address: cxgb4: fix initial addition of MAC address (FATE#311470, bnc#694966). - patches.drivers/cxgb4-fix-mac-address-hash-filter: cxgb4: fix MAC address hash filter (FATE#311470, bnc#694966). - patches.drivers/cxgb4-fix-setting-of-the-function-number-in-transmit-descriptors: cxgb4: fix setting of the function number in transmit descriptors (FATE#311470, bnc#694966). - patches.drivers/cxgb4-fix-tso-descriptors: cxgb4: fix TSO descriptors (FATE#311470, bnc#694966). - patches.drivers/cxgb4-fix-wrong-shift-direction: cxgb4: fix wrong shift direction (FATE#311470, bnc#694966). - patches.drivers/cxgb4-function-namespace-cleanup-v3: cxgb4: function namespace cleanup (v3) (FATE#311470, bnc#694966). - patches.drivers/cxgb4-get-on-chip-queue-info-from-fw-and-create-a-memory-window-for-them: cxgb4: get on-chip queue info from FW and create a memory window for them (FATE#311470, bnc#694966). - patches.drivers/cxgb4-handle-rx-tx-queue-ranges-not-starting-at-0: cxgb4: handle Rx/Tx queue ranges not starting at 0 (FATE#311470, bnc#694966). - patches.drivers/cxgb4-implement-eeh: cxgb4: implement EEH (FATE#311470, bnc#694966). - patches.drivers/cxgb4-implement-the-ethtool_grxfh-command: cxgb4: implement the ETHTOOL_GRXFH command (FATE#311470, bnc#694966). - patches.drivers/cxgb4-increase-serial-number-length: cxgb4: increase serial number length (FATE#311470, bnc#694966). - patches.drivers/cxgb4-keep-interrupts-available-when-the-ports-are-brought-down: cxgb4: keep interrupts available when the ports are brought down (FATE#311470, bnc#694966). - patches.drivers/cxgb4-make-unnecessarily-global-functions-static: cxgb4: Make unnecessarily global functions static (FATE#311470, bnc#694966). - patches.drivers/cxgb4-minor-cleanup: cxgb4: minor cleanup (FATE#311470, bnc#694966). - patches.drivers/cxgb4-move-the-choice-of-interrupt-type-before-net_device-registration: cxgb4: move the choice of interrupt type before net_device registration (FATE#311470, bnc#694966). - patches.drivers/cxgb4-notify-upper-drivers-if-the-device-is-already-up-when-they-load: cxgb4: notify upper drivers if the device is already up when they load (FATE#311470, bnc#694966). - patches.drivers/cxgb4-numa-aware-tx-queue-allocations: cxgb4: NUMA-aware Tx queue allocations (FATE#311470, bnc#694966). - patches.drivers/cxgb4-parse-the-vpd-instead-of-relying-on-a-static-vpd-layout: cxgb4: parse the VPD instead of relying on a static VPD layout (FATE#311470, bnc#694966). - patches.drivers/cxgb4-print-port-information-after-registering-each-netdev: cxgb4: print port information after registering each netdev (FATE#311470, bnc#694966). - patches.drivers/cxgb4-propagate-link-initialization-errors-to-ndo_open-s-callers: cxgb4: propagate link initialization errors to .ndo_open's callers (FATE#311470, bnc#694966). - patches.drivers/cxgb4-rearrange-initialization-code-in-preparation-for-eeh: cxgb4: rearrange initialization code in preparation for EEH (FATE#311470, bnc#694966). - patches.drivers/cxgb4-remove-a-bitmap: cxgb4: remove a bitmap (FATE#311470, bnc#694966). - patches.drivers/cxgb4-remove-a-bogus-pci-function-number-check: cxgb4: remove a bogus PCI function number check (FATE#311470, bnc#694966). - patches.drivers/cxgb4-remove-call-to-stop-tx-queues-at-load-time: cxgb4: remove call to stop TX queues at load time (FATE#311470, bnc#694966). - patches.drivers/cxgb4-remove-the-name-field-from-the-adapter-structure: cxgb4: remove the name field from the adapter structure (FATE#311470, bnc#694966). - patches.drivers/cxgb4-report-gro-stats-with-ethtool-s: cxgb4: report GRO stats with ethtool -S (FATE#311470, bnc#694966). - patches.drivers/cxgb4-report-the-pcie-link-speed: cxgb4: report the PCIe link speed (FATE#311470, bnc#694966). - patches.drivers/cxgb4-set-dev_id-to-the-port-number: cxgb4: set dev_id to the port number (FATE#311470, bnc#694966). - patches.drivers/cxgb4-set-skb-rxhash: cxgb4: set skb->rxhash (FATE#311470, bnc#694966). - patches.drivers/cxgb4-set-the-number-of-queues-before-device-registration: cxgb4: set the number of queues before device registration (FATE#311470, bnc#694966). - patches.drivers/cxgb4-support-eeprom-read-write-on-functions-other-than-0: cxgb4: support eeprom read/write on functions other than 0 (FATE#311470, bnc#694966). - patches.drivers/cxgb4-support-running-the-driver-on-pci-functions-besides-0: cxgb4: support running the driver on PCI functions besides 0 (FATE#311470, bnc#694966). - patches.drivers/cxgb4-switch-to-64-bit-inteface-statistics: cxgb4: switch to 64 bit inteface statistics (FATE#311470, bnc#694966). - patches.drivers/cxgb4-update-driver-version: cxgb4: update driver version (FATE#311470, bnc#694966). - patches.drivers/cxgb4-update-fw-definitions: cxgb4: update FW definitions (FATE#311470, bnc#694966). - patches.drivers/cxgb4-update-pci-ids: cxgb4: update PCI ids (FATE#311470, bnc#694966). - patches.drivers/cxgb4-update-to-utilize-the-newer-vlan-infrastructure: cxgb4: update to utilize the newer VLAN infrastructure (FATE#311470, bnc#694966). - patches.drivers/cxgb4-use-kfree_skb-for-skb-pointers: cxgb4: Use kfree_skb for skb pointers (FATE#311470, bnc#694966). - patches.drivers/cxgb4-use-netif_set_real_num_-rx-tx-_queues: cxgb4: Use netif_set_real_num_{rx,tx}_queues() (FATE#311470, bnc#694966). - patches.drivers/cxgb4-use-ntohs-on-__be16-value-instead-of-htons: cxgb4: Use ntohs() on __be16 value instead of htons() (FATE#311470, bnc#694966). - patches.drivers/cxgb4vf-add-code-to-provision-t4-pci-e-sr-iov-virtual-functions-with-hardware-resources: cxgb4vf: Add code to provision T4 PCI-E SR-IOV Virtual Functions with hardware resources (FATE#311470, bnc#694966). - patches.drivers/cxgb4vf-add-new-macros-and-definitions-for-hardware-constants: cxgb4vf: Add new macros and definitions for hardware constants (FATE#311470, bnc#694966). - patches.drivers/cxgb4vf-small-changes-to-message-processing-structures-macros: cxgb4vf: small changes to message processing structures/macros (FATE#311470, bnc#694966). - patches.drivers/cxgb4vf-update-to-latest-t4-firmware-api-file: cxgb4vf: update to latest T4 firmware API file (FATE#311470, bnc#694966). - patches.drivers/drivers-net-avoid-some-skb-ip_summed-initializations: drivers/net: avoid some skb->ip_summed initializations (FATE#311470, bnc#694966). - patches.drivers/ethtool-change-ethtool_op_set_flags-to-validate-flags: ethtool: Change ethtool_op_set_flags to validate flags (FATE#311470, bnc#694966). - patches.drivers/llseek-automatically-add-llseek-fop: llseek: automatically add .llseek fop (FATE#311470, bnc#694966). - patches.drivers/merge-branch-master-of-master-kernel-org-pub-scm-linux-kernel-git-davem-net-2-6: Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6 (FATE#311470, bnc#694966). - patches.drivers/net-hook-up-cxgb4-to-kconfig-and-makefile: net: Hook up cxgb4 to Kconfig and Makefile.- patches.suse/scsi-pmcraid-remove-duplicate-struct-member: pmcraid: remove duplicate struct member.- patches.drivers/0272-cnic-Prevent-status-block-race-conditions-with-hardw.patch: cnic: Prevent status block race conditions with hardware (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0273-cnic-Fix-lost-interrupt-on-bnx2x.patch: cnic: Fix lost interrupt on bnx2x (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0274-bnx2x-fix-non-pmf-device-load-flow.patch: bnx2x: fix non-pmf device load flow (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0275-bnx2x-fix-link-notification.patch: bnx2x: fix link notification (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0276-bnx2x-NPAR-prevent-HW-access-in-D3-state.patch: bnx2x: (NPAR) prevent HW access in D3 state (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0277-bnx2x-fix-MaxBW-configuration.patch: bnx2x: fix MaxBW configuration (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0278-bnx2x-fix-swap-of-rx-ticks-and-tx-ticks-parameters-i.patch: bnx2x: fix swap of rx-ticks and tx-ticks parameters in interrupt coalescing flow (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0279-bnx2-Update-firmware-and-version.patch: bnx2: Update firmware and version (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0280-drivers-net-Fix-declaration-ordering-in-inline-funct.patch: drivers net: Fix declaration ordering in inline functions (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0281-Fix-common-misspellings.patch: Fix common misspellings (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0282-bnx2x-Update-firmware-to-6.2.9.patch: bnx2x: Update firmware to 6.2.9 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0283-bnx2x-don-t-write-dcb-llfc-fields-in-STORM-memory.patch: bnx2x: don't write dcb/llfc fields in STORM memory (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0284-bnx2x-cnic-Disable-iSCSI-if-DCBX-negotiation-is-succ.patch: bnx2x, cnic: Disable iSCSI if DCBX negotiation is successful (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0285-cnic-Fix-rtnl-deadlock.patch: cnic: Fix rtnl deadlock (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0286-bnx2x-Fix-set-but-unused-variables.patch: bnx2x: Fix set-but-unused variables (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0287-bnx2x-Fix-port-identification-problem.patch: bnx2x: Fix port identification problem (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0288-bnx2x-cosmetics-Using-ethtool_cmd_speed-API.patch: bnx2x: cosmetics: Using ethtool_cmd_speed() API (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0289-bnx2x-fix-UDP-csum-offload.patch: bnx2x: fix UDP csum offload (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0290-bnx2-cancel-timer-on-device-removal.patch: bnx2: cancel timer on device removal (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0291-ethtool-Use-full-32-bit-speed-range-in-ethtool-s-set.patch: ethtool: Use full 32 bit speed range in ethtool's set_settings (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0292-ethtool-cosmetic-Use-ethtool-ethtool_cmd_speed-API.patch: ethtool: cosmetic: Use ethtool ethtool_cmd_speed API (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0293-bnx2x-link-report-improvements.patch: bnx2x: link report improvements (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0294-bnx2x-allow-WoL-on-every-function-in-MF-modes.patch: bnx2x: allow WoL on every function in MF modes (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0295-bnx2x-Do-storage-mac-address-validation-for-SF-mode.patch: bnx2x: Do storage mac address validation for SF mode (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0296-bnx2x-improve-memory-handling-low-memory-recovery-fl.patch: bnx2x: improve memory handling, low memory recovery flows (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0297-bnx2x-update-year-to-2011-and-version-to-1.62.12-0.patch: bnx2x: update year to 2011 and version to 1.62.12-0 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0298-bnx2x-function-descriptions-format-fixed.patch: bnx2x: function descriptions format fixed (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0299-drivers-net-add-prefetch-header-for-prefetch-users.patch: drivers/net: add prefetch header for prefetch users (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0300-bnx2x-call-dev_kfree_skb_any-instead-of-dev_kfree_sk.patch: bnx2x: call dev_kfree_skb_any instead of dev_kfree_skb (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0301-bnx2x-properly-handle-CFC-DEL-in-cnic-flow.patch: bnx2x: properly handle CFC DEL in cnic flow (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0302-bnx2x-fix-DMAE-timeout-according-to-hw-specification.patch: bnx2x: fix DMAE timeout according to hw specifications (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0303-bnx2x-allow-device-properly-initialize-after-hotplug.patch: bnx2x: allow device properly initialize after hotplug (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0304-bnx2i-Fixed-packet-error-created-when-the-sq_size-is.patch: bnx2i: Fixed packet error created when the sq_size is set to 16 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0305-bnx2i-Updated-the-connection-shutdown-cleanup-timeou.patch: bnx2i: Updated the connection shutdown/cleanup timeout (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0306-bnx2i-Optimized-the-iSCSI-offload-performance.patch: bnx2i: Optimized the iSCSI offload performance (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0307-bnx2x-fix-inverted-condition.patch: bnx2x: fix inverted condition (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0308-bnx2x-protect-sequence-increment-with-mutex.patch: bnx2x: protect sequence increment with mutex (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0309-bnx2x-Add-new-phy-BCM8722.patch: bnx2x: Add new phy BCM8722 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0310-bnx2x-Fix-port-type-display.patch: bnx2x: Fix port type display (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0311-bnx2x-Change-return-status-type.patch: bnx2x: Change return status type (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0312-bnx2x-Add-TX-fault-check-for-fiber-PHYs.patch: bnx2x: Add TX fault check for fiber PHYs (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0313-bnx2x-Fix-over-current-port-display.patch: bnx2x: Fix over current port display (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0314-bnx2x-Fix-BCM84833-settings.patch: bnx2x: Fix BCM84833 settings (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0315-bnx2x-Fix-grammar-and-relocate-code.patch: bnx2x: Fix grammar and relocate code (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0316-bnx2x-Adjust-BCM8726-module-detection-settings.patch: bnx2x: Adjust BCM8726 module detection settings (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0317-bnx2x-Fix-link-status-sync.patch: bnx2x: Fix link status sync (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0318-bnx2x-Modify-XGXS-functions.patch: bnx2x: Modify XGXS functions (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0319-bnx2x-Improve-cl45-access-methods.patch: bnx2x: Improve cl45 access methods (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0320-cnic-Fix-interrupt-logic.patch: cnic: Fix interrupt logic (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0321-cnic-Fix-race-conditions-with-firmware.patch: cnic: Fix race conditions with firmware (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0322-cnic-Randomize-initial-TCP-port-for-iSCSI-connection.patch: cnic: Randomize initial TCP port for iSCSI connections (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0323-cnic-Improve-NETDEV_UP-event-handling.patch: cnic: Improve NETDEV_UP event handling (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0324-cnic-bnx2-Check-iSCSI-support-early-in-bnx2_init_one.patch: cnic, bnx2: Check iSCSI support early in bnx2_init_one() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0325-cnic-Move-indexing-function-pointers-to-struct-kcq_i.patch: cnic: Move indexing function pointers to struct kcq_info (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0326-bnx2x-do-not-allocate-FCoE-ring-if-disabled.patch: bnx2x: do not allocate FCoE ring if disabled (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0327-bnx2x-remove-references-to-intr_sem.patch: bnx2x: remove references to intr_sem (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0328-bnx2x-put-start-bd-csum-in-separate-function.patch: bnx2x: put start bd csum in separate function (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0329-bnx2x-avoid-release-of-unrequested-irqs.patch: bnx2x: avoid release of unrequested irqs (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0330-bnx2x-disable-fairness-if-ETS-is-enabled.patch: bnx2x: disable fairness if ETS is enabled (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0331-bnx2x-do-not-call-link-update-without-HW-notificatio.patch: bnx2x: do not call link update without HW notification (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0332-bnx2x-dump-FW-memory-when-appropriate-msglvl-is-rais.patch: bnx2x: dump FW memory when appropriate msglvl is raised (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0333-bnx2x-removed-unused-variables.patch: bnx2x: removed unused variables (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0334-bnx2x-Created-bnx2x_sp.patch: bnx2x: Created bnx2x_sp (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0335-New-7.0-FW-bnx2x-cnic-bnx2i-bnx2fc.patch: New 7.0 FW: bnx2x, cnic, bnx2i, bnx2fc (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0336-bnx2x-57712-parity-handling.patch: bnx2x: 57712 parity handling (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0337-bnx2x-update-DCB-data-during-PMF-migration.patch: bnx2x: update DCB data during PMF migration (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0338-bnx2x-Cosmetic-changes.patch: bnx2x: Cosmetic changes (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0339-bnx2x-Add-new-MAC-support-for-578xx.patch: bnx2x: Add new MAC support for 578xx (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0340-bnx2x-Add-Warpcore-support-for-578xx.patch: bnx2x: Add Warpcore support for 578xx (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0341-bnx2x-Add-new-PHY-54616s.patch: bnx2x: Add new PHY 54616s (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0342-bnx2x-Adjust-ETS-to-578xx.patch: bnx2x: Adjust ETS to 578xx (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0343-bnx2x-Adjust-BCM84833-to-BCM578xx.patch: bnx2x: Adjust BCM84833 to BCM578xx (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0344-bnx2x-Add-a-periodic-task-for-link-PHY-events.patch: bnx2x: Add a periodic task for link PHY events (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0345-bnx2x-Rename-LASI-registers-to-definitions-in-mdio.h.patch: bnx2x: Rename LASI registers to definitions in mdio.h (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0346-bnx2x-PFC-support-for-578xx.patch: bnx2x: PFC support for 578xx (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0347-bnx2x-Update-date-to-2011-06-13-and-version-to-1.70..patch: bnx2x: Update date to 2011/06/13 and version to 1.70.00-0 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0348-cnic-bnx2i-Add-support-for-new-devices-57800-57810-a.patch: cnic, bnx2i: Add support for new devices - 57800, 57810, and 57840 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/bnx2i-fix-null-ptr-ref-in-conn-get-param: bnx2i: fix null ptr ref in conn get param (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050).- patches.suse/ieee1394-host-lock-push-down.patch: ieee1394 host lock push-down.- patches.drivers/hpsa-exported-hpsa_init_one-cant-be-static-__devinit: hpsa: Exported hpsa_init_one() can't be static __devinit.- patches.drivers/intel-patsburg-support.patch, patches.drivers/ipmi-add-parameter-to-limit-cpu-usage-in-kipmid.patch, patches.drivers/watchdog-hpwdt-allow-full-range-of-timer-values-supported-by-hardware.patch, patches.drivers/watchdog-hpwdt-introduce-secs_to_ticks-macro.patch, patches.fixes/bonding-802.3ad-fix-state-machine-locking.patch: Update upstream references.- patches.drivers/hwmon-amd-fam15h-power.patch, patches.drivers/hwmon-coretemp-add-pkgtemp-support.patch, patches.drivers/i2c-i801-no-devices-on-IDF-channels.patch, patches.drivers/i2c-i801-support-multiple-instances.patch, patches.drivers/intel-patsburg-support-IDF-channels.patch, Update upstream references.- patches.drivers/hwmon-coretemp-add-pkgtemp-support.patch: Update (bnc#698797, FATE#311941).- supported.conf: The coretemp driver is now supported (FATE#311941).- patches.drivers/igb-replace-the-VF-clear_to_send-with-a-flags-value.patch: (FATE#311304) - patches.drivers/igb-rework-use-of-VMOLR-in-regards-to-PF-and-VFs.patch: (FATE#311304) - patches.drivers/pci-Add-SR-IOV-convenience-functions-and-macros.patch: (FATE#311304) - patches.drivers/if_link-Add-SR-IOV-configuration-methods.patch: (FATE#311304) - patches.drivers/net-Add-netdev-ops-for-SR-IOV-configuration.patch: (FATE#311304) - patches.drivers/rtnetlink-Add-VF-config-code-to-rtnetlink.patch: (FATE#311304) - patches.drivers/igb-support-for-VF-configuration-tools.patch: (FATE#311304)- patches.drivers/usb3-paper-over-warn_on-warning-in-drivers-usb-core-driver.c.patch: USB3: paper over WARN_ON warning in drivers/usb/core/driver.c.- Update config files. - patches.drivers/acpi_apei_add_apei_bit_support_in_generic_OSC_call_3_4.patch: ACPI, APEI, Add APEI bit support in generic _OSC call (bnc#697859). - patches.drivers/acpi_apei_add_whea_osc_support_4_4.patch: ACPI, APEI, Add WHEA _OSC support (bnc#697859). - patches.drivers/acpi_apei_disable_suse.patch: Disable all APEI parts with one boot param (bnc#697859). - patches.drivers/acpi_apei_ghes_prevent_ghes_to_be_built_as_module_1_4.patch: ACPI, APEI, GHES, Prevent GHES to be built as module (bnc#697859). - patches.drivers/acpi_apei_ghes_support_disable_ghes_at_boot_time_2_4.patch: ACPI, APEI, GHES, Support disable GHES at boot time (bnc#697859). - patches.drivers/acpi_apei_hest_detect_duplicated_hardware_error_source_id.patch: ACPI, APEI, HEST, Detect duplicated hardware error source ID (bnc#697859).- patches.suse/bootsplash-color-fix: Fix invalid color overrides in bootsplash consoles (bnc#584493).- patches.arch/x86-enable-package-level-power-notification.patch: Package level power notification (FATE#311941, bnc#698801). - patches.arch/0001-x86-cpu-Add-AMD-core-boosting-feature-flag-to-proc-c.patch: Refresh. - patches.drivers/edac_do_not_taint_on_correctable_errors.patch: Refresh. - patches.suse/revert-x86-under-bios-control-restore-ap-s-apic_lvtthmr-to-the-bsp-value: Refresh. - patches.suse/x86-under-bios-control-restore-ap-s-apic_lvtthmr-to-the-bsp-value: Refresh.- patches.drivers/edac_do_not_taint_on_correctable_errors.patch: x86, MCE: Do not taint when handling correctable errors (bnc#692709).Add git commit id tag and slight correction: - patches.arch/x86_cpu_hotplug_map_numa_node_correctly.patch: Refresh.- Update config files. Enable KSYM_TRACER for ppc64 debug/trace flavor. Commit 7f57393b incorrectly reverted this change. ec4115ff fixed but only with defaults.- patches.suse/perf-userspace-no-werror.patch: disable -Werror for perf userspace (none).- Commit 1a433eaf8 "Do less prefetching on list walking ..." breaks perf userspace - patches.suse/list-prefetch-optimization.diff: Refresh.- USB 3.0, final bit of .34->.35 update. - patches.drivers/USB3-0211-USB-serial-add-special-case-for-processing-of-empty-read-urb.patch: USB: serial: add special case for processing of empty read urbs. - patches.drivers/USB3-0212-USB-empeg-reimplement-using-generic-framework.patch: USB: empeg: reimplement using generic framework. - patches.drivers/USB3-0213-USB-ipaq-reimplement-using-generic-framework.patch: USB: ipaq: reimplement using generic framework. - patches.drivers/USB3-0214-USB-spcp8x5-reimplement-using-generic-framework.patch: USB: spcp8x5: reimplement using generic framework. - patches.drivers/USB3-0216-USB-visor-reimplement-using-generic-framework.patch: USB: visor: reimplement using generic framework. - patches.drivers/USB3-0217-USB-cp210x-use-generic-open-to-start-reading-from-device.patch: USB: cp210x: use generic open to start reading from device. - patches.drivers/USB3-0218-USB-belkin_sa-minor-clean-ups.patch: USB: belkin_sa: minor clean-ups. - patches.drivers/USB3-0219-USB-belkin_sa-clean-up-open.patch: USB: belkin_sa: clean up open. - patches.drivers/USB3-0220-USB-belkin_sa-implement-line-status-handling.patch: USB: belkin_sa: implement line status handling. - patches.drivers/USB3-0221-USB-visor-increase-bulk-out-buffer-size.patch: USB: visor: increase bulk-out buffer size. - patches.drivers/USB3-0224-USB-usb_debug-set-bulk-out-size-at-probe.patch: USB: usb_debug: set bulk out size at probe. - patches.drivers/USB3-0225-USB-cypress_m8-remove-unused-drain-define.patch: USB: cypress_m8: remove unused drain define. - patches.drivers/USB3-0226-USB-cypress_m8-use-kfifo-to-implement-write-buffering.patch: USB: cypress_m8: use kfifo to implement write buffering. - patches.drivers/USB3-0227-USB-oti6858-use-kfifo-to-implement-write-buffering.patch: USB: oti6858: use kfifo to implement write buffering. - patches.drivers/USB3-0228-USB-oti6858-use-port-write-fifo.patch: USB: oti6858: use port write fifo. - patches.drivers/USB3-0229-USB-usb-storage-trivial-debug-improvements.patch: USB: usb-storage: trivial debug improvements. - patches.drivers/USB3-0230-usb-storage-always-print-quirks.patch: usb-storage: always print quirks. - patches.drivers/USB3-0231-USB-safe_serial-reimplement-write-using-generic-framework.patch: USB: safe_serial: reimplement write using generic framework. - patches.drivers/USB3-0232-USB-safe_serial-reimplement-read-using-generic-framework.patch: USB: safe_serial: reimplement read using generic framework. - patches.drivers/USB3-0233-USB-safe_serial-straighten-out-read-processing.patch: USB: safe_serial: straighten out read processing. - patches.drivers/USB3-0234-USB-aircable-fix-incorrect-write-buffer-length.patch: USB: aircable: fix incorrect write-buffer length. - patches.drivers/USB3-0236-USB-ti_usb-use-kfifo-to-implement-write-buffering.patch: USB: ti_usb: use kfifo to implement write buffering. - patches.drivers/USB3-0237-USB-io_ti-remove-unsused-private-counter.patch: USB: io_ti: remove unsused private counter. - patches.drivers/USB3-0238-USB-io_ti-use-kfifo-to-implement-write-buffering.patch: USB: io_ti: use kfifo to implement write buffering. - patches.drivers/USB3-0240-USB-kl5usb105-minor-clean-ups.patch: USB: kl5usb105: minor clean ups. - patches.drivers/USB3-0241-USB-kl5usb105-reimplement-using-generic-framework.patch: USB: kl5usb105: reimplement using generic framework. - patches.drivers/USB3-0242-USB-ftdi_sio-fix-legacy-SIO-device-header.patch: USB: ftdi_sio: fix legacy SIO-device header. - patches.drivers/USB3-0244-USB-remove-unused-usb_buffer_alloc-and-usb_buffer_free-macro.patch: USB: remove unused usb_buffer_alloc and usb_buffer_free macros. - patches.drivers/USB3-0245-echi-dbgp-Add-kernel-debugger-support-for-the-usb-debug-port.patch: echi-dbgp: Add kernel debugger support for the usb debug port. - patches.drivers/USB3-0251-hso-add-support-for-new-products.patch: hso: add support for new products. - patches.drivers/USB3-0252-drivers-net-usb-asix.c-Fix-pointer-cast.patch: drivers/net/usb/asix.c: Fix pointer cast. - patches.drivers/USB3-0269-USB-xhci-Print-NEC-firmware-version.patch: USB: xhci: Print NEC firmware version. - patches.drivers/USB3-0275-USB-ftdi_sio-fix-DTR-RTS-line-modes.patch: USB: ftdi_sio: fix DTR/RTS line modes. - patches.drivers/USB3-0278-USB-serial-digi_acceleport-Eliminate-a-NULL-pointer-derefere.patch: USB: serial: digi_acceleport: Eliminate a NULL pointer dereference. - patches.drivers/USB3-0280-asix-check-packet-size-against-mtu-ETH_HLEN-instead-of-ETH_F.patch: asix: check packet size against mtu+ETH_HLEN instead of ETH_FRAME_LEN. - patches.drivers/USB3-0281-hso-remove-setting-of-low_latency-flag.patch: hso: remove setting of low_latency flag. - patches.drivers/USB3-0285-USB-xHCI-Fix-bug-in-link-TRB-activation-change.patch: USB: xHCI: Fix bug in link TRB activation change. - patches.drivers/USB3-0291-USB-fix-oops-in-usb_sg_init.patch: USB: fix oops in usb_sg_init(). - patches.drivers/USB3-0292-USB-serial-ftdi-correct-merge-conflict-with-CONTEC-id.patch: USB: serial: ftdi: correct merge conflict with CONTEC id. - patches.drivers/USB3-0295-USB-qcserial-fix-a-memory-leak-in-qcprobe-error-path.patch: USB: qcserial: fix a memory leak in qcprobe error path. - patches.drivers/USB3-0304-net-Revert-rndis_host-Poll-status-channel-before-control-cha.patch: net: Revert "rndis_host: Poll status channel before control channel". - patches.drivers/USB3-0305-usbnet-Set-parent-device-early-for-netdev_printk.patch: usbnet: Set parent device early for netdev_printk(). - patches.drivers/USB3-0314-USB-New-PIDs-for-Qualcomm-gobi-2000-qcserial.patch: USB: New PIDs for Qualcomm gobi 2000 (qcserial). - patches.drivers/USB3-0316-USB-xHCI-Fix-another-bug-in-link-TRB-activation-change.patch: USB: xHCI: Fix another bug in link TRB activation change. - patches.drivers/USB3-0317-USB-Fix-USB3.0-Port-Speed-Downgrade-after-port-reset.patch: USB: Fix USB3.0 Port Speed Downgrade after port reset. - patches.drivers/USB3-0318-USB-xhci-Set-EP0-dequeue-ptr-after-reset-of-configured-devic.patch: USB: xhci: Set EP0 dequeue ptr after reset of configured device. - patches.drivers/USB3-0321-USB-xhci-Set-Mult-field-in-endpoint-context-correctly.patch: USB: xhci: Set Mult field in endpoint context correctly. - patches.drivers/USB3-0322-USB-usb-storage-fix-initializations-of-urb-fields.patch: USB: usb-storage: fix initializations of urb fields.- patches.suse/kprobes-checks-probe-address-is-instruction-boudary-on-x86: Refresh. - patches.suse/merge-d7a4b414eed51f1653bb05ebe84122bf9a7ae18b: Refresh.- patches.fixes/perf-fix-hw_breakpoint-dependancy.patch: Refresh.- Fix issues with kvm backport (bnc#702133) - patches.drivers/vhost_net-a-kernel-level-virtio-server.patch: Refresh. - patches.suse/kvm-0001-KVM-SVM-Add-clean-bits-infrastructure-code.patch: Refresh. - patches.suse/kvm-0001-KVM-SVM-Implement-infrastructure-for-TSC_RATE_MSR.patch: Refresh. - patches.suse/kvm-0002-KVM-SVM-Add-clean-bit-for-intercetps-tsc-offset-a.patch: Refresh. - patches.suse/kvm-0002-KVM-X86-Let-kvm-clock-report-the-right-tsc-frequency.patch: Refresh. - patches.suse/kvm-0002-KVM-x86-fix-CR8-handling.patch: Refresh. - patches.suse/kvm-0003-KVM-cleanup-emulate_instruction.patch: Refresh. - patches.suse/kvm-0004-KVM-SVM-Add-clean-bit-for-the-ASID.patch: Refresh. - patches.suse/kvm-0004-KVM-X86-Implement-call-back-to-propagate-virtual_tsc.patch: Refresh. - patches.suse/kvm-0005-KVM-SVM-Add-clean-bit-for-interrupt-state.patch: Refresh. - patches.suse/kvm-0005-KVM-SVM-enhance-MOV-CR-intercept-handler.patch: Refresh. - patches.suse/kvm-0005-KVM-X86-Implement-userspace-interface-to-set-virtual.patch: Refresh. - patches.suse/kvm-0006-KVM-SVM-Add-clean-bit-for-NPT-state.patch: Refresh. - patches.suse/kvm-0006-KVM-SVM-enhance-mov-DR-intercept-handler.patch: Refresh. - patches.suse/kvm-0007-KVM-SVM-Add-clean-bit-for-control-registers.patch: Refresh. - patches.suse/kvm-0007-KVM-SVM-implement-enhanced-INVLPG-intercept.patch: Refresh. - patches.suse/kvm-0008-KVM-SVM-Add-clean-bit-for-DR6-and-DR7.patch: Refresh. - patches.suse/kvm-0008-KVM-SVM-copy-instruction-bytes-from-VMCB.patch: Refresh. - patches.suse/kvm-0009-KVM-SVM-Add-clean-bit-for-GDT-and-IDT.patch: Refresh. - patches.suse/kvm-0010-KVM-SVM-Add-clean-bit-for-Segements-and-CPL.patch: Refresh. - patches.suse/kvm-0012-KVM-SVM-Add-clean-bit-for-LBR-state.patch: Refresh. - patches.suse/kvm-KVM-Activate-fpu-on-clts.patch: Refresh. - patches.suse/kvm-KVM-Add-accessor-for-reading-cr4-or-some-bits-of-c.patch: KVM: Add accessor for reading cr4 (or some bits of cr4) (FATE#311768). - patches.suse/kvm-KVM-Allow-kvm_load_guest_fpu-even-when-vcpu-fpu.patch: KVM: Allow kvm_load_guest_fpu() even when !vcpu->fpu_active (FATE#311768). - patches.suse/kvm-KVM-Drop-kvm_-load-put-_guest_fpu-exports.patch: KVM: Drop kvm_{load,put}_guest_fpu() exports (FATE#311768). - patches.suse/kvm-KVM-Fix-xsave-and-xcr-save-restore-memory-leak.patch: Refresh. - patches.suse/kvm-KVM-Lazify-fpu-activation-and-deactivation.patch: Refresh. - patches.suse/kvm-KVM-Replace-read-accesses-of-vcpu-arch.cr0-by-an-a.patch: KVM: Replace read accesses of vcpu->arch.cr0 by an accessor (FATE#311768). - patches.suse/kvm-KVM-SVM-Fix-SVM_CR0_SELECTIVE_MASK.patch: KVM: SVM: Fix SVM_CR0_SELECTIVE_MASK (FATE#311768). - patches.suse/kvm-KVM-SVM-Initialize-fpu_active-in-init_vmcb.patch: KVM: SVM: Initialize fpu_active in init_vmcb() (FATE#311768). - patches.suse/kvm-KVM-SVM-Lazy-fpu-with-npt.patch: KVM: SVM: Lazy fpu with npt (FATE#311768). - patches.suse/kvm-KVM-SVM-Restore-unconditional-cr0-intercept-under.patch: KVM: SVM: Restore unconditional cr0 intercept under npt (FATE#311768). - patches.suse/kvm-KVM-SVM-Selective-cr0-intercept.patch: KVM: SVM: Selective cr0 intercept (FATE#311768). - patches.suse/kvm-KVM-Set-cr0.et-when-the-guest-writes-cr0.patch: KVM: Set cr0.et when the guest writes cr0 (FATE#311768). - patches.suse/kvm-KVM-VMX-Allow-the-guest-to-own-some-cr0-bits.patch: KVM: VMX: Allow the guest to own some cr0 bits (FATE#311768). - patches.suse/kvm-KVM-VMX-Avoid-writing-HOST_CR0-every-entry.patch: KVM: VMX: Avoid writing HOST_CR0 every entry. - patches.suse/kvm-KVM-VMX-Enable-XSAVE-XRSTOR-for-guest.patch: Refresh. - patches.suse/kvm-KVM-VMX-Give-the-guest-ownership-of-cr0.ts-when-th.patch: KVM: VMX: Give the guest ownership of cr0.ts when the fpu is active (FATE#311768). - patches.suse/kvm-KVM-VMX-Inform-user-about-INTEL_TXT-dependency.patch: Refresh. - patches.suse/kvm-KVM-VMX-Pass-cr0.mp-through-to-the-guest-when-the.patch: KVM: VMX: Pass cr0.mp through to the guest when the fpu is active (FATE#311768). - patches.suse/kvm-KVM-VMX-Wire-up-.fpu_activate-callback.patch: KVM: VMX: Wire up .fpu_activate() callback (FATE#311768). - patches.suse/kvm-KVM-x86-Enable-AVX-for-guest.patch: Refresh. - patches.suse/kvm-KVM-x86-Use-FPU-API.patch: Refresh. - patches.suse/kvm-KVM-x86-Use-unlazy_fpu-for-host-FPU.patch: Refresh. - patches.suse/kvm-KVM-x86-XSAVE-XRSTOR-live-migration-support.patch: Refresh. - patches.suse/kvm-x86-Export-FPU-API-for-KVM-use.patch: Refresh.- Refactored patches.suse/perf-0001-Single-patch-that-merges-f4c4176-into-sles11.patch into constituent patches: - patches.suse/events-harmonize-event-field-names-and-print-output-names: events: Harmonize event field names and print output names. - patches.suse/events-rename-trace_event_template-to-declare_event_class: events: Rename TRACE_EVENT_TEMPLATE() to DECLARE_EVENT_CLASS(). - patches.suse/ftrace-add-kernel-command-line-graph-function-filtering: ftrace: add kernel command line graph function filtering. - patches.suse/ftrace-c-add-define-pr_fmtfmt-kbuild_modname-fmt: ftrace.c: Add #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt. - patches.suse/ftrace-copy-ftrace_graph_filter-boot-param-using-strlcpy: ftrace: Copy ftrace_graph_filter boot param using strlcpy. - patches.suse/ftrace-fix-trace_add_event_call-to-initialize-list: ftrace: Fix trace_add_event_call() to initialize list. - patches.suse/ftrace-fix-trace_remove_event_call-to-lock-trace_event_mutex: ftrace: Fix trace_remove_event_call() to lock trace_event_mutex. - patches.suse/ftrace-rename-set_bootup_ftrace-into-set_cmdline_ftrace: ftrace: Rename set_bootup_ftrace into set_cmdline_ftrace. - patches.suse/function-graph-x86-replace-unbalanced-ret-with-jmp: function-graph/x86: Replace unbalanced ret with jmp. - patches.suse/hw-breakpoint-attribute-authorship-of-hw-breakpoint-related-files: hw-breakpoint: Attribute authorship of hw-breakpoint related files. - patches.suse/hw-breakpoint-move-asm-generic-hw_breakpoint-h-to-linux-hw_breakpoint-h: hw-breakpoint: Move asm-generic/hw_breakpoint.h to linux/hw_breakpoint.h. - patches.suse/hw-breakpoints-add-two-reserved-fields-for-future-extensions: hw-breakpoints: Add two reserved fields for future extensions. - patches.suse/hw-breakpoints-arbitrate-access-to-pmu-following-registers-constraints: hw-breakpoints: Arbitrate access to pmu following registers constraints. - patches.suse/hw-breakpoints-check-the-breakpoint-params-from-perf-tools: hw-breakpoints: Check the breakpoint params from perf tools. - patches.suse/hw-breakpoints-cleanup-hw-breakpoint-registers-before-kexec: hw-breakpoints: cleanup HW Breakpoint registers before kexec. - patches.suse/hw-breakpoints-drop-callback-and-task-parameters-from-modify-helper: hw-breakpoints: Drop callback and task parameters from modify helper. - patches.suse/hw-breakpoints-fix-broken-a-out-format-dump: hw-breakpoints: Fix broken a.out format dump. - patches.suse/hw-breakpoints-fix-broken-hw-breakpoint-sample-module: hw-breakpoints: Fix broken hw-breakpoint sample module. - patches.suse/hw-breakpoints-fix-build-on-perf-architectures: hw-breakpoints: Fix build on !perf architectures. - patches.suse/hw-breakpoints-fix-misordered-ifdef: hw-breakpoints: Fix misordered ifdef. - patches.suse/hw-breakpoints-fix-task-bound-breakpoint-slot-allocation: hw-breakpoints: Fix task-bound breakpoint slot allocation. - patches.suse/hw-breakpoints-fix-unused-function-in-off-case: hw-breakpoints: Fix unused function in off-case. - patches.suse/hw-breakpoints-ftrace-plugin-for-kernel-symbol-tracing-using-hw-breakpoint-interfaces: hw-breakpoints: ftrace plugin for kernel symbol tracing using HW Breakpoint interfaces. - patches.suse/hw-breakpoints-handle-bad-modify_user_hw_breakpoint-off-case-return-value: hw-breakpoints: Handle bad modify_user_hw_breakpoint off-case return value. - patches.suse/hw-breakpoints-improve-in-kernel-event-creation-error-granularity: hw-breakpoints: Improve in-kernel event creation error granularity. - patches.suse/hw-breakpoints-include-only-linux-perf_event-h-from-kernel-part-of-bp-headers: hw-breakpoints: Include only linux/perf_event.h from kernel part of bp headers. - patches.suse/hw-breakpoints-introducing-generic-hardware-breakpoint-handler-interfaces: hw-breakpoints: introducing generic hardware breakpoint handler interfaces. - patches.suse/hw-breakpoints-keep-track-of-user-disabled-breakpoints: hw-breakpoints: Keep track of user disabled breakpoints. - patches.suse/hw-breakpoints-modify-breakpoints-without-unregistering-them: hw-breakpoints: Modify breakpoints without unregistering them. - patches.suse/hw-breakpoints-modify-ptrace-routines-to-access-breakpoint-registers: hw-breakpoints: modify Ptrace routines to access breakpoint registers. - patches.suse/hw-breakpoints-modify-signal-handling-code-to-refrain-from-re-enabling-hw-breakpoints: hw-breakpoints: modify signal handling code to refrain from re-enabling HW Breakpoints. - patches.suse/hw-breakpoints-modifying-generic-debug-exception-to-use-thread-specific-debug-registers: hw-breakpoints: modifying generic debug exception to use thread-specific debug registers. - patches.suse/hw-breakpoints-prepare-the-code-for-hardware-breakpoint-interfaces: hw-breakpoints: prepare the code for Hardware Breakpoint interfaces. - patches.suse/hw-breakpoints-provide-an-off-case-for-counter_arch_bp: hw-breakpoints: Provide an off-case for counter_arch_bp(). - patches.suse/hw-breakpoints-remove-x86-specific-headers-from-core-file: hw-breakpoints: Remove x86 specific headers from core file. - patches.suse/hw-breakpoints-reset-bits-in-dr6-after-the-corresponding-exception-is-handled: hw-breakpoints: reset bits in dr6 after the corresponding exception is handled. - patches.suse/hw-breakpoints-rewrite-the-hw-breakpoints-layer-on-top-of-perf-events: hw-breakpoints: Rewrite the hw-breakpoints layer on top of perf events. - patches.suse/hw-breakpoints-sample-hw-breakpoint-over-kernel-data-address: hw-breakpoints: sample HW breakpoint over kernel data address. - patches.suse/hw-breakpoints-separate-the-kernel-part-from-breakpoint-headers: hw-breakpoints: Separate the kernel part from breakpoint headers. - patches.suse/hw-breakpoints-simplify-error-handling-in-breakpoint-creation-requests: hw-breakpoints: Simplify error handling in breakpoint creation requests. - patches.suse/hw-breakpoints-use-overflow-handler-instead-of-the-event-callback: hw-breakpoints: Use overflow handler instead of the event callback. - patches.suse/hw-breakpoints-use-struct-perf_event_attr-to-define-kernel-breakpoints: hw-breakpoints: Use struct perf_event_attr to define kernel breakpoints. - patches.suse/hw-breakpoints-use-struct-perf_event_attr-to-define-user-breakpoints: hw-breakpoints: Use struct perf_event_attr to define user breakpoints. - patches.suse/hw-breakpoints-use-the-new-wrapper-routines-to-access-debug-registers-in-process-thread-code: hw-breakpoints: use the new wrapper routines to access debug registers in process/thread code. - patches.suse/hw-breakpoints-wrap-in-the-kvm-breakpoint-active-state-check: hw-breakpoints: Wrap in the KVM breakpoint active state check. - patches.suse/hw-breakpoints-x86-architecture-implementation-of-hardware-breakpoint-interfaces: hw-breakpoints: x86 architecture implementation of Hardware Breakpoint interfaces. - patches.suse/hw-breakpoints-x86-fix-modular-kvm-build: hw-breakpoints, x86: Fix modular KVM build. - patches.suse/hw-breakpoints-zeroe-the-breakpoint-attrs-on-initialization: hw-breakpoints: Zeroe the breakpoint attrs on initialization. - patches.suse/kernel-hw_breakpoint-c-fix-local-global-shadowing: kernel/hw_breakpoint.c: Fix local/global shadowing. - patches.suse/kprobe-tracer-compare-both-of-event-name-and-event-group-to-find-probe: kprobe-tracer: Compare both of event-name and event-group to find probe. - patches.suse/kprobes-checks-probe-address-is-instruction-boudary-on-x86: kprobes: Checks probe address is instruction boudary on x86. - patches.suse/kprobes-cleanup-fix_riprel-using-insn-decoder-on-x86: kprobes: Cleanup fix_riprel() using insn decoder on x86. - patches.suse/kprobes-fix-to-add-__kprobes-to-notify_die: kprobes: Fix to add __kprobes to notify_die. - patches.suse/kprobes-prevent-re-registration-of-the-same-kprobe: kprobes: Prevent re-registration of the same kprobe. - patches.suse/kprobes-prohibit-to-probe-native_get_debugreg: kprobes: Prohibit to probe native_get_debugreg. - patches.suse/kprobes-x86-32-move-irq-exit-functions-to-kprobes-section: kprobes/x86-32: Move irq-exit functions to kprobes section. - patches.suse/kprobes-x86-64-allow-to-reenter-probe-on-post_handler: kprobes/x86-64: Allow to reenter probe on post_handler. - patches.suse/kprobes-x86-64-fix-to-move-common_interrupt-to-kprobes-text: kprobes/x86-64: Fix to move common_interrupt to .kprobes.text. - patches.suse/kprobes-x86-call-bug-when-reentering-probe-into-kprobes_hit_ss: kprobes/x86: Call BUG() when reentering probe into KPROBES_HIT_SS. - patches.suse/kprobes-x86-fix-to-add-__kprobes-to-in-kernel-fault-handing-functions: kprobes/x86: Fix to add __kprobes to in-kernel fault handing functions. - patches.suse/ksym_tracer-extract-trace-entry-from-struct-trace_ksym: ksym_tracer: Extract trace entry from struct trace_ksym. - patches.suse/ksym_tracer-fix-breakpoint-removal-after-modification: ksym_tracer: Fix breakpoint removal after modification. - patches.suse/ksym_tracer-fix-memory-leak: ksym_tracer: Fix memory leak. - patches.suse/ksym_tracer-fix-the-output-of-stat-tracing: ksym_tracer: Fix the output of stat tracing. - patches.suse/ksym_tracer-fix-validation-of-access-type: ksym_tracer: Fix validation of access type. - patches.suse/ksym_tracer-fix-validation-of-length-of-access-type: ksym_tracer: Fix validation of length of access type. - patches.suse/ksym_tracer-nil-terminate-user-input-filter: ksym_tracer: NIL-terminate user input filter. - patches.suse/ksym_tracer-remove-ksym_selftest_entry: ksym_tracer: Remove KSYM_SELFTEST_ENTRY. - patches.suse/ksym_tracer-report-error-when-failed-to-re-register-hbp: ksym_tracer: Report error when failed to re-register hbp. - patches.suse/ksym_tracer-rewrite-ksym_trace_filter_read: ksym_tracer: Rewrite ksym_trace_filter_read(). - patches.suse/ksym_tracer-support-read-accesses-independent-of-read-write: ksym_tracer: Support read accesses independent of read/write. - patches.suse/last-patch: - patches.suse/mce-edac-use-an-atomic-notifier-for-mces-decoding: mce, edac: Use an atomic notifier for MCEs decoding. - patches.suse/merge-8f8ffe2485bcaa890800681451d380779cea06af: Merge commit 'tracing/core' into tracing/kprobes. - patches.suse/merge-d7a4b414eed51f1653bb05ebe84122bf9a7ae18b: Merge commit 'linus/master' into tracing/kprobes. - patches.suse/merge-eadb8a091b27a840de7450f84ecff5ef13476424: Merge branch 'linus' into tracing/hw-breakpoints. - patches.suse/merge-hw-breakpoints-rewrite-the-hw-breakpoints-layer-on-top-of-perf-events: - patches.suse/missing-merge: ksym: remove ksym_trace_entry. - patches.suse/perf-add-die_if-macro-for-error-checking: perf: Add DIE_IF() macro for error checking. - patches.suse/perf-add-kernel-side-syscall-events-support-for-breakpoints: perf: Add kernel side syscall events support for breakpoints. - patches.suse/perf-add-perf-kmem-tool: perf: Add 'perf kmem' tool. - patches.suse/perf-add-perf-probe-document: perf: Add perf-probe document. - patches.suse/perf-add-perf-probe-subcommand-a-kprobe-event-setup-helper: perf: Add perf probe subcommand, a kprobe-event setup helper. - patches.suse/perf-allow-for-custom-overflow-handlers: perf: Allow for custom overflow handlers. - patches.suse/perf-annotate-add-the-cmp_null-function-and-make-use-of-it: perf annotate: Add the cmp_null function and make use of it. - patches.suse/perf-annotate-fix-perf-data-parsing: perf annotate: Fix perf data parsing. - patches.suse/perf-annotate-remove-requirement-of-passing-a-symbol-name: perf annotate: Remove requirement of passing a symbol name. - patches.suse/perf-annotate-use-the-sym_priv_size-area-for-the-histogram: perf annotate: Use the sym_priv_size area for the histogram. - patches.suse/perf-bench-add-all-pseudo-subsystem-and-all-pseudo-suite: perf bench: Add "all" pseudo subsystem and "all" pseudo suite. - patches.suse/perf-bench-add-builtin-bench-c-general-framework-for-benchmark-suites: perf bench: Add builtin-bench.c: General framework for benchmark suites. - patches.suse/perf-bench-add-format-constants-to-bench-h-for-unified-output-formatting: perf bench: Add format constants to bench.h for unified output formatting. - patches.suse/perf-bench-add-memcpy-benchmark: perf bench: Add memcpy() benchmark. - patches.suse/perf-bench-add-new-directory-and-header-for-new-subcommand-bench: perf bench: Add new directory and header for new subcommand 'bench'. - patches.suse/perf-bench-add-new-document-about-perf-bench: perf bench: Add new document about perf-bench. - patches.suse/perf-bench-add-new-subcommand-bench-to-perf-c: perf bench: Add new subcommand 'bench' to perf.c. - patches.suse/perf-bench-add-sched-messaging-c-benchmark-for-scheduler-and-ipc-mechanisms-based-on-hackbench: perf bench: Add sched-messaging.c: Benchmark for scheduler and IPC mechanisms based on hackbench. - patches.suse/perf-bench-add-sched-pipe-c-benchmark-for-pipe-system-call: perf bench: Add sched-pipe.c: Benchmark for pipe() system call. - patches.suse/perf-bench-add-subcommand-bench-to-the-makefile: perf bench: Add subcommand 'bench' to the Makefile. - patches.suse/perf-bench-clean-up-bench-bench-h: perf bench: Clean up bench/bench.h. - patches.suse/perf-bench-fix-bench-sched-pipe-c-to-wait-for-child-process: perf bench: Fix bench/sched-pipe.c to wait for child process. - patches.suse/perf-bench-improve-builtin-bench-c-for-more-friendly-output: perf bench: Improve builtin-bench.c for more friendly output. - patches.suse/perf-bench-improve-sched-message-c-with-more-comfortable-output: perf bench: Improve sched-message.c with more comfortable output. - patches.suse/perf-bench-improve-sched-pipe-c-with-more-comfortable-output: perf bench: Improve sched-pipe.c with more comfortable output. - patches.suse/perf-bench-make-the-mem-memcpy-tests-more-user-friendly: perf bench: Make the mem/memcpy tests more user-friendly. - patches.suse/perf-bench-modify-bench-bench-messaging-c-to-adopt-unified-output-formatting: perf bench: Modify bench/bench-messaging.c to adopt unified output formatting. - patches.suse/perf-bench-modify-builtin-bench-c-for-processing-common-options: perf bench: Modify builtin-bench.c for processing common options. - patches.suse/perf-bench-modify-builtin-h-for-new-prototype: perf bench: Modify builtin.h for new prototype. - patches.suse/perf-bench-modify-builtin-pipe-c-for-processing-common-options: perf bench: Modify builtin-pipe.c for processing common options. - patches.suse/perf-bench-modify-command-list-txt-for-the-entry-of-perf-bench: perf bench: Modify command-list.txt for the entry of perf-bench. - patches.suse/perf-buildid-list-always-show-the-dso-name: perf buildid-list: Always show the DSO name. - patches.suse/perf-buildid-list-fix-copy-n-paste-help-message: perf buildid-list: Fix copy'n'paste help message. - patches.suse/perf-buildid-list-new-plumbing-command: perf buildid-list: New plumbing command. - patches.suse/perf-check-libdwarf-apis-for-perf-probe: perf: Check libdwarf APIs for perf probe. - patches.suse/perf-clean-up-trivial-style-issues-in-builtin-help-c: perf: Clean up trivial style issues in builtin-help.c. - patches.suse/perf-core-add-a-callback-to-perf-events: perf/core: Add a callback to perf events. - patches.suse/perf-core-provide-a-kernel-internal-interface-to-get-to-performance-counters: perf/core: Provide a kernel-internal interface to get to performance counters. - patches.suse/perf-diff-change-the-default-sort-order-to-dso-symbol: perf diff: Change the default sort order to "dso,symbol". - patches.suse/perf-diff-fix-documentation: perf diff: Fix documentation. - patches.suse/perf-diff-improve-the-help-text: perf diff: Improve the help text. - patches.suse/perf-diff-introduce-tool-to-show-performance-difference: perf diff: Introduce tool to show performance difference. - patches.suse/perf-diff-percent-calcs-should-use-double-values: perf diff: Percent calcs should use double values. - patches.suse/perf-diff-use-perf_session__fprintf_hists-just-like-perf-record: perf diff: Use perf_session__fprintf_hists just like 'perf record'. - patches.suse/perf-events-allow-per-task-per-cpu-counters: perf events: Allow per-task-per-cpu counters. - patches.suse/perf-events-do-not-generate-function-trace-entries-in-perf-code: perf events: Do not generate function trace entries in perf code. - patches.suse/perf-events-hw_breakpoints-don-t-include-asm-hw_breakpoint-h-in-user-space: perf events: hw_breakpoints: Don't include asm/hw_breakpoint.h in user space. - patches.suse/perf-fix-event-scaling-for-inherited-counters: perf: Fix event scaling for inherited counters. - patches.suse/perf-fix-locking-for-perf_format_group: perf: Fix locking for PERF_FORMAT_GROUP. - patches.suse/perf-fix-perf_format_group-scale-info: perf: Fix PERF_FORMAT_GROUP scale info. - patches.suse/perf-fix-time-locking: perf: Fix time locking. - patches.suse/perf-hw_breakpoints-fix-percpu-namespace-clash: perf: hw_breakpoints: Fix percpu namespace clash. - patches.suse/perf-kmem-add-help-file: perf kmem: Add help file. - patches.suse/perf-kmem-add-new-option-to-show-raw-ip: perf kmem: Add new option to show raw ip. - patches.suse/perf-kmem-add-sort-hit-and-sort-frag: perf kmem: Add --sort hit and --sort frag. - patches.suse/perf-kmem-collect-cross-node-allocation-statistics: perf kmem: Collect cross node allocation statistics. - patches.suse/perf-kmem-default-to-sort-by-fragmentation: perf kmem: Default to sort by fragmentation. - patches.suse/perf-kmem-fix-unused-argument-build-warning: perf kmem: Fix unused argument build warning. - patches.suse/perf-kmem-measure-kmalloc-kfree-cpu-ping-pong-call-sites: perf kmem: Measure kmalloc/kfree CPU ping-pong call-sites. - patches.suse/perf-kmem-resolve-symbols: perf kmem: Resolve symbols. - patches.suse/perf-kmem-show-usage-if-no-option-is-specified: perf kmem: Show usage if no option is specified. - patches.suse/perf-make-common-sample_event-parser: perf: Make common SAMPLE_EVENT parser. - patches.suse/perf-optimize-__perf_event_read: perf: Optimize __perf_event_read(). - patches.suse/perf-optimize-perf_event_comm_ctx: perf: Optimize perf_event_comm_ctx(). - patches.suse/perf-optimize-perf_event_mmap_ctx: perf: Optimize perf_event_mmap_ctx(). - patches.suse/perf-optimize-perf_event_task_ctx: perf: Optimize perf_event_task_ctx(). - patches.suse/perf-optimize-perf_event_task_sched_out: perf: Optimize perf_event_task_sched_out. - patches.suse/perf-optimize-perf_swevent_ctx_event: perf: Optimize perf_swevent_ctx_event(). - patches.suse/perf-optimize-some-swcounter-attr-sample_period-1-paths: perf: Optimize some swcounter attr.sample_period==1 paths. - patches.suse/perf-probe-add-argv_split-from-lib-argv_split-c: perf probe: Add argv_split() from lib/argv_split.c. - patches.suse/perf-probe-add-glob-matching-support-on-del: perf probe: Add glob matching support on --del. - patches.suse/perf-probe-add-list-option-for-listing-current-probe-events: perf probe: Add --list option for listing current probe events. - patches.suse/perf-probe-add-perf-probe-command-support-without-libdwarf: perf probe: Add perf probe command support without libdwarf. - patches.suse/perf-probe-add-probe-finder-h-without-libdwarf: perf probe: Add probe-finder.h without libdwarf. - patches.suse/perf-probe-annotate-variable-initialization: perf probe: Annotate variable initialization. - patches.suse/perf-probe-change-a-debugging-message-from-pr_info-to-pr_debug: perf probe: Change a debugging message from pr_info to pr_debug. - patches.suse/perf-probe-change-event-list-format: perf probe: Change event list format. - patches.suse/perf-probe-change-probe-added-message-more-user-friendly: perf probe: Change probe-added message more user-friendly. - patches.suse/perf-probe-check-build-id-of-vmlinux: perf probe: Check build-id of vmlinux. - patches.suse/perf-probe-check-e_snprintf-format-string: perf probe: Check e_snprintf() format string. - patches.suse/perf-probe-check-hyphen-only-argument: perf probe: Check hyphen only argument. - patches.suse/perf-probe-check-symbols-in-symtab-kallsyms: perf probe: Check symbols in symtab/kallsyms. - patches.suse/perf-probe-check-the-result-of-e_snprintf: perf probe: Check the result of e_snprintf(). - patches.suse/perf-probe-cleanup-struct-session-in-builtin-probe-c: perf probe: Cleanup struct session in builtin-probe.c. - patches.suse/perf-probe-fix-add-probe-command-syntax-without-add-option: perf probe: Fix add-probe command syntax without --add option. - patches.suse/perf-probe-fix-argv-array-size-in-probe-parser: perf probe: Fix argv array size in probe parser. - patches.suse/perf-probe-fix-del-to-show-info-instead-of-warning: perf probe: Fix --del to show info instead of warning. - patches.suse/perf-probe-fix-del-to-update-current-event-list: perf probe: Fix --del to update current event list. - patches.suse/perf-probe-fix-event-namelist-to-duplicate-string: perf probe: Fix event namelist to duplicate string. - patches.suse/perf-probe-fix-probe-array-index-for-multiple-probe-points: perf probe: Fix probe array index for multiple probe points. - patches.suse/perf-probe-fix-strtailcmp-to-compare-s1and-s20: perf probe: Fix strtailcmp() to compare s1and s2. - patches.suse/perf-probe-fix-to-show-which-probe-point-is-not-found: perf probe: Fix to show which probe point is not found. - patches.suse/perf-probe-move-probe-event-utility-functions-to-probe-event-c: perf probe: Move probe event utility functions to probe-event.c. - patches.suse/perf-probe-print-debug-messages-using-pr_: perf probe: Print debug messages using pr_*(). - patches.suse/perf-probe-reject-second-attempt-of-adding-same-name-event: perf probe: Reject second attempt of adding same-name event. - patches.suse/perf-probe-remove-event-suffix-number-_0: perf probe: Remove event suffix number _0. - patches.suse/perf-probe-show-need-dwarf-message-only-if-it-is-really-needed: perf probe: Show need-dwarf message only if it is really needed. - patches.suse/perf-probe-simplify-event-naming: perf probe: Simplify event naming. - patches.suse/perf-probe-support-del-option: perf probe: Support --del option. - patches.suse/perf-probe-support-event-name-for-add-option: perf probe: Support event name for --add option. - patches.suse/perf-probe-support-vmlinux-on-cwd-by-default: perf probe: Support vmlinux on cwd by default. - patches.suse/perf-probe-update-perf-probe-document: perf probe: Update perf-probe document. - patches.suse/perf-probe-use-pr_debug-for-debug-message: perf probe: Use pr_debug for debug message. - patches.suse/perf-probe-use-strlist__for_each-macros-in-probe-event-c: perf probe: Use strlist__for_each macros in probe-event.c. - patches.suse/perf-probes-exit-searching-after-finding-target-function: perf/probes: Exit searching after finding target function. - patches.suse/perf-probes-fall-back-to-non-dwarf-if-possible: perf/probes: Fall back to non-dwarf if possible. - patches.suse/perf-probes-improve-command-line-option-of-perf-probe: perf/probes: Improve command-line option of perf-probe. - patches.suse/perf-probes-improve-error-messages: perf/probes: Improve error messages. - patches.suse/perf-probes-improve-probe-point-syntax-of-perf-probe: perf/probes: Improve probe point syntax of perf-probe. - patches.suse/perf-probes-rename-perf-probe-events-group-name: perf/probes: Rename perf probe events group name. - patches.suse/perf-probes-support-function-entry-relative-line-number: perf/probes: Support function entry relative line number. - patches.suse/perf-probes-update-documentation-perf-probe-txt: perf/probes: Update Documentation/perf-probe.txt. - patches.suse/perf-record-fix-race-where-process-can-disappear-while-reading-its-proc-pid-tasks: perf record: Fix race where process can disappear while reading its /proc/pid/tasks. - patches.suse/perf-record-rename-perf-data-to-perf-data-old-if-force-f-is-used: perf record: Rename perf.data to perf.data.old if --force/-f is used. - patches.suse/perf-record-x86-print-more-intelligent-error-message-when-sampling-fails: perf record, x86: Print more intelligent error message when sampling fails. - patches.suse/perf-remove-pointless-union-that-wraps-the-hw-breakpoint-fields: perf: Remove pointless union that wraps the hw breakpoint fields. - patches.suse/perf-remove-the-event-callback-from-perf-events: perf: Remove the "event" callback from perf events. - patches.suse/perf-remove-unused-struct-perf_event-event_callback: perf: Remove unused struct perf_event::event_callback. - patches.suse/perf-report-do-map-lookups-in-resolve_callchain: perf report: Do map lookups in resolve_callchain(). - patches.suse/perf-report-fix-cut-n-paste-error-recently-introduced: perf report: Fix cut'n'paste error recently introduced. - patches.suse/perf-report-generalize-perf_session__fprintf_hists: perf report: Generalize perf_session__fprintf_hists(). - patches.suse/perf-report-use-kernel_maps__find_symbol-as-fallback-to-find-vdsos-etc: perf report: Use kernel_maps__find_symbol as fallback to find vdsos, etc. - patches.suse/perf-sched-add-c-option-to-measure-on-a-specific-cpu: perf sched: Add -C option to measure on a specific CPU. - patches.suse/perf-sched-add-max-delay-time-snapshot: perf sched: Add max delay time snapshot. - patches.suse/perf-sched-fix-build-failure-on-sparc: perf sched: Fix build failure on sparc. - patches.suse/perf-sched-fix-for-getting-task-s-execution-time: perf sched: Fix for getting task's execution time. - patches.suse/perf-sched-fix-perf-sched-trace: perf/sched: Fix 'perf sched trace'. - patches.suse/perf-sched-remove-dead-code: perf sched: Remove dead code. - patches.suse/perf-scripting-fix-build: perf scripting: Fix build. - patches.suse/perf-session-adopt-resolve_callchain: perf session: Adopt resolve_callchain. - patches.suse/perf-session-adopt-the-sample_type-variable: perf session: Adopt the sample_type variable. - patches.suse/perf-session-ditch-register_perf_file_handler: perf session: Ditch register_perf_file_handler. - patches.suse/perf-session-event-statistics-also-are-per-session: perf session: Event statistics also are per session. - patches.suse/perf-session-move-kmaps-to-perf_session: perf session: Move kmaps to perf_session. - patches.suse/perf-session-move-perf-report-specific-hits-out-of-perf_session__fprintf_hists: perf session: Move perf report specific hits out of perf_session__fprintf_hists. - patches.suse/perf-session-move-the-global-threads-list-to-perf_session: perf session: Move the global threads list to perf_session. - patches.suse/perf-session-move-the-hist_entries-rb-tree-to-perf_session: perf session: Move the hist_entries rb tree to perf_session. - patches.suse/perf-session-pass-the-perf_session-to-the-event-handling-operations: perf session: Pass the perf_session to the event handling operations. - patches.suse/perf-session-reduce-the-number-of-parms-to-perf_session__process_events: perf session: Reduce the number of parms to perf_session__process_events. - patches.suse/perf-session-register-the-idle-thread-in-perf_session__process_events: perf session: Register the idle thread in perf_session__process_events. - patches.suse/perf-simplify-__perf_event_read: perf: Simplify __perf_event_read. - patches.suse/perf-simplify-__perf_event_sync_stat: perf: Simplify __perf_event_sync_stat. - patches.suse/perf-stat-add-branch-performance-events-to-default-output: perf stat: Add branch performance events to default output. - patches.suse/perf-stat-add-branch-performance-metric: perf stat: Add branch performance metric. - patches.suse/perf-stat-count-branches-first: perf stat: Count branches first. - patches.suse/perf-stat-do-not-print-ratio-when-task-clock-event-is-not-counted: perf stat: Do not print ratio when task-clock event is not counted. - patches.suse/perf-stat-re-align-the-default_attrs-array: perf stat: Re-align the default_attrs array. - patches.suse/perf-symbols-add-a-long_name_len-member-to-struct-dso: perf symbols: Add a long_name_len member to struct dso. - patches.suse/perf-symbols-add-a-type-field-to-struct-map: perf symbols: Add a 'type' field to struct map. - patches.suse/perf-symbols-add-missing-variables-entry-to-map_type__name: perf symbols: Add missing "Variables" entry to map_type__name. - patches.suse/perf-symbols-add-support-for-variable-symtabs: perf symbols: Add support for 'variable' symtabs. - patches.suse/perf-symbols-adopt-the-strlists-for-dso-comm: perf symbols: Adopt the strlists for dso, comm. - patches.suse/perf-symbols-allow-lookups-by-symbol-name-too: perf symbols: Allow lookups by symbol name too. - patches.suse/perf-symbols-avoid-annoying-message-about-loading-symbols: perf symbols: Avoid annoying message about loading symbols. - patches.suse/perf-symbols-better-support-for-multiple-symbol-tables-per-dso: perf symbols: Better support for multiple symbol tables per dso. - patches.suse/perf-symbols-call-the-symbol-filter-in-dso__synthesize_plt_symbols: perf symbols: Call the symbol filter in dso__synthesize_plt_symbols(). - patches.suse/perf-symbols-capture-the-running-kernel-buildid-too: perf symbols: Capture the running kernel buildid too. - patches.suse/perf-symbols-change-the-kernel-dso-name-if-it-comes-from-kallsyms: perf symbols: Change the kernel DSO name if it comes from kallsyms. - patches.suse/perf-symbols-check-vmlinux-buildid: perf symbols: Check vmlinux buildid. - patches.suse/perf-symbols-ditch-dso-find_symbol: perf symbols: Ditch dso->find_symbol. - patches.suse/perf-symbols-do-lazy-symtab-loading-for-the-kernel-modules-too: perf symbols: Do lazy symtab loading for the kernel & modules too. - patches.suse/perf-symbols-dsos__read_build_ids-should-read-both-user-and-kernel-buildids: perf symbols: dsos__read_build_ids() should read both user and kernel buildids. - patches.suse/perf-symbols-factor-out-buildid-reading-routine: perf symbols: Factor out buildid reading routine. - patches.suse/perf-symbols-filename__read_build_id-should-look-at-notes-section-too: perf symbols: Filename__read_build_id should look at .notes section too. - patches.suse/perf-symbols-fix-comparision-of-build_ids: perf symbols: Fix comparision of build_ids. - patches.suse/perf-symbols-fix-elf-header-errors-during-perf-kmem-record: perf symbols: Fix ELF header errors during "perf kmem record". - patches.suse/perf-symbols-fixup-kernel_maps__fixup_end-end-map: perf symbols: Fixup kernel_maps__fixup_end end map. - patches.suse/perf-symbols-initialize-dso-loaded: perf symbols: Initialize dso->loaded. - patches.suse/perf-symbols-introduce-dso__build_id_equal: perf symbols: Introduce dso__build_id_equal. - patches.suse/perf-symbols-introduce-elf-counterparts-to-symbol_type__is_a: perf symbols: Introduce ELF counterparts to symbol_type__is_a. - patches.suse/perf-symbols-introduce-symbol_type__is_a: perf symbols: Introduce symbol_type__is_a. - patches.suse/perf-symbols-kernel_maps-should-be-an-array-of-map__nr_types-entries: perf symbols: Kernel_maps should be an array of MAP__NR_TYPES entries. - patches.suse/perf-symbols-kill-struct-build_id_list-and-die-another-day: perf symbols: Kill struct build_id_list and die() another day. - patches.suse/perf-symbols-look-for-vmlinux-in-more-places: perf symbols: Look for vmlinux in more places. - patches.suse/perf-symbols-make-symbol_conf-global: perf symbols: Make symbol_conf global. - patches.suse/perf-symbols-make-the-kallsyms-loading-routines-part-of-the-dso-class: perf symbols: Make the kallsyms loading routines part of the dso class. - patches.suse/perf-symbols-move-symbol-filtering-to-event__preprocess_sample: perf symbols: Move symbol filtering to event__preprocess_sample(). - patches.suse/perf-symbols-old-versions-of-elf-h-don-t-have-nt_gnu_build_id: perf symbols: Old versions of elf.h don't have NT_GNU_BUILD_ID. - patches.suse/perf-symbols-pass-the-offset-to-perf_header__read_build_ids: perf symbols: Pass the offset to perf_header__read_build_ids(). - patches.suse/perf-symbols-perf_header__read_build_ids-offset-n-size-should-be-u64: perf symbols: perf_header__read_build_ids() offset'n'size should be u64. - patches.suse/perf-symbols-record-the-build_ids-of-kernel-modules-too: perf symbols: Record the build_ids of kernel modules too. - patches.suse/perf-symbols-remove-unrelated-actions-from-dso__load_kernel_sym: perf symbols: Remove unrelated actions from dso__load_kernel_sym. - patches.suse/perf-symbols-rename-find_symbol-routines-to-find_function: perf symbols: Rename find_symbol routines to find_function. - patches.suse/perf-symbols-rename-kernel_mapto-kernel_maps__functions: perf symbols: Rename kernel_mapto kernel_map__functions. - patches.suse/perf-symbols-rename-kthreads-to-kmaps-using-another-abstraction-for-it: perf symbols: Rename kthreads to kmaps, using another abstraction for it. - patches.suse/perf-symbols-show-messages-about-module-loading-only-if-verbose-1: perf symbols: Show messages about module loading only if verbose >= 1. - patches.suse/perf-symbols-simplify-symbol-machinery-setup: perf symbols: Simplify symbol machinery setup. - patches.suse/perf-symbols-split-the-dsos-list-into-kernel-and-user-parts: perf symbols: Split the dsos list into kernel and user parts. - patches.suse/perf-symbols-support-multiple-symtabs-in-struct-thread: perf symbols: Support multiple symtabs in struct thread. - patches.suse/perf-symbols-unexport-kernel_map__functions: perf symbols: Unexport kernel_map__functions. - patches.suse/perf-symbols-use-the-buildids-if-present: perf symbols: Use the buildids if present. - patches.suse/perf-symbols-when-not-using-modules-discard-its-symbols: perf symbols: When not using modules, discard its symbols. - patches.suse/perf-timechart-add-a-process-filter: perf timechart: Add a process filter. - patches.suse/perf-timechart-fix-header-handling: perf timechart: Fix header handling. - patches.suse/perf-timechart-remove-open-coded-event-parsing-code: perf timechart: Remove open-coded event parsing code. - patches.suse/perf-tools-add-bunch-of-missing-headers-to-lib_h: perf tools: Add bunch of missing headers to LIB_H. - patches.suse/perf-tools-add-debugfs-utility-routines-for-perf: perf tools: Add debugfs utility routines for perf. - patches.suse/perf-tools-add-for_each-macros-for-strlist: perf tools: Add for_each macros for strlist. - patches.suse/perf-tools-add-ia64-support-for-tools-perf: perf tools: Add ia64 support for tools/perf/. - patches.suse/perf-tools-add-latency-format-to-trace-output: perf tools: Add latency format to trace output. - patches.suse/perf-tools-add-missing-tools-perf-util-include-string-h: perf tools: Add missing tools/perf/util/include/string.h. - patches.suse/perf-tools-add-new-perf_atoll-function-to-parse-string-representing-size-in-bytes: perf tools: Add new perf_atoll() function to parse string representing size in bytes. - patches.suse/perf-tools-add-perf-data-to-gitignore: perf tools: Add perf.data to .gitignore. - patches.suse/perf-tools-add-signed-flag-setting-back-into-trace-event-parse-c: perf tools: Add 'signed' flag setting back into trace-event-parse.c. - patches.suse/perf-tools-add-support-for-breakpoint-events-in-perf-tools: perf tools: Add support for breakpoint events in perf tools. - patches.suse/perf-tools-add-unmap_ip-operation-to-struct-map: perf tools: Add ->unmap_ip operation to struct map. - patches.suse/perf-tools-align-long-options-which-have-no-short-forms: perf tools: Align long options which have no short forms. - patches.suse/perf-tools-allow-building-for-arm: perf tools: Allow building for ARM. - patches.suse/perf-tools-alpha-add-alpha-support-to-perf-h: perf tools, Alpha: Add Alpha support to perf.h. - patches.suse/perf-tools-bind-callchains-to-the-first-sort-dimension-column: perf tools: Bind callchains to the first sort dimension column. - patches.suse/perf-tools-bring-linear-set-of-section-headers-for-features: perf tools: Bring linear set of section headers for features. - patches.suse/perf-tools-consolidate-symbol-resolving-across-all-tools: perf tools: Consolidate symbol resolving across all tools. - patches.suse/perf-tools-correct-size-computation-in-tracepoint_id_to_path: perf tools: Correct size computation in tracepoint_id_to_path(). - patches.suse/perf-tools-correct-size-given-to-memset: perf tools: Correct size given to memset. - patches.suse/perf-tools-create-maps-for-modules-when-processing-kallsyms: perf tools: Create maps for modules when processing kallsyms. - patches.suse/perf-tools-create-util-sort-and-use-it: perf tools: Create util/sort.and use it. - patches.suse/perf-tools-debug-h-needs-to-include-event-h-for-event_t: perf tools: Debug.h needs to include event.h for event_t. - patches.suse/perf-tools-default-to-1-khz-auto-sampling-freq-events: perf tools: Default to 1 KHz auto-sampling freq events. - patches.suse/perf-tools-delay-loading-symtabs-till-we-hit-a-map-with-it: perf tools: Delay loading symtabs till we hit a map with it. - patches.suse/perf-tools-do-not-manually-count-string-lengths: perf tools: Do not manually count string lengths. - patches.suse/perf-tools-don-t-die-in-do_write: perf tools: Don't die() in do_write(). - patches.suse/perf-tools-don-t-die-in-mmap_dispatch_perf_file: perf tools: Don't die() in mmap_dispatch_perf_file. - patches.suse/perf-tools-don-t-die-in-perf_header__add_attr: perf tools: Don't die() in perf_header__add_attr(). - patches.suse/perf-tools-don-t-die-in-perf_header__new: perf tools: Don't die() in perf_header__new(). - patches.suse/perf-tools-don-t-die-in-perf_header_attr__add_id: perf tools: Don't die() in perf_header_attr__add_id(). - patches.suse/perf-tools-don-t-die-in-perf_header_attr__new: perf tools: Don't die in perf_header_attr__new(). - patches.suse/perf-tools-drop-asm-types-h-wrapper: perf tools: Drop asm/types.h wrapper. - patches.suse/perf-tools-eliminate-some-more-die-uses-in-library-functions: perf tools: Eliminate some more die() uses in library functions. - patches.suse/perf-tools-factor-out-the-map-initialization: perf tools: Factor out the map initialization. - patches.suse/perf-tools-fix-_gnu_source-macro-related-strndup-build-error: perf tools: Fix _GNU_SOURCE macro related strndup() build error. - patches.suse/perf-tools-fix-backslash-processing-on-trace-print-formats: perf tools: Fix backslash processing on trace print formats. - patches.suse/perf-tools-fix-bprintk-reading-in-trace-output: perf tools: Fix bprintk reading in trace output. - patches.suse/perf-tools-fix-compilation-on-powerpc: perf tools: Fix compilation on powerpc. - patches.suse/perf-tools-fix-counter-sample-frequency-breakage: perf tools: Fix counter sample frequency breakage. - patches.suse/perf-tools-fix-missing-symtabs-printouts: perf tools: Fix missing symtabs printouts. - patches.suse/perf-tools-fix-missing-top-level-callchain: perf tools: Fix missing top level callchain. - patches.suse/perf-tools-fix-syntax-in-documentation: perf tools: Fix syntax in documentation. - patches.suse/perf-tools-fix-thread-comm-resolution-in-perf-sched: perf tools: Fix thread comm resolution in perf sched. - patches.suse/perf-tools-generalize-event-synthesizing-routines: perf tools: Generalize event synthesizing routines. - patches.suse/perf-tools-generalize-perf_header__adds_read: perf tools: Generalize perf_header__adds_read(). - patches.suse/perf-tools-handle-and-in-parsing-trace-print-format: perf tools: Handle - and + in parsing trace print format. - patches.suse/perf-tools-handle-arrays-in-print-fields-for-trace-parsing: perf tools: Handle arrays in print fields for trace parsing. - patches.suse/perf-tools-handle-as-typecast-in-trace-parsing: perf tools: Handle * as typecast in trace parsing. - patches.suse/perf-tools-handle-both-versions-of-ftrace-output: perf tools: Handle both versions of ftrace output. - patches.suse/perf-tools-handle-newlines-in-trace-parsing-better: perf tools: Handle newlines in trace parsing better. - patches.suse/perf-tools-handle-print-concatenations-in-event-format-file: perf tools: Handle print concatenations in event format file. - patches.suse/perf-tools-handle-the-case-with-and-without-the-signed-trace-field: perf tools: Handle the case with and without the "signed" trace field. - patches.suse/perf-tools-handle-trace-parsing-of-and: perf tools: Handle trace parsing of < and >. - patches.suse/perf-tools-improve-kernel-modules-symbol-lookup: perf tools: Improve kernel/modules symbol lookup. - patches.suse/perf-tools-improve-message-about-missing-symtabs-for-deleted-dsos: perf tools: Improve message about missing symtabs for deleted DSOs. - patches.suse/perf-tools-improve-thread-comm-resolution-in-perf-sched: perf tools: Improve thread comm resolution in perf sched. - patches.suse/perf-tools-introduce-bitmask-ed-additional-headers: perf tools: Introduce bitmask'ed additional headers. - patches.suse/perf-tools-introduce-dsos__fprintf_buildid: perf tools: Introduce dsos__fprintf_buildid. - patches.suse/perf-tools-introduce-perf_session-class: perf tools: Introduce perf_session class. - patches.suse/perf-tools-introduce-zalloc-for-the-common-calloc1-n-case: perf tools: Introduce zalloc() for the common calloc(1, N) case. - patches.suse/perf-tools-make-symbol_conf-static: perf tools: Make symbol_conf static. - patches.suse/perf-tools-merge-trace-info-content-into-perf-data: perf tools: Merge trace.info content into perf.data. - patches.suse/perf-tools-misc-small-fixes: perf tools: Misc small fixes. - patches.suse/perf-tools-modify-perf-routines-to-use-new-debugfs-routines: perf tools: Modify perf routines to use new debugfs routines. - patches.suse/perf-tools-move-dereference-after-null-test: perf tools: Move dereference after NULL test. - patches.suse/perf-tools-move-graph_line-and-graph_dotted_line-from-top: perf tools: Move graph_line and graph_dotted_line from top. - patches.suse/perf-tools-move-hist-entries-printing-routines-from-perf-report: perf tools: Move hist entries printing routines from perf report. - patches.suse/perf-tools-move-hist_entry__add-common-code-to-hist-c: perf tools: Move hist_entry__add common code to hist.c. - patches.suse/perf-tools-move-the-build-id-storage-operations-to-headers: perf tools: Move the build-id storage operations to headers. - patches.suse/perf-tools-move-threads-last_match-to-threads-c: perf tools: Move threads & last_match to threads.c. - patches.suse/perf-tools-no-need-for-three-rb_trees-for-sorting-hist-entries: perf tools: No need for three rb_trees for sorting hist entries. - patches.suse/perf-tools-notify-user-when-unrecognized-event-is-specified: perf tools: Notify user when unrecognized event is specified. - patches.suse/perf-tools-optimize-parse_subsystem_tracepoint_event: perf tools: Optimize parse_subsystem_tracepoint_event(). - patches.suse/perf-tools-output-perf-list-to-stdout-not-stderr: perf tools: Output 'perf list' to stdout not stderr. - patches.suse/perf-tools-perf_header__read-shouldn-t-die: perf tools: perf_header__read() shouldn't die(). - patches.suse/perf-tools-proc-modules-names-don-t-always-match-its-name: perf tools: /proc/modules names don't always match its name. - patches.suse/perf-tools-protect-header-files-with-a-consistent-style: perf tools: Protect header files with a consistent style. - patches.suse/perf-tools-provide-backward-compatibility-with-previous-perf-data-version: perf tools: Provide backward compatibility with previous perf.data version. - patches.suse/perf-tools-put-common-histogram-functions-in-their-own-file: perf tools: Put common histogram functions in their own file. - patches.suse/perf-tools-read-the-build-ids-from-the-header-layer: perf tools: Read the build-ids from the header layer. - patches.suse/perf-tools-remove-all-char-typecasts-and-use-const-in-prototype: perf tools: Remove all char * typecasts and use const in prototype. - patches.suse/perf-tools-remove-expensive-old-debug-code-from-perf-top: perf tools: Remove expensive old debug code from perf top. - patches.suse/perf-tools-remove-show_mask-bitmask: perf tools: Remove show_mask bitmask. - patches.suse/perf-tools-remove-unused-wrapper-routines: perf tools: Remove unused wrapper routines. - patches.suse/perf-tools-reorganize-event-processing-routines-lotsa-dups-killed: perf tools: Reorganize event processing routines, lotsa dups killed. - patches.suse/perf-tools-replace-m-with-a-in-sscanf: perf tools: Replace %m with %a in sscanf. - patches.suse/perf-tools-rewrite-and-improve-support-for-kernel-modules: perf tools: Rewrite and improve support for kernel modules. - patches.suse/perf-tools-simplify-the-symbol-priv-area-mechanism: perf tools: Simplify the symbol priv area mechanism. - patches.suse/perf-tools-split-up-build-id-saving-into-fetch-and-write: perf tools: Split up build id saving into fetch and write. - patches.suse/perf-tools-start-the-perf-data-mapping-at-data-offset-in-perf-trace: perf tools: Start the perf.data mapping at data offset in perf trace. - patches.suse/perf-tools-still-continue-on-failed-parsing-of-an-event: perf tools: Still continue on failed parsing of an event. - patches.suse/perf-tools-synthetize-the-targeted-process: perf tools: Synthetize the targeted process. - patches.suse/perf-tools-unify-debug-messages-mechanisms: perf tools: Unify debug messages mechanisms. - patches.suse/perf-tools-unify-perf-data-mapping-and-events-handling: perf tools: Unify perf.data mapping and events handling. - patches.suse/perf-tools-up-the-verbose-level-for-some-really-verbose-stuff: perf tools: Up the verbose level for some really verbose stuff. - patches.suse/perf-tools-use-common-process_event-functions-for-annotate-and-report: perf tools: Use common process_event functions for annotate and report. - patches.suse/perf-tools-use-declare_bitmap-instead-of-an-open-coded-array: perf tools: Use DECLARE_BITMAP instead of an open-coded array. - patches.suse/perf-tools-use-kernel-bitmap-library: perf tools: Use kernel bitmap library. - patches.suse/perf-tools-use-perf_header__set-has_feat-whenever-possible: perf tools: Use perf_header__set/has_feat whenever possible. - patches.suse/perf-tools-use-rb_tree-for-maps: perf tools: Use rb_tree for maps. - patches.suse/perf-tools-use-strsep-over-strtok_r-for-parsing-single-line: perf tools: Use strsep() over strtok_r() for parsing single line. - patches.suse/perf-top-allocate-space-only-for-the-number-of-counters-used: perf top: Allocate space only for the number of counters used. - patches.suse/perf-top-always-show-the-dso-column-even-if-its-all-the-same: perf top: Always show the DSO column, even if its all the same. - patches.suse/perf-top-auto-adjust-symbol-and-dso-widths: perf top: Auto adjust symbol and dso widths. - patches.suse/perf-top-don-t-allocate-the-source-parsing-members-upfront: perf top: Don't allocate the source parsing members upfront. - patches.suse/perf-top-fix-symbol-annotation: perf top: Fix symbol annotation. - patches.suse/perf-top-introduce-helper-function-to-access-symbol-from-sym_entry: perf top: Introduce helper function to access symbol from sym_entry. - patches.suse/perf-top-introduce-hide_-user-kernel-_symbols: perf top: Introduce --hide_{user,kernel}_symbols. - patches.suse/perf-top-keep-the-default-of-asking-for-kernel-module-symbols: perf top: Keep the default of asking for kernel module symbols. - patches.suse/perf-top-remove-dead-min-max-_ip-unused-variables: perf top: Remove dead {min,max}_ip unused variables. - patches.suse/perf-top-support-userspace-symbols-too: perf top: Support userspace symbols too. - patches.suse/perf-top-suppress-dso-column-if-only-one-is-present: perf top: Suppress DSO column if only one is present. - patches.suse/perf-top-use-all-the-lines-in-the-screen: perf top: Use all the lines in the screen. - patches.suse/perf-trace-add-a-scripts-perl-bin-for-perf-trace-shell-scripts: perf trace: Add a scripts/perl/bin for perf trace shell scripts. - patches.suse/perf-trace-add-documentation-for-perf-trace-perl-support: perf trace: Add Documentation for perf trace Perl support. - patches.suse/perf-trace-add-filter-suppport: perf trace: Add filter Suppport. - patches.suse/perf-trace-add-flag-symbolic-format_flags: perf trace: Add flag/symbolic format_flags. - patches.suse/perf-trace-add-interface-to-access-perf-data-from-perl-handlers: perf trace: Add interface to access perf data from Perl handlers. - patches.suse/perf-trace-add-perf-trace-scripting-support-modules-for-perl: perf trace: Add perf trace scripting support modules for Perl. - patches.suse/perf-trace-add-perl-scripting-support: perf trace: Add Perl scripting support. - patches.suse/perf-trace-add-scripting-ops: perf trace: Add scripting ops. - patches.suse/perf-trace-add-string-dynamic-cases-to-format_flags: perf trace: Add string/dynamic cases to format_flags. - patches.suse/perf-trace-add-subsystem-string-to-struct-event: perf trace: Add subsystem string to struct event. - patches.suse/perf-trace-read_tracing_data-should-die-another-day: perf trace: Read_tracing_data should die() another day. - patches.suse/perf-trace-remove-dead-code: perf trace: Remove dead code. - patches.suse/perf-trace-scripting-add-fedora-libperl-install-note-to-doc: perf trace/scripting: Add Fedora libperl install note to doc. - patches.suse/perf-trace-scripting-add-record-and-report-options: perf trace/scripting: Add 'record' and 'report' options. - patches.suse/perf-trace-scripting-add-support-for-script-args: perf trace/scripting: Add support for script args. - patches.suse/perf-trace-scripting-check-return-val-of-perl_run: perf trace/scripting: Check return val of perl_run(). - patches.suse/perf-trace-scripting-don-t-display-scripting-unsupported-msg-unnecessarily: perf trace/scripting: Don't display 'scripting unsupported' msg unnecessarily. - patches.suse/perf-trace-scripting-don-t-install-unneeded-files: perf trace/scripting: Don't install unneeded files. - patches.suse/perf-trace-scripting-fix-compile-error-when-libperl-not-installed: perf trace/scripting: Fix compile error when libperl not installed. - patches.suse/perf-trace-scripting-fix-perl-common_-access-functions: perf trace/scripting: Fix Perl common_* access functions. - patches.suse/perf-trace-scripting-ignore-shadowed-variable-warning-for-perf-trace-perl-c: perf trace/scripting: Ignore shadowed variable warning for perf-trace-perl.c. - patches.suse/perf-trace-scripting-list-available-scripts: perf trace/scripting: List available scripts. - patches.suse/perf-trace-scripting-silence-perl_embed_-backtick-errors: perf trace/scripting: Silence PERL_EMBED_* backtick errors. - patches.suse/perf-trace-scripting-update-documentation: perf trace/scripting: Update Documentation. - patches.suse/perf-use-die-for-error-cases-in-perf-probe: perf: Use die() for error cases in perf-probe. - patches.suse/perf-use-eprintf-for-debug-messages-in-perf-probe: perf: Use eprintf() for debug messages in perf-probe. - patches.suse/perf-util-remove-setup_sorting-dups: perf util: Remove setup_sorting dups. - patches.suse/perf-x86-add-simple-group-validation: perf, x86: Add simple group validation. - patches.suse/perf_event-add-alignment-faults-and-emulation-faults-software-events: perf_event: Add alignment-faults and emulation-faults software events. - patches.suse/perf_event-allocate-children-s-perf_event_ctxp-at-the-right-time: perf_event: Allocate children's perf_event_ctxp at the right time. - patches.suse/perf_event-clean-up-__perf_event_init_context: perf_event: Clean up __perf_event_init_context(). - patches.suse/perf_event-cleanup-for-cpu_clock_perf_event_update: perf_event: Cleanup for cpu_clock_perf_event_update(). - patches.suse/perf_event-eliminate-raw-size: perf_event: Eliminate raw->size. - patches.suse/perf_event-fix-__dsos__write_buildid_table: perf_event: Fix __dsos__write_buildid_table(). - patches.suse/perf_event-fix-compile-error: perf_event: Fix compile error. - patches.suse/perf_event-fix-perf_swevent_hrtimer-variable-initialization: perf_event: Fix perf_swevent_hrtimer() variable initialization. - patches.suse/perf_event-fix-raw-event-processing: perf_event: Fix raw event processing. - patches.suse/perf_event-fix-variable-initialization-in-other-codepaths: perf_event: Fix variable initialization in other codepaths. - patches.suse/perf_event-optimize-perf_output_lock: perf_event: Optimize perf_output_lock(). - patches.suse/perf_event-remove-redundant-zero-fill: perf_event: Remove redundant zero fill. - patches.suse/perf_event-x86-annotate-init-functions-and-data: perf_event, x86: Annotate init functions and data. - patches.suse/perf_event-x86-mce-use-trace_event-for-mce-logging: perf_event, x86, mce: Use TRACE_EVENT() for MCE logging. - patches.suse/perf_events-add-event-constraints-support-for-intel-processors: perf_events: Add event constraints support for Intel processors. - patches.suse/perf_events-check-for-filters-on-fixed-counter-events: perf_events: Check for filters on fixed counter events. - patches.suse/perf_events-disable-events-when-we-detach-them: perf_events: Disable events when we detach them. - patches.suse/perf_events-fix-__perf_event_exit_task-vs-update_event_times-locking: perf_events: Fix __perf_event_exit_task() vs. update_event_times() locking. - patches.suse/perf_events-fix-bad-software-trace-event-recursion-counting: perf_events: Fix bad software/trace event recursion counting. - patches.suse/perf_events-fix-bogus-copy_to_user-in-perf_event_read_group: perf_events: Fix bogus copy_to_user() in perf_event_read_group(). - patches.suse/perf_events-fix-default-watermark-calculation: perf_events: Fix default watermark calculation. - patches.suse/perf_events-fix-modular-build: perf_events: Fix modular build. - patches.suse/perf_events-fix-perf_event_attr-layout: perf_events: Fix perf_event_attr layout. - patches.suse/perf_events-fix-read-bogus-counts-when-in-error-state: perf_events: Fix read() bogus counts when in error state. - patches.suse/perf_events-fix-style-nits: perf_events: Fix style nits. - patches.suse/perf_events-optimize-the-swcounter-hotpath: perf_events: Optimize the swcounter hotpath. - patches.suse/perf_events-restore-sanity-to-scaling-land: perf_events: Restore sanity to scaling land. - patches.suse/perf_events-undo-copy-paste-damage: perf_events: Undo copy/paste damage. - patches.suse/perf_events-undo-some-recursion-damage: perf_events: Undo some recursion damage. - patches.suse/perf_events-update-the-context-time-on-exit: perf_events: Update the context time on exit. - patches.suse/perf_events-x86-fix-event-constraints-code: perf_events, x86: Fix event constraints code. - patches.suse/perf_events-x86-fix-validate_event-bug: perf_events, x86: Fix validate_event bug. - patches.suse/powerpc-create-ppc_warn_alignment-to-match-ppc_warn_emulated: powerpc: Create PPC_WARN_ALIGNMENT to match PPC_WARN_EMULATED. - patches.suse/powerpc-export-powerpc_debugfs_root: powerpc: Export powerpc_debugfs_root. - patches.suse/powerpc-perf_event-add-alignment-faults-and-emulation-faults-software-events: powerpc: perf_event: Add alignment-faults and emulation-faults software events. - patches.suse/powerpc-perf_event-cleanup-copy_page-output-by-hiding-setup-symbol: powerpc: perf_event: Cleanup copy_page output by hiding setup symbol. - patches.suse/powerpc-perf_event-cleanup-output-by-adding-symbols: powerpc: perf_event: Cleanup output by adding symbols. - patches.suse/powerpc-perf_event-hide-iseries_check_pending_irqs: powerpc: perf_event: Hide iseries_check_pending_irqs. - patches.suse/powerpc-tracing-add-hypervisor-call-tracepoints: powerpc: tracing: Add hypervisor call tracepoints. - patches.suse/powerpc-tracing-add-powerpc-tracepoints-for-interrupt-entry-and-exit: powerpc: tracing: Add powerpc tracepoints for interrupt entry and exit. - patches.suse/powerpc-tracing-add-powerpc-tracepoints-for-timer-entry-and-exit: powerpc: tracing: Add powerpc tracepoints for timer entry and exit. - patches.suse/powerpc-tracing-give-hypervisor-call-tracepoints-access-to-arguments: powerpc: tracing: Give hypervisor call tracepoints access to arguments. - patches.suse/revert-x86-apic-fix-spurious-error-interrupts-triggering-on-all-non-boot-aps: revert-x86, apic: Fix spurious error interrupts triggering on all non-boot APs. - patches.suse/revert-x86-under-bios-control-restore-ap-s-apic_lvtthmr-to-the-bsp-value: revert: x86: Under BIOS control, restore AP's APIC_LVTTHMR to the BSP value. - patches.suse/sched-mark-sched_clock-as-notrace: sched: Mark sched_clock() as notrace. - patches.suse/testmmiotrace-c-add-and-use-pr_fmtfmt: testmmiotrace.c: Add and use pr_fmt(fmt). - patches.suse/trace-kprobe-support-delete-probe-syntax: trace-kprobe: Support delete probe syntax. - patches.suse/trace-syscalls-change-ret-param-in-struct-syscall_trace_exit-to-long: trace/syscalls: Change ret param in struct syscall_trace_exit to long. - patches.suse/trace_kprobes-always-show-group-name: trace_kprobes: Always show group name. - patches.suse/trace_kprobes-don-t-output-zero-offset: trace_kprobes: Don't output zero offset. - patches.suse/trace_kprobes-fix-a-memory-leak-bug-and-check-kstrdup-return-value: trace_kprobes: Fix a memory leak bug and check kstrdup() return value. - patches.suse/trace_kprobes-fix-memory-leak: trace_kprobes: Fix memory leak. - patches.suse/trace_syscalls-add-syscall-nr-field: trace_syscalls: Add syscall nr field. - patches.suse/trace_syscalls-add-syscall_nr-field-to-struct-syscall_metadata: trace_syscalls: Add syscall_nr field to struct syscall_metadata. - patches.suse/trace_syscalls-remove-duplicate-init_enter_-sname: trace_syscalls: Remove duplicate init_enter_##sname(). - patches.suse/trace_syscalls-remove-enter_id-exit_id: trace_syscalls: Remove enter_id exit_id. - patches.suse/trace_syscalls-remove-unused-event_syscall_enter-and-event_syscall_exit: trace_syscalls: Remove unused event_syscall_enter and event_syscall_exit. - patches.suse/trace_syscalls-remove-unused-syscall_name_to_nr: trace_syscalls: Remove unused syscall_name_to_nr(). - patches.suse/trace_syscalls-set-event_enter_-sname-data-to-its-metadata: trace_syscalls: Set event_enter_##sname->data to its metadata. - patches.suse/trace_syscalls-simplify-syscall-profile: trace_syscalls: Simplify syscall profile. - patches.suse/tracepoint-add-signal-deliver-event: tracepoint: Add signal deliver event. - patches.suse/tracepoint-add-signal-loss-events: tracepoint: Add signal loss events. - patches.suse/tracepoint-move-signal-sending-tracepoint-to-events-signal-h: tracepoint: Move signal sending tracepoint to events/signal.h. - patches.suse/tracing-add-define_event-define_single_event-support-to-docbook: tracing: Add DEFINE_EVENT(), DEFINE_SINGLE_EVENT() support to docbook. - patches.suse/tracing-add-kprobe-based-event-tracer: tracing: Add kprobe-based event tracer. - patches.suse/tracing-add-kprobe-based-event-tracer-documentation: tracing: Add kprobe-based event tracer documentation. - patches.suse/tracing-add-kprobes-event-profiling-interface: tracing: Add kprobes event profiling interface. - patches.suse/tracing-bkl-add-bkl-ftrace-events: tracing/bkl: Add bkl ftrace events. - patches.suse/tracing-convert-module-refcnt-events-to-define_event: tracing: Convert module refcnt events to DEFINE_EVENT. - patches.suse/tracing-convert-softirq-events-to-define_event: tracing: Convert softirq events to DEFINE_EVENT. - patches.suse/tracing-convert-some-block-events-to-define_event: tracing: Convert some block events to DEFINE_EVENT. - patches.suse/tracing-convert-some-ext4-events-to-define_trace: tracing: Convert some ext4 events to DEFINE_TRACE. - patches.suse/tracing-convert-some-jbd2-events-to-define_event: tracing: Convert some jbd2 events to DEFINE_EVENT. - patches.suse/tracing-convert-some-kmem-events-to-define_event: tracing: Convert some kmem events to DEFINE_EVENT. - patches.suse/tracing-convert-some-power-events-to-define_event: tracing: Convert some power events to DEFINE_EVENT. - patches.suse/tracing-convert-some-sched-trace-events-to-define_event-and-_print: tracing: Convert some sched trace events to DEFINE_EVENT and _PRINT. - patches.suse/tracing-convert-some-workqueue-events-to-define_event: tracing: Convert some workqueue events to DEFINE_EVENT. - patches.suse/tracing-create-new-define_event_print: tracing: Create new DEFINE_EVENT_PRINT. - patches.suse/tracing-create-new-trace_event_template: tracing: Create new TRACE_EVENT_TEMPLATE. - patches.suse/tracing-document-have_syscall_tracepoints-needs: tracing: Document HAVE_SYSCALL_TRACEPOINTS needs. - patches.suse/tracing-enable-__cold-functions: tracing: Enable "__cold" functions. - patches.suse/tracing-enable-records-during-the-module-load: tracing: Enable records during the module load. - patches.suse/tracing-event-cleanup-the-useless-dentry-variable: tracing/event: Cleanup the useless dentry variable. - patches.suse/tracing-events-add-signed-field-to-format-files: tracing/events: Add 'signed' field to format files. - patches.suse/tracing-events-fix-locking-imbalance-in-the-filter-code: tracing/events: Fix locking imbalance in the filter code. - patches.suse/tracing-filters-cleanup-useless-headers: tracing/filters: Cleanup useless headers. - patches.suse/tracing-filters-fix-to-make-system-filter-work: tracing/filters: Fix to make system filter work. - patches.suse/tracing-filters-provide-basic-regex-support: tracing/filters: Provide basic regex support. - patches.suse/tracing-filters-refactor-subsystem-filter-code: tracing/filters: Refactor subsystem filter code. - patches.suse/tracing-filters-unify-the-regex-parsing-helpers: tracing/filters: Unify the regex parsing helpers. - patches.suse/tracing-filters-use-a-different-op-for-glob-match: tracing/filters: Use a different op for glob match. - patches.suse/tracing-fix-ring-buffer-and-ksym-tracer-merge-interaction: tracing: Fix ring-buffer and ksym tracer merge interaction. - patches.suse/tracing-forget-about-the-nmi-buffer-for-syscall-events: tracing: Forget about the NMI buffer for syscall events. - patches.suse/tracing-ftrace-dynamic-ftrace_event_call-support: tracing: Ftrace dynamic ftrace_event_call support. - patches.suse/tracing-ftrace-fix-to-check-create_event_dir-when-adding-new-events: tracing/ftrace: Fix to check create_event_dir() when adding new events. - patches.suse/tracing-generate-names-for-each-kprobe-event-automatically: tracing: Generate names for each kprobe event automatically. - patches.suse/tracing-kprobe-tracer-assigns-new-event-ids-for-each-event: tracing: Kprobe tracer assigns new event ids for each event. - patches.suse/tracing-kprobe-tracer-supports-more-than-6-arguments: tracing: Kprobe-tracer supports more than 6 arguments. - patches.suse/tracing-kprobes-add-argument-name-support: tracing/kprobes: Add argument name support. - patches.suse/tracing-kprobes-add-event-profiling-support: tracing/kprobes: Add event profiling support. - patches.suse/tracing-kprobes-add-failure-messages-for-debugging: tracing/kprobes: Add failure messages for debugging. - patches.suse/tracing-kprobes-add-prefix-to-special-variables: tracing/kprobes: Add $ prefix to special variables. - patches.suse/tracing-kprobes-add-probe-handler-dispatcher-to-support-perf-and-ftrace-concurrent-use: tracing/kprobes: Add probe handler dispatcher to support perf and ftrace concurrent use. - patches.suse/tracing-kprobes-avoid-field-name-confliction: tracing/kprobes: Avoid field name confliction. - patches.suse/tracing-kprobes-change-trace_arg-to-probe_arg: tracing/kprobes: Change trace_arg to probe_arg. - patches.suse/tracing-kprobes-cleanup-kprobe-tracer-code: tracing/kprobes: Cleanup kprobe tracer code. - patches.suse/tracing-kprobes-disable-kprobe-events-by-default-after-creation: tracing/kprobes: Disable kprobe events by default after creation. - patches.suse/tracing-kprobes-dump-the-culprit-kprobe-in-case-of-kprobe-recursion: tracing/kprobes: Dump the culprit kprobe in case of kprobe recursion. - patches.suse/tracing-kprobes-fix-field-creation-s-bad-error-handling: tracing/kprobes: Fix field creation's bad error handling. - patches.suse/tracing-kprobes-fix-format-typo-in-trace_kprobes: tracing/kprobes: Fix format typo in trace_kprobes. - patches.suse/tracing-kprobes-fix-probe-offset-to-be-unsigned: tracing/kprobes: Fix probe offset to be unsigned. - patches.suse/tracing-kprobes-fix-profiling-alignment-for-perf_counter-buffer: tracing/kprobes: Fix profiling alignment for perf_counter buffer. - patches.suse/tracing-kprobes-fix-trace_probe-registration-order: tracing/kprobes: Fix trace_probe registration order. - patches.suse/tracing-kprobes-make-special-variable-names-more-self-explainable: tracing/kprobes: Make special variable names more self-explainable. - patches.suse/tracing-kprobes-remove-ra-special-variable: tracing/kprobes: Remove '$ra' special variable. - patches.suse/tracing-kprobes-rename-kprobe-tracer-to-kprobe-event: tracing/kprobes: Rename Kprobe-tracer to kprobe-event. - patches.suse/tracing-kprobes-robustify-fixed-field-names-against-variable-field-names-conflicts: tracing/kprobes: Robustify fixed field names against variable field names conflicts. - patches.suse/tracing-kprobes-show-event-name-in-trace-output: tracing/kprobes: Show event name in trace output. - patches.suse/tracing-kprobes-support-custom-subsystem-for-each-kprobe-event: tracing/kprobes: Support custom subsystem for each kprobe event. - patches.suse/tracing-kprobes-update-kprobe-tracer-selftest-against-new-syntax: tracing/kprobes: Update kprobe-tracer selftest against new syntax. - patches.suse/tracing-kprobes-use-global-event-perf-buffers-in-kprobe-tracer: tracing/kprobes: Use global event perf buffers in kprobe tracer. - patches.suse/tracing-ksym_tracer-fix-the-output-of-ksym-tracer: tracing/ksym_tracer: fix the output of ksym tracer. - patches.suse/tracing-ksym_tracer-fix-write-operation-of-ksym_trace_filter: tracing/ksym_tracer: fix write operation of ksym_trace_filter. - patches.suse/tracing-ksym_tracer-support-quick-clear-for-ksym_trace_filter-v2: tracing/ksym_tracer: support quick clear for ksym_trace_filter - - v2. - patches.suse/tracing-move-syscalls-metadata-handling-from-arch-to-core: tracing: Move syscalls metadata handling from arch to core. - patches.suse/tracing-perf_events-protect-the-buffer-from-recursion-in-perf: tracing, perf_events: Protect the buffer from recursion in perf. - patches.suse/tracing-profile-add-filter-support: tracing/profile: Add filter support. - patches.suse/tracing-pushdown-the-bkl-tracepoints-calls: tracing: Pushdown the bkl tracepoints calls. - patches.suse/tracing-remove-unneeded-pointer-casts: tracing: Remove unneeded pointer casts. - patches.suse/tracing-remove-unused-ftrace_trace_addr-helper: tracing: Remove unused ftrace_trace_addr helper. - patches.suse/tracing-rename-lockdep-event-subsystem-into-lock: tracing: Rename 'lockdep' event subsystem into 'lock'. - patches.suse/tracing-rename-set_ftrace-to-set_bootup_ftrace: tracing: Rename set_ftrace to set_bootup_ftrace. - patches.suse/tracing-restore-original-format-of-sched-events: tracing: Restore original format of sched events. - patches.suse/tracing-restore-the-const-qualifier-for-field-names-and-types-definition: tracing: Restore the const qualifier for field names and types definition. - patches.suse/tracing-slab-define-kmem_cache_alloc_notrace-ifdef-config_tracing: tracing, slab: Define kmem_cache_alloc_notrace ifdef CONFIG_TRACING. - patches.suse/tracing-slab-fix-no-callsite-ifndef-config_kmemtrace: tracing, slab: Fix no callsite ifndef CONFIG_KMEMTRACE. - patches.suse/tracing-support-multiple-pids-in-set_pid_ftrace-file: tracing: Support multiple pids in set_pid_ftrace file. - patches.suse/tracing-syscalls-make-syscall-events-print-callbacks-static: tracing/syscalls: Make syscall events print callbacks static. - patches.suse/tracing-use-the-perf-recursion-protection-from-trace-event: tracing: Use the perf recursion protection from trace event. - patches.suse/x86-add-aes-opcodes-to-opcode-map: x86: Add AES opcodes to opcode map. - patches.suse/x86-add-amd-prefetch-and-3dnow-opcodes-to-opcode-map: x86: Add AMD prefetch and 3DNow! opcodes to opcode map. - patches.suse/x86-add-intel-fma-instructions-to-x86-opcode-map: x86: Add Intel FMA instructions to x86 opcode map. - patches.suse/x86-add-mmx-sse-opcode-groups-to-opcode-map: x86: Add MMX/SSE opcode groups to opcode map. - patches.suse/x86-add-mmx-support-for-instruction-decoder: x86: Add MMX support for instruction decoder. - patches.suse/x86-add-pclmulq-to-x86-opcode-map: x86: Add pclmulq to x86 opcode map. - patches.suse/x86-add-pt_regs-register-and-stack-access-apis: x86: Add pt_regs register and stack access APIs. - patches.suse/x86-add-verbose-option-to-insn-decoder-test: x86: Add verbose option to insn decoder test. - patches.suse/x86-add-via-processor-instructions-in-opcodes-decoder: x86: Add VIA processor instructions in opcodes decoder. - patches.suse/x86-allow-x86-32-instruction-decoder-selftest-on-x86-64: x86: Allow x86-32 instruction decoder selftest on x86-64. - patches.suse/x86-apic-fix-spurious-error-interrupts-triggering-on-all-non-boot-aps: x86, apic: Fix spurious error interrupts triggering on all non-boot APs. - patches.suse/x86-avx-instruction-set-decoder-support: x86: AVX instruction set decoder support. - patches.suse/x86-check-awk-features-before-generating-inat-tables-c: x86: Check awk features before generating inat-tables.c. - patches.suse/x86-compile-insn-c-and-inat-c-only-for-kprobes: x86: Compile insn.c and inat.c only for KPROBES. - patches.suse/x86-fix-comments-of-register-stack-access-functions: x86: Fix comments of register/stack access functions. - patches.suse/x86-fix-group-attribute-decoding-bug: x86: Fix group attribute decoding bug. - patches.suse/x86-fix-insn-decoder-test-typos: x86: Fix insn decoder test typos. - patches.suse/x86-fix-sse-opcode-map-bug: x86: Fix SSE opcode map bug. - patches.suse/x86-fix-x86-instruction-decoder-selftest-to-check-only-text: x86: Fix x86 instruction decoder selftest to check only .text. - patches.suse/x86-fixup-wrong-debug-exception-frame-link-in-stacktraces: x86: Fixup wrong debug exception frame link in stacktraces. - patches.suse/x86-fixup-wrong-irq-frame-link-in-stacktraces: x86: Fixup wrong irq frame link in stacktraces. - patches.suse/x86-hw-breakpoints-actually-flush-thread-breakpoints-in-flush_thread: x86/hw-breakpoints: Actually flush thread breakpoints in flush_thread(). - patches.suse/x86-hw-breakpoints-don-t-lose-ge-flag-while-disabling-a-breakpoint: x86/hw-breakpoints: Don't lose GE flag while disabling a breakpoint. - patches.suse/x86-hw_breakpoint-c-arch_check_va_in_kernelspace-and-hw_breakpoint_handler-should-be-static: x86: hw_breakpoint.c arch_check_va_in_kernelspace and hw_breakpoint_handler should be static. - patches.suse/x86-insn-decoder-test-checks-objdump-version: x86: insn decoder test checks objdump version. - patches.suse/x86-insn-delete-empty-or-incomplete-inat-tables-c: x86 insn: Delete empty or incomplete inat-tables.c. - patches.suse/x86-instruction-decoder-api: x86: Instruction decoder API. - patches.suse/x86-instruction-decoder-fix-test_get_len-build-rules: x86, instruction decoder: Fix test_get_len build rules. - patches.suse/x86-instruction-decoder-test-should-generate-build-warning: x86: Instruction decoder test should generate build warning. - patches.suse/x86-mark-ptrace_get_debugreg-as-static: x86: Mark ptrace_get_debugreg() as static. - patches.suse/x86-mark-the-thermal-init-functions-__init: x86: Mark the thermal init functions __init. - patches.suse/x86-mce-add-__cpuinit-to-hotplug-callback-functions: x86, mce: Add __cpuinit to hotplug callback functions. - patches.suse/x86-mce-add-a-global-mce-init-helper: x86, mce: Add a global MCE init helper. - patches.suse/x86-mce-fix-__init-annotations: x86, mce: Fix __init annotations. - patches.suse/x86-mce-fix-up-mce-naming-nomenclature: x86, mce: Fix up MCE naming nomenclature. - patches.suse/x86-merge-inat_rexpfx-into-inat_pfx_: x86: Merge INAT_REXPFX into INAT_PFX_*. - patches.suse/x86-perf-events-check-if-we-have-apic-enabled: x86, perf events: Check if we have APIC enabled. - patches.suse/x86-perf-exclude-the-debug-stack-from-the-callchains: x86/perf: Exclude the debug stack from the callchains. - patches.suse/x86-perf-probe-fix-warning-in-test_get_len: x86, perf probe: Fix warning in test_get_len(). - patches.suse/x86-ptrace-fix-regs_get_argument_nth-to-add-correct-offset: x86/ptrace: Fix regs_get_argument_nth() to add correct offset. - patches.suse/x86-remove-unused-config-macros-from-instruction-decoder-selftest: x86: Remove unused config macros from instruction decoder selftest. - patches.suse/x86-rename-global-percpu-symbol-dr7-to-cpu_dr7: x86: Rename global percpu symbol dr7 to cpu_dr7. - patches.suse/x86-show-symbol-name-if-insn-decoder-test-failed: x86: Show symbol name if insn decoder test failed. - patches.suse/x86-tighten-conditionals-on-mce-related-statistics: x86: Tighten conditionals on MCE related statistics. - patches.suse/x86-under-bios-control-restore-ap-s-apic_lvtthmr-to-the-bsp-value: x86: Under BIOS control, restore AP's APIC_LVTTHMR to the BSP value. - patches.suse/x86-x86-instruction-decoder-build-time-selftest: x86: X86 instruction decoder build-time selftest.- more USB 3.0 work, .34->.35 still not finished with .35 - patches.drivers/USB3-0190-USB-ipw-clean-up-dtr-rts-handling.patch: USB: ipw: clean up dtr-rts handling. - patches.drivers/USB3-0191-USB-ipw-remove-dummy-port_probe-and-port_remove.patch: USB: ipw: remove dummy port_probe and port_remove. - patches.drivers/USB3-0192-USB-ipw-reimplement-using-generic-framework.patch: USB: ipw: reimplement using generic framework. - patches.drivers/USB3-0193-USB-io_edgeport-Use-kzalloc.patch: USB: io_edgeport: Use kzalloc. - patches.drivers/USB3-0194-USB-cp210x-remove-redundant-disconnect.patch: USB: cp210x: remove redundant disconnect(). - patches.drivers/USB3-0195-USB-FHCI-cq_get-should-check-kfifo_out-s-return-value.patch: USB: FHCI: cq_get() should check kfifo_out()'s return value. - patches.drivers/USB3-0196-USB-mct_u232.h-checkpatch-cleanups.patch: USB: mct_u232.h: checkpatch cleanups. - patches.drivers/USB3-0197-USB-belkin_sa.h-checkpatch-cleanups.patch: USB: belkin_sa.h: checkpatch cleanups. - patches.drivers/USB3-0198-USB-cypress_m8.h-checkpatch-cleanups.patch: USB: cypress_m8.h: checkpatch cleanups. - patches.drivers/USB3-0199-USB-ftdi_sio-checkpatch-cleanups.patch: USB: ftdi_sio: checkpatch cleanups. - patches.drivers/USB3-0200-USB-io_edgeport-checkpatch-cleanups.patch: USB: io_edgeport: checkpatch cleanups. - patches.drivers/USB3-0201-USB-kl5kusb105.h-checkpatch-cleanups.patch: USB: kl5kusb105.h: checkpatch cleanups. - patches.drivers/USB3-0202-USB-kobil_sct.h-checkpatch-cleanups.patch: USB: kobil_sct.h: checkpatch cleanups. - patches.drivers/USB3-0203-USB-pl2303.h-checkpatch-cleanups.patch: USB: pl2303.h: checkpatch cleanups. - patches.drivers/USB3-0204-USB-visor.h-checkpatch-cleanups.patch: USB: visor.h: checkpatch cleanups. - patches.drivers/USB3-0205-USB-usb.h-checkpatch-cleanups.patch: USB: usb.h: checkpatch cleanups. - patches.drivers/USB3-0206-USB-include-usb-.h-checkpatch-cleanup.patch: USB: include/usb/*.h checkpatch cleanup. - patches.drivers/USB3-0207-USB-remove-match_device.patch: USB: remove match_device. - patches.drivers/USB3-0208-USB-xhci-fix-compiler-warning.patch: USB: xhci: fix compiler warning.- Update config files for hardware breakpoints.- patches.fixes/perfcounter-no-update-if-register-shrinks: declare "u64 delta;" missed by IBM backport.- patches.drivers/powerpc-eeh-add-support-for-rtas-ibm-config-pe: powerpc/eeh: Add support for ibm,configure-pe RTAS call (bnc#699495). - patches.drivers/powerpc-eeh-display-bus-and-device-location: powerpc/eeh: Display eeh error location for bus and device (bnc#699495). - patches.drivers/powerpc-eeh-retry-unsupported-fundamental-reset-function: powerpc/pseries/eeh: Handle functional reset on non-PCIe device (bnc#699495). - patches.drivers/powerpc-eeh-set-pe-freset: powerpc/pseries/eeh: Propagate needs_freset flag to device at PE (bnc#699495). - patches.fixes/perfcounter-no-update-if-register-shrinks: backport: POWER: perf_event: Skip updating kernel counters if register value shrinks (bnc#695243). - patches.drivers/eeh-fix-early-boot-oops: Delete. Obsoleted by the eeh changes above.- Update config files. - patches.drivers/bnx2fc-driver.patch: bnx2fc: Add new driver (FATE#311462,bnc#698053). - patches.drivers/cxgb3i-change-cxgb3i-to-use-libcxgbi.patch: Refresh. - patches.drivers/cxgb4i-v5-iscsi-driver.patch: Refresh. - patches.suse/iscsi-boot-mv-iscsi_boot_sysfs-to-drivers-sc.patch: Refresh. - supported.conf: Mark bnx2fc as supported.- Delete the novfs patches, the module will be shipped in a sepparate novfs-kmp package.- patches.drivers/cciss-update-to-3.6.26.patch: cciss: Update to version 3.6.26 (FATE#311200,bnc#703422). - patches.drivers/cciss-update-to-4.6.28.patch: cciss: Update to version 4.6.28 (FATE#311200,bnc#703422). - patches.drivers/hpsa-update-to-hp-version.patch: hpsa: Update to latest code drop from HP (FATE#311201,bnc#703426). - patches.drivers/hpsa-update-to-mainline.patch: hpsa: Update to latest mainline version (FATE#311201,bnc#703426).- patches.xen/xen-x86-ioremap_xen.patch: Replace by... - patches.xen/xen3-001-apei_infrastructure.patch: APEI infrastructure support (fate#311701,fate#311703,fate#311704,fate#311771,fate#311706, fate#311772,bnc#697859). - patches.xen/xen3-USB3-0029-USB-make-hcd.h-public-drivers-dependency.patch: USB: make hcd.h public (drivers dependency). - patches.xen/xen3-USB3-0038-USB-remove-uses-of-URB_NO_SETUP_DMA_MAP.patch: USB: remove uses of URB_NO_SETUP_DMA_MAP. - Refresh other Xen patches.- Update config files. - patches.fixes/hw_breakpoint-fix-cpu-offset.patch: ksym_tracer: Fix to make the tracer work (FATE#311653, BNC#702123). - patches.fixes/perf-fix-hw_breakpoint-dependancy.patch: hw-breakpoints: Fix hardware breakpoints -> perf events dependency (FATE#311653, BNC#702123). - patches.suse/ppc64-hardware-breakpoints.patch: Powerpc Hardware Breakpoint Support (FATE#311653, BNC#702123). - patches.xen/xen3-patch-2.6.30: Refresh.- more USB 3.0 work, .34->.35 still not finished with .35, eyes going blurry... - patches.drivers/USB3-0130-USB-export-the-new-ch11.h-file-to-userspce.patch: USB: export the new ch11.h file to userspce. - patches.drivers/USB3-0131-USB-remove-the-usb_host_ss_ep_comp-structure.patch: USB: remove the usb_host_ss_ep_comp structure. - patches.drivers/USB3-0132-USB-remove-URB_NO_SETUP_DMA_MAP.patch: USB: remove URB_NO_SETUP_DMA_MAP. - patches.drivers/USB3-0133-USB-xhci-Avoid-double-free-after-streams-are-disabled.patch: USB: xhci: Avoid double free after streams are disabled. - patches.drivers/USB3-0135-USB-qcaux-add-Samsung-U520-device-ID.patch: USB: qcaux: add Samsung U520 device ID. - patches.drivers/USB3-0140-USB-whci-declare-functions-as-static.patch: USB: whci: declare functions as static. - patches.drivers/USB3-0141-USB-oti6858-declare-send_data-as-static.patch: USB: oti6858: declare send_data() as static. - patches.drivers/USB3-0142-usb-sisusb_con.c-fix-shadows-sparse-warning.patch: usb: sisusb_con.c: fix shadows sparse warning. - patches.drivers/USB3-0143-usb-u132-hcd.c-fix-shadows-sparse-warning.patch: usb: u132-hcd.c: fix shadows sparse warning. - patches.drivers/USB3-0144-USB-Add-definition-for-the-Pipe-Usage-descriptor.patch: USB: Add definition for the Pipe Usage descriptor. - patches.drivers/USB3-0145-USB-Add-a-usb_pipe_endpoint-convenience-function.patch: USB: Add a usb_pipe_endpoint() convenience function. - patches.drivers/USB3-0146-USB-Turn-interface_to_usbdev-into-an-inline-function.patch: USB: Turn interface_to_usbdev into an inline function. - patches.drivers/USB3-0147-USB-Change-the-scatterlist-type-in-struct-urb.patch: USB: Change the scatterlist type in struct urb. - patches.drivers/USB3-0150-USB-simplify-usb_sg_init.patch: USB: simplify usb_sg_init(). - patches.drivers/USB3-0152-USB-ftdi_sio-switch-to-generic-write-implementation.patch: USB: ftdi_sio: switch to generic write implementation. - patches.drivers/USB3-0153-USB-ftdi_sio-clean-up-SIO-write-support.patch: USB: ftdi_sio: clean up SIO write support. - patches.drivers/USB3-0154-USB-aircable-rewrite-using-generic-read-and-write-implementa.patch: USB: aircable: rewrite using generic read and write implementations. - patches.drivers/USB3-0155-USB-serial-reimplement-generic-fifo-based-writes.patch: USB: serial: reimplement generic fifo-based writes. - patches.drivers/USB3-0156-USB-serial-remove-multi-urb-write-from-generic-driver.patch: USB: serial: remove multi-urb write from generic driver. - patches.drivers/USB3-0161-USB-xhci-Set-stream-ID-to-0-after-cleaning-up-stalls.patch: USB: xhci: Set stream ID to 0 after cleaning up stalls. - patches.drivers/USB3-0162-USB-fix-u132-hcd-code-data-warning.patch: USB: fix u132-hcd code/data warning. - patches.drivers/USB3-0164-USB-tty-fix-incorrect-use-of-tty_insert_flip_string_fixed_fl.patch: USB: tty: fix incorrect use of tty_insert_flip_string_fixed_flag. - patches.drivers/USB3-0165-USB-ark3116-reimplement-read-processing.patch: USB: ark3116: reimplement read processing. - patches.drivers/USB3-0166-USB-usbcore-Do-not-disable-USB3-protocol-ports-in-hub_activa.patch: USB: usbcore: Do not disable USB3 protocol ports in hub_activate(). - patches.drivers/USB3-0168-USB-ftdi_sio-use-tty_insert_flip_string_fixed_flag.patch: USB: ftdi_sio: use tty_insert_flip_string_fixed_flag. - patches.drivers/USB3-0169-USB-pl2303-use-tty_insert_flip_string_fixed_flag.patch: USB: pl2303: use tty_insert_flip_string_fixed_flag. - patches.drivers/USB3-0170-USB-ftdi_sio-clean-up-line-status-handling.patch: USB: ftdi_sio: clean up line-status handling. - patches.drivers/USB3-0175-USB-xhci-Transfer-ring-link-TRB-activation-change.patch: USB: xhci: Transfer ring link TRB activation change. - patches.drivers/USB3-0179-USB-add-missing-in-map_urb_for_dma.patch: USB: add missing "{}" in map_urb_for_dma. - patches.drivers/USB3-0181-USB-remove-usb_find_device.patch: USB: remove usb_find_device. - patches.drivers/USB3-0182-USB-xhci-Remove-the-arbitrary-limit-of-15-xHCI-ports.patch: USB: xhci: Remove the arbitrary limit of 15 xHCI ports. - patches.drivers/USB3-0187-USB-ir-usb-allow-custom-bulk-buffer-size-without-reallocatio.patch: USB: ir-usb: allow custom bulk buffer size without reallocation. - patches.drivers/USB3-0188-USB-ir-usb-fix-set_termios-race.patch: USB: ir-usb: fix set_termios race.- supported.conf: mark usb_wwan as supported- patches.drivers/USB3-0006-NET-usb-Adding-URB_ZERO_PACKET-flag-to-usbnet.c.patch: Refresh. - patches.drivers/USB3-0018-rndis_host-Poll-status-channel-before-control-channel.patch: Refresh. - patches.drivers/USB3-0020-drivers-net-usb-asix.c-Fix-unaligned-accesses.patch: Refresh. - patches.drivers/USB3-0021-drivers-net-usb-Use-kmemdup.patch: Refresh. - patches.drivers/USB3-0022-drivers-net-usb-Use-kmemdup.patch: Refresh. - patches.drivers/USB3-0023-drivers-net-usb-Use-kmemdup.patch: Refresh. - patches.drivers/USB3-0024-pegasus-fix-USB-device-ID-for-ETX-US2.patch: Refresh.- USB 3.0 update, 1/2 of the .34->35 update - Update config files. - patches.drivers/USB3-0006-NET-usb-Adding-URB_ZERO_PACKET-flag-to-usbnet.c.patch: NET: usb: Adding URB_ZERO_PACKET flag to usbnet.c. - patches.drivers/USB3-0015-include-linux-usb-audio.h-add-__attribute__-packed.patch: include/linux/usb/audio.h: add __attribute__((packed)). - patches.drivers/USB3-0018-rndis_host-Poll-status-channel-before-control-channel.patch: rndis_host: Poll status channel before control channel. - patches.drivers/USB3-0020-drivers-net-usb-asix.c-Fix-unaligned-accesses.patch: drivers/net/usb/asix.c: Fix unaligned accesses. - patches.drivers/USB3-0021-drivers-net-usb-Use-kmemdup.patch: drivers/net/usb: Use kmemdup. - patches.drivers/USB3-0022-drivers-net-usb-Use-kmemdup.patch: drivers/net/usb: Use kmemdup. - patches.drivers/USB3-0023-drivers-net-usb-Use-kmemdup.patch: drivers/net/usb: Use kmemdup. - patches.drivers/USB3-0024-pegasus-fix-USB-device-ID-for-ETX-US2.patch: pegasus: fix USB device ID for ETX-US2. - patches.drivers/USB3-0027-USB-xhci-Limit-bus-sg_tablesize-to-62-TRBs.patch: USB: xhci: Limit bus sg_tablesize to 62 TRBs. - patches.drivers/USB3-0029-USB-make-hcd.h-public-drivers-dependency.patch: USB: make hcd.h public (drivers dependency). - patches.drivers/USB3-0030-USB-make-hub.h-public-drivers-dependency.patch: USB: make hub.h public (drivers dependency). - patches.drivers/USB3-0031-USB-split-hub.h-into-ch11.h-and-merge-in-hcd.h.patch: USB: split hub.h into ch11.h and merge-in hcd.h. - patches.drivers/USB3-0032-USB-sisusbvga-Remove-the-BKL-from-ioctl.patch: USB: sisusbvga: Remove the BKL from ioctl. - patches.drivers/USB3-0033-USB-cdc-acm-make-bitfields-unsigned.patch: USB: cdc-acm: make bitfields unsigned. - patches.drivers/USB3-0034-USB-Remove-large-struct-from-the-stack-in-USB-storage-isd200.patch: USB: Remove large struct from the stack in USB storage isd200 driver. - patches.drivers/USB3-0035-USB-remove-duplicated-include.patch: USB: remove duplicated #include. - patches.drivers/USB3-0036-USB-remove-bogus-USB_PORT_FEAT_-_SPEED-symbols.patch: USB: remove bogus USB_PORT_FEAT_*_SPEED symbols. - patches.drivers/USB3-0037-USB-straighten-out-port-feature-vs.-port-status-usage.patch: USB: straighten out port feature vs. port status usage. - patches.drivers/USB3-0038-USB-remove-uses-of-URB_NO_SETUP_DMA_MAP.patch: USB: remove uses of URB_NO_SETUP_DMA_MAP. - patches.drivers/USB3-0039-USB-ehci-au1xxx-does-not-need-EHCI-IO-watchdog.patch: USB: ehci-au1xxx does not need EHCI IO watchdog. - patches.drivers/USB3-0040-usb-serial-Use-tty_port-version-console-instead-of-usb_seria.patch: usb-serial: Use tty_port version console instead of usb_serial_port. - patches.drivers/USB3-0050-usb-console-pass-baud-from-console-to-the-initial-tty-open.patch: usb-console: pass baud from console to the initial tty open. - patches.drivers/USB3-0051-USB-Serial-Driver-ZIO-Motherboard.patch: USB Serial Driver: ZIO Motherboard. - patches.drivers/USB3-0052-usb-fix-serial-build-when-SYSRQ-is-disabled.patch: usb: fix serial build when SYSRQ is disabled. - patches.drivers/USB3-0053-USB-Add-a-new-quirk-USB_QUIRK_HONOR_BNUMINTERFACES.patch: USB: Add a new quirk: USB_QUIRK_HONOR_BNUMINTERFACES. - patches.drivers/USB3-0054-USB-serial-allow-drivers-to-define-bulk-buffer-sizes.patch: USB: serial: allow drivers to define bulk buffer sizes. - patches.drivers/USB3-0055-USB-cp210x-increase-the-bulk-out-buffer-size-to-256-byte.patch: USB: cp210x: increase the bulk-out buffer size to 256 byte. - patches.drivers/USB3-0056-USB-cp210x-increase-bulk-in-buffer-size-to-256-byte.patch: USB: cp210x: increase bulk-in buffer size to 256 byte. - patches.drivers/USB3-0057-USB-pl2303-increase-the-bulk-out-buffer-size-to-256-byte.patch: USB: pl2303: increase the bulk-out buffer size to 256 byte. - patches.drivers/USB3-0058-USB-pl2303-increase-bulk-in-buffer-size-to-256-byte.patch: USB: pl2303: increase bulk-in buffer size to 256 byte. - patches.drivers/USB3-0059-USB-serial-fix-generic-chars_in_buffer.patch: USB: serial: fix generic chars_in_buffer. - patches.drivers/USB3-0060-USB-serial-fix-missing-locking-on-fifo-in-write-callback.patch: USB: serial: fix missing locking on fifo in write callback. - patches.drivers/USB3-0061-USB-serial-clear-fifo-on-close.patch: USB: serial: clear fifo on close. - patches.drivers/USB3-0062-USB-serial-refactor-generic-close.patch: USB: serial: refactor generic close. - patches.drivers/USB3-0063-USB-serial-refactor-read-urb-submission-in-generic-driver.patch: USB: serial: refactor read urb submission in generic driver. - patches.drivers/USB3-0064-USB-serial-remove-unnecessary-re-initialisation-of-generic-u.patch: USB: serial: remove unnecessary re-initialisation of generic urbs. - patches.drivers/USB3-0065-USB-cp210x-use-generic-submit_read_urb-at-open.patch: USB: cp210x: use generic submit_read_urb at open. - patches.drivers/USB3-0066-USB-serial-clean-up-read-processing-in-generic-driver.patch: USB: serial: clean up read processing in generic driver. - patches.drivers/USB3-0067-USB-serial-generalise-generic-read-implementation.patch: USB: serial: generalise generic read implementation. - patches.drivers/USB3-0068-USB-pl2303-switch-to-generic-read-implementation.patch: USB: pl2303: switch to generic read implementation. - patches.drivers/USB3-0069-USB-serial-export-generic-throttle-and-unthrottle.patch: USB: serial: export generic throttle and unthrottle. - patches.drivers/USB3-0070-USB-ftdi_sio-switch-to-generic-read-implementation.patch: USB: ftdi_sio: switch to generic read implementation. - patches.drivers/USB3-0071-USB-serial-clean-up-some-error-and-debug-messages-in-generic.patch: USB: serial: clean up some error and debug messages in generic driver. - patches.drivers/USB3-0072-USB-serial-clean-up-generic-write-start-busy-test.patch: USB: serial: clean up generic write start busy test. - patches.drivers/USB3-0073-USB-pl2303-switch-to-generic-write-implementation.patch: USB: pl2303: switch to generic write implementation. - patches.drivers/USB3-0074-USB-pl2303-use-generic-close.patch: USB: pl2303: use generic close. - patches.drivers/USB3-0075-USB-usb_debug-use-the-generic-kfifo-based-write-implementati.patch: USB: usb_debug: use the generic kfifo-based write implementation. - patches.drivers/USB3-0076-USB-serial-allow-custom-multi-urb-write-bulk-callbacks.patch: USB: serial: allow custom multi-urb write bulk callbacks. - patches.drivers/USB3-0077-USB-serial-re-implement-multi-urb-writes-in-generic-driver.patch: USB: serial: re-implement multi-urb writes in generic driver. - patches.drivers/USB3-0078-USB-serial-generalise-write-buffer-preparation.patch: USB: serial: generalise write buffer preparation. - patches.drivers/USB3-0079-USB-ftdi_sio-fix-some-coding-style-issues.patch: USB: ftdi_sio: fix some coding style issues. - patches.drivers/USB3-0081-USB-option.c-option_indat_callback-Resubmit-some-unsuccessfu.patch: USB: option.c: option_indat_callback: Resubmit some unsuccessful URBs. - patches.drivers/USB3-0098-USB-fix-usbmon-and-DMA-mapping-for-scatter-gather-URBs.patch: USB: fix usbmon and DMA mapping for scatter-gather URBs. - patches.drivers/USB3-0103-usb-serial-Add-generic-USB-wwan-support.patch: usb serial: Add generic USB wwan support. - patches.drivers/USB3-0104-USB-option-Use-generic-USB-wwan-code.patch: USB: option: Use generic USB wwan code. - patches.drivers/USB3-0105-USB-qcserial-Use-generic-USB-wwan-code.patch: USB: qcserial: Use generic USB wwan code. - patches.drivers/USB3-0106-USB-qcserial-Add-support-for-Qualcomm-Gobi-2000-devices.patch: USB: qcserial: Add support for Qualcomm Gobi 2000 devices. - patches.drivers/USB3-0107-USB-Add-parsing-of-SuperSpeed-endpoint-companion-descriptor.patch: USB: Add parsing of SuperSpeed endpoint companion descriptor. - patches.drivers/USB3-0108-USB-Add-stream-ID-field-to-struct-urb.patch: USB: Add stream ID field to struct urb. - patches.drivers/USB3-0109-USB-xhci-Add-memory-allocation-for-USB3-bulk-streams.patch: USB: xhci: Add memory allocation for USB3 bulk streams. - patches.drivers/USB3-0110-USB-xhci-Correct-assumptions-about-number-of-rings-per-endpo.patch: USB: xhci: Correct assumptions about number of rings per endpoint. - patches.drivers/USB3-0111-USB-Support-for-allocating-USB-3.0-streams.patch: USB: Support for allocating USB 3.0 streams. - patches.drivers/USB3-0112-USB-storage-Remove-unneeded-SL11R-unusual_devs-entry.patch: USB: storage: Remove unneeded SL11R unusual_devs entry. - patches.drivers/USB3-0113-USB-ehci-Elide-I-O-watchdog-on-NEC-parts.patch: USB: ehci: Elide I/O watchdog on NEC parts. - patches.drivers/USB3-0115-USB-ueagle-fix-Coding-Styles.patch: USB: ueagle: fix Coding Styles. - patches.drivers/USB3-0116-USB-devices-fix-Coding-Styles.patch: USB: devices: fix Coding Styles. - patches.drivers/USB3-0117-USB-rename-usb_buffer_alloc-and-usb_buffer_free-users.patch: USB: rename usb_buffer_alloc() and usb_buffer_free() users. - patches.drivers/USB3-0118-USB-usbserial-mos7720-add-support-for-parallel-port-on-mosch.patch: USB: usbserial: mos7720: add support for parallel port on moschip 7715. - patches.drivers/USB3-0119-USB-usbserial-mos7720-cleanup-consolidation-replace-send_mos.patch: USB: usbserial: mos7720: cleanup, consolidation, replace send_mos_cmd with {read,write}_mos_reg. - patches.drivers/USB3-0120-USB-usbserial-fix-mos7720-dependencies.patch: USB: usbserial: fix mos7720 dependencies. - patches.drivers/USB3-0121-usb-cdc-ncm-constants-and-structures-added.patch: usb: cdc: ncm constants and structures added. - patches.drivers/USB3-0122-USB-ncm-added-ncm.h-with-auxiliary-definitions.patch: USB: ncm: added ncm.h with auxiliary definitions. - patches.drivers/USB3-0123-USB-core-config.c-usb_get_configuration-simplified.patch: USB: core: config.c: usb_get_configuration() simplified. - patches.drivers/USB3-0124-USB-clean-up-some-host-controller-sparse-warnings.patch: USB: clean up some host controller sparse warnings. - patches.drivers/USB3-0127-USB-sisusbvga-Remove-the-BKL-from-open.patch: USB: sisusbvga: Remove the BKL from open. - patches.drivers/USB3-0128-USB-mos7840-Cleanup-useless-header.patch: USB: mos7840: Cleanup useless header. - patches.suse/kdb-common: Refresh.- USB 3.0 update, .33->.34 patches - Update config files. - patches.drivers/USB3-0001-drivers-net-usb-rtl8150.c-use-pM-to-shown-MAC-address.patch: drivers/net/usb/rtl8150.c: use %pM to shown MAC address. - patches.drivers/USB3-0001-net-use-helpers-to-access-mc-list-v2.patch: net: use helpers to access mc list V2. - patches.drivers/USB3-0001-net-use-helpers-to-access-uc-list-v2.patch: net: use helpers to access uc list V2. - patches.drivers/USB3-0001-usb-tty-add-a-function-to-insert-a-string-of-characters.patch: USB: tty: Add a function to insert a string of characters with the same flag. - patches.drivers/USB3-0001-usbnet-Use-wwan-d-interface-name-for-mobile-broadband-device.patch: usbnet: Use wwan%d interface name for mobile broadband devices. - patches.drivers/USB3-0002-drivers-net-usb-catc.c-use-pM-to-shown-MAC-address.patch: drivers/net/usb/catc.c: use %pM to shown MAC address. - patches.drivers/USB3-0003-MCS7830-USB-Ether-add-Rx-error-support.patch: MCS7830 USB-Ether: add Rx error support. - patches.drivers/USB3-0004-MCS7830-USB-Ether-Spelling-corrections.patch: MCS7830 USB-Ether: Spelling corrections. - patches.drivers/USB3-0005-MCS7830-USB-Ether-change-register-define.patch: MCS7830 USB-Ether: change register define. - patches.drivers/USB3-0006-MCS7830-USB-Ether-resume-_with_-working-link-via-.reset_resu.patch: MCS7830 USB-Ether: resume _with_ working link, via .reset_resume support. - patches.drivers/USB3-0006-usbnet-Set-link-down-initially-for-drivers-that-update-link-.patch: Refresh. - patches.drivers/USB3-0010-net-dm9601-convert-to-use-mc-helpers.patch: net: dm9601: convert to use mc helpers. - patches.drivers/USB3-0012-net-use-netdev_mc_count-and-netdev_mc_empty-when-appropriate.patch: net: use netdev_mc_count and netdev_mc_empty when appropriate. - patches.drivers/USB3-0013-usbnet-cdc-ether-Autosuspend-for-online-devices.patch: Refresh. - patches.drivers/USB3-0015-usbnet-Convert-dev-dbg-err-warn-info-macros-to-netdev_-level.patch: usbnet: Convert dev(dbg|err|warn|info) macros to netdev_. - patches.drivers/USB3-0016-drivers-net-usb-Use-netif_-level-logging-facilities.patch: drivers/net/usb: Use netif_ logging facilities. - patches.drivers/USB3-0017-net-usb-convert-to-use-netdev_for_each_mc_addr.patch: net/usb: convert to use netdev_for_each_mc_addr. - patches.drivers/USB3-0025-Lower-USB-storage-settling-delay-to-something-more-reasonabl.patch: Lower USB storage settling delay to something more reasonable. - patches.drivers/USB3-0031-USB-cxacru-return-an-empty-value-for-modulation-if-there-is-.patch: USB: cxacru: return an empty value for modulation if there is no connection. - patches.drivers/USB3-0032-USB-cxacru-check-data-length-is-not-negative.patch: USB: cxacru: check data length is not negative. - patches.drivers/USB3-0033-USB-cxacru-check-device-isn-t-being-removed-during-sysfs-cal.patch: USB: cxacru: check device isn't being removed during sysfs calls. - patches.drivers/USB3-0034-USB-cxacru-document-how-to-interact-with-the-flash-memory.patch: USB: cxacru: document how to interact with the flash memory. - patches.drivers/USB3-0035-USB-cxacru-firmware-writes-on-OHCI-are-slow-log-progress.patch: USB: cxacru: firmware writes on OHCI are slow, log progress. - patches.drivers/USB3-0036-USB-cxacru-add-write-only-sysfs-attribute-for-modem-configur.patch: USB: cxacru: add write-only sysfs attribute for modem configuration. - patches.drivers/USB3-0037-USB-cxacru-remove-cxacru-cf.bin-loader.patch: USB: cxacru: remove cxacru-cf.bin loader. - patches.drivers/USB3-0038-USB-cxacru-increment-driver-version.patch: USB: cxacru: increment driver version. - patches.drivers/USB3-0039-USB-ftdi_sio-fix-error-message-on-close.patch: USB: ftdi_sio: fix error message on close. - patches.drivers/USB3-0040-USB-ftdi_sio-remove-obsolete-comment.patch: USB: ftdi_sio: remove obsolete comment. - patches.drivers/USB3-0041-USB-serial-fix-typo-in-debug-message.patch: USB: serial: fix typo in debug message. - patches.drivers/USB3-0042-USB-ftdi_sio-fix-initialisation-of-latency-timeout.patch: USB: ftdi_sio: fix initialisation of latency timeout. - patches.drivers/USB3-0043-USB-ftdi_sio-remove-support-for-5-and-6-data-bits.patch: USB: ftdi_sio: remove support for 5 and 6 data bits. - patches.drivers/USB3-0046-USB-serial-mct_usb232-move-DMA-buffers-to-heap.patch: USB: serial mct_usb232: move DMA buffers to heap. - patches.drivers/USB3-0047-cdc_acm-add-reset_resume-method.patch: cdc_acm: add reset_resume method. - patches.drivers/USB3-0048-USB-check-the-endpoint-type-against-the-pipe-type.patch: USB: check the endpoint type against the pipe type. - patches.drivers/USB3-0049-USB-xhci-Fix-error-path-when-configuring-endpoints.patch: USB: xhci: Fix error path when configuring endpoints. - patches.drivers/USB3-0050-USB-xhci-Refactor-code-to-free-or-cache-endpoint-rings.patch: USB: xhci: Refactor code to free or cache endpoint rings. - patches.drivers/USB3-0051-USB-xhci-Allow-allocation-of-commands-without-input-contexts.patch: USB: xhci: Allow allocation of commands without input contexts. - patches.drivers/USB3-0052-USB-xhci-Refactor-test-for-vendor-specific-completion-codes.patch: USB: xhci: Refactor test for vendor-specific completion codes. - patches.drivers/USB3-0053-USB-xhci-Refactor-code-to-clear-port-change-bits.patch: USB: xhci: Refactor code to clear port change bits. - patches.drivers/USB3-0054-USB-xhci-Allow-roothub-ports-to-be-disabled.patch: USB: xhci: Allow roothub ports to be disabled. - patches.drivers/USB3-0055-USB-xhci-Notify-the-xHC-when-a-device-is-reset.patch: USB: xhci: Notify the xHC when a device is reset. - patches.drivers/USB3-0056-USB-Add-call-to-notify-xHC-of-a-device-reset.patch: USB: Add call to notify xHC of a device reset. - patches.drivers/USB3-0057-USB-ehci-add-call-of-free_cached_itd_list-function-in-disabl.patch: USB: ehci: add call of free_cached_itd_list() function in disable_periodic(). - patches.drivers/USB3-0058-USB-ehci-fix-audio-record-functionality-for-some-Full-speed-.patch: USB: ehci: fix audio record functionality for some Full speed sound blaster devices. - patches.drivers/USB3-0068-USB-xhci-No-GFP_KERNEL-in-block-error-handling.patch: USB: xhci: No GFP_KERNEL in block error handling. - patches.drivers/USB3-0069-USB-wusb-check-CHID-is-all-zeros-before-stopping-the-host.patch: USB: wusb: check CHID is all zeros before stopping the host. - patches.drivers/USB3-0072-USB-storage-Never-reset-devices-that-will-morph-to-an-old-mo.patch: USB: storage: Never reset devices that will morph to an old mode. - patches.drivers/USB3-0073-USB-Export-QUIRK_RESET_MORPHS-through-sysfs.patch: USB: Export QUIRK_RESET_MORPHS through sysfs. - patches.drivers/USB3-0074-USB-cypress_m8-stop-using-USB-debug-driver-config.patch: USB: cypress_m8: stop using USB debug driver config. - patches.drivers/USB3-0075-USB-cypress_m8-unify-confusing-new-baudrate-check.patch: USB: cypress_m8: unify confusing new baudrate check. - patches.drivers/USB3-0076-USB-cypress_m8-allow-unstable-baud-rates.patch: USB: cypress_m8: allow unstable baud rates. - patches.drivers/USB3-0086-usbmon-add-bus-number-to-text-API.patch: usbmon: add bus number to text API. - patches.drivers/USB3-0087-USB-cdc_acm-Add-support-for-pbLua-console-port.patch: USB: cdc_acm: Add support for pbLua console port. - patches.drivers/USB3-0088-USB-cdc_acm-Silence-It-is-not-a-modem.-error-for-pbLua-devic.patch: USB: cdc_acm: Silence "It is not a modem." error for pbLua devices. - patches.drivers/USB3-0090-USB-rename-USB_SPEED_VARIABLE-to-USB_SPEED_WIRELESS.patch: USB: rename USB_SPEED_VARIABLE to USB_SPEED_WIRELESS. - patches.drivers/USB3-0091-USB-ftdi_sio-use-error-code-from-usb-stack-in-read_latency_t.patch: USB: ftdi_sio: use error code from usb stack in read_latency_timer. - patches.drivers/USB3-0092-USB-ftdi_sio-fix-latency-timeout-endianess-bug.patch: USB: ftdi_sio: fix latency-timeout endianess bug. - patches.drivers/USB3-0093-USB-ftdi_sio-fix-DMA-buffers-on-stack.patch: USB: ftdi_sio: fix DMA buffers on stack. - patches.drivers/USB3-0094-USB-ftdi_sio-clean-up-modem-status-handling.patch: USB: ftdi_sio: clean up modem status handling. - patches.drivers/USB3-0095-USB-ftdi_sio-remove-unnecessary-initialisations.patch: USB: ftdi_sio: remove unnecessary initialisations. - patches.drivers/USB3-0096-USB-usblp-Remove-checks-no-longer-needed-with-the-new-runtim.patch: USB: usblp: Remove checks no longer needed with the new runtime PM system. - patches.drivers/USB3-0110-USB-ch341-replace-printk-warnings-with-dev_err.patch: USB: ch341: replace printk warnings with dev_err. - patches.drivers/USB3-0111-USB-ch341-fix-DMA-buffer-on-stack.patch: USB: ch341: fix DMA buffer on stack. - patches.drivers/USB3-0112-USB-ch341-use-le16_to_cpup-to-be-explicit-about-endianess.patch: USB: ch341: use le16_to_cpup to be explicit about endianess. - patches.drivers/USB3-0113-USB-cypress_m8-fix-DMA-buffer-on-stack.patch: USB: cypress_m8: fix DMA buffer on stack. - patches.drivers/USB3-0114-USB-cypress_m8-fix-endianess-bug.patch: USB: cypress_m8: fix endianess bug. - patches.drivers/USB3-0115-USB-io_ti-fix-DMA-buffers-on-stack.patch: USB: io_ti: fix DMA buffers on stack. - patches.drivers/USB3-0116-USB-keyspan_pda-fix-DMA-buffers-on-stack.patch: USB: keyspan_pda: fix DMA buffers on stack. - patches.drivers/USB3-0117-USB-kl5kusb105-fix-DMA-buffers-on-stack.patch: USB: kl5kusb105: fix DMA buffers on stack. - patches.drivers/USB3-0118-USB-mos7720-fix-DMA-buffers-on-stack-and-clean-up-send_mos_c.patch: USB: mos7720: fix DMA buffers on stack and clean up send_mos_cmd. - patches.drivers/USB3-0120-USB-oti6858-fix-DMA-buffer-on-stack.patch: USB: oti6858: fix DMA buffer on stack. - patches.drivers/USB3-0121-USB-visor-fix-DMA-buffers-on-stack.patch: USB: visor: fix DMA buffers on stack. - patches.drivers/USB3-0122-USB-kobil_sct-clean-up-kobil_set_termios.patch: USB: kobil_sct: clean up kobil_set_termios. - patches.drivers/USB3-0123-USB-serial-fix-DMA-buffers-on-stack-for-io_edgeport.c.patch: USB: serial: fix DMA buffers on stack for io_edgeport.c. - patches.drivers/USB3-0124-USB-ch341-use-get_unaligned_le16-in-break_ctl.patch: USB: ch341: use get_unaligned_le16 in break_ctl. - patches.drivers/USB3-0125-USB-cypress_m8-use-put_unaligned_le32-where-necessary.patch: USB: cypress_m8: use put_unaligned_le32() where necessary. - patches.drivers/USB3-0126-USB-FHCI-Correct-the-size-argument-to-kzalloc.patch: USB: FHCI: Correct the size argument to kzalloc. - patches.drivers/USB3-0127-USB-c67x00-use-resource_size.patch: USB: c67x00: use resource_size(). - patches.drivers/USB3-0128-USB-xhci-Fix-compile-issues-with-xhci_get_slot_state.patch: USB: xhci: Fix compile issues with xhci_get_slot_state(). - patches.drivers/USB3-0131-USB-Use-bInterfaceNumber-in-bandwidth-allocations.patch: USB: Use bInterfaceNumber in bandwidth allocations. - patches.drivers/USB3-0132-USB-rearrange-code-in-usb_probe_interface.patch: USB: rearrange code in usb_probe_interface. - patches.drivers/USB3-0133-USB-change-locking-for-device-level-autosuspend.patch: USB: change locking for device-level autosuspend. - patches.drivers/USB3-0134-USB-consolidate-remote-wakeup-routines.patch: USB: consolidate remote wakeup routines. - patches.drivers/USB3-0135-USB-use-the-device-lock-for-persist_enabled.patch: USB: use the device lock for persist_enabled. - patches.drivers/USB3-0136-USB-implement-usb_enable_autosuspend.patch: USB: implement usb_enable_autosuspend. - patches.drivers/USB3-0137-USB-change-handling-of-negative-autosuspend-delays.patch: USB: change handling of negative autosuspend delays. - patches.drivers/USB3-0140-USB-fix-crash-in-uhci_scan_schedule.patch: USB: fix crash in uhci_scan_schedule. - patches.drivers/USB3-0144-USB-class-make-USB-device-id-constant.patch: USB class: make USB device id constant. - patches.drivers/USB3-0145-USB-serial-make-USB-device-id-constant.patch: USB serial: make USB device id constant. - patches.drivers/USB3-0146-USB-image-make-USB-device-id-constant.patch: USB image: make USB device id constant. - patches.drivers/USB3-0147-USB-misc-make-USB-device-id-constant.patch: USB misc: make USB device id constant. - patches.drivers/USB3-0148-USB-hub-make-USB-device-id-constant.patch: USB hub: make USB device id constant. - patches.drivers/USB3-0149-USB-host-make-Open-Firmware-device-id-constant.patch: USB host: make Open Firmware device id constant. - patches.drivers/USB3-0150-USB-gadget-make-Open-Firmware-device-id-constant.patch: USB gadget: make Open Firmware device id constant. - patches.drivers/USB3-0151-USB-goku_udc-make-PCI-device-id-constant.patch: USB goku_udc: make PCI device id constant. - patches.drivers/USB3-0152-USB-serial-option.c-Add-chipset-information-for-4G-W14.patch: USB: serial: option.c: Add chipset information for 4G W14. - patches.drivers/USB3-0153-USB-serial-option.c-Add-blacklisting-infrastructure-for-spec.patch: USB: serial: option.c: Add blacklisting infrastructure for special device handling. - patches.drivers/USB3-0154-USB-serial-option.c-Add-4G-W14-stick-to-blacklist-for-option.patch: USB: serial: option.c: Add 4G W14 stick to blacklist for option_send_setup. - patches.drivers/USB3-0155-USB-atm-Use-FIELD_SIZEOF-trivial-cleanup.patch: USB: atm: Use FIELD_SIZEOF, trivial cleanup. - patches.drivers/USB3-0156-USB-Remove-BKL-from-poll.patch: USB: Remove BKL from poll(). - patches.drivers/USB3-0157-USB-Remove-BKL-from-usbdev_open.patch: USB: Remove BKL from usbdev_open(). - patches.drivers/USB3-0158-USB-Remove-BKL-from-lseek-implementations.patch: USB: Remove BKL from lseek implementations. - patches.drivers/USB3-0159-USB-Push-BKL-on-open-down-into-the-drivers.patch: USB: Push BKL on open down into the drivers. - patches.drivers/USB3-0161-USB-isight-firmware-declare-MODULE_FIRMWARE.patch: USB: isight-firmware: declare MODULE_FIRMWARE. - patches.drivers/USB3-0162-usb-BKL-removal-usblp.patch: usb: BKL removal: usblp. - patches.drivers/USB3-0163-USB-BKL-removal-usb-skeleton.patch: USB: BKL removal: usb-skeleton. - patches.drivers/USB3-0164-USB-BKL-removal-usbtmc.patch: USB: BKL removal: usbtmc. - patches.drivers/USB3-0165-USB-BKL-removal-cdc-wdm.patch: USB: BKL removal: cdc-wdm. - patches.drivers/USB3-0166-USB-BKL-removal-mdc800.patch: USB: BKL removal: mdc800. - patches.drivers/USB3-0167-USB-BKL-removal-rio500.patch: USB: BKL removal: rio500. - patches.drivers/USB3-0168-USB-BKL-removal-idmouse.patch: USB: BKL removal: idmouse. - patches.drivers/USB3-0169-USB-BKL-removal-adutux.patch: USB: BKL removal: adutux. - patches.drivers/USB3-0170-USB-BKL-removal-ftdi-elan.patch: USB: BKL removal: ftdi-elan. - patches.drivers/USB3-0171-USB-BKL-removal-ldusb.patch: USB: BKL removal: ldusb. - patches.drivers/USB3-0172-USB-BKL-removal-legousbtower.patch: USB: BKL removal: legousbtower. - patches.drivers/USB3-0173-USB-BKL-removal-vstusb.patch: USB: BKL removal: vstusb. - patches.drivers/USB3-0177-USB-serial-Eliminate-useless-code.patch: USB: serial: Eliminate useless code. - patches.drivers/USB3-0178-USB-ftdi_sio-correct-spelling-in-header-files.patch: USB: ftdi_sio: correct spelling in header files. - patches.drivers/USB3-0179-USB-ftdi_sio-correct-spelling-in-implementation-file.patch: USB: ftdi_sio: correct spelling in implementation file. - patches.drivers/USB3-0180-USB-trivial-missing-newline-in-usb-core-warning-message.patch: USB: trivial: missing newline in usb core warning message. - patches.drivers/USB3-0182-USB-usbfs_snoop-add-data-logging-back-in.patch: USB: usbfs_snoop: add data logging back in. - patches.drivers/USB3-0192-USB-io_edgeport-eliminate-get_string.patch: USB: io_edgeport: eliminate get_string(). - patches.drivers/USB3-0193-USB-serial-add-support-for-serial-port-on-the-moschip-7715.patch: USB: serial: add support for serial port on the moschip 7715. - patches.drivers/USB3-0200-USB-ftdi_sio-Replace-BKL-with-a-mutex.patch: USB: ftdi_sio: Replace BKL with a mutex. - patches.drivers/USB3-0205-USB-cdc-acm-fix-possible-deadlock-with-multiple-openers.patch: USB: cdc-acm: fix possible deadlock with multiple openers. - patches.drivers/USB3-0209-USB-serial-Add-support-for-ViVOtech-ViVOpay-devices.patch: USB: serial: Add support for ViVOtech ViVOpay devices. - patches.drivers/USB3-0210-USB-ehci-dbgp-split-PID-register-updates-for-IN-and-OUT-pipe.patch: USB: ehci-dbgp: split PID register updates for IN and OUT pipes. - patches.drivers/USB3-0211-USB-serial-Remove-unnecessary-n-s-from-dbg-uses.patch: USB: serial: Remove unnecessary \n's from dbg uses. - patches.drivers/USB3-0212-USB-Convert-concatenated-__FILE__-to-s-__FILE__.patch: USB: Convert concatenated __FILE__ to %s, __FILE__. - patches.drivers/USB3-0213-USB-Extend-and-neaten-dbg-macros.patch: USB: Extend and neaten dbg macros. - patches.drivers/USB3-0215-tty-Fix-various-bogus-WARN-checks-in-the-usb-serial-layer.patch: tty: Fix various bogus WARN checks in the usb serial layer. - patches.drivers/USB3-0218-USB-serial-sierra-driver-adding-reset_resume-function.patch: USB: serial: sierra driver adding reset_resume function. - patches.drivers/USB3-0224-usb-storage-use-max_hw_sectors-instead-of-max_sectors.patch: usb-storage: use max_hw_sectors instead of max_sectors. - patches.drivers/USB3-0227-USB-storage-fix-misplaced-parenthesis.patch: USB: storage: fix misplaced parenthesis. - patches.drivers/USB3-0228-USB-tty-sort-out-the-request_room-handling-for-whiteheat.patch: USB: tty: sort out the request_room handling for whiteheat. - patches.drivers/USB3-0229-USB-tty-kill-request_room-for-USB-ACM-class.patch: USB: tty: kill request_room for USB ACM class. - patches.drivers/USB3-0230-USB-don-t-read-past-config-interface-if-usb_control_msg-fail.patch: USB: don't read past config->interface if usb_control_msg() fails in usb_reset_configuration(). - patches.drivers/USB3-0231-USB-tty-Prune-uses-of-tty_request_room-in-the-USB-layer.patch: USB: tty: Prune uses of tty_request_room in the USB layer. - patches.drivers/USB3-0234-USB-storage-onetouch-unnecessary-GFP_ATOMIC.patch: USB: storage: onetouch: unnecessary GFP_ATOMIC. - patches.drivers/USB3-0235-USB-sisusbvga-no-unnecessary-GFP_ATOMIC.patch: USB: sisusbvga: no unnecessary GFP_ATOMIC. - patches.drivers/USB3-0236-USB-usbmon-mask-seconds-properly-in-text-API.patch: USB: usbmon: mask seconds properly in text API. - patches.drivers/USB3-0238-USB-option-add-Longcheer-Longsung-vendor-ID.patch: USB: option: add Longcheer/Longsung vendor ID. - patches.drivers/USB3-0239-USB-pl2303-initial-TIOCGSERIAL-support.patch: USB: pl2303: initial TIOCGSERIAL support. - patches.drivers/USB3-0240-USB-qcaux-driver-for-auxiliary-serial-ports-on-Qualcomm-devi.patch: USB: qcaux: driver for auxiliary serial ports on Qualcomm devices. - patches.drivers/USB3-0241-USB-ftdi_sio-remove-unused-tx_bytes-counter.patch: USB: ftdi_sio: remove unused tx_bytes counter. - patches.drivers/USB3-0242-USB-ftdi_sio-remove-obsolete-check-in-unthrottle.patch: USB: ftdi_sio: remove obsolete check in unthrottle. - patches.drivers/USB3-0243-USB-pl2303-remove-unnecessary-reset-of-usb_device-in-urbs.patch: USB: pl2303: remove unnecessary reset of usb_device in urbs. - patches.drivers/USB3-0244-USB-backlight-appledisplay-fix-incomplete-registration-failu.patch: USB: backlight, appledisplay: fix incomplete registration failure handling. - patches.drivers/USB3-0247-usbfs-fix-deadlock-on-usbfs_mutex-clean-up-poll.patch: usbfs: fix deadlock on 'usbfs_mutex', clean up poll. - patches.drivers/USB3-0248-USB-remove-unused-defintion-of-struct-usb_device_status.patch: USB: remove unused defintion of struct usb_device_status. - patches.drivers/USB3-0249-USB-Fix-s3c-hsotg-build-following-Samsung-platform-header-mo.patch: USB: Fix s3c-hsotg build following Samsung platform header moves. - patches.drivers/USB3-0250-another-pegasus-usb-net-device.patch: another pegasus usb net device. - patches.drivers/USB3-0253-obsolete-config-in-kernel-source-HSO_AUTOPM.patch: obsolete config in kernel source: HSO_AUTOPM. - patches.drivers/USB3-0255-smsc75xx-SMSC-LAN75xx-USB-gigabit-ethernet-adapter-driver.patch: smsc75xx: SMSC LAN75xx USB gigabit ethernet adapter driver. - patches.drivers/USB3-0256-smsc95xx-wait-for-PHY-to-complete-reset-during-init.patch: smsc95xx: wait for PHY to complete reset during init. - patches.drivers/USB3-0257-smsc95xx-Fix-tx-checksum-offload-for-small-packets.patch: smsc95xx: Fix tx checksum offload for small packets. - patches.drivers/USB3-0258-tty_port-usb-console-Fix-usb-serial-console-open-close-regre.patch: tty_port,usb-console: Fix usb serial console open/close regression. - patches.drivers/USB3-0260-USB-serial-fix-error-message-on-close-in-generic-driver.patch: USB: serial: fix error message on close in generic driver. - patches.drivers/USB3-0261-USB-serial-fix-softint-not-being-called-on-errors.patch: USB: serial: fix softint not being called on errors. - patches.drivers/USB3-0262-USB-serial-use-port-endpoint-size-to-determine-if-ep-is-avai.patch: USB: serial: use port endpoint size to determine if ep is available. - patches.drivers/USB3-0263-USB-unusual_devs.h-Fix-capacity-for-SL11R-IDE-2.6c.patch: USB: unusual_devs.h: Fix capacity for SL11R-IDE 2.6c. - patches.drivers/USB3-0264-USB-Option-Add-support-for-a-variant-of-DLink-DWM-652-U5.patch: USB: Option: Add support for a variant of DLink DWM 652 U5. - patches.drivers/USB3-0270-USB-xhci-rename-driver-to-xhci_hcd.patch: USB: xhci: rename driver to xhci_hcd. - patches.drivers/USB3-0281-usb-cdc-wdm-Fix-race-between-write-and-disconnect.patch: usb: cdc-wdm: Fix race between write and disconnect. - patches.drivers/USB3-0282-usb-cdc-wdm-Fix-race-between-autosuspend-and-reading-from-th.patch: usb: cdc-wdm: Fix race between autosuspend and reading from the device. - patches.drivers/USB3-0283-usb-cdc-wdm-Fix-race-between-disconnect-and-debug-messages.patch: usb: cdc-wdm: Fix race between disconnect and debug messages. - patches.drivers/USB3-0284-usb-cdc-wdm-Fix-submission-of-URB-after-suspension.patch: usb: cdc-wdm: Fix submission of URB after suspension. - patches.drivers/USB3-0285-usb-cdc-wdm-Fix-loss-of-data-due-to-autosuspend.patch: usb: cdc-wdm:Fix loss of data due to autosuspend. - patches.drivers/USB3-0286-usb-cdc-wdm-Fix-order-in-disconnect-and-fix-locking.patch: usb: cdc-wdm: Fix order in disconnect and fix locking. - patches.drivers/USB3-0287-usb-cdc-wdm-Fix-deadlock-between-write-and-resume.patch: usb: cdc-wdm: Fix deadlock between write and resume. - patches.drivers/USB3-0288-USB-serial-Fix-module-name-typo-for-qcaux-Kconfig-entry.patch: USB: serial: Fix module name typo for qcaux Kconfig entry. - patches.drivers/USB3-0295-USB-ftdi_sio-Fix-locking-for-change_speed-function.patch: USB: ftdi_sio: Fix locking for change_speed() function. - patches.drivers/USB3-0298-USB-cp210x-Remove-double-usb_control_msg-from-cp210x_set_con.patch: USB: cp210x: Remove double usb_control_msg from cp210x_set_config. - patches.drivers/USB3-0299-USB-Fix-usb_fill_int_urb-for-SuperSpeed-devices.patch: USB: Fix usb_fill_int_urb for SuperSpeed devices. - patches.drivers/USB3-0306-drivers-net-usb-Add-new-driver-ipheth.patch: drivers/net/usb: Add new driver ipheth. - patches.drivers/USB3-0307-USB-ti_usb_3410_5052-adding-multitech-dialup-fax-modem-devic.patch: USB: ti_usb_3410_5052: adding multitech dialup fax/modem devices. - patches.drivers/USB3-0308-USB-fixed-bug-in-usbsevseg-using-USB-autosuspend-incorrectly.patch: USB: fixed bug in usbsevseg using USB autosuspend incorrectly. - patches.drivers/USB3-0310-usb-wusb-don-t-overflow-the-Keep-Alive-IE-buffer.patch: usb: wusb: don't overflow the Keep Alive IE buffer. - patches.drivers/USB3-0311-USB-qcaux-add-LG-Rumor-and-Sanyo-Katana-LX-device-IDs.patch: USB: qcaux: add LG Rumor and Sanyo Katana LX device IDs. - patches.drivers/USB3-0314-USB-pl2303-add-AdLink-ND-6530-USB-IDs.patch: USB: pl2303: add AdLink ND-6530 USB IDs. - patches.drivers/USB3-0318-usb-Increase-timeout-value-for-device-reset.patch: usb: Increase timeout value for device reset. - patches.drivers/USB3-0319-drivers-usb-net-kaweth.c-add-device-Allied-Telesyn-AT-USB10-.patch: drivers/usb/net/kaweth.c: add device "Allied Telesyn AT-USB10 USB Ethernet Adapter". - patches.drivers/USB3-0320-ipheth-potential-null-dereferences-on-error-path.patch: ipheth: potential null dereferences on error path. - patches.drivers/USB3-0322-net-usb-add-sierra_net.c-driver.patch: net/usb: add sierra_net.c driver. - patches.drivers/USB3-0340-USB-option-add-ID-for-ZTE-MF-330.patch: USB: option: add ID for ZTE MF 330. - patches.drivers/USB3-0342-USB-serial-option-ZTEAC8710-Support-with-Device-ID-0xffff.patch: USB: serial: option: ZTEAC8710 Support with Device ID 0xffff. - patches.drivers/USB3-0347-USB-ti_usb-fix-printk-format-warning.patch: USB: ti_usb: fix printk format warning. - patches.drivers/USB3-0348-USB-rename-usb_buffer_alloc-and-usb_buffer_free.patch: USB: rename usb_buffer_alloc() and usb_buffer_free(). - patches.drivers/USB3-0351-net-usb-remove-default-in-Kconfig-for-sierra_net-driver.patch: net/usb: remove default in Kconfig for sierra_net driver. - patches.drivers/USB3-0352-net-usb-initiate-sync-sequence-in-sierra_net.c-driver.patch: net/usb: initiate sync sequence in sierra_net.c driver. - patches.suse/kdb-common: Refresh. - patches.suse/usb-storage-disable-delay.patch: Delete.- patches.suse/btrfs-fix-dio-locking.patch: Refresh.- drop in code for IBM powerpc features as base for discussion: + bnc#700391 fate 311563 Update ipr driver for enabling the SAS VRAID functions (Power7/P7) + bnc#699265 fate#311643 Power7/P7: export data from new hcall H_BEST_ENERGY + bnc#700777 fate#311648: CPU dynamic affinity (performance) + bnc#699534 fate#311649: DLPAR Memory Remove for Shared Memory Partitions + bnc#700514 fate#311650: Power Virtual Ethernet performance enhancements (ibmveth driver) + bnc#699990 fate#311669: NPIV Support for 8GB Quad Port PCIe Gen 2 Fibre Channel adapter (ibmvfc driver update) + bnc#699703 fate#311672: Page Coalescing (kernel changes) + bnc#699701 fate#311674: Power7/P7 thread combinations + bnc#701198 fate#311687: Capture oops/panic reports to NVRAM + bnc#698548 fate#312285: Update the driver support for enabling the Bell2 (with PLX chip) 2-port adapter on POWER7/P7 - Update config files for bnc#699265 #311643.- patches.suse/btrfs-fix-dio-locking.patch: Refresh.- patches.suse/btrfs-fix-dio-locking.patch: Btrfs: fix DIO locking type (FATE#306586).- patches.fixes/ses-requesting-a-fault-indication: [SCSI] ses: requesting a fault indication (FATE #311531).- patches.drivers/fnic-1.5.0.1-update: fnic: Update to 1.5.0.1 (bnc#679301,FATE#311271,FATE#311071).- patches.fixes/fcoe-update-to-mainline: Fixup call to fcoe_transport_show().- patches.fixes/dm-mpath-flush-workqueues-before-suspend-completes: Don't change the interface version number, revert earlier change. Update references (bnc#668483, bnc#703013).- patches.drivers/USB3-0144-wimax-i2400m-usb-remove-unnecessary-power-management.patch: wimax/i2400m/usb: remove unnecessary power management primitive in i2400m.- add my signed-off-by: to a few patches I missed: - patches.drivers/USB3-0004-convert-kaweth-to-use-usb_reset_configuration.patch: Refresh. - patches.drivers/USB3-0006-usbnet-Set-link-down-initially-for-drivers-that-update-link-.patch: Refresh. - patches.drivers/USB3-0012-cdc-ether-Implement-reset_resume.patch: Refresh. - patches.drivers/USB3-0013-usbnet-cdc-ether-Autosuspend-for-online-devices.patch: Refresh. - patches.drivers/USB3-0143-usb-remove-rare-pm-primitive-for-conversion-to-new-API.patch: Refresh. - patches.drivers/USB3-0149-const-constify-remaining-dev_pm_ops.patch: Refresh. - patches.drivers/USB3-0185-usbnet-test-off-by-one.patch: Refresh. - patches.drivers/USB3-0186-hso-Add-Vendor-Product-ID-s-for-new-devices.patch: Refresh. - patches.drivers/USB3-0187-hso-Fix-for-endian-issues-on-big-endian-machines.patch: Refresh. - patches.drivers/USB3-0188-hso-don-t-change-the-state-of-a-closed-port.patch: Refresh. - patches.drivers/USB3-0189-hso-Attempt-to-recover-from-usb-bus-errors.patch: Refresh. - patches.drivers/USB3-0190-hso-Fix-for-5-sec-timeouts-with-v2.x-firmware.patch: Refresh. - patches.drivers/USB3-0191-hso-fixed-missing-newlines.patch: Refresh. - patches.drivers/USB3-0206-cdc_ether-Partially-revert-usbnet-Set-link-down-initially.patch: Refresh.- USB 3.0 update for SLE11 SP2. .32->.33 update, which consists of all of the following patches: - patches.drivers/USB3-0004-convert-kaweth-to-use-usb_reset_configuration.patch: convert kaweth to use usb_reset_configuration(). - patches.drivers/USB3-0006-usbnet-Set-link-down-initially-for-drivers-that-update-link-.patch: usbnet: Set link down initially for drivers that update link state. - patches.drivers/USB3-0011-drivers-net-Move-and-to-end-of-previous-line.patch: drivers/net: Move && and || to end of previous line. - patches.drivers/USB3-0012-cdc-ether-Implement-reset_resume.patch: cdc-ether: Implement reset_resume(). - patches.drivers/USB3-0013-usbnet-cdc-ether-Autosuspend-for-online-devices.patch: usbnet & cdc-ether: Autosuspend for online devices. - patches.drivers/USB3-0014-ehci-hcd-Fix-typo-in-an-error-message.patch: ehci-hcd: Fix typo in an error message. - patches.drivers/USB3-0015-tree-wide-fix-assorted-typos-all-over-the-place.patch: tree-wide: fix assorted typos all over the place. - patches.drivers/USB3-0019-firmware_class-make-request_firmware_nowait-more-useful.patch: firmware_class: make request_firmware_nowait more useful. - patches.drivers/USB3-0020-USB-serial-ftdi_sio-add-space-mark-parity.patch: USB: serial: ftdi_sio: add space/mark parity. - patches.drivers/USB3-0021-USB-ehci-hub-Remove-redundant-ehci-debug-check.patch: USB: ehci-hub: Remove redundant ehci->debug check. - patches.drivers/USB3-0022-USB-Convert-a-dev_info-to-a-dev_dbg.patch: USB: Convert a dev_info to a dev_dbg. - patches.drivers/USB3-0023-USB-usb-storage-Associate-the-name-of-the-interface-with-the.patch: USB: usb-storage: Associate the name of the interface with the scsi host. - patches.drivers/USB3-0024-USB-Storage-Make-driver-less-chatty-when-it-finds-a-new-devi.patch: USB Storage: Make driver less chatty when it finds a new device. - patches.drivers/USB3-0026-USB-Add-missing-static-markers-to-ohci-pnx4008.patch: USB: Add missing static markers to ohci-pnx4008. - patches.drivers/USB3-0027-USB-make-urb-scatter-gather-support-more-generic.patch: USB: make urb scatter-gather support more generic. - patches.drivers/USB3-0028-USB-whci-hcd-support-urbs-with-scatter-gather-lists.patch: USB: whci-hcd: support urbs with scatter-gather lists. - patches.drivers/USB3-0029-USB-allow-interrupt-transfers-to-WUSB-devices.patch: USB: allow interrupt transfers to WUSB devices. - patches.drivers/USB3-0030-USB-whci-hcd-fix-type-and-format-warnings-in-sg-code.patch: USB: whci-hcd: fix type and format warnings in sg code. - patches.drivers/USB3-0035-USB-usbtmc-minor-formatting-cleanups.patch: USB: usbtmc: minor formatting cleanups. - patches.drivers/USB3-0036-usb-whci-hcd-decode-more-QHead-fields-in-the-debug-files.patch: usb: whci-hcd: decode more QHead fields in the debug files. - patches.drivers/USB3-0037-USB-wusb-add-wusb_phy_rate-sysfs-file-to-host-controllers.patch: USB: wusb: add wusb_phy_rate sysfs file to host controllers. - patches.drivers/USB3-0041-USB-improved-error-handling-in-usb_port_suspend.patch: USB: improved error handling in usb_port_suspend(). - patches.drivers/USB3-0042-USB-xhci-Handle-URB-cancel-complete-and-resubmit-race.patch: USB: xhci: Handle URB cancel, complete and resubmit race. - patches.drivers/USB3-0043-USB-xhci-Re-purpose-xhci_quiesce.patch: USB: xhci: Re-purpose xhci_quiesce(). - patches.drivers/USB3-0044-USB-xhci-Add-watchdog-timer-for-URB-cancellation.patch: USB: xhci: Add watchdog timer for URB cancellation. - patches.drivers/USB3-0045-USB-xhci-Remove-unused-HCD-statistics-code.patch: USB: xhci: Remove unused HCD statistics code. - patches.drivers/USB3-0046-USB-ehci-Minor-constant-fix-for-SCHEDULE_SLOP.patch: USB: ehci: Minor constant fix for SCHEDULE_SLOP. - patches.drivers/USB3-0047-USB-ehci-Respect-IST-when-scheduling-new-split-iTDs.patch: USB: ehci: Respect IST when scheduling new split iTDs. - patches.drivers/USB3-0048-USB-don-t-use-a-fixed-DMA-mapping-for-hub-status-URBs.patch: USB: don't use a fixed DMA mapping for hub status URBs. - patches.drivers/USB3-0049-USB-add-a-remove-hardware-sysfs-attribute.patch: USB: add a "remove hardware" sysfs attribute. - patches.drivers/USB3-0050-USB-fix-a-bug-in-the-scatter-gather-library.patch: USB: fix a bug in the scatter-gather library. - patches.drivers/USB3-0061-USB-Interface-Association-Descriptors-added-to-CDC-RNDIS.patch: USB: Interface Association Descriptors added to CDC & RNDIS. - patches.drivers/USB3-0062-USB-serial-sierra-driver-memory-reduction.patch: USB: serial: sierra driver memory reduction. - patches.drivers/USB3-0063-USB-EHCI-add-native-scatter-gather-support.patch: USB: EHCI: add native scatter-gather support. - patches.drivers/USB3-0064-USB-add-scatter-gather-support-to-usbmon.patch: USB: add scatter-gather support to usbmon. - patches.drivers/USB3-0066-USB-Check-results-of-dma_map_single.patch: USB: Check results of dma_map_single. - patches.drivers/USB3-0070-USB-ark3116-Setup-some-basic-infrastructure-for-new-ark3116-.patch: USB: ark3116: Setup some basic infrastructure for new ark3116 driver. - patches.drivers/USB3-0071-USB-ark3116-Make-existing-functions-16450-aware-and-add-clos.patch: USB: ark3116: Make existing functions 16450-aware and add close and release functions. - patches.drivers/USB3-0072-USB-ark3116-Replace-cmget.patch: USB: ark3116: Replace cmget. - patches.drivers/USB3-0073-USB-ark3116-Add-cmset-and-break.patch: USB: ark3116: Add cmset and break. - patches.drivers/USB3-0074-USB-ark3116-Callbacks-for-interrupt-and-bulk-read.patch: USB: ark3116: Callbacks for interrupt and bulk read. - patches.drivers/USB3-0075-USB-ark3116-Cleanup-of-now-unneeded-functions.patch: USB: ark3116: Cleanup of now unneeded functions. - patches.drivers/USB3-0077-USB-hcd.c-quiet-NULL-pointer-sparse-noise.patch: USB: hcd.c: quiet NULL pointer sparse noise. - patches.drivers/USB3-0078-USB-remove-the-auto_pm-flag.patch: USB: remove the auto_pm flag. - patches.drivers/USB3-0080-USB-fix-possible-null-deref-in-init_usb_class.patch: USB: fix possible null deref in init_usb_class(). - patches.drivers/USB3-0081-usbtest-make-module-param-pattern-writeable.patch: usbtest: make module param pattern writeable. - patches.drivers/USB3-0082-USB-xhci-Add-tests-for-TRB-address-translation.patch: USB: xhci: Add tests for TRB address translation. - patches.drivers/USB3-0088-USB-composite-usb_composite_unregister-no-longer-__exit.patch: USB: composite: usb_composite_unregister() no longer __exit. - patches.drivers/USB3-0091-USB-xhci-Set-transfer-descriptor-size-field-correctly.patch: USB: xhci: Set transfer descriptor size field correctly. - patches.drivers/USB3-0092-USB-xhci-Return-EPROTO-on-a-split-transaction-error.patch: USB: xhci: Return -EPROTO on a split transaction error. - patches.drivers/USB3-0093-USB-xhci-Return-success-for-vendor-specific-info-codes.patch: USB: xhci: Return success for vendor-specific info codes. - patches.drivers/USB3-0094-USB-xhci-Handle-errors-that-cause-endpoint-halts.patch: USB: xhci: Handle errors that cause endpoint halts. - patches.drivers/USB3-0113-USB-add-devpath-sysfs-attribute.patch: USB: add devpath sysfs attribute. - patches.drivers/USB3-0114-USB-prepare-for-changover-to-Runtime-PM-framework.patch: USB: prepare for changover to Runtime PM framework. - patches.drivers/USB3-0117-USB-whci-hcd-correctly-handle-sg-lists-longer-than-QTD_MAX_X.patch: USB: whci-hcd: correctly handle sg lists longer than QTD_MAX_XFER_SIZE. - patches.drivers/USB3-0118-USB-wusb-don-t-leak-urb-in-certain-error-cases.patch: USB: wusb: don't leak urb in certain error cases. - patches.drivers/USB3-0119-USB-wusb-correctly-check-size-of-security-descriptor.patch: USB: wusb: correctly check size of security descriptor. - patches.drivers/USB3-0122-USB-add-remove_id-sysfs-attr-for-usb-drivers.patch: USB: add remove_id sysfs attr for usb drivers. - patches.drivers/USB3-0123-USB-xhci-mem.c-introduce-missing-kfree.patch: USB: xhci-mem.c: introduce missing kfree. - patches.drivers/USB3-0125-USB-usbtmc-Use-usb_clear_halt-instead-of-custom-code.patch: USB: usbtmc: Use usb_clear_halt() instead of custom code. - patches.drivers/USB3-0126-USB-xhci-Make-reverting-an-alt-setting-unfailable.patch: USB: xhci: Make reverting an alt setting "unfailable". - patches.drivers/USB3-0127-USB-xhci-Fix-command-completion-after-a-drop-endpoint.patch: USB: xhci: Fix command completion after a drop endpoint. - patches.drivers/USB3-0128-USB-Refactor-code-to-find-alternate-interface-settings.patch: USB: Refactor code to find alternate interface settings. - patches.drivers/USB3-0129-USB-Check-bandwidth-when-switching-alt-settings.patch: USB: Check bandwidth when switching alt settings. - patches.drivers/USB3-0131-USB-core-fix-sparse-warning-for-static-function.patch: USB: core: fix sparse warning for static function. - patches.drivers/USB3-0132-USB-core-hub-fix-sparse-warning.patch: USB: core: hub: fix sparse warning. - patches.drivers/USB3-0133-USB-core-message-fix-sparse-warning.patch: USB: core: message: fix sparse warning. - patches.drivers/USB3-0139-tty_port-add-tty_port_open-helper.patch: tty_port: add "tty_port_open" helper. - patches.drivers/USB3-0140-usb_serial-Use-the-shutdown-operation.patch: usb_serial: Use the shutdown() operation. - patches.drivers/USB3-0141-usb_serial-Kill-port-mutex.patch: usb_serial: Kill port mutex. - patches.drivers/USB3-0142-opticon-Fix-resume-logic.patch: opticon: Fix resume logic. - patches.drivers/USB3-0143-usb-remove-rare-pm-primitive-for-conversion-to-new-API.patch: usb: remove rare pm primitive for conversion to new API. - patches.drivers/USB3-0149-const-constify-remaining-dev_pm_ops.patch: const: constify remaining dev_pm_ops. - patches.drivers/USB3-0163-USB-fix-section-mismatch-in-early-ehci-dbgp.patch: USB: fix section mismatch in early ehci dbgp. - patches.drivers/USB3-0164-USB-add-device-ID-for-Apple-Cinema-Display-23in-2007.patch: USB: add device ID for Apple Cinema Display 23in 2007. - patches.drivers/USB3-0165-USB-core-fix-recent-kernel-doc-warnings.patch: USB core: fix recent kernel-doc warnings. - patches.drivers/USB3-0185-usbnet-test-off-by-one.patch: usbnet: test off by one. - patches.drivers/USB3-0186-hso-Add-Vendor-Product-ID-s-for-new-devices.patch: hso: Add Vendor/Product ID's for new devices. - patches.drivers/USB3-0187-hso-Fix-for-endian-issues-on-big-endian-machines.patch: hso: Fix for endian issues on big endian machines. - patches.drivers/USB3-0188-hso-don-t-change-the-state-of-a-closed-port.patch: hso: don't change the state of a closed port. - patches.drivers/USB3-0189-hso-Attempt-to-recover-from-usb-bus-errors.patch: hso: Attempt to recover from usb bus errors. - patches.drivers/USB3-0190-hso-Fix-for-5-sec-timeouts-with-v2.x-firmware.patch: hso: Fix for 5 sec timeouts with v2.x firmware. - patches.drivers/USB3-0191-hso-fixed-missing-newlines.patch: hso: fixed missing newlines. - patches.drivers/USB3-0200-USB-Fix-duplicate-sysfs-problem-after-device-reset.patch: USB: Fix duplicate sysfs problem after device reset. - patches.drivers/USB3-0206-cdc_ether-Partially-revert-usbnet-Set-link-down-initially.patch: cdc_ether: Partially revert "usbnet: Set link down initially ...". - patches.drivers/USB3-0213-USB-storage-Remove-unneeded-SC-PR-from-unusual_devs.h.patch: USB: storage: Remove unneeded SC/PR from unusual_devs.h. - patches.drivers/USB3-0217-USB-ehci-phy-low-power-mode-bug-fixing.patch: USB: ehci: phy low power mode bug fixing. - patches.drivers/USB3-0219-USB-serial-add-usbid-for-dell-wwan-card-to-sierra.c.patch: USB: serial: add usbid for dell wwan card to sierra.c. - patches.suse/kdb-common: Refresh.- patches.drivers/alsa-sp1-hda-118-Add-a-fix-up-for-HP-RP5800-laptop: ALSA: hda - Add a fix-up for HP RP5800 laptop (bnc#701622).- Update config files: - CONFIG_PSTORE=y (for i386, x86_64 and Xen x86_64) - # CONFIG_PSTORE is not set (for all the rest) - > pstore is used by APEI only enable it on relevant archs. - patches.drivers/002-apei_pstore.patch: new error reporting interface with APEI (fate#311705).- Update config files: - CONFIG_ISCSI_BOOT_SYSFS=m- patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch: TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374).- patches.fixes/fcoe-update-to-mainline: Sync fcoe stack with mainline (FATE#311954, bnc#687065).- Update config files: For all i386/x86_64 and XEN (only x86_64): - CONFIG_ACPI_HED=m - CONFIG_ACPI_APEI=y - CONFIG_ACPI_APEI_GHES=m - CONFIG_ACPI_APEI_EINJ=m - CONFIG_ACPI_APEI_ERST_DEBUG=m For ia64: - # CONFIG_ACPI_HED is not set - supported.conf: - kernel/drivers/acpi/apei/einj - kernel/drivers/acpi/apei/ghes - kernel/drivers/acpi/apei/erst-dbg - kernel/drivers/acpi/apei/hed - patches.drivers/001-apei_infrastructure.patch: APEI infrastructure support (fate#311701,fate#311703,fate#311704,fate#311771,fate#311706,fate#311772,bnc#697859). - patches.xen/xen-x86-ioremap_xen.patch: XEN: Implement ioremap_page_range for XEN used by APEI (fate#311701,fate#311703,fate#311704,fate#311771,fate#311706,fate#311772,bnc#697859). - patches.xen/xen3-auto-common.diff: Refresh. - patches.xen/xen3-auto-xen-kconfig.diff: Refresh. - patches.xen/xen3-patch-2.6.19: Refresh. - patches.xen/xen3-patch-2.6.30: Refresh. - patches.xen/xen3-patch-2.6.31: Refresh.- patches.suse/dm-raid45-26-Nov-2009.patch: Refresh and reenable. - Update config files.- Refresh patches to apply cleanly: patches.drivers/cxgb3i-change-cxgb3i-to-use-libcxgbi.patch patches.drivers/cxgb4i-v5-iscsi-driver.patch patches.suse/iscsi-boot-mv-iscsi_boot_sysfs-to-drivers-sc.patch- patches.drivers/mptfusion-Update-to-4.28.00.00suse.patch: Fixup merge error. - patches.suse/iscsi-boot-mv-iscsi_boot_sysfs-to-drivers-sc.patch: iscsi boot: mv iscsi_boot_sysfs to drivers/scsi (FATE#311488,bnc#702736).- Update config files. - patches.drivers/3w-sas-mainline.patch: 3w-sas: Add new driver from mainline (bnc#702832). - patches.drivers/pm8001-mainline.patch: pm8001: Add new driver from mainline (bnc#702838). - supported.conf: Update to include 3w-sas and pm8001.- patches.xen/xen3-x86-Introduce-pci_map_biosrom.patch: Fix build of unprivileged configurations.- patches.suse/cfq-iosched-Always-provide-group-isolation.patch: cfq-iosched: Always provide group isolation (fate#312039). - patches.suse/cfq-iosched-Don-t-update-group-weights-when-on-servi.patch: Refresh.- patches.fixes/initialize-call_single_queue-before-enabling-interrupt: smp: add missing init.h include.- Update Xen patches to 2.6.32.42 and c/s 1095. - patches.xen/xen-x86-EFI: support booting Xen from EFI (fate#311376, fate#311529, bnc#578927, bnc#628554). - patches.xen/xen3-0011-x86-Export-k8-physical-topology.patch: x86: Export k8 physical topology (fate#311968 fate#309727). - patches.xen/xen3-0018-x86-k8-Rename-k8.-ch-to-amd_nb.-ch-and.patch: and (fate#311968). - patches.xen/xen3-0022-x86-amd-Extract-compute-unit-information-for-AMD-CPU.patch: x86, amd: Extract compute unit information for AMD CPUs (fate#309723). - patches.xen/xen3-0027-x86-amd-nb-Complete-the-rename-of-AMD-NB-and.patch: x86, amd-nb: Complete the rename of AMD NB and (fate#311968). - patches.xen/xen3-004-ACPI__allow_a_native_cpuidle_driver_to_displace_ACPI.patch: ACPI: allow a native cpuidle driver to displace ACPI (fate#311818,fate#311942). - patches.xen/xen3-0124-x86-amd-Support-L3-Cache-Partitioning-on-AMD-family-.patch: x86, amd: Support L3 Cache Partitioning on AMD family 0x15 CPUs (fate#309727). - patches.xen/xen3-VMware-Balloon-driver-2.6.32.28.patch: Refresh. - patches.xen/xen3-dev_mem-read-write-beyond-EOF.patch: Return EOF on out-of-bounds read from /dev/mem (FATE#310031). - patches.xen/xen3-dev_mem-read-write-phys_addr_t.patch: Allow reading/writing all memory through /dev/mem (FATE#310031). - patches.xen/xen3-kvm-x86-Export-FPU-API-for-KVM-use.patch: x86: Export FPU API for KVM use (FATE#311768). - patches.xen/xen3-printk-Allocate-kernel-log-buffer-earlier.patch: printk: Allocate kernel log buffer earlier v1 (bnc#700445). - patches.xen/xen3-repmovs-06-fix-cpuid-leaf-7-feature-detection.patch: x86, cpufeature: Fix cpuid leaf 7 feature detection (FATE#311936 bnc#698793). - patches.xen/xen3-scsi-host-lock-push-down.patch: SCSI host lock push-down (FATE#311826). - patches.xen/xen3-x86-Eliminate-TS_XSAVE.patch: x86: Eliminate TS_XSAVE (FATE#311768). - patches.xen/xen3-x86-Introduce-pci_map_biosrom.patch: x86: Introduce pci_map_biosrom() (FATE#311808). - patches.xen/xen3-x86-Introduce-struct-fpu-and-related-API.patch: x86: Introduce 'struct fpu' and related API (FATE#311768). - patches.xen/xen3-x86-enable-smep.patch: Enable SMEP (FATE#311999). - patches.xen/xen3-x86-features-flags-in-new-CPUID-leaf.patch: x86, cpu: Support the features flags in new CPUID leaf 7 (bnc#698779 fate#311965). - patches.xen/xen3-x86-ioremap-fix-pae.patch: x86, ioremap: Fix incorrect physical address handling in PAE mode (FATE#310031). - patches.xen/xen3-xlate_dev_mem_ptr-use-phys_addr_t.patch: (un)xlate_dev_mem_ptr: use phys_addr_t for the @phys parameter (FATE#310031). - patches.xen/xen3-xsaveopt-06-use-xsaveopt-in-context-switch-path.patch: x86, xsave: Use xsaveopt in context-switch path when supported (bnc#698779 fate#311965). - Refresh other Xen patches. - Update Xen config files. - supported.conf: Mark rtc-efi supported.- supported.conf: Mark cxgb3i and cxbg4i as supported.- patches.fixes/vm-fix-vm_pgoff-wrap-in-upward-expansion.patch: Refresh.- patches.drivers/enic-2.1.1.20-1-update: enic: Update driver to 2.1.1.20-1 (FATE#311271,bnc#699687).- patches.fixes/vm-fix-vm_pgoff-wrap-in-stack-expansion.patch: vm: fix vm_pgoff wrap in stack expansion (bnc#702285, CVE-2011-2496). - patches.fixes/vm-fix-vm_pgoff-wrap-in-upward-expansion.patch: vm: fix vm_pgoff wrap in upward expansion (bnc#702285, CVE-2011-2496).- patches.fixes/initialize-call_single_queue-before-enabling-interrupt: generic-ipi: Fix kexec boot crash by initializing call_single_queue before enabling interrupts (bnc#699946).- Update cxgb3i and cxgb4i driver (FATE#311932): * patches.drivers/cxgb3-Added-private-MAC-address-and-provisioning-pa.patch: cxgb3: Added private MAC address and provisioning packet handler for iSCSI (FATE#311932,bnc#694963). * patches.drivers/cxgb3i-change-cxgb3i-to-use-libcxgbi.patch: cxgb3i: change cxgb3i to use libcxgbi (FATE#311932,bnc#694963). * patches.drivers/cxgb3i-fixed-connection-over-vlan.patch: [SCSI] cxgb3i: fixed connection over vlan (FATE#311932,bnc#694963). * patches.drivers/cxgb3i-fixed-connection-problem-with-iscsi-p.patch: cxgb3i: fixed connection problem with iscsi private ip (FATE#311932,bnc#694963). * patches.drivers/cxgb4i-connection-and-ddp-setting-update.patch: cxgb4i: connection and ddp setting update (FATE#311932,bnc#694963). * patches.drivers/cxgb4i-ignore-informational-act-open-rpl-mes.patch: cxgb4i: ignore informational act-open-rpl message (FATE#311932,bnc#694963). * patches.drivers/cxgb4i-v5-iscsi-driver.patch: cxgb4i v5: iscsi driver (FATE#311932,bnc#694963). * patches.drivers/cxgbi-convert-to-use-iscsi_conn_get_addr_par.patch: cxgbi: convert to use iscsi_conn_get_addr_param (FATE#311932,bnc#694963). * patches.drivers/cxgbi-enable-TEXT-PDU-support.patch: cxgbi: enable TEXT PDU support (FATE#311932,bnc#694963). * patches.drivers/cxgbi-get-rid-of-gl_skb-in-cxgbi_ddp_info.patch: cxgbi: get rid of gl_skb in cxgbi_ddp_info (FATE#311932,bnc#694963). * patches.drivers/cxgbi-rename-alloc_cpl-to-alloc_wr.patch: cxgbi: rename alloc_cpl to alloc_wr (FATE#311932,bnc#694963). * patches.drivers/cxgbi-set-ulpmode-only-if-digest-is-on.patch: cxgbi: set ulpmode only if digest is on (FATE#311932,bnc#694963). * patches.drivers/libcxgbi-common-library-for-cxgb3i-and-cxgb4.patch: libcxgbi: common library for cxgb3i and cxgb4i (FATE#311932,bnc#694963). * patches.drivers/libcxgbi-pdu-read-fixes.patch: libcxgbi: pdu read fixes (FATE#311932,bnc#694963).- patches.arch/0001-x86-cpu-Add-AMD-core-boosting-feature-flag-to-proc-c.patch: Refresh. - patches.arch/x2apic_opt_out.patch: x86, vt-d: enable x2apic opt out (disabling x2apic through BIOS flag) (bnc#701183, fate#311989). - patches.arch/x86_intel_set_default_energy_perf_bias.patch: x86 intel: Set perf BIAS MSR to default value on boot (bnc#702604). - patches.arch/x86_intel_show_ebp_cpuinfo_flag.patch: x86: Look for IA32_ENERGY_PERF_BIAS support (bnc#702604). - patches.drivers/hwmon-coretemp-add-pkgtemp-support.patch: Refresh.- patches.drivers/bfa-2.3.2.3-update: bfa: Update to version 2.3.2.3 (FATE#311450,bnc#689227).- patches.drivers/mpt2sas-09.102.00.00-update: mpt2sas: Update to version 09.102.00.00 (FATE#311801,bnc#680809).- patches.fixes/NLM-Don-t-hang-forever-on-NLM-unlock-requests-fix.patch: Hide new tk_rebind_retry from kABI checker (bnc#702013). - patches.fixes/NLM-Don-t-hang-forever-on-NLM-unlock-requests.patch: NLM: Don't hang forever on NLM unlock requests (bnc#702013 CVE-2011-2491).- patches.suse/block-use-struct-parsed_partitions-state-universal.patch: Fix crash in ibm_partition (bnc#702470).- patches.drivers/qla4xxx-5.02.10.00.11.2-k0-update: qla4xxx: Update to 5.02.10.00.11.2-k0 (FATE#311466,bnc#689435).- patches.drivers/qla2xxx-8.03.07.05.11.2-k-update: qla2xxx: Update to 8.03.07.05.11.2-k (FATE#311465,bnc#690082).- Updated patch-mainline to reflect upstream status of: - patches.drivers/cnic-give-a-chance-for-the-uio-device-to-be-opened - patches.drivers/0009-cnic-Revert-cnic-Give-a-chance-for-the-uio-device-to.patch- patches.drivers/0152-bnx2x-fix-possible-deadlock-in-HC-hw-block.patch: bnx2x: fix possible deadlock in HC hw block (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0153-bnx2x-prevent-false-parity-error-in-MSI-X-memory-of-.patch: bnx2x: prevent false parity error in MSI-X memory of HC block (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0154-bnx2x-update-version-to-1.60.00-3.patch: bnx2x: update version to 1.60.00-3 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0155-bnx2-Increase-max-rx-ring-size-from-1K-to-2K.patch: bnx2: Increase max rx ring size from 1K to 2K (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0156-bnx2x-make-local-function-static-and-remove-dead-cod.patch: bnx2x: make local function static and remove dead code (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0157-bnx2x-Restore-appropriate-delay-during-BMAC-reset.patch: bnx2x: Restore appropriate delay during BMAC reset (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0158-bnx2x-Fix-waiting-for-reset-complete-on-BCM848x3-PHY.patch: bnx2x: Fix waiting for reset complete on BCM848x3 PHYs (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0159-bnx2x-Fix-port-selection-in-case-of-E2.patch: bnx2x: Fix port selection in case of E2 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0160-bnx2x-Clear-latch-indication-on-link-reset.patch: bnx2x: Clear latch indication on link reset (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0161-bnx2x-Fix-resetting-BCM8726-PHY-during-common-init.patch: bnx2x: Fix resetting BCM8726 PHY during common init (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0162-bnx2x-Do-not-enable-CL37-BAM-unless-it-is-explicitly.patch: bnx2x: Do not enable CL37 BAM unless it is explicitly enabled (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0163-bnx2x-Reset-8073-phy-during-common-init.patch: bnx2x: Reset 8073 phy during common init (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0164-bnx2x-Update-version-number.patch: bnx2x: Update version number (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0165-tree-wide-fix-comment-printk-typos.patch: tree-wide: fix comment/printk typos (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0166-bnx2x-Look-inside-vlan-when-determining-checksum-pro.patch: bnx2x: Look inside vlan when determining checksum proto (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0167-drivers-net-bnx2x-Remove-unnecessary-semicolons.patch: drivers/net/bnx2x: Remove unnecessary semicolons (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0168-drivers-net-cnic.c-Remove-unnecessary-semicolons.patch: drivers/net/cnic.c: Remove unnecessary semicolons (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0169-net-bnx2x-fix-error-value-sign.patch: net: bnx2x: fix error value sign (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0170-bnx2x-Disable-local-BHes-to-prevent-a-dead-lock-situ.patch: bnx2x: Disable local BHes to prevent a dead-lock situation (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0171-bnx2x-Do-interrupt-mode-initialization-and-NAPIs-add.patch: bnx2x: Do interrupt mode initialization and NAPIs adding before register_netdev() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0172-bnx2-Fix-reset-bug-on-5709.patch: bnx2: Fix reset bug on 5709 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0173-bnx2-Remove-config-access-to-non-standard-registers.patch: bnx2: Remove config access to non-standard registers (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0174-bnx2x-Use-helpers-instead-of-direct-access-to-the-sh.patch: bnx2x: Use helpers instead of direct access to the shinfo(skb) fields (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0175-bnx2x-Add-Nic-partitioning-mode-57712-devices.patch: bnx2x: Add Nic partitioning mode (57712 devices) (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0176-net-Fix-too-optimistic-NETIF_F_HW_CSUM-features.patch: net: Fix too optimistic NETIF_F_HW_CSUM features (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0177-bnx2x-LSO-code-was-broken-on-BE-platforms.patch: bnx2x: LSO code was broken on BE platforms (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0178-bnx2x-Use-dma_alloc_coherent-semantics-for-ILT-memor.patch: bnx2x: Use dma_alloc_coherent() semantics for ILT memory allocation (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0179-bnx2x-Fixed-a-compilation-warning.patch: bnx2x: Fixed a compilation warning (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0180-bnx2x-Update-version-number-and-a-date.patch: bnx2x: Update version number and a date (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0181-drivers-net-don-t-use-flush_scheduled_work.patch: drivers/net: don't use flush_scheduled_work() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0182-bnx2x-Take-the-distribution-range-definition-out-of-.patch: bnx2x: Take the distribution range definition out of skb_tx_hash() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0183-bnx2x-add-FCoE-ring.patch: bnx2x: add FCoE ring (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0184-bnx2x-add-a-select-queue-callback.patch: bnx2x: add a select queue callback (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0185-bnx2x-add-DCB-support.patch: bnx2x: add DCB support (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0186-bnx2x-Add-DCB-PFC-support-link-layer.patch: bnx2x: Add DCB/PFC support - link layer (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0187-bnx2x-add-FW-6.2.5-files.patch: bnx2x: add FW 6.2.5 files (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0188-bnx2x-replace-FW-to-6.2.5.patch: bnx2x: replace FW to 6.2.5 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0189-bnx2x-remove-old-FW-files.patch: bnx2x: remove old FW files (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0190-bnx2x-update-version-to-1.62.00-2.patch: bnx2x: update version to 1.62.00-2 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0191-drivers-net-.c-Use-static-const.patch: drivers/net/*.c: Use static const (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0192-drivers-net-Use-static-const.patch: drivers/net/*/: Use static const (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0193-bnx2i-Fixed-bugs-in-the-handling-of-unsolicited-NOP-.patch: bnx2i: Fixed bugs in the handling of unsolicited NOP-Ins (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0194-bnx2i-Added-fix-for-NOP-Out-response-panic-from-unso.patch: bnx2i: Added fix for NOP-Out response panic from unsolicited NOP-In (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0195-bnx2i-Fixed-the-endian-bug-in-the-TMF-LUN-cmd-send.patch: bnx2i: Fixed the endian bug in the TMF LUN cmd send (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0196-bnx2i-Fixed-a-cid-leak-issue-for-5771X-10g.patch: bnx2i: Fixed a cid leak issue for 5771X (10g) (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0197-bnx2i-Fixed-the-remote-TCP-RST-handling-for-the-570X.patch: bnx2i: Fixed the remote TCP RST handling for the 570X (1g) (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0198-bnx2i-Allow-to-abort-the-connection-if-connect-reque.patch: bnx2i: Allow to abort the connection if connect request times out (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0199-bnx2i-Added-mutex-lock-protection-to-conn_get_param.patch: bnx2i: Added mutex lock protection to conn_get_param (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0200-bnx2i-Removed-the-dynamic-registration-of-CNIC.patch: bnx2i: Removed the dynamic registration of CNIC (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0201-bnx2i-Modified-the-bnx2i-stop-path-to-compensate-for.patch: bnx2i: Modified the bnx2i stop path to compensate for in progress ops (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0202-bnx2i-Added-return-code-check-for-chip-kwqe-submissi.patch: bnx2i: Added return code check for chip kwqe submission request (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0203-bnx2i-Cleaned-up-various-error-conditions-in-ep_conn.patch: bnx2i: Cleaned up various error conditions in ep_connect/disconnect (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0204-bnx2i-Updated-copyright-and-maintainer-info.patch: bnx2i: Updated copyright and maintainer info (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0205-bnx2i-Updated-version-to-2.6.2.2.patch: bnx2i: Updated version to 2.6.2.2 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0206-bnx2x-remove-bogus-check.patch: bnx2x: remove bogus check (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0207-bnx2-remove-cancel_work_sync-from-remove_one.patch: bnx2: remove cancel_work_sync() from remove_one (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0208-cnic-Fix-iSCSI-TCP-port-endian-order.patch: cnic: Fix iSCSI TCP port endian order (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0209-cnic-Prevent-scheduling-while-atomic-when-calling-cn.patch: cnic: Prevent "scheduling while atomic" when calling - >cnic_init() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0210-cnic-Improve-iscsi_nl_msg_send.patch: cnic: Improve ->iscsi_nl_msg_send() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0211-cnic-Use-proper-client-and-connection-IDs-on-iSCSI-r.patch: cnic: Use proper client and connection IDs on iSCSI ring (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0212-cnic-Support-NIC-Partition-mode.patch: cnic: Support NIC Partition mode (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0213-cnic-Check-device-state-before-reading-the-kcq-point.patch: cnic: Check device state before reading the kcq pointer in IRQ (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0214-cnic-Call-cm_connect_complete-immediately-on-error.patch: cnic: Call cm_connect_complete() immediately on error (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0215-cnic-Add-kcq2-support-on-57712.patch: cnic: Add kcq2 support on 57712 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0216-cnic-Add-FCoE-support-on-57712.patch: cnic: Add FCoE support on 57712 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0217-bnx2-Free-IRQ-before-freeing-status-block-memory.patch: bnx2: Free IRQ before freeing status block memory (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0218-bnx2-Update-firmware-and-version.patch: bnx2: Update firmware and version (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0219-Broadcom-CNIC-core-network-driver-fix-mem-leak-on-al.patch: Broadcom CNIC core network driver: fix mem leak on allocation failures in cnic_alloc_uio_rings() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0220-cnic-Do-not-allow-iSCSI-and-FCoE-on-bnx2x-multi-func.patch: cnic: Do not allow iSCSI and FCoE on bnx2x multi-function mode (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0221-cnic-Do-not-call-bnx2i-when-bnx2i-is-calling-cnic_un.patch: cnic: Do not call bnx2i when bnx2i is calling cnic_unregister_driver() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0222-cnic-Fix-the-type-field-in-SPQ-messages.patch: cnic: Fix the type field in SPQ messages (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0223-bnx2x-Don-t-prevent-RSS-configuration-in-INT-x-and-M.patch: bnx2x: Don't prevent RSS configuration in INT#x and MSI interrupt modes (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0224-bnx2x-registers-dump-fixes.patch: bnx2x: registers dump fixes (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0225-bnx2x-Move-to-D0-before-clearing-MSI-MSI-X-configura.patch: bnx2x: Move to D0 before clearing MSI/MSI-X configuration (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0226-bnx2x-Fix-the-race-on-bp-stats_pending.patch: bnx2x: Fix the race on bp->stats_pending (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0227-bnx2x-Swap-BCM8073-PHY-polarity-if-required.patch: bnx2x: Swap BCM8073 PHY polarity if required (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0228-bnx2x-Common-init-will-be-executed-only-once-after-P.patch: bnx2x: Common init will be executed only once after POR (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0229-bnx2x-LED-fix-for-BCM8727-over-BCM57712.patch: bnx2x: LED fix for BCM8727 over BCM57712 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0230-bnx2x-Fix-BCM8073-BCM8727-microcode-loading.patch: bnx2x: Fix BCM8073/BCM8727 microcode loading (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0231-bnx2x-Mark-full-duplex-on-some-external-PHYs.patch: bnx2x: Mark full duplex on some external PHYs (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0232-bnx2x-Fix-BCM84823-LED-behavior.patch: bnx2x: Fix BCM84823 LED behavior (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0233-bnx2x-Fix-AER-setting-for-BCM57712.patch: bnx2x: Fix AER setting for BCM57712 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0234-bnx2x-Update-bnx2x-version-to-1.62.00-4.patch: bnx2x: Update bnx2x version to 1.62.00-4 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0235-bnx2i-Added-reconnect-fix-connecting-against-Lefthan.patch: bnx2i: Added reconnect fix connecting against Lefthand targets (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0236-bnx2-Eliminate-AER-error-messages-on-systems-not-sup.patch: bnx2: Eliminate AER error messages on systems not supporting it (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0237-drivers-net-remove-some-rcu-sparse-warnings.patch: drivers/net: remove some rcu sparse warnings (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0238-bnx2x-Remove-setting-XAUI-low-power-for-BCM8073.patch: bnx2x: Remove setting XAUI low-power for BCM8073 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0239-bnx2x-Fix-LED-blink-rate-on-BCM84823.patch: bnx2x: Fix LED blink rate on BCM84823 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0240-bnx2x-Fix-port-swap-for-BCM8073.patch: bnx2x: Fix port swap for BCM8073 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0241-bnx2x-Fix-potential-link-loss-in-multi-function-mode.patch: bnx2x: Fix potential link loss in multi-function mode (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0242-bnx2x-Update-bnx2x-version-to-1.62.00-5.patch: bnx2x: Update bnx2x version to 1.62.00-5 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0243-bnx2x-Fix-line-indentation.patch: bnx2x: Fix line indentation (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0244-bnx2x-Rename-CL45-macro.patch: bnx2x: Rename CL45 macro (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0245-bnx2x-Set-comments-according-to-preferred-Linux-styl.patch: bnx2x: Set comments according to preferred Linux style (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0246-bnx2x-Fix-compilation-warning-messages.patch: bnx2x: Fix compilation warning messages (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0247-bnx2x-Add-and-change-some-net_dev-messages.patch: bnx2x: Add and change some net_dev messages (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0248-bnx2x-Enhance-SFP-module-control.patch: bnx2x: Enhance SFP+ module control (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0249-bnx2x-Add-support-for-new-PHY-BCM84833.patch: bnx2x: Add support for new PHY BCM84833 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0250-bnx2x-Add-CMS-functionality-for-848x3.patch: bnx2x: Add CMS functionality for 848x3 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0251-bnx2x-Remove-support-for-emulation-FPGA.patch: bnx2x: Remove support for emulation/FPGA (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0252-bnx2x-Update-bnx2x-version-to-1.62.11-0.patch: bnx2x: Update bnx2x version to 1.62.11-0 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0253-bnx2x-cnic-Consolidate-iSCSI-FCoE-shared-mem-logic-i.patch: bnx2x, cnic: Consolidate iSCSI/FCoE shared mem logic in bnx2x (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0254-bnx2x-multicasts-in-NPAR-mode.patch: bnx2x: multicasts in NPAR mode (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0255-bnx2x-MTU-for-FCoE-L2-ring.patch: bnx2x: MTU for FCoE L2 ring (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0256-bnx2x-Duplication-in-promisc-mode.patch: bnx2x: Duplication in promisc mode (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0257-bnx2x-Proper-netdev-ndo_set_rx_mode-implementation.patch: bnx2x: Proper netdev->ndo_set_rx_mode() implementation (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0258-bnx2i-Allow-ep-CONNECT_FAILED-condition-to-go-throug.patch: bnx2i: Allow ep CONNECT_FAILED condition to go through proper cleanup (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0259-bnx2i-Fixed-the-32-bit-swapping-of-the-LUN-field-for.patch: bnx2i: Fixed the 32-bit swapping of the LUN field for nopouts for 5771X (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0260-bnx2i-Added-handling-for-unsupported-iSCSI-offload-h.patch: bnx2i: Added handling for unsupported iSCSI offload hba (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0261-bnx2i-Added-support-for-the-57712-E-devices.patch: bnx2i: Added support for the 57712(E) devices (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0262-bnx2i-Added-jumbo-MTU-support-for-the-no-shost-case.patch: bnx2i: Added jumbo MTU support for the no shost case (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0263-bnx2i-Added-iSCSI-text-pdu-support-for-iSCSI-offload.patch: bnx2i: Added iSCSI text pdu support for iSCSI offload (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0264-bnx2i-Updated-to-version-2.6.2.3.patch: bnx2i: Updated to version 2.6.2.3 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0265-bnx2x-Add-a-missing-bit-for-PXP-parity-register-of-5.patch: bnx2x: Add a missing bit for PXP parity register of 57712 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0266-bnx2x-NPAR-mode-Fix-FW-initialization.patch: bnx2x: (NPAR mode) Fix FW initialization (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0267-bnx2x-Fix-nvram-test-for-single-port-devices.patch: bnx2x: Fix nvram test for single port devices (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0268-bnx2x-Fix-ethtool-t-link-test-for-MF-non-pmf-devices.patch: bnx2x: Fix ethtool -t link test for MF (non-pmf) devices (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0269-bnx2x-properly-configure-coefficients-for-MinBW-algo.patch: bnx2x: properly configure coefficients for MinBW algorithm (NPAR mode) (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0270-bnx2x-perform-statistics-action-before-state-transit.patch: bnx2x: perform statistics "action" before state transition (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0271-bnx2x-properly-calculate-lro_mss.patch: bnx2x: properly calculate lro_mss (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050).- patches.suse/fs-proc-vmcorec-add-hook-to-read_from_oldmem-to-check-for-non-ram-pages.patch: fs/proc/vmcore.c: add hook to read_from_oldmem() to check for non-ram pages (bnc#684297).Fate#311164,bnc#697859: - patches.drivers/001-cpufreq_ondemand_count_iowait_as_busy: sched: Add a comment to get_cpu_idle_time_us() (fate#311164,bnc#698774). - patches.drivers/002-cpufreq_ondemand_count_iowait_as_busy: sched: Introduce a function to update the idle statistics (fate#311164,bnc#698774). - patches.drivers/003-cpufreq_ondemand_count_iowait_as_busy: sched: Update the idle statistics in get_cpu_idle_time_us() (fate#311164,bnc#698774). - patches.drivers/004-cpufreq_ondemand_count_iowait_as_busy: sched: Fold updating of the last_update_time_info into update_ts_time_stats() (fate#311164,bnc#698774). - patches.drivers/005-cpufreq_ondemand_count_iowait_as_busy: sched: Eliminate the ts->idle_lastupdate field (fate#311164,bnc#698774). - patches.drivers/006-cpufreq_ondemand_count_iowait_as_busy: sched: Intoduce get_cpu_iowait_time_us() (fate#311164,bnc#698774). - patches.drivers/007-cpufreq_ondemand_count_iowait_as_busy: ondemand: Solve a big performance issue by counting IOWAIT time as busy (fate#311164,bnc#698774).- patches.drivers/megaraid-sas-05.38-update: megaraid_sas: Update to 00.00.05.38-SL1 (FATE#311453,bnc#697777).- be2iscsi update (FATE#311449): * patches.drivers/0001-be2iscsi-fix-lock-imbalance.patch: be2iscsi: fix lock imbalance (FATE#311449,bnc#690073). * patches.drivers/0002-be2iscsi-correct-return-value-in-mgmt_invali.patch: be2iscsi: correct return value in mgmt_invalidate_icds() (FATE#311449,bnc#690073). * patches.drivers/0003-be2iscsi-fix-disconnection-cleanup.patch: be2iscsi: fix disconnection cleanup (FATE#311449,bnc#690073). * patches.drivers/0004-be2iscsi-fix-memory-leak-on-error-path.patch: be2iscsi: fix memory leak on error path (FATE#311449,bnc#690073). * patches.drivers/0005-be2iscsi-fix-null-dereference-on-error-path.patch: be2iscsi: fix null dereference on error path (FATE#311449,bnc#690073). * patches.drivers/0006-be2iscsi-Fix-warnings-from-new-checkpatch.pl.patch: be2iscsi: Fix warnings from new checkpatch.pl (FATE#311449,bnc#690073). * patches.drivers/0007-be2iscsi-Fixing-return-values.patch: be2iscsi: Fixing return values (FATE#311449,bnc#690073). * patches.drivers/0008-be2iscsi-Fixing-the-return-type-of-functions.patch: be2iscsi: Fixing the return type of functions (FATE#311449,bnc#690073). * patches.drivers/0009-be2iscsi-pass-the-return-from-beiscsi_open_c.patch: be2iscsi: pass the return from beiscsi_open_conn (FATE#311449,bnc#690073). * patches.drivers/0010-be2iscsi-Fix-for-freeing-cid.patch: be2iscsi: Fix for freeing cid (FATE#311449,bnc#690073). * patches.drivers/0011-be2iscsi-No-return-value-for-hwi_enable_intr.patch: be2iscsi: No return value for hwi_enable_intr (FATE#311449,bnc#690073). * patches.drivers/0012-be2iscsi-Fix-to-handle-request_irq-failure.patch: be2iscsi: Fix to handle request_irq failure (FATE#311449,bnc#690073). * patches.drivers/0013-be2iscsi-Free-tags-allocated.patch: be2iscsi: Free tags allocated (FATE#311449,bnc#690073). * patches.drivers/0014-be2iscsi-Adding-crashdump-support.patch: be2iscsi: Adding crashdump support (FATE#311449,bnc#690073). * patches.drivers/0015-be2iscsi-Maintain-same-ITT-across-login.patch: be2iscsi: Maintain same ITT across login (FATE#311449,bnc#690073). * patches.drivers/0016-be2iscsi-Limit-max_xmit_length.patch: be2iscsi: Limit max_xmit_length (FATE#311449,bnc#690073). * patches.drivers/0017-be2iscsi-Remove-debug-print-in-IO-path.patch: be2iscsi: Remove debug print in IO path (FATE#311449,bnc#690073). * patches.drivers/0018-be2iscsi-Fix-for-premature-buffer-free.patch: be2iscsi: Fix for premature buffer free (FATE#311449,bnc#690073). * patches.drivers/0019-be2iscsi-The-extended-shift-must-be-16.patch: be2iscsi: The extended shift must be 16 (FATE#311449,bnc#690073). * patches.drivers/0020-scsi-add-Kconfig-dependency-on-NET.patch: scsi: add Kconfig dependency on NET (FATE#311449,bnc#690073). * patches.drivers/0021-be2iscsi-Add-support-for-iscsi-boot.patch: be2iscsi: Add support for iscsi boot (FATE#311449,bnc#690073). * patches.drivers/0022-be2iscsi-Increase-max-sector.patch: be2iscsi: Increase max sector (FATE#311449,bnc#690073). * patches.drivers/0023-be2iscsi-Driver-Version-change-to-2.0.549.0.patch: be2iscsi: Driver Version change to 2.0.549.0 (FATE#311449,bnc#690073). * patches.drivers/0024-be2iscsi-Fix-for-Login-failure.patch: be2iscsi: Fix for Login failure (FATE#311449,bnc#690073). * patches.drivers/0025-be2iscsi-More-time-for-FW.patch: [SCSI] be2iscsi: More time for FW (FATE#311449,bnc#690073). * patches.drivers/0026-be2iscsi-Remove-premature-free-of-cid.patch: be2iscsi: Remove premature free of cid (FATE#311449,bnc#690073). * patches.drivers/0027-be2iscsi-SGE-Len-64K.patch: [SCSI] be2iscsi: SGE Len == 64K (FATE#311449,bnc#690073). * patches.drivers/0028-be2iscsi-fix-gfp-use-in-alloc_pdu.patch: be2iscsi: fix gfp use in alloc_pdu (FATE#311449,bnc#690073). * patches.drivers/0029-be2iscsi-fix-null-ptr-when-accessing-task-hd.patch: be2iscsi: fix null ptr when accessing task hdr (FATE#311449,bnc#690073). * patches.drivers/0030-be2iscsi-fix-null-ptr-ref-in-conn-get-param.patch: be2iscsi: fix null ptr ref in conn get param (FATE#311449,bnc#690073). * patches.drivers/0031-be2iscsi-Fix-common-misspellings.patch: Fix common misspellings (FATE#311449,bnc#690073). * patches.drivers/0032-be2iscsi-remove-extra-semicolons.patch: treewide: remove extra semicolons (FATE#311449,bnc#690073). * patches.drivers/0033-be2iscsi-change-in-copyright-notice.patch: be2iscsi: change in copyright notice (FATE#311449,bnc#690073). * patches.drivers/0034-be2iscsi-Modifying-Maintainer-s-emailid.patch: be2iscsi: Modifying Maintainer's emailid (FATE#311449,bnc#690073). * patches.drivers/0035-be2iscsi-Set-a-timeout-to-FW.patch: be2iscsi: Set a timeout to FW (FATE#311449,bnc#690073). * patches.drivers/0036-be2iscsi-Fix-for-proper-setting-of-FW.patch: be2iscsi: Fix for proper setting of FW (FATE#311449,bnc#690073). * patches.drivers/0037-be2iscsi-fix-boot-hang-due-to-interrupts-not.patch: be2iscsi: fix boot hang due to interrupts not getting rearmed (FATE#311449,bnc#690073). * patches.drivers/0038-be2iscsi-fix-chip-cleanup.patch: [SCSI] be2iscsi: fix chip cleanup (FATE#311449,bnc#690073). * patches.drivers/0039-be2iscsi-update-version.patch: [SCSI] be2iscsi: update version (FATE#311449,bnc#690073). * patches.drivers/0040-be2iscsi-Fix-MSI-X-Interrupt-Names.patch: be2iscsi: Fix MSI-X Interrupt Names (FATE#311449,bnc#690073). - Update iSCSI stack with latest fixes: * patches.suse/iscsi-add-module-alias.patch: [SCSI] iscsi: add module alias (FATE#311449,bnc#690073). * patches.suse/iscsi-class-add-callout-to-get-iscsi_endpoin.patch: iscsi class: add callout to get iscsi_endpoint values (FATE#311449,bnc#690073). * patches.suse/iscsi-class-remove-unused-active-variable.patch: iscsi class: remove unused active variable (FATE#311449,bnc#690073). * patches.suse/iscsi-fix-iscsi_endpoint-leak.patch: [SCSI] iscsi: fix iscsi_endpoint leak (FATE#311449,bnc#690073). * patches.suse/iscsi_tcp-use-iscsi_conn_get_addr_param-libi.patch: iscsi_tcp: use iscsi_conn_get_addr_param libiscsi function (FATE#311449,bnc#690073). * patches.suse/iscsi_transport-added-new-iscsi_param-to-dis.patch: iscsi_transport: added new iscsi_param to display target alias in sysfs (FATE#311449,bnc#690073). * patches.suse/libiscsi-add-helper-to-convert-addr-to-strin.patch: libiscsi: add helper to convert addr to string (FATE#311449,bnc#690073). * patches.suse/libiscsi-add-more-informative-failure-messag.patch: libiscsi: add more informative failure message during iscsi scsi eh (FATE#311449,bnc#690073). * patches.suse/libiscsi-do-not-take-host-lock-in-queuecomma.patch: libiscsi: do not take host lock in queuecommand (FATE#311449,bnc#690073). * patches.suse/libiscsi-use-bh-locking-instead-of-irq-with.patch: libiscsi: use bh locking instead of irq with session lock (FATE#311449,bnc#690073). * patches.suse/libiscsi_tcp-use-kmap-in-xmit-path.patch: [SCSI] libiscsi_tcp: use kmap in xmit path (FATE#311449,bnc#690073). * patches.suse/scsi_transport_iscsi-make-priv_sess-file-wri.patch: scsi_transport_iscsi: make priv_sess file writeable only by root (FATE#311449,bnc#690073).- patches.suse/sata-enable-non-queueable-flush-flag.patch: Fix misplacement of an hunk by quilt refresh that caused build error.- patches.suse/block-Stop-using-byte-offsets.patch: Fix "unused variable" warning.- Add missing block layer fixes (FATE#312039). - patches.suse/block-add-a-non-queueable-flush-flag.patch: block: add a non-queueable flush flag (FATE#312039). - patches.suse/block-add-force_kblockd-to-__blk_run_queue.patch: block: add @force_kblockd to __blk_run_queue() (FATE#312039). - patches.suse/block-blk-flush-shouldn-t-call-directly-into-q-request_fn-__blk_run_queue.patch: block: blk-flush shouldn't call directly into q->request_fn() __blk_run_queue() (FATE#312039). - patches.suse/block-dump-request-state-on-seeing-a-corrupted-request-completion.patch: block: dump request state on seeing a corrupted request completion (FATE#312039). - patches.suse/block-hold-queue-if-flush-is-running-for-non-queueable-flush-drive.patch: block: hold queue if flush is running for non-queueable flush drive (FATE#312039). - patches.suse/block-make-the-flush-insertion-use-the-tail-of-the-dispatch-list.patch: block: make the flush insertion use the tail of the dispatch list (FATE#312039). - patches.suse/block-remove-the-extra-check-in-queue_requests_store.patch: block: Remove the extra check in queue_requests_store (FATE#312039). - patches.suse/sata-enable-non-queueable-flush-flag.patch: SATA: enable non-queueable flush flag (FATE#312039).- patches.drivers/lpfc-8.3.5.45-update: lpfc: Update to 8.3.5.45 (FATE#311447,bnc#686702).- patches.drivers/mptfusion-Fix-Incorrect-return-value-in-mpts.patch: mptfusion: Fix Incorrect return value in mptscsih_dev_reset (FATE#311454,bnc#680814). - patches.drivers/mptfusion-Fix-memory-leak-in-mptctl_getiocin.patch: mptfusion: Fix memory leak in mptctl_getiocinfo() (FATE#311454,bnc#680814). - patches.drivers/mptfusion-Remove-debug-print-from-mptscsih_q.patch: mptfusion: Remove debug print from mptscsih_qcmd() (FATE#311454,bnc#680814). - patches.drivers/mptfusion-Update-to-4.28.00.00suse.patch: mptfusion: Update to 4.28.00.00suse (FATE#311454,bnc#680814). - patches.drivers/mptfusion-release-resources-in-error-return.patch: mptfusion: release resources in error return path (FATE#311454,bnc#680814).- add patches.fixes/xfs-pass-private-data-to-formatter-in-xfs_bulkstat to series.conf (bnc#691536)- patches.suse/mm-check-any-page-in-pageblock-reserved.patch, patches.suse/mm-compaction-use-async-migration-__GFP_NO_KSWAPD.patch, patches.suse/mm-migrate-move-inc_zone_page_state-isolated.patch: Commit-ID -> Git-commit. - patches.suse/mm-thp-add-pmd-mangling-x86.patch, patches.xen/xen3-mm-thp-add-pmd-mangling-x86.patch: Commit-ID -> Git-commit + fix commit ID.- patches.arch/005-intel_idle__native_hardware_cpuidle_driver_for_latest_Intel_processors.patch: Correct file mode. - patches.drivers/0142-tg3-implement-ethtool-set_phys_id.patch: Fixup patch for series2git.- supported.conf: Mark vhost_net as supported (FATE#311977)- Update config files. - patches.drivers/vhost-Fix-host-panic-if-ioctl-called-with-wrong-ind.patch: vhost: Fix host panic if ioctl called with wrong index (FATE#311977). - patches.drivers/vhost-add-__rcu-annotations.patch: vhost: add __rcu annotations (FATE#311977). - patches.drivers/vhost-add-unlikely-annotations-to-error-path.patch: vhost: add unlikely annotations to error path (FATE#311977). - patches.drivers/vhost-apply-cgroup-to-vhost-workers.patch: vhost: apply cgroup to vhost workers (FATE#311977). - patches.drivers/vhost-avoid-pr_err-on-condition-guest-can-trigger.patch: vhost: avoid pr_err on condition guest can trigger (FATE#311977). - patches.drivers/vhost-better-variable-name-in-logging.patch: vhost: better variable name in logging (FATE#311977). - patches.drivers/vhost-break-out-of-polling-loop-on-error.patch: vhost: break out of polling loop on error (FATE#311977). - patches.drivers/vhost-cgroups-Add-an-API-to-attach-a-task-to-current-task.patch: cgroups: Add an API to attach a task to current task's cgroup (FATE#311977). - patches.drivers/vhost-copy_to_user-__copy_to_user.patch: vhost: copy_to_user -> __copy_to_user (FATE#311977). - patches.drivers/vhost-correctly-set-bits-of-dirty-pages.patch: vhost: correctly set bits of dirty pages (FATE#311977). - patches.drivers/vhost-error-handling-fix.patch: vhost: error handling fix (FATE#311977). - patches.drivers/vhost-export-tun_get_socket.patch: tun: export underlying socket (FATE#311977). - patches.drivers/vhost-final-cleanup.patch: vhost backport final cleanup (FATE#311977). - patches.drivers/vhost-fix-attach-to-cgroups-regression.patch: vhost: fix attach to cgroups regression (FATE#311977). - patches.drivers/vhost-fix-barrier-pairing.patch: vhost: fix barrier pairing (FATE#311977). - patches.drivers/vhost-fix-error-handling-in-vring-ioctls.patch: vhost: fix error handling in vring ioctls (FATE#311977). - patches.drivers/vhost-fix-error-path-in-vhost_net_set_backend.patch: vhost: fix error path in vhost_net_set_backend (FATE#311977). - patches.drivers/vhost-fix-get_user_pages_fast-error-handling.patch: vhost: fix get_user_pages_fast error handling (FATE#311977). - patches.drivers/vhost-fix-interrupt-mitigation-with-raw-sockets.patch: vhost: fix interrupt mitigation with raw sockets (FATE#311977). - patches.drivers/vhost-fix-log-ctx-signalling.patch: vhost: fix log ctx signalling (FATE#311977). - patches.drivers/vhost-fix-return-code-for-log_access_ok.patch: vhost: fix return code for log_access_ok() (FATE#311977). - patches.drivers/vhost-fix-signed-unsigned-comparison.patch: vhost: fix signed/unsigned comparison (FATE#311977). - patches.drivers/vhost-fix-sparse-warnings.patch: vhost: fix sparse warnings (FATE#311977). - patches.drivers/vhost-fix-the-memory-leak-which-will-happen-when-me.patch: vhost: fix the memory leak which will happen when memory_access_ok fails (FATE#311977). - patches.drivers/vhost-fix-to-check-the-return-value-of-copy_to-from.patch: vhost: fix to check the return value of copy_to/from_user() correctly (FATE#311977). - patches.drivers/vhost-fix-typos-in-comment.patch: vhost: fix typos in comment (FATE#311977). - patches.drivers/vhost-get-put_user-__get-__put_user.patch: vhost: get/put_user -> __get/__put_user (FATE#311977). - patches.drivers/vhost-include-cleanup-Update-gfp.h-and-slab.h-includes-to.patch: include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h (FATE#311977). - patches.drivers/vhost-initialize-log-eventfd-context-pointer.patch: vhost: initialize log eventfd context pointer (FATE#311977). - patches.drivers/vhost-kernel-wide-replace-USHORT_MAX-SHORT_MAX-and-SHORT.patch: kernel-wide: replace USHORT_MAX, SHORT_MAX and SHORT_MIN with USHRT_MAX, SHRT_MAX and SHRT_MIN (FATE#311977). - patches.drivers/vhost-logging-thinko-fix.patch: vhost: logging thinko fix (FATE#311977). - patches.drivers/vhost-max-s-g-to-match-qemu.patch: vhost: max s/g to match qemu (FATE#311977). - patches.drivers/vhost-misc-Fix-allocation-borrowed-by-vhost_net.patch: misc: Fix allocation 'borrowed' by vhost_net (FATE#311977). - patches.drivers/vhost-mm-export-use_mm-unuse_mm-to-modules.patch: mm: export use_mm/unuse_mm to modules (FATE#311977). - patches.drivers/vhost-net-avoid-flush-under-lock.patch: vhost-net: avoid flush under lock (FATE#311977). - patches.drivers/vhost-net-batch-use-unuse-mm.patch: vhost-net: batch use/unuse mm (FATE#311977). - patches.drivers/vhost-net-fix-range-checking-in-mrg-bufs-case.patch: vhost-net: fix range checking in mrg bufs case (FATE#311977). - patches.drivers/vhost-net-fix-rcu-check-usage.patch: vhost/net: fix rcu check usage (FATE#311977). - patches.drivers/vhost-net-fix-to-check-the-return-value-of-copy_to.patch: vhost-net: fix to check the return value of copy_to/from_user() correctly (FATE#311977). - patches.drivers/vhost-net-fix-vq_memory_access_ok-error-checking.patch: vhost-net: fix vq_memory_access_ok error checking (FATE#311977). - patches.drivers/vhost-net-mergeable-buffers-support.patch: vhost-net: mergeable buffers support (FATE#311977). - patches.drivers/vhost-net-reorganize-some-code.patch: vhost net: reorganize some code (FATE#311977). - patches.drivers/vhost-net-restart-tx-poll-on-sk_sndbuf-full.patch: vhost-net: restart tx poll on sk_sndbuf full (FATE#311977). - patches.drivers/vhost-net-switch-to-smp-barriers.patch: vhost-net: switch to smp barriers (FATE#311977). - patches.drivers/vhost-put-mm-after-thread-stop.patch: vhost: put mm after thread stop (FATE#311977). - patches.drivers/vhost-rcu-annotation-fixup.patch: vhost: rcu annotation fixup (FATE#311977). - patches.drivers/vhost-remove-unused-include.patch: vhost: remove unused include (FATE#311977). - patches.drivers/vhost-replace-vhost_workqueue-with-per-vhost-kthrea.patch: vhost: replace vhost_workqueue with per-vhost kthread (FATE#311977). - patches.drivers/vhost-stop-worker-only-if-created.patch: vhost: stop worker only if created (FATE#311977). - patches.drivers/vhost-tun-add-ioctl-to-modify-vnet-header-size.patch: tun: add ioctl to modify vnet header size (FATE#311977). - patches.drivers/vhost-vhost-Cleanup-vhost.c-and-net.c.patch: vhost: Cleanup vhost.c and net.c (FATE#311977). - patches.drivers/vhost-vhost-lock-receive-queue-not-the-socket.patch: vhost: lock receive queue, not the socket (FATE#311977). - patches.drivers/vhost-vhost-net-Unify-the-code-of-mergeable-and-big-buffe.patch: vhost-net: Unify the code of mergeable and big buffer handling (FATE#311977). - patches.drivers/vhost-vhost-net-check-the-support-of-mergeable-buffer-out.patch: vhost-net: check the support of mergeable buffer outside the receive loop (FATE#311977). - patches.drivers/vhost-vhost-net-remove-unlocked-use-of-receive_queue.patch: vhost-net: remove unlocked use of receive_queue (FATE#311977). - patches.drivers/vhost-vhost-support-event-index.patch: vhost: support event index (FATE#311977). - patches.drivers/vhost-vhost.c-delete-double-assignment.patch: drivers/vhost/vhost.c: delete double assignment (FATE#311977). - patches.drivers/vhost-virtio-event-index-interface.patch: virtio: event index interface (FATE#311977). - patches.drivers/vhost-virtio-ring-inline-function-to-check-for-events.patch: virtio ring: inline function to check for events (FATE#311977). - patches.drivers/vhost-virtio_ring-support-event-idx-feature.patch: virtio_ring: support event idx feature (FATE#311977). - patches.drivers/vhost-whitespace-fix.patch: vhost: whitespace fix (FATE#311977). - patches.drivers/vhost_net-a-kernel-level-virtio-server.patch: vhost_net: a kernel-level virtio server (FATE#311977).- patches.suse/memcg-unify-charge-uncharge-quantities-to-units-of-pages.patch: Refresh - added missing upstream commit id.Add Git-commit tags. - patches.kernel.org/patch-2.6.32.1: Refresh. - patches.kernel.org/patch-2.6.32.1-2: Refresh. - patches.kernel.org/patch-2.6.32.10-11: Refresh. - patches.kernel.org/patch-2.6.32.11-12: Refresh. - patches.kernel.org/patch-2.6.32.12-13: Refresh. - patches.kernel.org/patch-2.6.32.13-14: Refresh. - patches.kernel.org/patch-2.6.32.15-16: Refresh. - patches.kernel.org/patch-2.6.32.16-17: Refresh. - patches.kernel.org/patch-2.6.32.17-18: Refresh. - patches.kernel.org/patch-2.6.32.18-19: Refresh. - patches.kernel.org/patch-2.6.32.19-20: Refresh. - patches.kernel.org/patch-2.6.32.2-3: Refresh. - patches.kernel.org/patch-2.6.32.20-21: Refresh. - patches.kernel.org/patch-2.6.32.21-22: Refresh. - patches.kernel.org/patch-2.6.32.22-23: Refresh. - patches.kernel.org/patch-2.6.32.24-25: Refresh. - patches.kernel.org/patch-2.6.32.25-26: Refresh. - patches.kernel.org/patch-2.6.32.26-27: Refresh. - patches.kernel.org/patch-2.6.32.27-28: Refresh. - patches.kernel.org/patch-2.6.32.28-29: Refresh. - patches.kernel.org/patch-2.6.32.29-30: Refresh. - patches.kernel.org/patch-2.6.32.3-4: Refresh. - patches.kernel.org/patch-2.6.32.31-32: Refresh. - patches.kernel.org/patch-2.6.32.32-33: Refresh. - patches.kernel.org/patch-2.6.32.33-34: Refresh. - patches.kernel.org/patch-2.6.32.35-36: Refresh. - patches.kernel.org/patch-2.6.32.36-37: Refresh. - patches.kernel.org/patch-2.6.32.38-39: Refresh. - patches.kernel.org/patch-2.6.32.39-40: Refresh. - patches.kernel.org/patch-2.6.32.4-5: Refresh. - patches.kernel.org/patch-2.6.32.40-41: Refresh. - patches.kernel.org/patch-2.6.32.41-42: Refresh. - patches.kernel.org/patch-2.6.32.5-6: Refresh. - patches.kernel.org/patch-2.6.32.6-7: Refresh. - patches.kernel.org/patch-2.6.32.7-8: Refresh. - patches.kernel.org/patch-2.6.32.8-9: Refresh. - patches.kernel.org/patch-2.6.32.9-10: Refresh.- Update to 2.6.32.42 - patches.arch/acpi_handle_root_level_devices.patch: Delete. - patches.fixes/Fix-for-buffer-overflow-in-ldm_frag_add-not-sufficie.patch: Delete. - patches.fixes/PCI-Set-PCIE-maxpayload-for-card-during-hotplug-inse.patch: Delete. - patches.fixes/block-Add-proper-guards-to-__elv_next_request: Delete. - patches.fixes/block-Export-blk_get_queue-and-blk_put_queue: Delete. - patches.fixes/scsi-Fix-oops-caused-by-queue-refcounting-failure: Delete. - patches.suse/SoN-09-global-ALLOC_NO_WATERMARKS.patch: Refresh. - patches.suse/SoN-27-nfs-swap_ops.patch: Refresh. - patches.xen/xen3-patch-2.6.27: Refresh.- patches.drivers/0188-qlcnic-fix-checks-for-auto_fw_reset.patch: qlcnic: fix checks for auto_fw_reset (bnc#698272, FATE#311468).- patches.drivers/0002-tg3-Add-tg3_compat.h.patch: tg3: Add tg3_compat.h (bnc#697783, FATE#311457). - patches.drivers/0003-net-use-netdev_mc_count-and-netdev_mc_empty-when-app.patch: net: use netdev_mc_count and netdev_mc_empty when appropriate (bnc#697783, FATE#311457). - patches.drivers/0004-tg3-Reset-phy-during-bringup-when-using-phylib.patch: tg3: Reset phy during bringup when using phylib (bnc#697783, FATE#311457). - patches.drivers/0005-tg3-Allow-phylib-flowctrl-changes-anytime.patch: tg3: Allow phylib flowctrl changes anytime (bnc#697783, FATE#311457). - patches.drivers/0006-tg3-Rename-TG3_FLG3_RGMII_STD_IBND_DISABLE.patch: tg3: Rename TG3_FLG3_RGMII_STD_IBND_DISABLE (bnc#697783, FATE#311457). - patches.drivers/0007-tg3-Reduce-indent-level-of-tg3_rx_prodring_alloc.patch: tg3: Reduce indent level of tg3_rx_prodring_alloc (bnc#697783, FATE#311457). - patches.drivers/0008-tg3-Discover-phy-address-once.patch: tg3: Discover phy address once (bnc#697783, FATE#311457). - patches.drivers/0009-tg3-Reformat-SSID-to-phy-ID-table.patch: tg3: Reformat SSID to phy ID table (bnc#697783, FATE#311457). - patches.drivers/0010-tg3-Rename-tg3-phy-ID-preprocessor-definitions.patch: tg3: Rename tg3 phy ID preprocessor definitions (bnc#697783, FATE#311457). - patches.drivers/0011-tg3-Push-phylib-definitions-to-phylib.patch: tg3: Push phylib definitions to phylib (bnc#697783, FATE#311457). - patches.drivers/0012-drivers-net-tg3.c-Use-pr-netdev-_-level-macro-helper.patch: drivers/net/tg3.c: Use (pr|netdev)_ macro helpers (bnc#697783, FATE#311457). - patches.drivers/0013-net-convert-multiple-drivers-to-use-netdev_for_each_.patch: net: convert multiple drivers to use netdev_for_each_mc_addr, part6 (bnc#697783, FATE#311457). - patches.drivers/0014-pci-Add-PCI-LRDT-tag-size-and-section-size.patch: pci: Add PCI LRDT tag size and section size (bnc#697783, FATE#311457). - patches.drivers/0015-pci-Add-large-and-small-resource-data-type-code.patch: pci: Add large and small resource data type code (bnc#697783, FATE#311457). - patches.drivers/0016-pci-Add-helper-to-find-a-VPD-resource-data-type.patch: pci: Add helper to find a VPD resource data type (bnc#697783, FATE#311457). - patches.drivers/0017-pci-Add-VPD-information-field-helper-functions.patch: pci: Add VPD information field helper functions (bnc#697783, FATE#311457). - patches.drivers/0018-pci-Add-helper-to-search-for-VPD-keywords.patch: pci: Add helper to search for VPD keywords (bnc#697783, FATE#311457). - patches.drivers/0019-tg3-Remove-now-useless-VPD-code.patch: tg3: Remove now useless VPD code (bnc#697783, FATE#311457). - patches.drivers/0020-tg3-Restore-likely-check-in-tg3_poll_msix.patch: tg3: Restore likely() check in tg3_poll_msix() (bnc#697783, FATE#311457). - patches.drivers/0021-tg3-Replace-pr_err-with-sensible-alternatives.patch: tg3: Replace pr_err with sensible alternatives (bnc#697783, FATE#311457). - patches.drivers/0022-tg3-netdev_err-dev_err.patch: tg3: netdev_err() => dev_err() (bnc#697783, FATE#311457). - patches.drivers/0023-tg3-Fix-message-80-char-violations.patch: tg3: Fix message 80 char violations (bnc#697783, FATE#311457). - patches.drivers/0024-tg3-Prepare-FW-version-code-for-VPD-versioning.patch: tg3: Prepare FW version code for VPD versioning (bnc#697783, FATE#311457). - patches.drivers/0025-tg3-Use-VPD-fw-version-when-present.patch: tg3: Use VPD fw version when present (bnc#697783, FATE#311457). - patches.drivers/0026-tg3-Whitespace-constant-and-comment-updates.patch: tg3: Whitespace, constant, and comment updates (bnc#697783, FATE#311457). - patches.drivers/0027-tg3-The-case-of-switches.patch: tg3: The case of switches (bnc#697783, FATE#311457). - patches.drivers/0028-tg3-Cleanup-if-codestyle.patch: tg3: Cleanup if codestyle (bnc#697783, FATE#311457). - patches.drivers/0029-tg3-Remove-tg3_dump_state.patch: tg3: Remove tg3_dump_state() (bnc#697783, FATE#311457). - patches.drivers/0030-tg3-Optimize-rx-double-copy-test.patch: tg3: Optimize rx double copy test (bnc#697783, FATE#311457). - patches.drivers/0031-tg3-Re-inline-VLAN-tags-when-appropriate.patch: tg3: Re-inline VLAN tags when appropriate (bnc#697783, FATE#311457). - patches.drivers/0032-tg3-Unify-max-pkt-size-preprocessor-constants.patch: tg3: Unify max pkt size preprocessor constants (bnc#697783, FATE#311457). - patches.drivers/0033-tg3-Remove-function-errors-flagged-by-checkpatch.patch: tg3: Remove function errors flagged by checkpatch (bnc#697783, FATE#311457). - patches.drivers/0034-tg3-use-the-DMA-state-API-instead-of-the-pci-equival.patch: tg3: use the DMA state API instead of the pci equivalents (bnc#697783, FATE#311457). - patches.drivers/0035-tg3-Enable-GRO-by-default.patch: tg3: Enable GRO by default (bnc#697783, FATE#311457). - patches.drivers/0036-tg3-Off-by-one-error-in-RSS-setup.patch: tg3: Off-by-one error in RSS setup (bnc#697783, FATE#311457). - patches.drivers/0037-tg3-Allow-single-MSI-X-vector-allocations.patch: tg3: Allow single MSI-X vector allocations (bnc#697783, FATE#311457). - patches.drivers/0038-tg3-5717-Allow-serdes-link-via-parallel-detect.patch: tg3: 5717: Allow serdes link via parallel detect (bnc#697783, FATE#311457). - patches.drivers/0039-tg3-Use-devfn-to-determine-function-number.patch: tg3: Use devfn to determine function number (bnc#697783, FATE#311457). - patches.drivers/0040-tg3-Add-5719-ASIC-rev.patch: tg3: Add 5719 ASIC rev (bnc#697783, FATE#311457). - patches.drivers/0041-tg3-Add-5719-PCI-device-and-phy-IDs.patch: tg3: Add 5719 PCI device and phy IDs (bnc#697783, FATE#311457). - patches.drivers/0042-tg3-64-bit-stats-on-all-arches.patch: tg3: 64 bit stats on all arches (bnc#697783, FATE#311457). - patches.drivers/0043-tg3-allow-TSO-on-vlan-devices.patch: tg3: allow TSO on vlan devices (bnc#697783, FATE#311457). - patches.drivers/0044-tg3-Revert-RSS-indir-tbl-setup-change.patch: tg3: Revert RSS indir tbl setup change (bnc#697783, FATE#311457). - patches.drivers/0045-tg3-Fix-single-MSI-X-vector-coalescing.patch: tg3: Fix single MSI-X vector coalescing (bnc#697783, FATE#311457). - patches.drivers/0046-tg3-Relax-5717-serdes-restriction.patch: tg3: Relax 5717 serdes restriction (bnc#697783, FATE#311457). - patches.drivers/0047-tg3-Report-driver-version-to-firmware.patch: tg3: Report driver version to firmware (bnc#697783, FATE#311457). - patches.drivers/0048-tg3-Revert-PCIe-tx-glitch-fix.patch: tg3: Revert PCIe tx glitch fix (bnc#697783, FATE#311457). - patches.drivers/0049-tg3-Fix-some-checkpatch-errors.patch: tg3: Fix some checkpatch errors (bnc#697783, FATE#311457). - patches.drivers/0050-tg3-Add-5784-ASIC-rev-to-earlier-PCIe-MPS-fix.patch: tg3: Add 5784 ASIC rev to earlier PCIe MPS fix (bnc#697783, FATE#311457). - patches.drivers/0051-tg3-Disable-TSS-also-during-tg3_close.patch: tg3: Disable TSS also during tg3_close() (bnc#697783, FATE#311457). - patches.drivers/0052-tg3-Create-TG3_FLG3_5717_PLUS-flag.patch: tg3: Create TG3_FLG3_5717_PLUS flag (bnc#697783, FATE#311457). - patches.drivers/0053-tg3-Don-t-access-phy-test-ctrl-reg-for-5717.patch: tg3: Don't access phy test ctrl reg for 5717+ (bnc#697783, FATE#311457). - patches.drivers/0054-tg3-Manage-gphy-power-for-CPMU-less-devs-only.patch: tg3: Manage gphy power for CPMU-less devs only (bnc#697783, FATE#311457). - patches.drivers/0055-tg3-Restrict-ASPM-workaround-devlist.patch: tg3: Restrict ASPM workaround devlist (bnc#697783, FATE#311457). - patches.drivers/0056-tg3-Detect-APE-firmware-types.patch: tg3: Detect APE firmware types (bnc#697783, FATE#311457). - patches.drivers/0057-tg3-Remove-5720-5750-and-5750M.patch: tg3: Remove 5720, 5750, and 5750M (bnc#697783, FATE#311457). - patches.drivers/0058-tg3-Improve-small-packet-performance.patch: tg3: Improve small packet performance (bnc#697783, FATE#311457). - patches.drivers/0059-tg3-Add-error-reporting-to-tg3_phydsp_write.patch: tg3: Add error reporting to tg3_phydsp_write() (bnc#697783, FATE#311457). - patches.drivers/0060-tg3-Add-phy-related-preprocessor-constants.patch: tg3: Add phy-related preprocessor constants (bnc#697783, FATE#311457). - patches.drivers/0061-tg3-Create-phy_flags-and-migrate-phy_is_low_power.patch: tg3: Create phy_flags and migrate phy_is_low_power (bnc#697783, FATE#311457). - patches.drivers/0062-tg3-Migrate-tg3_flags-to-phy_flags.patch: tg3: Migrate tg3_flags to phy_flags (bnc#697783, FATE#311457). - patches.drivers/0063-drivers-net-avoid-some-skb-ip_summed-initializations.patch: drivers/net: avoid some skb->ip_summed initializations (bnc#697783, FATE#311457). - patches.drivers/0064-tg3-Fix-read-DMA-FIFO-overruns-on-recent-devices.patch: tg3: Fix read DMA FIFO overruns on recent devices (bnc#697783, FATE#311457). - patches.drivers/0065-tg3-Disable-TSS.patch: tg3: Disable TSS (bnc#697783, FATE#311457). - patches.drivers/0066-tg3-Don-t-send-APE-events-for-NCSI-firmware.patch: tg3: Don't send APE events for NCSI firmware (bnc#697783, FATE#311457). - patches.drivers/0067-tg3-Unlock-5717-B0-support.patch: tg3: Unlock 5717 B0+ support (bnc#697783, FATE#311457). - patches.drivers/0068-tg3-Clarify-semantics-of-TG3_IRQ_MAX_VECS.patch: tg3: Clarify semantics of TG3_IRQ_MAX_VECS (bnc#697783, FATE#311457). - patches.drivers/0069-tg3-Move-producer-ring-struct-to-tg3_napi.patch: tg3: Move producer ring struct to tg3_napi (bnc#697783, FATE#311457). - patches.drivers/0070-tg3-Use-skb_is_gso_v6.patch: tg3: Use skb_is_gso_v6() (bnc#697783, FATE#311457). - patches.drivers/0071-tg3-Dynamically-allocate-VPD-data-memory.patch: tg3: Dynamically allocate VPD data memory (bnc#697783, FATE#311457). - patches.drivers/0072-tg3-phy-tmp-variable-roundup.patch: tg3: phy tmp variable roundup (bnc#697783, FATE#311457). - patches.drivers/0073-drivers-net-return-operator-cleanup.patch: drivers/net: return operator cleanup (bnc#697783, FATE#311457). - patches.drivers/0074-tg3-Use-netif_set_real_num_-rx-tx-_queues.patch: tg3: Use netif_set_real_num_{rx,tx}_queues() (bnc#697783, FATE#311457). - patches.drivers/0075-tg3-Fix-potential-netpoll-crash.patch: tg3: Fix potential netpoll crash (bnc#697783, FATE#311457). - patches.drivers/0076-tg3-5719-Prevent-tx-data-corruption.patch: tg3: 5719: Prevent tx data corruption (bnc#697783, FATE#311457). - patches.drivers/0077-tg3-Remove-5724-device-ID.patch: tg3: Remove 5724 device ID (bnc#697783, FATE#311457). - patches.drivers/0078-tg3-Cleanup-missing-VPD-partno-section.patch: tg3: Cleanup missing VPD partno section (bnc#697783, FATE#311457). - patches.drivers/0079-tg3-Futureproof-the-loopback-test.patch: tg3: Futureproof the loopback test (bnc#697783, FATE#311457). - patches.drivers/0080-tg3-Prepare-for-larger-rx-ring-sizes.patch: tg3: Prepare for larger rx ring sizes (bnc#697783, FATE#311457). - patches.drivers/0081-tg3-Add-extend-rx-ring-sizes-for-5717-and-5719.patch: tg3: Add extend rx ring sizes for 5717 and 5719 (bnc#697783, FATE#311457). - patches.drivers/0082-tg3-Set-real_num_rx_queues-for-non-multiq-devs.patch: tg3: Set real_num_rx_queues for non-multiq devs (bnc#697783, FATE#311457). - patches.drivers/0083-net-tg3-simplify-conditional.patch: net/tg3: simplify conditional (bnc#697783, FATE#311457). - patches.drivers/0084-tg3-restore-rx_dropped-accounting.patch: tg3: restore rx_dropped accounting (bnc#697783, FATE#311457). - patches.drivers/0085-tg3-Add-support-for-selfboot-format-1-v6.patch: tg3: Add support for selfboot format 1 v6 (bnc#697783, FATE#311457). - patches.drivers/0086-tg3-Disable-unused-transmit-rings.patch: tg3: Disable unused transmit rings (bnc#697783, FATE#311457). - patches.drivers/0087-tg3-Add-clause-45-register-accessor-methods.patch: tg3: Add clause 45 register accessor methods (bnc#697783, FATE#311457). - patches.drivers/0088-tg3-Add-EEE-support.patch: tg3: Add EEE support (bnc#697783, FATE#311457). - patches.drivers/0089-tg3-Cleanup-tg3_alloc_rx_skb.patch: tg3: Cleanup tg3_alloc_rx_skb() (bnc#697783, FATE#311457). - patches.drivers/0090-tg3-Don-t-allocate-jumbo-ring-for-5780-class-devs.patch: tg3: Don't allocate jumbo ring for 5780 class devs (bnc#697783, FATE#311457). - patches.drivers/0091-tg3-Report-invalid-link-from-tg3_get_settings.patch: tg3: Report invalid link from tg3_get_settings() (bnc#697783, FATE#311457). - patches.drivers/0092-vlan-Don-t-check-for-vlan-group-before-vlan_tx_tag_p.patch: vlan: Don't check for vlan group before vlan_tx_tag_present (bnc#697783, FATE#311457). - patches.drivers/0093-tg3-Do-not-call-device_set_wakeup_enable-under-spin_.patch: tg3: Do not call device_set_wakeup_enable() under spin_lock_bh (bnc#697783, FATE#311457). - patches.drivers/0094-tg3-Apply-10Mbps-fix-to-all-57765-revisions.patch: tg3: Apply 10Mbps fix to all 57765 revisions (bnc#697783, FATE#311457). - patches.drivers/0095-tg3-Assign-correct-tx-margin-for-5719.patch: tg3: Assign correct tx margin for 5719 (bnc#697783, FATE#311457). - patches.drivers/0096-tg3-Always-turn-on-APE-features-in-mac_mode-reg.patch: tg3: Always turn on APE features in mac_mode reg (bnc#697783, FATE#311457). - patches.drivers/0097-tg3-Fix-5719-internal-FIFO-overflow-problem.patch: tg3: Fix 5719 internal FIFO overflow problem (bnc#697783, FATE#311457). - patches.drivers/0098-tg3-Enable-mult-rd-DMA-engine-on-5719.patch: tg3: Enable mult rd DMA engine on 5719 (bnc#697783, FATE#311457). - patches.drivers/0099-tg3-Reenable-TSS-for-5719.patch: tg3: Reenable TSS for 5719 (bnc#697783, FATE#311457). - patches.drivers/0100-tg3-use-dma_alloc_coherent-instead-of-pci_alloc_cons.patch: tg3: use dma_alloc_coherent() instead of pci_alloc_consistent() (bnc#697783, FATE#311457). - patches.drivers/0101-tg3-Enable-phy-APD-for-5717-and-later-asic-revs.patch: tg3: Enable phy APD for 5717 and later asic revs (bnc#697783, FATE#311457). - patches.drivers/0102-tg3-Raise-the-jumbo-frame-BD-flag-threshold.patch: tg3: Raise the jumbo frame BD flag threshold (bnc#697783, FATE#311457). - patches.drivers/0103-tg3-Move-EEE-definitions-into-mdio.h.patch: tg3: Move EEE definitions into mdio.h (bnc#697783, FATE#311457). - patches.drivers/0104-tg3-Fix-57765-EEE-support.patch: tg3: Fix 57765 EEE support (bnc#697783, FATE#311457). - patches.drivers/0105-tg3-Minor-EEE-code-tweaks.patch: tg3: Minor EEE code tweaks (bnc#697783, FATE#311457). - patches.drivers/0106-tg3-Relax-EEE-thresholds.patch: tg3: Relax EEE thresholds (bnc#697783, FATE#311457). - patches.drivers/0107-tg3-Use-DEFINE_PCI_DEVICE_TABLE.patch: tg3: Use DEFINE_PCI_DEVICE_TABLE (bnc#697783, FATE#311457). - patches.drivers/0108-tg3-Do-not-use-legacy-PCI-power-management.patch: tg3: Do not use legacy PCI power management (bnc#697783, FATE#311457). - patches.drivers/0109-tg3-fix-return-value-check-in-tg3_read_vpd.patch: tg3: fix return value check in tg3_read_vpd() (bnc#697783, FATE#311457). - patches.drivers/0110-tg3-fix-warnings.patch: tg3: fix warnings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (bnc#697783, FATE#311457). - patches.drivers/0111-tg3-Revise-5719-internal-FIFO-overflow-solution.patch: tg3: Revise 5719 internal FIFO overflow solution (bnc#697783, FATE#311457). - patches.drivers/0112-tg3-Fix-5719-A0-tx-completion-bug.patch: tg3: Fix 5719 A0 tx completion bug (bnc#697783, FATE#311457). - patches.drivers/0113-tg3-Use-new-VLAN-code.patch: tg3: Use new VLAN code (bnc#697783, FATE#311457). - patches.drivers/0114-tg3-Disable-multivec-mode-for-1-MSIX-vector.patch: tg3: Disable multivec mode for 1 MSIX vector (bnc#697783, FATE#311457). - patches.drivers/0115-tg3-Restrict-phy-ioctl-access.patch: tg3: Restrict phy ioctl access (bnc#697783, FATE#311457). - patches.drivers/0116-tg3-Fix-loopback-tests.patch: tg3: Fix loopback tests (bnc#697783, FATE#311457). - patches.drivers/0117-tg3-Disable-MAC-loopback-test-for-CPMU-devices.patch: tg3: Disable MAC loopback test for CPMU devices (bnc#697783, FATE#311457). - patches.drivers/0118-tg3-Disable-EEE-during-loopback-tests.patch: tg3: Disable EEE during loopback tests (bnc#697783, FATE#311457). - patches.drivers/0119-tg3-Fix-EEE-interoperability-issue.patch: tg3: Fix EEE interoperability issue (bnc#697783, FATE#311457). - patches.drivers/0120-tg3-Fix-eee-preprocessor-naming.patch: tg3: Fix eee preprocessor naming (bnc#697783, FATE#311457). - patches.drivers/0121-tg3-Expand-5719-workaround.patch: tg3: Expand 5719 workaround (bnc#697783, FATE#311457). - patches.drivers/0122-tg3-Avoid-setting-power.can_wakeup-for-devices-that-.patch: tg3: Avoid setting power.can_wakeup for devices that cannot wake up (bnc#697783, FATE#311457). - patches.drivers/0123-tg3-Add-missed-5719-workaround-change.patch: tg3: Add missed 5719 workaround change (bnc#697783, FATE#311457). - patches.drivers/0124-tg3-Fix-NVRAM-selftest.patch: tg3: Fix NVRAM selftest (bnc#697783, FATE#311457). - patches.drivers/0125-tg3-Add-code-to-verify-RODATA-checksum-of-VPD.patch: tg3: Add code to verify RODATA checksum of VPD (bnc#697783, FATE#311457). - patches.drivers/0126-tg3-cleanup-pci-device-table-vars.patch: tg3: cleanup pci device table vars (bnc#697783, FATE#311457). - patches.drivers/0127-tg3-Refine-VAux-decision-process.patch: tg3: Refine VAux decision process (bnc#697783, FATE#311457). - patches.drivers/0128-tg3-Move-tg3_init_link_config-to-tg3_phy_probe.patch: tg3: Move tg3_init_link_config to tg3_phy_probe (bnc#697783, FATE#311457). - patches.drivers/0129-tg3-Remove-5750-PCI-code.patch: tg3: Remove 5750 PCI code (bnc#697783, FATE#311457). - patches.drivers/0130-tg3-use-linux-io.h-and-linux-uaccess.h-instead-asm-i.patch: tg3: use and instead and (bnc#697783, FATE#311457). - patches.drivers/0131-tg3-Fix-inline-keyword-usage.patch: tg3: Fix inline keyword usage (bnc#697783, FATE#311457). - patches.drivers/0132-Fix-common-misspellings.patch: Fix common misspellings (bnc#697783, FATE#311457). - patches.drivers/0133-tg3-Cleanup-extended-rx-ring-size-code.patch: tg3: Cleanup extended rx ring size code (bnc#697783, FATE#311457). - patches.drivers/0134-tg3-5717_PLUS-57765_PLUS.patch: tg3: 5717_PLUS => 57765_PLUS (bnc#697783, FATE#311457). - patches.drivers/0135-tg3-Reintroduce-5717_PLUS.patch: tg3: Reintroduce 5717_PLUS (bnc#697783, FATE#311457). - patches.drivers/0136-tg3-Add-5720-ASIC-rev.patch: tg3: Add 5720 ASIC rev (bnc#697783, FATE#311457). - patches.drivers/0137-tg3-Add-5720-NVRAM-decoding.patch: tg3: Add 5720 NVRAM decoding (bnc#697783, FATE#311457). - patches.drivers/0138-tg3-Add-5720-H2BMC-support.patch: tg3: Add 5720 H2BMC support (bnc#697783, FATE#311457). - patches.drivers/0139-tg3-Add-5720-PHY-ID.patch: tg3: Add 5720 PHY ID (bnc#697783, FATE#311457). - patches.drivers/0140-tg3-Enable-5720-support.patch: tg3: Enable 5720 support (bnc#697783, FATE#311457). - patches.drivers/0141-tg3-Support-4mb-flash-sizes-for-5717-and-5719.patch: tg3: Support 4mb flash sizes for 5717 and 5719 (bnc#697783, FATE#311457). - patches.drivers/0142-tg3-implement-ethtool-set_phys_id.patch: tg3: implement ethtool set_phys_id (bnc#697783, FATE#311457). - patches.drivers/0143-net-tg3-convert-to-hw_features.patch: net: tg3: convert to hw_features MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (bnc#697783, FATE#311457). - patches.drivers/0144-tg3-Provide-full-regdump-on-tx-timeout.patch: tg3: Provide full regdump on tx timeout (bnc#697783, FATE#311457). - patches.drivers/0145-tg3-Dump-registers-when-status-block-shows-errors.patch: tg3: Dump registers when status block shows errors (bnc#697783, FATE#311457). - patches.drivers/0146-tg3-Automatically-size-stat-test-string-arrays.patch: tg3: Automatically size stat/test string arrays (bnc#697783, FATE#311457). - patches.drivers/0147-tg3-Add-jumbo-frame-loopback-tests-to-selftest.patch: tg3: Add jumbo frame loopback tests to selftest (bnc#697783, FATE#311457). - patches.drivers/0148-tg3-Add-support-for-extended-VPD-blocks.patch: tg3: Add support for extended VPD blocks (bnc#697783, FATE#311457). - patches.drivers/0149-tg3-Workaround-rx_discards-stat-bug.patch: tg3: Workaround rx_discards stat bug (bnc#697783, FATE#311457). - patches.drivers/0150-tg3-Adjust-rx-prod-ring-bd-replenish-thresholds.patch: tg3: Adjust rx prod ring bd replenish thresholds (bnc#697783, FATE#311457). - patches.drivers/0151-tg3-Nullify-RSS-for-loopback-test.patch: tg3: Nullify RSS for loopback test (bnc#697783, FATE#311457). - patches.drivers/0152-tg3-Only-allow-phy-ioctls-while-netif_running.patch: tg3: Only allow phy ioctls while netif_running (bnc#697783, FATE#311457). - patches.drivers/0153-tg3-Move-phy-accessor-functions-higher.patch: tg3: Move phy accessor functions higher (bnc#697783, FATE#311457). - patches.drivers/0154-tg3-Add-read-accessor-for-AUX-CTRL-phy-reg.patch: tg3: Add read accessor for AUX CTRL phy reg (bnc#697783, FATE#311457). - patches.drivers/0155-tg3-Add-write-accessor-for-AUX-CTRL-phy-reg.patch: tg3: Add write accessor for AUX CTRL phy reg (bnc#697783, FATE#311457). - patches.drivers/0156-tg3-Add-macro-for-SMDSP-toggling.patch: tg3: Add macro for SMDSP toggling (bnc#697783, FATE#311457). - patches.drivers/0157-tg3-Add-additional-EEE-messaging.patch: tg3: Add additional EEE messaging (bnc#697783, FATE#311457). - patches.drivers/0158-tg3-Fix-int-generation-hw-bug-for-5719-5720.patch: tg3: Fix int generation hw bug for 5719 / 5720 (bnc#697783, FATE#311457). - patches.drivers/0159-tg3-Organize-loopback-test-failure-flags.patch: tg3: Organize loopback test failure flags (bnc#697783, FATE#311457). - patches.drivers/0160-tg3-Add-TSO-loopback-test.patch: tg3: Add TSO loopback test (bnc#697783, FATE#311457). - patches.drivers/0161-tg3-Add-EEH-support.patch: tg3: Add EEH support (bnc#697783, FATE#311457). - patches.drivers/0162-tg3-Whitespace-cleanups.patch: tg3: Whitespace cleanups (bnc#697783, FATE#311457). - patches.drivers/0163-tg3-Convert-u32-flag-flg2-flg3-uses-to-bitmap.patch: tg3: Convert u32 flag,flg2,flg3 uses to bitmap (bnc#697783, FATE#311457). - patches.drivers/0164-ethtool-Use-full-32-bit-speed-range-in-ethtool-s-set.patch: ethtool: Use full 32 bit speed range in ethtool's set_settings (bnc#697783, FATE#311457). - patches.drivers/0165-ethtool-cosmetic-Use-ethtool-ethtool_cmd_speed-API.patch: ethtool: cosmetic: Use ethtool ethtool_cmd_speed API (bnc#697783, FATE#311457). - patches.drivers/0166-tg3-Set-tx-bug-flags-for-more-devices.patch: tg3: Set tx bug flags for more devices (bnc#697783, FATE#311457). - patches.drivers/0167-tg3-Cleanup-transmit-error-path.patch: tg3: Cleanup transmit error path (bnc#697783, FATE#311457). - patches.drivers/0168-tg3-Fix-57765-B0-data-corruption.patch: tg3: Fix 57765 B0 data corruption (bnc#697783, FATE#311457). - patches.drivers/0169-tg3-Fix-IPv6-TCP-problems-for-5719.patch: tg3: Fix IPv6 TCP problems for 5719 (bnc#697783, FATE#311457). - patches.drivers/0170-tg3-Fix-EEE-interoperability-workaround.patch: tg3: Fix EEE interoperability workaround (bnc#697783, FATE#311457). - patches.drivers/0171-tg3-Consolidate-autoneg-advertisement-setup-code.patch: tg3: Consolidate autoneg advertisement setup code (bnc#697783, FATE#311457). - patches.drivers/0172-tg3-Fix-TSO-loopback-test.patch: tg3: Fix TSO loopback test (bnc#697783, FATE#311457). - patches.drivers/0173-tg3-Fix-stats-for-5704-and-later-devices.patch: tg3: Fix stats for 5704 and later devices (bnc#697783, FATE#311457). - patches.drivers/0174-tg3-Move-TSO_CAPABLE-assignment.patch: tg3: Move TSO_CAPABLE assignment (bnc#697783, FATE#311457). - patches.drivers/0175-tg3-Consolidate-all-netdev-feature-assignments.patch: tg3: Consolidate all netdev feature assignments (bnc#697783, FATE#311457). - patches.drivers/0176-tg3-Remove-excessive-parenthesis.patch: tg3: Remove excessive parenthesis (bnc#697783, FATE#311457). - patches.drivers/0177-tg3-Apply-rx_discards-fix-to-5719-5720.patch: tg3: Apply rx_discards fix to 5719/5720 (bnc#697783, FATE#311457). - patches.drivers/0178-tg3-Add-braces-around-5906-workaround.patch: tg3: Add braces around 5906 workaround (bnc#697783, FATE#311457). - patches.drivers/0179-Add-Fujitsu-1000base-SX-PCI-ID-to-tg3.patch: Add Fujitsu 1000base-SX PCI ID to tg3 (bnc#697783, FATE#311457). - patches.drivers/0180-tg3-Fix-tg3_skb_error_unmap.patch: tg3: Fix tg3_skb_error_unmap() (bnc#697783, FATE#311457). - patches.drivers/0181-net-remove-interrupt.h-inclusion-from-netdevice.h.patch: net: remove interrupt.h inclusion from netdevice.h (bnc#697783, FATE#311457). - patches.drivers/0182-tg3-enable-transmit-time-stamping.patch: tg3: enable transmit time stamping (bnc#697783, FATE#311457). - patches.drivers/0183-tg3-Workaround-tagged-status-update-bug.patch: tg3: Workaround tagged status update bug (bnc#697783, FATE#311457). - patches.drivers/0184-tg3-Remove-40BIT_DMA_LIMIT_BUG.patch: tg3: Remove 40BIT_DMA_LIMIT_BUG (bnc#697783, FATE#311457). - patches.drivers/0185-tg3-Remove-4G_DMA_BNDRY_BUG-flag.patch: tg3: Remove 4G_DMA_BNDRY_BUG flag (bnc#697783, FATE#311457). - patches.drivers/0186-tg3-Add-more-selfboot-formats-to-NVRAM-selftest.patch: tg3: Add more selfboot formats to NVRAM selftest (bnc#697783, FATE#311457). - patches.drivers/0187-tg3-Show-flowctrl-settings-through-get_settings.patch: tg3: Show flowctrl settings through get_settings() (bnc#697783, FATE#311457). - patches.drivers/0188-tg3-Migrate-phy-preprocessor-defs-to-system-defs.patch: tg3: Migrate phy preprocessor defs to system defs (bnc#697783, FATE#311457). - patches.drivers/0189-tg3-Create-funcs-for-power-source-switching.patch: tg3: Create funcs for power source switching (bnc#697783, FATE#311457). - patches.drivers/0190-tg3-Fix-EEE-debounce-timer-values.patch: tg3: Fix EEE debounce timer values (bnc#697783, FATE#311457). - patches.drivers/0191-tg3-Remove-tg3_config_info-definition.patch: tg3: Remove tg3_config_info definition (bnc#697783, FATE#311457). - patches.drivers/0192-tg3-Reorg-tg3_napi-members.patch: tg3: Reorg tg3_napi members (bnc#697783, FATE#311457). - patches.drivers/0193-tg3-Fix-MII_TG3_DSP_EXP8-offset.patch: tg3: Fix MII_TG3_DSP_EXP8 offset (bnc#697783, FATE#311457). - patches.drivers/0194-tg3-Update-version-and-copyright.patch: tg3: Update version and copyright (bnc#697783, FATE#311457). - patches.drivers/tg3-entropy-source.patch: Refresh.- patches.drivers/0001-mdio-Advertise-pause-flow-control-settings-even-if-a.patch: mdio: Advertise pause (flow control) settings even if autoneg is off (bnc#698572, FATE#311724). - patches.drivers/0001-netdevice.h-Add-netdev_printk-helpers-like-dev_print.patch: netdevice.h: Add netdev_printk helpers like dev_printk (bnc#698572, FATE#311724). - patches.drivers/0001-sfc-10Xpress-Initialise-pause-advertising-flags.patch: sfc: 10Xpress: Initialise pause advertising flags (bnc#698572, FATE#311724). - patches.drivers/0002-include-linux-netdevice.h-Add-netif_printk-helpers.patch: include/linux/netdevice.h: Add netif_printk helpers (bnc#698572, FATE#311724). - patches.drivers/0002-mdio-Expose-pause-frame-advertising-flags-to-ethtool.patch: mdio: Expose pause frame advertising flags to ethtool (bnc#698572, FATE#311724). - patches.drivers/0002-sfc-10Xpress-Report-support-for-pause-frames.patch: sfc: 10Xpress: Report support for pause frames (bnc#698572, FATE#311724). - patches.drivers/0003-net-Fix-definition-of-netif_vdbg-when-VERBOSE_DEBUG-.patch: net: Fix definition of netif_vdbg() when VERBOSE_DEBUG is not defined (bnc#698572, FATE#311724). - patches.drivers/0003-sfc-Remove-redundant-header-gmii.h.patch: sfc: Remove redundant header gmii.h (bnc#698572, FATE#311724). - patches.drivers/0004-net-Fix-definition-of-netif_vdbg-when-VERBOSE_DEBUG-.patch: net: Fix definition of netif_vdbg() when VERBOSE_DEBUG is defined (bnc#698572, FATE#311724). - patches.drivers/0004-sfc-Remove-redundant-hardware-initialisation.patch: sfc: Remove redundant hardware initialisation (bnc#698572, FATE#311724). - patches.drivers/0005-sfc-Rename-Falcon-specific-board-code-and-types.patch: sfc: Rename Falcon-specific board code and types (bnc#698572, FATE#311724). - patches.drivers/0006-sfc-Merge-sfe4001.c-into-falcon_boards.c.patch: sfc: Merge sfe4001.c into falcon_boards.c (bnc#698572, FATE#311724). - patches.drivers/0007-sfc-Remove-boards.h-moving-last-remaining-declaratio.patch: sfc: Remove boards.h, moving last remaining declaration to falcon.h (bnc#698572, FATE#311724). - patches.drivers/0008-sfc-Remove-versioned-bitfield-macros.patch: sfc: Remove versioned bitfield macros (bnc#698572, FATE#311724). - patches.drivers/0009-sfc-Move-RX-data-FIFO-thresholds-out-of-struct-efx_n.patch: sfc: Move RX data FIFO thresholds out of struct efx_nic_type (bnc#698572, FATE#311724). - patches.drivers/0010-sfc-Update-hardware-definitions-for-Siena.patch: sfc: Update hardware definitions for Siena (bnc#698572, FATE#311724). - patches.drivers/0011-sfc-Rename-register-I-O-header-and-functions-used-by.patch: sfc: Rename register I/O header and functions used by both Falcon and Siena (bnc#698572, FATE#311724). - patches.drivers/0012-sfc-Eliminate-indirect-lookups-of-queue-size-constan.patch: sfc: Eliminate indirect lookups of queue size constants (bnc#698572, FATE#311724). - patches.drivers/0013-sfc-Define-DMA-address-mask-explicitly-in-terms-of-d.patch: sfc: Define DMA address mask explicitly in terms of descriptor field width (bnc#698572, FATE#311724). - patches.drivers/0014-sfc-Move-all-TX-DMA-length-limiting-into-tx.c.patch: sfc: Move all TX DMA length limiting into tx.c (bnc#698572, FATE#311724). - patches.drivers/0015-sfc-Merge-struct-efx_blinker-into-struct-efx_board.patch: sfc: Merge struct efx_blinker into struct efx_board (bnc#698572, FATE#311724). - patches.drivers/0016-sfc-Change-order-of-device-removal-to-reverse-of-pro.patch: sfc: Change order of device removal to reverse of probe order (bnc#698572, FATE#311724). - patches.drivers/0017-sfc-Remove-declarations-of-nonexistent-functions.patch: sfc: Remove declarations of nonexistent functions (bnc#698572, FATE#311724). - patches.drivers/0018-sfc-Move-efx_xmit_done-declaration-into-correct-stan.patch: sfc: Move efx_xmit_done() declaration into correct stanza (bnc#698572, FATE#311724). - patches.drivers/0019-sfc-Move-shared-members-of-struct-falcon_nic_data-in.patch: sfc: Move shared members of struct falcon_nic_data into struct efx_nic (bnc#698572, FATE#311724). - patches.drivers/0020-sfc-Maintain-interrupt-moderation-values-in-ticks-no.patch: sfc: Maintain interrupt moderation values in ticks, not microseconds (bnc#698572, FATE#311724). - patches.drivers/0021-sfc-Removed-kernel-doc-for-nonexistent-member-of-efx.patch: sfc: Removed kernel-doc for nonexistent member of efx_phy_operations (bnc#698572, FATE#311724). - patches.drivers/0022-sfc-Remove-pointless-abstraction-of-memory-BAR-numbe.patch: sfc: Remove pointless abstraction of memory BAR number (bnc#698572, FATE#311724). - patches.drivers/0023-sfc-Merge-falcon_probe_phy-into-falcon_probe_port.patch: sfc: Merge falcon_probe_phy() into falcon_probe_port() (bnc#698572, FATE#311724). - patches.drivers/0024-sfc-Remove-incorrect-assertion-from-efx_pci_remove_m.patch: sfc: Remove incorrect assertion from efx_pci_remove_main() (bnc#698572, FATE#311724). - patches.drivers/0025-sfc-Remove-unnecessary-tests-of-efx-membase.patch: sfc: Remove unnecessary tests of efx->membase (bnc#698572, FATE#311724). - patches.drivers/0026-sfc-Move-MTD-probe-after-netdev-registration-and-nam.patch: sfc: Move MTD probe after netdev registration and name allocation (bnc#698572, FATE#311724). - patches.drivers/0027-sfc-Merge-efx_fc_resolve-into-efx_mdio_get_pause.patch: sfc: Merge efx_fc_resolve() into efx_mdio_get_pause() (bnc#698572, FATE#311724). - patches.drivers/0028-sfc-Remove-unused-code-for-non-autoneg-speed-duplex-.patch: sfc: Remove unused code for non-autoneg speed/duplex switching (bnc#698572, FATE#311724). - patches.drivers/0029-sfc-Rename-xfp-file-and-functions-to-reflect-reality.patch: sfc: Rename 'xfp' file and functions to reflect reality (bnc#698572, FATE#311724). - patches.drivers/0030-sfc-Really-allow-RX-checksum-offload-to-be-disabled.patch: sfc: Really allow RX checksum offload to be disabled (bnc#698572, FATE#311724). - patches.drivers/0033-sfc-Remove-pointless-abstraction-of-memory-BAR-numbe.patch: sfc: Remove pointless abstraction of memory BAR number (2) (bnc#698572, FATE#311724). - patches.drivers/0034-sfc-Remove-redundant-gotos-from-__efx_rx_packet.patch: sfc: Remove redundant gotos from __efx_rx_packet() (bnc#698572, FATE#311724). - patches.drivers/0035-sfc-Remove-ridiculously-paranoid-assertions.patch: sfc: Remove ridiculously paranoid assertions (bnc#698572, FATE#311724). - patches.drivers/0036-sfc-Move-assertions-and-buffer-cleanup-earlier-in-ef.patch: sfc: Move assertions and buffer cleanup earlier in efx_rx_packet_lro() (bnc#698572, FATE#311724). - patches.drivers/0037-sfc-Record-RX-queue-number-on-GRO-path.patch: sfc: Record RX queue number on GRO path (bnc#698572, FATE#311724). - patches.drivers/0038-sfc-SFT9001-Reset-LED-configuration-correctly-after-.patch: sfc: SFT9001: Reset LED configuration correctly after blinking (bnc#698572, FATE#311724). - patches.drivers/0039-sfc-Use-a-single-blink-implementation.patch: sfc: Use a single blink implementation (bnc#698572, FATE#311724). - patches.drivers/0040-sfc-Rename-efx_board-init_leds-to-init_phy-and-use-f.patch: sfc: Rename efx_board::init_leds to init_phy and use for SFN4111T (bnc#698572, FATE#311724). - patches.drivers/0041-sfc-Make-board-information-explicitly-Falcon-specifi.patch: sfc: Make board information explicitly Falcon-specific (bnc#698572, FATE#311724). - patches.drivers/0042-sfc-Move-definition-of-struct-falcon_nic_data-into-f.patch: sfc: Move definition of struct falcon_nic_data into falcon.h (bnc#698572, FATE#311724). - patches.drivers/0043-sfc-Move-struct-falcon_board-into-struct-falcon_nic_.patch: sfc: Move struct falcon_board into struct falcon_nic_data (bnc#698572, FATE#311724). - patches.drivers/0044-sfc-Move-all-I2C-stuff-into-struct-falcon_board.patch: sfc: Move all I2C stuff into struct falcon_board (bnc#698572, FATE#311724). - patches.drivers/0045-sfc-Gather-link-state-fields-in-struct-efx_nic-into-.patch: sfc: Gather link state fields in struct efx_nic into new struct efx_link_state (bnc#698572, FATE#311724). - patches.drivers/0046-sfc-Remove-unnecessary-casts-to-struct-sk_buff.patch: sfc: Remove unnecessary casts to struct sk_buff * (bnc#698572, FATE#311724). - patches.drivers/0047-sfc-Remove-redundant-efx_xmit-function.patch: sfc: Remove redundant efx_xmit() function (bnc#698572, FATE#311724). - patches.drivers/0048-sfc-Combine-high-level-header-files.patch: sfc: Combine high-level header files (bnc#698572, FATE#311724). - patches.drivers/0049-sfc-Log-interrupt-and-reset-type-names-not-numbers.patch: sfc: Log interrupt and reset type names, not numbers (bnc#698572, FATE#311724). - patches.drivers/0050-sfc-Fix-descriptor-cache-sizes.patch: sfc: Fix descriptor cache sizes (bnc#698572, FATE#311724). - patches.drivers/0051-sfc-Treat-all-MAC-registers-as-128-bit.patch: sfc: Treat all MAC registers as 128-bit (bnc#698572, FATE#311724). - patches.drivers/0052-sfc-Strengthen-EFX_ASSERT_RESET_SERIALISED.patch: sfc: Strengthen EFX_ASSERT_RESET_SERIALISED (bnc#698572, FATE#311724). - patches.drivers/0053-sfc-Comment-corrections.patch: sfc: Comment corrections (bnc#698572, FATE#311724). - patches.drivers/0054-sfc-Remove-unused-constant.patch: sfc: Remove unused constant (bnc#698572, FATE#311724). - patches.drivers/0055-sfc-Clean-up-struct-falcon_board-and-struct-falcon_b.patch: sfc: Clean up struct falcon_board and struct falcon_board_data (bnc#698572, FATE#311724). - patches.drivers/0056-sfc-Fix-bugs-in-RX-queue-flushing.patch: sfc: Fix bugs in RX queue flushing (bnc#698572, FATE#311724). - patches.drivers/0057-sfc-Remove-unused-function-efx_flush_queues.patch: sfc: Remove unused function efx_flush_queues() (bnc#698572, FATE#311724). - patches.drivers/0058-sfc-Only-switch-Falcon-MAC-clocks-as-necessary.patch: sfc: Only switch Falcon MAC clocks as necessary (bnc#698572, FATE#311724). - patches.drivers/0059-sfc-Hold-MAC-lock-for-longer-in-efx_init_port.patch: sfc: Hold MAC lock for longer in efx_init_port() (bnc#698572, FATE#311724). - patches.drivers/0060-sfc-Split-MAC-stats-DMA-initiation-and-completion.patch: sfc: Split MAC stats DMA initiation and completion (bnc#698572, FATE#311724). - patches.drivers/0061-sfc-Move-Falcon-board-PHY-MAC-monitoring-code-to-fal.patch: sfc: Move Falcon board/PHY/MAC monitoring code to falcon.c (bnc#698572, FATE#311724). - patches.drivers/0062-sfc-Simplify-XMAC-link-polling.patch: sfc: Simplify XMAC link polling (bnc#698572, FATE#311724). - patches.drivers/0063-sfc-Change-MAC-promiscuity-and-multicast-hash-at-the.patch: sfc: Change MAC promiscuity and multicast hash at the same time (bnc#698572, FATE#311724). - patches.drivers/0064-sfc-Move-inline-comment-into-kernel-doc.patch: sfc: Move inline comment into kernel-doc (bnc#698572, FATE#311724). - patches.drivers/0065-sfc-Do-not-set-net_device-trans_start-in-self-test.patch: sfc: Do not set net_device::trans_start in self-test (bnc#698572, FATE#311724). - patches.drivers/0066-sfc-Simplify-PHY-polling.patch: sfc: Simplify PHY polling (bnc#698572, FATE#311724). - patches.drivers/0067-sfc-QT202x-Reset-before-reading-PHY-id.patch: sfc: QT202x: Reset before reading PHY id (bnc#698572, FATE#311724). - patches.drivers/0068-sfc-Replace-MDIO-spinlock-with-mutex.patch: sfc: Replace MDIO spinlock with mutex (bnc#698572, FATE#311724). - patches.drivers/0069-sfc-Always-start-Falcon-using-the-XMAC.patch: sfc: Always start Falcon using the XMAC (bnc#698572, FATE#311724). - patches.drivers/0070-sfc-Limit-some-hardware-workarounds-to-Falcon.patch: sfc: Limit some hardware workarounds to Falcon (bnc#698572, FATE#311724). - patches.drivers/0071-sfc-Remove-EFX_WORKAROUND_9141-macro.patch: sfc: Remove EFX_WORKAROUND_9141 macro (bnc#698572, FATE#311724). - patches.drivers/0072-sfc-Remove-another-unused-workaround-macro.patch: sfc: Remove another unused workaround macro (bnc#698572, FATE#311724). - patches.drivers/0073-sfc-Remove-some-redundant-whitespace.patch: sfc: Remove some redundant whitespace (bnc#698572, FATE#311724). - patches.drivers/0074-sfc-Decouple-NIC-revision-number-from-Falcon-PCI-rev.patch: sfc: Decouple NIC revision number from Falcon PCI revision number (bnc#698572, FATE#311724). - patches.drivers/0075-sfc-Move-descriptor-cache-base-addresses-to-struct-e.patch: sfc: Move descriptor cache base addresses to struct efx_nic_type (bnc#698572, FATE#311724). - patches.drivers/0076-sfc-Clean-up-RX-event-handling.patch: sfc: Clean up RX event handling (bnc#698572, FATE#311724). - patches.drivers/0077-sfc-Remove-redundant-writes-to-INT_ADR_KER.patch: sfc: Remove redundant writes to INT_ADR_KER (bnc#698572, FATE#311724). - patches.drivers/0078-sfc-Remove-duplicate-hardware-structure-definitions.patch: sfc: Remove duplicate hardware structure definitions (bnc#698572, FATE#311724). - patches.drivers/0079-sfc-Turn-pause-frame-generation-on-and-off-at-the-MA.patch: sfc: Turn pause frame generation on and off at the MAC, not the RX FIFO (bnc#698572, FATE#311724). - patches.drivers/0080-sfc-Move-Falcon-NIC-operations-to-efx_nic_type.patch: sfc: Move Falcon NIC operations to efx_nic_type (bnc#698572, FATE#311724). - patches.drivers/0081-sfc-Refactor-link-configuration.patch: sfc: Refactor link configuration (bnc#698572, FATE#311724). - patches.drivers/0082-sfc-Generalise-link-state-monitoring.patch: sfc: Generalise link state monitoring (bnc#698572, FATE#311724). - patches.drivers/0083-sfc-Add-power-management-and-wake-on-LAN-support.patch: sfc: Add power-management and wake-on-LAN support (bnc#698572, FATE#311724). - patches.drivers/0084-sfc-Implement-ethtool-reset-operation.patch: sfc: Implement ethtool reset operation (bnc#698572, FATE#311724). - patches.drivers/0085-sfc-Add-efx_nic_type-operation-for-register-self-tes.patch: sfc: Add efx_nic_type operation for register self-test (bnc#698572, FATE#311724). - patches.drivers/0086-sfc-Add-efx_nic_type-operation-for-NVRAM-self-test.patch: sfc: Add efx_nic_type operation for NVRAM self-test (bnc#698572, FATE#311724). - patches.drivers/0087-sfc-Add-efx_nic_type-operation-for-identity-LED-cont.patch: sfc: Add efx_nic_type operation for identity LED control (bnc#698572, FATE#311724). - patches.drivers/0088-sfc-Separate-shared-NIC-code-from-Falcon-specific-an.patch: sfc: Separate shared NIC code from Falcon-specific and rename accordingly (bnc#698572, FATE#311724). - patches.drivers/0089-sfc-Fold-falcon_probe_nic_variant-into-falcon_probe_.patch: sfc: Fold falcon_probe_nic_variant() into falcon_probe_nic() (bnc#698572, FATE#311724). - patches.drivers/0090-sfc-Extend-loopback-mode-enumeration.patch: sfc: Extend loopback mode enumeration (bnc#698572, FATE#311724). - patches.drivers/0091-sfc-Remove-static-PHY-data-and-enumerations.patch: sfc: Remove static PHY data and enumerations (bnc#698572, FATE#311724). - patches.drivers/0092-sfc-Extend-MTD-driver-for-use-with-new-NICs.patch: sfc: Extend MTD driver for use with new NICs (bnc#698572, FATE#311724). - patches.drivers/0093-sfc-Allow-for-additional-checksum-offload-features.patch: sfc: Allow for additional checksum offload features (bnc#698572, FATE#311724). - patches.drivers/0094-sfc-Rename-falcon.h-to-nic.h.patch: sfc: Rename falcon.h to nic.h (bnc#698572, FATE#311724). - patches.drivers/0095-sfc-Move-shared-NIC-code-from-falcon.c-to-new-source.patch: sfc: Move shared NIC code from falcon.c to new source file nic.c (bnc#698572, FATE#311724). - patches.drivers/0096-sfc-Add-firmware-protocol-definitions-MCDI.patch: sfc: Add firmware protocol definitions (MCDI) (bnc#698572, FATE#311724). - patches.drivers/0097-sfc-Add-support-for-SFC9000-family-1.patch: sfc: Add support for SFC9000 family (1) (bnc#698572, FATE#311724). - patches.drivers/0098-sfc-Add-support-for-SFC9000-family-2.patch: sfc: Add support for SFC9000 family (2) (bnc#698572, FATE#311724). - patches.drivers/0099-sfc-Implement-TSO-for-TCP-IPv6.patch: sfc: Implement TSO for TCP/IPv6 (bnc#698572, FATE#311724). - patches.drivers/0100-sfc-Update-version-copyright-dates-authors.patch: sfc: Update version, copyright dates, authors (bnc#698572, FATE#311724). - patches.drivers/0101-drivers-net-sfc-Correct-code-taking-the-size-of-a-po.patch: drivers/net/sfc: Correct code taking the size of a pointer (bnc#698572, FATE#311724). - patches.drivers/0102-sfc-Move-PHY-software-state-initialisation-from-init.patch: sfc: Move PHY software state initialisation from init() into probe() (bnc#698572, FATE#311724). - patches.drivers/0103-sfc-Include-XGXS-in-XMAC-link-status-check-except-in.patch: sfc: Include XGXS in XMAC link status check except in XGMII loopback (bnc#698572, FATE#311724). - patches.drivers/0105-sfc-QT2025C-Work-around-PHY-bug.patch: sfc: QT2025C: Work around PHY bug (bnc#698572, FATE#311724). - patches.drivers/0106-sfc-QT2025C-Switch-into-self-configure-mode-when-not.patch: sfc: QT2025C: Switch into self-configure mode when not in loopback (bnc#698572, FATE#311724). - patches.drivers/0107-sfc-QT2025C-Work-around-PHY-firmware-initialisation-.patch: sfc: QT2025C: Work around PHY firmware initialisation bug (bnc#698572, FATE#311724). - patches.drivers/0108-sfc-QT2025C-Add-error-message-for-suspected-bad-SFP-.patch: sfc: QT2025C: Add error message for suspected bad SFP+ cables (bnc#698572, FATE#311724). - patches.drivers/0109-sfc-Disable-TX-descriptor-prefetch-watchdog.patch: sfc: Disable TX descriptor prefetch watchdog (bnc#698572, FATE#311724). - patches.drivers/0111-sfc-Fix-polling-for-slow-MCDI-operations.patch: sfc: Fix polling for slow MCDI operations (bnc#698572, FATE#311724). - patches.drivers/0112-sfc-Fix-conditions-for-MDIO-self-test.patch: sfc: Fix conditions for MDIO self-test (bnc#698572, FATE#311724). - patches.drivers/0113-sfc-QT202x-Remove-unreliable-MMD-check-at-initialisa.patch: sfc: QT202x: Remove unreliable MMD check at initialisation (bnc#698572, FATE#311724). - patches.drivers/0114-sfc-Add-workspace-for-GMAC-bug-workaround-to-MCDI-MA.patch: sfc: Add workspace for GMAC bug workaround to MCDI MAC_STATS buffer (bnc#698572, FATE#311724). - patches.drivers/0115-sfc-Use-fixed-size-buffers-for-MCDI-NVRAM-requests.patch: sfc: Use fixed-size buffers for MCDI NVRAM requests (bnc#698572, FATE#311724). - patches.drivers/0116-sfc-Update-MCDI-protocol-definitions.patch: sfc: Update MCDI protocol definitions (bnc#698572, FATE#311724). - patches.drivers/0117-sfc-Handle-firmware-assertion-failure-while-resettin.patch: sfc: Handle firmware assertion failure while resetting (bnc#698572, FATE#311724). - patches.drivers/0118-sfc-Enable-autonegotiated-flow-control-by-default-if.patch: sfc: Enable autonegotiated flow-control by default if supported (bnc#698572, FATE#311724). - patches.drivers/0119-sfc-Replace-PHY-MDIO-test-with-an-alive-test.patch: sfc: Replace PHY MDIO test with an 'alive' test (bnc#698572, FATE#311724). - patches.drivers/0120-sfc-Implement-NVRAM-selftest-for-SFC9000-family.patch: sfc: Implement NVRAM selftest for SFC9000 family (bnc#698572, FATE#311724). - patches.drivers/0121-sfc-Survive-ISR0-0-bug-in-the-shared-IRQ-case.patch: sfc: Survive ISR0=0 bug in the shared IRQ case (bnc#698572, FATE#311724). - patches.drivers/0122-sfc-Add-some-missing-bits-to-register-self-test-mask.patch: sfc: Add some missing bits to register self-test masks (bnc#698572, FATE#311724). - patches.drivers/0123-sfc-Remove-declarations-of-nonexistent-functions.patch: sfc: Remove declarations of nonexistent functions (bnc#698572, FATE#311724). - patches.drivers/0124-sfc-Fix-some-incorrect-or-redundant-comments.patch: sfc: Fix some incorrect or redundant comments (bnc#698572, FATE#311724). - patches.drivers/0125-sfc-Do-not-include-unneeded-headers.patch: sfc: Do not include unneeded headers (bnc#698572, FATE#311724). - patches.drivers/0128-sfc-Fix-SFE4002-initialisation.patch: sfc: Fix SFE4002 initialisation (bnc#698572, FATE#311724). - patches.drivers/0130-sfc-Fix-sign-of-efx_mcdi_poll_reboot-error-in-efx_mc.patch: sfc: Fix sign of efx_mcdi_poll_reboot() error in efx_mcdi_poll() (bnc#698572, FATE#311724). - patches.drivers/0131-sfc-SFE4002-SFN4112F-Widen-temperature-and-voltage-t.patch: sfc: SFE4002/SFN4112F: Widen temperature and voltage tolerances (bnc#698572, FATE#311724). - patches.drivers/0134-sfc-Wait-at-most-10ms-for-the-MC-to-finish-reading-o.patch: sfc: Wait at most 10ms for the MC to finish reading out MAC statistics (bnc#698572, FATE#311724). - patches.drivers/0135-sfc-Always-close-net-device-at-the-end-of-a-disablin.patch: sfc: Always close net device at the end of a disabling reset (bnc#698572, FATE#311724). - patches.drivers/0136-sfc-Change-falcon_probe_board-to-fail-for-unsupporte.patch: sfc: Change falcon_probe_board() to fail for unsupported boards (bnc#698572, FATE#311724). - patches.drivers/0137-sfc-Ignore-parity-errors-in-the-other-port-s-SRAM.patch: sfc: Ignore parity errors in the other port's SRAM (bnc#698572, FATE#311724). - patches.drivers/0138-sfc-Consistently-report-short-MCDI-responses-as-EIO.patch: sfc: Consistently report short MCDI responses as EIO (bnc#698572, FATE#311724). - patches.drivers/0139-sfc-Handle-serious-errors-in-exactly-one-interrupt-h.patch: sfc: Handle serious errors in exactly one interrupt handler (bnc#698572, FATE#311724). - patches.drivers/0140-sfc-Stop-masking-out-XGMII-faults-over-reconfigures.patch: sfc: Stop masking out XGMII faults over reconfigures (bnc#698572, FATE#311724). - patches.drivers/0141-sfc-Reconfigure-the-XAUI-serdes-after-an-EM-reset.patch: sfc: Reconfigure the XAUI serdes after an EM reset (bnc#698572, FATE#311724). - patches.drivers/0142-sfc-Extend-the-legacy-interrupt-workarounds.patch: sfc: Extend the legacy interrupt workarounds (bnc#698572, FATE#311724). - patches.drivers/0143-sfc-Log-specific-message-for-failure-of-NVRAM-self-t.patch: sfc: Log specific message for failure of NVRAM self-test (bnc#698572, FATE#311724). - patches.drivers/0144-sfc-Read-MEM_STAT-for-SRM_PERR-as-well-as-MEM_PERR-e.patch: sfc: Read MEM_STAT for SRM_PERR as well as MEM_PERR errors (bnc#698572, FATE#311724). - patches.drivers/0145-sfc-Enable-IPv6-RSS-using-random-key-for-Toeplitz-ha.patch: sfc: Enable IPv6 RSS using random key for Toeplitz hash (bnc#698572, FATE#311724). - patches.drivers/0146-sfc-Update-MCDI-protocol-definitions.patch: sfc: Update MCDI protocol definitions (bnc#698572, FATE#311724). - patches.drivers/0147-sfc-Set-PERIODIC_NOEVENT-flag-for-MC_CMD_MAC_STATS.patch: sfc: Set PERIODIC_NOEVENT flag for MC_CMD_MAC_STATS (bnc#698572, FATE#311724). - patches.drivers/0148-sfc-Break-NAPI-processing-after-one-ring-full-of-TX-.patch: sfc: Break NAPI processing after one ring-full of TX completions (bnc#698572, FATE#311724). - patches.drivers/0149-sfc-Add-necessary-parentheses-to-macro-definitions-i.patch: sfc: Add necessary parentheses to macro definitions in net_driver.h (bnc#698572, FATE#311724). - patches.drivers/0150-sfc-Clean-up-efx_nic-irq_zero_count.patch: sfc: Clean up efx_nic::irq_zero_count (bnc#698572, FATE#311724). - patches.drivers/0151-sfc-Add-Siena-PHY-BIST-and-cable-diagnostic-support.patch: sfc: Add Siena PHY BIST and cable diagnostic support (bnc#698572, FATE#311724). - patches.drivers/0152-sfc-Test-only-the-first-pair-of-TX-queues.patch: sfc: Test only the first pair of TX queues (bnc#698572, FATE#311724). - patches.drivers/0153-sfc-Create-multiple-TX-queues.patch: sfc: Create multiple TX queues (bnc#698572, FATE#311724). - patches.drivers/0154-sfc-Rename-struct-efx_mcdi_phy_cfg-to-efx_mcdi_phy_d.patch: sfc: Rename struct efx_mcdi_phy_cfg to efx_mcdi_phy_data (bnc#698572, FATE#311724). - patches.drivers/0155-sfc-Reschedule-any-resets-scheduled-inside-efx_pm_fr.patch: sfc: Reschedule any resets scheduled inside efx_pm_freeze() (bnc#698572, FATE#311724). - patches.drivers/0156-sfc-Workaround-flush-failures-on-Falcon-B0.patch: sfc: Workaround flush failures on Falcon B0 (bnc#698572, FATE#311724). - patches.drivers/0157-sfc-Synchronise-link_advertising-and-wanted_fc-on-Si.patch: sfc: Synchronise link_advertising and wanted_fc on Siena (bnc#698572, FATE#311724). - patches.drivers/0158-sfc-Wait-for-the-link-to-stay-up-before-running-loop.patch: sfc: Wait for the link to stay up before running loopback selftest (bnc#698572, FATE#311724). - patches.drivers/0159-sfc-Allow-DRV_GEN-events-to-be-used-outside-of-selft.patch: sfc: Allow DRV_GEN events to be used outside of selftests (bnc#698572, FATE#311724). - patches.drivers/0160-sfc-Remove-efx_rx_queue-add_lock.patch: sfc: Remove efx_rx_queue::add_lock (bnc#698572, FATE#311724). - patches.drivers/0161-sfc-Support-only-two-rx-buffers-per-page.patch: sfc: Support only two rx buffers per page (bnc#698572, FATE#311724). - patches.drivers/0162-sfc-Recycle-discarded-rx-buffers-back-onto-the-queue.patch: sfc: Recycle discarded rx buffers back onto the queue (bnc#698572, FATE#311724). - patches.drivers/0163-sfc-Allow-shared-pages-to-be-recycled.patch: sfc: Allow shared pages to be recycled (bnc#698572, FATE#311724). - patches.drivers/0164-sfc-Only-count-bad-packets-in-rx_errors.patch: sfc: Only count bad packets in rx_errors (bnc#698572, FATE#311724). - patches.drivers/0165-sfc-Get-port-number-from-CS_PORT_NUM-not-PCI-functio.patch: sfc: Get port number from CS_PORT_NUM, not PCI function number (bnc#698572, FATE#311724). - patches.drivers/0168-sfc-Store-port-number-in-net_device-dev_id.patch: sfc: Store port number in net_device::dev_id (bnc#698572, FATE#311724). - patches.drivers/0170-sfc-Implement-ethtool-register-dump-operation.patch: sfc: Implement ethtool register dump operation (bnc#698572, FATE#311724). - patches.drivers/0171-sfc-Log-MTD-errors-using-partition-name-not-just-net.patch: sfc: Log MTD errors using partition name, not just net device name (bnc#698572, FATE#311724). - patches.drivers/0172-sfc-Implement-message-level-control.patch: sfc: Implement message level control (bnc#698572, FATE#311724). - patches.drivers/0173-sfc-Replace-EFX_DRIVER_NAME-with-KBUILD_MODNAME.patch: sfc: Replace EFX_DRIVER_NAME with KBUILD_MODNAME (bnc#698572, FATE#311724). - patches.drivers/0174-sfc-Disable-setting-feature-flags-that-are-not-imple.patch: sfc: Disable setting feature flags that are not implemented (bnc#698572, FATE#311724). - patches.drivers/0177-sfc-Move-siena_nic_data-ipv6_rss_key-to-efx_nic-rx_h.patch: sfc: Move siena_nic_data::ipv6_rss_key to efx_nic::rx_hash_key (bnc#698572, FATE#311724). - patches.drivers/0179-sfc-Log-clearer-error-messages-for-hardware-monitor.patch: sfc: Log clearer error messages for hardware monitor (bnc#698572, FATE#311724). - patches.drivers/0185-sfc-Use-MCDI-RX_BAD_FCS_PKTS-count-as-MAC-rx_bad-cou.patch: sfc: Use MCDI RX_BAD_FCS_PKTS count as MAC rx_bad count (bnc#698572, FATE#311724). - patches.drivers/0186-sfc-Accumulate-RX_NODESC_DROP-count-in-rx_dropped-no.patch: sfc: Accumulate RX_NODESC_DROP count in rx_dropped, not rx_over_errors (bnc#698572, FATE#311724). - patches.drivers/0187-sfc-Remove-declarations-of-functions-that-no-longer-.patch: sfc: Remove declarations of functions that no longer exist (bnc#698572, FATE#311724). - patches.drivers/0188-sfc-Fix-failure-paths-in-efx_probe_port.patch: sfc: Fix failure paths in efx_probe_port() (bnc#698572, FATE#311724). - patches.drivers/0189-sfc-Allocate-DMA-and-event-rings-using-GFP_KERNEL.patch: sfc: Allocate DMA and event rings using GFP_KERNEL (bnc#698572, FATE#311724). - patches.drivers/0190-sfc-Abstract-channel-and-index-lookup-for-RX-queues.patch: sfc: Abstract channel and index lookup for RX queues (bnc#698572, FATE#311724). - patches.drivers/0191-sfc-Refactor-channel-and-queue-lookup-and-iteration.patch: sfc: Refactor channel and queue lookup and iteration (bnc#698572, FATE#311724). - patches.drivers/0192-sfc-Allocate-each-channel-separately-along-with-its-.patch: sfc: Allocate each channel separately, along with its RX and TX queues (bnc#698572, FATE#311724). - patches.drivers/0193-sfc-Make-the-dmaq-size-a-run-time-setting-rather-tha.patch: sfc: Make the dmaq size a run-time setting (rather than compile-time) (bnc#698572, FATE#311724). - patches.drivers/0194-sfc-Allow-changing-the-DMA-ring-sizes-dynamically-vi.patch: sfc: Allow changing the DMA ring sizes dynamically via ethtool (bnc#698572, FATE#311724). - patches.drivers/0195-sfc-Fix-order-of-channel_name-array-dimensions.patch: sfc: Fix order of channel_name array dimensions (bnc#698572, FATE#311724). - patches.drivers/0199-sfc-Clean-up-and-correct-comments-on-efx_monitor.patch: sfc: Clean up and correct comments on efx_monitor() (bnc#698572, FATE#311724). - patches.drivers/0201-sfc-Remove-support-for-SFN4111T-SFT9001-and-Falcon-G.patch: sfc: Remove support for SFN4111T, SFT9001 and Falcon GMAC (bnc#698572, FATE#311724). - patches.drivers/0202-sfc-Add-support-for-SFE4003-board-and-TXC43128-PHY.patch: sfc: Add support for SFE4003 board and TXC43128 PHY (bnc#698572, FATE#311724). - patches.drivers/0208-sfc-Reduce-log-level-for-MCDI-error-response-in-efx_.patch: sfc: Reduce log level for MCDI error response in efx_mcdi_rpc() (bnc#698572, FATE#311724). - patches.drivers/0209-sfc-Fix-condition-for-no-op-in-set_phy_flash_cfg.patch: sfc: Fix condition for no-op in set_phy_flash_cfg() (bnc#698572, FATE#311724). - patches.drivers/0210-sfc-Distinguish-critical-and-non-critical-over-tempe.patch: sfc: Distinguish critical and non-critical over-temperature conditions (bnc#698572, FATE#311724). - patches.drivers/0211-sfc-Read-to-clear-LM87-alarm-interrupt-status-at-sta.patch: sfc: Read-to-clear LM87 alarm/interrupt status at start of day (bnc#698572, FATE#311724). - patches.drivers/0212-sfc-Clear-RXIN_SEL-when-soft-resetting-QT2025C.patch: sfc: Clear RXIN_SEL when soft-resetting QT2025C (bnc#698572, FATE#311724). - patches.drivers/0213-sfc-Fix-event-based-MCDI-completion-and-MC-REBOOT-CM.patch: sfc: Fix event based MCDI completion and MC REBOOT/CMDDONE ordering issue (bnc#698572, FATE#311724). - patches.drivers/0214-sfc-Remove-broken-automatic-fallback-for-invalid-Fal.patch: sfc: Remove broken automatic fallback for invalid Falcon chip/board config (bnc#698572, FATE#311724). - patches.drivers/0215-sfc-Expose-Falcon-BootROM-config-through-MTD-not-eth.patch: sfc: Expose Falcon BootROM config through MTD, not ethtool (bnc#698572, FATE#311724). - patches.drivers/0216-sfc-Remove-unnecessary-inclusion-of-various-private-.patch: sfc: Remove unnecessary inclusion of various private header files (bnc#698572, FATE#311724). - patches.drivers/0217-sfc-Move-SPI-state-to-struct-falcon_nic_data.patch: sfc: Move SPI state to struct falcon_nic_data (bnc#698572, FATE#311724). - patches.drivers/0218-sfc-Move-mdio_lock-to-struct-falcon_nic_data.patch: sfc: Move mdio_lock to struct falcon_nic_data (bnc#698572, FATE#311724). - patches.drivers/0219-sfc-Move-Falcon-global-event-handling-to-falcon.c.patch: sfc: Move Falcon global event handling to falcon.c (bnc#698572, FATE#311724). - patches.drivers/0220-sfc-Move-xmac_poll_required-into-struct-falcon_nic_d.patch: sfc: Move xmac_poll_required into struct falcon_nic_data (bnc#698572, FATE#311724). - patches.drivers/0221-sfc-Update-kernel-doc-to-match-earlier-move-of-Toepl.patch: sfc: Update kernel-doc to match earlier move of Toeplitz hash key (bnc#698572, FATE#311724). - patches.drivers/0222-sfc-When-waking-a-stopped-tx_queue-only-lock-that-tx.patch: sfc: When waking a stopped tx_queue, only lock that tx_queue (bnc#698572, FATE#311724). - patches.drivers/0223-sfc-Use-current-MAC-address-not-NVRAM-MAC-address-fo.patch: sfc: Use current MAC address, not NVRAM MAC address, for WoL filter (bnc#698572, FATE#311724). - patches.drivers/0224-sfc-Store-MAC-address-from-NVRAM-in-net_device-perm_.patch: sfc: Store MAC address from NVRAM in net_device::perm_addr (bnc#698572, FATE#311724). - patches.drivers/0225-sfc-Reorder-struct-efx_nic-to-separate-fields-by-vol.patch: sfc: Reorder struct efx_nic to separate fields by volatility (bnc#698572, FATE#311724). - patches.drivers/0226-sfc-Use-ACCESS_ONCE-when-copying-efx_tx_queue-read_c.patch: sfc: Use ACCESS_ONCE when copying efx_tx_queue::read_count (bnc#698572, FATE#311724). - patches.drivers/0227-sfc-Expand-correct-comments-on-collector-behaviour-a.patch: sfc: Expand/correct comments on collector behaviour and function usage (bnc#698572, FATE#311724). - patches.drivers/0228-sfc-Remove-redundant-memory-barriers-between-MMIOs.patch: sfc: Remove redundant memory barriers between MMIOs (bnc#698572, FATE#311724). - patches.drivers/0229-sfc-Add-compile-time-checks-for-correctness-of-paged.patch: sfc: Add compile-time checks for correctness of paged register writes (bnc#698572, FATE#311724). - patches.drivers/0230-sfc-Remove-locking-from-implementation-of-efx_writeo.patch: sfc: Remove locking from implementation of efx_writeo_paged() (bnc#698572, FATE#311724). - patches.drivers/0231-sfc-Use-TX-push-whenever-adding-descriptors-to-an-em.patch: sfc: Use TX push whenever adding descriptors to an empty queue (bnc#698572, FATE#311724). - patches.drivers/0232-sfc-Log-start-and-end-of-ethtool-self-test-at-INFO-l.patch: sfc: Log start and end of ethtool self-test at INFO level (bnc#698572, FATE#311724). - patches.drivers/0235-sfc-Fix-crash-in-legacy-onterrupt-handler-during-rin.patch: sfc: Fix crash in legacy onterrupt handler during ring reallocation (bnc#698572, FATE#311724). - patches.drivers/0236-sfc-Fix-NAPI-list-corruption-during-ring-reallocatio.patch: sfc: Fix NAPI list corruption during ring reallocation (bnc#698572, FATE#311724). - patches.drivers/0237-sfc-Remove-unused-field-and-comment-on-a-previously-.patch: sfc: Remove unused field and comment on a previously removed field (bnc#698572, FATE#311724). - patches.drivers/0238-sfc-Remove-ancient-support-for-nesting-of-TX-stop.patch: sfc: Remove ancient support for nesting of TX stop (bnc#698572, FATE#311724). - patches.drivers/0239-sfc-convert-references-to-LRO-to-GRO.patch: sfc: convert references to LRO to GRO (bnc#698572, FATE#311724). - patches.drivers/0240-netdev-Use-default-implementation-of-ethtool_ops-get.patch: sfc: Report link-dwn while interface is down (bnc#698572, FATE#311724). - patches.drivers/0242-sfc-Make-efx_get_tx_queue-an-inline-function.patch: sfc: Make efx_get_tx_queue() an inline function (bnc#698572, FATE#311724). - patches.drivers/0243-sfc-Restore-the-effect-of-the-rss_cpus-module-parame.patch: sfc: Restore the effect of the rss_cpus module parameter (bnc#698572, FATE#311724). - patches.drivers/0245-sfc-Move-TX-queue-core-queue-mapping-into-tx.c.patch: sfc: Move TX queue core queue mapping into tx.c (bnc#698572, FATE#311724). - patches.drivers/0246-sfc-Distinguish-queue-lookup-from-test-for-queue-exi.patch: sfc: Distinguish queue lookup from test for queue existence (bnc#698572, FATE#311724). - patches.drivers/0250-sfc-lower-stack-usage-in-efx_ethtool_self_test.patch: sfc: lower stack usage in efx_ethtool_self_test (bnc#698572, FATE#311724). - patches.drivers/0251-sfc-Reduce-size-of-efx_rx_buffer-by-unionising-skb-a.patch: sfc: Reduce size of efx_rx_buffer by unionising skb and page (bnc#698572, FATE#311724). - patches.drivers/0252-sfc-Reduce-size-of-efx_rx_buffer-further-by-removing.patch: sfc: Reduce size of efx_rx_buffer further by removing data member (bnc#698572, FATE#311724). - patches.drivers/0253-sfc-Read-MC-firmware-version-when-requested-through-.patch: sfc: Read MC firmware version when requested through ethtool (bnc#698572, FATE#311724). - patches.drivers/0254-sfc-Do-not-read-STAT1.FAULT-in-efx_mdio_check_mmd.patch: sfc: Do not read STAT1.FAULT in efx_mdio_check_mmd() (bnc#698572, FATE#311724). - patches.drivers/0255-sfc-Update-copyright-dates.patch: sfc: Update copyright dates (bnc#698572, FATE#311724). - patches.drivers/0256-sfc-Expose-TX-push-and-TSO-counters-through-ethtool-.patch: sfc: Expose TX push and TSO counters through ethtool statistics (bnc#698572, FATE#311724). - patches.drivers/0257-sfc-Remove-configurable-FIFO-thresholds-for-pause-fr.patch: sfc: Remove configurable FIFO thresholds for pause frame generation (bnc#698572, FATE#311724). - patches.drivers/0258-sfc-Bump-version-to-3.1.patch: sfc: Bump version to 3.1 (bnc#698572, FATE#311724). - patches.drivers/0259-sfc-Use-write-combining-to-reduce-TX-latency.patch: sfc: Use write-combining to reduce TX latency (bnc#698572, FATE#311724). - patches.drivers/0260-sfc-Siena-Disable-write-combining-when-SR-IOV-is-ena.patch: sfc: Siena: Disable write-combining when SR-IOV is enabled (bnc#698572, FATE#311724). - patches.drivers/0262-sfc-Stop-the-TX-queues-during-loopback-self-tests.patch: sfc: Stop the TX queues during loopback self-tests (bnc#698572, FATE#311724). - patches.drivers/0263-sfc-Do-not-use-efx_process_channel_now-in-online-sel.patch: sfc: Do not use efx_process_channel_now() in online self-test (bnc#698572, FATE#311724). - patches.drivers/0264-sfc-Use-rmb-to-ensure-reads-occur-in-order.patch: sfc: Use rmb() to ensure reads occur in order (bnc#698572, FATE#311724). - patches.drivers/0265-sfc-Always-map-MCDI-shared-memory-as-uncacheable.patch: sfc: Always map MCDI shared memory as uncacheable (bnc#698572, FATE#311724). - patches.drivers/0266-sfc-Fix-oops-in-register-dump-after-mapping-change.patch: sfc: Fix oops in register dump after mapping change (bnc#698572, FATE#311724). - Remove sfc_netback support: - patches.xen/xen3-auto-xen-drivers.diff: Refresh. - patches.xen/xen3-fixup-xen: Refresh. - patches.xen/xen3-patch-2.6.19: Refresh. - patches.xen/xen3-patch-2.6.22: Refresh. - patches.xen/xen3-patch-2.6.23: Refresh. - patches.xen/xen3-patch-2.6.24: Refresh. - patches.xen/xen3-patch-2.6.27: Refresh. - patches.xen/xen3-patch-2.6.31: Refresh. - patches.xen/xen3-patch-2.6.32: Refresh. - patches.xen/sfc-driverlink: Delete. - patches.xen/sfc-driverlink-conditional: Delete. - patches.xen/sfc-endianness: Delete. - patches.xen/sfc-external-sram: Delete. - patches.xen/sfc-kzalloc: Delete. - patches.xen/sfc-resource-driver: Delete. - patches.xen/sfc-set-arch: Delete. - patches.xen/sfc-update-to-kfifo-api: Delete.- patches.suse/btrfs-add-helper-for-fs_info-closing.patch: btrfs: add helper for fs_info->closing (FATE#306586). - patches.suse/btrfs-add-initial-tracepoint-support-for-btrfs.patch: Refresh. - patches.suse/btrfs-add-missing-btrfs_free_path.patch: fs/btrfs: Add missing btrfs_free_path (FATE#306586). - patches.suse/btrfs-add-missing-spin_unlock-to-a-rare-exit-path.patch: Refresh. - patches.suse/btrfs-add-mount-o-auto_defrag.patch: Btrfs: add mount -o auto_defrag (FATE#306586). - patches.suse/btrfs-add-mount-o-inode_cache.patch: Btrfs: add mount -o inode_cache (FATE#306586). - patches.suse/btrfs-add-readonly-flag.patch: btrfs: add readonly flag (FATE#306586). - patches.suse/btrfs-allocate-extent-state-and-check-the-result-pro.patch: Btrfs: allocate extent state and check the result properly (FATE#306586). - patches.suse/btrfs-always-use-64bit-inode-number.patch: Btrfs: Always use 64bit inode number (FATE#306586). - patches.suse/btrfs-avoid-delayed-metadata-items-during-commits.patch: Btrfs: avoid delayed metadata items during commits (FATE#306586). - patches.suse/btrfs-avoid-stack-bloat-in-btrfs_ioctl_fs_info.patch: Btrfs: avoid stack bloat in btrfs_ioctl_fs_info() (FATE#306586). - patches.suse/btrfs-avoid-taking-the-chunk_mutex-in-do_chunk_alloc.patch: Refresh. - patches.suse/btrfs-avoid-taking-the-trans_mutex-in-btrfs_end_tran.patch: Refresh. - patches.suse/btrfs-bug_on-is-deleted-from-the-caller-of-btrfs_tru.patch: Btrfs: BUG_ON is deleted from the caller of btrfs_truncate_item & btrfs_extend_item (FATE#306586). - patches.suse/btrfs-cache-bitmaps-when-searching-for-a-cluster.patch: Btrfs: cache bitmaps when searching for a cluster (FATE#306586). - patches.suse/btrfs-cache-free-inode-numbers-in-memory.patch: Btrfs: Cache free inode numbers in memory (FATE#306586). - patches.suse/btrfs-check-for-duplicate-entries-in-the-free-space-.patch: Btrfs: check for duplicate entries in the free space cache (FATE#306586). - patches.suse/btrfs-check-return-value-of-btrfs_inc_extent_ref.patch: Btrfs: check return value of btrfs_inc_extent_ref() (FATE#306586). - patches.suse/btrfs-check-return-value-of-kmalloc.patch: Refresh. - patches.suse/btrfs-check-the-return-value-from-set_anon_super.patch: Btrfs: check the return value from set_anon_super (FATE#306586). - patches.suse/btrfs-cleanup-warnings-from-gcc-4.6-nonbugs.patch: Refresh. - patches.suse/btrfs-clear-current-journal_info-on-async-transactio.patch: Btrfs: clear current->journal_info on async transaction commit (FATE#306586). - patches.suse/btrfs-close_bdev_exclusive-should-use-the-same-flags.patch: Refresh. - patches.suse/btrfs-create-special-free-space-cache-inode.patch: Refresh. - patches.suse/btrfs-delete-unused-version.sh-script.patch: btrfs: Delete unused version.sh script (FATE#306586). - patches.suse/btrfs-discard-flags-update: Refresh. - patches.suse/btrfs-do-not-flush-csum-items-of-unchanged-file-data.patch: Btrfs: do not flush csum items of unchanged file data during treelog (FATE#306586). - patches.suse/btrfs-document-a-mutex-lock-unlock-sequence.patch: btrfs: Document a mutex lock/unlock sequence (FATE#306586). - patches.suse/btrfs-don-t-always-do-readahead.patch: Btrfs: don't always do readahead (FATE#306586). - patches.suse/btrfs-don-t-commit-the-transaction-if-we-dont-have-e.patch: Btrfs: don't commit the transaction if we dont have enough pinned bytes (FATE#306586). - patches.suse/btrfs-don-t-force-chunk-allocation-in-find_free_exte.patch: Refresh. - patches.suse/btrfs-don-t-look-at-the-extent-buffer-level-3-times-.patch: Btrfs: don't look at the extent buffer level 3 times in a row (FATE#306586). - patches.suse/btrfs-don-t-map-extent-buffer-if-path-skip_locking-i.patch: Btrfs: don't map extent buffer if path->skip_locking is set (FATE#306586). - patches.suse/btrfs-don-t-save-the-inode-cache-if-we-are-deleting-.patch: Btrfs: don't save the inode cache if we are deleting this root (FATE#306586). - patches.suse/btrfs-don-t-save-the-inode-cache-in-non-fs-roots.patch: Btrfs: don't save the inode cache in non-FS roots (FATE#306586). - patches.suse/btrfs-don-t-try-to-allocate-from-a-block-group-that-.patch: Btrfs: don't try to allocate from a block group that doesn't have enough space (FATE#306586). - patches.suse/btrfs-drop-gfp-parameter-from-alloc_extent_buffer.patch: btrfs: drop gfp parameter from alloc_extent_buffer (FATE#306586). - patches.suse/btrfs-drop-gfp-parameter-from-alloc_extent_map.patch: btrfs: drop gfp parameter from alloc_extent_map (FATE#306586). - patches.suse/btrfs-drop-gfp-parameter-from-find_extent_buffer.patch: btrfs: drop gfp parameter from find_extent_buffer (FATE#306586). - patches.suse/btrfs-drop-unnecessary-device-lock.patch: Btrfs: drop unnecessary device lock (FATE#306586). - patches.suse/btrfs-drop-unused-argument-from-extent_io_tree_init.patch: btrfs: drop unused argument from extent_io_tree_init (FATE#306586). - patches.suse/btrfs-drop-unused-parameter-from-btrfs_release_path.patch: btrfs: drop unused parameter from btrfs_release_path (FATE#306586). - patches.suse/btrfs-drop-unused-parameter-from-extent_map_tree_ini.patch: btrfs: drop unused parameter from extent_map_tree_init (FATE#306586). - patches.suse/btrfs-ensure-the-tree-search-ioctl-returns-the-right.patch: btrfs: Ensure the tree search ioctl returns the right number of records (FATE#306586). - patches.suse/btrfs-false-bug_on-when-degraded.patch: btrfs: false BUG_ON when degraded (FATE#306586). - patches.suse/btrfs-fix-FS_IOC_GETFLAGS-ioctl.patch: Refresh. - patches.suse/btrfs-fix-FS_IOC_SETFLAGS-ioctl.patch: Refresh. - patches.suse/btrfs-fix-__btrfs_map_block-on-32-bit-machines.patch: Refresh. - patches.suse/btrfs-fix-bh-leak-on-__btrfs_open_devices-path.patch: Btrfs: fix bh leak on __btrfs_open_devices path (FATE#306586). - patches.suse/btrfs-fix-bitmap-regression.patch: Btrfs: fix bitmap regression (FATE#306586). - patches.suse/btrfs-fix-dereference-before-check.patch: btrfs: fix dereference before check (FATE#306586). - patches.suse/btrfs-fix-dereference-of-err_ptr-value.patch: btrfs: fix dereference of ERR_PTR value (FATE#306586). - patches.suse/btrfs-fix-duplicate-checking-logic.patch: Btrfs: fix duplicate checking logic (FATE#306586). - patches.suse/btrfs-fix-easily-get-into-enospc-in-mixed-case.patch: Refresh. - patches.suse/btrfs-fix-extent-state-leak-on-failed-nodatasum-read.patch: Btrfs: fix extent state leak on failed nodatasum reads (FATE#306586). - patches.suse/btrfs-fix-how-we-do-space-reservation-for-truncate.patch: Btrfs: fix how we do space reservation for truncate (FATE#306586). - patches.suse/btrfs-fix-memory-leak-at-umount.patch: Refresh. - patches.suse/btrfs-fix-memory-leak-in-btrfs_init_new_device.patch: Refresh. - patches.suse/btrfs-fix-memory-leak-of-empty-filesystem-after-bala.patch: Refresh. - patches.suse/btrfs-fix-oops-of-empty-filesystem-after-balance.patch: Refresh. - patches.suse/btrfs-fix-path-leakage-on-subvol-deletion.patch: Btrfs: fix path leakage on subvol deletion (FATE#306586). - patches.suse/btrfs-fix-raid-code-for-removing-missing-drives.patch: Refresh. - patches.suse/btrfs-fix-relocation-races.patch: Btrfs: fix relocation races (FATE#306586). - patches.suse/btrfs-fix-return-value-check-of-btrfs_join_transacti.patch: Refresh. - patches.suse/btrfs-fix-the-allocator-loop-logic.patch: Btrfs: fix the allocator loop logic (FATE#306586). - patches.suse/btrfs-fix-the-race-between-reading-and-updating-devi.patch: Btrfs: fix the race between reading and updating devices (FATE#306586). - patches.suse/btrfs-fix-the-race-between-remove-dev-and-alloc-chun.patch: Btrfs: fix the race between remove dev and alloc chunk (FATE#306586). - patches.suse/btrfs-fix-uncheck-memory-allocations.patch: Refresh. - patches.suse/btrfs-fix-uninit-variable-in-the-delayed-inode-code.patch: Btrfs: fix uninit variable in the delayed inode code (FATE#306586). - patches.suse/btrfs-fix-uninitialized-return-value.patch: btrfs: fix uninitialized return value (FATE#306586). - patches.suse/btrfs-fix-uninitialized-variable-warning.patch: btrfs: fix uninitialized variable warning (FATE#306586). - patches.suse/btrfs-fix-unlocked-access-of-delalloc_inodes.patch: btrfs: fix unlocked access of delalloc_inodes (FATE#306586). - patches.suse/btrfs-fix-unsafe-usage-of-merge_state.patch: Btrfs: fix unsafe usage of merge_state (FATE#306586). - patches.suse/btrfs-fix-wrong-calculation-of-stripe-size.patch: Refresh. - patches.suse/btrfs-fix-wrong-free-space-information-of-btrfs.patch: Refresh. - patches.suse/btrfs-fix-wrong-reservation-when-doing-delayed-inode.patch: btrfs: fix wrong reservation when doing delayed inode operations (FATE#306586). - patches.suse/btrfs-forced-readonly-mounts-on-errors.patch: Refresh. - patches.suse/btrfs-handle-errors-in-btrfs_orphan_cleanup.patch: Refresh. - patches.suse/btrfs-heed-alloc_start.patch: btrfs: heed alloc_start (FATE#306586). - patches.suse/btrfs-if-we-ve-already-started-a-trans-handle-use-th.patch: Btrfs: if we've already started a trans handle, use that one (FATE#306586). - patches.suse/btrfs-implement-delayed-inode-items-operation.patch: btrfs: implement delayed inode items operation (FATE#306586). - patches.suse/btrfs-kill-btrfs_i-inode-block_group.patch: Btrfs: kill BTRFS_I(inode)->block_group (FATE#306586). - patches.suse/btrfs-kill-trans_mutex.patch: Btrfs: kill trans_mutex (FATE#306586). - patches.suse/btrfs-leave-spinning-on-lookup-and-map-the-leaf.patch: Btrfs: leave spinning on lookup and map the leaf (FATE#306586). - patches.suse/btrfs-make-btrfs_map_block-return-entire-free-extent.patch: Refresh. - patches.suse/btrfs-make-btrfs_rm_device-fail-gracefully.patch: Refresh. - patches.suse/btrfs-make-free-space-cache-code-generic.patch: Btrfs: Make free space cache code generic (FATE#306586). - patches.suse/btrfs-make-functions-static-when-possible.patch: btrfs: make functions static when possible (FATE#306586). - patches.suse/btrfs-make-sure-to-recheck-for-bitmaps-in-clusters.patch: Btrfs: make sure to recheck for bitmaps in clusters (FATE#306586). - patches.suse/btrfs-make-sure-to-use-the-delalloc-reserve-when-fil.patch: Btrfs: make sure to use the delalloc reserve when filling delalloc (FATE#306586). - patches.suse/btrfs-make-sure-we-don-t-overflow-the-free-space-cac.patch: Btrfs: make sure we don't overflow the free space cache crc page (FATE#306586). - patches.suse/btrfs-make-the-chunk-allocator-utilize-the-devices-b.patch: Refresh. - patches.suse/btrfs-make-the-code-for-reading-writing-free-space-c.patch: Btrfs: Make the code for reading/writing free space cache generic (FATE#306586). - patches.suse/btrfs-map-the-node-block-when-looking-for-readahead-.patch: Btrfs: map the node block when looking for readahead targets (FATE#306586). - patches.suse/btrfs-mount-failure-return-value-fix.patch: Refresh. - patches.suse/btrfs-move-btrfs_cmp_device_free_bytes-to-super.c.patch: btrfs: move btrfs_cmp_device_free_bytes to super.c (FATE#306586). - patches.suse/btrfs-new-ioctls-for-scrub.patch: btrfs: new ioctls for scrub (FATE#306586). - patches.suse/btrfs-noinline-the-cluster-searching-functions.patch: Btrfs: noinline the cluster searching functions (FATE#306586). - patches.suse/btrfs-per-file-directory-controls-for-cow-and-compre.patch: Refresh. - patches.suse/btrfs-prevent-oopsing-in-posix_acl_valid.patch: Refresh. - patches.suse/btrfs-protect-the-pending_snapshots-list-with-trans_.patch: Btrfs: protect the pending_snapshots list with trans_lock (FATE#306586). - patches.suse/btrfs-quasi-round-robin-for-chunk-allocation.patch: btrfs: quasi-round-robin for chunk allocation (FATE#306586). - patches.suse/btrfs-reinitialize-scrub-workers.patch: btrfs: reinitialize scrub workers (FATE#306586). - patches.suse/btrfs-remove-64bit-alignment-padding-to-allow-extent.patch: btrfs: remove 64bit alignment padding to allow extent_buffer to fit into one fewer cacheline (FATE#306586). - patches.suse/btrfs-remove-BLKDEV_IFL_WAIT.patch: Refresh. - patches.suse/btrfs-remove-all-unused-functions.patch: btrfs: remove all unused functions (FATE#306586). - patches.suse/btrfs-remove-nested-duplicate-variable-declarations.patch: btrfs: remove nested duplicate variable declarations (FATE#306586). - patches.suse/btrfs-remove-old-unused-commented-out-code.patch: btrfs: remove old unused commented out code (FATE#306586). - patches.suse/btrfs-remove-unneeded-includes-from-scrub.c.patch: btrfs: remove unneeded includes from scrub.c (FATE#306586). - patches.suse/btrfs-remove-unused-btrfs_block_group_free_space.patch: Btrfs: Remove unused btrfs_block_group_free_space() (FATE#306586). - patches.suse/btrfs-remove-unused-function-prototypes.patch: btrfs: remove unused function prototypes (FATE#306586). - patches.suse/btrfs-remove-unused-node_lock.patch: BTRFS: Remove unused node_lock (FATE#306586). - patches.suse/btrfs-remove-unused-sysfs-code.patch: btrfs: Remove unused sysfs code (FATE#306586). - patches.suse/btrfs-rename-variables-clashing-with-global-function.patch: btrfs: rename variables clashing with global function names (FATE#306586). - patches.suse/btrfs-replace-barriers-with-explicit-flush-FUA-us.patch: Refresh. - patches.suse/btrfs-restructure-find_free_dev_extent.patch: Refresh. - patches.suse/btrfs-return-enomem-in-clear_extent_bit.patch: Btrfs: return -ENOMEM in clear_extent_bit (FATE#306586). - patches.suse/btrfs-return-error-code-to-caller-when-btrfs_del_ite.patch: Btrfs: return error code to caller when btrfs_del_item fails (FATE#306586). - patches.suse/btrfs-return-error-code-to-caller-when-btrfs_previou.patch: Btrfs: return error code to caller when btrfs_previous_item fails (FATE#306586). - patches.suse/btrfs-return-error-to-caller-if-read_one_inode-fails.patch: Btrfs: return error to caller if read_one_inode() fails (FATE#306586). - patches.suse/btrfs-sanitize-linux-prefetch.h-usage.patch: sanitize usage (FATE#306586). - patches.suse/btrfs-scrub-don-t-coalesce-pages-that-are-logically-.patch: btrfs scrub: don't coalesce pages that are logically discontiguous (FATE#306586). - patches.suse/btrfs-scrub-don-t-reuse-bios-and-pages.patch: btrfs: scrub: don't reuse bios and pages (FATE#306586). - patches.suse/btrfs-scrub-errors-in-tree-enumeration.patch: btrfs: scrub: errors in tree enumeration (FATE#306586). - patches.suse/btrfs-scrub-make-fixups-sync.patch: btrfs scrub: make fixups sync (FATE#306586). - patches.suse/btrfs-scrub.patch: btrfs: scrub (FATE#306586). - patches.suse/btrfs-set-fmode_excl-in-btrfs_device-mode.patch: Refresh. - patches.suse/btrfs-set-no_trans_join-after-trying-to-expand-the-t.patch: Btrfs: set no_trans_join after trying to expand the transaction (FATE#306586). - patches.suse/btrfs-set-range_start-to-the-right-start-in-count_ra.patch: Btrfs: set range_start to the right start in count_range_bits (FATE#306586). - patches.suse/btrfs-setup-free-ino-caching-in-a-more-asynchronous-.patch: Btrfs: setup free ino caching in a more asynchronous way (FATE#306586). - patches.suse/btrfs-support-reading-writing-on-disk-free-ino-cache.patch: Btrfs: Support reading/writing on disk free ino cache (FATE#306586). - patches.suse/btrfs-take-away-the-num_items-argument-from-btrfs_jo.patch: Btrfs: take away the num_items argument from btrfs_join_transaction (FATE#306586). - patches.suse/btrfs-try-not-to-sleep-as-much-when-doing-slow-cachi.patch: Btrfs: try not to sleep as much when doing slow caching (FATE#306586). - patches.suse/btrfs-typo-btrfs-btrfs.patch: btrfs: typo: 'btrfS' -> 'btrfs' (FATE#306586). - patches.suse/btrfs-unify-checking-of-is_err-and-null.patch: btrfs: unify checking of IS_ERR and null (FATE#306586). - patches.suse/btrfs-unify-flags-for-struct-bio-and-struct-request.patch: Refresh. - patches.suse/btrfs-unlock-the-trans-lock-properly.patch: Btrfs: unlock the trans lock properly (FATE#306586). - patches.suse/btrfs-update-the-delayed-inode-code-to-use-the-btrfs.patch: Btrfs: update the delayed inode code to use the btrfs_ino helper (FATE#306586). - patches.suse/btrfs-use-bitmap_set-clear.patch: Btrfs: Use bitmap_set/clear() (FATE#306586). - patches.suse/btrfs-use-btrfs_ino-to-access-inode-number.patch: btrfs: use btrfs_ino to access inode number (FATE#306586). - patches.suse/btrfs-use-join_transaction-in-btrfs_evict_inode.patch: Btrfs: use join_transaction in btrfs_evict_inode() (FATE#306586). - patches.suse/btrfs-use-printk_ratelimited-instead-of-printk_ratel.patch: btrfs: use printk_ratelimited instead of printk_ratelimit (FATE#306586). - patches.suse/btrfs-use-the-device_list_mutex-during-write_dev_sup.patch: Btrfs: use the device_list_mutex during write_dev_supers (FATE#306586). - patches.suse/btrfs-use-unsigned-type-for-single-bit-bitfield.patch: btrfs: use unsigned type for single bit bitfield (FATE#306586). - patches.suse/btrfs-using-rcu-lock-in-the-reader-side-of-devices-l.patch: Btrfs: using rcu lock in the reader side of devices list (FATE#306586). - patches.suse/btrfs-write-out-free-space-cache.patch: Refresh. - patches.suse/direct-io-add-a-hook-for-the-fs-to-provide-its-own-s.patch: Refresh. - patches.suse/fs-add-fitrim-ioctl.patch: Refresh. - patches.suse/fs-remove-FS_COW_FL.patch: Refresh. - patches.xen/tmem: Refresh.- patches.fixes/ocfs2-readpage-livelock.patch: ocfs2: Avoid livelock in ocfs2_readpage() (bnc#682076).- patches.drivers/0001-bnx2-Refine-statistics-code.patch: bnx2: Refine statistics code (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0002-bnx2-Save-statistics-during-reset.patch: bnx2: Save statistics during reset (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0003-bnx2-Check-BNX2_FLAG_USING_MSIX-flag-when-setting-up.patch: bnx2: Check BNX2_FLAG_USING_MSIX flag when setting up MSIX (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0004-bnx2-Allow-user-specified-multiple-advertisement-spe.patch: bnx2: Allow user-specified multiple advertisement speed values (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0005-bnx2-Fix-bug-when-saving-statistics.patch: bnx2: Fix bug when saving statistics (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0008-drivers-net-bnx2.c-Use-pr-netdev-netif-_-level-macro.patch: drivers/net/bnx2.c: Use (pr|netdev|netif)_ macro helpers (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0009-cnic-Revert-cnic-Give-a-chance-for-the-uio-device-to.patch: cnic: Revert "cnic: Give a chance for the uio device to be opened" (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0010-drivers-net-cnic.c-Use-pr-netdev-_-level-macro-helpe.patch: drivers/net/cnic.c: Use (pr|netdev)_ macro helpers (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0011-cnic-Simplify-route-checking-during-iSCSI-connection.patch: cnic: Simplify route checking during iSCSI connection (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0012-bnx2-Prevent-scheduling-while-atomic-warning-with-cn.patch: bnx2: Prevent "scheduling while atomic" warning with cnic, bonding and vlan (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0013-bnx2-Update-version-to-2.0.9.patch: bnx2: Update version to 2.0.9 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0014-bnx2-Add-GRO-support.patch: bnx2: Add GRO support (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0015-bnx2-Add-prefetches-to-rx-path.patch: bnx2: Add prefetches to rx path (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0016-drivers-net-Remove-unnecessary-returns-from-void-fun.patch: drivers/net: Remove unnecessary returns from void function()s (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0017-bnx2x-use-smp_mb-to-keep-ordering-of-read-write-oper.patch: bnx2x: use smp_mb() to keep ordering of read write operations (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0018-bnx2x-remove-not-necessary-compiler-barrier.patch: bnx2x: remove not necessary compiler barrier (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0019-bnx2x-change-smp_mb-comment-to-conform-the-true.patch: bnx2x: change smp_mb() comment to conform the true (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0020-bnx2x-Added-GRO-support.patch: bnx2x: Added GRO support (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0021-bnx2x-Parity-errors-handling-for-57710-and-57711.patch: bnx2x: Parity errors handling for 57710 and 57711 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0022-bnx2x-Increase-DMAE-max-write-size-for-57711.patch: bnx2x: Increase DMAE max write size for 57711 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0023-bnx2x-Protect-code-with-NOMCP.patch: bnx2x: Protect code with NOMCP (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0024-bnx2x-White-spaces.patch: bnx2x: White spaces (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0025-bnx2x-Added-new-statistics.patch: bnx2x: Added new statistics (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0026-bnx2x-Fixed-MSI-X-enabling-flow.patch: bnx2x: Fixed MSI-X enabling flow (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0027-bnx2x-use-mask-in-test_registers-to-avoid-parity-err.patch: bnx2x: use mask in test_registers() to avoid parity error (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0028-bnx2x-Rework-power-state-handling-code.patch: bnx2x: Rework power state handling code (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0029-bnx2x-Don-t-report-link-down-if-has-been-already-dow.patch: bnx2x: Don't report link down if has been already down (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0030-bnx2x-Date-and-version.patch: bnx2x: Date and version (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0031-bnx2x-Remove-two-prefetch.patch: bnx2x: Remove two prefetch() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0032-bnx2-Fix-register-printouts-during-NETEV_WATCHDOG.patch: bnx2: Fix register printouts during NETEV_WATCHDOG (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0033-bnx2-Update-5709-MIPS-firmware-and-version-to-2.0.15.patch: bnx2: Update 5709 MIPS firmware and version to 2.0.15 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0034-bnx2-Use-netif_carrier_off-to-prevent-timeout.patch: bnx2: Use netif_carrier_off() to prevent timeout (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0035-bnx2x-avoid-TX-timeout-when-stopping-device.patch: bnx2x: avoid TX timeout when stopping device (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0036-bnx2-Fix-compiler-warning-in-bnx2_disable_forced_2g5.patch: bnx2: Fix compiler warning in bnx2_disable_forced_2g5() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0037-bnx2x-Fix-link-problem-with-some-DACs.patch: bnx2x: Fix link problem with some DACs (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0038-cnic-Return-error-code-in-cnic_cm_close-if-unsuccess.patch: cnic: Return error code in cnic_cm_close() if unsuccessful (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0039-cnic-Refactor-code-in-cnic_cm_process_kcqe.patch: cnic: Refactor code in cnic_cm_process_kcqe() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0040-cnic-Refactor-and-fix-cnic_ready_to_close.patch: cnic: Refactor and fix cnic_ready_to_close() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0041-cnic-Fix-cnic_cm_abort-error-handling.patch: cnic: Fix cnic_cm_abort() error handling (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0042-bnx2-fix-dma_get_ops-compilation-breakage.patch: bnx2: fix dma_get_ops compilation breakage (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0043-cnic-Fine-tune-CID-memory-space-calculation.patch: cnic: Fine-tune CID memory space calculation (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0044-cnic-Unify-IRQ-code-for-all-hardware-types.patch: cnic: Unify IRQ code for all hardware types (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0045-cnic-Unify-kcq-allocation-for-all-devices.patch: cnic: Unify kcq allocation for all devices (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0046-cnic-Restructure-kcq-processing.patch: cnic: Restructure kcq processing (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0047-cnic-Further-unify-kcq-handling-code.patch: cnic: Further unify kcq handling code (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0048-cnic-Update-version-to-2.1.3.patch: cnic: Update version to 2.1.3 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0049-bnx2x-fail-when-try-to-setup-unsupported-features.patch: bnx2x: fail when try to setup unsupported features (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0050-bnx2-Always-enable-MSI-X-on-5709.patch: bnx2: Always enable MSI-X on 5709 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0051-bnx2-Dump-some-config-space-registers-during-TX-time.patch: bnx2: Dump some config space registers during TX timeout (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0052-bnx2-Update-version-to-2.0.16.patch: bnx2: Update version to 2.0.16 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0053-bnx2-allocate-with-GFP_KERNEL-flag-on-RX-path-init.patch: bnx2: allocate with GFP_KERNEL flag on RX path init (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0054-bnx2-use-device-model-DMA-API.patch: bnx2: use device model DMA API (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0055-bnx2-Use-proper-counter-for-net_device_stats-multica.patch: bnx2: Use proper counter for net_device_stats->multicast (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0056-bnx2-Call-pci_enable_msix-with-actual-number-of-vect.patch: bnx2: Call pci_enable_msix() with actual number of vectors (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0057-bnx2-Remove-some-unnecessary-smp_mb-in-tx-fast-path.patch: bnx2: Remove some unnecessary smp_mb() in tx fast path (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0058-bnx2-Update-version-to-2.0.17.patch: bnx2: Update version to 2.0.17 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0066-bnx2x-Protect-a-SM-state-change.patch: bnx2x: Protect a SM state change (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0067-bnx2x-Protect-statistics-ramrod-and-sequence-number.patch: bnx2x: Protect statistics ramrod and sequence number (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0068-bnx2x-Advance-a-module-version.patch: bnx2x: Advance a module version (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0069-bnx2x-Create-separate-folder-for-bnx2x-driver.patch: bnx2x: Create separate folder for bnx2x driver (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0070-bnx2x-store-module-parameters-in-driver-main-structu.patch: bnx2x: store module parameters in driver main structure (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0071-bnx2x-move-global-variable-load_count-to-bnx2x.h.patch: bnx2x: move global variable load_count to bnx2x.h (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0072-bnx2x-Create-bnx2x_cmn.-files.patch: bnx2x: Create bnx2x_cmn.* files (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0073-bnx2x-Create-separate-file-for-ethtool-routines.patch: bnx2x: Create separate file for ethtool routines (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0074-bnx2x-Move-statistics-handling-code-to-bnx2x_stats.patch: bnx2x: Move statistics handling code to bnx2x_stats.* (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0075-bnx2x-update-driver-version-to-1.52.53-3.patch: bnx2x: update driver version to 1.52.53-3 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0076-bnx2x-Update-MAINTAINERS-according-to-new-location.patch: bnx2x: Update MAINTAINERS according to new location (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0077-net-bnx2x_cmn.c-needs-net-ip6_checksum.h-for-csum_ip.patch: net: bnx2x_cmn.c needs net/ip6_checksum.h for csum_ipv6_magic (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0078-scsi-fix-bnx2i-build-errors.patch: scsi: fix bnx2i build errors (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0079-bnx2x-Load-firmware-in-open-instead-of-probe.patch: bnx2x: Load firmware in open() instead of probe() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0080-drivers-net-bnx2x-Adjust-confusing-if-indentation.patch: drivers/net/bnx2x: Adjust confusing if indentation (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0081-drivers-net-Convert-unbounded-kzalloc-calls-to-kcall.patch: drivers/net: Convert unbounded kzalloc calls to kcalloc (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0082-bnx2x-Fix-PHY-locking-problem.patch: bnx2x: Fix PHY locking problem (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0083-bnx2x-Update-bnx2x-version-to-1.52.53-4.patch: bnx2x: Update bnx2x version to 1.52.53-4 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0084-bnx2-Add-PCI-Advanced-Error-Reporting-support.patch: bnx2: Add PCI Advanced Error Reporting support (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0085-bnx2x-small-fix-in-stats-handling.patch: bnx2x: small fix in stats handling (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0086-bnx2x-fix-wrong-return-from-bnx2x_trylock_hw_lock.patch: bnx2x: fix wrong return from bnx2x_trylock_hw_lock (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0087-bnx2x-Fix-potential-link-issue-of-BCM8073-BCM8727.patch: bnx2x: Fix potential link issue of BCM8073/BCM8727 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0088-bnx2x-Fix-potential-link-issue-In-BCM8727-based-boar.patch: bnx2x: Fix potential link issue In BCM8727 based boards (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0089-bnx2x-Reset-link-before-any-new-link-settings.patch: bnx2x: Reset link before any new link settings (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0090-bnx2x-Change-BCM848xx-configuration-according-to-IEE.patch: bnx2x: Change BCM848xx configuration according to IEEE (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0091-bnx2x-Remove-unneeded-setting-of-XAUI-low-power-to-B.patch: bnx2x: Remove unneeded setting of XAUI low power to BCM8727 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0092-bnx2x-Change-BCM848xx-LED-configuration.patch: bnx2x: Change BCM848xx LED configuration (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0093-bnx2x-Add-BCM84823-to-the-supported-PHYs.patch: bnx2x: Add BCM84823 to the supported PHYs (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0094-bnx2x-Update-version-to-1.52.53-5.patch: bnx2x: Update version to 1.52.53-5 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0095-bnx2i-Fixed-a-protocol-violation-on-nopout-responses.patch: bnx2i: Fixed a protocol violation on nopout responses (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0096-bxn2i-Added-support-for-other-TMFs-besides-ABORT_TAS.patch: bxn2i: Added support for other TMFs besides ABORT_TASK (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0097-bnx2i-Recouple-the-CFC-delete-cleanup-with-cm_abort-.patch: bnx2i: Recouple the CFC delete cleanup with cm_abort/close completion (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0098-bnx2i-Added-chip-cleanup-for-the-remove-module-path.patch: bnx2i: Added chip cleanup for the remove module path (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0099-bnx2i-Updated-version-to-bnx2i-2.1.3.patch: bnx2i: Updated version to bnx2i-2.1.3 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0100-bnx2x-Unify-PHY-attributes.patch: bnx2x: Unify PHY attributes (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0101-bnx2x-Split-PHY-functions.patch: bnx2x: Split PHY functions (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0102-bnx2x-Adjust-alignment-of-split-PHY-functions.patch: bnx2x: Adjust alignment of split PHY functions (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0103-bnx2x-Adjust-flow-control-with-the-new-scheme.patch: bnx2x: Adjust flow-control with the new scheme (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0104-bnx2x-Move-common-function-into-aggregated-function.patch: bnx2x: Move common function into aggregated function (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0105-bnx2x-Apply-logic-changes-for-the-new-scheme.patch: bnx2x: Apply logic changes for the new scheme (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0106-bnx2x-Organize-PHY-functions.patch: bnx2x: Organize PHY functions (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0107-bnx2x-Add-dual-media-changes.patch: bnx2x: Add dual-media changes (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0108-bnx2x-Change-LED-scheme-for-dual-media.patch: bnx2x: Change LED scheme for dual-media (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0109-bnx2x-Update-bnx2x-version-to-1.52.53-6.patch: bnx2x: Update bnx2x version to 1.52.53-6 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0110-drivers-net-bnx2x-use-ARRAY_SIZE-macro-in-bnx2x_main.patch: drivers/net/bnx2x: use ARRAY_SIZE macro in bnx2x_main.c (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0111-bnx2x-Spread-rx-buffers-between-allocated-queues.patch: bnx2x: Spread rx buffers between allocated queues (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0112-drivers-net-return-operator-cleanup.patch: drivers/net: return operator cleanup (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0113-bnx2-Use-netif_set_real_num_-rx-tx-_queues.patch: bnx2: Use netif_set_real_num_{rx,tx}_queues() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0114-bnx2x-Use-netif_set_real_num_-rx-tx-_queues.patch: bnx2x: Use netif_set_real_num_{rx,tx}_queues() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0115-bnx2x-Moved-enabling-of-MSI-to-the-bnx2x_set_num_que.patch: bnx2x: Moved enabling of MSI to the bnx2x_set_num_queues() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0116-cnic-Pass-cp-pointer-to-BNX2X_HW_CID.patch: cnic: Pass cp pointer to BNX2X_HW_CID (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0117-cnic-Use-pfid-for-internal-memory-offsets.patch: cnic: Use pfid for internal memory offsets (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0118-cnic-Fine-tune-ring-init-code.patch: cnic: Fine-tune ring init code (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0119-bnx2x-create-folder-for-bnx2x-firmware-files.patch: bnx2x: create folder for bnx2x firmware files (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0120-bnx2x-add-6.0.34-fw-files.patch: bnx2x: add 6.0.34 fw files (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0121-bnx2x-cnic-bnx2i-use-new-FW-HSI.patch: bnx2x, cnic, bnx2i: use new FW/HSI (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0122-bnx2x-remove-old-FW-files.patch: bnx2x: remove old FW files (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0123-bnx2x-rename-MF-related-fields.patch: bnx2x: rename MF related fields (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0124-bnx2x-change-type-of-spq_left-to-atomic.patch: bnx2x: change type of spq_left to atomic (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0125-bnx2x-Add-57712-support.patch: bnx2x: Add 57712 support (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0126-bnx2x-remove-unused-parameter-in-reuse_rx_skb.patch: bnx2x: remove unused parameter in reuse_rx_skb() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0127-bnx2x-remove-unused-fields-in-main-driver-structure.patch: bnx2x: remove unused fields in main driver structure (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0128-bnx2x-use-proper-constants-for-dma_unmap-calls.patch: bnx2x: use proper constants for dma_unmap* calls (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0129-bnx2x-use-L1_CACHE_BYTES-instead-of-magic-number.patch: bnx2x: use L1_CACHE_BYTES instead of magic number (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0130-bnx2x-move-msix-table-initialization-to-probe.patch: bnx2x: move msix table initialization to probe() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0131-bnx2x-cnic-Fix-SPQ-return-credit.patch: bnx2x, cnic: Fix SPQ return credit (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0132-bnx2x-code-beautify.patch: bnx2x: code beautify (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0133-bnx2x-properly-initialize-FW-stats.patch: bnx2x: properly initialize FW stats (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0134-bnx2x-update-version-to-1.60.00-1.patch: bnx2x: update version to 1.60.00-1 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0135-bnx2-Update-firmware-to-6.0.x.patch: bnx2: Update firmware to 6.0.x (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0136-bnx2-Enable-AER-on-PCIE-devices-only.patch: bnx2: Enable AER on PCIE devices only (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0137-bnx2x-Fixing-a-typo-added-a-missing-RSS-enablement.patch: bnx2x: Fixing a typo: added a missing RSS enablement (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0138-cnic-Add-common-cnic_request_irq.patch: cnic: Add common cnic_request_irq() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0139-cnic-Convert-ctx_flags-to-bit-fields.patch: cnic: Convert ctx_flags to bit fields (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0140-cnic-Add-cnic_bnx2x_destroy_ramrod.patch: cnic: Add cnic_bnx2x_destroy_ramrod() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0141-cnic-Defer-iscsi-connection-cleanup.patch: cnic: Defer iscsi connection cleanup (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0142-cnic-Add-cnic_free_uio.patch: cnic: Add cnic_free_uio() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0143-cnic-Add-cnic_uio_dev-struct.patch: cnic: Add cnic_uio_dev struct (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0144-cnic-Decouple-uio-close-from-cnic-shutdown.patch: cnic: Decouple uio close from cnic shutdown (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0145-cnic-Add-support-for-57712-device.patch: cnic: Add support for 57712 device (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0146-bnx2x-Optimized-the-branching-in-the-bnx2x_rx_int.patch: bnx2x: Optimized the branching in the bnx2x_rx_int() (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0147-bnx2x-remove-redundant-commands-during-error-handlin.patch: bnx2x: remove redundant commands during error handling (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0148-bnx2x-do-not-deal-with-power-if-no-capability.patch: bnx2x: do not deal with power if no capability (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0149-bnx2x-Use-correct-FW-constant-for-header-padding.patch: bnx2x: Use correct FW constant for header padding (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0150-bnx2x-remove-unnecessary-FUNC_FLG_RSS-flag-and-relat.patch: bnx2x: remove unnecessary FUNC_FLG_RSS flag and related (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050). - patches.drivers/0151-bnx2x-update-version-to-1.60.00-2.patch: bnx2x: update version to 1.60.00-2 (FATE#311458 FATE#311459 FATE#311460 FATE#311461 FATE#311462 bnc#698050).- patches.drivers/0000-be2net-remove-use-of-skb_dma_map-unmap.patch: be2net: remove use of skb_dma_map/unmap (FATE#311448, bnc#697255). - patches.drivers/0001-be2net-implement-pci-shutdown-handler.patch: be2net: implement pci shutdown handler (FATE#311448, bnc#697255). - patches.drivers/0002-be2net-free-tx-buffers-when-completions-never-arriv.patch: be2net: free tx buffers when completions never arrive (FATE#311448, bnc#697255). - patches.drivers/0003-be2net-update-copyright-dates.patch: be2net: update copyright dates (FATE#311448, bnc#697255). - patches.drivers/0004-be2net-remove-usage-of-be_pci_func.patch: be2net: remove usage of be_pci_func (FATE#311448, bnc#697255). - patches.drivers/0005-be2net-remove-unused-code-in-be_load_fw.patch: be2net: remove unused code in be_load_fw (FATE#311448, bnc#697255). - patches.drivers/0006-be2net-handle-dma-mapping-errors-in-Tx-path.patch: be2net: handle dma mapping errors in Tx path (FATE#311448, bnc#697255). - patches.drivers/0007-be2net-fix-unmap_single-page-called-incorrectly-i.patch: be2net: fix unmap_single/page() called incorrectly in Tx compl processing (FATE#311448, bnc#697255). - patches.drivers/0008-net-various-remove-trailing-space-in-messages.patch: net/various: remove trailing space in messages (FATE#311448, bnc#697255). - patches.drivers/0009-benet-Fix-compile-warnnings-in-drivers-net-benet-be.patch: benet: Fix compile warnnings in drivers/net/benet/be_ethtool.c (FATE#311448, bnc#697255). - patches.drivers/0010-include-cleanup-Update-gfp.h-and-slab.h-includes-to.patch: include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h (FATE#311448, bnc#697255). - patches.drivers/0011-net-remove-redundant-code.patch: net: remove redundant code (FATE#311448, bnc#697255). - patches.drivers/0012-be2net-fix-a-bug-in-flashing-the-redboot-section.patch: be2net: fix a bug in flashing the redboot section (FATE#311448, bnc#697255). - patches.drivers/0013-be2net-fix-flashing-on-big-endian-architectures.patch: be2net: fix flashing on big endian architectures (FATE#311448, bnc#697255). - patches.drivers/0014-be2net-Adding-PCI-SRIOV-support.patch: be2net: Adding PCI SRIOV support (FATE#311448, bnc#697255). - patches.drivers/0015-benet-use-the-dma-state-API-instead-of-the-pci-equi.patch: benet: use the dma state API instead of the pci equivalents (FATE#311448, bnc#697255). - patches.drivers/0016-benet-fix-the-misusage-of-zero-dma-address.patch: benet: fix the misusage of zero dma address (FATE#311448, bnc#697255). - patches.drivers/0017-be2net-clarify-promiscuous-cmd-with-a-comment.patch: be2net: clarify promiscuous cmd with a comment (FATE#311448, bnc#697255). - patches.drivers/0018-drivers-net-use-skb_headlen.patch: drivers: net: use skb_headlen() (FATE#311448, bnc#697255). - patches.drivers/0019-drivers-net-Remove-unnecessary-returns-from-void-fu.patch: drivers/net: Remove unnecessary returns from void function()s (FATE#311448, bnc#697255). - patches.drivers/0020-be2net-Bug-fix-in-init-code-in-probe.patch: be2net: Bug fix in init code in probe (FATE#311448, bnc#697255). - patches.drivers/0021-be2net-Bug-fix-to-avoid-disabling-bottom-half-durin.patch: be2net: Bug fix to avoid disabling bottom half during firmware upgrade (FATE#311448, bnc#697255). - patches.drivers/0022-be2net-increase-POST-timeout-for-EEH-recovery.patch: be2net: increase POST timeout for EEH recovery (FATE#311448, bnc#697255). - patches.drivers/0023-be2net-Patch-removes-redundant-while-statement-in-l.patch: be2net: Patch removes redundant while statement in loop (FATE#311448, bnc#697255). - patches.drivers/0024-be2net-add-unlock-on-error-path.patch: be2net: add unlock on error path (FATE#311448, bnc#697255). - patches.drivers/0025-be2net-remove-superfluous-externs.patch: be2net: remove superfluous externs (FATE#311448, bnc#697255). - patches.drivers/0026-be2net-cleanup-in-case-of-error-in-be_open.patch: be2net: cleanup in case of error in be_open() (FATE#311448, bnc#697255). - patches.drivers/0027-be2net-replace-udelay-with-schedule_timeout-in.patch: be2net: replace udelay() with schedule_timeout() in mbox polling (FATE#311448, bnc#697255). - patches.drivers/0028-be2net-convert-hdr.timeout-in-be_cmd_loopback_test.patch: be2net: convert hdr.timeout in be_cmd_loopback_test() to le32 (FATE#311448, bnc#697255). - patches.drivers/0029-fix-typos-concerning-management.patch: fix typos concerning "management" (FATE#311448, bnc#697255). - patches.drivers/0030-be2net-enable-ipv6-tso-support.patch: be2net: enable ipv6 tso support (FATE#311448, bnc#697255). - patches.drivers/0031-be2net-memory-barrier-fixes-on-IBM-p7-platform.patch: be2net: memory barrier fixes on IBM p7 platform (FATE#311448, bnc#697255). - patches.drivers/0032-be2net-changes-to-properly-provide-phy-details.patch: be2net: changes to properly provide phy details (FATE#311448, bnc#697255). - patches.drivers/0033-be2net-Patch-to-determine-if-function-is-VF-while-r.patch: be2net: Patch to determine if function is VF while running in guest OS (FATE#311448, bnc#697255). - patches.drivers/0034-be2net-supress-printing-error-when-mac-query-fails.patch: be2net: supress printing error when mac query fails for VF (FATE#311448, bnc#697255). - patches.drivers/0035-be2net-variable-name-changes.patch: be2net: variable name change (FATE#311448, bnc#697255). - patches.drivers/0036-be2net-fix-to-correctly-know-if-driver-needs-to-run.patch: be2net: fix to correctly know if driver needs to run for a VF or a PF (FATE#311448, bnc#697255). - patches.drivers/0037-be2net-add-code-to-dump-registers-for-debug.patch: be2net: add code to dump registers for debug (FATE#311448, bnc#697255). - patches.drivers/0038-be2net-change-to-show-correct-physical-link-status.patch: be2net: change to show correct physical link status (FATE#311448, bnc#697255). - patches.drivers/0039-be2net-fix-to-avoid-sending-get_stats-request-if-on.patch: be2net: fix to avoid sending get_stats request if one is already being processed (FATE#311448, bnc#697255). - patches.drivers/0040-be2net-get-rid-of-be_get_stats.patch: be2net: get rid of be_get_stats() (FATE#311448, bnc#697255). - patches.drivers/0041-be2net-fix-to-dynamically-generate-MAC-Address-for.patch: be2net: fix to dynamically generate MAC Address for VFs (FATE#311448, bnc#697255). - patches.drivers/0042-be2net-stats-for-packets-received-due-to-internal-s.patch: be2net: stats for packets received due to internal switching in ASIC (FATE#311448, bnc#697255). - patches.drivers/0043-drivers-net-avoid-some-skb-ip_summed-initializatio.patch: drivers/net: avoid some skb->ip_summed initializations (FATE#311448, bnc#697255). - patches.drivers/0044-be2net-fix-net-snmp-error-because-of-wrong-packet-s.patch: be2net: fix net-snmp error because of wrong packet stats (FATE#311448, bnc#697255). - patches.drivers/0045-be2net-fix-a-bug-in-UE-detection-logic.patch: be2net: fix a bug in UE detection logic (FATE#311448, bnc#697255). - patches.drivers/0046-be2net-remove-a-BUG_ON-in-be_cmds.c.patch: be2net: remove a BUG_ON in be_cmds.c (FATE#311448, bnc#697255). - patches.drivers/0047-drivers-net-return-operator-cleanup.patch: drivers/net: return operator cleanup (FATE#311448, bnc#697255). - patches.drivers/0048-be2net-add-multiple-RX-queue-support.patch: be2net: add multiple RX queue support (FATE#311448, bnc#697255). - patches.drivers/0049-vlan-Don-t-check-for-vlan-group-before-vlan_tx_tag_.patch: vlan: Don't check for vlan group before vlan_tx_tag_present (FATE#311448, bnc#697255). - patches.drivers/0050-be2net-Changes-to-use-only-priority-codes-allowed-b.patch: be2net: Changes to use only priority codes allowed by f/w (FATE#311448, bnc#697255). - patches.drivers/0051-benet-remove-dead-code.patch: benet: remove dead code (FATE#311448, bnc#697255). - patches.drivers/0052-benet-make-be_poll_rx-local.patch: benet: make be_poll_rx local (FATE#311448, bnc#697255). - patches.drivers/0053-be2net-Call-netif_carier_off-after-register_netde.patch: be2net: Call netif_carier_off() after register_netdev() (FATE#311448, bnc#697255). - patches.drivers/0054-be2net-Fix-CSO-for-UDP-packets.patch: be2net: Fix CSO for UDP packets (FATE#311448, bnc#697255). - patches.drivers/0055-be2net-Schedule-Destroy-worker-thread-in-probe-re.patch: be2net: Schedule/Destroy worker thread in probe()/remove() rather than open()/close() (FATE#311448, bnc#697255). - patches.drivers/0056-be2net-Fix-to-avoid-firmware-update-when-interface.patch: be2net: Fix to avoid firmware update when interface is not open (FATE#311448, bnc#697255). - patches.drivers/0057-be2net-adding-support-for-Lancer-family-of-CNAs.patch: be2net: adding support for Lancer family of CNAs (FATE#311448, bnc#697255). - patches.drivers/0058-net-Fix-too-optimistic-NETIF_F_HW_CSUM-features.patch: net: Fix too optimistic NETIF_F_HW_CSUM features (FATE#311448, bnc#697255). - patches.drivers/0059-be2net-Fix-be_dev_family_check-return-value-check.patch: be2net: Fix be_dev_family_check() return value check (FATE#311448, bnc#697255). - patches.drivers/0060-be2net-FW-init-cmd-fix-for-lancer.patch: be2net: FW init cmd fix for lancer (FATE#311448, bnc#697255). - patches.drivers/0061-be2net-Handle-out-of-buffer-completions-for-lancer.patch: be2net: Handle out of buffer completions for lancer (FATE#311448, bnc#697255). - patches.drivers/0063-be2net-use-mutex-instead-of-spin-lock-for-mbox_lock.patch: be2net: use mutex instead of spin lock for mbox_lock (FATE#311448, bnc#697255). - patches.drivers/0064-drivers-net-Use-static-const.patch: drivers/net/*/: Use static const (FATE#311448, bnc#697255). - patches.drivers/0065-be2net-fix-a-crash-seen-during-insmod-rmmod-test.patch: be2net: fix a crash seen during insmod/rmmod test (FATE#311448, bnc#697255). - patches.drivers/0066-be2net-remove-netif_stop_queue-being-called-before.patch: be2net: remove netif_stop_queue being called before register_netdev (FATE#311448, bnc#697255). - patches.drivers/0067-be2net-use-device-model-DMA-API.patch: be2net: use device model DMA API (FATE#311448, bnc#697255). - patches.drivers/0068-benet-Avoid-potential-null-deref-in-be_cmd_get_seep.patch: benet: Avoid potential null deref in be_cmd_get_seeprom_data() (FATE#311448, bnc#697255). - patches.drivers/0070-be2net-Use-domain-id-when-be_cmd_if_destroy-is-call.patch: be2net: Use domain id when be_cmd_if_destroy is called (FATE#311448, bnc#697255). - patches.drivers/0071-be2net-Initialize-and-cleanup-sriov-resources-only.patch: be2net: Initialize and cleanup sriov resources only if pci_enable_sriov has succeeded (FATE#311448, bnc#697255). - patches.drivers/0072-be2net-Cleanup-the-VF-interface-handles.patch: be2net: Cleanup the VF interface handles (FATE#311448, bnc#697255). - patches.drivers/0073-be2net-For-the-VF-MAC-use-the-OUI-from-current-MAC.patch: be2net: For the VF MAC, use the OUI from current MAC address (FATE#311448, bnc#697255). - patches.drivers/0074-be2net-pass-domain-numbers-for-pmac_add-del-functio.patch: be2net: pass domain numbers for pmac_add/del functions (FATE#311448, bnc#697255). - patches.drivers/0075-be2net-Allow-VFs-to-call-be_cmd_reset_function.patch: be2net: Allow VFs to call be_cmd_reset_function (FATE#311448, bnc#697255). - patches.drivers/0076-be2net-Fix-broken-priority-setting-when-vlan-taggin.patch: be2net: Fix broken priority setting when vlan tagging is enabled (FATE#311448, bnc#697255). - patches.drivers/0077-be2net-pass-proper-hdr_size-while-flashing-redboot.patch: be2net: pass proper hdr_size while flashing redboot (FATE#311448, bnc#697255). - patches.drivers/0078-be2net-fix-be_suspend-resume-shutdown.patch: be2net: fix be_suspend/resume/shutdown (FATE#311448, bnc#697255). - patches.drivers/0079-be2net-gracefully-handle-situations-when-UE-is-dete.patch: be2net: gracefully handle situations when UE is detected (FATE#311448, bnc#697255). - patches.drivers/0080-be2net-detect-a-UE-even-when-a-interface-is-down.patch: be2net: detect a UE even when a interface is down (FATE#311448, bnc#697255). - patches.drivers/0081-be2net-restrict-WOL-to-PFs-only.patch: be2net: restrict WOL to PFs only (FATE#311448, bnc#697255). - patches.drivers/0082-be2net-add-new-counters-to-display-via-ethtool-stat.patch: be2net: add new counters to display via ethtool stats (FATE#311448, bnc#697255). - patches.drivers/0083-be2net-fixes-in-ethtool-selftest.patch: be2net: fixes in ethtool selftest (FATE#311448, bnc#697255). - patches.drivers/0084-be2net-variable-name-change.patch: be2net: variable name change (FATE#311448, bnc#697255). - patches.drivers/0085-be2net-fix-to-ignore-transparent-vlan-ids-wrongly-i.patch: be2net: fix to ignore transparent vlan ids wrongly indicated by NIC (FATE#311448, bnc#697255). - patches.drivers/0086-be2net-add-code-to-display-temperature-of-ASIC.patch: be2net: add code to display temperature of ASIC (FATE#311448, bnc#697255). - patches.drivers/0087-be2net-use-hba_port_num-instead-of-port_num.patch: be2net: use hba_port_num instead of port_num (FATE#311448, bnc#697255). - patches.drivers/0088-benet-use-GFP_KERNEL-allocations-when-possible.patch: benet: use GFP_KERNEL allocations when possible (FATE#311448, bnc#697255). - patches.drivers/0089-be2net-Remove-ERR-compl-workaround-for-Lancer.patch: be2net: Remove ERR compl workaround for Lancer (FATE#311448, bnc#697255). - patches.drivers/0090-be2net-Checksum-field-valid-only-for-TCP-UDP.patch: be2net: Checksum field valid only for TCP/UDP (FATE#311448, bnc#697255). - patches.drivers/0091-be2net-Add-error-recovery-during-load-for-Lancer.patch: be2net: Add error recovery during load for Lancer (FATE#311448, bnc#697255). - patches.drivers/0092-be2net-Change-f-w-command-versions-for-Lancer.patch: be2net: Change f/w command versions for Lancer (FATE#311448, bnc#697255). - patches.drivers/0093-be2net-Remove-TX-Queue-stop-in-close.patch: be2net: Remove TX Queue stop in close (FATE#311448, bnc#697255). - patches.drivers/0094-be2net-Disarm-CQ-and-EQ-to-disable-interrupt-in-Lan.patch: be2net: Disarm CQ and EQ to disable interrupt in Lancer (FATE#311448, bnc#697255). - patches.drivers/0095-be2net-Add-multicast-filter-capability-for-Lancer.patch: be2net: Add multicast filter capability for Lancer (FATE#311448, bnc#697255). - patches.drivers/0096-be2net-changes-for-BE3-native-mode-support.patch: be2net: changes for BE3 native mode support (FATE#311448, bnc#697255). - patches.drivers/0097-be2net-Fix-UDP-packet-detected-status-in-RX-compl.patch: be2net: Fix UDP packet detected status in RX compl (FATE#311448, bnc#697255). - patches.drivers/0098-be2net-Copyright-notice-change.-Update-to-Emulex-in.patch: be2net: Copyright notice change. Update to Emulex instead of ServerEngines (FATE#311448, bnc#697255). - patches.drivers/0099-be2net-Support-for-FAT-dump-retrieval-using-ethtool.patch: be2net: Support for FAT dump retrieval using ethtool - -register-dump option (FATE#311448, bnc#697255). - patches.drivers/0100-be2net-refactor-code-that-decides-adapter-num_rx_q.patch: be2net: refactor code that decides adapter->num_rx_queues (FATE#311448, bnc#697255). - patches.drivers/0101-be2net-parse-vid-and-vtm-fields-of-rx-compl-only-if.patch: be2net: parse vid and vtm fields of rx-compl only if vlanf bit is set (FATE#311448, bnc#697255). - patches.drivers/0102-be2net-remove-redundant-code-in-be_worker.patch: be2net: remove redundant code in be_worker() (FATE#311448, bnc#697255). - patches.drivers/0103-be2net-cancel-be_worker-in-be_shutdown-even-when.patch: be2net: cancel be_worker in be_shutdown() even when i/f is down (FATE#311448, bnc#697255). - patches.drivers/0104-be2net-remove-one-useless-line.patch: be2net: remove one useless line (FATE#311448, bnc#697255). - patches.drivers/0105-Fix-common-misspellings.patch: Fix common misspellings (FATE#311448, bnc#697255). - patches.drivers/0106-be2net-Fix-a-potential-crash-during-shutdown.patch: be2net: Fix a potential crash during shutdown (FATE#311448, bnc#697255). - patches.drivers/0107-be2net-Rename-some-struct-members-for-clarity.patch: be2net: Rename some struct members for clarity (FATE#311448, bnc#697255). - patches.drivers/0108-be2net-Fix-suspend-resume-operation.patch: be2net: Fix suspend/resume operation (FATE#311448, bnc#697255). - patches.drivers/0109-be2net-use-common-method-to-check-for-sriov-functio.patch: be2net: use common method to check for sriov function type (FATE#311448, bnc#697255). - patches.drivers/0110-be2net-fix-to-get-max-VFs-supported-from-adapter.patch: be2net: fix to get max VFs supported from adapter (FATE#311448, bnc#697255). - patches.drivers/0111-be2net-dynamically-allocate-adapter-vf_cfg.patch: be2net: dynamically allocate adapter->vf_cfg (FATE#311448, bnc#697255). - patches.drivers/0112-be2net-call-FLR-after-setup-wol-in-be_shutdown.patch: be2net: call FLR after setup wol in be_shutdown (FATE#311448, bnc#697255). - patches.drivers/0113-net-benet-convert-to-hw_features.patch: net: benet: convert to hw_features (FATE#311448, bnc#697255). - patches.drivers/0114-net-benet-convert-to-hw_features-fixup.patch: net: benet: convert to hw_features - fixup (FATE#311448, bnc#697255). - patches.drivers/0115-ethtool-allow-custom-interval-for-physical-identifi.patch: ethtool: allow custom interval for physical identification (FATE#311448, bnc#697255). - patches.drivers/0116-be2net-Fix-unused-but-set-variables.patch: be2net: Fix unused-but-set variables (FATE#311448, bnc#697255). - patches.drivers/0118-be2net-allow-register-dump-only-for-PFs.patch: be2net: allow register dump only for PFs (FATE#311448, bnc#697255). - patches.drivers/0119-be2net-Add-code-to-display-nic-speeds-other-than-1G.patch: be2net: Add code to display nic speeds other than 1Gbps/10Gbps (FATE#311448, bnc#697255). - patches.drivers/0120-be2net-fix-be_mcc_compl_process-to-identify-eth_get.patch: be2net: fix be_mcc_compl_process to identify eth_get_stat command (FATE#311448, bnc#697255). - patches.drivers/0121-be2net-pass-domain-id-to-be_cmd_link_status_query.patch: be2net: pass domain id to be_cmd_link_status_query (FATE#311448, bnc#697255). - patches.drivers/0122-be2net-add-code-to-display-default-value-of-tx-rate.patch: be2net: add code to display default value of tx rate for VFs (FATE#311448, bnc#697255). - patches.drivers/0123-be2net-increment-work_counter-in-be_worker.patch: be2net: increment work_counter in be_worker (FATE#311448, bnc#697255). - patches.drivers/0124-be2net-Fixed-a-bug-in-be_cmd_get_regs.patch: be2net: Fixed a bug in be_cmd_get_regs() (FATE#311448, bnc#697255). - patches.drivers/0125-be2net-Fixed-bugs-related-to-PVID.patch: be2net: Fixed bugs related to PVID (FATE#311448, bnc#697255). - patches.drivers/0126-be2net-Handle-error-completion-in-Lancer.patch: be2net: Handle error completion in Lancer (FATE#311448, bnc#697255). - patches.drivers/0127-be2net-Disable-coalesce-water-mark-mode-of-CQ-for-L.patch: be2net: Disable coalesce water mark mode of CQ for Lancer (FATE#311448, bnc#697255). - patches.drivers/0128-be2net-In-case-of-UE-do-not-dump-registers-for-Lan.patch: be2net: In case of UE, do not dump registers for Lancer (FATE#311448, bnc#697255). - patches.drivers/0129-be2net-Use-NTWK_RX_FILTER-command-for-promiscous-mo.patch: be2net: Use NTWK_RX_FILTER command for promiscous mode (FATE#311448, bnc#697255). - patches.drivers/0130-be2net-Fix-to-prevent-flooding-of-TX-queue.patch: be2net: Fix to prevent flooding of TX queue (FATE#311448, bnc#697255). - patches.drivers/0131-be2net-handle-signal-reception-while-waiting-for-PO.patch: be2net: handle signal reception while waiting for POST (FATE#311448, bnc#697255). - patches.drivers/0132-be2net-fix-mbox-polling-for-signal-reception.patch: be2net: fix mbox polling for signal reception (FATE#311448, bnc#697255). - patches.drivers/0133-be2net-Support-for-version-1-of-stats-for-BE3.patch: be2net: Support for version 1 of stats for BE3 (FATE#311448, bnc#697255). - patches.drivers/0134-be2net-Stats-for-Lancer.patch: be2net: Stats for Lancer (FATE#311448, bnc#697255). - patches.drivers/0135-be2net-FW-download-for-Lancer.patch: be2net: FW download for Lancer (FATE#311448, bnc#697255). - patches.drivers/0136-be2net-Enable-SR-IOV-for-Lancer.patch: be2net: Enable SR-IOV for Lancer (FATE#311448, bnc#697255). - patches.drivers/0137-be2net-Kill-set-but-unused-variable-req-in-lancer.patch: be2net: Kill set but unused variable 'req' in lancer_fw_download() (FATE#311448, bnc#697255). - patches.drivers/0138-Add-appropriate-linux-prefetch.h-include-for-prefe.patch: Add appropriate include for prefetch users (FATE#311448, bnc#697255). - patches.drivers/0139-be2net-hash-key-for-rss-config-cmd-not-set.patch: be2net: hash key for rss-config cmd not set (FATE#311448, bnc#697255). - patches.drivers/0140-be2net-Fallback-to-the-older-opcode-if-MCC_CREATE_E.patch: be2net: Fallback to the older opcode if MCC_CREATE_EXT opcode is not supported on... (FATE#311448, bnc#697255). - patches.drivers/0141-be2net-Fix-Rx-pause-counter-for-lancer.patch: be2net: Fix Rx pause counter for lancer (FATE#311448, bnc#697255). - patches.drivers/0142-be2net-Enable-NETIF_F_TSO6-for-VLAN-traffic-for-BE.patch: be2net: Enable NETIF_F_TSO6 for VLAN traffic for BE (FATE#311448, bnc#697255). - patches.drivers/0143-be2net-support-multiple-TX-queues.patch: be2net: support multiple TX queues (FATE#311448, bnc#697255). - patches.drivers/0144-be2net-fix-sles11sp2-backporting-issues.patch: be2net: Fix sles11sp2 backporting issues (FATE#311448, bnc#697255).- patches.suse/kvm-0002-KVM-SVM-Add-clean-bit-for-intercetps-tsc-offset-a.patch: Update references (FATE#309760).- patches.suse/kvm-0001-KVM-SVM-Add-clean-bits-infrastructure-code.patch: KVM: SVM: Add clean-bits infrastructure code (FATE#309760). - patches.suse/kvm-0001-KVM-SVM-Implement-infrastructure-for-TSC_RATE_MSR.patch: KVM: SVM: Implement infrastructure for TSC_RATE_MSR (FATE#309762). - patches.suse/kvm-0001-KVM-SVM-implement-NEXTRIPsave-SVM-feature.patch: KVM: SVM: implement NEXTRIPsave SVM feature (FATE#309761). - patches.suse/kvm-0002-KVM-SVM-Add-clean-bit-for-intercetps-tsc-offset-a.patch: KVM: SVM: Add clean-bit for intercepts, tsc-offset and pause filter count (FATE:309760). - patches.suse/kvm-0002-KVM-X86-Let-kvm-clock-report-the-right-tsc-frequency.patch: KVM: X86: Let kvm-clock report the right tsc frequency (FATE#309762). - patches.suse/kvm-0002-KVM-x86-fix-CR8-handling.patch: KVM: x86: fix CR8 handling (FATE#309761). - patches.suse/kvm-0003-KVM-SVM-Add-clean-bit-for-IOPM_BASE-and-MSRPM_BASE.patch: KVM: SVM: Add clean-bit for IOPM_BASE and MSRPM_BASE (FATE#309760). - patches.suse/kvm-0003-KVM-SVM-Make-tsc_delta-calculation-a-function-of-gue.patch: KVM: SVM: Make tsc_delta calculation a function of guest tsc (FATE#309762). - patches.suse/kvm-0003-KVM-cleanup-emulate_instruction.patch: KVM: cleanup emulate_instruction (FATE#309761). - patches.suse/kvm-0004-KVM-SVM-Add-clean-bit-for-the-ASID.patch: KVM: SVM: Add clean-bit for the ASID (FATE#309760). - patches.suse/kvm-0004-KVM-SVM-add-new-SVM-feature-bit-names.patch: KVM: SVM: add Decode Assist SVM feature bit name (FATE#309761). - patches.suse/kvm-0004-KVM-X86-Implement-call-back-to-propagate-virtual_tsc.patch: KVM: X86: Implement call-back to propagate virtual_tsc_khz (FATE#309762). - patches.suse/kvm-0005-KVM-SVM-Add-clean-bit-for-interrupt-state.patch: KVM: SVM: Add clean-bit for interrupt state (FATE#309760). - patches.suse/kvm-0005-KVM-SVM-enhance-MOV-CR-intercept-handler.patch: KVM: SVM: enhance MOV CR intercept handler (FATE#309761). - patches.suse/kvm-0005-KVM-X86-Implement-userspace-interface-to-set-virtual.patch: KVM: X86: Implement userspace interface to set virtual_tsc_khz (FATE#309762). - patches.suse/kvm-0006-KVM-SVM-Add-clean-bit-for-NPT-state.patch: KVM: SVM: Add clean-bit for NPT state (FATE#309760). - patches.suse/kvm-0006-KVM-SVM-enhance-mov-DR-intercept-handler.patch: KVM: SVM: enhance mov DR intercept handler (FATE#309761). - patches.suse/kvm-0007-KVM-SVM-Add-clean-bit-for-control-registers.patch: KVM: SVM: Add clean-bit for control registers (FATE#309760). - patches.suse/kvm-0007-KVM-SVM-implement-enhanced-INVLPG-intercept.patch: KVM: SVM: implement enhanced INVLPG intercept (FATE#309761). - patches.suse/kvm-0008-KVM-SVM-Add-clean-bit-for-DR6-and-DR7.patch: KVM: SVM: Add clean-bit for DR6 and DR7 (FATE#309760). - patches.suse/kvm-0008-KVM-SVM-copy-instruction-bytes-from-VMCB.patch: KVM: SVM: copy instruction bytes from VMCB (FATE#309761). - patches.suse/kvm-0009-KVM-SVM-Add-clean-bit-for-GDT-and-IDT.patch: KVM: SVM: Add clean-bit for GDT and IDT (FATE#309760). - patches.suse/kvm-0010-KVM-SVM-Add-clean-bit-for-Segements-and-CPL.patch: KVM: SVM: Add clean-bit for Segements and CPL (FATE#309760). - patches.suse/kvm-0011-KVM-SVM-Add-clean-bit-for-CR2-register.patch: KVM: SVM: Add clean-bit for CR2 register (FATE#309760). - patches.suse/kvm-0012-KVM-SVM-Add-clean-bit-for-LBR-state.patch: KVM: SVM: Add clean-bit for LBR state (FATE#309760).- patches.suse/net-rfc3069-private-vlan-proxy-arp-support.patch: Refresh to fix broken sysctl check table.- patches.suse/mm-memcg-fix-USED-bit-handling-for-THP.patch: Refresh - commit id fixed.- patches.fixes/Fix-over-zealous-flush_disk-when-changing-device-siz.patch: Refresh to apply in SP2.- patches.fixes/Fix-over-zealous-flush_disk-when-changing-device-siz.patch: Don't flush dirty filesystem buffers when a device changes size.- patches.drivers/pcie-gen3-01-PCI-cache-PCIe-capability-offset.patch: PCI: cache PCIe capability offset (FATE#311840 FATE#311841 FATE#311842 FATE#311843 bnc#700632 bnc#700637 bnc#700638). - patches.drivers/pcie-gen3-02-introduce-pci_pcie_cap.patch: PCI: introduce pci_pcie_cap() (FATE#311840 FATE#311841 FATE#311842 FATE#311843 bnc#700632 bnc#700637 bnc#700638). - patches.drivers/pcie-gen3-03-introduce-pci_is_pcie.patch: PCI: introduce pci_is_pcie() (FATE#311840 FATE#311841 FATE#311842 FATE#311843 bnc#700632 bnc#700637 bnc#700638). - patches.drivers/pcie-gen3-04-add-ID-based-ordering-enable-disable-support.patch: PCI: add ID-based ordering enable/disable support (FATE#311840 FATE#311841 FATE#311842 FATE#311843 bnc#700632 bnc#700637 bnc#700638). - patches.drivers/pcie-gen3-05-add-OBFF-enable-disable-support.patch: PCI: add OBFF enable/disable support (FATE#311840 FATE#311841 FATE#311842 FATE#311843 bnc#700632 bnc#700637 bnc#700638). - patches.drivers/pcie-gen3-06-add-latency-tolerance-reporting.patch: PCI: add latency tolerance reporting enable/disable support (FATE#311840 FATE#311841 FATE#311842 FATE#311843 bnc#700632 bnc#700637 bnc#700638). - patches.xen/pci-guestdev: Refresh.- patches.arch/repmovs-01-x86-alternatives-check-replacementlen-instrlen.patch: x86/alternatives: Check replacementlen <= instrlen at build time (FATE#311936 bnc#698793). - patches.arch/repmovs-02-modify-memcpy-memset.patch: x86-64: Modify memcpy()/memset() alternatives mechanism (FATE#311936 bnc#698793). - patches.arch/repmovs-03-modify-copy_user_generic.patch: x86-64: Modify copy_user_generic() alternatives mechanism (FATE#311936 bnc#698793). - patches.arch/repmovs-04-use-16-bit-numbers-for-cpufeature-idx.patch: x86, alternatives: Use 16-bit numbers for cpufeature index (FATE#311936 bnc#698793). - patches.arch/repmovs-05-convert-memmove-to-assembly-file.patch: x86-64, mem: Convert memmove() to assembly file and fix return value bug (FATE#311936 bnc#698793). - patches.arch/repmovs-06-fix-cpuid-leaf-7-feature-detection.patch: x86, cpufeature: Fix cpuid leaf 7 feature detection (FATE#311936 bnc#698793). - patches.arch/repmovs-07-add-CPU-feature-bit.patch: x86, cpufeature: Add CPU feature bit for enhanced REP MOVSB/STOSB (FATE#311936 bnc#698793). - patches.arch/repmovs-08-initialize-Enhanced-REP-MOVSB-STOSB.patch: x86, mem, intel: Initialize Enhanced REP MOVSB/STOSB (FATE#311936 bnc#698793). - patches.arch/repmovs-09-add-comment.patch: x86, alternative, doc: Add comment for applying alternatives order (FATE#311936 bnc#698793). - patches.arch/repmovs-10-add-altinstruction_entry-macro.patch: x86, alternative: Add altinstruction_entry macro (FATE#311936 bnc#698793). - patches.arch/repmovs-11-support-clear_page.patch: x86, mem: clear_page_64.S: Support clear_page() with enhanced REP MOVSB/STOSB (FATE#311936 bnc#698793). - patches.arch/repmovs-12-support-copy_to-from_user.patch: x86, mem: copy_user_64.S: Support copy_to/from_user by enhanced REP MOVSB/STOSB (FATE#311936 bnc#698793). - patches.arch/repmovs-13-optimize-memcpy.patch: x86, mem: memcpy_64.S: Optimize memcpy by enhanced REP MOVSB/STOSB (FATE#311936 bnc#698793). - patches.arch/repmovs-14-optimize-memmove.patch: x86, mem: memmove_64.S: Optimize memmove by enhanced REP MOVSB/STOSB (FATE#311936 bnc#698793). - patches.arch/repmovs-15-optimize-memset.patch: x86, mem: memset_64.S: Optimize memset by enhanced REP MOVSB/STOSB (FATE#311936 bnc#698793). - patches.arch/x86-cpufeature-add-SMEP-flag.patch: Refresh.- patches.drivers/bonding-change-test-for-presence-of-vlans.patch: bonding: change test for presence of VLANs (bnc#654501, fate#311754). - patches.drivers/bonding-fix-bond_inet6addr_event.patch: bonding: fix bond_inet6addr_event() (bnc#654501, fate#311754). - patches.fixes/bonding-allow-arp_ip_targers-on-separate-vlans-to-use-arp-validation.patch: Refresh. - patches.suse/vlan-0-should-be-treated-as-no-vlan-tag.patch: VLAN 0 should be treated as "no vlan tag" (802.1p packet) (bnc#654501, fate#311754). - patches.suse/vlan-allow-null-vlan-id-to-be-used.patch: vlan: allow null VLAN ID to be used (fate#311754).- patches.suse/net-rfc3069-private-vlan-proxy-arp-support.patch: Refresh.- patches.suse/ipv4-add-sysctl-to-accept-packets-with-local-source-address.patch: ipv4: add sysctl to accept packets with local source addresses (fate#310840). - patches.suse/net-fib_rules-add-oif-classification.patch: net: fib_rules: add oif classification (fate#310840). - patches.suse/net-fib_rules-allow-to-delete-local-rule.patch: net: fib_rules: allow to delete local rule (fate#310840). - patches.suse/net-fib_rules-rearrange-struct-fib_rule.patch: net: fib_rules: rearrange struct fib_rule (fate#310840). - patches.suse/net-fib_rules-rename-ifindex-ifname-FRA_IFNAME.patch: net: fib_rules: rearrange struct fib_rule net: fib_rules: rename ifindex/ifname/FRA_IFNAME to iifindex/iifname/FRA_IIFNAME (fate#310840).- patches.fixes/scsi_transport_spi-export-host-width-and-HBA-id: scsi_transport_spi: Export host width and HBA id (bnc #697181).- patches.suse/net-rfc3069-private-vlan-proxy-arp-support.patch: net: RFC3069, private VLAN proxy arp support (fate#310827).- patches.drivers/macvlan-export-macvlan-mode-through-netlink.patch: macvlan: export macvlan mode through netlink (fate#311478). - patches.drivers/macvlan-implement-bridge-VEPA-and-private-mode.patch: macvlan: implement bridge, VEPA and private mode (fate#311478). - patches.suse/net-implement-dev_forward_skb.patch: net: implement dev_forward_skb() (fate#311478).- patches.suse/cfq-iosched-Don-t-update-group-weights-when-on-servi.patch: Fix memory corruption caused by buggy backport.- Update config files. - patches.drivers/dcb-data-center-bridging-ops-s: Refresh. - patches.drivers/ixgbe-net-decreasing-real_num_tx_queues-needs-to-flush-qdi.patch: Refresh. - patches.suse/ixgbe-net-decreasing-real_num_tx_queues-needs-to-flush-qdi-generic.patch: net: decreasing real_num_tx_queues needs to flush qdisc (bnc#625674). - patches.suse/net-implement-mechanism-for-HW-based-QOS.patch: net: implement mechanism for HW based QOS (fate#11835, bnc#687046). - patches.suse/net_sched-implement-a-root-container-qdisc-sch_mqprio.patch: net_sched: implement a root container qdisc sch_mqprio (fate#11835, bnc#687046).- patches.suse/introduce-find_memory_block_hinted: driver core: Introduce find_memory_block_hinted (bnc#700512, FATE#311655). - patches.suse/introduce-kset_find_obj_hinted: kobject: Introduce kset_find_obj_hinted (bnc#700512, FATE#311655).- patches.arch/x86-cpufeature-add-SMEP-flag.patch: x86, cpufeature: Add cpufeature flag for SMEP (fate#311999). - patches.arch/x86-enable-smep.patch: Refresh. - patches.arch/x86-features-flags-in-new-CPUID-leaf.patch: x86, cpu: Support the features flags in new CPUID leaf 7 (bnc#698779 fate#311965). - patches.arch/xsaveopt-01-init_scattered_cpuid_features-subleaves.patch: x86, cpu: Make init_scattered_cpuid_features() consider cpuid subleaves (bnc#698779 fate#311965). - patches.arch/xsaveopt-02-add-xsaveopt-cpufeature.patch: x86, cpu: Add xsaveopt cpufeature (bnc#698779 fate#311965). - patches.arch/xsaveopt-03-enumerate-xsaveopt.patch: x86, cpu: Enumerate xsaveopt (bnc#698779 fate#311965). - patches.arch/xsaveopt-04-track-attrs-in-xsave-layout.patch: x86, xsave: Track the offset, size of state in the xsave layout (bnc#698779 fate#311965). - patches.arch/xsaveopt-05-sync-xsave-memory-layout.patch: x86, xsave: Sync xsave memory layout with its header for user handling (bnc#698779 fate#311965). - patches.arch/xsaveopt-06-use-xsaveopt-in-context-switch-path.patch: x86, xsave: Use xsaveopt in context-switch path when supported (bnc#698779 fate#311965). - patches.drivers/hwmon-coretemp-add-pkgtemp-support.patch: Refresh. - patches.suse/kvm-x86-Introduce-struct-fpu-and-related-API.patch: Refresh. - patches.arch/0001-x86-cpu-Add-AMD-core-boosting-feature-flag-to-proc-c.patch: Refresh. - patches.arch/xsaveopt-02-add-xsaveopt-cpufeature.patch: Refresh. - patches.drivers/hwmon-coretemp-add-pkgtemp-support.patch: Refresh.- patches.arch/x86-Eliminate-TS_XSAVE.patch: x86: Eliminate TS_XSAVE (FATE#311768). - patches.arch/x86-Introduce-struct-fpu-and-related-API.patch: x86: Introduce 'struct fpu' and related API (FATE#311768). - patches.arch/x86-fpu-Unbreak-FPU-emulation.patch: x86, fpu: Unbreak FPU emulation (FATE#311768). - patches.suse/kvm-x86-Eliminate-TS_XSAVE.patch: Delete. - patches.suse/kvm-x86-Introduce-struct-fpu-and-related-API.patch: Delete. - patches.suse/kvm-x86-fpu-Unbreak-FPU-emulation.patch: Delete. Move the stuff around as a preparation for the next patches.- patches.arch/printk-Allocate-kernel-log-buffer-earlier.patch: Refresh.- patches.drivers/alsa-sp1-hda-116-Reorganize-controller-quriks-with-bit-flags: Refresh. Fixed the cherry-picking errors.- patches.suse/procps_bitmap_support.patch: fix a porting bug.- patches.suse/libata-Add-ATA-transport-class.patch: Fixup merge error. - patches.suse/libata-Fix-section-mismatch-ata_sff_exit.patch: [libata] Fix section mismatch: ata_sff_exit (FATE#311826).- patches.fixes/cgroups-fix-race-between-userspace-and-kernelspace.patch: cgroups: fix race between userspace and kernelspace (bnc#700084).- patches.fixes/ksm-fix-null-pointer-dereference-in-scan_get_next_rmap_item.patch ksm: fix NULL pointer dereference in scan_get_next_rmap_item (bnc#697901, CVE-2011-2183)Remove my own patch which missed an i386 case and add the stub which already was in the repo (with a slight change to prefer acpi over amd HW info). - patches.xen/xen3-2009-10-12-0003-x86-Export-k8-physical-topology.patch: Refresh. - patches.xen/xen-initmem_init_4_args.patch: Delete.- patches.fixes/ext4-avoid-uninitialized-memory-references-in-ext4_h.patch: ext4: avoid uninitialized memory references in ext4_htree_next_block() (bnc#692454).- patches.fixes/scsi_dh_rdac-add-new-array-ids: scsi_dh_rdac: Add new array ids (bnc#688912).- patches.arch/x86-enable-smep.patch: Enable SMEP (FATE#311999).- patches.fixes/scsi_dh_rdac-Add-definitions-for-different.patch: [SCSI] scsi_dh_rdac : Add definitions for different RDAC operating modes (bnc#688912). - patches.fixes/scsi_dh_rdac-Detect-the-different-RDAC-oper.patch: [SCSI] scsi_dh_rdac : Detect the different RDAC operating modes (bnc#688912). - patches.fixes/scsi_dh_rdac-decide-whether-to-send-mode-se.patch: [SCSI] scsi_dh_rdac : decide whether to send mode select based on operating mode (bnc#688912).- supported.conf: Mark IDE drivers as unsupported (bnc#700332)- patches.arch/x86-tboot-Add-support-for-S3-memory-integrity-prot.patch: x86, tboot: Add support for S3 memory integrity protection (FATE#311962).- patches.drivers/mmc-sd-01-add-support-for-signal-voltage-switch-procedure.patch: mmc: sd: add support for signal voltage switch procedure (FATE#311119). - patches.drivers/mmc-sd-02-query-function-modes-for-uhs-cards.patch: mmc: sd: query function modes for uhs cards (FATE#311119). - patches.drivers/mmc-sd-03-add-support-for-driver-type-selection.patch: mmc: sd: add support for driver type selection (FATE#311119). - patches.drivers/mmc-sd-05-add-support-for-uhs-bus-speed-mode-selection.patch: mmc: sd: add support for uhs bus speed mode selection (FATE#311119). - patches.drivers/mmc-sd-06-set-current-limit-for-uhs-cards.patch: mmc: sd: set current limit for uhs cards (FATE#311119). - patches.drivers/mmc-sd-07-add-support-for-tuning-during-uhs-initialization.patch: mmc: sd: add support for tuning during uhs initialization (FATE#311119). - patches.drivers/mmc-sd-08-report-correct-speed-and-capacity-of-uhs-card.patch: mmc: sd: report correct speed and capacity of uhs cards (FATE#311119). - patches.drivers/mmc-sdhci-04-reset-sdclk-before-setting-high-speed-enable.patch: mmc: sdhci: reset sdclk before setting high speed enable (FATE#311119). - patches.drivers/mmc-sdhci-09-enable-preset-value-after-uhs-initialization.patch: mmc: sdhci: enable preset value after uhs initialization (FATE#311119). - patches.drivers/mmc-sdhci-10-add-support-for-programmable-clock-mode.patch: mmc: sdhci: add support for programmable clock mode (FATE#311119). - patches.drivers/mmc-sdhci-11-add-support-for-retuning-mode-1.patch: mmc: sdhci: add support for retuning mode 1 (FATE#311119).- supported.conf: Mark btrfs as supported (fate#306585). - rpm/kernel-binary.spec.in: Obsolete the tech preview btrfs-kmp.- Update config files. - Rename CONFIG_K8_NB -> CONFIG_AMD_NB - Rename CONFIG_K8_NUMA -> CONFIG_AMD_NUMA - Adding CONFIG_EDAC_MCE_INJ=m - supported.conf: - add mperf as supported -> got splitted out to get used by powernow-k8 and acpi-cpufreq - add i7core_edac - patches.arch/0001-x86-cpu-Add-AMD-core-boosting-feature-flag-to-proc-c.patch: x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo (fate#309725). - patches.arch/0002-powernow-k8-Add-core-performance-boost-support.patch: powernow-k8: Add core performance boost support (fate#309725). - patches.arch/0003-x86-Unify-APERF-MPERF-support.patch: x86: Unify APERF/MPERF support (fate#309726). - patches.arch/0004-x86-cpufreq-Add-APERF-MPERF-support-for-AMD-processo.patch: x86, cpufreq: Add APERF/MPERF support for AMD processors (fate#309726). - patches.arch/0005-x86-cacheinfo-Unify-AMD-L3-cache-index-disable-check.patch: x86, cacheinfo: Unify AMD L3 cache index disable checking (fate#311580 fate#309727). - patches.arch/0006-x86-cacheinfo-Reorganize-AMD-L3-cache-structure.patch: x86, cacheinfo: Reorganize AMD L3 cache structure (fate#311580 fate#309727). - patches.arch/0007-x86-cacheinfo-Make-L3-cache-info-per-node.patch: x86, cacheinfo: Make L3 cache info per node (fate#311580 fate#309727). - patches.arch/0008-x86-cacheinfo-Disable-index-in-all-four-subcaches.patch: x86, cacheinfo: Disable index in all four subcaches (fate#311580 fate#309727). - patches.arch/0009-x86-cacheinfo-Carve-out-L3-cache-slot-accessors.patch: x86, cacheinfo: Carve out L3 cache slot accessors (fate#311580 fate#309727). - patches.arch/0010-x86-cacheinfo-Fix-dependency-of-AMD-L3-CID.patch: x86, cacheinfo: Fix dependency of AMD L3 CID (fate#311580 fate#309727). - patches.arch/0011-x86-Export-k8-physical-topology.patch: x86: Export k8 physical topology (fate#311968 fate#309727). - patches.arch/0015-MCE-AMD-Limit-MCE-decoding-to-current-families-for.patch: MCE, AMD: Limit MCE decoding to current families for (fate#311968). - patches.arch/0017-x86-k8-gart-Decouple-handling-of-garts-and.patch: x86, k8-gart: Decouple handling of garts and (fate#311968). - patches.arch/0018-x86-k8-Rename-k8.-ch-to-amd_nb.-ch-and.patch: and (fate#311968). - patches.arch/0019-x86-nmi-Support-NMI-watchdog-on-newer-AMD-CPU-famili.patch: x86, nmi: Support NMI watchdog on newer AMD CPU families (fate#309722). - patches.arch/0020-x86-cpu-Update-AMD-CPUID-feature-bits.patch: x86, cpu: Update AMD CPUID feature bits (fate#309722). - patches.arch/0021-x86-amd-Add-support-for-CPUID-topology-extension-of-.patch: x86, amd: Add support for CPUID topology extension of AMD CPUs (fate#309723). - patches.arch/0022-x86-amd-Extract-compute-unit-information-for-AMD-CPU.patch: x86, amd: Extract compute unit information for AMD CPUs (fate#309723). - patches.arch/0023-x86-amd-Use-compute-unit-information-to-determine-th.patch: x86, amd: Use compute unit information to determine thread siblings (fate#309723). - patches.arch/0024-x86-amd_nb-Enable-GART-support-for-AMD-family-0x15-C.patch: x86, amd_nb: Enable GART support for AMD family 0x15 CPUs (fate#309763). - patches.arch/0025-x86-AMD-Extend-support-to-future-families.patch: x86, AMD: Extend support to future families (fate#309722). - patches.arch/0026-x86-mcheck-Avoid-duplicate-sysfs-links-files-for-thr.patch: x86, mcheck: Avoid duplicate sysfs links/files for thresholding banks (fate#309722). - patches.arch/0027-x86-amd-nb-Complete-the-rename-of-AMD-NB-and.patch: x86, amd-nb: Complete the rename of AMD NB and (fate#311968). - patches.arch/0028-x86-amd-nb-Cleanup-AMD-northbridge-caching-code.patch: x86, amd-nb: Cleanup AMD northbridge caching code (fate#311968). - patches.arch/0029-x86-Use-PCI-method-for-enabling-AMD-extended-config-.patch: x86: Use PCI method for enabling AMD extended config space before MSR method (fate#309722). - patches.arch/0120-x86-cacheinfo-Cleanup-L3-cache-index-disable-support.patch: x86, cacheinfo: Cleanup L3 cache index disable support (fate#309727). - patches.arch/0121-x86-amd-Normalize-compute-unit-IDs-on-multi-node-pro.patch: x86, amd: Normalize compute unit IDs on multi-node processors (fate#309723). - patches.arch/0122-x86-amd-Enable-L3-cache-index-disable-on-family-0x15.patch: x86, amd: Enable L3 cache index disable on family 0x15 (fate#309727). - patches.arch/0123-x86-amd-Extend-AMD-northbridge-caching-code-to-suppo.patch: x86, amd: Extend AMD northbridge caching code to support "Link Control" devices (fate#309727). - patches.arch/0124-x86-amd-Support-L3-Cache-Partitioning-on-AMD-family-.patch: x86, amd: Support L3 Cache Partitioning on AMD family 0x15 CPUs (fate#309727). - patches.arch/0125-x86-Adjust-section-placement-in-AMD-northbridge-rela.patch: x86: Adjust section placement in AMD northbridge related code (fate#309727). - patches.arch/0126-x86-amd-Initialize-variable-properly.patch: x86, amd: Initialize variable properly (fate#309723). - patches.arch/0127-x86-amd-nb-Misc-cleanliness-fixes.patch: x86, amd-nb: Misc cleanliness fixes (fate#309727). - patches.arch/0128-x86-AMD-cacheinfo-Fix-L3-cache-index-disable-checks.patch: x86, AMD, cacheinfo: Fix L3 cache index disable checks (fate#309727). - patches.arch/0129-x86-mce-Drop-the-default-decoding-notifier.patch: x86, mce: Drop the default decoding notifier (fate#311581). - patches.arch/x86_amd_fix_missing_i386_pci-direct_include.patch: x86 backport fixup: Add missing include (fate#309722, fate#309723, fate#309780, fate#309781). - patches.drivers/0012-amd64_edac-Remove-polling-mechanism.patch: amd64_edac: Remove polling mechanism (fate#309907). - patches.drivers/0013-amd64_edac-Fix-operator-precendence-error.patch: amd64_edac: Fix operator precendence error (fate#309907). - patches.drivers/0014-amd64_edac-Minor-formatting-fix.patch: amd64_edac: Minor formatting fix (fate#309907). - patches.drivers/0016-amd64_edac-Do-not-report-error-overflow-as-a.patch: amd64_edac: Do not report error overflow as a (fate#309907). - patches.drivers/0030-EDAC-MCE-Add-HW_ERR-prefix.patch: EDAC, MCE: Add HW_ERR prefix (fate#311581). - patches.drivers/0031-EDAC-MCE-Remove-unused-function-parameter.patch: EDAC, MCE: Remove unused function parameter (fate#311581). - patches.drivers/0032-EDAC-MCE-Sanitize-error-codes.patch: EDAC, MCE: Sanitize error codes (fate#311581). - patches.drivers/0033-EDAC-MCE-Pass-complete-MCE-info-to-decoders.patch: EDAC, MCE: Pass complete MCE info to decoders (fate#311581). - patches.drivers/0034-EDAC-MCE-Rework-MCE-injection.patch: EDAC, MCE: Rework MCE injection (fate#311581). - patches.drivers/0035-EDAC-MCE-Rename-files.patch: EDAC, MCE: Rename files (fate#311581). - patches.drivers/0036-EDAC-MCE-Adjust-DC-decoders-to-F14h.patch: EDAC, MCE: Adjust DC decoders to F14h (fate#311581). - patches.drivers/0037-EDAC-MCE-Adjust-IC-decoders-to-F14h.patch: EDAC, MCE: Adjust IC decoders to F14h (fate#311581). - patches.drivers/0038-EDAC-MCE-Warn-about-LS-MCEs-on-F14h.patch: EDAC, MCE: Warn about LS MCEs on F14h (fate#311581). - patches.drivers/0039-EDAC-MCE-Complete-NB-MCE-decoders.patch: EDAC, MCE: Complete NB MCE decoders (fate#311581). - patches.drivers/0040-EDAC-MCE-Fix-FR-MCEs-decoding.patch: EDAC, MCE: Fix FR MCEs decoding (fate#311581). - patches.drivers/0041-EDAC-MCE-Enable-MCE-decoding-on-F14h.patch: EDAC, MCE: Enable MCE decoding on F14h (fate#311581). - patches.drivers/0042-EDAC-MCE-Add-support-for-F11h-MCEs.patch: EDAC, MCE: Add support for F11h MCEs (fate#311581). - patches.drivers/0043-EDAC-MCE-Add-F12h-DC-MCE-decoder.patch: EDAC, MCE: Add F12h DC MCE decoder (fate#311581). - patches.drivers/0044-EDAC-MCE-Add-F12h-IC-MCE-decoder.patch: EDAC, MCE: Add F12h IC MCE decoder (fate#311581). - patches.drivers/0045-EDAC-MCE-Add-F12h-NB-MCE-decoder.patch: EDAC, MCE: Add F12h NB MCE decoder (fate#311581). - patches.drivers/0046-EDAC-MCE-Enable-MCE-decoding-on-F12h.patch: EDAC, MCE: Enable MCE decoding on F12h (fate#311581). - patches.drivers/0047-EDAC-MCE-Add-a-BIT_64-macro.patch: EDAC, MCE: Add a BIT_64() macro (fate#311581). - patches.drivers/0048-EDAC-MCE-Fix-shift-warning-on-32-bit.patch: EDAC, MCE: Fix shift warning on 32-bit (fate#311581). - patches.drivers/0049-EDAC-MCE-Fix-edac_init_mce_inject-error-handling.patch: EDAC, MCE: Fix edac_init_mce_inject error handling (fate#311581). - patches.drivers/0050-amd64_edac-Remove-F11h-support.patch: amd64_edac: Remove F11h support (fate#309907). - patches.drivers/0051-amd64_edac-Use-cached-extended-CPU-model.patch: amd64_edac: Use cached extended CPU model (fate#309907). - patches.drivers/0052-amd64_edac-Add-per-family-init-function.patch: amd64_edac: Add per-family init function (fate#309907). - patches.drivers/0053-amd64_edac-Simplify-CPU-family-detection.patch: amd64_edac: Simplify CPU family detection (fate#309907). - patches.drivers/0054-amd64_edac-Cleanup-the-CPU-PCI-device-reservation.patch: amd64_edac: Cleanup the CPU PCI device reservation (fate#309907). - patches.drivers/0055-amd64_edac-Concentrate-per-family-init-even-more.patch: amd64_edac: Concentrate per-family init even more (fate#309907). - patches.drivers/0056-amd64_edac-Rename-CPU-PCI-devices.patch: amd64_edac: Rename CPU PCI devices (fate#309907). - patches.drivers/0057-amd64_edac-Rework-printk-macros.patch: amd64_edac: Rework printk macros (fate#309907). - patches.drivers/0058-amd64_edac-Allocate-driver-instances-dynamically.patch: amd64_edac: Allocate driver instances dynamically (fate#309907). - patches.drivers/0059-amd64_edac-Remove-PCI-ECS-enabling-functions.patch: amd64_edac: Remove PCI ECS enabling functions (fate#309907). - patches.drivers/0060-amd64_edac-Carve-out-ECC-related-hw-settings.patch: amd64_edac: Carve out ECC-related hw settings (fate#309907). - patches.drivers/0061-amd64_edac-Check-ECC-capabilities-initially.patch: amd64_edac: Check ECC capabilities initially (fate#309907). - patches.drivers/0062-amd64_edac-Remove-two-stage-initialization.patch: amd64_edac: Remove two-stage initialization (fate#309907). - patches.drivers/0063-amd64_edac-Disable-DRAM-ECC-injection-on-K8.patch: amd64_edac: Disable DRAM ECC injection on K8 (fate#309907). - patches.drivers/0064-EDAC-MCE-Select-extended-error-code-mask.patch: EDAC, MCE: Select extended error code mask (fate#311581). - patches.drivers/0065-EDAC-MCE-Add-F15h-DC-MCE-decoder.patch: EDAC, MCE: Add F15h DC MCE decoder (fate#311581). - patches.drivers/0066-EDAC-MCE-Add-F15h-IC-MCE-decoder.patch: EDAC, MCE: Add F15h IC MCE decoder (fate#311581). - patches.drivers/0067-EDAC-MCE-Add-F15h-CU-MCE-decoder.patch: EDAC, MCE: Add F15h CU MCE decoder (fate#311581). - patches.drivers/0068-EDAC-MCE-No-F15h-LS-MCE-decoder.patch: EDAC, MCE: No F15h LS MCE decoder (fate#311581). - patches.drivers/0069-EDAC-MCE-Add-an-F15h-NB-MCE-decoder.patch: EDAC, MCE: Add an F15h NB MCE decoder (fate#311581). - patches.drivers/0070-EDAC-MCE-Add-F15-EX-MCE-decoder.patch: EDAC, MCE: Add F15 EX MCE decoder (fate#311581). - patches.drivers/0071-EDAC-MCE-Add-F15h-FP-MCE-decoder.patch: EDAC, MCE: Add F15h FP MCE decoder (fate#311581). - patches.drivers/0072-EDAC-MCE-Overhaul-error-fields-extraction-macros.patch: EDAC, MCE: Overhaul error fields extraction macros (fate#311581). - patches.drivers/0073-EDAC-MCE-Shorten-error-report-formatting.patch: EDAC, MCE: Shorten error report formatting (fate#311581). - patches.drivers/0074-EDAC-MCE-Allow-F15h-bank-6-MCE-injection.patch: EDAC, MCE: Allow F15h bank 6 MCE injection (fate#311581). - patches.drivers/0075-EDAC-MCE-Enable-MCE-decoding-on-F15h.patch: EDAC, MCE: Enable MCE decoding on F15h (fate#311581). - patches.drivers/0076-EDAC-MCE-Use-BIT_64-to-eliminate-warnings-on.patch: EDAC, MCE: Use BIT_64() to eliminate warnings on (fate#311581). - patches.drivers/0077-EDAC-MCE-Fix-NB-error-formatting.patch: EDAC, MCE: Fix NB error formatting (fate#311581). - patches.drivers/0078-amd64_edac-Fix-DIMMs-per-DCTs-output.patch: amd64_edac: Fix DIMMs per DCTs output (fate#309907). - patches.drivers/0079-amd64_edac-Add-support-for-F15h-DCT-PCI-config.patch: amd64_edac: Add support for F15h DCT PCI config (fate#309907). - patches.drivers/0080-amd64_edac-Remove-DRAM-base-limit-subfields-caching.patch: amd64_edac: Remove DRAM base/limit subfields caching (fate#309907). - patches.drivers/0081-amd64_edac-Cleanup-DHAR-handling.patch: amd64_edac: Cleanup DHAR handling (fate#309907). - patches.drivers/0082-amd64_edac-Cleanup-chipselect-handling.patch: amd64_edac: Cleanup chipselect handling (fate#309907). - patches.drivers/0083-amd64_edac-Sanitize-channel-extraction.patch: amd64_edac: Sanitize channel extraction (fate#309907). - patches.drivers/0084-amd64_edac-Sanitize-f10_get_base_addr_offset.patch: amd64_edac: Sanitize f10_get_base_addr_offset (fate#309907). - patches.drivers/0085-amd64_edac-Replace-huge-bitmasks-with-a-macro.patch: amd64_edac: Replace huge bitmasks with a macro (fate#309907). - patches.drivers/0086-amd64_edac-Cleanup-DBAM-handling.patch: amd64_edac: Cleanup DBAM handling (fate#309907). - patches.drivers/0087-amd64_edac-Cleanup-Dram-Configuration-registers.patch: amd64_edac: Cleanup Dram Configuration registers (fate#309907). - patches.drivers/0088-amd64_edac-Cleanup-DCT-Select-Low-High-code.patch: amd64_edac: Cleanup DCT Select Low/High code (fate#309907). - patches.drivers/0089-amd64_edac-Cleanup-NBCTL-code.patch: amd64_edac: Cleanup NBCTL code (fate#309907). - patches.drivers/0090-amd64_edac-Cleanup-NBCFG-handling.patch: amd64_edac: Cleanup NBCFG handling (fate#309907). - patches.drivers/0091-amd64_edac-Cleanup-NBSH-cruft.patch: amd64_edac: Cleanup NBSH cruft (fate#309907). - patches.drivers/0092-amd64_edac-Cleanup-old-defines-cruft.patch: amd64_edac: Cleanup old defines cruft (fate#309907). - patches.drivers/0093-amd64_edac-Adjust-channel-counting-to-F15h.patch: amd64_edac: Adjust channel counting to F15h (fate#309907). - patches.drivers/0094-amd64_edac-Simplify-decoding-path.patch: amd64_edac: Simplify decoding path (fate#309907). - patches.drivers/0095-amd64_edac-Unify-get_error_address.patch: amd64_edac: Unify get_error_address (fate#309907). - patches.drivers/0096-amd64_edac-Add-support-for-interleaved-region.patch: amd64_edac: Add support for interleaved region (fate#309907). - patches.drivers/0097-amd64_edac-Correct-node-interleaving-removal.patch: amd64_edac: Correct node interleaving removal (fate#309907). - patches.drivers/0098-amd64_edac-Fix-channel-interleave-removal.patch: amd64_edac: Fix channel interleave removal (fate#309907). - patches.drivers/0099-amd64_edac-Revamp-online-spare-handling.patch: amd64_edac: Revamp online spare handling (fate#309907). - patches.drivers/0100-amd64_edac-Beef-up-early-exit-reporting.patch: amd64_edac: Beef up early exit reporting (fate#309907). - patches.drivers/0101-amd64_edac-Adjust-sys_addr-to-chip-select.patch: amd64_edac: Adjust sys_addr to chip select (fate#309907). - patches.drivers/0102-amd64_edac-Sanitize-read_dram_ctl_register.patch: amd64_edac: Sanitize ->read_dram_ctl_register (fate#309907). - patches.drivers/0103-amd64_edac-Improve-DRAM-address-mapping.patch: amd64_edac: Improve DRAM address mapping (fate#309907). - patches.drivers/0104-amd64_edac-Simplify-scrubrate-setting.patch: amd64_edac: Simplify scrubrate setting (fate#309907). - patches.drivers/0105-amd64_edac-Adjust-ECC-symbol-size-to-F15h.patch: amd64_edac: Adjust ECC symbol size to F15h (fate#309907). - patches.drivers/0106-amd64_edac-Enable-driver-on-F15h.patch: amd64_edac: Enable driver on F15h (fate#309907). - patches.drivers/0107-amd64_edac-Drop-redundant-declarations.patch: amd64_edac: Drop redundant declarations (fate#309907). - patches.drivers/0108-amd64_edac-Fix-node-id-signedness.patch: amd64_edac: Fix node id signedness (fate#309907). - patches.drivers/0109-amd64_edac-Fix-DRAM-base-macros.patch: amd64_edac: Fix DRAM base macros (fate#309907). - patches.drivers/0110-amd64_edac-Fix-PCI-config-addressing-types.patch: amd64_edac: Fix PCI config addressing types (fate#309907). - patches.drivers/0111-amd64_edac-Drop-local-variable.patch: amd64_edac: Drop local variable (fate#309907). - patches.drivers/0112-amd64_edac-Fix-ranges-signedness.patch: amd64_edac: Fix ranges signedness (fate#309907). - patches.drivers/0113-amd64_edac-Fix-DCT-argument-type.patch: amd64_edac: Fix DCT argument type (fate#309907). - patches.drivers/0114-amd64_edac-Fix-decode_syndrome-types.patch: amd64_edac: Fix decode_syndrome types (fate#309907). - patches.drivers/0115-amd64_edac-Fix-potential-memleak.patch: amd64_edac: Fix potential memleak (fate#309907). - patches.drivers/0116-EDAC-Remove-debugging-output-in-scrub-rate-handling.patch: EDAC: Remove debugging output in scrub rate handling (fate#311581). - patches.drivers/0117-amd64_edac-Remove-node-interleave-warning.patch: amd64_edac: Remove node interleave warning (fate#309907). - patches.drivers/0118-amd64_edac-Factor-in-CC6-save-area.patch: amd64_edac: Factor in CC6 save area (fate#309907). - patches.drivers/0119-amd64_edac-Erratum-637-workaround.patch: amd64_edac: Erratum #637 workaround (fate#309907). - patches.xen/xen-compute_unit.patch: x86 backport fixup: compute_unit_id does not exist in Xen (fate#309722, fate#309723, fate#309780, fate#309781). - patches.xen/xen-initmem_init_4_args.patch: xen amd numa: Adjust initmem_init to take 4 params (fate#311968 fate#309727). - patches.xen/xen-unpriv-build: Refresh. - patches.xen/xen-unxlate_dev_mem_ptr_adjusting.patch: xen ioremap: Adjust unxlate_dev_mem_ptr (FATE#310031). - patches.xen/xen3-auto-arch-x86.diff: Refresh. - patches.xen/xen3-auto-xen-kconfig.diff: Refresh. - patches.xen/xen3-patch-2.6.27: Refresh. - patches.xen/xen3-patch-2.6.31: Refresh. - patches.xen/xen3-patch-2.6.32: Refresh. - patches.xen/xen3-patch-2.6.32.11-12: Refresh. - patches.xen/xen-amd-ecs: Delete.- patches.drivers/hwmon-coretemp-add-pkgtemp-support.patch: Add package level thermal control in coretemp (FATE#311941, bnc#698797).- patches.suse/btrfs-fix-FS_IOC_GETFLAGS-ioctl.patch: Btrfs: fix FS_IOC_GETFLAGS ioctl (FATE#306586). - patches.suse/btrfs-fix-FS_IOC_SETFLAGS-ioctl.patch: Btrfs: fix FS_IOC_SETFLAGS ioctl (FATE#306586). - patches.suse/btrfs-fix-easily-get-into-enospc-in-mixed-case.patch: Btrfs: fix easily get into ENOSPC in mixed case (FATE#306586). - patches.suse/btrfs-prevent-oopsing-in-posix_acl_valid.patch: Prevent oopsing in posix_acl_valid() (FATE#306586). - patches.suse/fs-remove-FS_COW_FL.patch: fs: remove FS_COW_FL (FATE#306586).- patches.suse/kvm-x86-Eliminate-TS_XSAVE.patch: Refresh. - patches.xen/xen-fpu.patch: x86: fpu and xsave changes (FATE#311768).- patches.drivers/virtio-Add-ability-to-detach-unused-buffers-from-vr.patch: virtio: Add ability to detach unused buffers from vrings (FATE#311632). - patches.drivers/virtio_net-Defer-skb-allocation-in-receive-path-Dat.patch: virtio_net: Defer skb allocation in receive path (FATE#311632).- patches.suse/kvm-KVM-VMX-Inform-user-about-INTEL_TXT-dependency.patch: KVM: VMX: Inform user about INTEL_TXT dependency (FATE#311961).- patches.suse/kvm-KVM-Activate-fpu-on-clts.patch: KVM: Activate fpu on clts (FATE#311768). - patches.suse/kvm-KVM-Fix-xsave-and-xcr-save-restore-memory-leak.patch: KVM: Fix xsave and xcr save/restore memory leak (FATE#311768). - patches.suse/kvm-KVM-Lazify-fpu-activation-and-deactivation.patch: KVM: Lazify fpu activation and deactivation (FATE#311768). - patches.suse/kvm-KVM-VMX-Enable-XSAVE-XRSTOR-for-guest.patch: KVM: VMX: Enable XSAVE/XRSTOR for guest (FATE#311768). - patches.suse/kvm-KVM-VMX-Move-some-cr-04-related-constants-to-vmx.patch: KVM: VMX: Move some cr[04] related constants to vmx.c (FATE#311768). - patches.suse/kvm-KVM-x86-Enable-AVX-for-guest.patch: KVM: x86: Enable AVX for guest (FATE#311768). - patches.suse/kvm-KVM-x86-Use-FPU-API.patch: KVM: x86: Use FPU API (FATE#311768). - patches.suse/kvm-KVM-x86-Use-unlazy_fpu-for-host-FPU.patch: KVM: x86: Use unlazy_fpu() for host FPU (FATE#311768). - patches.suse/kvm-KVM-x86-XSAVE-XRSTOR-live-migration-support.patch: KVM: x86: XSAVE/XRSTOR live migration support (FATE#311768). - patches.suse/kvm-x86-Eliminate-TS_XSAVE.patch: x86: Eliminate TS_XSAVE (FATE#311768). - patches.suse/kvm-x86-Export-FPU-API-for-KVM-use.patch: x86: Export FPU API for KVM use (FATE#311768). - patches.suse/kvm-x86-Introduce-struct-fpu-and-related-API.patch: x86: Introduce 'struct fpu' and related API (FATE#311768). - patches.suse/kvm-x86-fpu-Unbreak-FPU-emulation.patch: x86, fpu: Unbreak FPU emulation (FATE#311768).- bnc#692460, move misplaced return in /0 diag hack. - patches.fixes/sched-divide-by-zero-workaround-and-diag.diff: Refresh.- patches.suse/ip_local_reserved_ports.patch: net: reserve ports for applications using fixed port numbers (fate#310019). - patches.suse/procps_bitmap_support.patch: sysctl: add proc_do_large_bitmap (fate#310019).- patches.arch/printk-Allocate-kernel-log-buffer-earlier.patch: printk: Allocate kernel log buffer earlier v1 (bnc#700445).- patches.suse/add-rtnetlink-init_rcvwnd.patch: Add rtnetlink init_rcvwnd to set the TCP initial receive window (fate#310871). - patches.suse/tcp-bug-fix-in-initialization-of-receive-window.patch: tcp: Bug fix in initialization of receive window (fate#310871). - patches.suse/tcp-increase-default-initial-receive-window.patch: TCP: increase default initial receive window (fate#310871).- rpm/post.sh: Touch /boot/do_purge_kernels on package install (fate#312018). - rpm/postun.sh: Remove it again if it still exists on package uninstall.- patches.suse/valid_phys_addr_range-use-phys_addr_t.patch: valid_phys_addr_range: use phys_addr_t for the @addr parameter (FATE#310031).- patches.arch/x86-ioremap-fix-pae.patch: x86, ioremap: Fix incorrect physical address handling in PAE mode (FATE#310031). - patches.fixes/dev_mem-read-write-beyond-EOF.patch: Return EOF on out-of-bounds read from /dev/mem (FATE#310031). - patches.suse/dev_mem-read-write-phys_addr_t.patch: Allow reading/writing all memory through /dev/mem (FATE#310031). - patches.suse/xlate_dev_mem_ptr-use-phys_addr_t.patch: (un)xlate_dev_mem_ptr: use phys_addr_t for the @phys parameter (FATE#310031).- Pick up missed mountpoint patch - patches.suse/cgroupfs-create-sys-fs-cgroup-to-mount-cgroupfs-on: cgroupfs: create /sys/fs/cgroup to mount cgroupfs on.- patches.suse/shmem-put_super-must-percpu_counter_destroy.patch: shmem: put_super must percpu_counter_destroy (FATE#311806). - patches.suse/tmpfs-add-accurate-compare-function-to-percpu_counte.patch: tmpfs: add accurate compare function to percpu_counter library (FATE#311806). - patches.suse/tmpfs-make-tmpfs-scalable-with-percpu_counter-for-us.patch: tmpfs: make tmpfs scalable with percpu_counter for used blocks (FATE#311806).- patches.xfs/xfs-dmapi-send_correct_flags_for_preunmount_event.patch: xfs: Do not always ignore preunmount events (bnc#691538).blk-cgroup & CFQ fixes since 2.6.36: - patches.suse/blk-cgroup-Initialize-ioc-cgroup_changed-at-ioc-crea.patch: blk-cgroup: Initialize ioc->cgroup_changed at ioc creation time (fate#312039). - patches.suse/blk-cgroup-Kill-the-header-printed-at-the-start-of-b.patch: blk-cgroup: Kill the header printed at the start of blkio.weight_device file (fate#312039). - patches.suse/blk-cgroup-Lower-minimum-weight-from-100-to-10.patch: blk-cgroup: Lower minimum weight from 100 to 10 (fate#312039). - patches.suse/blk-throttle-Use-task_subsys_state-to-determine-a-ta.patch: blk-cgroup: Use task_subsys_state() to determine a task's blkio_cgroup (fate#312039). - patches.suse/block-cfq-compensate-preempted-queue-even-if-it-has-.patch: block cfq: compensate preempted queue even if it has no slice assigned (fate#312039). - patches.suse/block-cfq-make-queue-preempt-work-for-queues-from-di.patch: block cfq: make queue preempt work for queues from different workload (fate#312039). - patches.suse/block-cfq-select-new-workload-if-priority-changed.patch: block cfq: select new workload if priority changed (fate#312039). - patches.suse/cfq-Avoid-calling-blkiocg_lookup_group-for-root-grou.patch: cfq: Avoid calling blkiocg_lookup_group() for root group (fate#312039). - patches.suse/cfq-iosched-Don-t-update-group-weights-when-on-servi.patch: cfq-iosched: Don't update group weights when on service tree (fate#312039). - patches.suse/cfq-iosched-Don-t-wait-if-queue-already-has-requests.patch: cfq-iosched: Don't wait if queue already has requests (fate#312039). - patches.suse/cfq-iosched-Fix-a-possible-race-with-cfq-cgroup-remo.patch: cfq-iosched: Fix a possible race with cfq cgroup removal code (fate#312039). - patches.suse/cfq-iosched-algebraic-simplification-in-cfq_prio_to_.patch: cfq-iosched: algebraic simplification in cfq_prio_to_maxrq() (fate#312039). - patches.suse/cfq-iosched-don-t-schedule-a-dispatch-for-a-non-idle.patch: cfq-iosched: don't schedule a dispatch for a non-idle queue (fate#312039). - patches.suse/cfq-iosched-free-cic_index-if-cfqd-allocation-fails.patch: cfq-iosched: free cic_index if cfqd allocation fails (fate#312039). - patches.suse/cfq-iosched-give-busy-sync-queue-no-dispatch-limit.patch: cfq-iosched: give busy sync queue no dispatch limit (fate#312039). - patches.suse/cfq-iosched-read_lock-does-not-always-imply-rcu_read.patch: cfq-iosched: read_lock() does not always imply rcu_read_lock() (fate#312039). - patches.suse/cfq-iosched-schedule-dispatch-for-noidle-queue.patch: cfq-iosched: schedule dispatch for noidle queue (fate#312039). - patches.suse/cfq-iosched-free-cic_index-if-cfqd-allocation-fails.patch: cfq-iosched: free cic_index if cfqd allocation fails (fate#312039).- patches.suse/list-prefetch-optimization.diff: Do list prefetching and list prefetching of potential NULL ptrs depending on CPU.- patches.apparmor/apparmor-fix-null-deref-in-apparmor_bprm_set_creds: apparmor: Fix NULL deref in apparmor_bprm_set_creds (bnc#692459).- patches.arch/x86-UV-BAU-fix-for-non-consecutive-nasids.patch: x86, UV: BAU fix for non-consecutive nasids (bnc#700401, fate#311784). - patches.arch/x86-UV-correct-UV2-BAU-destination-timeout.patch: x86, UV: correct UV2 BAU destination timeout (bnc#699842, fate#311784). - patches.arch/x86-UV-correct-reset_with_ipi.patch: x86, UV: correct reset_with_ipi() (bnc#700401, fate#311784). - patches.arch/x86-UV-inline-header-file-functions.patch: x86, UV: inline header file functions (bnc#700401, fate#311784). - patches.arch/x86-UV-remove-cpumask_t-from-the-stack.patch: x86, UV: remove cpumask_t from the stack (bnc#700401, fate#311784). - patches.arch/x86-UV-rename-hubmask-to-pnmask.patch: x86, UV: rename hubmask to pnmask (bnc#700401, fate#311784). - patches.arch/x86-UV-smp_processor_id-in-a-preemptable-region.patch: x86, UV: smp_processor_id in a preemptable region (bnc#700401, fate#311784). - patches.arch/x86-UV-uv_tlb_c-cleanup.patch: x86, UV: uv_tlb.c cleanup (bnc#700401, fate#311784).- patches.drivers/0001-qlge-Eliminate-firmware-dependency-for-MPI-coredump.patch: qlge: Eliminate firmware dependency for MPI coredump. - patches.drivers/0002-qlge-Changing-cpu_to_be16-to-htons-for-udp-checksum.patch: qlge: Changing cpu_to_be16 to htons for udp checksum. - patches.drivers/0003-qlge-Restoring-the-promiscuous-setting-in-ql_adapter.patch: qlge: Restoring the promiscuous setting in ql_adapter_up. - patches.drivers/0004-qlge-Remove-all-error-packet-flags-and-enable-tcp-ud.patch: qlge: Remove all error packet flags and enable tcp/udp and ip csum error. - patches.drivers/0005-qlge-New-release-P24-on-Aug-18-2010-with-below-chang.patch: qlge: New release P24 on Aug 18 2010 with below. - patches.drivers/0006-qlge-fix-a-eeh-handler-to-not-add-a-pending-timer.patch: qlge: fix a eeh handler to not add a pending timer. - patches.drivers/0007-qlge-New-release-P25-on-Aug-17-2010-with-below-chang.patch: - patches.drivers/0008-qlge-Restoring-the-vlan-setting-during-ql_adapter_up.patch: qlge: Restoring the vlan setting during ql_adapter_up. - patches.drivers/0009-qlge-reset-the-chip-before-freeing-the-buffers.patch: qlge: reset the chip before freeing the buffers. - patches.drivers/0010-qlge-Fix-a-deadlock-when-the-interface-is-going-down.patch: qlge: Fix a deadlock when the interface is going down. - patches.drivers/0011-qlge-pull-NULL-check-ahead-of-dereference.patch: qlge: pull NULL check ahead of dereference. - patches.drivers/0012-qlge-Generate-the-coredump-to-ethtool-user-buffer.patch: qlge:Generate the coredump to ethtool user buffer. - patches.drivers/0013-qlge-New-release-P27-on-Oct-15-2010-with-below-chang.patch: qlge: New release P27 on Oct 15 2010 with below. - patches.drivers/0014-qlge-Fix-deadlock-when-cancelling-worker.patch: qlge: Fix deadlock when cancelling worker.- patches.suse/Consolidate-min-not-zero.patch: Fix malformed patch.- patches.drivers/001-acpi_pad_mainline_fixes.patch: acpi_pad: squish warning (fate#311793). - patches.drivers/002-acpi_pad_mainline_fixes.patch: acpi_pad: fix error checks (fate#311793). - patches.drivers/003-acpi_pad_mainline_fixes.patch: acpi_pad: "processor_aggregator" name too long (fate#311793). - patches.drivers/004-acpi_pad_mainline_fixes.patch: acpi_pad: uses MONITOR/MWAIT, so it doesn't need to clear TS_POLLING (fate#311793). - patches.drivers/005-acpi_pad_mainline_fixes.patch: ACPI: Don't let acpi_pad needlessly mark TSC unstable (fate#311793). - patches.drivers/006-acpi_pad_mainline_fixes.patch: ACPI: acpi_pad: Don't needlessly mark LAPIC unstable (fate#311793). - patches.drivers/007-acpi_pad_mainline_fixes.patch: ACPI: make acpi_pad /sys output more readable (fate#311793).- patches.drivers/0001-netxen-fix-endianness-read-mac-address.patch: netxen: fix endianness read mac address (bnc#698269, FATE#311464). - patches.drivers/0002-netxen-fix-endianness-intr-coalesce.patch: netxen: fix endianness intr coalesce (bnc#698269, FATE#311464). - patches.drivers/0003-netxen-fix-license-header.patch: netxen: fix license header (bnc#698269, FATE#311464). - patches.drivers/0004-netxen-fix-sparse-warning.patch: netxen: fix sparse warning (bnc#698269, FATE#311464). - patches.drivers/0005-netxen-fix-tx-timeout-recovery-for-NX2031-chip.patch: netxen: fix tx timeout recovery for NX2031 chip (bnc#698269, FATE#311464). - patches.drivers/0006-netxen-protect-resource-cleanup-by-rtnl-lock.patch: netxen: protect resource cleanup by rtnl lock (bnc#698269, FATE#311464). - patches.drivers/0007-net-use-netdev_mc_count-and-netdev_mc_empty-when-app.patch: net: use netdev_mc_count and netdev_mc_empty when appropriate (bnc#698269, FATE#311464). - patches.drivers/0008-net-convert-multiple-drivers-to-use-netdev_for_each_.patch: net: convert multiple drivers to use netdev_for_each_mc_addr, part5 V2 (bnc#698269, FATE#311464). - patches.drivers/0009-netxen-The-driver-doesn-t-work-on-NX_P3_B1-so-cause-.patch: netxen: The driver doesn't work on NX_P3_B1 so cause probe to fail (bnc#698269, FATE#311464). - patches.drivers/0010-netxen-fix-bios-version-calculation.patch: netxen: fix bios version calculation (bnc#698269, FATE#311464). - patches.drivers/0011-netxen-fix-warning-in-ioaddr-for-NX3031-chip.patch: netxen: fix warning in ioaddr for NX3031 chip (bnc#698269, FATE#311464). - patches.drivers/0012-netxen-added-sanity-check-for-pci-map.patch: netxen: added sanity check for pci map (bnc#698269, FATE#311464). - patches.drivers/0013-netxen-fix-tx-csum-status.patch: netxen: fix tx csum status (bnc#698269, FATE#311464). - patches.drivers/0014-netxen-update-version-to-4.0.73.patch: netxen: update version to 4.0.73 (bnc#698269, FATE#311464). - patches.drivers/0015-netxen-fix-corner-cases-of-firmware-recovery.patch: netxen: fix corner cases of firmware recovery (bnc#698269, FATE#311464). - patches.drivers/0016-netxen-validate-unified-romimage.patch: netxen: validate unified romimage (bnc#698269, FATE#311464). - patches.drivers/0017-netxen-fix-fw-load-from-file.patch: netxen: fix fw load from file (bnc#698269, FATE#311464). - patches.drivers/0018-netxen-fix-interrupt-for-NX2031.patch: netxen: fix interrupt for NX2031 (bnc#698269, FATE#311464). - patches.drivers/0019-netxen-fix-register-usage.patch: netxen: fix register usage (bnc#698269, FATE#311464). - patches.drivers/0020-netxen-remove-unnecessary-size-checks.patch: netxen: remove unnecessary size checks (bnc#698269, FATE#311464). - patches.drivers/0021-netxen-to-fix-onchip-memory-access.patch: netxen: to fix onchip memory access (bnc#698269, FATE#311464). - patches.drivers/0022-netxen-handle-queue-manager-access.patch: netxen: handle queue manager access (bnc#698269, FATE#311464). - patches.drivers/0023-drivers-net-Remove-unnecessary-returns-from-void-fun.patch: drivers/net: Remove unnecessary returns from void function()s (bnc#698269, FATE#311464). - patches.drivers/0024-netxen-fix-memory-leaks-in-error-path.patch: netxen: fix memory leaks in error path (bnc#698269, FATE#311464). - patches.drivers/0025-netxen-fix-rcv-buffer-leak.patch: netxen: fix rcv buffer leak (bnc#698269, FATE#311464). - patches.drivers/0026-netxen-fix-caching-window-register.patch: netxen: fix caching window register (bnc#698269, FATE#311464). - patches.drivers/0027-netxen-fail-when-try-to-setup-unsupported-features.patch: netxen: fail when try to setup unsupported features (bnc#698269, FATE#311464). - patches.drivers/0028-netdev-Make-ethtool_ops-set_flags-return-EINVAL-for-.patch: netdev: Make ethtool_ops::set_flags() return -EINVAL for unsupported flags (bnc#698269, FATE#311464). - patches.drivers/0029-netxen-fix-for-kdump.patch: netxen: fix for kdump (bnc#698269, FATE#311464). - patches.drivers/0030-netxen-protect-tx-timeout-recovery-by-rtnl-lock.patch: netxen: protect tx timeout recovery by rtnl lock (bnc#698269, FATE#311464). - patches.drivers/0031-netxen-fix-inconsistent-lock-state.patch: netxen: fix inconsistent lock state (bnc#698269, FATE#311464). - patches.drivers/0032-netxen-update-version-4.0.74.patch: netxen: update version 4.0.74 (bnc#698269, FATE#311464). - patches.drivers/0033-netxen-fix-a-race-in-netxen_nic_get_stats.patch: netxen: fix a race in netxen_nic_get_stats() (bnc#698269, FATE#311464). - patches.drivers/0034-netxen-fix-poll-implementation.patch: netxen: fix poll implementation (bnc#698269, FATE#311464). - patches.drivers/0036-drivers-net-return-operator-cleanup.patch: drivers/net: return operator cleanup (bnc#698269, FATE#311464). - patches.drivers/0037-netxen-fix-race-in-tx-stop-queue.patch: netxen: fix race in tx stop queue (bnc#698269, FATE#311464). - patches.drivers/0038-netxen-mask-correctable-error.patch: netxen: mask correctable error (bnc#698269, FATE#311464). - patches.drivers/0039-netxen-make-local-function-static.patch: netxen: make local function static (bnc#698269, FATE#311464). - patches.drivers/0040-netxen-fix-kdump.patch: netxen: fix kdump (bnc#698269, FATE#311464). - patches.drivers/0041-netxen_nic-Fix-the-tx-queue-manipulation-bug-in-netx.patch: netxen_nic: Fix the tx queue manipulation bug in netxen_nic_probe (bnc#698269, FATE#311464). - patches.drivers/0042-netxen-remove-unused-firmware-exports.patch: netxen: remove unused firmware exports (bnc#698269, FATE#311464). - patches.drivers/0043-netxen-avoid-using-reset_devices-as-it-may-become-ob.patch: netxen: avoid using reset_devices as it may become obsolete (bnc#698269, FATE#311464). - patches.drivers/0044-drivers-net-Use-static-const.patch: drivers/net/*/: Use static const (bnc#698269, FATE#311464). - patches.drivers/0045-netxen-update-module-description.patch: netxen: update module description (bnc#698269, FATE#311464). - patches.drivers/0046-netxen-enable-LRO-based-on-NETIF_F_LRO.patch: netxen: enable LRO based on NETIF_F_LRO (bnc#698269, FATE#311464). - patches.drivers/0047-netxen-update-driver-version-4.0.75.patch: netxen: update driver version 4.0.75 (bnc#698269, FATE#311464). - patches.drivers/0048-netxen-Notify-firmware-of-Flex-10-interface-down.patch: netxen: Notify firmware of Flex-10 interface down (bnc#698269, FATE#311464). - patches.drivers/0049-netxen-support-for-GbE-port-settings.patch: netxen: support for GbE port settings (bnc#698269, FATE#311464). - patches.drivers/0050-net-fix-ethtool-set_flags-not-intended-EINVAL-return.patch: net: fix ethtool->set_flags not intended -EINVAL return value (bnc#698269, FATE#311464). - patches.drivers/0051-drivers-net-Remove-IRQF_SAMPLE_RANDOM-flag-from-netw.patch: drivers/net: Remove IRQF_SAMPLE_RANDOM flag from network drivers (bnc#698269, FATE#311464). - patches.drivers/0052-netxen-limit-skb-frags-for-non-tso-packet.patch: netxen: limit skb frags for non tso packet (bnc#698269, FATE#311464). - patches.drivers/0053-netxen-Add-support-for-VLAN-RX-HW-acceleration.patch: netxen: Add support for VLAN RX HW acceleration (bnc#698269, FATE#311464). - patches.drivers/0054-ethtool-Use-full-32-bit-speed-range-in-ethtool-s-set.patch: ethtool: Use full 32 bit speed range in ethtool's set_settings (bnc#698269, FATE#311464). - patches.drivers/0055-ethtool-cosmetic-Use-ethtool-ethtool_cmd_speed-API.patch: ethtool: cosmetic: Use ethtool ethtool_cmd_speed API (bnc#698269, FATE#311464). - patches.drivers/0056-netxen-suppress-false-lro-warning-messages.patch: netxen: suppress false lro warning messages (bnc#698269, FATE#311464). - patches.drivers/revert-netxen-remove-references-to-unified-firmware-file: REVERT: netxen: Remove references to unified firmware file. - patches.drivers/netxen-fix-for-kdump.patch: Delete. - patches.drivers/netxen-fix-register-usage.patch: Delete.- Update config file s390/vanilla: switches from bnc#700080 not needed. - patches.arch/s390-s11sp2-aslr.patch: kernel: add support for address space layout randomization (bnc#700080).- patches.arch/x86-UV-Add-support-for-SGI-UV2-hub-chip.patch: x86, UV: Add support for SGI UV2 hub chip (bnc#699842, fate#311784). - patches.arch/x86-UV-Enable-64-bit-ACPI-MFCG-support-for-SGI-UV2-platform-x86_uv.patch: x86, UV: Enable 64-bit ACPI MFCG support for SGI UV2 platform x86/uv (bnc#699842, fate#311784). - patches.arch/x86-UV-Update-node-controller-MMRs.patch: x86, UV: Update node controller MMRs (bnc#699842, fate#311784).- patches.arch/s390-fate311851-breaking-event-addres.patch: Refresh. - patches.arch/x86-ptrace-xstate-support.patch: x86, ptrace: regset extensions to support xstate (bnc#698803 fate#311964).- patches.arch/x86-ptrace-xstate-support.patch: x86, ptrace: regset extensions to support xstate (bnc#698803 fate#311964).- patches.suse/ext4-rw-unsupported.patch: Fix typo in config option- Update config files. - patches.arch/001-cpuidle__fail_to_register_if_CONFIG_CPU_IDLE.patch: cpuidle: fail to register if !CONFIG_CPU_IDLE (fate#311818,fate#311942). - patches.arch/002-cpuidle__add_cpuidle_unregister_driver_error_check.patch: cpuidle: add cpuidle_unregister_driver() error check (fate#311818,fate#311942). - patches.arch/003-cpuidle__make_cpuidle_curr_driver_static.patch: cpuidle: make cpuidle_curr_driver static (fate#311818,fate#311942). - patches.arch/004-ACPI__allow_a_native_cpuidle_driver_to_displace_ACPI.patch: ACPI: allow a native cpuidle driver to displace ACPI (fate#311818,fate#311942). - patches.arch/005-intel_idle__native_hardware_cpuidle_driver_for_latest_Intel_processors.patch: intel_idle: native hardware cpuidle driver for latest Intel processors (fate#311818,fate#311942). - patches.arch/006-intel_idle__delete_substates_DEBUG_modparam.patch: intel_idle: delete substates DEBUG modparam (fate#311818,fate#311942). - patches.arch/007-intel_idle__delete_power_policy_modparam__and_choose_substate_functions.patch: intel_idle: delete power_policy modparam, and choose substate functions (fate#311818,fate#311942). - patches.arch/008-intel_idle__add_support_for_Westmere-EX.patch: intel_idle: add support for Westmere-EX (fate#311818,fate#311942). - patches.arch/009-intel_idle__disable_module_support.patch: intel_idle: disable module support (fate#311818,fate#311942). - patches.arch/010-intel_idle__no_longer_EXPERIMENTAL.patch: intel_idle: no longer EXPERIMENTAL (fate#311818,fate#311942). - patches.arch/011-intel_idle__recognize_Lincroft_Atom_Processor.patch: intel_idle: recognize Lincroft Atom Processor (fate#311818,fate#311942). - patches.arch/012-intel_idle__Change_mode_755__644.patch: intel_idle: Change mode 755 => 644 (fate#311818,fate#311942). - patches.arch/013-cpuidle__extend_cpuidle_and_menu_governor_to_handle_dynamic_states.patch: cpuidle: extend cpuidle and menu governor to handle dynamic states (fate#311818,fate#311942). - patches.arch/014-intel_idle__Voluntary_leave_mm_before_entering_deeper.patch: intel_idle: Voluntary leave_mm before entering deeper (fate#311818,fate#311942). - patches.arch/015-intel_idle__enable_Atom_C6.patch: intel_idle: enable Atom C6 (fate#311818,fate#311942). - patches.arch/016-x86__mwait__Move_mwait_constants_to_a_common_header_file.patch: x86, mwait: Move mwait constants to a common header file (fate#311818,fate#311942). - patches.arch/017-intel_idle__simplify_test_for_leave_mm.patch: intel_idle: simplify test for leave_mm() (fate#311818,fate#311942). - patches.arch/018-intel_idle__delete_bogus_data_from_cpuidle_state_power_usage.patch: intel_idle: delete bogus data from cpuidle_state.power_usage (fate#311818,fate#311942). - patches.arch/019-intel_idle__add_initial_Sandy_Bridge_support.patch: intel_idle: add initial Sandy Bridge support (fate#311818,fate#311942). - patches.arch/020-intel_idle__do_not_use_the_LAPIC_timer_for_ATOM_C2.patch: intel_idle: do not use the LAPIC timer for ATOM C2 (fate#311818,fate#311942). - patches.arch/cpuidle_hotplug_use_C1_not_mwait_amd_cpu_unplug.patch: x86, hotplug: Fix powersavings with offlined cores on AMD (fate#311958). - patches.arch/cpuidle_repeating_pattern_detector_for_menu_governor.patch: cpuidle: add a repeating pattern detector to the menu governor (fate#311789,bnc#698776). - patches.xen/xen3-auto-common.diff: Refresh. - patches.xen/xen3-patch-2.6.28: Refresh.- patches.fixes/ses-add-subenclosure-support: ses: add subenclosure support (FATE# 310852).- rpm/mkspec: Fix perl warning.- patches.arch/x86-Introduce-pci_map_biosrom.patch: x86: Introduce pci_map_biosrom() (FATE#311808). - patches.drivers/isci-add-isci_compat.h.patch: isci: add isci_compat.h (FATE#311808). - patches.drivers/scsi-Include-Intel-SAS-controller-unit-SCU-driver.patch: Include Intel SAS controller unit (SCU) driver (FATE#311808). - patches.xen/xen3-patch-2.6.27: Refresh.- libata new eh backport (FATE#311826): * patches.suse/ata_piix-implement-LPM-support.patch: ata_piix: implement LPM support (FATE#311826). * patches.suse/ata_piix-remove-SIDPR-locking.patch: ata_piix: remove SIDPR locking (FATE#311826). * patches.suse/libata-Add-ATA-transport-class.patch: [libata] Add ATA transport class (FATE#311826). * patches.suse/libata-add-ap-to-ata_wait_register-and-introduce.patch: libata: add @ap to ata_wait_register() and introduce ata_msleep() (FATE#311826). * patches.suse/libata-avoid-needlessly-passing-around-ptr-to-SCSI.patch: [libata] avoid needlessly passing around ptr to SCSI completion func (FATE#311826). * patches.suse/libata-clean-up-lpm-related-symbols-and-sysfs-show.patch: libata: clean up lpm related symbols and sysfs show/store functions (FATE#311826). * patches.suse/libata-fix-eh-locking.patch: libata: fix eh locking (FATE#311826). * patches.suse/libata-fix-hotplug-for-drivers-which-don-t-implemen.patch: libata: fix hotplug for drivers which don't implement LPM (FATE#311826). * patches.suse/libata-fix-locking-for-sas-paths.patch: libata: fix locking for sas paths (FATE#311826). * patches.suse/libata-host-lock-push-down.patch: SCSI host lock push-down (FATE#311826). * patches.suse/libata-implement-LPM-support-for-port-multipliers.patch: libata: implement LPM support for port multipliers (FATE#311826). * patches.suse/libata-implement-cross-port-EH-exclusion.patch: libata: implement cross-port EH exclusion (FATE#311826). * patches.suse/libata-implement-sata_link_scr_lpm-and-make-ata_d.patch: libata: implement sata_link_scr_lpm() and make ata_dev_set_feature() global (FATE#311826). * patches.suse/libata-issue-DIPM-enable-commands-with-LPM-state-up.patch: libata: issue DIPM enable commands with LPM state updated (FATE#311826). * patches.suse/libata-plumb-sas-port-scan-into-standard-libata-pat.patch: libata: plumb sas port scan into standard libata paths (FATE#311826). * patches.suse/libata-reimplement-link-power-management.patch: libata: reimplement link power management (FATE#311826). * patches.suse/libata-remove-SCSI-host-lock-and-serial-number-usa.patch: [libata] remove SCSI host lock and serial number usage from ata_scsi_queuecmd (FATE#311826). * patches.suse/libata-reorder-ata_queued_cmd-to-remove-alignment-p.patch: libata: reorder ata_queued_cmd to remove alignment padding on 64 bit builds (FATE#311826). * patches.suse/libata-separate-error-handler-into-usable-component.patch: libata: separate error handler into usable components (FATE#311826). * patches.suse/libata-support-for-512-byte-sectors-e.g.-4K-Nat.patch: [libata] support for > 512 byte sectors (e.g. 4K Native) (FATE#311826). - Backport libsas fixes (FATE#311826): * patches.suse/libsas-Add-option-for-SATA-soft-reset.patch: [SCSI] libsas: Add option for SATA soft reset (FATE#311826). * patches.suse/libsas-check-dev-gone-before-submitting-sat.patch: libsas: check dev->gone before submitting sata i/o (FATE#311826). * patches.suse/libsas-convert-to-libata-new-error-handler.patch: libsas: convert to libata new error handler (FATE#311826). * patches.suse/libsas-fix-ATAPI-check-condition-termination.patch: libsas: fix ATAPI check condition termination (FATE#311826). * patches.suse/libsas-fix-SATA-NCQ-error.patch: [SCSI] libsas: fix SATA NCQ error (FATE#311826). * patches.suse/libsas-fix-amend-device-gone-notification-in.patch: libsas: fix/amend device gone notification in sas_deform_port() (FATE#311826). * patches.suse/libsas-fix-ata-list-corruption-issue.patch: libsas: fix ata list corruption issue (FATE#311826). * patches.suse/libsas-fix-loopback-topology-bug-during-disc.patch: libsas: fix loopback topology bug during discovery (FATE#311826). * patches.suse/libsas-remove-spurious-sata-control-register.patch: libsas: remove spurious sata control register read/write (FATE#311826). - patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: Refresh. - patches.suse/scsi-host-lock-push-down.patch: Refresh.- patches.suse/Consolidate-min-not-zero.patch: Consolidate min_not_zero (FATE#311755). - patches.suse/staging-hv-update-to-3.0.patch: Refresh.- Update DIX/DIF and Discard handling (FATE#311755): * patches.suse/blkdev-Do-not-return-EOPNOTSUPP-if-discard-is-supp.patch: blkdev: Do not return -EOPNOTSUPP if discard is supported (FATE#311755). * patches.suse/blkdev-Simple-cleanup-in-blkdev_issue_zeroout.patch: blkdev: Simple cleanup in blkdev_issue_zeroout() (FATE#311755). * patches.suse/blkdev-Submit-discard-bio-in-batches-in-blkdev_issu.patch: blkdev: Submit discard bio in batches in blkdev_issue_discard() (FATE#311755). * patches.suse/block-Add-sysfs-documentation-for-the-discard-topol.patch: block: Add sysfs documentation for the discard topology parameters (FATE#311755). * patches.suse/block-Fix-discard-topology-stacking-and-reporting.patch: block: Fix discard topology stacking and reporting (FATE#311755). * patches.suse/block-Fix-double-free-in-blk_integrity_unregister.patch: block: Fix double free in blk_integrity_unregister (FATE#311755). * patches.suse/block-Make-the-integrity-mapped-property-a-bio-flag.patch: block: Make the integrity mapped property a bio flag (FATE#311755). * patches.suse/block-Provide-a-limit-on-the-number-of-integri.patch: block: Provide a limit on the number of integrity segments (FATE#311755). * patches.suse/block-Remove-extra-discard_alignment-from-hd_struct.patch: block: Remove extra discard_alignment from hd_struct (FATE#311755). * patches.suse/block-Require-subsystems-to-explicitly-allocate-bio.patch: block: Require subsystems to explicitly allocate bio_set integrity mempool (FATE#311755). * patches.suse/block-biovec_slab-vs.-CONFIG_BLK_DEV_INTEGRITY.patch: block: biovec_slab vs. CONFIG_BLK_DEV_INTEGRITY (FATE#311755). * patches.suse/block-fix-mis-synchronisation-in-blkdev_issue_zeroo.patch: block: fix mis-synchronisation in blkdev_issue_zeroout() (FATE#311755). * patches.suse/block-remove-obsolete-comments-for-blkdev_issue_zer.patch: block: remove obsolete comments for blkdev_issue_zeroout (FATE#311755). * patches.suse/dm-Require-subsystems-to-explicitly-allocate-bio.patch: block: Require subsystems to explicitly allocate bio_set integrity mempool (FATE#311755). * patches.suse/dm-improve-block-integrity-support.patch: dm: improve block integrity support (FATE#311755). * patches.suse/dm-mpath-do-not-fail-paths-after-integrity-errors.patch: dm mpath: do not fail paths after integrity errors (FATE#311755). * patches.suse/fs-fixup-warning-part_discard_alignment_show.patch: fs: fixup warning part_discard_alignment_show() (FATE#311755). * patches.suse/libata-Signal-that-our-SATL-supports-WRITE-SAME-16.patch: libata: Signal that our SATL supports WRITE SAME(16) with UNMAP (FATE#311755). * patches.suse/libata-Use-Maximum-Write-Same-Length-to-report-disc.patch: libata: Use Maximum Write Same Length to report discard size limit (FATE#311755). * patches.suse/md-Fix-integrity-registration-error-when-no-devices.patch: md: Fix integrity registration error when no devices are capable (FATE#311755). * patches.suse/md-Require-subsystems-to-explicitly-allocate-bio.patch: md: Explicitly allocate bio_set integrity mempool (FATE#311755). * patches.suse/scsi-Provide-a-limit-on-the-number-of-integri.patch: scsi: Provide a limit on the number of integrity segments (FATE#311755). * patches.suse/scsi_debug-Convert-to-use-root_device_regist.patch: scsi_debug: Convert to use root_device_register() and root_device_unregister() (FATE#311755). * patches.suse/scsi_debug-Fix-32-bit-overflow-in-do_device_.patch: scsi_debug: Fix 32-bit overflow in do_device_access causing memory corruption (FATE#311755). * patches.suse/scsi_debug-Logical-Block-Provisioning-SBC3r.patch: scsi_debug: Logical Block Provisioning (SBC3r26) (FATE#311755). * patches.suse/scsi_debug-Update-thin-provisioning-support.patch: scsi_debug: Update thin provisioning support (FATE#311755). * patches.suse/scsi_debug-add-consecutive-medium-errors.patch: scsi_debug: add consecutive medium errors (FATE#311755). * patches.suse/scsi_debug-set-resid-to-indicate-no-data-in.patch: scsi_debug: set resid to indicate no data-in when medium error (FATE#311755). * patches.suse/sd-Export-effective-protection-mode-in-sysfs.patch: sd: Export effective protection mode in sysfs (FATE#311755). * patches.suse/sd-Fail-discard-requests-when-logical-block-provisi.patch: sd: Fail discard requests when logical block provisioning has been disabled (FATE#311755). * patches.suse/sd-Fix-overflow-with-big-physical-blocks.patch: sd: Fix overflow with big physical blocks (FATE#311755). * patches.suse/sd-Logical-Block-Provisioning-update.patch: sd: Logical Block Provisioning update (FATE#311755). * patches.suse/sd-Unmap-discard-alignment-needs-to-be-conve.patch: sd: Unmap discard alignment needs to be converted to bytes (FATE#311755). * patches.suse/sd-Update-thin-provisioning-support.patch: sd: Update thin provisioning support (FATE#311755). * patches.suse/sg-fix-a-warning-in-blk_rq_aligned-call.patch: sg: fix a warning in blk_rq_aligned() call (FATE#311755).- Update s390 and s390x config files. - Added CONFIG_CRYPTO_GHASH_S390=m - Added CONFIG_SMSGIUCV_EVENT=m - Switch HAVE_DEFAULT_NO_SPIN_MUTEXES for HAVE_ARCH_MUTEX_CPU_RELAX - patches.arch/s390-fate311759-dasd-improve-error-recovery-for-internal-IO.patch: dasd: improve error recovery for internal I/O (bnc#700080,LTC#69437,FATE#311759). - patches.arch/s390-fate311760-dasd-dynamic-pav-toleration.patch: dasd: add dynamic PAV toleration (bnc#700080,LTC#69441,FATE#311760). - patches.arch/s390-fate311761-spp.patch: kernel: virtualization aware cpu measurement (bnc#700080,LTC#69436,FATE#311761). - patches.arch/s390-fate311764-hypfs-bin-attrs.patch: s390_hypfs: Add new binary attributes (bnc#700080,LTC#69444,FATE#311764). - patches.arch/s390-fate311850-cio_settle.patch: cio: introduce cio_settle (bnc#700080,LTC#69442,FATE#311850). - patches.arch/s390-fate311851-breaking-event-addres.patch: kernel: Breaking-event-address for user space programs (bnc#700080,LTC#69457,FATE#311851). - patches.arch/s390-fate311853-qdio-per_dev_perf_stats.patch: qdio: convert global statistics to per-device stats (bnc#700080,LTC#69447,FATE#311853). - patches.arch/s390-fate311854-performance-indicator.patch: kernel: display capacity adjustment indicator in /proc/sysinfo (bnc#700080,LTC#69454,FATE#311854). - patches.arch/s390-fate311855-smsgiucv-uevent.patch: smsgiucv_app: deliver z/VM CP special messages as uevents (bnc#700080,LTC#69456,FATE#311855). - patches.arch/s390-fate311870-01-cio_chp_desc_format1.patch: cio: obtain mdc value per channel path (bnc#700080,LTC#69460,FATE#311870). - patches.arch/s390-fate311870-02-cio-reduce-itcw-memory-consumption.patch: cio: reduce memory consumption of itcw structures (bnc#700080,LTC#69460,FATE#311870). - patches.arch/s390-fate311870-03-dasd-zHPF-multi-track.patch: dasd: add High Performance FICON multitrack support (bnc#700080,LTC#69460,FATE#311870). - patches.arch/s390-fate311871-qeth-hw-tx-checksum.patch: qeth: exploit HW TX checksumming (bnc#700080,LTC#69471,FATE#311871). - patches.arch/s390-fate311873-dasd-raw-track-access.patch: dasd: Add support for raw ECKD access (bnc#700080,LTC#69504,FATE#311873). - patches.arch/s390-fate311874-01-cio_unit_check_handling.patch: cio: unit check handling during internal I/O (bnc#700080,LTC#69464,FATE#311874). - patches.arch/s390-fate311874-02-dasd_unit_check_handling.patch: dasd: Add dasd part of cio internal unit check handling (bnc#700080,LTC#69464,FATE#311874). - patches.arch/s390-fate311875-01-cio_add_siosl_support.patch: cio: add CHSC SIOSL Support (bnc#700080,LTC#69461,FATE#311875). - patches.arch/s390-fate311875-02-zfcp_add_siosl_support.patch: zfcp: Trigger logging in FCP channel on qdio error conditions (bnc#700080,LTC#69461,FATE#311875). - patches.arch/s390-fate311876-cio_improve_resume_handling.patch: cio: improve resume handling (bnc#700080,LTC#69463,FATE#311876). - patches.arch/s390-fate311878-dasd-automatic-recognition-of-read-only-device.patch: dasd: automatic recognition of read-only devices (bnc#700080,LTC#69465,FATE#311878). - patches.arch/s390-fate311880-dasd-tunable-mih.patch: dasd: Add tunable default grace period for missing interrupts (bnc#700080,LTC#69466,FATE#311880). - patches.arch/s390-fate311890-01-qdio-napi.patch: qdio: extend API to allow polling (bnc#700080,LTC#69474,FATE#311890). - patches.arch/s390-fate311890-02-qeth-napi.patch: qeth: NAPI support for l2 and l3 discipline (bnc#700080,LTC#69474,FATE#311890). - patches.arch/s390-fate311892-qeth-olm-message.patch: qeth (new function): tolerate OLM-limitation (bnc#700080,LTC#69475,FATE#311892). - patches.arch/s390-fate311897-zfcpdump-mkdump-prefix.patch: zfcpdump: Add prefix registers to dump header (bnc#700080,LTC#69493,FATE#311897). - patches.arch/s390-fate311899-qeth-vlan-null.patch: qeth: support for priority tags and VLAN-ID 0 tags (bnc#700080,LTC#69476,FATE#311899). - patches.arch/s390-fate311901-01-zcrypt-check-4k-support.patch: zcrypt: Introduce check for 4096 bit support (bnc#700080,LTC#69502,FATE#311901). - patches.arch/s390-fate311901-02-cex3-4096-bit-keys-cex3a.patch: zcrypt: support for 4096 bit keys for cex3a (bnc#700080,LTC#69502,FATE#311901). - patches.arch/s390-fate311901-03-cex3-4096-bit-keys-cex3c.patch: zcrypt: support for 4096 bit keys for cex3c (bnc#700080,LTC#69502,FATE#311901). - patches.arch/s390-fate311901-04-cex3-cca-restriction.patch: zcrypt: cope with cca restriction of cex3 (bnc#700080,LTC#69502,FATE#311901). - patches.arch/s390-fate311901-05-zcrypt-4k-crt.patch: zcrypt: handling of 4096 bit RSA keys in CRT format (bnc#700080,LTC#69502,FATE#311901). - patches.arch/s390-fate311905-dasd-provide-a-Sense-Path-Group-ID-ioctl.patch: dasd: provide a Sense Path Group ID ioctl (bnc#700080,LTC#69468,FATE#311905). - patches.arch/s390-fate311906-dasd-handle-steal-lock-unit-check.patch: dasd: Improve handling of stolen DASD reservation (bnc#700080,LTC#69470,FATE#311906). - patches.arch/s390-fate311911-cio-dasd-chpid-reconfig-handling.patch: cio, dasd: notify drivers of channel path events (bnc#700080,LTC#69675,FATE#311911). - patches.arch/s390-fate311913-chsc_process_chp_availability_information.patch: chsc: process channel-path-availability information (bnc#700080,LTC#69685,FATE#311913). - patches.arch/s390-fate311917-qeth-defaults.patch: qeth: change some configurations defaults (bnc#700080,LTC#69687,FATE#311917). - patches.arch/s390-fate311920-get-cpc-name.patch: kernel: Get CPC name (bnc#700080,LTC#69688,FATE#311920). - patches.arch/s390-fate311922-qeth-qetharp-ipv6.patch: qeth: support ipv6 for query arp cache for HiperSockets (bnc#700080,LTC#69677,FATE#311922). - patches.arch/s390-fate311924-crypto-z196.patch: crypto: Exploit z196 hardware accelerated crypto algorithms (bnc#700080,LTC#69682,FATE#311924). - patches.arch/s390-fate312075-mutex_spin.patch: mutex: Introduce arch_mutex_cpu_relax() (bnc#700080,LTC#70031,FATE#312075). - Patches refreshed due to changes made by s390 patches: - patches.fixes/Fix-various-typos-of-valid-in-comments.patch: - patches.suse/block-Consolidate-phys_segment-and-hw_segment-limit.patch: - patches.suse/block-Rename-blk_queue_max_sectors-to-blk_queue_max.patch: - patches.suse/perf-0001-Single-patch-that-merges-f4c4176-into-sles11.patch: - patches.xen/xen3-patch-2.6.30: Refresh.- Set PCI_LABEL=y in all config files.- patches.suse/topology-s390-Set-SCHED_BOOK-Y-in-defconfig: [S390] topology: Set CONFIG_SCHED_BOOK=y in arch/s390/defconfig (FATE#311860, bnc#698524).- SCSI host lock push-down (FATE#311826): * patches.suse/libfc-host-lock-push-down.patch * patches.suse/libiscsi-host-lock-push-down.patch * patches.suse/scsi-host-lock-push-down.patch * patches.suse/staging-hv-host-lock-push-down.patch * patches.suse/xen-host-lock-push-down.patch- Backport detailed I/O errors: * patches.suse/block-improve-detail-in-I-O-error-messages.patch: block: improve detail in I/O error messages (FATE#311692). * patches.suse/dm-mpath-propagate-target-errors-immediately.patch: dm mpath: propagate target errors immediately (FATE#311692). * patches.suse/scsi-Add-detailed-SCSI-I-O-errors.patch: Add detailed SCSI I/O errors (FATE#311692). * patches.suse/dm-mpath-evaluate-request-result-and-sense: Delete.- patches.drivers/PCI-Export-ACPI_DSM-provided-firmware-instance-number-and-string-name-to-sysfs.patch: PCI: Export ACPI _DSM provided firmware instance number and string name to sysfs (bnc#697944, fate#311158). - patches.drivers/PCI-label-Fix-compilation-error-when-CONFIG_ACPI-is-unset.patch: PCI: label: Fix compilation error when CONFIG_ACPI is unset (bnc#697944, fate#311158). - patches.drivers/PCI-label-remove-include-of-ACPI-header-to-avoid-warnings.patch: PCI: label: remove #include of ACPI header to avoid warnings (bnc#697944, fate#311158). - patches.drivers/PCI-pci-label-Fix-build-failure-when-CONFIG_NLS-is-set-to-m-by-allmodconfig.patch: PCI: pci-label: Fix build failure when CONFIG_NLS is set to 'm' by allmodconfig (bnc#697944, fate#311158).- patches.arch/x86_PCI-Preserve-existing-pci_bfsort-whitelist-for-Dell-systems.patch: x86/PCI: Preserve existing pci=bfsort whitelist for Dell systems (bnc#697942, fate#311159).- patches.suse/ext4-rw-unsupported.patch: Make ext4 mounts read-only unless proper config option is specified (fate#311111). - supported.conf: Make restricted ext4 module supported- patches.suse/staging-hv-update-to-3.0.patch Update hyperv drivers to current mainline state (bnc#662432). - patches.xen/xen3-patch-2.6.32: Refresh.- series.conf: move btrfs patches to the proper section - patches.fixes/writeback-fix-sb-locking.diff: Refresh. - patches.suse/writeback-add-new-functions-for-triggering-inode-writeback.patch: Refresh.- patches.fixes/novfs-minsize-fixes: "Unable to save Login Script" appears when trying to save a user login script (bnc#638985).- patches.fixes/novfs-copy_user-fixes.diff: fs: novfs: Limit check for datacopy between user and kernel space.- Reshuffle block layer patches: * patches.suse/Fix-regression-in-direct-writes-performance-due-to-W.patch * patches.suse/blkdev-generalize-flags-for-blkdev_issue_fn-functio.patch * patches.suse/block-get-rid-of-the-WRITE_ODIRECT-flag.patch * patches.suse/block-unify-flags-for-struct-bio-and-struct-request.patch * patches.suse/gfs2-replace-barriers-with-explicit-flush-FUA-usa.patch * patches.xfs/xfs-improve-metadata-I-O-merging-in-the-elevator.patch - Split off hunks to apply cleanly: * patches.suse/btrfs-unify-flags-for-struct-bio-and-struct-request.patch * patches.suse/ocfs2-generalize-flags-for-blkdev_issue_fn-functio.patch - Block layer fixes and improvements from mainline (FATE#311692): * patches.suse/blktrace-Remove-blk_fill_rwbs_rq.patch: blktrace: Remove blk_fill_rwbs_rq (FATE#311692). * patches.suse/block-Fix-race-during-disk-initialization.patch: block: Fix race during disk initialization (FATE#311692). * patches.suse/block-add-REQ_FLUSH_SEQ.patch: block: add REQ_FLUSH_SEQ (FATE#311692). * patches.suse/block-block_dump-Add-number-of-sectors-to-debug-ou.patch: block: block_dump: Add number of sectors to debug output (FATE#311692). * patches.suse/block-fix-an-address-space-warning-in-blk-map.c.patch: block: fix an address space warning in blk-map.c (FATE#311692). * patches.suse/block-improve-flush-bio-completion.patch: block: improve flush bio completion (FATE#311692). * patches.suse/block-max-hardware-sectors-limit-wrapper.patch: block: max hardware sectors limit wrapper (FATE#311692). * patches.suse/block-reimplement-FLUSH-FUA-to-support-merge.patch: block: reimplement FLUSH/FUA to support merge (FATE#311692). * patches.suse/block-remove-BLKDEV_IFL_WAIT.patch: block: remove BLKDEV_IFL_WAIT (FATE#311488). * patches.suse/block-share-request-flush-fields-with-elevator_pri.patch: block: share request flush fields with elevator_private (FATE#311692). * patches.suse/block-skip-elevator-data-initialization-for-flush-r.patch: block: skip elevator data initialization for flush requests (FATE#311692). * patches.suse/btrfs-remove-BLKDEV_IFL_WAIT.patch: block: remove BLKDEV_IFL_WAIT (FATE#311488). * patches.suse/ext4-remove-BLKDEV_IFL_WAIT.patch: block: remove BLKDEV_IFL_WAIT (FATE#311488). * patches.suse/ocfs2-remove-BLKDEV_IFL_WAIT.patch: block: remove BLKDEV_IFL_WAIT (FATE#311488). * patches.suse/swapfile-remove-BLKDEV_IFL_WAIT.patch: block: remove BLKDEV_IFL_WAIT (FATE#311488).- Update i386/xen config file (disable IPMI and EDAC).- patches.fixes/memcg-skip-charging-if-fatal-signal-is-pending-fix.patch: memcg: Put controller reference when bypassing charging due to fatal signal (bnc#700009).- Update Xen patches to c/s 1092. - patches.xen/xen3-2009-10-12-0003-x86-Export-k8-physical-topology.patch: x86: Export k8 physical topology (fate#311968, disabled). - patches.xen/xen3-block-deprecate-barrier-and-replace-blk_queue_order.patch: block: deprecate barrier and replace blk_queue_ordered() with blk_queue_flush() (FATE#311692). - patches.xen/xen3-block-remove-REQ_HARDBARRIER.patch: block: remove REQ_HARDBARRIER (FATE#311692). - patches.xen/xen3-block-remove-q-prepare_flush_fn-completely.patch: block: remove q->prepare_flush_fn completely (FATE#311692). - patches.xen/xen3-block-remove-the-WRITE_BARRIER-flag.patch: block: remove the WRITE_BARRIER flag (FATE#311692). - patches.xen/xen3-block-remove-wrappers-for-request-type-flags.patch: block: remove wrappers for request type/flags (FATE#311692). - patches.xen/xen3-block-unify-flags-for-struct-bio-and-struct-request.patch: block: unify flags for struct bio and struct request (FATE#311692). - patches.xen/xen3-ibft-x86-Change-reserve_ibft_region-to-find_ibft.patch: ibft, x86: Change reserve_ibft_region() to find_ibft_region() (FATE#311488). - patches.xen/xen3-perf-0001-Single-patch-that-merges-f4c4176-into-sles11.patch: Single patch that merges f4c4176 into sles11 (FATE#311392, BNC#685313). - patches.xen/xen-blkback-bimodal-suse: Delete. - patches.xen/xen-change-reserve_ibft_region-to-find_ibft.patch: Delete. - patches.xen/xen-deprecate-barrier-fixup: Delete. - patches.xen/xen-perf-2.6.33.patch: Delete.- patches.arch/x86_apic_use_apic_printk_for_spurious_error_interrupts.patch: x86, apic: Print verbose error interrupt reason on apic=debug (bnc#698949,fate#311990).Remove 2 unrelated/unneeded patches from EDAC series and fix i7core EDAC driver to work with XEN: - patches.drivers/edac_i7core_phys_proc_id_use_socketid.patch: EDAC i7core: Use mce socketid for better compatibility (fate#311968). - patches.xen/xen3-patch-2.6.24: Refresh.- patches.suse/laptop-mode-Make-flushes-per-device.patch: Refresh.- patches.suse/writeback-add-new-functions-for-triggering-inode-writeback.patch: Refresh.- patches.fixes/0001-genksyms-properly-consider-EXPORT_UNUSED_SYMBOL-_GPL.patch: genksyms: properly consider EXPORT_UNUSED_SYMBOL{,_GPL}(). - patches.fixes/0002-genksyms-close-ref_file-after-use.patch: genksyms: close ref_file after use. - patches.fixes/0003-scripts-genksyms-fix-header-usage.patch: scripts/genksyms: fix header usage. - patches.fixes/0004-genksyms-Do-not-paste-the-bison-header-file-to-lex.c.patch: genksyms: Do not paste the bison header file to lex.c. - patches.fixes/0005-genksyms-Simplify-lexer.patch: genksyms: Simplify lexer. - patches.fixes/0006-genksyms-Simplify-printing-of-symbol-types.patch: genksyms: Simplify printing of symbol types. - patches.fixes/0007-genksyms-Add-helpers-for-building-string-lists.patch: genksyms: Add helpers for building string lists. - patches.fixes/0008-genksyms-simplify-usage-of-find_symbol.patch: genksyms: simplify usage of find_symbol(). - patches.fixes/0009-genksyms-Track-changes-to-enum-constants.patch: genksyms: Track changes to enum constants. - patches.fixes/0010-genksyms-Regenerate-lexer-and-parser.patch: genksyms: Regenerate lexer and parser.- Update config files: Enable QLCNIC. - patches.drivers/0001-qlcnic-Qlogic-ethernet-driver-for-CNA-devices.patch: qlcnic: Qlogic ethernet driver for CNA devices (bnc#698272, FATE#311468). - patches.drivers/0002-qlcnic-use-DEFINE_PCI_DEVICE_TABLE.patch: qlcnic: use DEFINE_PCI_DEVICE_TABLE (bnc#698272, FATE#311468). - patches.drivers/0003-qlcnic-add-ethernet-identifier-in-board-info.patch: qlcnic: add ethernet identifier in board info (bnc#698272, FATE#311468). - patches.drivers/0004-qlcnic-clear-device-reset-state-after-fw-recovery.patch: qlcnic: clear device reset state after fw recovery (bnc#698272, FATE#311468). - patches.drivers/0005-qlcnic-protect-resoruce-cleanup-by-rtnl-lock.patch: qlcnic: protect resoruce cleanup by rtnl lock (bnc#698272, FATE#311468). - patches.drivers/0006-qlcnic-support-LED-blink-for-device-identification.patch: qlcnic: support LED blink for device identification (bnc#698272, FATE#311468). - patches.drivers/0007-qlcnic-add-interrupt-diagnostic-test.patch: qlcnic: add interrupt diagnostic test (bnc#698272, FATE#311468). - patches.drivers/0008-qlcnic-add-loopback-diagnostic-test.patch: qlcnic: add loopback diagnostic test (bnc#698272, FATE#311468). - patches.drivers/0009-net-use-netdev_mc_count-and-netdev_mc_empty-when-app.patch: net: use netdev_mc_count and netdev_mc_empty when appropriate (bnc#698272, FATE#311468). - patches.drivers/0010-net-convert-multiple-drivers-to-use-netdev_for_each_.patch: net: convert multiple drivers to use netdev_for_each_mc_addr, part5 V2 (bnc#698272, FATE#311468). - patches.drivers/0011-qlcnic-fix-tx-csum-status.patch: qlcnic: fix tx csum status (bnc#698272, FATE#311468). - patches.drivers/0012-qlcnic-additional-driver-statistics.patch: qlcnic: additional driver statistics (bnc#698272, FATE#311468). - patches.drivers/0013-qlcnic-fix-multicast-handling.patch: qlcnic: fix multicast handling (bnc#698272, FATE#311468). - patches.drivers/0014-qlcnic-validate-unified-fw-image.patch: qlcnic: validate unified fw image (bnc#698272, FATE#311468). - patches.drivers/0015-qlcnic-fix-bios-version-check.patch: qlcnic: fix bios version check (bnc#698272, FATE#311468). - patches.drivers/0016-qlcnic-remove-extra-space-from-board-names.patch: qlcnic: remove extra space from board names (bnc#698272, FATE#311468). - patches.drivers/0017-qlcnic-fix-fw-load-from-file.patch: qlcnic: fix fw load from file (bnc#698272, FATE#311468). - patches.drivers/0018-qlcnic-handle-queue-manager-access.patch: qlcnic: handle queue manager access (bnc#698272, FATE#311468). - patches.drivers/0019-qlcnic-update-oncard-memory-size-check.patch: qlcnic: update oncard memory size check (bnc#698272, FATE#311468). - patches.drivers/0020-qlcnic-fix-onchip-memory-access.patch: qlcnic: fix onchip memory access (bnc#698272, FATE#311468). - patches.drivers/0021-qlcnic-use-IDC-defined-timeout-value.patch: qlcnic: use IDC defined timeout value (bnc#698272, FATE#311468). - patches.drivers/0022-qlcnic-add-driver-debug-support.patch: qlcnic: add driver debug support (bnc#698272, FATE#311468). - patches.drivers/0023-qlcnic-fix-interface-attach-sequence.patch: qlcnic: fix interface attach sequence (bnc#698272, FATE#311468). - patches.drivers/0024-qlcnic-fix-endianness-in-fw-validation.patch: qlcnic: fix endianness in fw validation (bnc#698272, FATE#311468). - patches.drivers/0025-qlcnic-update-version-to-5.0.1.patch: qlcnic: update version to 5.0.1 (bnc#698272, FATE#311468). - patches.drivers/0026-qlcnic-fix-set-mac-addr.patch: qlcnic: fix set mac addr (bnc#698272, FATE#311468). - patches.drivers/0027-qlcnic-additional-driver-statistics.patch: qlcnic: additional driver statistics (bnc#698272, FATE#311468). - patches.drivers/0028-qlcnic-fix-defines-as-per-IDC-document.patch: qlcnic: fix defines as per IDC document (bnc#698272, FATE#311468). - patches.drivers/0029-qlcnic-fix-fw-initialization-responsibility.patch: qlcnic: fix fw initialization responsibility (bnc#698272, FATE#311468). - patches.drivers/0030-qlcnic-define-macro-for-driver-state.patch: qlcnic: define macro for driver state (bnc#698272, FATE#311468). - patches.drivers/0031-qlcnic-fix-pci-semaphore-checks.patch: qlcnic: fix pci semaphore checks (bnc#698272, FATE#311468). - patches.drivers/0032-qlcnic-fix-rcv-buffer-leak.patch: qlcnic: fix rcv buffer leak (bnc#698272, FATE#311468). - patches.drivers/0033-qlcnic-protect-resource-access.patch: qlcnic: protect resource access (bnc#698272, FATE#311468). - patches.drivers/0034-qlcnic-update-version-5.0.2.patch: qlcnic: update version 5.0.2 (bnc#698272, FATE#311468). - patches.drivers/0035-drivers-net-Remove-unnecessary-returns-from-void-fun.patch: drivers/net: Remove unnecessary returns from void function()s (bnc#698272, FATE#311468). - patches.drivers/0036-qlcnic-fix-context-cleanup.patch: qlcnic: fix context cleanup (bnc#698272, FATE#311468). - patches.drivers/0037-qlcnic-remove-obsolete-register.patch: qlcnic: remove obsolete register (bnc#698272, FATE#311468). - patches.drivers/0038-qlcnic-fix-caching-window-register.patch: qlcnic: fix caching window register (bnc#698272, FATE#311468). - patches.drivers/0039-qlcnic-cleanup-dma-mask-setting.patch: qlcnic: cleanup dma mask setting (bnc#698272, FATE#311468). - patches.drivers/0040-qlcnic-cleanup-unused-code.patch: qlcnic: cleanup unused code (bnc#698272, FATE#311468). - patches.drivers/0041-qlcnic-check-IDC-version.patch: qlcnic: check IDC version (bnc#698272, FATE#311468). - patches.drivers/0042-qlcnic-check-device-class.patch: qlcnic: check device class (bnc#698272, FATE#311468). - patches.drivers/0043-qlcnic-support-quisce-mode.patch: qlcnic: support quisce mode (bnc#698272, FATE#311468). - patches.drivers/0044-qlcnic-add-idc-debug-registers.patch: qlcnic: add idc debug registers (bnc#698272, FATE#311468). - patches.drivers/0045-qlcnic-fix-memory-leaks.patch: qlcnic: fix memory leaks (bnc#698272, FATE#311468). - patches.drivers/0046-qlcnic-change-adapter-name-display.patch: qlcnic: change adapter name display (bnc#698272, FATE#311468). - patches.drivers/0047-qlcnic-fix-rx-bytes-statistics.patch: qlcnic: fix rx bytes statistics (bnc#698272, FATE#311468). - patches.drivers/0048-qlcnic-module-param-for-firmware-load-option.patch: qlcnic: module param for firmware load option (bnc#698272, FATE#311468). - patches.drivers/0049-qlcnic-fix-internal-loopback-test.patch: qlcnic: fix internal loopback test (bnc#698272, FATE#311468). - patches.drivers/0050-qlcnic-remove-unused-register.patch: qlcnic: remove unused register (bnc#698272, FATE#311468). - patches.drivers/0051-qlcnic-mark-device-state-fail.patch: qlcnic: mark device state fail (bnc#698272, FATE#311468). - patches.drivers/0052-qlcnic-NIC-Partitioning-Add-basic-infrastructure-sup.patch: qlcnic: NIC Partitioning - Add basic infrastructure support (bnc#698272, FATE#311468). - patches.drivers/0053-qlcnic-NIC-Partitioning-Add-non-privileged-mode-supp.patch: qlcnic: NIC Partitioning - Add non privileged mode support (bnc#698272, FATE#311468). - patches.drivers/0054-qlcnic-Fix-Compilation-Issue-when-CONFIG_INET-was-no.patch: qlcnic: Fix Compilation Issue when CONFIG_INET was not set (bnc#698272, FATE#311468). - patches.drivers/0055-qlcnic-Fix-a-bug-in-setting-up-NIC-partitioning-mode.patch: qlcnic: Fix a bug in setting up NIC partitioning mode (bnc#698272, FATE#311468). - patches.drivers/0056-qlcnic-Bumped-up-version-number.patch: qlcnic: Bumped up version number (bnc#698272, FATE#311468). - patches.drivers/0057-qlcnic-fix-device-soft-reset.patch: qlcnic: fix device soft reset (bnc#698272, FATE#311468). - patches.drivers/0058-qlcnic-change-driver-description.patch: qlcnic: change driver description (bnc#698272, FATE#311468). - patches.drivers/0059-qlcnic-seperate-interrupt-for-TX.patch: qlcnic: seperate interrupt for TX (bnc#698272, FATE#311468). - patches.drivers/0060-qlcnic-fix-race-in-tx-stop-queue.patch: qlcnic: fix race in tx stop queue (bnc#698272, FATE#311468). - patches.drivers/0061-qlcnic-fix-register-access.patch: qlcnic: fix register access (bnc#698272, FATE#311468). - patches.drivers/0062-qlcnic-cleanup-skb-allocation.patch: qlcnic: cleanup skb allocation (bnc#698272, FATE#311468). - patches.drivers/0063-qlcnic-handshake-with-card-after-fw-load.patch: qlcnic: handshake with card after fw load (bnc#698272, FATE#311468). - patches.drivers/0064-qlcnic-fix-mac-address-mgmt.patch: qlcnic: fix mac address mgmt (bnc#698272, FATE#311468). - patches.drivers/0065-qlcnic-release-device-resources-during-interface-dow.patch: qlcnic: release device resources during interface down (bnc#698272, FATE#311468). - patches.drivers/0066-qlcnic-dont-free-host-resources-during-fw-recovery.patch: qlcnic: dont free host resources during fw recovery (bnc#698272, FATE#311468). - patches.drivers/0067-qlcnic-offload-tx-timeout-recovery.patch: qlcnic: offload tx timeout recovery (bnc#698272, FATE#311468). - patches.drivers/0068-qlcnic-mark-context-state-freed-after-destroy.patch: qlcnic: mark context state freed after destroy (bnc#698272, FATE#311468). - patches.drivers/0069-qlcnic-update-version-to-5.0.6.patch: qlcnic: update version to 5.0.6 (bnc#698272, FATE#311468). - patches.drivers/0070-qlcnic-fail-when-try-to-setup-unsupported-features.patch: qlcnic: fail when try to setup unsupported features (bnc#698272, FATE#311468). - patches.drivers/0071-qlcnic-Remove-obsolete-code.patch: qlcnic: Remove obsolete code (bnc#698272, FATE#311468). - patches.drivers/0072-qlcnic-Add-support-for-configuring-eswitch-and-npars.patch: qlcnic: Add support for configuring eswitch and npars (bnc#698272, FATE#311468). - patches.drivers/0073-netdev-Make-ethtool_ops-set_flags-return-EINVAL-for-.patch: netdev: Make ethtool_ops::set_flags() return -EINVAL for unsupported flags (bnc#698272, FATE#311468). - patches.drivers/0074-qlcnic-Check-FW-capability-for-TSO.patch: qlcnic: Check FW capability for TSO (bnc#698272, FATE#311468). - patches.drivers/0075-qlcnic-Disable-admin-tools-interface-for-VF-driver-m.patch: qlcnic: Disable admin tools interface for VF driver mode (bnc#698272, FATE#311468). - patches.drivers/0076-qlcnic-fix-pause-params-setting.patch: qlcnic: fix pause params setting (bnc#698272, FATE#311468). - patches.drivers/0077-qlcnic-disable-tx-timeout-recovery.patch: qlcnic: disable tx timeout recovery (bnc#698272, FATE#311468). - patches.drivers/0078-qlcnic-fix-netdev-notifier-in-error-path.patch: qlcnic: fix netdev notifier in error path (bnc#698272, FATE#311468). - patches.drivers/0079-qlcnic-aer-support.patch: qlcnic: aer support (bnc#698272, FATE#311468). - patches.drivers/0080-qlcnic-restore-NPAR-config-data-after-recovery.patch: qlcnic: restore NPAR config data after recovery (bnc#698272, FATE#311468). - patches.drivers/0081-qlcnic-fix-pci-resource-leak.patch: qlcnic: fix pci resource leak (bnc#698272, FATE#311468). - patches.drivers/0082-qlcnic-fix-copyright-for-pci-searching-function.patch: qlcnic: fix copyright for pci searching function (bnc#698272, FATE#311468). - patches.drivers/0083-qlcnic-fix-bandwidth-check.patch: qlcnic: fix bandwidth check (bnc#698272, FATE#311468). - patches.drivers/0084-qlcnic-fix-loopback-test.patch: qlcnic: fix loopback test (bnc#698272, FATE#311468). - patches.drivers/0085-qlcnic-fix-diag-resource-allocation.patch: qlcnic: fix diag resource allocation (bnc#698272, FATE#311468). - patches.drivers/0086-qlcnic-clean-up-qlcnic_init_pci_info.patch: qlcnic: clean up qlcnic_init_pci_info() (bnc#698272, FATE#311468). - patches.drivers/0087-qlcnic-using-too-much-stack.patch: qlcnic: using too much stack (bnc#698272, FATE#311468). - patches.drivers/0088-qlcnic-fix-aer-for-virtual-func.patch: qlcnic: fix aer for virtual func (bnc#698272, FATE#311468). - patches.drivers/0089-qlcnic-device-state-management-fixes-for-virtual-fun.patch: qlcnic: device state management fixes for virtual func (bnc#698272, FATE#311468). - patches.drivers/0090-qlcnic-fix-for-setting-function-modes.patch: qlcnic: fix for setting function modes (bnc#698272, FATE#311468). - patches.drivers/0091-qlcnic-add-eswitch-statistics-support.patch: qlcnic: add eswitch statistics support (bnc#698272, FATE#311468). - patches.drivers/0092-qlcnic-fix-link-status-message.patch: qlcnic: fix link status message (bnc#698272, FATE#311468). - patches.drivers/0093-qlcnic-fix-link-diag-test.patch: qlcnic: fix link diag test (bnc#698272, FATE#311468). - patches.drivers/0094-qlcnic-turn-off-lro-when-rxcsum-is-disabled.patch: qlcnic: turn off lro when rxcsum is disabled (bnc#698272, FATE#311468). - patches.drivers/0095-drivers-net-qlcnic-Use-available-error-codes.patch: drivers/net/qlcnic: Use available error codes (bnc#698272, FATE#311468). - patches.drivers/0096-qlcnic-fix-inconsistent-lock-state.patch: qlcnic: fix inconsistent lock state (bnc#698272, FATE#311468). - patches.drivers/0097-qlcnic-remove-unused-code.patch: qlcnic: remove unused code (bnc#698272, FATE#311468). - patches.drivers/0098-qlcnic-replace-magic-numbers-with-defines.patch: qlcnic: replace magic numbers with defines (bnc#698272, FATE#311468). - patches.drivers/0099-qlcnic-configure-port-on-eswitch.patch: qlcnic: configure port on eswitch (bnc#698272, FATE#311468). - patches.drivers/0100-qlcnic-configure-offload-setting-on-eswitch.patch: qlcnic: configure offload setting on eswitch (bnc#698272, FATE#311468). - patches.drivers/0101-qlcnic-support-anti-mac-spoofing.patch: qlcnic: support anti mac spoofing (bnc#698272, FATE#311468). - patches.drivers/0102-qlcnic-fix-npar-state.patch: qlcnic: fix npar state (bnc#698272, FATE#311468). - patches.drivers/0103-qlcnic-mark-device-state-as-failed.patch: qlcnic: mark device state as failed (bnc#698272, FATE#311468). - patches.drivers/0104-qlcnic-fix-endiness-in-eswitch-statistics.patch: qlcnic: fix endiness in eswitch statistics (bnc#698272, FATE#311468). - patches.drivers/0105-qlcnic-firmware-initialization-update.patch: qlcnic: firmware initialization update (bnc#698272, FATE#311468). - patches.drivers/0106-qlcnic-rom-lock-recovery.patch: qlcnic: rom lock recovery (bnc#698272, FATE#311468). - patches.drivers/0107-qlcnic-update-version-5.0.8.patch: qlcnic: update version 5.0.8 (bnc#698272, FATE#311468). - patches.drivers/0108-qlcnic-eswitch-config-fixes.patch: qlcnic: eswitch config fixes (bnc#698272, FATE#311468). - patches.drivers/0109-qlcnic-support-port-vlan-id.patch: qlcnic: support port vlan id (bnc#698272, FATE#311468). - patches.drivers/0110-qlcnic-fix-fw-recovery-for-PF.patch: qlcnic: fix fw recovery for PF (bnc#698272, FATE#311468). - patches.drivers/0111-qlcnic-change-reg-name.patch: qlcnic: change reg name (bnc#698272, FATE#311468). - patches.drivers/0112-qlcnic-Fix-missing-error-codes.patch: qlcnic: Fix missing error codes (bnc#698272, FATE#311468). - patches.drivers/0113-qlcnic-Fix-driver-load-issue-in-FW-hang.patch: qlcnic: Fix driver load issue in FW hang (bnc#698272, FATE#311468). - patches.drivers/0114-qlcnic-PCI-ID-addition.patch: qlcnic: PCI ID addition (bnc#698272, FATE#311468). - patches.drivers/0115-qlnic-fix-a-race-in-qlcnic_get_stats.patch: qlnic: fix a race in qlcnic_get_stats() (bnc#698272, FATE#311468). - patches.drivers/0116-qlcnic-fix-poll-implementation.patch: qlcnic: fix poll implementation (bnc#698272, FATE#311468). - patches.drivers/0117-qlcnic-backout-firmware-initialization-update.patch: qlcnic: backout firmware initialization update (bnc#698272, FATE#311468). - patches.drivers/0118-qlcnic-add-api-version-in-reg-dump.patch: qlcnic: add api version in reg dump (bnc#698272, FATE#311468). - patches.drivers/0119-qlcnic-fix-mac-addr-read.patch: qlcnic: fix mac addr read (bnc#698272, FATE#311468). - patches.drivers/0120-qlcnic-fix-for-setting-default-eswitch-config.patch: qlcnic: fix for setting default eswitch config (bnc#698272, FATE#311468). - patches.drivers/0121-qlcnic-fix-mac-anti-spoof-policy.patch: qlcnic: fix mac anti spoof policy (bnc#698272, FATE#311468). - patches.drivers/0122-qlcnic-fix-panic-while-using-eth_hdr.patch: qlcnic: fix panic while using eth_hdr (bnc#698272, FATE#311468). - patches.drivers/0123-qlcnic-fix-mac-override-capability.patch: qlcnic: fix mac override capability (bnc#698272, FATE#311468). - patches.drivers/0124-qlcnic-support-mac-learning.patch: qlcnic: support mac learning (bnc#698272, FATE#311468). - patches.drivers/0125-qlcnic-mac-vlan-learning-support.patch: qlcnic: mac vlan learning support (bnc#698272, FATE#311468). - patches.drivers/0126-qlcnic-add-cksum-flag.patch: qlcnic: add cksum flag (bnc#698272, FATE#311468). - patches.drivers/0127-qlcnic-support-vlan-rx-accleration.patch: qlcnic: support vlan rx accleration (bnc#698272, FATE#311468). - patches.drivers/0128-qlcnic-vlan-gro-support.patch: qlcnic: vlan gro support (bnc#698272, FATE#311468). - patches.drivers/0129-qlcnic-vlan-lro-support.patch: qlcnic: vlan lro support (bnc#698272, FATE#311468). - patches.drivers/0130-qlcnic-remove-fw-version-check.patch: qlcnic: remove fw version check (bnc#698272, FATE#311468). - patches.drivers/0131-qlcnic-update-version-5.0.10.patch: qlcnic: update version 5.0.10 (bnc#698272, FATE#311468). - patches.drivers/0132-qlcnic-dont-assume-NET_IP_ALIGN-is-2.patch: qlcnic: dont assume NET_IP_ALIGN is 2 (bnc#698272, FATE#311468). - patches.drivers/0133-qlcnic-dont-set-skb-truesize.patch: qlcnic: dont set skb->truesize (bnc#698272, FATE#311468). - patches.drivers/0134-drivers-net-return-operator-cleanup.patch: drivers/net: return operator cleanup (bnc#698272, FATE#311468). - patches.drivers/0135-qlcnic-fix-internal-loopback-test.patch: qlcnic: fix internal loopback test (bnc#698272, FATE#311468). - patches.drivers/0136-qlcnic-fix-eswitch-stats.patch: qlcnic: fix eswitch stats (bnc#698272, FATE#311468). - patches.drivers/0137-qlcnic-fix-diag-register.patch: qlcnic: fix diag register (bnc#698272, FATE#311468). - patches.drivers/0138-qlcnic-fix-endianess-for-lro.patch: qlcnic: fix endianess for lro (bnc#698272, FATE#311468). - patches.drivers/0139-qlcnic-fix-vlan-TSO-on-big-endian-machine.patch: qlcnic: fix vlan TSO on big endian machine (bnc#698272, FATE#311468). - patches.drivers/0140-qlcnic-sparse-warning-fixes.patch: qlcnic: sparse warning fixes (bnc#698272, FATE#311468). - patches.drivers/0141-qlcnic-cleanup-port-mode-setting.patch: qlcnic: cleanup port mode setting (bnc#698272, FATE#311468). - patches.drivers/0142-qlcnic-set-mtu-lower-limit.patch: qlcnic: set mtu lower limit (bnc#698272, FATE#311468). - patches.drivers/0143-qlcnic-remove-dead-code.patch: qlcnic: remove dead code (bnc#698272, FATE#311468). - patches.drivers/0144-qlcnic-driver-private-workqueue.patch: qlcnic: driver private workqueue (bnc#698272, FATE#311468). - patches.drivers/0145-qlcnic-support-quiescent-mode.patch: qlcnic: support quiescent mode (bnc#698272, FATE#311468). - patches.drivers/0146-qlcnic-remove-private-LRO-flag.patch: qlcnic: remove private LRO flag (bnc#698272, FATE#311468). - patches.drivers/0147-qlcnic-fix-board-description.patch: qlcnic: fix board description (bnc#698272, FATE#311468). - patches.drivers/0148-qlcnic-fix-promiscous-mode-for-VF.patch: qlcnic: fix promiscous mode for VF (bnc#698272, FATE#311468). - patches.drivers/0149-qlcnic-change-all-P3-references-to-P3P.patch: qlcnic: change all P3 references to P3P (bnc#698272, FATE#311468). - patches.drivers/0150-qlcnic-update-driver-version-5.0.11.patch: qlcnic: update driver version 5.0.11 (bnc#698272, FATE#311468). - patches.drivers/0151-qlcnic-update-ethtool-stats.patch: qlcnic: update ethtool stats (bnc#698272, FATE#311468). - patches.drivers/0152-qlcnic-fix-mac-learning.patch: qlcnic: fix mac learning (bnc#698272, FATE#311468). - patches.drivers/0153-qlcnic-reduce-rx-ring-size.patch: qlcnic: reduce rx ring size (bnc#698272, FATE#311468). - patches.drivers/0154-qlcnic-define-valid-vlan-id-range.patch: qlcnic: define valid vlan id range (bnc#698272, FATE#311468). - patches.drivers/0155-qlcnic-Allow-minimum-bandwidth-of-zero.patch: qlcnic: Allow minimum bandwidth of zero (bnc#698272, FATE#311468). - patches.drivers/0156-qlcnic-Fix-for-kdump.patch: qlcnic: Fix for kdump (bnc#698272, FATE#311468). - patches.drivers/0157-qlcnic-Add-description-for-CN1000Q-adapter.patch: qlcnic: Add description for CN1000Q adapter (bnc#698272, FATE#311468). - patches.drivers/0158-qlcnic-lro-off-message-log-from-set-rx-checsum.patch: qlcnic: lro off message log from set rx checsum (bnc#698272, FATE#311468). - patches.drivers/0159-qlcnic-fix-panic-on-load.patch: qlcnic: fix panic on load (bnc#698272, FATE#311468). - patches.drivers/0160-qlcnic-Bumped-up-driver-version-to-5.0.12.patch: qlcnic: Bumped up driver version to 5.0.12 (bnc#698272, FATE#311468). - patches.drivers/0161-qlcnic-avoid-using-reset_devices-as-it-may-become-ob.patch: qlcnic: avoid using reset_devices as it may become obsolete (bnc#698272, FATE#311468). - patches.drivers/0162-qlcnic-Disable-loopback-support.patch: qlcnic: Disable loopback support (bnc#698272, FATE#311468). - patches.drivers/0163-qlcnic-validate-eswitch-config-values-for-PF.patch: qlcnic: validate eswitch config values for PF (bnc#698272, FATE#311468). - patches.drivers/0164-qlcnic-LICENSE-file-for-qlcnic.patch: qlcnic: LICENSE file for qlcnic (bnc#698272, FATE#311468). - patches.drivers/0165-qlcnic-Updated-driver-version-to-5.0.13.patch: qlcnic: Updated driver version to 5.0.13 (bnc#698272, FATE#311468). - patches.drivers/0166-qlcnic-fix-LED-test-when-interface-is-down.patch: qlcnic: fix LED test when interface is down (bnc#698272, FATE#311468). - patches.drivers/0167-qlcnic-fix-ocm-window-register-offset-calculation.patch: qlcnic: fix ocm window register offset calculation (bnc#698272, FATE#311468). - patches.drivers/0168-qlcnic-reset-pci-function-unconditionally-during-pro.patch: qlcnic: reset pci function unconditionally during probe (bnc#698272, FATE#311468). - patches.drivers/0169-drivers-net-Use-static-const.patch: drivers/net/*/: Use static const (bnc#698272, FATE#311468). - patches.drivers/0170-qlcnic-fix-flash-fw-version-read.patch: qlcnic: fix flash fw version read (bnc#698272, FATE#311468). - patches.drivers/0171-qlcnic-fix-ethtool-diagnostics-test.patch: qlcnic: fix ethtool diagnostics test (bnc#698272, FATE#311468). - patches.drivers/0172-qlcnic-change-module-parameter-permissions.patch: qlcnic: change module parameter permissions (bnc#698272, FATE#311468). - patches.drivers/0173-qlcnic-Update-version-to-5.0.15.1.patch: qlcnic: Update version to 5.0.15.1 (bnc#698272, FATE#311468). - patches.drivers/0174-qlcnic-Remove-validation-for-max-tx-and-max-rx-queue.patch: qlcnic: Remove validation for max tx and max rx queues (bnc#698272, FATE#311468). - patches.drivers/0175-qlcnic-update-driver-version-to-5.0.15.2.patch: qlcnic: update driver version to 5.0.15.2 (bnc#698272, FATE#311468). - patches.drivers/0176-net-fix-ethtool-set_flags-not-intended-EINVAL-return.patch: net: fix ethtool->set_flags not intended -EINVAL return value (bnc#698272, FATE#311468). - patches.drivers/0177-qlcnic-Make-PCI-info-available-in-all-modes.patch: qlcnic: Make PCI info available in all modes (bnc#698272, FATE#311468). - patches.drivers/0178-qlcnic-Memory-leak-fix.patch: qlcnic: Memory leak fix (bnc#698272, FATE#311468). - patches.drivers/0179-qlcnic-Cleanup-patch.patch: qlcnic: Cleanup patch (bnc#698272, FATE#311468). - patches.drivers/0180-qlcnic-Code-optimization-patch.patch: qlcnic: Code optimization patch (bnc#698272, FATE#311468). - patches.drivers/0181-qlcnic-Remove-unused-code.patch: qlcnic: Remove unused code (bnc#698272, FATE#311468). - patches.drivers/0182-qlcnic-Use-flt-method-to-determine-flash-fw-region.patch: qlcnic: Use flt method to determine flash fw region (bnc#698272, FATE#311468). - patches.drivers/0183-qlcnic-Fix-LRO-disable.patch: qlcnic: Fix LRO disable (bnc#698272, FATE#311468). - patches.drivers/0184-qlcnic-Update-version-number-to-5.0.16.patch: qlcnic: Update version number to 5.0.16 (bnc#698272, FATE#311468). - patches.drivers/0185-qlcnic-limit-skb-frags-for-non-tso-packet.patch: qlcnic: limit skb frags for non tso packet (bnc#698272, FATE#311468). - patches.drivers/0186-qlcnic-configure-number-of-RSS-rings-using-sysfs.patch: qlcnic: configure number of RSS rings using sysfs (bnc#698272, FATE#311468). - patches.drivers/0187-qlcnic-Support-for-GBE-port-settings.patch: qlcnic: Support for GBE port settings (bnc#698272, FATE#311468). - patches.drivers/net-add-qlogic-ethernet-driver-for-cna-devices: NET: Add Qlogic ethernet driver for CNA devices (bnc#698272, FATE#311468).- patches.fixes/vfs-Leave-superblocks-on-s_list-until-the-end.patch: Leave superblocks on s_list until the end (bnc#649000, fate#312304). - patches.fixes/vfs-get-rid-of-restarts-in-sync_filesystems.patch: get rid of restarts in sync_filesystems() (bnc#649000, fate#312304). - patches.fixes/writeback-avoid-WB_SYNC_ALL-livelock.diff: writeback: avoid livelocking WB_SYNC_ALL writeback (bnc#649000). - patches.fixes/writeback-avoid-new-file-livelock.diff: mm: avoid resetting wb_start after each writeback round (bnc#649000). - patches.fixes/writeback-check-background-flush-after-work.diff: writeback: integrated background writeback work (bnc#649000). - patches.fixes/writeback-fix-sb-locking.diff: Fix superblock locking when doing writeback (bnc#649000 bnc#617437). - patches.fixes/writeback-stop-background-for-other-work.diff: writeback: stop background/kupdate works from livelocking other works (bnc#649000).- Update config files: Sync configs.- patches.suse/cgroup-implement-eventfd-based-generic-API-for-notif.patch: cgroup: implement eventfd-based generic API for notifications (fate#312042). - patches.suse/memcg-fix-oom-kill-behavior.patch: memcg: fix oom kill behavior (fate#312042). - patches.suse/memcg-oom-kill-disable-and-oom-status.patch: memcg: oom kill disable and oom status (fate#312042). - patches.suse/memcg-oom-notifier.patch: memcg: oom notifier (fate#312042). - patches.suse/memcg-oom-wakeup-filter.patch: memcg: oom wakeup filter (fate#312042). - patches.suse/memcg-skip-charging-if-fatal-signal-is-pending.patch: memcg: Do not charge if current is going to die (fate#312042).- fate#311968: EDAC i7core driver with additional AMD EDAC fixes: - Update config files. - patches.drivers/2009-10-12-0001-mce-edac-Use-an-atomic-notifier-for-MCEs-decoding.patch: mce, edac: Use an atomic notifier for MCEs decoding (fate#311968). - patches.drivers/2009-10-12-0002-x86-Clean-up-and-add-missing-log-levels-for-k8.patch: x86: Clean up and add missing log levels for k8 (fate#311968). - patches.drivers/2009-10-12-0003-x86-Export-k8-physical-topology.patch: x86: Export k8 physical topology (fate#311968). - patches.drivers/2009-11-08-0001-x86-k8.h-Add-struct-bootnode.patch: x86: k8.h: Add struct bootnode (fate#311968). - patches.drivers/2009-12-07-0001-amd64_edac-clarify-DRAM-CTL-debug-reporting.patch: amd64_edac: clarify DRAM CTL debug reporting (fate#311968). - patches.drivers/2009-12-07-0002-amd64_edac-make-DRAM-regions-output-more-human-read.patch: amd64_edac: make DRAM regions output more human-readable (fate#311968). - patches.drivers/2009-12-07-0005-amd64_edac-wrap-up-pci-config-read-error-handling.patch: amd64_edac: wrap-up pci config read error handling (fate#311968). - patches.drivers/2009-12-07-0006-amd64_edac-cleanup-DRAM-cfg-low-debug-output.patch: amd64_edac: cleanup DRAM cfg low debug output (fate#311968). - patches.drivers/2009-12-07-0007-amd64_edac-cleanup-rest-of-amd64_dump_misc_regs.patch: amd64_edac: cleanup rest of amd64_dump_misc_regs (fate#311968). - patches.drivers/2009-12-07-0008-amd64_edac-dump-DIMM-sizes-on-K8-too.patch: amd64_edac: dump DIMM sizes on K8 too (fate#311968). - patches.drivers/2009-12-07-0009-amd64_edac-cleanup-f10_early_channel_count.patch: amd64_edac: cleanup f10_early_channel_count (fate#311968). - patches.drivers/2009-12-07-0010-amd64_edac-enhance-address-to-DRAM-bank-mapping.patch: amd64_edac: enhance address to DRAM bank mapping (fate#311968). - patches.drivers/2009-12-07-0011-amd64_edac-remove-superfluous-dbg-printk.patch: amd64_edac: remove superfluous dbg printk (fate#311968). - patches.drivers/2009-12-07-0012-amd64_edac-rename-StinkyIdentifier.patch: amd64_edac: rename StinkyIdentifier (fate#311968). - patches.drivers/2009-12-07-0013-amd64_edac-remove-unneeded-extract_error_address-wr.patch: amd64_edac: remove unneeded extract_error_address wrapper (fate#311968). - patches.drivers/2009-12-07-0014-edac-mce-update-AMD-F10h-revD-check.patch: edac, mce: update AMD F10h revD check (fate#311968). - patches.drivers/2009-12-07-0015-edac-add-memory-types-strings-for-debugging.patch: edac: add memory types strings for debugging (fate#311968). - patches.drivers/2009-12-07-0016-amd64_edac-detect-DDR3-memory-type.patch: amd64_edac: detect DDR3 memory type (fate#311968). - patches.drivers/2009-12-07-0017-amd64_edac-remove-early-hw-support-check.patch: amd64_edac: remove early hw support check (fate#311968). - patches.drivers/2009-12-08-0001-amd64_edac-add-a-leaner-syndrome-decoding-algorithm.patch: amd64_edac: add a leaner syndrome decoding algorithm (fate#311968). - patches.drivers/2009-12-08-0002-amd64_edac-correct-sys-address-to-chip-select-mappi.patch: amd64_edac: correct sys address to chip select mapping (fate#311968). - patches.drivers/2009-12-08-0003-amd64_edac-fix-use-uninitialised-bug.patch: amd64_edac: fix use-uninitialised bug (fate#311968). - patches.drivers/2009-12-08-0004-amd64_edac-bump-driver-version.patch: amd64_edac: bump driver version (fate#311968). - patches.drivers/2009-12-15-0002-kernel.h-add-printk_ratelimited-and-pr_-level-_rl.patch: kernel.h: add printk_ratelimited and pr__rl (fate#311968). - patches.drivers/2009-12-16-0001-edac-i5100-clean-controller-to-channel-terms.patch: edac: i5100 clean controller to channel terms (fate#311968). - patches.drivers/2009-12-16-0002-edac-i5100-add-scrubbing.patch: edac: i5100 add scrubbing (fate#311968). - patches.drivers/2009-12-16-0003-edac-i5100-add-6-ranks-per-channel.patch: edac: i5100 add 6 ranks per channel (fate#311968). - patches.drivers/2009-12-16-0004-edac-mce-amd-silence-GART-TLB-errors.patch: edac, mce, amd: silence GART TLB errors (fate#311968). - patches.drivers/2009-12-24-0001-amd64_edac-fix-K8-chip-select-reporting.patch: amd64_edac: fix K8 chip select reporting (fate#311968). - patches.drivers/2009-12-24-0005-amd64_edac-restrict-PCI-config-space-access.patch: amd64_edac: restrict PCI config space access (fate#311968). - patches.drivers/2009-12-24-0006-edac-pci-remove-pesky-debug-printk.patch: edac, pci: remove pesky debug printk (fate#311968). - patches.drivers/2010-01-15-0001-amd64_edac-Ensure-index-stays-within-bounds-in-amd6.patch: amd64_edac: Ensure index stays within bounds in amd64_get_scrub_rate (fate#311968). - patches.drivers/2010-03-01-0001-amd64_edac-Simplify-ECC-override-handling.patch: amd64_edac: Simplify ECC override handling (fate#311968). - patches.drivers/2010-03-12-0001-edac-e752x-fsb-ecc.patch: edac: e752x fsb ecc (fate#311968). - patches.drivers/2010-03-12-0002-edac-e752x-add-dram-scrubbing-support.patch: edac: e752x: add dram scrubbing support (fate#311968). - patches.drivers/2010-04-07-0001-kernel.h-fix-wrong-usage-of-__ratelimit.patch: kernel.h: fix wrong usage of __ratelimit() (fate#311968). - patches.drivers/2010-05-10-0001-i7core_edac-Add-an-EDAC-memory-controller-driver-fo.patch: i7core_edac: Add an EDAC memory controller driver for Nehalem chipsets (fate#311968). - patches.drivers/2010-05-10-0002-i7core_edac-Add-error-insertion-code-for-Nehalem.patch: i7core_edac: Add error insertion code for Nehalem (fate#311968). - patches.drivers/2010-05-10-0003-i7core_edac-Add-more-status-functions-to-EDAC-drive.patch: i7core_edac: Add more status functions to EDAC driver (fate#311968). - patches.drivers/2010-05-10-0004-i7core_edac-Registers-all-supported-MC-functions.patch: i7core_edac: Registers all supported MC functions (fate#311968). - patches.drivers/2010-05-10-0005-i7core_edac-Show-read-write-virtual-physical-channe.patch: i7core_edac: Show read/write virtual/physical channel association (fate#311968). - patches.drivers/2010-05-10-0006-i7core_edac-A-few-fixes-at-error-injection-code.patch: i7core_edac: A few fixes at error injection code (fate#311968). - patches.drivers/2010-05-10-0007-i7core_edac-need-mci-edac_check-otherwise-module.patch: i7core_edac: need mci->edac_check, otherwise module removal doesn't work (fate#311968). - patches.drivers/2010-05-10-0008-i7core_edac-Add-a-memory-check-routine-based-on-de.patch: i7core_edac: Add a memory check routine, based on device 3 function 4 (fate#311968). - patches.drivers/2010-05-10-0009-i7core_edac-Add-additional-tests-for-error-detectio.patch: i7core_edac: Add additional tests for error detection (fate#311968). - patches.drivers/2010-05-10-0010-i7core_edac-Properly-fill-struct-csrow_info.patch: i7core_edac: Properly fill struct csrow_info (fate#311968). - patches.drivers/2010-05-10-0011-i7core_edac-Improve-error-handling.patch: i7core_edac: Improve error handling (fate#311968). - patches.drivers/2010-05-10-0012-i7core_edac-Add-more-information-about-each-active.patch: i7core_edac: Add more information about each active dimm (fate#311968). - patches.drivers/2010-05-10-0013-i7core_edac-Get-more-info-about-the-memory-DIMMs.patch: i7core_edac: Get more info about the memory DIMMs (fate#311968). - patches.drivers/2010-05-10-0014-i7core_edac-Memory-info-fixes-and-preparation-for-p.patch: i7core_edac: Memory info fixes and preparation for properly filling cswrow data (fate#311968). - patches.drivers/2010-05-10-0015-i7core_edac-fill-csrows-edac-sysfs-info.patch: i7core_edac: fill csrows edac sysfs info (fate#311968). - patches.drivers/2010-05-10-0016-i7core_edac-CodingStyle-fixes.patch: i7core_edac: CodingStyle fixes (fate#311968). - patches.drivers/2010-05-10-0017-edac_mce-Add-an-interface-driver-to-report-mce-erro.patch: edac_mce: Add an interface driver to report mce errors via edac (fate#311968). - patches.drivers/2010-05-10-0018-edac-Kconfig-edac_mce-can-t-be-module.patch: edac/Kconfig: edac_mce can't be module (fate#311968). - patches.drivers/2010-05-10-0019-pci-Add-a-probing-code-that-seeks-for-an-specific-b.patch: pci: Add a probing code that seeks for an specific bus (fate#311968). - patches.drivers/2010-05-10-0020-i7core_edac-Add-edac_mce-glue.patch: i7core_edac: Add edac_mce glue (fate#311968). - patches.drivers/2010-05-10-0021-i7core_edac-Adds-write-unlock-to-MC-registers.patch: i7core_edac: Adds write unlock to MC registers (fate#311968). - patches.drivers/2010-05-10-0022-i7core_edac-Add-a-code-to-probe-Xeon-55xx-bus.patch: i7core_edac: Add a code to probe Xeon 55xx bus (fate#311968). - patches.drivers/2010-05-10-0023-i7core_edac-add-support-for-more-than-one-MC-socket.patch: i7core_edac: add support for more than one MC socket (fate#311968). - patches.drivers/2010-05-10-0024-i7core_edac-maps-all-sockets-as-if-ther-are-one-MC.patch: i7core_edac: maps all sockets as if ther are one MC controller (fate#311968). - patches.drivers/2010-05-10-0025-i7core_edac-decode-mcelog-error-and-send-it-via-eda.patch: i7core_edac: decode mcelog error and send it via edac interface (fate#311968). - patches.drivers/2010-05-10-0026-i7core_edac-some-fixes-at-memory-error-parser.patch: i7core_edac: some fixes at memory error parser (fate#311968). - patches.drivers/2010-05-10-0027-i7core-fix-probing-on-Xeon55xx.patch: i7core: fix probing on Xeon55xx (fate#311968). - patches.drivers/2010-05-10-0028-i7core-check-if-the-memory-error-is-fatal-or-non-fa.patch: i7core: check if the memory error is fatal or non-fatal (fate#311968). - patches.drivers/2010-05-10-0029-i7core-enrich-error-information-based-on-memory-tra.patch: i7core: enrich error information based on memory transaction type (fate#311968). - patches.drivers/2010-05-10-0030-i7core-fix-get_devices-routine-for-Xeon55xx.patch: i7core: fix get_devices routine for Xeon55xx (fate#311968). - patches.drivers/2010-05-10-0031-i7core-better-document-i7core_get_active_channels.patch: i7core: better document i7core_get_active_channels() (fate#311968). - patches.drivers/2010-05-10-0032-i7core-add-socket-info-at-the-debug-msg.patch: i7core: add socket info at the debug msg (fate#311968). - patches.drivers/2010-05-10-0033-i7core-remove-some-uneeded-noisy-debug-messages.patch: i7core: remove some uneeded noisy debug messages (fate#311968). - patches.drivers/2010-05-10-0034-i7core_edac-Some-cleanups-at-displayed-info.patch: i7core_edac: Some cleanups at displayed info (fate#311968). - patches.drivers/2010-05-10-0035-i7core_edac-some-fixes-at-error-injection-code.patch: i7core_edac: some fixes at error injection code (fate#311968). - patches.drivers/2010-05-10-0036-i7core_edac-fix-error-codes-for-sysfs-error-injecti.patch: i7core_edac: fix error codes for sysfs error injection interface (fate#311968). - patches.drivers/2010-05-10-0037-i7core_edac-fix-error-injection.patch: i7core_edac: fix error injection (fate#311968). - patches.drivers/2010-05-10-0038-i7core_edac-CodingSyle-fixes-cleanups.patch: i7core_edac: CodingSyle fixes/cleanups (fate#311968). - patches.drivers/2010-05-10-0039-i7core_edac-Print-an-error-message-if-pci-register.patch: i7core_edac: Print an error message if pci register fails (fate#311968). - patches.drivers/2010-05-10-0040-i7core_edac-Fix-ecc-enable-shift.patch: i7core_edac: Fix ecc enable shift (fate#311968). - patches.drivers/2010-05-10-0041-i7core_edac-Use-Device-3-function-2-to-report-error.patch: i7core_edac: Use Device 3 function 2 to report errors with RDIMM's (fate#311968). - patches.drivers/2010-05-10-0042-i7core-Use-registered-memories-per-processor.patch: i7core: Use registered memories per processor (fate#311968). - patches.drivers/2010-05-10-0043-i7core_edac-Probe-on-Xeons-eariler.patch: i7core_edac: Probe on Xeons eariler (fate#311968). - patches.drivers/2010-05-10-0044-i7core_edac-Improve-corrected_error_counts-output-f.patch: i7core_edac: Improve corrected_error_counts output for RDIMM (fate#311968). - patches.drivers/2010-05-10-0046-Dynamically-allocate-memory-for-PCI-devices.patch: Dynamically allocate memory for PCI devices (fate#311968). - patches.drivers/2010-05-10-0047-i7core_edac-create-one-mc-per-socket-QPI.patch: i7core_edac: create one mc per socket/QPI (fate#311968). - patches.drivers/2010-05-10-0048-i7core_edac-sanity-check-print-a-warning-if-a-mcel.patch: i7core_edac: sanity check: print a warning if a mcelog is ignored (fate#311968). - patches.drivers/2010-05-10-0049-i7core_edac-a-few-fixes-for-multiple-mc-s.patch: i7core_edac: a few fixes for multiple mc's (fate#311968). - patches.drivers/2010-05-10-0050-i7core_edac-Fix-a-bug-when-printing-error-counts-wi.patch: i7core_edac: Fix a bug when printing error counts with RDIMMs (fate#311968). - patches.drivers/2010-05-10-0051-i7core_edac-at-remove-don-t-remove-all-pci-devices.patch: i7core_edac: at remove, don't remove all pci devices at once (fate#311968). - patches.drivers/2010-05-10-0052-i7core_edac-remove-static-counter-for-max-sockets.patch: i7core_edac: remove static counter for max sockets (fate#311968). - patches.drivers/2010-05-10-0053-i7core_edac-change-remove-module-strategy.patch: i7core_edac: change remove module strategy (fate#311968). - patches.drivers/2010-05-10-0054-i7core_edac-We-need-to-use-list_for_each_entry_safe.patch: i7core_edac: We need to use list_for_each_entry_safe to avoid errors (fate#311968). - patches.drivers/2010-05-10-0055-i7core_edac-Avoid-printing-a-warning-when-debug-is.patch: i7core_edac: Avoid printing a warning when debug is disabled (fate#311968). - patches.drivers/2010-05-10-0056-edac_core-Allow-the-creation-of-sysfs-groups.patch: edac_core: Allow the creation of sysfs groups (fate#311968). - patches.drivers/2010-05-10-0057-i7core_edac-Add-support-for-sysfs-addrmatch-group.patch: i7core_edac: Add support for sysfs addrmatch group (fate#311968). - patches.drivers/2010-05-10-0058-edac-store-show-methods-for-device-groups-weren-t-w.patch: edac: store/show methods for device groups weren't working (fate#311968). - patches.drivers/2010-05-10-0059-edac-Don-t-create-csrow-entries-on-instance-groups.patch: edac: Don't create csrow entries on instance groups (fate#311968). - patches.drivers/2010-05-10-0060-i7core_edac-Convert-UDIMM-error-counters-into-a-pro.patch: i7core_edac: Convert UDIMM error counters into a proper sysfs group (fate#311968). - patches.drivers/2010-05-10-0061-edac-Create-an-unique-instance-for-each-kobj.patch: edac: Create an unique instance for each kobj (fate#311968). - patches.drivers/2010-05-10-0062-i7core_edac-Use-a-lockless-ringbuffer.patch: i7core_edac: Use a lockless ringbuffer (fate#311968). - patches.drivers/2010-05-10-0063-i7core_edac-Better-parse-any-addrmask.patch: i7core_edac: Better parse "any" addrmask (fate#311968). - patches.drivers/2010-05-10-0064-i7core_edac-First-store-then-increment.patch: i7core_edac: First store, then increment (fate#311968). - patches.drivers/2010-05-10-0065-i7core_edac-Fix-ringbuffer-maxsize.patch: i7core_edac: Fix ringbuffer maxsize (fate#311968). - patches.drivers/2010-05-10-0066-i7core_edac-PCI-device-is-called-NONCORE-instead-o.patch: i7core_edac: PCI device is called NONCORE, instead of NOCORE (fate#311968). - patches.drivers/2010-05-10-0067-i7core_edac-Use-a-more-generic-approach-for-probing.patch: i7core_edac: Use a more generic approach for probing PCI devices (fate#311968). - patches.drivers/2010-05-10-0068-edac-i7core_edac-produces-undefined-behaviour-on-32.patch: edac: i7core_edac produces undefined behaviour on 32bit (fate#311968). - patches.drivers/2010-05-10-0069-edac-fix-i7core-build.patch: edac: fix i7core build (fate#311968). - patches.drivers/2010-05-10-0070-i7core_edac-do-not-export-static-functions.patch: i7core_edac: do not export static functions (fate#311968). - patches.drivers/2010-05-10-0071-i7core_edac-Add-initial-support-for-Lynnfield.patch: i7core_edac: Add initial support for Lynnfield (fate#311968). - patches.drivers/2010-05-10-0072-i7core-add-support-for-Lynnfield-alternate-address.patch: i7core: add support for Lynnfield alternate address (fate#311968). - patches.drivers/2010-05-10-0073-i7core_edac-Fix-wrong-device-id-for-channel-1-devic.patch: i7core_edac: Fix wrong device id for channel 1 devices (fate#311968). - patches.drivers/2010-05-18-0001-EDAC-add-__init-to-i7core_xeon_pci_fixup.patch: EDAC: add __init to i7core_xeon_pci_fixup (fate#311968). - patches.drivers/2010-05-18-0002-i7core_edac-fix-memory-leak-of-i7core_dev.patch: i7core_edac: fix memory leak of i7core_dev (fate#311968). - patches.drivers/2010-05-18-0003-Always-call-i7core_-ur-dimm_check_mc_ecc_err.patch: Always call i7core_dimm_check_mc_ecc_err (fate#311968). - patches.drivers/2010-05-18-0004-i7core_edac-Add-support-for-X5670.patch: i7core_edac: Add support for X5670 (fate#311968). - patches.drivers/2010-05-18-0005-i7core_edac-don-t-free-on-success.patch: i7core_edac: don't free on success (fate#311968). - patches.drivers/2010-05-18-0006-PCI-fix-typos-pci_device_dis-enable-to-pci_dis-enab.patch: PCI: fix typos pci_device_dis/enable to pci_dis/enable_device in comments (fate#311968). - patches.drivers/2010-05-18-0007-Add-support-for-Westmere-to-i7core_edac-driver.patch: Add support for Westmere to i7core_edac driver (fate#311968). - patches.drivers/2010-05-18-0008-i7core_edac-Better-describe-the-supported-devices.patch: i7core_edac: Better describe the supported devices (fate#311968). - patches.drivers/2010-06-11-0001-x86-mce-Add-HW_ERR-printk-prefix-for-hardware-erro.patch: x86, mce: Add HW_ERR printk prefix for hardware error logging (fate#311968). - patches.drivers/2010-07-02-0001-amd64_edac-Fix-syndrome-calculation-on-K8.patch: amd64_edac: Fix syndrome calculation on K8 (fate#311968). - patches.drivers/2010-07-02-0002-i7core_edac-Properly-discover-the-first-QPI-device.patch: i7core_edac: Properly discover the first QPI device (fate#311968). - patches.drivers/2010-07-02-0003-i7core_edac-Avoid-doing-multiple-probes-for-the-sam.patch: i7core_edac: Avoid doing multiple probes for the same card (fate#311968). - patches.drivers/2010-07-20-0001-edac-mpc85xx-fix-MPC85xx-dependency.patch: edac: mpc85xx: fix MPC85xx dependency (fate#311968). - patches.drivers/2010-07-26-0001-quiesce-EDAC-initialisation-on-desktop-mobile-i7.patch: quiesce EDAC initialisation on desktop/mobile i7 (fate#311968). - patches.drivers/2010-07-30-0001-x86-PCI-pci-fix-section-mismatch.patch: x86/PCI: pci, fix section mismatch (fate#311968). - patches.drivers/2010-08-03-0001-amd64_edac-Sanitize-syndrome-extraction.patch: amd64_edac: Sanitize syndrome extraction (fate#311968). - patches.drivers/2010-08-03-0002-edac-Remove-EDAC_DEBUG_VERBOSE.patch: edac: Remove EDAC_DEBUG_VERBOSE (fate#311968). - patches.drivers/2010-08-03-0003-amd64_edac-Remove-unneeded-defines.patch: amd64_edac: Remove unneeded defines (fate#311968). - patches.drivers/2010-08-03-0007-edac-mc-Improve-scrub-rate-handling.patch: edac, mc: Improve scrub rate handling (fate#311968). - patches.drivers/2010-10-01-0001-i7core_edac-fix-panic-in-udimm-sysfs-attributes-reg.patch: i7core_edac: fix panic in udimm sysfs attributes registration (fate#311968). - patches.drivers/2010-10-21-0001-EDAC-Fix-error-return.patch: EDAC: Fix error return (fate#311968). - patches.drivers/2010-10-21-0006-EDAC-Export-edac-sysfs-class-to-users.patch: EDAC: Export edac sysfs class to users (fate#311968). - patches.drivers/2010-10-24-0001-i7core_edac-Be-sure-that-the-edac-pci-handler-will.patch: i7core_edac: Be sure that the edac pci handler will be properly released (fate#311968). - patches.drivers/2010-10-24-0002-i7core_edac-move-static-vars-to-the-beginning-of-th.patch: i7core_edac: move static vars to the beginning of the file (fate#311968). - patches.drivers/2010-10-24-0003-i7core_edac-Properly-mark-const-static-vars-as-such.patch: i7core_edac: Properly mark const static vars as such (fate#311968). - patches.drivers/2010-10-24-0004-i7core_edac-move-if-PAGE_SHIFT-to-edac_core.h.patch: i7core_edac: move #if PAGE_SHIFT to edac_core.h (fate#311968). - patches.drivers/2010-10-24-0005-i7core_edac-Improve-debug-to-seek-for-register-remo.patch: i7core_edac: Improve debug to seek for register/remove errors (fate#311968). - patches.drivers/2010-10-24-0006-i7core_edac-Initialize-all-priv-vars-before-start-p.patch: i7core_edac: Initialize all priv vars before start polling (fate#311968). - patches.drivers/2010-10-24-0007-i7core_edac-MCE-NMI-handling-should-stop-first.patch: i7core_edac: MCE NMI handling should stop first (fate#311968). - patches.drivers/2010-10-24-0008-i7core_edac-explicitly-remove-PCI-devices-from-the.patch: i7core_edac: explicitly remove PCI devices from the devices list (fate#311968). - patches.drivers/2010-10-24-0009-edac_core-Do-a-better-job-with-node-removal.patch: edac_core: Do a better job with node removal (fate#311968). - patches.drivers/2010-10-24-0010-edac_core-Don-t-let-free-mci-happen-while-using-it.patch: edac_core: Don't let free(mci) happen while using it (fate#311968). - patches.drivers/2010-10-24-0011-edac_core-Print-debug-messages-at-release-calls.patch: edac_core: Print debug messages at release calls (fate#311968). - patches.drivers/2010-10-24-0012-i7core_edac-don-t-use-a-freed-mci-struct.patch: i7core_edac: don't use a freed mci struct (fate#311968). - patches.drivers/2010-10-24-0013-i7core_edac-Don-t-do-the-legacy-PCI-probe-by-defaul.patch: i7core_edac: Don't do the legacy PCI probe by default (fate#311968). - patches.drivers/2010-10-24-0014-i7core_edac-Fix-the-logic-in-i7core_remove.patch: i7core_edac: Fix the logic in i7core_remove() (fate#311968). - patches.drivers/2010-10-24-0015-i7core_edac-Reduce-args-of-i7core_get_onedevice.patch: i7core_edac: Reduce args of i7core_get_onedevice (fate#311968). - patches.drivers/2010-10-24-0016-i7core_edac-Introduce-alloc_i7core_dev.patch: i7core_edac: Introduce alloc_i7core_dev (fate#311968). - patches.drivers/2010-10-24-0017-i7core_edac-Introduce-free_i7core_dev.patch: i7core_edac: Introduce free_i7core_dev (fate#311968). - patches.drivers/2010-10-24-0018-i7core_edac-Introduce-i7core_pci_ctl_create-release.patch: i7core_edac: Introduce i7core_pci_ctl_create/release (fate#311968). - patches.drivers/2010-10-24-0019-i7core_edac-Always-do-get-put-for-all-devices.patch: i7core_edac: Always do get/put for all devices (fate#311968). - patches.drivers/2010-10-24-0020-i7core_edac-Fix-order-of-lines-in-i7core_register_m.patch: i7core_edac: Fix order of lines in i7core_register_mci (fate#311968). - patches.drivers/2010-10-24-0021-i7core_edac-Fix-error-path-of-i7core_register_mci.patch: i7core_edac: Fix error path of i7core_register_mci (fate#311968). - patches.drivers/2010-10-24-0022-i7core_edac-Call-pci_dev_put-when-alloc_i7core_de.patch: i7core_edac: Call pci_dev_put() when alloc_i7core_dev() failed (fate#311968). - patches.drivers/2010-10-24-0023-i7core_edac-Check-probe-counter-in-i7core_remove.patch: i7core_edac: Check probe counter in i7core_remove (fate#311968). - patches.drivers/2010-10-24-0024-i7core_edac-Use-saved-pointers.patch: i7core_edac: Use saved pointers (fate#311968). - patches.drivers/2010-10-24-0025-i7core_edac-Introduce-i7core_unregister_mci.patch: i7core_edac: Introduce i7core_unregister_mci (fate#311968). - patches.drivers/2010-10-24-0026-i7core_edac-Reduce-args-of-i7core_register_mci.patch: i7core_edac: Reduce args of i7core_register_mci (fate#311968). - patches.drivers/2010-10-24-0027-i7core_edac-Remove-unused-arg-csrow-from-get_dimm_c.patch: i7core_edac: Remove unused arg csrow from get_dimm_config (fate#311968). - patches.drivers/2010-10-24-0028-i7core_edac-Remove-unused-member-channels-in-i7core.patch: i7core_edac: Remove unused member channels in i7core_pvt (fate#311968). - patches.drivers/2010-10-24-0029-i7core_edac-Fix-an-oops-at-i7core-probe.patch: i7core_edac: Fix an oops at i7core probe (fate#311968). - patches.drivers/2010-10-24-0030-i7core_edac-it-is-safe-to-i7core_unregister_mci-w.patch: i7core_edac: it is safe to i7core_unregister_mci() when mci=NULL (fate#311968). - patches.drivers/2010-10-24-0031-i7core_edac-Fix-refcount-error-at-PCI-devices.patch: i7core_edac: Fix refcount error at PCI devices (fate#311968). - patches.drivers/2010-10-24-0032-i7core_edac-Avoid-PCI-refcount-to-reach-zero-on-suc.patch: i7core_edac: Avoid PCI refcount to reach zero on successive load/reload (fate#311968). - patches.drivers/2010-10-24-0033-i7core_edac-properly-terminate-pci_dev_table.patch: i7core_edac: properly terminate pci_dev_table (fate#311968). - patches.drivers/2010-10-24-0034-i7core_edac-return-ENODEV-when-devices-were-alread.patch: i7core_edac: return -ENODEV when devices were already probed (fate#311968). - patches.drivers/2010-12-08-0001-EDAC-Fix-workqueue-related-crashes.patch: EDAC: Fix workqueue-related crashes (fate#311968). - patches.drivers/2010-12-08-0002-EDAC-Correct-MiB_TO_PAGES-macro.patch: EDAC: Correct MiB_TO_PAGES() macro (fate#311968). - patches.drivers/2010-12-28-0001-i7core_edac-fix-typos-in-comments.patch: i7core_edac: fix typos in comments (fate#311968). - patches.drivers/2011-03-17-0001-EDAC-Shut-up-sysfs-registration-debug-code.patch: EDAC: Shut up sysfs registration debug code (fate#311968). - patches.drivers/Modified-2010-03-08-0001-Driver-core-Constify-struct-sysfs_ops-in-struct-kob.patch: Driver core: Constify struct sysfs_ops in struct kobj_type (fate#311968). - patches.drivers/Modified-2010-03-30-0001-include-cleanup-Update-gfp.h-and-slab.h-includes-to.patch: include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h (fate#311968). - patches.drivers/Modified-2010-05-25-0001-kernel.h-add-pr_warn-for-symmetry-to-dev_warn-netd.patch: kernel.h: add pr_warn for symmetry to dev_warn, netdev_warn (fate#311968). - patches.drivers/Modified-2011-01-07-0015-EDAC-Fixup-scrubrate-manipulation.patch: EDAC: Fixup scrubrate manipulation (fate#311968). - patches.xen/xen-amd-ecs: Refresh. - patches.xen/xen3-patch-2.6.24: Refresh.- Disable PS3 specific options from PPC config.- Re-enable and update FLUSH/FUA update patches (FATE#311692): * patches.suse/block-drop-barrier-ordering-by-queue-draining.patch * patches.suse/block-misc-cleanups-in-barrier-code.patch * patches.suse/btrfs-adjust-btrfs_discard_extent-return-errors-and-.patch * patches.suse/btrfs-discard-flags-update * patches.suse/btrfs-replace-barriers-with-explicit-flush-FUA-us.patch * patches.suse/btrfs-use-gfp_nofs-instead-of-gfp_kernel.patch * patches.suse/dm-implement-REQ_FLUSH-FUA-support-for-bio-based-dm.patch * patches.suse/gfs2-replace-barriers-with-explicit-flush-FUA-usa.patch * patches.suse/ide-deprecate-barrier-and-replace-blk_queue_order.patch * patches.suse/ide-stop-using-q-prepare_flush_fn.patch * patches.suse/ps3disk-stop-using-q-prepare_flush_fn.patch- patches.xen/xen-change-reserve_ibft_region-to-find_ibft.patch: Change reserve_ibft_region() to find_ibft_region() (FATE#311488).- supported.conf: Add iscsi_boot_sysfs.- Update config files. - patches.suse/ibft-For-UEFI-machines-actually-do-scan-ACPI-for-iB.patch: ibft: For UEFI machines actually do scan ACPI for iBFT (FATE#311488). - patches.suse/ibft-Kernel-oops-when-rmmoding-iscsi_ibft-with-no-i.patch: ibft: Kernel oops when rmmoding iscsi_ibft with no iBFT present (FATE#311488). - patches.suse/ibft-Update-iBFT-handling-for-v1.03-of-the-spec.patch: ibft: Update iBFT handling for v1.03 of the spec (FATE#311488). - patches.suse/ibft-convert-iscsi_ibft-module-to-iscsi-boot-lib.patch: ibft: convert iscsi_ibft module to iscsi boot lib (FATE#311488). - patches.suse/ibft-separate-ibft-parsing-from-sysfs-interface.patch: ibft: separate ibft parsing from sysfs interface (FATE#311488). - patches.suse/ibft-x86-Change-reserve_ibft_region-to-find_ibft.patch: ibft, x86: Change reserve_ibft_region() to find_ibft_region() (FATE#311488). - patches.xen/xen3-patch-2.6.26: Refresh.- rpm/built-in-where: Reimplement the main part in make to speed up parallel builds.- patches.suse/btrfs-account-for-missing-devices-in-raid-allocation.patch: Btrfs: account for missing devices in RAID allocation profiles (FATE#306586). - patches.suse/btrfs-add-a-clear_cache-mount-option.patch: Btrfs: Add a clear_cache mount option (FATE#306586). - patches.suse/btrfs-add-a-comment-explaining-what-btrfs_cont_expan.patch: Btrfs: add a comment explaining what btrfs_cont_expand does (FATE#306586). - patches.suse/btrfs-add-a-helper-try_merge_free_space.patch: btrfs: Add a helper try_merge_free_space() (FATE#306586). - patches.suse/btrfs-add-basic-dio-read-write-support.patch: Btrfs: add basic DIO read/write support (FATE#306586). - patches.suse/btrfs-add-btrfs_ioc_subvol_getflags-setflags-ioctls.patch: Btrfs: Add BTRFS_IOC_SUBVOL_GETFLAGS/SETFLAGS ioctls (FATE#306586). - patches.suse/btrfs-add-checks-to-verify-dir-items-are-correct.patch: Btrfs: add checks to verify dir items are correct (FATE#306586). - patches.suse/btrfs-add-helper-function-free_bitmap.patch: btrfs: Add helper function free_bitmap() (FATE#306586). - patches.suse/btrfs-add-initial-tracepoint-support-for-btrfs.patch: Btrfs: add initial tracepoint support for btrfs (FATE#306586). - patches.suse/btrfs-add-lzo-compression-support.patch: btrfs: Add lzo compression support (FATE#306586). - patches.suse/btrfs-add-migrate-page-for-metadata-inode.patch: Btrfs: add migrate page for metadata inode (FATE#306586). - patches.suse/btrfs-add-missing-spin_unlock-to-a-rare-exit-path.patch: btrfs: add missing spin_unlock to a rare exit path (FATE#306586). - patches.suse/btrfs-add-readonly-snapshots-support.patch: Btrfs: Add readonly snapshots support (FATE#306586). - patches.suse/btrfs-add-snap_create_async-ioctl.patch: Btrfs: add SNAP_CREATE_ASYNC ioctl (FATE#306586). - patches.suse/btrfs-add-start_sync-wait_sync-ioctls.patch: Btrfs: add START_SYNC, WAIT_SYNC ioctls (FATE#306586). - patches.suse/btrfs-add-support-for-mixed-data-metadata-block-grou.patch: Btrfs: add support for mixed data+metadata block groups (FATE#306586). - patches.suse/btrfs-adjust-btrfs_discard_extent-return-errors-and-.patch: Btrfs: adjust btrfs_discard_extent() return errors and trimmed bytes (FATE#306586). - patches.suse/btrfs-allow-balance-to-explicitly-allocate-chunks-as.patch: Btrfs: allow balance to explicitly allocate chunks as it relocates (FATE#306586). - patches.suse/btrfs-allow-subvol-deletion-by-unprivileged-user-wit.patch: Btrfs: allow subvol deletion by unprivileged user with -o user_subvol_rm_allowed (FATE#306586). - patches.suse/btrfs-allow-to-add-new-compression-algorithm.patch: btrfs: Allow to add new compression algorithm (FATE#306586). - patches.suse/btrfs-allow-to-specify-compress-method-when-defrag.patch: btrfs: Allow to specify compress method when defrag (FATE#306586). - patches.suse/btrfs-allow-unaligned-dio.patch: Btrfs: allow unaligned DIO (FATE#306586). - patches.suse/btrfs-async-transaction-commit.patch: Btrfs: async transaction commit (FATE#306586). - patches.suse/btrfs-avoid-accessing-unmapped-kernel-address.patch: Btrfs: Avoid accessing unmapped kernel address (FATE#306586). - patches.suse/btrfs-avoid-null-pointer-deref-in-try_release_extent.patch: Btrfs: avoid NULL pointer deref in try_release_extent_buffer (FATE#306586). - patches.suse/btrfs-avoid-taking-the-chunk_mutex-in-do_chunk_alloc.patch: Btrfs: avoid taking the chunk_mutex in do_chunk_alloc (FATE#306586). - patches.suse/btrfs-avoid-taking-the-trans_mutex-in-btrfs_end_tran.patch: Btrfs: avoid taking the trans_mutex in btrfs_end_transaction (FATE#306586). - patches.suse/btrfs-avoid-uninit-variable-warnings-in-ordered-data.patch: Btrfs: avoid uninit variable warnings in ordered-data.c (FATE#306586). - patches.suse/btrfs-break-out-of-shrink_delalloc-earlier.patch: Btrfs: break out of shrink_delalloc earlier (FATE#306586). - patches.suse/btrfs-catch-errors-from-btrfs_sync_log.patch: Btrfs: catch errors from btrfs_sync_log (FATE#306586). - patches.suse/btrfs-change-reserved_extents-to-an-atomic_t.patch: Btrfs: change reserved_extents to an atomic_t (FATE#306586). - patches.suse/btrfs-check-cache-caching_ctl-before-returning-if-ca.patch: Btrfs: check cache->caching_ctl before returning if caching has started (FATE#306586). - patches.suse/btrfs-check-for-duplicate-iov_base-s-when-doing-dio-.patch: Btrfs: check for duplicate iov_base's when doing dio reads (FATE#306586). - patches.suse/btrfs-check-free-space-in-block-group-before-searchi.patch: Btrfs: check free space in block group before searching for a cluster (FATE#306586). - patches.suse/btrfs-check-if-btrfs_next_leaf-returns-error-in-btrfs_listxattr.patch: Btrfs: Check if btrfs_next_leaf() returns error in btrfs_listxattr() (FATE#306586). - patches.suse/btrfs-check-if-btrfs_next_leaf-returns-error-in-btrfs_real_readdir.patch: Btrfs: Check if btrfs_next_leaf() returns error in btrfs_real_readdir() (FATE#306586). - patches.suse/btrfs-check-if-dest_offset-is-block-size-aligned-bef.patch: btrfs: Check if dest_offset is block-size aligned before cloning file (FATE#306586). - patches.suse/btrfs-check-items-for-correctness-as-we-search.patch: Btrfs: check items for correctness as we search (FATE#306586). - patches.suse/btrfs-check-link-counter-overflow-in-link-2.patch: btrfs: check link counter overflow in link(2) (FATE#306586). - patches.suse/btrfs-check-mergeable-free-space-when-removing-a-clu.patch: btrfs: Check mergeable free space when removing a cluster (FATE#306586). - patches.suse/btrfs-check-null-or-not.patch: btrfs: check NULL or not (FATE#306586). - patches.suse/btrfs-check-return-value-of-alloc_extent_map.patch: Btrfs: check return value of alloc_extent_map() (FATE#306586). - patches.suse/btrfs-check-return-value-of-btrfs_alloc_path.patch: Btrfs: check return value of btrfs_alloc_path() (FATE#306586). - patches.suse/btrfs-check-return-value-of-btrfs_search_slot-proper.patch: Btrfs: check return value of btrfs_search_slot properly (FATE#306586). - patches.suse/btrfs-check-return-value-of-btrfs_start_ioctl_transa.patch: btrfs: check return value of btrfs_start_ioctl_transaction() properly (FATE#306586). - patches.suse/btrfs-check-return-value-of-kmalloc.patch: Btrfs: check return value of kmalloc() (FATE#306586). - patches.suse/btrfs-check-return-value-of-read_tree_block.patch: Btrfs: check return value of read_tree_block() (FATE#306586). - patches.suse/btrfs-check-validity-before-setting-an-acl.patch: Btrfs: Check validity before setting an acl (FATE#306586). - patches.suse/btrfs-checking-null-or-not-in-some-functions.patch: btrfs: checking NULL or not in some functions (FATE#306586). - patches.suse/btrfs-cleanup-duplicate-bio-allocating-functions.patch: btrfs: cleanup duplicate bio allocating functions (FATE#306586). - patches.suse/btrfs-cleanup-error-handling-in-btrfs_unlink_inode.patch: btrfs: cleanup error handling in btrfs_unlink_inode() (FATE#306586). - patches.suse/btrfs-cleanup-error-handling-in-inode.c.patch: Btrfs: cleanup error handling in inode.c (FATE#306586). - patches.suse/btrfs-cleanup-error-handling-in-the-truncate-path.patch: Btrfs: cleanup error handling in the truncate path (FATE#306586). - patches.suse/btrfs-cleanup-how-we-setup-free-space-clusters.patch: Btrfs: cleanup how we setup free space clusters (FATE#306586). - patches.suse/btrfs-cleanup-some-bug_on.patch: Btrfs: cleanup some BUG_ON() (FATE#306586). - patches.suse/btrfs-cleanup-warnings-from-gcc-4.6-nonbugs.patch: Btrfs: cleanup warnings from gcc 4.6 (nonbugs) (FATE#306586). - patches.suse/btrfs-clear-__gfp_fs-flag-in-the-space-cache-inode.patch: btrfs: clear __GFP_FS flag in the space cache inode (FATE#306586). - patches.suse/btrfs-close_bdev_exclusive-should-use-the-same-flags.patch: btrfs: close_bdev_exclusive() should use the same @flags as the matching open_bdev_exclusive() (FATE#306586). - patches.suse/btrfs-constify-xattr_handler.patch: btrfs: constify xattr_handler (FATE#306586). - patches.suse/btrfs-create-special-free-space-cache-inode.patch: Btrfs: create special free space cache inode (FATE#306586). - patches.suse/btrfs-deal-with-dio-bios-that-span-more-than-one-ord.patch: Btrfs: deal with DIO bios that span more than one ordered extent (FATE#306586). - patches.suse/btrfs-deal-with-errors-from-updating-the-tree-log.patch: Btrfs: deal with errors from updating the tree log (FATE#306586). - patches.suse/btrfs-deal-with-min_bytes-appropriately-when-looking.patch: Btrfs: deal with min_bytes appropriately when looking for a cluster (FATE#306586). - patches.suse/btrfs-deal-with-short-returns-from-copy_from_user.patch: Btrfs: deal with short returns from copy_from_user (FATE#306586). - patches.suse/btrfs-deal-with-space-cache-errors-better.patch: Btrfs: deal with space cache errors better (FATE#306586). - patches.suse/btrfs-deal-with-the-case-that-we-run-out-of-space-in.patch: Btrfs: deal with the case that we run out of space in the cache (FATE#306586). - patches.suse/btrfs-do-aio_write-instead-of-write.patch: Btrfs: do aio_write instead of write (FATE#306586). - patches.suse/btrfs-do-error-checking-in-btrfs_del_csums.patch: Btrfs: do error checking in btrfs_del_csums (FATE#306586). - patches.suse/btrfs-do-not-bug-if-we-fail-to-remove-the-orphan-ite.patch: Btrfs: do not BUG if we fail to remove the orphan item for dead snapshots (FATE#306586). - patches.suse/btrfs-do-not-call-btrfs_update_inode-in-endio-if-not.patch: Btrfs: do not call btrfs_update_inode in endio if nothing changed (FATE#306586). - patches.suse/btrfs-do-not-do-fast-caching-if-we-are-allocating-bl.patch: Btrfs: do not do fast caching if we are allocating blocks for tree_root (FATE#306586). - patches.suse/btrfs-do-not-release-more-reserved-bytes-to-the-glob.patch: Btrfs: do not release more reserved bytes to the global_block_rsv than we need (FATE#306586). - patches.suse/btrfs-do-not-use-async-submit-for-small-dio-io-s.patch: Btrfs: do not use async submit for small DIO io's (FATE#306586). - patches.suse/btrfs-don-t-allocate-chunks-as-aggressively.patch: Btrfs: don't allocate chunks as aggressively (FATE#306586). - patches.suse/btrfs-don-t-allocate-dip-csums-when-doing-writes.patch: Btrfs: don't allocate dip->csums when doing writes (FATE#306586). - patches.suse/btrfs-don-t-be-as-aggressive-about-using-bitmaps.patch: Btrfs: don't be as aggressive about using bitmaps (FATE#306586). - patches.suse/btrfs-don-t-force-chunk-allocation-in-find_free_exte.patch: Btrfs: don't force chunk allocation in find_free_extent (FATE#306586). - patches.suse/btrfs-don-t-loop-forever-on-bad-btree-blocks.patch: Btrfs: don't loop forever on bad btree blocks (FATE#306586). - patches.suse/btrfs-don-t-mess-with-i_nlink-of-unlocked-inode-in-r.patch: btrfs: don't mess with i_nlink of unlocked inode in rename() (FATE#306586). - patches.suse/btrfs-don-t-pass-null-ptr-to-func-that-may-deref-it.patch: btrfs: Don't pass NULL ptr to func that may deref it (FATE#306586). - patches.suse/btrfs-don-t-release-pages-when-we-can-t-clear-the-up.patch: Btrfs: don't release pages when we can't clear the uptodate bits (FATE#306586). - patches.suse/btrfs-don-t-return-acl-info-when-mounting-with-noacl.patch: Btrfs: Don't return acl info when mounting with noacl option (FATE#306586). - patches.suse/btrfs-don-t-split-dio-bios-if-we-don-t-have-to.patch: Btrfs: don't split dio bios if we don't have to (FATE#306586). - patches.suse/btrfs-don-t-use-migrate-page-without-config_migratio.patch: Btrfs: don't use migrate page without CONFIG_MIGRATION (FATE#306586). - patches.suse/btrfs-don-t-warn-if-we-get-enospc-in-btrfs_block_rsv.patch: Btrfs: don't warn if we get ENOSPC in btrfs_block_rsv_check (FATE#306586). - patches.suse/btrfs-don-t-warn-in-btrfs_add_orphan.patch: Btrfs: don't warn in btrfs_add_orphan (FATE#306586). - patches.suse/btrfs-drop-__exit-attribute-on-btrfs_exit_compress.patch: btrfs: Drop __exit attribute on btrfs_exit_compress (FATE#306586). - patches.suse/btrfs-drop-unused-variable-in-block_alloc_rsv.patch: Btrfs: drop unused variable in block_alloc_rsv (FATE#306586). - patches.suse/btrfs-eio-when-we-fail-to-read-tree-roots.patch: Btrfs: EIO when we fail to read tree roots (FATE#306586). - patches.suse/btrfs-end_bio_extent_readpage-should-look-for-locked.patch: Btrfs end_bio_extent_readpage should look for locked bits (FATE#306586). - patches.suse/btrfs-exclude-super-blocks-when-we-read-in-block-gro.patch: Btrfs: exclude super blocks when we read in block groups (FATE#306586). - patches.suse/btrfs-extract-duplicate-decompress-code.patch: btrfs: Extract duplicate decompress code (FATE#306586). - patches.suse/btrfs-fail-if-we-try-to-use-hole-punch.patch: Btrfs: fail if we try to use hole punch (FATE#306586). - patches.suse/btrfs-fix-__btrfs_map_block-on-32-bit-machines.patch: Btrfs: fix __btrfs_map_block on 32 bit machines (FATE#306586). - patches.suse/btrfs-fix-a-crash-when-mounting-a-subvolume.patch: Btrfs: Fix a crash when mounting a subvolume (FATE#306586). - patches.suse/btrfs-fix-balance-panic.patch: Btrfs: Fix balance panic (FATE#306586). - patches.suse/btrfs-fix-btrfs-b0rkage.patch: Fix btrfs b0rkage (FATE#306586). - patches.suse/btrfs-fix-btrfs_ioc_subvol_setflags-ioctl.patch: Btrfs: Fix BTRFS_IOC_SUBVOL_SETFLAGS ioctl (FATE#306586). - patches.suse/btrfs-fix-bugs-in-zlib-workspace.patch: btrfs: Fix bugs in zlib workspace (FATE#306586). - patches.suse/btrfs-fix-build-of-ctree.patch: fs/btrfs: Fix build of ctree (FATE#306586). - patches.suse/btrfs-fix-check_path_shared-so-it-returns-the-right-.patch: Btrfs: fix check_path_shared so it returns the right value (FATE#306586). - patches.suse/btrfs-fix-clone-ioctl-destination-file-size-expansio.patch: Btrfs: fix CLONE ioctl destination file size expansion to block boundary (FATE#306586). - patches.suse/btrfs-fix-clone-ioctl-where-range-is-adjacent-to-ext.patch: Btrfs: fix clone ioctl where range is adjacent to extent (FATE#306586). - patches.suse/btrfs-fix-compiler-warning-in-file.c.patch: Btrfs: fix compiler warning in file.c (FATE#306586). - patches.suse/btrfs-fix-compiler-warnings.patch: Btrfs: fix compiler warnings (FATE#306586). - patches.suse/btrfs-fix-deadlock-in-btrfs_commit_transaction.patch: Btrfs: fix deadlock in btrfs_commit_transaction (FATE#306586). - patches.suse/btrfs-fix-delalloc-checks-in-clone-ioctl.patch: Btrfs: fix delalloc checks in clone ioctl (FATE#306586). - patches.suse/btrfs-fix-df-regression.patch: Btrfs: fix df regression (FATE#306586). - patches.suse/btrfs-fix-dip-leak.patch: btrfs: fix dip leak (FATE#306586). - patches.suse/btrfs-fix-early-enospc-because-unused-calculated-wit.patch: btrfs: Fix early enospc because 'unused' calculated with wrong sign (FATE#306586). - patches.suse/btrfs-fix-error-handling-in-btrfs_get_sb.patch: Btrfs: fix error handling in btrfs_get_sb (FATE#306586). - patches.suse/btrfs-fix-error-handling-in-zlib.patch: btrfs: Fix error handling in zlib (FATE#306586). - patches.suse/btrfs-fix-fiemap-bugs-with-delalloc.patch: Btrfs: fix fiemap bugs with delalloc (FATE#306586). - patches.suse/btrfs-fix-fiemap.patch: Btrfs: fix fiemap (FATE#306586). - patches.suse/btrfs-fix-file-clone-when-source-offset-is-not-0.patch: Btrfs: Fix file clone when source offset is not 0 (FATE#306586). - patches.suse/btrfs-fix-formatting-in-file.c.patch: Btrfs: fix formatting in file.c (FATE#306586). - patches.suse/btrfs-fix-free-dip-and-dip-csums-twice.patch: btrfs: fix free dip and dip->csums twice (FATE#306586). - patches.suse/btrfs-fix-free-space-cache-leak.patch: Btrfs: fix free space cache leak (FATE#306586). - patches.suse/btrfs-fix-free-space-cache-when-there-are-pinned-ext.patch: Btrfs: fix free space cache when there are pinned extents and clusters V2 (FATE#306586). - patches.suse/btrfs-fix-how-we-deal-with-the-pages-array-in-the-wr.patch: Btrfs: fix how we deal with the pages array in the write path (FATE#306586). - patches.suse/btrfs-fix-incorrect-inode-nlink-in-btrfs_link.patch: Btrfs: Fix incorrect inode nlink in btrfs_link() (FATE#306586). - patches.suse/btrfs-fix-lockdep-warning-on-clone-ioctl.patch: Btrfs: fix lockdep warning on clone ioctl (FATE#306586). - patches.suse/btrfs-fix-memory-leak-at-umount.patch: Btrfs: Fix memory leak at umount (FATE#306586). - patches.suse/btrfs-fix-memory-leak-in-btrfs_init_new_device.patch: Btrfs - Fix memory leak in btrfs_init_new_device() (FATE#306586). - patches.suse/btrfs-fix-memory-leak-in-btrfs_ioctl_start_sync.patch: Btrfs: fix memory leak in btrfs_ioctl_start_sync() (FATE#306586). - patches.suse/btrfs-fix-memory-leak-in-btrfs_read_fs_root_no_radix.patch: btrfs: Fix memory leak in btrfs_read_fs_root_no_radix() (FATE#306586). - patches.suse/btrfs-fix-memory-leak-in-start_transaction.patch: Btrfs: fix memory leak in start_transaction() (FATE#306586). - patches.suse/btrfs-fix-memory-leak-in-writepage-fixup-work.patch: Btrfs: Fix memory leak in writepage fixup work (FATE#306586). - patches.suse/btrfs-fix-memory-leak-of-empty-filesystem-after-bala.patch: Btrfs: fix memory leak of empty filesystem after balance (FATE#306586). - patches.suse/btrfs-fix-memory-leak-on-finding-existing-super.patch: Btrfs: Fix memory leak on finding existing super (FATE#306586). - patches.suse/btrfs-fix-memory-leaks-in-btrfs_new_inode.patch: Btrfs: fix memory leaks in btrfs_new_inode() (FATE#306586). - patches.suse/btrfs-fix-missing-break-in-switch-phrase.patch: btrfs: fix missing break in switch phrase (FATE#306586). - patches.suse/btrfs-fix-missing-mutex_unlock-in-btrfs_del_dir_entr.patch: Btrfs: fix missing mutex_unlock in btrfs_del_dir_entries_in_log() (FATE#306586). - patches.suse/btrfs-fix-more-estale-problems-with-nfs.patch: Btrfs: fix more ESTALE problems with NFS (FATE#306586). - patches.suse/btrfs-fix-not-enough-reserved-space.patch: btrfs: fix not enough reserved space (FATE#306586). - patches.suse/btrfs-fix-off-by-one-while-setting-block-groups-read.patch: Btrfs: fix off by one while setting block groups readonly (FATE#306586). - patches.suse/btrfs-fix-oops-for-defrag-with-compression-turned-on.patch: Btrfs: Fix oops for defrag with compression turned on (FATE#306586). - patches.suse/btrfs-fix-oops-of-empty-filesystem-after-balance.patch: Btrfs: fix OOPS of empty filesystem after balance (FATE#306586). - patches.suse/btrfs-fix-page-count-calculation.patch: Btrfs: Fix page count calculation (FATE#306586). - patches.suse/btrfs-fix-page-leak-in-compressed-writeback-path.patch: Btrfs: Fix page leak in compressed writeback path (FATE#306586). - patches.suse/btrfs-fix-page-private-races.patch: Btrfs: fix page->private races (FATE#306586). - patches.suse/btrfs-fix-panic-caused-by-direct-io.patch: btrfs: fix panic caused by direct IO (FATE#306586). - patches.suse/btrfs-fix-possible-deadlock-by-clearing-__gfp_fs-fla.patch: btrfs: fix possible deadlock by clearing __GFP_FS flag (FATE#306586). - patches.suse/btrfs-fix-preallocation-and-nodatacow-checks-in-o_di.patch: Btrfs: fix preallocation and nodatacow checks in O_DIRECT (FATE#306586). - patches.suse/btrfs-fix-proc-mounts-info.patch: Btrfs: fix /proc/mounts info (FATE#306586). - patches.suse/btrfs-fix-race-between-btrfs_get_sb-and-umount.patch: Btrfs - fix race between btrfs_get_sb() and umount (FATE#306586). - patches.suse/btrfs-fix-raid-code-for-removing-missing-drives.patch: Btrfs: fix raid code for removing missing drives (FATE#306586). - patches.suse/btrfs-fix-regressions-in-copy_from_user-handling.patch: Btrfs: fix regressions in copy_from_user handling (FATE#306586). - patches.suse/btrfs-fix-reservation-code-for-mixed-block-groups.patch: Btrfs: fix reservation code for mixed block groups (FATE#306586). - patches.suse/btrfs-fix-return-value-check-of-btrfs_join_transacti.patch: btrfs: fix return value check of btrfs_join_transaction() (FATE#306586). - patches.suse/btrfs-fix-return-value-check-of-btrfs_start_transact.patch: btrfs: fix return value check of btrfs_start_transaction() (FATE#306586). - patches.suse/btrfs-fix-return-value-of-setflags-ioctl.patch: Btrfs: fix return value of setflags ioctl (FATE#306586). - patches.suse/btrfs-fix-several-uncheck-memory-allocations.patch: btrfs: fix several uncheck memory allocations (FATE#306586). - patches.suse/btrfs-fix-split_leaf-double-split-corner-case.patch: Btrfs: fix split_leaf double split corner case (FATE#306586). - patches.suse/btrfs-fix-subvol_sem-leak-in-btrfs_rename.patch: Btrfs: fix subvol_sem leak in btrfs_rename() (FATE#306586). - patches.suse/btrfs-fix-subvolume-mount-by-name-problem-when-defau.patch: Btrfs: fix subvolume mount by name problem when default mount subvolume is set (FATE#306586). - patches.suse/btrfs-fix-sync-subvol-snapshot-creation.patch: Btrfs: fix sync subvol/snapshot creation (FATE#306586). - patches.suse/btrfs-fix-the-df-ioctl-to-report-raid-types.patch: Btrfs: fix the df ioctl to report raid types (FATE#306586). - patches.suse/btrfs-fix-threshold-calculation-for-block-groups-sma.patch: btrfs: Fix threshold calculation for block groups smaller than 1GB (FATE#306586). - patches.suse/btrfs-fix-typo-in-fallocate-to-make-it-honor-actual-.patch: Btrfs: fix typo in fallocate to make it honor actual size (FATE#306586). - patches.suse/btrfs-fix-uncheck-memory-allocation-in-btrfs_submit_.patch: btrfs: fix uncheck memory allocation in btrfs_submit_compressed_read (FATE#306586). - patches.suse/btrfs-fix-uncheck-memory-allocations.patch: Btrfs: fix uncheck memory allocations (FATE#306586). - patches.suse/btrfs-fix-use-after-free-in-o_direct.patch: Btrfs: fix use after free in O_DIRECT (FATE#306586). - patches.suse/btrfs-fix-user-annotation-in-ioctl.c.patch: fix user annotation in ioctl.c (FATE#306586). - patches.suse/btrfs-fix-variables-set-but-not-read-bugs-found-by-g.patch: Btrfs: Fix variables set but not read (bugs found by gcc 4.6) (FATE#306586). - patches.suse/btrfs-fix-wrong-allocating-flag-when-reading-page.patch: btrfs: fix wrong allocating flag when reading page (FATE#306586). - patches.suse/btrfs-fix-wrong-calculation-of-stripe-size.patch: btrfs: fix wrong calculation of stripe size (FATE#306586). - patches.suse/btrfs-fix-wrong-data-space-statistics.patch: btrfs: fix wrong data space statistics (FATE#306586). - patches.suse/btrfs-fix-wrong-free-space-information-of-btrfs.patch: btrfs: fix wrong free space information of btrfs (FATE#306586). - patches.suse/btrfs-fixup-return-code-for-btrfs_del_orphan_item.patch: Btrfs: fixup return code for btrfs_del_orphan_item (FATE#306586). - patches.suse/btrfs-forced-readonly-mounts-on-errors.patch: Btrfs: forced readonly mounts on errors (FATE#306586). - patches.suse/btrfs-free-bitmaps-properly-when-evicting-the-cache.patch: Btrfs: free bitmaps properly when evicting the cache (FATE#306586). - patches.suse/btrfs-free-correct-pointer-after-using-strsep.patch: Btrfs: Free correct pointer after using strsep (FATE#306586). - patches.suse/btrfs-free-fully-occupied-bitmap-in-cluster.patch: btrfs: Free fully occupied bitmap in cluster (FATE#306586). - patches.suse/btrfs-handle-errors-in-btrfs_orphan_cleanup.patch: Btrfs: handle errors in btrfs_orphan_cleanup (FATE#306586). - patches.suse/btrfs-handle-nfs-lookups-properly.patch: Btrfs: handle NFS lookups properly (FATE#306586). - patches.suse/btrfs-handle-no-memory-properly-in-prepare_pages.patch: Btrfs: handle no memory properly in prepare_pages (FATE#306586). - patches.suse/btrfs-handle-the-space_cache-option-properly.patch: Btrfs: handle the space_cache option properly (FATE#306586). - patches.suse/btrfs-hold-i_mutex-when-calling-btrfs_log_dentry_saf.patch: Btrfs: hold i_mutex when calling btrfs_log_dentry_safe (FATE#306586). - patches.suse/btrfs-inode.c-add-missing-is_err-test.patch: fs/btrfs/inode.c: Add missing IS_ERR test (FATE#306586). - patches.suse/btrfs-let-the-user-know-space-caching-is-enabled.patch: Btrfs: let the user know space caching is enabled (FATE#306586). - patches.suse/btrfs-load-free-space-cache-if-it-exists.patch: Btrfs: load free space cache if it exists (FATE#306586). - patches.suse/btrfs-make-1-bit-signed-fileds-unsigned.patch: btrfs: make 1-bit signed fileds unsigned (FATE#306586). - patches.suse/btrfs-make-async-snapshot-ioctl-more-generic.patch: Btrfs: Make async snapshot ioctl more generic (FATE#306586). - patches.suse/btrfs-make-btrfs_add_nondir-take-parent-inode-as-an-.patch: Btrfs: make btrfs_add_nondir take parent inode as an argument (FATE#306586). - patches.suse/btrfs-make-btrfs_map_block-return-entire-free-extent.patch: Btrfs: make btrfs_map_block() return entire free extent for each device of RAID0/1/10/DUP (FATE#306586). - patches.suse/btrfs-make-btrfs_rm_device-fail-gracefully.patch: Btrfs: make btrfs_rm_device() fail gracefully (FATE#306586). - patches.suse/btrfs-make-inode-ref-log-recovery-faster.patch: btrfs: make inode ref log recovery faster (FATE#306586). - patches.suse/btrfs-make-shrink_delalloc-a-little-friendlier.patch: Btrfs: make shrink_delalloc a little friendlier (FATE#306586). - patches.suse/btrfs-make-snap_destroy-async.patch: Btrfs: make SNAP_DESTROY async (FATE#306586). - patches.suse/btrfs-make-sure-new-inode-size-is-ok-in-fallocate.patch: Btrfs: make sure new inode size is ok in fallocate (FATE#306586). - patches.suse/btrfs-make-sure-not-to-return-overlapping-extents-to.patch: Btrfs: make sure not to return overlapping extents to fiemap (FATE#306586). - patches.suse/btrfs-make-sure-search_bitmap-finds-something-in-rem.patch: Btrfs: make sure search_bitmap finds something in remove_from_bitmap (FATE#306586). - patches.suse/btrfs-make-sure-to-remove-the-orphan-item-from-the-i.patch: Btrfs: make sure to remove the orphan item from the in-memory list (FATE#306586). - patches.suse/btrfs-make-the-chunk-allocator-utilize-the-devices-b.patch: btrfs: make the chunk allocator utilize the devices better (FATE#306586). - patches.suse/btrfs-make-the-feature-checks-in-fallocate-future-proof.patch: make the feature checks in ->fallocate future proof (FATE#306586). - patches.suse/btrfs-make-uncache_state-unconditional.patch: Btrfs: make uncache_state unconditional (FATE#306586). - patches.suse/btrfs-make-update_reserved_bytes-public.patch: Btrfs: make update_reserved_bytes() public (FATE#306586). - patches.suse/btrfs-map-the-inode-item-when-doing-fill_inode_item.patch: Btrfs: map the inode item when doing fill_inode_item (FATE#306586). - patches.suse/btrfs-mark-the-bio-with-an-error-if-we-have-a-failur.patch: Btrfs: mark the bio with an error if we have a failure in dio (FATE#306586). - patches.suse/btrfs-mem-leak-in-btrfs_get_acl.patch: btrfs: Mem leak in btrfs_get_acl() (FATE#306586). - patches.suse/btrfs-mount-failure-return-value-fix.patch: btrfs: mount failure return value fix (FATE#306586). - patches.suse/btrfs-move-o_direct-space-reservation-to-btrfs_direc.patch: Btrfs: move O_DIRECT space reservation to btrfs_direct_IO (FATE#306586). - patches.suse/btrfs-only-add-orphan-items-when-truncating.patch: Btrfs: only add orphan items when truncating (FATE#306586). - patches.suse/btrfs-only-retry-transaction-reservation-once.patch: Btrfs: only retry transaction reservation once (FATE#306586). - patches.suse/btrfs-per-file-directory-controls-for-cow-and-compre.patch: Btrfs: Per file/directory controls for COW and compression (FATE#306586). - patches.suse/btrfs-prevent-heap-corruption-in-btrfs_ioctl_space_i.patch: btrfs: prevent heap corruption in btrfs_ioctl_space_info() (FATE#306586). - patches.suse/btrfs-prevent-raid-level-downgrades-when-space-is-lo.patch: Btrfs: prevent RAID level downgrades when space is low (FATE#306586). - patches.suse/btrfs-properly-access-unaligned-checksum-buffer.patch: btrfs: properly access unaligned checksum buffer (FATE#306586). - patches.suse/btrfs-properly-handle-overlapping-areas-in-memmove_e.patch: btrfs: properly handle overlapping areas in memmove_extent_buffer (FATE#306586). - patches.suse/btrfs-put-enospc-debugging-under-a-mount-option.patch: Btrfs: put ENOSPC debugging under a mount option (FATE#306586). - patches.suse/btrfs-put-the-right-bio-if-we-have-an-error.patch: Btrfs: put the right bio if we have an error (FATE#306586). - patches.suse/btrfs-pwrite-blocked-when-writing-from-the-mmaped-bu.patch: Btrfs: pwrite blocked when writing from the mmaped buffer of the same page (FATE#306586). - patches.suse/btrfs-re-work-delalloc-flushing.patch: Btrfs: re-work delalloc flushing (FATE#306586). - patches.suse/btrfs-refactor-btrfs_ioctl_snap_create.patch: Btrfs: Refactor btrfs_ioctl_snap_create() (FATE#306586). - patches.suse/btrfs-remove-warn_on-from-use_block_rsv.patch: Btrfs: remove warn_on from use_block_rsv (FATE#306586). - patches.suse/btrfs-restructure-find_free_dev_extent.patch: btrfs: restructure find_free_dev_extent() (FATE#306586). - patches.suse/btrfs-restructure-try_release_extent_buffer.patch: Btrfs: restructure try_release_extent_buffer() (FATE#306586). - patches.suse/btrfs-return-error-if-the-range-we-want-to-map-is-bo.patch: Btrfs: return error if the range we want to map is bogus (FATE#306586). - patches.suse/btrfs-reuse-the-extent_map-we-found-when-calling-btr.patch: Btrfs: reuse the extent_map we found when calling btrfs_get_extent (FATE#306586). - patches.suse/btrfs-rework-how-we-reserve-metadata-bytes.patch: Btrfs: rework how we reserve metadata bytes (FATE#306586). - patches.suse/btrfs-rework-o_direct-enospc-handling.patch: Btrfs: rework O_DIRECT enospc handling (FATE#306586). - patches.suse/btrfs-set-file-size-correctly-in-file-clone.patch: btrfs: Set file size correctly in file clone (FATE#306586). - patches.suse/btrfs-set-fmode_excl-in-btrfs_device-mode.patch: Btrfs: set FMODE_EXCL in btrfs_device->mode (FATE#306586). - patches.suse/btrfs-set-trans-to-null-in-reserve_metadata_bytes-if.patch: Btrfs: set trans to null in reserve_metadata_bytes if we commit the transaction (FATE#306586). - patches.suse/btrfs-setup-blank-root-and-fs_info-for-mount-time.patch: Btrfs: setup blank root and fs_info for mount time (FATE#306586). - patches.suse/btrfs-show-device-attr-correctly-for-symlinks.patch: btrfs: Show device attr correctly for symlinks (FATE#306586). - patches.suse/btrfs-simplify-our-write-path.patch: Btrfs: simplify our write path (FATE#306586). - patches.suse/btrfs-stop-trying-to-shrink-delalloc-if-there-are-no.patch: Btrfs: stop trying to shrink delalloc if there are no inodes to reclaim (FATE#306586). - patches.suse/btrfs-switch-the-extent-buffer-rbtree-into-a-radix-t.patch: Btrfs: Switch the extent buffer rbtree into a radix tree (FATE#306586). - patches.suse/btrfs-the-file-argument-for-fsync-is-never-null.patch: Btrfs: The file argument for fsync() is never null (FATE#306586). - patches.suse/btrfs-try-to-reclaim-some-space-when-chunk-allocatio.patch: btrfs: try to reclaim some space when chunk allocation fails (FATE#306586). - patches.suse/btrfs-tune-the-chunk-allocation-to-5-of-the-fs-as-me.patch: Btrfs: tune the chunk allocation to 5% of the FS as metadata (FATE#306586). - patches.suse/btrfs-update-inode-ctime-when-using-links.patch: Btrfs: update inode ctime when using links (FATE#306586). - patches.suse/btrfs-update-stats-when-allocating-from-a-cluster.patch: btrfs: Update stats when allocating from a cluster (FATE#306586). - patches.suse/btrfs-use-a-slab-for-the-free-space-entries.patch: Btrfs: use a slab for the free space entries (FATE#306586). - patches.suse/btrfs-use-async-helpers-for-dio-write-checksumming.patch: Btrfs: use async helpers for DIO write checksumming (FATE#306586). - patches.suse/btrfs-use-dget_parent-where-we-can-updated.patch: Btrfs: use dget_parent where we can UPDATED (FATE#306586). - patches.suse/btrfs-use-err_cast-helpers.patch: Btrfs: Use ERR_CAST helpers (FATE#306586). - patches.suse/btrfs-use-gfp_nofs-instead-of-gfp_kernel.patch: btrfs: use GFP_NOFS instead of GFP_KERNEL (FATE#306586). - patches.suse/btrfs-use-mark_inode_dirty-when-expanding-the-file.patch: Btrfs: use mark_inode_dirty when expanding the file (FATE#306586). - patches.suse/btrfs-use-memdup_user-helpers.patch: Btrfs: use memdup_user helpers (FATE#306586). - patches.suse/btrfs-use-rcu-instead-of-a-spinlock-to-protect-the-r.patch: Btrfs: use RCU instead of a spinlock to protect the root node (FATE#306586). - patches.suse/btrfs-use-the-flusher-threads-for-delalloc-throttlin.patch: Btrfs: use the flusher threads for delalloc throttling (FATE#306586). - patches.suse/btrfs-use-the-global-block-reserve-if-we-cannot-rese.patch: Btrfs: use the global block reserve if we cannot reserve space (FATE#306586). - patches.suse/btrfs-using-cached-extent_state-in-set-unlock-combin.patch: btrfs: using cached extent_state in set/unlock combinations (FATE#306586). - patches.suse/btrfs-write-out-free-space-cache.patch: Btrfs: write out free space cache (FATE#306586). - patches.suse/direct-io-add-a-hook-for-the-fs-to-provide-its-own-s.patch: direct-io: add a hook for the fs to provide its own submit_bio function (FATE#306586). - patches.suse/exportfs-return-the-minimum-required-handle-size.patch: exportfs: Return the minimum required handle size (FATE#306586). - patches.suse/fs-add-fitrim-ioctl.patch: fs: Add FITRIM ioctl (FATE#306586). - patches.suse/writeback-add-new-functions-for-triggering-inode-writeback.patch: Add new functions for triggering inode writeback (FATE#306586). - patches.xen/tmem: Refresh.- patches.arch/acpi_handle_root_level_devices.patch: ACPI: use _HID when supplied by root-level devices (bnc#684852).- Add missing fixes from 2.6.36: * patches.suse/blkio-Fix-return-code-for-mkdir-calls.patch: blkio: Fix return code for mkdir calls (FATE#311692). * patches.suse/block-fix-blk_rq_map_kern-bio-direction-flag.patch: block: fix blk_rq_map_kern bio direction flag (FATE#311692). * patches.suse/block-make-sure-that-REQ_-types-are-seen-even-with.patch: block: make sure that REQ_* types are seen even with CONFIG_BLOCK=n (FATE#311692). * patches.suse/cfq-iosched-Do-group-share-accounting-in-IOPS-when.patch: cfq-iosched: Do group share accounting in IOPS when slice_idle=0 (FATE#311692). * patches.suse/cfq-iosched-Documentation-help-for-new-tunables.patch: cfq-iosched: Documentation help for new tunables (FATE#311692). * patches.suse/cfq-iosched-Implement-tunable-group_idle.patch: cfq-iosched: Implement tunable group_idle (FATE#311692). * patches.suse/cfq-iosched-blktrace-print-per-slice-sector-stats.patch: cfq-iosched: blktrace print per slice sector stats (FATE#311692). * patches.suse/cfq-iosched-fix-a-kernel-OOPs-when-usb-key-is-inser.patch: cfq-iosched: fix a kernel OOPs when usb key is inserted (FATE#311692). * patches.suse/sd-remove-q-prepare_flush_fn-completely.patch: block: remove q->prepare_flush_fn completely (FATE#311692). - Rediff patches to apply: * patches.suse/block-add-secure-discard.patch * patches.suse/block-implement-an-unprep-function-corresponding-di.patch * patches.suse/block-remove-q-prepare_flush_fn-completely.patch * patches.suse/block-remove-wrappers-for-request-type-flags.patch * patches.suse/block-unify-flags-for-struct-bio-and-struct-request.patch * patches.suse/dm-do-not-initialise-full-request-queue-when-bio-ba.patch * patches.suse/dm-stop-using-q-prepare_flush_fn.patch * patches.suse/scsi-remove-wrappers-from-request-type-flags.patch * patches.suse/scsi-stop-using-q-prepare_flush_fn.patch - series.conf: Re-enable fixes from 2.6.36- patches.suse/cgroups-Add-WARN_ON-on-empty-subsystems.patch: Delete - no more needed after fixed patches.suse/cgroups-revamp-subsys-array.patch.- patches.suse/cgroups-revamp-subsys-array.patch: Refresh - added forgotten part of the patch- patches.fixes/oom-filter-tasks-not-sharing-the-same-cpuset.patch: oom: filter tasks not sharing the same cpuset (bnc#693636).- patches.suse/cgroups-Add-WARN_ON-on-empty-subsystems.patch: cgroups: Add WARN_ON on empty subsystems (FATE#311054). - patches.suse/sched-cgroup-Fix-cgroup_subsys-exit-callback: Revert to original patch. - series.conf: Disable patches.xen/xen-deprecate-barrier-fixup to make Xen build again.- Revert block backport to v2.6.35 level and disabling patches - Add correct mainline version: * patches.suse/Revert-block-improve-queue_should_plug-by-lookin.patch * patches.suse/bio-fs-separate-out-bio_types.h-and-define-READ-WR.patch * patches.suse/bio-fs-update-RWA_MASK-READA-and-SWRITE-to-match.patch * patches.suse/bio-integrity.c-remove-dependency-on-__GFP_NOFAIL.patch * patches.suse/blk-cgroup-Fix-an-RCU-warning-in-blkiocg_create.patch * patches.suse/blkdev-add-blkdev_issue_zeroout-helper-function.patch: * patches.suse/blkdev-allow-async-blkdev_issue_flush-requests.patch: * patches.suse/blkdev-check-for-valid-request-queue-before-issuing.patch: * patches.suse/blkdev-fix-blkdev_issue_zeroout-return-value.patch: * patches.suse/blkdev-flush-disk-cache-on-fsync.patch: Refresh. * patches.suse/blkdev-generalize-flags-for-blkdev_issue_fn-functio.patch: * patches.suse/blkdev-move-blkdev_issue-helper-functions-to-separa.patch: * patches.suse/blkio-Add-io-controller-stats-like.patch * patches.suse/blkio-Increment-the-blkio-cgroup-stats-for-real-now.patch: * patches.suse/blkio-Remove-per-cfqq-nr_sectors-as-we-ll-be-passin.patch: * patches.suse/block-Adjust-elv_iosched_show-to-return-none-for.patch: * patches.suse/block-BARRIER-request-should-imply-SYNC.patch: * patches.suse/block-Don-t-count_vm_events-for-discard-bio-in-subm.patch: * patches.suse/block-Range-check-cpu-in-blk_cpu_to_group.patch: * patches.suse/block-add-function-call-to-switch-the-IO-scheduler.patch: * patches.suse/block-add-helpers-for-the-trivial-queue-flag-sysfs.patch: * patches.suse/block-add-secure-discard.patch: Refresh. * patches.suse/block-add-sysfs-knob-for-turning-off-disk-entropy-c.patch: * patches.suse/block-allow-initialization-of-previously-allocated.patch: * patches.suse/block-avoid-unconditionally-freeing-previously-allo.patch: * patches.suse/block-bd_start_claiming-cleanup.patch: Refresh. * patches.suse/block-bd_start_claiming-fix-module-refcount.patch: * patches.suse/block-disallow-FS-recursion-from-sb_issue_discard-a.patch: * patches.suse/block-don-t-allocate-a-payload-for-discard-request.patch: * patches.suse/block-factor-out-bd_may_claim.patch: Refresh. * patches.suse/block-fix-DISCARD_BARRIER-requests.patch: Refresh. * patches.suse/block-fix-bad-use-of-min-on-different-types.patch: * patches.suse/block-fix-bio.bi_rw-handling.patch: Refresh. * patches.suse/block-fix-missing-export-of-blk_types.h.patch: * patches.suse/block-fix-problem-with-sending-down-discard-that-is.patch: * patches.suse/block-fix-some-more-cmd_type-cleanup-fallout.patch: * patches.suse/block-ide-simplify-bdops-set_capacity-to-unloc.patch: * patches.suse/block-implement-an-unprep-function-corresponding-di.patch: * patches.suse/block-implement-bd_claiming-and-claiming-block.patch: * patches.suse/block-improve-automatic-native-capacity-unlocking.patch: * patches.suse/block-introduce-REQ_FLUSH-flag.patch: Refresh. * patches.suse/block-kill-ISA_DMA_THRESHOLD-usage.patch: Refresh. * patches.suse/block-make-blk_init_free_list-and-elevator_init-ide.patch: * patches.suse/block-permit-PREFLUSH-and-POSTFLUSH-without-prepare.patch: * patches.suse/block-prevent-merges-of-discard-and-write-requests.patch: * patches.suse/block-put-dev-kobj-in-blk_register_queue-fail-path.patch: * patches.suse/block-remove-all-rcu-head-initializations.patch: * patches.suse/block-remove-duplicate-BUG_ON-in-bd_finish_claimi.patch: * patches.suse/block-remove-q-prepare_flush_fn-completely.patch: * patches.suse/block-remove-unused-REQ_TYPE_LINUX_BLOCK.patch: * patches.suse/block-remove-wrappers-for-request-type-flags.patch: * patches.suse/block-restart-partition-scan-after-resizing-a-devic.patch: * patches.suse/block-set-REQ_TYPE_FS-on-flush-requests.patch: * patches.suse/block-set-up-rq-rq_disk-properly-for-flush-request.patch: * patches.suse/block-unify-flags-for-struct-bio-and-struct-request.patch: * patches.suse/block-update-request-stacking-methods-to-support-di.patch: * patches.suse/block-use-struct-parsed_partitions-state-universal.patch: * patches.suse/buffer-make-invalidate_bdev-drain-all-percpu-LRU.patch: * patches.suse/cfq-Don-t-allow-queue-merges-for-queues-that-have-n.patch: * patches.suse/cfq-iosched-Do-not-idle-if-slice_idle-0.patch: * patches.suse/cfq-iosched-compact-io_context-radix_tree.patch: * patches.suse/cfq-iosched-fix-an-oops-caused-by-slab-leak.patch: * patches.suse/cfq-iosched-remove-dead_key-from-cfq_io_context.patch: * patches.suse/coda-fixup-clash-with-block-layer-REQ_-defines.patch: * patches.suse/elevator-fix-oops-on-early-call-to-elevator_change.patch: * patches.suse/fs-bio-integrity.c-return-ENOMEM-on-kmalloc-failur.patch: * patches.suse/gcc-4.6-block-fix-unused-but-set-variables-in-blk.patch: * patches.suse/gfs2-replace-barriers-with-explicit-flush-FUA-usa.patch: * patches.suse/jbd2-Modify-ASYNC_COMMIT-code-to-not-rely-on-queue.patch: * patches.suse/kill-BH_Ordered-flag.patch: Refresh. * patches.suse/laptop-mode-Make-flushes-per-device.patch: Refresh. * patches.suse/perf-0001-Single-patch-that-merges-f4c4176-into-sles11.patch: * patches.suse/scatterlist-prevent-invalid-free-when-alloc-fails.patch: * patches.suse/sched-cgroup-Fix-cgroup_subsys-exit-callback: * patches.suse/vfs-don-t-hold-s_umount-over-close_bdev_exclusive.patch: * patches.suse/vfs-rename-block_fsync-to-blkdev_fsync.patch: - Add missing patches from v2.6.35: * patches.suse/blk-cgroup-config-options-re-arrangement.patch: blk-cgroup: config options re-arrangement (FATE#311054). * patches.suse/blkio-Add-io_merged-stat.patch: blkio: Add io_merged stat (FATE#311054). * patches.suse/blkio-Add-io_queued-and-avg_queue_size-stats.patch: blkio: Add io_queued and avg_queue_size stats (FATE#311692). * patches.suse/blkio-Add-more-debug-only-per-cgroup-stats.patch: blkio: Add more debug-only per-cgroup stats (FATE#311692). * patches.suse/blkio-Changes-to-IO-controller-additional-stats-pat.patch: blkio: Changes to IO controller additional stats patches (FATE#311692). * patches.suse/blkio-Fix-another-BUG_ON-crash-due-to-cfqq-moveme.patch: blkio: Fix another BUG_ON() crash due to cfqq movement across groups (FATE#311692). * patches.suse/blkio-Fix-blkio-crash-during-rq-stat-update.patch: blkio: Fix blkio crash during rq stat update (FATE#311692). * patches.suse/blkio-Initialize-blkg-stats_lock-for-the-root-cfqg.patch: blkio: Initialize blkg->stats_lock for the root cfqg too (FATE#311692). * patches.suse/blkio-fix-compile-errors.patch: blkio: Fix compile errors (FATE#311692). * patches.suse/blkio-fix-for-modular-blk-cgroup-build.patch: blkio: fix for modular blk-cgroup build (FATE#311692). * patches.suse/block-Update-to-io-controller-stats.patch: block: Update to io-controller stats (FATE#311692). * patches.suse/block-blk_rq_err_sectors-cleanup.patch: block: blk_rq_err_sectors cleanup (FATE#311692). * patches.suse/block-disable-preemption-before-using-sched_clock.patch: Update references (FATE#311693). * patches.suse/block-kill-some-useless-goto-s-in-blk-cgroup.c.patch: block: kill some useless goto's in blk-cgroup.c (FATE#311692). * patches.suse/btrfs-discard-flags-update: blkdev: generalize flags for blkdev_issue_fn functions (FATE#311692). * patches.suse/cfq-fix-recursive-call-in-cfq_blkiocg_update_c.patch: cfq: fix recursive call in cfq_blkiocg_update_completion_stats() (FATE#311692). * patches.suse/cfq-iosched-Fixed-boot-warning-with-BLK_CGROUP.patch: cfq-iosched: Fixed boot warning with BLK_CGROUP=y and CFQ_GROUP_IOSCHED=n (FATE#311692). * patches.suse/cfq-iosched-fix-broken-cfq_ref_get_cfqf-for-CONFI.patch: cfq-iosched: fix broken cfq_ref_get_cfqf() for CONFIG_BLK_CGROUP=y && CFQ_GROUP_IOSCHED=n (FATE#311692). * patches.suse/cgroups-blkio-subsystem-as-module.patch: cgroups: blkio subsystem as module (FATE#311692). * patches.suse/cgroups-fix-CONTENTS-in-cgroups-documentation.patch: cgroups: fix CONTENTS in cgroups documentation (FATE#311692). * patches.suse/cgroups-revamp-subsys-array.patch: cgroups: revamp subsys array (FATE#311692). * patches.suse/cgroups-subsystem-module-loading-interface.patch: cgroups: subsystem module loading interface (FATE#311692). * patches.suse/cgroups-subsystem-module-unloading.patch: cgroups: subsystem module unloading (FATE#311692). * patches.suse/gfs2-generalize-flags-for-blkdev_issue_fn-functio.patch: blkdev: generalize flags for blkdev_issue_fn functions (FATE#311054). * patches.suse/io-controller-Add-a-new-interface-weight_device-f.patch: io-controller: Add a new interface "weight_device" for IO-Controller (FATE#311692). * patches.suse/io-controller-Document-for-blkio.weight_device-f.patch: io-controller: Document for blkio.weight_device (FATE#311692).moved patches down which allows compilation of partly applied series.conf (does not fix all cases, but a large part will compile again now): - patches.suse/kvm-mm-thp-mmu-notifier-test_young.patch: thp: mmu_notifier_test_young (THP core (fate #311931)). - patches.suse/mm-thp-mmu-notifier-test_young.patch: Delete.- patches.xen/1089-blkback-barrier-check.patch: xen/blkback: don't fail empty barrier requests. - patches.xen/1090-blktap-locking.patch: xen/blktap: fix locking (bnc#685276). - patches.xen/1091-xenbus-dev-no-BUG.patch: xenbus: don't BUG() on user mode induced conditions (bnc#696107). - Refresh other Xen patches.- patches.fixes/Fix-for-buffer-overflow-in-ldm_frag_add-not-sufficie.patch: Fix for buffer overflow in ldm_frag_add not sufficient (bnc#698221, CVE-2011-1017, CVE-2011-2182).- Update config files. - (oops)- Add remaining FATE#311860 patches, and refresh/enable the rest. - patches.suse/arch-s390-kernel-Add-missing-unlock: arch/s390/kernel: Add missing unlock (FATE#311860). - patches.suse/s390-Move-__cpu_logical_map-to-smp-dot-c: Move __cpu_logical_map to smp.c (FATE#311860). - patches.suse/s390-smp-Remove-volatile-type-quilifier-from-__cpu_logical_map: smp: remove volatile type quilifier from __cpu_logical_map (FATE#311860). - patches.suse/sched-Add-book-scheduling-domain: Update references (FATE#311860). - patches.suse/sched-Create-special-class-for-stop-and-migrate-work: Refresh. - patches.suse/topology-s390-Add-z11-cpu-topology-support: Update references (FATE#311860). - patches.suse/topology-s390-change-default: topology: change default (FATE#311860). - patches.suse/topology-s390-expose-core-identifier: Update references (FATE#311860). - patches.suse/topology-s390-fix-cpu-masks-for-topology-off-case: topology: fix cpu masks for topology=off case (FATE#311860). - patches.suse/topology-s390-sched-fix-cpu_coregroup_mask-cpu_book_mask-definitions: topology,sched: fix cpu_coregroup_mask/cpu_book_mask definitions (FATE#311860). - patches.suse/topology-s390-use-default-MC-domain-initializer: topology: use default MC domain initializer (FATE#311860). - patches.suse/topology-sysfs-Provide-book-id-and-siblings-attributes: Update references (FATE#311860).- patches.suse/memcg-convert-uncharge-batching-from-bytes-to-page-g.patch: memcg: convert uncharge batching from bytes to page granularity (fate#311931, bnc#697913). - patches.suse/memcg-unify-charge-uncharge-quantities-to-units-of-pages.patch: memcg: unify charge/uncharge quantities to units of pages (fate#311931, bnc#697913). - patches.suse/perfmon2.patch: Refresh.- patches.fixes/perf-enable-on-exec.patch: perf record: Enable the enable_on_exec flag if record forks the target (FATE#312124, BNC#665999). - patches.fixes/perf-ppc64-symbol-resolution.patch: perf symbols: Function descriptor symbol lookup (FATE#312124, BNC#665999).- patches.arch/x86_powernow_k8_remove_zero_latency_warning.patch: cpufreq powernow-k8: Remove firmware warning in zero transition latency case (bnc#698604).- Apply fixes for stable 3b4b7c75 mainline 86cbfb56 induced explosions - patches.fixes/block-Export-blk_get_queue-and-blk_put_queue: block: export blk_{get,put}_queue(). - patches.fixes/block-add-proper-guards-to-elv_queue_empty: block: add proper state guards to elv_queue_empty() (https://lkml.org/lkml/2011/6/3/33). - patches.fixes/scsi-Fix-oops-caused-by-queue-refcounting-failure: Fix oops caused by queue refcounting failure.- Update config files. - patches.suse/perf-0001-Single-patch-that-merges-f4c4176-into-sles11.patch: Refresh. - patches.xen/xen-perf-2.6.33.patch: Xen fixes for AMD perf update (FATE#311392, BNC#685313).- patches.drivers/rdma_cm-01-lock.patch: rdma/addr: use appropriate locking with for_each_netdev (FATE#311652,bnc#695605). - patches.drivers/rdma_cm-02-mc0.patch: RDMA CM: Correct detection of SA Created MGID (FATE#311652,bnc#695605). - patches.drivers/rdma_cm-03-mc1.patch: RDMA CM: Fix AF_INET6 support in multicast joining (FATE#311652,bnc#695605). - patches.drivers/rdma_cm-04-ifindex.patch: rdma/cm: replace net_device pointer with index (FATE#311652,bnc#695605). - patches.drivers/rdma_cm-05-addr_chk.patch: ib/addr: verify source and destination address families match (FATE#311652,bnc#695605). - patches.drivers/rdma_cm-06-dev_type.patch: ib/addr: store net_device type instead of translating to RDMA transport (FATE#311652,bnc#695605). - patches.drivers/rdma_cm-07-resolve_loopback.patch: rdma/cm: fix loopback address support (FATE#311652,bnc#695605). - patches.drivers/rdma_cm-08-resolve_ip4.patch: ib/addr: simplify resolving IPv4 addresses (FATE#311652,bnc#695605). - patches.drivers/rdma_cm-09-resolve_ip6.patch: ib/addr: fix ipv6 routing lookup (FATE#311652,bnc#695605). - patches.drivers/rdma_cm-10-revert.patch: rdma/cm: revert associating an RDMA device when binding to loopback (FATE#311652,bnc#695605).- patches.arch/ppc-dynamic-dmawin: powerpc/pseries: Add support for dynamic dma windows (FATE#311558, bnc#695066). - patches.arch/ppc-dynamic-dmawin-kexec+iommu-fixes: powerpc: various fixes for dynamic DMA windows (FATE#311558, bnc#695066). - patches.arch/ppc-memory_hotplug_max: powerpc: Add memory_hotplug_max() (FATE#311558, bnc#695066). - patches.arch/ppc-platform-override-dma_set_mask: powerpc/dma: Add optional platform override of dma_set_mask() (FATE#311558, bnc#695066). - patches.arch/ppc-tune-rtas_busy_delay: powerpc/rtas: Only sleep in rtas_busy_delay if we have useful work to do (FATE#311558, bnc#695066).- Added patches.suse/perf-{0001-0279}*.patch (FATE#311392, BNC#685313) - patches.xen/kexec-move-segment-code-i386.patch: Refresh. - patches.xen/xen3-auto-arch-i386.diff: Refresh. - patches.xen/xen3-auto-arch-x86.diff: Refresh. - patches.xen/xen3-auto-arch-x86_64.diff: Refresh. - patches.xen/xen3-patch-2.6.25: Refresh. - patches.xen/xen3-patch-2.6.27: Refresh. - patches.xen/xen3-patch-2.6.28: Refresh. - patches.xen/xen3-patch-2.6.30: Refresh. - patches.xen/xen3-patch-2.6.31: Refresh. - patches.xen/xen3-patch-2.6.32.11-12: Refresh. - Xen sequences but does not build.- patches.suse/block-drop-barrier-ordering-by-queue-draining.patch: Rediff to have it applied.- patches.suse/block-drop-barrier-ordering-by-queue-draining.patch: Fixup merge error. - patches.suse/block-remove-wrappers-for-request-type-flags.patch: Refresh.- patches.xen/xen-deprecate-barrier-fixup: Fixup Xen drivers after FLUSH/FUA conversion (FATE#311692).- patches.suse/block-remove-wrappers-for-request-type-flags.patch: Fix copy and paste error: Use blk_rq_bytes() instead of blk_rq_sectors().- supported.conf: Mark libahci as supported.- patches.arch/ppc-detect-form1-affinity-using-ibm,architecture-vec-5: powerpc/numa: Use ibm,architecture-vec-5 to detect form 1 affinity (FATE#311725, bnc#695067). - patches.arch/ppc-form1-affinity-node-distance: dito. - patches.arch/ppc-smaller-reclaim_distance: Set a smaller value for RECLAIM_DISTANCE to enable zone reclaim (FATE#311725, bnc#695067) - open series.conf section for m68k arch (for whatever reason Hannes or T-Systems need that ;-)- patches.fixes/mm-memcg-modify-accounting-for-THP-fix.patch: Handle file type for mem_cgroup_charge_statistics correctly (bnc#697913). - patches.fixes/mm-memcg-modify-accounting-for-THP-fix2.patch: Fix page in/out accounting (bnc#697913). - patches.fixes/mm-thp-memcg-compound-reimplementation-fix.patch: Fix cmem_cgroup_cancel_carge units (bnc#697913). - patches.suse/mm-memcg-fix-USED-bit-handling-for-THP.patch: Refresh. - patches.suse/mm-memcg-fix-event-counting-with-THP.patch: Refresh. - patches.suse/mm-memcg-fix-rmdir-with-THP.patch: Refresh. - patches.suse/mm-thp-compound_trans_order.patch: Refresh.- Fixup patches for series2git: - patches.rpmify/gdth-section-conflict: Refresh. - patches.suse/brd-unify-flags-for-struct-bio-and-struct-request.patch: Refresh. - patches.suse/dm-mpath-leastpending-path-update: Refresh. - patches.suse/dm-remove-wrappers-for-request-type-flags.patch: Refresh. - patches.suse/dm-unify-flags-for-struct-bio-and-struct-request.patch: Refresh. - patches.suse/ide-deprecate-barrier-and-replace-blk_queue_order.patch: Refresh. - patches.suse/md-unify-flags-for-struct-bio-and-struct-request.patch: Refresh. - patches.suse/scsi-deprecate-barrier-and-replace-blk_queue_order.patch: Refresh. - patches.suse/scsi-netlink-ml: Refresh. - patches.suse/virtio-blk-kill-QUEUE_ORDERED_BY_TAG.patch: Refresh. - patches.xen/sfc-driverlink: Refresh.- patches.suse/block-unify-flags-for-struct-bio-and-struct-request.patch: Fixup broken patch.- Backport fixes from 2.6.36 and turn HARDBARRIER into a Flush/FUA sequence (FATE#311692): - Update config files. - patches.suse/NCR5380-bit-MR_DMA_MODE-set-twice-in-NCR5380_transf.patch: NCR5380: bit MR_DMA_MODE set twice in NCR5380_transfer_dma() (FATE#311692). - patches.suse/aacraid-Do-not-set-DMA-mask-to-32-bit-first.patch: [SCSI] aacraid: Do not set DMA mask to 32 bit first if adapter only supports 31 (FATE#311692). - patches.suse/aacraid-add-an-ifdef-d-device-delete-case-in.patch: [SCSI] aacraid: add an ifdef'd device delete case instead of taking the device offline (FATE#311692). - patches.suse/aacraid-add-support-for-handling-ATA-pass-th.patch: [SCSI] aacraid: add support for handling ATA pass-through commands (FATE#311692). - patches.suse/aacraid-expose-physical-devices-for-models-w.patch: [SCSI] aacraid: expose physical devices for models with newer firmware (FATE#311692). - patches.suse/aacraid-prohibit-access-to-array-container-s.patch: [SCSI] aacraid: prohibit access to array container space (FATE#311692). - patches.suse/aacraid-respond-automatically-to-volumes-add.patch: [SCSI] aacraid: respond automatically to volumes added by config tool (FATE#311692). - patches.suse/aha1532-remove-ISA_DMA_THRESHOLD-usage.patch: aha1532: remove ISA_DMA_THRESHOLD usage (FATE#311692). - patches.suse/ahci-Add-platform-driver.patch: ahci: Add platform driver (FATE#311692). - patches.suse/ahci-EM-message-type-auto-detect.patch: ahci: EM message type auto detect (FATE#311692). - patches.suse/ahci-Factor-out-PCI-specifics-from-ahci_init_contro.patch: ahci: Factor out PCI specifics from ahci_init_controller() (FATE#311692). - patches.suse/ahci-Factor-out-PCI-specifics-from-ahci_print_info.patch: ahci: Factor out PCI specifics from ahci_print_info() (FATE#311692). - patches.suse/ahci-Factor-out-PCI-specifics-from-ahci_reset_contr.patch: ahci: Factor out PCI specifics from ahci_reset_controller() (FATE#311692). - patches.suse/ahci-Factor-out-PCI-specifics-from-ahci_save_initia.patch: ahci: Factor out PCI specifics from ahci_save_initial_config() (FATE#311692). - patches.suse/ahci-Fix-warning-comparison-between-enum.patch: [libata] ahci: Fix warning: comparison between 'enum ' and 'enum ' (FATE#311692). - patches.suse/ahci-Get-rid-of-host-iomap-usage.patch: ahci: Get rid of host->iomap usage (FATE#311692). - patches.suse/ahci-Get-rid-of-pci_dev-argument-in-ahci_port_init.patch: ahci: Get rid of pci_dev argument in ahci_port_init() (FATE#311692). - patches.suse/ahci-Get-rid-of-pci_dev-argument-in-ahci_save_initi.patch: ahci: Get rid of pci_dev argument in ahci_save_initial_config() (FATE#311692). - patches.suse/ahci-Implement-SATA-AHCI-FIS-based-switching-suppor.patch: ahci: Implement SATA AHCI FIS-based switching support (FATE#311692). - patches.suse/ahci-Introduce-ahci_set_em_messages.patch: ahci: Introduce ahci_set_em_messages() (FATE#311692). - patches.suse/ahci-Move-generic-code-into-libahci.patch: ahci: Move generic code into libahci (FATE#311692). - patches.suse/ahci-Turn-off-DMA-engines-when-there-s-no-device-at.patch: ahci: Turn off DMA engines when there's no device attached (FATE#311692). - patches.suse/ahci-add-HFLAG_YES_FBS-and-apply-it-to-88SE9128.patch: ahci: add HFLAG_YES_FBS and apply it to 88SE9128 (FATE#311692). - patches.suse/ahci-add-em_buffer-attribute-for-AHCI-hosts.patch: ahci: add "em_buffer" attribute for AHCI hosts (FATE#311692). - patches.suse/ahci-add-missing-nv-IDs.patch: ahci: add missing nv IDs (FATE#311692). - patches.suse/ahci-clean-up-board-IDs.patch: ahci: clean up board IDs (FATE#311692). - patches.suse/ahci-fix-hang-on-failed-softreset.patch: ahci: fix hang on failed softreset (FATE#311692). - patches.suse/ahci-fix-module-refcount-breakage-introduced-by-lib.patch: ahci: fix module refcount breakage introduced by libahci split (FATE#311692). - patches.suse/ahci-implement-AHCI_HFLAG_NO_FPDMA_AA-and-update-NV.patch: ahci: implement AHCI_HFLAG_NO_FPDMA_AA and update NV quirks (FATE#311692). - patches.suse/ahci-pp-active_link-is-not-reliable-when-FBS-is-en.patch: ahci: pp->active_link is not reliable when FBS is enabled (FATE#311692). - patches.suse/ahci-redo-stopping-DMA-engines-on-empty-ports.patch: ahci: redo stopping DMA engines on empty ports (FATE#311692). - patches.suse/ahci_platform-Provide-for-vendor-specific-init.patch: ahci_platform: Provide for vendor specific init (FATE#311692). - patches.suse/ahci_platform-Remove-unneeded-ahci_driver.probe-ass.patch: ahci_platform: Remove unneeded ahci_driver.probe assignment (FATE#311692). - patches.suse/ahci_platform-properly-set-up-EM-messaging.patch: ahci_platform: properly set up EM messaging (FATE#311692). - patches.suse/aic94xx-aic94xx_init.c-correct-the-siz.patch: drivers/scsi/aic94xx/aic94xx_init.c: correct the size argument to kmalloc (FATE#311692). - patches.suse/arcmsr-Support-1024-scatter-gather-list-entr.patch: [SCSI] arcmsr: Support 1024 scatter-gather list entries and improve AP while FW trapped and behaviors of EHs (FATE#311692). - patches.suse/arcmsr-Support-HW-reset-for-EH-and-polling-s.patch: [SCSI] arcmsr: Support HW reset for EH and polling scheme for scsi device (FATE#311692). - patches.suse/ata-Convert-pci_table-entries-to-PCI_VDEVICE-if-PC.patch: ata: Convert pci_table entries to PCI_VDEVICE (if PCI_ANY_ID is used) (FATE#311692). - patches.suse/ata-Detect-Delkin-Devices-compact-flash.patch: ata: Detect Delkin Devices compact flash (FATE#311692). - patches.suse/ata_generic-drop-hard-coded-DMA-force-logic-for-CEN.patch: ata_generic: drop hard coded DMA force logic for CENATEK (FATE#311692). - patches.suse/ataflop-Killl-warning-about-unused-variable-flags.patch: Refresh. - patches.suse/bio-fs-separate-out-bio_types.h-and-define-READ-WR.patch: bio, fs: separate out bio_types.h and define READ/WRITE constants in terms of BIO_RW_* flags (FATE#311692). - patches.suse/bio-fs-update-RWA_MASK-READA-and-SWRITE-to-match.patch: bio, fs: update RWA_MASK, READA and SWRITE to match the corresponding BIO_RW_* bits (FATE#311692). - patches.suse/bio-integrity.c-remove-dependency-on-__GFP_NOFAIL.patch: bio-integrity.c: remove dependency on __GFP_NOFAIL (FATE#311692). - patches.suse/blkdev-add-blkdev_issue_zeroout-helper-function.patch: blkdev: add blkdev_issue_zeroout helper function (FATE#311692). - patches.suse/blkdev-allow-async-blkdev_issue_flush-requests.patch: blkdev: allow async blkdev_issue_flush requests (FATE#311692). - patches.suse/blkdev-check-for-valid-request-queue-before-issuing.patch: blkdev: check for valid request queue before issuing flush (FATE#311692). - patches.suse/blkdev-fix-blkdev_issue_zeroout-return-value.patch: blkdev: fix blkdev_issue_zeroout return value (FATE#311692). - patches.suse/blkdev-flush-disk-cache-on-fsync.patch: blkdev: flush disk cache on ->fsync (FATE#311692). - patches.suse/blkdev-generalize-flags-for-blkdev_issue_fn-functio.patch: blkdev: generalize flags for blkdev_issue_fn functions (FATE#311692). - patches.suse/blkdev-move-blkdev_issue-helper-functions-to-separa.patch: blkdev: move blkdev_issue helper functions to separate file (FATE#311692). - patches.suse/block-Adjust-elv_iosched_show-to-return-none-for.patch: block: Adjust elv_iosched_show to return "none" for bio-based DM (FATE#311692). - patches.suse/block-BARRIER-request-should-imply-SYNC.patch: block: BARRIER request should imply SYNC (FATE#311692). - patches.suse/block-Don-t-count_vm_events-for-discard-bio-in-subm.patch: block: Don't count_vm_events for discard bio in submit_bio (FATE#311692). - patches.suse/block-Range-check-cpu-in-blk_cpu_to_group.patch: block: Range check cpu in blk_cpu_to_group (FATE#311692). - patches.suse/block-add-function-call-to-switch-the-IO-scheduler.patch: block: add function call to switch the IO scheduler from a driver (FATE#311692). - patches.suse/block-add-helpers-for-the-trivial-queue-flag-sysfs.patch: block: add helpers for the trivial queue flag sysfs show/store entries (FATE#311692). - patches.suse/block-add-secure-discard.patch: block: add secure discard (FATE#311692). - patches.suse/block-add-sysfs-knob-for-turning-off-disk-entropy-c.patch: block: add sysfs knob for turning off disk entropy contributions (FATE#311692). - patches.suse/block-allow-initialization-of-previously-allocated.patch: block: allow initialization of previously allocated request_queue (FATE#311692). - patches.suse/block-avoid-unconditionally-freeing-previously-allo.patch: block: avoid unconditionally freeing previously allocated request_queue (FATE#311692). - patches.suse/block-bd_start_claiming-cleanup.patch: block: bd_start_claiming cleanup (FATE#311692). - patches.suse/block-bd_start_claiming-fix-module-refcount.patch: block: bd_start_claiming fix module refcount (FATE#311692). - patches.suse/block-deprecate-barrier-and-replace-blk_queue_order.patch: block: deprecate barrier and replace blk_queue_ordered() with blk_queue_flush() (FATE#311692). - patches.suse/block-disable-preemption-before-using-sched_clock.patch: block: disable preemption before using sched_clock() (FATE#311692). - patches.suse/block-disallow-FS-recursion-from-sb_issue_discard-a.patch: block: disallow FS recursion from sb_issue_discard allocation (FATE#311692). - patches.suse/block-don-t-allocate-a-payload-for-discard-request.patch: block: don't allocate a payload for discard request (FATE#311692). - patches.suse/block-drop-barrier-ordering-by-queue-draining.patch: block: drop barrier ordering by queue draining (FATE#311692). - patches.suse/block-expose-the-statistics-in-blkio.time-and-blkio.patch: Refresh. - patches.suse/block-factor-out-bd_may_claim.patch: block: factor out bd_may_claim() (FATE#311692). - patches.suse/block-filter-flush-bio-s-in-__generic_make_request.patch: block: filter flush bio's in __generic_make_request() (FATE#311692). - patches.suse/block-fix-DISCARD_BARRIER-requests.patch: block: fix DISCARD_BARRIER requests (FATE#311692). - patches.suse/block-fix-bad-use-of-min-on-different-types.patch: block: fix bad use of min() on different types (FATE#311692). - patches.suse/block-fix-bio.bi_rw-handling.patch: BLOCK: fix bio.bi_rw handling (FATE#311692). - patches.suse/block-fix-missing-export-of-blk_types.h.patch: block: fix missing export of blk_types.h (FATE#311692). - patches.suse/block-fix-problem-with-sending-down-discard-that-is.patch: block: fix problem with sending down discard that isn't of correct granularity (FATE#311692). - patches.suse/block-fix-some-more-cmd_type-cleanup-fallout.patch: block: fix some more cmd_type cleanup fallout (FATE#311692). - patches.suse/block-ide-simplify-bdops-set_capacity-to-unloc.patch: block,ide: simplify bdops->set_capacity() to - >unlock_native_capacity() (FATE#311692). - patches.suse/block-implement-REQ_FLUSH-FUA-based-interface-for-F.patch: block: implement REQ_FLUSH/FUA based interface for FLUSH/FUA requests (FATE#311692). - patches.suse/block-implement-an-unprep-function-corresponding-di.patch: block: implement an unprep function corresponding directly to prep (FATE#311692). - patches.suse/block-implement-bd_claiming-and-claiming-block.patch: block: implement bd_claiming and claiming block (FATE#311692). - patches.suse/block-improve-automatic-native-capacity-unlocking.patch: block: improve automatic native capacity unlocking (FATE#311692). - patches.suse/block-initialize-flush-request-with-WRITE_FLUSH-ins.patch: block: initialize flush request with WRITE_FLUSH instead of REQ_FLUSH (FATE#311692). - patches.suse/block-introduce-REQ_FLUSH-flag.patch: block: introduce REQ_FLUSH flag (FATE#311692). - patches.suse/block-kick-queue-after-sequencing-REQ_FLUSH-FUA.patch: block: kick queue after sequencing REQ_FLUSH/FUA (FATE#311692). - patches.suse/block-kill-ISA_DMA_THRESHOLD-usage.patch: block: kill ISA_DMA_THRESHOLD usage (FATE#311692). - patches.suse/block-kill-QUEUE_ORDERED_BY_TAG.patch: block: kill QUEUE_ORDERED_BY_TAG (FATE#311692). - patches.suse/block-loop-implement-REQ_FLUSH-FUA-support.patch: block/loop: implement REQ_FLUSH/FUA support (FATE#311692). - patches.suse/block-make-__blk_rq_prep_clone-copy-most-command.patch: block: make __blk_rq_prep_clone() copy most command flags (FATE#311692). - patches.suse/block-make-blk_init_free_list-and-elevator_init-ide.patch: block: make blk_init_free_list and elevator_init idempotent (FATE#311692). - patches.suse/block-make-sure-FSEQ_DATA-request-has-the-same-rq_d.patch: block: make sure FSEQ_DATA request has the same rq_disk as the original (FATE#311692). - patches.suse/block-misc-cleanups-in-barrier-code.patch: block: misc cleanups in barrier code (FATE#311692). - patches.suse/block-pass-gfp_mask-and-flags-to-sb_issue_discard.patch: block: pass gfp_mask and flags to sb_issue_discard (FATE#311692). - patches.suse/block-permit-PREFLUSH-and-POSTFLUSH-without-prepare.patch: block: permit PREFLUSH and POSTFLUSH without prepare_flush_fn (FATE#311692). - patches.suse/block-prevent-merges-of-discard-and-write-requests.patch: block: prevent merges of discard and write requests (FATE#311692). - patches.suse/block-put-dev-kobj-in-blk_register_queue-fail-path.patch: block: put dev->kobj in blk_register_queue fail path (FATE#311692). - patches.suse/block-remove-REQ_HARDBARRIER.patch: block: remove REQ_HARDBARRIER (FATE#311692). - patches.suse/block-remove-all-rcu-head-initializations.patch: block: remove all rcu head initializations (FATE#311692). - patches.suse/block-remove-duplicate-BUG_ON-in-bd_finish_claimi.patch: block: remove duplicate BUG_ON() in bd_finish_claiming() (FATE#311692). - patches.suse/block-remove-q-prepare_flush_fn-completely.patch: block: remove q->prepare_flush_fn completely (FATE#311692). - patches.suse/block-remove-spurious-uses-of-REQ_HARDBARRIER.patch: block: remove spurious uses of REQ_HARDBARRIER (FATE#311692). - patches.suse/block-remove-the-BH_Eopnotsupp-flag.patch: block: remove the BH_Eopnotsupp flag (FATE#311692). - patches.suse/block-remove-the-BLKDEV_IFL_BARRIER-flag.patch: block: remove the BLKDEV_IFL_BARRIER flag (FATE#311692). - patches.suse/block-remove-the-WRITE_BARRIER-flag.patch: block: remove the WRITE_BARRIER flag (FATE#311692). - patches.suse/block-remove-unused-REQ_TYPE_LINUX_BLOCK.patch: block: remove unused REQ_TYPE_LINUX_BLOCK (FATE#311692). - patches.suse/block-remove-wrappers-for-request-type-flags.patch: block: remove wrappers for request type/flags (FATE#311692). - patches.suse/block-rename-barrier-ordered-to-flush.patch: block: rename barrier/ordered to flush (FATE#311692). - patches.suse/block-rename-blk-barrier.c-to-blk-flush.c.patch: block: rename blk-barrier.c to blk-flush.c (FATE#311692). - patches.suse/block-restart-partition-scan-after-resizing-a-devic.patch: block: restart partition scan after resizing a device (FATE#311692). - patches.suse/block-set-REQ_TYPE_FS-on-flush-requests.patch: block: set REQ_TYPE_FS on flush requests (FATE#311692). - patches.suse/block-set-up-rq-rq_disk-properly-for-flush-request.patch: block: set up rq->rq_disk properly for flush requests (FATE#311692). - patches.suse/block-simplify-queue_next_fseq.patch: block: simplify queue_next_fseq (FATE#311692). - patches.suse/block-switch-s390-tape_block-and-mg_disk-to-elevato.patch: block: switch s390 tape_block and mg_disk to elevator_change() (FATE#311692). - patches.suse/block-unify-flags-for-struct-bio-and-struct-request.patch: block: unify flags for struct bio and struct request (FATE#311692). - patches.suse/block-update-documentation-for-REQ_FLUSH-REQ_FUA.patch: block: update documentation for REQ_FLUSH / REQ_FUA (FATE#311692). - patches.suse/block-update-request-stacking-methods-to-support-di.patch: block: update request stacking methods to support discards (FATE#311692). - patches.suse/block-use-REQ_FLUSH-in-blkdev_issue_flush.patch: block: use REQ_FLUSH in blkdev_issue_flush() (FATE#311692). - patches.suse/block-use-struct-parsed_partitions-state-universal.patch: block: use struct parsed_partitions *state universally in partition check code (FATE#311692). - patches.suse/block-xd.c-fix-brace-typo.patch: block/xd.c: fix brace typo (FATE#311692). - patches.suse/bnx2i-Added-host-param-ISCSI_HOST_PARAM_IPAD.patch: [SCSI] bnx2i: Added host param ISCSI_HOST_PARAM_IPADDRESS (FATE#311692). - patches.suse/bnx2i-Created-an-active-linklist-which-holds.patch: [SCSI] bnx2i: Created an active linklist which holds bnx2i endpoints (FATE#311692). - patches.suse/bnx2i-Fine-tuned-conn-destroy-and-context-de.patch: [SCSI] bnx2i: Fine tuned conn destroy and context destroy timeout values (FATE#311692). - patches.suse/bnx2i-Fixed-the-TCP-graceful-termination-ini.patch: [SCSI] bnx2i: Fixed the TCP graceful termination initiation (FATE#311692). - patches.suse/bnx2i-Optimized-the-bnx2i_stop-connection-cl.patch: [SCSI] bnx2i: Optimized the bnx2i_stop connection clean up procedure (FATE#311692). - patches.suse/bnx2i-Separated-the-hardware-s-cleanup-proce.patch: [SCSI] bnx2i: Separated the hardware's cleanup procedure from ep_disconnect (FATE#311692). - patches.suse/bnx2i-Updated-version-from-2.1.1-to-2.1.2.patch: [SCSI] bnx2i: Updated version from 2.1.1 to 2.1.2 (FATE#311692). - patches.suse/brd-support-discard.patch: brd: support discard (FATE#311692). - patches.suse/brd-unify-flags-for-struct-bio-and-struct-request.patch: block: unify flags for struct bio and struct request (FATE#311692). - patches.suse/btrfs-replace-barriers-with-explicit-flush-FUA-us.patch: btrfs: replace barriers with explicit flush / FUA usage (FATE#311692). - patches.suse/buffer-make-invalidate_bdev-drain-all-percpu-LRU.patch: buffer: make invalidate_bdev() drain all percpu LRU add caches (FATE#311692). - patches.suse/cdrom-use-pr_-level.patch: drivers/cdrom: use pr_ (FATE#311692). - patches.suse/cfq-Don-t-allow-queue-merges-for-queues-that-have-n.patch: cfq: Don't allow queue merges for queues that have no process references (FATE#311692). - patches.suse/cfq-iosched-Do-not-idle-if-slice_idle-0.patch: cfq-iosched: Do not idle if slice_idle=0 (FATE#311692). - patches.suse/cfq-iosched-compact-io_context-radix_tree.patch: cfq-iosched: compact io_context radix_tree (FATE#311692). - patches.suse/cfq-iosched-fix-an-oops-caused-by-slab-leak.patch: cfq-iosched: fix an oops caused by slab leak (FATE#311692). - patches.suse/cfq-iosched-remove-dead_key-from-cfq_io_context.patch: cfq-iosched: remove dead_key from cfq_io_context (FATE#311692). - patches.suse/ch-don-t-use-vprintk-as-macro.patch: drivers/scsi/ch.c: don't use vprintk as macro (FATE#311692). - patches.suse/coda-fixup-clash-with-block-layer-REQ_-defines.patch: coda: fixup clash with block layer REQ_* defines (FATE#311692). - patches.suse/cpqarray-check-put_user-result.patch: cpqarray: check put_user() result (FATE#311692). - patches.suse/cpqarray-fix-two-more-wrong-section-type.patch: cpqarray: fix two more wrong section type (FATE#311692). - patches.suse/cpqarray-fix-wrong-__init-type-on-pci-probe-functio.patch: cpqarray: fix wrong __init type on pci probe function (FATE#311692). - patches.suse/cxgb3i-Fix-error-path-for-module-init.patch: [SCSI] cxgb3i: Fix error path for module init (FATE#311692). - patches.suse/dc395x-decrease-iteration-for-tag_number-of-max_com.patch: dc395x: decrease iteration for tag_number of max_command in start_scsi() (FATE#311692). - patches.suse/dm-convey-that-all-flushes-are-processed-as-empty.patch: dm: convey that all flushes are processed as empty (FATE#311692). - patches.suse/dm-crypt-simplify-crypt_config-destruction-logic.patch: dm crypt: simplify crypt_config destruction logic (FATE#311692). - patches.suse/dm-crypt-simplify-crypt_ctr.patch: dm crypt: simplify crypt_ctr (FATE#311692). - patches.suse/dm-crypt-use-kstrdup.patch: dm crypt: use kstrdup (FATE#311692). - patches.suse/dm-delay-support-discard.patch: dm delay: support discard (FATE#311692). - patches.suse/dm-do-not-initialise-full-request-queue-when-bio-ba.patch: dm: do not initialise full request queue when bio based (FATE#311692). - patches.suse/dm-error-return-error-for-discards.patch: dm: error return error for discards (FATE#311692). - patches.suse/dm-factor-out-max_io_len_target_boundary.patch: dm: factor out max_io_len_target_boundary (FATE#311692). - patches.suse/dm-fix-locking-context-in-queue_io.patch: dm: fix locking context in queue_io() (FATE#311692). - patches.suse/dm-implement-REQ_FLUSH-FUA-support-for-bio-based-dm.patch: dm: implement REQ_FLUSH/FUA support for bio-based dm (FATE#311692). - patches.suse/dm-implement-REQ_FLUSH-FUA-support-for-request-base.patch: dm: implement REQ_FLUSH/FUA support for request-based dm (FATE#311692). - patches.suse/dm-ioctl-make-__dev_status-void.patch: dm ioctl: make __dev_status void (FATE#311692). - patches.suse/dm-ioctl-make-bio-or-request-based-device-type-immu.patch: dm ioctl: make bio or request based device type immutable (FATE#311692). - patches.suse/dm-ioctl-refactor-dm_table_complete.patch: dm ioctl: refactor dm_table_complete (FATE#311692). - patches.suse/dm-ioctl-remove-__dev_status-from-geometry-and-targ.patch: dm ioctl: remove __dev_status from geometry and target message (FATE#311692). - patches.suse/dm-ioctl-return-uevent-flag-after-rename.patch: dm ioctl: return uevent flag after rename (FATE#311692). - patches.suse/dm-ioctl-use-nonseekable_open.patch: dm ioctl: use nonseekable_open (FATE#311692). - patches.suse/dm-linear-support-discard.patch: dm: linear support discard (FATE#311692). - patches.suse/dm-mpath-support-discard.patch: dm mpath: support discard (FATE#311692). - patches.suse/dm-prevent-access-to-md-being-deleted.patch: dm: prevent access to md being deleted (FATE#311692). - patches.suse/dm-relax-ordering-of-bio-based-flush-implementation.patch: dm: relax ordering of bio-based flush implementation (FATE#311692). - patches.suse/dm-remove-wrappers-for-request-type-flags.patch: block: remove wrappers for request type/flags (FATE#311692). - patches.suse/dm-rename-map_info-flush_request-to-target_request_.patch: dm: rename map_info flush_request to target_request_nr (FATE#311692). - patches.suse/dm-separate-device-deletion-from-dm_put.patch: dm: separate device deletion from dm_put (FATE#311692). - patches.suse/dm-skip-second-flush-on-bio-unsupported-error.patch: dm: skip second flush on bio unsupported error (FATE#311692). - patches.suse/dm-snapshot-implement-merge.patch: dm snapshot: implement merge (FATE#311692). - patches.suse/dm-snapshot-iterate-origin-and-cow-devices.patch: dm snapshot: iterate origin and cow devices (FATE#311692). - patches.suse/dm-snapshot-persistent-use-define-for-disk-header-c.patch: dm snapshot: persistent use define for disk header chunk size (FATE#311692). - patches.suse/dm-snapshot-test-chunk-size-against-both-origin-and.patch: dm snapshot: test chunk size against both origin and snapshot (FATE#311692). - patches.suse/dm-split-discard-requests-on-target-boundaries.patch: dm: split discard requests on target boundaries (FATE#311692). - patches.suse/dm-stop-using-q-prepare_flush_fn.patch: dm: stop using q->prepare_flush_fn (FATE#311692). - patches.suse/dm-stripe-move-sector-translation-to-a-function.patch: dm stripe: move sector translation to a function (FATE#311692). - patches.suse/dm-stripe-optimize-sector-division.patch: dm stripe: optimize sector division (FATE#311692). - patches.suse/dm-stripe-support-discards.patch: dm stripe: support discards (FATE#311692). - patches.suse/dm-unify-flags-for-struct-bio-and-struct-request.patch: block: unify flags for struct bio and struct request (FATE#311692). - patches.suse/dm-use-common-__issue_target_request-for-flush-and.patch: dm: use common __issue_target_request for flush and discard support (FATE#311692). - patches.suse/dm-use-dm_target_offset-macro.patch: dm: use dm_target_offset macro (FATE#311692). - patches.suse/dm-zero-silently-drop-discards.patch: dm: zero silently drop discards (FATE#311692). - patches.suse/dpt_i2o-Use-GFP_ATOMIC-when-a-lock-is-held.patch: [SCSI] dpt_i2o: Use GFP_ATOMIC when a lock is held (FATE#311692). - patches.suse/dpt_i2o-move-range-check-forward.patch: [SCSI] dpt_i2o: move range check forward (FATE#311692). - patches.suse/drivers-block-use-memdup_user.patch: drivers/block: use memdup_user (FATE#311692). - patches.suse/drivers-scsi-remove-unnecessary-NULL-test.patch: drivers/scsi: remove unnecessary NULL test (FATE#311692). - patches.suse/elevator-fix-oops-on-early-call-to-elevator_change.patch: elevator: fix oops on early call to elevator_change() (FATE#311692). - patches.suse/ext4-do-not-send-discards-as-barriers.patch: ext4: do not send discards as barriers (FATE#311692). - patches.suse/floppy-cmos-attribute-should-be-static.patch: floppy: cmos attribute should be static (FATE#311692). - patches.suse/floppy-fix-signed-unsigned-warnings.patch: floppy: fix signed/unsigned warnings (FATE#311692). - patches.suse/floppy-initialize-debug-jiffies-offset.patch: floppy: initialize debug jiffies offset (FATE#311692). - patches.suse/floppy-make-controller-const.patch: floppy: make controller const (FATE#311692). - patches.suse/floppy-remove-unnecessary-inlines.patch: floppy: remove unnecessary inlines (FATE#311692). - patches.suse/floppy-silence-warning-during-disk-test.patch: floppy: silence warning during disk test (FATE#311692). - patches.suse/floppy-use-atomic-type-for-usage_count.patch: floppy: use atomic type for usage_count (FATE#311692). - patches.suse/floppy-use-wait_event_interruptible.patch: floppy: use wait_event_interruptible (FATE#311692). - patches.suse/floppy-use-warning-macros.patch: floppy: use warning macros (FATE#311692). - patches.suse/fs-bio-integrity.c-return-ENOMEM-on-kmalloc-failur.patch: fs/bio-integrity.c: return -ENOMEM on kmalloc failure (FATE#311692). - patches.suse/gcc-4.6-block-fix-unused-but-set-variables-in-blk.patch: gcc-4.6: block: fix unused but set variables in blk-merge (FATE#311692). - patches.suse/gdth-unmap-ccb_phys-when-scsi_add_host-fails-in-g.patch: gdth: unmap ccb_phys when scsi_add_host() fails in gdth_eisa_probe_one() (FATE#311692). - patches.suse/gfs2-replace-barriers-with-explicit-flush-FUA-usa.patch: gfs2: replace barriers with explicit flush / FUA usage (FATE#311692). - patches.suse/hptiop-Eliminate-a-NULL-pointer-dereference.patch: [SCSI] hptiop: Eliminate a NULL pointer dereference (FATE#311692). - patches.suse/ibmvfc-Add-support-for-fc_block_scsi_eh.patch: [SCSI] ibmvfc: Add support for fc_block_scsi_eh (FATE#311692). - patches.suse/ibmvfc-Driver-version-1.0.8.patch: [SCSI] ibmvfc: Driver version 1.0.8 (FATE#311692). - patches.suse/ibmvfc-Driver-version-1.0.9.patch: [SCSI] ibmvfc: Driver version 1.0.9 (FATE#311692). - patches.suse/ibmvfc-Fix-soft-lockup-on-resume.patch: [SCSI] ibmvfc: Fix soft lockup on resume (FATE#311692). - patches.suse/ibmvfc-Fix-terminate_rport_io.patch: [SCSI] ibmvfc: Fix terminate_rport_io (FATE#311692). - patches.suse/ibmvscsi-Fix-error-path-deadlock.patch: [SCSI] ibmvscsi: Fix error path deadlock (FATE#311692). - patches.suse/ibmvscsi-Fix-oops-when-an-interrupt-is-pendi.patch: [SCSI] ibmvscsi: Fix oops when an interrupt is pending during probe (FATE#311692). - patches.suse/ibmvscsi-Fix-possible-request_limit-issue.patch: [SCSI] ibmvscsi: Fix possible request_limit issue (FATE#311692). - patches.suse/ibmvscsi-Fix-softlockup-on-resume.patch: [SCSI] ibmvscsi: Fix softlockup on resume (FATE#311692). - patches.suse/ibmvstgt-add-__init-__exit-macros.patch: [SCSI] ibmvstgt: add __init/__exit macros (FATE#311692). - patches.suse/ide-deprecate-barrier-and-replace-blk_queue_order.patch: block: deprecate barrier and replace blk_queue_ordered() with blk_queue_flush() (FATE#311692). - patches.suse/ide-remove-unnecessary-blk_queue_flushing-test-in.patch: ide: remove unnecessary blk_queue_flushing() test in do_ide_request() (FATE#311692). - patches.suse/ide-stop-using-q-prepare_flush_fn.patch: ide: stop using q->prepare_flush_fn (FATE#311692). - patches.suse/ipr-add-MMIO-write-to-perform-BIST-for-64-bi.patch: [SCSI] ipr: add MMIO write to perform BIST for 64 bit adapters (FATE#311692). - patches.suse/ipr-add-endian-swap-enablement-for-64-bit-ad.patch: [SCSI] ipr: add endian swap enablement for 64 bit adapters (FATE#311692). - patches.suse/ipr-add-support-for-new-Obsidian-E-embedded.patch: [SCSI] ipr: add support for new Obsidian-E embedded adapter (FATE#311692). - patches.suse/ipr-add-writeq-definition-if-needed.patch: [SCSI] ipr: add writeq definition if needed (FATE#311692). - patches.suse/ipr-change-endian-swap-key-to-match-hardware.patch: [SCSI] ipr: change endian swap key to match hardware spec change (FATE#311692). - patches.suse/ipr-fix-a-register-read-to-use-the-correct-a.patch: [SCSI] ipr: fix a register read to use the correct address for 64 bit adapters (FATE#311692). - patches.suse/ipr-fix-resource-path-display-and-formatting.patch: [SCSI] ipr: fix resource path display and formatting (FATE#311692). - patches.suse/ipr-fix-resource-type-update-and-add-sdev-an.patch: [SCSI] ipr: fix resource type update and add sdev and shost attributes (FATE#311692). - patches.suse/ipr-fix-transition-to-operational-for-new-ad.patch: [SCSI] ipr: fix transition to operational for new adapters (FATE#311692). - patches.suse/ipr-implement-fixes-for-64-bit-adapter-suppo.patch: [SCSI] ipr: implement fixes for 64 bit adapter support (FATE#311692). - patches.suse/ipr-improve-interrupt-service-routine-perfor.patch: [SCSI] ipr: improve interrupt service routine performance (FATE#311692). - patches.suse/ipr-include-the-resource-path-in-the-IOA-sta.patch: [SCSI] ipr: include the resource path in the IOA status area structure (FATE#311692). - patches.suse/ipr-set-the-data-list-length-in-the-request.patch: [SCSI] ipr: set the data list length in the request control block (FATE#311692). - patches.suse/jbd-replace-barriers-with-explicit-flush-FUA-usag.patch: jbd: replace barriers with explicit flush / FUA usage (FATE#311692). - patches.suse/jbd2-Modify-ASYNC_COMMIT-code-to-not-rely-on-queue.patch: jbd2: Modify ASYNC_COMMIT code to not rely on queue draining on barrier (FATE#311692). - patches.suse/jbd2-replace-barriers-with-explicit-flush-FUA-usa.patch: jbd2: replace barriers with explicit flush / FUA usage (FATE#311692). - patches.suse/kill-BH_Ordered-flag.patch: kill BH_Ordered flag (FATE#311692). - patches.suse/laptop-mode-Make-flushes-per-device.patch: laptop-mode: Make flushes per-device (FATE#311692). - patches.suse/lguest-replace-VIRTIO_F_BARRIER-support-with-VIRTIO.patch: lguest: replace VIRTIO_F_BARRIER support with VIRTIO_F_FLUSH support (FATE#311692). - patches.suse/libahci-Fix-bug-in-storing-EM-messages.patch: libahci: Fix bug in storing EM messages (FATE#311692). - patches.suse/libata-Allow-pata_legacy-to-be-built-on-non-ISA-but.patch: libata: Allow pata_legacy to be built on non-ISA but PCI systems (FATE#311692). - patches.suse/libata-Disable-R_OK-Early-ACK-on-SII-3726-PMP.patch: [libata] Disable R_OK (Early ACK) on SII 3726 PMP (FATE#311692). - patches.suse/libata-Fix-several-inaccuracies-in-developer-s-guid.patch: libata: Fix several inaccuracies in developer's guide (FATE#311692). - patches.suse/libata-Pass-host-flags-into-the-pci-helper.patch: libata: Pass host flags into the pci helper (FATE#311692). - patches.suse/libata-Remove-excess-delay-in-the-tf_load-path.patch: libata: Remove excess delay in the tf_load path (FATE#311692). - patches.suse/libata-add-ATA_CMD_DSM-to-ata_get_cmd_descript.patch: [libata] add ATA_CMD_DSM to ata_get_cmd_descript (FATE#311692). - patches.suse/libata-allow-hyphenated-pattern-ranges.patch: libata: allow hyphenated pattern ranges (FATE#311692). - patches.suse/libata-be-less-of-a-drama-queen-on-empty-data-comma.patch: libata: be less of a drama queen on empty data commands (FATE#311692). - patches.suse/libata-cleanup-ata_sff_interrupt.patch: libata: cleanup ata_sff_interrupt() (FATE#311692). - patches.suse/libata-don-t-whine-on-spurious-IRQ.patch: libata: don't whine on spurious IRQ (FATE#311692). - patches.suse/libata-fix-CFA-handling-in-ide_timing_compute.patch: libata: fix CFA handling in ide_timing_compute() (FATE#311692). - patches.suse/libata-fix-docs-RE-port-and-device-of-libata.force.patch: libata: fix docs, RE port and device of libata.force ID separated by point (FATE#311692). - patches.suse/libata-glob_match-for-ata_device_blacklist-v2.patch: libata: glob_match for ata_device_blacklist (v2) (FATE#311692). - patches.suse/libata-implement-on-demand-HPA-unlocking.patch: libata: implement on-demand HPA unlocking (FATE#311692). - patches.suse/libata-implement-spurious-irq-handling-for-SFF-and.patch: libata: implement spurious irq handling for SFF and apply it to piix (FATE#311692). - patches.suse/libata-introduce-sff_set_devctl-method.patch: libata: introduce sff_set_devctl() method (FATE#311692). - patches.suse/libata-kill-ATA_FLAG_DISABLED.patch: libata: kill ATA_FLAG_DISABLED (FATE#311692). - patches.suse/libata-make-functions-variables-static.patch: libata: make functions/variables static (FATE#311692). - patches.suse/libata-make-sff_irq_on-method-optional.patch: libata: make sff_irq_on() method optional (FATE#311692). - patches.suse/libata-more-PCI-IDs-for-jmicron-controllers.patch: libata: more PCI IDs for jmicron controllers (FATE#311692). - patches.suse/libata-pata_via-revert-ata_wait_idle-removal-from.patch: libata,pata_via: revert ata_wait_idle() removal from ata_sff/via_tf_load() (FATE#311692). - patches.suse/libata-reduce-blacklist-size-even-more-v2.patch: libata: reduce blacklist size even more (v2) (FATE#311692). - patches.suse/libata-reduce-blacklist-size-v2.patch: libata: reduce blacklist size (v2) (FATE#311692). - patches.suse/libata-sff-Reenable-Port-Multiplier-after-libata-sf.patch: libata-sff: Reenable Port Multiplier after libata-sff remodeling (FATE#311692). - patches.suse/libata-sff-ap-last_-ctl-are-SFF-specific.patch: libata-sff: ap->[last_]ctl are SFF specific (FATE#311692). - patches.suse/libata-sff-ata_sff_-dumb_-qc_prep-are-BMDMA-specifi.patch: libata-sff: ata_sff_[dumb_]qc_prep are BMDMA specific (FATE#311692). - patches.suse/libata-sff-ata_sff_irq_clear-is-BMDMA-specific.patch: libata-sff: ata_sff_irq_clear() is BMDMA specific (FATE#311692). - patches.suse/libata-sff-clean-up-BMDMA-initialization.patch: libata-sff: clean up BMDMA initialization (FATE#311692). - patches.suse/libata-sff-clean-up-inheritance-in-several-drivers.patch: libata-sff: clean up inheritance in several drivers (FATE#311692). - patches.suse/libata-sff-fix-spurious-IRQ-handling.patch: libata-sff: fix spurious IRQ handling (FATE#311692). - patches.suse/libata-sff-introduce-ata_sff_init-exit-and-ata_sf.patch: libata-sff: introduce ata_sff_init/exit() and ata_sff_port_init() (FATE#311692). - patches.suse/libata-sff-kill-dummy-BMDMA-ops-from-sata_qstor-and.patch: libata-sff: kill dummy BMDMA ops from sata_qstor and pata_octeon_cf (FATE#311692). - patches.suse/libata-sff-kill-unused-ata_bus_reset.patch: libata-sff: kill unused ata_bus_reset() (FATE#311692). - patches.suse/libata-sff-kill-unused-prototype-and-make-ata_dev_s.patch: libata-sff: kill unused prototype and make ata_dev_select() static (FATE#311692). - patches.suse/libata-sff-port_task-is-SFF-specific.patch: libata-sff: port_task is SFF specific (FATE#311692). - patches.suse/libata-sff-prd-is-BMDMA-specific.patch: libata-sff: prd is BMDMA specific (FATE#311692). - patches.suse/libata-sff-remove-harmful-BUG_ON-from-ata_bmdma_qc_.patch: libata-sff: remove harmful BUG_ON from ata_bmdma_qc_issue (FATE#311692). - patches.suse/libata-sff-rename-ap-ops-drain_fifo-to-sff_drai.patch: libata-sff: rename ap->ops->drain_fifo() to sff_drain_fifo() (FATE#311692). - patches.suse/libata-sff-reorder-SFF-BMDMA-functions.patch: libata-sff: reorder SFF/BMDMA functions (FATE#311692). - patches.suse/libata-sff-separate-out-BMDMA-EH.patch: libata-sff: separate out BMDMA EH (FATE#311692). - patches.suse/libata-sff-separate-out-BMDMA-init.patch: libata-sff: separate out BMDMA init (FATE#311692). - patches.suse/libata-sff-separate-out-BMDMA-irq-handler.patch: libata-sff: separate out BMDMA irq handler (FATE#311692). - patches.suse/libata-sff-separate-out-BMDMA-qc_issue.patch: libata-sff: separate out BMDMA qc_issue (FATE#311692). - patches.suse/libata-sff-update-bmdma-host-bus-error-handling.patch: libata-sff: update bmdma host bus error handling (FATE#311692). - patches.suse/libata-unlock-HPA-if-device-shrunk.patch: libata: unlock HPA if device shrunk (FATE#311692). - patches.suse/libata-update-blacklist-for-new-hyphenated-pattern.patch: [libata] update blacklist for new hyphenated pattern ranges (v2) (FATE#311692). - patches.suse/libata-update-gfp-slab.h-includes.patch: libata: update gfp/slab.h includes (FATE#311692). - patches.suse/libata-use-__ratelimit.patch: libata: use __ratelimit (FATE#311692). - patches.suse/libata-use-longer-0xff-wait-if-parallel-scan-is-ena.patch: libata: use longer 0xff wait if parallel scan is enabled (FATE#311692). - patches.suse/libata-use-the-enlarged-capacity-after-late-HPA-unl.patch: libata: use the enlarged capacity after late HPA unlock (FATE#311692). - patches.suse/libsas-fix-deref-before-check-in-commit-70b2.patch: [SCSI] libsas: fix deref before check in commit 70b25f890ce (FATE#311692). - patches.suse/md-Call-blk_queue_flush-to-establish-flush-fua-su.patch: md: Call blk_queue_flush() to establish flush/fua support (FATE#311692). - patches.suse/md-implment-REQ_FLUSH-FUA-support.patch: md: implment REQ_FLUSH/FUA support (FATE#311692). - patches.suse/md-unify-flags-for-struct-bio-and-struct-request.patch: block: unify flags for struct bio and struct request (FATE#311692). - patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: Refresh. - patches.suse/nilfs2-replace-barriers-with-explicit-flush-FUA-u.patch: nilfs2: replace barriers with explicit flush / FUA usage (FATE#311692). - patches.suse/no-partition-scan: Refresh. - patches.suse/osdblk-stop-using-q-prepare_flush_fn.patch: osdblk: stop using q->prepare_flush_fn (FATE#311692). - patches.suse/osst-fix-read-buffer-overflow.patch: osst: fix read buffer overflow (FATE#311692). - patches.suse/pata_ali-documentation-fixes.patch: pata_ali: documentation fixes (FATE#311692). - patches.suse/pata_artop-Fix-device-ID-parity-check.patch: pata_artop: Fix device ID parity check (FATE#311692). - patches.suse/pata_at91-fix-backslash-continued-string.patch: [libata] pata_at91: fix backslash-continued string (FATE#311692). - patches.suse/pata_atiixp-add-locking-for-parallel-scann.patch: [libata] pata_atiixp: add locking for parallel scanning (FATE#311692). - patches.suse/pata_atiixp-enable-parallel-scan.patch: pata_atiixp: enable parallel scan (FATE#311692). - patches.suse/pata_cmd640-don-t-read-CFR-pointlessly.patch: pata_cmd640: don't read CFR pointlessly (FATE#311692). - patches.suse/pata_cmd64x-cmd648_bmdma_stop-fix.patch: pata_cmd64x: cmd648_bmdma_stop() fix (FATE#311692). - patches.suse/pata_cmd64x-fix-PIO-setup.patch: pata_cmd64x: fix PIO setup (FATE#311692). - patches.suse/pata_cmd64x-fix-handling-of-address-setup-timings.patch: pata_cmd64x: fix handling of address setup timings (FATE#311692). - patches.suse/pata_cmd64x-remove-unused-definitions.patch: pata_cmd64x: remove unused definitions (FATE#311692). - patches.suse/pata_cmd64x-revert-commit-d62f5576.patch: pata_cmd64x: revert commit d62f5576 (FATE#311692). - patches.suse/pata_cs5535-use-correct-values-for-PIO1-and-PIO2-da.patch: pata_cs5535: use correct values for PIO1 and PIO2 data timings (FATE#311692). - patches.suse/pata_cypress-fix-PIO-timings-underclocking.patch: pata_cypress: fix PIO timings underclocking (FATE#311692). - patches.suse/pata_efar-Enable-parallel-scanning.patch: pata_efar: Enable parallel scanning (FATE#311692). - patches.suse/pata_efar-add-locking-for-parallel-scannin.patch: [libata] pata_efar: add locking for parallel scanning (FATE#311692). - patches.suse/pata_efar-fix-secondary-port-support.patch: pata_efar: fix secondary port support (FATE#311692). - patches.suse/pata_hpt-37x-3x2n-improve-timing-register-document.patch: pata_hpt{37x|3x2n}: improve timing register documentation (FATE#311692). - patches.suse/pata_hpt-37x-3x2n-unify-mode-programming.patch: pata_hpt{37x|3x2n}: unify mode programming (FATE#311692). - patches.suse/pata_hpt366-remove-irrelevant-TODO.patch: pata_hpt366: remove irrelevant TODO (FATE#311692). - patches.suse/pata_hpt366-remove-redundant-code.patch: pata_hpt366: remove redundant code (FATE#311692). - patches.suse/pata_hpt37x-use-ATA_DMA_-constants.patch: pata_hpt37x: use ATA_DMA_* constants (FATE#311692). - patches.suse/pata_marvell-CONFIG_AHCI-is-really-CONFIG_.patch: [libata] pata_marvell: CONFIG_AHCI is really CONFIG_SATA_AHCI (FATE#311692). - patches.suse/pata_mpc52xx-reduce-code-size-by-simple-change-of-c.patch: pata_mpc52xx: reduce code size by simple change of constant data types (FATE#311692). - patches.suse/pata_pcmcia-ide-cs-Fix-bad-hashes-for-Transcend-a.patch: pata_pcmcia / ide-cs: Fix bad hashes for Transcend and kingston IDs (FATE#311692). - patches.suse/pata_pcmcia-ide-cs-add-IDs-for-transcend-and-kingst.patch: pata_pcmcia/ide-cs: add IDs for transcend and kingston cards (FATE#311692). - patches.suse/pata_scc-kill-useless-check-in-scc_postreset.patch: pata_scc: kill useless check in scc_postreset() (FATE#311692). - patches.suse/pata_scc-make-scc_wait_after_reset-static.patch: pata_scc: make scc_wait_after_reset() static (FATE#311692). - patches.suse/pata_sch-use-ata_pci_sff_init_one.patch: pata_sch: use ata_pci_sff_init_one() (FATE#311692). - patches.suse/pata_serverworks-fix-PIO-setup-for-the-second-chann.patch: pata_serverworks: fix PIO setup for the second channel (FATE#311692). - patches.suse/pata_serverworks-fix-error-message.patch: pata_serverworks: fix error message (FATE#311692). - patches.suse/pata_sil680-Do-our-own-exec_command-posting.patch: pata_sil680: Do our own exec_command posting (FATE#311692). - patches.suse/pata_via-fix-VT6410-6415-6330-detection-issue.patch: pata_via: fix VT6410/6415/6330 detection issue (FATE#311692). - patches.suse/pata_via-fix-address-setup-timings-underlocking.patch: pata_via: fix address setup timings underlocking (FATE#311692). - patches.suse/pata_via-store-UDMA-masks-in-via_isa_bridges-table.patch: pata_via: store UDMA masks in via_isa_bridges table (FATE#311692). - patches.suse/pmcraid-MSI-X-support-and-other-changes.patch: [SCSI] pmcraid: MSI-X support and other changes (FATE#311692). - patches.suse/ps3disk-stop-using-q-prepare_flush_fn.patch: ps3disk: stop using q->prepare_flush_fn (FATE#311692). - patches.suse/reiserfs-replace-barriers-with-explicit-flush-FUA.patch: reiserfs: replace barriers with explicit flush / FUA usage (FATE#311692). - patches.suse/sata_inic162x-inic162x-is-not-dependent-on-CONFIG_A.patch: sata_inic162x: inic162x is not dependent on CONFIG_ATA_SFF (FATE#311692). - patches.suse/sata_inic162x-kill-PORT_PRD_ADDR-initialization.patch: sata_inic162x: kill PORT_PRD_ADDR initialization (FATE#311692). - patches.suse/sata_mv-drop-unncessary-EH-callback-resetting.patch: sata_mv: drop unncessary EH callback resetting (FATE#311692). - patches.suse/sata_mv-remove-unnecessary-initialization.patch: sata_mv: remove unnecessary initialization (FATE#311692). - patches.suse/sata_sil24-Use-memory-barriers-before-issuing-comma.patch: sata_sil24: Use memory barriers before issuing commands (FATE#311692). - patches.suse/sata_sil24-fix-kernel-panic-on-ARM-caused-by-unalig.patch: sata_sil24: fix kernel panic on ARM caused by unaligned access in sata_sil24 (FATE#311692). - patches.suse/sata_sil24-memset-overflow.patch: sata_sil24: memset() overflow (FATE#311692). - patches.suse/sata_via-Correctly-setup-PIO-DMA-for-pata-slave-on.patch: sata_via: Correctly setup PIO/DMA for pata slave on vt6421 (FATE#311692). - patches.suse/sata_via-Delay-on-vt6420-when-starting-ATAPI-DMA-wr.patch: sata_via: Delay on vt6420 when starting ATAPI DMA write (FATE#311692). - patches.suse/sata_via-explain-the-magic-fix.patch: sata_via: explain the magic fix (FATE#311692). - patches.suse/scatterlist-prevent-invalid-free-when-alloc-fails.patch: scatterlist: prevent invalid free when alloc fails (FATE#311692). - patches.suse/scsi-Fix-VPD-inquiry-page-wrapper.patch: [SCSI] Fix VPD inquiry page wrapper (FATE#311692). - patches.suse/scsi-Fix-warning-zero-length-gnu_printf-format-st.patch: [SCSI] Fix warning: zero-length gnu_printf format string (FATE#311692). - patches.suse/scsi-Log-msg-when-getting-Unit-Attention.patch: [SCSI] Log msg when getting Unit Attention (FATE#311692). - patches.suse/scsi-Retry-commands-with-UNIT_ATTENTION-sense-code.patch: [SCSI] Retry commands with UNIT_ATTENTION sense codes to fix ext3/ext4 I/O error (FATE#311692). - patches.suse/scsi-SCSI-Support-Type-C-RAID-controller.patch: [SCSI] SCSI: Support Type C RAID controller (FATE#311692). - patches.suse/scsi-Unexport-scsi-scsi.h-from-headers_install.patch: [SCSI] Unexport scsi/scsi.h from headers_install (FATE#311692). - patches.suse/scsi-Unify-SAM_-and-SAM_STAT_-macros.patch: [SCSI] Unify SAM_ and SAM_STAT_ macros (FATE#311692). - patches.suse/scsi-add-sd_unprep_fn-to-free-discard-page.patch: scsi: add sd_unprep_fn to free discard page (FATE#311692). - patches.suse/scsi-convert-discard-to-REQ_TYPE_FS-from-REQ_TYPE_B.patch: scsi: convert discard to REQ_TYPE_FS from REQ_TYPE_BLOCK_PC (FATE#311692). - patches.suse/scsi-deprecate-barrier-and-replace-blk_queue_order.patch: block: deprecate barrier and replace blk_queue_ordered() with blk_queue_flush() (FATE#311692). - patches.suse/scsi-don-t-allocate-a-payload-for-discard-request.patch: block: don't allocate a payload for discard request (FATE#311692). - patches.suse/scsi-fix-bio.bi_rw-handling.patch: [SCSI] fix bio.bi_rw handling (FATE#311692). - patches.suse/scsi-fix-discard-page-leak.patch: scsi: fix discard page leak (FATE#311692). - patches.suse/scsi-fix-race-in-scsi_target_reap.patch: [SCSI] fix race in scsi_target_reap (FATE#311692). - patches.suse/scsi-fix-sdev_rw_attr-macro-for-scsi-device-sysfs.patch: [SCSI] fix sdev_rw_attr macro for scsi device sysfs entries (FATE#311692). - patches.suse/scsi-fix-use-after-free-in-scsi_init_io.patch: [SCSI] fix use-after-free in scsi_init_io() (FATE#311692). - patches.suse/scsi-i2o_block-cleanup-ioctl-handling.patch: scsi/i2o_block: cleanup ioctl handling (FATE#311692). - patches.suse/scsi-ipr-update-the-configuration-table-code-for.patch: Refresh. - patches.suse/scsi-libiscsi-reset-cmd-timer-if-cmds-are-making.patch: Refresh. - patches.suse/scsi-make-error-handling-more-robust-in-the-face-o.patch: [SCSI] make error handling more robust in the face of reservations (FATE#311692). - patches.suse/scsi-need-to-reset-unprep_rq_fn-in-sd_remove.patch: scsi: need to reset unprep_rq_fn in sd_remove (FATE#311692). - patches.suse/scsi-pass-unit-attention-upwards.patch: Pass unit attention code upwards to the SCSI layer (FATE#). - patches.suse/scsi-pmcraid-Remove-unnecessary-casts-for-void.patch: [SCSI] pmcraid : Remove unnecessary casts for void * pointers (FATE#311692). - patches.suse/scsi-remove-superfluous-NULL-pointer-check-from-scs.patch: scsi: remove superfluous NULL pointer check from scsi_kill_request() (FATE#311692). - patches.suse/scsi-remove-unused-free-discard-page-in-sd_done.patch: scsi: remove unused free discard page in sd_done (FATE#311692). - patches.suse/scsi-remove-wrappers-from-request-type-flags.patch: block: remove wrappers for request type/flags (FATE#311692). - patches.suse/scsi-scsi-hosts.c-Fix-warning-variable-rval-set.patch: [SCSI] scsi:hosts.c Fix warning: variable 'rval' set but not used (FATE#311692). - patches.suse/scsi-scsi_debug-fix-map_region-and-unmap_region-o.patch: [SCSI] scsi_debug: fix map_region and unmap_region oops (FATE#311692). - patches.suse/scsi-scsi_dh_rdac-Add-Dell-MD36xxi-controller-int.patch: [SCSI] scsi_dh_rdac: Add Dell MD36xxi controller into RDAC device list (FATE#311692). - patches.suse/scsi-sg-fix-bio-leak-with-a-detached-device.patch: [SCSI] sg: fix bio leak with a detached device (FATE#311692). - patches.suse/scsi-stop-using-q-prepare_flush_fn.patch: scsi: stop using q->prepare_flush_fn (FATE#311692). - patches.suse/scsi-tgt-fix-warning.patch: [SCSI] tgt: fix warning (FATE#311692). - patches.suse/scsi-use-REQ_TYPE_FS-for-flush-request.patch: scsi: use REQ_TYPE_FS for flush request (FATE#311692). - patches.suse/sd-implement-sd_unlock_native_capacity.patch: SCSI: implement sd_unlock_native_capacity() (FATE#311692). - patches.suse/sd-quiet-all-sparse-noise.patch: scsi/sd.c: quiet all sparse noise (FATE#311692). - patches.suse/staging-Update-dst-to-handle-FLUSH-FUA.patch: staging: Update dst to handle FLUSH/FUA (FATE#311054). - patches.suse/swap-discard-while-swapping-only-if-SWAP_FLAG_DISCA.patch: swap: discard while swapping only if SWAP_FLAG_DISCARD (FATE#311692). - patches.suse/swap-do-not-send-discards-as-barriers.patch: swap: do not send discards as barriers (FATE#311692). - patches.suse/vfs-don-t-hold-s_umount-over-close_bdev_exclusive.patch: vfs: don't hold s_umount over close_bdev_exclusive() call (FATE#311692). - patches.suse/vfs-rename-block_fsync-to-blkdev_fsync.patch: vfs: rename block_fsync() to blkdev_fsync() (FATE#311692). - patches.suse/virtio-blk-deprecate-barrier-and-replace-blk_queue_order.patch: block: deprecate barrier and replace blk_queue_ordered() with blk_queue_flush() (FATE#311692). - patches.suse/virtio-blk-kill-QUEUE_ORDERED_BY_TAG.patch: block: kill QUEUE_ORDERED_BY_TAG (FATE#311692). - patches.suse/virtio_blk-add-default-case-to-cmd-type-switch.patch: virtio_blk: add default case to cmd type switch (FATE#311692). - patches.suse/virtio_blk-drop-REQ_HARDBARRIER-support.patch: virtio_blk: drop REQ_HARDBARRIER support (FATE#311692). - patches.suse/virtio_blk-stop-using-q-prepare_flush_fn.patch: virtio_blk: stop using q->prepare_flush_fn (FATE#311692). - patches.suse/xen-blkfront-Implement-FUA-with-BLKIF_OP_WRITE_BARR.patch: xen/blkfront: Implement FUA with BLKIF_OP_WRITE_BARRIER (FATE#311692). - patches.suse/xen-blkfront-map-REQ_FLUSH-into-a-full-barrier.patch: xen/blkfront: map REQ_FLUSH into a full barrier (FATE#311692). - patches.suse/xfs-replace-barriers-with-explicit-flush-FUA-usag.patch: xfs: replace barriers with explicit flush / FUA usage (FATE#311692). - patches.xen/tmem: Refresh.- patches.fixes/bug-691216_hp_accel-resume-warning-fix.diff: fix kernel warning upon resumption from S4 due to hw_accel (bnc#691216).- patches.arch/s390-30-01-qeth-sysfs-serialize.patch: qeth: serialize device removal and config changes (bnc#696586,LTC#72239). - patches.arch/s390-30-02-crypto-prng-seed.patch: crypto: prng error in initial seed calculation (bnc#696586,LTC#72362).- rpm/macros.kernel-source: Add -b option to %kernel_module_package to unconditionally call mkinitrd on kmp install (fate#309400). - rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to weak-modules2 if the -b option is used.- patches.suse/cifs-enable-signing-flag-in-SMB-header-when-server-h.patch: cifs: enable signing flag in SMB header when server has it on (bko#28142).- patches.suse/cifs-check-for-private_data-before-trying-to-put-it.patch: cifs: check for private_data before trying to put it (bnc#692497).- patches.suse/cifs-127-implement-recurring-workqueue-job-to-prune-old-.patch: move prune_tlinks declaration out of #ifdef.- move patches.fixes/err-h-add-helper-function-to-simplify-pointer-error-checking moved closer to the top of series.conf to resolve compilation issues with ksm patches which use its functionality as well.- move patches.arch/x86-uv-westmere-acpicid-fix.patch still one patch further down.- move patches.arch/x86-uv-westmere-acpicid-fix.patch further down after a patch on which it depends, so that partly applied series.conf still compiles- patches.fixes/fixdep-part1.patch: fixdep: Do not record dependency on the source file itself. - patches.fixes/fixdep-part2.patch: kbuild: Fix computing srcversion for modules.- fix up header, since it's in mainline. - patches.fixes/block-Add-proper-guards-to-__elv_next_request:- Add fix for NULL dereference in elv_queue_empty() pending the fix hitting mainline/stable. - patches.fixes/block-Add-proper-guards-to-__elv_next_request: block: add proper state guards to __elv_next_request (http://marc.info/?l=linux-scsi&m=130348673628282).- Update config files: CONFIG_CIFS_ACL=n. Also fix a typo with the previous commit.- Bring cifs to 2.6.38 level (cifs internal version 1.70) for FATE#311695 - Update config files. - patches.suse/cifs-001-Enable-mmap-on-forcedirectio-mounts.patch: Enable mmap on forcedirectio mounts (FATE#311695). - patches.suse/cifs-002-Add-support-for-TCP_NODELAY.patch: Add support for TCP_NODELAY (FATE#311695). - patches.suse/cifs-003-Maximum-username-length-check-in-session-setup-.patch: Maximum username length check in session setup does not match (FATE#311695). - patches.suse/cifs-004-Don-t-cache-timestamps-on-utimes-due-to-coarse-.patch: Don't cache timestamps on utimes due to coarse granularity (FATE#311695). - patches.suse/cifs-005-fix-dentry-hash-calculation-for-case-insensitiv.patch: cifs: fix dentry hash calculation for case-insensitive mounts (FATE#311695). - patches.suse/cifs-006-add-parens-around-smb_var-in-BCC-macros.patch: cifs: add parens around smb_var in BCC macros (FATE#311695). - patches.suse/cifs-007-clean-up-indentation-in-CIFSSMBQAllEAs.patch: cifs: clean up indentation in CIFSSMBQAllEAs (FATE#311695). - patches.suse/cifs-008-rename-name_len-to-list_len-in-CIFSSMBQAllEAs.patch: cifs: rename name_len to list_len in CIFSSMBQAllEAs (FATE#311695). - patches.suse/cifs-009-increase-maximum-buffer-size-in-CIFSSMBQAllEAs.patch: cifs: increase maximum buffer size in CIFSSMBQAllEAs (FATE#311695). - patches.suse/cifs-010-verify-lengths-of-QueryAllEAs-reply.patch: cifs: verify lengths of QueryAllEAs reply (FATE#311695). - patches.suse/cifs-011-merge-CIFSSMBQueryEA-with-CIFSSMBQAllEAs.patch: cifs: merge CIFSSMBQueryEA with CIFSSMBQAllEAs (FATE#311695). - patches.suse/cifs-012-Minor-cleanup-to-EA-patch.patch: Minor cleanup to EA patch (FATE#311695). - patches.suse/cifs-013-set-server_eof-in-cifs_fattr_to_inode.patch: cifs: set server_eof in cifs_fattr_to_inode (FATE#311695). - patches.suse/cifs-014-Use-unsigned-ea-length-for-clarity.patch: Use unsigned ea length for clarity (FATE#311695). - patches.suse/cifs-015-pSesInfo-sesSem-is-used-as-mutex.-Rename-it-to-.patch: pSesInfo->sesSem is used as mutex. Rename it to session_mutex and convert it to a real mutex (FATE#311695). - patches.suse/cifs-016-overhaul-cifs_revalidate-and-rename-to-cifs_rev.patch: cifs: overhaul cifs_revalidate and rename to cifs_revalidate_dentry (FATE#311695). - patches.suse/cifs-017-add-a-CIFSSMBQFileInfo-function.patch: cifs: add a CIFSSMBQFileInfo function (FATE#311695). - patches.suse/cifs-018-add-a-CIFSSMBUnixQFileInfo-function.patch: cifs: add a CIFSSMBUnixQFileInfo function (FATE#311695). - patches.suse/cifs-019-add-cifs_revalidate_file.patch: cifs: add cifs_revalidate_file (FATE#311695). - patches.suse/cifs-020-trivial-white-space.patch: cifs: trivial white space (FATE#311695). - patches.suse/cifs-021-Add-mmap-for-direct-nobrl-cifs-mount-types.patch: Add mmap for direct, nobrl cifs mount types (FATE#311695). - patches.suse/cifs-022-overwriting-file_lock-structure-after-GET_LK.patch: not overwriting file_lock structure after GET_LK (FATE#311695). - patches.suse/cifs-023-Neaten-cERROR-and-cFYI-macros-reduce-text-space.patch: Neaten cERROR and cFYI macros, reduce text space (FATE#311695). - patches.suse/cifs-024-Cleanup-various-minor-breakage-in-previous-cFYI.patch: Cleanup various minor breakage in previous cFYI cleanup (FATE#311695). - patches.suse/cifs-025-Fix-losing-locks-during-fork.patch: Fix losing locks during fork() (FATE#311695). - patches.suse/cifs-026-track-local_nls-in-volume-info.patch: cifs: track local_nls in volume info (FATE#311695). - patches.suse/cifs-027-move-SMB-session-creation-code-into-separate-fu.patch: cifs: move SMB session creation code into separate function (FATE#311695). - patches.suse/cifs-028-move-tcon-find-create-into-separate-function.patch: cifs: move tcon find/create into separate function (FATE#311695). - patches.suse/cifs-029-rename-extended_security-to-global_secflags.patch: cifs: rename "extended_security" to "global_secflags" (FATE#311695). - patches.suse/cifs-030-fix-typo.patch: cifs: change && to || (FATE#311695). - patches.suse/cifs-031-save-the-dialect-chosen-by-server.patch: cifs: save the dialect chosen by server (FATE#311695). - patches.suse/cifs-032-Fix-lease-break-for-writes.patch: Fix lease break for writes (FATE#311695). - patches.suse/cifs-033-eliminate-first_time-parm-to-CIFS_SessSetup.patch: cifs: eliminate "first_time" parm to CIFS_SessSetup (FATE#311695). - patches.suse/cifs-034-break-negotiate-protocol-calls-out-of-cifs_setu.patch: cifs: break negotiate protocol calls out of cifs_setup_session (FATE#311695). - patches.suse/cifs-035-have-decode_negTokenInit-set-flags-in-server-st.patch: cifs: have decode_negTokenInit set flags in server struct (FATE#311695). - patches.suse/cifs-036-Remove-unused-cifs_oplock_cachep.patch: Remove unused cifs_oplock_cachep (FATE#311695). - patches.suse/cifs-037-drop-quota-operation-stubs.patch: drop quota operation stubs (FATE#311695). - patches.suse/cifs-038-always-revalidate-hardlinked-inodes-when-using-.patch: cifs: always revalidate hardlinked inodes when using noserverino (FATE#311695). - patches.suse/cifs-039-don-t-update-uniqueid-in-cifs_fattr_to_inode.patch: cifs: don't update uniqueid in cifs_fattr_to_inode (FATE#311695). - patches.suse/cifs-040-fix-noserverino-handling-when-unix-extensions-a.patch: cifs: fix noserverino handling when unix extensions are enabled (FATE#311695). - patches.suse/cifs-041-implement-drop_inode-superblock-op.patch: cifs: implement drop_inode superblock op (FATE#311695). - patches.suse/cifs-042-guard-cifsglob.h-against-multiple-inclusion.patch: cifs: guard cifsglob.h against multiple inclusion (FATE#311695). - patches.suse/cifs-043-remove-an-potentially-confusing-obsolete-commen.patch: cifs: remove an potentially confusing, obsolete comment (FATE#311695). - patches.suse/cifs-044-remove-unused-ip_address-field-in-struct-TCP_Se.patch: cifs: remove unused ip_address field in struct TCP_Server_Info (FATE#311695). - patches.suse/cifs-045-add-kernel-config-option-for-CIFS-Client-cachin.patch: cifs: add kernel config option for CIFS Client caching support (FATE#311695). - patches.suse/cifs-046-cifs-Remove-unnecessary-casts-of-private_data.patch: fs/cifs: Remove unnecessary casts of private_data (FATE#311695). - patches.suse/cifs-047-register-CIFS-for-caching.patch: cifs: register CIFS for caching (FATE#311695). - patches.suse/cifs-048-define-server-level-cache-index-objects-and-reg.patch: cifs: define server-level cache index objects and register them (FATE#311695). - patches.suse/cifs-049-set-the-port-in-sockaddr-in-a-more-clearly-defi.patch: cifs: set the port in sockaddr in a more clearly defined fashion (FATE#311695). - patches.suse/cifs-050-move-address-comparison-into-separate-function.patch: cifs: move address comparison into separate function (FATE#311695). - patches.suse/cifs-051-match-secType-when-searching-for-existing-tcp-s.patch: cifs: match secType when searching for existing tcp session (FATE#311695). - patches.suse/cifs-052-clean-up-cifs_find_smb_ses-try-2.patch: cifs: clean up cifs_find_smb_ses (try #2) (FATE#311695). - patches.suse/cifs-053-remove-unused-cifsUidInfo-struct.patch: cifs: remove unused cifsUidInfo struct (FATE#311695). - patches.suse/cifs-054-define-superblock-level-cache-index-objects-and.patch: cifs: define superblock-level cache index objects and register them (FATE#311695). - patches.suse/cifs-055-define-inode-level-cache-object-and-register-th.patch: cifs: define inode-level cache object and register them (FATE#311695). - patches.suse/cifs-056-FS-Cache-page-management.patch: cifs: FS-Cache page management (FATE#311695). - patches.suse/cifs-057-store-pages-into-local-cache.patch: cifs: store pages into local cache (FATE#311695). - patches.suse/cifs-058-read-pages-from-FS-Cache.patch: cifs: read pages from FS-Cache (FATE#311695). - patches.suse/cifs-059-add-mount-option-to-enable-local-caching.patch: cifs: add mount option to enable local caching (FATE#311695). - patches.suse/cifs-060-Fix-build-break-when-CONFIG_CIFS_FSCACHE-disabl.patch: Fix build break when CONFIG_CIFS_FSCACHE disabled (FATE#311695). - patches.suse/cifs-061-Missing-line-from-previous-commit.patch: Missing line from previous commit (FATE#311695). - patches.suse/cifs-062-Missing-ifdef.patch: Missing ifdef (FATE#311695). - patches.suse/cifs-063-cifs-check-kmalloc-result.patch: fs: cifs: check kmalloc() result (FATE#311695). - patches.suse/cifs-064-add-separate-cred_uid-field-to-sesInfo.patch: cifs: add separate cred_uid field to sesInfo (FATE#311695). - patches.suse/cifs-065-relinquish-fscache-cookie-before-freeing-CIFSTc.patch: relinquish fscache cookie before freeing CIFSTconInfo (FATE#311695). - patches.suse/cifs-066-don-t-allow-cifs_iget-to-match-inodes-of-the-wr.patch: cifs: don't allow cifs_iget to match inodes of the wrong type (FATE#311695). - patches.suse/cifs-067-map-NT_STATUS_ERROR_WRITE_PROTECTED-to-EROFS.patch: cifs: map NT_STATUS_ERROR_WRITE_PROTECTED to -EROFS (FATE#311695). - patches.suse/cifs-068-ignore-the-mand-nomand-and-_netdev-mount-option.patch: cifs: ignore the "mand", "nomand" and "_netdev" mount options (FATE#311695). - patches.suse/cifs-069-remove-redundant-path-walking-in-dfs_do_refmoun.patch: remove redundant path walking in dfs_do_refmount (FATE#311695). - patches.suse/cifs-070-fsc-should-not-default-to-on.patch: cifs: fsc should not default to "on" (FATE#311695). - patches.suse/cifs-071-update-README.patch: cifs: update README (FATE#311695). - patches.suse/cifs-072-show-features-compiled-in-as-part-of-DebugData.patch: cifs: show features compiled in as part of DebugData (FATE#311695). - patches.suse/cifs-073-Make-cifs_convert_address-take-a-const-src-poin.patch: CIFS: Make cifs_convert_address() take a const src pointer and a length (FATE#311695). - patches.suse/cifs-074-reduce-false-positives-with-inode-aliasing-serv.patch: cifs: reduce false positives with inode aliasing serverino autodisable (FATE#311695). - patches.suse/cifs-075-account-for-new-creduid-0x-x-parameter-in-spneg.patch: cifs: account for new creduid=0x%x parameter in spnego upcall string (FATE#311695). - patches.suse/cifs-076-update-README-to-include-details-about-fsc-opti.patch: cifs: update README to include details about 'fsc' option (FATE#311695). - patches.suse/cifs-077-clean-up-error-handling-in-cifs_mknod.patch: cifs: clean up error handling in cifs_mknod (FATE#311695). - patches.suse/cifs-078-consolidate-error-handling-in-several-functions.patch: cifs: consolidate error handling in several functions (FATE#311695). - patches.suse/cifs-079-missing-prepathlen-oops: cifs: revert upstream commit "always do is_path_accessible. - patches.suse/cifs-080-correction-of-unicode-header-files.patch: cifs: correction of unicode header files (FATE#311695). - patches.suse/cifs-081-Fix-ntlmv2-auth-with-ntlmssp.patch: Fix ntlmv2 auth with ntlmssp (FATE#311695). - patches.suse/cifs-082-changes-during-ntlmv2-ntlmssp-auth-and-sign.patch: missing changes during ntlmv2/ntlmssp auth and sign (FATE#311695). - patches.suse/cifs-083-sparse-warning-bad-constant-expression.patch: Eliminate sparse warning - bad constant expression (FATE#311695). - patches.suse/cifs-084-Eliminate-unused-variable-warning.patch: Eliminate unused variable warning (FATE#311695). - patches.suse/cifs-085-CIFS-Eliminate-unused-variable-warning.patch: Revert " Eliminate unused variable warning" (FATE#311695). - patches.suse/cifs-086-Eliminate-sparse-warning-bad-constant-express.patch: Revert "Eliminate sparse warning - bad constant expression" (FATE#311695). - patches.suse/cifs-087-missing-changes-during-ntlmv2-ntlmssp-auth-an.patch: Revert "missing changes during ntlmv2/ntlmssp auth and sign" (FATE#311695). - patches.suse/cifs-088-CIFS-Fix-ntlmv2-auth-with-ntlmssp.patch: Revert " Fix ntlmv2 auth with ntlmssp" (FATE#311695). - patches.suse/cifs-089-eliminate-redundant-xdev-check-in-cifs_rename.patch: cifs: eliminate redundant xdev check in cifs_rename (FATE#311695). - patches.suse/cifs-090-ntlmv2-ntlmssp-remove-unused-function-CalcNTLMv.patch: ntlmv2/ntlmssp remove-unused-function CalcNTLMv2_partial_mac_key (FATE#311695). - patches.suse/cifs-091-prevent-cifsd-from-exiting-prematurely.patch: cifs: prevent cifsd from exiting prematurely (FATE#311695). - patches.suse/cifs-092-eliminate-some-more-premature-cifsd-exits.patch: cifs: eliminate some more premature cifsd exits (FATE#311695). - patches.suse/cifs-093-prevent-possible-memory-corruption-in-cifs_demu.patch: cifs: prevent possible memory corruption in cifs_demultiplex_thread (FATE#311695). - patches.suse/cifs-094-fix-potential-double-put-of-TCP-session-referen.patch: cifs: fix potential double put of TCP session reference (FATE#311695). - patches.suse/cifs-095-use-type-__u32-instead-of-int-for-the-oplock-pa.patch: cifs: use type __u32 instead of int for the oplock parameter (FATE#311695). - patches.suse/cifs-096-fix-broken-oplock-handling.patch: cifs: fix broken oplock handling (FATE#311695). - patches.suse/cifs-097-NTLMv2-NTLMSSP-Change-variable-name-mac_key-to-.patch: cifs NTLMv2/NTLMSSP Change variable name mac_key to session key to reflect the key it holds (FATE#311695). - patches.suse/cifs-098-NTLMv2-NTLMSSP-ntlmv2-within-ntlmssp-autenticat.patch: cifs NTLMv2/NTLMSSP ntlmv2 within ntlmssp autentication code (FATE#311695). - patches.suse/cifs-099-Allow-binding-to-local-IP-address.patch: cifs: Allow binding to local IP address (FATE#311695). - patches.suse/cifs-100-implement-CIFSParseMFSymlink.patch: cifs: implement CIFSParseMFSymlink() (FATE#311695). - patches.suse/cifs-101-implement-CIFSCouldBeMFSymlink-and-CIFSCheckMFS.patch: cifs: implement CIFSCouldBeMFSymlink() and CIFSCheckMFSymlink() (FATE#311695). - patches.suse/cifs-102-implement-CIFSQueryMFSymLink.patch: cifs: implement CIFSQueryMFSymLink() (FATE#311695). - patches.suse/cifs-103-implement-CIFSFormatMFSymlink.patch: cifs: implement CIFSFormatMFSymlink() (FATE#311695). - patches.suse/cifs-104-implement-CIFSCreateMFSymLink.patch: cifs: implement CIFSCreateMFSymLink() (FATE#311695). - patches.suse/cifs-105-use-Minshall-French-symlink-functions.patch: cifs: use Minshall+French symlink functions (FATE#311695). - patches.suse/cifs-106-add-mfsymlinks-mount-option.patch: cifs: add "mfsymlinks" mount option (FATE#311695). - patches.suse/cifs-107-add-tcon-field-to-cifsFileInfo-struct.patch: cifs: add tcon field to cifsFileInfo struct (FATE#311695). - patches.suse/cifs-108-allow-matching-of-tcp-sessions-in-CifsNew-state.patch: cifs: allow matching of tcp sessions in CifsNew state (FATE#311695). - patches.suse/cifs-109-Remove-obsolete-header.patch: Remove obsolete header (FATE#311695). - patches.suse/cifs-110-Fix-ordering-of-cleanup-on-module-init-failure.patch: Fix ordering of cleanup on module init failure (FATE#311695). - patches.suse/cifs-111-make-various-routines-use-the-cifsFileInfo-tcon.patch: cifs: make various routines use the cifsFileInfo->tcon pointer (FATE#311695). - patches.suse/cifs-112-add-function-to-get-a-tcon-from-cifs_sb.patch: cifs: add function to get a tcon from cifs_sb (FATE#311695). - patches.suse/cifs-113-temporarily-rename-cifs_sb-tcon-to-ptcon-to-cat.patch: cifs: temporarily rename cifs_sb->tcon to ptcon to catch stragglers (FATE#311695). - patches.suse/cifs-114-add-cifs_sb_master_tcon-and-convert-some-caller.patch: cifs: add cifs_sb_master_tcon and convert some callers to use it (FATE#311695). - patches.suse/cifs-115-have-cifs_new_fileinfo-take-a-tcon-arg.patch: cifs: have cifs_new_fileinfo take a tcon arg (FATE#311695). - patches.suse/cifs-116-fix-handling-of-signing-with-writepages-try-6.patch: cifs: fix handling of signing with writepages (try #6) (FATE#311695). - patches.suse/cifs-117-prevent-infinite-recursion-in-cifs_reconnect_tc.patch: cifs: prevent infinite recursion in cifs_reconnect_tcon (FATE#311695). - patches.suse/cifs-118-add-refcounted-and-timestamped-container-for-ho.patch: cifs: add refcounted and timestamped container for holding tcons (FATE#311695). - patches.suse/cifs-119-have-cifsFileInfo-hold-a-reference-to-a-tlink-r.patch: cifs: have cifsFileInfo hold a reference to a tlink rather than tcon pointer (FATE#311695). - patches.suse/cifs-120-have-find_readable-writable_file-filter-by-fsui.patch: cifs: have find_readable/writable_file filter by fsuid (FATE#311695). - patches.suse/cifs-121-fix-cifs_show_options-to-show-username-or-multi.patch: cifs: fix cifs_show_options to show "username=" or "multiuser" (FATE#311695). - patches.suse/cifs-122-authentication-and-signing-Correct-response-len.patch: ntlm authentication and signing - Correct response length for ntlmv2 authentication without extended security (FATE#311695). - patches.suse/cifs-123-add-routines-to-build-sessions-and-tcons-on-the.patch: cifs: add routines to build sessions and tcons on the fly (FATE#311695). - patches.suse/cifs-124-add-multiuser-mount-option.patch: cifs: add "multiuser" mount option (FATE#311695). - patches.suse/cifs-125-Various-small-checkpatch-cleanups.patch: Various small checkpatch cleanups (FATE#311695). - patches.suse/cifs-126-on-multiuser-mount-set-ownership-to-current_fsu.patch: cifs: on multiuser mount, set ownership to current_fsuid/current_fsgid (try #5) (FATE#311695). - patches.suse/cifs-127-implement-recurring-workqueue-job-to-prune-old-.patch: cifs: implement recurring workqueue job to prune old tcons (FATE#311695). - patches.suse/cifs-128-fix-module-refcount-leak-in-find_domain_name.patch: cifs: fix module refcount leak in find_domain_name (FATE#311695). - patches.suse/cifs-129-Remove-build-warning.patch: Remove build warning (FATE#311695). - patches.suse/cifs-130-initialize-tlink_tree_lock-and-tlink_tree.patch: cifs: initialize tlink_tree_lock and tlink_tree (FATE#311695). - patches.suse/cifs-131-ntlm-authentication-and-signing-Build-a-proper-.patch: CIFS ntlm authentication and signing - Build a proper av/ti pair blob for ntlmv2 without extended security authentication (FATE#311695). - patches.suse/cifs-132-on-multiuser-mount-set-ownership-to-current_fsu.patch: cifs: on multiuser mount, set ownership to current_fsuid/current_fsgid (try #7) (FATE#311695). - patches.suse/cifs-133-keep-dentry-reference-in-cifsFileInfo-instead-o.patch: cifs: keep dentry reference in cifsFileInfo instead of inode reference (FATE#311695). - patches.suse/cifs-134-don-t-use-vfsmount-to-pin-superblock-for-oplock.patch: cifs: don't use vfsmount to pin superblock for oplock breaks (FATE#311695). - patches.suse/cifs-135-authentication-and-signing-Calculate-auth-respo.patch: NTLM authentication and signing - Calculate auth response per smb session (FATE#311695). - patches.suse/cifs-136-handle-FindFirst-failure-gracefully.patch: cifs: handle FindFirst failure gracefully (FATE#311695). - patches.suse/cifs-137-eliminate-cifs_posix_open_inode_helper.patch: cifs: eliminate cifs_posix_open_inode_helper (FATE#311695). - patches.suse/cifs-139-fix-flags-handling-in-cifs_posix_open.patch: cifs: fix flags handling in cifs_posix_open (FATE#311695). - patches.suse/cifs-140-eliminate-oflags-option-from-cifs_new_fileinfo.patch: cifs: eliminate oflags option from cifs_new_fileinfo (FATE#311695). - patches.suse/cifs-141-eliminate-the-inode-argument-from-cifs_new_file.patch: cifs: eliminate the inode argument from cifs_new_fileinfo (FATE#311695). - patches.suse/cifs-142-clean-up-cifs_reopen_file.patch: cifs: clean up cifs_reopen_file (FATE#311695). - patches.suse/cifs-143-cifs_write-argument-change-and-cleanup.patch: cifs: cifs_write argument change and cleanup (FATE#311695). - patches.suse/cifs-144-eliminate-pfile-pointer-from-cifsFileInfo.patch: cifs: eliminate pfile pointer from cifsFileInfo (FATE#311695). - patches.suse/cifs-145-move-cifs_new_fileinfo-to-file.c.patch: cifs: move cifs_new_fileinfo to file.c (FATE#311695). - patches.suse/cifs-146-Fix-minor-checkpatch-warning-and-update-cifs-ve.patch: Fix minor checkpatch warning and update cifs version (FATE#311695). - patches.suse/cifs-147-convert-GlobalSMBSeslock-from-a-rwlock-to-regul.patch: cifs: convert GlobalSMBSeslock from a rwlock to regular spinlock (FATE#311695). - patches.suse/cifs-148-move-cifsFileInfo_put-to-file.c.patch: cifs: move cifsFileInfo_put to file.c (FATE#311695). - patches.suse/cifs-149-up-two-declarations-of-blob_len.patch: Clean up two declarations of blob_len (FATE#311695). - patches.suse/cifs-150-convert-cifs_tcp_ses_lock-from-a-rwlock-to-a-sp.patch: cifs: convert cifs_tcp_ses_lock from a rwlock to a spinlock (FATE#311695). - patches.suse/cifs-151-move-close-processing-from-cifs_close-to-cifsFi.patch: move close processing from cifs_close to cifsFileInfo_put (FATE#311695). - patches.suse/cifs-152-convert-cifsFileInfo-count-to-non-atomic-counte.patch: cifs: convert cifsFileInfo->count to non-atomic counter (FATE#311695). - patches.suse/cifs-153-wait-for-writeback-to-complete-in-cifs_flush.patch: cifs: wait for writeback to complete in cifs_flush (FATE#311695). - patches.suse/cifs-154-Fix-checkpatch-warnings-and-bump-cifs-version-n.patch: Fix checkpatch warnings and bump cifs version number (FATE#311695). - patches.suse/cifs-155-eliminate-cifsInodeInfo-write_behind_rc-try-6.patch: cifs: eliminate cifsInodeInfo->write_behind_rc (try #6) (FATE#311695). - patches.suse/cifs-156-update-comments-s-GlobalSMBSesLock-cifs_file_li.patch: cifs: update comments - [s/GlobalSMBSesLock/cifs_file_list_lock/g] (FATE#311695). - patches.suse/cifs-157-auth-and-sign-Allocate-session-key-client-respo.patch: NTLM auth and sign - Allocate session key/client response dynamically (FATE#311695). - patches.suse/cifs-158-cifs_convert_address-returns-zero-on-error.patch: cifs: cifs_convert_address() returns zero on error (FATE#311695). - patches.suse/cifs-159-auth-and-sign-Define-crypto-hash-functions-and-.patch: NTLM auth and sign - Define crypto hash functions and create and send keys needed for key exchange (FATE#311695). - patches.suse/cifs-160-auth-and-sign-Use-kernel-crypto-apis-to-calcula.patch: NTLM auth and sign - Use kernel crypto apis to calculate hashes and smb signatures (FATE#311695). - patches.suse/cifs-161-auth-and-sign-minor-error-corrections-and-clean.patch: NTLM auth and sign - minor error corrections and cleanup (FATE#311695). - patches.suse/cifs-162-add-kfree-on-error-path.patch: cifs: add kfree() on error path (FATE#311695). - patches.suse/cifs-163-auth-and-sign-Use-appropriate-server-challenge.patch: NTLM auth and sign - Use appropriate server challenge (FATE#311695). - patches.suse/cifs-164-Cleanup-and-thus-reduce-smb-session-structure-a.patch: cifs: Cleanup and thus reduce smb session structure and fields used during authentication (FATE#311695). - patches.suse/cifs-165-cifs-remove-unneeded-NULL-tests.patch: FS: cifs, remove unneeded NULL tests (FATE#311695). - patches.suse/cifs-166-Add-cifs_set_oplock_level.patch: CIFS: Add cifs_set_oplock_level (FATE#311695). - patches.suse/cifs-167-store-pointer-to-master-tlink-in-superblock-try.patch: cifs: store pointer to master tlink in superblock (try #2) (FATE#311695). - patches.suse/cifs-168-convert-tlink_tree-to-a-rbtree.patch: cifs: convert tlink_tree to a rbtree (FATE#311695). - patches.suse/cifs-169-Cleanup-unused-variable-build-warning.patch: Cleanup unused variable build warning (FATE#311695). - patches.suse/cifs-170-trivial-comment-fix-tlink_tree-is-now-a-rbtree.patch: cifs: trivial comment fix: tlink_tree is now a rbtree (FATE#311695). - patches.suse/cifs-171-dereferencing-first-then-checking.patch: cifs: dereferencing first then checking (FATE#311695). - patches.suse/cifs-172-make-cifs_set_oplock_level-take-a-cifsInodeInfo.patch: cifs: make cifs_set_oplock_level() take a cifsInodeInfo pointer (FATE#311695). - patches.suse/cifs-173-make-cifs_ioctl-handle-NULL-filp-private_data-c.patch: cifs: make cifs_ioctl handle NULL filp->private_data correctly (FATE#311695). - patches.suse/cifs-174-fix-potential-use-after-free-in-cifs_oplock_bre.patch: cifs: fix potential use-after-free in cifs_oplock_break_put (FATE#311695). - patches.suse/cifs-175-Percolate-error-up-to-the-caller-during-get-set.patch: cifs: Percolate error up to the caller during get/set acls (FATE#311695). - patches.suse/cifs-176-don-t-take-extra-tlink-reference-in-initiate_ci.patch: cifs: don't take extra tlink reference in initiate_cifs_search (FATE#311695). - patches.suse/cifs-177-fs-cifs-Kconfig-CIFS-depends-on-CRYPTO_HMAC.patch: fs/cifs/Kconfig: CIFS depends on CRYPTO_HMAC (FATE#311695). - patches.suse/cifs-178-trivial-comment-fix-for-cifs_invalidate_mapping.patch: cifs: trivial comment fix for cifs_invalidate_mapping (FATE#311695). - patches.suse/cifs-179-cleanup-cifsacl-handling.patch: cifs: Misc. cleanup in cifsacl handling (FATE#311695). - patches.suse/cifs-180-Handle-extended-attribute-name-cifs_acl-to-gene.patch: cifs: Handle extended attribute name cifs_acl to generate cifs acl blob (try #4) (FATE#311695). - patches.suse/cifs-181-allow-fsc-mount-option-only-if-CONFIG_CIFS_FSCA.patch: cifs: allow fsc mount option only if CONFIG_CIFS_FSCACHE is set (FATE#311695). - patches.suse/cifs-182-enable-fscache-iff-fsc-mount-option-is-used-exp.patch: cifs: enable fscache iff fsc mount option is used explicitly (FATE#311695). - patches.suse/cifs-183-display-fsc-in-proc-mounts.patch: cifs: display fsc in /proc/mounts (FATE#311695). - patches.suse/cifs-184-add-attribute-cache-timeout-actimeo-tunable.patch: cifs: add attribute cache timeout (actimeo) tunable (FATE#311695). - patches.suse/cifs-185-fix-use-of-CONFIG_CIFS_ACL.patch: cifs: fix use of CONFIG_CIFS_ACL (FATE#311695). - patches.suse/cifs-186-remove-Local_System_Name.patch: cifs: remove Local_System_Name (FATE#311695). - patches.suse/cifs-187-fix-check-of-error-return-from-is_path_accessab.patch: cifs: fix check of error return from is_path_accessable (FATE#311695). - patches.suse/cifs-188-allow-calling-cifs_build_path_to_root-on-incomp.patch: cifs: allow calling cifs_build_path_to_root on incomplete cifs_sb (FATE#311695). - patches.suse/cifs-189-remove-bogus-remapping-of-error-in-cifs_filldir.patch: cifs: remove bogus remapping of error in cifs_filldir() (FATE#311695). - patches.suse/cifs-190-Support-NTLM2-session-security-during-NTLMSSP-a.patch: cifs: Support NTLM2 session security during NTLMSSP authentication (FATE#311695). - patches.suse/cifs-191-Simplify-ipv-_connect-functions-into-one-try-4.patch: CIFS: Simplify ipv*_connect functions into one (try #4) (FATE#311695). - patches.suse/cifs-192-Add-match_port-check-during-looking-for-an-exis.patch: CIFS: Add match_port check during looking for an existing connection (try #4) (FATE#311695). - patches.suse/cifs-193-Simplify-non-posix-open-stuff-try-2.patch: CIFS: Simplify non-posix open stuff (try #2) (FATE#311695). - patches.suse/cifs-194-Simplify-cifs_open-code.patch: CIFS: Simplify cifs_open code (FATE#311695). - patches.suse/cifs-195-remove-unnecessary-locking-around-sequence_numb.patch: cifs: remove unnecessary locking around sequence_number (FATE#311695). - patches.suse/cifs-196-replace-some-hardcoded-values-with-preprocessor.patch: cifs: replace some hardcoded values with preprocessor constants (FATE#311695). - patches.suse/cifs-197-move-ntlmssp-and-local_leases-options-out-of-ex.patch: cifs: move "ntlmssp" and "local_leases" options out of experimental code (FATE#311695). - patches.suse/cifs-198-show-acl-in-DebugData-Features-when-it-s-compil.patch: cifs: show "acl" in DebugData Features when it's compiled in (FATE#311695). - patches.suse/cifs-199-switch-cifs_open-and-cifs_create-to-use-CIFSSMB.patch: cifs: switch cifs_open and cifs_create to use CIFSSMBUnixSetFileInfo (FATE#311695). - patches.suse/cifs-200-use-CreationTime-like-an-i_generation-field.patch: cifs: use CreationTime like an i_generation field (FATE#311695). - patches.suse/cifs-201-cFYI-the-entire-error-code-in-map_smb_to_linux_.patch: cifs: cFYI the entire error code in map_smb_to_linux_error (FATE#311695). - patches.suse/cifs-202-add-cruid-mount-option.patch: cifs: add cruid= mount option (FATE#311695). - patches.suse/cifs-203-don-t-fail-writepages-on-EAGAIN-errors.patch: cifs: don't fail writepages on -EAGAIN errors (FATE#311695). - patches.suse/cifs-204-no-need-to-mark-smb_ses_list-as-cifs_demultiple.patch: cifs: no need to mark smb_ses_list as cifs_demultiplex_thread is exiting (FATE#311695). - patches.suse/cifs-205-make-wait_for_free_request-take-a-TCP_Server_In.patch: cifs: make wait_for_free_request take a TCP_Server_Info pointer (FATE#311695). - patches.suse/cifs-206-clean-up-accesses-to-midCount.patch: cifs: clean up accesses to midCount (FATE#311695). - patches.suse/cifs-207-move-locked-sections-out-of-DeleteMidQEntry-and.patch: cifs: move locked sections out of DeleteMidQEntry and AllocMidQEntry (FATE#311695). - patches.suse/cifs-208-move-mid-result-processing-into-common-function.patch: cifs: move mid result processing into common function (FATE#311695). - patches.suse/cifs-209-Update-cifs-version-number.patch: Update cifs version number (FATE#311695). - patches.suse/cifs-210-Fix-regression-during-share-level-security-moun.patch: cifs: Fix regression during share-level security mounts (Repost) (FATE#311695). - patches.suse/cifs-211-Use-mask-of-ACEs-for-SID-Everyone-to-calculate-.patch: cifs: Use mask of ACEs for SID Everyone to calculate all three permissions user, group, and other (FATE#311695). - patches.suse/cifs-212-wait-indefinitely-for-responses.patch: cifs: wait indefinitely for responses (FATE#311695). - patches.suse/cifs-213-don-t-reconnect-server-when-we-don-t-get-a-resp.patch: cifs: don't reconnect server when we don't get a response (FATE#311695). - patches.suse/cifs-214-clean-up-sync_mid_result.patch: cifs: clean up sync_mid_result (FATE#311695). - patches.suse/cifs-215-allow-for-different-handling-of-received-respon.patch: cifs: allow for different handling of received response (FATE#311695). - patches.suse/cifs-216-add-cifs_call_async.patch: cifs: add cifs_call_async (FATE#311695). - patches.suse/cifs-217-add-ability-to-send-an-echo-request.patch: cifs: add ability to send an echo request (FATE#311695). - patches.suse/cifs-218-set-up-recurring-workqueue-job-to-do-SMB-echo-r.patch: cifs: set up recurring workqueue job to do SMB echo requests (FATE#311695). - patches.suse/cifs-219-cifs-reconnect-unresponsive-servers.patch: cifs: reconnect unresponsive servers (FATE#311695). - patches.suse/cifs-220-remove-code-for-setting-timeouts-on-requests.patch: cifs: remove code for setting timeouts on requests (FATE#311695). - patches.suse/cifs-221-mangle-existing-header-for-SMB_COM_NT_CANCEL.patch: cifs: mangle existing header for SMB_COM_NT_CANCEL (FATE#311695). - patches.suse/cifs-222-TCP_Server_Info-diet.patch: cifs: TCP_Server_Info diet (FATE#311695). - patches.suse/cifs-223-move-time-field-in-cifsInodeInfo.patch: cifs: move time field in cifsInodeInfo (FATE#311695). - patches.suse/cifs-224-use-get-put_unaligned-functions-to-access-ByteC.patch: cifs: use get/put_unaligned functions to access ByteCount (FATE#311695). - patches.suse/cifs-225-clean-up-unaligned-accesses-in-validate_t2.patch: cifs: clean up unaligned accesses in validate_t2 (FATE#311695). - patches.suse/cifs-226-fix-unaligned-access-in-check2ndT2-and-coalesce.patch: cifs: fix unaligned access in check2ndT2 and coalesce_t2 (FATE#311695). - patches.suse/cifs-227-clean-up-unaligned-accesses-in-cifs_unicode.c.patch: cifs: clean up unaligned accesses in cifs_unicode.c (FATE#311695). - patches.suse/cifs-228-fix-unaligned-accesses-in-cifsConvertToUCS.patch: cifs: fix unaligned accesses in cifsConvertToUCS (FATE#311695). - patches.suse/cifs-229-fix-up-CIFSSMBEcho-for-unaligned-access.patch: cifs: fix up CIFSSMBEcho for unaligned access (FATE#311695). - patches.suse/cifs-230-handle-cancelled-requests-better.patch: cifs: handle cancelled requests better (FATE#311695). - patches.suse/cifs-231-send-an-NT_CANCEL-request-when-a-process-is-sig.patch: cifs: send an NT_CANCEL request when a process is signalled (FATE#311695). - patches.suse/cifs-232-simplify-SMB-header-check-routine.patch: cifs: simplify SMB header check routine (FATE#311695). - patches.suse/cifs-233-don-t-pop-a-printk-when-sending-on-a-socket-is-.patch: cifs: don't pop a printk when sending on a socket is interrupted (FATE#311695). - patches.suse/cifs-234-force-a-reconnect-if-there-are-too-many-MIDs-in.patch: cifs: force a reconnect if there are too many MIDs in flight (FATE#311695). - patches.suse/cifs-235-make-CIFS-depend-on-CRYPTO_MD4.patch: cifs: make CIFS depend on CRYPTO_MD4 (FATE#311695). - patches.suse/cifs-236-Update-cifs-minor-version.patch: Update cifs minor version (FATE#311695). - patches.suse/trace-open.patch: Refresh. - patches.suse/vfs-138-fix-f_flags-and-f_fmode.patch: Fix f_flags/f_mode in case of lookup_instantiate_filp() from open(pathname, 3) (FATE#311695).- Update i386/xen config file (drop privileged kernel support). - rpm/package-descriptions: Adjust description for kernel-xen.- Update Xen patches to c/s 1089. - Update Xen config files. - patches.xen/xen3-block-Consolidate-phys_segment-and-hw_segment-limit.patch: block: Consolidate phys_segment and hw_segment limits (FATE#311054). - patches.xen/xen3-block-Rename-blk_queue_max_sectors-to-blk_queue_max.patch: block: Rename blk_queue_max_sectors to blk_queue_max_hw_sectors (FATE#311054). - patches.xen/xen3-mm-pagealloc-free_pages_prepare.patch: mm: introduce free_pages_prepare() (Page allocator enhancements suitable for THP(fate #311931)). - patches.xen/xen3-mm-thp-add-pmd-mangling-x86.patch: thp: add pmd mangling functions to x86 (THP core (fate #311931)). - patches.xen/xen3-mm-thp-config.patch: thp: CONFIG_TRANSPARENT_HUGEPAGE (THP core (fate #311931)). - patches.xen/xen3-oprofile-001-percpu-make-percpu-symbols-in-unique.patch: percpu: make percpu symbols in oprofile unique (FATE#309728, FATE#309730, BNC#686840). - Refresh other Xen patches.- patches.suse/cpu-Avoid-using-unititialized-error-variable-in-disable_nonboot_cpus: CPU: Avoid using unititialized error variable in disable_nonboot_cpus(). - patches.suse/cpu-Remove-unused-variable: cpu: Remove unused variable. - patches.suse/cpuset-Fix-cpuset_cpus_allowed_fallback-dont-update-tsk-rt-nr_cpus_allowed: cpuset: Fix cpuset_cpus_allowed_fallback(), don't update tsk->rt.nr_cpus_allowed. - patches.suse/sched-Fix-min_vruntime-calculation-in-dequeue_entity: sched: Fix ->min_vruntime calculation in dequeue_entity(). - patches.suse/01-15-sched-fixlet-dont-update-shares-twice-on-on_rq-parent: Refresh. - patches.suse/02-15-sched-hierarchical-task-accounting-for-SCHED_OTHER: Refresh. - patches.suse/03-15-sched-introduce-primitives-to-account-for-CFS-bandwidth-tracking: Refresh. - patches.suse/04-15-sched-validate-CFS-quota-hierarchies: Refresh. - patches.suse/04-15-sched-validate-CFS-quota-hierarchies-fix: Refresh. - patches.suse/05-15-sched-add-a-timer-to-handle-CFS-bandwidth-refresh: Refresh. - patches.suse/06-15-sched-accumulate-per-cfs_rq-cpu-usage-and-charge-against-bandwidth: Refresh. - patches.suse/07-15-sched-expire-invalid-runtime: Refresh. - patches.suse/08-15-sched-throttle-cfs_rq-entities-which-exceed-their-local-runtime: Refresh. - patches.suse/09-15-sched-unthrottle-cfs_rqs-who-ran-out-of-quota-at-period-refresh: Refresh. - patches.suse/11-15-sched-prevent-interactions-between-throttled-entities-and-load-balance: Refresh. - patches.suse/12-15-sched-migrate-throttled-tasks-on-HOTPLUG: Refresh. - patches.suse/13-15-sched-add-exports-tracking-cfs-bandwidth-control-statistics: Refresh. - patches.suse/14-15-sched-return-unused-runtime-on-voluntary-sleep: Refresh. - patches.suse/16-15-sched-fix-hotplug-lockup: Refresh. - patches.suse/SoN-07-mm-PF_MEMALLOC-softirq.patch: Refresh. - patches.suse/sched-Simplify-cpu-hot-unplug-task-migration: Refresh.- patches.arch/0001-nodemask-make-NODEMASK_ALLOC-more-general.patch: nodemask: make NODEMASK_ALLOC more general (fate#311647 bnc#691979). - patches.arch/0002-hugetlb-factor-init_nodemask_of_node.patch: hugetlb: factor init_nodemask_of_node() (fate#311647 bnc#691979). - patches.arch/0003-hugetlb-rework-hstate_next_node_-functions.patch: hugetlb: rework hstate_next_node_* functions (fate#311647 bnc#691979). - patches.arch/0004-hugetlb-add-nodemask-arg-to-huge-page-alloc-free-and.patch: hugetlb: add nodemask arg to huge page alloc, free and surplus adjust functions (fate#311647 bnc#691979). - patches.arch/0005-hugetlb-derive-huge-pages-nodes-allowed-from-task-me.patch: hugetlb: derive huge pages nodes allowed from task mempolicy (fate#311647 bnc#691979). - patches.arch/0006-hugetlb-add-per-node-hstate-attributes.patch: hugetlb: add per node hstate attributes (fate#311647 bnc#691979). - patches.arch/0007-hugetlb-update-hugetlb-documentation-for-NUMA-contro.patch: hugetlb: update hugetlb documentation for NUMA controls (fate#311647 bnc#691979). - patches.arch/0008-hugetlb-handle-memory-hot-plug-events.patch: hugetlb: handle memory hot-plug events (fate#311647 bnc#691979). - patches.arch/0009-hugetlb-use-only-nodes-with-memory-for-huge-pages.patch: hugetlb: use only nodes with memory for huge pages (fate#311647 bnc#691979). - patches.arch/0010-hugetlb-offload-per-node-attribute-registrations.patch: hugetlb: offload per node attribute registrations (fate#311647 bnc#691979). - patches.arch/0011-hugetlb-add-generic-definition-of-NUMA_NO_NODE.patch: hugetlb: add generic definition of NUMA_NO_NODE (fate#311647 bnc#691979).- patches.xen/tmem: Added lost chunk from previous refresh.- patches.fixes/dm-mpath-add-mutex-to-synchronize-adding-and-flushing-work: dm mpath: add mutex to synchronize adding and flushing work (bnc#668483). - patches.fixes/dm-mpath-flush-workqueues-before-suspend-completes: dm mpath: flush workqueues before suspend completes (bnc#668483). - patches.fixes/dm-mpath-hold-io-until-all-pg_inits-complete: dm mpath: hold io until all pg_inits completed (bnc#668483). - patches.fixes/dm-mpath-prevent-io-from-workqueue-while-suspended: dm mpath: prevent io from work queue while suspended (bnc#668483). - patches.fixes/dm-mpath-wait-for-pg_init-completion-when-suspending: dm mpath: wait for pg_init completion when suspending (bnc#668483).- patches.suse/sched-More-sched_domain-iterations-fixes: sched: More sched_domain iterations fixes. - patches.suse/02-15-sched-hierarchical-task-accounting-for-SCHED_OTHER: Refresh.- patches.suse/scsi-raid_attrs-fix-dependency-problems.patch: Delete as it is causing build failures.- Backport fixes from 2.6.34 (FATE#311054): - patches.suse/Block-Fix-block-elevator.c-elevator_get-off-by-on.patch: Block: Fix block/elevator.c elevator_get() off-by-one error (FATE#311054). - patches.suse/Documentation-fix-block-biodoc.txt-dma-mapping-desc.patch: Documentation: fix block/biodoc.txt dma mapping description (FATE#311054). - patches.suse/Remove-GENHD_FL_DRIVERFS.patch: Remove GENHD_FL_DRIVERFS (FATE#311054). - patches.suse/ataflop-Killl-warning-about-unused-variable-flags.patch: ataflop: Killl warning about unused variable flags (FATE#311054). - patches.suse/backing-dev-Handle-class_create-failure.patch: backing-dev: Handle class_create() failure (FATE#311054). - patches.suse/blk-cgroup-Fix-RCU-correctness-warning-in-cfq_init_.patch: blk-cgroup: Fix RCU correctness warning in cfq_init_queue() (FATE#311054). - patches.suse/blk-cgroup-Fix-an-RCU-warning-in-blkiocg_create.patch: blk-cgroup: Fix an RCU warning in blkiocg_create() (FATE#311054). - patches.suse/blk-core-use-BIO-list-management-functions.patch: blk-core: use BIO list management functions (FATE#311054). - patches.suse/blkdev-fix-merge_bvec_fn-return-value-checks-v2.patch: blkdev: fix merge_bvec_fn return value checks v2 (FATE#311054). - patches.suse/blkdev-fix-merge_bvec_fn-return-value-checks.patch: blkdev: fix merge_bvec_fn return value checks (FATE#311054). - patches.suse/blkio-Add-io-controller-stats-like.patch: blkio: Add io controller stats like (FATE#311054). - patches.suse/blkio-Increment-the-blkio-cgroup-stats-for-real-now.patch: blkio: Increment the blkio cgroup stats for real now (FATE#311054). - patches.suse/blkio-Remove-per-cfqq-nr_sectors-as-we-ll-be-passin.patch: blkio: Remove per-cfqq nr_sectors as we'll be passing (FATE#311054). - patches.suse/blktrace-perform-cleanup-after-setup-error.patch: blktrace: perform cleanup after setup error (FATE#311054). - patches.suse/block-Add-BLK_-prefix-to-definitions.patch: block: Add BLK_ prefix to definitions (FATE#311054). - patches.suse/block-Consolidate-phys_segment-and-hw_segment-limit.patch: block: Consolidate phys_segment and hw_segment limits (FATE#311054). - patches.suse/block-Export-max-number-of-segments-and-max-segment.patch: block: Export max number of segments and max segment size in sysfs (FATE#311054). - patches.suse/block-Finalize-conversion-of-block-limits-functions.patch: block: Finalize conversion of block limits functions (FATE#311054). - patches.suse/block-Remove-unused-accessor-function.patch: block: Remove unused accessor function (FATE#311054). - patches.suse/block-Rename-blk_queue_max_sectors-to-blk_queue_max.patch: block: Rename blk_queue_max_sectors to blk_queue_max_hw_sectors (FATE#311054). - patches.suse/block-Update-blk_queue_max_sectors-and-documentatio.patch: block: Update blk_queue_max_sectors and documentation (FATE#311054). - patches.suse/block-don-t-access-jiffies-when-initialising-io_con.patch: block: don't access jiffies when initialising io_context (FATE#311054). - patches.suse/block-expose-the-statistics-in-blkio.time-and-blkio.patch: block: expose the statistics in blkio.time and blkio.sectors for the root cgroup (FATE#311054). - patches.suse/block-fix-for-Consolidate-phys_segment-and-hw_segm.patch: block: fix for "Consolidate phys_segment and hw_segment limits" (FATE#311054). - patches.suse/block-make-CONFIG_BLK_CGROUP-visible.patch: block: make CONFIG_BLK_CGROUP visible (FATE#311054). - patches.suse/block-make-Open-Firmware-device-id-constant.patch: block: make Open Firmware device id constant (FATE#311054). - patches.suse/block-make-PCI-device-id-constant.patch: block: make PCI device id constant (FATE#311054). - patches.suse/block-make-USB-device-id-constant.patch: block: make USB device id constant (FATE#311054). - patches.suse/block-make-virtio-device-id-constant.patch: block: make virtio device id constant (FATE#311054). - patches.suse/block-make-xenbus-device-id-constant.patch: block: make xenbus device id constant (FATE#311054). - patches.suse/block-remove-16-bytes-of-padding-from-struct-reques.patch: block: remove 16 bytes of padding from struct request on 64bits (FATE#311054). - patches.suse/block-remove-padding-from-io_context-on-64bit-build.patch: block: remove padding from io_context on 64bit builds (FATE#311054). - patches.suse/cfq-Remove-useless-css-reference-get.patch: cfq: Remove useless css reference get (FATE#311054). - patches.suse/cfq-iosched-Add-additional-blktrace-log-messages-in.patch: cfq-iosched: Add additional blktrace log messages in CFQ for easier debugging (FATE#311054). - patches.suse/cfq-iosched-Do-not-merge-queues-of-BE-and-IDLE-clas.patch: cfq-iosched: Do not merge queues of BE and IDLE classes (FATE#311054). - patches.suse/cfq-iosched-Fix-the-incorrect-timeslice-accounting.patch: cfq-iosched: Fix the incorrect timeslice accounting with forced_dispatch (FATE#311054). - patches.suse/cfq-iosched-fix-a-kbuild-regression.patch: cfq-iosched: fix a kbuild regression (FATE#311054). - patches.suse/cfq-iosched-quantum-check-tweak.patch: cfq-iosched: quantum check tweak (FATE#311054). - patches.suse/cfq-iosched-requests-in-flight-vs-in-driver-cla.patch: cfq-iosched: requests "in flight" vs "in driver" clarification (FATE#311054). - patches.suse/cfq-iosched-rethink-seeky-detection-for-SSDs.patch: cfq-iosched: rethink seeky detection for SSDs (FATE#311054). - patches.suse/cfq-iosched-rework-seeky-detection.patch: cfq-iosched: rework seeky detection (FATE#311054). - patches.suse/cfq-remove-8-bytes-of-padding-from-cfq_rb_root-on-6.patch: cfq: remove 8 bytes of padding from cfq_rb_root on 64 bit builds (FATE#311054). - patches.suse/dm-document-when-snapshot-has-finished-merging.patch: dm: document when snapshot has finished merging (FATE#311054). - patches.suse/dm-eliminate-some-holes-data-structures.patch: dm: eliminate some holes data structures (FATE#311054). - patches.suse/dm-free-dm_io-before-bio_endio-not-after.patch: dm: free dm_io before bio_endio not after (FATE#311054). - patches.suse/dm-ioctl-introduce-flag-indicating-uevent-was-gener.patch: dm ioctl: introduce flag indicating uevent was generated (FATE#311054). - patches.suse/dm-ioctl-only-issue-uevent-on-resume-if-state-chang.patch: dm ioctl: only issue uevent on resume if state changed (FATE#311054). - patches.suse/dm-mpath-avoid-storing-private-suspended-state.patch: dm mpath: avoid storing private suspended state (FATE#311054). - patches.suse/dm-mpath-hold-io-until-all-pg_inits-completed.patch: dm mpath: hold io until all pg_inits completed (FATE#311054). - patches.suse/dm-mpath-pass-struct-pgpath-to-pg-init-done.patch: dm mpath: pass struct pgpath to pg init done (FATE#311054). - patches.suse/dm-mpath-refactor-pg_init.patch: dm mpath: refactor pg_init (FATE#311054). - patches.suse/dm-mpath-wait-for-pg_init-completion-when-suspendin.patch: dm mpath: wait for pg_init completion when suspending (FATE#311054). - patches.suse/dm-raid1-always-return-error-if-all-legs-fail.patch: dm raid1: always return error if all legs fail (FATE#311054). - patches.suse/dm-raid1-fix-deadlock-when-suspending-failed-device.patch: dm raid1: fix deadlock when suspending failed device (FATE#311054). - patches.suse/dm-table-remove-dm_get-from-dm_table_get_md.patch: dm table: remove dm_get from dm_table_get_md (FATE#311054). - patches.suse/dm-table-remove-unused-dm_get_device-range-paramete.patch: dm table: remove unused dm_get_device range parameters (FATE#311054). - patches.suse/drivers-block-floppy.c-DPRINT-neatening.patch: drivers/block/floppy.c: DPRINT neatening (FATE#311054). - patches.suse/drivers-block-floppy.c-add-__func__-to-debugt.patch: drivers/block/floppy.c: add __func__ to debugt (FATE#311054). - patches.suse/drivers-block-floppy.c-add-debug_dcl-.-macro.patch: drivers/block/floppy.c: add debug_dcl(...) macro (FATE#311054). - patches.suse/drivers-block-floppy.c-add-function-is_ready_state.patch: drivers/block/floppy.c: add function is_ready_state (FATE#311054). - patches.suse/drivers-block-floppy.c-comment-neatening-and-remove.patch: drivers/block/floppy.c: comment neatening and remove naked ; (FATE#311054). - patches.suse/drivers-block-floppy.c-convert-int-1-0-to-bool-true.patch: drivers/block/floppy.c: convert int 1/0 to bool true/false (FATE#311054). - patches.suse/drivers-block-floppy.c-convert-int-initialising-to.patch: drivers/block/floppy.c: convert int initialising to bool initialized (FATE#311054). - patches.suse/drivers-block-floppy.c-convert-raw_cmd_copyin-from.patch: drivers/block/floppy.c: convert raw_cmd_copyin from while(1) to label: goto (FATE#311054). - patches.suse/drivers-block-floppy.c-convert-some-include-asm.patch: drivers/block/floppy.c: convert some #include (FATE#311054). - patches.suse/ibmvfc-Add-FC-Passthru-support.patch: Refresh. - patches.suse/mac68k-cleanup.patch: mac68k: cleanup (FATE#311054). - patches.suse/mac68k-move-mac_esp-platform-device.patch: mac68k: move mac_esp platform device (FATE#311054). - patches.suse/mac68k-rework-SWIM-platform-device.patch: mac68k: rework SWIM platform device (FATE#311054). - patches.suse/md-006-raid1-add-takeover-support-for-raid5-raid1.patch: Refresh. - patches.suse/md-020-Add-support-for-Raid5-Raid0-and-Raid10-Raid0-take.patch: Refresh. - patches.suse/paride-fix-off-by-one-test.patch: paride: fix off-by-one test (FATE#311054). - patches.suse/pktcdvd-improve-BKL-and-compat_ioctl.c-usage.patch: pktcdvd: improve BKL and compat_ioctl.c usage (FATE#311054). - patches.suse/pktcdvd-use-BIO-list-management-functions.patch: pktcdvd: use BIO list management functions (FATE#311054). - patches.suse/platform-drivers-move-probe-to-.devinit.text-in-dri.patch: platform-drivers: move probe to .devinit.text in drivers/scsi (FATE#311054). - patches.suse/powerpc-viodasd-Remove-VIOD_KERN_-level-macros-for.patch: powerpc/viodasd: Remove VIOD_KERN_ macros for printks (FATE#311054). - patches.suse/qlogicpti-Remove-slash-in-QlogicPTI-irq-name.patch: qlogicpti: Remove slash in QlogicPTI irq name (FATE#311054). - patches.suse/scsi-3w-xxxx-3w-9xxx-force-60-second-timeout.patch: [SCSI] 3w-xxxx, 3w-9xxx: force 60 second timeout (FATE#311054). - patches.suse/scsi-3ware-maintainers-update.patch: [SCSI] 3ware maintainers update (FATE#311054). - patches.suse/scsi-Add-missing-scsi-command-definitions.patch: [SCSI] Add missing scsi command definitions (FATE#311054). - patches.suse/scsi-Fix-printing-of-failed-32-byte-commands.patch: [SCSI] Fix printing of failed 32-byte commands (FATE#311054). - patches.suse/scsi-Fix-printing-of-variable-length-commands.patch: [SCSI] Fix printing of variable length commands (FATE#311054). - patches.suse/scsi-FlashPoint-fix-off-by-one-tests.patch: [SCSI] FlashPoint: fix off by one tests (FATE#311054). - patches.suse/scsi-add-missing-kernel-doc-notation-for-new-VPD.patch: scsi.c: add missing kernel-doc notation for new VPD parameters (FATE#311054). - patches.suse/scsi-advansys-fix-narrow-board-error-path.patch: [SCSI] advansys: fix narrow board error path (FATE#311054). - patches.suse/scsi-advansys-fix-regression-with-request_firmwar.patch: [SCSI] advansys: fix regression with request_firmware change (FATE#311054). - patches.suse/scsi-bnx2i-set-change_queue_depth-function.patch: [SCSI] bnx2i: set change_queue_depth function (FATE#311054). - patches.suse/scsi-cxgb3i-bnx2i-remove-uses-of-nipquad-use-pi.patch: [SCSI] cxgb3i, bnx2i: remove uses of nipquad use %pi4 (FATE#311054). - patches.suse/scsi-cxgb3i-check-for-setup-netdev.patch: [SCSI] cxgb3i: check for setup netdev (FATE#311054). - patches.suse/scsi-cxgbi3-remove-unnecessary-NULL-test.patch: [SCSI] cxgbi3: remove unnecessary NULL test (FATE#311054). - patches.suse/scsi-don-t-kfree-an-initialized-struct-device.patch: [SCSI] don't kfree an initialized struct device (FATE#311054). - patches.suse/scsi-don-t-reap-targets-upon-device_add-failure.patch: [SCSI] don't reap targets upon device_add failure (FATE#311054). - patches.suse/scsi-dpt_i2o-several-use-after-free-issues.patch: [SCSI] dpt_i2o: several use after free issues (FATE#311054). - patches.suse/scsi-eata-fix-buffer-overflow.patch: [SCSI] eata: fix buffer overflow (FATE#311054). - patches.suse/scsi-fix-duplicate-removal-on-error-path-in-scsi_s.patch: [SCSI] fix duplicate removal on error path in scsi_sysfs_add_sdev (FATE#311054). - patches.suse/scsi-fix-memory-leak-in-scsi_report_lun_scan.patch: [SCSI] fix memory leak in scsi_report_lun_scan (FATE#311054). - patches.suse/scsi-fix-refcounting-bug-in-scsi_get_host_dev.patch: [SCSI] fix refcounting bug in scsi_get_host_dev (FATE#311054). - patches.suse/scsi-gdth-Convert-to-use-regular-kernel-types.patch: [SCSI] gdth: Convert to use regular kernel types (FATE#311054). - patches.suse/scsi-gdth-fix-buffer-overflow.patch: [SCSI] gdth: fix buffer overflow (FATE#311054). - patches.suse/scsi-ibmmca-fix-buffer-overflow.patch: [SCSI] ibmmca: fix buffer overflow (FATE#311054). - patches.suse/scsi-ibmvfc-Add-suspend-resume-support.patch: [SCSI] ibmvfc: Add suspend/resume support (FATE#311054). - patches.suse/scsi-ibmvscsi-Add-suspend-resume-support.patch: [SCSI] ibmvscsi: Add suspend/resume support (FATE#311054). - patches.suse/scsi-ibmvscsi-fix-DMA-API-misuse.patch: [SCSI] ibmvscsi: fix DMA API misuse (FATE#311054). - patches.suse/scsi-ibmvscsi-fix-a-typo-in-a-source-code-comment.patch: [SCSI] ibmvscsi: fix a typo in a source code comment (FATE#311054). - patches.suse/scsi-ipr-add-error-handling-updates-for-the-next.patch: [SCSI] ipr: add error handling updates for the next generation chip (FATE#311054). - patches.suse/scsi-ipr-add-hardware-assisted-smart-dump-functio.patch: [SCSI] ipr: add hardware assisted smart dump functionality (FATE#311054). - patches.suse/scsi-ipr-add-support-for-multiple-stages-of-initi.patch: [SCSI] ipr: add support for multiple stages of initialization (FATE#311054). - patches.suse/scsi-ipr-add-support-for-new-IOASCs.patch: [SCSI] ipr: add support for new IOASCs (FATE#311054). - patches.suse/scsi-ipr-add-support-for-new-adapter-command-stru.patch: [SCSI] ipr: add support for new adapter command structures for the next generation chip (FATE#311054). - patches.suse/scsi-ipr-adds-PCI-ID-definitions-for-new-adapters.patch: [SCSI] ipr: adds PCI ID definitions for new adapters (FATE#311054). - patches.suse/scsi-ipr-define-new-offsets-to-registers-for-the.patch: [SCSI] ipr: define new offsets to registers for the next generation chip (FATE#311054). - patches.suse/scsi-ipr-implement-shutdown-changes-and-remove-ob.patch: [SCSI] ipr: implement shutdown changes and remove obsolete write cache parameter (FATE#311054). - patches.suse/scsi-ipr-rename-blk_queue_max_sectors: ipr: Rename blk_queue_max_sectors (FATE#311054). - patches.suse/scsi-ipr-update-the-configuration-table-code-for.patch: [SCSI] ipr: update the configuration table code for the next generation chip (FATE#311054). - patches.suse/scsi-iscsi_tcp-Change-iscsi_sw_tcp_conn_restore_c.patch: [SCSI] iscsi_tcp: Change iscsi_sw_tcp_conn_restore_callbacks arguments (FATE#311054). - patches.suse/scsi-iscsi_tcp-Remove-unused-field-iscsi_conn-fro.patch: [SCSI] iscsi_tcp: Remove unused field iscsi_conn from struct iscsi_sw_tcp_conn (FATE#311054). - patches.suse/scsi-libiscsi-reset-cmd-timer-if-cmds-are-making.patch: [SCSI] libiscsi: reset cmd timer if cmds are making progress (FATE#311054). - patches.suse/scsi-libosd-Fix-unchecked-err-return-found-by-sma.patch: [SCSI] libosd: Fix unchecked err return found by smatch (FATE#311054). - patches.suse/scsi-libsrp-fix-bug-in-ADDITIONAL-CDB-LENGTH-inte.patch: [SCSI] libsrp: fix bug in ADDITIONAL CDB LENGTH interpretation (FATE#311054). - patches.suse/scsi-libsrp-fix-typo-replace-RDAM-by-RDMA.patch: [SCSI] libsrp: fix typo -- replace RDAM by RDMA (FATE#311054). - patches.suse/scsi-mac_esp-fix-PIO-mode-take-2.patch: [SCSI] mac_esp: fix PIO mode, take 2 (FATE#311054). - patches.suse/scsi-pmcraid-redundant-check-in-pmcraid_check_ioc.patch: [SCSI] pmcraid: redundant check in pmcraid_check_ioctl_buffer() (FATE#311054). - patches.suse/scsi-qla4xxx-fix-compile-warning-due-to-invalid-e.patch: [SCSI] qla4xxx: fix compile warning due to invalid extHwConfig (FATE#311054). - patches.suse/scsi-raid_attrs-fix-dependency-problems.patch: [SCSI] raid_attrs: fix dependency problems (FATE#311054). - patches.suse/scsi-scsi_debug-Block-Limits-VPD-page-fixes.patch: [SCSI] scsi_debug: Block Limits VPD page fixes (FATE#311054). - patches.suse/scsi-scsi_debug-add-max_queue-no_uld-parameters.patch: [SCSI] scsi_debug: add max_queue + no_uld parameters (FATE#311054). - patches.suse/scsi-sd-Combine-DIF-DIX-error-handling.patch: [SCSI] sd: Combine DIF/DIX error handling (FATE#311054). - patches.suse/scsi-sd-Fix-VPD-buffer-allocations.patch: [SCSI] sd: Fix VPD buffer allocations (FATE#311054). - patches.suse/scsi-u14-34f-fix-buffer-overflow.patch: [SCSI] u14-34f: fix buffer overflow (FATE#311054). - patches.suse/scsi-vmw_pvscsi-fix-signedness-warning-with-newer.patch: [SCSI] vmw_pvscsi: fix signedness warning with newer compilers (FATE#311054). - patches.suse/scsi-wd7000-fix-reset-handler-typo-spin_unlock_ir.patch: [SCSI] wd7000: fix reset handler typo spin_unlock_irq() => spin_lock_irq() (FATE#311054). - patches.suse/staging-hyper-v-added-all-patches-for-hyper-v-same-as-2.6.35-now.patch: Refresh. - patches.suse/virtio_blk-add-block-topology-support.patch: virtio_blk: add block topology support (FATE#311054). - patches.xen/xen-floppy: Refresh.- patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch: mm: Fix assertion mapping->nrpages == 0 in end_writeback() (bnc#693013 bnc#666423). - patches.xen/sfc-external-sram: Refresh. - patches.xen/tmem: Refresh.- patches.suse/block-Stop-using-byte-offsets.patch: Add missing commit-id.- patches.xen/sfc-update-to-kfifo-api: sfc: Port to new kfifo API (FATE#311054).- Rename patches starting with '-': * patches.suse/libata-MWDMA0-is-unsupported-on-PIIX-like-PATA-con.patch: * patches.suse/libata-PATA-Update-experimental-tags.patch:- patches.kabi/sock-kabi-fixup-for-adding-sk_backlog.len.patch: Fixed an IPv6 socket memory corruption caused by the original version of this patch (bnc#655973, bnc#693149).- Fix Xen build errors from previous oprofile commit. Build now passes with CONFIG_SFC=n - patches.xen/xen3-patch-2.6.24: Refresh. - patches.xen/xen3-patch-2.6.29: Refresh.- patches.drivers/mm-extract-exe_file-handling-from-procfs.patch: Refresh. One more build failure on ppc.- patches.suse/kfifo-move-struct-kfifo-in-place-libsrp-fix.patch: libsrp: fix compile failure (fate#311054).- patches.drivers/core_pattern-fix-truncation-by-core_pattern-handler.patch: core_pattern: fix truncation by core_pattern handler with long parameters (fate#309473). - patches.drivers/coredump-add-support-for-exe_file-in-core-name.patch: coredump: add support for exe_file in core name (fate#309473). - patches.drivers/mm-extract-exe_file-handling-from-procfs.patch: mm: extract exe_file handling from procfs (fate#309473).- General concensus being that combined patches create more pain than gain, remove combined scheduler updates, and insert the individual patches used to generate them in their place. - patches.suse/01-15-sched-fixlet-dont-update-shares-twice-on-on_rq-parent: sched: (fixlet) dont update shares twice on on_rq. - patches.suse/02-15-sched-hierarchical-task-accounting-for-SCHED_OTHER: sched: hierarchical task accounting for SCHED_OTHER. - patches.suse/03-15-sched-introduce-primitives-to-account-for-CFS-bandwidth-tracking: sched: introduce primitives to account for CFS. - patches.suse/03-15-sched-introduce-primitives-to-account-for-CFS-bandwidth-tracking-fix: sched: introduce primitives to account for CFS bandwidth tracking UP buildfix. - patches.suse/04-15-sched-validate-CFS-quota-hierarchies: sched: validate CFS quota hierarchies. - patches.suse/04-15-sched-validate-CFS-quota-hierarchies-fix: sched: validate CFS quota hierarchies - bugfix. - patches.suse/05-15-sched-add-a-timer-to-handle-CFS-bandwidth-refresh: sched: add a timer to handle CFS bandwidth refresh. - patches.suse/06-15-sched-accumulate-per-cfs_rq-cpu-usage-and-charge-against-bandwidth: sched: accumulate per-cfs_rq cpu usage and charge. - patches.suse/07-15-sched-expire-invalid-runtime: sched: expire invalid runtime. - patches.suse/08-15-sched-throttle-cfs_rq-entities-which-exceed-their-local-runtime: sched: throttle cfs_rq entities which exceed their local runtime. - patches.suse/09-15-sched-unthrottle-cfs_rqs-who-ran-out-of-quota-at-period-refresh: sched: unthrottle cfs_rq(s) who ran out of quota at period refresh. - patches.suse/10-15-sched-allow-for-positional-tg_tree-walks: sched: allow for positional tg_tree walks. - patches.suse/11-15-sched-prevent-interactions-between-throttled-entities-and-load-balance: sched: prevent interactions between throttled entities and load-balance. - patches.suse/12-15-sched-migrate-throttled-tasks-on-HOTPLUG: sched: migrate throttled tasks on HOTPLUG. - patches.suse/13-15-sched-add-exports-tracking-cfs-bandwidth-control-statistics: sched: add exports tracking cfs bandwidth control statistics. - patches.suse/14-15-sched-return-unused-runtime-on-voluntary-sleep: sched: return unused runtime on voluntary sleep. - patches.suse/15-15-sched-add-documentation-for-bandwidth-control: sched: add documentation for bandwidth control. - patches.suse/16-15-sched-fix-hotplug-lockup: Re: Test for CFS Bandwidth Control V6 ( fix hotplug lockup). - patches.suse/cpu_stop-add-dummy-implementation-for-UP: cpu_stop: add dummy implementation for UP. - patches.suse/cpu_stop-implement-stop_cpu-and-stop_cpus: cpu_stop: implement stop_cpu(). - patches.suse/cpumask-Partition_sched_domains-takes-array-of-cpumask_var_t: cpumask: Partition_sched_domains takes array of cpumask_var_t. - patches.suse/cpumask-Simplify-sched_rt-c: cpumask: Simplify sched_rt.c. - patches.suse/powerpc-Enable-asymmetric-SMT-scheduling-on-POWER7: powerpc: Enable asymmetric SMT scheduling on POWER7. - patches.suse/powerpc-Exclude-arch_sd_sibiling_asym_packing-on-UP: powerpc: Exclude arch_sd_sibiling_asym_packing() on UP. - patches.suse/rcu-need-barrier-in-UP-synchronize_sched_expedited: rcu: need barrier() in UP synchronize_sched_expedited(). - patches.suse/sched-Add-asymmetric-group-packing-option-for-sibling-domain: sched: Add asymmetric group packing option for sibling domain. - patches.suse/sched-Add-book-scheduling-domain: sched: Add book scheduling domain. - patches.suse/sched-Add-enqueue-dequeue-flags: sched: Add enqueue/dequeue flags. - patches.suse/sched-Add-sysctl_sched_shares_window: sched: Add sysctl_sched_shares_window. - patches.suse/sched-Allow-SCHED_BATCH-to-preempt-SCHED_IDLE-tasks: sched: Allow SCHED_BATCH to preempt SCHED_IDLE tasks. - patches.suse/sched-Allow-update_cfs_load-to-update-global-load: sched: Allow update_cfs_load() to update global load. - patches.suse/sched-Allow-users-with-sufficient-RLIMIT_NICE-to-change-from-SCHED_IDLE-policy: sched: Allow users with sufficient RLIMIT_NICE to change from SCHED_IDLE policy. - patches.suse/sched-Assume-balance-is-valid: sched: Assume *balance is valid. - patches.suse/sched-Avoid-allocations-in-sched_domain_debug: sched: Avoid allocations in sched_domain_debug(). - patches.suse/sched-Avoid-expensive-initial-update_cfs_load: sched: Avoid expensive initial update_cfs_load(). - patches.suse/sched-Avoid-expensive-initial-update_cfs_load-on-UP-too: sched: Avoid expensive initial update_cfs_load(), on UP too. - patches.suse/sched-Avoid-going-ahead-if-cpus_allowed-is-not-changed: sched: Avoid going ahead if ->cpus_allowed is not changed. - patches.suse/sched-Avoid-side-effect-of-tickless-idle-on-update_cpu_load: sched: Avoid side-effect of tickless idle on update_cpu_load. - patches.suse/sched-Avoid-using-sd-level: sched: Avoid using sd->level. - patches.suse/sched-Change-NODE-sched_domain-group-creation: sched: Change NODE sched_domain group creation. - patches.suse/sched-Change-nohz-idle-load-balancing-logic-to-push-model: sched: Change nohz idle load balancing logic to push model. - patches.suse/sched-Change-usage-of-rt_rq-rt_se-to-rt_rq-tg-rt_se-cpu: sched: Change usage of rt_rq->rt_se to rt_rq->tg->rt_se. - patches.suse/sched-Clean-up-rebalance_domains-load-balance-interval-calculation: sched: Clean up rebalance_domains() load-balance interval calculation. - patches.suse/sched-Clean-up-remnants-of-sd_idle: sched: Clean up remnants of sd_idle. - patches.suse/sched-Clean-up-some-ALLNODES-code: sched: Clean up some ALLNODES code. - patches.suse/sched-Clean-up-some-f_b_g-comments: sched: Clean up some f_b_g() comments. - patches.suse/sched-Cleanup-set_load_weight: sched: Cleanup set_load_weight(). - patches.suse/sched-Create-persistent-sched_domains_tmpmask: sched: Create persistent sched_domains_tmpmask. - patches.suse/sched-Create-proper-cpu_DOM_mask-functions: sched: Create proper cpu_$DOM_mask() functions. - patches.suse/sched-Create-special-class-for-stop-and-migrate-work: sched: Create special class for stop/migrate work. - patches.suse/sched-Cure-load-average-vs-NO_HZ-woes: sched: Cure load average vs NO_HZ woes. - patches.suse/sched-Cure-more-NO_HZ-load-average-woes: sched: Cure more NO_HZ load average woes. - patches.suse/sched-Dont-expose-local-functions: sched: Don't expose local functions. - patches.suse/sched-Drop-all-load-weight-manipulation-for-RT-tasks: sched: Drop all load weight manipulation for RT tasks. - patches.suse/sched-Dynamic-sched_domain-level: sched: Dynamic sched_domain::level. - patches.suse/sched-Dynamically-allocate-sched_domain-sched_group-data-structures: sched: Dynamically allocate sched_domain/sched_group data-structures. - patches.suse/sched-Fix-PROVE_RCU-vs-cpu_cgroup: sched: Fix PROVE_RCU vs cpu_cgroup. - patches.suse/sched-Fix-UP-build-breakage: sched: Fix UP build breakage. - patches.suse/sched-Fix-and-optimise-calculation-of-the-weight-inverse: sched: Fix and optimise calculation of the weight-inverse. - patches.suse/sched-Fix-capacity-calculations-for-SMT4: sched: Fix capacity calculations for SMT4. - patches.suse/sched-Fix-comments-to-make-them-DocBook-happy: sched: Fix comments to make them DocBook happy. - patches.suse/sched-Fix-erroneous-all_pinned-logic: sched: Fix erroneous all_pinned logic. - patches.suse/sched-Fix-fix_small_capacity: sched: Fix fix_small_capacity. - patches.suse/sched-Fix-interactivity-bug-by-charging-unaccounted-run-time-on-entity-re-weight: sched: Fix interactivity bug by charging unaccounted run-time on entity re-weight. - patches.suse/sched-Fix-load-corruption-from-update_cfs_shares: sched: Fix load corruption from update_cfs_shares(). - patches.suse/sched-Fix-nohz-balance-kick: sched: Fix nohz balance kick. - patches.suse/sched-Fix-poor-interactivity-on-UP-systems-due-to-group-scheduler-nice-tune-bug: sched: Fix poor interactivity on UP systems due to group scheduler nice tune bug. - patches.suse/sched-Fix-rebalance-interval-calculation: sched: Fix rebalance interval calculation. - patches.suse/sched-Fix-remove-redundant-cfs_rq-checks: sched: Fix/remove redundant cfs_rq checks. - patches.suse/sched-Fix-rt_rq-runtime-leakage-bug: sched: Fix rt_rq runtime leakage bug. - patches.suse/sched-Fix-runnable-condition-for-stoptask: sched: Fix runnable condition for stoptask. - patches.suse/sched-Fix-sched-domain-avg_load-calculation: sched: Fix sched-domain avg_load calculation. - patches.suse/sched-Fix-sched-rt-group-scheduling-when-hierachy-is-enabled: sched: Fix sched rt group scheduling when hierachy is enabled. - patches.suse/sched-Fix-sched_domain-iterations-vs-RCU: sched: Fix sched_domain iterations vs. RCU. - patches.suse/sched-Fix-sign-under-flows-in-wake_affine: sched: Fix sign under-flows in wake_affine. - patches.suse/sched-Fix-spelling-of-sibling: sched: Fix spelling of sibling. - patches.suse/sched-Fix-strncmp-operation: sched: Fix strncmp operation. - patches.suse/sched-Fix-switch_from_fair: sched: Fix switch_from_fair(). - patches.suse/sched-Fix-the-group_imb-logic: sched: Fix the group_imb logic. - patches.suse/sched-Fix-the-irqtime-code-for-32bit: sched: Fix the irqtime code for 32bit. - patches.suse/sched-Fix-the-irqtime-code-to-deal-with-u64-wraps: sched: Fix the irqtime code to deal with u64 wraps. - patches.suse/sched-Fix-the-place-where-group-powers-are-updated: sched: Fix the place where group powers are updated. - patches.suse/sched-Fix-unregister_fair_sched_group: sched: Fix unregister_fair_sched_group(). - patches.suse/sched-Fix-update_cfs_load-synchronization: sched: Fix update_cfs_load() synchronization. - patches.suse/sched-Fix-update_curr_rt: sched: Fix update_curr_rt(). - patches.suse/sched-Implement-demand-based-update_cfs_load: sched: Implement demand based update_cfs_load(). - patches.suse/sched-Implement-on-demand-cfs_rq-list: sched: Implement on-demand (active) cfs_rq list. - patches.suse/sched-Increase-SCHED_LOAD_SCALE-resolution: sched: Increase SCHED_LOAD_SCALE resolution. - patches.suse/sched-Introduce-SCHED_POWER_SCALE-to-scale-cpu_power-calculation: sched: Introduce SCHED_POWER_SCALE to scale cpu_power calculations. - patches.suse/sched-Introduce-hierarchal-order-on-shares-update-list: sched: Introduce hierarchal order on shares update list. - patches.suse/sched-Leave-sched_setscheduler-earlier-if-possible-to-not-disturb-SCHED_FIFO-task: sched: Leave sched_setscheduler() earlier if possible, do not disturb SCHED_FIFO tasks. - patches.suse/sched-Limit-the-scope-of-clear_buddies: sched: Limit the scope of clear_buddies. - patches.suse/sched-Make-set_next-last_buddy-work-on-non-task-entities: sched: Make set_*_buddy() work on non-task entities. - patches.suse/sched-Make-sure-timers-have-migrated-before-killing-the-migration_thread: sched: Make sure timers have migrated before killing the migration_thread. - patches.suse/sched-Make-tg_shares_up-walk-on-demand: sched: Make tg_shares_up() walk on-demand. - patches.suse/sched-Merge-cpu_to_core_group-functions: sched: Merge cpu_to_core_group functions. - patches.suse/sched-Move-load-balance-code-into-sched_fair-c: sched: Move load balance code into sched_fair.c. - patches.suse/sched-Move-periodic-share-updates-to-entity_tick: sched: Move periodic share updates to entity_tick(). - patches.suse/sched-Move-sched-domain-storage-into-the-topology-list: sched: Move sched domain storage into the topology list. - patches.suse/sched-Next-buddy-hint-on-sleep-and-preempt-path: sched: Next buddy hint on sleep and preempt path. - patches.suse/sched-No-need-for-bootmem-special-cases: sched: No need for bootmem special cases. - patches.suse/sched-Reduce-some-allocation-pressure: sched: Reduce some allocation pressure. - patches.suse/sched-Reduce-update_group_power-calls: sched: Reduce update_group_power() calls. - patches.suse/sched-Remove-from-fwd-decls: sched: Remove from fwd decls. - patches.suse/sched-Remove-load_balance_newidle: sched: Remove load_balance_newidle(). - patches.suse/sched-Remove-member-rt_se-from-struct-rt_rq: sched: Remove member rt_se from struct rt_rq. - patches.suse/sched-Remove-nodemask-allocation: sched: Remove nodemask allocation. - patches.suse/sched-Remove-noop-in-alloc_rt_sched_group: sched: Remove noop in alloc_rt_sched_group(). - patches.suse/sched-Remove-obsolete-arch_-prefixes: sched: Remove obsolete arch_ prefixes. - patches.suse/sched-Remove-obsolete-comment-from-scheduler_tick: sched: Remove obsolete comment from scheduler_tick(). - patches.suse/sched-Remove-rq_iterator-from-move_one_task: sched: Remove rq_iterator from move_one_task. - patches.suse/sched-Remove-rq_iterator-usage-from-load_balance_fair: sched: Remove rq_iterator usage from load_balance_fair. - patches.suse/sched-Remove-some-dead-code: sched: Remove some dead code. - patches.suse/sched-Remove-the-sched_class-load_balance-methods: sched: Remove the sched_class load_balance methods. - patches.suse/sched-Remove-unused-parameters-from-sched_fork-and-wake_up_new_task: sched: Remove unused parameters from sched_fork() and wake_up_new_task(). - patches.suse/sched-Remove-unused-this_best_prio-arg-from-balance_tasks: sched: Remove unused 'this_best_prio arg' from balance_tasks(). - patches.suse/sched-Remove-unused-update_shares_locked: sched: Remove unused update_shares_locked(). - patches.suse/sched-Reverse-the-topology-list: sched: Reverse the topology list. - patches.suse/sched-Rewrite-tg_shares_up: sched: Rewrite tg_shares_up(). - patches.suse/sched-Shorten-the-construction-of-the-span-cpu-mask-of-sched-domain: sched: Shorten the construction of the span cpu mask of sched domain. - patches.suse/sched-Simplify-NODE-ALLNODES-domain-creation: sched: Simplify NODE/ALLNODES domain creation. - patches.suse/sched-Simplify-build_sched_groups: sched: Simplify build_sched_groups(). - patches.suse/sched-Simplify-cpu-hot-unplug-task-migration: sched: Simplify cpu-hot-unplug task migration. - patches.suse/sched-Simplify-cpu_power-initialization: sched: Simplify ->cpu_power initialization. - patches.suse/sched-Simplify-finding-the-lowest-sched_domain: sched: Simplify finding the lowest sched_domain. - patches.suse/sched-Simplify-sched_group-creation: sched: Simplify sched_group creation. - patches.suse/sched-Simplify-sched_groups_power-initialization: sched: Simplify sched_groups_power initialization. - patches.suse/sched-Simplify-the-free-path-some: sched: Simplify the free path some. - patches.suse/sched-Simplify-the-idle-scheduling-class: sched: Simplify the idle scheduling class. - patches.suse/sched-Simplify-update_cfs_shares-parameters: sched: Simplify update_cfs_shares parameters. - patches.suse/sched-Stuff-the-sched_domain-creation-in-a-data-structure: sched: Stuff the sched_domain creation in a data-structure. - patches.suse/sched-Unify-load_balance-and-load_balance_newidle: sched: Unify load_balance{,_newidle}(). - patches.suse/sched-Unify-the-sched_domain-build-functions: sched: Unify the sched_domain build functions. - patches.suse/sched-Update-effective_load-to-use-global-share-weights: sched: Update effective_load() to use global share weights. - patches.suse/sched-Update-rq-clock-for-nohz-balanced-cpus: sched: Update rq->clock for nohz balanced cpus. - patches.suse/sched-Update-shares-on-idle_balance: sched: Update shares on idle_balance. - patches.suse/sched-Update-tg-shares-after-cpu-shares-write: sched: Update tg->shares after cpu.shares write. - patches.suse/sched-Use-for_each_bit: sched: Use for_each_bit. - patches.suse/sched-Use-rq-clock_task-instead-of-rq-clock-for-correctly-maintaining-load-average: sched: Use rq->clock_task instead of rq->clock for correctly maintaining load averages. - patches.suse/sched-Wholesale-removal-of-sd_idle-logic: sched: Wholesale removal of sd_idle logic (bnc#588972). - patches.suse/sched-Wrap-the-cfs_rq-nr_spread_over-field-with-CONFIG_SCHED_DEBUG: sched: Wrap the 'cfs_rq->nr_spread_over' field with CONFIG_SCHED_DEBUG. - patches.suse/sched-cgroup-Fix-cgroup_subsys-exit-callback: cgroup: Fix cgroup_subsys::exit callback. - patches.suse/sched-cgroup-Use-exit-hook-to-avoid-use-after-free-crash: sched, cgroup: Use exit hook to avoid use-after-free crash. - patches.suse/sched-cgroups-if-you-list_empty-a-head-then-dont-list_del-it: cgroups: if you list_empty() a head then don't list_del() it. - patches.suse/sched-correctly-place-paranioa-memory-barriers-in-synchronize_sched_expedited: sched: correctly place paranioa memory barriers in synchronize_sched_expedited(). - patches.suse/sched-kill-paranoia-check-in-synchronize_sched_expedited: sched: kill paranoia check in synchronize_sched_expedited(). - patches.suse/sched-might_sleep-Make-file-parameter-const-char-pointer: sched: might_sleep(): Make file parameter const char *. - patches.suse/sched-no_hz-Remove-unused-rq-last_tick_seen-field: sched, no_hz: Remove unused rq->last_tick_seen field. - patches.suse/sched-replace-migration_thread-with-cpu_stop: sched: replace migration_thread with cpu_stop. - patches.suse/sched-workqueue-kill-RT-workqueue: workqueue: kill RT workqueue. - patches.suse/stop_machine-Move-local-variable-closer-to-the-usage-site-in-cpu_stop_cpu_callback: stop_machine: Move local variable closer to the usage site in cpu_stop_cpu_callback(). - patches.suse/stop_machine-fix-unused-variable-warning: kernel/stop_machine.c: fix unused variable warning. - patches.suse/stop_machine-reimplement-using-cpu_stop: stop_machine: reimplement using cpu_stop. - patches.suse/stop_machine-struct-cpu_stopper-remove-alignment-padding-on-64-bits: stop_machine: struct cpu_stopper, remove alignment padding on 64 bits. - patches.suse/topology-s390-Add-z11-cpu-topology-support: topology, s390: Add z11 cpu topology support. - patches.suse/topology-s390-expose-core-identifier: topology: expose core identifier. - patches.suse/topology-sysfs-Provide-book-id-and-siblings-attributes: topology/sysfs: Provide book id and siblings attributes. - patches.fixes/sched-cfs-hard-limits-V6: Delete. - patches.fixes/sched-sle11-sp2-fates-scheduler-update: Delete. - patches.sched/01-15-sched-fixlet-dont-update-shares-twice-on-on_rq-parent: Delete. - patches.sched/02-15-sched-hierarchical-task-accounting-for-SCHED_OTHER: Delete. - patches.sched/03-15-sched-introduce-primitives-to-account-for-CFS-bandwidth-tracking: Delete. - patches.sched/03-15-sched-introduce-primitives-to-account-for-CFS-bandwidth-tracking-fix: Delete. - patches.sched/04-15-sched-validate-CFS-quota-hierarchies: Delete. - patches.sched/04-15-sched-validate-CFS-quota-hierarchies-fix: Delete. - patches.sched/05-15-sched-add-a-timer-to-handle-CFS-bandwidth-refresh: Delete. - patches.sched/06-15-sched-accumulate-per-cfs_rq-cpu-usage-and-charge-against-bandwidth: Delete. - patches.sched/07-15-sched-expire-invalid-runtime: Delete. - patches.sched/08-15-sched-throttle-cfs_rq-entities-which-exceed-their-local-runtime: Delete. - patches.sched/09-15-sched-unthrottle-cfs_rqs-who-ran-out-of-quota-at-period-refresh: Delete. - patches.sched/10-15-sched-allow-for-positional-tg_tree-walks: Delete. - patches.sched/11-15-sched-prevent-interactions-between-throttled-entities-and-load-balance: Delete. - patches.sched/12-15-sched-migrate-throttled-tasks-on-HOTPLUG: Delete. - patches.sched/13-15-sched-add-exports-tracking-cfs-bandwidth-control-statistics: Delete. - patches.sched/14-15-sched-return-unused-runtime-on-voluntary-sleep: Delete. - patches.sched/15-15-sched-add-documentation-for-bandwidth-control: Delete. - patches.sched/16-15-sched-fix-hotplug-lockup: Delete. - patches.sched/cpu_stop-add-dummy-implementation-for-UP: Delete. - patches.sched/cpu_stop-implement-stop_cpu-and-stop_cpus: Delete. - patches.sched/cpumask-Partition_sched_domains-takes-array-of-cpumask_var_t: Delete. - patches.sched/cpumask-Simplify-sched_rt-c: Delete. - patches.sched/powerpc-Enable-asymmetric-SMT-scheduling-on-POWER7: Delete. - patches.sched/powerpc-Exclude-arch_sd_sibiling_asym_packing-on-UP: Delete. - patches.sched/rcu-need-barrier-in-UP-synchronize_sched_expedited: Delete. - patches.sched/sched-Add-asymmetric-group-packing-option-for-sibling-domain: Delete. - patches.sched/sched-Add-book-scheduling-domain: Delete. - patches.sched/sched-Add-enqueue-dequeue-flags: Delete. - patches.sched/sched-Add-sysctl_sched_shares_window: Delete. - patches.sched/sched-Allow-SCHED_BATCH-to-preempt-SCHED_IDLE-tasks: Delete. - patches.sched/sched-Allow-update_cfs_load-to-update-global-load: Delete. - patches.sched/sched-Allow-users-with-sufficient-RLIMIT_NICE-to-change-from-SCHED_IDLE-policy: Delete. - patches.sched/sched-Assume-balance-is-valid: Delete. - patches.sched/sched-Avoid-allocations-in-sched_domain_debug: Delete. - patches.sched/sched-Avoid-expensive-initial-update_cfs_load: Delete. - patches.sched/sched-Avoid-expensive-initial-update_cfs_load-on-UP-too: Delete. - patches.sched/sched-Avoid-going-ahead-if-cpus_allowed-is-not-changed: Delete. - patches.sched/sched-Avoid-side-effect-of-tickless-idle-on-update_cpu_load: Delete. - patches.sched/sched-Avoid-using-sd-level: Delete. - patches.sched/sched-Change-NODE-sched_domain-group-creation: Delete. - patches.sched/sched-Change-nohz-idle-load-balancing-logic-to-push-model: Delete. - patches.sched/sched-Change-usage-of-rt_rq-rt_se-to-rt_rq-tg-rt_se-cpu: Delete. - patches.sched/sched-Clean-up-rebalance_domains-load-balance-interval-calculation: Delete. - patches.sched/sched-Clean-up-remnants-of-sd_idle: Delete. - patches.sched/sched-Clean-up-some-ALLNODES-code: Delete. - patches.sched/sched-Clean-up-some-f_b_g-comments: Delete. - patches.sched/sched-Cleanup-set_load_weight: Delete. - patches.sched/sched-Create-persistent-sched_domains_tmpmask: Delete. - patches.sched/sched-Create-proper-cpu_DOM_mask-functions: Delete. - patches.sched/sched-Create-special-class-for-stop-and-migrate-work: Delete. - patches.sched/sched-Cure-load-average-vs-NO_HZ-woes: Delete. - patches.sched/sched-Cure-more-NO_HZ-load-average-woes: Delete. - patches.sched/sched-Dont-expose-local-functions: Delete. - patches.sched/sched-Drop-all-load-weight-manipulation-for-RT-tasks: Delete. - patches.sched/sched-Dynamic-sched_domain-level: Delete. - patches.sched/sched-Dynamically-allocate-sched_domain-sched_group-data-structures: Delete. - patches.sched/sched-Fix-PROVE_RCU-vs-cpu_cgroup: Delete. - patches.sched/sched-Fix-UP-build-breakage: Delete. - patches.sched/sched-Fix-and-optimise-calculation-of-the-weight-inverse: Delete. - patches.sched/sched-Fix-capacity-calculations-for-SMT4: Delete. - patches.sched/sched-Fix-comments-to-make-them-DocBook-happy: Delete. - patches.sched/sched-Fix-erroneous-all_pinned-logic: Delete. - patches.sched/sched-Fix-fix_small_capacity: Delete. - patches.sched/sched-Fix-interactivity-bug-by-charging-unaccounted-run-time-on-entity-re-weight: Delete. - patches.sched/sched-Fix-load-corruption-from-update_cfs_shares: Delete. - patches.sched/sched-Fix-nohz-balance-kick: Delete. - patches.sched/sched-Fix-poor-interactivity-on-UP-systems-due-to-group-scheduler-nice-tune-bug: Delete. - patches.sched/sched-Fix-rebalance-interval-calculation: Delete. - patches.sched/sched-Fix-remove-redundant-cfs_rq-checks: Delete. - patches.sched/sched-Fix-rt_rq-runtime-leakage-bug: Delete. - patches.sched/sched-Fix-runnable-condition-for-stoptask: Delete. - patches.sched/sched-Fix-sched-domain-avg_load-calculation: Delete. - patches.sched/sched-Fix-sched-rt-group-scheduling-when-hierachy-is-enabled: Delete. - patches.sched/sched-Fix-sched_domain-iterations-vs-RCU: Delete. - patches.sched/sched-Fix-sign-under-flows-in-wake_affine: Delete. - patches.sched/sched-Fix-spelling-of-sibling: Delete. - patches.sched/sched-Fix-strncmp-operation: Delete. - patches.sched/sched-Fix-switch_from_fair: Delete. - patches.sched/sched-Fix-the-group_imb-logic: Delete. - patches.sched/sched-Fix-the-irqtime-code-for-32bit: Delete. - patches.sched/sched-Fix-the-irqtime-code-to-deal-with-u64-wraps: Delete. - patches.sched/sched-Fix-the-place-where-group-powers-are-updated: Delete. - patches.sched/sched-Fix-unregister_fair_sched_group: Delete. - patches.sched/sched-Fix-update_cfs_load-synchronization: Delete. - patches.sched/sched-Fix-update_curr_rt: Delete. - patches.sched/sched-Implement-demand-based-update_cfs_load: Delete. - patches.sched/sched-Implement-on-demand-cfs_rq-list: Delete. - patches.sched/sched-Increase-SCHED_LOAD_SCALE-resolution: Delete. - patches.sched/sched-Introduce-SCHED_POWER_SCALE-to-scale-cpu_power-calculation: Delete. - patches.sched/sched-Introduce-hierarchal-order-on-shares-update-list: Delete. - patches.sched/sched-Leave-sched_setscheduler-earlier-if-possible-to-not-disturb-SCHED_FIFO-task: Delete. - patches.sched/sched-Limit-the-scope-of-clear_buddies: Delete. - patches.sched/sched-Make-set_next-last_buddy-work-on-non-task-entities: Delete. - patches.sched/sched-Make-sure-timers-have-migrated-before-killing-the-migration_thread: Delete. - patches.sched/sched-Make-tg_shares_up-walk-on-demand: Delete. - patches.sched/sched-Merge-cpu_to_core_group-functions: Delete. - patches.sched/sched-Move-load-balance-code-into-sched_fair-c: Delete. - patches.sched/sched-Move-periodic-share-updates-to-entity_tick: Delete. - patches.sched/sched-Move-sched-domain-storage-into-the-topology-list: Delete. - patches.sched/sched-Next-buddy-hint-on-sleep-and-preempt-path: Delete. - patches.sched/sched-No-need-for-bootmem-special-cases: Delete. - patches.sched/sched-Reduce-some-allocation-pressure: Delete. - patches.sched/sched-Reduce-update_group_power-calls: Delete. - patches.sched/sched-Remove-from-fwd-decls: Delete. - patches.sched/sched-Remove-load_balance_newidle: Delete. - patches.sched/sched-Remove-member-rt_se-from-struct-rt_rq: Delete. - patches.sched/sched-Remove-nodemask-allocation: Delete. - patches.sched/sched-Remove-noop-in-alloc_rt_sched_group: Delete. - patches.sched/sched-Remove-obsolete-arch_-prefixes: Delete. - patches.sched/sched-Remove-obsolete-comment-from-scheduler_tick: Delete. - patches.sched/sched-Remove-rq_iterator-from-move_one_task: Delete. - patches.sched/sched-Remove-rq_iterator-usage-from-load_balance_fair: Delete. - patches.sched/sched-Remove-some-dead-code: Delete. - patches.sched/sched-Remove-the-sched_class-load_balance-methods: Delete. - patches.sched/sched-Remove-unused-parameters-from-sched_fork-and-wake_up_new_task: Delete. - patches.sched/sched-Remove-unused-this_best_prio-arg-from-balance_tasks: Delete. - patches.sched/sched-Remove-unused-update_shares_locked: Delete. - patches.sched/sched-Reverse-the-topology-list: Delete. - patches.sched/sched-Rewrite-tg_shares_up: Delete. - patches.sched/sched-Shorten-the-construction-of-the-span-cpu-mask-of-sched-domain: Delete. - patches.sched/sched-Simplify-NODE-ALLNODES-domain-creation: Delete. - patches.sched/sched-Simplify-build_sched_groups: Delete. - patches.sched/sched-Simplify-cpu-hot-unplug-task-migration: Delete. - patches.sched/sched-Simplify-cpu_power-initialization: Delete. - patches.sched/sched-Simplify-finding-the-lowest-sched_domain: Delete. - patches.sched/sched-Simplify-sched_group-creation: Delete. - patches.sched/sched-Simplify-sched_groups_power-initialization: Delete. - patches.sched/sched-Simplify-the-free-path-some: Delete. - patches.sched/sched-Simplify-the-idle-scheduling-class: Delete. - patches.sched/sched-Simplify-update_cfs_shares-parameters: Delete. - patches.sched/sched-Stuff-the-sched_domain-creation-in-a-data-structure: Delete. - patches.sched/sched-Unify-load_balance-and-load_balance_newidle: Delete. - patches.sched/sched-Unify-the-sched_domain-build-functions: Delete. - patches.sched/sched-Update-effective_load-to-use-global-share-weights: Delete. - patches.sched/sched-Update-rq-clock-for-nohz-balanced-cpus: Delete. - patches.sched/sched-Update-shares-on-idle_balance: Delete. - patches.sched/sched-Update-tg-shares-after-cpu-shares-write: Delete. - patches.sched/sched-Use-for_each_bit: Delete. - patches.sched/sched-Use-rq-clock_task-instead-of-rq-clock-for-correctly-maintaining-load-average: Delete. - patches.sched/sched-Wholesale-removal-of-sd_idle-logic: Delete. - patches.sched/sched-Wrap-the-cfs_rq-nr_spread_over-field-with-CONFIG_SCHED_DEBUG: Delete. - patches.sched/sched-cgroup-Fix-cgroup_subsys-exit-callback: Delete. - patches.sched/sched-cgroup-Use-exit-hook-to-avoid-use-after-free-crash: Delete. - patches.sched/sched-cgroups-if-you-list_empty-a-head-then-dont-list_del-it: Delete. - patches.sched/sched-correctly-place-paranioa-memory-barriers-in-synchronize_sched_expedited: Delete. - patches.sched/sched-kill-paranoia-check-in-synchronize_sched_expedited: Delete. - patches.sched/sched-might_sleep-Make-file-parameter-const-char-pointer: Delete. - patches.sched/sched-no_hz-Remove-unused-rq-last_tick_seen-field: Delete. - patches.sched/sched-replace-migration_thread-with-cpu_stop: Delete. - patches.sched/sched-workqueue-kill-RT-workqueue: Delete. - patches.sched/series: Delete. - patches.sched/stop_machine-Move-local-variable-closer-to-the-usage-site-in-cpu_stop_cpu_callback: Delete. - patches.sched/stop_machine-fix-unused-variable-warning: Delete. - patches.sched/stop_machine-reimplement-using-cpu_stop: Delete. - patches.sched/stop_machine-struct-cpu_stopper-remove-alignment-padding-on-64-bits: Delete. - patches.sched/topology-s390-Add-z11-cpu-topology-support: Delete. - patches.sched/topology-s390-expose-core-identifier: Delete. - patches.sched/topology-sysfs-Provide-book-id-and-siblings-attributes: Delete.- Fix a typo in patches.drivers/alsa-sp1-hda-116-Reorganize-controller-quriks-with-bit-flags- Added patches.suse/oprofile-{001-050}*.patch (FATE#309728, BNC#686840) - Dropped patches.fixes/oprofile_bios_ctr.patch (obsoleted) - patches.xen/xen3-auto-common.diff: Refresh. - patches.xen/xen3-patch-2.6.24: Refresh. - patches.xen/xen3-patch-2.6.28: Refresh.- Disable dm-raid45; will be enabled with a later snapshot. - Backport TRIM/DISCARD changes from 2.6.33 (FATE#311054): - patches.suse/-libata-MWDMA0-is-unsupported-on-PIIX-like-PATA-con.patch: [libata] MWDMA0 is unsupported on PIIX-like PATA controllers (FATE#311054). - patches.suse/-libata-PATA-Update-experimental-tags.patch: [libata] PATA: Update experimental tags (FATE#311054). - patches.suse/3w-9xxx-fix-bug-in-sgl-loading.patch: [SCSI] 3w-9xxx fix bug in sgl loading (FATE#311054). - patches.suse/ACPI-do-not-select-ACPI_DOCK-from-ATA_ACPI.patch: ACPI: do not select ACPI_DOCK from ATA_ACPI (FATE#311054). - patches.suse/Correctly-handle-thin-provisioning-write-erro.patch: [SCSI] Correctly handle thin provisioning write error (FATE#311054). - patches.suse/Do-not-__always_inline-bvec_kmap_irq-and-bvec_kunm.patch: Do not __always_inline bvec_kmap_irq() and bvec_kunmap_irq() (FATE#311054). - patches.suse/Fix-a-CFQ-crash-in-for-2.6.33-branch-of-block-tree.patch: Fix a CFQ crash in "for-2.6.33" branch of block tree (FATE#311054). - patches.suse/Fix-regression-in-direct-writes-performance-due-to-W.patch: Fix regression in direct writes performance due to WRITE_ODIRECT flag removal (FATE#311054). - patches.suse/Revert-block-improve-queue_should_plug-by-lookin.patch: Revert "block: improve queue_should_plug() by looking at IO depths" (FATE#311054). - patches.suse/Revert-cfq-Make-use-of-service-count-to-estimate-t.patch: Revert "cfq: Make use of service count to estimate the rb_key offset" (FATE#311054). - patches.suse/Revert-pata_cmd64x-implement-serialization-as-per.patch: Revert "pata_cmd64x: implement serialization as per notes" (FATE#311054). - patches.suse/Revert-pata_sis-Implement-MWDMA-for-the-UDMA-133-c.patch: Revert "pata_sis: Implement MWDMA for the UDMA 133 capable chips" (FATE#311054). - patches.suse/ahci-add-Acer-G725-to-broken-suspend-list.patch: ahci: add Acer G725 to broken suspend list (FATE#311054). - patches.suse/ahci-let-users-know-that-Promise-PDC42819-support-i.patch: ahci: let users know that Promise PDC42819 support is limited to SATA devices (FATE#311054). - patches.suse/aio-implement-request-batching.patch: aio: implement request batching (FATE#311054). - patches.suse/aoe-switch-to-the-new-bio_flush_dcache_pages-inte.patch: aoe: switch to the new bio_flush_dcache_pages() interface (FATE#311054). - patches.suse/ata-Don-t-require-newlines-for-link_power_managemen.patch: ata: Don't require newlines for link_power_management_policy (FATE#311054). - patches.suse/ata-use-pci_dev-revision.patch: ata: use pci_dev->revision (FATE#311054). - patches.suse/ata_piix-enable-32bit-PIO-on-SATA-piix.patch: ata_piix: enable 32bit PIO on SATA piix (FATE#311054). - patches.suse/ataflop-remove-buggy-commented-out-IRQ-disable-from.patch: ataflop: remove buggy/commented-out IRQ disable from do_fd_request() (FATE#311054). - patches.suse/blk-cgroup-Fix-potential-deadlock-in-blk-cgroup.patch: blk-cgroup: Fix potential deadlock in blk-cgroup (FATE#311054). - patches.suse/blkio-Allow-CFQ-group-IO-scheduling-even-when-CFQ-i.patch: blkio: Allow CFQ group IO scheduling even when CFQ is a module (FATE#311054). - patches.suse/blkio-Determine-async-workload-length-based-on-tota.patch: blkio: Determine async workload length based on total number of queues (FATE#311054). - patches.suse/blkio-Documentation.patch: blkio: Documentation (FATE#311054). - patches.suse/blkio-Drop-the-reference-to-queue-once-the-task-cha.patch: blkio: Drop the reference to queue once the task changes cgroup (FATE#311054). - patches.suse/blkio-Dynamic-cfq-group-creation-based-on-cgroup-ta.patch: blkio: Dynamic cfq group creation based on cgroup tasks belongs to (FATE#311054). - patches.suse/blkio-Export-disk-time-and-sectors-used-by-a-group.patch: blkio: Export disk time and sectors used by a group to user space (FATE#311054). - patches.suse/blkio-Export-some-symbols-from-blkio-as-its-user-CF.patch: blkio: Export some symbols from blkio as its user CFQ can be a module (FATE#311054). - patches.suse/blkio-Group-time-used-accounting-and-workload-conte.patch: blkio: Group time used accounting and workload context save restore (FATE#311054). - patches.suse/blkio-Implement-dynamic-io-controlling-policy-regis.patch: blkio: Implement dynamic io controlling policy registration (FATE#311054). - patches.suse/blkio-Implement-group_isolation-tunable.patch: blkio: Implement group_isolation tunable (FATE#311054). - patches.suse/blkio-Implement-macro-to-traverse-each-service-tree.patch: blkio: Implement macro to traverse each service tree in group (FATE#311054). - patches.suse/blkio-Implement-per-cfq-group-latency-target-and-bu.patch: blkio: Implement per cfq group latency target and busy queue avg (FATE#311054). - patches.suse/blkio-Introduce-blkio-controller-cgroup-interface.patch: blkio: Introduce blkio controller cgroup interface (FATE#311054). - patches.suse/blkio-Introduce-per-cfq-group-weights-and-vdisktime.patch: blkio: Introduce per cfq group weights and vdisktime calculations (FATE#311054). - patches.suse/blkio-Introduce-the-notion-of-cfq-groups.patch: blkio: Introduce the notion of cfq groups (FATE#311054). - patches.suse/blkio-Introduce-the-root-service-tree-for-cfq-group.patch: blkio: Introduce the root service tree for cfq groups (FATE#311054). - patches.suse/blkio-Keep-queue-on-service-tree-until-we-expire-it.patch: blkio: Keep queue on service tree until we expire it (FATE#311054). - patches.suse/blkio-Propagate-cgroup-weight-updation-to-cfq-group.patch: blkio: Propagate cgroup weight updation to cfq groups (FATE#311054). - patches.suse/blkio-Provide-some-isolation-between-groups.patch: blkio: Provide some isolation between groups (FATE#311054). - patches.suse/blkio-Set-must_dispatch-only-if-we-decided-to-not-d.patch: blkio: Set must_dispatch only if we decided to not dispatch the request (FATE#311054). - patches.suse/blkio-Some-debugging-aids-for-CFQ.patch: blkio: Some debugging aids for CFQ (FATE#311054). - patches.suse/blkio-Take-care-of-cgroup-deletion-and-cfq-group-re.patch: blkio: Take care of cgroup deletion and cfq group reference counting (FATE#311054). - patches.suse/blkio-Wait-for-cfq-queue-to-get-backlogged-if-group.patch: blkio: Wait for cfq queue to get backlogged if group is empty (FATE#311054). - patches.suse/blkio-Wait-on-sync-noidle-queue-even-if-rq_noidle.patch: blkio: Wait on sync-noidle queue even if rq_noidle = 1 (FATE#311054). - patches.suse/block-Added-in-stricter-no-merge-semantics-for-bloc.patch: block: Added in stricter no merge semantics for block I/O (FATE#311054). - patches.suse/block-Allow-devices-to-indicate-whether-discarded-b.patch: block: Allow devices to indicate whether discarded blocks are zeroed (FATE#311054). - patches.suse/block-CFQ-is-more-than-a-desktop-scheduler.patch: block: CFQ is more than a desktop scheduler (FATE#311054). - patches.suse/block-Correct-handling-of-bottom-device-misaligment.patch: block: Correct handling of bottom device misaligment (FATE#311054). - patches.suse/block-Expose-discard-granularity.patch: block: Expose discard granularity (FATE#311054). - patches.suse/block-Fix-discard-alignment-calculation-and-printin.patch: block: Fix discard alignment calculation and printing (FATE#311054). - patches.suse/block-Fix-incorrect-alignment-offset-reporting-and.patch: block: Fix incorrect alignment offset reporting and update documentation (FATE#311054). - patches.suse/block-Fix-io_context-leak-after-clone-with-CLONE_IO.patch: block: Fix io_context leak after clone with CLONE_IO (FATE#311054). - patches.suse/block-Fix-io_context-leak-after-failure-of-clone-wi.patch: block: Fix io_context leak after failure of clone with CLONE_IO (FATE#311054). - patches.suse/block-Fix-topology-stacking-for-data-and-discard-al.patch: block: Fix topology stacking for data and discard alignment (FATE#311054). - patches.suse/block-Honor-the-gfp_mask-for-alloc_page-in-blkdev.patch: block: Honor the gfp_mask for alloc_page() in blkdev_issue_discard() (FATE#311054). - patches.suse/block-Stop-using-byte-offsets.patch: block: Stop using byte offsets (FATE#311054). - patches.suse/block-add-helpers-to-run-flush_dcache_page-agains.patch: block: add helpers to run flush_dcache_page() against a bio and a request's pages (FATE#311054). - patches.suse/block-get-rid-of-the-WRITE_ODIRECT-flag.patch: block: get rid of the WRITE_ODIRECT flag (FATE#311054). - patches.suse/block-include-linux-err.h-to-use-ERR_PTR.patch: block: include linux/err.h to use ERR_PTR (FATE#311054). - patches.suse/block-jiffies-fixes.patch: block: jiffies fixes (FATE#311054). - patches.suse/block-ps3-fix-slow-VRAM-IO.patch: block/ps3: fix slow VRAM IO (FATE#311054). - patches.suse/block-remove-Documentation-block-as-iosched.txt.patch: block: remove Documentation/block/as-iosched.txt (FATE#311054). - patches.suse/block-remove-the-anticipatory-IO-scheduler.patch: block: remove the anticipatory IO scheduler (FATE#311054). - patches.suse/block-removed-unused-as_io_context.patch: block: removed unused as_io_context (FATE#311054). - patches.suse/block-scsi_ioctl.c-quiet-sparse-noise.patch: block/scsi_ioctl.c: quiet sparse noise (FATE#311054). - patches.suse/block-temporarily-disable-discard-granularity.patch: block: temporarily disable discard granularity (FATE#311054). - patches.suse/block-xd-Delay-allocation-of-DMA-buffers-until-devi.patch: block,xd: Delay allocation of DMA buffers until device is known (FATE#311054). - patches.suse/cfq-Make-use-of-service-count-to-estimate-the-rb_ke.patch: cfq: Make use of service count to estimate the rb_key offset (FATE#311054). - patches.suse/cfq-Optimization-for-close-cooperating-queue-search.patch: cfq: Optimization for close cooperating queue searching (FATE#311054). - patches.suse/cfq-Remove-wait_request-flag-when-idle-time-is-bein.patch: cfq: Remove wait_request flag when idle time is being deleted (FATE#311054). - patches.suse/cfq-break-apart-merged-cfqqs-if-they-stop-cooperati.patch: cfq: break apart merged cfqqs if they stop cooperating (FATE#311054). - patches.suse/cfq-calculate-the-seek_mean-per-cfq_queue-not-per-c.patch: cfq: calculate the seek_mean per cfq_queue not per cfq_io_context (FATE#311054). - patches.suse/cfq-change-the-meaning-of-the-cfqq_coop-flag.patch: cfq: change the meaning of the cfqq_coop flag (FATE#311054). - patches.suse/cfq-iosched-Do-not-access-cfqq-after-freeing-it.patch: cfq-iosched: Do not access cfqq after freeing it (FATE#311054). - patches.suse/cfq-iosched-Do-not-idle-on-async-queues.patch: cfq-iosched: Do not idle on async queues (FATE#311054). - patches.suse/cfq-iosched-Get-rid-of-cfqq-wait_busy_done-flag.patch: cfq-iosched: Get rid of cfqq wait_busy_done flag (FATE#311054). - patches.suse/cfq-iosched-Get-rid-of-nr_groups.patch: cfq-iosched: Get rid of nr_groups (FATE#311054). - patches.suse/cfq-iosched-Remove-prio_change-logic-for-workload-s.patch: cfq-iosched: Remove prio_change logic for workload selection (FATE#311054). - patches.suse/cfq-iosched-Remove-the-check-for-same-cfq-group-fro.patch: cfq-iosched: Remove the check for same cfq group from allow_merge (FATE#311054). - patches.suse/cfq-iosched-Respect-ioprio_class-when-preempting.patch: cfq-iosched: Respect ioprio_class when preempting (FATE#311054). - patches.suse/cfq-iosched-Take-care-of-corner-cases-of-group-losi.patch: cfq-iosched: Take care of corner cases of group losing share due to deletion (FATE#311054). - patches.suse/cfq-iosched-adapt-slice-to-number-of-processes-doin.patch: cfq-iosched: adapt slice to number of processes doing I/O (FATE#311054). - patches.suse/cfq-iosched-cleanup-unreachable-code.patch: cfq-iosched: cleanup unreachable code (FATE#311054). - patches.suse/cfq-iosched-commenting-non-obvious-initialization.patch: cfq-iosched: commenting non-obvious initialization (FATE#311054). - patches.suse/cfq-iosched-don-t-regard-requests-with-long-distanc.patch: cfq-iosched: don't regard requests with long distance as close (FATE#311054). - patches.suse/cfq-iosched-enable-idling-for-last-queue-on-priorit.patch: cfq-iosched: enable idling for last queue on priority class (FATE#311054). - patches.suse/cfq-iosched-fairness-for-sync-no-idle-queues.patch: cfq-iosched: fairness for sync no-idle queues (FATE#311054). - patches.suse/cfq-iosched-fix-compile-problem-with-CONFIG_CGROUP.patch: cfq-iosched: fix compile problem with !CONFIG_CGROUP (FATE#311054). - patches.suse/cfq-iosched-fix-corner-cases-in-idling-logic.patch: cfq-iosched: fix corner cases in idling logic (FATE#311054). - patches.suse/cfq-iosched-fix-ncq-detection-code.patch: cfq-iosched: fix ncq detection code (FATE#311054). - patches.suse/cfq-iosched-fix-next_rq-computation.patch: cfq-iosched: fix next_rq computation (FATE#311054). - patches.suse/cfq-iosched-fix-no-idle-preemption-logic.patch: cfq-iosched: fix no-idle preemption logic (FATE#311054). - patches.suse/cfq-iosched-fix-style-issue-in-cfq_get_avg_queues.patch: cfq-iosched: fix style issue in cfq_get_avg_queues() (FATE#311054). - patches.suse/cfq-iosched-idling-on-deep-seeky-sync-queues.patch: cfq-iosched: idling on deep seeky sync queues (FATE#311054). - patches.suse/cfq-iosched-improve-hw_tag-detection.patch: cfq-iosched: improve hw_tag detection (FATE#311054). - patches.suse/cfq-iosched-make-nonrot-check-logic-consistent.patch: cfq-iosched: make nonrot check logic consistent (FATE#311054). - patches.suse/cfq-iosched-move-IO-controller-declerations-to-a-he.patch: cfq-iosched: move IO controller declerations to a header file (FATE#311054). - patches.suse/cfq-iosched-no-dispatch-limit-for-single-queue.patch: cfq-iosched: no dispatch limit for single queue (FATE#311054). - patches.suse/cfq-iosched-preparation-to-handle-multiple-service.patch: cfq-iosched: preparation to handle multiple service trees (FATE#311054). - patches.suse/cfq-iosched-reduce-write-depth-only-if-sync-was-del.patch: cfq-iosched: reduce write depth only if sync was delayed (FATE#311054). - patches.suse/cfq-iosched-reimplement-priorities-using-different.patch: cfq-iosched: reimplement priorities using different service trees (FATE#311054). - patches.suse/cfq-iosched-simplify-prio-unboost-code.patch: cfq-iosched: simplify prio-unboost code (FATE#311054). - patches.suse/cfq-iosched-split-seeky-coop-queues-after-one-slice.patch: cfq-iosched: split seeky coop queues after one slice (FATE#311054). - patches.suse/cfq-iosched-use-call_rcu-instead-of-doing-grace-p.patch: cfq-iosched: use call_rcu() instead of doing grace period stall on queue exit (FATE#311054). - patches.suse/cfq-merge-cooperating-cfq_queues.patch: cfq: merge cooperating cfq_queues (FATE#311054). - patches.suse/cfq-reorder-cfq_queue-removing-padding-on-64bit.patch: cfq: reorder cfq_queue removing padding on 64bit (FATE#311054). - patches.suse/cfq-set-workload-as-expired-if-it-doesn-t-have-any.patch: cfq: set workload as expired if it doesn't have any slice left (FATE#311054). - patches.suse/cxgb3i-Fix-a-login-over-vlan-issue.patch: [SCSI] cxgb3i: Fix a login over vlan issue (FATE#311054). - patches.suse/cxgb3i-always-use-negative-errno-in-case-of.patch: [SCSI] cxgb3i: always use negative errno in case of error (FATE#311054). - patches.suse/dm-abstract-clone_rq.patch: dm: abstract clone_rq (FATE#311054). - patches.suse/dm-add-dm_deleting_md-function.patch: dm: add dm_deleting_md function (FATE#311054). - patches.suse/dm-add-request-based-barrier-support.patch: dm: add request based barrier support (FATE#311054). - patches.suse/dm-bind-new-table-before-destroying-old.patch: dm: bind new table before destroying old (FATE#311054). - patches.suse/dm-crypt-add-plain64-iv.patch: dm crypt: add plain64 iv (FATE#311054). - patches.suse/dm-crypt-make-wipe-message-also-wipe-tfm-key.patch: dm crypt: make wipe message also wipe tfm key (FATE#311054). - patches.suse/dm-exception-store-add-merge-specific-methods.patch: dm exception store: add merge specific methods (FATE#311054). - patches.suse/dm-export-suspended-state-to-targets.patch: dm: export suspended state to targets (FATE#311054). - patches.suse/dm-io-handle-empty-barriers.patch: dm io: handle empty barriers (FATE#311054). - patches.suse/dm-io-remove-extra-bi_io_vec-region-hack.patch: dm io: remove extra bi_io_vec region hack (FATE#311054). - patches.suse/dm-io-use-slab-for-struct-io.patch: dm io: use slab for struct io (FATE#311054). - patches.suse/dm-ioctl-forbid-messages-to-devices-being-deleted.patch: dm ioctl: forbid messages to devices being deleted (FATE#311054). - patches.suse/dm-ioctl-prefer-strlcpy-over-strncpy.patch: dm ioctl: prefer strlcpy over strncpy (FATE#311054). - patches.suse/dm-ioctl-retrieve-status-from-inactive-table.patch: dm ioctl: retrieve status from inactive table (FATE#311054). - patches.suse/dm-kcopyd-accept-zero-size-jobs.patch: dm kcopyd: accept zero size jobs (FATE#311054). - patches.suse/dm-keep-old-table-until-after-resume-succeeded.patch: dm: keep old table until after resume succeeded (FATE#311054). - patches.suse/dm-log-add-flush-callback-fn.patch: dm log: add flush callback fn (FATE#311054). - patches.suse/dm-log-add-flush_header-function.patch: dm log: add flush_header function (FATE#311054). - patches.suse/dm-log-introduce-flush_failed-variable.patch: dm log: introduce flush_failed variable (FATE#311054). - patches.suse/dm-log-use-flush-callback-fn.patch: dm log: use flush callback fn (FATE#311054). - patches.suse/dm-move-dm_end_request.patch: dm: move dm_end_request (FATE#311054). - patches.suse/dm-mpath-add-mutex-to-synchronize-adding-and-flushi.patch: dm mpath: add mutex to synchronize adding and flushing work (FATE#311054). - patches.suse/dm-mpath-fix-stall-when-requeueing-io.patch: dm mpath: fix stall when requeueing io (FATE#311054). - patches.suse/dm-mpath-flush-workqueues-before-suspend-completes.patch: dm mpath: flush workqueues before suspend completes (FATE#311054). - patches.suse/dm-mpath-prevent-io-from-work-queue-while-suspended.patch: dm mpath: prevent io from work queue while suspended (FATE#311054). - patches.suse/dm-mpath-reject-messages-when-device-is-suspended.patch: dm mpath: reject messages when device is suspended (FATE#311054). - patches.suse/dm-pass-gfp_mask-to-alloc_rq_tio.patch: dm: pass gfp_mask to alloc_rq_tio (FATE#311054). - patches.suse/dm-raid1-abstract-get_valid_mirror-function.patch: dm raid1: abstract get_valid_mirror function (FATE#311054). - patches.suse/dm-raid1-add-framework-to-hold-bios-during-suspend.patch: dm raid1: add framework to hold bios during suspend (FATE#311054). - patches.suse/dm-raid1-explicitly-initialise-bio_lists.patch: dm raid1: explicitly initialise bio_lists (FATE#311054). - patches.suse/dm-raid1-hold-all-write-bios-when-leg-fails.patch: dm raid1: hold all write bios when leg fails (FATE#311054). - patches.suse/dm-raid1-hold-write-bios-when-errors-are-handled.patch: dm raid1: hold write bios when errors are handled (FATE#311054). - patches.suse/dm-raid1-implement-mirror_flush.patch: dm raid1: implement mirror_flush (FATE#311054). - patches.suse/dm-raid1-remove-bio_endio-from-dm_rh_mark_nosync.patch: dm raid1: remove bio_endio from dm_rh_mark_nosync (FATE#311054). - patches.suse/dm-raid1-report-flush-errors-separately-in-status.patch: dm raid1: report flush errors separately in status (FATE#311054). - patches.suse/dm-raid1-split-touched-state-into-two.patch: dm raid1: split touched state into two (FATE#311054). - patches.suse/dm-raid1-support-flush.patch: dm raid1: support flush (FATE#311054 FATE#311054). - patches.suse/dm-raid1-use-hold-framework-in-do_failures.patch: dm raid1: use hold framework in do_failures (FATE#311054). - patches.suse/dm-refactor-request-based-completion-functions.patch: dm: refactor request based completion functions (FATE#311054). - patches.suse/dm-rename-dm_get_table-to-dm_get_live_table.patch: dm: rename dm_get_table to dm_get_live_table (FATE#311054). - patches.suse/dm-rename-dm_suspended-to-dm_suspended_md.patch: dm: rename dm_suspended to dm_suspended_md (FATE#311054). - patches.suse/dm-simplify-request-based-suspend.patch: dm: simplify request based suspend (FATE#311054). - patches.suse/dm-snapshot-abstract-minimum_chunk_size-fn.patch: dm snapshot: abstract minimum_chunk_size fn (FATE#311054). - patches.suse/dm-snapshot-add-allocated-metadata-to-snapshot-stat.patch: dm snapshot: add allocated metadata to snapshot status (FATE#311054). - patches.suse/dm-snapshot-add-merge-target.patch: dm snapshot: add merge target (FATE#311054). - patches.suse/dm-snapshot-add-merging.patch: dm snapshot: add merging (FATE#311054). - patches.suse/dm-snapshot-allow-live-exception-store-handover-bet.patch: dm snapshot: allow live exception store handover between tables (FATE#311054). - patches.suse/dm-snapshot-avoid-allocating-exceptions-in-merge.patch: dm snapshot: avoid allocating exceptions in merge (FATE#311054). - patches.suse/dm-snapshot-avoid-else-clause-in-persistent_read_me.patch: dm snapshot: avoid else clause in persistent_read_metadata (FATE#311054). - patches.suse/dm-snapshot-consolidate-insert-exception-functions.patch: dm snapshot: consolidate insert exception functions (FATE#311054). - patches.suse/dm-snapshot-create-function-for-chunk_is_tracked-wa.patch: dm snapshot: create function for chunk_is_tracked wait (FATE#311054). - patches.suse/dm-snapshot-delay-merging-a-chunk-until-writes-to-i.patch: dm snapshot: delay merging a chunk until writes to it complete (FATE#311054). - patches.suse/dm-snapshot-make-bio-optional-in-__origin_write.patch: dm snapshot: make bio optional in __origin_write (FATE#311054). - patches.suse/dm-snapshot-merge-consecutive-chunks-together.patch: dm snapshot: merge consecutive chunks together (FATE#311054). - patches.suse/dm-snapshot-move-cow-ref-from-exception-store-to-sn.patch: dm snapshot: move cow ref from exception store to snap core (FATE#311054). - patches.suse/dm-snapshot-permit-only-one-merge-at-once.patch: dm snapshot: permit only one merge at once (FATE#311054). - patches.suse/dm-snapshot-persistent-annotate-work_queue-as-on-st.patch: dm snapshot: persistent annotate work_queue as on stack (FATE#311054). - patches.suse/dm-snapshot-queue-writes-to-chunks-being-merged.patch: dm snapshot: queue writes to chunks being merged (FATE#311054). - patches.suse/dm-snapshot-rename-dm_snap_exception-to-dm_exceptio.patch: dm snapshot: rename dm_snap_exception to dm_exception (FATE#311054). - patches.suse/dm-snapshot-rename-exception-functions.patch: dm snapshot: rename exception functions (FATE#311054). - patches.suse/dm-snapshot-rename-exception_table-to-dm_exception_.patch: dm snapshot: rename exception_table to dm_exception_table (FATE#311054). - patches.suse/dm-snapshot-report-merge-failure-in-status.patch: dm snapshot: report merge failure in status (FATE#311054). - patches.suse/dm-snapshot-rework-writing-to-origin.patch: dm snapshot: rework writing to origin (FATE#311054). - patches.suse/dm-snapshot-support-barriers-in-snapshot-merge-targ.patch: dm snapshot: support barriers in snapshot merge target (FATE#311054). - patches.suse/dm-snapshot-track-suspended-state-in-target.patch: dm snapshot: track suspended state in target (FATE#311054). - patches.suse/dm-snapshot-trigger-exceptions-in-remaining-snapsho.patch: dm snapshot: trigger exceptions in remaining snapshots during merge (FATE#311054). - patches.suse/dm-snapshot-use-merge-origin-if-snapshot-invalid.patch: dm snapshot: use merge origin if snapshot invalid (FATE#311054). - patches.suse/dm-swap-target-postsuspend-call-and-setting-suspend.patch: dm: swap target postsuspend call and setting suspended flag (FATE#311054). - patches.suse/dm-sysfs-add-empty-release-function-to-avoid-debug.patch: dm: sysfs add empty release function to avoid debug warning (FATE#311054). - patches.suse/dm-sysfs-revert-add-empty-release-function-to-avoid.patch: dm: sysfs revert add empty release function to avoid debug warning (FATE#311054). - patches.suse/dm-trace-request-based-remapping.patch: dm: trace request based remapping (FATE#311054). - patches.suse/dm-use-md-pending-for-in-flight-IO-counting.patch: dm: use md pending for in flight IO counting (FATE#311054). - patches.suse/drivers-block-DAC960.c-use-DAC960_V2_Controller.patch: drivers/block/DAC960.c: use DAC960_V2_Controller (FATE#311054). - patches.suse/drivers-block-mg_disk.c-use-resource_size.patch: drivers/block/mg_disk.c: use resource_size() (FATE#311054). - patches.suse/drivers-scsi-sym53c8xx_2-sym_glue.c-rename-skip_spa.patch: drivers/scsi/sym53c8xx_2/sym_glue.c: rename skip_spaces() to sym_skip_spaces() (FATE#311054). - patches.suse/fix-func-names-in-kernel-doc.patch: [SCSI] fix func names in kernel-doc (FATE#311054). - patches.suse/fix-propogation-of-integrity-errors.patch: [SCSI] fix propogation of integrity errors (FATE#311054). - patches.suse/floppy-Add-an-extra-bound-check-on-ioctl-arguments.patch: floppy: Add an extra bound check on ioctl arguments (FATE#311054). - patches.suse/fs-bio.c-fix-shadows-sparse-warning.patch: fs/bio.c: fix shadows sparse warning (FATE#311054). - patches.suse/ibmvfc-Add-FC-Passthru-support.patch: [SCSI] ibmvfc: Add FC Passthru support (FATE#311054). - patches.suse/ibmvfc-Driver-version-1.0.7.patch: [SCSI] ibmvfc: Driver version 1.0.7 (FATE#311054). - patches.suse/ibmvfc-Fix-adapter-cancel-flags-for-terminat.patch: [SCSI] ibmvfc: Fix adapter cancel flags for terminate_rport_io (FATE#311054). - patches.suse/ibmvfc-Fix-locking-in-ibmvfc_remove.patch: [SCSI] ibmvfc: Fix locking in ibmvfc_remove (FATE#311054). - patches.suse/ibmvfc-Fixup-TMF-response-handling.patch: [SCSI] ibmvfc: Fixup TMF response handling (FATE#311054). - patches.suse/ibmvfc-Remove-unnecessary-parameter-to-ibmvf.patch: [SCSI] ibmvfc: Remove unnecessary parameter to ibmvfc_init_host (FATE#311054). - patches.suse/io-controller-quick-fix-for-blk-cgroup-and-modular.patch: io controller: quick fix for blk-cgroup and modular CFQ (FATE#311054). - patches.suse/iscsi_tcp-regression-remove-bogus-warn-on-in.patch: [SCSI] iscsi_tcp regression: remove bogus warn on in write path (FATE#311054). - patches.suse/libata-Clarify-ata_set_lba_range_entries-function.patch: libata: Clarify ata_set_lba_range_entries function (FATE#311054). - patches.suse/libata-Report-zeroed-read-after-TRIM-and-max-discar.patch: libata: Report zeroed read after TRIM and max discard size (FATE#311054). - patches.suse/libata-add-comment-documenting-PIO-latency-issues-o.patch: libata: add comment documenting PIO latency issues on UP (FATE#311054). - patches.suse/libata-add-private-driver-field-to-struct-ata_devic.patch: libata: add private driver field to struct ata_device (FATE#311054). - patches.suse/libata-add-translation-for-SCSI-WRITE-SAME-aka-TRI.patch: libata: add translation for SCSI WRITE SAME (aka TRIM support) (FATE#311054). - patches.suse/libata-fix-ata_id_logical_per_physical_sectors.patch: libata: fix ata_id_logical_per_physical_sectors (FATE#311054). - patches.suse/libata-fix-reporting-of-drained-bytes-when-clearing.patch: libata: fix reporting of drained bytes when clearing DRQ (FATE#311054). - patches.suse/libata-remove-experimental-tag-on-PATA-drivers.patch: libata: remove experimental tag on PATA drivers (FATE#311054). - patches.suse/libata-retry-failed-FLUSH-if-device-didn-t-fail-it.patch: libata: retry failed FLUSH if device didn't fail it (FATE#311054). - patches.suse/libata-sff-Use-ops-bmdma_stop-instead-of-ata_bmdma.patch: libata/sff: Use ops->bmdma_stop instead of ata_bmdma_stop() (FATE#311054). - patches.suse/libata-use-the-WRITE_SAME_16-define.patch: libata: use the WRITE_SAME_16 define (FATE#311054). - patches.suse/libiscsi-hook-into-ramp-up-down-handling.patch: [SCSI] libiscsi: hook into ramp up/down handling (FATE#311054). - patches.suse/libosd-Bugfix-of-error-handling-in-attribute.patch: [SCSI] libosd: Bugfix of error handling in attributes-list decoding (FATE#311054). - patches.suse/libosd-Error-handling-revamped.patch: [SCSI] libosd: Error handling revamped (FATE#311054). - patches.suse/libosd-Fix-blk_put_request-locking-again.patch: [SCSI] libosd: Fix blk_put_request locking again (FATE#311054). - patches.suse/libosd-bug-in-osd_req_decode_sense_full.patch: [SCSI] libosd: bug in osd_req_decode_sense_full() (FATE#311054). - patches.suse/libosd-osd_dev_info-Unique-Identification-o.patch: [SCSI] libosd: osd_dev_info: Unique Identification of an OSD device (FATE#311054). - patches.suse/libosd-osd_dev_is_ver1-Minor-API-cleanup.patch: [SCSI] libosd: osd_dev_is_ver1 - Minor API cleanup (FATE#311054). - patches.suse/libosd-osd_sense-OSD_CFO_PERMISSIONS.patch: [SCSI] libosd: osd_sense: OSD_CFO_PERMISSIONS (FATE#311054). - patches.suse/md-make-recovery-started-by-do_md_run-visible-via.patch: md: make recovery started by do_md_run() visible via sync_action (FATE#311054). - patches.suse/md-raid5-remove-some-sparse-warnings.patch: md/raid5: remove some sparse warnings (FATE#311054). - patches.suse/md-remove-sparse-warning-symbol-XXX-was-not-declare.patch: md: remove sparse warning:symbol XXX was not declared (FATE#311054). - patches.suse/md-remove-unnecessary-code-from-do_md_run.patch: md: remove unnecessary code from do_md_run (FATE#311054). - patches.suse/no-partition-scan: Refresh. - patches.suse/osduld-Ref-counting-bug-fix.patch: [SCSI] osduld: Ref-counting bug fix (FATE#311054). - patches.suse/osduld-Use-device-release-instead-of-intern.patch: [SCSI] osduld: Use device->release instead of internal kref (FATE#311054). - patches.suse/pata-it821x-use-PCI_DEVICE_ID_RDC_D1010-define.patch: pata-it821x: use PCI_DEVICE_ID_RDC_D1010 define (FATE#311054). - patches.suse/pata_bf54x-handle-portmuxing-of-pins-through-GPIO-P.patch: pata_bf54x: handle portmuxing of pins through GPIO PORTs (FATE#311054). - patches.suse/pata_cmd64x-implement-serialization-as-per-notes.patch: pata_cmd64x: implement serialization as per notes (FATE#311054). - patches.suse/pata_cs5520-remove-dead-VDMA-support.patch: pata_cs5520: remove dead VDMA support (FATE#311054). - patches.suse/pata_cs5536-use-32-bit-BM-DMA-template-instead-of-1.patch: pata_cs5536: use 32-bit BM DMA template instead of 16-bit (FATE#311054). - patches.suse/pata_efar-fix-wrong-MWDMA-timings-being-programmed.patch: pata_efar: fix wrong MWDMA timings being programmed (FATE#311054). - patches.suse/pata_efar-fix-wrong-PIO-timings-being-programmed.patch: pata_efar: fix wrong PIO timings being programmed (FATE#311054). - patches.suse/pata_hpt-37x-3x2n-add-debounce-delay-to-cable-dete.patch: pata_hpt{37x,3x2n}: add debounce delay to cable detection methods (FATE#311054). - patches.suse/pata_hpt366-fix-timing-register-documentation.patch: pata_hpt366: fix timing register documentation (FATE#311054). - patches.suse/pata_hpt37x-add-proper-cable-detection-methods.patch: pata_hpt37x: add proper cable detection methods (FATE#311054). - patches.suse/pata_hpt37x-unify-pre_reset-methods.patch: pata_hpt37x: unify ->pre_reset methods (FATE#311054). - patches.suse/pata_hpt3x2n-fix-cable-detection.patch: pata_hpt3x2n: fix cable detection (FATE#311054). - patches.suse/pata_hpt3x2n-fix-overclocked-MWDMA0-timing.patch: pata_hpt3x2n: fix overclocked MWDMA0 timing (FATE#311054). - patches.suse/pata_hpt3x3-Power-Management-fix.patch: pata_hpt3x3: Power Management fix (FATE#311054). - patches.suse/pata_it8213-MWDMA0-is-unsupported.patch: pata_it8213: MWDMA0 is unsupported (FATE#311054). - patches.suse/pata_it8213-fix-PIO2-underclocking.patch: pata_it8213: fix PIO2 underclocking (FATE#311054). - patches.suse/pata_it8213-fix-UDMA-handling.patch: pata_it8213: fix UDMA handling (FATE#311054). - patches.suse/pata_it8213-fix-it8213_pre_reset-documentation.patch: pata_it8213: fix it8213_pre_reset() documentation (FATE#311054). - patches.suse/pata_it8213-fix-wrong-MWDMA-timings-being-programme.patch: pata_it8213: fix wrong MWDMA timings being programmed (FATE#311054). - patches.suse/pata_it8213-fix-wrong-PIO-timings-being-programmed.patch: pata_it8213: fix wrong PIO timings being programmed (FATE#311054). - patches.suse/pata_legacy-add-pointers-to-QDI65x0-documentation.patch: pata_legacy: add pointers to QDI65x0 documentation (FATE#311054). - patches.suse/pata_legacy-fix-QDI6580DP-support.patch: pata_legacy: fix QDI6580DP support (FATE#311054). - patches.suse/pata_legacy-fix-access-to-control-register-for-QDI6.patch: pata_legacy: fix access to control register for QDI6580 (FATE#311054). - patches.suse/pata_marvell-fix-marvell_pre_reset-documentation.patch: pata_marvell: fix marvell_pre_reset() documentation (FATE#311054). - patches.suse/pata_ns87415-Power-Management-fix.patch: pata_ns87415: Power Management fix (FATE#311054). - patches.suse/pata_octeon_cf-use-resource_size-to-fix-resource.patch: pata_octeon_cf: use resource_size(), to fix resource sizing bug (FATE#311054). - patches.suse/pata_radisys-fix-UDMA-handling.patch: pata_radisys: fix UDMA handling (FATE#311054). - patches.suse/pata_rz1000-Power-Management-fix.patch: pata_rz1000: Power Management fix (FATE#311054). - patches.suse/pata_sis-Implement-MWDMA-for-the-UDMA-133-capable-c.patch: pata_sis: Implement MWDMA for the UDMA 133 capable chips (FATE#311054). - patches.suse/pata_sis-Power-Management-fix.patch: pata_sis: Power Management fix (FATE#311054). - patches.suse/pata_via-Blacklist-some-combinations-of-Transcend-F.patch: pata_via: Blacklist some combinations of Transcend Flash and via (FATE#311054). - patches.suse/pata_via-clear-UDMA-transfer-mode-bit-for-PIO-and-M.patch: pata_via: clear UDMA transfer mode bit for PIO and MWDMA (FATE#311054). - patches.suse/pata_via-fix-double-put-on-isa-bridge.patch: pata_via: fix double put on isa bridge (FATE#311054). - patches.suse/qlogicpti-add-missing-parentheses.patch: [SCSI] qlogicpti: add missing parentheses (FATE#311054). - patches.suse/sata_fsl-Add-asynchronous-notification-support.patch: sata_fsl: Add asynchronous notification support (FATE#311054). - patches.suse/sata_mv-Clean-up-hard-coded-array-size-calculation.patch: sata_mv: Clean up hard coded array size calculation (FATE#311054). - patches.suse/sata_mv-add-power-management-support-for-the-PCI-co.patch: sata_mv: add power management support for the PCI controllers (FATE#311054). - patches.suse/sata_mv-add-power-management-support-for-the-platfo.patch: sata_mv: add power management support for the platform driver (FATE#311054). - patches.suse/sata_mv-increase-PIO-IORDY-timeout.patch: sata_mv: increase PIO IORDY timeout (FATE#311054). - patches.suse/sata_mv-move-the-PCI-bar-description-initialization.patch: sata_mv: move the PCI bar description initialization code (FATE#311054). - patches.suse/sata_mv-remove-pointless-NULL-test.patch: sata_mv: remove pointless NULL test (FATE#311054). - patches.suse/sata_mv-store-the-board_idx-into-the-host-private-d.patch: sata_mv: store the board_idx into the host private data (FATE#311054). - patches.suse/sata_mv-support-clkdev-framework.patch: sata_mv: support clkdev framework (FATE#311054). - patches.suse/sata_promise-don-t-classify-overruns-as-HSM-errors.patch: sata_promise: don't classify overruns as HSM errors (FATE#311054). - patches.suse/sata_sil24-MSI-support-disabled-by-default.patch: sata_sil24: MSI support, disabled by default (FATE#311054). - patches.suse/scsi-Add-missing-command-definitions.patch: [SCSI] scsi: Add missing command definitions (FATE#311054). - patches.suse/scsi_debug-Thin-provisioning-support.patch: [SCSI] scsi_debug: Thin provisioning support (FATE#311054). - patches.suse/scsi_debug-fix-Thin-provisioning-support.patch: [SCSI] scsi_debug: fix Thin provisioning support (FATE#311054). - patches.suse/scsi_lib-fix-potential-NULL-dereference.patch: [SCSI] scsi_lib: fix potential NULL dereference (FATE#311054). - patches.suse/sd-WRITE-SAME-16-UNMAP-support.patch: [SCSI] sd: WRITE SAME(16) / UNMAP support (FATE#311054). - patches.suse/st-fix-test-of-value-range-in-st_set_options.patch: [SCSI] st: fix test of value range in st_set_options() (FATE#311054). - patches.suse/stex-fix-scan-of-nonexistent-lun.patch: [SCSI] stex: fix scan of nonexistent lun (FATE#311054). - patches.suse/stex-update-version-to-4.6.0000.4.patch: stex: update version to 4.6.0000.4 (FATE#311054).- Backport new kfifo API from 2.6.33: - patches.suse/kfifo-add-DEFINE_KFIFO-and-friends-add-very-tiny-f.patch: kfifo: add DEFINE_KFIFO and friends, add very tiny functions (FATE#311054). - patches.suse/kfifo-add-kfifo_skip-kfifo_from_user-and-kfifo_to_.patch: kfifo: add kfifo_skip, kfifo_from_user and kfifo_to_user (FATE#311054). - patches.suse/kfifo-add-record-handling-functions.patch: kfifo: add record handling functions (FATE#311054). - patches.suse/kfifo-cleanup-namespace.patch: kfifo: cleanup namespace (FATE#311054). - patches.suse/kfifo-fix-warn_unused_result.patch: kfifo: fix warn_unused_result (FATE#311054). - patches.suse/kfifo-move-out-spinlock.patch: kfifo: move out spinlock (FATE#311054). - patches.suse/kfifo-move-struct-kfifo-in-place.patch: kfifo: move struct kfifo in place (FATE#311054). - patches.suse/kfifo-rename-kfifo_put.-into-kfifo_in.-and-kfif.patch: kfifo: rename kfifo_put... into kfifo_in... and kfifo_get... into kfifo_out.. (FATE#311054). - patches.suse/workqueue-Add-debugobjects-support.patch: workqueue: Add debugobjects support (FATE#311054).- patches.drivers/alsa-sp1-hda-117-add-Intel-Panther-Point-HDMI-codec-id: ALSA: hda - add Intel Panther Point HDMI codec id (FATE#311774).- patches.drivers/alsa-sp1-hda-116-Reorganize-controller-quriks-with-bit-flags: ALSA: hda - Reorganize controller quriks with bit flags (bnc#691269).- Initial commit of scheduler fates 312232, 311946, 312249, 311681, 311679, 311860, and 311682 (CFS Hard Limits). - Two combo patches added to series.conf, one bringing the scheduler core forward to accomodate everything _except_ CFS Hard Limits, and one for hard limits, which is still in flux. 311860 is incomplete at this time - waiting for a commit list from IBM. 311860 patches that are present are currently disabled. - Individual patches stored in patches.sched for the moment, as I know I will need to re-generate these combo patches, and who knows, something could pop up requiring disection. - Update config files. - patches.fixes/sched-Implement-group-scheduler-statistics-in-one-struct: Refresh. - patches.fixes/sched-Limit-the-number-of-scheduler-debug-messages.patch: Refresh. - patches.fixes/sched-cfs-hard-limits-V6: CFS Hard Limits V6 (FATE 311682). - patches.fixes/sched-make-tunable-scaling-configurable: Refresh. - patches.fixes/sched-sle11-sp2-fates-scheduler-update: SLE11-SP2 FATE scheduler update (FATE 312232, 311946, 312249, 311681, 311679, 311860, bnc#588972). - patches.fixes/sched-sysctl-for-normalized-tunables: Refresh. - patches.sched/01-15-sched-fixlet-dont-update-shares-twice-on-on_rq-parent: sched: (fixlet) dont update shares twice on on_rq. - patches.sched/02-15-sched-hierarchical-task-accounting-for-SCHED_OTHER: sched: hierarchical task accounting for SCHED_OTHER. - patches.sched/03-15-sched-introduce-primitives-to-account-for-CFS-bandwidth-tracking: sched: introduce primitives to account for CFS. - patches.sched/03-15-sched-introduce-primitives-to-account-for-CFS-bandwidth-tracking-fix: sched: introduce primitives to account for CFS bandwidth tracking UP buildfix. - patches.sched/04-15-sched-validate-CFS-quota-hierarchies: sched: validate CFS quota hierarchies. - patches.sched/04-15-sched-validate-CFS-quota-hierarchies-fix: sched: validate CFS quota hierarchies - bugfix. - patches.sched/05-15-sched-add-a-timer-to-handle-CFS-bandwidth-refresh: sched: add a timer to handle CFS bandwidth refresh. - patches.sched/06-15-sched-accumulate-per-cfs_rq-cpu-usage-and-charge-against-bandwidth: sched: accumulate per-cfs_rq cpu usage and charge. - patches.sched/07-15-sched-expire-invalid-runtime: sched: expire invalid runtime. - patches.sched/08-15-sched-throttle-cfs_rq-entities-which-exceed-their-local-runtime: sched: throttle cfs_rq entities which exceed their local runtime. - patches.sched/09-15-sched-unthrottle-cfs_rqs-who-ran-out-of-quota-at-period-refresh: sched: unthrottle cfs_rq(s) who ran out of quota at period refresh. - patches.sched/10-15-sched-allow-for-positional-tg_tree-walks: sched: allow for positional tg_tree walks. - patches.sched/11-15-sched-prevent-interactions-between-throttled-entities-and-load-balance: sched: prevent interactions between throttled entities and load-balance. - patches.sched/12-15-sched-migrate-throttled-tasks-on-HOTPLUG: sched: migrate throttled tasks on HOTPLUG. - patches.sched/13-15-sched-add-exports-tracking-cfs-bandwidth-control-statistics: sched: add exports tracking cfs bandwidth control statistics. - patches.sched/14-15-sched-return-unused-runtime-on-voluntary-sleep: sched: return unused runtime on voluntary sleep. - patches.sched/15-15-sched-add-documentation-for-bandwidth-control: sched: add documentation for bandwidth control. - patches.sched/16-15-sched-fix-hotplug-lockup: Re: Test for CFS Bandwidth Control V6 ( fix hotplug lockup). - patches.sched/cpu_stop-add-dummy-implementation-for-UP: cpu_stop: add dummy implementation for UP. - patches.sched/cpu_stop-implement-stop_cpu-and-stop_cpus: cpu_stop: implement stop_cpu(). - patches.sched/cpumask-Partition_sched_domains-takes-array-of-cpumask_var_t: cpumask: Partition_sched_domains takes array of cpumask_var_t. - patches.sched/cpumask-Simplify-sched_rt-c: cpumask: Simplify sched_rt.c. - patches.sched/powerpc-Enable-asymmetric-SMT-scheduling-on-POWER7: powerpc: Enable asymmetric SMT scheduling on POWER7. - patches.sched/powerpc-Exclude-arch_sd_sibiling_asym_packing-on-UP: powerpc: Exclude arch_sd_sibiling_asym_packing() on UP. - patches.sched/rcu-need-barrier-in-UP-synchronize_sched_expedited: rcu: need barrier() in UP synchronize_sched_expedited(). - patches.sched/sched-Add-asymmetric-group-packing-option-for-sibling-domain: sched: Add asymmetric group packing option for sibling domain. - patches.sched/sched-Add-book-scheduling-domain: sched: Add book scheduling domain. - patches.sched/sched-Add-enqueue-dequeue-flags: sched: Add enqueue/dequeue flags. - patches.sched/sched-Add-sysctl_sched_shares_window: sched: Add sysctl_sched_shares_window. - patches.sched/sched-Allow-SCHED_BATCH-to-preempt-SCHED_IDLE-tasks: sched: Allow SCHED_BATCH to preempt SCHED_IDLE tasks. - patches.sched/sched-Allow-update_cfs_load-to-update-global-load: sched: Allow update_cfs_load() to update global load. - patches.sched/sched-Allow-users-with-sufficient-RLIMIT_NICE-to-change-from-SCHED_IDLE-policy: sched: Allow users with sufficient RLIMIT_NICE to change from SCHED_IDLE policy. - patches.sched/sched-Assume-balance-is-valid: sched: Assume *balance is valid. - patches.sched/sched-Avoid-allocations-in-sched_domain_debug: sched: Avoid allocations in sched_domain_debug(). - patches.sched/sched-Avoid-expensive-initial-update_cfs_load: sched: Avoid expensive initial update_cfs_load(). - patches.sched/sched-Avoid-expensive-initial-update_cfs_load-on-UP-too: sched: Avoid expensive initial update_cfs_load(), on UP too. - patches.sched/sched-Avoid-going-ahead-if-cpus_allowed-is-not-changed: sched: Avoid going ahead if ->cpus_allowed is not changed. - patches.sched/sched-Avoid-side-effect-of-tickless-idle-on-update_cpu_load: sched: Avoid side-effect of tickless idle on update_cpu_load. - patches.sched/sched-Avoid-using-sd-level: sched: Avoid using sd->level. - patches.sched/sched-Change-NODE-sched_domain-group-creation: sched: Change NODE sched_domain group creation. - patches.sched/sched-Change-nohz-idle-load-balancing-logic-to-push-model: sched: Change nohz idle load balancing logic to push model. - patches.sched/sched-Change-usage-of-rt_rq-rt_se-to-rt_rq-tg-rt_se-cpu: sched: Change usage of rt_rq->rt_se to rt_rq->tg->rt_se. - patches.sched/sched-Clean-up-rebalance_domains-load-balance-interval-calculation: sched: Clean up rebalance_domains() load-balance interval calculation. - patches.sched/sched-Clean-up-remnants-of-sd_idle: sched: Clean up remnants of sd_idle. - patches.sched/sched-Clean-up-some-ALLNODES-code: sched: Clean up some ALLNODES code. - patches.sched/sched-Clean-up-some-f_b_g-comments: sched: Clean up some f_b_g() comments. - patches.sched/sched-Cleanup-set_load_weight: sched: Cleanup set_load_weight(). - patches.sched/sched-Create-persistent-sched_domains_tmpmask: sched: Create persistent sched_domains_tmpmask. - patches.sched/sched-Create-proper-cpu_DOM_mask-functions: sched: Create proper cpu_$DOM_mask() functions. - patches.sched/sched-Create-special-class-for-stop-and-migrate-work: sched: Create special class for stop/migrate work. - patches.sched/sched-Cure-load-average-vs-NO_HZ-woes: sched: Cure load average vs NO_HZ woes. - patches.sched/sched-Cure-more-NO_HZ-load-average-woes: sched: Cure more NO_HZ load average woes. - patches.sched/sched-Dont-expose-local-functions: sched: Don't expose local functions. - patches.sched/sched-Drop-all-load-weight-manipulation-for-RT-tasks: sched: Drop all load weight manipulation for RT tasks. - patches.sched/sched-Dynamic-sched_domain-level: sched: Dynamic sched_domain::level. - patches.sched/sched-Dynamically-allocate-sched_domain-sched_group-data-structures: sched: Dynamically allocate sched_domain/sched_group data-structures. - patches.sched/sched-Fix-PROVE_RCU-vs-cpu_cgroup: sched: Fix PROVE_RCU vs cpu_cgroup. - patches.sched/sched-Fix-UP-build-breakage: sched: Fix UP build breakage. - patches.sched/sched-Fix-and-optimise-calculation-of-the-weight-inverse: sched: Fix and optimise calculation of the weight-inverse. - patches.sched/sched-Fix-capacity-calculations-for-SMT4: sched: Fix capacity calculations for SMT4. - patches.sched/sched-Fix-comments-to-make-them-DocBook-happy: sched: Fix comments to make them DocBook happy. - patches.sched/sched-Fix-erroneous-all_pinned-logic: sched: Fix erroneous all_pinned logic. - patches.sched/sched-Fix-fix_small_capacity: sched: Fix fix_small_capacity. - patches.sched/sched-Fix-interactivity-bug-by-charging-unaccounted-run-time-on-entity-re-weight: sched: Fix interactivity bug by charging unaccounted run-time on entity re-weight. - patches.sched/sched-Fix-load-corruption-from-update_cfs_shares: sched: Fix load corruption from update_cfs_shares(). - patches.sched/sched-Fix-nohz-balance-kick: sched: Fix nohz balance kick. - patches.sched/sched-Fix-poor-interactivity-on-UP-systems-due-to-group-scheduler-nice-tune-bug: sched: Fix poor interactivity on UP systems due to group scheduler nice tune bug. - patches.sched/sched-Fix-rebalance-interval-calculation: sched: Fix rebalance interval calculation. - patches.sched/sched-Fix-remove-redundant-cfs_rq-checks: sched: Fix/remove redundant cfs_rq checks. - patches.sched/sched-Fix-rt_rq-runtime-leakage-bug: sched: Fix rt_rq runtime leakage bug. - patches.sched/sched-Fix-runnable-condition-for-stoptask: sched: Fix runnable condition for stoptask. - patches.sched/sched-Fix-sched-domain-avg_load-calculation: sched: Fix sched-domain avg_load calculation. - patches.sched/sched-Fix-sched-rt-group-scheduling-when-hierachy-is-enabled: sched: Fix sched rt group scheduling when hierachy is enabled. - patches.sched/sched-Fix-sched_domain-iterations-vs-RCU: sched: Fix sched_domain iterations vs. RCU. - patches.sched/sched-Fix-sign-under-flows-in-wake_affine: sched: Fix sign under-flows in wake_affine. - patches.sched/sched-Fix-spelling-of-sibling: sched: Fix spelling of sibling. - patches.sched/sched-Fix-strncmp-operation: sched: Fix strncmp operation. - patches.sched/sched-Fix-switch_from_fair: sched: Fix switch_from_fair(). - patches.sched/sched-Fix-the-group_imb-logic: sched: Fix the group_imb logic. - patches.sched/sched-Fix-the-irqtime-code-for-32bit: sched: Fix the irqtime code for 32bit. - patches.sched/sched-Fix-the-irqtime-code-to-deal-with-u64-wraps: sched: Fix the irqtime code to deal with u64 wraps. - patches.sched/sched-Fix-the-place-where-group-powers-are-updated: sched: Fix the place where group powers are updated. - patches.sched/sched-Fix-unregister_fair_sched_group: sched: Fix unregister_fair_sched_group(). - patches.sched/sched-Fix-update_cfs_load-synchronization: sched: Fix update_cfs_load() synchronization. - patches.sched/sched-Fix-update_curr_rt: sched: Fix update_curr_rt(). - patches.sched/sched-Implement-demand-based-update_cfs_load: sched: Implement demand based update_cfs_load(). - patches.sched/sched-Implement-on-demand-cfs_rq-list: sched: Implement on-demand (active) cfs_rq list. - patches.sched/sched-Increase-SCHED_LOAD_SCALE-resolution: sched: Increase SCHED_LOAD_SCALE resolution. - patches.sched/sched-Introduce-SCHED_POWER_SCALE-to-scale-cpu_power-calculation: sched: Introduce SCHED_POWER_SCALE to scale cpu_power calculations. - patches.sched/sched-Introduce-hierarchal-order-on-shares-update-list: sched: Introduce hierarchal order on shares update list. - patches.sched/sched-Leave-sched_setscheduler-earlier-if-possible-to-not-disturb-SCHED_FIFO-task: sched: Leave sched_setscheduler() earlier if possible, do not disturb SCHED_FIFO tasks. - patches.sched/sched-Limit-the-scope-of-clear_buddies: sched: Limit the scope of clear_buddies. - patches.sched/sched-Make-set_next-last_buddy-work-on-non-task-entities: sched: Make set_*_buddy() work on non-task entities. - patches.sched/sched-Make-sure-timers-have-migrated-before-killing-the-migration_thread: sched: Make sure timers have migrated before killing the migration_thread. - patches.sched/sched-Make-tg_shares_up-walk-on-demand: sched: Make tg_shares_up() walk on-demand. - patches.sched/sched-Merge-cpu_to_core_group-functions: sched: Merge cpu_to_core_group functions. - patches.sched/sched-Move-load-balance-code-into-sched_fair-c: sched: Move load balance code into sched_fair.c. - patches.sched/sched-Move-periodic-share-updates-to-entity_tick: sched: Move periodic share updates to entity_tick(). - patches.sched/sched-Move-sched-domain-storage-into-the-topology-list: sched: Move sched domain storage into the topology list. - patches.sched/sched-Next-buddy-hint-on-sleep-and-preempt-path: sched: Next buddy hint on sleep and preempt path. - patches.sched/sched-No-need-for-bootmem-special-cases: sched: No need for bootmem special cases. - patches.sched/sched-Reduce-some-allocation-pressure: sched: Reduce some allocation pressure. - patches.sched/sched-Reduce-update_group_power-calls: sched: Reduce update_group_power() calls. - patches.sched/sched-Remove-from-fwd-decls: sched: Remove from fwd decls. - patches.sched/sched-Remove-load_balance_newidle: sched: Remove load_balance_newidle(). - patches.sched/sched-Remove-member-rt_se-from-struct-rt_rq: sched: Remove member rt_se from struct rt_rq. - patches.sched/sched-Remove-nodemask-allocation: sched: Remove nodemask allocation. - patches.sched/sched-Remove-noop-in-alloc_rt_sched_group: sched: Remove noop in alloc_rt_sched_group(). - patches.sched/sched-Remove-obsolete-arch_-prefixes: sched: Remove obsolete arch_ prefixes. - patches.sched/sched-Remove-obsolete-comment-from-scheduler_tick: sched: Remove obsolete comment from scheduler_tick(). - patches.sched/sched-Remove-rq_iterator-from-move_one_task: sched: Remove rq_iterator from move_one_task. - patches.sched/sched-Remove-rq_iterator-usage-from-load_balance_fair: sched: Remove rq_iterator usage from load_balance_fair. - patches.sched/sched-Remove-some-dead-code: sched: Remove some dead code. - patches.sched/sched-Remove-the-sched_class-load_balance-methods: sched: Remove the sched_class load_balance methods. - patches.sched/sched-Remove-unused-parameters-from-sched_fork-and-wake_up_new_task: sched: Remove unused parameters from sched_fork() and wake_up_new_task(). - patches.sched/sched-Remove-unused-this_best_prio-arg-from-balance_tasks: sched: Remove unused 'this_best_prio arg' from balance_tasks(). - patches.sched/sched-Remove-unused-update_shares_locked: sched: Remove unused update_shares_locked(). - patches.sched/sched-Reverse-the-topology-list: sched: Reverse the topology list. - patches.sched/sched-Rewrite-tg_shares_up: sched: Rewrite tg_shares_up(). - patches.sched/sched-Shorten-the-construction-of-the-span-cpu-mask-of-sched-domain: sched: Shorten the construction of the span cpu mask of sched domain. - patches.sched/sched-Simplify-NODE-ALLNODES-domain-creation: sched: Simplify NODE/ALLNODES domain creation. - patches.sched/sched-Simplify-build_sched_groups: sched: Simplify build_sched_groups(). - patches.sched/sched-Simplify-cpu-hot-unplug-task-migration: sched: Simplify cpu-hot-unplug task migration. - patches.sched/sched-Simplify-cpu_power-initialization: sched: Simplify ->cpu_power initialization. - patches.sched/sched-Simplify-finding-the-lowest-sched_domain: sched: Simplify finding the lowest sched_domain. - patches.sched/sched-Simplify-sched_group-creation: sched: Simplify sched_group creation. - patches.sched/sched-Simplify-sched_groups_power-initialization: sched: Simplify sched_groups_power initialization. - patches.sched/sched-Simplify-the-free-path-some: sched: Simplify the free path some. - patches.sched/sched-Simplify-the-idle-scheduling-class: sched: Simplify the idle scheduling class. - patches.sched/sched-Simplify-update_cfs_shares-parameters: sched: Simplify update_cfs_shares parameters. - patches.sched/sched-Stuff-the-sched_domain-creation-in-a-data-structure: sched: Stuff the sched_domain creation in a data-structure. - patches.sched/sched-Unify-load_balance-and-load_balance_newidle: sched: Unify load_balance{,_newidle}(). - patches.sched/sched-Unify-the-sched_domain-build-functions: sched: Unify the sched_domain build functions. - patches.sched/sched-Update-effective_load-to-use-global-share-weights: sched: Update effective_load() to use global share weights. - patches.sched/sched-Update-rq-clock-for-nohz-balanced-cpus: sched: Update rq->clock for nohz balanced cpus. - patches.sched/sched-Update-shares-on-idle_balance: sched: Update shares on idle_balance. - patches.sched/sched-Update-tg-shares-after-cpu-shares-write: sched: Update tg->shares after cpu.shares write. - patches.sched/sched-Use-for_each_bit: sched: Use for_each_bit. - patches.sched/sched-Use-rq-clock_task-instead-of-rq-clock-for-correctly-maintaining-load-average: sched: Use rq->clock_task instead of rq->clock for correctly maintaining load averages. - patches.sched/sched-Wholesale-removal-of-sd_idle-logic: sched: Wholesale removal of sd_idle logic (bnc#588972). - patches.sched/sched-Wrap-the-cfs_rq-nr_spread_over-field-with-CONFIG_SCHED_DEBUG: sched: Wrap the 'cfs_rq->nr_spread_over' field with CONFIG_SCHED_DEBUG. - patches.sched/sched-cgroup-Fix-cgroup_subsys-exit-callback: cgroup: Fix cgroup_subsys::exit callback. - patches.sched/sched-cgroup-Use-exit-hook-to-avoid-use-after-free-crash: sched, cgroup: Use exit hook to avoid use-after-free crash. - patches.sched/sched-cgroups-if-you-list_empty-a-head-then-dont-list_del-it: cgroups: if you list_empty() a head then don't list_del() it. - patches.sched/sched-correctly-place-paranioa-memory-barriers-in-synchronize_sched_expedited: sched: correctly place paranioa memory barriers in synchronize_sched_expedited(). - patches.sched/sched-kill-paranoia-check-in-synchronize_sched_expedited: sched: kill paranoia check in synchronize_sched_expedited(). - patches.sched/sched-might_sleep-Make-file-parameter-const-char-pointer: sched: might_sleep(): Make file parameter const char *. - patches.sched/sched-no_hz-Remove-unused-rq-last_tick_seen-field: sched, no_hz: Remove unused rq->last_tick_seen field. - patches.sched/sched-replace-migration_thread-with-cpu_stop: sched: replace migration_thread with cpu_stop. - patches.sched/sched-workqueue-kill-RT-workqueue: workqueue: kill RT workqueue. - patches.sched/series: make scripts/log happy. - patches.sched/stop_machine-Move-local-variable-closer-to-the-usage-site-in-cpu_stop_cpu_callback: stop_machine: Move local variable closer to the usage site in cpu_stop_cpu_callback(). - patches.sched/stop_machine-fix-unused-variable-warning: kernel/stop_machine.c: fix unused variable warning. - patches.sched/stop_machine-reimplement-using-cpu_stop: stop_machine: reimplement using cpu_stop. - patches.sched/stop_machine-struct-cpu_stopper-remove-alignment-padding-on-64-bits: stop_machine: struct cpu_stopper, remove alignment padding on 64 bits. - patches.sched/topology-s390-Add-z11-cpu-topology-support: topology, s390: Add z11 cpu topology support. - patches.sched/topology-s390-expose-core-identifier: topology: expose core identifier. - patches.sched/topology-sysfs-Provide-book-id-and-siblings-attributes: topology/sysfs: Provide book id and siblings attributes. - patches.trace/utrace-core: Refresh.- patches.xen/1080-blkfront-xenbus-gather-format.patch: xen/blkfront: fix data size for xenbus_gather in connect(). - patches.xen/1081-blkback-resize-transaction-end.patch: xenbus: fix xenbus_transaction_start() hang caused by double xenbus_transaction_end(). - patches.xen/1082-hvmop-get-mem-type.patch: Sync Xen public headers (bnc#684297). - patches.xen/1083-kbdfront-absolute-coordinates.patch: xen-kbdfront - advertise either absolute or relative coordinates (bnc#670465). - Refresh other Xen patches.- patches.xen/xen3-patch-2.6.27: Fix broken patch (bad merge).- patches.fixes/PCI-Set-PCIE-maxpayload-for-card-during-hotplug-inse.patch: PCI: Set PCIE maxpayload for card during hotplug insertion (bnc#692343 fate#312136). The fate is just for reference, this is not a feature, this is a bugfix appropriate for SP1 too.- patches.fixes/nfs-mmap-sugbus-fix: NFS: Don't SIGBUS if nfs_vm_page_mkwrite races with a cache invalidation (bnc#690683).- Update to 2.6.32.41 - patches.drivers/netxen-0017-update-module-info.patch: Refresh. - patches.xen/xen3-patch-2.6.27: Refresh.- patches.kernel.org/patch-2.6.32.38-39: Update references (bnc#688432 CVE-2011-1593).- patches.arch/ppc-add-pgprot_writecombine: powerpc: Add pgprot_writecombine (FATE#311723, bnc#691633). - patches.arch/ppc-add-power7+-cputableent: powerpc: Add POWER7+ cputable entry (FATE#311677, bnc#691632). - patches.fixes/perf-IP-callchain-consistency: perf: Fix inconsistency between IP and callchain sampling (FATE#311866, bnc#687789). - patches.fixes/perf-enable-SDAR-in-continous-sample-mode: powerpc: perf_event: Enable SDAR in continous sample mode (FATE#311866, bnc#687789). - patches.fixes/perf-frequency-calculation-for-overflowing-counters: powerpc: perf: Fix frequency calculation for overflowing counters (FATE#311866, bnc#687789). - patches.fixes/perf-log-invalid-daddr-as-FF: powerpc: perf_event: Log invalid data addresses as all 1s (FATE#311866, bnc#687789). - patches.fixes/perf-power_pmu_disable: powerpc/perf_event: Fix for power_pmu_disable() (FATE#311866, bnc#687789).- patches.drivers/alsa-sp1-hda-113-Use-LPIB-for-ATI-AMD-chipsets-as-default: ALSA: hda - Use LPIB for ATI/AMD chipsets as default (bnc#691269,bnc#687760). - patches.drivers/alsa-sp1-hda-113-Use-position_fix-3-as-default-for-AMD: Delete.- patches.fixes/xfrm-periodic-garbage-collector.patch: xfrm: fix garbage collection (bnc#680845, bnc#691693).- patches.fixes/hpsa-fix-lost-command-issue: hpsa: do readl after writel in main i/o path to ensure commands don't get lost (bnc#683107).- supported.conf: blktap2 modules are supported.- patches.suse/aacraid-export-fixed-module-param: aacraid: Add module param to export disks as 'fixed' (bnc#667226).- patches.drivers/alsa-sp1-hda-115-Enable-snoop-bit-for-AMD-controllers: ALSA: hda - Enable snoop bit for AMD controllers (bnc#691269).- patches.fixes/radix-tree-fix-rcu-bug.patch: Radix-tree: fix RCU bug (bnc#670868).- patches.drivers/alsa-sp1-hda-114-Handle-dock-line-in-as-auto-detectable: ALSA: hda - Handle dock line-in as auto-detectable for IDT codecs (bnc#691829).- Update config files. - patches.drivers/hwmon-amd-fam15h-power.patch: hwmon: Add driver for AMD family 15h processor power information (FATE#309764). - supported.conf: Driver hwmon/fam15h_power is supported.- rpm/kernel-binary.spec.in: Add the commit hash to uname -v, cleanup.- patches.fixes/proc-fix-oops-on-invalid-proc-pid-maps-access.patch: proc: fix oops on invalid /proc//maps access (bnc#693382).- patches.arch/ppc-kmem-cache-for-DTL-buffers: Refresh. It applies cleanly now (kabi patch caused the difference).- Update config files. Add CONFIG_IPV6_OPTIMISTIC_DAD and CONFIG_IPV6_MROUTE to improve support for NFS over IPv6. (FATE#311666)- patches.fixes/xfs-pass-private-data-to-formatter-in-xfs_bulkstat: xfs: pass private_data to formatter in xfs_bulkstat (bnc#691536).- patches.arch/ppc-kmem-cache-for-DTL-buffers: powerpc/pseries: Use a kmem cache for DTL buffers (bnc#678728).- patches.fixes/memcg-allocate-memory-cgroup-structures-in-local-nod.patch: memcg: allocate memory cgroup structures in local nodes (bnc#692502, bnc#669889). - patches.fixes/mm-add-alloc_pages_exact_nid.patch: mm: add alloc_pages_exact_nid() (bnc#692502, bnc#669889).- patches.drivers/ata-Intel-IDE-R-support.patch: ata: Intel IDE-R support (fate#311817).- patches.drivers/i2c-i801-support-multiple-instances.patch: i2c-i801: Handle multiple instances instead of keeping global state (bnc#650545, bnc#663513, FATE#311947, FATE#311838). - patches.drivers/intel-patsburg-support-IDF-channels.patch: i2c-i801: Add PCI idents for Patsburg 'IDF' SMBus controllers (bnc#650545, bnc#663513, FATE#311947, FATE#311838). - patches.drivers/i2c-i801-no-devices-on-IDF-channels.patch: i2c-i801: Don't probe for slaves on IDF channels (bnc#650545, bnc#663513, FATE#311947, FATE#311838).- Bring md up to 2.6.39 level for FATE 311810 - patches.fixes/md-raid1-throttle: Throttle number of pending write requests in md/raid1 (bnc#663678). - patches.suse/md-001-adjust-resync_min-usefully-when-resync-aborts.patch: md: adjust resync_min usefully when resync aborts. - patches.suse/md-002-don-t-reset-curr_resync_completed-after-an-interr.patch: md: don't reset curr_resync_completed after an interrupted resync. - patches.suse/md-003-support-barrier-requests-on-all-personalities.patch: md: support barrier requests on all personalities. - patches.suse/md-004-raid5-don-t-complete-make_request-on-barrier-unti.patch: md/raid5: don't complete make_request on barrier until writes are scheduled. - patches.suse/md-005-add-honouring-of-suspend_-lo-hi-to-raid1.patch: md: add honouring of suspend_{lo,hi} to raid1. - patches.suse/md-006-raid1-add-takeover-support-for-raid5-raid1.patch: md/raid1: add takeover support for raid5->raid1. - patches.suse/md-007-bitmap-update-dirty-flag-when-bitmap-bits-are-exp.patch: md/bitmap: update dirty flag when bitmap bits are explicitly set. - patches.suse/md-008-raid10-print-more-useful-messages-on-device-failu.patch: md/raid10: print more useful messages on device failure. - patches.suse/md-009-raid-improve-MD-raid10-handling-of-correctable-read-.patch: raid: improve MD/raid10 handling of correctable read errors. - patches.suse/md-010-integrate-spares-into-array-at-earliest-opportuni.patch: md: integrate spares into array at earliest opportunity. - patches.suse/md-011-rcu_read_lock-walk-of-mddev-disks-in-md_do_sync.patch: md: rcu_read_lock() walk of mddev->disks in md_do_sync(). - patches.suse/md-012-add-recovery_start-per-device-sysfs-attribute.patch: md: add 'recovery_start' per-device sysfs attribute. - patches.suse/md-013-allow-a-resync-that-is-waiting-for-other-resync-t.patch: md: allow a resync that is waiting for other resync to complete, to be aborted. - patches.suse/md-014-fix-some-lockdep-issues-between-md-and-sysfs.patch: md: fix some lockdep issues between md and sysfs. - patches.suse/md-015-linear-avoid-possible-oops-and-array-stop.patch: md/linear: avoid possible oops and array stop. - patches.suse/md-016-remove-unneeded-sysfs-files-more-promptly.patch: md: remove unneeded sysfs files more promptly. - patches.suse/md-017-manage-redundancy-group-in-sysfs-when-changing-le.patch: md: manage redundancy group in sysfs when changing level. - patches.suse/md-018-don-t-use-mddev-raid_disks-in-raid0-or-raid10-whi.patch: md: don't use mddev->raid_disks in raid0 or raid10 while array is active. - patches.suse/md-019-Add-support-for-Raid0-Raid5-takeover.patch: md:Add support for Raid0->Raid5 takeover. - patches.suse/md-020-Add-support-for-Raid5-Raid0-and-Raid10-Raid0-take.patch: md: Add support for Raid5->Raid0 and Raid10->Raid0 takeover. - patches.suse/md-021-Add-support-for-Raid0-Raid10-takeover.patch: md: Add support for Raid0->Raid10 takeover. - patches.suse/md-022-Correctly-handle-device-removal-via-sysfs.patch: md: Correctly handle device removal via sysfs. - patches.suse/md-023-Relax-checks-on-max_disks-when-external-metadata-.patch: md: Relax checks on ->max_disks when external metadata handling is used. - patches.suse/md-024-notify-level-changes-through-sysfs.patch: md: notify level changes through sysfs. - patches.suse/md-025-add-support-for-raid5-to-raid4-conversion.patch: md: add support for raid5 to raid4 conversion. - patches.suse/md-026-raid1-fix-confusing-redirect-sector-message.patch: md/raid1: fix confusing 'redirect sector' message. - patches.suse/md-027-raid4-permit-raid0-takeover.patch: md/raid4: permit raid0 takeover. - patches.suse/md-028-notify-mdstat-waiters-of-level-change.patch: md: notify mdstat waiters of level change. - patches.suse/md-029-allow-integers-to-be-passed-to-md-level.patch: md: allow integers to be passed to md/level. - patches.suse/md-030-remove-EXPERIMENTAL-designation-from-RAID10.patch: md: remove EXPERIMENTAL designation from RAID10. - patches.suse/md-031-simplify-updating-of-event-count-to-sometimes-avo.patch: md: simplify updating of event count to sometimes avoid updating spares. - patches.suse/md-032-don-t-insist-on-valid-event-count-for-spare-devic.patch: md: don't insist on valid event count for spare devices. - patches.suse/md-033-raid10-Fix-null-pointer-dereference-in-fix_read_e.patch: md: raid10: Fix null pointer dereference in fix_read_error(). - patches.suse/md-034-fix-handling-of-array-level-takeover-that-re-arra.patch: md: fix handling of array level takeover that re-arranges devices. - patches.suse/md-035-fix-raid10-takeover-use-new_layout-for-setup_conf.patch: md: fix raid10 takeover: use new_layout for setup_conf. - patches.suse/md-036-clear-layout-after-raid0-takeover.patch: md: clear layout after ->raid0 takeover. - patches.suse/md-037-enable-raid4-raid0-takeover.patch: md: enable raid4->raid0 takeover. - patches.suse/md-038-raid5-avoid-oops-when-number-of-devices-is-reduce.patch: md/raid5: avoid oops when number of devices is reduced then increased. - patches.suse/md-039-Don-t-update-recovery_offset-when-reshaping-an-ar.patch: md: Don't update ->recovery_offset when reshaping an array to fewer devices. - patches.suse/md-040-raid5-More-careful-check-for-has-array-failed.patch: md/raid5: More careful check for "has array failed". - patches.suse/md-041-raid5-Allow-recovered-part-of-partially-recovered.patch: md/raid5: Allow recovered part of partially recovered devices to be in-sync. - patches.suse/md-042-raid5-add-a-missing-continue-in-a-loop.patch: md/raid5: add a missing 'continue' in a loop. - patches.suse/md-043-raid5-don-t-include-spare-drives-when-reshaping-t.patch: md/raid5: don't include 'spare' drives when reshaping to fewer devices. - patches.suse/md-044-be-more-careful-setting-MD_CHANGE_CLEAN.patch: md: be more careful setting MD_CHANGE_CLEAN. - patches.suse/md-045-fix-another-deadlock-with-removing-sysfs-attribut.patch: md: fix another deadlock with removing sysfs attributes. - patches.suse/md-046-Update-recovery_offset-even-when-external-metadata-i.patch: Update recovery_offset even when external metadata is used. - patches.suse/md-047-Notify-sysfs-when-RAID1-5-10-disk-is-In_sync.patch: md: Notify sysfs when RAID1/5/10 disk is In_sync. - patches.suse/md-048-provide-appropriate-return-value-for-spare_active.patch: md: provide appropriate return value for spare_active functions. - patches.suse/md-049-don-t-clear-MD_CHANGE_CLEAN-in-md_update_sb-for-e.patch: md: don't clear MD_CHANGE_CLEAN in md_update_sb() for external arrays. - patches.suse/md-050-resolve-confusion-of-MD_CHANGE_CLEAN.patch: md: resolve confusion of MD_CHANGE_CLEAN. - patches.suse/md-051-call-md_update_sb-even-for-external-metadata-arra.patch: md: call md_update_sb even for 'external' metadata arrays. - patches.suse/md-052-fix-v1.x-metadata-update-when-a-disk-is-missing.patch: md: fix v1.x metadata update when a disk is missing. - patches.suse/md-053-raid1-avoid-overflow-in-raid1-resync-when-bitmap-.patch: md/raid1: avoid overflow in raid1 resync when bitmap is in use. - patches.suse/md-054-raid1-minor-bio-initialisation-improvements.patch: md/raid1: minor bio initialisation improvements. - patches.suse/md-055-check-return-code-of-read_sb_page.patch: md: check return code of read_sb_page. - patches.suse/md-056-Fix-regression-with-raid1-arrays-without-persiste.patch: md: Fix regression with raid1 arrays without persistent metadata. - patches.suse/md-057-use-sector_t-in-bitmap_get_counter.patch: md: use sector_t in bitmap_get_counter. - patches.suse/md-058-Fix-possible-deadlock-with-multiple-mempool-alloc.patch: md: Fix possible deadlock with multiple mempool allocations. - patches.suse/md-059-use-bio_kmalloc-rather-than-bio_alloc-when-failur.patch: md: use bio_kmalloc rather than bio_alloc when failure is acceptable. - patches.suse/md-060-raid1-perform-mem-allocation-before-disabling-wri.patch: md/raid1: perform mem allocation before disabling writes during resync. - patches.suse/md-061-change-type-of-first-arg-to-sync_page_io.patch: md: change type of first arg to sync_page_io. - patches.suse/md-062-use-separate-bio-pool-for-each-md-device.patch: md: use separate bio pool for each md device. - patches.suse/md-063-protect-against-NULL-reference-when-waiting-to-st.patch: md: protect against NULL reference when waiting to start a raid10. - patches.suse/md-064-fix-regression-resulting-in-delays-in-clearing-bi.patch: md: fix regression resulting in delays in clearing bits in a bitmap. - patches.suse/md-065-Ensure-no-IO-request-to-get-md-device-before-it-i.patch: md: Ensure no IO request to get md device before it is properly initialised. - patches.suse/md-066-raid5-use-sysfs_notify_dirent_safe-to-avoid-NULL-.patch: md/raid5: use sysfs_notify_dirent_safe to avoid NULL pointer. - patches.suse/md-067-Be-more-careful-about-clearing-flags-bit-in-recov.patch: md: Be more careful about clearing flags bit in ->recovery. - patches.suse/md-068-Don-t-let-implementation-detail-of-curr_resync-le.patch: md: Don't let implementation detail of curr_resync leak out through sysfs. - patches.suse/md-069-allow-suspend_lo-and-suspend_hi-to-decrease-as-we.patch: md: allow suspend_lo and suspend_hi to decrease as well as increase. - patches.suse/md-070-fix-sync_completed-reporting-for-very-large-drive.patch: md: fix sync_completed reporting for very large drives (>2TB). - patches.suse/md-071-raid5-handle-manually-added-spares-in-start_resha.patch: md/raid5: handle manually-added spares in start_reshape. - patches.suse/md-072-range-check-slot-number-when-manually-adding-a-sp.patch: md: range check slot number when manually adding a spare. - patches.suse/md-073-Fix-removal-of-extra-drives-when-converting-RAID6.patch: md: Fix removal of extra drives when converting RAID6 to RAID5. - patches.suse/md-074-revert-change-to-raid_disks-on-failure.patch: md: revert change to raid_disks on failure. - patches.suse/md-075-simplify-some-if-conditionals-in-raid5_start_resh.patch: md: simplify some 'if' conditionals in raid5_start_reshape. - patches.suse/md-076-fix-the-test-for-finding-spares-in-raid5_start_re.patch: md: fix the test for finding spares in raid5_start_reshape. - patches.suse/md-077-don-t-abort-checking-spares-as-soon-as-one-cannot.patch: md: don't abort checking spares as soon as one cannot be added. - patches.suse/md-078-Remove-the-AllReserved-flag-for-component-devices.patch: md: Remove the AllReserved flag for component devices. - patches.suse/md-079-Add-raid1-raid0-takeover-support.patch: Add raid1->raid0 takeover support. - patches.suse/md-080-Don-t-use-remove_and_add_spares-to-remove-failed-.patch: md: Don't use remove_and_add_spares to remove failed devices from a read-only array. - patches.suse/md-081-don-t-clear-curr_resync_completed-at-end-of-resyn.patch: md: don't clear curr_resync_completed at end of resync. - patches.suse/md-082-Don-t-allow-slot_store-while-resync-recovery-is-h.patch: md: Don't allow slot_store while resync/recovery is happening. - patches.suse/md-083-FIX-md-process-hangs-at-wait_barrier-after-0-10-take.patch: FIX: md: process hangs at wait_barrier after 0->10 takeover. - patches.suse/md-084-Fix-raid1-raid0-takeover.patch: md: Fix raid1->raid0 takeover. - patches.suse/md-085-don-t-set_capacity-before-array-is-active.patch: md: don't set_capacity before array is active. - patches.suse/md-086-Fix-dev_sectors-on-takeover-from-raid0-to-raid4-5.patch: md: Fix dev_sectors on takeover from raid0 to raid4/5. - patches.suse/md-087-Cleanup-after-raid45-raid0-takeover.patch: md: Cleanup after raid45->raid0 takeover. - patches.suse/md-088-raid5-fix-build-error-sector_t-usage.patch: raid5: fix build error, sector_t usage. - patches.suse/md-089-Fix-race-when-creating-a-new-md-device.patch: md: Fix race when creating a new md device. - patches.suse/md-090-reject-a-re-add-request-that-cannot-be-honoured.patch: md: reject a re-add request that cannot be honoured. - patches.suse/md-091-bitmap-fix-saving-of-events_cleared-and-other-sta.patch: md/bitmap: fix saving of events_cleared and other state. - patches.suse/md-092-allow-resync_start-to-be-set-while-an-array-is-ac.patch: md: allow resync_start to be set while an array is active.- Update Xen patches to 2.6.32.40 and c/s 1079. - Update Xen config files. - patches.xen/xen-amd-ecs: x86: Use PCI method for enabling AMD extended config space before MSR method. - patches.xen/xen-blktap2-configurable-nr-devs: blktap2: replace hard-coded limit of tap devices with configurable one. - patches.xen/xen-blktap2-use-after-free: blktap: Fix reference to freed struct request. - patches.xen/xen-setup-gsi: pass trigger mode and polarity information to Xen for all interrupts. - patches.xen/xen-tmem-v1: update tmem interface to v1. - patches.xen/xen-watchdog: Xen: para-virtual watchdog driver (FATE#310308). - patches.xen/xen-x86_64-unmapped-initrd: eliminate scalability issues from initrd handling. - patches.xen/xen3-VMware-Balloon-driver-2.6.32.28.patch: VMware Balloon driver (bnc#669740, fate#311976). - patches.xen/xen3-auto-blktap2-pvops.diff: pv-ops blktap2. - patches.xen/xen3-fixup-blktap2-pvops: adjust xen build after addition of pv-ops' blktap2. - patches.xen/xen3-x86-Increase-NR_IRQS-and-nr_irqs.patch: x86: Increase NR_IRQS and nr_irqs (bnc#605686 fate#311591). - supported.conf: Add pci-iomul, evtchn, and xen_wdt. Mark netloop unsupported.- patches.kabi/struct-rt2x00_ops-guard.patch: Delete, unused.- patches.fixes/sunrpc-cache-completion.fix: Refresh. - patches.fixes/nfsd-09-fix-kabi: Delete.- patches.fixes/proc-deal-with-races-in-proc-syscall-stack-personality.patch: Refresh.- patches.suse/mm-devzero-optimisation.patch: Delete (no longer needed as we have zero page).- patches.fixes/proc-auxv-require-the-target-to-be-tracable-or-yourself.patch: auxv: require the target to be tracable (or yourself) (bnc#674982 CVE-2011-1020). - patches.fixes/proc-close-race-in-proc-environ.patch: close race in /proc/*/environ (bnc#674982 CVE-2011-1020). - patches.fixes/proc-deal-with-races-in-proc-syscall-stack-personality.patch: deal with races in /proc/*/{syscall,stack,personality} (bnc#674982 CVE-2011-1020). - patches.fixes/proc-pagemap-close-races-with-suid-execve.patch: pagemap: close races with suid execve (bnc#674982 CVE-2011-1020). - patches.fixes/proc-report-errors-in-proc-map-sanely.patch: report errors in /proc/*/*map* sanely (bnc#674982 CVE-2011-1020).- Update to 2.6.32.40 - obsoletes: - patches.drivers/mmc-fix-hangs-with-sd-at-pm - patches.drivers/netxen-0018-module-firmware-hints.patch - patches.fixes/af_unix-limit-recursion-level - patches.fixes/ldm-fix-oops-on-corrupted-partition-table.patch - patches.fixes/nfs-fix-hangs-over-tcp-due-to-packet-loss - patches.fixes/nfs4-acl-pages.fix - patches.fixes/niu-fix-kernel-buffer-overflow-for-ethtool_grxclsrlall - patches.fixes/osf-partition-table-fix.patch - patches.fixes/scsi-dh-emc-mode-select-10-size - patches.fixes/scsi-dh-emc-rw-mismatch - patches.fixes/tehuti-firmware-name - patches.fixes/virtio_net-Add-napi-schedule-to-napi_enable-call.patch - patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: Refresh. - patches.drivers/mpt2sas-04.100.01.02-update: Refresh. - patches.drivers/netxen-0014-support-for-new-firmware-file-format.patch: Refresh. - patches.drivers/netxen-0017-update-module-info.patch: Refresh. - patches.drivers/synaptics-hp-clickpad: Refresh. - patches.drivers/synaptics-hp-new-model.diff: Refresh. - patches.kabi/kabi-fix-up-struct-mmc_host: Refresh. - patches.kabi/struct-rt2x00_ops-guard.patch: KABI: struct rt2x00_ops guard.- Update config files.- Update config files - CONFIG_VMWARE_BALLOON enabled (fate#311976) - patches.drivers/VMware-Balloon-driver-2.6.32.28.patch: VMware Balloon driver (bnc#669740, fate#311976). - supported.conf: module supported externally- patches.arch/s390-29-01-qdio_input_error.patch: qdio: reset error states immediately (bnc#691408,LTC#71781). - patches.arch/s390-29-02-diag10-64bit.patch: kernel: diagnose 10 does not release memory above 2GB (bnc#691408,LTC#71847).- patches.suse/mm-vmswap-*: Backport VmSwap from 2.6.36 (fate#311083)- Update config files - enable CONFIG_CGROUP_MEM_RES_CTLR_SWAP in all kernel flavors(fate#310471)- patches.fixes/ocfs2-init-data_ac.patch: ocfs2: Initialize data_ac (might be used uninitialized).- supported.conf: Add snd-asihpi (FATE#310119)- patches.drivers/ixgbe-Disable-RSC-when-ITR-setting-is-too-high-to-al.patch: ixgbe: Disable RSC when ITR setting is too high to allow RSC (bnc#686325). - patches.drivers/ixgbe-add-needs-reset-to-ixgbe_set_flags.patch: ixgbe: add needs_reset to ixgbe_set_flags (bnc#686325). - patches.drivers/ixgbe-enable-extremely-low-latency.patch: ixgbe: enable extremely low latency (bnc#686325). - patches.drivers/ixgbe-fix-automatic-LRO-RSC-settings-for-low-latency.patch: ixgbe: fix automatic LRO/RSC settings for low latency (bnc#686325). - patches.drivers/ixgbe-fix-bug-when-EITR-0-causing-no-writebacks.patch: ixgbe: fix bug when EITR=0 causing no writebacks (bnc#686325).- patches.drivers/alsa-sp1-hda-103-Fixes-distorted-recording-on-US15W-chipset: ALSA: hda - Fixes distorted recording on US15W chipset (bnc#691269,bnc#687760). - patches.drivers/alsa-sp1-hda-104-Add-position_fix-3-module-option: ALSA: HDA: Add position_fix=3 module option, and refactor related code (bnc#691269,bnc#687760). - patches.drivers/alsa-sp1-hda-105-Correctly-apply-position_fix-quirks-for-ATI: ALSA: HDA: Correctly apply position_fix quirks for ATI and VIA controllers (bnc#691269,bnc#687760). - patches.drivers/alsa-sp1-hda-106-Enable-sync_write-workaround-for-AMD: ALSA: hda - Enable sync_write workaround for AMD generically (bnc#691269,bnc#687760). - patches.drivers/alsa-sp1-hda-107-Prevent-writing-ICH6_PCIREG_TCSEL-on-AMD: ALSA: hda: Prevent writing ICH6_PCIREG_TCSEL on AMD systems (bnc#691269,bnc#687760). - patches.drivers/alsa-sp1-hda-108-More-relax-for-pending-period-handling: ALSA: hda - More relax for pending period handling (bnc#691269,bnc#687760). - patches.drivers/alsa-sp1-hda-109-use-WALLCLK-register-for-early-irqs: [ALSA] snd-hda-intel: use WALLCLK register to check for early irqs (bnc#691269,bnc#687760). - patches.drivers/alsa-sp1-hda-110-Improve-azx_position_ok: [ALSA] snd-hda-intel: Improve azx_position_ok() (bnc#691269,bnc#687760). - patches.drivers/alsa-sp1-hda-111-fix-handling-of-non-completion-stream-irqs: ALSA: hda_intel: fix handling of non-completion stream interrupts (bnc#691269,bnc#687760). - patches.drivers/alsa-sp1-hda-112-fix-wallclk-variable-update-and-condition: ALSA: hda-intel - fix wallclk variable update and condition (bnc#691269,bnc#687760). - patches.drivers/alsa-sp1-hda-113-Use-position_fix-3-as-default-for-AMD: ALSA: hda - Use position_fix=3 as default for AMD chipsets (bnc#691269,bnc#687760).- rpm/kernel-binary.spec.in: Obsolete wacom-kmp (bnc#621203).- Remove leftover __GENKSYMS__ kABI guards - patches.fixes/fcoe-sync-with-upstream-patches: Refresh. - patches.fixes/ipsec-fix-bogus-bundle-flowi.patch: Refresh. - patches.fixes/libsas-dont-issue-commands-to-removed-devices: Refresh. - patches.fixes/libsas-strict-wideport-definition: Refresh. - patches.fixes/xfs-make-xfsbufd-less-aggressive.patch: Refresh. - patches.suse/SoN-31-fix-kernel-bug-with-multiple-swapfiles: Refresh. - patches.suse/libfc-fix-indefinite-rport-restart: Refresh.- patches.drivers/alsa-sp2-add-asihpi: Add snd-asihpi driver to SP2 (FATE#310119). - Update config files.- Update config files. - move the TRACE configs to proper places - set B43 config similar to other configs after kabi patches removal- patches.drivers/watchdog-softdog-soft_panic-param.patch: watchdog: softdog.c: enhancement to optionally invoke panic instead of reboot on timer expiry (fate#312208).- patches.fixes/mutex-Improve-the-scalability-of-optimistic-spinning.patch: mutex: Improve the scalability of optimistic spinning (fate#311833).- patches.arch/x86-Increase-NR_IRQS-and-nr_irqs.patch: x86: Increase NR_IRQS and nr_irqs (bnc#605686 fate#311591).- patches.drivers/PCI-enable-pci-bfsort-by-default-on-future-Dell-systems.patch: PCI: Enable pci=bfsort by default on future Dell systems (FATE#311159).- patches.drivers/PCI-export-SMBIOS-provided-firmware-instance-and-label-to-sysfs.patch: PCI: Export SMBIOS provided firmware instance and label to sysfs (FATE#311156).- patches.fixes/ldm-fix-oops-on-corrupted-partition-table.patch: fs/partitions/ldm.c: fix oops caused by corrupted partition table (CVE-2011-1017 bnc#674648).- Delete kabi reference files and patches.kabi/* - patches.arch/ppc-smt-idle-time-fix: Refresh. - patches.xen/xen3-auto-common.diff: Refresh. - patches.xen/xen3-patch-2.6.32.16-17: Refresh.- Enable CONFIG_BLKDEV_IO_TRACE and necessary config options (fate#311090)- patches.suse/stack-unwind: Fix breakage from 2.6.29 merge (bnc#588458, bnc#614349).- patches.xen/xen3-intel-patsburg-support.patch: Add Patsburg PCH support to SLES11 SP1 (bnc#650545, bnc#663513, FATE#311346, FATE#311838). - Refresh other Xen patches.- patches.fixes/scsi-dh-alua-attach-to-unavailable: SCSI ALUA handler fails to attach to devices reporting UNAVAILABLE AAS (bnc#682251).- README.BRANCH: This is SLE11-SP2.- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an awk regex. It's technically invalid.- patches.fixes/novfs-nwcapi.patch: Fix checking of login id (bnc#626119).- patches.drivers/alsa-usb-Don-t-expose-broken-dB-ranges: ALSA: usb-audio - Don't expose broken dB ranges (bnc#677563).- Deleted unused patches.suse/osync-error. The issue it resolved in earlier releases doesn't exist in this one.- patches.fixes/reiserfs-xattr-crash-fix: fix crash on mount if disk is not reiserfs (bnc#686921). Patch modified.- patches.fixes/sched-Implement-group-scheduler-statistics-in-one-struct: sched: Implement group scheduler statistics in one struct (bnc#689746). - patches.kabi/sched-sched_entity-kABI-guard.patch: sched: sched_entity kABI guard (bnc#689746).- patches.fixes/hid-noget-quirk-for-symboltec.patch: HID: add noget quirk for scanners from Symbol Technologies (bnc#689290).- patches.drivers/alsa-sp1-hda-102-Add-internal-mic-for-IDT-92HD88B: ALSA: HDA: Add internal mic for IDT 92HD88B (bnc#689596).- Update to 2.6.32.39 - obsoletes: - patches.fixes/media-video-sn9c102-world-wirtable-sysfs-files - patches.fixes/ubifs-restrict-world-writable-debugfs-files - patches.xen/xen3-patch-2.6.27: Refresh. - patches.xen/xen3-patch-2.6.32.38-39: Linux 2.6.32.39.- patches.drivers/sdhci-jmb38x-readonly-check: mmc: Fix read-only detection with JMicron 388 chip (bnc#686980).- patches.drivers/alsa-sp1-hda-101-Enable-sync_write-for-AMD-chipset-with-IDT: ALSA: hda - Enable sync_write for AMD chipset with IDT 92HD8x codecs (bnc#688326, bnc#687759).- patches.fixes/tcp-clear-hints-to-avoid-a-stale-one.patch: tcp: clear hints to avoid a stale one (nfs only affected?) (bnc#684927).- patches.suse/dm-mpath-leastpending-status-display-fix: dm-leastpending does not work with multipath-tools (bnc#653850).- patches.arch/ppc-monotonic-time: powerpc: Rework VDSO gettimeofday to prevent time going backwards (bnc#685226). - patches.arch/ppc-smt-idle-time-fix: powerpc: Account time using timebase rather than PURR (bnc#678728). - patches.kabi/ppc-smt-idle-time-kabi-fix: avoid ppc-smt-idle-time-fix kABI breakage (bnc#678728).- patches.fixes/ocfs2-dlm-use-negotiated-o2dlm-proto.patch: ocfs2/dlm: Use negotiated o2dlm protocol version.- patches.fixes/bonding-802.3ad-fix-agg_device_up.patch: bonding: 802.3ad - fix agg_device_up (bnc#682482).- kabi/severities: Added drivers/s390/block as the dasd_mod has changed due to patches from IBM.- patches.fixes/Ocfs2-Journaling-i_flags-and-i_orphaned_slot-when-ad.patch: Re-enable.Remove unused patches: - patches.fixes/ocfs2-allow-huge-volumes.patch: Delete. - patches.fixes/ocfs2-grab_cache_page-recursion-fix: Delete.- patches.arch/s390-28-01-cio-prevent-online-purge.patch: cio: prevent purging of CCW devices in the online state (bnc#684472,LTC#71139). - patches.arch/s390-28-02-dasd-fix-open-offline-race.patch: dasd: fix race between open and offline (bnc#684472,LTC#71377). - patches.arch/s390-28-03-dasd-remove-uid-from-devmap.patch: dasd: remove uid from devmap (bnc#684472,LTC#64028).- patches.fixes/scsi-ses-crash-on-lun0: Fixup typo.- patches.fixes/scsi-dh-rdac-fix-lun-table: scsi_dh_rdac: fix for lun_table update for rdac device handler (bnc#686404). - patches.fixes/scsi-ses-crash-on-lun0: Kernel oops during bootup in ses_intf_add() (bnc#670816).- Update to 2.6.32.38 - bugfix for problem with 2.6.32.37- patches.fixes/novfs-sticky-root: novfs: Set the sticky bit for the novfs mountpoint (bnc#686412).- Update to 2.6.32.37: - obsoletes: - patches.drivers/alsa-sp1-hda-101-Fix-SPDIF-out-regression-on-ALC889 - patches.drivers/gro-Reset-dev-pointer-on-reuse.patch - patches.drivers/gro-reset-skb_iif-on-reuse.patch - patches.drivers/sound-oss-opl3-validate-voice-and-channel-indexes - patches.drivers/sound-oss-remove-offset-from-load_patch-callbacks - patches.fixes/ax25-fix-information-leak-to-userland.patch - patches.fixes/char-tpm-fix-unitialized-usage-of-data-buffer - patches.fixes/drivers-misc-ep93xx_pwm-c-world-writable-sysfs-files - patches.fixes/drivers-rtc-rtc-ds1511-c-world-writable-sysfs-nvram-file - patches.fixes/econet-fix-crash-in-aun_incoming - patches.fixes/exec-make-argv-envp-memory-visible-to-oom-killer - patches.fixes/inet_diag-fix-bytecode-validation.patch - patches.fixes/irda-prevent-integer-underflow-in-irlmp_enumdevices - patches.fixes/irda-validate-peer-name-and-attribute-lengths - patches.fixes/mfd-ab3100-world-writable-debugfs-_priv-files - patches.fixes/packet-fix-information-leak-to-userland.patch - patches.fixes/prevent-rt_sigqueueinfo-from-spoofing-fix.patch - patches.fixes/rose-prevent-heap-corruption-with-bad-facilities.patch - patches.fixes/sctp-fix-to-calc-the-init-init-ack-chunk-length-correctly-is-set - patches.fixes/staging-hv-use-sync_bitops.patch - patches.fixes/tipc-fix-information-leak-to-userland.patch - patches.fixes/xfs-zero-proper-structure-size-for-geometry-calls.patch - patches.fixes/xfs_fs_geometry-fix.patch - patches.kernel.org/revert-x86-Cleanup-highmap-after-brk-is-concluded.patch - patches.fixes/btrfs-add-new-defrag-range-ioctl: Refresh. - patches.fixes/btrfs-create-snapshot-references-in-same-commit-as-snapshot: Refresh. - patches.fixes/econet-fix-locking: Refresh. - patches.kabi/exec-make-argv-envp-memory-visible-to-oom-killer: Refresh. - patches.suse/staging-hyper-v-added-all-patches-for-hyper-v-same-as-2.6.35-now.patch: Refresh.- patches.fixes/megaraid-sas-kdump-crash-on-dell: modify patch to allow ioctl commands, too (bnc#682319).- patches.fixes/cifs-ensure-credentials-match-when-using-existing-session: cifs: Ensure credentials match when trying to use a existing session (bnc#683282).- patches.fixes/char-tpm-fix-unitialized-usage-of-data-buffer: char/tpm: Fix unitialized usage of data buffer (bnc#680040 CVE-2011-1160).- patches.fixes/fs-partitions-efi-c-corrupted-guid-partition-tables-can-cause-kernel-oops: fs/partitions/efi.c: corrupted GUID partition tables can cause kernel oops (bnc#687113 CVE-2011-1577).- patches.fixes/ipv4-fix-route-deletion-for-IPs-on-many-subnets.patch: ipv4: fix route deletion for IPs on many subnets (bnc#668927). - patches.fixes/ipv4-match-prefsrc-when-deleting-routes.patch: ipv4: match prefsrc when deleting routes (bnc#668927). - patches.fixes/ipv4-remove-the-routes-on-secondary-promotion.patch: ipv4: remove the routes on secondary promotion (bnc#668927).- patches.fixes/nat-ftp-fix-broken-conntrack: NAT/FTP: Fix broken conntrack (bnc#681639 bnc#466279).- Following patches deleted because we have patches.kabi/vm_area_struct-fix.patch now (bnc#687478) - patches.kernel.org/revert-guard-page-for-stacks-that-grow-upwards.patch: Delete. - patches.kernel.org/revert-mm-fix-missing-page-table-unmap-for-stack-guard-page-failure-case.patch: Delete. - patches.kernel.org/revert-mm-fix-page-table-unmap-for-stack-guard-page-properly.patch: Delete. - patches.kernel.org/revert-mm-keep-a-guard-page-below-a-grow-down-stack-segment.patch: Delete. - patches.kernel.org/revert-mm-make-stack-guard-page-logic-use-vm_prev-pointer.patch: Delete. - patches.kernel.org/revert-x86-don-t-send-sigbus-for-kernel-page-faults.patch: Delete. - patches.suse/silent-stack-overflow-2.patch: Refreshed due to context change- patches.fixes/drivers-misc-ep93xx_pwm-c-world-writable-sysfs-files: drivers/misc/ep93xx_pwm.c: world-writable sysfs files (bnc#673934). - patches.fixes/drivers-rtc-rtc-ds1511-c-world-writable-sysfs-nvram-file: drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file (bnc#673934). - patches.fixes/media-video-sn9c102-world-wirtable-sysfs-files: video: sn9c102: world-wirtable sysfs files (bnc#673934). - patches.fixes/mfd-ab3100-world-writable-debugfs-_priv-files: mfd: ab3100: world-writable debugfs *_priv files (bnc#673934). - patches.fixes/scsi-aic94xx-world-writable-sysfs-update_bios-file: scsi: aic94xx: world-writable sysfs update_bios file. - patches.fixes/ubifs-restrict-world-writable-debugfs-files: UBIFS: restrict world-writable debugfs files (bnc#673934).- patches.fixes/irda-validate-peer-name-and-attribute-lengths: irda: validate peer name and attribute lengths (bnc#681497 CVE-2011-1180).- Update EC2 config files (SOFT_WATCHDOG=m, bnc#683569).- patches.arch/s390-dasd-force-label.patch: Refresh. - > refresh to apply with series2git- patches.fixes/libsas-dont-issue-commands-to-removed-devices: libsas: Don't issue commands to devices that have been hot-removed (bnc#668898). - patches.fixes/libsas-fix-vacant-phy: libsas: fix bug for vacant phy (bnc#668895). - patches.fixes/libsas-strict-wideport-definition: libsas: fix definition of wideport, include local sas address (bnc#668896).- patches.xen/1074-xenbus_conn-type.patch: xenbus: fix type inconsistency with xenbus_conn(). - patches.xen/1079-hvm-kdump-reset.patch: kdump pv-on-hvm: reset PV devices in crash kernel (bnc#658413). - patches.xen/xen3-patch-2.6.32.33-34: Linux 2.6.32.34 (bnc#558740). - Refresh other Xen patches.- patches.kabi/drm_device-guard.patch: Refresh. The type change to num_crtcs is not required from a secruity point of view.- patches.fixes/nfs-sync-writes: Restore use of stable writes for small O_SYNC writes (bnc#667766).- patches.suse/SoN-11a-mm-reserve.patch: mm: Add mem_reserve_kmem_cache_add helper (bnc#678466). - patches.suse/SoN-16b-netvm-reserve-inet.patch: netvm: Reduce the size of the routing reserves and be careful of dst_alloc() (bnc#678466). - patches.suse/SoN-28a-nfs-alloc-recursions.patch: nfs: Create a memory reserve for nfs_page_cache (bnc#678466).- patches.drivers/intel-patsburg-support.patch: Add Patsburg PCH support to SLES11 SP1 (bnc#650545, bnc#663513, FATE#311346, FATE#311838).- patches.fixes/btrfs-return-EXDEV-when-linking-from-different-subvo.patch: btrfs: return EXDEV when linking from different subvolumes (bnc#679545).- patches.fixes/ipv6-udp-optimise-multicast-reception: ipv6: udp: Optimise multicast reception. - patches.fixes/llc-use-limited-socket-backlog: llc: use limited socket backlog (CVE-2010-4251 bnc#655973). - patches.fixes/net-add-limit-for-socket-backlog: net: add limit for socket backlog (CVE-2010-4251 bnc#655973). - patches.fixes/net-backlog-functions-rename: net: backlog functions rename (CVE-2010-4251 bnc#655973). - patches.fixes/net-sk_add_backlog-take-rmem_alloc-into-account: net: sk_add_backlog() take rmem_alloc into account (CVE-2010-4251 bnc#655973). - patches.fixes/sctp-use-limited-socket-backlog: sctp: use limited socket backlog (CVE-2010-4251 bnc#655973). - patches.fixes/tcp-use-limited-socket-backlog: tcp: use limited socket backlog (CVE-2010-4251 bnc#655973). - patches.fixes/tipc-use-limited-socket-backlog: tipc: use limited socket backlog (CVE-2010-4251 bnc#655973). - patches.fixes/udp-multicast-rx-should-increment-snmp-sk_drops-counter-in-allocation-failures: udp: multicast RX should increment SNMP/sk_drops counter in allocation failures. - patches.fixes/udp-use-limited-socket-backlog: udp: use limited socket backlog (CVE-2010-4251 bnc#655973). - patches.fixes/x25-use-limited-socket-backlog: x25: use limited socket backlog (CVE-2010-4251 bnc#655973). - patches.kabi/sock-kabi-fixup-for-adding-sk_backlog.len.patch: sock: kabi fixup for adding sk_backlog.len (bnc#655973). - patches.suse/SoN-22-netvm.patch: Refresh from kabi changes above.- patches.fixes/staging-hv-use-sync_bitops.patch: staging: hv: use sync_bitops when interacting with the hypervisor (bnc#675963).- patches.kernel.org/revert-x86-Cleanup-highmap-after-brk-is-concluded.patch: Update references (bnc#684248).- patches.kabi/vm_area_struct-fix.patch: Update references (bnc#676419).- patches.fixes/acpi-fix-build-when-config_acpi_custom_override_initramfs-is-not-defined: Delete. - patches.fixes/dlm-always-use-GFP_NOFS.patch: Delete. They are unreferenced and superseded by a newer patch or stable update respectively. There are 3 more OCFS2 patches to sort out.- patches.kabi/vm_area_struct-fix.patch: MM: guard struct vm_area_struct kABI changes. - patches.suse/reiser4-set_page_dirty_notag: Refresh. - patches.xen/xen3-auto-common.diff: Refresh. - patches.fixes/fix-guard-page-revert-side-effect.patch: Delete. - patches.kabi/revert-mm-Move-vma_stack_continue-into-mm.h.patch: Delete. - patches.kabi/revert-mm-make-the-mlock-stack-guard-page-checks-stricter.patch: Delete. - patches.kabi/revert-mm-make-the-vma-list-be-doubly-linked.patch: Delete.- patches.fixes/drm-radeon-kms-check-AA-resolve-registers-on-r300.patch: drm/radeon/kms: check AA resolve registers on r300 (bnc#674693). (CVE-2011-1016).- patches.kernel.org/revert-x86-Cleanup-highmap-after-brk-is-concluded.patch: Revert "x86: Cleanup highmap after brk is concluded". - patches.suse/memory-hotplug-Define-memory_block_size_bytes-for-x86_64-with-CONFIG_X86_UV.patch: Refresh.- patches.fixes/rose-add-length-checks-to-CALL_REQUEST-parsing.patch: rose: Add length checks to CALL_REQUEST parsing (bnc#681175). - patches.fixes/rose-prevent-heap-corruption-with-bad-facilities.patch: ROSE: prevent heap corruption with bad facilities (bnc#681175).- patches.kabi/kabi-fix-xfs-interfaces-with-bulkstat: Fix one more caller.- Update kabi files for xfs.- revert the last commit as it seems to break kABI. - patches.suse/SoN-11a-mm-reserve.patch: Delete. - patches.suse/SoN-16b-netvm-reserve-inet.patch: Delete. - patches.suse/SoN-28a-nfs-alloc-recursions.patch: Delete.- patches.suse/SoN-11a-mm-reserve.patch: mm: Add mem_reserve_kmem_cache_add helper (bnc#678466). - patches.suse/SoN-16b-netvm-reserve-inet.patch: netvm: Reduce the size of the routing reserves and be careful of dst_alloc() (bnc#678466). - patches.suse/SoN-28a-nfs-alloc-recursions.patch: nfs: Create a memory reserve for nfs_page_cache (bnc#678466).- patches.arch/s390-dasd-force-label.patch: s390x: Add force flag for dasd style partition label detection (bnc#684085).- patches.drivers/alsa-usb-remove-trailing-spaces: ALSA: usb - Remove trailing spaces from USB card name strings (bnc#677563).- patches.kabi/kabi-fix-xfs-interfaces-with-bulkstat: KABI: Fix XFS interfaces with bulkstat (bnc#632317).- patches.fixes/ipsec-fix-bogus-bundle-flowi.patch: ipsec: Fix bogus bundle flowi (bnc#680845). - patches.fixes/ipv4-check-rt_genid-in-dst_check.patch: ipv4: check rt_genid in dst_check (bnc#680845).- patches.fixes/prevent-rt_sigqueueinfo-from-spoofing-fix.patch: Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo (bnc#681826).- patches.drivers/gro-reset-skb_iif-on-reuse.patch: gro: reset skb_iif on reuse (bnc#682965, CVE-2011-1478).- patches.suse/dm-stripe-implement-merge-method: dm stripe: implement merge method (bnc#663313).- patches.fixes/fcoe-use_vlan_id-parameter: Set default value to 0 (bnc#620929).- patches.suse/lock_page_speedup_avoid_sync.patch: __lock_pages() speedup (bnc#629170).- patches.drivers/gro-Reset-dev-pointer-on-reuse.patch: gro: Reset dev pointer on reuse (bnc#682965, CVE-2011-1478).- patches.arch/ppc-correct-ccrbit-for-syscall-error: powerpc: Use correct ccr bit for syscall error status (bnc#682940). - patches.arch/ppc-no_BUG_ON-dumping-exiting-thread: powerpc/ptrace: Remove BUG_ON when full register set not available (bnc#682941).- patches.fixes/osf-partition-table-fix.patch: Fix corrupted OSF partition table parsing (bnc#679812).- Update to 2.6.32.36: - obsoletes: - patches.fixes/dcdbas-smiread.patch - patches.fixes/prevent-rt_sigqueueinfo-from-spoofing.patch - patches.suse/kdb-usb-rework: Refresh. - patches.suse/memory-hotplug-Define-memory_block_size_bytes-for-x86_64-with-CONFIG_X86_UV.patch: Refresh.- patches.fixes/knfsd4-fix-share-mode-perms: nfsd4: fix share mode permissions (bnc#566768).- patches.fixes/nfs-fix-hangs-over-tcp-due-to-packet-loss: SUNRPC: fix NFS client over TCP hangs due to packet loss (bnc#669058).- patches.fixes/page_cgroup-reduce-allocation-overhead.patch: page_cgroup: reduce allocation overhead for page_cgroup array for CONFIG_SPARSEMEM (bnc#669889).- patches.kernel.org/patch-2.6.32.33-34: Update references (bnc#558740).- patches.drivers/ixgbe-work-around-for-DDP-last-buffer-size.patch: ixgbe: work around for DDP last buffer size (bnc#682333).- patches.drivers/alsa-sp1-hda-101-Fix-SPDIF-out-regression-on-ALC889: ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).- patches.fixes/audit-filter-rules-cred-perf.patch: audit: audit_filter_rules direct cred access (bnc#670979).- Update to 2.6.32.35: - obsoletes: - patches.rpmify/revert-perf-Handle-stopped-state-with-tracepoints.patch- patches.fixes/prevent-rt_sigqueueinfo-from-spoofing.patch: Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing the signal code (bnc#681826 CVE-2011-1182).- patches.drivers/sound-oss-opl3-validate-voice-and-channel-indexes: sound/oss/opl3: validate voice and channel indexes (bnc#681999). - patches.drivers/sound-oss-remove-offset-from-load_patch-callbacks: sound/oss: remove offset from load_patch callbacks (bnc#681999). - kabi/severities: Ignore OSS kABI- patches.fixes/xfs-zero-proper-structure-size-for-geometry-calls.patch: xfs: zero proper structure size for geometry calls (bnc#672505).- Update to 2.6.32.34: - security fixes - bugfixes - obsoletes: - patches.arch/ppc64-kdump-unrace - patches.drivers/PCI-remove-quirk-for-pre-production-systems.patch - patches.fixes/isdn-avoid-calling-tty_ldisc_flush.patch - patches.fixes/smp-smp_call_function_many-fix-list-delete-vs-add-race - patches.fixes/smp-smp_call_function_many-handle-concurrent-clearing-of-mask - patches.rpmify/revert-perf-Handle-stopped-state-with-tracepoints.patch: Revert "perf: Handle stopped state with tracepoints". - patches.kabi/paca_struct-guard.patch: PPC: guard struct paca_struct kABI changes.- patches.fixes/xfs-force-when-pinned: XFS: force log before waiting for a pinned buffer (bnc#649473).- patches.arch/x86-uv-Initialize-the-broadcast-assist-unit-base-destination-node-id-properly.patch: x86, UV: Initialize the broadcast assist unit base destination node id properly (bnc#677783).- patches.fixes/nfs4-acl-pages.fix: nfs4: Ensure that ACL pages sent over NFS were not allocated from the slab (v3) (bnc#677286).- patches.fixes/inet_diag-fix-bytecode-validation.patch: inet_diag: Make sure we actually run the same bytecode we audited (bnc#651599, CVE-2010-3880).- patches.fixes/bonding-802.3ad-fix-state-machine-locking.patch: bonding 802.3ad: Fix the state machine locking (bnc#672453).- patches.arch/ppc-pseries-disable-msi-new-interface: powerpc/pseries: Disable MSI using new interface if possible (bnc#677398).- patches.drivers/eeh-fix-early-boot-oops: powerpc/eeh: Fix oops when probing in early boot (bnc#677391). - patches.drivers/ipr-bluedarter-readd-race-workaround: ipr: Fix a race on multiple configuration changes (bnc#675115).- patches.suse/ldm_validate_partition_table-quiet: Silence "ldm_validate_partition_table(): Disk read failed" when booting with "quiet" (bnc#656219).- patches.fixes/direct-io-move-aio_complete-into-end_io: direct-io: move aio_complete into ->end_io (bnc#622597). - patches.kabi/restore-dio_iodone-symbol-type: Hide kABI change caused by a change of prototype of dio_iodone_t (bnc#622597). - patches.xfs/xfs-cleanup-data-end-io-handlers: xfs: cleanup data end I/O handlers (bnc#622597). - patches.xfs/xfs-move-aio-completion-after-unwritten-extent-conversion: xfs: move aio completion after unwritten extent conversion (bnc#622597).- patches.fixes/scsi-dh-rdac-add-sun: scsi_dh_rdac : Add new SUN controllers (bnc#660507).- Update to 2.6.32.33: - security fixes - bugfixes - obsoletes: - patches.drivers/ixgbe-fix-for-82599-erratum-on-Header-Splitting.patch - patches.arch/ppc64-kdump-unrace: Refresh.- patches.drivers/qla2xxx-use-spinlock_irqsave: qla2xxx: Path fails to recover after microcode update (bnc#654169).- patches.fixes/megaraid-sas-kdump-crash-on-dell: Fixup patch to apply.- patches.fixes/megaraid-sas-kdump-crash-on-dell: Rearrange to apply at right position (bnc#622868).- patches.suse/allow_bonding_with_blacklisted_ipv6.patch: fix KABI- patches.suse/allow_bonding_with_blacklisted_ipv6.patch: remove the semaphore which caused bnc#678531 and was not needed, because it only protected against the removal of the ipv6 module; ipv6 can not be removed anyway once loaded- patches.drivers/ib-core-pre-mra-xmit-lap-state-check.patch: IB/cm: Check LAP state before sending an MRA (bnc#673516,LTC#69958).- patches.drivers/PCI-remove-quirk-for-pre-production-systems.patch: PCI: remove quirk for pre-production systems (bnc#656587).- Update Xen patches to 2.6.32.31. - patches.xen/1069-blktap-misc.patch: blktap: a small fix and assorted cleanup. - patches.xen/1070-pciback-reset-msi.patch: pciback: disable MSI/MSI-X when resetting device (bnc#670615). - patches.xen/xen-cxgb3: apply xen specific patch to the Chelsio ethernet drivers. - Refresh other Xen patches.- Update to 2.6.32.32 - security fixes - bugfixes - obsoletes: - patches.drivers/netxen-8f9b3f-to-c651a8.patch (one hunk) - patches.drivers/usb-iowarrior-don-t-trust-report_size-for-buffer-siz.patch - patches.fixes/fuse-fix-fuseblk-hang.patch - patches.fixes/sctp-fix-oops-when-sending-queued-asconf-chunks - kabi fixes: - patches.kabi/drm_device-guard.patch: DRM: guard struct drm_device kABI changes.- patches.drivers/ixgbe-fix-panic-due-to-uninitialised-pointer.patch: ixgbe: fix panic due to uninitialised pointer.- patches.drivers/ixgbe-add-1g-PHY-support-for-82599.patch: ixgbe: add 1g PHY support for 82599 (bnc#644630). - patches.drivers/ixgbe-add-support-for-active-DA-cables.patch: ixgbe: add support for active DA cables (bnc#644630). - patches.drivers/ixgbe-cleanup-race-conditions-in-link-setup.patch: ixgbe: cleanup race conditions in link setup (bnc644630). - patches.drivers/ixgbe-fix-for-link-failure-on-SFP-DA-cables.patch: ixgbe: fix for link failure on SFP+ DA cables (bnc#644630).- patches.arch/ACPI-ACPICA-Fix-global-lock-acquisition.patch: ACPI / ACPICA: Fix global lock acquisition (bnc#637377).- patches.drivers/usb-iowarrior-don-t-trust-report_size-for-buffer-siz.patch: usb: iowarrior: don't trust report_size for buffer size (bnc#666842 CVE-2010-4656).- Ensure that max_level is >= 1 when used, as in mainline. - patches.fixes/af_unix-limit-recursion-level: Refresh.- patches.fixes/debugfs_remove_corruption.diff: debugfs: Fix filesystem reference counting on debugfs_remove() failure (bnc#668101).- patches.suse/memory-hotplug-Define-memory_block_size_bytes-for-x86_64-with-CONFIG_X86_UV.patch: Refresh. Add missing chunk (bnc#643266).- Update to 2.6.32.31 - obsoletes: - patches.rpmify/swiotlb-build-fix.patch: Delete.- patches.drivers/lpfc-8.3.5.8.2p-update: Fix panic in lpfc_scsi_cmd_iocb_cmpl (bnc#671943).- Update to 2.6.32.30: - security fixes - bugfixes - obsoletes: - patches.arch/hpet_do_not_register_if_arat.patch - patches.arch/s390-remove-task_show_regs.patch - patches.drivers/alsa-01-caiaq-Fix-possible-string-buffer-overflow - patches.drivers/ixgbe-add-support-for-82599-ba - patches.drivers/ixgbe-prevent-speculative-processing-of-descriptors.patch - patches.fixes/cred-fix-get_task_cred-and-task_state-to-not-resurrect-dead-credentials - patches.fixes/filter-make-sure-filters-dont-read-uninitialized-memory - patches.fixes/fix-pktcdvd-ioctl-dev_minor-range-check - patches.fixes/isdn-hisax-replace-access-to-irq-stats.patch - patches.fixes/media-v3-media-av7110-check-for-negative-array-offse.patch - patches.fixes/ocfs2_connection_find-returns-pointer-to-bad-structu.patch - patches.fixes/sctp-fix-bounds-checking-in-sctp_asoc_get_hmac.patch - patches.fixes/tcp-increase-tcp_maxseg-socket-option-minimum - patches.fixes/xfs-always-use-iget-in-bulkstat - patches.fixes/xfs-remove-block-number-from-inode-lookup-code - patches.fixes/xfs-rename-xfs_iget_bulkstat-to-xfs_iget_untrusted - patches.fixes/xfs-validate-untrusted-inode-numbers-during-lookup - kabi fixes: - patches.kabi/hisax-IsdnCardState-guard.patch - patches.rpmify/swiotlb-build-fix.patch: Fix compilation error introduced in 484d82b6. - patches.drivers/acer_wmi_hotkey_events_support.patch: Refresh. - patches.drivers/acer_wmi_launch_manager_mode.patch: Refresh. - patches.drivers/benet-from-v2.6.32-to-8f47afe0.patch: Refresh. - patches.drivers/mpt-fusion-4.22.00.00-update: Refresh. - patches.fixes/epoll-fix-max_user_watches-overflow.patch: Refresh. - patches.fixes/net-optimize-berkeley-packet-filter-bpf-processing: Refresh. - patches.fixes/scsi-add-tgps-setting: Refresh. - patches.fixes/xfs-always-use-iget-in-bulkstat-dmapi: Refresh. - patches.suse/xfs-dmapi-xfs-enable: Refresh. - patches.xen/xen-x86-no-lapic: Refresh. - patches.xen/xen3-patch-2.6.19: Refresh. - patches.xfs/xfs-remove-incorrect-sparse-annotation-for-xfs_iget_.patch: Refresh.- patches.fixes/media-v3-media-av7110-check-for-negative-array-offse.patch: [media] [v3,media] av7110: check for negative array offset (bnc#666836, CVE-2011-0521).- patches.fixes/dcdbas-smiread.patch: dcdbas: force SMI to happen when expected (bnc#669571). - patches.xen/xen-dcdbas: Refresh.- patches.drivers/cnic-fix-big-endian-bug.patch: cnic: Fix big endian bug (bnc#670154).- patches.arch/s390-27-01-qeth-mac-in-message.patch: qeth: wrong MAC-address displayed in error message (bnc#671296,LTC#69730). - patches.arch/s390-27-02-dasd-unresumed-devices-panic.patch: dasd: prevent panic with unresumed devices (bnc#671296,LTC#69816). - patches.arch/s390-27-03-qeth-chpath-change.patch: qeth: allow channel path changes in suspend state (bnc#671296,LTC#70033). - patches.arch/s390-27-04-qeth-no-ipa-in-offline.patch: qeth: remove needless IPA-commands in offline (bnc#671296,LTC#70055). - patches.arch/s390-27-05-tape-system-wq-deadlock.patch: tape: deadlock on global work queue (bnc#671296,LTC#70202).- patches.arch/x86_64-unwind-annotations: Add annotations to lib/rwsem_64.S.- patches.fixes/fcoe-fix-broken-fcoe-interface: fcoe: fix broken fcoe interface reset (bnc#674549). - patches.fixes/libfc-dereferencing-err_ptr-in: libfc: dereferencing ERR_PTR in fc_tm_done() (bnc#674549). - patches.fixes/libfc-fixing-a-memory-leak: libfc: Fixing a memory leak when destroying an interface (bnc#674549). - patches.fixes/libfc-fix-exchange-being-deleted-when-the-abort-its: Delete (bnc#674549).- Fix backport error. - patches.fixes/af_unix-limit-recursion-level: Refresh.- patches.drivers/alsa-usb-fix-oops-at-disconnection: ALSA: usb-audio: fix oops due to cleanup race when disconnecting (bnc#674735).- patches.arch/x86-uv-early-boot-bitmap-fix.patch: x86 / UV: Early boot bitmap fix (bnc#657248).Enable the following patches for bnc#643266. - patches.suse/driver-core-Add-mutex-for-adding-removing-memory-blocks.patch: Driver core: Add mutex for adding/removing memory blocks (bnc#643266). - patches.suse/driver-core-Add-section-count-to-memory_block-struct.patch: Driver core: Add section count to memory_block struct (bnc#643266). - patches.suse/driver-core-Move-find_memory_block-routine.patch: Driver core: Move find_memory_block routine (bnc#643266). - patches.suse/memory-hotplug-Allow-memory-blocks-to-span-multiple-memory-sections.patch: memory hotplug: Allow memory blocks to span multiple memory sections (bnc#643266). - patches.suse/memory-hotplug-Define-memory_block_size_bytes-for-powerpc-pseries.patch: memory hotplug: Define memory_block_size_bytes for powerpc/pseries (bnc#643266). - patches.suse/memory-hotplug-Define-memory_block_size_bytes-for-x86_64-with-CONFIG_X86_UV.patch: memory hotplug: Define memory_block_size_bytes for x86_64 with CONFIG_X86_UV (bnc#643266). - patches.suse/memory-hotplug-Update-phys_index-to-start-end-section_nr.patch: memory hotplug: Update phys_index to [start|end]_section_nr (bnc#643266). - patches.suse/memory-hotplug-sysfs-probe-routine-should-add-all-memory-sections.patch: memory hotplug: sysfs probe routine should add all memory sections (bnc#643266).- rpm/kernel-binary.spec.in: Remove unused code.- patches.fixes/ax25-fix-information-leak-to-userland.patch: net: ax25: fix information leak to userland (bnc#650897, CVE-2010-3875). - patches.fixes/packet-fix-information-leak-to-userland.patch: net: packet: fix information leak to userland (bnc#650897, CVE-2010-3876). - patches.fixes/tipc-fix-information-leak-to-userland.patch: net: tipc: fix information leak to userland (bnc#650897, CVE-2010-3877).- patches.arch/crypto-sha-s390-reset-index-after-processing-partial-block.patch: crypto: sha-s390 - Reset index after processing partial block (bnc#470671).Disable the following patches: - patches.suse/driver-core-Add-mutex-for-adding-removing-memory-blocks.patch: Driver core: Add mutex for adding/removing memory blocks (bnc#643266). - patches.suse/driver-core-Add-section-count-to-memory_block-struct.patch: Driver core: Add section count to memory_block struct (bnc#643266). - patches.suse/driver-core-Move-find_memory_block-routine.patch: Driver core: Move find_memory_block routine (bnc#643266). - patches.suse/memory-hotplug-Allow-memory-blocks-to-span-multiple-memory-sections.patch: memory hotplug: Allow memory blocks to span multiple memory sections (bnc#643266). - patches.suse/memory-hotplug-Define-memory_block_size_bytes-for-powerpc-pseries.patch: memory hotplug: Define memory_block_size_bytes for powerpc/pseries (bnc#643266). - patches.suse/memory-hotplug-Define-memory_block_size_bytes-for-x86_64-with-CONFIG_X86_UV.patch: memory hotplug: Define memory_block_size_bytes for x86_64 with CONFIG_X86_UV (bnc#643266). - patches.suse/memory-hotplug-Update-phys_index-to-start-end-section_nr.patch: memory hotplug: Update phys_index to [start|end]_section_nr (bnc#643266). - patches.suse/memory-hotplug-sysfs-probe-routine-should-add-all-memory-sections.patch: memory hotplug: sysfs probe routine should add all memory sections (bnc#643266).- patches.fixes/sctp-fix-bounds-checking-in-sctp_asoc_get_hmac.patch: sctp: Fix out-of-bounds reading in sctp_asoc_get_hmac() (bnc#643513, CVE-2010-3705).- patches.suse/driver-core-Add-mutex-for-adding-removing-memory-blocks.patch: Driver core: Add mutex for adding/removing memory blocks (bnc#643266). - patches.suse/driver-core-Add-section-count-to-memory_block-struct.patch: Driver core: Add section count to memory_block struct (bnc#643266). - patches.suse/driver-core-Move-find_memory_block-routine.patch: Driver core: Move find_memory_block routine (bnc#643266). - patches.suse/memory-hotplug-Allow-memory-blocks-to-span-multiple-memory-sections.patch: memory hotplug: Allow memory blocks to span multiple memory sections (bnc#643266). - patches.suse/memory-hotplug-Define-memory_block_size_bytes-for-powerpc-pseries.patch: memory hotplug: Define memory_block_size_bytes for powerpc/pseries (bnc#643266). - patches.suse/memory-hotplug-Define-memory_block_size_bytes-for-x86_64-with-CONFIG_X86_UV.patch: memory hotplug: Define memory_block_size_bytes for x86_64 with CONFIG_X86_UV (bnc#643266). - patches.suse/memory-hotplug-Update-phys_index-to-start-end-section_nr.patch: memory hotplug: Update phys_index to [start|end]_section_nr (bnc#643266). - patches.suse/memory-hotplug-sysfs-probe-routine-should-add-all-memory-sections.patch: memory hotplug: sysfs probe routine should add all memory sections (bnc#643266).- patches.fixes/xfs_fs_geometry-fix.patch: xfs: prevent leaking uninitialized stack memory in FSGEOMETRY_V1 (CVE-2011-0711 bnc#672524).- patches.fixes/megaraid-sas-kdump-crash-on-dell: megaraid_sas: kdump hangs on dell 2900 (bnc#622868).- Added bnc#670129 cases to hopefully (and seemingly) now obsolete safety net - patches.fixes/sched-divide-by-zero-workaround-and-diag.diff: Refresh.- patches.fixes/af_unix-limit-recursion-level: af_unix: limit recursion level (bnc#658037). - patches.fixes/smp-consolidate-writes-in-smp_call_function_interrupt: kernel/smp.c: consolidate writes in smp_call_function_interrupt() (bnc#658037, bnc#636435, bnc#665663). - patches.fixes/smp-generic_smp_call_function_interrupt-additional-memory-order-tightening: smp_call_function: additional memory-order tightening (bnc#658037, bnc#636435, bnc#665663). - patches.fixes/smp-smp_call_function_many-fix-list-delete-vs-add-race: call_function_many: fix list delete vs add race (bnc#658037, bnc#636435, bnc#665663). - patches.fixes/smp-smp_call_function_many-handle-concurrent-clearing-of-mask: smp_call_function_many: handle concurrent clearing of mask (bnc#658037, bnc#636435, bnc#665663).- patches.drivers/alsa-01-caiaq-Fix-possible-string-buffer-overflow: ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499, CVE-2011-0712).- patches.arch/s390-remove-task_show_regs.patch: s390: remove task_show_regs - CVE-2011-0710 (bnc#672492).- patches.fixes/mm-clear-pages_scanned-only-if-draining-a-pcp-adds-p.patch: mm: clear pages_scanned only if draining a pcp adds pages to the buddy allocator (bnc#672292).- Update to 2.6.32.29: - security fixes - bugfixes - obsoletes: - patches.arch/s390-08-05-hvc-iucv-alloc-dma.patch - patches.arch/s390-09-01-vdso-version.patch - patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch - patches.drivers/alsa-sp1-hda-98-Fix-memory-leaks-in-conexant-jack-arrays - patches.fixes/calibrate-jiffy-overflow - patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch - patches.fixes/sd-set-resid-correctly - patches.suse/staging-hv-add-code-to-create-the-device-directory-under-sys-block-hdx.patch - kabi fixes: - patches.kabi/sched_group.patch: sched: guard struct sched_group kABI changes. - patches.kabi/sched_struct_rq_kABI_guard.patch: Refresh. - patches.fixes/sched-divide-by-zero-workaround-and-diag.diff: Refresh. - patches.fixes/usb-ehci-amd-periodic-frame-list-table-quirk.patch: Refresh. - patches.kabi/sched_sched_class_kABI_guard.patch: Refresh. - patches.kernel.org/patch-2.6.32.28-29: Linux 2.6.32.29. - patches.suse/SoN-07-mm-PF_MEMALLOC-softirq.patch: Refresh. - patches.suse/dm-mpath-accept-failed-paths: Refresh. - patches.suse/dm-mpath-disable-abort-queue: Refresh. - patches.suse/kconfig-automate-kernel-desktop: Refresh. - patches.suse/rlim-0012-core-use-helpers-for-rlimits.patch: Refresh. - Update config files.- patches.arch/s390-remove-task_show_regs.patch: s390: remove task_show_regs.- patches.fixes/ipv6-implement-any-ip-support.patch: Implement Any-IP support for IPv6 (bnc#640850, fate#310839).- patches.fixes/Add_Atheros_AR5BBU12_BT_firmware_supported.patch: blacklist another BT device that cannot operate without firmware (bnc#670864).- patches.drivers/ixgbe-fix-for-82599-erratum-on-Header-Splitting.patch: ixgbe: fix for 82599 erratum on Header Splitting (bnc#671483).- patches.arch/s390-kvm-ext-param.patch: S390: take a full byte as ext_param indicator (bnc#671274). - patches.arch/s390-kvm-hotplug.patch: S390: Add virtio hotplug add support (bnc#671274).- patches.fixes/0001-btusb-fix-crash-with-quirky-dongles-doing-sound.patch: btusb:fix crash with quirky dongles doing sound (bnc#671256).- patches.fixes/fcoe-use_vlan_id-parameter: Introduce 'use_vlan_id' to omit using of VLAN ID for WWPN (bnc#620929).- patches.suse/dm-mpath-fixup-status-output-for-no-paths: multipath status output wrong for no priority groups (bnc#668545).- patches.fixes/fcoe-cisco-login-failure: fcoe: drop FCoE LOGO in FIP mode (bnc#662800).- patches.fixes/aacraid-check-scsi_dma_map_return-value: aacraid: check for errors in scsi_dma_map() (bnc#663706).- patches.fixes/xfs-make-xfsbufd-less-aggressive.patch: XFS - Make xfsbufd less aggressive (bnc#649473).- rpm/kernel-binary.spec.in: Add version numbers to SLE11-GA kmp obsoletes (bnc#633026).- patches.drivers/alsa-sp1-hda-Fix-missing-CA-initialization-for-HDMI-DP: ALSA: hda - Fix missing CA initialization for HDMI/DP (bnc#670577).- patches.fixes/scsi-dh-alua-errorneous-tpg_id-check: Erroneous TPG ID check in SCSI ALUA Handler (bnc#665524).- patches.fixes/sd-set-resid-correctly: fix medium error problems which can cause data corruption (bnc#650366).- unmask enic driver update (bnc#638258, fate#311002) - patches.drivers/enic-Clean-ups.patch: fix bug where pci_enable_device* was called twice- patches.fixes/bonding-allow-arp_ip_targers-on-separate-vlans-to-use-arp-validation.patch: Update the patch to fix a regression (bnc#648701, bnc#665480).- kabi/severities: Add fuse module to the "PASS" list. Fuse symbols are exclusively exported to cuse, nothing else should ever use them.- patches.fixes/fuse-fix-fuseblk-hang.patch: Fix hang of single threaded fuseblk filesystem (bnc#658337).- patches.arch/s390-26-01-ccwgroup_uevent.patch: ccwgroup: udev race condition (bnc#659101,LTC#68723). - patches.arch/s390-26-02-cio-fix-ccwgroup-use-after-free.patch: cio: prevent kernel panic when path to network device is lost (bnc#659101,LTC#68729). - patches.arch/s390-26-03-qdio-siga.patch: qdio: use proper QEBSM operand for SIGA-R and SIGA-S (bnc#659101,LTC#68830). - patches.arch/s390-26-04-nohz-cpu-hotplug.patch: kernel: nohz vs cpu hotplug system hang (bnc#659101,LTC#68888). - patches.arch/s390-26-05-qeth_recovery_wait_in_open.patch: qeth: wait for recovery finish in open function (bnc#659101,LTC#69037). - patches.arch/s390-26-06-qeth_osn_online.patch: qeth: fix online setting of OSN-devices (bnc#659101,LTC#69071). - patches.arch/s390-26-07-qdio-shared_ind_race.patch: qdio: prevent race for shared indicators (bnc#659101,LTC#69028). - patches.arch/s390-26-08-uaccess-sacf.patch: uaccess: missing sacf in uaccess error handling (bnc#659101,LTC#69124).- patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch: x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).- patches.suse/squashfs-3.4.patch: forward port squashfs version 3 from SLES11 as a new "squashfs3" filesystem (bnc#666893) - supported.conf: added squashfs3 - Update config files.- patches.drivers/alsa-sp1-hda-100-keep-ABI-for-LSI-modem-driver: Keep internal structure of hd-audio for LSI binary-only driver (bnc#659394,bnc#655278).Make acpi.ec_delay param writeable - patches.arch/acpi_ec_delay_param.patch: Refresh.- patches.drivers/alsa-sp1-hda-99-Change-the-AZX_MAX_PCMS-to-10: ALSA: hda - Change the AZX_MAX_PCMS to 10 (bnc#659394,bnc#655278).- patches.fixes/ocfs2-mkdir-credits.diff: Correct number of credits needed for mkdir (bnc#668633).- patches.fixes/bonding-minimize-race-window-on-miimon-rearming.patch: bonding: minimize race window on miimon rearming (bnc#602969).- patches.drivers/alsa-sp1-hda-98-Fix-memory-leaks-in-conexant-jack-arrays: ALSA: hda - Fix memory leaks in conexant jack arrays (bnc#668929).- patches.suse/lock_page-speedup.patch: lock_page speedup. Avoid atomic bit set, when possible (bnc#629170).- Update Xen patches to 2.6.32.28. - Refresh other Xen patches.- patches.fixes/calibrate-jiffy-overflow: Fix jiffy calculations in calibrate_delay_direct to handle overflow.- patches.suse/kdb-fix-cpumask-usage.patch: KDB: Fix cpumask usage (bnc#662360).- patches.drivers/synaptics-hp-new-model.diff: Fix the detection of new synaptics touchpad on HP laptops (bnc#662212,bnc#663582,bnc#663537,bnc#664463).- Update rest of kabi files for xfs changes.- Refresh patches.rpmify/cloneconfig.diff. scripts/kconfig/conf accepts long parameters only for some time already- patches.fixes/Make-swap-accounting-default-behavior-configurable.patch: Make swap accounting default behavior configurable (bnc#650309, fate#310471).- patches.fixes/ocfs2-check-heartbeat-for-kernel-stacks-only.patch: ocfs2: Check heartbeat mode for kernel stacks only.- patches.fixes/btusb_ignore_malbec_wo_firmware.patch: Refresh. Fixed copy'n'paste error- Update reference module symbol versions: accepted xfs_bulkstat (and friends) changes from bnc#632317, CVE-2010-2943.- patches.suse/ocfs2-kapi-compat.patch: ocfs2: add back ported kernel api calls.- patches.arch/hpet_do_not_register_if_arat.patch: x86, hpet: Disable per-cpu hpet timer if ARAT is supported (bnc#648916).- patches.arch/x86-UV-BAU-Extend-for-more-than-16-cpus-per-socket.patch: Refresh.- patches.arch/x86-UV-Fix-interrupt-targeting-for-GRU-on-westmere.patch: x86, UV: Fix interrupt targeting for GRU on Westmere (bnc#662340).- patches.arch/x86-uv-westmere-acpicid-fix.patch: x86, UV: Fix APICID shift for westmere processors (bnc#662335).- patches.arch/x86-UV-BAU-Extend-for-more-than-16-cpus-per-socket.patch: x86, UV, BAU: Extend for more than 16 cpus per socket.Bring in Ocfs2 fixes from 2.6.37 - patches.fixes/Fix-various-typos-of-valid-in-comments.patch: Fix various typos of valid in comments. - patches.fixes/Initialize-max_slots-early.patch: Initialize max_slots early. - patches.fixes/JBD2-Allow-feature-checks-before-journal-recovery.patch: JBD2: Allow feature checks before journal recovery. - patches.fixes/OCFS2-Allow-huge-16-TiB-volumes-to-mount.patch: OCFS2: Allow huge (> 16 TiB) volumes to mount. - patches.fixes/Ocfs2-Add-new-OCFS2_IOC_INFO-ioctl-for-ocfs2-v8.patch: Ocfs2: Add new OCFS2_IOC_INFO ioctl for ocfs2 v8. - patches.fixes/Ocfs2-Stop-tracking-a-negative-dentry-after-dentry_i.patch: Ocfs2: Stop tracking a negative dentry after dentry_iput(). - patches.fixes/Ocfs2-Teach-coherency-full-O_DIRECT-writes-to-correc.patch: Ocfs2: Teach 'coherency=full' O_DIRECT writes to correctly up_read i_alloc_sem. - patches.fixes/Reorganize-data-elements-to-reduce-struct-sizes.patch: Reorganize data elements to reduce struct sizes. - patches.fixes/Track-negative-entries-v3.patch: Track negative entries v3. - patches.fixes/When-I-tried-to-compile-I-got-the-following-warning.patch: When I tried to compile I got the following warning:. - patches.fixes/fs-ocfs2-dlm-Use-GFP_ATOMIC-under-spin_lock.patch: fs/ocfs2/dlm: Use GFP_ATOMIC under spin_lock. - patches.fixes/ocfs2-Add-a-mount-option-coherency-to-handle-cluster.patch: ocfs2: Add a mount option "coherency=*" to handle cluster coherency for O_DIRECT writes. - patches.fixes/ocfs2-Add-an-incompat-feature-flag-OCFS2_FEATURE_INC.patch: ocfs2: Add an incompat feature flag OCFS2_FEATURE_INCOMPAT_CLUSTERINFO. - patches.fixes/ocfs2-Add-readahead-support-for-CoW.patch: ocfs2: Add readahead support for CoW. - patches.fixes/ocfs2-Add-readhead-during-CoW.patch: ocfs2: Add readhead during CoW. - patches.fixes/ocfs2-Add-some-trace-log-for-orphan-scan.patch: ocfs2: Add some trace log for orphan scan. - patches.fixes/ocfs2-Add-struct-file-to-ocfs2_refcount_cow.patch: ocfs2: Add struct file to ocfs2_refcount_cow. - patches.fixes/ocfs2-Add-support-for-heartbeat-global-mount-option.patch: ocfs2: Add support for heartbeat=global mount option. - patches.fixes/ocfs2-Adjust-masklog-flag-values.patch: ocfs2: Adjust masklog flag values. - patches.fixes/ocfs2-Avoid-to-evaluate-xattr-block-flags-again.patch: ocfs2: Avoid to evaluate xattr block flags again. - patches.fixes/ocfs2-Cache-system-inodes-of-other-slots.patch: ocfs2: Cache system inodes of other slots. - patches.fixes/ocfs2-Change-some-lock-status-member-in-ocfs2_lock_r.patch: ocfs2: Change some lock status member in ocfs2_lock_res to char. - patches.fixes/ocfs2-Fix-system-inodes-cache-overflow.patch: ocfs2: Fix system inodes cache overflow. - patches.fixes/ocfs2-Hold-ip_lock-when-set-clear-flags-for-indexed-.patch: ocfs2: Hold ip_lock when set/clear flags for indexed dir. - patches.fixes/ocfs2-Initialize-the-bktcnt-variable-properly-and-ca.patch: ocfs2: Initialize the bktcnt variable properly, and call it bucket_count. - patches.fixes/ocfs2-Remove-obscure-error-handling-in-direct_write.patch: ocfs2: Remove obscure error handling in direct_write. - patches.fixes/ocfs2-Remove-obsolete-comments-before-ocfs2_start_tr.patch: ocfs2: Remove obsolete comments before ocfs2_start_trans. - patches.fixes/ocfs2-Remove-ocfs2_sync_inode.patch: ocfs2: Remove ocfs2_sync_inode(). - patches.fixes/ocfs2-Remove-unused-old_id-in-ocfs2_commit_cache.patch: ocfs2: Remove unused old_id in ocfs2_commit_cache. - patches.fixes/ocfs2-Silence-unused-warning.patch: ocfs2: Silence unused warning. - patches.fixes/ocfs2-char-is-not-always-signed.patch: ocfs2: char is not always signed. - patches.fixes/ocfs2-cluster-Add-heartbeat-mode-configfs-parameter.patch: ocfs2/cluster: Add heartbeat mode configfs parameter. - patches.fixes/ocfs2-cluster-Add-mlogs-for-heartbeat-up-down-events.patch: ocfs2/cluster: Add mlogs for heartbeat up/down events. - patches.fixes/ocfs2-cluster-Bump-up-dlm-protocol-to-version-1.1.patch: ocfs2/cluster: Bump up dlm protocol to version 1.1. - patches.fixes/ocfs2-cluster-Check-slots-for-unconfigured-live-node.patch: ocfs2/cluster: Check slots for unconfigured live nodes. - patches.fixes/ocfs2-cluster-Create-debugfs-dir-files-for-each-regi.patch: ocfs2/cluster: Create debugfs dir/files for each region. - patches.fixes/ocfs2-cluster-Create-debugfs-files-for-live-quorum-a.patch: ocfs2/cluster: Create debugfs files for live, quorum and failed region bitmaps. - patches.fixes/ocfs2-cluster-Get-all-heartbeat-regions.patch: ocfs2/cluster: Get all heartbeat regions. - patches.fixes/ocfs2-cluster-Maintain-bitmap-of-failed-regions.patch: ocfs2/cluster: Maintain bitmap of failed regions. - patches.fixes/ocfs2-cluster-Maintain-bitmap-of-quorum-regions.patch: ocfs2/cluster: Maintain bitmap of quorum regions. - patches.fixes/ocfs2-cluster-Maintain-live-node-bitmap-per-heartbea.patch: ocfs2/cluster: Maintain live node bitmap per heartbeat region. - patches.fixes/ocfs2-cluster-Print-messages-when-adding-removing-he.patch: ocfs2/cluster: Print messages when adding/removing heartbeat regions. - patches.fixes/ocfs2-cluster-Print-messages-when-adding-removing-no.patch: ocfs2/cluster: Print messages when adding/removing nodes. - patches.fixes/ocfs2-cluster-Release-debugfs-file-elapsed_time_in_m.patch: ocfs2/cluster: Release debugfs file elapsed_time_in_ms. - patches.fixes/ocfs2-cluster-Reorganize-o2hb-debugfs-init.patch: ocfs2/cluster: Reorganize o2hb debugfs init. - patches.fixes/ocfs2-cluster-Show-per-region-heartbeat-elapsed-time.patch: ocfs2/cluster: Show per region heartbeat elapsed time. - patches.fixes/ocfs2-cluster-Track-bitmap-of-live-heartbeat-regions.patch: ocfs2/cluster: Track bitmap of live heartbeat regions. - patches.fixes/ocfs2-cluster-Track-number-of-global-heartbeat-regio.patch: ocfs2/cluster: Track number of global heartbeat regions. - patches.fixes/ocfs2-dlm-Add-message-DLM_QUERY_NODEINFO.patch: ocfs2/dlm: Add message DLM_QUERY_NODEINFO. - patches.fixes/ocfs2-dlm-Add-message-DLM_QUERY_REGION.patch: ocfs2/dlm: Add message DLM_QUERY_REGION. - patches.fixes/ocfs2-dlm-Expose-dlm_protocol-in-dlm_state.patch: ocfs2/dlm: Expose dlm_protocol in dlm_state. - patches.fixes/ocfs2-dlm-Migrate-lockres-with-no-locks-if-it-has-a-.patch: ocfs2/dlm: Migrate lockres with no locks if it has a reference. - patches.fixes/ocfs2-fix-memory-leak.patch: ocfs2: fix memory leak. - patches.fixes/ocfs2-pass-struct-file-to-ocfs2_prepare_inode_for_wr.patch: ocfs2: pass struct file* to ocfs2_prepare_inode_for_write. - patches.fixes/ocfs2-pass-struct-file-to-ocfs2_write_begin_nolock.patch: ocfs2: pass struct file* to ocfs2_write_begin_nolock. - patches.fixes/ocfs2-validate-bg_free_bits_count-after-update.patch: ocfs2: validate bg_free_bits_count after update. - patches.fixes/ocfs2_connection_find-returns-pointer-to-bad-structu.patch: ocfs2_connection_find() returns pointer to bad structure.Bring in Ocfs2 fixes from 2.6.37 - patches.fixes/Fix-various-typos-of-valid-in-comments.patch: Fix various typos of valid in comments. - patches.fixes/Initialize-max_slots-early.patch: Initialize max_slots early. - patches.fixes/JBD2-Allow-feature-checks-before-journal-recovery.patch: JBD2: Allow feature checks before journal recovery. - patches.fixes/OCFS2-Allow-huge-16-TiB-volumes-to-mount.patch: OCFS2: Allow huge (> 16 TiB) volumes to mount. - patches.fixes/Ocfs2-Add-new-OCFS2_IOC_INFO-ioctl-for-ocfs2-v8.patch: Ocfs2: Add new OCFS2_IOC_INFO ioctl for ocfs2 v8. - patches.fixes/Ocfs2-Stop-tracking-a-negative-dentry-after-dentry_i.patch: Ocfs2: Stop tracking a negative dentry after dentry_iput(). - patches.fixes/Ocfs2-Teach-coherency-full-O_DIRECT-writes-to-correc.patch: Ocfs2: Teach 'coherency=full' O_DIRECT writes to correctly up_read i_alloc_sem. - patches.fixes/Reorganize-data-elements-to-reduce-struct-sizes.patch: Reorganize data elements to reduce struct sizes. - patches.fixes/Track-negative-entries-v3.patch: Track negative entries v3. - patches.fixes/When-I-tried-to-compile-I-got-the-following-warning.patch: When I tried to compile I got the following warning:. - patches.fixes/fs-ocfs2-dlm-Use-GFP_ATOMIC-under-spin_lock.patch: fs/ocfs2/dlm: Use GFP_ATOMIC under spin_lock. - patches.fixes/ocfs2-Add-a-mount-option-coherency-to-handle-cluster.patch: ocfs2: Add a mount option "coherency=*" to handle cluster coherency for O_DIRECT writes. - patches.fixes/ocfs2-Add-an-incompat-feature-flag-OCFS2_FEATURE_INC.patch: ocfs2: Add an incompat feature flag OCFS2_FEATURE_INCOMPAT_CLUSTERINFO. - patches.fixes/ocfs2-Add-readahead-support-for-CoW.patch: ocfs2: Add readahead support for CoW. - patches.fixes/ocfs2-Add-readhead-during-CoW.patch: ocfs2: Add readhead during CoW. - patches.fixes/ocfs2-Add-some-trace-log-for-orphan-scan.patch: ocfs2: Add some trace log for orphan scan. - patches.fixes/ocfs2-Add-struct-file-to-ocfs2_refcount_cow.patch: ocfs2: Add struct file to ocfs2_refcount_cow. - patches.fixes/ocfs2-Add-support-for-heartbeat-global-mount-option.patch: ocfs2: Add support for heartbeat=global mount option. - patches.fixes/ocfs2-Adjust-masklog-flag-values.patch: ocfs2: Adjust masklog flag values. - patches.fixes/ocfs2-Avoid-to-evaluate-xattr-block-flags-again.patch: ocfs2: Avoid to evaluate xattr block flags again. - patches.fixes/ocfs2-Cache-system-inodes-of-other-slots.patch: ocfs2: Cache system inodes of other slots. - patches.fixes/ocfs2-Change-some-lock-status-member-in-ocfs2_lock_r.patch: ocfs2: Change some lock status member in ocfs2_lock_res to char. - patches.fixes/ocfs2-Fix-system-inodes-cache-overflow.patch: ocfs2: Fix system inodes cache overflow. - patches.fixes/ocfs2-Hold-ip_lock-when-set-clear-flags-for-indexed-.patch: ocfs2: Hold ip_lock when set/clear flags for indexed dir. - patches.fixes/ocfs2-Initialize-the-bktcnt-variable-properly-and-ca.patch: ocfs2: Initialize the bktcnt variable properly, and call it bucket_count. - patches.fixes/ocfs2-Remove-obscure-error-handling-in-direct_write.patch: ocfs2: Remove obscure error handling in direct_write. - patches.fixes/ocfs2-Remove-obsolete-comments-before-ocfs2_start_tr.patch: ocfs2: Remove obsolete comments before ocfs2_start_trans. - patches.fixes/ocfs2-Remove-ocfs2_sync_inode.patch: ocfs2: Remove ocfs2_sync_inode(). - patches.fixes/ocfs2-Remove-unused-old_id-in-ocfs2_commit_cache.patch: ocfs2: Remove unused old_id in ocfs2_commit_cache. - patches.fixes/ocfs2-Silence-unused-warning.patch: ocfs2: Silence unused warning. - patches.fixes/ocfs2-char-is-not-always-signed.patch: ocfs2: char is not always signed. - patches.fixes/ocfs2-cluster-Add-heartbeat-mode-configfs-parameter.patch: ocfs2/cluster: Add heartbeat mode configfs parameter. - patches.fixes/ocfs2-cluster-Add-mlogs-for-heartbeat-up-down-events.patch: ocfs2/cluster: Add mlogs for heartbeat up/down events. - patches.fixes/ocfs2-cluster-Bump-up-dlm-protocol-to-version-1.1.patch: ocfs2/cluster: Bump up dlm protocol to version 1.1. - patches.fixes/ocfs2-cluster-Check-slots-for-unconfigured-live-node.patch: ocfs2/cluster: Check slots for unconfigured live nodes. - patches.fixes/ocfs2-cluster-Create-debugfs-dir-files-for-each-regi.patch: ocfs2/cluster: Create debugfs dir/files for each region. - patches.fixes/ocfs2-cluster-Create-debugfs-files-for-live-quorum-a.patch: ocfs2/cluster: Create debugfs files for live, quorum and failed region bitmaps. - patches.fixes/ocfs2-cluster-Get-all-heartbeat-regions.patch: ocfs2/cluster: Get all heartbeat regions. - patches.fixes/ocfs2-cluster-Maintain-bitmap-of-failed-regions.patch: ocfs2/cluster: Maintain bitmap of failed regions. - patches.fixes/ocfs2-cluster-Maintain-bitmap-of-quorum-regions.patch: ocfs2/cluster: Maintain bitmap of quorum regions. - patches.fixes/ocfs2-cluster-Maintain-live-node-bitmap-per-heartbea.patch: ocfs2/cluster: Maintain live node bitmap per heartbeat region. - patches.fixes/ocfs2-cluster-Print-messages-when-adding-removing-he.patch: ocfs2/cluster: Print messages when adding/removing heartbeat regions. - patches.fixes/ocfs2-cluster-Print-messages-when-adding-removing-no.patch: ocfs2/cluster: Print messages when adding/removing nodes. - patches.fixes/ocfs2-cluster-Release-debugfs-file-elapsed_time_in_m.patch: ocfs2/cluster: Release debugfs file elapsed_time_in_ms. - patches.fixes/ocfs2-cluster-Reorganize-o2hb-debugfs-init.patch: ocfs2/cluster: Reorganize o2hb debugfs init. - patches.fixes/ocfs2-cluster-Show-per-region-heartbeat-elapsed-time.patch: ocfs2/cluster: Show per region heartbeat elapsed time. - patches.fixes/ocfs2-cluster-Track-bitmap-of-live-heartbeat-regions.patch: ocfs2/cluster: Track bitmap of live heartbeat regions. - patches.fixes/ocfs2-cluster-Track-number-of-global-heartbeat-regio.patch: ocfs2/cluster: Track number of global heartbeat regions. - patches.fixes/ocfs2-dlm-Add-message-DLM_QUERY_NODEINFO.patch: ocfs2/dlm: Add message DLM_QUERY_NODEINFO. - patches.fixes/ocfs2-dlm-Add-message-DLM_QUERY_REGION.patch: ocfs2/dlm: Add message DLM_QUERY_REGION. - patches.fixes/ocfs2-dlm-Expose-dlm_protocol-in-dlm_state.patch: ocfs2/dlm: Expose dlm_protocol in dlm_state. - patches.fixes/ocfs2-dlm-Migrate-lockres-with-no-locks-if-it-has-a-.patch: ocfs2/dlm: Migrate lockres with no locks if it has a reference. - patches.fixes/ocfs2-fix-memory-leak.patch: ocfs2: fix memory leak. - patches.fixes/ocfs2-pass-struct-file-to-ocfs2_prepare_inode_for_wr.patch: ocfs2: pass struct file* to ocfs2_prepare_inode_for_write. - patches.fixes/ocfs2-pass-struct-file-to-ocfs2_write_begin_nolock.patch: ocfs2: pass struct file* to ocfs2_write_begin_nolock. - patches.fixes/ocfs2-validate-bg_free_bits_count-after-update.patch: ocfs2: validate bg_free_bits_count after update. - patches.fixes/ocfs2_connection_find-returns-pointer-to-bad-structu.patch: ocfs2_connection_find() returns pointer to bad structure.- patches.fixes/btusb_ignore_malbec_wo_firmware.patch: ignore BT device before firmware transfer (bnc#658353).- patches.fixes/hfs-avoid-crash-in-hfs_bnode_create: hfs: avoid crash in hfs_bnode_create (bnc#552250).- patches.fixes/btusb_atheros3011_ignore.patch: ignore BT device before firmware transfer (bnc#658353).- patches.fixes/xfs-always-use-iget-in-bulkstat-dmapi: Build fix on - debug flavor.- patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack: netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279).- patches.fixes/Ocfs2-Fix-a-regression-bug-from-mainline-commit-6b93.patch: Ocfs2: Fix a regression bug from mainline commit(6b933c8e6f1a2f3118082c455eef25f9b1ac7b45). - patches.fixes/Ocfs2-Handle-empty-list-in-lockres_seq_start-for-dlm.patch: Ocfs2: Handle empty list in lockres_seq_start() for dlmdebug.c. - patches.fixes/Ocfs2-Re-access-the-journal-after-ocfs2_insert_exten.patch: Ocfs2: Re-access the journal after ocfs2_insert_extent() in dxdir codes. - patches.fixes/o2dlm-force-free-mles-during-dlm-exit.patch: o2dlm: force free mles during dlm exit. - patches.fixes/ocfs2-Fix-lockdep-warning-in-reflink.patch: ocfs2: Fix lockdep warning in reflink. - patches.fixes/ocfs2-Move-wanted-into-parens-of-ocfs2_resmap_resv_b.patch: ocfs2: Move 'wanted' into parens of ocfs2_resmap_resv_bits. - patches.fixes/ocfs2-Sync-inode-flags-with-ext2.patch: ocfs2: Sync inode flags with ext2. - patches.fixes/ocfs2-lockdep-Move-ip_xattr_sem-out-of-ocfs2_xattr_g.patch: ocfs2/lockdep: Move ip_xattr_sem out of ocfs2_xattr_get_nolock. - patches.fixes/ocfs2-net-fix-uninitialized-ret-in-o2net_send_messag.patch: ocfs2/net: fix uninitialized ret in o2net_send_message_vec(). - patches.fixes/ocfs2-update-ctime-when-changing-the-file-s-permissi.patch: ocfs2: update ctime when changing the file's permission by setfacl.- patches.drivers/drm-i915-fix-dpms-at-resume: drm/i915: Fix DPMS setups at resume (bnc#664149).- patches.drivers/alsa-sp1-hda-97-fix-initialization-for-hp-bnb-2011: ALSA: hda - Fix initialization for HP 2011 notebooks (bnc#666012).- patches.fixes/epoll-fix-max_user_watches-overflow.patch: EPOLL: fix max_user_watches overflow (bnc#652391). - patches.fixes/fs-fix-max_files-overflow.patch: FS: fix max_files overflow (bnc#652391). - patches.fixes/mm-alloc_large_system_hash-printk-overflow.patch: mm: alloc_large_system_hash() printk overflow on 16TB boot (bnc#652391).- patches.fixes/xfs-always-use-iget-in-bulkstat: xfs: always use iget in bulkstat (bnc#632317 CVE-2010-2943). - patches.fixes/xfs-always-use-iget-in-bulkstat-dmapi: xfs: always use iget in bulkstat (dmapi). - patches.fixes/xfs-remove-block-number-from-inode-lookup-code: xfs: remove block number from inode lookup code (bnc#632317 CVE-2010-2943). - patches.fixes/xfs-remove-block-number-from-inode-lookup-code-dmapi: xfs: remove block number from inode lookup code (dmapi). - patches.fixes/xfs-rename-xfs_iget_bulkstat-to-xfs_iget_untrusted: xfs: rename XFS_IGET_BULKSTAT to XFS_IGET_UNTRUSTED (bnc#632317 CVE-2010-2943). - patches.fixes/xfs-rename-xfs_iget_bulkstat-to-xfs_iget_untrusted-dmapi: xfs: rename XFS_IGET_BULKSTAT to XFS_IGET_UNTRUSTED (dmapi). - patches.fixes/xfs-validate-untrusted-inode-numbers-during-lookup: xfs: validate untrusted inode numbers during lookup (bnc#632317 CVE-2010-2943).- patches.fixes/serial-fix-reading-uninitialized-stack-memory-issues: serial: fix reading uninitialized stack memory issues (CVE-2010-4075 CVE-2010-4076 CVE-2010-4077 bnc#642309).- patches.fixes/phonet-some-signedness-bugs: phonet: some signedness bugs (bnc#662931).- patches.fixes/iscsi_tcp-change-to-logical-and.patch: iscsi_tcp: change & to && (bnc#658551). - patches.fixes/iscsi_tcp-fix-relogin-shutdown-hang.patch: iscsi_tcp: fix relogin/shutdown hang (bnc#658551).- patches.fixes/add-POLLPRI-to-sock_def_readable.patch: Fixup patch for series2git.- patches.fixes/exec-make-argv-envp-memory-visible-to-oom-killer: exec: make argv/envp memory visible to oom-killer (CVE-2010-4243 bnc#655220). - patches.kabi/exec-make-argv-envp-memory-visible-to-oom-killer: KABI: exec: make argv/envp memory visible to oom-killer.- patches.drivers/alsa-sp1-hda-96-add-quirk-for-hp-z-series: ALSA: hda - Add quirk for HP Z-series workstation (bnc#665499).- patches.arch/ix86-numa-option: ix86: add numa= option to allow booting on systems with not understood SRAT (bnc#662673).- patches.fixes/block-check-for-proper-length-of-iov-entries-earlier-in-blk_rq_map_user_iov: block: check for proper length of iov entries earlier in blk_rq_map_user_iov() (CVE-2010-4668 bnc#662202).- patches.fixes/irda-prevent-integer-underflow-in-irlmp_enumdevices: irda: prevent integer underflow in IRLMP_ENUMDEVICES (CVE-2010-4529 bnc#662031).- patches.fixes/econet-do-the-correct-cleanup-after-an-unprivileged-siocsifaddr: econet: Do the correct cleanup after an unprivileged SIOCSIFADDR. - patches.fixes/econet-fix-crash-in-aun_incoming: econet: Fix crash in aun_incoming() (CVE-2010-4342 bnc#658461). - patches.fixes/econet-fix-locking: econet: fix locking.- patches.fixes/misdn-add-support-for-group-membership-check: mISDN: Add support for group membership check (bnc#564423).- patches.drivers/qla2xxx-clear-local-references-on-dev_loss_tmo: qla2xxx: Clear local references of rport on device loss timeout notification from FC transport (bnc#651152).- Make printks a bit more informative, and close the remote possibility that writing a 64 bit value with all low 32 bits zero to the 32 bit sched_group->cpu_power could end up setting it to zero. - patches.fixes/sched-divide-by-zero-workaround-and-diag.diff: Refresh.- patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch: merged upstream, update Patch-mainline tag.- Ratelimit debug output. - patches.fixes/sched-divide-by-zero-workaround-and-diag.diff: Refresh.- supported.conf: mark hv_timesource as a supported module (bnc#650748)- patches.suse/staging-hv-add-code-to-create-the-device-directory-under-sys-block-hdx.patch: Staging: hv: Add code to create the device directory under /sys/block/hdX (bnc#659419).- patches.fixes/add-POLLPRI-to-sock_def_readable.patch: net: add POLLPRI to sock_def_readable() (bnc#660546).- patches.xen/xen3-patch-2.6.29: Fix a regression.- patches.fixes/novfs-fragment-size-fix.patch: novfs: NCP Fragments can be upto 64k in size (bnc#625965).- patches.suse/qla2xxx-add-ql2xtargetreset-parm: Enable patch.- Update to 2.6.32.28: - security fixes - bugfixes - obsoletes: - patches.fixes/acpi_fix_out_of_method_code.patch: Delete. - patches.fixes/hvc_console-fix-race-between-hvc_close-and-hvc_remove: - patches.fixes/hvc_console-fix-race-between-hvc_close-and-hvc_remove2: - kabi fixes: - patches.kabi/fuse-protect-linux-compat.h.patch: FUSE: protect linux/compat.h. - patches.kabi/kabi-fix-for-block-Deprecate-QUEUE_FLAG_CLUSTER-and-use-qu.patch: kabi fix for "block: Deprecate QUEUE_FLAG_CLUSTER and use queue_limits instead". - patches.drivers/bfa-2.1.2.1-s11-update: Refresh. - patches.drivers/igb-add-new-data-structure-for-handling-interrupts-a.patch: Refresh.- patches.suse/acpi-blacklist-dell-latitude-e6410.patch: ACPI: Disable Windows 7 and Vista compatibility for Dell Latitude E6410 (bnc#657763).- Added a workaround/diag with big fat warning in series.conf Hopefully, we'll get some useful info while preventing customer machines from exploding after weeks/months of uptime. - patches.fixes/sched-divide-by-zero-workaround-and-diag.diff: sched: debug divide by zero bug in find_busiest_group() (bnc#630970, bnc#661605).- patches.fixes/bdi-Fix-warnings-in-inode_to_bdi.patch: writeback: always use sb->s_bdi for writeback purposes (bnc#658254).- patches.fixes/tty-don-t-allow-reopen-when-ldisc-is-changing.patch: TTY: don't allow reopen when ldisc is changing (bnc#662722).- patches.suse/ext2-fsync-err: Delete obsolete and unused patch.- patches.xen/1028-interface.patch: Update Xen public headers. - patches.xen/1055-backends-thread-leak.patch: blkback/blktap/netback: Fix CVE-2010-3699 (CVE-2010-3699 bnc#655964). - patches.xen/1060-gntdev-range-check.patch: xen/gntdev: add range check for IOCTL_GNTDEV_UNMAP_GRANT_REF arguments. - patches.xen/1061-netback-extend-pull.patch: xen/netback: Always pull through PKT_PROT_LEN bytes into the linear part of an skb. - patches.xen/1062-xenbus-dev-leak.patch: xenbus: Fix memory leak on release. - Refresh other Xen patches.- patches.fixes/sunrpc-cache-completion.fix: Work around incorrect return type for wait_for_completion_interruptible_timeout (bnc#650067).- rpm/config.sh: Set OBS_PROJECT=SUSE:SLE-11:SP1.- patches.drivers/enic-return-err-in-vnic_dev_addr.patch: Delete this backport patch which is replaced by enic-add-ndo_-set-get-_vf_port-support-for-enic-dynamic-vnics.patch- patches.suse/rlim-0023-core-do-security-check-under-task_lock.patch: Delete. It's unreferenced and superseded by: patches.suse/rlim-0020-rlimits-do-security-check-under-task_lock.patch- patches.suse/sysctl-add-affinity_load_balancing: Delete.- patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch: Input: introduce 'notimeout' blacklist for Dell Vostro V13 (bnc#641105).- patches.fixes/xfrm-ipv6-fragment-locally-generated-packets.patch: ipv6: Fragment locally generated tunnel-mode IPSec6 packets as needed.- patches.fixes/isdn-hisax-replace-access-to-irq-stats.patch: isdn: hisax: Replace the bogus access to irq stats (bnc#648112). - patches.fixes/proc-stat-fix-scalability-of-irq-sum-of-all-cpu.patch: /proc/stat: fix scalability of irq sum of all cpu (bnc#648112). - patches.fixes/proc-stat-scalability-fix-backport.patch: /proc/stat: scalability of irq num per cpu (bnc#648112).- patches.arch/x86-uv-early-read-mmr.patch: x86 / UV: Introduce uv_early_read_mmr() (bnc#658829). - patches.arch/x86-uv-early-set-x2apic_extra_bits.patch: x86 / UV: Fix uv_acpi_madt_oem_check() (bnc#658829). - patches.arch/x86-uv-fix-max_pnode.patch: x86 / UV: Fix max_pnode (bnc#658829).- patches.arch/x86-uv-Enable-Westmere-support-on-SGI-UV.patch: x86 / UV: Enable Westmere support on SGI UV (bnc#659144).- patches.arch/x86-UV-hwclock-workaround.patch: x86 / UV: Workaround for interrupt-IOPort deadlock (bnc#655027).- patches.drivers/acer_wmi_init_rfkill.patch: Initialize wlan/bluetooth/wwan rfkill software block state (bnc#652842).- patches.fixes/acpi_fix_out_of_method_code.patch: ACPICA: Fix Scope() op in module level code (bnc#646542).- patches.drivers/mmc-test-bus-width: Refresh. Fixed wrong 1-bit width check.- patches.drivers/mmc-test-bus-width: Refreshed to v2 patch.- patches.fixes/cred-fix-get_task_cred-and-task_state-to-not-resurrect-dead-credentials: CRED: Fix get_task_cred() and task_state() to not resurrect dead credentials (bnc#654967).- Really update to 2.6.32.27 -- last time I forgot to add it to series.conf - patches.kabi/revert-physical-block-size-change.patch: Revert "block: Ensure physical block size is unsigned int". - patches.xen/xen3-patch-2.6.32.26-27: Refresh.- patches.xen/xen3-patch-2.6.32.26-27: Linux 2.6.32.27. I forgot to add this file during the 2.6.32.27 update. It causes some fixes for which patches were dropped.- patches.suse/bootsplash-scaler: Refresh. Fix crash when bootsplash animation is used (bnc#646908)- patches.kabi/xen3-patch-2.6.27: Refresh. Remove some kruft I accidentally added in previous patch.- patches.fixes/sunrpc_xprt_refcnt.fix: Fix possible crash due to refcount problem (bnc#650067).- patches.arch/s390-25-01-nmi-clock.patch: kernel: fix clock comparator revalidation (bnc#657415,LTC#68476). - patches.arch/s390-25-02-qeth_l3_vpassthru.patch: qeth: l3 add vlan hdr in passthru frames (bnc#657415,LTC#68532). - patches.arch/s390-25-03-qeth-offline-vipa-add.patch: qeth: enable VIPA add/remove for offline devices (bnc#657415,LTC#68589). - patches.arch/s390-25-04-hvc-iucv-unregister.patch: hvc_iucv: do not call iucv_unregister if iucv_register has failed (bnc#657415,LTC#67568).- patches.fixes/bonding-allow-arp_ip_targers-on-separate-vlans-to-use-arp-validation.patch: bonding: allow arp_ip_targets on separate vlans to use arp validation (bnc#648701). - patches.fixes/bonding-set-device-in-rlb-arp-packet-handler.patch: bonding: set device in RLB ARP packet handler (bnc#648701).- patches.arch/ppc64-kdump-unrace: hide paca.kexec_state from kABI checker.- patches.drivers/alsa-sp1-hda-95-hdmi-check-pincfg: ALSA: HDA: Remove unconnected PCM devices for Intel HDMI (bnc#655278).- Update to 2.6.32.27: - security fixes - bugfixes - obsoletes: - patches.arch/amd_nb_early_access_oops.patch - patches.arch/s390-25-01-nmi-clock.patch - patches.arch/x86-UV-Delete-unneeded-boot-messages.patch - patches.arch/x86-UV-Fix-initialization-of-max_pnode.patch - patches.arch/xpc_first_contact_when_active.patch - patches.arch/xpc_fix_xpc_get_fifo_entry_uv.patch - patches.arch/xpc_pass_nasid_to_gru_create_message_queue.patch - patches.arch/xpc_recv_msg_slots_wrap.patch - patches.fixes/bio-take-care-not-overflow-page-count-when-mapping-copying-user-data - patches.fixes/block-check-for-proper-length-of-iov-entries-in-blk_rq_map_user_iov - patches.fixes/block-limit-vec-count-in-bio_kmalloc-and-bio_alloc_map_data - patches.fixes/block-take-care-not-to-overflow-when-calculating-total-iov-length - patches.fixes/can-bcm-fix-minor-heap-overflow - patches.fixes/do_exit-make-sure-that-we-run-with-get_fs-user_ds - patches.fixes/hpet-unmap-unused-I-O-space.patch - patches.fixes/ipc-initialize-structure-memory-to-zero-for-compat-functions - patches.fixes/ipc-shm-fix-information-leak-to-userland - patches.fixes/kvm-x86-fix-information-leak-to-userland - patches.fixes/net-Limit-socket-I-O-iovec-total-length.patch - patches.fixes/net-clear-heap-allocation-for-ethtool_grxclsrlall - patches.fixes/net-sched-fix-some-kernel-memory-leaks - patches.fixes/net-truncate-recvfrom-and-sendto-length-to-int_max - patches.fixes/perf_events-fix-perf_counter_mmap-hook-in-mprotect - patches.fixes/rds-integer-overflow-in-rds-cmsg-handling - patches.fixes/sys_semctl-fix-kernel-stack-leakage - patches.fixes/tty-restore-tty_ldisc_wait_idle.patch - patches.fixes/v4l-dvb-ivtvfb-prevent-reading-uninitialized-stack-memory - patches.fixes/x25-prevent-crashing-when-parsing-bad-x-25-facilities - patches.xen/xen3-amd_nb_early_access_oops.patch- patches.suse/acpi-video-switch-option: ACPI video: Add video_switch_key option (bnc#647567).- patches.arch/ppc64-kdump-unrace: comment that kexec_state in paca struct occupies space that was padding, and enable the patch.- patches.drivers/alsa-sp1-hda-89-idt-automatic-dock-mic: Refresh. - patches.drivers/alsa-sp1-hda-92-add-idt-92hd89xx-codecs: ALSA: hda - Add support for IDT 92HD89XX codecs (bnc#658464). - patches.drivers/alsa-sp1-hda-93-add-idt-92hd90bxx-codecs: ALSA: hda - Adding support for new IDT 92HD90BXX and 92HD91BXX codecs (bnc#658464). - patches.drivers/alsa-sp1-hda-94-enable-dmic-on-idt-92hd87b: ALSA: HDA: Enable digital mic on IDT 92HD87B (bnc#658464).- patches.drivers/mmc-fix-hibernation-restore: Refresh. Don't remove PM_POST_HIBERNATION case for kernel-space S4.- patches.fixes/rt3090-fix-unable-to-scan-ap.patch: Fix RT3090 scan AP function (bnc#656471).- patches.fixes/do_exit-make-sure-that-we-run-with-get_fs-user_ds: do_exit(): make sure that we run with get_fs() == USER_DS (CVE-2010-4258 bnc#657350).- patches.drivers/mmc-fix-hangs-with-sd-at-pm: mmc: fix all hangs related to mmc/sd card insert/removal during suspend/resume (bnc#646702). - patches.drivers/mmc-fix-hibernation-restore: mmc: Fix re-probing after hibernation (bnc#646702). - patches.drivers/mmc-sdio-fix-SDIO-suspend-resume-regression: mmc: sdio: fix SDIO suspend/resume regression (bnc#646702). - patches.kabi/kabi-fix-up-struct-mmc_host: Fix up kABI for struct mmc_host (bnc#646702).- patches.drivers/memstick-Fix-setup-for-JMicron-38x-controllers: memstick: Fix setup for JMicron 38x controllers (bnc#653148). - patches.drivers/memstick-add-support-for-JMicron-new-controllers: memstick: Add support for JMicron JMB 385 and 390 controllers (bnc#653148). - patches.drivers/memstick-set-PMOS-values-for-JMicron-38x: memstick: Set PMOS values propery for JMicron 38x controllers (bnc#653148).- patches.drivers/hp_wmi_update_to_2_6_37_rc4.patch: Update hp-wmi to latest mainline version (bnc#657324).- kabi/severities: Ignore changes to drivers/xen/core/{domctl,pcpu}, these are purely internal interfaces.- patches.drivers/alsa-sp1-hda-90-idt-92hd8x-beep: ALSA: hda - Enable beep for IDT92HD87 / 88 codecs (bnc#657412). - patches.drivers/alsa-sp1-hda-91-fix-beep-frequency-on-idt-codecs: ALSA: hda - Fix beep frequency on IDT 92HD73xx and 92HD71Bxx codecs (bnc#657412).- patches.drivers/alsa-sp1-hda-89-idt-automatic-dock-mic: ALSA: hda - Fix automatic MIC switching and include dock MIC for IDT codecs (bnc#650185).- patches.fixes/libfcoe-Use-fka_period-as-periodic-timeouts-to-age: libfcoe: Use fka_period as periodic timeouts to age out fcf if (bnc#615630). - patches.fixes/libfcoe-fix-lenient-aging-of-FCF-advertisements: libfcoe: fix lenient aging of FCF advertisements (bnc#615630). - patches.fixes/libfcoe-update-FIP-FCF-D-flag-from-advertisments: libfcoe: update FIP FCF D flag from advertisments (bnc#615630).- patches.fixes/libfc-add-print-of-exchange-id-for-debugging-fc_fcp: libfc: add print of exchange id for debugging fc_fcp (bnc#654530). - patches.fixes/libfc-do-not-fc_io_compl-on-fsp-w-o-any-scsi_cmnd-a: libfc: do not fc_io_compl on fsp w/o any scsi_cmnd associated (bnc#654530). - patches.fixes/libfc-fix-exchange-being-deleted-when-the-abort-its: libfc: fix exchange being deleted when the abort itself is timed out (bnc#654530). - patches.fixes/libfc-fix-fc_tm_done-not-freeing-the-allocated-fsp: libfc: fix fc_tm_done not freeing the allocated fsp pkt (bnc#654530). - patches.fixes/libfc-the-timeout-for-the-REC-itself-is-2-R_A_TOV: libfc: the timeout for the REC itself is 2 * R_A_TOV_els (bnc#654530).- patches.drivers/ixgbe-disable-tx-engine-before-disabling-tx-laser: ixgbe: disable tx engine before disabling tx laser (bnc#654350). - patches.drivers/ixgbe-fix-wrong-offset-to-fc_frame_header-in-ixgbe_: ixgbe: fix wrong offset to fc_frame_header in ixgbe_fcoe_ddp (bnc#654350). - patches.drivers/ixgbe-if-ixgbe_copy_dcb_cfg-is-going-to-fail-learn: ixgbe: if ixgbe_copy_dcb_cfg is going to fail learn about it early (bnc#654350). - patches.drivers/ixgbe-ixgbe_down-needs-to-stop-dev_watchdog: ixgbe: ixgbe_down needs to stop dev_watchdog (bnc#654350). - patches.drivers/ixgbe-properly-toggling-netdev-feature-flags-when-d: ixgbe: properly toggling netdev feature flags when disabling FCoE (bnc#654350). - patches.drivers/ixgbe-use-GFP_ATOMIC-when-allocating-FCoE-DDP-conte: ixgbe: use GFP_ATOMIC when allocating FCoE DDP context (bnc#654350).- patches.fixes/usb-ehci-amd-periodic-frame-list-table-quirk.patch: USB: EHCI: AMD periodic frame list table quirk (bnc#652293).- patches.drivers/qla2xxx-drop-reference-before-wait-for-completion: Update to version found in mainline.- patches.suse/acpi-blacklist-dell-vostro-v13.patch: ACPI: Disable Windows 7 and Vista compatibility for Dell Vostro V13 (bnc#602838).- Update Xen patches to 2.6.32.26. - patches.xen/1035-gnttab-eagain.patch: Fold in c/s 1052. - patches.xen/1050-evtchn-cpu-clear.patch: xen/evtchn: clear secondary CPUs' cpu_evtchn_mask[] after restore (bnc#651626). - patches.xen/1053-blktap2-run-queue-sem.patch: blktap2: fix synchronization in blktap_device_run_queue(). - patches.xen/xen3-x86-Add-array-variants-for-setting-memory-to-wc: arch/x86: Add array variants for setting memory to wc caching (bnc#654837). - Update x86_64/xen config file.- disable patches.arch/ppc64-kdump-unrace due to kabi breakage- patches.arch/ppc64-kdump-unrace: Fix race in kexec shutdown (bnc#654150). - patches.fixes/scsi-correct-sr_drive_status: sr: fix sr_drive_status handling when initialization required (bnc#653800).- patches.arch/x86-Add-array-variants-for-setting-memory-to-wc: arch/x86: Add array variants for setting memory to wc caching (bnc#654837).- Update reference module symbol versions.- patches.drivers/jmb388-mmc-fix: mmc: Add support for JMicron 388 SD/MMC controller (bnc#646226). - patches.drivers/mmc-test-bus-width: mmc: Test bus-width for old MMC devices (bnc#646226).- patches.kabi/smp_ops.patch: Revert "x86, kexec: Make sure to stop all CPUs before exiting the kernel" kabi changes. - patches.kabi/revert-x86-kexec-Make-sure-to-stop-all-CPUs-before-e.patch: Delete.- patches.xfs/xfs-ensure-non-negative-f_ffree.patch: xfs: ensure f_ffree returned by statfs() is non-negative (bnc#595215).- patches.fixes/net-truncate-recvfrom-and-sendto-length-to-int_max: net: Truncate recvfrom and sendto length to INT_MAX (CVE-2010-4160 bnc#652939).- patches.fixes/backport_ricoh_fw_chipset_bug.patch: Fix hang at S4 for Ricoh fw chips (bnc#648647).- Update to 2.6.32.26: - security fixes - bugfixes - obsoletes: - patches.arch/ioremap_flush.patch - patches.arch/vmcore_ioremap_cache.patch - patches.arch/x86-uv-xpc_disconnect_fix.patch - patches.arch/x86_amd_mtrr_fix_fam_12_and_higher.patch - patches.fixes/fc_sdev_blocked.patch - patches.fixes/kvm-constant_tsc-0001-KVM-SVM-Adjust-tsc_offset-only-if-tsc_unstable.patch - patches.fixes/scsi-gdth-integer-overflow-in-ioctl - patches.fixes/sd-namespace-exhaustion-check.patch - patches.kabi/revert-x86-kexec-Make-sure-to-stop-all-CPUs-before-e.patch: Revert "x86, kexec: Make sure to stop all CPUs before exiting the kernel". - patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: Refresh. - patches.suse/block-add-mangle-devt-switch: Refresh.- patches.fixes/scsi-gdth-integer-overflow-in-ioctl: gdth: integer overflow in ioctl (CVE-2010-4157 bnc#652940).- patches.fixes/tcp-increase-tcp_maxseg-socket-option-minimum: tcp: Increase TCP_MAXSEG socket option minimum (CVE-2010-4165 bnc#653258).- patches.fixes/x25-prevent-crashing-when-parsing-bad-x-25-facilities: x25: Prevent crashing when parsing bad X.25 facilities (CVE-2010-4164 bnc#653260).- patches.fixes/rds-integer-overflow-in-rds-cmsg-handling: rds: Integer overflow in RDS cmsg handling (CVE-2010-4175 bnc#654581).- patches.fixes/perf_events-fix-perf_counter_mmap-hook-in-mprotect: perf_events: Fix perf_counter_mmap() hook in mprotect() (CVE-2010-4169 bnc#653930).- patches.arch/s390-24-01-zfcp-fix-lookup-dequeue.patch: zfcp: Cancel gid_pn work when removing port (bnc#653266,LTC#68146). - patches.arch/s390-24-02-vmlogrdr-purge-after-recording-off.patch: vmlogrdr: purge after recording is switched off (bnc#653266,LTC#68182).- Add enic fixes and features under the philips-eco symbol. Waiting on an ECO to unmask (bnc#638258)- patches.fixes/can-bcm-fix-minor-heap-overflow: can-bcm: fix minor heap overflow (CVE-2010-3874 bnc#651218).- patches.fixes/filter-make-sure-filters-dont-read-uninitialized-memory: filter: make sure filters dont read uninitialized memory (CVE-2010-4158 bnc#652563). - patches.fixes/net-optimize-berkeley-packet-filter-bpf-processing: net: optimize Berkeley Packet Filter (BPF) processing.- patches.fixes/bio-take-care-not-overflow-page-count-when-mapping-copying-user-data: bio: take care not overflow page count when mapping/copying user data (CVE-2010-4162 bnc#652945). - patches.fixes/block-check-for-proper-length-of-iov-entries-in-blk_rq_map_user_iov: block: check for proper length of iov entries in blk_rq_map_user_iov() (CVE-2010-4163 bnc#652945). - patches.fixes/block-limit-vec-count-in-bio_kmalloc-and-bio_alloc_map_data: block: limit vec count in bio_kmalloc() and bio_alloc_map_data() (bnc#652945). - patches.fixes/block-take-care-not-to-overflow-when-calculating-total-iov-length: block: take care not to overflow when calculating total iov length (bnc#652945).- patches.apparmor/apparmor-fix-handling-of-network-permissions: apparmor: Fix handling of network permissions (bnc#654701).- patches.fixes/nfs4-add-release-lockowner: NFSv4: Add support for the RELEASE_LOCKOWNER operation (bnc#649548).- patches.fixes/bounce_pfn-raise-limit-on-mem-add: Block: set the bounce_pfn to the actual DMA limit rather than to max memory (bnc#637542). - patches.fixes/ibmvfc-fix-del-race: ibmvfc: Fix rport add/delete race resulting in oops (bnc#628180).- patches.fixes/tty-restore-tty_ldisc_wait_idle.patch: TTY: restore tty_ldisc_wait_idle (bnc#642043).- patches.xen/1035-gnttab-eagain.patch: xenpaging: handle GNTST_eagain in kernel drivers (FATE#310510). - patches.xen/1037-x86-pin-vs-vmalloc_sync_all.patch: xen/x86: synchronize vmalloc_sync_all() with mm_{,un}pin(). - patches.xen/1038-evtchn-handle-timer-first.patch: xen/evtchn: Handle VIRQ_TIMER before any other hardirq in event loop. - patches.xen/1040-pcifront-rescan-claim.patch: pcifront: claim PCI resources also on rescan (bnc#643477). - patches.xen/1041-pcifront-irq-not-evtchn.patch: pcifront: fix freeing of device (bnc#643477). - patches.xen/1045-netback-sched-list-remove.patch: netback: take net_schedule_list_lock when removing entry from net_schedule_list. - patches.xen/xen-mem-hotplug: xen/acpi: Add memory hotadd to pvops dom0 (bnc#651066). - patches.xen/xen-pcpu-hotplug: xen/acpi: Export host physical CPU information to dom0 (bnc#651066). - patches.xen/xen-x86-msr-on-pcpu: introduce {rd,wr}msr_safe_on_pcpu() and add/enable users. - Update other Xen patches (bnc#652024). - Update Xen config files.- patches.fixes/0001-USB-sd-sd_start_stop_device-proper-error-codes.patch: USB: sd: sd_start_stop_device proper error codes (bnc#639803). - patches.fixes/0003-SCSI-sd-sd_start_stop_device-error-handling.patch: SCSI:sd: sd_start_stop_device() error handling (bnc#639803). - patches.fixes/SCSI-sd-error-handling-in-sd_sync_cache.patch: SCSI:sd:error handling in sd_sync_cache() (bnc#639803).- patches.fixes/0001-USB-sd-sd_start_stop_device-proper-error-codes.patch: USB: sd: sd_start_stop_device proper error codes (bnc#639803). - patches.fixes/0003-SCSI-sd-sd_start_stop_device-error-handling.patch: SCSI:sd: sd_start_stop_device() error handling (bnc#639803). - patches.fixes/SCSI-sd-error-handling-in-sd_sync_cache.patch: SCSI:sd:error handling in sd_sync_cache() (bnc#639803).- patches.arch/ioremap_flush.patch: mm, x86: Saving vmcore with non-lazy freeing of vmas (bnc#640878). - patches.arch/vmcore_ioremap_cache.patch: x86, kdump: Change copy_oldmem_page() to use cached addressing (bnc#640878).- patches.arch/s390-kvm-tlb-fix.patch: [S390] kvm: Fix badness at include/asm/mmu_context.h:83 (bnc#652603).- supported.conf: mark hyperv drivers as supported (bnc#650748)- patches.fixes/avoid-pgoff-overflow-in-remap_file_pages: Avoid pgoff overflow in remap_file_pages (bnc#645659).- patches.fixes/net-clear-heap-allocation-for-ethtool_grxclsrlall: net: clear heap allocation for ETHTOOL_GRXCLSRLALL (bnc#649187 CVE-2010-3861).- patches.fixes/kvm-x86-fix-information-leak-to-userland: KVM: x86: fix information leak to userland (bnc#651596 CVE-2010-3881).- patches.fixes/novfs-unlink-oops: novfs: Fix for the issue of kernel dumps core on restart (bnc#641811).- patches.suse/staging-hv-fixed-issue-with-possible-race-condition-on-channel-init.patch: Staging: hv: Fixed issue with possible race condition on channel init (bnc#650748).- supported.conf: added hv_utils as an unsupported, but listed, kernel module.- patches.suse/staging-hv-added-autoload-of-hv_utils.ko-driver.patch: Staging: hv: Added autoload of hv_utils.ko driver (bnc#650487).- patches.fixes/fix-pktcdvd-ioctl-dev_minor-range-check: Fix pktcdvd ioctl dev_minor range check (bnc#642486 CVE-2010-3437).- patches.fixes/v4l-dvb-ivtvfb-prevent-reading-uninitialized-stack-memory: V4L/DVB: ivtvfb: prevent reading uninitialized stack memory (bnc#642313 CVE-2010-4082).- patches.fixes/ipc-initialize-structure-memory-to-zero-for-compat-functions: ipc: initialize structure memory to zero for compat functions (bnc#642314 CVE-2010-4073). - patches.fixes/ipc-shm-fix-information-leak-to-userland: ipc: shm: fix information leak to userland (bnc#642314 CVE-2010-4072). - patches.fixes/sys_semctl-fix-kernel-stack-leakage: sys_semctl: fix kernel stack leakage (bnc#642314 CVE-2010-4083).- Update config files: Enable newly introduced config CONFIG_INPUT_SPARSEKMAP=m on i386 and x86_64, keep it disabled on ppc and ia64 - patches.drivers/acer_wmi_3g_rfkill_sysfs_file.patch: Add 3G rfkill sysfs file (bnc#636672). - patches.drivers/acer_wmi_dmi_check_wireless_device_availability.patch: Detect the WiFi/Bluetooth/3G devices available (bnc#636672). - patches.drivers/acer_wmi_hotkey_events_support.patch: Add acer wmi hotkey events support (bnc#636672). - patches.drivers/acer_wmi_launch_manager_mode.patch: Enabled Acer Launch Manager mode (bnc#636672). - patches.drivers/input-add-generic-support-for-sparse-keymaps.patches: Input: add generic support for sparse keymaps (bnc#636672). - supported.conf:- patches.suse/SoN-31-fix-kernel-bug-with-multiple-swapfiles: fix mess up on swap with multi files from same nfs server (FATE#303834). Fix kABI issues as well.- patches.fixes/ocfs2-use-ocfs2_alloc_dinode_update_counts-instead-o.patch: Refresh to fix minor merge error found during testing.- Update to 2.6.32.25: - security fixes - bugfixes - obsoletes: - patches.fixes/execve-improve-interactivity-with-large-arguments - patches.fixes/execve-make-responsive-to-sigkill-with-large-arguments - patches.fixes/rds-de-pessimize-rds_page_copy_user.patch - patches.fixes/rose-fix-signedness-issues-wrt-digi-count - patches.fixes/sched-fix-kill-migration-thread-in-CPU_POST_DEAD-suspend-regression - patches.fixes/setup_arg_pages-diagnose-excessive-argument-size - patches.fixes/tcp-Fix-4GB-writes-on-64-bit.patch - patches.fixes/wext-fix-potential-private-ioctl-memory-content-leak - patches.arch/acpi-osi-dmi-table-backport.patch: Refresh. - patches.arch/x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch: Refresh. - patches.drivers/v4l-disable-dangerous-buggy-compat-function.patch: Refresh. - patches.kabi/revert-mm-Move-vma_stack_continue-into-mm.h.patch: Revert "mm: Move vma_stack_continue into mm.h". - patches.xen/xen3-patch-2.6.32.24-25: Linux 2.6.32.25.- patches.arch/s390-23-01-zfcp-fix-p2p-refcount.patch: zfcp: Fix reference counter for point-to-point port (bnc#643173,LTC#67542). - patches.arch/s390-23-02-dasd-fix-dump_sense_dbf.patch: dasd: fix dump_sense_dbf (bnc#643173,LTC#67610). - patches.arch/s390-23-03-dasd-fix-cc1-handling.patch: dasd: fix unsolicited interrupt recognition (bnc#643173,LTC#67886). - patches.arch/s390-23-04-dasd-fix-unimplemented-diag-function.patch: dasd: Fix unimplmentes DIAG function (bnc#643173,LTC#67938). - patches.arch/s390-23-05-qeth-osxosm.patch: qeth: support for OSA CHPID types OSX and OSM (bnc#643173,LTC#66974). - patches.arch/s390-23-06-cio-fix-cancel-halt-clear.patch: cio: prevent kernel panic in I/O cancel function (bnc#643173,LTC#67990).- patches.fixes/fcoe-fix-offload-feature-flag-change: fcoe: fix offload feature flag change from netdev (bnc#650116). - patches.fixes/fcoe-sync-with-upstream-patches: Fix kABI. - patches.fixes/libfc-call-fc_remote_port_chkready-under-the-host-lock: libfc: call fc_remote_port_chkready under the host lock (bnc#650116). - patches.fixes/libfc-do-not-return-error-from-fc_fcp_send_abort: libfc: do not return error from fc_fcp_send_abort with null seq_ptr (bnc#650113). - patches.fixes/libfc-fix-NULL-pointer-dereference-bug: libfc: fix NULL pointer dereference bug in fc_fcp_pkt_release (bnc#650113). - patches.fixes/libfc-fix-setting-of-rport-dev-loss: libfc: fix setting of rport dev loss (bnc#650116).- patches.fixes/net-Limit-socket-I-O-iovec-total-length.patch: net: Limit socket I/O iovec total length to INT_MAX (bnc#650128). - patches.fixes/tcp-Fix-4GB-writes-on-64-bit.patch: tcp: Fix >4GB writes on 64-bit (bnc#650128).- patches.drivers/ixgbe-DDP-fixes: ixgbe: DDP fixes (bnc#650111). - patches.fixes/fcoe-sync-with-upstream-patches: open-fcoe: Sync with upstream patches (bnc#649820). - patches.fixes/libfc-Fix-incorrect-locking-and-unlocking-in-FCP: libfc: Fix incorrect locking and unlocking in FCP (bnc#647775). - patches.fixes/libfc-fix-codes-returned-to-scsi-ml: libfc: fix codes returned to scsi-ml (bnc#650109).- patches.xen/xen-add_efi_memmap-update-e820_saved.patch: Delete.- patches.suse/add_efi_memmap-update-e820_saved.patch: Pass add_efi_memmap entries to kexec'd kernel (bnc#603738). - patches.xen/xen-add_efi_memmap-update-e820_saved.patch: Pass add_efi_memmap entries to kexec'd kernel (bnc#603738).- patches.fixes/hpet-unmap-unused-I-O-space.patch: hpet: unmap unused I/O space (bnc#629908 bnc#629901).- patches.drivers/alsa-sp1-hda-88-idt-workaround-for-master-mute: ALSA: HDA: Sigmatel: work around incorrect master muting (bnc#649257).- patches.drivers/alsa-sp1-hda-87-Change-BTL-amp-level-on-some-HP-notebooks: ALSA: hda - Change BTL amp level on some HP notebooks (bnc#649231).- patches.fixes/qla2xxx-correct-prli-failed-rsp: PLOGI failure message occurs and no LUN is detected (bnc#612729).- patches.drivers/alsa-sp1-hda-86-hdmi-support-infoframe-for-DisplayPort: ALSA: hdmi - support infoframe for DisplayPort (bnc#647497).- patches.drivers/alsa-sp1-hda-83-Fix-wrong-SPDIF-NID-for-CA0110: ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 (bnc#564324). - patches.drivers/alsa-sp1-hda-84-Add-some-workarounds-for-Creative-IBG: ALSA: hda - Add some workarounds for Creative IBG (bnc#564324). - patches.drivers/alsa-sp1-hda-85-Add-workarounds-for-CT-IBG-controllers: ALSA: hda - Add workarounds for CT-IBG controllers (bnc#564324).- patches.fixes/rds-de-pessimize-rds_page_copy_user.patch: De-pessimize rds_page_copy_user (bnc#647392).- patches.arch/x86_amd_mtrr_fix_fam_12_and_higher.patch: x86, mtrr: Assume SYS_CFG exists on all future AMD CPUs (bnc#648308).- patches.arch/acpi_ec_delay_param.patch: ACPI: Make Embedded Controller command timeout delay configurable (bnc#639261).- patches.suse/SoN-31-fix-kernel-bug-with-multiple-swapfiles: Revert(as it breaks kABI).- patches.suse/SoN-31-fix-kernel-bug-with-multiple-swapfiles: fix mess up on swap with multi files from same nfs server (FATE#303834).- patches.drivers/alsa-sp1-hda-82-acer-quirk-mask: ALSA: hda - Apply ideapad quirk to Acer laptops with Cxt5066 (bnc#638860).- patches.drivers/v4l-disable-dangerous-buggy-compat-function.patch: v4l: disable dangerous buggy compat function (bnc#646045, CVE-2010-2963).- patches.drivers/sgi-mmtimer-holdoff-fix: Eliminate long interval timer holdoffs. (bnc#644373)- patches.fixes/md-external-bitmap-unplug: md: Unplug write to external bitmap before waiting (bnc#623307).- patches.arch/acpi-osi-dmi-table-backport.patch: ACPI: Backport missing entries of acpi_osi_dmi_table from upstream.- patches.fixes/sd-namespace-exhaustion-check.patch: sd name space exhaustion causes system hang (bnc#643249).- patches.fixes/nfs-support-local_lock: nfs: introduce mount option '-olocal_lock' to make locks local (bnc#609196).- patches.fixes/nfs-dont-decode-GETATTR-if-DELEGRETURN-returned-error.patch: NFS: don't try to decode GETATTR if DELEGRETURN returned error (bnc#624850).- patches.fixes/isdn-avoid-calling-tty_ldisc_flush.patch: isdn: avoid calling tty_ldisc_flush() in atomic context (bnc#573330).- patches.fixes/libfc-possible-race-could-panic-system: libfc: possible race could panic system due to NULL fsp->cmd (bnc#644350).- patches.fixes/fcoe-set-fcoe-controller-mode: fcoe: set FCoE controller mode as FIP for fcoe.ko (bnc#640278).- patches.fixes/libfc-IO-errors-on-link-down-due-to-cable-unplug: libfc: IO errors on link down due to cable unplug (bnc#644219). - patches.fixes/libfc-use-DID_TRANSPORT_DISRUPTED: libfc: use DID_TRANSPORT_DISRUPTED while lport not ready (bnc#644219).- patches.fixes/proc-pid-smaps-export-amount-of-anonymous-memory-in-a-mapping.patch: Export the number of anonymous pages in a mapping via smaps (bnc#596646).- Import new s390x kabi files.- patches.fixes/dlm-allow-dlm-do-recovery-during-shutdown: dlm: allow dlm do recovery during shutdown. - patches.fixes/fix-typos-concerning-initializse: fix typos concerning "initiali[zs]e". - patches.fixes/fs-ocfs2-dlm-add-missing-spin_unlock: fs/ocfs2/dlm: Add missing spin_unlock. - patches.fixes/fs-ocfs2-dlm-drop-memory-allocation-cast: fs/ocfs2/dlm: Drop memory allocation cast. - patches.fixes/fs-ocfs2-dlm-use-kstrdup: fs/ocfs2/dlm: Use kstrdup. - patches.fixes/fs-ocfs2-remove-unnecessary-casts-of-private_data: fs/ocfs2: Remove unnecessary casts of private_data. - patches.fixes/include-cleanup-update-gfp-h-and-slab-h-includes-to-prepare-for-breaking-implicit-slab-h-inclusion-from-percpu-h: include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h. - patches.fixes/o2net-disallow-o2net-accept-connection-request-from-itself: O2net: Disallow o2net accept connection request from itself. - patches.fixes/o2net-log-socket-state-changes: o2net: log socket state changes. - patches.fixes/ocfs2-Zero-the-tail-cluster-when-extending-past-i_si.patch: Refresh. - patches.fixes/ocfs2-add-extent-block-stealing-for-ocfs2-v5.patch: Refresh. - patches.fixes/ocfs2-add-parenthesis-to-wrap-the-check-for-o_direct: ocfs2: Add parenthesis to wrap the check for O_DIRECT. - patches.fixes/ocfs2-avoid-a-gcc-warning-in-ocfs2_wipe_inode: ocfs2: Avoid a gcc warning in ocfs2_wipe_inode(). - patches.fixes/ocfs2-avoid-unnecessary-block-mapping-when-refreshing-quota-info: ocfs2: Avoid unnecessary block mapping when refreshing quota info. - patches.fixes/ocfs2-block-signals-for-mkdir-link-symlink-o_creat: ocfs2: Block signals for mkdir/link/symlink/O_CREAT. - patches.fixes/ocfs2-dlm-avoid-dlm-ast_lock-lockres-spinlock-dependency-break: ocfs2:dlm: avoid dlm->ast_lock lockres->spinlock dependency break. - patches.fixes/ocfs2-dlm-don-t-access-beyond-bitmap-size: ocfs2/dlm: don't access beyond bitmap size. - patches.fixes/ocfs2-dlm-increase-o2dlm-lockres-hash-size: ocfs2/dlm: Increase o2dlm lockres hash size. - patches.fixes/ocfs2-dlm-make-o2dlm-domain-join-leave-messages-kern_notice: ocfs2/dlm: Make o2dlm domain join/leave messages KERN_NOTICE. - patches.fixes/ocfs2-dlm-remove-bug_on-from-migration-in-the-rare-case-of-a-down-node: ocfs2/dlm: Remove BUG_ON from migration in the rare case of a down node. - patches.fixes/ocfs2-do-not-map-blocks-from-local-quota-file-on-each-write: ocfs2: Do not map blocks from local quota file on each write. - patches.fixes/ocfs2-don-t-duplicate-pages-past-i_size-during-cow: ocfs2: Don't duplicate pages past i_size during CoW. - patches.fixes/ocfs2-don-t-retry-xattr-set-in-case-value-extension-fails: ocfs2: Don't retry xattr set in case value extension fails. - patches.fixes/ocfs2-fix-deadlock-when-allocating-page: ocfs2: Fix deadlock when allocating page. - patches.fixes/ocfs2-fix-estimate-of-credits-needed-for-quota-allocation: ocfs2: Fix estimate of credits needed for quota allocation. - patches.fixes/ocfs2-fix-hole-punching-to-correctly-do-cow-during-cluster-zeroing: Ocfs2: Fix hole punching to correctly do CoW during cluster zeroing. - patches.fixes/ocfs2-fix-lock-inversion-in-quotas-during-umount: ocfs2: Fix lock inversion in quotas during umount. - patches.fixes/ocfs2-fix-null-pointer-deref-when-writing-local-dquot: ocfs2: Fix NULL pointer deref when writing local dquot. - patches.fixes/ocfs2-fix-quota-locking: ocfs2: Fix quota locking. - patches.fixes/ocfs2-fix-use-after-free-on-remount-read-only: ocfs2: Fix use after free on remount read-only. - patches.fixes/ocfs2-flush-drive-s-caches-on-fdatasync: ocfs2: Flush drive's caches on fdatasync. - patches.fixes/ocfs2-make-__ocfs2_page_mkwrite-handle-file-end-properly: ocfs2: make __ocfs2_page_mkwrite handle file end properly. - patches.fixes/ocfs2-make-nointr-a-default-mount-option: ocfs2: Make nointr a default mount option. - patches.fixes/ocfs2-make-ocfs2_adjust_resv_from_alloc-simple: ocfs2: make ocfs2_adjust_resv_from_alloc simple. - patches.fixes/ocfs2-make-ocfs2_extend_trans-really-extend: ocfs2: Make ocfs2_extend_trans() really extend. - patches.fixes/ocfs2-make-ocfs2_find_cpos_for_left_leaf-public: Ocfs2: Make ocfs2_find_cpos_for_left_leaf() public. - patches.fixes/ocfs2-make-ocfs2_journal_dirty-void: ocfs2: Make ocfs2_journal_dirty() void. - patches.fixes/ocfs2-make-xattr-extension-work-with-new-local-alloc-reservation: ocfs2: make xattr extension work with new local alloc reservation. - patches.fixes/ocfs2-make-xattr-reflink-work-with-new-local-alloc-reservation: ocfs2: Make xattr reflink work with new local alloc reservation. - patches.fixes/ocfs2-move-orphan-scan-work-to-ocfs2_wq: ocfs2: Move orphan scan work to ocfs2_wq. - patches.fixes/ocfs2-one-more-warning-fix-in-ocfs2_file_aio_write-v2: ocfs2: one more warning fix in ocfs2_file_aio_write(), v2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit. - patches.fixes/ocfs2-optimize-ocfs2-truncate-to-use-ocfs2_remove_btree_range-instead: Ocfs2: Optimize ocfs2 truncate to use ocfs2_remove_btree_range() instead. - patches.fixes/ocfs2-optimize-punching-hole-code: Ocfs2: Optimize punching-hole code. - patches.fixes/ocfs2-print-node-when-tcp-fails: ocfs2: print node # when tcp fails. - patches.fixes/ocfs2-replace-ushort_max-short_max-and-short_min-with-ushrt_max-shrt_max-and-shrt_min: ocfs2: replace USHORT_MAX, SHORT_MAX and SHORT_MIN with USHRT_MAX, SHRT_MAX and SHRT_MIN. - patches.fixes/ocfs2-reset-status-if-we-want-to-restart-file-extension: ocfs2: Reset status if we want to restart file extension. - patches.fixes/ocfs2-reset-xattr-value-size-after-xa_cleanup_value_truncate: ocfs2: Reset xattr value size after xa_cleanup_value_truncate(). - patches.fixes/ocfs2-silence-gcc-warning-in-ocfs2_write_zero_page: ocfs2: Silence gcc warning in ocfs2_write_zero_page(). - patches.fixes/ocfs2-tighten-up-strlen-checking: ocfs2: tighten up strlen() checking. - patches.fixes/ocfs2-trivial-code-cleanup-for-allocation-reservation: ocfs2/trivial: Code cleanup for allocation reservation. - patches.fixes/ocfs2-update-gfp-slab-h-includes: ocfs2: update gfp/slab.h includes. - patches.fixes/ocfs2-use-ocfs2_alloc_dinode_update_counts-instead-o.patch: Refresh. - patches.fixes/ocfs2-wrap-signal-blocking-in-void-functions: ocfs2: Wrap signal blocking in void functions. - patches.fixes/tree-wide-assorted-spelling-fixes: tree-wide: Assorted spelling fixes. - patches.fixes/tree-wide-fix-typos-offest-offset: tree-wide: fix typos "offest" -> "offset" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit. - patches.suse/ocfs2-allocation-resrvations.patch: Refresh.- patches.drivers/lis3-add-support-for-hp-2011-bnb: Refresh. Yet another machine entry.- patches.drivers/lis3-add-support-for-hp-2011-bnb: Refresh. Add a DMI entry for another new model.- patches.fixes/libfc-add-retry-logic-to-lport: libfc: Add retry logic to fp_lport (bnc#640276). - patches.fixes/libfc-adds-flogi-retry: libfc: add flogi retry for non-zero DID (bnc#640276).- patches.drivers/alsa-sp1-hda-81-add-support-for-new-idt-codecs: ALSA: hda - Adding support for new IDT 92HD87XX codecs (bnc#643909, bnc#643922, bnc#643914).- patches.drivers/qla2xxx-drop-reference-before-wait-for-completion: Reshuffle to keep series2git happy.- patches.fixes/i915-rephrase-pwrite-bounds-checking.patch: drm/i915: Rephrase pwrite bounds checking to avoid any potential overflow (bnc#642009 CVE-2010-2962). - patches.fixes/i915-sanity-check-pread-pwrite.patch: drm/i915: Sanity check pread/pwrite (bnc#642009 CVE-2010-2962).- patches.drivers/qla2xxx-drop-reference-before-wait-for-completion: Update patche after suggestion from Mike C.- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch-fix2: Another fix for race problem with sunrpc cache deferal (bnc#632568, bnc#636461).- Update reference module symbol versions.- Update to 2.6.32.24- patches.drivers/ixgbe-net-decreasing-real_num_tx_queues-needs-to-flush-qdi.patch: net: decreasing real_num_tx_queues needs to flush qdisc (bnc#625674). - patches.fixes/sched-qdisc_reset_all_tx-is-calling-qdisc_reset-with.patch: sched: qdisc_reset_all_tx is calling qdisc_reset without qdisc_lock (bnc#625674).- patches.kabi/revert-struct-zone-change.patch: Fix struct zone kabi breakage. - patches.suse/SoN-08-mm-page_alloc-emerg.patch: Refresh. - patches.kabi/revert-mm-page-allocator-calculate-a-better-estimate.patch: Delete.- patches.drivers/qla2xxx-drop-reference-before-wait-for-completion: qla2xxx: Drop srb reference before waiting for completion (bnc#641247).- patches.kabi/compat-make-compat_alloc_user_space-incorporate-the-access_ok-API-fixup-GENKSYMS.patch: hide kABI checker false positive coming from compat_alloc_userspace() fix (CVE-2010-3081 bnc#639709). - patches.kabi/compat-make-compat_alloc_user_space-incorporate-the-access_ok-API-fixup.patch: compat-make-compat_alloc_user_space-incorporate-the-access_ok - API fixup (CVE-2010-3081 bnc#639709).- patches.fixes/scsi-dh-check-for-sdev-state-before-calling-activate: Fixup typo.- patches.fixes/scsi-dh-check-for-sdev-state-before-calling-activate: scsi_dh: Check for sdev state in scsi_dh_activate() (bnc#616080).- patches.drivers/mpt-fusion-hold-off-error-recovery: fusion: hold off error recovery while alternate ioc is initializing (bnc#618059).- patches.fixes/sched-fix-kill-migration-thread-in-CPU_POST_DEAD-suspend-regression: sched: fix kill migration thread in CPU_POST_DEAD suspend regression (bnc#642449).- patches.fixes/PM-Hibernate-Make-some-boot-messages-look-less-scary.patch: PM / Hibernate: Make some boot messages look less scary (bnc#614226).- patches.kabi/input-compat-include-avoidance.patch: input: do not include input-compat.h. - patches.kabi/0001-Revert-Input-add-compat-support-for-sysfs-and-proc-c.patch: Delete.- patches.arch/x86-UV-Fix-initialization-of-max_pnode.patch: x86 / UV: Fix initialization of max_pnode (bnc#638618, FATE#306952).- patches.arch/x86-uv-xpc_disconnect_fix.patch: x86 / UV: Fix handling of XPC channel messages coming too late (bnc#638613, FATE#306952).- patches.kabi/0001-Revert-Input-add-compat-support-for-sysfs-and-proc-c.patch: Revert "Input: add compat support for sysfs and /proc capabilities output". - patches.kabi/0001-Revert-mm-page-allocator-calculate-a-better-estimate.patch: Revert "mm: page allocator: calculate a better estimate of NR_FREE_PAGES when memory is low and kswapd is awake". - patches.kabi/emu10k1-snd_emu10k1-guard.patch: emu10k1: guard struct snd_emu10k1 kABI changes. - patches.suse/SoN-08-mm-page_alloc-emerg.patch: Refresh. Another bunch of kabi fixes. Now it should build, however the two of them need be resolved properly.- patches.kabi/sched_sched_class_kABI_guard.patch: sched: guard struct sched_class kABI changes. - patches.kabi/sched_struct_rq_kABI_guard.patch: sched: guard struct rq kABI changes. - patches.kabi/sched_struct_sched_domain_kABI_guard.patch: sched: guard struct sched_domain kABI changes.- Update to 2.6.32.23: - security fixes - bugfixes - obsoletes: - patches.drivers/alsa-sp1-hda-55-alc259-hp-pin-fix - patches.drivers/cxgb3-fix-hot-plug-removal-crash.patch - patches.drivers/drm-i915-add-reclaimable-to-i915-self-reclaimable-page - patches.drivers/drm-i915-fix-hibernation-since-i915-self-reclaim-fix - patches.fixes/alsa-seq-oss-fix-double-free-at-error-path-of-snd_seq_oss_open - patches.fixes/can-add-limit-for-nframes-and-clean-up-signed-unsigned-variables - patches.fixes/char-Mark-dev-zero-and-dev-kmem-as-not-capable-of-wr.patch - patches.fixes/compat-make-compat_alloc_user_space-incorporate-the-access_ok - patches.fixes/drivers-net-cxgb3-cxgb3_main-c-prevent-reading-uninitialized-stack-memory - patches.fixes/drivers-net-eql-c-prevent-reading-uninitialized-stack-memory - patches.fixes/drivers-net-usb-hso-c-prevent-reading-uninitialized-memory - patches.fixes/drm-stop-information-leak-of-old-kernel-stack - patches.fixes/ext4-consolidate-in_range-definitions - patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure - patches.fixes/keys-fix-bug-in-keyctl_session_to_parent-if-parent-has-no-session-keyring - patches.fixes/keys-fix-rcu-no-lock-warning-in-keyctl_session_to_parent - patches.fixes/kill-migration-thread-in-CPU_POST_DEAD-instead-of-CPU_DEAD.diff - patches.fixes/ocfs2-dont-overwrite-error-codes-in-ocfs2_init_acl.patch - patches.fixes/ocfs2-fix-incorrect-checksum-validation.patch - patches.fixes/ocfs2-fix-the-nested-PR.patch - patches.fixes/revert_c6fc81afa2d7ef2f775e48672693d8a0a8a7325d.diff - patches.fixes/sched-cleanup-select_task_rq_fair - patches.fixes/sched-cpuacct-percpu-counter-batch.patch - patches.fixes/sched-fix-vmark-regression - patches.fixes/sched-more-generic_WAKE_AFFINE - patches.fixes/tracing-t_start-reset-ftrace_iter_hash-in-case-of-seek-pread - patches.fixes/use-rcu-lock-in-setpgid.patch - patches.fixes/wireless-extensions-fix-kernel-heap-content-leak - patches.fixes/x86-64-compat-retruncate-rax-after-ia32-syscall-entry-tracing - patches.fixes/x86-64-compat-test-rax-for-the-syscall-number-not-eax - patches.fixes/xfs-prevent-reading-uninitialized-stack-memory - Update config files. - patches.fixes/fix-guard-page-revert-side-effect.patch: mm: use addr instead of start to adjust guard page. - patches.fixes/mm-independent-rr-slab.patch: Refresh. - patches.fixes/mm-pagealloc-fix-congestion-wait.patch: Refresh. - patches.fixes/sched-sysctl-for-normalized-tunables: Refresh. - patches.kabi/revert-mm-make-the-mlock-stack-guard-page-checks-stricter.patch: Revert "mm: make the mlock() stack guard page checks stricter". - patches.kabi/revert-mm-make-the-vma-list-be-doubly-linked.patch: Revert "mm: make the vma list be doubly linked". - patches.kabi/sched_entity-put-back-nr_forced2_migrations.patch: Revert nr_forced2_migrations removal from sched_entity - patches.kernel.org/revert-guard-page-for-stacks-that-grow-upwards.patch: Revert "guard page for stacks that grow upwards". - patches.kernel.org/revert-mm-fix-page-table-unmap-for-stack-guard-page-properly.patch: Revert "mm: fix page table unmap for stack guard page properly". - patches.kernel.org/revert-mm-make-stack-guard-page-logic-use-vm_prev-pointer.patch: Revert "mm: make stack guard page logic use vm_prev pointer". - patches.suse/SoN-08-mm-page_alloc-emerg.patch: Refresh. - patches.suse/staging-hyper-v-added-all-patches-for-hyper-v-same-as-2.6.35-now.patch: Refresh. - patches.xen/xen3-patch-2.6.32.20-21: Refresh.- patches.fixes/scsi-dh-alua-handle-all-states: Add missing include.- patches.fixes/scsi-error-netlink-GFP_ATOMIC.patch: scsi mid layer passes the wrong allocation flag to netlink (bnc#638400).- patches.fixes/scsi-dh-alua-handle-all-states: scsi_dh_alua: Update to handle all states correctly (bnc#600043).- patches.drivers/aacraid-24702-update: aacraid race condition (bnc#636850).- patches.fixes/rose-fix-signedness-issues-wrt-digi-count: rose: Fix signedness issues wrt. digi count (CVE-2010-3310 bnc#640721).- patches.suse/lock_page-speedup-avoid-cacheline-bouncing.patch: Delete. Causes lockup. (bnc#629170)- patches.drivers/lis3-add-support-for-hp-2011-bnb: hp_accel: Add axis-mapping for HP 2011 BNB models (bnc#639197).- patches.drivers/lis3-hp3dc-chip-support: lis3: Add support for new LIS3DC / HP3DC chip (bnc#639197).- Update Xen patches to 2.6.32.22 (bnc#633733, bnc#638807). - patches.xen/1026-blktap2-PG_reserved.patch: blktap2: eliminate bogus clearing of PG_reserved (bnc#624814). - patches.xen/1027-lock-runqueue-xtime.patch: xen/x86: eliminate nesting of run-queue locks inside xtime_lock. - patches.xen/1031-x86-privcmd-enoent.patch: xen/x86: make __direct_remap_pfn_range()'s return value meaningful (FATE#310510). - patches.xen/1032-netback-add-sched-list-irqs.patch: xen: netback: save interrupt state in add_to_net_schedule_list_tail. - patches.xen/1033-swiotlb-sync-bidirectional.patch: fix swiotlb sync functions to properly deal with DMA_BIDIRECTIONAL. - patches.xen/xen-kzalloc: use kzalloc() in favor of kmalloc()+memset(). - patches.xen/sfc-kzalloc: use kzalloc() in favor of kmalloc()+memset(). - patches.xen/xen-blkfront-scsi_cmd_ioctl: blkfront: forward unknown IOCTLs to scsi_cmd_ioctl for /dev/sdX (bnc#639944). - patches.xen/xen3-amd_nb_early_access_oops.patch: x86: AMD Northbridge: Verify NB's node is online (bnc#637944). - patches.xen/xen3-revert-x86-don-t-send-sigbus-for-kernel-page-faults.patch: Revert "x86: don't send SIGBUS for kernel page faults". - Update Xen config files.- patches.fixes/iscsi-set-sk_err-on-conn-stop: Root on multipath goes into unresponsive state for a long time (bnc#620443).- patches.drivers/cxgb3-Add-register-bit-definition-for-Fatal-Parity-E.patch: cxgb3: Add register bit definition for Fatal Parity Error (bnc#637639). - patches.drivers/cxgb3-Avoid-flush_workqueue-deadlock.patch: cxgb3: Avoid flush_workqueue() deadlock (bnc#637639). - patches.drivers/cxgb3-Leave-interrupts-for-fatal-errors-asserted-in-.patch: cxgb3: Leave interrupts for fatal errors asserted in common code (bnc#637639). - patches.drivers/cxgb3-Set-FATALPERREN.patch: cxgb3: Set FATALPERREN (bnc#637639). - patches.drivers/cxgb3-fix-hot-plug-removal-crash.patch: cxgb3: fix hot plug removal crash (bnc#637639). - patches.drivers/cxgb3-remove-undefined-operations.patch: net/cxgb3: remove undefined operations. - patches.fixes/infiniband_cxgb3_improve_dlpar_remove_on_active_rdma_traffic.patch: Remove changes included in fix hot plug removal crash- patches.fixes/elousb-firmware-m-quirk.patch: fix build - patches.fixes/elousb-firmware-m-quirk.patch: handle return value from input_register_dev() properly- patches.fixes/elousb-firmware-m-quirk.patch: Elo touchscreen firmware M workaround (bnc#633593).- patches.fixes/bdi-Fix-warnings-in-__mark_inode_dirty-for-dev-zero-.patch: bdi: Fix warnings in __mark_inode_dirty for /dev/zero and friends (bnc#618072). - patches.fixes/char-Mark-dev-zero-and-dev-kmem-as-not-capable-of-wr.patch: char: Mark /dev/zero and /dev/kmem as not capable of writeback (bnc#618072).- patches.fixes/ocfs2-dont-overwrite-error-codes-in-ocfs2_init_acl.patch: ocfs2: do not overwrite error codes in ocfs2_init_acl (bnc#639161).- patches.suse/scsi-netlink-ml-module-param: kernel crash in netlink_broadcast (bnc#620654).- patches.fixes/x86_acer_acpi_ec_call_reg_blacklist.patch: Call _Reg(0x3, 0x1) method in EC namespace if EC got set up, even there is on EC OpRegion (bnc#636561).- patches.arch/amd_nb_early_access_oops.patch: x86: AMD Northbridge: Verify NB's node is online (bnc#637944).- patches.xen/xen3-x86-64-compat-test-rax-for-the-syscall-number-not-eax: Refresh to apply without fuzz gained in the fasttrack branch.- Temporarily disable kabi checking for s390, the kabi will change for the next update. - kabi/s390x/symsets-default.tar.gz: Delete. - kabi/s390x/symsets-trace.tar.gz: Delete. - kabi/s390x/symtypes-default: Delete. - kabi/s390x/symtypes-trace: Delete. - kabi/s390x/symvers-default: Delete. - kabi/s390x/symvers-trace: Delete.- patches.xen/xen3-x86-64-compat-retruncate-rax-after-ia32-syscall-entry-tracing: x86-64, compat: Retruncate rax after ia32 syscall entry tracing (CVE-2010-3301 bnc#639708). - patches.xen/xen3-x86-64-compat-test-rax-for-the-syscall-number-not-eax: x86-64, compat: Test %rax for the syscall number, not %eax (CVE-2010-3301 bnc#639708).- patches.fixes/niu-fix-kernel-buffer-overflow-for-ethtool_grxclsrlall: niu: Fix kernel buffer overflow for ETHTOOL_GRXCLSRLALL (CVE-2010-3084 bnc#638274).- patches.fixes/execve-improve-interactivity-with-large-arguments: execve: improve interactivity with large arguments (bnc#635425). - patches.fixes/execve-make-responsive-to-sigkill-with-large-arguments: execve: make responsive to SIGKILL with large arguments (bnc#635425). - patches.fixes/setup_arg_pages-diagnose-excessive-argument-size: setup_arg_pages: diagnose excessive argument size (bnc#635425).- patches.fixes/wext-fix-potential-private-ioctl-memory-content-leak: wext: fix potential private ioctl memory content leak (CVE-2010-2955 bnc#635413).- patches.fixes/wireless-extensions-fix-kernel-heap-content-leak: wireless extensions: fix kernel heap content leak (CVE-2010-2955 bnc#635413).- patches.fixes/keys-fix-bug-in-keyctl_session_to_parent-if-parent-has-no-session-keyring: KEYS: Fix bug in keyctl_session_to_parent() if parent has no session keyring (CVE-2010-2960 bnc#634637). - patches.fixes/keys-fix-rcu-no-lock-warning-in-keyctl_session_to_parent: KEYS: Fix RCU no-lock warning in keyctl_session_to_parent() (CVE-2010-2960 bnc#634637).- patches.fixes/alsa-seq-oss-fix-double-free-at-error-path-of-snd_seq_oss_open: ALSA: seq/oss - Fix double-free at error path of snd_seq_oss_open() (CVE-2010-3080 bnc#638277).- patches.drivers/net-next-Fix-an-overflow-bug-in-vmxnet3-Tx-descripto.patch: net-next: Fix an overflow bug in vmxnet3 Tx descriptor (bnc#624020). - patches.drivers/net-next-fix-LRO-feature-update-in-vmxnet3.patch: net-next: fix LRO feature update in vmxnet3 (bnc#624020). - patches.drivers/net-next-vmxnet3-fixes-2-5-Interrupt-control-bitmap.patch: net-next: vmxnet3 fixes [2/5] Interrupt control bitmap (bnc#624020). - patches.drivers/net-next-vmxnet3-fixes-3-5-Initialize-link-state-at-.patch: net-next: vmxnet3 fixes [3/5] Initialize link state at probe time (bnc#624020). - patches.drivers/net-next-vmxnet3-fixes-4-5-Do-not-reset-when-the-dev.patch: net-next: vmxnet3 fixes [4/5] Do not reset when the device is not opened (bnc#624020). - patches.drivers/net-next-vmxnet3-fixes-5-5-Respect-the-interrupt-typ.patch: net-next: vmxnet3 fixes [5/5] Respect the interrupt type in VM configuration (bnc#624020).- patches.fixes/x86-64-compat-retruncate-rax-after-ia32-syscall-entry-tracing: x86-64, compat: Retruncate rax after ia32 syscall entry tracing (CVE-2010-3301 bnc#639708). - patches.fixes/x86-64-compat-test-rax-for-the-syscall-number-not-eax: x86-64, compat: Test %rax for the syscall number, not %eax (CVE-2010-3301 bnc#639708).- patches.fixes/compat-make-compat_alloc_user_space-incorporate-the-access_ok: compat: Make compat_alloc_user_space() incorporate the access_ok() (CVE-2010-3081 bnc#639709).- patches.fixes/net-enable-GRO-by-default-for-vlan-devices.patch: net: enable GRO by default for vlan devices (bnc#582730).- patches.suse/lock_page-speedup-avoid-cacheline-bouncing.patch: UV - PERF cacheline contention in __lock_page reclaiming pages from pagecache (bnc#629170).- patches.fixes/use-rcu-lock-in-setpgid.patch: pid: make setpgid() system call use RCU read-side critical section (bnc#639728).- patches.fixes/xfs-prevent-reading-uninitialized-stack-memory: Update references (CVE-2010-3078 bnc#637436).- patches.fixes/tracing-t_start-reset-ftrace_iter_hash-in-case-of-seek-pread: tracing: t_start: reset FTRACE_ITER_HASH in case of seek/pread (CVE-2010-3079 bnc#637502).- patches.fixes/drivers-net-usb-hso-c-prevent-reading-uninitialized-memory: drivers/net/usb/hso.c: prevent reading uninitialized memory (CVE-2010-3298 bnc#639483).- patches.fixes/drivers-net-cxgb3-cxgb3_main-c-prevent-reading-uninitialized-stack-memory: drivers/net/cxgb3/cxgb3_main.c: prevent reading uninitialized stack memory (CVE-2010-3296 bnc#639481).- patches.fixes/drivers-net-eql-c-prevent-reading-uninitialized-stack-memory: drivers/net/eql.c: prevent reading uninitialized stack memory (CVE-2010-3297 bnc#639482).- patches.drivers/alsa-sp1-hda-80-acer-quirk: ALSA: hda - Add quirk for Acer laptop with CX20585 codec (bnc#638860).- patches.drivers/alsa-sp1-hda-79-conexant-5066-support: ALSA: backport Conexant CX2058 chip support (bnc#638860).- patches.suse/staging-hyper-v-added-all-patches-for-hyper-v-same-as-2.6.35-now.patch: staging: hyper-v: Added all patches for Hyper-V - same as 2.6.35 now (bnc#618379).- patches.drivers/e1000e-remove-use-of-skb_dma_map.patch: e1000e: remove use of skb_dma_map (bnc#633268). - patches.drivers/igb-remove-use-of-skb_dma_map.patch: igb: remove use of skb_dma_map (bnc#633268).- patches.arch/ACPICA-Optimization-Reduce-the-number-of-namespace-walks.patch: ACPICA: Optimization: Reduce the number of namespace walks (bnc#601520, FATE#306952). - patches.arch/ACPICA-Performance-enhancement-for-namespace-search-and-access.patch: ACPICA: Performance enhancement for namespace search and access (bnc#601520, FATE#306952).- patches.fixes/bonding-jiffies2.patch: Update patch-mainline.- patches.suse/libfc-fix-remote-port-restart-problem: Modify to not break kABI.- patches.suse/libfc-fix-indefinite-rport-restart: Modify to not break kABI.- patches.fixes/ocfs2-grab_cache_page-recursion-fix: ocfs2: Avoid recursing into filesystems when allocating memory with filesystem locks held (bnc#633543).- patches.fixes/xfs-prevent-reading-uninitialized-stack-memory: xfs: prevent reading uninitialized stack memory (bnc#637436).- patches.fixes/iscsi-make-recovery_tmo-configurable: iscsi_transport: Modify recovery_tmo from sysfs (bnc#620443).- patches.fixes/scsi-update-fc_block_scsi_eh: Reenable.- patches.suse/libfc-fix-indefinite-rport-restart: libfc: fix indefinite rport restart (bnc#626880). - patches.suse/libfc-fix-remote-port-restart-problem: libfc: Fix remote port restart problem (bnc#626880).- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch-fix: Fix race in sunrpc/cache introduced by patch to allow thread to block while waiting for cache update (bnc#632568). - patches.fixes/nfsd-09-fix-kabi: Refresh. - patches.fixes/sunrpc-monotonic-expiry: Refresh. - patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: Refresh.- patches.arch/s390-21-01-qeth_connection_isolation_keep_reply.patch: qeth: timeout on connection isolation configuration errors (bnc#631075,LTC#66486). - patches.arch/s390-21-02-dasd-fix-cqr-flags-in-erp.patch: dasd: let recovery cqr inherit flags from failed cqr (bnc#631075,LTC#66750). - patches.arch/s390-22-tlb-proc-race.patch: kernel: fork vs /proc/stat race (bnc#635515,LTC#66686).- patches.fixes/irda-correctly-clean-up-self-ias_obj-on-irda_bind-failure: irda: Correctly clean up self->ias_obj on irda_bind() failure (CVE-2010-2954 bnc#636112).- patches.fixes/scsi-update-fc_block_scsi_eh: Disable until testing is complete.- patches.fixes/scsi-update-fc_block_scsi_eh: Fixup patch to handle FAST_IO_FAIL from error handler correctly (bnc#613330).- patches.fixes/scsi-update-fc_block_scsi_eh: Device offlined while array is momentarily unavailable (bnc#613330).- patches.fixes/scsi-return-needs-retry-for-busy-eh-cmds: Return NEEDS_RETRY for eh commands with status BUSY (bnc#613330).- Fix ordering of patches in series.conf- patches.arch/x86-UV-map-ACPI-tables-as-cacheable.patch: x86 / UV: Map ACPI tables as cacheable (bnc#632974, FATE#306952).- patches.arch/x86_64-numa-Cacheline-aliasing-makes-for_each_populated_zone-extremely-expensive-V2.patch: Update references (bnc#632975, FATE#306952).- patches.kabi/drm-block-userspace-under-allocating-buffer-and-having-drivers-overwrite-it-v2: KABI: Workaround drm_ioctl_desc->cmd_drv addition.- patches.fixes/jfs-don-t-allow-os2-xattr-namespace-overlap-with-others: Delete.- patches.fixes/jfs-don-t-allow-os2-xattr-namespace-overlap-with-others: jfs: don't allow os2 xattr namespace overlap with others (CVE-2010-2946 bnc#633585).- patches.fixes/can-add-limit-for-nframes-and-clean-up-signed-unsigned-variables: can: add limit for nframes and clean up signed/unsigned variables (bnc#633581 CVE-2010-2959).- patches.arch/x86-fix_irq_assignment-on-NUMA-systems.patch: x86: Fix irq vector assignment on large NUMA systems (bnc#622727, FATE#306952).- patches.fixes/net-sched-fix-some-kernel-memory-leaks: net sched: fix some kernel memory leaks (CVE-2010-2942 bnc#632309).- patches.fixes/ext4-consolidate-in_range-definitions: ext4: consolidate in_range() definitions (CVE-2010-3015 bnc#631801).- patches.fixes/drm-block-userspace-under-allocating-buffer-and-having-drivers-overwrite-it-v2: drm: block userspace under allocating buffer and having drivers overwrite it (v2) (bnc#628604).- patches.fixes/drm-stop-information-leak-of-old-kernel-stack: drm: stop information leak of old kernel stack (bnc#628604 CVE-2010-2803).- patches.arch/ppc-huge-page-pte: Fix bugs in huge page hashing (bnc#625167).- patches.fixes/bonding-jiffies2.patch: Forgot to refresh before committing, sorry.- patches.fixes/bonding-jiffies2.patch: fix jiffies overflow problems in bonding (bnc#613273).- patches.drivers/alsa-sp1-hda-78-add-id-for-the-CougarPoint-chipset: ALSA: intelhdmi - add id for the CougarPoint chipset (bnc#630068).- patches.arch/uv-rotor-init-random.patch: Delete. Patch reverted in mainline as well, due to build failure in IA64. (bnc#602150)- patches.arch/uv-rotor-init-random.patch: cpusets: randomize node rotor used in cpuset_mem_spread_node() (bnc#602150).- patches.arch/x86_64-numa-Cacheline-aliasing-makes-for_each_populated_zone-extremely-expensive-V2.patch: x86_64 / NUMA: Cacheline aliasing makes for_each_populated_zone extremely expensive -V2 (bnc#630132, FATE#306952).- patches.arch/x86-UV-fix-crash-on-UV-hubs-that-have-no-active-cpus.patch: x86 / UV: Fix crash on UV hubs that have no active cpus (bnc#630121, FATE#306952).- patches.arch/x86-UV-Fix-uninitialized-uvhub_mask.patch: x86 / UV: Fix uninitialized uvhub_mask (bnc#630132, FATE#306952).- patches.drivers/iwl-add-LED-mode-option: iwlwifi: add LED mode to support different LED behavior (bnc#624340).- patches.drivers/ath9k-add-blink-module-parameter: ath9k: Add a module parameter to disable led blinking (bnc#624340).- patches.suse/SoN-08-mm-page_alloc-emerg.patch: Refresh. - patches.fixes/vmstat-zone_low-fix.patch: Delete. Fix the low_wmark_pages directly in the offending patch.- kabi/severities: update the s390 wildcard as it wasn't picking up the proper match for the qeth driver. Also add the s390 cio driver to the "PASS" list.- Update to 2.6.32.19: - security fixes - bugfixes - obsoletes: - patches.drivers/pci-disable-msi-on-K8M800 - patches.fixes/PATCH-Skip-check-for-mandatory-locks-when-unlocking.patch - patches.fixes/acpi-fix-regression-where-_ppc-is-not-read-at-boot-even-when-ignore_ppc-0 - patches.fixes/aic79xx-null-scb-in-nonpkt-busfree - patches.fixes/btrfs-add-btrfs_duplicate_item - patches.fixes/btrfs-add-delayed-iput - patches.fixes/btrfs-align-offsets-for-btrfs_ordered_update_i_size - patches.fixes/btrfs-apply-updated-fallocate-i_size-fix - patches.fixes/btrfs-avoid-orphan-inodes-cleanup-during-committing-transaction - patches.fixes/btrfs-avoid-orphan-inodes-cleanup-while-replaying-log - patches.fixes/btrfs-avoid-superfluous-tree-log-writeout - patches.fixes/btrfs-btrfs_mark_extent_written-uses-the-wrong-slot - patches.fixes/btrfs-check-return-value-of-open_bdev_exclusive-properly - patches.fixes/btrfs-check-total-number-of-devices-when-removing-missing - patches.fixes/btrfs-deal-with-null-acl-sent-to-btrfs_set_acl - patches.fixes/btrfs-deny-sys_link-across-subvolumes - patches.fixes/btrfs-do-not-mark-the-chunk-as-readonly-if-in-degraded-mode - patches.fixes/btrfs-do-not-try-and-lookup-the-file-extent-when-finishing-ordered-io - patches.fixes/btrfs-don-t-add-extent-0-to-the-free-space-cache-v2 - patches.fixes/btrfs-fail-mount-on-bad-mount-options - patches.fixes/btrfs-fix-a-memory-leak-in-btrfs_init_acl - patches.fixes/btrfs-fix-btrfs_drop_extent_cache-for-skip-pinned-case - patches.fixes/btrfs-fix-disk_i_size-update-corner-case - patches.fixes/btrfs-fix-memory-leaks-in-error-paths - patches.fixes/btrfs-fix-missing-last-entry-in-readdir3 - patches.fixes/btrfs-fix-oopsen-when-dropping-empty-tree - patches.fixes/btrfs-fix-per-root-used-space-accounting - patches.fixes/btrfs-fix-possible-panic-on-unmount - patches.fixes/btrfs-fix-race-between-allocate-and-release-extent-buffer - patches.fixes/btrfs-fix-race-in-btrfs_mark_extent_written - patches.fixes/btrfs-fix-regression-in-orphan-cleanup - patches.fixes/btrfs-kfree-correct-pointer-during-mount-option-parsing - patches.fixes/btrfs-make-error-return-negative-in-btrfs_sync_file - patches.fixes/btrfs-make-fallocate2-more-enospc-friendly - patches.fixes/btrfs-make-metadata-chunks-smaller - patches.fixes/btrfs-make-sure-fallocate-properly-starts-a-transaction - patches.fixes/btrfs-make-truncate2-more-enospc-friendly - patches.fixes/btrfs-pass-transaction-handle-to-security-and-acl-initialization-functions - patches.fixes/btrfs-remove-bug_on-due-to-mounting-bad-filesystem - patches.fixes/btrfs-rewrite-btrfs_drop_extents - patches.fixes/btrfs-run-orphan-cleanup-on-default-fs-root - patches.fixes/btrfs-show-discard-option-in-proc-mounts - patches.fixes/btrfs-use-correct-values-when-updating-inode-i_size-on-fallocate - patches.fixes/crypto-testmgr-fix-complain-about-lacking-test.patch - patches.fixes/dlm-fix-ordering-of-bast-and-cast.patch - patches.fixes/dlm-send-reply-before-bast.patch - patches.fixes/ext4-fix-optional-arg-mount-options - patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files - patches.fixes/fix_clock_gettime_vsyscall_time_warp.diff - patches.fixes/ia64-fix-sba-iommu-to-handle-allocation-failure-properly - patches.fixes/ibmvscsi-add-barriers - patches.fixes/ibmvscsi-reduce-error-recovery-timeout - patches.fixes/kernel-mutex-adaptive-cpu-offline-livelock.patch - patches.fixes/loop-update-mtime.patch - patches.fixes/mandatory-lock-test - patches.fixes/mce_injection_enhancements_1668bfd5be9d8a52536c4865000fbbe065a3613b - patches.fixes/mce_injection_enhancements_9b9a29ecd75e310f75a9243e1c3538ad34598fcb - patches.fixes/md-write-behind-race - patches.fixes/nohz-delay-from-tip.diff - patches.fixes/ocfs2-Find-proper-end-cpos-for-a-leaf-refcount-block.patch - patches.fixes/ocfs2-set-MS_POSIXACL-on-remount.patch - patches.fixes/powerpc-eeh-fix-a-bug-when-pci-structure-is-null - patches.fixes/reiserfs-fix-oops-while-creating-privroot-with-selinux-enabled - patches.fixes/reiserfs-replay-honor-ro - patches.fixes/reuse-ktime-from-tip.diff - patches.fixes/sched-fix-cputime-monotonicity.patch - patches.fixes/sched-fix-task-times_granularity.patch - patches.fixes/x86_64_memory_hotplug_dev_mem.patch - patches.fixes/x86_ioapic_fix_out_of_order_gsi.patch- patches.kabi/kabi-acpi-guard-acpi_power_register-changes.patch: kabi: acpi: guard acpi_power_register changes.- patches.kabi/kabi-acpi-guard-acpi_processor_cx-changes: KABI: acpi: Guard acpi_processor_cx changes. - patches.xen/xen3-auto-common.diff: Refresh. - patches.xen/xen3-patch-2.6.32.16-17: Refresh.- kabi/severities: add drivers/ssb/* to the list of things we don't check the kabi for.- kabi/severities: add drivers/net/wireless/hostap/* to the list of things that we don't care about for kabi- patches.fixes/vmstat-zone_low-fix.patch: /proc/zoneinfo fix low watermark value.- patches.fixes/revert_c6fc81afa2d7ef2f775e48672693d8a0a8a7325d.diff: sched: revert 2.6.32-stable commit c6fc81a (bnc#615557).- patches.fixes/aio-ERESTARTSYS-handling.diff: aio: Do not return ERESTARTSYS as a result of AIO (bnc#612009).- patches.kabi/kabi-fix-up-struct-transacion_s-abi-change.patch: kabi: fix up struct transacion_s abi change.- patches.arch/x86-kdump-avoid-stack-dumps-fix.patch: x86, UV: Make kdump avoid stack dumps - fix !CONFIG_KEXEC breakage (bnc#616464). - patches.arch/x86-kdump-avoid-stack-dumps.patch: x86, UV: Make kdump avoid stack dumps (bnc#616464).- patches.fixes/ocfs2-fix-incorrect-checksum-validation.patch: ocfs2: Fix incorrect checksum validation error. - patches.fixes/ocfs2-fix-metaecc-error-messages.patch: ocfs2: Fix metaecc error messages.- Update to 2.6.32.18 - security fixes - bug fixes - obsoletes: - patches.drivers/drm-i915-Fix-LVDS-presence-check - patches.drivers/drm-i915-parse-child-device-from-VBT - patches.drivers/e1000e-dont-inadvertently-re-set-INTX_DISABLE.patch - patches.fixes/gfs2-rename-causes-kernel-oops - patches.fixes/nfs-fix-acl-decoding - patches.kernel.org/cifs-fix-compile-error-with-__init-in-cifs_init_dns_resolver-definition.patch - patches.kernel.org/cifs-remove-__exit-mark-from-cifs_exit_dns_resolver.patch- patches.fixes/kdb-fix-ll.patch: kdb: break out of kdb_ll() when command is terminated (bnc#609172). - patches.suse/kdb-bt-with-pt-regs.patch: KDB: fix backtrace failure (bnc#611094). - patches.suse/kdb-fix-incomplete-backtrace.patch: Refresh.- patches.fixes/novfs-lindent: novfs: Lindent novfs source. Added to keep codebases among SLE11 SP1, 11.3, and master in sync.- patches.suse/qla2xxx-add-ql2xtargetreset-parm: Tape driver gets a rewind during boot (bnc#629552).- patches.suse/rlim-0014-ipc-use-helpers-for-rlimits.patch: ipc: use rlimit helpers (FATE#305733). - patches.suse/rlim-0015-SECURITY-add-task_struct-to-setrlimit.patch: rlimits: security, add task_struct to setrlimit (FATE#305733). - patches.suse/rlim-0016-core-add-task_struct-to-update_rlimit_cpu.patch: rlimits: add task_struct to update_rlimit_cpu (FATE#305733). - patches.suse/rlim-0017-sys_setrlimit-make-sure-rlim_max-never-grows.patch: rlimits: make sure ->rlim_max never grows in sys_setrlimit (FATE#305733). - patches.suse/rlim-0017a--rlimits-selinux-do-rlimits-changes-under-task_lock.patch: rlimits: selinux, do rlimits changes under task_lock (FATE#305733). - patches.suse/rlim-0018-core-split-sys_setrlimit.patch: rlimits: split sys_setrlimit (FATE#305733). - patches.suse/rlim-0019-core-allow-setrlimit-to-non-current-tasks.patch: rlimits: allow setrlimit to non-current tasks (FATE#305733). - patches.suse/rlim-0020-rlimits-do-security-check-under-task_lock.patch: rlimits: do security check under task_lock (FATE#305733). - patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch: Refresh. - patches.suse/rlim-0022-FS-proc-make-limits-writable.patch: Refresh. - patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch: Delete. Refresh and update them because they were merged (some in slightly differrent form).- Update Xen patches to 2.6.32.17.- patches.fixes/gfs2-rename-causes-kernel-oops: GFS2: rename causes kernel Oops (bnc#627386 CVE-2010-2798).- patches.fixes/ipv6-fix-dad-race.patch: IPv6: fix DAD races (bnc#577967). - patches.xen/ipv6-no-autoconf: Refresh.- patches.kabi/kabi-fix-up-struct-firmware-abi-change.patch: kabi: fix up struct firmware abi change.- patches.xen/xen3-auto-xen-arch.diff: Refresh.- patches.fixes/nfs-fix-acl-decoding: nfs: fix acl decoding (bnc#629263).- patches.kernel.org/cifs-fix-compile-error-with-__init-in-cifs_init_dns_resolver-definition.patch: CIFS: Fix compile error with __init in cifs_init_dns_resolver() definition - patches.kernel.org/cifs-remove-__exit-mark-from-cifs_exit_dns_resolver.patch: CIFS: Remove __exit mark from cifs_exit_dns_resolver().- Update to 2.6.32.17: - security fixes - bug fixes - obsoletes: - patches.arch/ia64-64bit-spinaphore - patches.arch/x86-calgary-increase-max-phb-bus-num.patch - patches.drivers/drm-i915-Define-MI_ARB_STATE-bits - patches.drivers/drm-i915-enable-low-power-render-writes-on-GEN3-hardware - patches.drivers/igb-change-how-we-handle-alternate-mac-addresses.patch - patches.drivers/sky2-enable-rx-tx-in-sky2_phy_reinit.patch - patches.fixes/futex-futex_find_get_task-remove-credentails-check.patch- patches.kabi/revert-wrong-type-for-magic-argument-in-simple_fill_super-in-2.6.32.16.patch: Revert: wrong type for 'magic' argument in simple_fill_super() in 2.6.32.16.- patches.fixes/ocfs2-Fix-orphan-add-in-ocfs2_create_inode_in_orphan.patch: ocfs2: Fix orphan add in ocfs2_create_inode_in_orphan (bnc#626321). - patches.fixes/ocfs2-allow-return-of-new-inode-block-location-befor.patch: ocfs2: allow return of new inode block location before allocation of the inode (bnc#626321). - patches.fixes/ocfs2-split-out-inode-alloc-code-from-ocfs2_mknod_lo.patch: ocfs2: split out inode alloc code from ocfs2_mknod_locked (bnc#626321). - patches.fixes/ocfs2-split-out-ocfs2_prepare_orphan_dir-into-lockin.patch: ocfs2: split out ocfs2_prepare_orphan_dir() into locking and prep functions (bnc#626321). - patches.fixes/ocfs2-use-ocfs2_alloc_dinode_update_counts-instead-o.patch: ocfs2: use ocfs2_alloc_dinode_update_counts() instead of open coding (bnc#626321).- patches.drivers/drm-i915-Fix-LVDS-presence-check: drm/i915: Fix LVDS presence check (bnc#621715). - patches.drivers/drm-i915-parse-child-device-from-VBT: drm/i915: parse child device from VBT (bnc#621715).- patches.kabi/ppc-add-perf_event-include: kabi: add linux/perf_event.h back to arch/powerpc/kernel/irq.c.- patches.arch/s390-20-01-etr-race.patch: kernel: etr clock synchronization race (bnc#627060,LTC#66220). - patches.arch/s390-20-02-dasd-reserve-emergency-cqr.patch: dasd: allocate fallback cqr for reserve/release (bnc#627060,LTC#66227). - patches.arch/s390-20-03-cio_use_all_paths.patch: cio: use all paths for some internal I/O (bnc#627060,LTC#66327).- patches.fixes/cifs-fix-vfs-busy-inode-errors: Revert the commit that fixes page refcount leak which is not required but causes hangs (bnc#627518).- Update ppc64/vanilla config.- patches.arch/x86_thinkpad_fix_x100e_s2ram.patch: thinkpad-acpi: X100e quick fixes (bnc#619002).- patches.drivers/tg3-Fix-IPv6-TSO-code-in-tg3_start_xmit_dma_bug.patch: tg3: Fix IPv6 TSO code in tg3_start_xmit_dma_bug().- patches.drivers/netxen-fix-register-usage.patch: netxen: fix register usage (bnc#600579).- patches.arch/ppc-extended_h_cede-add_offline_states: Refresh for query_cpu_stopped rename.- Update to 2.6.32.16 - security fixes - lots of bugfixes - obsoletes: - patches.arch/ppc-public-query_cpu_stopped - patches.arch/ppc-start-only-stopped-cpus - patches.drivers/dmfe-tulip-Let-dmfe-handle-DM910x-except-for-SPARC-o.patch - patches.fixes/btrfs-should-add-a-permission-check-for-setfacl - patches.fixes/cifs-fix-oops-due-to-null-nameidata - patches.fixes/dm-snapshot-2TB-fix - patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl - patches.fixes/ipmi-fix-deadlock.patch - patches.fixes/ixgbe-fix-return-of-invalid-txq.patch - patches.fixes/keys-find_keyring_by_name-can-gain-access-to-a-freed-keyring - patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len - patches.fixes/sctp-fix-skb_over_panic-resulting-from-multiple-invalid-parameter-errors - patches.fixes/virtio_net-make-delayed-refill-more-reliable.patch- rpm/kernel-source.spec.in: Package log.sh in the source rpm.- Update to 2.6.32.15: - bugfix - obsoletes: - patches.suse/revert-percpu-stable-changes.patch- Update to 2.6.32.14: - security fixes - bugfixes - obsoletes: - patches.arch/s390-16-01-ptrace-fix-return-value.patch - patches.arch/x86-cacheinfo-turn-off-l3-cache-index-in-virtualized-envs.patch - patches.fixes/btrfs-check-for-read-permission-on-src-file-in-the-clone-ioctl - patches.fixes/proc-revert-provide-stack-info-01.patch - patches.fixes/proc-revert-provide-stack-info-02.patch- patches.drivers/netxen-fix-for-kdump.patch: netxen: fix for kdump (bnc#603464).- patches.fixes/nfsd-allow-IPv6-sockets: NFSD: Support AF_INET6 in svc_addsock() function (fate#307240). - patches.fixes/nfsd-do-not-reg-v3-for-IPv6: Don't register NFSv2 and NFSv3 with portmap for IPv6 transports (FATE#307240).- patches.drivers/igb-change-how-we-handle-alternate-mac-addresses.patch: igb: change how we handle alternate mac addresses (bnc#619525).- patches.fixes/ocfs2-fix-the-nested-PR.patch: Fix the nested PR lock calling issue in ACL (bnc#614332).- kabi/severities: Ignore drivers/s390/net/qeth.- patches.drivers/qla2xxx-8.03.01.08.11.1-k8-update: qla2xxx: Update driver to version 8.03.01.08.11.1-k8 (bnc#622635).- patches.fixes/fcoe-remove-check-for-zero-fabric: fcoe: remove check for zero fabric name (bnc#625666).- patches.arch/s390-19-01-zfcp-unit-remove.patch: zfcp: Remove SCSI device during unit_remove (bnc#617464,LTC#65402). - patches.arch/s390-19-02-zfcp-zero-fc.patch: zfcp: Zero memory for gpn_ft and adisc requests (bnc#617464,LTC#65466). - patches.arch/s390-19-03-zfcp-fc-port-add-scsi-scan.patch: zfcp: Register SCSI devices after fc_remote_port_add (bnc#617464,LTC#65797). - patches.arch/s390-19-04-zfcp-forced-terminate-rport-io.patch: zfcp: Use forced_reopen in terminate_rport_io callback (bnc#617464,LTC#65800). - patches.arch/s390-19-05-zfcp-erp-timeout.patch: zfcp: Fail erp after timeout (bnc#617464,LTC#65801). - patches.arch/s390-19-06-zfcp-erp-port-open-fail.patch: zfcp: Fix retry after failed "open port" erp action (bnc#617464,LTC#65806). - patches.arch/s390-19-07-zfcp-forced-unblock.patch: zfcp: Do not unblock rport from REOPEN_PORT_FORCED (bnc#617464,LTC#65807). - patches.arch/s390-19-08-zfcp-forced-fail.patch: zfcp: Do not try "forced close" when port is already closed (bnc#617464,LTC#65810). - patches.arch/s390-19-09-qeth_clear_mac_bits.patch: Clear mac_bits field when switching between Layer 2 and Layer 3 (bnc#617464,LTC#66065). - patches.arch/s390-19-10-xip_race_condition.patch: filemap : fix race condition in xip_file_fault (bnc#617464,LTC#66066). - patches.arch/s390-19-11-qeth-ipa-timeout.patch: qeth: avoid loop if ipa command response is missing (bnc#617464,LTC#66115).- patches.fixes/scsi-dh-alua-crash-on-stpg-failback: scsi_dh_alua: Sending STPG on failback causes kernel oops (bnc#624436).- patches.drivers/ipmi-add-parameter-to-limit-cpu-usage-in-kipmid.patch: Fixup patch for series2git. - patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Fixup patch for series2git.- patches.fixes/novfs-xattr-errcode-cleanup2: novfs: Fix error codes for getxattr for novfs (bnc#529535).- patches.drivers/drm-i915-Define-MI_ARB_STATE-bits: drm/i915: Define MI_ARB_STATE bits (bnc#621598). - patches.drivers/drm-i915-add-reclaimable-to-i915-self-reclaimable-page: drm/i915: add 'reclaimable' to i915 self-reclaimable page allocations (bnc#621598). - patches.drivers/drm-i915-enable-low-power-render-writes-on-GEN3-hardware: drm/i915: enable low power render writes on GEN3 hardware (bnc#621598).- patches.fixes/novfs-xattr-errcode-cleanup: novfs: code cleanup for one case of novfs return value (bnc#624606).- patches.suse/kdb-fix-incomplete-backtrace.patch: Disable temporarily (breaks build on i586).- patches.suse/kdb-fix-incomplete-backtrace.patch: Refresh.- patches.fixes/x86_64-uv-update-uv-arch-to-target-legacy-vga-i-o-correctly.patch: Refresh. - patches.suse/kdb-common: Refresh. - patches.suse/kdb-fix-incomplete-backtrace.patch: kdb shows incomplete backtrace (bnc#618444). - patches.suse/kdb-x86: Refresh. - patches.suse/kdb-x86-backtrace-code-to-use-the-in-kernel-show_stack-function: Refresh. - patches.suse/x86-uv-kdb-support-for-uv-nmi-handler.patch: Refresh.- patches.fixes/ocfs2-allow-huge-volumes.patch: OCFS2: Allow huge (> 16 TiB) volumes to mount (bnc#618424).- patches.fixes/novfs-xattr-memleak: novfs: Fix a memory leak that causes an OOM condition (bnc#610828).- patches.fixes/novfs-bdi-init.diff: novfs: backing device info initialization (bnc#623472).- patches.fixes/futex-futex_find_get_task-remove-credentails-check.patch: futex: futex_find_get_task remove credentails check (bnc#607123).- patches.kabi/struct-jbd2_buffer_trigger_type.patch: Fix kabi signature of struct jbd2_buffer_trigger_type.- patches.drivers/e1000e-dont-inadvertently-re-set-INTX_DISABLE.patch: e1000e: don't inadvertently re-set INTX_DISABLE (bnc#610362).- Update kabi files: Ignore changes to struct xfrm_state, the chances of KMPs using this struct are pretty slim.- patches.fixes/ocfs2-No-need-to-zero-pages-past-i_size.patch: ocfs2: No need to zero pages past i_size. - patches.fixes/ocfs2-When-zero-extending-do-it-by-page.patch: ocfs2: When zero extending, do it by page. - patches.fixes/ocfs2-Zero-the-tail-cluster-when-extending-past-i_si.patch: ocfs2: Zero the tail cluster when extending past i_size.- xfrm: Fix truncation length of authentication algorithms installed via PF_KEY (FATE#309537).- patches.fixes/jbd2-ocfs2-Fix-block-checksumming-when-a-buffer-is-u.patch: jbd2/ocfs2: Fix block checksumming when a buffer is used in several transactions (bnc#606575).- patches.drivers/mpt-fusion-fix-races-with-deleted.patch: fusion/mpt: Fix races with deleted targets (bnc#609506).- patches.drivers/ehca-catch-ioremap-fail: Ib/ehca: Catch failing ioremap() (bnc#620021). - patches.drivers/ehca-tasklet-init-fix: ib/ehca: init irq tasklet before irq can happen (bnc#620020). - patches.drivers/ipoib-fix-pointer-refs: IB/ipoib: fix dangling pointer references to ipoib_neigh and ipoib_path (bnc#620904).- patches.drivers/sky2-enable-rx-tx-in-sky2_phy_reinit.patch: sky2: enable rx/tx in sky2_phy_reinit() (bnc#613171).- patches.fixes/novfs-overflow-fixes: novfs: security: Add buffer overflow, integer wraparound fixes (bnc#594362).- patches.arch/ia64-64bit-spinaphore: ia64: Use full 64 bits in spinaphore down_spin(). (bnc#619840)- patches.drivers/drm-i915-fix-hibernation-since-i915-self-reclaim-fix: drm/i915: fix hibernation since i915 self-reclaim fixes (bnc#599671).- patches.xen/xen3-patch-2.6.22: Fix deadlock in vif shutdown path.- patches.drivers/i915-fix-ironlake-edp-panel-setup-v4: i915: fix ironlake edp panel setup (v4) (bnc#598308).- patches.drivers/bfa-2.1.2.1-s11-update: bfa fixes from upstream (bnc#619536).- patches.drivers/alsa-sp1-hda-77-lenovo-thinkpad-x100e: ALSA: hda - add support for Lenovo ThinkPad X100e in conexant codec (bnc#619007).- patches.arch/x86_mce_intel_decode_physical_fix_dynamic_debug.patch: For some reason the macro used by dynamic debug breaks things (bnc#619416).- patches.fixes/dm-snapshot-2TB-fix: dm snapshot: simplify sector_to_chunk expression (bnc#614793).- patches.fixes/bonding-fix-arp_validate-inside-bridge.patch: fix arp_validate for bonds inside a bridge (bnc#596113).- xfrm: Custom truncation lengths for authentication algorithms (FATE#309537): + Define new XFRM netlink auth attribute with specified truncation bits. + Store aalg in xfrm_state with a user specified truncation length. + Use the user specified truncation length in ESP and AH.- patches.fixes/jbd-mark-super-uptodate: jbd: always mark super uptodate before dirty (bnc#618767).- patches.drivers/ehea-lock-update: ehea: Fix kernel deadlock in DLPAR-mem processing (bnc#616369). - patches.drivers/ehea-rmb-update: ehea: fix delayed packet processing (bnc#615003). - patches.drivers/ipr-fix-allow_restart: ipr: move setting of the allow_restart flag for vsets and disks (bnc#617248).- patches.fixes/cifs-fix-vfs-busy-inode-errors: cifs: fix "Busy inodes after umount" issues (bnc#603528).- patches.drivers/cnic-Disable-statistics-initialization-for-eth-clien.patch: cnic: Disable statistics initialization for eth clients that do not support statistics (bnc#608435).- patches.drivers/tg3-Avoid-tx-lockups-on-5755-devices.patch: tg3: Avoid tx lockups on 5755+ devices (bnc#616088). - patches.drivers/tg3-Disable-CLKREQ-in-L2.patch: tg3: Disable CLKREQ in L2 (bnc#616088). - patches.drivers/tg3-Fix-a-memory-leak-on-5717-devices.patch: tg3: Fix a memory leak on 5717+ devices (bnc#616088). - patches.drivers/tg3-Reduce-57765-core-clock-when-link-at-10Mbps.patch: tg3: Reduce 57765 core clock when link at 10Mbps (bnc#616088). - patches.drivers/tg3-Relocate-APE-mutex-regs-for-5717.patch: tg3: Relocate APE mutex regs for 5717+ (bnc#616088). - patches.drivers/tg3-Set-card-57765-card-reader-MRRS-to-1024B.patch: tg3: Set card 57765 card reader MRRS to 1024B (bnc#616088). - patches.drivers/tg3.c-change-the-field-used-with-the-TG3.patch: drivers/net/tg3.c: change the field used with the TG3_FLAG_10_100_ONLY constant (bnc#616088).- patches.arch/acpi-limit-sleep.patch Limit ACPI Sleep() to 1 second (bnc#557710)- patches.fixes/ext4-make-sure-the-move_ext-ioctl-can-t-overwrite-append-only-files: ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only files (bnc#612457 CVE-2010-2066).- patches.fixes/l2tp-fix-oops-in-pppol2tp_xmit: l2tp: Fix oops in pppol2tp_xmit (bnc#616612).- patches.fixes/gfs2-fix-permissions-checking-for-setflags-ioctl: GFS2: Fix permissions checking for setflags ioctl() (bnc#608576 CVE-2010-1641).- btrfs fix rollup from v2.6.35: * Note: Features like aio and direct-io have not been added due to the infrastructure requirements that would be incompatible with the SLE11 SP1 KABI - patches.fixes/btrfs-add-a-df-ioctl-for-btrfs: Btrfs: add a "df" ioctl for btrfs. - patches.fixes/btrfs-add-a-function-to-lookup-a-directory-path-by-following-backrefs: Btrfs: add a function to lookup a directory path by following backrefs. - patches.fixes/btrfs-add-btrfs_duplicate_item: Btrfs: Add btrfs_duplicate_item. - patches.fixes/btrfs-add-check-for-changed-leaves-in-setup_leaf_for_split: Btrfs: add check for changed leaves in setup_leaf_for_split. - patches.fixes/btrfs-add-delayed-iput: Btrfs: Add delayed iput. - patches.fixes/btrfs-add-error-handle-for-btrfs_search_slot-in-btrfs_read_chunk_tree: Btrfs: Add error handle for btrfs_search_slot() in btrfs_read_chunk_tree(). - patches.fixes/btrfs-add-ioctl-and-incompat-flag-to-set-the-default-mount-subvol: Btrfs: add ioctl and incompat flag to set the default mount subvol. - patches.fixes/btrfs-add-more-error-checking-to-btrfs_dirty_inode: Btrfs: add more error checking to btrfs_dirty_inode. - patches.fixes/btrfs-add-mount-o-compress-force: Btrfs: Add mount -o compress-force. - patches.fixes/btrfs-add-new-defrag-range-ioctl: Btrfs: add new defrag-range ioctl. - patches.fixes/btrfs-add-null-check-for-do_walk_down: Btrfs: add NULL check for do_walk_down(). - patches.fixes/btrfs-add-search-and-inode-lookup-ioctls: Btrfs: add search and inode lookup ioctls. - patches.fixes/btrfs-align-offsets-for-btrfs_ordered_update_i_size: Btrfs: align offsets for btrfs_ordered_update_i_size. - patches.fixes/btrfs-allow-treeid-0-in-the-inode-lookup-ioctl: Btrfs: allow treeid==0 in the inode lookup ioctl. - patches.fixes/btrfs-apply-updated-fallocate-i_size-fix: Btrfs: apply updated fallocate i_size fix. - patches.fixes/btrfs-avoid-bug-when-dropping-root-and-reference-in-same-transaction: Btrfs: avoid BUG when dropping root and reference in same transaction. - patches.fixes/btrfs-avoid-enospc-errors-in-btrfs_dirty_inode: Btrfs: avoid ENOSPC errors in btrfs_dirty_inode. - patches.fixes/btrfs-avoid-orphan-inodes-cleanup-during-committing-transaction: Btrfs: Avoid orphan inodes cleanup during committing transaction. - patches.fixes/btrfs-avoid-orphan-inodes-cleanup-while-replaying-log: Btrfs: Avoid orphan inodes cleanup while replaying log. - patches.fixes/btrfs-avoid-superfluous-tree-log-writeout: Btrfs: Avoid superfluous tree-log writeout. - patches.fixes/btrfs-be-more-selective-in-the-defrag-ioctl: Btrfs: be more selective in the defrag ioctl. - patches.fixes/btrfs-btrfs_iget-returns-err_ptr: Btrfs: btrfs_iget() returns ERR_PTR. - patches.fixes/btrfs-btrfs_lookup_dir_item-can-return-err_ptr: Btrfs: btrfs_lookup_dir_item() can return ERR_PTR. - patches.fixes/btrfs-btrfs_mark_extent_written-uses-the-wrong-slot: Btrfs: btrfs_mark_extent_written uses the wrong slot. - patches.fixes/btrfs-btrfs_read_fs_root_no_name-returns-err_ptrs: Btrfs: btrfs_read_fs_root_no_name() returns ERR_PTRs. - patches.fixes/btrfs-buffer-results-in-the-space_info-ioctl: Btrfs: buffer results in the space_info ioctl. - patches.fixes/btrfs-cache-extent-state-in-find_delalloc_range: Btrfs: cache extent state in find_delalloc_range. - patches.fixes/btrfs-cache-ordered-extent-when-completing-io: Btrfs: cache ordered extent when completing io. - patches.fixes/btrfs-cache-the-extent-state-everywhere-we-possibly-can-v2: Btrfs: cache the extent state everywhere we possibly can V2. - patches.fixes/btrfs-change-how-we-mount-subvolumes: Btrfs: change how we mount subvolumes. - patches.fixes/btrfs-change-the-ordered-tree-to-use-a-spinlock-instead-of-a-mutex: Btrfs: change the ordered tree to use a spinlock instead of a mutex. - patches.fixes/btrfs-check-btrfs_get_extent-return-for-is_err: Btrfs: check btrfs_get_extent return for IS_ERR(). - patches.fixes/btrfs-check-return-value-of-open_bdev_exclusive-properly: Btrfs: check return value of open_bdev_exclusive properly. - patches.fixes/btrfs-check-total-number-of-devices-when-removing-missing: Btrfs: check total number of devices when removing missing. - patches.fixes/btrfs-create-snapshot-references-in-same-commit-as-snapshot: Btrfs: create snapshot references in same commit as snapshot. - patches.fixes/btrfs-deal-with-null-acl-sent-to-btrfs_set_acl: Btrfs: deal with NULL acl sent to btrfs_set_acl. - patches.fixes/btrfs-deny-sys_link-across-subvolumes: Btrfs: deny sys_link across subvolumes. - patches.fixes/btrfs-dereferencing-freed-memory: Btrfs: dereferencing freed memory. - patches.fixes/btrfs-do-not-mark-the-chunk-as-readonly-if-in-degraded-mode: Btrfs: do not mark the chunk as readonly if in degraded mode. - patches.fixes/btrfs-do-not-try-and-lookup-the-file-extent-when-finishing-ordered-io: Btrfs: do not try and lookup the file extent when finishing ordered io. - patches.fixes/btrfs-don-t-add-extent-0-to-the-free-space-cache-v2: Btrfs: don't add extent 0 to the free space cache v2. - patches.fixes/btrfs-don-t-look-at-bio-flags-after-submit_bio: Btrfs: don't look at bio flags after submit_bio. - patches.fixes/btrfs-don-t-walk-around-with-task-state-task_running: Btrfs: don't walk around with task->state != TASK_RUNNING. - patches.fixes/btrfs-drop-verbose-enospc-printk: Btrfs: drop verbose enospc printk. - patches.fixes/btrfs-fail-mount-on-bad-mount-options: Btrfs: fail mount on bad mount options. - patches.fixes/btrfs-fail-to-mount-if-we-have-problems-reading-the-block-groups: Btrfs: fail to mount if we have problems reading the block groups. - patches.fixes/btrfs-finish-read-pages-in-the-order-they-are-submitted: Btrfs: finish read pages in the order they are submitted. - patches.fixes/btrfs-fix-a-memory-leak-in-btrfs_init_acl: Btrfs: fix a memory leak in btrfs_init_acl. - patches.fixes/btrfs-fix-block-generation-verification-race: Btrfs: Fix block generation verification race. - patches.fixes/btrfs-fix-btrfs_drop_extent_cache-for-skip-pinned-case: Btrfs: Fix btrfs_drop_extent_cache for skip pinned case. - patches.fixes/btrfs-fix-btrfs_mkdir-goto-for-no-free-objectids: btrfs: fix btrfs_mkdir goto for no free objectids. - patches.fixes/btrfs-fix-bug_on-for-fs-converted-from-extn: Btrfs: Fix BUG_ON for fs converted from extN. - patches.fixes/btrfs-fix-chunk-allocate-size-calculation: Btrfs: fix chunk allocate size calculation. - patches.fixes/btrfs-fix-data-enospc-check-overflow: Btrfs: fix data enospc check overflow. - patches.fixes/btrfs-fix-disk_i_size-update-corner-case: Btrfs: Fix disk_i_size update corner case. - patches.fixes/btrfs-fix-fallocate-regression: Btrfs: fix fallocate regression. - patches.fixes/btrfs-fix-gfp-flags-masking-in-the-compression-code: Btrfs: fix gfp flags masking in the compression code. - patches.fixes/btrfs-fix-key-checks-and-advance-in-the-search-ioctl: Btrfs: fix key checks and advance in the search ioctl. - patches.fixes/btrfs-fix-loop-device-on-top-of-btrfs: Btrfs: fix loop device on top of btrfs. - patches.fixes/btrfs-fix-memory-leaks-in-error-paths: Btrfs, fix memory leaks in error paths. - patches.fixes/btrfs-fix-missing-last-entry-in-readdir3: btrfs: fix missing last-entry in readdir(3). - patches.fixes/btrfs-fix-null-dereference-in-relocation-c: Btrfs: Fix null dereference in relocation.c. - patches.fixes/btrfs-fix-oopsen-when-dropping-empty-tree: Btrfs: Fix oopsen when dropping empty tree. - patches.fixes/btrfs-fix-per-root-used-space-accounting: Btrfs: Fix per root used space accounting. - patches.fixes/btrfs-fix-possible-panic-on-unmount: Btrfs: fix possible panic on unmount. - patches.fixes/btrfs-fix-race-between-allocate-and-release-extent-buffer: Btrfs: fix race between allocate and release extent buffer. - patches.fixes/btrfs-fix-race-in-btrfs_mark_extent_written: Btrfs: Fix race in btrfs_mark_extent_written. - patches.fixes/btrfs-fix-regression-in-orphan-cleanup: Btrfs: fix regression in orphan cleanup. - patches.fixes/btrfs-fix-remap_file_pages-error: Btrfs: fix remap_file_pages error. - patches.fixes/btrfs-fix-search_ioctl-key-advance: Btrfs: fix search_ioctl key advance. - patches.fixes/btrfs-fix-small-race-with-delalloc-flushing-waitqueue-s: Btrfs: fix small race with delalloc flushing waitqueue's. - patches.fixes/btrfs-fix-the-inode-ref-searches-done-by-btrfs_search_path_in_tree: Btrfs: fix the inode ref searches done by btrfs_search_path_in_tree. - patches.fixes/btrfs-flush-data-on-snapshot-creation: Btrfs: flush data on snapshot creation. - patches.fixes/btrfs-handle-err_ptr-from-posix_acl_from_xattr: Btrfs: handle ERR_PTR from posix_acl_from_xattr(). - patches.fixes/btrfs-handle-error-returns-from-btrfs_lookup_dir_item: Btrfs: handle error returns from btrfs_lookup_dir_item(). - patches.fixes/btrfs-handle-kmalloc-failure-in-inode-lookup-ioctl: Btrfs: handle kmalloc() failure in inode lookup ioctl. - patches.fixes/btrfs-handle-kzalloc-failure-in-open_ctree: Btrfs: handle kzalloc() failure in open_ctree(). - patches.fixes/btrfs-integrate-metadata-reservation-with-start_transaction: Btrfs: Integrate metadata reservation with start_transaction. - patches.fixes/btrfs-introduce-contexts-for-metadata-reservation: Btrfs: Introduce contexts for metadata reservation. - patches.fixes/btrfs-introduce-global-metadata-reservation: Btrfs: Introduce global metadata reservation. - patches.fixes/btrfs-kfree-correct-pointer-during-mount-option-parsing: Btrfs: kfree correct pointer during mount option parsing. - patches.fixes/btrfs-kill-allocate_wait-in-space_info: Btrfs: Kill allocate_wait in space_info. - patches.fixes/btrfs-kill-init_btrfs_i: Btrfs: Kill init_btrfs_i(). - patches.fixes/btrfs-kill-max_extent-mount-option: Btrfs: kill max_extent mount option. - patches.fixes/btrfs-link-block-groups-of-different-raid-types: Btrfs: Link block groups of different raid types. - patches.fixes/btrfs-make-df-be-a-little-bit-more-understandable: Btrfs: make df be a little bit more understandable. - patches.fixes/btrfs-make-error-return-negative-in-btrfs_sync_file: Btrfs: make error return negative in btrfs_sync_file(). - patches.fixes/btrfs-make-fallocate2-more-enospc-friendly: Btrfs: Make fallocate(2) more ENOSPC friendly. - patches.fixes/btrfs-make-metadata-chunks-smaller: Btrfs: make metadata chunks smaller. - patches.fixes/btrfs-make-set-get-functions-for-the-super-compat_ro-flags-use-compat_ro: Btrfs: make set/get functions for the super compat_ro flags use compat_ro. - patches.fixes/btrfs-make-subvolid-0-mount-the-original-default-root: Btrfs: make subvolid=0 mount the original default root. - patches.fixes/btrfs-make-sure-fallocate-properly-starts-a-transaction: Btrfs: make sure fallocate properly starts a transaction. - patches.fixes/btrfs-make-sure-the-chunk-allocator-doesn-t-create-zero-length-chunks: Btrfs: make sure the chunk allocator doesn't create zero length chunks. - patches.fixes/btrfs-make-truncate2-more-enospc-friendly: Btrfs: Make truncate(2) more ENOSPC friendly. - patches.fixes/btrfs-metadata-enospc-handling-for-balance: Btrfs: Metadata ENOSPC handling for balance. - patches.fixes/btrfs-metadata-enospc-handling-for-tree-log: Btrfs: Metadata ENOSPC handling for tree log. - patches.fixes/btrfs-metadata-reservation-for-orphan-inodes: Btrfs: Metadata reservation for orphan inodes. - patches.fixes/btrfs-pass-transaction-handle-to-security-and-acl-initialization-functions: Btrfs: Pass transaction handle to security and ACL initialization functions. - patches.fixes/btrfs-pre-allocate-space-for-data-relocation: Btrfs: Pre-allocate space for data relocation. - patches.fixes/btrfs-prohibit-a-operation-of-changing-acl-s-mask-when-noacl-mount-option-used: Btrfs: prohibit a operation of changing acl's mask when noacl mount option used. - patches.fixes/btrfs-remove-bug_on-due-to-mounting-bad-filesystem: Btrfs: remove BUG_ON() due to mounting bad filesystem. - patches.fixes/btrfs-remove-duplicate-include-in-ioctl-c: Btrfs: remove duplicate include in ioctl.c. - patches.fixes/btrfs-remove-tree_search-in-extent_map-c: Btrfs: remove tree_search() in extent_map.c. - patches.fixes/btrfs-remove-unnecessary-finish_wait-in-wait_current_trans: Btrfs: Remove unnecessary finish_wait() in wait_current_trans(). - patches.fixes/btrfs-return-keys-for-large-items-to-the-search-ioctl: Btrfs: return keys for large items to the search ioctl. - patches.fixes/btrfs-rewrite-btrfs_drop_extents: Btrfs: Rewrite btrfs_drop_extents. - patches.fixes/btrfs-run-orphan-cleanup-on-default-fs-root: Btrfs: run orphan cleanup on default fs root. - patches.fixes/btrfs-run-the-backing-dev-more-often-in-the-submit_bio-helper: Btrfs: run the backing dev more often in the submit_bio helper. - patches.fixes/btrfs-should-add-a-permission-check-for-setfacl: Btrfs: should add a permission check for setfacl. - patches.fixes/btrfs-show-discard-option-in-proc-mounts: Btrfs: Show discard option in /proc/mounts. - patches.fixes/btrfs-shrink-delay-allocated-space-in-a-synchronized: Btrfs: Shrink delay allocated space in a synchronized. - patches.fixes/btrfs-simplify-num_stripes-s-calculation-logical-for-__btrfs_alloc_chunk: Btrfs: Simplify num_stripes's calculation logical for __btrfs_alloc_chunk(). - patches.fixes/btrfs-uninitialized-data-is-check_path_shared: Btrfs: uninitialized data is check_path_shared(). - patches.fixes/btrfs-unwind-after-btrfs_start_transaction-errors: Btrfs: unwind after btrfs_start_transaction() errors. - patches.fixes/btrfs-update-existing-btrfs_device-for-renaming-device: btrfs: Update existing btrfs_device for renaming device. - patches.fixes/btrfs-update-metadata-reservation-for-delayed-allocation: Btrfs: Update metadata reservation for delayed allocation. - patches.fixes/btrfs-use-__u64-types-in-ioctl-h: Btrfs: use __u64 types in ioctl.h. - patches.fixes/btrfs-use-add_to_page_cache_lru-use-__page_cache_alloc: Btrfs: use add_to_page_cache_lru, use __page_cache_alloc. - patches.fixes/btrfs-use-correct-values-when-updating-inode-i_size-on-fallocate: Btrfs: Use correct values when updating inode i_size on fallocate. - patches.fixes/btrfs-use-memparse: btrfs: use memparse. - patches.fixes/btrfs-use-rb_root-to-intialize-rb_trees-instead-of-setting-rb_node-to-null: Btrfs: use RB_ROOT to intialize rb_trees instead of setting rb_node to NULL. - patches.fixes/btrfs-using-btrfs_stack_device_id-get-devid: btrfs: using btrfs_stack_device_id() get devid. - patches.fixes/err-h-add-helper-function-to-simplify-pointer-error-checking: err.h: add helper function to simplify pointer error checking.- patches.fixes/ocfs2-Limit-default-local-alloc-size-within-bitmap-r.patch: ocfs2: Limit default local alloc size within bitmap range (bnc#501563).- patches.arch/tlb_uv_update3.patch: x86 / UV: TLB shootdown (BAU) third set of bugfixes (bnc#611104, FATE#306952).- patches.arch/s390-18-01-kernel-panic-kprobes.patch: kernel: fix kernel panic caused by using kprobes (bnc#613542,LTC#64497).- patches.drivers/cxgb3i-zero-out-reserved-fields: cxgb3i: zero out reserved or un-used fields (bnc#574006).- patches.drivers/watchdog-hpwdt-introduce-secs_to_ticks-macro.patch: watchdog: hpwdt (1/3): Introduce SECS_TO_TICKS() macro (makes next patch apply cleanly). - patches.drivers/watchdog-hpwdt-allow-full-range-of-timer-values-supported-by-hardware.patch: watchdog: hpwdt (2/3): allow full range of timer values supported by hardware (bnc#612407).- patches.arch/ppc64-kdump-rebase: powerpc: Move kdump default base address to 64MB on 64bit (bnc#607448).- patches.fixes/virtio_net-Add-napi-schedule-to-napi_enable-call.patch: virtio_net: Add napi schedule to napi_enable call (bnc#606797).- patches.fixes/virtio_net-make-delayed-refill-more-reliable.patch: virtio_net: Make delayed refill more reliable (bnc#606797).- Update Xen patches to 2.6.32.13 and c/s 1017.- patches.drivers/ipmi-add-parameter-to-limit-cpu-usage-in-kipmid.patch: Revert an incorrect change (bnc#468397, bnc#613906).- Allow kabi change in drivers/s390/net/qeth.- patches.arch/bug-610783_uv_nortsched_boot_option.patch: Provide boot option to disable sched_rt_runtime (bnc#610783).- patches.drivers/cnic-Convert-cnic_local_flags-to-atomic-ops.patch: Refresh to add cnic_local_flags- patches.drivers/cnic-Convert-cnic_local_flags-to-atomic-ops.patch: cnic: Convert cnic_local_flags to atomic ops (bnc#608435). - patches.drivers/cnic-Finetune-iSCSI-connection-reset.patch: cnic: Finetune iSCSI connection reset (bnc#608435). - patches.drivers/cnic-Finetune-iSCSI-connection-set-up.patch: cnic: Finetune iSCSI connection set up (bnc#608435). - patches.drivers/cnic-Fix-context-memory-init.-on-5709.patch: cnic: Fix context memory init. on 5709 (bnc#608435). - patches.drivers/cnic-Fix-panic-in-cnic_iscsi_nl_msg_recv-when-device.patch: cnic: Fix panic in cnic_iscsi_nl_msg_recv() when device is down (bnc#608435). - patches.drivers/cnic-Return-SPQ-credit-to-bnx2x-after-ring-setup-and.patch: cnic: Return SPQ credit to bnx2x after ring setup and shutdown (bnc#608435).- patches.fixes/reiserfs-xattr-crash-fix: reiserfs: Fix crash during umount (bnc#610598).- patches.fixes/ext4-fix-optional-arg-mount-options: ext4: Fix optional-arg mount options (bnc#611760).- patches.fixes/module-drop-the-lock-while-waiting-for-module-to-complete-initialization.patch: patch-mainline -> never (bnc#609281)- patches.arch/s390-17-01-cmm-unload.patch: cmm: fix module unload handling (bnc#607890,LTC#63956). - patches.arch/s390-17-02-cio_reenable_mss_after_hibernation.patch: cio: reenable mss after hibernation (bnc#607890,LTC#64013). - patches.arch/s390-17-03-zfcp_offline_sbal_wait.patch: zfcp: Do not wait for SBALs on stopped queue (bnc#607890,LTC#64249). - patches.arch/s390-17-04-ccwgroup-drvdata-locking.patch: ccwgroup: add locking around drvdata access (bnc#607890,LTC#64325).- patches.drivers/e1000e-entropy-source.patch: Reintroduce IRQF_SHARED to fix non-MSI case (bnc#610362).- patches.arch/x86-pci-add-option-to-not-assign-bars-if-not-already-assigned.patch: x86/PCI: Add option to not assign BAR's if not already assigned (bnc#603387).- patches.drivers/mptsas-eh_timeout-callback: modify patch header.- patches.drivers/mpt2sas-04.100.01.04-update: mpt2sas: array overrun when loading driver (bnc#608478).- rpm/package-descriptions: Change description for -trace (bnc#607628)- patches.drivers/mptsas-eh_timeout-callback: mptsas offlines paths after cable pull (bnc#603411).- Applied migration thread vs sched_rt_period_timer deadlock fix from bnc#603510. - patches.fixes/kill-migration-thread-in-CPU_POST_DEAD-instead-of-CPU_DEAD.diff: kill migration thread in CPU_POST_DEAD instead of CPU_DEAD (bnc#603510).- Update config files: Cleaned up ppc64-vanilla.- patches.fixes/ipmi-fix-deadlock.patch: IPMI: avoid deadlock during panic (bnc#580373).- patches.drivers/pci-disable-msi-on-K8M800: pci: disable MSI on VIA K8M800 (bnc#599508).- patches.fixes/scsi-requeue-abort-request-race: Refresh. Fix a race in the patch. (bnc#588929)- patches.suse/pagecache-limit-dirty.diff: Fix misplaced paren (thanks, JanB!).- patches.drivers/qla2xxx-fix-tgt-init-prli-payload.diff: SLES11 SP1 GMC kernel not identifying qla2xxx LUNs (bnc#606977).- patches.drivers/qla2xxx-8.03.01.07.11.1-k8-update: qla2xxx: Minor updates and fixes from upstream (bnc#605001).- patches.arch/x86-mce-xeon75xx-fix-typo-causing-a-kernel-crash.patch: x86: mce-xeon75xx: fix typo causing a kernel crash (bnc#606778).- patches.arch/s390-16-01-ptrace-fix-return-value.patch: ptrace: fix return value of do_syscall_trace_enter() (bnc#605947,LTC#63473). - patches.arch/s390-16-02-qeth-conf-mutex.patch: qeth: synchronize configuration interface (bnc#605947,LTC#63562).- patches.fixes/hvc_console-fix-race-between-hvc_close-and-hvc_remove: hvc_console: Fix race between hvc_close and hvc_remove (bnc#585385). - patches.fixes/hvc_console-fix-race-between-hvc_close-and-hvc_remove2: hvc_console: Fix race between hvc_close and hvc_remove (bnc#585385).- patches.fixes/btrfs-check-for-read-permission-on-src-file-in-the-clone-ioctl: Btrfs: check for read permission on src file in the clone ioctl (bnc#606743).- patches.suse/xfs-dmapi-xfs-enable: Reorder a structure to get back the previous kabi signature.- Update config files for vanilla kernels- Update to 2.6.32.13 - bugfixes - security fixes - obsoletes: - patches.arch/x86-enable-northbridges-unconditionally-on-amd-systems.patch - patches.drivers/bnx2-fix-lost-msi-x-problem-on-5709-nics.patch - patches.fixes/block-blk_abort_request-lock-fix - patches.fixes/hugetlb-fix-infinite-loop-in-get_futex_key.patch - patches.fixes/ocfs2-Compute-metaecc-for-superblocks-during-online-.patch - patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv - patches.fixes/scsi-enable-barrier-retries-on-UNIT_ATTENTION - patches.fixes/scsi_debug-scale-virtual_gb-with-sector_size-properly - patches.fixes/sd-enable-retries-for-sync-cache - patches.fixes/staging-hv-fix-a-bug-affecting-ipv6.patch - patches.fixes/staging-hv-fix-up-memory-leak-on-hvcleanup.patch - patches.fixes/staging-hv-name-network-device-ethx-rather-than-sethx.patch - patches.fixes/tg3-fix-intx-fallback-when-msi-fails.patch - patches.fixes/x86_cpufreq_powernowk8_fix_wrong_freqs.patch - patches.xfs/xfs-add-a-shrinker-to-background-inode-reclaim.patch- patches.fixes/sctp-fix-oops-when-sending-queued-asconf-chunks: Update references (bnc#600375 CVE-2010-1173). - patches.fixes/sctp-fix-skb_over_panic-resulting-from-multiple-invalid-parameter-errors: sctp: Fix skb_over_panic resulting from multiple invalid parameter errors (bnc#600375 CVE-2010-1173).- patches.fixes/sctp-fix-oops-when-sending-queued-asconf-chunks: Update references (bnc#600375 CVE-2010-1173). - patches.fixes/sctp-fix-skb_over_panic-resulting-from-multiple-invalid-parameter-errors: sctp: Fix skb_over_panic resulting from multiple invalid parameter errors (CVE-2010... (bnc#600375 CVE-2010-1173).- patches.fixes/proc-revert-provide-stack-info-01.patch: proc: partially revert "procfs: provide stack information for threads" (bnc#598677). - patches.fixes/proc-revert-provide-stack-info-02.patch: revert "procfs: provide stack information for threads" and its fixup commits (bnc#598677). - patches.kabi/task_struct-stack_start.patch: - patches.trace/utrace-core: Refresh.- supported.conf: add uv_mmtimer as requested by SGI in bnc#602232- patches.fixes/ipv6-fix-dad-race.patch: Delete. (fixes bnc#604183, partially fixes bnc#602969 and reopens bnc#577967)- Update config files. - patches.suse/staging-hv-added-new-hv_utils-driver-with-shutdown-as-first-functionality.patch: Staging: hv: Added new hv_utils driver with shutdown as first functionality (bnc#605321).- patches.fixes/tcp_fix_oob_pollin_avoidance.patch: tcp: Fix OOB POLLIN avoidance (bnc#598493).- patches.suse/staging-hv-a-clocksource-for-linux-guests-hosted-on-hyperv.patch: Staging: hv: A clocksource for Linux guests hosted on HyperV (bnc#605321).- rpm/kernel-binary.spec.in: Fix preserving of old symsets.- Update reference module symbol versions, watch xfs kabi again.Add ProLiant DL580 G7 to use _CRS for PCI resources by default (bnc#578572) - patches.fixes/x86_hp_add_more_usecrs_to_whitelist.patch: Refresh.- patches.drivers/drm-Keep-disabled-outputs-disabled-after-resume: drm: Keep disabled outputs disabled after suspend / resume (bnc#600256).- kabi/severities: ignore XFS kABI for now (bnc#582872).- patches.xfs/xfs-add-a-shrinker-to-background-inode-reclaim.patch: xfs: add a shrinker to background inode reclaim (bnc#582872). - patches.xfs/xfs-cleanup-data-end-I-O-handlers.patch: Delete.- patches.suse/pagecache-limit-dirty.diff: Make pagecache limit enforcement configurable for dirty pages. [FATE309111]- patches.fixes/staging-hv-auto-load-the-hyperv-pv-net-driver.patch: Staging: hv: Auto-load the hyperV PV net driver (None). - patches.fixes/staging-hv-fix-a-bug-affecting-ipv6.patch: Staging: hv: Fix a bug affecting IPv6 (None). - patches.fixes/staging-hv-fix-up-memory-leak-on-hvcleanup.patch: Staging: hv: Fix up memory leak on HvCleanup (None). - patches.fixes/staging-hv-name-network-device-ethx-rather-than-sethx.patch: Staging: hv: name network device ethX rather than sethX (None).- patches.suse/pagecache-limit-unmapped.diff: Fix calculation of number of unmapped (freeable) pages if shmem > mapped and add safety guard by crosschecking with the LRU lists. Finetune: Consider swapped out mem and apply an offset when increasing limit due to free mem.- patches.fixes/keys-find_keyring_by_name-can-gain-access-to-a-freed-keyring: KEYS: find_keyring_by_name() can gain access to a freed keyring (bnc#599955 CVE-2010-1437).- patches.suse/pagecache-limit.patch: No more than 2 passes.- patches.arch/s390-15-01-dasd-fix-tasklet-sleep-on-race.patch: dasd: fix race between tasklet and dasd_sleep_on (bnc#602852,LTC#63146).- patches.suse/pagecache-limit.patch: Finetune -- do larger batches and an additional pass if needed. [FATE309111]- Update config files: refresh after ILLEGAL_POINTER_VALUE change.- patches.arch/ppc-xics-affinity-fix: powerpc/pseries: Fix xics interrupt affinity (bnc#603148).- patches.fixes/hugetlb-fix-infinite-loop-in-get_futex_key.patch: hugetlb: fix infinite loop in get_futex_key() when backed by huge pages (bnc#603205). - update config files: run oldconfig- patches.fixes/scsi-enable-barrier-retries-on-UNIT_ATTENTION: Retry commands with UNIT_ATTENTION sense codes (bnc#591556). - patches.fixes/sd-enable-retries-for-sync-cache: Enable retries for SYNCRONIZE_CACHE commands to fix I/O error (bnc#591556). - patches.suse/dm-mpath-disable-abort-queue: dm-mpath: Disable abort queue (bnc#588929).- rpm/kernel-binary.spec.in: Disabled install_vdso for s390/s390x on kernel-vanilla (bnc#600535)- patches.arch/x86-cacheinfo-turn-off-l3-cache-index-in-virtualized-envs.patch: x86, cacheinfo: Turn off L3 cache index disable feature in virtualized environments (bnc#602514). - patches.arch/x86-enable-northbridges-unconditionally-on-amd-systems.patch: x86, k8 nb: Fix boot crash: enable k8_northbridges unconditionally on AMD systems (bnc#602514). - patches.xen/xen3-auto-xen-kconfig.diff: Refresh.- patches.drivers/bnx2-fix-lost-msi-x-problem-on-5709-nics.patch: bnx2: Fix lost MSI-X problem on 5709 NICs (bnc#602980).- patches.fixes/ocfs2-Add-directory-entry-later-in-ocfs2_symlink-and.patch: ocfs2: Add directory entry later in ocfs2_symlink() and ocfs2_mknod() (bnc#595609). - patches.fixes/ocfs2-add-OCFS2_INODE_SKIP_ORPHAN_DIR-flag-and-honor.patch: ocfs2: add OCFS2_INODE_SKIP_ORPHAN_DIR flag and honor it in the inode wipe code (bnc#595609). - patches.fixes/ocfs2-avoid-direct-write-if-we-fall-back-to-buffered.patch: ocfs2: Avoid direct write if we fall back to buffered I/O (bnc#591039) - refreshed patch with a new version - patches.fixes/ocfs2-use-OCFS2_INODE_SKIP_ORPHAN_DIR-in-ocfs2_mknod.patch: ocfs2: use OCFS2_INODE_SKIP_ORPHAN_DIR in ocfs2_mknod error path (bnc#595609). - patches.fixes/ocfs2-use-OCFS2_INODE_SKIP_ORPHAN_DIR-in-ocfs2_symli.patch: ocfs2: use OCFS2_INODE_SKIP_ORPHAN_DIR in ocfs2_symlink error path (bnc#595609).- rpm/kernel-binary.spec.in: Enable install_vdso for s390/s390x (bnc#600535)- patches.arch/ppc-public-query_cpu_stopped: powerpc: make query_cpu_stopped callable outside hotplug cpu (bnc#602208). - patches.arch/ppc-start-only-stopped-cpus: powerpc: only call start-cpu when a CPU is stopped (bnc#602208).- patches.fixes/mm-independent-rr-slab.patch: Refresh.- patches.suse/pagecache-limit.patch: As we only only enforce the unmapped pagecache, we can simplify significantly. [FATE309111] - patches.suse/pagecache-limit-shmem.diff: Obsoleted.- patches.fixes/keyspan-firmware-install.patch: Fix USB_SERIAL_KEYSPAN firmware dependencies (bnc#562095). - Update config files.- config.conf: Drop the config/s390/vanilla symlink, people keep breaking it. - config/s390/vanilla: Delete.- patches.fixes/mm-independent-rr-slab.patch: independent rotors for slab and pagecache (bnc#600261). - patches.suse/slab-memless-node-02-slab-use-numa_mem_id.patch: Refresh.- patches.fixes/tg3-fix-intx-fallback-when-msi-fails.patch: tg3: Fix INTx fallback when MSI fails (bnc#601198).- patches.fixes/novfs-truncate-EIO-fix.patch: novfs: ftruncate call returns EIO as it causes two open calls (bnc#596031).- patches.fixes/spinning-mutex-BKL-deadlock.patch: Updated the patch to the newer version that got posted for upstream inclusion (bnc#590705)- patches.fixes/ixgbe-fix-return-of-invalid-txq.patch: ixgbe: Fix return of invalid txq (bnc#601168).- patches.fixes/cifs-fix-oops-due-to-null-nameidata: Allow null nd (as nfs server uses) on create (bnc#593940).- patches.drivers/lpfc-8.3.5.8.1p-update: Update lpfc from 8.3.5.8 to 8.3.5.8.1p (bnc#600983). - patches.drivers/qla2xxx-8.03.01.06.11.1-k8-update: qla2xxx: Minor updates and fixes from upstream (bnc#599814).- patches.fixes/kernel-core-add-pid_max-start-option.patch: init: Increase pid_max based on num_possible_cpus v4 (bnc#598253, FATE#306952).- patches.fixes/sctp-fix-oops-when-sending-queued-asconf-chunks: sctp: Fix oops when sending queued ASCONF chunks. - patches.fixes/sctp-fix-to-calc-the-init-init-ack-chunk-length-correctly-is-set: sctp: fix to calc the INIT/INIT-ACK chunk length correctly is set (bnc#686813 CVE-2011-1573).- patches.arch/s390-14-01-vdso-ntp-multiplier.patch: vdso: use ntp adjusted clock multiplier (bnc#600516). - patches.arch/s390-14-02-vdso-install.patch: vdso: add missing vdso_install target (bnc#600516).- patches.fixes/x86_cpufreq_powernowk8_fix_wrong_freqs.patch: powernow-k8: Fix frequency reporting (bnc#599279).- patches.fixes/scsi-requeue-abort-request-race: Race between blk_abort_queue() and scsi_requeue_request() (bnc#588929).- patches.fixes/dm-release-map_lock-before-set_disk_ro: Refresh. Fix patch to call dm_table_get directly instead of calling dm_get_table unnecesarily.- patches.suse/x86-mark_rodata_rw.patch: Fix 64bit bug (bnc#575194) - patches.arch/x86-ftrace-fix-rodata-1.patch: Refresh. - patches.xen/xen3-x86-ftrace-fix-rodata-1.patch: Refresh. - patches.xen/xen3-x86-mark_rodata_rw.patch: Refresh.- patches.suse/revert-percpu-stable-changes.patch: Revert module.c and module.h changes from -stable update (bnc#600364).- patches.fixes/spinning-mutex-BKL-deadlock.patch: Fix deadlock when acquiring mutex while holding BKL (bnc#590705).- Update kabi files to allow a change in struct xfs_mount.- supported.conf: removed hv drivers, as they are built as a separate KMP.- patches.kabi/revert-2.6.32.12-b43: Revert b43 changes to preserve the kabi.- Update to final 2.6.32.12 release- patches.suse/sched-revert-latency-defaults: Disable FAIR_SLEEPERS on s390. - Update config files.- patches.xen/xen3-patch-2.6.32.12-rc2: Linux 2.6.32.12-rc2. - patches.xen/xen3-add-support-for-intel-cougar-point-chipset.patch: Delete.- patches.drivers/qla4xxx-5.01.00.00.11.01-k13_5.01.00.00.11.01-k14.patch: QLA4xxx driver fixes for RC3 (bnc#585296).- patches.suse/fcoe-fix-a-circular-locking-is: fcoe: fix a circular locking issue with rtnl and sysfs mutex (bnc#595074). - patches.suse/fcoe-fixes-wrong-error-exit-in: fcoe: fixes wrong error exit in fcoe_create (bnc#595074). - patches.suse/libfc-set-seq_id-for-incoming: libfc: set seq_id for incoming sequence (bnc#595074).- patches.fixes/kvm-rcu-0021-KVM-convert-slots_lock-to-a-mutex.patch: Unfuzz- patches.fixes/kvm-rcu-0017-KVM-use-SRCU-for-dirty-log.patch: Rebase and enable again.- Update vanilla config files for .12-rc2 changes- Update to 2.6.32.12-rc2: - lots of bugfixes - security fixes - obsoletes: - patches.arch/i386-do-a-global-tlb-flush-in-S4-resume.patch - patches.arch/x86-32-clean-up-rwsem-inline-asm-statements.patch - patches.arch/x86-64-rwsem-64-bit-xadd-rwsem-implementation.patch - patches.arch/x86-64-rwsem-Avoid-store-forwarding-hazard-in-__downgrade_write.patch - patches.arch/x86-64-support-native-xadd-rwsem-implementation.patch - patches.arch/x86-Fix-breakage-of-UML-from-the-changes-in-the-rwsem-system.patch - patches.arch/x86-clean-up-rwsem-type-system.patch - patches.arch/x86_hpet_erratum_15.patch - patches.arch/x86_x2apic_double_enable_non_smp.patch - patches.drivers/add-support-for-intel-cougar-point-chipset.patch - patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch - patches.drivers/lis3-fix-show-rate-for-8-bits-chips - patches.drivers/r8169-offical-fix-for-CVE-2009-4537-overlength-frame.patch - patches.fixes/PCIe-AER-reject-aer-inject-if-hardware-mask-error-reporting.patch - patches.fixes/dm-mpath-requeue-stall - patches.fixes/fc_bsg_request_packed - patches.fixes/fix-sched_getaffinity-1 - patches.fixes/fix-sched_getaffinity-2 - patches.fixes/fix-sched_getaffinity-3 - patches.fixes/hid-fix-gyration-oops.patch - patches.fixes/ipoib-tx-queue-lockup-fix.patch - patches.fixes/kvm-disable-pvmmu-0001-KVM-x86-disable-paravirt-mmu-reporting.patch - patches.fixes/ocfs2-Change-bg_chain-check-for-ocfs2_validate_gd_parent.patch - patches.fixes/ocfs2-set-i_mode-on-disk-during-acl-operations.patch - patches.fixes/oom-fix-the-unsafe-usage-of-badness-in-proc_oom_score - patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch - patches.fixes/pci-update-pci_set_vga_state-to-call-arch-functions.patch - patches.fixes/raw-fsync-EINVAL-fix.diff - patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl - patches.fixes/scsi-fc-class-failfast-bsg-requests - patches.fixes/tty-release_one_tty-forgets-to-put-pids - patches.fixes/vgaarb-fix-vga-arbiter-to-accept-pci-domains-other-than-0.patch - patches.fixes/x86-amd-gart_Disable_GART_explicitly_before_initialization.patch - patches.fixes/x86-amd-iommu_enable_iommu_before_attaching_devices.patch - patches.fixes/x86-amd-iommu_revert_disable_IOMMUs_on_kernel_crash.patch - patches.fixes/x86-get-multinode-cpu-info-from-msr.patch - patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch - patches.suse/rlim-0002-resource-move-kernel-function-inside-__KERNEL__.patch - patches.xfs/xfs-Avoid-inodes-in-reclaim-when-flushing-from-inode.patch - patches.xfs/xfs-Don-t-flush-stale-inodes.patch - patches.xfs/xfs-Ensure-we-force-all-busy-extents-in-range-to-dis.patch - patches.xfs/xfs-Fix-error-return-for-fallocate-on-XFS.patch - patches.xfs/xfs-I-O-completion-handlers-must-use-NOFS-allocation.patch - patches.xfs/xfs-Wrapped-journal-record-corruption-on-read-at-rec.patch - patches.xfs/xfs-check-for-not-fully-initialized-inodes-in-xfs_ir.patch - patches.xfs/xfs-fix-mmap_sem-iolock-inversion-in-xfs_free_eofblo.patch - patches.xfs/xfs-fix-stale-inode-flush-avoidance.patch - patches.xfs/xfs-fix-timestamp-handling-in-xfs_setattr.patch - patches.xfs/xfs-reclaim-all-inodes-by-background-tree-walks.patch - patches.xfs/xfs-reclaim-inodes-under-a-write-lock.patch - patches.xfs/xfs-simplify-inode-teardown.patch - patches.xfs/xfs-xfs_swap_extents-needs-to-handle-dynamic-fork-of.patch- patches.suse/pagecache-limit-shmem.diff: Subtract shared memory when enforcing pagecache limit (FATE309111).- patches.arch/intel-iommu-Dont-complain-that-ACPI_DMAR_SCOPE_TYPE_IOAPIC-is-not-supported.patch: intel-iommu: Don't complain that ACPI_DMAR_SCOPE_TYPE_IOAPIC is not supported (bnc#579639, FATE#306952).- patches.fixes/kdb-no-printk-logging.patch: Refresh. Added hunks in kdb_lsmod and kdb_env.- patches.fixes/ipv6-fix-dad-race.patch: IPV6 - fix DAD race (bnc#577967, bnc#569916).- patches.arch/s390-13-01-nss-add-previous-stmt.patch: nss: add missing .previous statement to asm function (bnc#598553,LTC#62329). - patches.arch/s390-13-02-zcore-reipl-check.patch: zcore: Fix reipl device detection (bnc#598553).- patches.drivers/drm-i915-IronLake-fix-VGA-output-at-S4: Fix IronLake VGA output at S4 (bnc#595755).- patches.fixes/fix-sched_getaffinity-3: sched: Follow-up to the sched_getaffinity() fix (bnc#596720, bnc#598837).- patches.fixes/x86_hp_add_more_usecrs_to_whitelist.patch: Add more HP machines to use pci=use_crs by default (bnc#578572).- patches.fixes/kernel-core-add-pid_max-start-option.patch: init: Provide a kernel start parameter to increase pid_max (bnc#598253, FATE#306952).- patches.arch/x86-UV-Delete-unneeded-boot-messages.patch: x86, UV: Delete unneeded boot messages (bnc#590585, FATE#306952).- patches.arch/tlb_uv_update2.patch: Refresh.- These fix kexec/kdump with AMD IOMMU enabled: - patches.fixes/x86-amd-gart_Disable_GART_explicitly_before_initialization.patch: x86/gart: Disable GART explicitly before initialization (bnc#589650). - patches.fixes/x86-amd-iommu_enable_iommu_before_attaching_devices.patch: x86/amd-iommu: enable iommu before attaching devices (bnc#589650). - patches.fixes/x86-amd-iommu_revert_disable_IOMMUs_on_kernel_crash.patch: Revert "x86: disable IOMMUs on kernel crash" (bnc#589650).- patches.fixes/ibmvscsi-add-barriers: ibmvfc: Fix command completion handling (bnc#598270). - patches.fixes/ibmvscsi-reduce-error-recovery-timeout: ibmvfc: Reduce error recovery timeout (bnc#598270).- patches.fixes/kdb-no-printk-logging.patch: printk,kdb: capture printk() when in kdb shell (bnc#598246).- patches.drivers/drm-i915-Clear-TV-sense-state-bits-on-GM45: drm/i915: Clear the TV sense state bits on cantiga to make TV detection reliable (bnc#597648, bnc#597650).- Update Xen patches to 2.6.32.11 and c/s 1014 (bnc#569194, bnc#591371). - patches.xen/xen-blktap-teardown: blktap: fix cleanup after unclean application exit #2 (bnc#569194).- patches.suse/sched-revert-latency-defaults: Re-enable FAIR_SLEEPERS. Also disable NORMALIZED_SLEEPER which was actually a dead code earlier.- patches.fixes/x86-get-multinode-cpu-info-from-msr.patch: x86, amd: Get multi-node CPU info from NodeId MSR instead of PCI config space (bnc#594066).- patches.fixes/md-write-behind-race: md/raid1: delay reads that could overtake behind-writes (bnc#590415).- patches.drivers/qla2xxx-8.03.01.05.11.1-k8-update: qla2xxx: minor updates and fixes from upstream (bnc#596783).- patches.fixes/cnic-fix-crash-during-bnx2x-mtu-change.patch: Fix back port and add git-commit (bnc#564640)- patches.fixes/novfs-LFS-initialization: fs: novfs: Initialize super-block with standard macros. - patches.fixes/novfs-return-ENOTEMPTY-when-deleting-nonempty-dir: fs: novfs: Return ENOTEMPTY when tyring to delete a non-empty folder (bnc#583964).- patches.fixes/tty-release_one_tty-forgets-to-put-pids: tty: release_one_tty() forgets to put pids (bnc#596462).- patches.fixes/oom-fix-the-unsafe-usage-of-badness-in-proc_oom_score: oom: fix the unsafe usage of badness() in proc_oom_score() (bnc#596460).- patches.drivers/ehea-0102-0103-update: Fix feastlp3 drop to xmon with .free_pages+0x48/0x70 (ehea) (bnc#597120).- patches.arch/ppc-pseries-cmm4kdump: kdump support for CMM (bnc#597583). - Update appropriate ppc config files.- patches.fixes/kernel-mutex-adaptive-cpu-offline-livelock.patch: kernel mutex adaptive cpu offline livelock (bnc#595960, bnc#597135).- rpm/kernel-binary.spec.in, rpm/mkspec, rpm/old-packages.conf: Obsolete kernel-vmi-base by kernel-pae-base (bnc#594271).- rpm/mkspec, rpm/old-packages.conf: Explicitly list ppc64 flavors that obsolete kernel-kdump.- rpm/old-packages.conf: s390(x) provides/obsoletes not needed anymore.- patches.drivers/lis3-add-support-for-hp-probook-2: lis3: Add axis quirk for HP ProBook 532x (bnc#596943).- patches.fixes/block-blk_abort_request-lock-fix: libata/SCSI: fix locking around blk_abort_request() (bnc#585927).- patches.fixes/fix-sched_getaffinity-{1,2}: sched_getaffinity(): Allow less than NR_CPUS length (bnc#596720).- patches.fixes/raw-fsync-EINVAL-fix.diff: raw: fsync method is now required (bnc#590937).- patches.suse/bootsplash-console-fix: Fix rendering on linux console with bootsplash (bnc#595657).- patches.fixes/novfs-dentry-cache-limit.patch: novfs: Remove dcache count restricting code (bnc#576026).- patches.suse/SoN-11-mm-reserve.patch: Fix a build warning.- patches.drivers/igb-add-support-for-82576-et2-quad-port-server-adapter.patch: Delete, duplicate patch.- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an oops in novfs scope-finding code (bnc#588579) - actually enable the patch- patches.drivers/cnic-give-a-chance-for-the-uio-device-to-be-opened: Fixup compilation warnings. - patches.drivers/qla2xxx-8.03.01.03.11.1-k8-update: Fixup compilation warnings. - patches.fixes/ipr-strstrip-retval-fix: Fixup compilation warnings in ipr. - patches.suse/dm-mpath-leastpending-select-path-fix: Compile warning in dm-least-pending.- patches.fixes/mempolicy-fix-get_mempolicy-for-relative-and-static-nodes.patch: mempolicy: fix get_mempolicy() for relative and static nodes (bnc#594305).- patches.drivers/hpsa-only-unmap-buffer-when-allocated: hpsa: unmap ioctl xfer buffer correctly (bnc#590856). - patches.drivers/hpsa-update: Update HP SA driver to version 2.0.2-1 (bnc#591376).- series.conf: remove stale patch- series.conf: added forgotten patches.drivers/igb-add-support-for-82576-et2-quad-port-server-adapter.patch- patches.fixes/ixgbe-power-down-phy-during-driver-resets.patch: ixgbe: Power down PHY during driver resets (bnc#594997).- patches.drivers/igb-add-support-for-82576-et2-quad-port-server-adapter.patch: igb: Add support for 82576 ET2 Quad Port Server Adapter.- patches.drivers/r8169-offical-fix-for-CVE-2009-4537-overlength-frame.patch: r8169: offical fix for CVE-2009-4537 (overlength frame DMAs) (bnc#567376, CVE-2009-4537).- patches.drivers/bnx2x-initialize-cnic-status-block-during-chip-reset.patch: bnx2x: Initialize cnic status block during chip reset (bnc#564640).- patches.fixes/ocfs2-avoid-direct-write-if-we-fall-back-to-buffered.patch: ocfs2: avoid direct write if we fall back to buffered (BNC#591039).- patches.suse/ocfs2-Add-dir_resv_level-mount-option.patch: ocfs2: Add dir_resv_level mount option (bnc#501563 FATE#307247 bnc#583539). - patches.suse/ocfs2-change-default-reservation-window-sizes.patch: ocfs2: change default reservation window sizes (bnc#501563 FATE#307247 bnc#583539). - patches.suse/ocfs2-clean-up-localalloc-mount-option-size-parsing.patch: ocfs2: clean up localalloc mount option size parsing (bnc#501563 FATE#307247 bnc#583539). - patches.suse/ocfs2-increase-the-default-size-of-local-alloc-windo.patch: ocfs2: increase the default size of local alloc windows (bnc#501563 FATE#307247 bnc#583539).Ocfs2 fixes from the ocfs2.git repository which will go upstream soon: - patches.fixes/ocfs2-Check-the-owner-of-a-lockres-inside-the-spinlo.patch: ocfs2: Check the owner of a lockres inside the spinlock. - patches.fixes/ocfs2_dlmfs-User-DLM_-when-decoding-file-open-flags.patch: ocfs2_dlmfs: User DLM_* when decoding file open flags.- patches.fixes/ocfs2-Compute-metaecc-for-superblocks-during-online-.patch: ocfs2: Compute metaecc for superblocks during online resize. (BNC#592945). - backport upstream ocfs2 to SLES11 SP1 kernel. - patches.fixes/Ocfs2-Handle-deletion-of-reflinked-oprhan-inodes-cor.patch: Ocfs2: Handle deletion of reflinked oprhan inodes correctly.. - patches.fixes/Ocfs2-Journaling-i_flags-and-i_orphaned_slot-when-ad.patch: Ocfs2: Journaling i_flags and i_orphaned_slot when adding inode to orphan dir.. - patches.fixes/PATCH-Skip-check-for-mandatory-locks-when-unlocking.patch: [PATCH] Skip check for mandatory locks when unlocking. - patches.fixes/fs-ocfs2-cluster-tcp.c-remove-use-of-NIPQUAD-use-pI4.patch: fs/ocfs2/cluster/tcp.c: remove use of NIPQUAD, use %pI4. - patches.fixes/ocfs2-Clear-undo-bits-when-local-alloc-is-freed.patch: ocfs2: Clear undo bits when local alloc is freed. - patches.fixes/ocfs2-Fix-a-race-in-o2dlm-lockres-mastery.patch: ocfs2: Fix a race in o2dlm lockres mastery. - patches.fixes/ocfs2-Fix-the-update-of-name_offset-when-removing-xa.patch: ocfs2: Fix the update of name_offset when removing xattrs. - patches.fixes/ocfs2-Init-meta_ac-properly-in-ocfs2_create_empty_xa.patch: ocfs2: Init meta_ac properly in ocfs2_create_empty_xattr_block.. - patches.fixes/ocfs2-Update-i_blocks-in-reflink-operations.patch: ocfs2: Update i_blocks in reflink operations..- patches.fixes/sd-retry-readcap-on-ua: Fix build breakage in drivers/scsi/sd.c: /usr/src/packages/BUILD/kernel-default-2.6.32.11/linux-2.6.32/drivers/scsi/sd.c: In function 'read_capacity_10': /usr/src/packages/BUILD/kernel-default-2.6.32.11/linux-2.6.32/drivers/scsi/sd.c: 1470: error: lvalue required as left operand of assignment make[4]: *** [drivers/scsi/sd.o] Error 1 make[3]: *** [drivers/scsi] Error 2 make[3]: *** Waiting for unfinished jobs....- patches.drivers/synaptics-hp-clickpad: Refresh. Add missing call to restore LED status at reconnection (bnc#594835)- patches.fixes/sd-retry-readcap-on-ua: Compilation fix.- patches.fixes/sd-retry-readcap-on-ua: sd: retry read_capacity on UNIT_ATTENTION (bnc#590687).- patches.arch/power7-type1-numa-affinity: powerpc: Add form 1 NUMA affinity (bnc#594586).- patches.drivers/cnic-give-a-chance-for-the-uio-device-to-be-opened: Compile fix.- patches.suse/fcoe-libfc-increased-cdb-size: fcoe, libfc: increased CDB size to 16 bytes for fcoe. (bnc#595074). - patches.suse/libfc-bug-in-erroring-out-upon: libfc: bug in erroring out upon FCP_RSP_LEN_VAL in fc_fcp_resp (bnc#595074).- patches.drivers/cnic-give-a-chance-for-the-uio-device-to-be-opened: cnic: Give a chance for the uio device to be opened (bnc#564640).- patches.drivers/bnx2i-mtu-change-bugfix: bnx2i: Bug fixes related to MTU changes (bnc#564640).- patches.fixes/loop-update-mtime.patch: loop: Update mtime when writing using aops (bnc#590738).- patches.arch/s390-12-01_callhome.patch: callhome: fix broken proc interface and activate compid (bnc#594473). - patches.arch/s390-12-02-vmalloc.patch: vmalloc: ipl failure with enabled memory cgroups (bnc#594473).- patches.arch/tlb_uv_update2.patch: x86 / UV: TLB shootdown (BAU) update (bnc#594131, FATE#306952).- patches.arch/x86-MCE-fix-MSR_IA32_MCI_CTL2-CMCI-threshold-setup.patch: x86, MCE, fix MSR_IA32_MCI_CTL2 CMCI threshold setup (bnc#592176).- patches.fixes/reiserfs-fix-permissions-on-reiserfs_priv: reiserfs: Fix permissions on .reiserfs_priv (bnc#593906 CVE-2010-1146).- patches.drivers/ixgbe-Fix-82599-multispeed-fiber-link-issues-due-to-.patch: ixgbe: Fix 82599 multispeed fiber link issues due to Tx laser flapping (bnc#589804).- patches.suse/cgroup-disable-memcg-when-low-lowmem.patch: disable memory cgroup if low lowmem (bnc#586684).- patches.drivers/mpt2sas-04.100.01.03-update: Add missing hunk (bnc#591950).- patches.fixes/pci_use_acpi_resources_whitelist.patch: Whitelist HP ProLiant DL980 to use pci=use_crs by default (bnc#578572).- patches.drivers/mpt2sas-04.100.01.03-update: mpt2sas: IOs needs to be pause until all handles are refreshed (bnc#591950).- patches.drivers/lpfc-8.3.5.8-update: Emulex lpfc fixes for RC3 - 8.3.5.8 (bnc#594391).- patches.drivers/be2net-fix-bug-in-vlan-rx-path-for-big-endian-archit.patch: be2net: fix bug in vlan rx path for big endian architecture (bnc#594583).- patches.drivers/lis3-add-support-for-hp-probook: lis3: add support for HP ProBook 432x/442x/452x/522x (bnc#594399).- patches.fixes/sched-fix-cputime-monotonicity.patch: Update references (bnc#585241 bnc#590927). - patches.fixes/sched-fix-task-times_granularity.patch: sched: Fix granularity of task_u/stime() (bnc#585241 bnc#590927). - patches.fixes/sched-time-define-nsecs_to_jiffies.patch: sched, time: Define nsecs_to_jiffies() (bnc#585241 bnc#590927).- patches.drivers/ipmi-add-parameter-to-limit-cpu-usage-in-kipmid.patch: ipmi: add parameter to limit CPU usage in kipmid (bnc#468397).- patches.drivers/lis3-fix-show-rate-for-8-bits-chips: lis3: fix show rate for 8 bits chips (bnc#594367).- patches.fixes/hpwdt-fix-lower-timeout-limit.patch: hpwdt - fix lower timeout limit (bnc#581103).- patches.fixes/hid-fix-gyration-oops.patch: HID: fix oops in gyration_event() (bnc#589329).- patches.drivers/cnic-Use-union-for-the-status-blocks-of-different-de.patch: cnic: Use union for the status blocks of different devices. (bnc#564640). - patches.fixes/cnic-fix-crash-during-bnx2x-mtu-change.patch: cnic: Fix crash during bnx2x MTU change. (bnc#564640).- patches.arch/x86-fix-unknown_nmi_error.patch: x86: Fix unknown_nmi_error() (bnc#593731).- patches.kabi/kabi-fix-up-struct-hrtimer_cpu_base-change.patch: KABI: fix up struct hrtimer_cpu_base change.- patches.drivers/drm-i915-Add-display-hotplug-event-on-Ironlake: drm/i915: Add display hotplug event on Ironlake (bnc#593318). - patches.drivers/drm-i915-fix-eDP-pipe-mask: drm/i915: fix eDP pipe mask (bnc#593319). - patches.drivers/drm-i915-fix-pixel-color-depth-setting-on-eDP: drm/i915: fix pixel color depth setting on eDP (bnc#593319). - patches.drivers/drm-i915-parse-eDP-panel-color-depth-from-VBT-block: drm/i915: parse eDP panel color depth from VBT block (bnc#593319).- patches.arch/x86_hpet_erratum_15.patch: x86, hpet: Erratum workaround for read after write of HPET comparator (bnc#587746). - patches.arch/x86_x2apic_double_enable_non_smp.patch: x86: Fix double enable_IR_x2apic() call on SMP kernel on !SMP boards (bnc#593934).- Move patches.drivers/broadcom-Fix-slow-link-problem.patch to the right location in the seriesMissed a tg3 fix - patches.drivers/broadcom-Fix-slow-link-problem.patch: broadcom: Fix slow link problem (bnc#556234).Break out these monolithic patches into individual patches from upstream: patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch patches.drivers/tg3-update-version-to-3.104.patch patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch - patches.drivers/broadcom-Consolidate-dev_flags-definitions.patch: broadcom: Consolidate dev_flags definitions (FATE#307117, bnc#556234). - patches.drivers/broadcom-Isolate-phy-dsp-accesses.patch: broadcom: Isolate phy dsp accesses (FATE#307117, bnc#556234). - patches.drivers/drivers-net-Move-and-to-end-of-previous-line.patch: drivers/net: Move && and || to end of previous line (bnc#573237). - patches.drivers/drivers-net-use-DEFINE_PCI_DEVICE_TABLE.patch: drivers/net/: use DEFINE_PCI_DEVICE_TABLE() (bnc#573237). - patches.drivers/tg3-5785-Set-port-mode-to-MII-when-link-down.patch: tg3: 5785: Set port mode to MII when link down (bnc#556234, FATE#307117). - patches.drivers/tg3-Abort-phy-init-for-5717-serdes-devices.patch: tg3: Abort phy init for 5717 serdes devices (bnc#573237). - patches.drivers/tg3-Add-50610M-phy-ID-for-5785.patch: tg3: Add 50610M phy ID for 5785 (bnc#556234, FATE#307117). - patches.drivers/tg3-Add-5717-phy-ID.patch: tg3: Add 5717 phy ID (FATE#307117, bnc#556234). - patches.drivers/tg3-Add-5717-serdes-phy-ID.patch: tg3: Add 5717 serdes phy ID (bnc#573237). - patches.drivers/tg3-Add-57765-asic-rev.patch: tg3: Add 57765 asic rev (bnc#573237). - patches.drivers/tg3-Add-57765-phy-ID-and-enable-devices.patch: tg3: Add 57765 phy ID and enable devices. (bnc#573237). - patches.drivers/tg3-Add-AC131-power-down-support.patch: tg3: Add AC131 power down support (bnc#556234, FATE#307117). - patches.drivers/tg3-Add-more-PCI-DMA-map-error-checking.patch: tg3: Add more PCI DMA map error checking (bnc#556234, FATE#307117). - patches.drivers/tg3-Add-new-HW_TSO_3-flag-for-5717.patch: tg3: Add new HW_TSO_3 flag for 5717 (FATE#307117, bnc#556234). - patches.drivers/tg3-Add-prodring-parameter-to-tg3_alloc_rx_skb.patch: tg3: Add prodring parameter to tg3_alloc_rx_skb() (FATE#307117, bnc#556234). - patches.drivers/tg3-Add-reliable-serdes-detection-for-5717-A0.patch: tg3: Add reliable serdes detection for 5717 A0 (bnc#573237). - patches.drivers/tg3-Add-rx-prod-ring-consolidation.patch: tg3: Add rx prod ring consolidation (FATE#307117, bnc#556234). - patches.drivers/tg3-Add-some-VPD-preprocessor-constants.patch: tg3: Add some VPD preprocessor constants (bnc#573237). - patches.drivers/tg3-Allow-DMAs-to-cross-cacheline-boundaries.patch: tg3: Allow DMAs to cross cacheline boundaries (FATE#307117, bnc#556234). - patches.drivers/tg3-Assign-flags-to-fixes-in-start_xmit_dma_bug.patch: tg3: Assign flags to fixes in start_xmit_dma_bug (bnc#556234, FATE#307117). - patches.drivers/tg3-Bypass-power-source-switching-for-57765.patch: tg3: Bypass power source switching for 57765 (bnc#573237). - patches.drivers/tg3-Clean-tg3_init_one.patch: tg3: Clean tg3_init_one() (bnc#573237). - patches.drivers/tg3-Consider-rx_std_prod_idx-a-hw-mailbox.patch: tg3: Consider rx_std_prod_idx a hw mailbox (FATE#307117, bnc#556234). - patches.drivers/tg3-Convert-PHY_ADDR-TG3_PHY_MII_ADDR.patch: tg3: Convert PHY_ADDR => TG3_PHY_MII_ADDR (bnc#556234, FATE#307117). - patches.drivers/tg3-Create-aliases-for-rx-producer-mailbox-regs.patch: tg3: Create aliases for rx producer mailbox regs (FATE#307117, bnc#556234). - patches.drivers/tg3-Create-tg3_poll_msix-for-non-zero-MSIX-vecs.patch: tg3: Create tg3_poll_msix() for non-zero MSIX vecs (FATE#307117, bnc#556234). - patches.drivers/tg3-Disable-5717-serdes-and-B0-support.patch: tg3: Disable 5717 serdes and B0 support (bnc#573237). - patches.drivers/tg3-Don-t-touch-RCB-nic-addresses.patch: tg3: Don't touch RCB nic addresses (FATE#307117, bnc#556234). - patches.drivers/tg3-Enable-PLL-PD-when-CLKREQ-disabled-for-5717A0.patch: tg3: Enable PLL PD when CLKREQ disabled for 5717A0 (bnc#573237). - patches.drivers/tg3-Extend-loopback-test-timeout.patch: tg3: Extend loopback test timeout (bnc#556234, FATE#307117). - patches.drivers/tg3-Fix-5717-and-57765-memory-selftests.patch: tg3: Fix 5717 and 57765 memory selftests (bnc#573237). - patches.drivers/tg3-Fix-DIDs-Enable-5717-support.patch: tg3: Fix DIDs, Enable 5717 support (FATE#307117, bnc#556234). - patches.drivers/tg3-Fix-disappearing-57780-devices.patch: tg3: Fix disappearing 57780 devices (bnc#556234, FATE#307117). - patches.drivers/tg3-Fix-std-prod-ring-nicaddr-for-5787-and-57765.patch: tg3: Fix std prod ring nicaddr for 5787 and 57765 (bnc#573237). - patches.drivers/tg3-Fix-std-rx-prod-ring-handling.patch: tg3: Fix std rx prod ring handling (bnc#573237). - patches.drivers/tg3-Fix-tx-mailbox-initialization.patch: tg3: Fix tx mailbox initialization (bnc#573237). - patches.drivers/tg3-Improve-5785-PCIe-performance.patch: tg3: Improve 5785 PCIe performance (bnc#556234, FATE#307117). - patches.drivers/tg3-Improve-internal-resource-allocations.patch: tg3: Improve internal resource allocations (bnc#573237). - patches.drivers/tg3-Lay-proucer-ring-handling-groundwork.patch: tg3: Lay proucer ring handling groundwork (FATE#307117, bnc#556234). - patches.drivers/tg3-Make-TSS-enable-independent-of-MSI-X-enable.patch: tg3: Make TSS enable independent of MSI-X enable (bnc#573237). - patches.drivers/tg3-Make-tg3_alloc_rx_skb-a-dst-only-operation.patch: tg3: Make tg3_alloc_rx_skb() a dst-only operation (FATE#307117, bnc#556234). - patches.drivers/tg3-Move-TG3_FLG2_PROTECTED_NVRAM-to-tg3_flags3.patch: tg3: Move TG3_FLG2_PROTECTED_NVRAM to tg3_flags3 (FATE#307117, bnc#556234). - patches.drivers/tg3-Move-napi_add-calls-below-tg3_get_invariants.patch: tg3: Move napi_add calls below tg3_get_invariants (FATE#307117, bnc#556234). - patches.drivers/tg3-Napify-tg3_start_xmit_dma_bug.patch: tg3: Napify tg3_start_xmit_dma_bug() (FATE#307117, bnc#556234). - patches.drivers/tg3-Prevent-a-PCIe-tx-glitch.patch: tg3: Prevent a PCIe tx glitch (bnc#556234, FATE#307117). - patches.drivers/tg3-Refine-TSO-and-MSI-discovery.patch: tg3: Refine TSO and MSI discovery (FATE#307117, bnc#556234). - patches.drivers/tg3-Supply-a-nicaddr-for-57765-jumbo-RCB.patch: tg3: Supply a nicaddr for 57765 jumbo RCB (bnc#573237). - patches.drivers/tg3-Turn-off-the-debug-UART-for-57765.patch: tg3: Turn off the debug UART for 57765 (bnc#573237). - patches.drivers/tg3-Update-copyright-and-driver-version.patch: tg3: Update copyright and driver version (bnc#573237). - patches.drivers/tg3-Update-version-to-3.103.patch: tg3: Update version to 3.103 (FATE#307117, bnc#556234). - patches.drivers/tg3-Update-version-to-3.104.patch: tg3: Update version to 3.104 (FATE#307117, bnc#556234). - patches.drivers/tg3-Use-pci_read_vpd-instead-of-private-method.patch: tg3: Use pci_read_vpd() instead of private method (bnc#573237). - patches.drivers/tg3-Use-tg3_start_xmit_dma_bug-for-5717-A0.patch: tg3: Use tg3_start_xmit_dma_bug for 5717 A0 (FATE#307117, bnc#556234). - patches.drivers/tg3-broadcom-Add-APD-support-for-GPHYs.patch: tg3 / broadcom: Add APD support for GPHYs (FATE#307117, bnc#556234). - patches.drivers/tg3-broadcom-Add-PHY_BRCM_CLEAR_RGMII_MODE-flag.patch: tg3 / broadcom: Add PHY_BRCM_CLEAR_RGMII_MODE flag (FATE#307117, bnc#556234). - patches.drivers/tg3-broadcom-Add-code-to-disable-rxc-refclk.patch: tg3 / broadcom: Add code to disable rxc refclk (FATE#307117, bnc#556234). - patches.drivers/tg3-broadcom-Optionally-disable-TXC-if-no-link.patch: tg3 / broadcom: Optionally disable TXC if no link (FATE#307117, bnc#556234). - patches.drivers/tg3-broadcom-Refine-AC131-APD-support.patch: tg3 / broadcom: Refine AC131 APD support (FATE#307117, bnc#556234). - patches.drivers/tg3-entropy-source.patch: Refresh. - patches.drivers/tg3-remove-use-of-skb_dma_map-unmap.patch: tg3: remove use of skb_dma_map/unmap (bnc#573237). - patches.drivers/tg3-rename-rx_-std-jmb-_ptr.patch: tg3: rename rx_[std|jmb]_ptr (FATE#307117, bnc#556234). - patches.drivers/tg3-tg3_alloc_rx_skb-tnapi-tp.patch: tg3: tg3_alloc_rx_skb(tnapi => tp) (FATE#307117, bnc#556234).- update to 2.6.32.11: - security fixes - bugfixes - obsoletes: - patches.arch/x86-Fix-sched_clock_cpu-for-systems-with-unsynchronized-TSC.patch - patches.arch/x86-apic-use-logical-flat-for-systems-with-8-or-fewer-logical-cpus.patch - patches.arch/x86-revert-apic-Use-logical-flat-on-intel-with-8-or-fewer-logical-cpus.patch - patches.arch/x86_64_apic_consider_hotplug_for_mode_logical_flat.patch - patches.drivers/alsa-sp1-hda-48-alc260-will-quirk-for-acer - patches.drivers/alsa-sp1-hda-68-fix-realtek-secondary-adcs - patches.drivers/alsa-sp1-hda-72-alc260-fix-basic-model - patches.drivers/drm-i915-Avoid-NULL-deref-in-get_pages-unwind-after-error.patch - patches.drivers/e1000e-enable-new-82567V-3-device.patch - patches.drivers/ixgbe-add-support-for-82599-KR-device-0x1517.patch - patches.fixes/cpuset-fix-cpuset_mem_spread_node-offline-node.patch - patches.fixes/pci_aer_unconditionally_clear_uncor_status.patch - patches.fixes/readahead-unplug-dev.patch - patches.fixes/sched-fix-sched_mc-regression-caused-by-change-in-sched-cpu_power- patches.drivers/alsa-sp1-hda-73-alc-fix-invalid-connection: Refresh. Backported the fix for the fix- patches.arch/s390-phys_device.patch: memory hotplug: allow setting of phys_device (bnc#592703,LTC#62065).- Enabled TN3270 for use during boot (bnc#592943).- patches.fixes/reiserfs-fix-oops-while-creating-privroot-with-selinux-enabled: reiserfs: fix oops while creating privroot with selinux enabled.- patches.drivers/alsa-sp1-hda-70-alc269vb-support: ALSA: hda - Add ALC269VB support (bnc#591870). - patches.drivers/alsa-sp1-hda-71-alc269-missing-hp-pins: ALSA: hda - Add missing hp_pins definitions for ALC269 quirks (bnc#591870). - patches.drivers/alsa-sp1-hda-72-alc260-fix-basic-model: ALSA: hda - Fix secondary ADC of ALC260 basic model (bnc#591870). - patches.drivers/alsa-sp1-hda-73-alc-fix-invalid-connection: ALSA: hda - Don't set invalid connection index in Realtek initialiaiton (bnc#591870). - patches.drivers/alsa-sp1-hda-74-alc-fix-invalid-mute: ALSA: hda - Fix invalid bit values passed to snd_hda_codec_amp_stereo() (bnc#591870). - patches.drivers/alsa-sp1-hda-75-alc269-fillup-adcs: ALSA: hda - Fix ADC/MUX assignment of ALC269 codec (bnc#591870). - patches.drivers/alsa-sp1-hda-76-alc269-mute-led: ALSA: hda - Add mute LED support for HP laptop with ALC269 (bnc#591870).- patches.fixes/cciss-unmap-xfer-buffer-correctly: cciss causes kernel WARNING with intel_iommu=on (bnc#590856).- patches.drivers/mpt2sas-base-map-resources: mpt2sas: use correct pci_resource_flag (bnc#592472).- patches.drivers/r8169-offical-fix-for-CVE-2009-4537-overlength-frame.patch: r8169: offical fix for CVE-2009-4537 (overlength frame DMAs) (bnc#567376, CVE-2009-4537).- patches.fixes/module-drop-the-lock-while-waiting-for-module-to-complete-initialization.patch: module: drop the lock while waiting for module to complete initialization. (bnc#564638).- patches.fixes/pci_fix_invalid_resource_length.patch: Refresh.- patches.fixes/pci_fix_invalid_resource_length.patch: x86/PCI: truncate _CRS windows with _LEN > _MAX - _MIN + 1 (bnc#587427).- Import RC2 kabi files for ppc64.- Import RC2 kabi files for x86(_64), ia64 and s390x.- Update Xen patches to c/s 1011.- patches.drivers/libata-ata_piix-clear-spurious-IRQ: libata,ata_piix: detect and clear spurious IRQs (bnc#445872, bnc#589449).- patches.fixes/ipoib-tx-queue-lockup-fix.patch: ipoib: Fix lockup of the tx queue (bnc#587199).- patches.arch/s390-11-01-zfcp-ccw_remove_lock_dep.patch: zfcp: Remove lock dependency on CCW remove. (bnc#590926). - patches.arch/s390-11-02-zfcp-unit_add_lock_dep.patch: zfcp: Remove lock dependency on unit add. (bnc#590926). - patches.arch/s390-11-03-zfcp_unit_remove_lock_dep.patch: zfcp: Remove lock dependency on unit remove. (bnc#590926).- patches.xen/xen-netfront-ethtool: netfront: ethtool -i does not return info about xennet driver (bnc#591179).- patches.arch/ppc-unmap_vmallocs_on_hotremove.patch: powerpc/pseries: Flush lazy kernel mappings after unplug operations (bnc#590217).- patches.fixes/dlm-enable-debug.patch: Delete, CONFIG_DLM_DEBUG is enabled in kernel configuration, we don't need to explicitly enable it.- patches.drivers/drm-i915-Avoid-NULL-deref-in-get_pages-unwind-after-error.patch: Fix NULL pointer dereference in i915_gem_object_save_bit_17_swizzle (bnc#591377).- patches.drivers/be2net-fix-mccq-create-for-big-endian-architectures.patch: be2net: fix mccq create for big endian architectures (bnc#591513).- patches.xen/xen3-add-support-for-intel-cougar-point-chipset.patch: Fix build.- patches.fixes/sd-no-read-cap16-if-not-supported: sd: spurious error messages in READ_CAPACITY(16) (bnc#591473).- patches.fixes/scsi-allow-fc-lld-to-fast-fail-scsi-eh: scsi: Allow FC LLD to fast-fail scsi eh (bnc#591401). - patches.fixes/zfcp-pass-return-code-from-fc_block_scsi_eh-to-scsi_eh: zfcp: Pass return code from fc_block_scsi_eh to scsi eh (bnc#591401).- patches.drivers/add-support-for-intel-cougar-point-chipset.patch: include new LPC Controller Device IDs (bnc#565845).- Disable kabi checking for now.- patches.drivers/bnx2i-update-to-2.1.1: bnx2i bugfixes from mainline (bnc#585492). - patches.fixes/fixup-section-annotations: Fixup missing annotations.- patches.fixes/dm-mpath-abstract-dm_in_flight-function: dm: abstract dm_in_flight function (bnc#591318). - patches.fixes/dm-mpath-requeue-stall: Refresh. - patches.fixes/dm-mpath-simplify-rq-based-suspend: dm: simplify request based suspend (bnc#591318). - patches.fixes/dm-mpath-trace-rq-based-remapping: dm: trace request based remapping (bnc#591318).- patches.fixes/dm-mpath-requeue-stall: dm mpath: fix stall when requeueing io (bnc#591318).- Update config files. - patches.arch/x86-32-clean-up-rwsem-inline-asm-statements.patch: x86-32: clean up rwsem inline asm statements (bnc#590859, FATE#306952). - patches.arch/x86-64-rwsem-64-bit-xadd-rwsem-implementation.patch: x86-64, rwsem: 64-bit xadd rwsem implementation (bnc#590859, FATE#306952). - patches.arch/x86-64-rwsem-Avoid-store-forwarding-hazard-in-__downgrade_write.patch: x86-64, rwsem: Avoid store forwarding hazard in __downgrade_write (bnc#590859, FATE#306952). - patches.arch/x86-64-support-native-xadd-rwsem-implementation.patch: x86-64: support native xadd rwsem implementation (bnc#590859, FATE#306952). - patches.arch/x86-Fix-breakage-of-UML-from-the-changes-in-the-rwsem-system.patch: x86: Fix breakage of UML from the changes in the rwsem system (bnc#590859, FATE#306952). - patches.arch/x86-clean-up-rwsem-type-system.patch: x86: clean up rwsem type system (bnc#590859, FATE#306952). - patches.xen/xen3-auto-arch-x86.diff: Refresh.- patches.drivers/igb-Add-support-for-82576-ET2-Quad-Port-Server-Adapt.patch: igb: Add support for 82576 ET2 Quad Port Server Adapter (bnc#591293).- patches.fixes/ocfs2-always-try-for-maximum-bits-with-new-local-all.patch: ocfs2: Always try for maximum bits with new local alloc windows.- patches.drivers/igb-entropy-source.patch: Refresh for fuzz- patches.suse/ocfs2-allocation-resrvations.patch: Refresh.- patches.drivers/igb-add-support-for-Intel-I350-Gigabit-Network-Conne.patch: igb: add support for Intel I350 Gigabit Network Connection (bnc#590980).- patches.fixes/novfs-fix-oops-in-scope-finding: novfs: fix an oops in novfs scope-finding code (bnc#588579).- patches.fixes/ocfs2-Change-bg_chain-check-for-ocfs2_validate_gd_parent.patch: ocfs2: Change bg_chain check for ocfs2_validate_gd_parent.(bnc#590401) - back port upstream ocfs2 patches from 2.6.33 - patches.fixes/Ocfs2-Move-ocfs2-ioctl-definitions-from-ocfs2_fs.h-t.patch: Ocfs2: Move ocfs2 ioctl definitions from ocfs2_fs.h to newly added ocfs2_ioctl.h. - patches.fixes/ocfs2-Add-a-name_len-field-to-ocfs2_xattr_info.patch: ocfs2: Add a name_len field to ocfs2_xattr_info.. - patches.fixes/ocfs2-Add-current-comm-in-trace-output.patch: ocfs2: Add current->comm in trace output. - patches.fixes/ocfs2-Allocation-in-ocfs2_xa_prepare_entry-values-in.patch: ocfs2: Allocation in ocfs2_xa_prepare_entry(), values in ocfs2_xa_store_value(). - patches.fixes/ocfs2-Attach-the-connection-to-the-lksb.patch: ocfs2: Attach the connection to the lksb. - patches.fixes/ocfs2-Clean-up-the-checks-for-CoW-and-direct-I-O.patch: ocfs2: Clean up the checks for CoW and direct I/O.. - patches.fixes/ocfs2-Gell-into-ocfs2_xa_set.patch: ocfs2: Gell into ocfs2_xa_set(). - patches.fixes/ocfs2-Handle-errors-while-setting-external-xattr-val.patch: ocfs2: Handle errors while setting external xattr values.. - patches.fixes/ocfs2-Handle-value-tree-roots-in-ocfs2_xa_set_inline.patch: ocfs2: Handle value tree roots in ocfs2_xa_set_inline_value(). - patches.fixes/ocfs2-Hang-the-locking-proto-on-the-cluster-conn-and.patch: ocfs2: Hang the locking proto on the cluster conn and use it in asts.. - patches.fixes/ocfs2-Introduce-ocfs2_xa_loc.patch: ocfs2: Introduce ocfs2_xa_loc. - patches.fixes/ocfs2-Let-ocfs2_xa_prepare_entry-do-space-checks.patch: ocfs2: Let ocfs2_xa_prepare_entry() do space checks.. - patches.fixes/ocfs2-Pass-lksbs-back-from-stackglue-ast-bast-functi.patch: ocfs2: Pass lksbs back from stackglue ast/bast functions.. - patches.fixes/ocfs2-Pass-the-locking-protocol-into-ocfs2_cluster_c.patch: ocfs2: Pass the locking protocol into ocfs2_cluster_connect().. - patches.fixes/ocfs2-Prefix-the-member-fields-of-struct-ocfs2_xattr.patch: ocfs2: Prefix the member fields of struct ocfs2_xattr_info.. - patches.fixes/ocfs2-Provide-ocfs2_xa_fill_value_buf-for-external-v.patch: ocfs2: Provide ocfs2_xa_fill_value_buf() for external value processing. - patches.fixes/ocfs2-Remove-the-ast-pointers-from-ocfs2_stack_plugi.patch: ocfs2: Remove the ast pointers from ocfs2_stack_plugins. - patches.fixes/ocfs2-Remove-xattrs-via-ocfs2_xa_loc.patch: ocfs2: Remove xattrs via ocfs2_xa_loc. - patches.fixes/ocfs2-Set-inline-xattr-entries-with-ocfs2_xa_set.patch: ocfs2: Set inline xattr entries with ocfs2_xa_set(). - patches.fixes/ocfs2-Set-the-xattr-name-value-pair-in-one-place.patch: ocfs2: Set the xattr name+value pair in one place. - patches.fixes/ocfs2-Set-xattr-block-entries-with-ocfs2_xa_set.patch: ocfs2: Set xattr block entries with ocfs2_xa_set(). - patches.fixes/ocfs2-Teach-ocfs2_xa_loc-how-to-do-its-own-journal-w.patch: ocfs2: Teach ocfs2_xa_loc how to do its own journal work. - patches.fixes/ocfs2-Use-a-separate-masklog-for-AST-and-BASTs.patch: ocfs2: Use a separate masklog for AST and BASTs. - patches.fixes/ocfs2-Wrap-calculation-of-name-value-pair-size.patch: ocfs2: Wrap calculation of name+value pair size.. - patches.fixes/ocfs2-add-extent-block-stealing-for-ocfs2-v5.patch: ocfs2: add extent block stealing for ocfs2 v5. - patches.fixes/ocfs2-fix-warning-in-ocfs2_file_aio_write.patch: ocfs2: fix warning in ocfs2_file_aio_write(). - patches.fixes/ocfs2-send-SIGXFSZ-if-new-filesize-exceeds-limit-v2.patch: ocfs2: send SIGXFSZ if new filesize exceeds limit -v2. - patches.fixes/ocfs2-userdlm-Add-tracing-in-userdlm.patch: ocfs2/userdlm: Add tracing in userdlm. - patches.fixes/ocfs2_dlmfs-Add-capabilities-parameter.patch: ocfs2_dlmfs: Add capabilities parameter.. - patches.fixes/ocfs2_dlmfs-Don-t-honor-truncate.-The-size-of-a-dlmf.patch: ocfs2_dlmfs: Don't honor truncate. The size of a dlmfs file is LVB_LEN. - patches.fixes/ocfs2_dlmfs-Enable-the-use-of-user-cluster-stacks.patch: ocfs2_dlmfs: Enable the use of user cluster stacks.. - patches.fixes/ocfs2_dlmfs-Move-to-its-own-directory.patch: ocfs2_dlmfs: Move to its own directory. - patches.fixes/ocfs2_dlmfs-Use-poll-to-signify-BASTs.patch: ocfs2_dlmfs: Use poll() to signify BASTs.. - patches.fixes/ocfs2_dlmfs-Use-the-stackglue.patch: ocfs2_dlmfs: Use the stackglue..- patches.fixes/powerpc-fix-handling-of-strnlen-with-zero-len: powerpc: fix handling of strnlen with zero len (bnc#582681).- patches.fixes/cciss-remove-scan-thread.patch: Delete incorrect hunk (bnc#578429)- patches.drivers/qla2xxx-8.03.01.04.11.1-k8-update: qla2xxx: minor updates and fixes from upstream (bnc#589906). - patches.fixes/dmar-mark-dmar_ir_support-as-init: Wrong annotation for dmar_ir_support().- patches.drivers/ixgbe-filter-fip-frames-into-t: ixgbe: filter FIP frames into the FCoE offload queues (bnc#590995). - patches.drivers/ixgbe-fix-for-real_num_tx_queu: ixgbe: fix for real_num_tx_queues update issue (bnc#590995). - patches.drivers/ixgbe-priority-tag-fip-frames: ixgbe: Priority tag FIP frames (bnc#590995). - patches.fixes/vlan-add-vlan_dev_select_queue: vlan: adds vlan_dev_select_queue (bnc#590995). - patches.fixes/vlan-updates-real_num_tx_queues: vlan: updates vlan real_num_tx_queues (bnc#590995). - patches.suse/fcoe-check-netif-operstate-ins: fcoe: check netif operstate instead of IFF_UP & link state (bnc#590996). - patches.suse/fcoe-reset-fip-ctlr-link-state: fcoe: reset FIP ctlr link state on disable/enable (bnc#590996). - patches.suse/libfcoe-don-t-fill-mac-desc-in: libfcoe: Don't fill MAC desc in FLOGI if FIP negotiated FPMA (bnc#590996).- Update Xen patches to 2.6.32.10 and c/s 1007. - patches.xen/xen-vscsi-module-alias: allow pv scsi hba driver to be loaded automatically. - patches.xen/xen-vusb-module-alias: allow pv usb hcd driver to be loaded automatically (bnc#584213). - patches.xen/xen3-x86-Reduce-per-cpu-warning-boot-up-messages.patch: x86: Reduce per cpu warning boot up messages (bnc#587669, FATE#306952). - patches.xen/xen3-x86-pat-Update-page-flags-for-memtype-without-using-memtype_lock-V4.patch: x86 / PAT: Update the page flags for memtype atomically instead of using memtype_lock. -V4 (bnc#588008, FATE#306952).- patches.arch/x86-pat-Update-page-flags-for-memtype-without-using-memtype_lock-V4.patch: x86 / PAT: Update the page flags for memtype atomically instead of using memtype_lock. -V4 (bnc#588008, FATE#306952). - patches.arch/x86-pat-Update-page-flags-for-memtype-without-using-memtype_lock-V3.patch: Delete. Use the PG_* bit numbers correctly.- patches.fixes/kvm-pause-filter-0003-KVM-SVM-Support-Pause-Filter-in-AMD-processors.patch: Fix warning.- patches.arch/ia64-page-migration-update: [ia64] Add locking to cpe_migrate. (bnc#569606).- patches.drivers/synaptics-hp-clickpad: Input: Add support of clickpad mode to synaptics mouse driver (v2) (bnc#547370,bnc#582529,bnc#589014). - patches.drivers/synaptics-clickpad-area-param: Delete. - patches.drivers/synaptics-clickpad-bottom-enable: Delete. - patches.drivers/synaptics-clickpad-button-toggle: Delete.- patches.fixes/infiniband_cxgb3_improve_dlpar_remove_on_active_rdma_traffic.patch: Improve safety of dlpar remove when rdma traffic is active (bnc#590727).- patches.arch/ppc-mark_preferred_offline_state_before_removing_cpus.patch: Refresh.- patches.arch/ppc-mark_preferred_offline_state_before_removing_cpus.patch: Mark preferred offline state as CPU_STATE_OFFLINE before removing cpus (bnc#590154).- patches.fixes/mandatory-lock-test: 9p/ocfs2/gfs2: allow file unlock on 'mandatory locking' file (bnc#589280).- kabi/severities: Ignore changes in arch/s390/kvm.- rpm/find-provides: Fix a typo that broke -debuginfo provides.Fix S390 build with KVM RCU patches - patches.fixes/kvm-rcu-0025-KVM-fix-s390-ia64-build-failures-introduced-by-mems.patch: KVM: fix s390/ia64 build failures introduced by memslot changes (bnc#589660).Add Git-commit and remove stray SOB lines - patches.fixes/kvm-EPT-swap-0001-KVM-VMX-emulate-accessed-bit-for-EPT.patch: Refresh. - patches.fixes/kvm-constant_tsc-0001-KVM-SVM-Adjust-tsc_offset-only-if-tsc_unstable.patch: Refresh. - patches.fixes/kvm-disable-pvmmu-0001-KVM-x86-disable-paravirt-mmu-reporting.patch: Refresh. - patches.fixes/kvm-null-deref-0001-KVM-x86-disallow-KVM_-SET-GET-_LAPIC-without-alloc.patch: Refresh. - patches.fixes/kvm-null-deref-0002-KVM-only-clear-irq_source_id-if-irqchip-is-present.patch: Refresh. - patches.fixes/kvm-pause-filter-0001-KVM-introduce-kvm_vcpu_on_spin.patch: Refresh. - patches.fixes/kvm-pause-filter-0002-KVM-VMX-Add-support-for-Pause-Loop-Exiting.patch: Refresh. - patches.fixes/kvm-pause-filter-0003-KVM-SVM-Support-Pause-Filter-in-AMD-processors.patch: Refresh. - patches.fixes/kvm-rcu-0001-rcu-Add-synchronize_srcu_expedited.patch: Refresh. - patches.fixes/kvm-rcu-0002-KVM-Call-pic_clear_isr-on-pic-reset-to-reuse-logi.patch: Refresh. - patches.fixes/kvm-rcu-0003-KVM-Move-irq-sharing-information-to-irqchip-level.patch: Refresh. - patches.fixes/kvm-rcu-0004-KVM-Change-irq-routing-table-to-use-gsi-indexed-arr.patch: Refresh. - patches.fixes/kvm-rcu-0005-KVM-Maintain-back-mapping-from-irqchip-pin-to-gsi.patch: Refresh. - patches.fixes/kvm-rcu-0006-KVM-Move-irq-routing-data-structure-to-rcu-locking.patch: Refresh. - patches.fixes/kvm-rcu-0007-KVM-Move-irq-ack-notifier-list-to-arch-independent.patch: Refresh. - patches.fixes/kvm-rcu-0008-KVM-Convert-irq-notifiers-lists-to-RCU-locking.patch: Refresh. - patches.fixes/kvm-rcu-0009-KVM-Move-IO-APIC-to-its-own-lock.patch: Refresh. - patches.fixes/kvm-rcu-0010-KVM-Drop-kvm-irq_lock-lock-from-irq-injection-path.patch: Refresh. - patches.fixes/kvm-rcu-0011-KVM-modify-memslots-layout-in-struct-kvm.patch: Refresh. - patches.fixes/kvm-rcu-0012-KVM-modify-alias-layout-in-x86s-struct-kvm_arch.patch: Refresh. - patches.fixes/kvm-rcu-0013-KVM-split-kvm_arch_set_memory_region-into-prepare-a.patch: Refresh. - patches.fixes/kvm-rcu-0014-KVM-introduce-gfn_to_pfn_memslot.patch: Refresh. - patches.fixes/kvm-rcu-0015-KVM-use-gfn_to_pfn_memslot-in-kvm_iommu_map_pages.patch: Refresh. - patches.fixes/kvm-rcu-0016-KVM-introduce-kvm-srcu-and-convert-kvm_set_memory_.patch: Refresh. - patches.fixes/kvm-rcu-0017-KVM-use-SRCU-for-dirty-log.patch: Refresh. - patches.fixes/kvm-rcu-0018-KVM-x86-switch-kvm_set_memory_alias-to-SRCU-update.patch: Refresh. - patches.fixes/kvm-rcu-0019-KVM-convert-io_bus-to-SRCU.patch: Refresh. - patches.fixes/kvm-rcu-0020-KVM-switch-vcpu-context-to-use-SRCU.patch: Refresh. - patches.fixes/kvm-rcu-0021-KVM-convert-slots_lock-to-a-mutex.patch: Refresh. - patches.fixes/kvm-rcu-0022-KVM-Bump-maximum-vcpu-count-to-64.patch: Refresh. - patches.fixes/kvm-rcu-0023-KVM-avoid-taking-ioapic-mutex-for-non-ioapic-EOIs.patch: Refresh. - patches.fixes/kvm-rcu-0024-KVM-fix-cleanup_srcu_struct-on-vm-destruction.patch: Refresh. - patches.fixes/kvm-spurious-interrupt-0001-eventfd-allow-atomic-read-and-waitqueue-remove.patch: Refresh. - patches.fixes/kvm-spurious-interrupt-0002-KVM-fix-spurious-interrupt-with-irqfd.patch: Refresh. - patches.fixes/kvm-vcpu_events-0001-KVM-x86-Add-KVM_GET-SET_VCPU_EVENTS.patch: Refresh. - patches.fixes/kvm-vcpu_events-0002-KVM-x86-Extend-KVM_SET_VCPU_EVENTS-with-selective.patch: Refresh. - patches.fixes/kvm-vcpu_events-0003-KVM-x86-Adjust-KVM_VCPUEVENT-flag-names.patch: Refresh. - patches.fixes/kvm-vcpu_events-0004-KVM-x86-Do-not-return-soft-events-in-vcpu_events.patch: Refresh. - patches.fixes/kvm-vcpu_events-0005-KVM-x86-Save-restore-interrupt-shadow-mask.patch: Refresh.- patches.fixes/tunnels-fix-netns-vs-proto-registration-ordering: Fix improper arguments passed to unregister_pernet_gen_device().- patches.arch/s390-10-01-zfcpdump-lpar-registers.patch: zcore: CPU registers may not be saved under LPAR (bnc#589679,LTC#61578). - patches.arch/s390-10-02-cio_fix_drvdata_usage_for_the_console_subchannel.patch: cio: fix drvdata usage for the console subchannel (bnc#589679). - patches.arch/s390-10-03-dasd-fix-erp-tcw-alignment.patch: dasd: fix alignment of transport mode recovery TCW (bnc#589679).- kabi/severities: Ignore changes in arch/x86/kvm.- patches.fixes/kvm-EPT-swap-0001-KVM-VMX-emulate-accessed-bit-for-EPT.patch: KVM: VMX: emulate accessed bit for EPT (bnc#589651). - patches.fixes/kvm-constant_tsc-0001-KVM-SVM-Adjust-tsc_offset-only-if-tsc_unstable.patch: KVM: SVM: Adjust tsc_offset only if tsc_unstable (bnc#589657). - patches.fixes/kvm-disable-pvmmu-0001-KVM-x86-disable-paravirt-mmu-reporting.patch: KVM: x86: disable paravirt mmu reporting (bnc#589656). - patches.fixes/kvm-null-deref-0001-KVM-x86-disallow-KVM_-SET-GET-_LAPIC-without-alloc.patch: KVM: x86: disallow KVM_{SET,GET}_LAPIC without allocated in-kernel lapic (bnc#589654). - patches.fixes/kvm-null-deref-0002-KVM-only-clear-irq_source_id-if-irqchip-is-present.patch: KVM: only clear irq_source_id if irqchip is present (bnc#589654). - patches.fixes/kvm-pause-filter-0001-KVM-introduce-kvm_vcpu_on_spin.patch: KVM: introduce kvm_vcpu_on_spin (bnc#589655). - patches.fixes/kvm-pause-filter-0002-KVM-VMX-Add-support-for-Pause-Loop-Exiting.patch: KVM: VMX: Add support for Pause-Loop Exiting (bnc#589655). - patches.fixes/kvm-pause-filter-0003-KVM-SVM-Support-Pause-Filter-in-AMD-processors.patch: KVM: SVM: Support Pause Filter in AMD processors (bnc#589655). - patches.fixes/kvm-rcu-0001-rcu-Add-synchronize_srcu_expedited.patch: rcu: Add synchronize_srcu_expedited() (bnc#589660). - patches.fixes/kvm-rcu-0002-KVM-Call-pic_clear_isr-on-pic-reset-to-reuse-logi.patch: KVM: Call pic_clear_isr() on pic reset to reuse logic there (bnc#589660). - patches.fixes/kvm-rcu-0003-KVM-Move-irq-sharing-information-to-irqchip-level.patch: KVM: Move irq sharing information to irqchip level (bnc#589660). - patches.fixes/kvm-rcu-0004-KVM-Change-irq-routing-table-to-use-gsi-indexed-arr.patch: KVM: Change irq routing table to use gsi indexed array (bnc#589660). - patches.fixes/kvm-rcu-0005-KVM-Maintain-back-mapping-from-irqchip-pin-to-gsi.patch: KVM: Maintain back mapping from irqchip/pin to gsi (bnc#589660). - patches.fixes/kvm-rcu-0006-KVM-Move-irq-routing-data-structure-to-rcu-locking.patch: KVM: Move irq routing data structure to rcu locking (bnc#589660). - patches.fixes/kvm-rcu-0007-KVM-Move-irq-ack-notifier-list-to-arch-independent.patch: KVM: Move irq ack notifier list to arch independent code (bnc#589660). - patches.fixes/kvm-rcu-0008-KVM-Convert-irq-notifiers-lists-to-RCU-locking.patch: KVM: Convert irq notifiers lists to RCU locking (bnc#589660). - patches.fixes/kvm-rcu-0009-KVM-Move-IO-APIC-to-its-own-lock.patch: KVM: Move IO APIC to its own lock (bnc#589660). - patches.fixes/kvm-rcu-0010-KVM-Drop-kvm-irq_lock-lock-from-irq-injection-path.patch: KVM: Drop kvm->irq_lock lock from irq injection path (bnc#589660). - patches.fixes/kvm-rcu-0011-KVM-modify-memslots-layout-in-struct-kvm.patch: KVM: modify memslots layout in struct kvm (bnc#589660). - patches.fixes/kvm-rcu-0012-KVM-modify-alias-layout-in-x86s-struct-kvm_arch.patch: KVM: modify alias layout in x86s struct kvm_arch (bnc#589660). - patches.fixes/kvm-rcu-0013-KVM-split-kvm_arch_set_memory_region-into-prepare-a.patch: KVM: split kvm_arch_set_memory_region into prepare and commit (bnc#589660). - patches.fixes/kvm-rcu-0014-KVM-introduce-gfn_to_pfn_memslot.patch: KVM: introduce gfn_to_pfn_memslot (bnc#589660). - patches.fixes/kvm-rcu-0015-KVM-use-gfn_to_pfn_memslot-in-kvm_iommu_map_pages.patch: KVM: use gfn_to_pfn_memslot in kvm_iommu_map_pages (bnc#589660). - patches.fixes/kvm-rcu-0016-KVM-introduce-kvm-srcu-and-convert-kvm_set_memory_.patch: KVM: introduce kvm->srcu and convert kvm_set_memory_region to SRCU update (bnc#589660). - patches.fixes/kvm-rcu-0017-KVM-use-SRCU-for-dirty-log.patch: KVM: use SRCU for dirty log (bnc#589660). - patches.fixes/kvm-rcu-0018-KVM-x86-switch-kvm_set_memory_alias-to-SRCU-update.patch: KVM: x86: switch kvm_set_memory_alias to SRCU update (bnc#589660). - patches.fixes/kvm-rcu-0019-KVM-convert-io_bus-to-SRCU.patch: KVM: convert io_bus to SRCU (bnc#589660). - patches.fixes/kvm-rcu-0020-KVM-switch-vcpu-context-to-use-SRCU.patch: KVM: switch vcpu context to use SRCU (bnc#589660). - patches.fixes/kvm-rcu-0021-KVM-convert-slots_lock-to-a-mutex.patch: KVM: convert slots_lock to a mutex (bnc#589660). - patches.fixes/kvm-rcu-0022-KVM-Bump-maximum-vcpu-count-to-64.patch: KVM: Bump maximum vcpu count to 64 (bnc#589660). - patches.fixes/kvm-rcu-0023-KVM-avoid-taking-ioapic-mutex-for-non-ioapic-EOIs.patch: KVM: avoid taking ioapic mutex for non-ioapic EOIs (bnc#589660). - patches.fixes/kvm-rcu-0024-KVM-fix-cleanup_srcu_struct-on-vm-destruction.patch: KVM: fix cleanup_srcu_struct on vm destruction (bnc#589660). - patches.fixes/kvm-spurious-interrupt-0001-eventfd-allow-atomic-read-and-waitqueue-remove.patch: eventfd - allow atomic read and waitqueue remove (bnc#589652). - patches.fixes/kvm-spurious-interrupt-0002-KVM-fix-spurious-interrupt-with-irqfd.patch: KVM: fix spurious interrupt with irqfd (bnc#589652). - patches.fixes/kvm-vcpu_events-0001-KVM-x86-Add-KVM_GET-SET_VCPU_EVENTS.patch: KVM: x86: Add KVM_GET/SET_VCPU_EVENTS (bnc#585490). - patches.fixes/kvm-vcpu_events-0002-KVM-x86-Extend-KVM_SET_VCPU_EVENTS-with-selective.patch: KVM: x86: Extend KVM_SET_VCPU_EVENTS with selective updates (bnc#585490). - patches.fixes/kvm-vcpu_events-0003-KVM-x86-Adjust-KVM_VCPUEVENT-flag-names.patch: KVM: x86: Adjust KVM_VCPUEVENT flag names (bnc#585490). - patches.fixes/kvm-vcpu_events-0004-KVM-x86-Do-not-return-soft-events-in-vcpu_events.patch: KVM: x86: Do not return soft events in vcpu_events (bnc#585490). - patches.fixes/kvm-vcpu_events-0005-KVM-x86-Save-restore-interrupt-shadow-mask.patch: KVM: x86: Save&restore interrupt shadow mask (bnc#585490).- patches.drivers/cpufreq_processor_clocking_control_pcc_driver_cast_fix.patch: Fix cast warning in pcc driver. (trivial cast fix, no bug).- patches.fixes/cciss-remove-scan-thread.patch: cciss: remove scan thread (bnc#578429).- patches.fixes/pci_aer_unconditionally_clear_uncor_status.patch: PCI: unconditionally clear AER uncorr status register during cleanup (bnc#587681).- patches.arch/s390-dasd-emc-ckd-psf-and-security.patch: [S390] dasd: security and PSF update patch for EMC CKD ioctl (bnc#585608).- patches.arch/x86-pat-Update-page-flags-for-memtype-without-using-memtype_lock-V3.patch: x86 / PAT: Update the page flags for memtype atomically instead of using memtype_lock. -V3 (bnc#588008, FATE#306952).- patches.suse/allow_bonding_with_blacklisted_ipv6.patch: fixed build for archs/flavours without bonding- patches.suse/allow_bonding_with_blacklisted_ipv6.patch: allow bonding with blacklisted ipv6 (bnc#585463).- Update config files: set DVB_LGS8GL5=m to not break the kabi.- Disable CONFIG_USB_OHCI_HCD_SSB (bnc#588994)- Import RC1 kabi files.- rpm/kernel-binary.spec.in: Move Obsoletes: msi-wmi-kmp to the sle11-ga group and make the comment more explanatory.- rpm/kernel-binary.spec.in: bnc#587578- patches.fixes/ocfs2-set-i_mode-on-disk-during-acl-operations.patch: ocfs2: set i_mode on disk during acl operations (bnc#575752).- patches.fixes/01-rnfs_read_complete_calc_rq_respages.patch: : Correct rqstp->rq_respages calculation (bnc#577355,LTC#60382). - patches.fixes/rnfs_read_complete_calc_rq_respages.patch: Delete.- Update config files. - dvb Kconfig change due to 2.6.32.10 - looks like CONFIG_DM_RAID got turned of, .10 did not do that, wierd - enabled Oprofile for ia64 vanilla.- Update to 2.6.32.10: - security fixes - bugfixes - obsoletes: - patches.arch/x86-Avoid-race-condition-in-pci_enable_msix.patch - patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix - patches.drivers/drm-i915-fix-get_core_clock_speed-for-g33-class-desktop-chips.patch - patches.drivers/qla1280-request-firmware-lock - patches.drivers/staging-hv-add-a-pci-device-table.patch - patches.drivers/staging-hv-match-on-dmi-values-to-know-if-we-should-run.patch - patches.fixes/PM-Hibernate-fix-preallocating-of-memory.patch - patches.fixes/acpi_be_in_TS_POLLING_state_during_mwait.patch - patches.fixes/dvb-core-fix-dos-bug-in-ule-decapsulation-code-that-can-be-triggered-by-an-invalid - patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch - patches.fixes/fix-lookup_follow-on-automount-symlinks - patches.fixes/net-bug-fix-for-vlan-gro-issue.patch - patches.fixes/pci-hotplug-ibmphp-ebda-len.patch - patches.fixes/sched-fix-sched_mc_power_savings-for-non-SMT - patches.fixes/sched-fix-smt-scheduler-regression-in-find_busiest_queue - patches.fixes/x86_irq_setup_extra_ioapic_for_sci.patch - patches.trace/oprofile-no-tracing.diff- patches.xen/xen3-patch-2.6.32: Xen pv driver fix for CONFIG_CPUMASK_OFFSTACK.- patches.drivers/mpt2sas-03.100.03.00-update: Remove duplicate defines (bnc#587782).- patches.arch/x86-UV-BAU-performance-and-error-recovery.patch: x86 / UV: BAU performance and error recovery (bnc#586806, FATE#306952).- patches.arch/x86-Reduce-per-cpu-MCA-boot-up-messages.patch: x86: Reduce per cpu MCA boot up messages (bnc#587669, FATE#306952). - patches.arch/x86-Reduce-per-cpu-warning-boot-up-messages.patch: x86: Reduce per cpu warning boot up messages (bnc#587669, FATE#306952).- patches.arch/x86-UV-Fix-target_cpus-in-x2apic_uv_x.c.patch: x86 / UV: Fix target_cpus() in x2apic_uv_x.c (bnc#587673, FATE#306952).- patches.drivers/benet-fixes-required-for-be2net-to-work-on-bladeengine3-device.patch: Delete.- patches.drivers/qla4xxx-5.01.00.00.11.01-k12_5.01.00.00.11.01-k13.patch: Additional bug fixes required for the qla4xxx driver (bnc#585296).- patches.suse/mm-uninline-add-to-page-cache.patch: uninline add_to_page_cache (FATE309111). - patches.suse/pagecache-limit.patch: Refresh.- patches.suse/pagecache-limit.patch: Introduce (optional) pagecache limit (FATE309111).- patches.fixes/pci_use_list_for_resources_5_5.patch: Refresh. Don't add resources of pci busses if pci=nocrs- patches.drivers/alsa-sp1-hda-69-alc262-single-adc-fix: ALSA: hda - Fix capture on Sony VAIO with single input (bnc#577358).- patches.fixes/pci_use_list_for_resources_5_5.patch: Refresh. bnc#587427 - > Fix pci_use_crs logic which is inverted compared to mainline- patches.drivers/ixgbe-don-t-exceed-user-buffer: ixgbe: Don't allow user buffer count to exceed 256 (bnc#587739). - patches.suse/libfc-fix-fcp-pkt-recovery: libfc: fix fcp pkt recovery in fc_fcp_recv_data (bnc#587739). - patches.suse/libfc-fix-unnecessary-seq-id-jump: libfc: fixes unnecessary seq id jump (bnc#587739). - patches.suse/libfc-use-offload-em-instance-again: libfc: use offload EM instance again instead jumping to next EM (bnc#587739).- patches.drivers/mpt2sas-04.100.01.02-update: Additional mpt2sas patch for sle11sp1 (bnc#587782).- patches.drivers/lpfc-8.3.5.7-update: Update Emulex lpfc driver to 8.3.5.7 (bnc#587692).- patches.drivers/iw_cxgb3-dlpar.patch: RDMA/cxgb3: Mark rdma device with CXIO_ERROR_FATAL when removing. (bnc#584958,LTC#61264).- patches.fixes/rnfs_read_complete_calc_rq_respages.patch: rnfs: Fix respages calculation (bnc#577355,LTC#60382).- Re-enable mmu notifier sleeping patches.- patches.fixes/pci-update-pci_set_vga_state-to-call-arch-functions.patch: pci: Update pci_set_vga_state() to call arch functions (bnc#586343, FATE#306952). - patches.fixes/vgaarb-fix-vga-arbiter-to-accept-pci-domains-other-than-0.patch: vgaarb: Fix VGA arbiter to accept PCI domains other than 0 (bnc#586343, FATE#306952). - patches.fixes/x86_64-uv-update-uv-arch-to-target-legacy-vga-i-o-correctly.patch: x86, uv: Update UV arch to target Legacy VGA I/O correctly. (bnc#586343, FATE#306952).- patches.arch/x86-uv-Update-UV-mmr-definitions-header-file.patch: x86 / UV: Update UV mmr definitions header file (bnc#587562, FATE#306952).- patches.fixes/gre-fix-netns-vs-proto-registration-ordering: gre: fix netns vs proto registration ordering (bnc#580799). - patches.fixes/tunnels-fix-netns-vs-proto-registration-ordering: tunnels: fix netns vs proto registration ordering (bnc#580799).- series.conf: add forgotten patch: patches.fixes/scsi-fixup-vpd-page-allocation- patches.fixes/fc-transport-make-sure-cmds-are-completed-for-offlined-rport: Make sure commands are completed for offline rport (bnc#587114).- patches.fixes/scsi-fixup-vpd-page-allocation: eliminate potential kmalloc failure in scsi_get_vpd_page().- patches.fixes/mm-pagealloc-fix-congestion-wait.patch: Reduce page allocation stalls (bnc#561811).- rpm/kernel-module-subpackage: Provide/Obsolete *-kmp-vmi by * -kmp-pae.- patches.fixes/readahead-unplug-dev.patch: readahead: add blk_run_backing_dev (bnc#587125).- Disable sleeping mmu notifier patches (bnc#578046). To be dropped completely if the problem is not resolved before RC1.- patches.drivers/s2io-fixing-dbg_print-macro.patch: Fixup for series2git. - patches.drivers/scsi-transport-sas-enable-tlr: scsi_transport_sas: add support for transport layer retries (TLR) (bnc#584508). - patches.fixes/fc_sdev_blocked.patch: Fixup for series2git.- patches.fixes/sched-fix-cputime-monotonicity.patch: sched, cputime: Introduce thread_group_times() (bnc#585241).- patches.xen/xen-usbfront-schedule: Fix a scheduling race in usbfront (bnc#584218). - patches.xen/xen-vbd-resize: Propagate changed size of VBDs (bnc#583677). - patches.xen/xen-fix-check_tsc_unstable-undefined: Rename to ... - patches.xen/xen3-x86-Fix-sched_clock_cpu-for-systems-with-unsynchronized-TSC.patch: ... this. (bnc#582878, FATE#306952). - Refresh other Xen patches. - supported.conf: Mark pvSCSI and pvUSB modules supported.- patches.fixes/kbuild-Really-don-t-clean-bounds.h-and-asm-offsets.h: kbuild: Really don't clean bounds.h and asm-offsets.h (bnc#585743).- patches.drivers/mpt2sas-04.100.01.00-update: Update mpt2sas to version 4.100.01.00 (bnc#584508).- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: Fix unintialized variable. Refresh.- patches.fixes/cpuset-fix-cpuset_mem_spread_node-offline-node.patch: cpuset: fix cpuset mem spreading returning offline node (bnc#575923). - patches.fixes/cpuset-slab-memspread-fix.patch: Delete. Replace fix with upstream version.- patches.xen/xen3-x86-ftrace-fix-rodata-1.patch: XEN x86, cpa: Fix kernel text RO checks in static_protection (bnc#581940). - patches.xen/xen3-x86-ftrace-fix-rodata-3.patch: XEN x86_64, cpa: Use only text section in set_kernel_text_rw/ro (bnc#581940).- patches.suse/stop_machine-implement-lazy: stop_machine: implement stop_machine.lazy kernel parameter (bnc#586417).- patches.fixes/nfs-bdi-leak.fix: NFS: ensure bdi_unregister is called on mount failure. (bnc#587073).- patches.suse/kdb-x86-backtrace-code-to-use-the-in-kernel-show_stack-function: KDB: x86 backtrace code to use the in-kernel show_stack() function (bnc#581057).- patches.drivers/be2net-update-version-2.101.346u-to-2.102.147s.patch: be2net: update version 2.101.346u to 2.102.147s (bnc#585124). - patches.drivers/be2net-swap-only-first-2-fields-of-mcc_wrb.patch: renable, dropped accidently- supported.conf: Add hwmon/ams back.- patches.arch/x86-ftrace-fix-rodata-1.patch: x86, cpa: Fix kernel text RO checks in static_protection (bnc#581940). - patches.arch/x86-ftrace-fix-rodata-2.patch: x86_64, ftrace: Make ftrace use kernel identity mapping to modify code (bnc#581940). - patches.arch/x86-ftrace-fix-rodata-3.patch: x86_64, cpa: Use only text section in set_kernel_text_rw/ro (bnc#581940).- patches.suse/kdb-fix-the-multi-word-nop-instructions-in-the-disassembler: kdb: fix the multi-word NOP instructions in the disassembler (bnc#584691).- rpm/kernel-binary.spec.in: Fix symsets for non-split kernels.- patches.suse/kbuild-record-built-in-o: kbuild: Record which objects make up a built-in.o file. - rpm/built-in-where: Make use of the info to further split builtin symsets.- rpm/kernel-source.spec.in: Add symsets.pl to the src.rpm.- patches.suse/rlim-0005-core-posix-cpu-timers-cleanup-rlimits-usage.patch: posix-cpu-timers: cleanup rlimits usage (FATE#305733). - patches.suse/rlim-0008-SPARC-use-helpers-for-rlimits.patch: Refresh. - patches.suse/rlim-0009-X86-use-helpers-for-rlimits.patch: x86: Use helpers for rlimits (FATE#305733). - patches.suse/rlim-0010-FS-use-helpers-for-rlimits.patch: fs: use rlimit helpers (FATE#305733). - patches.suse/rlim-0011-MM-use-helpers-for-rlimits.patch: mm: use rlimit helpers (FATE#305733). - patches.suse/rlim-0012-core-use-helpers-for-rlimits.patch: kernel core: use helpers for rlimits (FATE#305733). - patches.suse/rlim-0013-infiniband-use-helpers-for-rlimits.patch: RDMA: Use rlimit helpers (FATE#305733). Refreshed changelogs and Patch-mainline tags -- they are upstream.- patches.fixes/fc_sdev_blocked.patch: mid-layer unblocks blocked sdev leaving queue stopped (bnc#583356).- patches.drivers/ixgbe-Fix-DMA-mapping-unmapping-issues-when-HWRSC-is.patch: ixgbe: Fix DMA mapping/unmapping issues when HWRSC is enabled on IOMMU enabled kernels (bnc#584475).- patches.drivers/be2net-a-mini-optimization-in-rx_compl_process-co.patch: be2net: a mini optimization in rx_compl_process() code (bnc#585124). - patches.drivers/be2net-don-t-rearm-mcc-cq-when-device-is-not-open.patch: be2net: don't rearm mcc cq when device is not open (bnc#585124). - patches.drivers/be2net-download-NCSI-section-during-firmware-update.patch: be2net: download NCSI section during firmware update (bnc#585124). - patches.drivers/be2net-fix-rx-path-to-ignore-a-flush-completion.patch: be2net: fix rx-path to ignore a flush completion (bnc#585124). - patches.drivers/be2net-fix-tx-completion-polling.patch: be2net: fix tx completion polling (bnc#585124). - patches.drivers/be2net-implement-EEH-pci-error-recovery-handlers.patch: be2net: implement EEH pci error recovery handlers (bnc#585124). - patches.drivers/be2net-use-eq-id-to-calculate-cev-isr-reg-offset.patch: be2net: use eq-id to calculate cev-isr reg offset (bnc#585124).- patches.drivers/be2net-change-the-driver-description.patch: be2net: change the driver description (bnc#580793). - patches.drivers/be2net-fix-to-limit-max-vlans-supported-in-certain-s.patch: be2net: fix to limit max vlans supported in certain skews (bnc#580793). - patches.drivers/be2net-minor-code-optimizations.patch: be2net: minor code optimizations (bnc#580793). - patches.drivers/be2net-remove-ASIC-generation-number-from-Kconfig.patch: be2net: remove ASIC generation number from Kconfig (bnc#580793). - patches.drivers/be2net-set-proper-value-to-version-field-in-req-hdr.patch: be2net: set proper value to version field in req hdr (bnc#580793). - patches.drivers/benet-fixes-required-for-be2net-to-work-on-bladeengine3-device.patch: benet: Fixes required for be2net to work on BladeEngine3 device (bnc#580793).- patches.arch/x86-speed-up-microcode.ctl-on-SGI-UV.patch: x86: Speed up microcode.ctl on SGI UV (bnc#586364, FATE#306952).- patches.suse/trace-open.patch: io tracing. Needed for Moblin and for some SLED preloads.- patches.drivers/s2io-fixing-dbg_print-macro.patch: s2io: fixing DBG_PRINT() macro (bnc#585711).- patches.xen/xen-fix-check_tsc_unstable-undefined: Fix xen build with patches.arch/x86-Fix-sched_clock_cpu_....- patches.fixes/Have-mmu_notifiers-use-SRCU-so-they-may-safely-schedule-build-fix.patch: Really fix ia64 build.- rpm/old-packages.conf: Obsolete kernel-vmi by kernel-default. - rpm/kernel-module-subpackage: Also obsolete vmi KMPs.- Update config files: set CONFIG_LSM_MMAP_MIN_ADDR=0 to be compatible with GA (LSM_ value is the minimal number settable by sysctl, the default stays the same - 65536).- rpm/kernel-binary.spec.in: Package symsets in the -devel package.- rpm/symsets.pl: Split symsets by module names instead of directory names.- rpm/find-provides: Do not generate ksym(...) provides.- patches.drivers/add-support-for-intel-cougar-point-chipset.patch: Enable snoop on CPT Audio (bnc#565845).- patches.arch/x86-Fix-sched_clock_cpu-for-systems-with-unsynchronized-TSC.patch: x86: Fix sched_clock_cpu for systems with unsynchronized TSC (bnc#582878, FATE#306952).- patches.fixes/Have-mmu_notifiers-use-SRCU-so-they-may-safely-schedule-build-fix.patch: mm: Fix compilation of mmu_notifier.c on IA-64 (bnc#578046, FATE#306952).- patches.drivers/megaraid-sas-04.27-update: Update megaraid sas to version 4.27 (bnc#577856).- rpm/find-provides, rpm/symsets.pl: Generate symsets again (bnc#582907).- patches.suse/dm-raid45-26-Nov-2009.patch: DMRAID45 module. - patches.fixes/dm-raid45-fix-region-hash-double-free: Delete. - patches.fixes/dm-raid45_exit_destroy_cache: Delete. - patches.suse/dm-raid45_2.6.27_20081027.patch: Delete.- patches.fixes/fc-transport-dev_loss_tmo-overflow: Protect against overflow in dev_loss_tmo (bnc#584197).- patches.drivers/bnx2x-to-version-1.52.1-7.patch: bnx2x to version 1.52.1-7 a3aa18 to c16cc0 (bnc#584453).- patches.arch/i386-do-a-global-tlb-flush-in-S4-resume.patch: i386: Do a global TLB flush in S4 resume.- patches.fixes/Fix-unmap_vma-bug-related-to-mmu_notifiers.patch: Fix unmap_vma bug related to mmu_notifiers (bnc#578046, FATE#306952). - patches.fixes/Have-mmu_notifiers-use-SRCU-so-they-may-safely-schedule.patch: Have mmu_notifiers use SRCU so they may safely schedule (bnc#578046, FATE#306952).- patches.suse/gfs2-ro-fixes.patch: gfs2: fix spectator mounts (FATE#307584 bnc#580105).- patches.arch/s390-09-01-vdso-version.patch: vdso: glibc does not use vdso functions (bnc#583296). - patches.arch/s390-09-02-dasd-fix_refcount.patch: dasd: Fix refcounting. (bnc#583296). - patches.arch/s390-09-03-dasd-correct_offline_processing.patch: dasd: Correct offline processing. (bnc#583296). - patches.arch/s390-09-04-qeth-no-online-recover.patch: qeth: avoid recovery during device online setting (bnc#583296,LTC#61167). - patches.arch/s390-09-05-zfcp-ccw_fix_remove_list.patch: zfcp: Remove attached ports and units correctly. (bnc#583296). - patches.arch/s390-09-06-qeth-dhcp.patch: qeth: l3 send dhcp in non pass thru mode (bnc#583296). - patches.arch/s390-09-07-qeth-checksum-default.patch: qeth: change checksumming default for HiperSockets (bnc#583296).- patches.fixes/pci_use_list_for_resources_1_5.patch: PCI: split up pci_read_bridge_bases() (bnc#578572). - patches.fixes/pci_use_list_for_resources_2_5.patch: PCI: read bridge windows before filling in subtractive decode resources (bnc#578572). - patches.fixes/pci_use_list_for_resources_3_5.patch: PCI: add pci_bus_for_each_resource(), remove direct bus->resource refs (bnc#578572). - patches.fixes/pci_use_list_for_resources_4_5.patch: PCI: augment bus resource table with a list (bnc#578572). - patches.fixes/pci_use_list_for_resources_5_5.patch: x86/PCI: use host bridge _CRS info by default on 2008 and newer machines (bnc#578572).- patches.drivers/alsa-sp1-hda-67-alc268-fix-quirk-check: ALSA: hda - Fix wrong model range check for ALC268 (bnc#585179). - patches.drivers/alsa-sp1-hda-68-fix-realtek-secondary-adcs: ALSA: hda - Fix input source elements of secondary ADCs on Realtek (bnc#585179).- Refresh vanilla configs.- patches.suse/driver-core-reduce-level-of-request_firmware-messages.patch: Driver core: Reduce the level of request_firmware() messages (bnc#564618, FATE#306952).- Update config files: [ia64] Turn off CONFIG_PCI_IOV. (bnc#560454)- Update Xen patches to 2.6.32.9 and c/s 1003. - patches.xen/xen-floppy: Xen: improve floppy behavior (bnc#584216). - patches.xen/xen-fix_clock_gettime_vsyscall_time_warp.diff: Rename to ... - patches.xen/xen3-fix_clock_gettime_vsyscall_time_warp.diff: ... this. - patches.xen/xen3-x86_64_apic_consider_hotplug_for_mode_logical_flat.patch: x86, apic: Don't use logical-flat mode when CPU hotplug may exceed 8 CPUs (bnc#581567). - patches.xen/xen3-x86_ioapic_fix_out_of_order_gsi.patch: x86: Fix out of order of gsi (bnc#569050).- patches.fixes/xfs-nonblocking-inode-locking-io-completion.patch: xfs: Non-blocking inode locking in IO completion (bnc#568319).- Update config files.- Update config files. i386 disable X86_PPRO_FENCE. This is a heavy partial workaround for very old and rare SMP PentiumPro systems.- patches.suse/x86-cacheline-size-128.patch: Refresh.- Update config files. - patches.suse/x86-cacheline-size-128.patch: x86 set cacheline size to 128 bytes for generic CPUs.- supported.conf: Mark CUSE unsupported.- patches.drivers/staging-hv-add-a-pci-device-table.patch: Staging: hv: add a pci device table. - patches.drivers/staging-hv-match-on-dmi-values-to-know-if-we-should-run.patch: Staging: hv: match on DMI values to know if we should run..- Drop kernel-vmi.- patches.rpmify/ia64-sn-fix-percpu-warnings: Update fix not to break sn2 modules. (bnc#578059)- patches.drivers/igb-check-both-function-bits-in-status-register-in-w.patch: igb: check both function bits in status register in wol exception (bnc#557479).- supported.conf: Marked btrfs, exofs, cachefiles, nilfs2 as unsupported.- patches.drivers/tg3-Add-more-partno-entries-for-fallback-path.patch: tg3: Add more partno entries for fallback path (bnc#585191). - patches.drivers/tg3-Add-support-for-2-new-selfboot-formats.patch: tg3: Add support for 2 new selfboot formats (bnc#585191). - patches.drivers/tg3-Enforce-DMA-mapping-skb-assignment-ordering.patch: tg3: Enforce DMA mapping / skb assignment ordering (bnc#585191). - patches.drivers/tg3-Fix-57765-A0-bootcode-race-condition.patch: tg3: Fix 57765 A0 bootcode race condition (bnc#585191). - patches.drivers/tg3-Fix-AC131-loopback-test-errors-for-5785.patch: tg3: Fix AC131 loopback test errors for 5785 (bnc#585191). - patches.drivers/tg3-Fix-napi-assignments-in-loopback-test.patch: tg3: Fix napi assignments in loopback test (bnc#585191). - patches.drivers/tg3-Give-MSI-X-vec-1-rx-backlog-space.patch: tg3: Give MSI-X vec 1 rx backlog space (bnc#585191). - patches.drivers/tg3-Make-57791-and-57795-10-100-only.patch: tg3: Make 57791 and 57795 10/100 only (bnc#585191). - patches.drivers/tg3-Prevent-rx-producer-ring-overruns.patch: tg3: Prevent rx producer ring overruns (bnc#585191). - patches.drivers/tg3-Turn-off-multiple-DMA-reads-for-5717.patch: tg3: Turn off multiple DMA reads for 5717 (bnc#585191). - patches.drivers/tg3-Unwedge-stuck-MSI-X-vectors.patch: tg3: Unwedge stuck MSI-X vectors (bnc#585191).- patches.fixes/sunrpc-monotonic-expiry: sunrpc: use monotonic time in expiry cache (bnc#578668).- patches.drivers/mlx4_core-missing-device-id-6778.patch: mlx4_core: missing device ID (bnc#585269).- patches.drivers/bnx2-update-firmware-and-some-bug-fixes-from-upstream.patch: bnx2: Update firmware and some bug fixes from upstream. (bnc#584451). - patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: Refresh.- patches.fixes/PM-Hibernate-fix-preallocating-of-memory.patch: PM / Hibernate: Fix preallocating of memory.- Update the bnc#579647 patches to follow the upstream code. - patches.arch/x86-UV-Add-UV-NMI-handler.patch: x86: Enable NMI on all cpus on UV (bnc#579647, FATE#306952). - patches.suse/x86-uv-kdb-support-for-uv-nmi-handler.patch: x86 / UV: Add KDB support to UV NMI handler (bnc#579647, FATE#306952). - patches.arch/x86-uv-nmi-handler-build-fix.patch: Delete. - patches.arch/x86-uv-nmi-handler.patch: Delete.- Update config files. Push trace changes into debug configs- patches.drivers/cxgb3-FIx-VLAN-over-Jumbo-frames.patch: cxgb3: FIx VLAN over Jumbo frames (bnc#585034). - patches.drivers/cxgb3-Set-the-rxq.patch: cxgb3: Set the rxq (bnc#585034). - patches.drivers/cxgb3-fix-GRO-checksum-check.patch: cxgb3: fix GRO checksum check (bnc#585034). - patches.drivers/cxgb3-fix-link-flap.patch: cxgb3: fix link flap (bnc#585034).- patches.fixes/net-bug-fix-for-vlan-gro-issue.patch: net: bug fix for vlan + gro issue (bnc#584728).- Update config files: enabled CONFIG_MAXSMP on x86_64 (FATE#306906).- patches.arch/ppc-extended_h_cede-fix-kstack-resume: Powerpc: reset kernel stack on cpu online from cede state (bnc#573722). - patches.arch/ppc-pseries-mach-cpu-die-rearrange-code: Powerpc: move checks in pseries_mach_cpu_die() (bnc#573722). - patches.arch/ppc-pseries-mach-cpu-die-remove-debug-printk: Powerpc: reduce printk from pseries_mach_cpu_die() (bnc#573722).- patches.fixes/x86_ioapic_fix_out_of_order_gsi.patch: x86: Fix out of order of gsi (bnc#569050).- Update config files. - patches.drivers/msi-wmi.patch: X86 drivers: Introduce msi-wmi driver (bnc#584617).- patches.drivers/ixgbe-add-support-for-82599-KR-device-0x1517.patch: ixgbe: add support for 82599 KR device 0x1517 (bnc#584820).- patches.drivers/e1000e-enable-new-82567V-3-device.patch: e1000e: enable new 82567V-3 device (bnc#584875).- patches.suse/ocfs2-allocation-resrvations.patch: Update references (bnc#501563 FATE#307247 bnc#583539). Refresh.- patches.fixes/dvb-core-fix-dos-bug-in-ule-decapsulation-code-that-can-be-triggered-by-an-invalid: dvb-core: Fix DoS bug in ULE decapsulation code that can be triggered by an invalid... (bnc#584320).- patches.fixes/acpi-fix-regression-where-_ppc-is-not-read-at-boot-even-when-ignore_ppc-0: ACPI: Fix regression where _PPC is not read at boot even when ignore_ppc=0 (bnc#584574).- patches.fixes/sched-sysctl-for-normalized-tunables: Reinstate normalized sched sysctl values overriden by stable update 2.6.32.6.7.- patches.fixes/bsg-SG_IO-compat_ioctl: Fix a bug in the patch introduced when backporting. Refresh.- patches.arch/powerpc-export-data-from-new-hcall-H_EM_GET_PARMS.patch: powerpc: export data from new hcall H_EM_GET_PARMS (bnc#584343).- patches.fixes/sched-fix-smt-scheduler-regression-in-find_busiest_queue: Refresh.- patches.fixes/sched-fix-sched_mc-regression-caused-by-change-in-sched-cpu_power: sched: Fix SCHED_MC regression caused by change in sched cpu_power (bnc#584209). - patches.fixes/sched-fix-smt-scheduler-regression-in-find_busiest_queue: sched: Fix SMT scheduler regression in find_busiest_queue() (bnc#584209).- patches.fixes/fix-lookup_follow-on-automount-symlinks: fix LOOKUP_FOLLOW on automount "symlinks" (bnc#582552).- patches.fixes/dm-raid45-fix-region-hash-double-free: Fix region hash double free when context_alloc fails (bnc#565962).- patches.drivers/lpfc-8.3.5.6-update: Update Emulex lpfc driver to 8.3.5.6 (bnc#583900).- backport fs/dlm from 2.6.33 - patches.fixes/dlm-Send-lockspace-name-with-uevents.patch: dlm: Send lockspace name with uevents. - patches.fixes/dlm-fix-ordering-of-bast-and-cast.patch: dlm: fix ordering of bast and cast. - patches.fixes/dlm-send-reply-before-bast.patch: dlm: send reply before bast. - patches.fixes/dlm-use-bastmode-in-debugfs-output.patch: dlm: use bastmode in debugfs output.- patches.fixes/dm-raid45_exit_destroy_cache: Free recovery stripes before destroying cache and do not destroy dirty log twice (bnc#565962).- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: Added patches.xfs to the RPM.- patches.drivers/qlge-0002-add-watchdog-timer.patch: Refresh. - patches.drivers/qlge-Fix-bonding-mac-address-bug.patch: qlge: Fix bonding mac address bug. (bnc#581188). - patches.drivers/qlge-Fix-dropping-of-large-non-TCP-UDP-frames.patch: qlge: Fix dropping of large non-TCP/UDP frames. (bnc#581188). - patches.drivers/qlge-Fix-occasional-loopback-test-failure.patch: qlge: Fix occasional loopback test failure. (bnc#581188).- patches.xfs/xfs-uninline-xfs_get_extsz_hint.patch: exported symbol- patches.suse/xfs-dmapi-re-add-flags-for-xfs_free_eofblocks: xfs/dmapi: Re-add flags for xfs_free_eofblocks (bnc#582872). - patches.xfs/XFS-Free-buffer-pages-array-unconditionally.patch: XFS: Free buffer pages array unconditionally (bnc#582872). - patches.xfs/kill-I_LOCK.patch: kill I_LOCK (bnc#582872). - patches.xfs/xfs-Avoid-inodes-in-reclaim-when-flushing-from-inode.patch: xfs: Avoid inodes in reclaim when flushing from inode cache (bnc#582872). - patches.xfs/xfs-Don-t-flush-stale-inodes.patch: xfs: Don't flush stale inodes (bnc#582872). - patches.xfs/xfs-Ensure-we-force-all-busy-extents-in-range-to-dis.patch: xfs: Ensure we force all busy extents in range to disk (bnc#582872). - patches.xfs/xfs-Fix-error-return-for-fallocate-on-XFS.patch: xfs: Fix error return for fallocate() on XFS (bnc#582872). - patches.xfs/xfs-I-O-completion-handlers-must-use-NOFS-allocation.patch: xfs: I/O completion handlers must use NOFS allocations (bnc#582872). - patches.xfs/xfs-Remove-inode-iolock-held-check-during-allocation.patch: xfs: Remove inode iolock held check during allocation (bnc#582872). - patches.xfs/xfs-Wrapped-journal-record-corruption-on-read-at-rec.patch: xfs: Wrapped journal record corruption on read at recovery (bnc#582872). - patches.xfs/xfs-change-the-xfs_iext_insert-xfs_iext_remove.patch: xfs: change the xfs_iext_insert / xfs_iext_remove (bnc#582872). - patches.xfs/xfs-check-for-not-fully-initialized-inodes-in-xfs_ir.patch: xfs: check for not fully initialized inodes in xfs_ireclaim (bnc#582872). - patches.xfs/xfs-cleanup-bmap-extent-state-macros.patch: xfs: cleanup bmap extent state macros (bnc#582872). - patches.xfs/xfs-cleanup-data-end-I-O-handlers.patch: xfs: cleanup data end I/O handlers (bnc#582872). - patches.xfs/xfs-cleanup-dmapi-macros-in-the-umount-path.patch: xfs: cleanup dmapi macros in the umount path (bnc#582872). - patches.xfs/xfs-fix-missing-error-check-in-xfs_rtfree_range.patch: xfs: fix missing error check in xfs_rtfree_range (bnc#582872). - patches.xfs/xfs-fix-mmap_sem-iolock-inversion-in-xfs_free_eofblo.patch: xfs: fix mmap_sem/iolock inversion in xfs_free_eofblocks (bnc#582872). - patches.xfs/xfs-fix-stale-inode-flush-avoidance.patch: xfs: fix stale inode flush avoidance (bnc#582872). - patches.xfs/xfs-fix-timestamp-handling-in-xfs_setattr.patch: xfs: fix timestamp handling in xfs_setattr (bnc#582872). - patches.xfs/xfs-improve-metadata-I-O-merging-in-the-elevator.patch: xfs: improve metadata I/O merging in the elevator (bnc#582872). - patches.xfs/xfs-kill-the-STATIC_INLINE-macro.patch: xfs: kill the STATIC_INLINE macro (bnc#582872). - patches.xfs/xfs-kill-xfs_bmbt_rec_32-64-types.patch: xfs: kill xfs_bmbt_rec_32/64 types (bnc#582872). - patches.xfs/xfs-reclaim-all-inodes-by-background-tree-walks.patch: xfs: reclaim all inodes by background tree walks (bnc#582872). - patches.xfs/xfs-reclaim-inodes-under-a-write-lock.patch: xfs: reclaim inodes under a write lock (bnc#582872). - patches.xfs/xfs-remove-IO_ISAIO.patch: xfs: remove IO_ISAIO (bnc#582872). - patches.xfs/xfs-remove-incorrect-sparse-annotation-for-xfs_iget_.patch: xfs: remove incorrect sparse annotation for xfs_iget_cache_miss (bnc#582872). - patches.xfs/xfs-rename-xfs_attr_fetch-to-xfs_attr_get_int.patch: xfs: rename xfs_attr_fetch to xfs_attr_get_int (bnc#582872). - patches.xfs/xfs-reset-the-i_iolock-lock-class-in-the-reclaim-pat.patch: xfs: reset the i_iolock lock class in the reclaim path (bnc#582872). - patches.xfs/xfs-simplify-inode-teardown.patch: xfs: simplify inode teardown (bnc#582872). - patches.xfs/xfs-simplify-xfs_buf_get-xfs_buf_read-interfaces.patch: xfs: simplify xfs_buf_get / xfs_buf_read interfaces (bnc#582872). - patches.xfs/xfs-uninline-xfs_get_extsz_hint.patch: xfs: uninline xfs_get_extsz_hint (bnc#582872). - patches.xfs/xfs-use-WRITE_SYNC_PLUG-for-synchronous-writeout.patch: xfs: use WRITE_SYNC_PLUG for synchronous writeout (bnc#582872). - patches.xfs/xfs-xfs_swap_extents-needs-to-handle-dynamic-fork-of.patch: xfs: xfs_swap_extents needs to handle dynamic fork offsets (bnc#582872).- patches.fixes/acpi_be_in_TS_POLLING_state_during_mwait.patch: ACPI: Be in TS_POLLING state during mwait (bnc#583022)- supported.conf:- config/x86_64/trace: enable FUNCTION_GRAPH_TRACER- rpm/split-modules: Do not duplicate base modules in the main package.- patches.trace/oprofile-no-tracing.diff: oprofile: remove tracing build dependency (disable remaining tracers) - Update config files.- patches.drivers/synaptics-clickpad-bottom-enable: Add parameter to enable/disable the sensing of clickpad button area (bnc#58529). - patches.drivers/synaptics-clickpad-button-toggle: Add clickpad button toggle support (bnc#547370, bnc#582643).- patches.suse/dm-mpath-no-activate-for-offlined-paths: Fix a bug in the patch. Refresh. (bnc#565962)- patches.arch/x86-uv-nmi-handler-build-fix.patch: x86 / UV: Fix UV NMI handler build issue (bnc#579647, FATE#306952).- patches.arch/x86-uv-nmi-handler.patch: x86 / UV: Add UV NMI handler (bnc#579647, FATE#306952). - patches.suse/x86-add-kdb-support-for-unknown_nmi_error-handler.patch: x86: Add KDB support to unknown_nmi_error handler. (bnc#579647, FATE#306952). - patches.suse/x86-uv-kdb-support-for-uv-nmi-handler.patch: Add KDB support to UV NMI handler. (bnc#579647, FATE#306952).- patches.fixes/powerpc-eeh-fix-a-bug-when-pci-structure-is-null: powerpc/eeh: Fix a bug when pci structure is null (bnc#579137).- Backport fs/ocfs2 and fs/dlm from 2.6.33-rc8 - patches.fixes/dlm-always-use-GFP_NOFS.patch: dlm: always use GFP_NOFS. - patches.fixes/ocfs2-Do-not-downconvert-if-the-lock-level-is-alread.patch: ocfs2: Do not downconvert if the lock level is already compatible. - patches.fixes/ocfs2-Fix-contiguousness-check-in-ocfs2_try_to_merge.patch: ocfs2: Fix contiguousness check in ocfs2_try_to_merge_extent_map(). - patches.fixes/ocfs2-Fix-memory-overflow-in-cow_by_page.patch: ocfs2: Fix memory overflow in cow_by_page.. - patches.fixes/ocfs2-Fix-setting-of-OCFS2_LOCK_BLOCKED-during-bast.patch: ocfs2: Fix setting of OCFS2_LOCK_BLOCKED during bast. - patches.fixes/ocfs2-Only-bug-out-when-page-size-is-larger-than-clu.patch: ocfs2: Only bug out when page size is larger than cluster size.. - patches.fixes/ocfs2-Plugs-race-between-the-dc-thread-and-an-unlock.patch: ocfs2: Plugs race between the dc thread and an unlock ast message. - patches.fixes/ocfs2-Prevent-a-livelock-in-dlmglue.patch: ocfs2: Prevent a livelock in dlmglue. - patches.fixes/ocfs2-Remove-overzealous-BUG_ON-during-blocked-lock-.patch: ocfs2: Remove overzealous BUG_ON during blocked lock processing. - patches.fixes/ocfs2-Use-compat_ptr-in-reflink_arguments.patch: ocfs2: Use compat_ptr in reflink_arguments.. - patches.fixes/ocfs2-cluster-Make-o2net-connect-messages-KERN_NOTIC.patch: ocfs2/cluster: Make o2net connect messages KERN_NOTICE. - patches.fixes/ocfs2-dlm-Fix-printing-of-lockname.patch: ocfs2/dlm: Fix printing of lockname. - patches.fixes/ocfs2-dlm-Handle-EAGAIN-for-compatibility-v2.patch: ocfs2/dlm: Handle EAGAIN for compatibility - v2. - patches.fixes/ocfs2-dlm-Remove-BUG_ON-in-dlm-recovery-when-freeing.patch: ocfs2/dlm: Remove BUG_ON in dlm recovery when freeing locks of a dead node.- supported.conf: Support Microsoft HyperV drivers (FATE#309005)- Patch refresh after 2.6.32.9 update- Update to 2.6.32.9: - security fixes - bug fixes - obsoletes: - patches.drivers/alsa-sp1-usb-01-avoid-oops-at-disconnect - patches.drivers/drm-i915-add-i915_lp_ring_sync-helper.patch - patches.drivers/drm-i915-fix-ironlake-crt-hotplug - patches.fixes/acpi_NULL_check_scan_bus.patch - patches.fixes/alsa-hda-intel-avoid-divide-by-zero-crash - patches.fixes/dm-stripe-zero-stripes - patches.fixes/fix-potential-crash-with-sys_move_pages - patches.fixes/futex-handle-user-space-corruption-gracefully - patches.fixes/futex_lock_pi-key-refcnt-fix - patches.fixes/nfs-fix-nfs_fscache_release_page.patch - patches.kernel.org/dasd-remove-strings-from-s390dbf.patch - patches.suse/rlim-0003-resource-add-helpers-for-fetching-rlimits.patch- patches.fixes/bsg-SG_IO-compat_ioctl: compat_ioct: fix bsg SG_IO (bnc#580991). - patches.fixes/fc_bsg_request_packed: fc-transport: Use packed modifier for fc_bsg_request structure. (bnc#580991).- Stop watching the kabi again. - patches.kabi/struct-file-f_count: Delete. - patches.kabi/task_struct-btrace_seq: Delete.- patches.fixes/mm-memcg-coalesce-charging.patch: Refresh. - patches.fixes/mm-memcg-coalesce-uncharge.patch: memcg: coalesce uncharge during unmap/truncate (bnc#550906). - patches.suse/perfmon2.patch: Refresh. - patches.xen/tmem: Refresh.- patches.fixes/novfs-fix-inode-uid: novfs: Get proper UID when looking up inode (bnc#486997). - patches.fixes/novfs-incorrect-filesize-fix: novfs: novfs reports incorrect file size (bnc#426536). - patches.fixes/novfs-truncate-fix: novfs: Fixes corruption of OO documents on NSS Volumes (bnc#508259).- patches.fixes/mm-memcg-coalesce-charging.patch: memcg: coalesce charging via percpu storage (bnc#550906).- Update config files. The Ocfs2 tracing option wasn't turned on for some reason. We really need this for debugging customer issues in the field.- patches.fixes/alsa-hda-intel-avoid-divide-by-zero-crash: ALSA: hda-intel: Avoid divide by zero crash (bnc#581718).- patches.suse/cfq-turn-lowlatency-off-by-default.patch: CFQ: turn 'low_latency' knob off by default (bnc#572834).- patches.suse/cgroup-disable-memory.patch: Delete, the rest of the patch does not make sense after commit 6b53b611.- delete lttng instrumentation patches (requested by jkosina) - refresh patches.xen/tmem: Refresh. - patches.xen/xen3-auto-common.diff: Refresh.- patches.drivers/qla1280-fallback-to-loaded-fw: qla1280: retain firmware for error recovery (bnc#578430). - patches.drivers/qla1280-request-firmware-lock: qla1280: firmware load deadlocks kdump (bnc#578430). - patches.drivers/qla4xxx-5.01.00.00.11.01-k11_5.01.00.00.11.01-k12.patch: Update qla4xxx to v5.01.00.00.11.01-k12 (bnc#556572).- patches.xen/xen-fix_clock_gettime_vsyscall_time_warp.diff: Fix up xen compilation after last commits (bnc#581567).- patches.fixes/fix_clock_gettime_vsyscall_time_warp.diff: put proper 'Patch-mainline' tag in.- patches.arch/x86_64_apic_consider_hotplug_for_mode_logical_flat.patch: x86, apic: Don't use logical-flat mode when CPU hotplug may exceed 8 CPUs (bnc#581567).- patches.fixes/fix_clock_gettime_vsyscall_time_warp.diff: Fix time warps with vsyscalls (bnc#569238).- patches.arch/x86-calgary-increase-max-phb-bus-num.patch: x86: calgary - increase max phb bus number (bnc#581199).- patches.suse/cgroup-disable-memory.patch: Enable memcg by default. (bnc#436025 bnc#467688 bnc#550906).- Refresh Xen patches. - patches.xen/xen-x86-nohz-long-timeouts: Properly handle long timeouts when passed to VCPUOP_set_singleshot_timer. - patches.xen/xen-x86-time-per-cpu: fold per-CPU accounting data into a structure. - patches.xen/xen-x86-xtime-lock: reduce contention on xtime_lock (bnc#569014, bnc#571041, bnc#571769, bnc#572146). - patches.xen/xen3-x86_irq_setup_extra_ioapic_for_sci.patch: x86: fix sci on ioapic 1 (bnc#572661).- patches.drivers/be2iscsi-BE3-support: be2iscsi: Add support for BE3 HBAs (bnc#568147). - patches.drivers/lpfc-8.3.5.5-update: Update Emulex lpfc driver to 8.3.5.5 (bnc#579682). - patches.drivers/qla2xxx-8.03.01.03.11.1-k8-update: qla2xxx: Updates to sync with 2.6.33-rc8 and scsi-misc-2.6 (bnc#580823). - patches.drivers/qla4xxx-5.01.00.00.11.01-k10_5.01.00.00.11.01-k11.patch: qla4xxx update to v5.01.00.00.11.01-k11 (bnc#556572). - patches.fixes/libiscsi-add-recover-target: libiscsi: Implement recover_target callback (bnc#568147). - patches.fixes/qla2xxx-restore-pci-state-after-eeh-recovery: Delete.- patches.kabi/struct-file-f_count: struct file kabi hack for i386. - patches.kabi/task_struct-btrace_seq: task_struct kabi hack for i386.- patches.fixes/sched-fix-sched_mc_power_savings-for-non-SMT: Fix for sched_mc_powersavings for !SMT (bnc#579060, LTC#59030).- patches.arch/s390-08-01-zfcp_port_dequeue_race.patch: zfcp: cancel all pending work for a to be removed zfcp_port. (bnc#579111). - patches.arch/s390-08-02-zfcp_fc_bsg_report_error.patch: zfcp: report BSG errors in correct field. (bnc#579111). - patches.arch/s390-08-03-qdio-input-error.patch: qdio: continue polling for buffer state ERROR (bnc#579111,LTC#60735). - patches.arch/s390-08-04-qdio-int_handler_warn.patch: qdio: prevent kernel bug message in interrupt handler. (bnc#579111). - patches.arch/s390-08-05-hvc-iucv-alloc-dma.patch: hvc_iucv: allocate IUCV send/receive buffers in DMA zone (bnc#579111,LTC#60771).- patches.drivers/ehca-process-mad-null.patch: ib/ehca: fix in_wc handling in process_mad() (bnc#580140,LTC#60809).- patches.drivers/ethtool-Introduce-n-tuple-filter-programming-support.patch: ethtool: Introduce n-tuple filter programming support (bnc#580381) Drop this patch - patches.drivers/ixgbe-Add-support-for-the-new-ethtool-n-tuple-progra.patch: ixgbe: Add support for the new ethtool n-tuple programming interface (bnc#580381) Drop this patch- Import Beta3 kabi files.- patches.suse/tg3-5785-and-57780-asic-revs-not-working.patch: tg3: 5785 and 57780 asic revs not working (bnc#580780).- Fix s390 vanilla build: - patches.arch/s390-04-15-cio-split-pgid.patch: Refresh. - patches.kernel.org/dasd-remove-strings-from-s390dbf.patch: dasd: remove strings from s390dbf. - patches.arch/s390-05-15-dasd-s390dbf-strings.patch: Delete.- patches.drivers/ethtool-Introduce-n-tuple-filter-programming-support.patch: ethtool: Introduce n-tuple filter programming support (bnc#580381). - patches.drivers/ixgbe-Add-support-for-the-new-ethtool-n-tuple-progra.patch: ixgbe: Add support for the new ethtool n-tuple programming interface (bnc#580381).- patches.drivers/ixgbe-prevent-speculative-processing-of-descriptors.patch: ixgbe: prevent speculative processing of descriptors (bnc#580416).- Update config files.- patches.drivers/tg3-entropy-source.patch: Refresh to fix fuzz- patches.fixes/cpuset-slab-memspread-fix.patch: cpuset: fix cpuset mem spreading returning offline node (bnc#575923).- patches.suse/slab-memless-node-01-introduce-numa_mem_id.patch: mm: introduce numa_mem_id (bnc#570492). - patches.suse/slab-memless-node-02-slab-use-numa_mem_id.patch: mm: slab use numa_mem_id (bnc#570492). - patches.suse/slab-memless-node-03-ia64-memoryless-nodes.patch: ia64: support memoryless nodes (bnc#570492). - patches.suse/slab-memless-node-04-kernel-profile-memoryless-nodes.patch: kernel: support memoryless nodes in profiling (bnc#570492).- patches.drivers/drivers-net-request_irq-remove: Refresh. - patches.drivers/igb-0001-add-support-for-the-82580-phy.patch: igb: add support for the 82580 phy (bnc#557479). - patches.drivers/igb-0002-Add-full-support-for-82580-devices.patch: igb: Add full support for 82580 devices (bnc#557479). - patches.drivers/igb-0003-add-support-for-82580-MAC.patch: igb: add support for 82580 MAC (bnc#557479). - patches.drivers/igb-add-new-data-structure-for-handling-interrupts-a.patch: igb: add new data structure for handling interrupts and NAPI (bnc#557479). - patches.drivers/igb-cleanup-interrupt-enablement-in-regards-to-msix_.patch: igb: cleanup interrupt enablement in regards to msix_other (bnc#557479). - patches.drivers/igb-cleanup-some-of-the-code-related-to-hw-timestamp.patch: igb: cleanup some of the code related to hw timestamping (bnc#557479). - patches.drivers/igb-entropy-source.patch: Refresh. - patches.drivers/igb-use-packet-buffer-sizes-from-RXPBS-register.patch: igb: use packet buffer sizes from RXPBS register (bnc#557479). - patches.drivers/ixgbe-entropy-source.patch: Refresh.- patches.suse/ocfs2-allocation-resrvations.patch: Refresh.- patches.arch/x86-Avoid-race-condition-in-pci_enable_msix.patch: x86: Avoid race condition in pci_enable_msix() (bnc#572294).- patches.arch/x86-uv-fix-uv_hub_macro-bug.patch: x86 / UV: Fix bug in uv_global_gru_mmr_address macro (bnc#579636, FATE#306952).- patches.drivers/drm-i915-adhoc-disable-lid-detection: drm/i915: Disable ACPI lid detection as an ad hoc workaround (bnc#577937).- patches.fixes/ia64-preserve-high-order-personality-bits: [ia64] Preserve personality flag bits across exec(2). (bnc#565124)- patches.fixes/nfs-fix-nfs_fscache_release_page.patch: NFS: Fix a bug in nfs_fscache_release_page() (bnc#569687).- patches.drivers/be2net-0000-fix-bug-in-rx-page-posting.patch: be2net: fix bug in rx page posting (bnc#556959). - patches.drivers/be2net-0001-Add-link-test-to-list-of-ethtool-self-tests.patch: be2net: Add link test to list of ethtool self tests. (bnc#556959). - patches.drivers/be2net-0002-ethtool-self-test-reorganization.patch: be2net: ethtool self test reorganization. (bnc#556959). - patches.drivers/be2net-0003-bug-fix-in-be_read_eeprom.patch: be2net: bug fix in be_read_eeprom (bnc#556959). - patches.drivers/be2net-0004-bug-fix-for-flashing-the-BladeEngine3-ASIC.patch: be2net: bug fix for flashing the BladeEngine3 ASIC (bnc#556959). - patches.drivers/be2net-0005-remove-unused-pci-device-id.patch: be2net: remove unused pci device id (bnc#556959). - patches.drivers/be2net-0006-bug-fix-in-be_change_mtu.patch: be2net: bug fix in be_change_mtu (bnc#556959).- patches.drivers/cxgb3-fixing-eeh-handlers.patch: cxgb3: Fixing EEH handlers (bnc#578980). - patches.drivers/e1000e-call-pci_save_state-after-pci_restore_state.patch: e1000e: call pci_save_state() after pci_restore_state() (bnc#578981).- Update config files. disable CONFIG_DETECT_SOFTLOCKUP on i386 and x86-64 except for debug kernels. Resolves bnc#572119 and potentially many more in the future.- patches.drivers/qlge-0003-add-check-for-eeh-failure-when-closing-device.patch: Refresh. - patches.drivers/qlge-0025-drivers-net-Move-and-to-end-of-previous-line.patch: drivers/net: Move && and || to end of previous line (bnc#560420). - patches.drivers/qlge-0026-Turn-on-RX-header-split-based-on-platform.patch: qlge: Turn on RX header split based on platform. (bnc#560420). - patches.drivers/qlge-0027-Add-RX-frame-handlers-for-non-split-frames.patch: qlge: Add RX frame handlers for non-split frames. (bnc#560420). - patches.drivers/qlge-0028-Add-napi-gro-frags-interface.patch: qlge: Add napi gro frags interface. (bnc#560420). - patches.drivers/qlge-0029-drivers-net-qlge-qlge_main.c-use-pM-to-show-MAC-ad.patch: drivers/net/qlge/qlge_main.c: use %pM to show MAC address (bnc#560420). - patches.drivers/qlge-0030-drivers-net-use-DEFINE_PCI_DEVICE_TABLE.patch: drivers/net/: use DEFINE_PCI_DEVICE_TABLE() (bnc#560420). - patches.drivers/qlge-0031-Add-data-for-firmware-dump.patch: qlge: Add data for firmware dump. (bnc#560420). - patches.drivers/qlge-0032-Add-basic-firmware-dump.patch: qlge: Add basic firmware dump. (bnc#560420). - patches.drivers/qlge-0033-Add-probe-regs-to-firmware-dump.patch: qlge: Add probe regs to firmware dump. (bnc#560420). - patches.drivers/qlge-0034-Add-RAM-dump-to-firmware-dump.patch: qlge: Add RAM dump to firmware dump. (bnc#560420). - patches.drivers/qlge-0035-Add-alternate-function-s-reg-dump-to-fw-dump.patch: qlge: Add alternate function's reg dump to fw dump. (bnc#560420). - patches.drivers/qlge-0036-Add-serdes-reg-blocks-dump-to-firmware-dump.patch: qlge: Add serdes reg blocks dump to firmware dump. (bnc#560420). - patches.drivers/qlge-0037-Add-xgmac-reg-blocks-to-firwmare-dump.patch: qlge: Add xgmac reg blocks to firwmare dump. (bnc#560420). - patches.drivers/qlge-0038-Add-module-param-to-force-firmware-core-dump.patch: qlge: Add module param to force firmware core dump. (bnc#560420). - patches.drivers/qlge-0003-Set-PCIE-max-read-request-size.patch: Delete. - patches.drivers/qlge-0025-Add-performance-change-for-non-split-headers.patch: Delete. - patches.drivers/qlge-0026-Add-firmware-core-dump.patch: Delete.- patches.fixes/futex-handle-user-space-corruption-gracefully: futex: Handle user space corruption gracefully (bnc#579439 CVE-2010-0622). - patches.fixes/futex_lock_pi-key-refcnt-fix: futex_lock_pi() key refcnt fix (bnc#579439 CVE-2010-0623).- patches.fixes/taskstats-alignment: delayacct: align to 8 byte boundary on 64-bit systems (bnc#578065).- patches.drivers/drm-i915-fix-ironlake-crt-hotplug: drm/i915: disable hotplug detect before Ironlake CRT detect (bnc#575047).- patches.drivers/drm-i915-fix-ironlake-crt-hotplug: drm/i915: disable hotplug detect before Ironlake CRT detect (bnc#575047).- Update config files: enable MMU_NOTIFIER for SGI_XP (bnc#573803).- patches.arch/ppc-extended_h_cede-update-to-mainline: Refresh. According to bnc#550447 c#18 this should be it.- patches.fixes/ia64-select-mmu-notifier-for-sgi-xp.patch: Select MMU_NOTIFIER for SGI_XP (bnc#573803).- patches.trace/lttng-instrumentation-swap.patch: Refresh.- patches.arch/acpi_enable_C3_on_huge_latencies.patch: ACPI: allow C3 > 1000usec (Requested by Intel).- patches.arch/x86_cpu_hotplug_map_numa_node_correctly.patch: x86: map hotadded cpu to correct node (bnc#567283). - patches.xen/xen3-patch-2.6.19: Refresh.- patches.fixes/bios_driven_exclude_firmware_error.patch: cpufreq, powernow-k8: Do not complain about missing tables when BIOS drives cpufreq (Requested by HP).Most of these never show up in productive code paths and are for injecting/faking HW errors. Thus I still add them that late: - patches.fixes/mce_injection_enhancements_0474a60ec704324577782b1057d05b574388d552: HWPOISON: Use new shake_page in memory_failure (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_0d57eb8dfcb92e3dd928d792f4ed2b2fec680bb7: HWPOISON: Don't do early filtering if filter is disabled (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_12686d153abff397fa0927c620d5a3de84910b72: HWPOISON: Try to allocate migration page on the same node (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_138ce286eb6ee6d39ca4fb50516e93adaf6b605f: HWPOISON: return 0 to indicate success reliably (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_1668bfd5be9d8a52536c4865000fbbe065a3613b: HWPOISON: abort on failed unmap (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_1a9b5b7fe0c5dad8a635288882d36785dea742f9: mm: export stable page flags (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_1bfe5febe34d2be2120803c10720e179186357c9: HWPOISON: add an interface to switch off/on all the page filters (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_31d3d3484f9bd263925ecaa341500ac2df3a5d9b: HWPOISON: limit hwpoison injector to known page types (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_413f9efbc513d330f00352bb7cba060a729999d3: HWPOISON: mention HWPoison in Kconfig entry (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_478c5ffc0b50527bd2390f2daa46cc16276b8413: HWPOISON: add page flags filter (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_4fd466eb46a6a917c317a87fb94bfc7252a0f7ed: HWPOISON: add memory cgroup filter (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_71f72525dfaaec012e23089c73331654ea7b12d3: HWPOISON: comment dirty swapcache pages (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_7c116f2b0dbac4a1dd051c7a5e8cef37701cafd4: HWPOISON: add fs/device filters (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_847ce401df392b0704369fd3f75df614ac1414b4: HWPOISON: Add unpoisoning support (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_95d01fc664b9476e0d18e3d745bb209a42a33588: HWPOISON: remove the free buddy page handler (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_9b9a29ecd75e310f75a9243e1c3538ad34598fcb: HWPOISON: remove the anonymous entry (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_d324236b3333e87c8825b35f2104184734020d35: memcg: add accessor to mem_cgroup.css (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_d95ea51e3a7e9ee051d19f1dd283ca61d1aa5ec6: HWPOISON: make semantics of IGNORED/DELAYED clear (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_db0480b3a61bd6ad86ead3b8bbad094ab0996932: HWPOISON: comment the possible set_page_dirty() race (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_e42d9d5d47961fb5db0be65b56dd52fe7b2421f1: memcg: rename and export try_get_mem_cgroup_from_page() (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_f2c03debdfb387fa2e35cac6382779072b8b9209: HWPOISON: Remove stray phrase in a comment (Requested by Intel for better MCE/MCA testing). - patches.fixes/mce_injection_enhancements_fe194d3e100dea323d7b2de96d3b44d0c067ba7a: HWPOISON: Use correct name for MADV_HWPOISON in documentation (Requested by Intel for better MCE/MCA testing).- patches.suse/SoN-05-reserve-slub.patch: Fix memory leak (bnc#554081)- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Revert, preparing for reworked patch.- supported.conf: saa7111 and saa7114 are gone.- supported.conf: + ipt_recent has been renamed to xt_recent + ipt_hl and ipt_HL have been merged with v6 variant and renamed to xt_hl and xt_HL- Update config files, supported.conf: [ia64] Build cpe_migrate as module again. (bnc#569606)- patches.suse/suse-ppc64-branding: Make the message dependent on the booted kernel (regular vs. crashdump) (bnc#575884).- patches.suse/kdb-fix-kdb_cmds-to-include-the-arch-common-macro: kdb: fix kdb_cmds to include the arch common macro (bnc#578421).- patches.xen/xen-x86_64-note-init-p2m: Refresh (bnc#578639).- series.conf: Add forgotten patch.- patches.suse/kdb-handle-nonexistance-keyboard-controller: kdb: handle nonexistance keyboard controller (bnc#578051).- supported.conf: add vmxnet3 and vmw_pvscsi as supported drivers- patches.fixes/dvb-l64781.ko-broken-with-gcc-4.5.patch: dvb: l64781.ko broken with gcc 4.5.- patches.apparmor/apparmor-check-for-network-in-interrupt-and-work-around: apparmor: check for network in interrupt and work around (bnc#492961, bln#350789).- Update Xen patches to 2.6.32.8 and c/s 993.- patches.fixes/fix-potential-crash-with-sys_move_pages: Fix potential crash with sys_move_pages (bnc#577753 CVE-2010-0415).- patch refresh fuzz due to stable kernel patch updates- Update to 2.6.32.8: - security fixes - bugfixes - obsoletes: - patches.arch/s390-07-01-zcrypt-errorhandling-of-872.patch - patches.arch/s390-07-02-dasd-dbf-null-pointer.patch - patches.arch/x86_node_hotplug_parse_srat_fix_2nd_ver.patch - patches.drivers/e1000-enhance-frame-fragment-detection.patch - patches.drivers/e1000e-enhance-frame-fragment-detection.patch - patches.fixes/iwlwifi_set_default_aggregation_frame_count_limit_to_31.patch - patches.fixes/kvm-adjust-kvmclock-offset.patch - patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch- patches.suse/x86-mark_rodata_rw.patch: fix x86-64 bug (bnc#575194) (folded patch attached in that bug).- patches.drivers/alsa-sp1-hda-66-idt-hp-mute-led-fix-polarity: ALSA: hda - Fix default polarity of mute-LED GPIO on 92HD83x/88x codecs (bnc#578190).- patches.fixes/sched-cpuacct-percpu-counter-batch.patch: sched: cpuacct: Use bigger percpu counter batch values for stats counters (bnc#575074). - patches.fixes/sched-inline__percpu_counter_add.patch: percpu_counter: Make __percpu_counter_add an inline function on UP (bnc#575074).- patches.fixes/x86_64_memory_hotplug_dev_mem.patch: memory hotplug: fix a bug on /dev/mem for 64-bit kernels (bnc#577771).- patches.drivers/alsa-sp1-hda-62-fix-hp-dv-mute-led: ALSA: hda - Fix mute led GPIO on HP dv-series notebooks (bnc#577927). - patches.drivers/alsa-sp1-hda-63-idt-hp-mute-led-detect: ALSA: hda - Detect HP mute-LED GPIO setup from GPIO counts (bnc#577927). - patches.drivers/alsa-sp1-hda-64-idt-hp-mute-led-cleanup: ALSA: hda - Merge HP mute-LED status callback on both IDT 92HD7x and 8x codecs (bnc#577927). - patches.drivers/alsa-sp1-hda-65-idt-hp-mute-led-cleanup2: ALSA: hda - Remove static gpio_led setup via model (bnc#577927).- patches.drivers/synaptics-clickpad-area-param: Refresh. Fixed the v-scroll area touch behavior.- patches.suse/blk-add-atomic-abort-flag: block: Implement REQ_ATOM_ABORT flag (bnc#527028). - patches.suse/blk-queue-unprep-fn: block: Implement unprep_rq_fn() (bnc#527028).- patches.suse/fcoe-only-rmmod-fcoe-ko-if-no-active-connections: fcoe: Only rmmod fcoe.ko if there are no active connections (bnc#577529). - patches.suse/libfc-call-ddp-setup-for-FCP-reads-only: libfc: call ddp setup for only FCP reads to avoid accessing junk fsp pointer (bnc#577529). - patches.suse/libfc-don-t-assume-response-request-present: libfc: Don't assume response request present. (bnc#577529). - patches.suse/libfc-fix-e_d_tov-ns-ms-scaling: libfc: Fix e_d_tov ns -> ms scaling factor in PLOGI response (bnc#577529). - patches.suse/libfcoe-send-port-lka-every-fip_vn_ka_period: libfcoe: Send port LKA every FIP_VN_KA_PERIOD secs. (bnc#577529).- Update Xen patches (bnc#575199).- patches.drivers/lpfc-8.3.5.4-update: Add missing include.- patches.fixes/sched-cleanup-select_task_rq_fair: sched: Cleanup select_task_rq_fair() (bnc#567474). - patches.fixes/sched-fix-vmark-regression: sched: Fix vmark regression on big machines (bnc#567474). - patches.fixes/sched-more-generic_WAKE_AFFINE: sched: More generic WAKE_AFFINE vs select_idle_sibling() (bnc#567474).- patches.drivers/pmcraid-2.6.33-rc6-update: Backport fixes for pmcraid from 2.6.33 (bnc#577232).- patches.drivers/lpfc-8.3.5.4-update: Patch to update Emulex LPFC driver to 8.3.5.4 (bnc#577203).- supported.conf:- add patch patches.arch/x86-Limit-number-of-per-cpu-TSC-sync-messages.patch to series.conf (forgotten by mistake)- patches.fixes/ocfs2-Fix-refcnt-leak-on-ocfs2_fast_follow_link-erro.patch: ocfs2: Fix refcnt leak on ocfs2_fast_follow_link() error path. - patches.fixes/ocfs2-Sync-max_inline_data_with_xattr-from-tools.patch: ocfs2: Sync max_inline_data_with_xattr from tools.. - patches.fixes/ocfs2-dlm-Ignore-LVBs-of-locks-in-the-Blocked-list.patch: ocfs2/dlm: Ignore LVBs of locks in the Blocked list. - patches.fixes/ocfs2-dlm-Print-more-messages-during-lock-migration.patch: ocfs2/dlm: Print more messages during lock migration. - patches.fixes/ocfs2-fix-a-misleading-variable-name.patch: ocfs2: fix a misleading variable name. - patches.fixes/ocfs2-trivial-Remove-trailing-whitespaces.patch: ocfs2/trivial: Remove trailing whitespaces.- Update config files.CONFIG_IPV6=m even for desktop flavours. (bnc#561611)- patches.drivers/ixgbe-only-process-one-ixgbe_watchdog_task-at-a-time.patch: ixgbe: only process one ixgbe_watchdog_task at a time. (bnc#562046).- patches.suse/64bytes_lvb_len.diff: delete from repo and series.conf. Keep dlm lvb length to 32byte for clvm (bnc#573460)- Update config files: build BSR into ppc kernel, not as module. (bnc#572381) - patches.arch/ppc-pseries-ncpus-1: powerpc: Add static fields to ibm,client-architecture call (bnc#570909). - patches.arch/ppc-pseries-ncpus-2: powerpc/pseries: Pass more accurate number of supported cores to firmware (bnc#570909).- Watch a subset of the kabi for i386/pae.- patches.drivers/support-pci-domains-in-aer-inject: add support for PCI domains to aer_inject (bnc#573565, FATE#306815).- Update config files: set CONFIG_ENTERPRISE_SUPPORT everywhere.- patches.drivers/drm-i915-fix-crt-hotplug-hang: drm/i915: Fix lock-up during hotplug detection (bnc#575047).- disable patches.suse/64bytes_lvb_len.diff in series.conf- patches.drivers/be2net-swap-only-first-2-fields-of-mcc_wrb.patch: be2net: swap only first 2 fields of mcc_wrb (bnc#556959). - patches.drivers/benet-from-v2.6.32-to-8f47afe0.patch: benet: from v2.6.32 to 8f47afe0 (bnc#556959).- patches.drivers/synaptics-clickpad-area-param: input: synaptics - add clickpad_area parameter (bnc#567703).- rpm/find-provides, rpm/kernel-binary.spec.in: Remove the previous hack and set STRIP_KEEP_SYMTAB='*/vmlinux-*' instead to avoid stripping symbols from the ppc vmlinux image (bnc#572148).- patches.fixes/pci-hotplug-ibmphp-ebda-len.patch: PCI hotplug: ibmphp: read the length of ebda and map entire ebda region (bnc#570284).- patches.fixes/sched-cpuacct-percpu-counter-batch.patch: Hold this patch as this triggers build failure in non-SMP configs and until a cleaner fix has been proposed and accepted.- patches.fixes/dm-stripe-zero-stripes: dm-stripe: return -EINVAL if stripe count is zero (bnc#576312).- patches.suse/files-slab-rcu.patch: Delete (bnc#566332). Could be fixed but it seems to be causing other slowdowns in file lookup fastpaths unfortunately. Back to the drawing board!- rpm/kernel-binary.spec.in: Obsolete iwlagn-2-6-27-kmp (bnc#559533).- supported.conf: mark snd-wss-lib unsupported- patches.drivers/alsa-sp1-hda-61-add-idt92hd88x-support2: ALSA: hda - Adding support for another IDT 92HD83XXX codec (bnc#569354).- patches.fixes/sched-cpuacct-percpu-counter-batch.patch: sched: cpuacct: Use bigger percpu counter batch values for stats counters (bnc#575074).- patches.drivers/cxgb3-add-memory-barriers.patch: cxgb3: add memory barriers (bnc#576277).- patches.drivers/qlge-0001-move-reset-from-eeh-io_resume-to-slot_reset.patch: qlge: Move reset from eeh io_resume to slot_reset. (bnc#575956). - patches.drivers/qlge-0002-add-watchdog-timer.patch: qlge: Add watchdog timer. (bnc#575956). - patches.drivers/qlge-0003-add-check-for-eeh-failure-when-closing-device.patch: qlge: Add check for eeh failure when closing device. (bnc#575956).- Update config files. Remove FTRACE from all non-trace kernels. fourier.suse.de/mlarch/SuSE/kernel/2010/kernel.2010.01/msg00233.html Some trace relics remain since OPROFILE selects CONFIG_TRACING even though it appears only RING_BUFFER is needed (mainline commit d69d59f4)- supported.conf: marked em_cmp supported (bnc#568130)- rpm/kernel-binary.spec.in: automatically install a matching - devel package if kernel-source is installed.- Fix Xen config files.- patches.drivers/be2iscsi-beta4-update: Update Emulex UCNA Open iSCSI driver for SLES11 SP1 (bnc#568147).- patches.arch/s390-07-01-zcrypt-errorhandling-of-872.patch: zcrypt: Do not remove coprocessor for error 8/72 (bnc#575181,LTC#59763). - patches.arch/s390-07-02-dasd-dbf-null-pointer.patch: dasd: Fix null pointer in s390dbf and discipline checking (bnc#575181). - patches.arch/s390-07-03-cio-fix-vary-handling.patch: cio: channel path vary operation has no effect (bnc#575181). - patches.arch/s390-07-04-dasd_online_offline_race.patch: dasd: fix online/offline race (bnc#575181).- Update Xen patches to c/s 989. - Update Xen config files (compatibility down to Xen 3.2.0). - patches.xen/xen-netback-generalize: Netback: Generalize static/global variables into 'struct xen_netbk'. - patches.xen/xen-netback-kernel-threads: Use Kernel thread to replace the tasklet. - patches.xen/xen-netback-multiple-tasklets: Netback: Multiple tasklets support. - patches.xen/xen3-add-support-for-intel-cougar-point-chipset.patch: Intel Cougar Point PCH Support (FATE#308854 bnc#565845). - patches.xen/xen3-x86_irq_setup_extra_ioapic_for_sci.patch: x86: fix sci on ioapic 1 (bnc#572661).- patches.drivers/ehca-no-disable-irq-in-tasklet.patch: ib/ehca: Do not turn off irqs in tasklet context (bnc#575073,LTC#59985).- patches.drivers/ehca-ib-qp-max-supported.patch: ib/ehca: allow access by query_qp() (bnc#575072,LTC#59986).- patches.fixes/novfs-err_ptr-fix.diff: Oops in novfs:unlink_local (bnc#569071).- patches.suse/suse-ppc64-branding: the message about crashed kernel doesn't make sense any more with CONFIG_CRASH_DUMP enabled by default (bnc#575884).- patches.fixes/x86_irq_setup_extra_ioapic_for_sci.patch: x86: fix sci on ioapic 1 (bnc#572661).- patches.suse/file-capabilities-disable-by-default.diff: Also support the file_caps=<0|1> command line option for compatibility.- patches.arch/uv_determine_revision_id_of_node_controller_chip.patch: UV: determine revision id of the node controller chip (bnc#575396).- patches.arch/uv_use_replicated_cachelines_to_read_rtc.patch: UV: Use replicated RTC cachelines with hub 2.0 (bnc#575409).- Update to 2.6.32.7 - security fixes - bug fixes - obsoletes: - patches.arch/s390-04-07-cio-fix-double-free.patch - patches.arch/s390-04-12-cio-avoid-panic.patch - patches.arch/s390-05-01-netiucv-tx-bytes.patch - patches.arch/x86_enable_tsc_sync_check_again.patch - patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler - patches.drivers/alsa-sp1-hda-46-realtek-slave-sws-fix - patches.drivers/alsa-sp1-hda-51-fix-maxdata-obook4-quirk - patches.drivers/qlge-0002-Remove-explicit-setting-of-PCI-Dev-CTL-reg.patch - patches.drivers/qlge-0004-Add-handler-for-DCBX-firmware-event.patch - patches.drivers/qlge-0008-Don-t-fail-open-when-port-is-not-initialized.patch - patches.drivers/qlge-0024-Bonding-fix-for-mode-6.patch - patches.drivers/watchdog-iTCO_wdt-Add-support-for-Intel-Ibex-Peak.patch - patches.fixes/PCI-Always-set-prefetchable-base-limit-upper32-registers.patch - patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch - patches.fixes/fc-transport-remove-BUG_ON - patches.fixes/hid-fixup-ncr-quirk.patch - patches.fixes/ipc-ns-fix-memory-leak-idr.patch - patches.fixes/iscsi-class-modify-handling-of-replacement-time - patches.fixes/libfc-remote-port-gets-st - patches.fixes/lpfc-ia64-hang - patches.fixes/md-start_ro-fix - patches.fixes/nfs-honour-server-preferred-io-size - patches.fixes/nfsd-acl.patch - patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch - patches.fixes/pci_aer_mce_inject_check_osc_for_aer.patch - patches.fixes/sched-recalculate-tunables-on-hot-add-remove - patches.fixes/scsi-devinfo-update-hitachi-entries - patches.fixes/scsi_dh-always-attach-sysfs - patches.fixes/timers-init-Limit-the-number-of-per-cpu-calibration-bootup-messages.patch - patches.suse/fcoe-fix-checking-san-mac-address.patch - patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch - patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch - patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch - patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch - patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch - patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch - patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch - patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch - patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch - patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch - patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch - patches.suse/libfc-lport-fix-minor-documentation-errors.patch- patches.fixes/acpi_NULL_check_scan_bus.patch: acpi: Add NULL pointer check in acpi_bus_start (bnc#573401).- patches.fixes/iwlwifi_set_default_aggregation_frame_count_limit_to_31.patch: iwlwifi: set default aggregation frame count limit to 31 (Requested by Intel).- patches.fixes/kvm-adjust-kvmclock-offset.patch: KVM: allow userspace to adjust kvmclock offset (bnc#570320).- patches.drivers/alsa-sp1-hda-60-add-idt92hd88x-support: ALSA: hda - Add support for IDT 92HD88 family codecs (bnc#569354).- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: update Patch-mainline tag.- Update config files: enable MMU_NOTIFIER for ia64 (bnc#573803).- patches.drivers/bnx2-v2.6.32-to-b746656.patch: bnx2: v2.6.32 to b746656 (bnc#564635).- Update config files. CONFIG_EFI_VARS=y for x86-64 and ia64 (bnc#574771)- patches.drivers/alsa-sp1-hda-59-idt92hd83xxx-hp-mute-led: ALSA: hda - Add mute LED check for HP laptops with IDT 92HD83xxx codec (bnc#569354).- rpm/apply-patches: Add support for an additional series file in patches.addon/series, this will be applied after the main series.- rpm/apply-patches: put the patch loops from kernel-binary.spec.in and kernel-source.spec.in to one place.- patches.arch/ACPI-Remove-repeated-registered-as-cooling_device-messages.patch: ACPI: Remove repeated registered as cooling_device messages (bnc#564618, FATE#306952).- patches.arch/x86-ucode-amd-Load-ucode-patches-once-and-not-separately-of-each-CPU.patch: This patch has been removed from the mainline kernel due to regressions introduced by it. Delete.- patches.fixes/ocfs2-Handle-O_DIRECT-when-writing-to-a-refcounted-c.patch: ocfs2: Handle O_DIRECT when writing to a refcounted cluster..- patches.suse/kdb-common: Fix hid crash (bnc#570591)- Update EC2 config files.- patches.suse/dm-mpath-skip-disabled-devices-when-iterating: kernel Oops in multipathing after chchp -v 0 (bnc#570526).- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: pci: fix nested spinlock hang in aer_inject (bnc#573578).- needs_update:Cleaned up items listed under jjolly.- patches.drivers/alsa-sp1-usb-01-avoid-oops-at-disconnect: ALSA: usb-audio - Avoid Oops after disconnect (bnc#565027).- supported.conf: Fix misspelt dm-region-hash and mark it supported correctly (bnc#565962)- Update to 2.6.32.6 - security fixes - bugfixes - obsoletes: - patches.drivers/8250_pnp-wacom-add - patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch - patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch - patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - handle memoryless nodes V2a (bnc#436025, bnc#570492).- Update config files. - patches.arch/x86_mce_intel_decode_physical_address.patch: x86, mce: Xeon75xx specific interface to get corrected memory error information (bnc#573380, fate#307738). - patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: x86, mce: Xeon75xx specific interface to get corrected memory error information (bnc#573380, fate#307738). - patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: x86, mce: Rename cpu_specific_poll to mce_cpu_specific_poll (bnc#573380, fate#307738). - patches.xen/xen3-auto-arch-x86.diff: Refresh.- patches.drivers/alsa-sp1-hda-57-cx5051-toshiba-quirk: ALSA: hda - Add support for Toshiba Satellite M300 (bnc#492233,bnc#565904). - patches.drivers/alsa-sp1-hda-58-cx5051-lenovo-mute-fix: ALSA: hda - Change headphone pin control with master volume on cx5051 (bnc#573050).- patches.arch/x86_enable_tsc_sync_check_again.patch: x86: Reenable TSC sync check at boot, even with NONSTOP_TSC (bnc#573379).- patches.arch/x86_node_hotplug_parse_srat_fix_2nd_ver.patch: x86: Set hotpluggable nodes in nodes_possible_map (bnc#567216). - patches.arch/x86_node_hotplug_parse_srat_fix.patch: Delete.- supported.conf: Add mce-inject and hwpoison-inject so that Intel can easier test this. As these are debug drivers, they might get reverted from support.conf again if kernel-extra package gets fixed for SLES, only seem to exist for SLED because "NCC is not yet working for SP1". (bnc#572552).- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: updates from f4188d to ba5b0bf (bnc#573237).- patches.arch/x86-irq-check-move_in_progress-before-freeing-the-vector-mapping.patch: x86, irq: Check move_in_progress before freeing the vector mapping (bnc#558247).- patches.arch/x86-apic-use-logical-flat-for-systems-with-8-or-fewer-logical-cpus.patch: x86, apic: use logical flat for systems with <= 8 logical cpus (bnc#567510). - patches.arch/x86-revert-apic-Use-logical-flat-on-intel-with-8-or-fewer-logical-cpus.patch: x86: Revert "apic: Use logical flat on intel with <= 8 logical cpus" (bnc#567510).- Update to 2.6.32.5: - security fixes - bug fixes - obsoletes: - patches.drivers/alsa-sp1-hda-54-alc861-capture-fix - patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard - patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io - patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch- Update config files: drop UTRACE from default s390 configs as per communication from Ihno.- patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch: x86, msr/cpuid: Register enough minors for the MSR and CPUID drivers (bnc#572720).- patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch: SCSI: enclosure: fix oops while iterating enclosure_status array (bnc#572818). - patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: Delete.- Update config files. - patches.arch/ppc-extended_h_cede-update-to-mainline: Incremental patch set to sync H_CEDE with actual mainline (bnc#550447, FATE#307059).- Update config files. Add DMAR to -trace flavor -> get in sync with -default- patches.fixes/qla2xxx-restore-pci-state-after-eeh-recovery: Re-save PCI state after EEH recovery (bnc#570233).- patches.arch/s390-06-01-zfcp-introduce-bsg-timeout-callback.patch: zfcp: introduce BSG timeout callback (BNC#572659). - patches.arch/s390-06-02-zfcp-set-hw-timeout-requested-by-bsg.patch: zfcp: set HW timeout requested by BSG request (BNC#572659).- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f to c651a8 (bnc#572832).- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to newest version of patch.- Update config files. CONFIG_KGDB=n- Update config files. CONFIG_CRC_T10DIF=m for vanilla configs- Update config files. CONFIG_CRC_T10DIF=m- Update config files. CONFIG_EFI_VARS=m- Update config files. CONFIG_RTC_LIB=m CONFIG_RTC_DRV_CMOS=m- Update config files. CONFIG_VIDEO_OUTPUT_CONTROL=m- Update config files. CONFIG_INPUT_FF_MEMLESS=m- Update config files. CONFIG_LEDS_CLASS=m- Update config files. CONFIG_EXT2_FS=m CONFIG_EXT3_FS=m CONFIG_FS_MBCACHE=m CONFIG_JBD=m- Update config files. CONFIG_HID=m- Update config files. CONFIG_I2C=m CONFIG_HWMON=m- Update config files. CONFIG_MII=m- Update config files. CONFIG_LIB80211=m- Update config files. CONFIG_X86_MSR=m CONFIG_X86_CPUID=m- supported.conf: added power_meter driver (FATE #306959).- config.conf: add -trace flavor for s390* at Ihno's request - Add more tracers to existing ppc64 trace config at IBM request Both related to FATE# 307051. - patches.trace/ftrace-framepointer.diff: Delete.- patches.fixes/scsi-fc-class-allow-LLD-bsg-timeout: scsi_transport_fc: Allow LLD to reset FC BSG timeout (bnc#572658).- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 fixes.- patches.drivers/lpfc-8.3.5-update: lpfc update to 8.3.5 (bnc#572427). - patches.drivers/lpfc-8.3.5.3-update: lpfc driver update to 8.3.5.3 (bnc#572427).- patches.drivers/e1000-enhance-frame-fragment-detection.patch: Update headers for series2git. - patches.drivers/e1000e-enhance-frame-fragment-detection.patch: Update headers for series2git.- patches.suse/bootsplash-scaler: Refresh. More updates and clean-up by Egbert (bnc#570082)- patches.drivers/add-support-for-intel-cougar-point-chipset.patch: Intel Cougar Point PCH Support (FATE#308854 bnc#565845).- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: Refresh. (change firmwares in makefile)- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: Refresh. - patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: Refresh.- Update Xen patches to 2.6.32.4 and c/s 984. - Update Xen config files.- patches.drivers/bnx2i-backport-from-v2.6.32-to-45ca38e.patch: bnx2i: Backport from v2.6.32 to 45ca38e (bnc#564640). - patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: bnx2x: backports v2.6.32 to af901ca (bnc#564638). - patches.drivers/cnic-backport-from-v2.6.32-4e9c4f.patch: cnic: backport from v2.6.32-4e9c4f (bnc#564640).- Update config files. 2.6.32.4 changed one of them.- patches.suse/bootsplash-scaler: Refresh. Fixed the text area calculation, and added the upscaling (bnc#570082).- Patch refresh for fuzz due to upstream -stable additions.- Update to 2.6.32.4 - security fixes - bug fixes - obsoletes: - patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y - patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix - patches.fixes/audit_untag_chunk.patch - patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch - patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1- patches.drivers/alsa-sp1-hda-55-alc259-hp-pin-fix: ALSA: hda - Fix parsing pin node 0x21 on ALC259 (bnc#571879). - patches.drivers/alsa-sp1-hda-56-realtek-eapd-fix: ALSA: hda - Turn on EAPD only if available for Realtek codecs (bnc#571879).- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with resolution changes (bnc#570082)- supported.conf: added aesni-intel (bnc#566618 FATE#304209).- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid regression from SLE11 (bnc#571501).- patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch: reiserfs: truncate blocks not used by a write (bnc#483375).- patches.suse/smtnice-disable: Delete (obsolete).- Disabled custom ACPI table loading from initramfs again.- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: Refresh.- patches.arch/x86_node_hotplug_parse_srat_fix.patch: x86/mm/srat_64.c: nodes_parsed should include all nodes detected by ACPI (bnc#567140).- patches.fixes/aic79xx-null-scb-in-nonpkt-busfree: aic79xx: check for non-NULL scb in ahd_handle_nonpkt_busfree (bnc#542568).- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: Refresh to fix 60 second delay. (bnc#568271)- patches.fixes/audit_untag_chunk.patch: fix braindamage in audit_tree.c untag_chunk() (bnc#556282).- patches.xen/xen-x86-rename-display_cacheinfo-to-cpu_detect_cache_sizes.patch: x86: Rename display_cacheinfo() to cpu_detect_cache_sizes().- Update config files. - patches.drivers/vmw_pvscsi-scsi-driver-for-vmware-s-virtual-hba.patch: vmw_pvscsi: SCSI driver for VMware's virtual HBA.- patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard: HID: add device IDs for new model of Apple Wireless Keyboard (bnc#568231).- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx driver update to 8.03.01.01.11.1-k8 (bnc#560415). - patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx driver update to 8.03.01.02.11.1-k8 (bnc#570233). - patches.drivers/lpfc-add-raywire-id: Delete. - patches.drivers/qla2xxx-8.03.01-k7-update: Delete.- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx driver update to 8.03.01.01.11.1-k8 (bnc#560415). - patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx driver update to 8.03.01.02.11.1-k8 (bnc#570233). - patches.drivers/lpfc-add-raywire-id: Delete. - patches.drivers/qla2xxx-8.03.01-k7-update: Delete.- patches.suse/kdb_dont_touch_i8042_early.patch: Avoid early hang when i8042 controller is missing (bnc#528811).- patches.suse/reiser4-sync_inodes: Delete (obsolete).- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete).- patches.fixes/Ocfs2-Let-ocfs2-support-fiemap-for-symlink-and-fast-.patch: Ocfs2: Let ocfs2 support fiemap for symlink and fast symlink.. - patches.fixes/Ocfs2-Should-ocfs2-support-fiemap-for-S_IFDIR-inode.patch: Ocfs2: Should ocfs2 support fiemap for S_IFDIR inode?. - patches.fixes/ocfs-stop-using-do_sync_mapping_range.patch: ocfs: stop using do_sync_mapping_range. - patches.fixes/ocfs2-Add-reflinked-file-s-inode-to-inode-hash-earil.patch: ocfs2: Add reflinked file's inode to inode hash eariler.. - patches.fixes/ocfs2-Find-proper-end-cpos-for-a-leaf-refcount-block.patch: ocfs2: Find proper end cpos for a leaf refcount block.. - patches.fixes/ocfs2-Set-i_nlink-properly-during-reflink.patch: ocfs2: Set i_nlink properly during reflink.. - patches.fixes/ocfs2-always-include-acl-support.patch: ocfs2: Always include ACL support. - patches.fixes/ocfs2-cluster-Make-fence-method-configurable-v2.patch: ocfs2/cluster: Make fence method configurable - v2. - patches.fixes/ocfs2-devel-remove-redundant-OCFS2_MOUNT_POSIX_ACL-c.patch: ocfs2-devel: remove redundant OCFS2_MOUNT_POSIX_ACL check in ocfs2_get_acl_nolock(). - patches.fixes/ocfs2-explicit-declare-uninitialized-var-in-user_clu.patch: ocfs2: explicit declare uninitialized var in user_cluster_connect(). - patches.fixes/ocfs2-make-acl-use-the-default.patch: ocfs2: Make acl use the default. - patches.fixes/ocfs2-refcounttree.c-cleanup.patch: ocfs2: refcounttree.c cleanup.. - patches.fixes/ocfs2-replace-u8-by-__u8-in-ocfs2_fs.h.patch: ocfs2: replace u8 by __u8 in ocfs2_fs.h. - patches.fixes/ocfs2-return-EAGAIN-instead-of-EAGAIN-in-dlm.patch: ocfs2: return -EAGAIN instead of EAGAIN in dlm. - patches.fixes/ocfs2-set-MS_POSIXACL-on-remount.patch: ocfs2: Set MS_POSIXACL on remount. - patches.fixes/ocfs2-trivial-Use-le16_to_cpu-for-a-disk-value-in-xa.patch: ocfs2/trivial: Use le16_to_cpu for a disk value in xattr.c. - patches.fixes/ocfs2-trivial-Use-proper-mask-for-2-places-in-hearbe.patch: ocfs2/trivial: Use proper mask for 2 places in hearbeat.c. - patches.suse/fiemap-Add-new-extent-flag-FIEMAP_EXTENT_SHARED.patch: fiemap: Add new extent flag FIEMAP_EXTENT_SHARED. - patches.suse/ocfs2-Use-FIEMAP_EXTENT_SHARED.patch: ocfs2: Use FIEMAP_EXTENT_SHARED. - patches.suse/ocfs2-allocation-resrvations.patch: Refresh.- patches.arch/x86-Limit-number-of-per-cpu-TSC-sync-messages.patch: x86: Limit number of per cpu TSC sync messages (bnc#564618, FATE#306952). - patches.arch/x86-Limit-the-number-of-processor-bootup-messages.patch: x86: Limit the number of processor bootup messages (bnc#564618, FATE#306952). - patches.arch/x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch: x86: Remove CPU cache size output for non-Intel too (bnc#564618, FATE#306952). - patches.arch/x86-Remove-enabling-x2apic-message-for-every-CPU.patch: x86: Remove enabling x2apic message for every CPU (bnc#564618, FATE#306952). - patches.arch/x86-Remove-the-CPU-cache-size-printks.patch: x86: Remove the CPU cache size printk's (bnc#564618, FATE#306952). - patches.arch/x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch: x86, cpu: mv display_cacheinfo -> cpu_detect_cache_sizes (bnc#564618, FATE#306952). - patches.arch/x86-ucode-amd-Load-ucode-patches-once-and-not-separately-of-each-CPU.patch: x86: ucode-amd: Load ucode-patches once and not separately of each CPU (bnc#564618, FATE#306952). - patches.fixes/sched-Limit-the-number-of-scheduler-debug-messages.patch: sched: Limit the number of scheduler debug messages (bnc#564618, FATE#306952). - patches.fixes/timers-init-Limit-the-number-of-per-cpu-calibration-bootup-messages.patch: timers, init: Limit the number of per cpu calibration bootup messages (bnc#564618, FATE#306952).- patches.suse/add-initramfs-file_read_write: Build fix.- patches.suse/supported-flag-enterprise: Refresh.- patches.suse/supported-flag-sysfs: Properly report proprietary modules- patches.suse/add-initramfs-file_read_write: initramfs: add initramfs_{read,write} (bnc#568120). - Re-enabled custom ACPI table loading from initramfs.- Update config files. Enable CONFIG_CPU_FREQ_DEBUG as requested by HP. This one adds conditional printks which can be enabled via: cpufreq.debug=7- patches.drivers/alsa-sp1-hda-54-alc861-capture-fix: ALSA: hda - Fix missing capture mixer for ALC861/660 codecs (bnc#567340).- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc symbol provides.- patches.arch/UV-Expose-irq_desc-node-in-proc.patch: Expose the irq_desc node as /proc/irq/*/node. (bnc#566745, fate#306952).- patches.drivers/dmfe-tulip-Let-dmfe-handle-DM910x-except-for-SPARC-o.patch: dmfe/tulip: Let dmfe handle DM910x except for SPARC on-board chips (bnc#537016).- patches.fixes/crypto-testmgr-fix-complain-about-lacking-test.patch: crypto: testmgr - Fix complain about lack test for internal used algorithm (bnc#568278 FATE#306883).- patches.suse/bootsplash-keep-multiple-data: Keep multiple splash screens for KMS (bnc#570082). - patches.suse/bootsplash-scaler: Add bootsplash image scaler (bnc#570082).- rpm/kernel-binary.spec.in, rpm/find-provides: extract exported symbols from /boot/vmlinux before the image is stripped (affects ppc).- patches.drivers/e1000-enhance-frame-fragment-detection.patch: Avoid atomic op by introducing discarding flag instead - patches.drivers/e1000e-enhance-frame-fragment-detection.patch: Avoid atomic op by introducing discarding flag instead- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: kernel/signal.c: fix kernel information leak with print-fatal-signals=1 (bnc#569902).- needs_update: Remove some patches that we've got through the upstream.- patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix: ALSA: hda - Fix ALC861-VD capture source mixer (bnc#568305).- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: nohz: Prevent clocksource wrapping during idle (bnc#569238).- patches.suse/readahead-request-tunables.patch: Update readahead and max_sectors tunables (bnc#548529).- patches.drivers/watchdog-iTCO_wdt-Add-support-for-Intel-Ibex-Peak.patch: iTCO_wdt: Add support for Intel Ibex Peak (bnc#557081 FATE#308591).- needs_update: remove LTT/trace patches (assigned to jbl), all had already been taken care of by my fwd port to 2.6.32- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: Fixup compilation error.- patches.fixes/PCI-Always-set-prefetchable-base-limit-upper32-registers.patch: PCI: Always set prefetchable base/limit upper32 registers (bnc#569003).- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: Update qla4xxx driver for SLES11 SP1 (bnc#556572,FATE#307128).- needs_update: Removed some patches.- patches.drivers/bfa-2.1.2.1-update: Update bfa driver to version 2.1.2.1 (bnc#561881).- patches.fixes/fcoe-libfc-adds-enable-di: adds enable/disable for fcoe interface (bnc#562046). - patches.fixes/fcoe-use-lld-s-wwpn-and-w: Use LLD's WWPN and WWNN for lport if LLD supports ndo_fcoe_get_wwn (bnc#562046). - patches.fixes/libfc-reduce-hold-time-on: reduce hold time on SCSI host lock (bnc#562046). - patches.fixes/libfc-remote-port-gets-st: remote port gets stuck in restart state without really restarting (bnc#562046).- patches.drivers/mpt2sas-03.100.03.00-update: LSI mptsas2 driver update to 03.100.03.00 (bnc#566013).- patches.xen/xen-x86_64-nx-user-mappings: Delete (bnc#568741). - patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: Delete.- patches.fixes/qla4xxx-lun-reset-fix: Delete.- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add two new IBM devices (bnc# 556159).- patches.suse/perfmon2.patch: Refresh. - patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: Refresh. - patches.suse/rlim-0002-resource-move-kernel-function-inside-__KERNEL__.patch: resource: move kernel function inside __KERNEL__ (FATE#305733). - patches.suse/rlim-0003-resource-add-helpers-for-fetching-rlimits.patch: resource: add helpers for fetching rlimits (FATE#305733). - patches.suse/rlim-0004-IA64-use-helpers-for-rlimits.patch: [IA64] use helpers for rlimits (FATE#305733). - patches.suse/rlim-0005-core-posix-cpu-timers-cleanup-rlimits-usage.patch: core: posix-cpu-timers, cleanup rlimits usage (FATE#305733). - patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: PPC: use helpers for rlimits (FATE#305733). - patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: S390: use helpers for rlimits (FATE#305733). - patches.suse/rlim-0008-SPARC-use-helpers-for-rlimits.patch: SPARC: use helpers for rlimits (FATE#305733). - patches.suse/rlim-0009-X86-use-helpers-for-rlimits.patch: X86: use helpers for rlimits (FATE#305733). - patches.suse/rlim-0010-FS-use-helpers-for-rlimits.patch: FS: use helpers for rlimits (FATE#305733). - patches.suse/rlim-0011-MM-use-helpers-for-rlimits.patch: MM: use helpers for rlimits (FATE#305733). - patches.suse/rlim-0012-core-use-helpers-for-rlimits.patch: core: use helpers for rlimits (FATE#305733). - patches.suse/rlim-0013-infiniband-use-helpers-for-rlimits.patch: infiniband: use helpers for rlimits (FATE#305733). - patches.suse/rlim-0014-ipc-use-helpers-for-rlimits.patch: ipc: use helpers for rlimits (FATE#305733). - patches.suse/rlim-0015-SECURITY-add-task_struct-to-setrlimit.patch: SECURITY: add task_struct to setrlimit (FATE#305733). - patches.suse/rlim-0016-core-add-task_struct-to-update_rlimit_cpu.patch: core: add task_struct to update_rlimit_cpu (FATE#305733). - patches.suse/rlim-0017-sys_setrlimit-make-sure-rlim_max-never-grows.patch: sys_setrlimit: make sure ->rlim_max never grows (FATE#305733). - patches.suse/rlim-0018-core-split-sys_setrlimit.patch: core: split sys_setrlimit (FATE#305733). - patches.suse/rlim-0019-core-allow-setrlimit-to-non-current-tasks.patch: core: allow setrlimit to non-current tasks (FATE#305733). - patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch: core: optimize setrlimit for current task (FATE#305733). - patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch: FS: proc, switch limits reading to fops (FATE#305733). - patches.suse/rlim-0022-FS-proc-make-limits-writable.patch: FS: proc, make limits writable (FATE#305733). - patches.suse/rlim-0023-core-do-security-check-under-task_lock.patch: core: do security check under task_lock (FATE#305733). - patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: Delete. - patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: Delete. - patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: Delete. - patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Delete. - patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: Delete. - patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: Delete. - patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: Delete. - patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: Delete. - patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: Delete. - patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: Delete. - patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: Delete. - patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: Delete. - patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: Delete. - patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: Delete. - patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: Delete. - patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: Delete. - patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: Delete. - patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: Delete. - patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: Delete. - patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: Delete. - patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: Delete. - patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: Delete. - patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: Delete. - patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: Delete. Sync with upstream. Drop limits syscalls altogether.- patches.apparmor/apparmor.diff: Delete, as it is unused after splitup into smaller patches.- patches.suse/SoN-23-mm-swapfile.patch: Fix up the enum declaration to avoid conflict due to a upstream change.- patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch: quota: fix reserved space management for ordinary fs.- patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch: Staging: hv: fix smp problems in the hyperv core code.- Disable set,getprlimit compat syscalls on xen.- Disabled custom ACPI table loading from initramfs until the scheduling while atomic issues are worked out.- Disabled set,getprlimit syscalls until the syscall numbers have been officially reserved.- patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y: module: handle ppc64 relocating kcrctabs when CONFIG_RELOCATABLE=y (bnc#566243).- Update Xen patches to 2.6.32.3 and c/s 974. - Update EC2 config files. - patches.xen/xen3-x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: x86: Remove local_irq_enable()/local_irq_disable() in fixup_irqs() (bnc#558247). - patches.xen/xen3-x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: x86: Unify fixup_irqs() for 32-bit and 64-bit kernels (bnc#558247). - patches.xen/xen3-x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() for intr-remapping (bnc#558247). - patches.xen/xen-fix-compilation-after-rename_generic_int.patch: Delete. - patches.xen/xen-scsifront-block-timeout-update: Delete. - patches.xen/xen3-x86-fix-nodac: Delete.- patches.drivers/e1000-enhance-frame-fragment-detection.patch: e1000: enhance frame fragment detection (bnc#567376, CVE-2009-4536). - patches.drivers/e1000e-enhance-frame-fragment-detection.patch: e1000e: enhance frame fragment detection (bnc#567376, CVE-2009-4538).- Update to 2.6.32.3 - security fixes - bugfixes - obsoletes: - patches.arch/s390-04-03-dasd-diag-ro.patch - patches.drivers/alsa-sp1-hda-50-alc88x-missing-capsrc_nids - patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host - patches.fixes/scsi-ipr-fix-eeh-recovery- patches.arch/x86-Force-irq-complete-move-during-cpu-offline.patch: x86: Force irq complete move during cpu offline (bnc#558247). - patches.arch/x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: x86: Remove local_irq_enable()/local_irq_disable() in fixup_irqs() (bnc#558247). - patches.arch/x86-Remove-move_cleanup_count-from-irq_cfg.patch: x86: Remove move_cleanup_count from irq_cfg (bnc#558247). - patches.arch/x86-Remove-unnecessary-mdelay-from-cpu_disable_common.patch: x86: Remove unnecessary mdelay() from cpu_disable_common() . - patches.arch/x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: x86: Unify fixup_irqs() for 32-bit and 64-bit kernels (bnc#558247). - patches.arch/x86-Use-EOI-register-in-io-apic-on-intel-platforms.patch: x86: Use EOI register in io-apic on intel platforms (bnc#558247). - patches.arch/x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() for intr-remapping (bnc#558247). - patches.arch/x86-io-apic-Move-the-effort-of-clearing-remoteIRR-explicitly-before-migrating-the-irq.patch: x86, io-apic: Move the effort of clearing remoteIRR explicitly before migrating the irq (bnc#558247). - patches.arch/x86-ioapic-Document-another-case-when-level-irq-is-seen-as-an-edge.patch: x86, ioapic: Document another case when level irq is seen as an edge (bnc#558247). - patches.arch/x86-ioapic-Fix-the-EOI-register-detection-mechanism.patch: x86, ioapic: Fix the EOI register detection mechanism (bnc#558247).- patches.fixes/pci_aer_mce_inject_check_osc_for_aer.patch: PCI: AER: fix aer inject result in kernel oops (bnc#566619).- patches.fixes/PCIe-AER-reject-aer-inject-if-hardware-mask-error-reporting.patch: PCIe AER: reject aer inject if hardware mask error reporting (bnc#566621).- patches.xen/xen3-patch-2.6.29: Refresh due to conflicts from i915 changes. Ick, the xen code sucks rocks, it shouldn't be touching stuff here at all.- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: Refresh. - patches.drivers/drm-i915-add-i915_lp_ring_sync-helper.patch: drm/i915: add i915_lp_ring_sync helper (bnc#568447). - patches.drivers/drm-i915-fix-get_core_clock_speed-for-g33-class-desktop-chips.patch: drm/i915: fix get_core_clock_speed for G33 class desktop chips (bnc#568447). - patches.drivers/drm-i915-fully-switch-off-overlay-when-not-in-use.patch: drm/i915: fully switch off overlay when not in use (bnc#568447). - patches.drivers/drm-i915-implement-drmmode-overlay-support-v4.patch: drm/i915: implement drmmode overlay support v4 (bnc#568447). - patches.drivers/drm-i915-implement-fastpath-for-overlay-flip-waiting.patch: drm/i915: implement fastpath for overlay flip waiting (bnc#568447).- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: Refresh.- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: drm/i915: Add ACPI OpRegion support for Ironlake (bnc#568436).- patches.fixes/oprofile_bios_ctr.patch: Update to newer version- rpm/kernel-binary.spec.in: move the x86 /boot/vmlinux-*.gz back to -base (bnc#563905).- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819).- patches.fixes/dmar-fix-oops-with-no-dmar-table: dmar: Fix oops with no DMAR table (bnc#548108).- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: hda - HDMI sticky stream tag support (FATE#306783).- patches.arch/xpc_first_contact_when_active.patch: X86: UV - xpc_make_first_contact hang due to not accepting ACTIVE state. (bnc#562288, fate#306952). - patches.arch/xpc_fix_xpc_get_fifo_entry_uv.patch: x86: UV - XPC NULL deref when mesq becomes empty. (bnc#562288, fate#306952). - patches.arch/xpc_introduce_xp_socket.patch: x86: UV - XPC needs to provide an abstraction for uv_gpa. (bnc#562288, fate #306952). - patches.arch/xpc_pass_nasid_to_gru_create_message_queue.patch: UV - pass nasid instead of nid to gru_create_message_queue (bnc#562288, fate#306952). - patches.arch/xpc_recv_msg_slots_wrap.patch: X86: UV - XPC receive message reuse triggers invalid BUG_ON(). (bnc#562288, fate#306952). - patches.arch/xpc_uv_bios_changes.patch: x86: UV - Update XPC to handle updated BIOS interface. (bnc#562288, fate#306952).- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates (bnc#561989, fate#306952).- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in copy_oldmem_page.- patches.arch/bug-561946_uv_irq_affinity.patch: x86: SGI UV: Fix irq affinity for hub based interrupts (bnc#561946, fate#306952). - patches.arch/bug-561946_uv_move_ioapic.patch: x86, apic: Move SGI UV functionality out of generic IO-APIC code (bnc#561946, fate#306952). - patches.arch/bug-561946_uv_use_rtc.patch: x86: UV RTC: Always enable RTC clocksource (bnc#561946, fate#306952).- patches.fixes/ia64-fix-sba-iommu-to-handle-allocation-failure-properly: fix SBA IOMMU to handle allocation failure properly (bnc#545367).- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243).- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery (bnc#566613).- Update config files. - patches.drivers/cpufreq_ondemand_limit_fix.patch: cpufreq: Fix ondemand to not request targets outside policy limits (fate#306746). - patches.drivers/cpufreq_processor_clocking_control_pcc_driver.patch: x86,cpufreq: Processor Clocking Control (PCC) driver (fate#306746). - supported.conf:- patches.arch/bug-561939_uv_bios_call_hwperf_updated.patch: x86, uv: Add serial number parameter to uv_bios_get_sn_info() (bnc#561939, fate#306952). - patches.arch/bug-561939_uv_bios_call_hwperf.patch: Delete.- patches.fixes/scsi_debug-scale-virtual_gb-with-sector_size-properly: scsi_debug: scale virtual_gb with sector_size properly (bnc#535939).- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from .32.2 import- Update to 2.6.32.2 - lots of security fixes - loads of bugfixes - other goodness - obsoletes: - patches.arch/bug-561939_bau_data_config.patch - patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch - patches.arch/s390-04-01-clear-high-regs.patch - patches.arch/s390-kvm-prefix.patch - patches.arch/s390-kvm-psw.patch - patches.arch/x86-fix-nodac - patches.arch/x86_mce_nfs-mig2 - patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero - patches.fixes/uart-txen-race.patch- Update config files: CONFIG_STRICT_DEVMEM=n. It was enabled mistakenly in commit 3df90f9e and affects using tools like crash with a live system.- Update config files. CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607)- patches.drivers/alsa-sp1-hda-{24..51}-*: 2.6.33-rc1 backport fixes for HDMI and new Realtek codecs (FATE#306783) - Refresh Patch-mainline tags in patches.drivers/alsa-*- patches.arch/s390-05-01-netiucv-tx-bytes.patch: netiucv: displayed TX bytes value much too high (BNC#565612). - patches.arch/s390-05-02-cmm-suspend.patch: cmm: free pages on hibernate. (BNC#565612). - patches.arch/s390-05-03-iucv-suspend.patch: iucv: add work_queue cleanup for suspend (BNC#565612). - patches.arch/s390-05-04-zfcp-work-queue.patch: zfcp: Assign scheduled work to driver queue (BNC#565612). - patches.arch/s390-05-05-zfcp-fail-commands.patch: zfcp: Don't fail SCSI commands when transitioning to blocked fc_rport (BNC#565612,LTC#58541). - patches.arch/s390-05-06-zfcp-adisc.patch: zfcp: Improve ELS ADISC handling (BNC#565612). - patches.arch/s390-05-07-zfcp-fsf-errors.patch: zfcp: Update FSF error reporting (BNC#565612). - patches.arch/s390-05-08-zfcp-block.diff: zfcp: Block SCSI EH thread for rport state BLOCKED (BNC#565612). - patches.arch/s390-05-09-ctcm-suspend-wait.diff: ctcm: suspend has to wait for outstanding I/O (BNC#565612). - patches.arch/s390-05-10-rework-tso.diff: qeth: rework TSO functions (BNC#565612). - patches.arch/s390-05-11-atomic-volatile.patch: kernel: improve code generated by atomic operations. (BNC#565612). - patches.arch/s390-05-12-tape-remove-fn.patch: tape: incomplete device removal (BNC#565612). - patches.arch/s390-05-13-qeth-blkt-defaults.patch: qeth: set default BLKT settings dependend on OSA hw level (BNC#565612,LTC#58654). - patches.arch/s390-05-14-dasd-dasd-enable-prefix.patch: dasd: enable prefix independent of pav support (BNC#565612). - patches.arch/s390-05-15-dasd-s390dbf-strings.patch: dasd: remove strings from s390dbf (BNC#565612). - patches.arch/s390-05-16-dasd-wait-lcu-setup.patch: dasd: let device initialization wait for LCU setup (BNC#565612).- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for s390/vanilla.- patches.fixes/md-start_ro-fix: md: fix small irregularity with start_ro module parameter (bnc#565219).- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: XEN: Fix compilation after renaming of generic_irqs.- patches.arch/bug-561946_rename_generic_int.patch: x86: UV RTC: Rename generic_interrupt to x86_platform_ipi (bnc#561946, fate#306952).- patches.suse/s390-Kerntypes.diff: S390: Generate Kerntypes file. - rpm/kernel-binary.spec.in: install /boot/Kerntypes-$version.- patches.fixes/powerpc-fix-cpu-name-in-show-cpuinfo: powerpc: fix cpu name in show-cpuinfo (bnc#565267).- patches.fixes/fc-transport-remove-BUG_ON: scsi_transport_fc: remove invalid BUG_ON (bnc#564479). - patches.fixes/lpfc-ia64-hang: lpfc: fix hang on SGI ia64 platform (bnc#564479). - patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host: qla2xxx: dpc thread can execute before scsi host has been added (bnc#564479). - patches.suse/fc-transport-allow-dev_loss_tmo-disable: Remove capping from dev_loss_tmo (bnc#492469).- Update config files. - fix up CONFIG_IPV6 option that was built into the kernel incorrectly (bnc#564357)- patches.fixes/acpi-fix-build-when-config_acpi_custom_override_initramfs-is-not-defined: acpi: Fix build when CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS is not defined.- Update Xen patches to c/s 960. - Update Xen EC2 config files. - patches.xen/xen3-bug-561933_uv_pat_is_gru_range.patch: x86: UV SGI: Don't track GRU space in PAT (bnc#561933, fate#306952). - patches.xen/xen3-x86-mark_rodata_rw.patch: Add mark_rodata_rw() to un-protect read-only kernel code pages (bnc#439348).- needs_update: - patches.fixes/aggressive-zone-reclaim.patch: be more aggressive with zone reclaims (bnc#476525).- needs_update: - patches.suse/x86-mark_rodata_rw.patch: Refresh.- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() to un-protect read-only kernel code pages (bnc#439348).- patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero: firewire: ohci: handle receive packets with a data length of zero (bnc#564712 CVE-2009-4138).- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for osc_wrapper.- supported.conf: Mark dm-log-userspace as supported (fate#307380).- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: Fix the build failure due to previous commit.- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: sched: Fix missing sched tunable recalculation on cpu add/remove (bnc#560317). - patches.fixes/sched-make-tunable-scaling-configurable: sched: Make tunable scaling style configurable (bnc#560317). - patches.fixes/sched-sysctl-for-normalized-tunables: sched: Update normalized values on user updates via proc (bnc#560317).- Update config files. - make SCSI and ATA drivers modules again. (bnc#564357)- Update config files. - fix up USB options that were built into the kernel incorrectly (bnc#564357)- patches.arch/s390-04-01-clear-high-regs.patch: kernel: clear high-order bits after switching to 64-bit mode (BNC#563999,LTC#58088). - patches.arch/s390-04-02-zcrypt-hrtimer.patch: zcrypt: Do not simultaneously schedule hrtimer (BNC#563999,LTC#58222). - patches.arch/s390-04-03-dasd-diag-ro.patch: dasd: support DIAG access for read-only devices (BNC#563999,LTC#57147). - patches.arch/s390-04-04-mm-fault-fix.patch: kernel: performance counter fix and page fault optimization (BNC#563999). - patches.arch/s390-04-05-sclp-dump-indicator.patch: kernel: fix dump indicator (BNC#563999). - patches.arch/s390-04-06-dasd-move-diag-kmsg.patch: dasd: move diag kmsg to generic dasd kmsg (BNC#563999). - patches.arch/s390-04-07-cio-fix-double-free.patch: cio: double free under memory pressure (BNC#563999). - patches.arch/s390-04-08-cio-fix-dev-stall.patch: cio: device recovery stalls after multiple hardware events (BNC#563999). - patches.arch/s390-04-09-cio-recover-hw-changes.patch: cio: device recovery fails after concurrent hardware changes (BNC#563999). - patches.arch/s390-04-10-cio-fix-onoffline-failure.patch: cio: setting a device online or offline fails for unknown reasons (BNC#563999). - patches.arch/s390-04-11-cio-error-reporting.patch: cio: incorrect device state after device recognition and recovery (BNC#563999). - patches.arch/s390-04-12-cio-avoid-panic.patch: cio: kernel panic after unexpected interrupt (BNC#563999). - patches.arch/s390-04-13-cio-internal-io.patch: cio: initialization of I/O devices fails (BNC#563999). - patches.arch/s390-04-14-cio-allow-offline.patch: cio: not operational devices cannot be deactivated (BNC#563999). - patches.arch/s390-04-15-cio-split-pgid.patch: cio: erratic DASD I/O behavior (BNC#563999). - patches.arch/s390-04-16-cio-path-verification.patch: cio: DASD cannot be set online (BNC#563999). - patches.arch/s390-04-17-cio-steal-lock.patch: cio: DASD steal lock task hangs (BNC#563999). - patches.arch/s390-04-18-cio-fix-memleak-chk-dev.patch: cio: memory leaks when checking unusable devices (BNC#563999). - patches.arch/s390-04-19-cio-fix-deact-dev-panic.patch: cio: deactivated devices can cause use after free panic (BNC#563999).- patches.arch/bug-561933_uv_pat_is_gru_range.patch: x86: UV SGI: Don't track GRU space in PAT (bnc#561933, fate#306952). - patches.arch/bug-561939_bau_data_config.patch: x86: SGI UV BAU initialization (bnc#561939, fate#306952). - patches.arch/bug-561939_uv_bios_call_hwperf.patch: x86: UV hardware performance counter and topology access (bnc#561939, fate#306952). - patches.arch/bug-561939_uv_gpa_is_mmr_space.patch: x86: UV - Introduce uv_gpa_is_mmr. (bnc#561939, fate#306952). - patches.arch/bug-561939_uv_gpa_to_soc_phys_ram.patch: x86: UV - Introduce a means to translate from gpa -> socket_paddr. (bnc#561939, fate#306952). - patches.arch/bug-561939_uv_ipi_macro.patch: x86: UV: Introduce uv_hub_ipi_value (bnc#561939, fate#306952). - patches.arch/bug-561939_uv_mmap_low.patch: x86: SGI UV: Map low MMR ranges (bnc#561939, fate#306952). - patches.arch/bug-561939_uv_rtc_cleanup.patch: x86: UV RTC: Clean up error handling (bnc#561939, fate#306952). - patches.arch/bug-561939_uv_rtc_fixes.patch: x86: UV RTC: Fix early expiry handling (bnc#561939, fate#306952). - patches.arch/bug-561939_uv_rtc_setup_evt.patch: x86: UV RTC: Add clocksource only boot option (bnc#561939, fate#306952). - patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch: x86: Fix duplicated UV BAU interrupt vector (bnc#564471).- Refresh patches to be clean of fuzz- Update to 2.6.32.1 - security fixes - bugfixes - obsoletes: - patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext - patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects- patches.drivers/dcb-data-center-bridging-ops-s: dcb: data center bridging ops should be r/o (BNC#562046). - patches.drivers/drivers-net-request_irq-remove: drivers/net: request_irq - Remove unnecessary leading & from second arg (BNC#562046). - patches.drivers/ethtool-add-direct-attach-supp: ethtool: Add Direct Attach support to connector port reporting (BNC#562046). - patches.drivers/ixgbe-add-support-for-82599-al: ixgbe: Add support for 82599 alternative WWNN/WWPN prefix (BNC#562046). - patches.drivers/ixgbe-add-support-for-82599-ba: ixgbe: add support for 82599 based Express Module X520-P2 (BNC#562046). - patches.drivers/ixgbe-add-support-for-netdev_o: ixgbe: Add support for netdev_ops.ndo_fcoe_get_wwn to 82599 (BNC#562046). - patches.drivers/ixgbe-change-default-ring-size: ixgbe: change default ring size (BNC#562046). - patches.drivers/ixgbe-disable-flow-control-for: ixgbe: Disable Flow Control for certain devices (BNC#562046). - patches.drivers/ixgbe-display-currently-attach: ixgbe: Display currently attached PHY through ethtool (BNC#562046). - patches.drivers/ixgbe-fix-erroneous-display-of: ixgbe: Fix erroneous display of stats by ethtool -S (BNC#562046). - patches.drivers/ixgbe-fix-kr-to-kx-fail-over-f: ixgbe: Fix KR to KX fail over for Mezzanine cards (BNC#562046). - patches.drivers/ixgbe-fix-receive-address-regi: ixgbe: Fix Receive Address Register (RAR) cleaning and accounting (BNC#562046). - patches.drivers/ixgbe-flush-the-lsc-mask-chang: ixgbe: Flush the LSC mask change to prevent repeated interrupts (BNC#562046). - patches.drivers/ixgbe-handle-parameters-for-tx: ixgbe: handle parameters for tx and rx EITR, no div0 (BNC#562046). - patches.drivers/ixgbe-links2-is-not-a-valid-re: ixgbe: LINKS2 is not a valid register for 82598 (BNC#562046). - patches.drivers/ixgbe-make-queue-pairs-on-sing: ixgbe: Make queue pairs on single MSI-X interrupts (BNC#562046). - patches.drivers/ixgbe-modify-82599-hwrsc-stati: ixgbe: Modify 82599 HWRSC statistics counters (BNC#562046). - patches.drivers/ixgbe-only-set-clear-vfe-in-ix: ixgbe: Only set/clear VFE in ixgbe_set_rx_mode (BNC#562046). - patches.drivers/ixgbe-performance-tweaks: ixgbe: performance tweaks (BNC#562046). - patches.drivers/ixgbe-r_idx-not-used-in-ixgbe_: ixgbe: r_idx not used in ixgbe_msix_clean_rx() (BNC#562046). - patches.drivers/ixgbe-select-fcoe-tx-queue-in-: ixgbe: select FCoE Tx queue in ndo_select_queue (BNC#562046). - patches.drivers/ixgbe-use-eiam-to-automask-msi: ixgbe: use EIAM to automask MSI-X (BNC#562046). - patches.drivers/ixgbe-use-known-user-priority-: ixgbe: use known user priority for FCoE when DCB is enabled (BNC#562046). - patches.drivers/ixgbe-use-rx-buffer-length-fro: ixgbe: Use rx buffer length from rx ring for configuring rscctl (BNC#562046). - patches.drivers/ixgbe-use-the-instance-of-net_: ixgbe: Use the instance of net_device_stats from net_device. (BNC#562046). - patches.drivers/net-add-ndo_fcoe_get_wwn-to-ne: net: Add ndo_fcoe_get_wwn to net_device_ops (BNC#562046). - patches.drivers/net-add-netdev_alloc_skb_ip_al: net: Add netdev_alloc_skb_ip_align() helper (BNC#562046). - patches.drivers/net-use-netdev_alloc_skb_ip_al: net: Use netdev_alloc_skb_ip_align() (BNC#562046). - patches.drivers/vlan-add-support-to-netdev_ops: vlan: Add support to netdev_ops.ndo_fcoe_get_wwn for VLAN device (BNC#562046). - patches.fixes/fcoe-allow-scsi-fcp-to-be: fcoe: allow SCSI-FCP to be processed directly in softirq context (BNC#562046). - patches.fixes/fcoe-libfc-add-get_lesb-t: fcoe, libfc: add get_lesb() to allow LLD to fill the link error status block (LESB) (BNC#562046). - patches.fixes/libfc-add-fc-bb-5-lesb-co: libfc: add FC-BB-5 LESB counters to fcoe_dev_stats (BNC#562046). - patches.fixes/libfc-add-fcoe_fc_els_les: libfc: add fcoe_fc_els_lesb to fc_fcoe.h for FC-BB-5 LESB definitions (BNC#562046). - patches.fixes/libfc-add-support-of-rece: libfc: add support of receiving ELS_RLS (BNC#562046). - patches.fixes/libfc-add-target-reset-fl: libfc: Add target reset flag to FCP header file (BNC#562046). - patches.fixes/libfc-fix-payload-size-pa: libfc: fix payload size passed to fc_frame_alloc() in fc_lport_els_request (BNC#562046). - patches.fixes/libfcoe-add-checking-disa: libfcoe: add checking disable flag in FIP_FKA_ADV (BNC#562046). - patches.fixes/libfcoe-add-tracking-fip-: libfcoe: add tracking FIP Missing Discovery Advertisement count (BNC#562046). - patches.fixes/libfcoe-add-tracking-fip--0: libfcoe: add tracking FIP Virtual Link Failure count (BNC#562046).- rpm/kabi.pl: Do not print harmless kabi changes by default.- patches.suse/sched-revert-latency-defaults: Revert sched latency defaults and turn FAIR_SLEEPERS off (bnc#557307).- patches.fixes/uart-txen-race.patch: Serial: Do not read IIR in serial8250_start_tx when UART_BUG_TXEN (bnc#479304 bnc#509066).- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: Fix isolcpus boot option (bnc#562290, fate#306952).- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings in modpost.c.- patches.rpmify/modpost-segfault: modpost: fix segfault with short symbol names.- Moved kernel-docs into the git repo. It is now built automatically with the matching kernel sources.- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export kdb_usb_kbds (none).Jeff updated kdb, try without this ugly workaround. If it still does not work, I have something better... - patches.suse/kdb_x86_fix_hang.patch: Delete.Cleanup patches for series2git: - patches.suse/kdb-common: Refresh. - patches.suse/kdump-dump_after_notifier.patch: Refresh.Updated MCE/MCA patches from Andi -> delete the old ones: - patches.arch/x86_mce_hwpoison-action_result-valid-pfn.patch: HWPOISON: return ENXIO on invalid page number (fate#307738). - patches.arch/x86_mce_hwpoison-is-free-page.patch: HWPOISON: detect free buddy pages explicitly (fate#307738). - patches.arch/x86_mce_hwpoison-no-double-ref.patch: HWPOISON: avoid grabbing the page count multiple times during madvise injection (fate#307738). - patches.arch/x86_mce_madvise-locking: HWPOISON: Use get_user_page_fast in hwpoison madvise (fate#307738). - patches.arch/x86_mce_nfs-mig2: NFS: Fix nfs_migrate_page() (fate#307738). - patches.arch/x86_mce_offline-inject: HWPOISON: Add a madvise() injector for soft page offlining (fate#307738). - patches.arch/x86_mce_page-offline: HWPOISON: Add soft page offline support (fate#307738). - patches.arch/x86_mce_ref-to-flags: HWPOISON: Turn ref argument into flags argument (fate#307738). - patches.arch/x86_mce_shake-page: HWPOISON: Be more aggressive at freeing non LRU caches (fate#307738). - patches.arch/x86_mce_undef-lru: HWPOISON: Undefine short-hand macros after use to avoid namespace conflict (fate#307738). - patches.arch/x86_mce_lru_cleanup.patch: Delete. - patches.arch/x86_mce_page_offlining.patch: Delete. - patches.arch/x86_mce_page_offlining_test_ability.patch: Delete. - patches.arch/x86_mce_test_page.patch: Delete.- needs_update: Merge or delete remaining patches. - patches.fixes/scsi-dh-emc-mode-select-10-size: DM-MPIO fails to tresspass LUNs on CLARiiON arrays (bnc#484529). - patches.fixes/scsi-dh-emc-rw-mismatch: Server crashes when path failures occur against EMC storage (bnc#474482). - patches.fixes/scsi-dh-rdac-add-stk: STK arrays missing from rdac devicehandler (bnc#503855). - patches.fixes/scsi-retry-alua-transition-in-progress: I/O errors for ALUA state transitions (bnc#491289). - patches.suse/dm-mpath-no-activate-for-offlined-paths: DM-MPIO fails to tresspass LUNs on CLARiiON arrays (bnc#484529). - patches.suse/dm-mpath-no-partitions-feature: Disable partitions scan for multipathed devices (bnc#402922,bnc#514767).- Update config files: set back to CONFIG_SOUND=m- patches.drivers/alsa-sp1-hda-23-hp-mute-led-gpio-fixes: ALSA: hda - Fix LED GPIO setup for HP laptops with IDT codecs (bnc#547357,bnc#523487).- patches.suse/kdb-usb-rework: Fix ia64.- Update config files: Enable USB_SERIAL_DEBUG.- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB.- Update config files. - Disabled USB_TEST and USB_LIBUSUAL.- Update config files. Re-enable missing options: - CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y - CONFIG_VIDEO_GO7007=m (and related options)- patches.drivers/netxen-0008-reset-sequence-changes.patch: Refresh to fix fuzz- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support.- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power (bnc#559547)- patches.drivers/netxen-0000-Use-the-instance-of-net_device_stats-from-net.patch: netxen: Use the instance of net_device_stats from net_device. (bnc#560003, fate#307134). - patches.drivers/netxen-0001-remove-sub-64-bit-mem-accesses.patch: netxen: remove sub 64-bit mem accesses (bnc#560003, fate#307134). - patches.drivers/netxen-0002-add-access-to-on-chip-memory-for-tools.patch: netxen: add access to on chip memory for tools (bnc#560003, fate#307134). - patches.drivers/netxen-0003-annotate-register-windowing-code.patch: netxen: annotate register windowing code (bnc#560003, fate#307134). - patches.drivers/netxen-0004-separate-register-and-memory-access-lock.patch: netxen: separate register and memory access lock (bnc#560003, fate#307134). - patches.drivers/netxen-0005-add-sysfs-entries-for-diag-tools.patch: netxen: add sysfs entries for diag tools (bnc#560003, fate#307134). - patches.drivers/netxen-0006-defines-for-next-revision.patch: netxen: defines for next revision (bnc#560003, fate#307134). - patches.drivers/netxen-0007-128-memory-controller-support.patch: netxen: 128 memory controller support (bnc#560003, fate#307134). - patches.drivers/netxen-0008-reset-sequence-changes.patch: netxen: reset sequence changes (bnc#560003, fate#307134). - patches.drivers/netxen-0009-onchip-memory-access-change.patch: netxen: onchip memory access change (bnc#560003, fate#307134). - patches.drivers/netxen-0010-fix-error-codes-in-for-tools-access.patch: netxen: fix error codes in for tools access (bnc#560003, fate#307134). - patches.drivers/netxen-0011-sysfs-control-for-auto-firmware-recovery.patch: netxen: sysfs control for auto firmware recovery (bnc#560003, fate#307134). - patches.drivers/netxen-0012-update-version-to-4.0.62.patch: netxen; update version to 4.0.62 (bnc#560003, fate#307134). - patches.drivers/netxen-0013-fix-builds-for-SYSFS-n-or-MODULES-n.patch: netxen: fix builds for SYSFS=n or MODULES=n (bnc#560003, fate#307134). - patches.drivers/netxen-0014-support-for-new-firmware-file-format.patch: netxen: support for new firmware file format (bnc#560003, fate#307134). - patches.drivers/netxen-0015-refactor-indirect-register-access.patch: netxen: refactor indirect register access (bnc#560003, fate#307134). - patches.drivers/netxen-0016-add-PCI-IDs-for-new-chip.patch: netxen: add PCI IDs for new chip (bnc#560003, fate#307134). - patches.drivers/netxen-0017-update-module-info.patch: netxen: update module info (bnc#560003, fate#307134). - patches.drivers/netxen-0018-module-firmware-hints.patch: netxen: module firmware hints (bnc#560003, fate#307134). - patches.drivers/netxen-0019-update-version-to-4.0.65.patch: netxen: update version to 4.0.65 (bnc#560003, fate#307134). - patches.drivers/netxen-0020-remove-PCI-IDs-of-CNA-device.patch: netxen: remove PCI IDs of CNA device (bnc#560003, fate#307134). - patches.drivers/netxen-0021-fix-debug-tools-access-for-NX2031.patch: netxen : fix debug tools access for NX2031 (bnc#560003, fate#307134). - patches.drivers/netxen-0022-fix-failure-cases-for-fw-hang-recovery.patch: netxen: fix failure cases for fw hang recovery (bnc#560003, fate#307134).- patches.drivers/qlge-0001-Use-the-instance-of-net_device_stats-from-net_.patch: qlge: Use the instance of net_device_stats from net_device. (bnc#560420, FATE#307130). - patches.drivers/qlge-0002-Remove-explicit-setting-of-PCI-Dev-CTL-reg.patch: qlge: Remove explicit setting of PCI Dev CTL reg. (bnc#560420, FATE#307130). - patches.drivers/qlge-0003-Set-PCIE-max-read-request-size.patch: qlge: Set PCIE max read request size. (bnc#560420, FATE#307130). - patches.drivers/qlge-0004-Add-handler-for-DCBX-firmware-event.patch: qlge: Add handler for DCBX firmware event. (bnc#560420, FATE#307130). - patches.drivers/qlge-0005-Store-firmware-revision-as-early-as-possible.patch: qlge: Store firmware revision as early as possible. (bnc#560420, FATE#307130). - patches.drivers/qlge-0006-Remove-inline-math-for-small-rx-buf-mapping.patch: qlge: Remove inline math for small rx buf mapping. (bnc#560420, FATE#307130). - patches.drivers/qlge-0007-Get-rid-of-firmware-handler-debug-code.patch: qlge: Get rid of firmware handler debug code. (bnc#560420, FATE#307130). - patches.drivers/qlge-0008-Don-t-fail-open-when-port-is-not-initialized.patch: qlge: Don't fail open when port is not initialized. (bnc#560420, FATE#307130). - patches.drivers/qlge-0009-Add-CBFC-pause-frame-counters-to-ethtool-stats.patch: qlge: Add CBFC pause frame counters to ethtool stats. (bnc#560420, FATE#307130). - patches.drivers/qlge-0010-Size-RX-buffers-based-on-MTU.patch: qlge: Size RX buffers based on MTU. (bnc#560420, FATE#307130). - patches.drivers/qlge-0011-Add-ethtool-get-set-pause-parameter.patch: qlge: Add ethtool get/set pause parameter. (bnc#560420, FATE#307130). - patches.drivers/qlge-0012-Add-ethtool-blink-function.patch: qlge: Add ethtool blink function. (bnc#560420, FATE#307130). - patches.drivers/qlge-0013-Add-ethtool-wake-on-LAN-function.patch: qlge: Add ethtool wake on LAN function. (bnc#560420, FATE#307130). - patches.drivers/qlge-0014-Add-ethtool-register-dump-function.patch: qlge: Add ethtool register dump function. (bnc#560420, FATE#307130). - patches.drivers/qlge-0015-Add-ethtool-self-test.patch: qlge: Add ethtool self-test. (bnc#560420, FATE#307130). - patches.drivers/qlge-0016-Change-naming-on-vlan-API.patch: qlge: Change naming on vlan API. (bnc#560420, FATE#307130). - patches.drivers/qlge-0017-Fix-indentations.patch: qlge: Fix indentations. (bnc#560420, FATE#307130). - patches.drivers/qlge-0018-Add-firmware-driver-sub-command-support.patch: qlge: Add firmware/driver sub-command support. (bnc#560420, FATE#307130). - patches.drivers/qlge-0019-Clean-up-netdev-stats-usage.patch: qlge: Clean up netdev->stats usage. (bnc#560420, FATE#307130). - patches.drivers/qlge-0020-Do-not-change-frame-routing-during-suspend.patch: qlge: Do not change frame routing during suspend. (bnc#560420, FATE#307130). - patches.drivers/qlge-0021-Add-asic-reset-to-open-call.patch: qlge: Add asic reset to open call. (bnc#560420, FATE#307130). - patches.drivers/qlge-0022-Clean-up-module-parameter-name.patch: qlge: Clean up module parameter name. (bnc#560420, FATE#307130). - patches.drivers/qlge-0023-Change-version-to-v1.00.00.23.00.00-01.patch: qlge: Change version to v1.00.00.23.00.00-01. (bnc#560420, FATE#307130). - patches.drivers/qlge-0024-Bonding-fix-for-mode-6.patch: qlge: Bonding fix for mode 6. (bnc#560420, FATE#307130). - patches.drivers/qlge-0025-Add-performance-change-for-non-split-headers.patch: qlge: Add performance change for non-split headers. (bnc#560420, FATE#307130). - patches.drivers/qlge-0026-Add-firmware-core-dump.patch: qlge: Add firmware core dump. (bnc#560420, FATE#307130).- needs_update: Delete more merged fixes. - patches.suse/dm-mpath-leastpending-path-update: Refresh.- needs_update: Delete merged driver fixes. - patches.drivers/megaraid-mbox-fix-SG_IO: megaraid_mbox: Oops on SG_IO (bnc#475619).- Disable PHYP_DUMP for all PPC flavours, per bnc#541302.- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug message.- patches.fixes/tehuti-firmware-name: Tehuti network driver references wrong firmware (bnc#562092).- patches.suse/audit-export-logging.patch: fix section mismatch due to previous checkin- patches.suse/audit-export-logging.patch: export audit logging symbols.- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS to ppc64/trace- patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext: ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT (bnc#561018 CVE-2009-4131).- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge in swiotlb code.- patches.fixes/nohz-delay-from-tip.diff: nohz: Introduce arch_needs_cpu. - patches.fixes/reuse-ktime-from-tip.diff: nohz: Reuse ktime in sub-functions of tick_check_idle.. - series.conf: Moved s390 patchs to proper place- patches.fixes/ipc-ns-fix-memory-leak-idr.patch: ipc: ns fix memory leak (bnc#518767). - patches.fixes/ipc-remove-unreachable-code-in-semc.patch: (bnc#518767). - patches.fixes/ipc-semc-add-a-per-semaphore-pending-list.patch: (bnc#518767). - patches.fixes/ipc-semc-optimize-if-semops-fail.patch: (bnc#518767). - patches.fixes/ipc-semc-optimize-single-semop-operations.patch: (bnc#518767). - patches.fixes/ipc-semc-optimize-single-sops-when-semval-is-zero.patch: (bnc#518767). - patches.fixes/ipc-semc-sem-optimise-undo-list-search.patch: (bnc#518767). - patches.fixes/ipc-semc-sem-preempt-improve.patch: (bnc#518767). - patches.fixes/ipc-semc-sem-use-list-operations.patch: (bnc#518767).- needs_update: patches moved upstream or obsoleted by upstream- patches.suse/kbuild-generate-modules.builtin: Update to what will hopefully be in 2.6.33. - patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: Delete.- Update config files. - patches.suse/netfilter-ipv4options: netfilter ipv4options match from patch-o-matic-ng (bnc#131728 - FATE#182).- needs_update: - patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero optimisation (bnc#430738).- patches.drivers/alsa-sp1-hda-22-alc888-exclude-unusable-adcs: ALSA: hda - Exclude unusable ADCs for ALC88x (bnc#561235).- patches.drivers/reenable-generic_serial: Revert "tty: Mark generic_serial users as BROKEN". - Update config files: enable RIO and SX. - rpm/generic_serial-blacklist: blacklist generic_serial users from automatic loading (bnc#551348).- needs_update: patches merged upstream - novfs patches to be handled by novfs team- needs_update: - patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve vmalloc reporting (bnc#511079).- needs_update: most of mine are merged. apparmor patch sent to Andreas.- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645)- patches.arch/s390-kvm-prefix.patch: KVM: s390: Fix prefix register checking in arch/s390/kvm/sigp.c (FATE#306513). - patches.arch/s390-kvm-psw.patch: KVM: s390: Make psw available on all exits, not just a subset (FATE#306513).- patches.drivers/synaptics-hp-clickpad: Input: Add support of clickpad mode to synaptics mouse driver (bnc#547370).- Update Xen patches to 2.6.32 final and c/s 958. - patches.xen/xen-dcdbas: force proper address translation in DCDBAS. - patches.xen&xen-vmalloc_32: guarantee 32-bit (bus-)addressability of vmalloc_32() output (bnc#548010, bnc#552492). - patches.xen/xen-x86_64-nx-user-mappings: set NX bit in kernel version of top level user mode page table entries. - patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: x86: add ia32 compat prlimit syscalls (FATE#305733). - patches.xen/xen3-x86-64-align-rodata-kernel-section-to-2mb-with-config_debug_rodata: x86-64: align RODATA kernel section to 2MB with CONFIG_DEBUG_RODATA (bnc#558249). - patches.xen/xen3-x86-64-preserve-large-page-mapping-for-1st-2mb-kernel-txt-with-config_debug_rodata: x86-64: preserve large page mapping for 1st 2MB kernel txt with CONFIG_DEBUG_RODATA (bnc#558249). - patches.xen/xen3-x86-fix-nodac: x86: fix iommu=nodac parameter handling (bnc#463829, bnc#482220). - patches.xen/xen3-x86-mcp51-no-dac: x86: disallow DAC for MCP51 PCI bridge (bnc#463829, bnc#482220). - Update EC2 config files (disable CAN_DEV and UIO).- patches.arch/x86-crypto-add-ghash-algorithm-test.patch, patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: Fix build warnings.- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc.- config.conf: add trace flavor for ppc64 (fate# 307051) - Update config files.- Split apparmor.diff out into separate patches to align more closely with the upstream AppArmor 2.4 repo. - patches.apparmor/apparmor-fix-cap-audit_caching-preemption-disabling: AppArmor: Fix cap audit_caching preemption disabling. - patches.apparmor/apparmor-fix-change_profile-failing-lpn401931: AppArmor: Fix change_profile failing lpn401931. - patches.apparmor/apparmor-fix-change_profile-failure: AppArmor: Fix change_profile failure. - patches.apparmor/apparmor-fix-determination-of-forced-audit-messages: AppArmor: Fix determination of forced AUDIT messages.. - patches.apparmor/apparmor-fix-failure-to-audit-change_hat-correctly: AppArmor: fix failure to audit change_hat correctly. - patches.apparmor/apparmor-fix-file-auditing-when-quiet-is-used: AppArmor: Fix file auditing when quiet is used. - patches.apparmor/apparmor-fix-leak-when-profile-transition-table-fails-unpack: AppArmor: Fix leak when profile transition table fails unpack. - patches.apparmor/apparmor-fix-mediation-of-created-paths-that-look-like-deleted-paths: AppArmor: Fix mediation of created paths that look like "deleted" paths. - patches.apparmor/apparmor-fix-oops-after-profile-removal: AppArmor: Fix oops after profile removal. - patches.apparmor/apparmor-fix-oops-when-auditing-the-addition-of-profile-namespace: AppArmor: Fix oops when auditing the addition of profile namespace. - patches.apparmor/apparmor-fix-oops-when-in-apparmor_bprm_set_creds: AppArmor: Fix Oops when in apparmor_bprm_set_creds. - patches.apparmor/apparmor-fix-profile-namespace-removal: AppArmor: Fix profile namespace removal.. - patches.apparmor/apparmor-fix-refcounting-bug-causing-leak-of-creds-and-oops: AppArmor: Fix refcounting bug causing leak of creds and oops. - patches.apparmor/apparmor-fully-close-race-condition-for-deleted-paths: AppArmor: Fully close race condition for deleted paths. - patches.apparmor/apparmor-missing-unlock: AppArmor: Add missing unlock to next_profile. - patches.apparmor/apparmor-policy-load-and-replacement-can-fail-to-alloc-mem: AppArmor: Policy load and replacement can fail to alloc mem. - patches.apparmor/apparmor-fix-security_ops-task_setrlimit-api-use: AppArmor: Fix security_ops->task_setrlimit API use.- Update config files. - patches.suse/revert-usb-remove-phidget-drivers-from-kernel-tree.patch: Revert "USB: remove phidget drivers from kernel tree.".- patches.arch/s390-message-catalog.diff: Updated patch (bnc#549193,FATE#306999,LTC#57210).- supported.conf: Update wireless drivers.- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: HiperSockets Network Traffic Analyzer (bnc#560674).- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver update to 8.03.01-k7 (bnc#560415).- rpm/package-descriptions: Add description for kernel-vmi.- patches.arch/x86_mce_lru_cleanup.patch: HWPOISON: Undefine lru define after table to avoid namespace conflict (fate#307738). - patches.arch/x86_mce_page_offlining.patch: Add soft page offline support (fate#307738). - patches.arch/x86_mce_page_offlining_test_ability.patch: HWPOISON: Add a madvise() injector for soft page offlining (fate#307738). - patches.arch/x86_mce_test_page.patch: Expose Test pageflagA and set pageflagB primitive (fate#307738).- config.conf: Add vmi to kernel-syms.- Add the vmi flavor again.- patches.suse/SoN-18-netvm-skbuff-reserve.patch: add emergeny flag inside kmemcheck boundaries. - patches.xen/xen3-auto-common.diff: Refresh.- Update config files. CONFIG_DRM_I915_KMS=y for x86-64 and i386 vanilla (bnc#560402)- Update config files. CONFIG_DRM_I915_KMS=y for x86-64 (bnc#560402)- Update config files. CONFIG_DRM_I915_KMS=y for i386 (bnc#560402)- patches.arch/ppc-spufs-07-Don-t-spu_acquire_saved-unnecessarily.patch: Delete. (bnc#560043)- Cleanup config files.- patches.drivers/tg3_libphy_workaround: Delete. We have all of the 57780 phylib and tg3 changes due to 2.6.32 bump.- back out cpuidle feature that is still unconsistent.- patches.suse/ocfs2-allocation-resrvations.patch: Refresh.- patches.suse/cpuidle-cleanup: Refresh. Fix the "fixed" feature patch set from IBM.- Update config files. - patches.suse/gfs2-ro-mounts-only.patch: gfs2: allow spectator mounts for migration to ocfs2 (FATE#307584).- Update config files for 2.6.32 (again).- Update config files for cpuidle.- patches.drivers/8250_pnp-wacom-add: serial/8250_pnp.c: add new Wacom devices (bnc#544763).- patches.suse/cpuidle-cleanup: Refresh. one lonely hunk already seems to be in 2.6.32 final- bnc#552860 / FATE#307104: kernel idle low power, take 2: - patches.suse/cpuidle-cleanup: Refresh. - patches.suse/cpuidle-cleanup-x86: Refresh. - patches.suse/cpuidle-eliminate-ppcmdpowersave1: Refresh.- Updated to 2.6.32-final. - 2 patches eliminated.- Update config files: Enable Hibernation for zSeries.- Update config files: Disable CONFIG_MFD_PCF50633, the chip is unlikely to be used on architectures we support.- rpm/split-modules: Print which supported modules need unsupported modules.- supported.conf: support lis3lv02d, hp_accel needs it.- supported.conf: hp_accel is supported (FATE #306448).- supported.conf: remove wm831x drivers, we no longer ship them.- Update config files: disable all new hwmon drivers on ppc (default and vanilla) for consistency.- supported.conf: Add wm831x, needed by drivers/input/misc/wm831x-on.- supported.conf: Fix up after commit bfea0bd.- Update config files: disable WM831x and WM8350 support entirely, as recommended by the drivers author. These devices are only found on embedded devices such as music players or mobile phones.- supported.conf: Mark pmcraid and igbvf as supported; OSD drivers as unsupported.- Restore link from config/s390/vanilla to config/s390x/vanilla.- supported.conf: Update Xen drivers.- needs_update: readd patches.suse/perfmon2-remove_get_base_syscall_attr.patch patches.suse/perfmon2-remove_syscalls.patch- rpm/post.sh: - rpm/postun.sh: woh dluoc I tegrof ot esolc eht fi- rpm/post.sh: - rpm/postun.sh: If this is a Moblin-based box, don't run yast-bootloader- Update config files: stop shipping wm831x-hwmon, wm8350-hwmon, i2c-simtec and i2c-designware. - supported.conf: remove i2c-simtec.- supported.conf: Add all new hwmon and i2c/busses drivers. The former unsupported, the latter supported.- Update config files: disable CONFIG_I2C_VOODOO3. - supported.conf: drop i2c-voodoo3, superseded by tdfxfb.- supported.conf: Drop hwmon and i2c/chips drivers which have been obsoleted.- rpm/kernel-binary.spec.in: Obsolete perfmon-kmp.- supported.conf: Add perfmon, hid and input modules.- Update config files: Fix vanilla configs- Update config files: disabled CONFIG_SND_SOC* in ppc configs.- Updated the sound section of supported.conf- Update config files. disable USB OTG drivers that should not have been enabled.- supported.conf: remove some usb drivers that were deleted or renamed.- supported.conf: update usb driver section- rpm/check-supported-list: Skip modules in Documentation and drivers/staging.- patches.fixes/mac80211-fix-remote-DoS.patch: mac80211: fix remote DoS (bnc#558267).- Forward-port 11.2 patches: patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix: ALSA: hda - Add a position_fix quirk for MSI Wind U115. patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix: ALSA: hda - Fix Cxt5047 test mode (bnc#559062). patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix: ALSA: hda - Add a pin-fix for FSC Amilo Pi1505 (bnc#557403). patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk: ALSA: hda - Add position_fix quirk for HP dv3 (bnc#555935).- patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io: megaraid_sas: Fix permissions on poll_mode_io (bnc#557180 CVE-2009-3939).- patches.arch/x86-64-add-comment-for-rodata-large-page-retainment: x86-64: add comment for RODATA large page retainment (bnc#558249). - patches.arch/x86-64-align-rodata-kernel-section-to-2mb-with-config_debug_rodata: x86-64: align RODATA kernel section to 2MB with CONFIG_DEBUG_RODATA (bnc#558249). - patches.arch/x86-64-preserve-large-page-mapping-for-1st-2mb-kernel-txt-with-config_debug_rodata: x86-64: preserve large page mapping for 1st 2MB kernel txt with CONFIG_DEBUG_RODATA (bnc#558249).- needs_update: drop libata patches which are already included in 2.6.31 vanilla.- needs_update: drop patches which are already included in 2.6.31 vanilla.Forward port two x86 patches from SLE11. - needs_update: - patches.arch/x86-fix-nodac: x86: fix iommu=nodac parameter handling (bnc#463829). - patches.arch/x86-mcp51-no-dac: x86: disallow DAC for MCP51 PCI bridge (bnc#463829).- Update config files: Enable KSM (FATE#306513)- needs_update: acpi dock patch was hmacht's, not mine- needs_update: sysfs debugging crash patch is now upstream- needs_update: jeffm merged novfs patches into the main novfs patch.- needs_update: qualcomm modem driver is upstream- needs_update: squashfs is now upstream- needs_update: via driver bugfixes never went upstream, and people are complaining about them, so they were dropped.- needs_update: remove staging driver entries, they are all upstream.- needs_update: remove hv driver entries, those are upstream now.- needs_update: remove xen patches with my name on it. Just because I refreshed the patch, doesn't mean I own it or even like the thing :)- patches.suse/SoN-11-mm-reserve.patch: Fix build errors in -trace and ppc64 flavors.- rpm/kernel-binary.spec.in: Abort if supported modules depend on unsupported ones.- supported.conf: mark cnic as supported (needed by bnx2i).- patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch: API fix: X86: sysctl to allow panic on IOCK NMI error (bnc#427979). - patches.suse/kdb-common: Refresh. - patches.suse/kdump-dump_after_notifier.patch: Refresh.- patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: CPUFREQ: ondemand: Limit default sampling rate to 300ms max. (bnc#464461).- needs_update: One I still have to send upstream, but it's nicer error output only, SP1 is fine in respect to removing all these, thanks.- Update config files: Compile in efivars module for x86_64 (FATE#306931).- needs_update: sjayaraman's patches are either upstream already or rebased to SP1.- Update config files: NFS_SWAP=y.- patches.trace/lttng-instrumentation-swap.patch: Refresh and fix a build failure with fuzz factor 0.- Rebase Swap-over-NFS(SoN) patches: - patches.xen/tmem: Refresh to accomodate changes due to SoN patches. - patches.xen/xen3-auto-common.diff: Refresh to accomodate changes due to SoN patches.- needs_update: Verify knikanth's patches in SLE11 but not in SP1 - patches.fixes/dm-release-map_lock-before-set_disk_ro: Release md->map_lock before set_disk_ro (bnc#556899 bnc#479784).- Restore following patches from SLES11 that are still needed for SLES11-SP1 - patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: sunrpc/cache: allow thread to block while waiting for cache update. (bnc#498708). - patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch: sunrpc/cache: retry cache lookups that return -ETIMEDOUT (bnc#498708). - patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch: nfsd/idmap: drop special request deferal in favour of improved default. (bnc#498708). - patches.fixes/nfsd-09-fix-kabi: Fix kabi breakage in previous nfsd patch series (bnc#498708).- needs_update: remove patches item of coly.li, lmb and mfasheh. - patches.fixes/dlm-enable-debug.patch: update the patch from SLES11 to SLES11 SP1 tree.- patches.fixes/make-note_interrupt-fast.diff: Fix performance regression on large IA64 systems (bnc #469589).- rpm/old-packages.conf: obsolete kernel-kdump on ppc. - config.conf: delete kdump configs. - config/ppc/kdump: Delete. - config/ppc64/kdump: Delete.- patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class: Refresh. Fix "typo", memory_sysdev_class should be exported only to GPL'ed modules.Fixup patches for series2git: - patches.xen/tmem: Refresh. - patches.xen/xen3-auto-common.diff: Refresh.- config.conf: disable build of ppc kdump flavours (FATE#304346)- patches.drivers/libata-missing-_SDD-is-not-an-error: libata-acpi: missing _SDD is not an error (bnc#551942).- patches.fixes/mac80211-fix-spurious-delba-handling.patch: mac80211: fix spurious delBA handling (bnc#558267, CVE-2009-4026, CVE-2009-4027).- patches.drivers/sky2-add-register-definitions: sky2: add register definitions for new chips (bnc#544760). - patches.drivers/sky2-88E8059-support: sky2: 88E8059 support (bnc#544760). - patches.drivers/sky2-optima-tcp-offload-fix: net: Fix Yukon-2 Optima TCP offload setup (bnc#544760). - patches.drivers/sky2-optima-fix-pci-cfg: net: Add missing TST_CFG_WRITE bits around sky2_pci_write (bnc#544760).- Update config files. disable CONFIG_MULTICOE_RAID456 as it is not yet stable. Enable CONFIG_ASYNC_TX_DMA for FATE#306368- clean up patch fuzz- patches.drivers/via-unichrome-drm-bugfixes.patch: Delete. it never went upstream, so we should drop it as well.- patches.trace/lttng-*: update for 2.6.32 - patches.trace/lttng-instrumentation-timer.patch: Delete. - patches.xen/tmem: Refresh. - patches.xen/xen3-auto-common.diff: Refresh.- patches.fixes/oprofile_bios_ctr.patch: detect oprofile counters reserved by bios (FATE#307426).- patches.fixes/netfilter-remove-pointless-config_nf_ct_acct-warning: netfilter: Remove pointless CONFIG_NF_CT_ACCT warning (bnc#552033 (and others)).- Update config files. - patches.drivers/mpt-fusion-4.22.00.00-update: Update MPT Fusion driver to 4.22.00.00-suse (bnc#556587). - patches.drivers/mpt-fusion-4.16.00.00-update: Delete.- patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx: ALSA: hda - Fix mute-LED sync on HP laptops with IDT92HD83xxx codecs (bnc#547357).- patches.arch/ppc-extended_h_cede-*: Increase power savings by allowing the core to sleep. (FATE##307059, bnc#550447)- patches.suse/kconfig-automate-kernel-desktop: automate a few config options for kernel-desktop (FATE#305694).- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: Update references (bnc#556135, FATE#306453). - patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: Update references (bnc#556135, FATE#306453). - patches.arch/kvm-split-paravirt-ops-by-functionality: Update references (bnc#556135, FATE#306453). - patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: Update references (bnc#556135, FATE#306453).- Enabled: patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array- patches.arch/x86-crypto-add-ghash-algorithm-test.patch: crypto: Add ghash algorithm test before provide to users (FATE#306883, bnc#554578).- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: incorporate "ghash - put proper .data section in place" fix- Update config files. - Add new options KERNEL_DESKTOP and DEFAULT_VM_DIRTY_RATIO. - Enable KERNEL_DESKTOP for only desktop flavor.- patches.suse/mm-tune-dirty-limits.patch: mm: Make default VM dirty ratio configurable to suit different workloads (bnc#552883).- rpm/kernel-syms.spec.in, rpm/mkspec: build kernel-syms only for supported architectures.- Enabled B43_PHY_LP=y for PHY support on certain b43 chips.- config.conf: Remove the -desktop flavor from kernel-syms.- patches.suse/export-sync_page_range: Revert "vfs: Remove generic_osync_inode() and sync_page_range{_nolock}()" (bnc#557231).- patches.suse/init-move-populate_rootfs-back-to-start_kernel: Fix a bad-pointer warning.- rpm/macros.kernel-source: Add kernel_module_package_moddir() macro for cross-distro compatibility (FATE 305225).- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: Update references (FATE#305733). - patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: Update references (FATE#305733). - patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: Update references (FATE#305733). - patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: Update references (FATE#305733). - patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Update references (FATE#305733). - patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: Update references (FATE#305733). - patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: Update references (FATE#305733). - patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: Update references (FATE#305733). - patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: Update references (FATE#305733). - patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: Update references (FATE#305733). - patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: Update references (FATE#305733). - patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: Update references (FATE#305733). - patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: Update references (FATE#305733). - patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: Update references (FATE#305733). - patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: Update references (FATE#305733). - patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: Update references (FATE#305733). - patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: Update references (FATE#305733). - patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: Update references (FATE#305733). - patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: Update references (FATE#305733). - patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: Update references (FATE#305733). - patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: Update references (FATE#305733). - patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: Update references (FATE#305733). - patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: Update references (FATE#305733). - patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: Update references (FATE#305733). - patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: Update references (FATE#305733).- Add writable resource limits support - patches.suse/perfmon2.patch: Refresh. - patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: SECURITY: selinux, fix update_rlimit_cpu parameter. - patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: SECURITY: add task_struct to setrlimit. - patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: core: add task_struct to update_rlimit_cpu. - patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: sys_setrlimit: make sure ->rlim_max never grows. - patches.suse/rlim-0005-core-split-sys_setrlimit.patch: core: split sys_setrlimit. - patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: core: allow setrlimit to non-current tasks. - patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: core: optimize setrlimit for current task. - patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: FS: proc, make limits writable. - patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: core: posix-cpu-timers, cleanup rlimits usage. - patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: core: do security check under task_lock. - patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: resource: add helpers for fetching rlimits. - patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: IA64: use helpers for rlimits. - patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: PPC: use helpers for rlimits. - patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: S390: use helpers for rlimits. - patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: SPARC: use helpers for rlimits. - patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: X86: use helpers for rlimits. - patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: FS: use helpers for rlimits. - patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: MM: use helpers for rlimits. - patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: core: use helpers for rlimits. - patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: misc: use helpers for rlimits. - patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: core: rename setrlimit to do_setrlimit. - patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: core: implement getprlimit and setprlimit syscalls. - patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: unistd: add __NR_[get|set]prlimit syscall numbers. - patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: COMPAT: add get/put_compat_rlimit. - patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: x86: add ia32 compat prlimit syscalls.- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). - patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update version to 3.104 (bnc#556234, FATE#307117).- patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch: phy/broadcom: bug fixes for SP1 (FATE#307117, bnc#556234). - patches.drivers/tg3-update-version-to-3.104.patch: tg3: Update version to 3.104 (bnc#556234, FATE#307117).- patches.drivers/megaraid-04.12-update: megaraid: Update megaraid_sas to version 04.12 (FATE#307125).- patches.drivers/bnx2-entropy-source.patch: bnx2: entropy source (FATE#307517). - patches.drivers/e1000-entropy-source.patch: Enable e1000 as entropy source (disabled by default) (FATE#307517). - patches.drivers/e1000e-entropy-source.patch: Enable e1000e as entropy source (disabled by default) (FATE#307517). - patches.drivers/igb-entropy-source.patch: Enable igb as entropy source (disabled by default) (FATE#307517). - patches.drivers/ixgbe-entropy-source.patch: Enable ixgbe as entropy source (disabled by default) (FATE#307517). - patches.drivers/tg3-entropy-source.patch: tg3: entropy source (FATE#307517).- patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects: scsi_lib_dma: fix bug with dma maps on nested scsi objects (bnc#556595). - patches.fixes/scsi-introduce-helper-function-for-blocking-eh: scsi_transport_fc: Introduce helper function for blocking scsi_eh (bnc#556595). - patches.fixes/scsi-skip-nonscsi-device-for-dma: Delete.Whitespace cleanup for series2git: - patches.arch/s390-message-catalog.diff: Refresh. - patches.drivers/aacraid-24701-update: Refresh. - patches.suse/crasher-26.diff: Refresh. - patches.suse/kdb-common: Refresh. - patches.suse/kdb-ia64: Refresh. - patches.suse/kdb-x86: Refresh. - patches.suse/ocfs2-allocation-resrvations.patch: Refresh. - patches.suse/perfmon2.patch: Refresh. - patches.suse/perfmon2_ioctl.patch: Refresh. - patches.suse/stack-unwind: Refresh.- patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch: igb: add support for 82576NS SerDes adapter (FATE#306856).- patches.suse/dm-mpath-evaluate-request-result-and-sense: Fix for !CONFIG_SCSI (in -ec2).- patches.suse/ocfs2-allocation-resrvations.patch: ocfs2: allocation reservations (bnc#501563 FATE#307247).- patches.suse/perfmon2.patch: Refresh. - patches.arch/x86-self-ptrace.patch: Delete. (bnc#554585,LTC#57794) - patches.suse/self-ptrace.patch: Delete. (bnc#554585,LTC#57794)- Update to 2.6.32-rc8. - Eliminated 1 patch.- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: enclosure: fix oops while iterating enclosure_status array (bnc#540997).- Update config files. - patches.suse/perfmon2.patch: perfmon2 (FATE#303968). - patches.suse/perfmon2_ioctl.patch: switch to ioctl interface for perfmon2. - patches.suse/perfmon2_noutrace.patch: remove UTRACE code from perfmon2. - patches.xen/xen3-patch-2.6.28: Refresh.- Update config files. - patches.arch/s390-message-catalog.diff: Kernel message catalog. (bnc#549193,LTC#57210,FATE#306999). - rpm/kernel-binary.spec.in:- patches.suse/add-queue_depth-ramp-up-code.patch: add queue_depth ramp up code (fate#306857, fate#306859, bnc#551175). - patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch: fcoe: add a separate scsi transport template for NPIV vports (fate#306857, fate#306859, bnc#551175). - patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch: fcoe: add check to fail gracefully in bonding mode (fate#306857, fate#306859, bnc#551175). - patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch: fcoe: Call ndo_fcoe_enable/disable to turn FCoE feature on/off in LLD (fate#306857, fate#306859, bnc#551175). - patches.suse/fcoe-fix-checking-san-mac-address.patch: fcoe: Fix checking san mac address (fate#306857, fate#306859, bnc#551175). - patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch: fcoe: Fix getting san mac for VLAN interface (fate#306857, fate#306859, bnc#551175). - patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch: fcoe: Fix setting lport's WWNN/WWPN to use san mac address (fate#306857, fate#306859, bnc#551175). - patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch: fcoe: Fix using VLAN ID in creating lport's WWWN/WWPN (fate#306857, fate#306859, bnc#551175). - patches.suse/fcoe-formatting-cleanups-and-commenting.patch: fcoe: Formatting cleanups and commenting (fate#306857, fate#306859, bnc#551175). - patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch: fcoe: Increase FCOE_MAX_LUN to 0xFFFF (65535) (fate#306857, fate#306859, bnc#551175). - patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch: fcoe: initialize return value in fcoe_destroy (fate#306857, fate#306859, bnc#551175). - patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch: fcoe, libfc: fix an libfc issue with queue ramp down in libfc (fate#306857, fate#306859, bnc#551175). - patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch: fcoe, libfc: use single frame allocation API (fate#306857, fate#306859, bnc#551175). - patches.suse/fcoe-npiv-vport-create-destroy.patch: fcoe: NPIV vport create/destroy (fate#306857, fate#306859, bnc#551175). - patches.suse/fcoe-remove-extra-function-decalrations.patch: fcoe: remove extra function decalrations (fate#306857, fate#306859, bnc#551175). - patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch: fcoe: remove redundant checking of netdev->netdev_ops (fate#306857, fate#306859, bnc#551175). - patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch: fcoe: Use NETIF_F_FCOE_MTU flag to set up max frame size (lport->mfs) (fate#306857, fate#306859, bnc#551175). - patches.suse/fcoe-vport-symbolic-name-support.patch: fcoe: vport symbolic name support (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch: libfc: add host number to lport link up/down messages. (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch: libfc: Add libfc/fc_libfc.[ch] for libfc internal routines (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-add-queue_depth-ramp-up.patch: libfc: add queue_depth ramp up (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch: libfc: Add routine to copy data from a buffer to a SG list (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-add-set_fid-function-to-libfc-template.patch: libfc: add set_fid function to libfc template (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch: libfc: add some generic NPIV support routines to libfc (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-adds-can_queue-ramp-up.patch: libfc: adds can_queue ramp up (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch: libfc: adds missing exch release for accepted RRQ (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch: libfc: changes to libfc_host_alloc to consolidate initialization with allocation (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-combine-name-server-registration-request-functions.patch: libfc: combine name server registration request functions (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-combine-name-server-registration-response-handlers.patch: libfc: combine name server registration response handlers (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-convert-to-scsi_track_queue_full.patch: libfc: convert to scsi_track_queue_full (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch: libfc: do not use DID_NO_CONNECT for pkt alloc failures. (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch: libfc: don't WARN_ON in lport_timeout for RESET state (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-export-fc-headers.patch: libfc: Export FC headers (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-fcoe-add-fc-passthrough-support.patch: libfc, fcoe: Add FC passthrough support (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch: libfc, fcoe: Don't EXPORT_SYMBOLS unnecessarily (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch: libfc, fcoe: fixes for highmem skb linearize panics (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch: libfc fcoe: increase ELS and CT timeouts (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch: libfc: fix an issue of pending exch/es after i/f destroyed or rmmod fcoe (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch: libfc: fix ddp in fc_fcp for 0 xid (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch: libfc: fix fc_els_resp_type to correct display of CT responses (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch: libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in fc_fcp_send_data (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch: libfc: fix free of fc_rport_priv with timer pending (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch: libfc: fix memory corruption caused by double frees and bad error handling (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch: libfc: fix RNN_ID smashing skb payload (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch: libfc: fix symbolic name registrations smashing skb data (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch: libfc: fix typo in retry check on received PRLI (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch: libfc: Fix wrong scsi return status under FC_DATA_UNDRUN (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-formatting-cleanups-across-libfc.patch: libfc: Formatting cleanups across libfc (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch: libfc, libfcoe: FDISC ELS for NPIV (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-lport-fix-minor-documentation-errors.patch: libfc: lport: fix minor documentation errors (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch: libfc: Move libfc_init and libfc_exit to fc_libfc.c (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch: libfc: Move non-common routines and prototypes out of libfc.h (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch: libfc: reduce can_queue for all FCP frame allocation failures (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch: libfc: register FC4 features with the FC switch (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch: libfc: Register Symbolic Node Name (RSNN_NN) (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-register-symbolic-port-name-rspn_id.patch: libfc: Register Symbolic Port Name (RSPN_ID) (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-remove-fc_fcp_complete.patch: libfc: Remove fc_fcp_complete (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch: libfc: Remove unused fc_lport pointer from fc_fcp_pkt_abort (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch: libfc: removes initializing fc_cpu_order and fc_cpu_mask per lport (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch: libfc: removes unused disc_work and ex_list (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch: libfc: RNN_ID may be required before RSNN_NN with some switches (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch: libfc: RPN_ID is obsolete and unnecessary (fate#306857, fate#306859, bnc#551175). - patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch: libfc: vport link handling and fc_vport state managment (fate#306857, fate#306859, bnc#551175). - patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch: libfcoe: Allow FIP to be disabled by the driver (fate#306857, fate#306859, bnc#551175). - patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch: libfcoe: Do not pad FIP keep-alive to full frame size (fate#306857, fate#306859, bnc#551175). - patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch: libfcoe: don't send ELS in FIP mode if no FCF selected (fate#306857, fate#306859, bnc#551175). - patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch: libfcoe, fcoe: libfcoe NPIV support (fate#306857, fate#306859, bnc#551175). - patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch: libfcoe: fcoe: simplify receive FLOGI response (fate#306857, fate#306859, bnc#551175). - patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch: libfcoe: fip: allow FIP receive to be called from IRQ. (fate#306857, fate#306859, bnc#551175). - patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch: libfcoe: FIP should report link to libfc whether selected or not (fate#306857, fate#306859, bnc#551175). - patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch: libfcoe: fip: use SCSI host number to identify debug messages. (fate#306857, fate#306859, bnc#551175). - patches.suse/libfcoe-formatting-and-comment-cleanups.patch: libfcoe: formatting and comment cleanups (fate#306857, fate#306859, bnc#551175). - patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch: modify change_queue_depth to take in reason why it is being called (fate#306857, fate#306859, bnc#551175). - patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch: scsi error: have scsi-ml call change_queue_depth to handle QUEUE_FULL (fate#306857, fate#306859, bnc#551175).- patches.suse/dm-mpath-accept-failed-paths: Fixup patch to apply.Port patches from SLES11: - patches.fixes/scsi-dh-queuedata-accessors: Kernel bug triggered in multipath (bnc#486001). - patches.suse/dm-mpath-accept-failed-paths: Refresh. - patches.suse/dm-mpath-detach-existing-hardware-handler: multipath: detach existing hardware handler if none was specified. - patches.suse/dm-mpath-requeue-for-stopped-queue: Delete.- patches.suse/dm-mpath-evaluate-request-result-and-sense: multipath: Evaluate request result and sense code (FATE#303695,bnc#433920,bnc#442001).- rpm/kernel-binary.spec.in: Kill support for kernel-$flavor symbols, we need a unified kernel-source for all flavors.- patches.fixes/bnx2i-use-common-iscsi-suspend-queue: bnx2i: use common iscsi suspend queue (FATE#307215). - patches.fixes/iscsi-class-modify-handling-of-replacement-time: iscsi class: modify handling of replacement timeout (FATE#307215). - patches.fixes/iser-set-tgt-and-lu-reset-timeout: iser: set tgt and lu reset timeout (FATE#307215). - patches.fixes/libiscsi-add-warm-target-reset-tmf-support: libiscsi: add warm target reset tmf support (FATE#307215). - patches.fixes/libiscsi-check-tmf-state-before-sending-pdu: libiscsi: Check TMF state before sending PDU (FATE#307215). - patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject: libiscsi: fix login/text checks in pdu injection code (FATE#307215). - patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl: add scsi target reset support to scsi ioctl. - patches.fixes/scsi-devinfo-update-hitachi-entries: scsi_devinfo: update Hitachi entries (v2). - patches.fixes/scsi-fc-class-failfast-bsg-requests: [SCSI] fc class: fail fast bsg requests. - patches.drivers/cxgb3i: Delete. - patches.drivers/cxgb3i-fixed-offload-array-size: Delete. - patches.fixes/disable-lro-per-default: Delete.- patches.fixes/scsi_dh-always-attach-sysfs: scsi_dh: create sysfs file, dh_state for all SCSI disk devices. - patches.fixes/scsi_dh-change-activate-interface: scsi_dh: Change the scsidh_activate interface to be asynchronous (bnc#556144). - patches.fixes/scsi_dh-make-alua-handler-asynchronous: scsi_dh: Make alua hardware handler's activate() async (bnc#556144). - patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous: scsi_dh: Make hp hardware handler's activate() async (bnc#556144). - patches.fixes/scsi_dh-make-rdac-handler-asynchronous: scsi_dh: Make rdac hardware handler's activate() async (bnc#556144).- patches.drivers/qla4xxx-5.01.00-k8_sles11-03-update: Delete. - patches.drivers/qla4xxx-sles11-update: Delete.- Update config files. - patches.drivers/hpsa: hpsa: New driver SCSI driver for HP Smart Array (FATE#307153,bnc#555855). - supported.conf: Mark hpsa as supported.- patches.arch/s390-01-qeth-isolation.patch: qeth: Exploit QDIO Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015). - patches.arch/s390-02-01-cex3-init-msg.patch: zcrypt: initialize ap_messages for cex3 exploitation (bnc#555200,LTC#57825,FATE#307112). - patches.arch/s390-02-02-cex3-special-command.patch: zcrypt: special command support for cex3 exploitation (bnc#555200,LTC#57825,FATE#307112). - patches.arch/s390-02-03-cex3-device.patch: zcrypt: add support for cex3 device types (bnc#555200,LTC#57825,FATE#307112). - patches.arch/s390-02-04-cex3-use-def.patch: zcrypt: use definitions for cex3 (bnc#555200,LTC#57825,FATE#307112). - patches.arch/s390-02-05-zcrypt-speed-cex2c.patch: zcrypt: adjust speed rating between cex2 and pcixcc (bnc#555200,LTC#57825,FATE#307112). - patches.arch/s390-02-06-zcrypt-speed-cex3.patch: zcrypt: adjust speed rating of cex3 adapters (bnc#555200,LTC#57825,FATE#307112). - patches.arch/s390-sles11sp1-01-qeth-isolation.patch: Delete.- patches.arch/s390-sles11sp1-01-qeth-isolation.patch: qeth: Exploit QDIO Data Connection Isolation (bnc#555199,LTC#57826,FATE#307015).- scripts/sequence-patch.sh: Add automatic generation of supported modules list.- Update config files: Enable CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS- patches.suse/acpi-generic-initramfs-table-override-support: ACPI: generic initramfs table override support (bnc#533555). - patches.suse/init-move-populate_rootfs-back-to-start_kernel: init: move populate_rootfs back to start_kernel (bnc#533555).- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: incorporate "crypto: ghash-intel - Hard-code pshufb" fix- patches.suse/hung_task_timeout-configurable-default: hung_task_timeout: configurable default (bnc#552820). - Default to runtime-disabled on all flavors except debug.- patches.fixes/kvm-ioapic.patch: Ignore apic polarity (bnc#556564). - patches.fixes/kvm-macos.patch: Implement some missing intercepts so osx doesn't blow up (bnc#556564).- supported.conf: mark missing 10Gb drivers as supported (bnc#555793)- patches.drivers/aacraid-24701-update: Problems with aacraid (bnc#524242,FATE#307437).Cleanup patches for series2git: - patches.apparmor/apparmor.diff: Refresh. - patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: Refresh. - patches.suse/bootsplash: Refresh. - patches.suse/nfs4acl-ext3.diff: Refresh. - patches.suse/silent-stack-overflow-2.patch: Refresh. - patches.suse/suse-ppc32-mol.patch: Refresh. - patches.suse/xfs-dmapi-src: Refresh.- Update config files to enable pv-ops for KVM clock. (bnc#556135)- patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler: ALSA: hda - select IbexPeak handler for Calpella (FATE#306783). - patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device: ALSA: hda - vectorize get_empty_pcm_device() (FATE#306783). - patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI: ALSA: hda - allow up to 4 HDMI devices (FATE#306783). - patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references: ALSA: hda - convert intelhdmi global references to local parameters (FATE#306783). - patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout: ALSA: hda - remove intelhdmi dependency on multiout (FATE#306783). - patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi: ALSA: hda - use pcm prepare/cleanup callbacks for intelhdmi (FATE#306783). - patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks: ALSA: hda - reorder intelhdmi prepare/cleanup callbacks (FATE#306783). - patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi: ALSA: hda - vectorize intelhdmi (FATE#306783). - patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels: ALSA: hda - get intelhdmi max channels from widget caps (FATE#306783). - patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin: ALSA: hda - auto parse intelhdmi cvt/pin configurations (FATE#306783). - patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config: ALSA: hda - remove static intelhdmi configurations (FATE#306783). - patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free: ALSA: hda - Reset pins of IDT/STAC codecs at free (bnc#544779). - patches.drivers/alsa-sp1-hda-13-add-reboot-notifier: ALSA: hda - Add reboot notifier to each codec (bnc#544779). - patches.drivers/alsa-sp1-hda-14-add-missing-export: ALSA: hda - Add missing export for snd_hda_bus_reboot_notify (bnc#544779). - patches.drivers/alsa-sp1-hda-15-fix-build-warning: ALSA: hda - Add a proper ifdef to a debug code (FATE#306783). - patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix: ALSA: hda - Fix detection of dual headphones (bnc#556532).- patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch: crypto: ghash - Add PCLMULQDQ accelerated implementation (FATE#306883, bnc#554578). - Update config files: set CRYPTO_GHASH_CLMUL_NI_INTEL=m - patches.xen/xen3-patch-2.6.28: Refresh to apply cleanly- patches.arch/kvm-only-export-selected-pv-ops-feature-structs: Only export selected pv-ops feature structs (bnc#556135). - patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic: Replace kvm io delay pv-ops with linux magic (bnc#556135). - patches.arch/kvm-split-paravirt-ops-by-functionality: Split paravirt ops by functionality (bnc#556135). - patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature: Split the KVM pv-ops support by feature (bnc#556135). - patches.xen/xen3-patch-2.6.23: Refresh. - patches.xen/xen3-patch-2.6.31: Refresh.- patches.suse/kbuild-icecream-workaround: Delete.- Update config files. Also enable CONFIG_DMAR (fate#306796) for vanilla flavors- Update config files. Do the same for i386- Update config files. Enabling CONFIG_DMAR (fate#306796), introduces these changes: +CONFIG_HAVE_INTEL_TXT=y - # CONFIG_DMAR is not set +CONFIG_DMAR=y +# CONFIG_DMAR_DEFAULT_ON is not set +CONFIG_DMAR_FLOPPY_WA=y +# CONFIG_INTEL_TXT is not set Done for x86_64 for now only.- patches.fixes/hid-fixup-ncr-quirk.patch: HID: fixup quirk for NCR devices (bnc#548807).- rpm/*.spec.in, rpm/kernel-module-subpackage: add Provides: multiversion(kernel) to binary kernel packages, kernel-source, kernel-syms and all KMPs so that zypp can be configured to keep multiple versions of these packages (fate#305311).- Disable LGUEST on x86 32. It doesn't build properly without PARAVIRT.- patches.fixes/zisofs-large-pagesize-read.patch: zisofs: Implement reading of compressed files when PAGE_CACHE_SIZE > compress block size (bnc#540349).- Update config files.- Disable PARAVIRT_GUEST on x86 32 and 64.- patches.drivers/libata-ahci-aspire-3810t-noncq: ahci: disable NCQ on Aspire 3810t (bnc#522790).- Update config files.- Update config files. Disable CONFIG_CC_STACKPROTECTOR on all x86 kernels except debug. Overhead is prohibitive.- patches.suse/files-slab-rcu.patch: SLAB_DESTROY_BY_RCU for file slab.- Update config files. Vanilla doesn't have unwinder, trace selects options which select frame pointers.- Disable FRAME_POINTER on i386 and x86-64, all kernels. Unwind info should provide all this functionality.- patches.fixes/nfs-honour-server-preferred-io-size: NFS: Honour server-preferred io sizes (bnc#550648).- patches.fixes/nfs-slot-table-alloc: Don't fail allocations for the slot table when mounting an NFS filesystem (bnc#519820).- patches.arch/x86_amd_fix_erratum_63.patch: x86/amd-iommu: Workaround for erratum 63 (bnc#548274).- Disabled PARAVIRT_GUEST on ia64/trace and ia64/vanilla.- patches.suse/kdb_x86_fix_hang.patch: X86 KDB: Reduce timeout for blinking LEDs (bnc#528811).- rpm/kernel-binary.spec.in: fix last change.- Update Xen patches to 2.6.32-rc6 and c/s 941. - Update Xen config files. - supported.conf: Add domctl.- rpm/kernel-binary.spec.in: add the /lib/modules/.../{source,devel} symlinks to the -devel package (bnc#548728).- rpm/kernel-binary.spec.in: obsolete kvm-kmp.- Update to 2.6.32-rc6. - 2 patches eliminated - NR_CPUS=4096 on ia64/vanilla again- Performance: Disabled CONFIG_PARAVIRT on all flavors.- Delete unused 2.6.31.y patches.- supported.conf: add libfcoe and fix typo.- supported.conf: update so that supported modules don't require unsupported ones by adding following modules: async_pq async_raid6_recov ath blkback_pagemap crypto_hash drm_kms_helper fddi fscache lib80211 libfcoe libipw libiscsi_tcp llc md_mod mdio mfd_core nf_defrag_ipv4 p8022 psnap raid6_pq tr ttm ucb1400_core v4l2_compat_ioctl32.- config.conf: remove kernel-ps3-devel (does not exist) and kernel-debug-devel (not needed most of the time) from kernel-syms.- Update config files: Set CONFIG_HZ to 100 for zSeries (bnc#552564).- Update config files: Increase MAX_RAW_DEVS to 4096 on zSeries (bnc#552565).- rpm/kernel-binary.spec.in: delete stray text.- config.conf: remove the ec2 flavor from kernel-syms, most KMPs don't make any sense on ec2 (http://lists.opensuse.org/opensuse-kernel/2009-11/msg00001.html).- rpm/kernel-binary.spec.in: obsolete also brocade-bfa-kmp.- rpm/kernel-source.spec.in: add split-modules to the src.rpm.- rpm/kernel-binary.spec.in: obsolete enic-kmp and fnic-kmp.- rpm/kernel-binary.spec.in: obsolete kmps by their full name, not just the foo-kmp virtual dependency (bnc#472410).- Update ppc/ps3 config for CONFIG_UTRACE- patches.trace/utrace-core: Update for SP1 (FATE# 304321)- patches.fixes/nfsd-acl.patch: nfsd: Fix sort_pacl in fs/nfsd/nf4acl.c to actually sort groups (bnc#549748).- Update config files: CONFIG_NTFS_FS=n We handle NTFS through FUSE these days.- Update config files: CONFIG_NETLABEL=y CONFIG_SECURITY_NETWORK_XFRM=y (fate#307284)- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: fix compilation failure for configs with CONFIG_SMP=n and CONFIG_FAR_GROUP_SCHED=y- Update config files (MINIX_FS=m globally, NTFS_FS off for -ec2). - supported.conf: Add fs/minix.- patches.fixes/percpu-allow-pcpu_alloc-to-be-called-with-IRQs-off: percpu: allow pcpu_alloc() to be called with IRQs off (bnc#548119). - patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: Update to newer version which is going to be merged upstream.- Update to 2.6.32-rc5-git3.- Update config files: set NR_CPUS back to 2048 for ia64/vanilla until there is a fix in mainline.- patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: fix for !CONFIG_SMP.- patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch: Cleanup and make boot splash work with KMS (bnc#544645).- Re-enabled NR_CPUS=4096 on ia64. - patches.fixes/sched-move-rq_weight-data-array-out-of-percpu: sched: move rq_weight data array out of .percpu (bnc#548119).- Update x86-64 Xen config file (NR_CPUS=512). - Refresh a few Xen patches. - rpm/kernel-binary.spec.in: Handle -ec2 flavor. - rpm/package-descriptions: Describe -ec2 flavor. - rpm/post.sh: Handle -ec2 flavor.- patches.fixes/use-totalram_pages: Delete.- config.conf: Add -ec2 configs (fate#305273) - Add ec2 config files. - patches.xen/xen-unpriv-build: No need to build certain bits when building non-privileged kernel. - supported.conf: Add fs/nls/nls_base.- Temporarily reduce NR_CPUS to 2048 on ia64 to avoid build failures (bnc#548119)- rpm/kernel-binary.spec.in: [s390x] ignore errors from dwarfextract for now.- Update config files: set CONFIG_ENTERPRISE_SUPPORT=y.- rpm/kernel-binary.spec.in: fix the logic for determining the base package in the %post scripts.- Update config files.- Update to 2.6.32-rc5.- patches.rpmify/ia64-sn-fix-percpu-warnings: ia64/sn: fix percpu warnings.- Update config files: disable MTD_GPIO_ADDR, VME_CA91CX42 and VME_TSI148 on ia64 to fix build.- rpm/kernel-binary.spec.in: undo the -base merge for now.- rpm/kernel-source.spec.in: mark kernel-source as arch dependent again. The content is noarch, but changing the rpm architecture breaks online update.- patches.xen/xen3-patch-2.6.32-rc4: Fix AGP for PowerPC.- Update Xen patches to 2.6.32-rc4 and c/s 938. - config.conf: Re-enable Xen. - Update x86 config files.- patches.rpmify/staging-missing-sched.h: Added missing sites.- patches.rpmify/staging-missing-sched.h: staging: Complete sched.h removal from interrupt.h.- patches.apparmor/ptrace_may_access-fix: apparmor: ptrace_may_access -> ptrace_access_check.- Update config files.- Updated to 2.6.32-rc4. - Eliminated 4 patches. - Refreshed context.- patches.apparmor/apparmor.diff: Refresh and enable.- Cleanup unused patches: - patches.fixes/iwl3945-fix-rfkill.patch: Delete. - patches.fixes/iwlagn-fix-rfkill.patch: Delete. - patches.suse/kdb-serial-8250: Delete. - patches.suse/kdb-sysctl-context: Delete.- patches.fixes/scsi-add-tgps-setting: Refresh and re-enable.- patches.arch/x86_64-hpet-64bit-timer.patch: Refresh and re-enable.- patches.suse/kbuild-icecream-workaround: Refresh and re-enable.- patches.rpmify/spin_is_contended-fix: Delete.- patches.arch/mm-avoid-bad-page-on-lru: Refresh and re-enable.- Update vanilla config files.- Update to 2.6.32-rc3.- patches.rpmify/tsi148-dependency: vme/tsi148: Depend on VIRT_TO_BUS- patches.suse/kdb-x86-build-fixes: kdb: Use $srctree not $TOPDIR in Makefile.- patches.rpmify/winbond-prepare_multicast: winbond: implement prepare_multicast and fix API usage. - patches.rpmify/winbond_beacon_timers: winbond: use bss_conf->beacon_int instead of conf->beacon_int. - patches.rpmify/winbond-build-fixes: Delete.- patches.rpmify/rtl8192e-build-fixes: rtl8192e: Add #include .- patches.suse/kdb-build-fixes: kdb: Build fixes.- patches.rpmify/iio-s390-build-fix: iio: Don't build on s390.- patches.rpmify/winbond-build-fixes: winbond: API fix.- Update vanilla config files.- Update config files.- Updated to 2.6.32-rc1 (AKA 2.6.32-rc2). - Eliminated 28 patches. - 14 patches need further review. - Xen and AppArmor are currently disabled. - USB support in KDB is disabled.- patches.kernel.org/patch-2.6.31.2-3: Linux 2.6.31.3. - major tty bugfix- patches.drivers/alsa-hda-alc268-automic-fix: ALSA: hda - Fix yet another auto-mic bug in ALC268 (bnc#544899).- patches.suse/block-seperate-rw-inflight-stats: Fix the regression, "iostat reports wrong service time and utilization", introduced by this patch (bnc#544926).- patches.suse/x86-mark_rodata_rw.patch: Delete. - patches.xen/xen3-x86-mark_rodata_rw.patch: Delete. - both of these were not being used anyway.- Update Xen patches to 2.6.31.2.- patches.drivers/alsa-hda-alc660vd-asus-a7k-fix: ALSA: hda - Add a workaround for ASUS A7K (bnc#494309).- refresh patch fuzz due to 2.6.31.2 import.- Update to Linux 2.6.31.2: - bugfixes, lots of them. - security fixes- patches.drivers/alsa-hda-alc861-toshiba-fix: ALSA: hda - Fix invalid initializations for ALC861 auto mode (bnc#544161).- Update config files. - patches.drivers/add-via-chrome9-drm-support.patch: Delete. The code never got upstream and looks incorrect.- patches.drivers/alsa-ctxfi-04-fix-surround-side-mute: ALSA: ctxfi: Swapped SURROUND-SIDE mute. - patches.drivers/alsa-hda-2.6.32-rc1-toshiba-fix: ALSA: hda - Added quirk to enable sound on Toshiba NB200. - patches.drivers/alsa-hda-2.6.32-rc2: ALSA: backport 2.6.32-rc2 fixes for HD-audio.- Update Xen patches to 2.6.31.1 and c/s 934.- rpm/kernel-binary.spec.in: obsolete quickcam-kmp (bnc#543361).- Update to 2.6.31.1 - lots of bugfixes - security fixes- Disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch with +trenn (bnc#542767)- Update config files. Build pci-stub driver into the kernel so that built in pci drivers can be blocked from attaching to devices.- rpm/kernel-module-subpackage: when building against Linus' kernels (2.6.x), append a .0 to the kernel version embedded in the KMP version, to ensure that such KMP is older than a KMP built against a subsequent stable kernel (2.6.x.y, y > 0).- Update config files.- patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch: Ported to 2.6.31 (bnc#533555).- rpm/postun.sh: do not remove the bootloader entry if the kernel version didn't change (bnc#533766).- rpm/postun.sh: remove dead code.- patches.fixes/reiserfs-replay-honor-ro: reiserfs: Properly honor read-only devices (bnc#441062).- patches.arch/acpi_srat-pxm-rev-ia64.patch: Use SRAT table rev to use 8bit or 16/32bit PXM fields (ia64) (bnc#503038). - patches.arch/acpi_srat-pxm-rev-store.patch: Store SRAT table revision (bnc#503038). - patches.arch/acpi_srat-pxm-rev-x86-64.patch: Use SRAT table rev to use 8bit or 32bit PXM fields (x86-64) (bnc#503038).- patches.drivers/alsa-hda-2.6.32-rc1: ALSA HD-audio backport from 2.6.32-rc1.- Update Xen patches to 2.6.31 final.Backport attach inhibition for builtin pci drivers from 2.6.32-rc. - patches.drivers/pci-separate-out-pci_add_dynid: pci: separate out pci_add_dynid(). - patches.drivers/pci_stub-add-ids-parameter: pci-stub: add pci_stub.ids parameter.Backport patches from 2.6.32-rc to ease ossp testing. - Update config files - SOUND_OSS_CORE_PRECLAIM is set to N. - patches.drivers/implement-register_chrdev: chrdev: implement __register_chrdev(). - patches.drivers/sound-make-oss-device-number-claiming-optional: sound: make OSS device number claiming optional and schedule its removal. - patches.drivers/sound-request-char-major-aliases-for-oss-devices: sound: request char-major-* module aliases for missing OSS devices.- patches.suse/novfs-client-module: Update header todo list with locking nits (semaphore used as mutex / completion)- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor (bnc#538849)- patches.suse/crasher-26.diff: Add capability to also trigger a kernel warning.- patches.suse/block-seperate-rw-inflight-stats: Seperate read and write statistics of in_flight requests (fate#306525).- patch fuzz removal now that 2.6.31 is the base.- Update config files. CONFIG_MOUSE_PS2_ELANTECH=y CONFIG_MOUSE_PS2_TOUCHKIT=y (bnc#525607)- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek issues, add another Nvidia HDMI device id- Updated to 2.6.31-final.- refresh patches for fuzz due to upstream changes- Update to 2.6.31-rc9 - obsoletes: - patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708 - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix- patches.fixes/scsi_dh-Provide-set_params-interface-in-emc-device-handler.patch: scsi_dh: Provide set_params interface in emc device handler (bnc#521607). - patches.fixes/scsi_dh-Use-scsi_dh_set_params-in-multipath.patch: scsi_dh: Use scsi_dh_set_params() in multipath. (bnc#521607). - patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch: scsi_dh: add the interface scsi_dh_set_params() (bnc#521607).- rpm/kernel-source.spec.in: delete obsolete macro.- rpm/kernel-binary.spec.in: require minimum versions of module-init-tools and perl-Bootloader, the %post script is no longer compatible with ancient versions.- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.31, the previous <= 2.6.30-1 didn't catch some cases obviously (bnc#533766).- Enabled CONFIG_SCSI_DEBUG=m (bnc#535923).- kabi/severities, rpm/kabi.pl, rpm/kernel-binary.spec.in, - rpm/kernel-source.spec.in: Use a simple script to check kabi by comparing Module.symvers files (similar to the old SLES9 one). - rpm/built-in-where: Delete. - rpm/symsets.pl: Delete. - kabi/commonsyms: Delete. - kabi/usedsyms: Delete.- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: kbuild: rebuild fix for Makefile.modbuiltin.- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: Delete, it was wrong.- Update Xen config files.- Update Xen patches to 2.6.31-rc8 and c/s 931. - patches.fixes/use-totalram_pages: use totalram_pages in favor of num_physpages for sizing boot time allocations (bnc#509753). - patches.xen/xen-x86-per-cpu-vcpu-info: x86: use per-cpu storage for shared vcpu_info structure.- patches.drivers/alsa-hda-2.6.32-pre: Refresh; merged fixes for IDT92HD73* codecs- patches.apparmor/apparmor.diff: Update to latest git.- patches.arch/add_support_for_hpet_msi_intr_remap.patch: intr-remap: generic support for remapping HPET MSIs (bnc#532758). - patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch: x86: arch specific support for remapping HPET MSIs (bnc#532758).- rpm/package-descriptions: fix description of the x86_64 kernel-desktop package (bnc#535457).- Update to 2.6.31-rc8. - Eliminated 1 patch.- patches.drivers/alsa-hda-fix-01-add-missing-mux-for-vt1708: ALSA: hda - Add missing mux check for VT1708 (bnc#534904). - patches.drivers/alsa-hda-fix-02-mbp31-hp-fix: ALSA: hda - Fix MacBookPro 3,1/4,1 quirk with ALC889A. - patches.drivers/alsa-hda-2.6.32-pre: Refresh.- patches.drivers/alsa-hda-[0-9]*: Delete, fold into a single patch patches.drivers/alsa-hda-2.6.32-pre- Update config files. - patches.drivers/samsung-backlight-driver.patch: Delete.- scripts/run_oldconfig.sh: Consistently use $prefix.- rpm/kernel-binary.spec.in: obsolete %name-base <= 2.6.30-1 (bnc#530752).- Update to 2.6.31-rc7. - Eliminated 3 patches.- Update config files: Enable CONFIG_PROC_EVENTS.- rpm/post.sh: Do not call /sbin/module_upgrade, the rename happened before SLES10.- rpm/module-renames: Delete, we don't need to care about modules renamed before SLES10. Also, current mkinitrd gets the list of storage drivers based on pci ids.- rpm/post.sh, rpm/postun.sh: drop support for SLE10, the package can't be installed on SLE10 as is, so why not make it more adventurous.- rpm/kernel-binary.spec.in: remove product(openSUSE) supplements from the -extra subpackage which doesn't exist on openSUSE anymore.- patches.drivers/alsa-hda-fix-0*: Backport from 2.6.31-rc fixes (to be merged) - patches.drivers/alsa-hda-32-Reword-auto-probe-messages: Refresh. - patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh.- Update config files (modularize crypto again). - supported.conf: Add resulting modules as supported.- Update Xen patches to 2.6.31-rc6 and c/s 928.- patches.drivers/alsa-hda-48-alc268-oops-fix: ALSA: hda - Fix invalid capture mixers with some ALC268 models.- patches.drivers/usb-storage-increase-the-bcd-range-in-sony-s-bad-device-table.patch: USB: storage: increase the bcd range in Sony's bad device table. (bnc#466554).- patches.drivers/samsung-backlight-driver.patch: Change the range from 0-255 to 0-7 to make it easier for HAL to handle the device without a need for custom scripts.- Updated to 2.6.31-rc6.- patches.drivers/samsung-backlight-driver.patch: added N120 support and some other devices that were integrated into the driver from upstream.- supported.conf: set kernel/fs/dlm/dlm as unsupported, since fs/dlm is provided separately in the ocfs2 KMP package- patches.drivers/alsa-hda-47-idt92hd8x-fix: ALSA: hda - Fix / clean up IDT92HD83xxx codec parser (bnc#531533).- Update config files. - patches.drivers/samsung-backlight-driver.patch: Samsung backlight driver (bnc#527533, bnc#531297).- rpm/kernel-binary.spec.in: add some hints how to set the %jobs macro (bnc#530535).- rpm/modversions: for overriden functions, keep the keyword in - -pack.- Updated to 2.6.31-rc5-git9. - Eliminated 7 patches.- patches.drivers/alsa-hda-42-hp-more-quirk: ALSA: hda - Add quirks for some HP laptops (bnc#527284). - patches.drivers/alsa-hda-4[35]-*: Improve Realtek codec mic support - patches.drivers/alsa-hda-46-stac-lo-detect-fix: ALSA: hda - Enable line-out detection only with speakers (bnc#520975).- rpm/split-modules, rpm/kernel-binary.spec.in: add the base files also to the main package. That way, kernel-$flavor-base is not needed in normal setups (fate#307154).- rpm/find-provides: no rpm provides for drivers/staging. It's higly unlikely that any KMP would require them and they just take up space in the rpm metadata.- patches.drivers/alsa-hda-41-msi-white-list: ALSA: hda - Add a white-list for MSI option (bnc#529971).- patches.drivers/alsa-hda-39-dont-override-ADC-definitions: ALSA: hda - Don't override ADC definitions for ALC codecs (bnc#529467). - patches.drivers/alsa-hda-40-auto-mic-support-for-realtek: ALSA: hda - Add auto-mic support for Realtek codecs.- rpm/kernel-source.spec.in: do not rename kernel-source.rpmlintrc for the -rt variant.- patches.rpmify/staging-rtl8192su-fix-build-error.patch: move to patches.rpmify to fix vanilla ppc builds.- patches.drivers/alsa-hda-38-fix-ALC269-vmaster: ALSA: hda - Add missing vmaster initialization for ALC269 (bnc#527361).- patches.drivers/alsa-hda-33-IDT-codec-updates: Refresh.- patches.fixes/recordmcount-fixup: recordmcount: Fixup wrong update_funcs() call.- patches.drivers/alsa-soc-fsl-build-fixes: ASoC: Add missing DRV_NAME definitions for fsl/* drivers (to fix PPC builds)- patches.arch/wmi-Fix-kernel-panic-when-stack-protection-enabled: wmi: Fix kernel panic when stack protection enabled. (bnc#529177). - supported.conf: Update HD-audio modules- make config/s390/vanilla a symlink again.- rpm/kernel-binary.spec.in: do not manually extract vmlinux debuginfo on ppc(64), rpm does it itself.- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: Added kernel-spec-macros to Sources.- patches.suse/linux-2.6.29-even-faster-kms.patch: Disabled. It doesn't wake up the display on certain hardware.- rpm/kernel-binary.spec.in: do not split the -extra subpackage on openSUSE (bnc#528097).- Updated to 2.6.31-rc5-git3. - Eliminated 4 patches.- kernel-source.changes: remove old (pre 2008) messages, and move 2008 to kernel-source.changes.old. No need to spam email addresses that are no longer with the company for failed kernel builds.- patches.drivers/staging-rtl8192su-fix-build-error.patch: Staging: rtl8192su: fix build error.- patches.suse/supported-flag-enterprise: Make the supported flag configurable at build time (bnc#528097).- Update config files. disable CONFIG_DRM_RADEON_KMS as per bnc#527910 for vanilla builds- Update config files. disable CONFIG_DRM_RADEON_KMS as per bnc#527910- patches.rpmify/ttm-pgprot-fixes: ttm: Use pgprot_val for comparing pgprot_t.- patches.drivers/alsa-hda-3[0-8]*: ALSA HD-audio updates - Update config files: enable CONFIG_SND_HDA_CIRRUS=y- Update config files: CONFIG_FRAME_WARN=2048 on all arches, fixes ppc build failures.- patches.xen/xen3-patch-2.6.31-rc4-rc5: Fixup pgtable port- Updated to 2.6.31-rc5. - Eliminated 11 patches.- Update config files to enable CONFIG_DLM_DEBUG.- Update Xen patches to 2.6.31-rc4 and c/s 916. - patches.xen/xen3-driver-core-misc-add-nodename-support-for-misc-devices.patch: Delete. - patches.xen/xen3-panic-on-io-nmi.diff: Delete. - config.conf: Re-enable Xen. - Update config files.- Update config files: revert to CONFIG_SND=m and enabled again CONFIG_SND_DEBUG=y- Update config files: disable CONFIG_PRISM2_USB on ia64 and ppc.- Update config files: disable CONFIG_FB_UDL on ia64.- config.conf: Remove duplicate i386/desktop entry.- patches.drivers/alsa-hda-29-Add-quirk-for-Dell-Studio-1555: ALSA: hda - Add quirk for Dell Studio 1555 (bnc#525244).- patches.drivers/alsa-pcm-*: ALSA PCM fixes - Fix/enhancement patches backported from ALSA tree * patches.drivers/alsa-core-Add-new-TLV-types-for-dBwith-min-max: ALSA: Add new TLV types for dBwith min/max (for usb). * patches.drivers/alsa-ctxfi-*: SB X-Fi support (FATE#306935). * patches.drivers/alsa-hda-*: More HD-audio fixes * patches.drivers/alsa-ice-*: ICE17xx fixes * patches.drivers/alsa-midi-*: MIDI fixes * patches.drivers/alsa-usb-*: USB-audio/MIDI fixes - Remove obsoleted patches: patches.drivers/alsa-ad1984a-hp-quirks, patches.drivers/alsa-ca0106-capture-bufsize-fix, patches.drivers/alsa-ctxfi - Update config files.- rpm/kernel-source.spec.in, scripts/tar-up.sh: really drop config-subst from the package.- rpm/kernel-binary.spec.in: manually create a -devel-debuginfo subpackage with vmlinux.debug to fix build with new rpm. This works for ix86 and x86_64, other archs might need further fixes.- patches.rpmify/rtl8192su-build-fix: more ia64 fixes- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes.- patches.rpmify/rtl8192su-build-fix: rtl8192su: compile fixes.- config.conf: Re-enabled trace flavor.- Update config files: Disabled optimize for size on i386 and x86_64 across all flavors.- Update to 2.6.31-rc4.- rpm/kernel-binary.spec.in: cleanup %cpu_arch_flavor definition, make %symbols a variable and only use it for selecting patches. Also drop the RT symbol as there are not rt patches currently.- Change the s390(x) config layout so that each arch has its own subdirectory, as it is done for other archs. s390/vanilla is a symlink to s390x/vanilla.- rpm/kernel-*.spec.in, rpm/kernel-spec-macros: move some common macros to kernel-spec-macros.- patches.drivers/alsa-ca0106-capture-bufsize-fix: ALSA: ca0106 - Fix the max capture buffer size (bnc#521890).- patches.drivers/alsa-ctxfi: Add SoundBlaster X-Fi support (FATE#306935). - Update config files.These are mainline: - patches.drivers/cpufreq_add_cpu_number_paramater_1.patch: Delete. - patches.drivers/cpufreq_add_idle_microaccounting_6.patch: Delete. - patches.drivers/cpufreq_change_load_calculation_2.patch: Delete. - patches.drivers/cpufreq_changes_to_get_cpu_idle_us_5.patch: Delete. - patches.drivers/cpufreq_get_cpu_idle_time_changes_3.patch: Delete. - patches.drivers/cpufreq_parameterize_down_differential_4.patch: Delete.These are mainline: - patches.arch/acpi_video_thinkpad_exclude_IGD_devices.patch: Delete. - patches.arch/thinkpad_fingers_off_backlight_igd.patch: Delete.- rpm/kernel-binary.spec.in: remove double-slash from include2/asm symlink.- config.conf, rpm/mkspec: exclude trace, kdump and ia64/debug from the kernel-syms package. These flavor are often excluded in KMPs, so excluding them from kernel-syms reduces useless build dependencies. KMPs can buildrequire kernel-$flavor-devel explicitely if desired.Delete obsolete apparmor patches. - patches.apparmor/add-path_permission.diff: Delete. - patches.apparmor/add-security_path_permission: Delete. - patches.apparmor/apparmor-2.6.25.diff: Delete. - patches.apparmor/apparmor-audit.diff: Delete. - patches.apparmor/apparmor-intree.diff: Delete. - patches.apparmor/apparmor-lsm.diff: Delete. - patches.apparmor/apparmor-main.diff: Delete. - patches.apparmor/apparmor-misc.diff: Delete. - patches.apparmor/apparmor-module_interface.diff: Delete. - patches.apparmor/apparmor-network.diff: Delete. - patches.apparmor/apparmor-path_permission: Delete. - patches.apparmor/apparmor-ptrace-2.6.27.diff: Delete. - patches.apparmor/apparmor-rlimits.diff: Delete. - patches.apparmor/d_namespace_path.diff: Delete. - patches.apparmor/d_namespace_path_oops_fix.diff: Delete. - patches.apparmor/do_path_lookup-nameidata.diff: Delete. - patches.apparmor/export-security_inode_permission-for-aufs: Delete. - patches.apparmor/file-handle-ops.diff: Delete. - patches.apparmor/fix-complain.diff: Delete. - patches.apparmor/fix-vfs_rmdir.diff: Delete. - patches.apparmor/fork-tracking.diff: Delete. - patches.apparmor/fsetattr-reintro-ATTR_FILE.diff: Delete. - patches.apparmor/fsetattr-restore-ia_file.diff: Delete. - patches.apparmor/fsetattr.diff: Delete. - patches.apparmor/remove_suid.diff: Delete. - patches.apparmor/security-create.diff: Delete. - patches.apparmor/security-getxattr.diff: Delete. - patches.apparmor/security-link.diff: Delete. - patches.apparmor/security-listxattr.diff: Delete. - patches.apparmor/security-mkdir.diff: Delete. - patches.apparmor/security-mknod.diff: Delete. - patches.apparmor/security-readlink.diff: Delete. - patches.apparmor/security-removexattr.diff: Delete. - patches.apparmor/security-rename.diff: Delete. - patches.apparmor/security-rmdir.diff: Delete. - patches.apparmor/security-setattr.diff: Delete. - patches.apparmor/security-setxattr.diff: Delete. - patches.apparmor/security-symlink.diff: Delete. - patches.apparmor/security-unlink.diff: Delete. - patches.apparmor/security-xattr-file.diff: Delete. - patches.apparmor/sysctl-pathname.diff: Delete. - patches.apparmor/unambiguous-__d_path.diff: Delete. - patches.apparmor/vfs-getxattr.diff: Delete. - patches.apparmor/vfs-link.diff: Delete. - patches.apparmor/vfs-listxattr.diff: Delete. - patches.apparmor/vfs-mkdir.diff: Delete. - patches.apparmor/vfs-mknod.diff: Delete. - patches.apparmor/vfs-notify_change.diff: Delete. - patches.apparmor/vfs-removexattr.diff: Delete. - patches.apparmor/vfs-rename.diff: Delete. - patches.apparmor/vfs-rmdir.diff: Delete. - patches.apparmor/vfs-setxattr.diff: Delete. - patches.apparmor/vfs-symlink.diff: Delete. - patches.apparmor/vfs-unlink.diff: Delete.- Update config files for bnc#522686 -- set CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=65536.- Update config files: Disabled optimize for size on all flavors (FATE#305694)- Update config files.- Update to 2.6.30.2 - lots of security and bug fixes - Obsoleted patches.fixes/firmware-memmap-64bit.diff- rpm/split-modules: set LC_COLLATE=C- rpm/package-descriptions: Added desktop description.- rpm/package-descriptions: Added desktop description.- Add -desktop flavors for i386 and x86_64 - Disabled group scheduler and groups - Disabled optimize for size - Enabled full preemption - Set HZ=1000- Add -desktop flavors for i386 and x86_64 (FATE#305694) - Disabled group scheduler and groups - Disabled optimize for size - Enabled full preemption - Set HZ=1000- patches.apparmor/apparmor.diff: ia64 build fix- rpm/kernel-binary.spec.in: simplify the add_dirs_to_filelist function and make it less chatty in build logs.- patches.apparmor/apparmor.diff: ia64 build fix- patches.apparmor/security-default-lsm: security: Define default LSM (bnc#442668).- patches.apparmor/apparmor.diff: AppArmor.- patches.apparmor/apparmor.diff: AppArmor.- patches.rpmify/sgi-hotplug-fixup: hotplug: fix sgi-hotplug attribute handling.- rpm/kernel-binary.spec.in: drop the config-subst script, use scripts/config instead.- rpm/kernel-binary.spec.in: fix debugsource generation.- rpm/split-modules: fix last change.- rpm/split-modules: fix for module names with underscores or dashes.- Update to 2.6.31-rc3. - Eliminated 2 patches.- rpm/kernel-binary.spec.in: annotate in which products the obsoleted kmps were last used, remove "ralink-rt2860-kmp" which I couldn't find anywhere.- rpm/kernel-binary.spec.in: obsolete btusb-kmp (bnc#514375).- rpm/kernel-binary.spec.in, rpm/split-modules: move generating of the base / main / unsupported module lists to a separate script. Avoids 6k modinfo calls and fixes module dependencies (bnc#512179).- rpm/kernel-binary.spec.in: fix include2/asm symlink (bnc#509680).- rpm/modversions: fix overriding of function symbols.- rpm/modversions: fix overriding of unknown symbols.- patches.suse/e1000e_allow_bad_checksum: Delete. - patches.suse/e1000e_call_dump_eeprom: Delete. - patches.suse/e1000e_use_set_memory_ro-rw_to_protect_flash_memory: Delete. Delete the leftover debugging patches for e1000e EEPROM corruption that are not needed anymore.- README.BRANCH: Update, kotd will become 11.2 eventually.- Update to 2.6.31-rc2.- Update to 2.6.31-rc1-git10. - Eliminated 28 patches. - Xen is disabled.- patches.suse/kbuild-generate-modules.builtin: kbuild: generate modules.builtin. - rpm/kernel-binary.spec.in: package modules.builtin for use by modprobe / mkinitrd.- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: simplify the patch applying loops to reduce noise in build logs.- rpm/kernel-binary.spec.in: chmod +x find-provides- rpm/kernel-binary.spec.in: do not "annotate" the packaged Modules.symvers - patches.suse/modpost-filter-out-built-in-depends: Delete.- patches.arch/ia64-page-migration: Fix compiler warning.- rpm/kernel-binary.spec.in: move /boot/symvers* files back to - base, these are needed during KMP installation.- patches.fixes/kbuild-fix-generating-of-.symtypes-files: kbuild: fix generating of *.symtypes files. - patches.suse/genksyms-add-override-flag.diff: Refresh. - rpm/kernel-binary.spec.in: create the *.symref files in the build directory- rpm/kernel-binary.spec.in: add Provides: kernel-{base,extra} to the subpackages (bnc#516827).- Update config files. revert the ACPI and thermal config changes: config/i386/pae and config/x86-64/default: CONFIG_ACPI_AC=m CONFIG_ACPI_BATTERY=m CONFIG_ACPI_BUTTON=m CONFIG_ACPI_VIDEO=m CONFIG_ACPI_FAN=m CONFIG_ACPI_PROCESSOR=m CONFIG_ACPI_THERMAL=m CONFIG_ACPI_CONTAINER=m CONFIG_X86_ACPI_CPUFREQ=m CONFIG_THERMAL=m- patches.suse/ec_merge_irq_and_poll_modes.patch: Delete. - patches.suse/linux-2.6.29-retry-root-mount.patch: Delete.- Update Xen patches to 2.6.30 and c/s 908. - Update Xen config files. - patches.xen/tmem: Transcendent memory ("tmem") for Linux.- Update config files. config/i386/pae and config/x86-64/default: CONFIG_ACPI_AC=y CONFIG_ACPI_BATTERY=y CONFIG_ACPI_BUTTON=y CONFIG_ACPI_VIDEO=y CONFIG_ACPI_FAN=y CONFIG_ACPI_PROCESSOR=y CONFIG_ACPI_THERMAL=y CONFIG_ACPI_CONTAINER=y CONFIG_X86_ACPI_CPUFREQ=y CONFIG_THERMAL=y- Update config files. config/i386/pae and config/x86-64/default: CONFIG_SND_TIMER=y CONFIG_SND_PCM=y CONFIG_SND_SEQUENCER=y CONFIG_SND_MIXER_OSS=y CONFIG_SND_PCM_OSS=y- Update config files. fix up config mistake in x86-64/default made in last commit.- Update config files. config/i386/pae and config/x86-64/default: CONFIG_VIDEO_OUTPUT_CONTROL=y CONFIG_SOUND=y CONFIG_SND=y- Update config files. config/i386/pae and config/x86-64/default: CONFIG_I2C=y CONFIG_HWMON=y- Update config files. config/i386/pae and config/x86-64/default: CONFIG_IPV6=y- Update config files. config/i386/pae and config/x86-64/default: CONFIG_HID=y CONFIG_USB_STORAGE=y- Update config files. config/i386/pae and config/x86-64/default: CONFIG_ATA_PIIX=Y- Update config files. config/i386/pae and config/x86-64/default: CONFIG_USB_EHCI_HCD=Y CONFIG_USB_OHCI_HCD=Y CONFIG_USB_UHCI_HCD=Y- Update config files. config/i386/pae and config/x86-64/default: CONFIG_CFG80211=Y CONFIG_LIB80211=Y CONFIG_MAC80211=Y CONFIG_ATH5K=Y- Update config files. config/i386/pae and config/x86-64/default: CONFIG_X86_MSR=Y CONFIG_X86_CPUID=Y- comment out broken acpi patch for the moment.- move the "preload" branch into master to get 2.6.30 working for Moblin. - Update config files. - patches.drivers/alsa-ad1984a-hp-quirks: ALSA: update HP quirks for Zenith & co (bnc#472789, bnc#479617, bnc#502425, bnc#503101). - patches.suse/driver-core-add-nodename-callbacks.patch: Driver Core: add nodename callbacks. - patches.suse/driver-core-aoe-add-nodename-for-aoe-devices.patch: Driver Core: aoe: add nodename for aoe devices. - patches.suse/driver-core-block-add-nodename-support-for-block-drivers.patch: Driver Core: block: add nodename support for block drivers.. - patches.suse/driver-core-bsg-add-nodename-for-bsg-driver.patch: Driver Core: bsg: add nodename for bsg driver. - patches.suse/driver-core-devtmpfs-driver-core-maintained-dev-tmpfs.patch: Driver Core: devtmpfs - kernel-maintained tmpfs-based /dev. - patches.suse/driver-core-drm-add-nodename-for-drm-devices.patch: Driver Core: drm: add nodename for drm devices. - patches.suse/driver-core-dvb-add-nodename-for-dvb-drivers.patch: Driver Core: dvb: add nodename for dvb drivers. - patches.suse/driver-core-input-add-nodename-for-input-drivers.patch: Driver Core: input: add nodename for input drivers. - patches.suse/driver-core-misc-add-nodename-support-for-misc-devices.patch: Driver Core: misc: add nodename support for misc devices.. - patches.suse/driver-core-raw-add-nodename-for-raw-devices.patch: Driver Core: raw: add nodename for raw devices. - patches.suse/driver-core-sound-add-nodename-for-sound-drivers.patch: Driver Core: sound: add nodename for sound drivers. - patches.suse/driver-core-usb-add-nodename-support-for-usb-drivers.patch: Driver Core: usb: add nodename support for usb drivers.. - patches.suse/driver-core-x86-add-nodename-for-cpuid-and-msr-drivers.patch: Driver Core: x86: add nodename for cpuid and msr drivers.. - patches.suse/ec_merge_irq_and_poll_modes.patch: ACPI: EC: Merge IRQ and POLL modes. - patches.suse/linux-2.6.29-dont-wait-for-mouse.patch: fastboot: remove "wait for all devices before mounting root" delay. - patches.suse/linux-2.6.29-enable-async-by-default.patch: enable async_enabled by default. - patches.suse/linux-2.6.29-even-faster-kms.patch: speed up kms even more. - patches.suse/linux-2.6.29-jbd-longer-commit-interval.patch: jbd: longer commit interval. - patches.suse/linux-2.6.29-kms-after-sata.patch: make kms happen after sata. - patches.suse/linux-2.6.29-retry-root-mount.patch: fastboot: retry mounting the root fs if we can't find init. - patches.suse/linux-2.6.29-silence-acer-message.patch: Silence acer wmi driver on non-acer machines. - patches.suse/linux-2.6.29-touchkit.patch: some new touch screen device ids . - patches.suse/uvcvideo-ignore-hue-control-for-5986-0241.patch: uvcvideo: ignore hue control for 5986:0241 (bnc#499152). - patches.suse/devtmpfs.patch: Delete.- scripts/sequence-patch.sh: fix bug in ketchup usage- Update to 2.6.30-final.- Update Xen patches to 2.6.30-rc8 and c/s 898. - Update Xen config files. - patches.xen/pci-reserve: linux/pci: reserve io/memory space for bridge. - patches.xen/xen-x86-exports: Delete.- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, rpm/mkspec: update copyright header and change indentation to what autobuild enforces on checkin. No functional change.- patches.suse/stack-unwind-add-declaration.patch: Fold into ... - patches.suse/stack-unwind: ... this one.- rpm/kernel-binary.spec.in: move /boot/vmlinux-*.gz to -devel again. - rpm/find-provides: don't generate the ksym() provides ourself, let rpm do it. Add a workaround for vmlinux-*.gz in -devel.- patches.suse/reiser4-set_page_dirty_notag: mm: Add set_page_dirty_notag() helper for reiser4.- rpm/kernel-module-subpackage: add Enhances: kernel-$flavor to kmps (bnc#502092).- Update to 2.6.30-rc8.- supported.conf: remove duplicate kernel/drivers/md/dm-logConver ide major allocation. - patches.suse/block-add-mangle-devt-switch: block: add genhd.mangle_devt parameter (fate#305584).- Update to 2.6.30-rc7-git4.Rename mangle_minor to mangle_devt and also cover sd major allocation. - patches.suse/block-add-mangle-devt-switch: block: add genhd.mangle_devt parameter (fate#305584).- Update config files to enable DEBUG_BLOCK_EXT_DEVT on all configs except for vanilla and ppc/ps3. - patches.suse/block-add-mangle-devt-switch: block: add genhd.mangle_minor parameter (fate#305584).- patches.fixes/scsi-scan-blist-update: Add BLIST_REPORTLUN2 to EMC SYMMETRIX (bnc#185164, bnc#191648, bnc#505578).- Update to 2.6.30-rc7-git2.- patches.drivers/ath1e-add-new-device-id-for-asus-hardware.patch: ath1e: add new device id for asus hardware.- rpm/mkspec: when using a custom release number, create a get_release_number.sh script for autobuild.- rpm/kernel-binary.spec.in: workaround for bnc#507084: strip binaries in /usr/src/linux-obj/*/*/scripts.- patches.drivers/r8169-allow-true-forced-mode-setting.patch: r8169: allow true forced mode setting (bnc#467518).- switch i386 flavors back to -default (non-pae) and -pae for milestone2- rpm/find-provides: fix for kernel-kdump.- rpm/find-provides, rpm/kernel-binary.spec.in, rpm/symsets.pl: workaround to fix provides of built-in symbols: move vmlinux*.gz back to -base and extract the provides from it.- patches.arch/i586-unwind-quick-fix: i586-relocs: ignore NONE relocation.- rpm/compute-PATCHVERSION.sh, rpm/mkspec, scripts/tar-up.sh: avoid unpacking the patches tarballs in compute-PATCHVERSION.sh.- rpm/mkspec: add --release option to set a custom release string. - scripts/tar-up.sh: revive -rs option.- patches.arch/acpi_thermal_passive_blacklist.patch, patches.suse/devtmpfs.patch: fix patches to apply with git-apply.- patches.suse/stack-unwind-add-declaration.patch: Fix compile error when CONFIG_STACK_UNWIND is not set.- patches.rpmify/arm-arch_include_asm-fix.diff: ARM: move mach-types.h to arch/include/asm.- Set CONFIG_FRAMEBUFFER_CONSOLE=y- Restored CONFIG_BOOTSPLASH=y and CONFIG_FB_VESA=y on x86/x86_64 (bnc#504608)- patches.xen/sfc-endianness: fix building with gcc 4.4.- Update Xen patches to 2.6.30/rc6-git3 and c/s 873.- Updated to 2.6.30-rc6-git3. - Eliminated 4 patches.- doc/README.SUSE: Updated to reflect building in an external directory so as not to contaminate /usr/src/linux- rpm/kernel-binary.spec.in: fix path in /usr/src/linux-obj/.../Makefile.- rpm/kernel-binary.spec.in: provide kernel-$flavor-devel = %version-%source_rel in the -devel packages (bnc#503280).- rpm/kernel-binary.spec.in: also fix kernel-$flavor-devel requires (bnc#503280).- rpm/mkspec: fix kernel-syms requires (bnc#503280).- patches.fixes/dup2-retval-fix: dup2: Fix return value with oldfd == newfd and invalid fd (bnc#498042).- patches.fixes/reiserfs-xattr-fixup: reiserfs: clean up ifdefs. - patches.fixes/reiserfs-xattr-root-fixup: reiserfs: deal with NULL xattr root w/ xattrs disabled. - patches.fixes/reiserfs-xattrs-disabled-perms: reiserfs: fixup perms when xattrs are disabled. - patches.fixes/reiserfs-expose-privroot: reiserfs: allow exposing privroot w/ xattrs enabled.- Updated to 2.6.30-rc5-git1. - Eliminated 4 patches.- Update config files. update vanilla configs so that the build works.- Update config files. - patches.suse/devtmpfs.patch: driver-core: devtmpfs - driver-core maintained /dev tmpfs.- Update config files.- Update to 2.6.30-rc4-git1. - patches.rpmify/fix-unexpected-non-allocable-warnings-with-suse-gcc: kbuild, modpost: fix "unexpected non-allocatable" warning with SUSE gcc.- patches.fixes/iwl3945-build: iwl3945: fix ia64/ppc build.- patches.xen/xen3-patch-2.6.30-rc4: Fix ia64 build.- patches.suse/stack-unwind: Also initialize PT_GS() on 32-bit. - patches.arch/x86_64-unwind-annotations: Refresh.- Update Xen patches to 2.6.29-rc4 and c/s 867. - Update i386 and x86_64 config files. - config.conf: Re-enable Xen.- patches.suse/kbuild-icecream-workaround: kbuild: add workaround for icecream bug (bnc#495786).- patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex to enclose lookup_one_len.- Update to 2.6.30-rc4. - Eliminated 2 patches.- patches.drivers/libata-prefer-over-ide: libata: prefer libata drivers over ide ones (bnc#433105). - patches.fixes/reiserfs-xattr-locking: reiserfs: Expand i_mutex to enclose lookup_one_len. - patches.kernel.org/patch-2.6.30-rc3-rc4: - patches.suse/no-frame-pointer-select: Fix stack unwinder Kconfig (bnc#402518). - patches.arch/s390-08-05-af_iucv-msgpeek-fix.patch: Delete. - patches.fixes/fix-periodic-mode-programming-on-amd81xx: Delete.- scripts/submit-to-bs: tentative script to submit a new kernel to openSUSE:Factory- patches.apparmor/unambiguous-__d_path.diff: Put a reminder in here to fix the lock order problem when the patch is updated to HEAD.- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, rpm/mkspec: Fix prepending EXTRAVERSION, rename the variable back to @RELEASE_PREFIX@.- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, rpm/mkspec: prepend the EXTRAVERSION to the rpm release string (note that this won't have any effect in the openSUSE:* projects).- Update config files. - build rtc_cmos driver into the kernel for i386 and x86-64 default kernels. This should automatically take care of the rtc/system time syncing so we don't need to do it in a boot script and should speed up booting time a lot.- Update config files. change CONFIG_ATA=y and CONFIG_SATA_AHCI=y- Update config files. change to CONFIG_EXT2_FS=y and CONFIG_EXT3_FS=y- Update config files. change to CONFIG_SCSI=y and CONFIG_BLK_DEV_SD=y- Update config files. change to use CONFIG_USB=y- Added legacy config.- Temporarily disabled patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch- Moved i386 kernel-default to kernel-legacy. - Moved i386 kernel-pae config to kernel-default. - Disabled CONFIG_ISA in i386 kernel-default to improve boot speed.- Update to 2.6.30-rc3.- patches.fixes/fix-periodic-mode-programming-on-amd81xx: x86: hpet: fix periodic mode programming on AMD 81xx. - patches.fixes/hpet-boot-fix: Delete.- patches.fixes/hpet-boot-fix: hpet: fix "IO-APIC + timer doesn't work!"- Update to 2.6.30-rc2-git6.- Update to 2.6.30-rc2. - trace and xen flavors disabled. - CONFIG_OTUS disabled on ppc. - request-based multipath could use some testing. - Eliminated 96 patches.- rpm/devel-post.sh, rpm/kernel-binary.spec.in: Created i586 symlink for i386.- rpm/kernel-binary.spec.in: Added /usr/src/linux-obj to -devel- rpm/kernel-binary.spec.in: Use xargs -r to fix case when no modules are supported.- Moved linux-obj symlink handling to kernel-$flavor-devel.- rpm/package-descriptions: Add comment.- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, scripts/tar-up.sh: Rename the timestamp file to source-timestamp instead, so that autobuild does not add the timestamp verbatim.- Update Xen patches to 2.6.29 final and c/s 854. - patches.xen/sfc-external-sram: enable access to Falcon's external SRAM (bnc#489105). - patches.xen/sfc-sync-headers: sync Solarflare accelerator headers (bnc#489105). - Update Xen config files.- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: Fix last change: do not add the timestamp if it is already added verbatim (by prepare_spec during checkin)- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: Add source timestamp to package descriptions.- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, rpm/mkspec: add descriptions to generated spec files. - rpm/package-descriptions: descriptions of binary packages.- Enabled STAGING on !x86 and disabled COMEDI.- patches.rpmify/split-package: Enable- Update config files: Fixed i386-vanilla.- patches.fixes/xfs-export-debug: xfs: export assertion handler.- Switch from SPARSEMEM to DISCONTIGMEM on i386.- scripts/tar-up_and_run_mbuild.sh: Added pae to the important specfiles list.- Update config files: Fix missing ia64-debug.- patches.xen/sfc-resource-driver: Fix uninitialized var warning.- Drop NR_CPUS back to 128 on i386.- rpm/kernel-binary.spec.in: Added CONFIG_SPLIT_PACKAGE.- Update config files: Enabled STAGING drivers on -vanilla.- patches.rpmify/rpm-kernel-config: Rediff.- rpm/kernel-source.spec.in: chmod +x mkspec arch-symbols compute-PATCHVERSION.sh- Update config files: Enabled STAGING drivers.- Sync up kernel configs for x86/x86_64 flavors.- rpm/kernel-source.spec.in, rpm/mkspec: do not package the binary spec files anymore.- rpm/modversions: keep the override keyword in --pack.- rpm/kernel-binary.spec.in, rpm/mkspec, scripts/tar-up.sh: remove @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@ expansion, check for a file named TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS in sourcedir instead.- rpm/kernel-syms.spec.in: set LC_ALL=C in rpm -q call- rpm/kernel-binary.spec.in: add @FLAVOR@ again to avoid %%(...) expansion- rpm/mkspec: new script to generate spec files from *.spec.in templates - rpm/compute-PATCHVERSION.sh, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: add to the source rpm - scripts/tar-up.sh: just tar up patches directories and call mkspec- rpm/kernel-dummy.spec.in: Delete.- doc/README.KSYMS: Add to repo.- config.conf, rpm/old-packages.conf, scripts/arch-symbols, scripts/run_oldconfig.sh, scripts/tar-up.sh: drop the arch symbols completely, only map the various ix86 archs to i386.- doc/README.SUSE: allow_unsupported_modules needs to be set before installing the kernel (bnc#484664).- Add %changelog to spec files- rpm/kernel-binary.spec.in: Clean up %build_$flavor macros- rpm/kernel-source.spec.in: Create kernel-source-vanilla- rpm/kernel-syms.spec.in, scripts/tar-up.sh: Depend on kernel-$flavor-devel- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in: Create a %using_buildservice macro- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, scripts/sequence-patch.sh, scripts/tar-up.sh: kernel-{binary,source}: Remove arch guards- doc/README.SUSE, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, scripts/tar-up.sh: Move development files from kernel-source to kernel-$flavor-devel- rpm/kernel-binary.spec.in: Remove $CONFIG_MODULES- rpm/kernel-binary.spec.in: Remove duplicate CONFIG_DEBUG_INFO=y- rpm/kernel-binary.spec.in: Use macros for cpu_arch- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: kernel-{source,binary}: Use path-related rpm macros- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in: Use a %kernelrelease macro.- rpm/kernel-source.spec.in, rpm/source-post.sh, scripts/tar-up.sh: Use %variant instead of $variant- kernel-source: Kill old obsoletes- rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, scripts/tar-up.sh: Use %var instead of @VAR@ except where necessary- kernel-syms: Sort by flavor, not architecture- kernel-syms: Stop the architecture %else madness- kernel-binary: Stop the architecture %else madness- Removed -RT guards and a dead patch.- patches.fixes/reiserfs-prealloc-fix: Delete.- patches.suse/reiserfs-inode-init: Delete.- rpm/config.sh: introduce rpm/config.sh, defining SRCVERSION and VARIANT variables.- Update to 2.6.29-final. - Eliminated 4 patches.- Update Xen config files. - Update Xen patches to 2.6.29-rc8 and c/s 821.- rpm/kernel-*.spec.in, scripts/tar-up.sh: don't add "" to the release, breaks plain rpmbuild.- rpm/kernel-binary.spec.in: don't generate symsets - rpm/kernel-syms.spec.in: don't package symsets - rpm/find-provides: disable symset provides - rpm/macros.kernel-source: don't check for /boot/symsets* (fate#305945)- patches.fixes/loop-barriers: Delete. - patches.fixes/loop-barriers2: Delete. Remove non-mainline patches to loop driver making it honour O_SYNC, sync requests and barriers. (bnc#485089), (bnc#471249)- README: add rough guide to updating KABI- Update to 2.6.29-rc8.- patches.fixes/fix-nf_conntrack_slp, patches.suse/perfmon2-remove_get_base_syscall_attr.patch, patches.suse/perfmon2.patch, patches.suse/silent-stack-overflow-2.patch: fix build warnings.- Update Xen patches addressing several issues in initial commit - Update Xen config files (re-enable oprofile, disable novfs). - patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations in entry_64-xen.S.- patches.arch/x86_64-unwind-annotations: fix unwind annotations in entry_64.S.- patches.suse/novfs-creds-change-2.6.29: Changing credential according to new task_struct.- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf is not empty.- rpm/kernel-binary.spec.in: renamed modprobe config to /etc/modprobe.d/50-module-renames.conf (required by new module-init-tools).- patches.xen/xen3-patch-2.6.29-rc4: fix ia64 build.- Update Xen config files (get tracing options back in sync with default).- Update config files: Enable CONFIG_FRAME_POINTER on Xen.- config.conf: Enabled Xen for building.- Update Xen patches to 2.6.29-rc7.- Update config files: enabled wireless debugging in -debug flavors.- rpm/get_release_number.sh.in, rpm/kernel-binary.spec.in, rpm/kernel-source.spec.in, rpm/kernel-syms.spec.in, scripts/tar-up.sh, doc/README.SUSE: finally drop kernel-dummy - rpm/prepare-build.sh: Delete.- Update to 2.6.29-rc7. - Eliminated 1 patch.- rpm/kernel-binary.spec.in: workaround a bash bug (bnc#481817) in kernel-vanilla.spec.- patches.suse/export-security_inode_permission: Export security_inode_permission for aufs./bin/sh/bin/sh/bin/sh/bin/shbuild22 1477057062Z<ZZZZZZZCZ 2n2o2o r u v t s W X ' + ( , ) * # $ % & _ h g k l b ` i c a e f j m n o d / 3 4 5 0 1 2 [ \ ] ^ !"#$   w x 2q2r2s } ~ 6 7 8 p q y z | { 9 : ; < = > ? B D C A @ P O F E F E H E H E N E V U T U R Q - .   Y Z 'wOYOORRS4TTUhUiUjVVVVVVVVW&W%W'W(W)W*W+W,W-W.W/W0W1W2W3.hg{z0_33.0.101-105.13.0.101-105eead17f376db1e91abc3fb86a328aaf26e4b3aab60150c6e2164145172184038ce89897d3ece401430e925c4ea138cb4fe7cba10227e3ef9a1cb74ead5af00474d1856e8afb22109b4b4cfd2707089c6cc333e6a0606dbacdc292436d8e98b75fa8265ae3f2741d314e7ab0de5c01c68a1c7a806cc7fc1940ff9b1fabc8caecb0065ec5b0f94ace96d245d2ce53d32e4e462823bca62461e9a2e1fdf2c90cc3be7f5be5318ef06d27f07a6b939cf2539813553ef4a42da6cbf644f0358e5febf7395ca8814c8dc9604c6a4a46bc0ae941d87d1aa6991658182ef4f473ab73b97fae1f33e2ab0b68b3446bfc3995070568a63ebd1810325cb70b68d488154092fd107df2e0a4f11ef01e82c4f5ad8b7562e9589031fbd39bde12f752a200844f254c9bea3f4f7a85a555be9f27f480d1344f2d7219c46cd332772cb38d7f38ec759c38cbe7ea053146f40bd678d8b952b6e3e2ec3554a370a3c4ed037673a362bea5580b497df51a0568a1117f7a8f346ebdb31c45f449c4095a7bb96b9d36798d44c0fa3d2bea75991c80115cc3a90e525494168ef1075303a8efa126539cf672ad086cbc07d60261f71fdbfc70025fbf6b9e082d5b033227eb89c69d8df78a06e174f31a61eac96633e3c229d405de5bd8e95913ab4a4a704b761af39928b8d082e9f5f5d7d52f2ad9bd8cb1ef498ab5978266764494451faf43c598224007dee5f68f8d9037a45e63e4cb5f8f94dd9f02bc2c0940790df424b89be28ceb550b1b299e8be09bec82a1f013ce8aea4fa351974295a31fad8f701be95bef24882ceeed5fe7525f4a4fbc7c9a6643acb34742a48bf310cefac32fb817b5447b2e15c7b12552e0ec2bea9ae027e42e44fa9968794569030e3f67059e4b8d7ee4d9a4a5140f48901582e1f91ad8f291be58bd5654d0d00bf7ec4e4ff9abb2e33e0616c763844cecb9214c60650ddb9e786ba6d35c7f96389b86c1af1e32d342a1e110e0bf3de6f5391e1f86d8156ebbad196dada2654b60d03cbe7225441106388ceee33740fae8035e8f45551321210c8eba27939255e679db3009dc1242787b38b0baa0057a218d6a8e3f66cffaf1174942e4f0b9762e1779cd0cd2a9f6aa77ec0683a931554b52e8e8f2e73b0ff90b25185fe85c5f3eff8ce23159bdbff7b721cfdc893a2ccd02288b5c5be852597ace66d9034b2788a39b19355fe4e7451e0e6c6db6d3be25aa3e4db2e73ebb65e73c516497a462aa04d5354b583ae9012d1fd192d26d020ad6f503cedf27a9981ac949dd7e17a02af6118bcf171b8a920f14c09d21ba0886dac5a3129197ad470a1b03.0.101-105.13.0.101-105.1      !""####$%&'((((')'*'+','--'....'/0/1111/22222222222222&34%%%%%%%%%%%%55System.map-3.0.101-105-vanillaconfig-3.0.101-105-vanillainitrd-3.0.101-105-vanillainitrd-3.0.101-105-vanilla-kdumpinitrd-vanillasymvers-3.0.101-105-vanilla.gzvmlinux-3.0.101-105-vanilla.gzvmlinuz-3.0.101-105-vanillavmlinuz-vanillamodprobe.dgeneric_serial-blacklist.conf3.0.101-105-vanilla3com3C359.bintyphoon.binacenictg1.bintg2.binadaptecstarfire_rx.binstarfire_tx.binadvansys3550.bin38C0800.bin38C1600.binmcode.binatmsar11.fwav7110bootcode.binbnx2bnx2-mips-06-6.2.1.fwbnx2-mips-09-6.2.1a.fwbnx2-rv2p-06-6.0.15.fwbnx2-rv2p-09-6.0.17.fwbnx2-rv2p-09ax-6.0.17.fwbnx2xbnx2x-e1-6.2.9.0.fwbnx2x-e1h-6.2.9.0.fwbnx2x-e2-6.2.9.0.fwcis3CCFEM556.cis3CXEM556.cisCOMpad2.cisCOMpad4.cisDP83903.cisLA-PCM.cisMT5634ZLX.cisNE2K.cisPCMLM28.cisPE-200.cisPE520.cisRS-COM-2P.cisSW_555_SER.cisSW_7xx_SER.cisSW_8xx_SER.cistamarack.ciscpia2stv0672_vp4.bincxgb3ael2005_opt_edc.binael2005_twx_edc.binael2020_twx_edc.bint3b_psram-1.1.0.bint3c_psram-1.1.0.bint3fw-7.10.0.bine100d101m_ucode.bind101s_ucode.bind102e_ucode.binedgeportboot.fwboot2.fwdown.fwdown2.fwdown3.binemi26bitstream.fwfirmware.fwloader.fwemi62bitstream.fwloader.fwmidi.fwspdif.fwessmaestro3_assp_kernel.fwmaestro3_assp_minisrc.fwintelliport2.binisciisci_firmware.binkawethnew_code.binnew_code_fix.bintrigger_code.bintrigger_code_fix.binkeyspan_pdakeyspan_pda.fwxircom_pgs.fwkorgk1212.dspmatroxg200_warp.fwg400_warp.fwmts_cdma.fwmts_edge.fwmts_gsm.fwositechXilinx7OD.binqlogic1040.bin12160.bin1280.binr128r128_cce.binradeonR100_cp.binR200_cp.binR300_cp.binR420_cp.binR520_cp.binR600_me.binR600_pfp.binRS600_cp.binRS690_cp.binRS780_me.binRS780_pfp.binRV610_me.binRV610_pfp.binRV620_me.binRV620_pfp.binRV630_me.binRV630_pfp.binRV635_me.binRV635_pfp.binRV670_me.binRV670_pfp.binRV710_me.binRV710_pfp.binRV730_me.binRV730_pfp.binRV770_me.binRV770_pfp.binsb16alaw_main.cspima_adpcm_capture.cspima_adpcm_init.cspima_adpcm_playback.cspmulaw_main.cspsuncassini.bintehutibdx.binti_3410.fwti_5052.fwtigontg3.bintg3_tso.bintg3_tso5.bintr_smctr.binttusb-budgetdspbootcode.binwhiteheat.fwwhiteheat_loader.fwyam1200.bin9600.binyamahads1_ctrl.fwds1_dsp.fwds1e_ctrl.fwyss225_registers.bin3.0.101-105-vanillakerneldriversataahci.koata_piix.kolibahci.kolibata.koblockloop.kocdromcdrom.kofirmwareedd.komddm-mod.konet8390.kone2k-pci.koscsiBusLogic.kosg.kosr_mod.kost.kousbcoreusbcore.kohostehci-hcd.koohci-hcd.kouhci-hcd.koxhci-hcd.kostorageums-alauda.koums-cypress.koums-datafab.koums-eneub6250.koums-freecom.koums-isd200.koums-jumpshot.koums-karma.koums-onetouch.koums-realtek.koums-sddr09.koums-sddr55.koums-usbat.kousb-storage.konetpacketaf_packet.komodules.aliasmodules.alias.binmodules.builtinmodules.builtin.binmodules.depmodules.dep.binmodules.devnamemodules.ordermodules.softdepmodules.symbolsmodules.symbols.binvdsovdso32-int80.sovdso32-sysenter.so/boot//etc//etc/modprobe.d//lib/firmware//lib/firmware/3.0.101-105-vanilla//lib/firmware/3.0.101-105-vanilla/3com//lib/firmware/3.0.101-105-vanilla/acenic//lib/firmware/3.0.101-105-vanilla/adaptec//lib/firmware/3.0.101-105-vanilla/advansys//lib/firmware/3.0.101-105-vanilla/av7110//lib/firmware/3.0.101-105-vanilla/bnx2//lib/firmware/3.0.101-105-vanilla/bnx2x//lib/firmware/3.0.101-105-vanilla/cis//lib/firmware/3.0.101-105-vanilla/cpia2//lib/firmware/3.0.101-105-vanilla/cxgb3//lib/firmware/3.0.101-105-vanilla/e100//lib/firmware/3.0.101-105-vanilla/edgeport//lib/firmware/3.0.101-105-vanilla/emi26//lib/firmware/3.0.101-105-vanilla/emi62//lib/firmware/3.0.101-105-vanilla/ess//lib/firmware/3.0.101-105-vanilla/isci//lib/firmware/3.0.101-105-vanilla/kaweth//lib/firmware/3.0.101-105-vanilla/keyspan_pda//lib/firmware/3.0.101-105-vanilla/korg//lib/firmware/3.0.101-105-vanilla/matrox//lib/firmware/3.0.101-105-vanilla/ositech//lib/firmware/3.0.101-105-vanilla/qlogic//lib/firmware/3.0.101-105-vanilla/r128//lib/firmware/3.0.101-105-vanilla/radeon//lib/firmware/3.0.101-105-vanilla/sb16//lib/firmware/3.0.101-105-vanilla/sun//lib/firmware/3.0.101-105-vanilla/tehuti//lib/firmware/3.0.101-105-vanilla/tigon//lib/firmware/3.0.101-105-vanilla/ttusb-budget//lib/firmware/3.0.101-105-vanilla/yam//lib/firmware/3.0.101-105-vanilla/yamaha//lib/modules//lib/modules/3.0.101-105-vanilla//lib/modules/3.0.101-105-vanilla/kernel//lib/modules/3.0.101-105-vanilla/kernel/drivers//lib/modules/3.0.101-105-vanilla/kernel/drivers/ata//lib/modules/3.0.101-105-vanilla/kernel/drivers/block//lib/modules/3.0.101-105-vanilla/kernel/drivers/cdrom//lib/modules/3.0.101-105-vanilla/kernel/drivers/firmware//lib/modules/3.0.101-105-vanilla/kernel/drivers/md//lib/modules/3.0.101-105-vanilla/kernel/drivers/net//lib/modules/3.0.101-105-vanilla/kernel/drivers/scsi//lib/modules/3.0.101-105-vanilla/kernel/drivers/usb//lib/modules/3.0.101-105-vanilla/kernel/drivers/usb/core//lib/modules/3.0.101-105-vanilla/kernel/drivers/usb/host//lib/modules/3.0.101-105-vanilla/kernel/drivers/usb/storage//lib/modules/3.0.101-105-vanilla/kernel/net//lib/modules/3.0.101-105-vanilla/kernel/net/packet//lib/modules/3.0.101-105-vanilla/vdso/-fomit-frame-pointer -fmessage-length=0 -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -gobs://build.opensuse.org/openSUSE:Evergreen:Maintenance:4678/openSUSE_Evergreen_11.4/5d8e49357dad94ba8a81dfd21b0d37dd-kernel-vanilla.openSUSE_Evergreen_11.4drpmbzip29i586-suse-linux`?}*i?BZh91AY&SY+~_G/OtݱSz6v_{{}ۻk^[wzﻩcw|{e{{mxuʯ_^yϾ׮ݹWw4}χv qmmtaoKsͳMzw]©-^:e9ǩЮU;-`fn{۹[}o/ݻwvu VQݾ޼{}Ͼiuomu޷WoCϧwoۧ7ڵctky飣+լPK:nYoZoV[^xî_{vžwOn޾} :g}u7d%ӷov}ym־ӧuvotfۻin׻yS>=ٹ]εȷvϊUQTkwj׺ {oN{x5ש^^GNkNoUvwwn6^Wlu{x}{vshѭn4Ͼޞ}ܝ{ӳn}}:} =7W};{w{}}󬾷c}o޽)TSִݹ{gw:η}޻>siי)l}˻RiJzwm]%wiz^Ok}Z}zpTV֋݋}緻}x^'zS=wr_[Y{ovo{bm;^sfվ}(knUy폯Nݾk|}amzJƏ7{Wx}{n=ou۴4zky0Eof;R=g>뮽u}{t_ujnw'}o>ޛ޶6@y]Po_vm^Ao;s}{{{]tl>gx=۷ێ|]msp[3t]>Snڮr2 Wݴ{s{uow[﻾>-cZG{=55󏷾_7S/rڟurOq}k}nݻ==[}uw]>T|ϻ|O6:>w{ݷ[mC}ǧѶ3gn}(׭yݯKϾ_Z}׷O{ҟlePu.^]v|vᄏwz등^{뾛y}wzcwϷƾw6=w}}򧾻޻[q}:o]͊{{y>粱5ow{۽;dpmgk Urj}5a7gBK4{={/=ӶySoo]{gg{koxOvu1]ۨ[믧_z+E޷ͷujվݵ۷ݹgo{׷ON컹/{ݮ^ {j{՗a:-׾.o^{Od{{}=_{{}{YzU>}SOh;zlmvNͩq]z[f愻t=u+śP׾bi/{owҞ׽}owu_YݸxvϾ޶>5pa=vݻsS޽<5)s}w^R_[ۥy}q gw|觻^wow{}Ro]Nu]}{Zg>ލ;^o{sG[zh[_ioX}}k]x{{r۫E;O^k}{{z˽Ϧ;U][;75gQ7ouھ>֫ݽ𥳐jn:|+֊wcl \=k{;wWՇ#}7wF3qo=^emwvWvyONW`OK׏o;}ݽ4eo27o{н>}I]ϼ=NwNݷf{tK_N^}{o}ޯAԻ} jjn_vz}Ϻڟ[>{7^f#٬m}5Wֺ;u޾v.tz}#yUNv}zf٩>} mO΍w7ݮ}w7ܮěgε |7E3&;{s^ݷ<*OusrȺǯwϮw{ᆵ{ro{Y$>}۸>oXtkj=s.n}{ϵm˷ϼ=קz5k}ݼ{6\Y޸W:̭3Kv .5ܱT{wkLfpkﺼޜOѻ hu]wӧ:޽/wej\湳}mcc]7zT*^ܱ_g{}umzv(^^@s^bO=ځ-4y{k=ݾ=<<^_Yӟj[M+w{ ݒQj޺uu˻}}{nvvM{\s{zw|={=v }3sݗEiE:־=Wz֍gVڭl}ܠos jOf{o/y|;uGwi>+^ܺo=pݳkZ7}|>uϕ>џY;ilkC5:g]]͝ӻmCn{z>yN{{ۤmzپrׯ]oD {]xzݏuݶ}{Kގho_{ݩ^w^j4`z}hoϽϗ֖ kR}vopn}n.m^wmcz=鼽o=zo{zon޽uuw7ۻsnݰw{}o]Vaz}7e.]t>}'Þ瞭sï-}SW{o-_Z۷֛7w;}s-{o{q[}R^h>-$:_n]wsw˽^_{gfwG}F>tm<ɪ{xgVZ^ut+z֟m{{zl5O}\v. }u_vsCzݺoϛww{9{ޔwkAY}J}u{}}ܙݻky3}z:z/}gϭ^{ou7=}Z{}=/UҶjf>^{=>}]m+mNzݧA{}y/>т$G2z]ݷo{W}cnݺ@oa=w잫{7u7{W\;=9>_ {]mz;}}﮾:l{[-=kcovo{+ힵm-w;ٵmz{׭Ͻ;nzu[v=h=ԥ^{Lzi}8Z޺[}>Ovvjhwu])mmq_Go {-}e+և޹b;Mꚽ;uNk6{=zycUDvI;|ozޝh^msٳ[ma.^]moi}K;tm՚kStG=z&_}eVL]^5*ֶg{zosw޾5@}67{빛ogܮەٳ}#zwu3ow޶W}Gݺ۪GҷGG&̇{{7juzXl6{t{=*[Mk:g@z(>}ϡWwS{gw}54{ۻjizU^m۸3[:k޻}'}=_Y{޹vnON7| xUrekOGf{bfb}{}>}oks|jMwf}}QMiw{vw^;vPhrvykik{VoCܺvﶾooѯǾnTluk,\`@u{Խ۵A}jQWrGͩkg{n܋OSsE^svV׈k*gצ۹wg]}+p}mݵsuv{nz@OQRݫ77{϶uc{-ϭ<λׯ{{o}{rs__]WvzNxjv^mgŦW]*{<}Tcs}[׽՛׶m}}}^^e{z]S^zۯyjkm֞セ>}z|w6l{g`(}sּۻnޤsz+6k}=-[|w{ٻuu{^]4{uj{gϾ7wTy{Qlufook{oZ6^$7wjsէO&Kѝ}ޭ׮nt5׼wo}/4^k[}{;nomӊ_FvS]wcvbwz6^ tﶺ^97}}^7}gm]}:l9wWq]z.[x_s[&m[h͵ws{ץ>_wq< TU?h UCx104@UMT uT&)&@UO S&LUC``a0da3@Lz@jl@ ~T& TP0O0T ST"L0M4d M1040F&M12``&2b 4M4hdT}]GBoe@    ( ( (!  @@QDA p @ (€Aˆ (> @AI (( (($8`EAEAEPDRA   ( 00( ( (@a@Qa@QQEQ~QG 0F@Š( (( (a@QEpp ˆ( ( (0 aEA@Rb#xQ@ 0€* (( ((0@a`Qa@8Q  (0( (A8( ( (  (`@QE0x (@a@F`FEQ( 0€((Dx E@Q@QEQ@QPQAF 80`($PiaFEDK 0b#@xV7&@Qk-,`t${ H$)o/0.*;?w0  € (  (  (((08p]AQ"FP`Q@Q@EoA 0 (11 ( 8a #8 ((H ( ((0 0(aS(0RAEQDP@QQdap (( ( ( 0( (  ( 8IA CHQxA—dp"LC>&*\#0(QE@PDaPG7h 0ph@aփw p$0 @ ( \*@*yfH{`M4:A/WG(yY@ 3I2R?m21*14!×%Ws:D d]-e+1o GaиDB*)Ө"?hw8c%k$ 3 5,fIM T+4~d! pB73E]䣥j3N*ltȚ QLҋ3:A$gFp  hAuAP5'Tg^ b&etY;/ HWÎZJ.g\yk1{:Z :$KUQT1솅eǧrvfދV6xHV_pXJznKx%\w h h(W\0=sw"AGQ! #00h4*P B[ : v3-*^(`v 9 :R1[_F\IFu )~c;,Y}8 +o_ҹm%2A%b `A|#BQաo' M[CwnK dž䇁"g+!LW-j $gMMYqV a@R0D. 2q!Y*Lyiy2; -Պ$H\d@Q|(ݗ!q<ٰU*( * p@TTj,iXш rD9d"(G ZFTa޿tk.&Y&TB3 1$HБIaY Gb&">a㊖Gy#v"Չ?,7y7@$\X^Xxp?uq uŃElKbR&O KxE- !i8S`@ƣpp8IȲr8}xb0Q̬c Ii0 1#AD^Iu !JP07iK;Q|2>|15&9~CBb!trhiY]Ymdlܓ^7C2nf iC3OZ[ƏP ;032 A}||"0tky09}m8 )% bVJ%p1-qC l_N=;JB}>8#ѿ,Uj1}avCP2r" wXQ{5@+| @Q[ Ԇa*`>  Ɯ"WC.J4enK NY1/@4XYg{\ϗSQ? |.=6`s%!*9&B-hM(xa"8&F` E|Ny 0!`\pBаN s@ bR"P@(9)AP ]ώ ( %>Q5?9f垸w&V<@pG.86嗄PB$qL_n5 6v< lNQI.P6ךCe"$ Ɵ8@Vg4Yxl Jk (QOyWؼ" h3#@KdŁܴ}&9wx|S"%[[50&|յXd@0 z\` a!b$ )VI 0 D~o#7Itz C dآ fF+Bx euAK $$|0F( OFxQ|` aFCA XwPPa9\ @a@= MT_ р@A@gFP@=AP@GPA0f! .;cO B茞<0B0sz0RxH h c&&tp y*D@g?'* tbF< QD+׍n@ņ$@PJH\pc:_&(% [1ĻlT1G8QQF$&9Xpb' @KB 'HQK € H0֍AmcB){]`T9a.B@pp yM#J) =!ǂP8VYTaQPA@F&ÄoGn`EPQ@AEAE QaQP@d0'#q'h( xx *(  HPTPaDE@QQP[G pQA0 ( (<C OtТ %Gha-$(bȢ8PP޺8?$1E0 .QE;"0pX0/"p 0Qt‡a`8bZ(}EHDB!3a@K) @FooŌK-.:E.* b(RD@?FQ:tHHxGK68Od\KqJ &>WzQ#*<51H1@qxAxH:UQ}lj 1h8p')8/\IQ # {m~HrOY@4A~( )e'%c)QFhT8+ty1 R8efu+Õhb0/2uY# 0JbD@z'?%"ag$"(6<r(q`.?(vjDFx̚AvJA:_޵RV`TF@8\[`CLE 6$n[u.O+C9HxV" (Hd8;T8oևN 7h6i"xHT qXʄ4Xf c;VQb6ƅ 3:ϦW-C@< t6ݑğQ:!?&@]@gOhRB]-Drǁ+ h' $XGaf&@Į?̠ ?-֧Ԍ*ϡIdF< to承( :ʉH% sIz6"`'/i. o%DZ3;A;-7A"'{L;v<A^hiB@D#۹ׄRX[@ g^-O$MWHU>X0XDžy/xLM>DD`QDvd#_NϘiۛ,`Myf.ly۵xR?}OA;E1E?A BB!}BUe{\`Od|@N&:ۮ:)(#(EDw8fuc 7v3dő@IP$ij8iE- ';Ui@P 86'OĆL_I`~3[Xz3QMZxm1 Dp$pL}.Ŭ4>1ϓ.l@u&n()n0Y06#?NI/ɹ1 .-]hyxy{#G |pMkMDs&(`ѐHo4D  ȯ8Q "ZҟXQeq{*jF*î$_UG#J<.\渼h}DfB.xt5߽R4j keXLΈpar%SؾWAk`_41?Q}|1ex"m%vU<ܖN PeqDŽp>AaeHzj8#K ؄ s)U=l~Y^vefHz8( ,k:?m Sp/_:ܙW"}BT ,2aܥS^KLKRM ;I%1=*OFx/|zBAcɨ)#jl}vLoZ_2sr$BO| '&|'MЦrEU㯐F JDͅqjVpq0G d*#$(MT쒪kt'aeLڻOeI+xӺE 8?n5 *,exDdI% PӖFpMʝ*aM%^> ƃ&վmlu0OslqKB% Llc3  y&,kc Xʏls5_4P*=f_ǐ2*_ ۭ.: \#^iTC599WEx ܹT!(a_Ⲥj:6p(s '_2B֬c)dPAD@ k:c)|G3F|IOۋkoX}aZ @m~?([dA*<8`Qbtv3Ygy\20VFw#˚ľzǞ`'[aC@ݒB3XU: 3> 48.w#Ju1 XÍaIUM*nsPĚg(]2+?k{ki‚*.Z@JI:gX%uDo6ū -]0̒#h|֑Ć`Вl[c!wn`( jwZ=%T$+F4/Бf~/X|} GIle`O?ND h~ט 3u~*%|WC2<ȍ['U+𑸤1EQ'1JJϖ ڈ->Fz'΃a 9K^f/snf"dR(&rӌ'Ȱ,Mk8EIz8  J:^y9] @"{:f˽&B*HaZG7C_<)%ɫ0XF.#WO f\4pI-Fv(O֟0>G" rs@ x~-"qBO9 6x =ʫB@IO h`s%9Xn}Ȝ1s,;\Яґ0\F"6^o9z+Mw$9+*](C? I~ڒ(|v^\E\WL>ԏ<7tJsȂ%o*$dwוCKOf2qllUe"QL2D\G/%hqnQ aћкF n졗]A_6v|-3?¡UA"?^yW2% aoo;KO':V Ix&8[C`L@g a+"f>C9mM8VcYkg̀DFs*WǾnĦ|BՐ/LiG.A}HWfucJs"#s(E*bA?y22 (C`4΋ sB}.'$yRKE^*m;~  N( ( 8P@ZvX'Hh2 `,8EL#=[*=~4 MxjgV/NIM-flB)!us3G-aEdܘe)-yB6$IZ*hYE4! N.94 hUo /sJ/@qձK>>,sŠMoMmW)N-Wт"/dnMPk4;kAhA;/+.Dh1XGRf ϕM˼&0ZH2uY=Vy i4UF_.A7טOFo@=m!~g20F{Y=!_*䕮Wa~.c(ZH$Fg -lF%n548%)+݋@BԚrhxocE4+ϸE]!w}2:h@GFM0nrO+ՔT\f;ٴ]Gtz F yMXHLjn+W kTGGiTn3 ORo&+m?')i-g\hPNg`ͽ ,(;Ds>RC JjtIa+MLk:KY7 'O2zz\EU+/."N\:=}*^Բ5~nDXdFX}[e5*Yaht_`n35X'2ŽWƎ6 c%'|Dx[IBHlz p]|,!6,^Àg}սAfGnc^| ybM g/͘); $S55j|w |p:+wlRWuZAeev"wvnqcTLM}ż~qr<˨g/`o e(|]_.lsϣ_#8ԐjVx-py|olp ,̧$)x}WuǹX(y}@e~"uvI偉KG} ud\jm.xYffJ= ovɫ}%T@eRiǸeү\Rߪi$8MxL7v`"&VQ{M Uk î~ ͝xha33E ZHGSl,.2Xkf &?+4xW5L w# @Da%qN$]<&WLh:r{ 55!$&;=KJfSd յzrKVpp k*]rlv I˜<}XdVl9ý$.yy/FkR˓8ƿtaX(>]~}i4]`MA!^ | D˂ ]Z|[Y`D ?BUko %$N`n럦04nvEшۨ /=zfZ)D{,4;vu~z= [Y" 06,칿n͉yqimL5|],rj rBZRDчxH Uu2mb%^[5^~'c(3Ⱦ,q.0`2SF!e^B'7lnUϭjCzB՘ 7Mw#7x^TۣOtx\+i[e^or;!T¿\jXs y덂,9Z(&+L|3R!/Կƭ=֋ xӖ|3E[H_6f˯z /󫾳[zRl<"<~e;rL{>۫Z:S7;mH_8{g17a=fM mɴ_-/G @/muO]cWWn*y}R\+ ٦c,ŹZuW{w>岄.<(-ibyMY4X}54,ST&,3{R,dZrWQʩND{_*g ]e&+ܤ"X"8-M۝֣n||fql%ğWʘ5?Von^!ؗL4[RR5\rرB˥E!(@!H*SmR{^=|ėͻ~EZytkVi'b;n Ij "sTAP~W> @2~sٮY3-M={M|7gsQۇOe>DG|=!)p"N<3c"7?'hnFw qP 4EX^rOb4H*eL$-x@8wZFEz"XH+25g |PuD}fh6̡os|~8;QBKFDKCs-Ǖibv_- mxF:ET=(x~#Ɨ>!qHC5EeU$.Ψw6@k  dJZ`jO,ƌ0ɧ8R$VY= !~ 3xLPA TYOx:dz? *>f ;َ`F·t)#sZ5Z -v l*EB<^`[(z @=Act_S(O(] _]0X3/SWWY`0ED0Rf#GCdk4(P"co&VT &ywmYY}2@ZL+FZY=唤#ؚ;;T-F1hW}|~0pت,cPT%tW1F%Ū:d-oaK/Y`&F[㸻TeU<=Y-G B֚6g'>9"!`*g) (tL_ۚmt S>LyȏEȘD;OŇ8;2IoѯJH]}l+7l#'w%3WGP^[gN*^E\Ivd*q $|]@e: {vM u^«KiY.k6}5V_ǻ2 jt T1-fN6RavByBU͠i{S;聻_zyZ@ށv$Z6Hc.6ծ$3RИM@wh`_!qRq\X4t4n8U|V\~tz1 &Wt}/s[9wOˈ$Wnsʹ5DR𩺃 ;KO {?ɰcPJ~B?m6O*Z IK=~[ѵbJe(ZRm,3BʜmƲ7t0ų!m'zC_Œ``K77^V{ccOhD{cEf]D2SxWq5,b6+nH]Gi>6t is-F-sazr1/]{PT_|3"2RKi<0 AQ~S {Y?G'WL5<_)ڹ>Vqv1I܃Lyd&[C{['@tι q:wJ{[fYW!uG~?U}.隸RZ|eŏ*1̌b0,P^<[U('*el&}7FW.M&q&Q㼆S6'GNP!T ڸC0ǰzjz)+܀H2a<0pfj%!#RuH.Ѹ9iu1[X]r'}xpPD t e~+3>\?wKSGs3t?,v鬚'S5=Khg-k#~a K\ aeg#}_w0eQoJ tT@g3&1_!Nx}`z*u3BEbDhtm,zt0H b0ӝk\mIK)o"|h7gWAi'C`Q,Lj'͗IY]mgYlYlDјfx`Q]&M4s=c?_fScp>Y X@f O22|җ}vxztrצ@ Zy$TZjDuypw7 )64!=u&8Ge,2Crvomsg0B`\ #Kiq=7V.wPiPE|{V;7RA@*d?Kz ]m=c?Gp1pitgwY+]o3IRLom1qY5Z/a1Z]@ϻmE擎>k XպJNP )6ܾ .18RqӂSN٨pU_ ~_5QRBHi=sX)")`eU@R8 j2:g9C_Hdm%~%b"FR>_!-#͘ " ź[d6,&Л1kImPk^!f %0;.hYMSOpZV1F=*:Cf>+JΝ/<5f6}2:-_ԏ0APEVU'FܱP, Fgvٻ5G eWmSRFt@lKQ%/au*Apez['3O©;}xz _[1ԻpYP*âFZ-2~p@XE N? JL,kDi. r hmG#O8OAH&াH>zέL,Ȕ Ÿ]!쨥 m\5~xWV߄b + )=vF9߻:ڃ/EdJײ_w췜/74ʗ膜~V"p*.bZU~u$q{GxBU{Ožѣ鋖-qϒ'#bU'zS=T$  KDY e&SbJQء!MiW-1/# IoWay[S0_kZEbF*ˏX\=y񬏩džRUWJ) %ڋYG?sm>STMi *BըdZ!]՞4Rl tV(+qdFl47dqhL($%j .^ŀ  c )[5N0:`s^"޴zg ~-5|vyVi5;|Dˑɳ\OQDoq㎰SQ]Ǯ&kz7M#͏yFT^lk |iq}V今iN4$ܐ$ViHQl1 BKH1_,?opC7wδy&*TDݎ÷B5B.ǙI`wŃ01:1"J@-39bxOl ?C3 B$9">oxBʷ>쌋2Z[wTWP, VS"{j} *גӁÞP3NLzgd,nr?3.1 Dg`*K|1L[vBøbDZ"=NisYɾOditMv(R/nvua9CĹ7\SpPWƴϤ"۷k#I9:F\Y0e|*Y,2`=kw*iu! >6Yoc:Lrypzҷqӭp.vB7BKQ|*:'Gk>9֨*8~d< /a}>o'Hjv qln&OK[ɟ⌨#]75yfV v$?B |Ckh7iB1ٖ+=up$gG\6Hh1`DaW4 { Seԗٝ:nEgqLMcq}_ƍ!G5u<&Ixxn Jp[O䈣82 ctxfR l PѬf̷b%2 &!}9A+, f߁mJUь1SҞ@Ӫ_xȳ煄 ᷚ\;yY{H ;DWl43&6_9!ޠҕ|9;u\#4N9 ײKNX-3"F{>u7evT1WОȶ0TZ/)P0?-gӠO25/r0$=nSn')a!Uf(fZGa R@IȃE*qK (֪GAWvz[au3ޜxVN"֠%i j6i8z^X:j>"!Fѽ@;\Rcl6FꨤƁieA!?R*vp, ZgA&(S0sNx:64 <-HR&m]n 'sԼٲ8v?"+"juMa۫`v94&a|] ɍ|ħbGcxcK1b^"ޕ\[-k8<@).zA0Z޸cO9"8m>Ӯ2H'By!**^/ȱK3q4p3a"^s[=2>P)THt~RyB DM?Kv&s1Ѳ}QǓt;`! 9ccэ1.Q`JW`aENvQ<`؋=iFjl?r؍:R9aYebS euW;w3xޠlA]rJÒ Q Qz˄^Ov%0EHZ6ŜFEiײYF.us﨡6pKo3C=&Z~N \]t>`aTvap'F='̓2tW_c@49j ;vkr:8H8D">w w%\^GYhjhcӸm R[u*TxQhF9U#uXhYVhbXK!-[x*^Q#(25L?HGz2upHÍ*rWQ9V.5ADlF/ FdCqηey]ʐ+vj_&Xa o#/]Zx YăNcdMx͖1ATdS~ (ItN?4˳9k[ m>l!S_R+g_7ndڊRN۟ǁ-Ns$  λYH3k9<]&E&OL6G&. ni7G׷]<j.ױhJ8Pt~CxTi s[֗_a?~x`ũ'ڽ%n~hWq#u //oMMqSd˼W .Qf7SuLHMF)e] &wxݺGk`J@rHؼ~u+*}׾!^gGyk?-.hq?YS )҃/ru%,Kȁ˖+r2TUϵ?Y 6ibM)?IV}d(Zإ!xns%2u!ZmM}( RpLdWW l2]>w=G!'bAi$gwi 8迕!!ߜKl}j,4ܜ l}ڳ6:nRvo P,Ŗq<ނQcTlbL,3Yk+s&f '`> ) RB!;MEozE (_?/0DfD<*gݾTvG@.YӃt\]q_1-tf*om"5.]8'}WW]jOHӺ/3)p N{7r#Wzw;yЃT2@6pYNjS/쫬湶P(ⴖPqf-fW!HG(\ȼ9(854)|TIc׆hyRLc9A> [MZ7_ ϩlWmm1G9z`U-Y9gf=H7"cWO鹍6'MTz " %^,`LY)t|UeVVXwczavs~d%T.ͤߑL"%Bf at<4^wY ІǴnb{Dy7VY%@*#Do/)$ؐm:LstXPM~khQRfxvCbf5TEB.yhDӱ c'SO&".)P8heZnY GWП4֏"GA"{^&4#aUn}YTG6ݭ8n p0];B۸ ! c 8P1%pt.J60wu}Ȇ'iT9$1 >+)ڎ[7by`p=1M|:k-H%xitsXH0KmQapvOLjC+A{1 W\=@ݦ?ʰO}Nį*Eez_4Ur_qM"z)KA SXC.'WEz!0M7NB[)MԢC3S'M C] ^#;d)bC~aqd`{UdH1TDkr+5XT}])HHb?f:;Jޯpֆ%"27}Gf =mCp@ay]PHbU Aq}9 2*(/鹎n"9QMr 2'mAMȜ|0|yAl[d /r5G}MQFmiyPO05~逃if[:@X;*V+'B"g M Wd4,Oav;ХmA(`. b8L`TPȰU E)1TB76 ٮN?5pJ,c?pkr,ZlJ3C+KB6OTe=̝n9Mpt#%X`qo)wH7 %ڠF^CObb&GMEɳ30x'3JD;&ǥqEJJTXS$Dmy ǨZōaD//(1} 2TgZ>dT ey*t:K!έ=T)jF )m!TcJ~ U=SG;ݸR6XEG̎jZcgu FyN ^e$**^ݕ>E2AFG(>lxf.zۯM ;נ͆{_1DB?AOnj9L K?mhqPPCC Mz5Y IH-, ;=!rywT)8yB&(hb cOq.}z\+)&-{)㼞Bdg};{IQ~(3gh>1)߀ 3vzpI,c~~_qۼf3~Y˚4v)0m4#;Iol$1..QkH]iǾ)ȼtZ78Iʈ}PDE|"`C.ãrîR w^T`( W3F,T(6)FMn E0R~I`+$Wn*4 C3Bd8Ű] CePzζFן)_&Itn[5#_3:2I*U'sǁ_DuaW."~MDW3suc^0\1>_'ᎳJtS*F @Ƨ_V}5>8&,m-QzPZk#FZN b N(3h#,|!K_ hj O&mÃ%ETx =|W} x)-N?'PK}dX. \UY,pW>l2"|%PK|yvb"hgf\~ֻT2*yZ9O+B4.ϺI F||ӊ5R8mMyF4NoU5U詑*s+;s=m(@]CDr&58A+tyK>* X~) mԱ<ۄQ4wC ܨsCO.n}<[stXTgsJ~jFY)t⶗Nt뛫9 %: 4];Nl~3D+U8 ]B;F~AK>]B͵vΡ4r@cJmm"ݜ~X܃)$Wy)|`5*Hw]ԼLlY|XƃLfJ.1+ o?a̫*Nd%_.qα پ j]=em!`nwa>n^_8]"եCCh7ml%a'S:;K&$/ qFH-VV,`8i (D~6v\d.i!3rP:GaU>o&6:p)Lh8,(y / ~*+BYh{Xw]VPzUq dЬUa +V SK=GϏfa,2!2I0F$ H }n}c~/0NTv%]דަ~;8ٕ\^hgXnb UK{6{_1ZPe䚉­x 5E [vkj?gmMV!؛]{ɳQ:,Uˋ 1GpדuO4)5*Jsͽx,yAm^d_g" 6}WD"lJÐ% !zOyœy%? [mUI',{9LH,Gu~޽AKNHOXqvz1x) oKEqǎl> ˡ6&ka^hUPv`a8dI=F}723 2l$QLLWJJRdAQ_X.A #Ma s~v!~EqO>o_Gݡ& pBAD/s4&hF1rU +-WcS w|3Ѹf=ci{:{haljlL!vxњ//O65Wȹh88d̼]茻]T#,b掯q(?PT)5°I2#lK/L ZJҭ>sB%yimp>R\ef4rjwwӸ-i_MuSB!/H/8QT Bi2:ܠVCԥ$ +\o Ϋ`B֤kEx{?*>-Z3/#MX0Ɖ{YnVEK yRu箯Ln]yMv~L )Vj p+DqI'HlWmD@¨3P/̿23O'\:P&\aJ}׊')Vvq =i +t_ ע@j*guSeljpv=õDm==1>\kA>HD53Weo?噢C`:헴%yd­tTC3ou bYP}nJWݝTOMs=e!+M3!Z.E3\ |!M<8PyZ^3 @/V./f;2 XupY$]X5DPmc%c})s=rSN6?v{w?£9>lS4>"?滑x/pY[خ"?yATɞs9m3`D Ėm,taDԹA 4]m\eę^=y@. xwp8 svƙ[H=Q ilخ/HeF*[/Y?$[Z& 3]P:[0\@ILh Иy#0,jlwrد eqq:Z1W^HyiF&4 }=VU\i F t {*Aў i+|)vC+`!']6 QV?ED"Ozފ)g慣ZS&D"MӜ*( 6(B 5l_A`^RLQSݜ*i ^ 8n & ͏#&:H4V'2ڶEW*Ah1Mn06~_'ʍۇ$B?_h#NJ'$)YuP"9`>ͪ[Y8NRwS8S|ޡ3k |]6At)v2Ҫl{UgYc`)ԆKݢUhߪMcؾyM:QPR46v0Ov5ۄ>PT WbQs"SŰI/nڤ,{v(c0ߡq { [⾗#4Z(fP^l:V*Pٔp-_' ~̆ D`94lAɣMڵ ,riZ]?V{ l**;H;|P7*uNR'Wy?eHS{,Wa+ p1FQ,*CDv'Iʭ4ԔckV1zSl˜&[\gzb Ip6)Im{k)%Ym ctvڜ"NIvVmм6ykM=9 NWf]wUﴗ,Ašb6ۖW:Npc^{ K<ŻkEj;\qWi Į -N8=+ѝߎЎB%Ul$kIJ)RcfG}p_/@iN> q<tZ*'~HU+FhFqƈrt$ԕl-$#DJǤzYR O)"D$_߫V(tY hU"&ۧbv (!7(E&)u2*lR+xw#O__T|2ys2EAac>ʑN+V!.N ;K% eCEPL֬u#Y.!CFD24>SSF(ٖSh?|J R)4ӎZmod^!S}Z;fDh>5"VpfU%)7@p1M-X手5eKO]]O- sAZ1 ~C|F_U HfKu@8#tBv:e~}v0Cn\#qJb{.HHx&E+z^hcW8Oܼ=4jO5XKH@7;DOat-G*rcggxQiCӭL^PI}¯L9Ո ԧj٬pq++#; dS:-%i~gm=TuTTms0r_Ζ' I"9ssm LMAЏN^bK^MZ#eDF oJ]p=jU@ zvHQM?&`HS0 s-`Ї\d^_։ */Go *,bT}V +-xMuPb*lmH.+psg+|N>;|$ݧ٤T*\?iON_dϻչs/)EŻoYGZՄO=?e~qf_ oVVtY!F_Ohw:7/> 4SCX^)DwF h=3iJOb`[lѾ(aLTN  U0a)jƘ[֑%/׵ J6nitմ0'=`Q.’XVoTS@*Y%4;@3J L~.yOxcxF6̊6ɠYk^\qVE(_j˸a:Fz1oXPp) tT:15Ő(m‡&a%Vi]o4lAo|'ErWxJ~_IE} -?wFmA!Kp T0BZi)-o.}A.>0Ml=&#ʚBDRNJ l9{*BWGĉP[Q޾Pq1`]%OMz'I?ږGEy.ŵg%o32'%]ؠa=iɨdAL>+똄p\0qhG3_ۙJ 0^"-Sxn n͈8{H7.9IC} Ep|OBb2j E5 _(r{ G4.֊> SqZTKh   g9p4| A0/FXv9}A<$-NT,n;3|]/}սRXj33 q/<l^%' ,rk{M'kCT*Us c0l@t\Ϫky5D햦 >ˊ5E[[F*pvNvFm&=~|=S,&xtoq!#l쁔B=G.z'U$sW[wUx aZHQ{ߒOkm}5ʯ!?<%q*nZ‡#sM/uh)[^0 #Aʯ-E9 #1IIo3mA;*_e>@Z| mZ.r\ ۠T^! /C^izҿr]:a*F_;{J\=Q*+Zyj:mO`؝1\YWbyϽ(<+"@OYX5/:aX'_On~ l )e1'pvS\%C/D[ \Ft. fSIRKW j8S/Nǟ-+ˆـ=huIn>O5.=J_HqͬIv~).uJ VEMPUfG+qP%/hQ]Nooi!r2VQd`!5 [K^A\ B%_Z&Tyg'qΫx&Ԓ+p\!q TqLh>_&Ģ6vZ&8JKU>MHQ5SLwxʕPgDpF9&sqL90G=Ӡw{?V] iASڨop:=_m2'~&Di R@ͧY0Q"qYOd9$`WSE@4cA6DfYUCVd e(v8{37兔B.w?r,@V됃|촆0dN7;D" ,|v ex(!`iH\JT.GgeZjTqqy[-@#8ӱRU3d\K%K.X&GPE]nR: o-qd:{EhM^_kҕP}5*rUvJ( |A\Ý1,NוFZƞeh䳓c٣er7 )1x)ߧ2BOoPԷy\w2i(;uxBVwk{ϕLTw,aEi h)ӭ_.dŇ_ J=znbD9&rs Fe) lBoo iixKXnL"N%l4ˢ3t=+20\#ZBtrXU!WC' ՜}l[͘{&4W`)G6D= a!ͤ BJqkG0YOPBAh_-mn>^HE`NS[ݾTZRiYώH vShY.] G[EĴ*zSٳÐ͛L0U0e 2J/qkCGHuOU,K!}yNKu3Db Ƶ1r/sA5dnp^C3t e!2+̞mh;u3bE3"{dI;^,yudK%p]5ČUM0 nЍ>4o,>UvǸǽ`#`hxO^___^MR9]V~aבKAL"~9fah O7Ty,uO/Y-$'PG[<^G\O=UѨ?f;4݌'#2F"ũ=k֓Lv' Ҏ9)"F'0 ? A~L6(z;]m0Nj yN(| (A*C^9 )!M4x(bk;3gDԩ)^~=&ʊ ^uƫ¯y:2g,,hg ¼  @ þXuA>.CFQ)lqub5L´(cȡHfoUd$${0kv,o *^bqI/$alĢV谗98??{?JVRz#3^aб\9|pa: XȡN%9UyӐv:Ґ5#3d}lEu Upr?8.$ VF߁әx QP(h,tKyuk)+iS $kz/r90A=]4"6ZocVo0q&hwq߱ YV925EᥝqFB\_ Fԃ`I?bmtU/1l|фл֚4~_.4ΎٍFB?;$||Y3ax@0{ RZ#k'i`]:fPiy†sd u=c 7E̅#y= $b}0Rcm2"6vM_ 2l`D/5$֍wAG =2Pxؕ &hpX/6cqSi)o <LԘ.tj\JSzFOSxCD,4lൿ%f/x6sC1? v=ΐ4g]H~.=xݭk*=HƤĚ6|{ښ3 =xhhA$h3P; Y l%0)ѝ "et6rнmSA!񤔔O^$n$"&N!2hXm(Xܡuu}7 西A-gj:N$%jqq?_NgjAӰ]A$N's⁂FeڙK=-v1ԧ" ZJ Q3>`b_%eS'ʙgє18P!'%aUSs03j7LV;&I[ RzKr׭-/4B㋭?#=8/&jt ztcqOľy2c~ 4.^^!9!X]u?%@&ֿ!$}hWkQeOa}1* zKlQ9OR)v6@Ak M63d$$<66;πP#9X I{6Px],!" JT+1bMۼs K˶eU'!F܂l^oe- dN O|-Ը,r ċ;}.Rދ~X53-b-Z  J6LV)j$  >>ROEŌTr~J ]na}勠n™j柇i?%,jD |V8Kt'qy Ⱥ_0? G&ksTQ5CQsakzIԡ)fs1[z{.DI9d (߲r:vmsĂkCv8\ae2׼`ݢV[0z@%,&ɣf d*Yz 'b|uL\b{$jZ+Pjq:&Ula,vkZS cev~n 1_ih|UXLoE>2d%8+yz1"i.2I(fa}q8S\&k\@j b搰Z|fص)8 &y5Gbp$Zč~>8ڻ IHZ/1 y5^Q1"!Rc{5(Xt02? \֝SrM)^ #@ft+c ȲOS:.?)_'OuaXT)'>:wl=熕ך_AO;u "/lkq rJZ̲*A@2iWoL?׭Uȴ &:u:ќ_dkw՜‘Tb7 a;I3 UUAr_A8҃ӝǵoƲW&rw"Hs|۝l ` Tߙ>_pY춙l$Nli)瞭fմym9^NaWd* C 3VTc¨yB>U*ZP6.`$Z*MR50clS*e^7Ԟ.>5\[f{Qҙׯhy~:ag*״bu2r\5IU$)K>E5Dq>N$֤B!`XO%8Bj_ ?!0Ԑij 'τL14N Z4 |k+Yn07\yWsNI=6G9ed_TS0E}]za6$'ltPy\o}?SIr=G௳h^ne=p2s񐓺(TÁ~D,MRBd i`z&MSf[| /Or&6iJo:5/1DROh=e.-&]]WLU:ܴx%$>>%teh%VXZiZZ% &/:V -!̋xĮX)n 40L- >;ZȆyM\jk'_P*3aURPHmOt-ofU`)%ơ{&NnKɼ!  5JTFEA#xHPq1!/"W@.+ r2[OyI nׄ:ƅ&Pg"UG\.S5B;.ZF8} X9O=\mgqg>ACgTQ:h/ݗ38o7R5fT7:_ XO.;|Bg2^+%x'Ȃ¡k!-ƃVɎ{c840̀@b 3ʄn3'G&S!9m9/|vWw#d{Bewu|_л@L=ؿ/L]w؉owTNn҅?Q|;@ȡ%|D_^tJKG@-],@MN{8 ]Cw,V..&^|LYQ2:l |cx@kv{c;E;[%b)F}%]3YL)htq _[]ڥUpe+?;nY)k:SMޥѡo/;$P{r2p¨2eyE[*]u: "Rv;3j{[?O((poir9sTqBJtHq)+}&ߪ$VPһ@ #P!X#;%QQ.p]a!c 7Xֱ]|GHILBQs94R]I 6V}΅e16Q-`[0K,|]#oTMc|5KEqc^:HR"mBΜzwgX2n{+؈ת 5fzly&uzm3WqDr;N)a ,TU1e̢mTiEwOaf̋#j?5F8]*Ra0=fb16rO_BJ]cuq JI<m)֬mu& R# Wl˦\# cG2?|FS0i[!{%A L.bI@Ǟ$V]tCΒƉ=~K|"wj tZB W")?mm;xmb/RFp VJ9ec& T 1&}{+3N_k_Z&\ q1 #7Kޚ?y3OFn>esjW (t6jko+lҠU\ZIjuW-QZ42K\*33Ink7b|Y/g IV%?V3sJ&NvE]ڇR6~#^b:)QVA5CW$ŞcsوM 5{shcG]vԷuq] >n@A?ŢбZM7&&fZ`CC@-9gƠ;#|2IS|u:'ƚUT*$ YR> |OD]Su_#I-{)?M _ޒ#^#'՚/2& N'w(?K{.Ȼo. CQq>)Kц r*;J16][,).d%FhP0CiTt)d7 IK Oӷ`8ǁ ϶NO0&$~Ҕf&(1ק|/S:\^B aH=K %c8^&wR5EcP3).3rMoiOW$qqv}gY1a[8s*ƑrN?cgɎ^*8'}i N_N qKxewK܈bH.CxwsB&\3ѥ[U96Հ# Fm5L8ա +8jvBf sBʌN߶_66Dѹ{[]^9Dag[䳫uYBA:"IH ":TWm ]ޅ<2s&[ɂ:;~M{̏?Xc!K.h/Bkӱ=5UpUFC2  JĠd=ܙh;aFD4j%oղ q5 m`b{9T: >חG9aeױCTa[# lL.&0:}L6w0d'#kP&st¹kxvf(;VVV3_ы|D<.mO9ubOrAnV:pzOe9IVJ\n ; G_isNߛ{JUs8m(֚p3ƽI]l9ĮԻ _?ү3@e#&@^(aՒ߷?5pTe#0R`vwx]+-N*" 2E oY m>~ o8"&qf@}l-_Xg/M/ϗ<]J af^ Ɇr#Nٓmݰ(0֐u*hD}ύ{,OoߣFze(pRh,\Cˏ8JIX;(sU g7A7#;z3k)&ޟ Fh3WUtt)ANċ45;6"IDŽR6 x6'M,who 11gH-9Xf'YNy)(??:uhh:!hRe~\kڻQO D [SsogZ-ckRYYٶ`}aʩ`*xx"t(jgvO={!ۨ\GyzknG>m ;>-5ԉ7tn[)]`zuޞ4*zX -bBժ1HF`sϠ_1Zl7($0B/gIj&WAbeqw˘N;vR"p~4g@,4xWE=Z#c2y8Gi3(|u!ݒ$5(\bU=REI TKD(TT&c%Mxw7iV}eeFV>Qڏ)Fiat9(8%;{A@uKP 1EqbQʯy5oܒgPkx䘥?{Hng&c+ՠ:dkVTќ#HPE EXfISa ̜~{EWWmwpZNE-,sN9>Qz[u<ɸ]P k}簗: )2KCv:\TI:{v̦5NoQ@ǬXy}McbWq_܆ߩvI[fOq][%Rϱ3}78D1^rT׭+擛FC#I4}s`*NJ,4 jtܛ&& K LYikr(Bb2ktf908%ZGjCUq +uB)#jONF)~ϔ(@WX)euwyd^wOQ@ހ k6'nټrӛlBN9GgV.5e6냧Z@u|Zo|誚hEiH?|^`F"d,̆3b* %2AT^t+&/fcy.)_U)cuJ>ًܑxiJ3Luph>S*^DUV%X7d%vBQ7v=)BdjX W\V#5sdZ} JeODI xTt9{oA:?vzP]}Gկ "YX8X70{I,ElV 1(}y5{K-Й-`ΛPނ/GjNINvPjrC0%,!^V)2`MWHs^4Dnp J3H>6\U+uۀ*8KV{ ͸k@>W ZfĘԸMVZ*]e b?6oN^/Rc G7Zxʔ /O/K5|}Ga00s>yY7j`I_!Ch@IeŦJJ7~=C ,AiOm:ܪڥ E`VyP1=P6%NKf'XVTGawVHNAų(V#i\ES'= LfT| 7QSIo].;^ (!"Zjaɛk6Mã[AS(nUm瑑!uOeI #1茚JLP> ?:<ǘ#ԹwS 8&R}sAo7>()߁s_Y@*ea_7;ώFwhK:<)ˬf#{x!;Tagp)b d" ɲg;38]>ZY_ }MM`5{ˠ ۟Ҟ H-@Qx777D`Mvu7FT[qPQ/_B2cfBRgxz=y\}EIBeMHt6Ag$FYREbm u{׼b^ B-RY27LX EՖAZvY(J`uJ7N ISZW]FYbzlp5#b?+~O`Ҵ3m¶ѳwn-8cäU =oakyqԦ\b S#G<~!vy]j7ØV"Y;F ,)rРZ"1T%z^U&<2G%'8 LK~AzcujF%|vշs9q EpsFCƺy-5vb~MglqٸjfnmF|ь'IR/P"q -WYM!qpU?jyX>EWrLj35B}\OPcMڦmez9]oj4-LJ$=;=25cIZ~f(٧ટ<ݗ/NÿprD`%H8ӠYDsvyS]ګɓAwSTb֟51h^>>ND`Q-Odp#=z";37w(?-[w$_Z4]`~-ɮK\U6c'F*mnb~}J6~jl4Lc t+%z菝y;x}-QE;3/a` {Izlv>N vC0R}OIu)mQX^Cw_w/iٔe'N~!$;4J d~:8OK˷@xs67cȇ_QJCvmBeOґiiD<~Q]vW $fKbܸK0p‹OcY73PS@;$/Y4Ң?Z:_k𵰢{ǐaIuǦO۸+"ՍG"1Fst\w"ORۂh̜,AxXꎙNi!zt/?'XΤ5q >ÉLUMر&P Q^\Rnd[r+.=ĈTTys!$dUyIh%H|H=="Aּ{yX]7^ZnJOpv)&Wl8W] ,m'vYlgZ5$={J N4dïɶ8+W8-B VE- #f7K; E_*Q-u}`pb1,lIQ].>j>Jϵ9*Cvڏ{9?Η1EK/0R~mLjOt}N&, [q.#p(cGnW"XIn8~G5,w`tlvM$7c,䝗Ny FшƄV|{M!,פ6gfrXLvm݌s'Zen[ގYs6^Y0RL]w"5?Jy,bRq <<8!NA;/ ?c|oB^/lrEDEmRȦ^iC[`bb5 CsANyQƂ s\Pǹs$2 &'`oѾ:ְ7xX׃;"L/Z vEg=H$W <~ t;kAhv],e 7~#0@~uuCL/_]91z47\; C$ɿ T"O{xڟ=tsNuo ϋl8zV[[Wc>ϵYęTɤg*C+|ƣGPRS@G0%4[2! \~a5Dﳻ k 5 mZc9A‡,S,Ӭ{e6P[ ghW\YKoTu !D{[A6Kڡ4Ö7[bLEӒ=(C\_tAs_/f@ݮabA!.Ϛ&*(&9hNQu&z0oעy0Ϣڍa]g!ً;~¼nR)qhT-6TObfh N˹ȏ`Mqd7pN[&*cF˫xNIk##8z_!e[Ɇ˄I-CR[ <7JC/9o ^W,#_AF$M0H)n왟b^] /^&{Am}MO2EcXepWA3M"eR;ϽL[zַ^;$}[fMhy٣qcty@SsA)G ^gO*n x0ֈ>oFu(_dq"Rd|8`yVHo# SǟDp&s:om$Wr`bj a@0tN*_$7g2Opv}~+|9/~Si#G6E+#MX?"DERQyے#AC'O]{L_,KA\B"YZMxn3轻7:O^r5pjAe $4LVS}s g5}/aCڴ_)WPL,a?FJԜ!Q ٰ#/\288x^ǫB]aйSHaU>v]l3WRC@.-'½謶Y6 R T|WCyn3IM ]S1gQӫ݇&g>Bו.UnN4'=x!c)} yNFoz_qͦ|lh#4ym&73q.ʷDT2okj7ldà.Ϙ 4SȖCVK2 0t-z옱ׄs `kP&s%34-io#oH'B\\dr,nq/zPSocMH G/=ξQe Ğqs=pX~0}g}g' EզHh0p فXw6ƓޯʹpKƮ=wۥeqm |w[TJʡKl6T0*8c, s yR3F^œ p=SJ%QJWIv?976^ zl,Ɉ`[^tتv2JKzB?ue#֏іlY a v\;|uZSŻlݯ H[Wj%58! ejhE]R<};] EGK`ynYUhr}OPAe8<8:uGA۵t0#3|"S\a#v P,ОV"?K+k"c2|Ͳ%p 9ik3r#w]vu劖.%ԍIkwT!&G+:H'aM 44{g+#܁W6 3NHr)&y2rW/NǍ:/d2)38 $?[: [zMJc Clb)'u8ˉLJbqpV,^|vuBQynHњxc5s(m *V<.d)2/'%ZN taR@]c͚uPx DfK_ʵIxS~=}CQ=z"Rf]ʂ+KQPscf]@8nAfYý(3#1JebGKRfei B~~ĕJelԘC7 Reh `;h8dfunf0ԁBLθW ߌ﨧x+fSgіhr9F~`9bY0 98fE2Cq96:ѠQx nZIJh3nCBy=K{gwT.@c0I {Rg+D'C^.8C';Kq<3 "Ʒ3Z M>xEßXpBATR ekGP~SknLk)"m/b?\H M+_ƿmMz3AG̔*{ m L(--5+E/S }~ T41x0֏ӣԩЧbPѺjfଔO:N`jl KyRuS:SïWHaro F/? 6:8V<:#G6|(JX$6 q)P vϚ&fvH}q.3dHip`ll  a|˔i%9Mw8WŸm+3¯BWN`u$ns_Mٷ.w7}g{aN}WOQ9W6K_KkBp@Wp<= ^+=hThbg 4eHi Ӝ[Y>VMj/stb:Z+P.3I^dO-[74">R;t>^ _KsC Y\GR)?Bf?0ꖲqj=[L8=,Yc|9{zeRvPrc${Xş?OV$2~TBV*jN(9@u`}p0HI'ϋ"-K,:2 RXji:en|"RQJ++l”NVX'7rdg:,8 Å㽌E9 h˯㜵=I2n֧XE;;S7ӏ3S%p87Gg_{v0lsNP胼CNhX]'0=N(?f)`;dJ/?k.wK$(dPO4-|`1 8#)#*$0oCGK.x|^P0f_{ HHN[6}LR]ANy|  T!uB4:}۲MpXSV6~Oe3&Tڜ;ȼRfa* I+`{&,2j794c)w_X_%_S+`j .qI=k"qlL*֋(Z*5ġ㥕Jbz%:8_W U$o#H ~w0%v{9C} դWKU}m @1F9+:f,oufT%Pp~03v<+Xkc-> tP x.|ה|+ȸWo=flآ$#@](/K Q_˹@'HV>HR)(!;J0aL}}+\N7S믐%I Q|S*? yRŝsR׸O ֎nJt~qܴ m lcW <<VE3D;Jp,γg[m-#2k6xƊMg#ħ$g%3e.'#WگAtY Bo$i^Mݳ0g nENL!}:aUZͼed S9L(OoQ^3}:ZqgFM1hި[}({,9>!!r/FBׇw5\*# ZRp{s1ѩ %|m'aw.a`4)E/'V26N-<3M-[S($A3b^|]Nwef=#_∁7!Ĕ40ԫ 1H̟%8Qz2?N'>pADS;(M]㉞O{5i:֭n<] aio|M8 N{{̍ PQEEXvއ^grs4Uqʵ5SblC/IJXBt:mKڕ[a,P. Y4O@1Myw.k]ۄڟzgܤOYu3imkB۾VD:G@p[;{<M¿32C"q-8ZԧW8_T6]:(>x_K;jizSschG!1;~.QxVAK)\6{ҧY#ȺjS x:[ܒzdͬڪma1&J@d ϒ!AoN]xT-Y4 M6ޡ 1ؕ e f+;?V"<~^BSmT &/ga)\f? Dym^AٜcV} fg9?yLlpUƁ\xY߳,yvtZwEn&LI ZF4Sl p7rH2WR,'!hb8 axe}ӿD(~70 ÍWYGd<o4/o\ο9hώwz>͢׹y܃xZ|~$|+βHRkJaB?P>͕A],Y~1a |"GQ?HxJ}8<:7[]>9V"E%|[ѡFY5LlO0-GdEupq!ɋ8ir||0&%Ta 6 r(5_x42Sumz-m v4)1q~DQQ#e8?&l. *p=EQ|Xsih^z& 5;|\~V⽼aL}B E! DI F~C DC?] Tֽa( KɯԠK Q]J󥭛CI$(Sa#zT¼aWq-L67mϦWqFh?Cʵa KKoGz]6Yoݐ5T&mH]cBF]1qK 4W<,7g,ir3Yh Ju1ã~Y1cDMvJ\wP( ML-Qm(,dW՜>>Gw6& %F7P?7Y9xܫ vߩ=K`+u [jY44@RfF*COw%9L) (E1njVfVimefh񕨄S-t1r`?fT^qנO%B5(5|)O٘6\6Pt7O^?Y3ԗ?[%9/˒S}QJotB(b#am[8[L; I~b8j)pq|qWqvo>8iJ UC8!"}h@ؿeo0Zq5iBlKj'5M~kUq?rh.<14@=1.|\r!xJ]g q\Fwh@IOEr^ syQdYRExqQ+<]9eݫz+@B;٢ȸg({߰H^c"$b lgQj0e;k#w+e0ISr,_o݅}:=de\=Ilu~0{Hs/cldP[CbE`Jnm(6ɱDžaLo&5|/M:ٰ>j{+L"[t8xugk,-/E@bchk8͍)#TbP:~^ݗʼn/4&Ab;wWb#y )>Yئ!U%LZi`ܠ$4*tif(rSr-+U*ps9Ay,ԭ'K՞4ܚdcc½ EkؤXU-cI1 &~~ecuqܧBxqPzctW|ث4(NzlO>pYObuhr3Zi>`\x%o:^gcZv!Fǧr>ܬ_4*&61r9%R'9[Ī}AwKqkB\ )F҂C!W)E=0!'z(U@5l̒p >b][D ~mCѓL焧 L>ե$ 4uNs1MaG(WfyHAtۡ,aGrύobs"Z9+G13 UeGl^ lf@RMQv=Ll*FM֣GKnFgI^\})ע. A0]d~fL}g̙[DW PۓErVƋ (r%ŋzlӿ܋n%N;"fd5 IYf׻آS8]H;tVᙨ'JϻD|<Ӛj߽@a5N@8\8ujbfOӱ+g] '2O]WhCkmc[aD6|,q|Hta_OW~YdviINh¤h%Og &l_@:4^@N,}YÇyFbj/-5u12IZ0D0icĈHN%'OJYw3w!FA<3;@-:OBq4AV$aTf[w*lRh+ï3<2PKK$e],xEȕOf[m6BB2ov]]j˻j4dٵh qϭ?x&)p/L:Tا#p ;ߖV+ 'X172]pWŗ @KUx3oQi4' %]^4 29t3B|$,SDcp;E_7FF{ڐ/I dڕ7)#XRi{ol hkuYJW;>"ۮscv` z~dR/(GfAZ\?*X)Yg;a~V3f0ݩ!7PH@d5㵮jg^}K:\m?`E&gJэ w<3ϟD5?ELQr,f %~V }Q{ jNEuNvNFrzPkAPP;kl[}2nШːq+9o xDS uF)8v>>gX`QMd%;r?/NZoKN#7ՠSJ$k(XɁZnnC >%]c\"$/׋U>f 79B4pZ#fAwHZ }<3rE &Sϳf, q޽.W3b[D~i_K"Āz80L2\ 3#&htx22a;E6BNrd"Y&VU1Ѱl6YH !a>]bӃ,qujpe1EGygn{e:#MS%c-2Zɗe Eߺ4hKjcQɨ PXV콈+kE/bXSĀ+OxКTe_MΩqO3-*sPP1Д0N w 35Q.ݺ/KܻE(؄F+ߞ+PjM I N"v] Nu&B"S.gnjw|bҶm 8^9 ᨑ1\dC̸JZ70Iش# [HZ_&#;%bhd;kPIWPeW YcN ڛ;XBR@1i Y.D{ѝ8űY ʖ$L-tTdJB+0T[ФC Ohoo]h:}ੑKz~p ~v;J> ooM#< Ee'(;-n>J}f<ʄ/j |D6L+v~+ʌ/Kk* 5ʄ%[igQmq/^#µkҩ weU#:;HOEJBzƬ6/bVuXAo*b/jB5i4rcT=Ybw6G5WR@rP'9ՆxMlOv^^ D|9C 0@XzCo5#|œDd&̟jQs5t#'W.V%џꝾ 'eKsD.'ja1Yl& kOP=gZt|Of4rs?Ρv@egIJOhG^":[bYs/J< 'df:՘ 4Znb^BI4ChxmJg2B!޻M8__ы{d}co6eGsə7HB4GU5pXSo{Q3i5e/ iG(2t@3i{k ŐHJu,feJBZvq&Bv apw!Z<\lryWYσ3mA e;(r-!٪ޥ-F[+FŪlu]GS[g]3m|QR(.fQ]m[ Qm"Dox8NP|Ϧ&G6dZa/[86@3<llqeS1)`Z?#֞8fHYT5G-Lfy? iRKB8@~lpsw)*בkQE㺥1o2.7[/*iàR`d͞HĨnKIk-CXOUTg_N+Z>LL^q16X W`Q'#hߡgLVoo?ݜU^lQG.q|F(,hd*Pژ5vWn٧T ~m_s`!6γx V֥QSNSA騇XWor:Eh y\M 6'Ҽ=rqfc EI)ޤeU6dKGXTNht1 XTX9 ߍ͸-|ULYUSSV*!gU˒7mSI:Ozo 4]Y{8nYeK{=<衤&dB*bAiHlyg7הּϋ,au#2+ekcKX|Rx`şN)PP:a[1 : u› N%O.|'~o>H$lxIMfaJWhɊ  _Z}?>T2=h%K `UVIۼ;N*qm q ztVFg-[YYܜʶf FD@eJrCUiÙ3>/O7 *0:_^8E: 0'ɫ)2 U5aЈMQv͊yfDM-3<25^4^F-g[emoSJU  .UQo<0[&s,v2ga'ŋ֍OR[5Cg^ w^0W_>jAjj"kBن-(<AsLY(M(%}F ϔ0V Kʶ=1*(և#G~UlE!Ց~76rv'Y#LPY )6&W6cm؂ߤ|A"?TA;]mR.a2AfEQK7ƖBZ! uAv' Zuql(kLqE+V_X+C\ 'ȫQ#8ּϩM|%P(A-#nӧLr臊8P)B69yfK<Ίq<$mX !ԱZeA¾!;-Rd}4m 8X4|kPA;5H`:v[XrvNz1'f֌ISgoSwm(sWc"0&ȟ)!ny6,rzt6MRj:`'fg/Օ73+[ W/VTe x@4RVbWE&󁛜:6]_Wt&XCȊAYX<#nqQT6NOa b%JMcJq2s;=ckˏLuf_vho`Hq>E)^%UUkK"o^e EZyZ*whU=.68+Ż \؄ kMDvvsit"LƛB[@>_n/$R.L:LӤ=HBtdݐ s3 7x<)f)k{Go X?:̕/Qs{tǛ+IX}r l_iƜ/F {  +wæ ܥ jk*Ck@qKY CFٻBp!6!jS^he?KH #l,sB.!HJGpC kC]V+/2,zd#_ vvgWf:[mqk~EGh=C{6й)q&$夐L(Ơki0dĉF҃8UCB{%\)zrZwYZrvDAXjn^AF{&8^j>A9=!O#_CqItiT HhGS mf 5{ۺG % 2Z+`$VxDFQa/Tn_RRqbdbͮ,@ZZ*>3sҵ'7QYcXoUrkY\dT[cpgWпDž$^z0-(F3L9Ci!8Nl\ii2Ԙ f;`]?SzQQx-f5%s/ =(|^WmaOe+{*/qffƶ'%S/47fY4"OڧН+#](0HrZ/N-)R3xqp(NZ*@^[} z)xX&_L*:=KQH& #v1l=Ss}h"܍9z}6ѐku{2lq :!aٓƤ^;X#Y1t"Cn|h(3/cnz݌Grfm;*FH%Q.K=6ȓlYq_T&U'h7>փN!fXj<ئ!Aޏ,~c\c BJ+GObf/UB`i^&c&Ρh \"k{Dǡa_Nc:gj&Oߒ9r{vI8`SA YTa~[;odge|2 +)Ћd mF?cC7w-6Ȕ ϯAUST 8"FߣnQ`XS~78S$<"6r壉狃JNQ(Ť Iqg3 .?‚e'9y*_-CR`Ol[N?M)D:.f5 {)FQewRpA ʱZ3X%68U'R{y .ƬSxs˪;IH0DY#Lug2δn~U*$1RgMeX^5h/ْ;UKjB la,Wvv4nk%6ak~m"B'ыϐ!LmpYwgSx͑|w;^*(E8rۡ7M 0-S;xS f'QzsgV{4XF!9hߟ iѓ]o(Q4פB>#2ݼ4`HB o 3Z{3Y輠U|>l%|̏"om^X r@giscxR32S `D:9Ts)6[k{.2-]<~S1Y=H$X唹9,MQq Lkr6$" ` }a瀰[yL~b+7S"MMص{ )eʦ 4!۸jW*|ȘϑW5ʃao[[Nl3hwu{JJa,{bĮ >sߝQP f 1wMPKFIĕ:H9'h)9v?pu_Z{awji$pvuVK 3<_oTPDژVvLT!yXہ wlB# *1ԠSB|f79;V\b:߲QVjSYNw|sR&i(b?;>_A,sڔoڪksȾ$] *MбY6W}U[n <2?j*(dG!rmtR[j :ftQ z wF5=Z${{x+ڱ,Boɿ81GAP0xCa Ur4ush>ld?| =$LŋIxX`($qȱ%X='>_jV{V('|クOl7y 6N&F%;K\HBCJh~/5Ug_5<\M.:̜{=vׄXk2 -Ŧi֧/3,,| ({[\fBb"o!a`2+X= %*CsĽ\(]NG`~A/|bmp Xf*/g*nwͦCiB=r[V _7gT1 3tZq}W.* ˄MP/#vdp M#dYQ4G=aqU}yF=]:k+B4 6FLvҥh6ia%}W%G]}%j 6 NRЂ^Nq4'nc#D9*> DiX?^wK$XGSoCzLXyKpGf\Yʏ*סb_-: |ZY\DH8|d@_aXDZmvoW6fMCp#"yT~؍Y>KBqYHGyUn;f= W/z/ 7ܟYin-jFkEzE}[̽0JqrKgIe\fUz,xNL^"_zH"8-TٺT/y$Z7@h=Lou9,ajxlʴ_c1œp6BQ#0qnVR9?b{stwbkÎ~lM6Գ_ѫQM祼c̉qyuEa$E QsW˲' "E﵂0I4A: K\~=q[fr\U&?@רx xZ3Ao9`y=G`ޥ,]HE{cT#3`b3* 3!9{,@ԛl߼(8OQHcf  Wz w94騉#Et- e_i%Rޑq׍\å9`.űï}m#VVyv㣋K VKb-MT" ^  0DSWDo=m'H'*˜ r:&lI.}k,>;Ng7 |oD]4G@qci/ F=$Ȉ"v3CXaL!_[o2nM[dM>_Pw`s-HUxwS1vLO i!9ob,c &le d޳9;,tu`XR';5)+U.J;U%FmP9F)0CA+gfkLޞ0,ƚSmeR 2bq:5( LLǫ֢1Sa94D= .c[L3e:oPX +, 8I4rb+Z}vjAYo~Y А VK[R"3K8 0;|_ҿKˀFlh?6 ) N=bHcUM3~ zn9WdUh2#U뜐12ث2)ggkOs$&iDZIFi;~QKcfxҷ7 P9 ՠ^qe{LDOsIdhhz7>dͮK=BSuב=3VwNa_ܘ_=Fm,L5&' }\h|u&xƩ@J8!=My{ 4PafMv @"sSɋ: \aGe9N1F!;>]K#cMCҧ,e$G\hᐈTUZ/ ȃKEŖ+v5"zC \=Lِg.gt8tܺb[PeTƣh I&= d øBGs+앲0g9~2󚞥[ -.&ᔼ. FSPc 5Ov'Y[fl ]XkdE@ۡmٝNF##3ǫ5 4~_M(7#fQ/Da&zLa\%*[Ӟ'AϔDao}$iVĩ]Nb8J=$Rz<M,JKZR&s\û#34n3"ɤ%$ R vꉡxYۚ &j |z67<3a6Z_׬٭PPp t,s<;^Wgͮs% ̏Zsl eڋI%{KvD GBY =|v>Z'^Bpr-!Y6@o{6s*LcZǑsəyƉDU/O 7f%-TGqqw(0͞/Z|p祫Y]J]*>v W0Q OHj- IZ8~L:N&W2-8v0ZnM;ߺb|{0䏕Qs J w`eC>$E`!nJ)rxQHiQʴ*@=сWJ $Q+Y_NEQl\6GyX;eqV"ҙ}~LSV7M9 Xˁw\V(ڣ`|%x UO"Q/$X'J(s;V9}Y6 ?yi߅x C' ?Eҧ@dg=OҤi<!Y纲CNBp"߮ ::5Si`Zƙek+'r\W$&SSΉ4|w5 ;H{cqX^Rs$3t^M]@Nω :Nk(hK6kRcަr/ [OpM[ڰ\.mVN>a=tdT,QO77TW_S?KU(454aYYVP^#囸ub %T曽pJ [.Vht],i}j+E Gs@p_857U?Si>NiqP]i/ț5PkOrTxvtLCīD"n֎V. G+̽5e@vnara3￳S6HRxyN w}fo lHPҿ~R=¡T05qpG1^X^\%]$ ]D3gn/KA%X/zTԆn JT rޔM\o\F;i6uzc7bMKeRznLE5Sz(㑧VQAۉ (k)1Ρt:~b#agԌ 9W1f{YAZs 6XO Z D'ؗYc'*+Ot4K )j]MԶa}~+n/B⥈vϘ8b|=sb{?Q-B+k'H5{n: (vyď!;n"u= RG.V,2si1ttq}^v7ט0e$)3%v&:Fг4}?(.[<^mSmMI UHX8eXpyvCQ̥jIŸ 37y] u#aF?sGg1ɤG] 0c,4^MeW,C˦eOXM=SE0ɽqomo\`* h^50]Y >qh>Fbz1t{oa^]`W'_Ob^#k(5<\4pBO{W\6^NO$TL_@Eoxtޛׅj٩?:F~ l$" $輄H'9)yI̝匐Q+8 \ÖQ̔?iWRY [m }7]([48K,$~CmEF(J]2F$3Zb w;վyW풡K5[g sTN.R]CP#׽qM QЗ,\0 >AԿ@OK5t]v5GqƙV},"8ģ̟U4;I0WEk}%~Dq)~Re@= q ""8N\wռ|0&~&oHxT6F92TfsFJhJC+3 W_Fs;BH).P6( rں_icb ]C0.&zw{LECU3QqŽzeq7"M5e$OYrnЄ ,pbH%7rS빂6;]xJRq&rTee|>|T| iB.M!T}dYDY#k;wkkoHގZtV/bk li{C\N]2$%;GۋX/U-' bC+9Yhpb#b@}1k#奢42?>/X_2]q(sה*&ѕ^c'PEF^zJ1FúEOǣ hM`tU2a'={\ tOӬWZEg e Nk0!-p}-/>H?碕{-5kĊ6)UOx4[Ҩjrȃ<{Q|rJi`b$p'Hu0CLgU;M깖3c@f.D%2k"`}wF:䪳tWA3.E tPڮQ$DjFdp.ͥl$JQQ=>h4d f瀒.-D; %\ =md-'"e??a UJ$[3y)l.?.(KMeNI#B㮒xA4?`%ahX"ʛX cs!F2/Q|j1?;svpRGI jcOyrp)$FB0]d*J0@aQ|T#u(_3"hg~J"X34M87j{Dq.wGIz&3uH(Hj+gM9)h8B,'^}POH'!P(tU=#"=~IXrƽJv@TĔ9>75k2=('\ԟ{3r 돘RwWX?}ޝ c`2r8P Uaw7}cP뇋x rZee~E7LtqFC { JEָMkФmHC8ؾq.lWs CǤġ @69CAA3AM./ـsj./9uz#P$z]"XN>ikکw oߴ6xcgo?m9M`nrHPI)MzGqB?JWfKAW-TrfC"Bqv5 *3D9ELRvwM>䠨m0m/E#Vɩk$.LU JҔyadƠPI;h j%ɛNw;QM+G-h3?cb{dNl&4 MSM3V[F_"=ݗ^w60 8]>ĖG@t`fo;{=1 ?ZtRInn }v]F uqx)`: hEs&vqE2Bp_@P^&qf";M?;@T(Fmxv3(g以}(ӬSaCrm!Y! L^ltf sz[k< 5:yj:U }!U( s@vf}Hu "6Ii6Q xyIʸf2$6H]82ϥ4qR#n+c8 XL&HuJK;7IWH Ƴ^aOF5]GFM:ԥE.?PՙjG *1r"Evh1ǂe ޝ:FW'K@ Ն+[vtDu pc[Ep9kKUȵ\|)Cy^r›O_0_K$Wg j)@@}{:`Fv9|OD a+Y7۫S&yQ`٤Gn(2-guGA"Adr|$SoUK8ÑCl?} ]tX@}_kv* P8`}?6O;o1szo_U#󀃶/~ynT3UxOZX B-϶@Z1lٵQsihAS`!W%RPu5F9+ \ +JR Џ6e6FWNn_ɱbW(=HrBhA#*ADB$@vHD@kr$עMQ>VmGi Q@O- xbLpf!tH[ʸݜ3ET w) Ȍhk5>@Eޱ.i 1&5IWB{ A6 =B{:Js'<ѡ~UG5 I+3~(pgLrZibzkJ,U,qxU@\\LK pȮf 2nPFr,SR?__ ݘ&,M0#3r~;4i(vgi׵]B/sVt7< sz-bx\r)gXO?:,&ə|=MhhkL CJmZ\Lcdx5 z[M[2Nu8R[Б+&o f=S.`WG w(V>984cyF?ې:Qδ[msaQP|.R/ +gᚇDrIJmFv{waM$G\?BSn;62Q[H]ߊ24"O}LOZ9` P?6(&/xH0+s+xv١=_qh77yLy"W3oXT~l  4.('|Re~xD㔘%Y`r i* 2*$ߡOCT*;dȌZlxrQ̏L {: <9 Pj`9Ijvb4* ‡Xe(AKc"%ۖ:EyxAwgFhA4M0<,DܩbC'BF n sRn:_͊g{  2 |vft/'7jh@qL ;!(igcF<#j.yG׻vW$3<,xfOu7ҳR:GDo3RMlp%V >׈Uꠏz+ͰSq}m5t8L])>K2 9Fp@];alݪV̴9{72)"J=qUќ _?D=ۆ¡BfeCa* ׋Շ˄1m}P n@-2T~+&:/HKIW±WLKOW2-ӯ"#j_l*0D;JKy.a{hrH\'uO@{]OjW4`Jm R[٠{qCo1z{❪K_/C?[s|rU.oI4B^MU^bE₺i5Խd;{γ, 5h ͰM^y,1>.PSɞe\-OæKpnK%/Li WṯQ`;xlۙ B),>KVt^-fL4WbWaǛ9Z&<ݽ8w<ۺJ e#Αh'E *D͢CU,ÂuU{ 㞏ma}:]zfXd!f>nEQȲ$n҆WRh=#6;k>{%P}TuZZBجh=hC/2~Z)`J%2GlNrv"W,ZbM) gCUm7sGu)v* =8e^*_af3q wC o=XS1 IAVpդTrt.7•aǪ T1doπr.? ٘\QHZJ[#X Srwcp0)o(g)BAQΝ Ďh$ >dClH2D6Wn5n?9;(cj7|!%Yy rfz:[FpFh! O.yyJM)cKPFÃڬe@jv;]#\NAp+-DQf~ qAtubA07nˬ4sjii>ݹ]P".yt|z06FpRo=w؝G7ѿa3b)Z#|{9Dž'*;ױ{_gRv@@^y;6, +U,SօBL=|\;xv%WZV>ug9x. rٟTKS]WX{% uЛR3S|D2#~mBaD$٤܊F5_-))X:&QUM~h$;JSL0H{BwvOaeFڜ?uC pҼ>% Vթa@PR-b,406(;iZN.>]xoHsQ[4罕 SlYFgH[,VKABN*BrS@6`` /A'D)=@}vK<84R 2e%aX^ӺOz{}Z!6*4x 5I9x$[ɕ& "AX63sG}pMiAIH[ir^T?JЧ#UT &Q^sD : v>9j9Ӝ9k?z/dzVT/ EbM3^%;E?BQl]De!4n.|FzOoA= %gT41Qu.xL;z}7 ް3@ ;I\,&>/%=0)7~jĩ]*lvQrҎi\J&bM JC1 y| s+-wiΩ9%梚hg 8`,#Nif;&f#FYGJY?i=L :*|&1vmKH:[W* U'I 8<<q!-5>1*}! Gn 1 ꬨjF[f+4C*/NM4LHW>$p C|+]Fn8mf}YBC 3 7_KA"h;=MԤK:.yj48zS3Nfn;.Hoo><6GԘ#LIQYa5u2>4?>g䰩Y^C FvՋCTԩ:~N1~3jd<2"J}PM%- P-w{zU ;''ʈl?"aIBP$ r Y.W"Q8j!(Iydr,(-40q=ЩN&.s(c4.DRC'iElNVTr$?s(l)ͯʔ bp ~/j[ޣs%â\dUSf]I-@@k;h'#ׯ!@ -I,ӮGXLB9[W!>8wul9o\7&PGZq`jW >ԯy2 #U0/4,=텣MUrnJ`m?2 ŲSr2 ?>!4] xkhu9\}.BR>tX+Kfp EDžBK%7V' zGk/Ww&:|?il,{<.Y m:T& zE1̶F#gI˼ϧ@iFӹŒ}Řb,UWzS>"WGha)G:\ 2n砧XM>tvЅ=]A>NpMcW\ed wi}CXZשmD̃購z9N9ó`ȄvG9A lԇK$Y{at3زmb5xhyal#^Q(/99r2|P|2п/>=[|$yGB:SqH/-B*$TBK<̒rkUn ^Э.haدE)z=G_xxSk/P(K1[)WkϛG?ZQʕkkl$gs+5!0w>u׉+r:B]<bowaf Tk gɦC#eWS^q gWT13%ߴ RH\ eB-uj@ -~hZ-m_Uᾲ NebzxIG%2R7ًnP)wԌ[ xʋ<jЧP+H[0pxnt.u,6 lX>8ɉRͧ_dC+4")|ЫI\b(LjQ 4hz%.>^r0r]>grT ޶idX;ѻ-3nB~|bq(չ;\?{j[y1|1PчuZۙ!J/_BU9˯r-j0ra\}3 i ᒖn%k3CJf^^2X*avҖ\0ainlְ#nx\c&r9~)Pk?c˅֦ɏ?-Ng]JvZь;bvۚ%47/2~p{-su."LݛNL>Chs]3)~Tt4vU-mdj@-wԭw TB0}sԁ)昑jlL'J(C1,l)56Ŷ=2ɍ94~솔4i|ԯf)BEIX6]uEh LOF/7dSٵ *\&"1# ر @PsmT`X[G;&8#k#1eS#Del捇EjQy 8ף=t_e8͎hPyHoe^P:wGL(;ծ窞3zke[nH8Յ,dX5UPzU߯ )K/9|DĮf`Sp6L4Q_ C@zfIW3| `hsiU5#~y}0OjF%oUS.>v?*FTK)0΀Xwh܊QO*ubEp;^ϊcN5t7s Y! NGmB~}zfZ%̯`[  5;1zwE^e~Ce E`xCx]xK*N=FWm6g.81{h0;@qmv?g*8z8p7H.[j4fߧMhQtҷi D(NĚ h%G˾-brF!s+œBA3&@db #)o&d؞D{Z/Coĩ^0 "pυ=-eبcd;,䡘&A;.Vh|_E|>7S \NEoݦO}4lWw&N;fC!C0@M25#\XD~<߳w⡬.G6;(d4_Xo@fPZu C"N߼&^nmdq9xjFeZ>Eqeo.ԓA:g16dI "6MH!ۥ۪~)bk⭩4׻,6_K]lUux-I3)!:̧f>cf pZuG̤%!T1 wxZd|Mm đS`~0_fuxWFPi=>tǑch/O?`y˦IShv T0̙n ѿUL pcGc| GyyPr,bTdq n+\ܮBn4#YlE4A(xdc؍\oʬg>329%}zfY7(7+ ;ZKToMiuZ=2s0oi} c)$39<]ف3]A5[-BK%.23,xuִ8dz_8hQ6=AWtTwOQ)7#8F="dm\<{]#~HFid*8zG5%jT4*jR6 ]J Bzģ+"EMp miwTJ aaRh;Z~o~%=kGHk;"\݀e}3B93/+74 :0ljv^7ۃVKrԉOB=H)jA)ef[G|7u{a2a p:aʔ ;-'Xu7(SDC-E^A#U `|k _v9{DÙur&e9A{#摊anR=s@8~(z@x?ꞯv_5kCOr|Fд$gguL6s돥0ZfqР}Rk#H9=ۅ%Q%YoDNTh&w27j ,!Cn~w[Yw K(ϊ=LȟF;ͶY ʒ@Du99\g(֑b"ՑH3mG7m9SF00rA,Gl ǝ%hb; AH ?u}94LKw"_s8΋5h+0i:xƪ#eM$?X1ۭ-[Z0-`25VGy3ù7VV[ I{aʢcple~[&k0e5 e $1DF[,vAH`lG/ZWӣ_snO`%^/Hi@fN?N }#I`YWwv L j"QtHq( n(_BrIN+^T̈ ;Tc($?1pM m]Пq0G.0f6OwtU-Ѱ.i\p39.EjPMђ[;pTmv0~rx}MO3^ôo8ZBftwrB(;$q_Iy~TKA"I}q:Qq5UxEђE@BnR8DW U⎶U=}Mj(2=A{74pY۶ 7S!K:t2 \-g"ܳ>uRX_dm Ub%U! [!py0nyfjH-֊[e(UoJ\UbQ)k.  ))(&(ҥ(e0 _%ҩb$ 4A hW9օ&*wӚvx5AuH#a7u?B+qԖ a4 >&ހI%itB (@f"td[c@?ec~..Khܪ> Ɔ1 k_ɮEw5@izM4x:/Ȼ~4'Gu sstkHw.fƐǝx3oSh7lj1.R9ksـZ&WwGG,:*=sdOE3E g!" l~yY>55+In2M\^?ʚ75+&=\ %d.$H9SI(j)8 $Ժux󌼿rE'9ϒ[ԃ|G_w+pe4S ፠1vs= c^U?n;/ /^-С1W~*Otj~I'ނVTK)B$hD`cy0iڪE(b:iAr< i; X85g@#P*ͩ*SJV5<0u)m2 1kmy}"JjԸWZ[lKUu;1^dInr&WppPEĿABHaFᇋ.m֖#cV~Jy_L *-՝l@BÄ ݫ8W,rOh+&z56M5C%u"weѰI6Ӭ\w;Wv#1%^2)ºow?KяP|e&bnN,&:s2OG;z}~nsi%y?l] yrx n`%Z&C~MxDHH%ɚ(/:+h+iȥMQ=幛la8K4\]oXBE=! ꘘr&߭na"8 PC;_9D((A3&sw HR$kى.<,(m(*2 ށ1u(7#"PwAB\*s=Ϫ o9O'(ズgb:ۿg*:rG[m}7@.D ljb7vG[]tG"i4,u3/Sh>tߎ<__9 O&&^N)CZyR|y UG,}KJLj/}kq/l`h/`wEv,C=^u? թ3OE2#@ D:y qp[ {A&<dU`u#9W\" Г PUط)>tWb?M{I;o@?IGHڤۏʎLa1cQJ'Hq:uHP(M炡j3FlwJMzHfq;jW/8X]yάP`> #ۮ$(=tYeǾqQMg)מc xyXցk=Bd us3Z"ntJiORP*%N~A(ʼn+L}얃>;%{\ԟ!=7ωf(ߚv+-S?4OI 7uLlFr$AT$eK 'aP7m32- [ !/EF+i<] d7pI.Mv*{?Q{~]Nnfᘺh~9+|Hqcz8g;\ʞ ^e%CġC2#XX /@//12=6e>pFXxP =~zP˟沆YJ!Ī:2n19Թag ThV_.o"K2n9;F$FeG}Dj8W΢{y &,3Kd\5($Ȇy_|ޚCϷlj(E}au0_^{PO-*Q؂Xu/E\XSǻ$,A-0$wh-&3~o.7)#a81'5Ή, ?e?G'4 1my=peOy<5ڳ"gǝ}")0gĠLWC b+tZ3 &0i+ nnlrW's+)9LÈ L)1V}0j!Y M4cܸzem:QU)yaJZnaE|q- l$bL4jԏ tKZnW[W?$8b*~WVEdq@͚=7iUPj@!$򫛓v{#Hm2i%7X4;6?z,Seɿ9"XsUZ| V7ɭũ^?v ~ =լZ;hV>S"{ 5B 2@*u;M>NO@F@k)2C,i(f3!9w)8|'Ƀ)Õ>|d]ۛ Wg0X,n\wl&A{ƌm2vG`*;Jqz;E XճW8}KH Kr75nw6 яxjV{m hVYZoվdL,0IJ|͓>R ,B`zaCRd[; OBr؆emSek({o+*A$~7^-pIYp0~>YC {#m3#pH-/?2W ޞwU"KE#Y8bNgjȮ-!ゅ;_32#Jo?Ms Lg(+y΃=b^8O𵬶,F4 #?'MN\-8/>LCYr c ջGQ9'Z ȒEhtW& V.&(uYhW VZB Q B}!/&z~Lp4#!Dx}xx~ qLϰyr`i^I@]VS"/4x)Z<xA5W}: iQ} "QlN(Ƃk6fEʌ+=~P 'Q#G0&}< [)djludNY]&nn5uX_1VFzq%x>W3̀T_|Ri VT͍'偀84V`lge+NIOd0 ]<|i{Ȑ%1ctF?u\N z,PSIXOA[)M7MB kiW+#iyDٵO {;B4AolE?>l#00$yMjٱ4&P5Jue:ޞ\%U{S r =;^;4):l_021cW ]恵^P1=PAInN NSCGzƹȘƃH r8X" v\9t"Dԣa녚\t?@n?7Y&&Lֵ݅KH50:f{k3UgfGsZhnbu3sv4'2/%+*Ou)Ó ;$JPڥFZX#%LOΟ۶|Fm>UF i86^ֿ0({l>߷e\R ?7N 38!1:ĔPTtǶ Ԋ尘p{+oQ=_&'^H3W/OM⬯wI9r&)BJ*`G؉(W7D^yZogoXm:t|On~V.W*?g};:F?"شMذzgoQp5 6(J8MΈDRg[h!$2ik6zMd:(1 DrҢ y<V Fm?ОdXߊ|rG7jR](5"ɻ9>z o*,GH5W9案lQG*TB>CBJ4ٜy.]dgYe&^&=OPVfIZlwLQ~kReɠ;t]uXe'S[7AIaP8\#W &䶇;zV| ,fePma zXjՙw3ڴKF$rN1~JyDE҄+WQ=Z# 6q NחDVHyev;AyMY+p9J1?`ٖzi07g<_#>:xh5TYҝY"6X$ĝv0jFvg8!pXmn"A10`Vx8i\Kj{E}i$UB&TΟ1MX%It𝥐ސ٢s-eкTnfllI@|CYt.i-rBD9D:GϚ2)>q-GA {WAx |H2t/"Gc45lt>/ԟ"zIp{׽U>Ӛg,֪qf U>*ro ۈIy1Fr9yCo];ȶ qr7ӌt;P.l-RæAa u|C`$9,Sb~,…'@y?HI A|g硝$C;K"2 >ub/U%rA8wiX}b:1zV ]isrk-W3'0N09yI0~sxri߉k~Gb>" 0筟- `_ye˿ZPILJDtsɰډ0Z=mУ ~ʘ]`P.;wvT3y7<$ ~z̘;BF$w L6d^vIL?4xZ|)PY@TF{O]BY"s2oa+^8KYN~ != 2۔]Kr)-v R"ڣN.[[} ҙPhM>.n@ߒj)qAmTٺ\ogK㚊@+ͱRQHJb`y HjjM2;&M! L/mw]g?PEGFIAއE:&Y58!w{CIkO)6^]# Ale҆nsҁƉ WZ^`%@lJH!oEܨh@ΏSʹ/r+8x}??7uQTx/y" 9;VZq,*!EN/T١ K3kczC»F-6`Ց w *g ~}V6֏oV.:X!b27ZzH/EF =΄؏F6m1**0.S QXYMysmFB${~.Yߌ6Î<׼^Umd_yĜm(Q$- ;D|9Σ /xNXQ#yɮo C{5"kF[ٺ3=~z_r *Jdn?d!l<^E+lKѕ١?xAѲ+cNG >i:`yJD#6n*\4BVG jO)eWNPb PnCJ1MF tӰoe8y>^#X+/znNIKMX'-R6b ۠k0DNk 3aXf^ z L 7c_@{dy{9F[S69G\"ZeQӲ)7 @]3;b>a7TST6%C-Y2Q9?qsuʽʙ4iTdhg7Ҕ̤HՎj}>m$K"{֭Xg"L!d"4 FBGlZZm )NH=&PGQ[g;ys:$(,@,kO*[٥kզ{Bj:(ݭ-ꨋnP~n5*Z)45z#T|*Y'j Z0f(J~}B{`g¸k؎00;ן*}χc)ԲWFÏ4Rq0A1No 2M ߝ03 l*﨎n@r7te >R1]օZQUъfuaJM{[p fqh4Y(A@ILr"CFwTeC[*~0TSs9p3c\|)ҌUaͲ2C Qf~W<40 UܣmE 1i!`|Y#]ۏ Sp9 |e?4fm}r0L#LrN${E5 ;8nZ ׃>jY eeu5}cS, ?A_t g4D@\s I2U7G->/dSeli<]E. x:(to'wV@Meh_j0U5@ށ!;pչ-sGOpӣYB{׋qoDT&o{aYI3JQT8C?h5i=__._,NGcrKPȰc9 tk t=<ީd͐x@]n9vK&P&&d8 I`(f\keP/W~hKF/<پh Աw?[x'GKlrT=hZCcĹ幰R+Qڀ@#^&#Y装A+dGBǼSCW)1nWT~F-;͇bSwm_Y+ "|+H5j(T۔#Ii #> JyBrU[#̩޺+>'^A E<0wIW8ߣ^vCkR (VZ cd{Q~[vziV0g>"4os_u:\ ݉_#$Ґ~BafK_~ 8-BJRd R;&F{ IܤL0.Y GP[9WĨ?T'nOu&9;2HQocOA!Lj fc{r 74V&P?3gB3đsk|f2,Qq@8TO3c4 l?)A]%ƍ?Ę % ˶|WJX-'Rg^kϙ AvyN P>S񇋰vkmf o2G_q]k!Y) yNIɑl h5 +1||?kŕdFd-A( 1L_w<*վx\UT?ÚsٺJJd}opx 8FTb{{TZFt A zZ ,r"#b8fjP= D(BZphN }!->D̤u-LkF7΢X^k#_nO]ZR3QI*{_tᏗ$jzXKq ٞZ=DY斵 vòmev6;EP0`Vdsy1lNPx-§70S4-SI]WR$Wnd6 |zJ wL-bZݝLIĕqaq)0̭\EBqvCط K1$!ϡ]:8f`ՅTN~!{b:`9l`J2-q]c uh.'Zߡ<4ԍT!0ΊÆf\NVΈ榪TP F ;;dڡύ8Aݲձ@]]%" lo6KkrY1c/)k!ݎ7UU:d$w9Iaxbl騎cP)U|:|[S=&Ws5kɌH() ^|Khڔ fܢY#n;Vb؏) U}e;A8)<% ,7N}3y94wC;p Jek8>p0{}L F?F&H~Ζ/ƏeFi\IZz(%~TXT iՃkn3™ˠYB-j+Y{9TAɿ^J'HE&NU,?@Ofƙ=2f@kV^hX):.r'X{9i~ T]% XVx{l`m]C4WD՞Q ɚ?NX٢#N3Euc9&WMBT pnZ@*fo'z?]!ђM\ $(0@ G`ܓ= *TP* Wtc3Hυܿ;P*yl/v'UTQhwM)л2".q|I GKD#[y@¹% o_B \>:j\>f}X|/IrCo``F#h|u/֛| BK(({C&e}Mʀ\,-]mc؛N#E15<;|RSbYt#aqI&ZH:Q\dY7K] xt"He)d';W:w٤Ot-t 5u.Y&y1ī6:pM8),;ԡ6gWIjyjKq=8as 61T&~Nn)bfΌ[Ba'/;Xv9Qkޫ#4LV4&ƨW7K6gC W ; sdBC0Td͚*5 Ī!;].dPȢ.!Zk'o |qvZ%[QRnv?- u6@U% 2,_]0ͧkPf7d @8˽¸%`癟=ha◠s&1SS-*O+fS"X=Lh䛸3DڣAFݚwyLt|/[]knmF* 6v&a B^s}<1/ 4H)vD=x{C뵾]XƠTo1zW}]5PI-6fM?sh\osguU{5édjh&Smԝ܈qv\r=׈̋/oUeSZɶ+z8(2fj6h Z8i2R=0T=L}UqNi}@;ͭ%ÿ`M \0k}L`.uS>NøzmQ?{qʞ{~Σ t/JcF}x~&CBSFNhQTdi8*EJ]@ǎ;9T_[dvJiJOxTIBDnYON] Z"8vrG :_oDAF)[n½K һ/x{~Ǡ޻ 7Pdf%$*r.8u)ŏ˄yKAK{aA)$i/vxJ7/L۔zx@)Iii'z}_:Rx1wxF퓅ڿ[=8,Ù2:rN Ųk\:dnj*I~O;h#a$UegQS# L##R:yMi5 9ևs{҇Ma֑t»rV*iBj>lZD}l)^-QOmͳgSfBVyYhyHִC$m Aze^%D㡠-PvNKi)?lBAS([Un SU=옻e&ǖR[Lka2Q*P."PS22AT@>wz)m`Pe" mf=ULLKށ B p%u3:e W^zðfNDU͛U(̜2.{@e"m?s/H_|<ԛ _@ Cai{\4|Xf ^x2Gp@~4`+* ,LDŽUVBn3 .%Ҁ>~BXu#X}otN-Pr'\dlrU,ȟB 48PS kZ4Haӎpa2?&ZTV{OGuhpmQ E: {Zzv.L%"! ޝ| u j°kسAxPL<$b[c:aۜ"# e co] |F+^hSm 1֕b'&hpGnaeߪc[t- /Cn&r|U+#<[(Q ylR%BwfQC "d^0J?=V)Hh) VB&֨b>d ;vC+j6 a ^cdiCΝzBL>AC}{n) 8+R{q*cԣh}w+^pNr9~Y`S9pvfb2gI7A~g%-$1M"zMVd^,~bll\ 3B|])) a<klGX tb+]v}RF|+83k%˰Ada$q,7KҩoW A4kU YuK>g Jh:Q`l*M8 IM3:=\X:~'!Lrũ2LM5]oUwUR g,mv2?U 2IzyCsL*3eޖTD(Y:17$2vTڊlx& BuQK4T]ZιEMx7}E!Pʹ+H-r ƚ̓xp  *M!n"3P@R HizTUl!xd e&*qc,[@BC)˕*l^/~dGFm8 u˫q]sR4_$' mTamx?qShxt5M;e&tpW~EKKʱSCЛY'hCv eg[Ҕ]$ iEpLvr>"khv0PDiDr츴 SEd6Z;qA!fkr]CHMsUj@ciŐS`7^Àm9&=O- \@+I?(PQ#ԜSRts19:H=Q}n-e 譨#f׏-FXz! JL멩Z--_ڞEL3i1ka3 vtf!4LR i2r868C`'eN֏qeh35H rLQs7G/~Ei?ӽ~(B'+fm`jdՍX} eH ^Gƒ,wAK23ϡcS?^4˜a mMͺ 6(.9FAyf4{f8ecuܾ-`]e;J&j?񽸢-BoEޏT\|ZvN:N`k)H Wyh)pˑ(Wm#p;#f-;u3CEk찺QpTGq sX'أxOUjvUM4r@Wa2*tQIV^ RMC5 '6$Ԙ}NJhC +G$r[ -aI'OM ȅ0:T^-#rcl{؏ho0K^PmOKx /.m:U"G4}w#c~f|0x:Q9m0wɒ|9b n0jeOJ R<db-O7 a7;.A( QY9Јmw9.xbiH4K8vm*ȲFat,qWI,t?!H)),w\ObR/AqS-'^yQ:In5W0jXJO&O2cPx Pxz,ؖ5vK*ߝaK:l1p(̅3-ZNin!E>puD!}'\SYNAA^| emͲ C>vJJ9d74ؤ\I8V^sцC?^/VW_ ƒ\Yجyi;윆@P6>ONF| ?T+[ ~3m)D M5ۃ;_йEPdUt뻜5X YVʹŤeg. 'ے!hBJqe% B(̄8"^UߺU.ȡvpJ}tL0ȩ>QWHJ[ԔA!mUIoR&N4q4pFAwUtؚLY0I/0Ժ ,}TЂQڙm2!!5T AR:=5BWNh*{zG)BbMs<_=*]Qdm4ft'@i^Swԡm4Lfb^,c=cdT=գu)T&#pߥQ$(͐kW$]W |u;p v0~~O=mp5 ZzVa&crWyLFNNSڝdrK6`V2/[*$h+ZDK2Xrx޷V}@3a,[JwȫM{%ƸlbxQw7 \sq nN?uB3>sfWy'6r,} gCYt0Kኬcr=*Uh(#vNV;lа&+`PlKpĭحXJ8:fuiJ){a:׹p}JvxHim4VA'k * BVOG?E QmP!tP:d4|7+wlu5ܢg0- ;H j BwɄ&ǘ/j K ɵW |O6rl:aHlUr.Z08sv3(6*i6S5X纩ws>ڷ>5K7}֠v2*<ZTIe-R<<ċje%ݽ/Dzi$lgrzln `Cz:dNB@LZBjFed6!CtC&Î-^|V:dM uK.1'}H҅°#֎yT̏ I+?NvNw翘")V2@϶w ^lf|?1dP PllEC}B*CSg -c8Mp[8ʧYP @<$a| B (sfu/wH?5ez]69D׆4n#I c31 y607 f9:aѠb20McDhCjcS%SЮd__¬уcD'(ImRoX#Ş¡N;?JD{AI%_.ӅIYgu5n8:}lZ4xKэxP1 VB"\(ef!IuzKl53.n 6O[dTc#2k'\gv+sG=0<<<6 IHa@OSթ]Mǔ&;p7yrL|s%d{@$}\2T|vinc&<>4Y8^^ӖU<'bi{mkAw&ΒE@bwBQs A椚2fsF4`y/uj Ay5x_p9M1`L(药L@dQص(;G@x Ei4 ӥQ,SnN=?#Es\--x|##1<ىMH5${e7P#f/ _ux.n0bUI'}.(O~iE$/F")b%d$w]L0Sl_xS63ϽTݨ2I9Ob/H Y,w)[)F/7Qn'>2pA}`m hEK* L&Ðq=/9h3ƴIS#(Z~6~N-йǜ/DXp^9e5+'0Z06L?k ,MZiJ)hŧWAN44{4. 9dSDťC~(P0#4с1H9 i~ lqV Dt}?D_0M(g#/-0$v߁I!N/s? Y?%l8[s_ib|bhiZwA\猋R ne,By=RA{;m.֋.BXP <\)(rvI3O1y]`LPMxf`}{b' 41F&U#JղČ8Z5ORw1-i-Rڑc__V 1Ze6Ht!{$D7J  ∝*^ω=x t70׳)_^ =oII$ISS2[1{".S7![bf.QPoΦЄHG`*哥O(gI2 ^ TQ[hF@(ǖ7Mal#70peqfEDhCIN$-xSz8$̅c0~@l?8']iLYV_DKh_F+V3>iڒQ/?2Svw;i HDXQkxRLTP+?|{ʿT/m r:u5' d7KpZ~[]HL3*#5UxÑ;g+Q+t:aF `6҂Ln6*@6)c*}nH t0IS 1㼞w{ct% 3׃ 2֘z:ylvJa;>f{JbA,\70woG}=CT .ԍ[Sp:OU{pEb{яRAG/Gda U0-71;1x6՗({؍OtJ S?QYiO @iD3ݱars%k8^jN,}^BGg WDtOJwu/+ !m@@b BBTwvy ጩX]t#^i^7''YAd|JR߿$w5'edT^s|ɠ~;ũE5,H !*=#ј ԢGP1gqLXYZ'ҹSl#e%! iˁHa=$mݞ+zw?g2޷3ǽ2Os :˛}ٌȀ43HS+\urī{τ;a},A7p6S GcLtp jfwt1(wmW0vpmZWWL4./ Cw>:m-Snvž_qЌfV| \AfьQFmέ:B:qJ#a*{L+!^Pa9% yHZ2+S%gwoułXxFW!v_Zvka(i>8(SԳ $Dg{ӞkQ n|İkVށorɟA;J~~! y jǗU;lor[6Ou$[h- ;ţ *Q^~#Fh6kvb;dA $ Ư~ ]59Kzp>㯨ЏiIßj+ɡ)Jn@X;3nzݤOjAz TC7_xJTvX锴# WXo^wc eRj?o<A):RXu5H\P.@nVBfs۳9J=R^uc8NfQ_? - M;r:8Byq8U%*RcR}㮴LsRgffD[N EȤx\ߕO=\j 9,6%ǎ.*Fӓjb &X{zږ:NHKg a2ؐr7/g _.>>SHE4֫/A{;qXl^+ퟐNӒ+R}68g%&-8 )B.D@\O1SW='bNd>z[琕(h1 CC-WU|T(LLV2SC}"-\lI/mK.+*x0+":u  뺸 4p5Bm`bcH' ^)sQa|HC)"N ES})}ɤպos2m8]ugf݂ NE\Q2tߑ TIh(<, M:- ;)%FSh[iچ'F$ih0%{w_}bt 勷=6}K'3ZrHQI^jn{_5_{cO?H>@ƣR @%#d[ʺd v}"Ĭ5{ }`t-d]H }@R0!rw p~Y7arK"rdu`QI3rn4VV$IħMxg)ZAևwѵfwmmx @>1  ^+m2-pS&¹+hl> I"w~#iQ6 PHڊ#ll=J;_&Z,w ;t(:c^ 2!Tbj-2N E8$eT2:c \~B{4f+{+ \W$~&s>Bp47T@ 30裀sP^;~0f v. BXrz|C.|zwӖ_ X ət;?{E ogW3L(Zd0+ &rיDhW:1$Cc#кӼ ^5~-X* &"7j2 Y41lG{F_4r۾ SPŎb;B-d^KA/x4_`=Uu8b~8bpp~-ECPi)MQ]1{kq%Bmd܊CԕiU@K_5g<ќ[ߋU<аCdB+mu?qٚPOv|2'Y!:kBL-5(j 䛕1" DO! u&wE!xୖ_I0v+l,pZ{U1P,?^T⮒Xz  -lݡ!ͧRuUAJ|l^gvDF??l+X/[/d#zO'˾;@Z?$p}h:r4N_Ndupccpt6&Y;"EV9D譑Q 5|6(atf7*C+x3ɬ(RC压zEW017,gDő>drhH?x7zК)(ΘHsH#Yё 8 %EPY:-ϊJj.`L7D)ӏ&(dye *9T*3TA`Ε| |9 }%r^y&_ 2^Kh1-u6rclڏI=tzJL$mZ(:s @0e& y sGzM:I?ӵ1Cʀ}ӯ֊;{2-9%ב(یGꁞاi`>7I]gDJ Ek<AТ(6hO¨ ǥ9Y2s B%o'$~ð ܇!~;ksh7,6&{eZ)"O-8?O dȊ:QĶE (L^kz\H#?fp(4^/;Y/{.)n">P>o13#FKcʠ˂b&;/뺘8YmeFJ3Fܓ\hآ^Cyn*ܧk<Cͣo=6&{lnPTpciBŁDsd6,}Dj+f0?(z= 8%3kJI29/(|R|(_AA?wl* 6e<4[% gBjvb-Pq4!Y/NJndq%ФB}"j&# awï?!,T:Ksn}{L:R;Zޛo_Iml҆ Jwݢ6dFo! B>*BLo1iQc, k-|s.ḭ:O09GDtLV02=TOF)ڮ-o#ȤtǴ+_ e@Q3$ȥ>A-E񬓷;:($8]DsXUXșI_"jrXX9P SF·| xれ~ܛ+\f(ȩ5.=Jڦ߃̿o IF *E5I-KU:;U57#q RA=|tZu/&/ڳdDrvr]Kӌ)R/L@W޸ש{/\g\ -yQkg\lE.aYĿ~+)zi@FX `*< eU5 7f7 f k vϲ݃m-qWRےT5c'1k-tVQ2 L\C WTeE*A䋷ƩYN}D|hY\WᬐzsO<ƛ.uJ9{fHV#hh_o[7sޜOj7+WhQ'mFqU5q#wH`OtO9,K\O@|8+ѐfYH^|)%'c#9Pq67u2o-6Pڬk$~B/d8EᛖX߉TsRy AkKxtO.4LP*װ?[Hv>]>u`Q]ﯦ2P1vy֌) z|K%y>;~𢬾H E$@<Mkt}{8?ab*c Ɵs>cͿy22|'';z8.$}c<`"wzd"c9b}WAli<}}t[ _w/fV ;o"q#q0(>[KV{6 9\ ]Oօ@-V%I7q Ct6#0Y1]xPߏEֱ9 Y2쾪nzќyBLwrN#Fmg-Y~>A|[Q"pE8Ɣg [\5O4ƾm-ac&ݔ 6I-qqwKcvٯ| 00ys~W9 v_yW}`xY#CMHh{*S,RJba I nofeŃLO6EGK0C60-slXX\o^2}MX&٤Փ>ug7A%xBccFrTBìFd{%&D!bb1ſ*"+ydXon~`͗d 8&<>;E0kRƟYuQVוŕu|`{sqPcylhσƻ]ԧ5 >~X|Q, E޹ KHˇ)L~ AKsp!c 3TN|$ |'el*ʆJX̠8̺4?~ 5ۥׇC!`?فsbp<qK a) +;%XvP@,7>{gAg뱱)3)9Vp̼Sjw~6s+=wZ!ܮ /d3Gnpy@rpu>6zP'Y_5)#]o%0.(PWPô c4) m !vdRqj Ѽ$zu-.v`"= Q,,l43ڜX8YaALצay9<(#N Q[,XD p ulЖ4j2"Kۧq?% <|0IL]/lwVÜ>&C63%~գvlS8>9Ҵ=˦hFL!'* FP0XQ\p*̞gUHz^iIQ6Rv-ݍ,]WG')kXїEi9TZ,1Qj|O~0F%wS{hR9wm{#kcӾ0$/imw ^Zq~a/ k]A ;?RK8Y YkqΪErQՌe<7l/Ź:g_ " :˔>^ԡYnM`JGȳzzuIfNd"g 9qGi׬3!*JNJwITlT/3rT_Mٯ]Jz 1c?fMGUrϠq!XYge"of5Sv3 bZW|b''/,m>YeǠQ|mxܼVlmӇ5ś ,0O *2{#pa(u$-9PSrf+uh9Co1HZeũՅ 7ltQ{XDC{`|Nx#H]7r;nO5@wpVD^0i6)J98[5[6Y=G$q_`==l_p!?;Y|J^.g&G%=Tߎs_.LՓk\߱c$ XTF̢/4FB6gSùb?hV-%XGazoLJ} vRcfs@ƣ soY'GBյИm)vVO}.o`XogqB;eY&sY@eQ#:FFܦAUB݇9:P˝ׄGԣX/hjCu Jyধ1(,jbCqhj a;~a`zN<׺DHEԀK\SW fl3+"4ۛ.`bRLd-o"Pu VqE(]fQ}d\)4 ~"hF m u T1R3siUph1hTL -R5}^8ӹdOfЀ=u5\l' G-Ւ̑fzJ72p^~&" _[$Nsf璷08Ex YJa1k4~cOlu %(wAᄝC]nq } S&~a qxtW;yj=sHO2%<6]ӯG06,;>l ܎xuŖayѥ6e"RZ Fv)`46shjm-mJYg79l%9 )&$9nGҿi4=!HvE8HQS,3:=YA12e8M 4Ht%z!fZ`ӄLT^a*F_ "C7j7Xd3q!1=E&s/'I4UPlQ@qDI2 0E@^c 5Gl%P|8Ӂu3+PݠhȦQ=ؓ{bôβ&XU 5eW]g[gK}-Hen̋^C&n6̘؉_ړz.ϲTӻZ~vXàf̎A W ^wO#~"ڳ_NF~(6q2 SIX19=1e _jUJsvTev++ 搌ń%3 #ZGX`&"I蝭{Ԡ6}/J ]wyt20})@y2֔h|!Z=hKePIM̍o) ~a"r{{蛙Ylc>9:|N 9z"bM > [8!>5.4!q IpAX>yVyOeɷBkoLN_^ RYrU\cH:hiLJS `%GP_.?}G~۾.!ϒ 4*Hrv!e5{皛M")Vf/X֚|p #Aee ņTk&s؇(\u}QGcm^lԶ~mR/{@~$<5{ % ?> 1&ޝQ>ȃ%7  HkZ2vf?U_ܮ`xD"57:kJ\'|14BYBg*»ECjބ 'kTuU&1r#2ӅiW%em.vkp'ov-$TKZ.i) Pt0]su69J˵Aq 4kجɯ1vzf  ԢJ\ ?f=Hov#NaaP|_꧖M6H(x vl杸nu'/z\N2X* vtIpis<.d|,Wn8+һ 3=IݓvU?8.fPz?7TObq N@aJb;ud,ܬhd@f2a}hXw-o"1K4O }+ N}U7^$,{P%[} T$V`*ڠեw)_uT5J}}x]@O܊@@+tOVKnbV~F#8%>|,ޑoHBdXb_jCJftw:g\`3" *?+ӫ%1 C6V>M)`/_4= P}y{BJuFK7uKOGe 4bbڗO.vۣIЏ3ҫ5dl(pp}ӾeyI4]rگ𲟹ƻ:D·v}Sok 6.et_gBjx%s %f݋@*vw(ibg` 28^W1egHIuhh'(dF@f)ωU" -V[ eR/V̠VFBdmnҥq!F|]~aKԵj5o].+Φ$0'!h [#!2%~UwY}VI@}W@]hZ&,hu!DlDg[a0;EVvt2 Ac-v"Zlx;ˮwVw 9eՋYj'Cj@ i%ūS]}~6yZ-V!:SiVd.az^8 Z2cџK.7:@VOAa͉ؒx{VS4Q*-~m [mb۽WBR8!!`lnjm愱~`CEYiyh!Ym%f}ZKL/7LԤxk?e]=gх)irϯy"*C1s/#@.1EekS1NNӹ&Q֌~u!`;ޘlQX)(;cBGEԣӮ+># zJy d_ ˔ʧbI7:.F[q'~p}k@$1KUYNOG׋ybCFM3$X5NH<(V\feCCu ' 4[#W7_<D7Hm_4HIyNV~@ym!eķ5>"6j2 E[q$4tN!M*{-iS,s*8'f M3@KU6|H7NMVs0K"Iv -!@bBU_c ug4~ȶ>< VE#1K$l7l1lJ1Id\ۑVxLȳ˨ [um;I\T6*jQ]t\/QÔRU2X'\;.NPfwIĀڏ`71xQq<dc]=횱I[A2V9@+z , ƿnφrx'w9S-؈~9tz}yDI7?yUb9dvc wխ*ER*-1^˘S-r~8Hx,jhQ! +}sOBb3 6,֟JȕkK&|ŀzxkQWt]kXsZQŗ1W܀RU *9*5 l.hcW8JuI%O@]yUH-q7nohpoLRs)6ϑNx'K|%q1wq↊Y<%03dP%-ZZ\ɱTޜs[ iDzrm[U ~@>vjA>  䘨uRN4f٨Ʉv!ƣRȃ>w dnkM tWL2׽#崪e]= &YKdU 0n7bb?@ w/TwƆ1L%r@O-gT QD}>$F~g08%ZoqwRY*>::s8߀![S3^XCt˒XEb?,dԦQU;%VqWAn|}=E/$pgZx|/:70j.htSfԜ:]u%0O@[my0嗻 [q;8a!PJĈK ReC!/(wIjFӂP%vEC ^6'Jz=0kvV6߾ 8(܆HJ-(sjWM&R~s[ %z9! 64XC(XG]ZO1ΰ儦 '$Ef*ꟙP=7)hviZ2*+Wd/'7} w˶?. BToϱ3Zw1.xqV(@$բ='>ݏ)3ؔ}9Mu:nEVUivSW_%5PM`JS㒽U9dzq~5`="f7 yw)$ Lx4uϓ٠d JjS=l!^wU)o/k'0`ly12\äfp`u0̀D5 ޥF&N/^{9ݑ7Hx8ч(x?NgU-wiXDp_V \N`e't&+zVfȉR-q Ȕ8лj˴UXCEw7{XDVAWl/;Aa/";]}^Pwv?I"VZVE FTාfe}g&B%-RBИkt`Ke[C_{$.VhSqlmdEDiH¹X~>ߴP I?ָgB)^3q-,9M ;MWj) oU~c&,5h .\@kkǧo>x8 %&f3e^O$V .e;L:E4i A(^Lk 7fv 3Qo"|mNZ 9f2T s~f&z̒R^7¦BnuzVzDOkLQ@͊/*Y]DpG'%K}MC]MB:4+mӄN @}D}Ξa^SQvqU"mLȀ#+s~0c.j#@@槕6?pG. #-{8rVRz_*e>Z24X/AwI%ˑLPK>X+=dգfViD% HXB#0I8xN4F5R+&'yy^E쩬|jcavG14I+H iis0 9ۍE E (Vjxb|AhWvyhN/Toּ uN!*K:KIbػiOV8 Ѵ*T)Vp;k:h_(ga8%&0kr!Aؒ}>7s[R?5~׫\pCſ+ǍWV}ڬ 0pw W3a<r~jMgl$4q*j׳i؞p_ J;%hc[5 *I Lx\ %Pd3Ys*+ƴ0g~eގuN n1דEM_TzcEݐ6e# = iݨp]1B"i} LhڿMBCmkbW/k8T SUtpjFr\& K0 S4̐ .~*4K4ѤyJKOsڬ.zSo[N<5ݺ:, O^/Zu,` *FU*m}_ml/e6]>>Hb<̬hM39a ɭ>7TkeRzq̆ JC dm)_,wo'r Z̈b!`eK͛թNZP{#pY՜$%8̑oaa j=h L]P0 rPW>@uuͯVq3791S־)5o҄*  ;“)e ]*L>N}G$b~;'`xg8t:tvU^,阋^jNGU;bӷf ]/RFCqX3[gQ!ɖԄQAqQT/ȥQı!.k3OcO^}vNj+ #Eӊ %ANVܮb} q h0e*pdu͸Գ_xjB(qmX]JiY! h+'d{fH>yI"IEwycO t ycKڍOxJs01HKᜬMNzErԅoh/A8߷hkU*NDڑ+ ĸs3ɴA Ǣΰō<d@[YZ{B; Tld[zv"R}d|S (8l#u<`k#(]"'F-0%At:m61Vłng fpNSNL<݆j4['klLq*mj'2U+\B$uP]W"Dǜ 48%Bʄ던<[@ܢcd+:s* S'Jh}5:|q_NpzgU0,1;jf&Di6.Rh7K#2deNuFm{6cɌ 9% '-ڲ/ldN"i #V:ꂖ{sFa:]*6a^{'΢™VKr$f/ׁSFPշ0x-=8g$|+OZA"VyG%ׂSjIvBC]a¢H!^E3ciy~!YjםdڕS3wN sS2kj@ XEcզqӴ!J`{z|n_y)iabN|H=iD2ijfjOhp FrGɹ 9+qB)&N8 m4VOqMmj.,8Ĭ (`W}!p_C0<="QWe!Z[$ GWIA% Ahؒp4Y%c '/ǂ_[0t|`88t$O)Yx(iuNgN5o@ǞzC* FoUКWjJw3 c4O2LPӸc&<|E )kZ?ۦዠT #Z)RȷeD$SL/Tp]]EtH4֊2QMOFWL"x=V{KO}!/6_PrIbz$'#ZwL>l< ڀqoЃhi&sW Nű :L$ gv_s UaZsAXcOfCp%T\4J5cKߪ $WAZg q3t b$9GbF_n7 TRI|25+ 9|: 1`yw裴*hDmmOLTo-&umF۰6ww c[oWBa>*:Ш-hŷ)[036NBW,Szx |ʂizAhF6⅄s$1G02=޶"$\{hguϷ (`͌D R0 kW'4<0nU:% ~=-+RszH NzП_v\ySjaa3_ZETX/ PU GXY"4{-3߼4V~*Wq/;V"4ٝi49(+֝h4cWh>V}$1i= QGCGN~?&X+[dIqەZؓ2U6~1Lu JbUIC2FQ&I+Q?Na7O;RFOKtzgO^t=vOxv3(E2LQbdXOqjYz|]ű4x+zQ&%Yn ;=%\JmJ^|M aN0c,w6e\`hAU-KҕK>f|9{n}_u+/^g-Q{2F} ̆]]E4B>)r5c;V<B:::E;4(&$WRN`J]H:ܙ;c6yor]RёŔՃ2GeGKZM铪`H NOl3 MK`UVj OwѦ@`ʎ)6>=!g sC{KƈGS- tuVTf=i0 Y(.'3kD.bh1fF2 ru2ރ3c(2IC #J|))'5\D:hı'$$ -WgJx}u3y̐G-9bPe(J9:OLVL4tOh|tly~y|b1rm-ae$13 [jC+ hBv/S5m,!]Wt]K g]i%B h(8NX5xQYT{hf(6WF|lzGFN:xGrbb#b7D#p .7"˄iǓR8ϒ._R?4B k5d ((8iCQTӐtZ K[U:Od$FA.}9*9CWc"~?b sn 7s&:ueH{Ғ_3xqXQVDU7AUX=׿LT*+R)=㵁#Wp%Oȗ~u;(ʡ 7R uMq;ecdIB ٸ4nҪBNp vmgµd`FhR0g3DhCJY HW9b^/*<|U30RLn*c3K~zcvCF/3\h1$O( (KaPcfj_ 6au,[oPNT/%kf s,CCDV(@ XVucG`GNDG'B&\`١ kN3T띒%$@1n-qA`:^"5 s6L"y$zF(1Cエz₍۰N2+]5dUa+=Xu}ۺ$#^v\b;a>FjNjkP>Y *.?i6.#yQiYN-D|&QL=1_wUY7V0őh G+I:o}K3UXdcp܉ܗmIvtWC)I.[Fd / [=TjU5 ։TuHv9qԂwQr"*xAЧC£̳3<n CH&He^B a\cp٭\,Sp|Gt8]'H/-b4eÝlT6|pth.w^)?0l{Z $BCNt؀)G{@GE2N5*Uz6O!H `R us*`H] :dH6:/spG<0ы~@94R[(<Kagz^u zD".JpV5=`mgxMtiT]qz-阾q<l$-+3D@SX)QtTE~#? ViߖٽKh<6G܊[T{[FVmѩmm+jWT#+[[!]aBZK'ݓDjCPoED(.fCBEoQR.XUƙ,J\JoφAF%QۘJcS@,漺ܻ;xV 'cut@9D/TQ.-W1B#?7I2WZ{6ujSGJ-lnp1+6UO]#v૟%Ȅ.Q!H07yaWhIC% _hJ괧Ts >Q*u#C<zYw<8Ay zz嵫` V8*5o%Xи}RNʐs9,x~O݁ZML;dd4yKωMjy7i_WRr#8UO#0ЮB:J^kK L5w *Ӥ޿ =r,6F\3T%)B;34ڮxFӲ$hS?gOeӦ.YGA%c娤΂K / ~u.hԸ~.HtpE#)"7x`9e'`18Njsl$ 6L--z*##P~|r$E&ɈCx(**2';$ŏ6W/jo柢\ ~σ:/gh[Uԯ <::~CPX8_̙U~ƻy~a,;Rm֯Qq/qdr[}?Q{=U%\7uNdNl4ゖ܍i/96dh&ԵӪd֪ }js퉣lF+-BY0Or`MdRirXfO9ud ho9-."?N77y\ dRSFO  Ė_ tfI@Ce]~mK-:wΝ*|T4w';Rs;WWt1 L9BZu>hc eG[[-iT<+f &wKcb$+&N5, W >bJ"*k~`=2 GMFid'yK˾YCWyI|?aw"hħ )m| bbւSŧH$!gҸvn|SZzrg]Ei%"QEZb! c{T! ;c,8t*ߔ"!Ŀ4W @~N9N7ArW4+FȜ}1{ima&K.~Zwpr=L;׮^Uo6O˲RX@gGK]ƑLG6t(ݓa1=DU W GUힾ[k}?Lyg֎][5-ձ:Jq uY`m؈l,+e(^j&ID.Xuڳ84UT'Tg9< ci!tlÉP$3y)7ZKM< .K7K izpn45 1\CL ɩ7!ƍ &=aYL8hAvh>֒j} A*B:&D}rO : `M-`[7KldmTP<ZłBQZ,h[i-5b;vzĺVApߔ*FN_Hd gJH;>)f5MjU.v󈧥,-:>=; !ьR# '(Γ&Ϗ];E+td[0Qÿn 0{ԁ&j;~1322exX7+jdMpGP;{LZQMMyy\hkJMŮYTIO(4Wf@넧:=Lj6QxE}gINi,NSn1I'_Sev>i w1_Aj9_d!>۬\\LlϾ~{at &boPZU kQdT8\eQWH3<jMwB +P"^;,eI{c-;(l1̦Pz !E{TKVXOJ3}%-D~umC@!Uqz{$e1& 2]5L,r\t89TY\<=(?-Tե !YDyGvX2,U MB JHRkx]uŲQÑ/O[SDːn ,Dx]7pT44{(z ~tqIB)Ѡ~󟕒#/BN*9_՝h&E_$K+G`U6`;Kߗ$#yh-aEjWlDI>oހCBa,KfJ\S^xq7ۮEmvdrB+h؟Ykn|F`I e1"{9v$mCd\J탓9E9%MS.xԎDs%`p0/>0COb6M<#H8L+ z.TTtD6*AOQ).9eXkdZM'g0D$-G_kMUR,ffdr)YE&D氘2VW=sCIy@'aGkxJ|V6sɏ(6&,Eb:ӑ;0[Q*}T7k]A{H7 =϶4E_azX>|؛;f0~֖T}bjOez V&}{~5O-/-ƳzE٣$>@/Tf2mȑ|n!2eVWgӳjJF*")Ըk⽩h,h⵾>vD:-t=vDsl8DVO%H O ONh#sGlm5\\4%;u0ʔ z $A}˹!+2]_–Sj;V^h(b.w&63~m wiKsyt*󛩌ƙg0o;3@-r ׍K'LˋW0sDL`A|~a=8{Gvײ*zs? ΏY]wg@l%h(}mV%4_YX?..p.hR]$4q(|'!]VO>HɄ2>R}C y^I|ߓAӱtt"6x%oِW sO Hjn#_'>C\4!&8͋|lUǦH KN_tY> iAGM ~BMC? ˃; L}lë6Z c8J;l^\s]B#slG5EF8@\8o Qacn|<;!uʃTʵǨjj7` <[]T^ +K|\G(DNwM4tzDnu/'Έ"Ûz,:o=PA5C6y`Y 9qz6ꡐ0"p19|J 8U z_Bf>Z`~|LS{JJ\6^# G!ziֳ6't1?F|͡KXOfaز' 7ay^1Ic~>:уڄh v_~NԸh9{ڻ^ -,{wUʹt }A]D~uxiܾ14ml8;kp\_ wRJ a׈Kw >y@h $Sү~;BщT@r,h6Lra̫|5NU_hw,ϣ? *sEmfU`eKmƤdXg2/~?$s>6d3+y&Q"SLj gN +tb{?βlYoh+'\}MxϽ`,Ҭd'!k1|UQϼ,UHgdFLw9)sBKZ|l$&ǥr?}ݘd@tAE! ŝs_ϗ@5,4y6bmȴQqkvȄTҰ#?[$.jj}gwtjvtZ#1Kɑ}'U'Qz߳^@s:5\$G:io<_[$"S7V(cK2$sD+o{#- h*#ʋ 2$I4}cͽ >[[Cc˞/˗ULťkx|"zWn'a*vxK3 +s, "?=~vsڹgl~ z$"/Prk}?]p^?$~Z -_[8lywZO hN{~F4kK >Ҕ>. V;߽ 4ȹV_ॼjZA;L i 'fbIУcy3?v?}x{3`Bجu3%蓟8ƒXڱL̷m,o{$R wGN x%=e?CvƩ-9YE}|N(m(3 qcb’c$8bUZ6{m/9=]ӻ1SEs/dx{&hˋX7<*hΤ%jV0a$F0%B" 4MXr@R!vQyק˯408WNu6v Um)?Сjw <,C a%fv82sSPxtb7z޳O ,՝^sy23ګ lB@=~I>-ґNͿBD7n@7[VrPG-n-n |ϋrX)XU vH g!~x9ݻRJ%M 0U ͨroqQ,CpuD Ezziv-B{je MI?J/^ /T/=.CLE}vMg5O@9"ܥNsWl>Ь(7ְ0Imq%LoLfԚ4/Fb kɧhMfYI2ѭIpUrx؊״dVM0rt1H]Kb;ɏNd^U2*%m1m!/y&Dx3m #:l YF#Es^JJKʐIl7HijwdjgQ7\@~8vk Sԅ(ki͆ŝ8Lrz ݢKMt:=Y~88eKGyJτ[.R0& t4>!ez>ίRUwnu{IYвk܎ajL6M s5uqȕdh4.3>tQHc0OغP7JQ& V膶i!k08H7b˲tkC̥*xc=E|:ZrwZWpY ,|9Rϖ+ėՃ]@ :}Q}XSDRY֥ s[a*ᦡczgx8T\=4aT<8@#v\/?kF eijE̔#7SH!D};w3vD 4tja xQ%KzO@Nٸ}Y )GdSXlQ SԫEGm幷2zΔJUqVRAj nG]% f$owo攑țQsKu:?ٝH `$2rVf43<|R^['[OIwBhщF#[HElN .?F F~7 I=qanR3:zfk꾒*gz tḌF_ e[%vЪa8JQv*aFBޱ[|! }7_w UAm=C6nd'TéA1N>@ۛ-R{Xmg}pj3k-omStzfQX h2n%?!LLlj _ҮߗiΡC^qupz\0/17wۊɲx/=h33ZKOX; K \S70tj Y"^4:퐒vu[nfBϖ[Dܢz҂|;8W Bx:і]SFtm~~2w=SZ`Uc|y^c[;D{ ]1p/D /4; qdoP,[79Ɍ!1%X`t& Ĭ@>»Pû=; z#Q]|b|{=e.E衙`ű~_'zrNï_5GUX?z$_+x?|% !*41QJjM;2yzbWtSVX^}WZ: [QV'|z([]JAh#5m0'ʥmS[U?El HvM4O?*̳oEXNHf@T8"IŌ]8'fΒkp V&HjJeIT4NMo{׆{=iW֨vlw-) 物M{4#{n~1J*{vpmV]uzA~ɪqߖhqM`lf.@}( d ={}9*pc+)߯ϫ`y0vHn1h?g(&JTPkd|v@67}mɔ(,R8S&^Xle7y l}Vkhu0|rnn6@ޢ Iߟϲ|IV^]N5 \plwf,~)Xqޤ@ 5D`hDl1kd7JLj34c ˍz{{Ӧkh_|K$R)D4r&3N?YndypEE*ڐi|n-H3` Ƣ% ~#uieHG@kUn'!- ٞ/lL_ߵ?f< ۽ ↞_BFL]{OݢkKÂ-Do2-"?GYkFl2; ~ͭ7Y҅w K͜D\%o4$yۉx5?>\݄#'@h?d!QGxpI\S2tlnOO Ӷf[ Wn~S¾l0B6k.rcwUk4WA k,0_q(֯@#a(.WPƷ2j c:_E&љ*}Q#vٹgFC{BNc "6ܠB1&u|z:L8=;:ت6h0?,QL_UC4:3! :ΨzH3%(uE}Y1|Hq1ac:"s$ޥWM 9Tم ZdD?"傜vtnbGWMDNqZC]MԄU}hb⬁՘W&e#h 0j\եztk11"T9`1NvˑV7qgy564Bq}2}FKE$Geo "\Ķچ17OvqGFs]n[LN!$m0 >q k7>*S6%%~95 T@CęٌкE%`)4=wW:F"]ɈV>?-e#H 8;RYc,iQ^>TUM {D;iZӎZA~ ./ջW!NF:a ⷼP۸cک|=oQ5I:dLG#xtaWvҟ״^_ \Rdv\&:c8qfkzis^sK1hPCP!ef#r#_"Ш:SgQJD;YEd"u`v#iÇ`kĥ*PFvN[ u"P?H$5cVD-c4"0kXd=E.1!ɮꫤ'MDJG|]<7;ASAv 5U|kI'Jn;~EO!4uEޭ,9L\AG=M~bwoIGP^nf PPsO|M(*{9@S$:;naE $yL[n_SIy+IrTX9F$+Eo^%KΣY7ݿQ=eZoc?K3<7 .z4Jg)vj. '0R?!6ǘOYToQgϴOM8MCw4Xspr UD+(u'~[&5t2ЕlhU94 0Rw|9\uWfcg.{Y+ɝ@@cPr*f;eĶ>Vߊ F;/&9JL[7/̨^<]ST;LJ66==XGz\OγgV"O|)R %yK+"".RpNc쌬caaɃj31֟nK@:[ JPJ'g͓:pU7p(왪 OVQ{C})k5L6;s<5&M,š\dl]ic[Gcۡ9MRP1黥kGYP_֥`QeW3L~Km{qKfPZ0jS)d-++_".Fތ;4C[Ckg;+s7N.3LÁQJ`>h3y' ґi0GU]'u@VoAYP[}5痮 `حK#"ͲeT9_ OT^C@; z8'yVB(/~TM*%~* =Vpw\,e!{Lȼ7tx07brJ@IOmA^5)nr,0 Hpn@DimǷ=9K K HGC$118o ˦5Jߤ=4}Varި8omAuWLƋ' ;@i#&3m`{Q %c{UߋNL!,c|;4 ,,Lk HJ?#2qLm!"f0j;medZ dJkt ^u9 o; VCq)H$:zg6 &FP|\~\KW(KaD_d@UglGb>,! X 9M#Ol=ܼAȽdQۘBٳ>2;VV!V o1JH )t Px@َ0ᳮ֮ƸjP }hјv\之| 7Ig4ݵl*a gILDeF_BD+; ;/v.I/CN43P`|yu9q3<|{wgS6<" wW&|S\;UMRJ̝f2fr99|*3tݫ\}Չ z@c]XLU@aJ L0"!JH J7^u_62iVE=T o~1 #UkJzY[=2yxVtkS`;`1XA+&*D\|A.H,U:My;37KpҖKXL_vH ѯTn+ QTmr: %8^R@rR4Ʉr0I߲?~x9E,;2 ]|,x~b'2 ҍDUbB{ VOo/i{,'vxH:e5DʒĠy_OêB 0%3pZAT-;Ө8&uzfA.f0ih%z_H nbz r11t ɵ>f<+AKlHo9nN&֤gC?kKZs)MJRiUiOR[ɃҬO@DLE Y!g׈بxv8QА" Gvw0CeA%|qyݳa!q]=?7gI=8DdaBq즐5[5ԱNOНe!lզWb e":_aDEzU\QyMNi( lA|98]=-{r2$~7_˦)Xn:B ~^TKӱeyBӫdlj|1Mv,2+vȍz=;wFU]"]TM{GzTFUջvđ Fu:$.x*pX^.Q]_8qWsṄ`/OzyڵX&ab"vp %f| 5Θ1nc$T@t*xI5' 74J}l a+hLv=A8k%V%ZEp O#]mT̏2O(kIxK;h_G{*-w-oa-*:M v+xu Cc$t[@r;X/zS9ï>=aҨt 0Y[]쏅\+Uo*# "CDOPSt'Π+5VED})gwʤGd>59 iy)S6$[YaVQm>#4_/&r;\|߫ZՉ>+p j ´,dgdu #~7.qZ'|`'=*x.cm؉u@N~Mn/]V'fP|,#od[5,*H$<jT?:3kJ!DNQOdm.n$z ^sI} - Cx,bn W RQ</=b$9x?2*`JTz=D|`B Xһ%L[O*f`ZSyno SG0Gּ-fqkPU$OxqݣEhi豊Qh.ϊ_`8wer |?qX;vB)UdCv~߻r)*73_u,QCr&<*h$Y\HK2l Z y'ۓ z獜4D5h78.O`C\ R{バ3]}C;۵ѵ7ѿ/O9D-ܷR(ifAXM/rj|[&}GNq1XK'jHQw0Yε+_䀀X \Є?Q̘*E-@l5Bj-R^, s,hVgГ )0B]y ~3lD| r?1/:_+ _wXI)֟v#/ pQz N:j+CpCR ɫP/РbYvJ[%_a)P4)uyT=*f 9'K%tBk۸/$=E1:F19(JzAq 2S(35^ [#󤜭jJ9ߩ7][`"%=}`˙'nqmrgTeӽehR.qFp‰iPuV?%b/)v}|$o[,+1ۦ`jZ$N(V,YtŗSUFh0/Tg<#?iЈ]pc>n\ SIyH[Za yb,n.~=NPV5ݫbS~LiC.II`bXߦיdތ'wI1ΠIIՑHp%}^Mo@EWJ *[?xGݪ4*NZʊ|2:"͐y[ e`)c;8zI$,rvO$EBD"~'γ r!^vg/ؤb`DuΊ\׺fP"aƋ@_RÓ[@=(ΌLk=%5LhR˸"|`5`@Gx(hq,7k TкZ`VIIQʧPҚDn5Qy}߀4ܨaZ]:Q ϐ<7C/+ʏO3T`wYp]$IDi&O0p\5R 4}.y;GSU1Fx9@qUoV TI6M lȽݙ&JxJJdA@ɌS:YZ$%-޺N\Wwaʡ$ WG:&IFY囃ulq#6Owi(]wpqx^v5֢N lQQزr X:\B1T@QEGƒnvړXWT-gΗ+k_*qv:!Q=7WK.]_?tt4UjLt&N4f0@imu׏^[/UV+)= fG9IL+"YAk4QʲFVeHő hcb]F+PqvWg?qEq6F'6eU%XGp~DdZ8P~|gKG_O<&KXfXt(( ߒ28( Ԉ~ӌjz=seߖi֫lscpA4|hk:0)sEtFF<gį2Җ`.4ե ӹ B֪³bs'X3?ڷmp< jСu <㗼lcxJ~*, -a1Cu:, .~ ͷ<ûZĵwCwN'ȥѵܹٺd83m\ =g#,#yͷ%~5t;4}yaq(2]oBҰ $ykr-wo:ߠ=*8XUoR̯ux@' H`ÐK< $!ZZynQp ﵹ`ma*K1ΟJkɲ9TXIbk^l=?1b1>UL%bƏVպBefxB Gzg/J_Ɨht|&ϯ}_נkh:G'o%֮"c\fgEp/?2:};d٧eRwCH5,zYߟvQji PF(=;؁ w k- '/Ep$nDzS1?C(UQ(UP oͦReԛ01_]prY?ʥY.Mjޞ~p+iNAvA( θCO#NEdbTʖl6Cp'pUX)dl۔UME 664 o)[A9\-ܚ({mce x&[ɳ%C>MK75cZK/6\I.f`j€XEhdsu"ȪGK桬Ic e0k}RG Q/Tl.9 uj՝P>LS29}n2^ݾC+r=o8 o]Cmq] ` y]Ff_.|'8vUBn4,}@~xޖL*m6 |g(w1UI$cK:&69"BJZ^Y&(g=iu.PY \?EXxI#Ƅض91]5-1ڏ5.bFGAKL'b)Rk?gAv_q<mO^f+{B,X0Ukx/a%BHa >.3kaJkzID0kkR[Cyu,R*vŢ d Fz*PjӠ26mҴvzcci&U(& _']P 4D 5Rz3惚1hXP-! )5I-/W+1OqA[$ZJ썼_%j\J~'U#9q_Of徜 @uY=5 G)+|jw(`~ad@{^?։ d(Q5BS55SޒNA-1/V'(! 2"A cR`/ʈĿ7 &2i=RE !к$|/seut Vuf'2g͟$u=nAƍ0HqϐD{<-ܛ->]X7L@opWjp?`Z89]uDqr?zy"~R ZMx-z[j,]A<)&UQ]-JB^i$s _ *ƈㄅhx }$~uؼsIӏHRNneBaR y\!#n;sKhAuhB[> ]$YvRDu62+0;OrN[y'@OOm7aBWDV0IJ_`Pr;` ÔxaǯT5`~Zs -u Xb+lT='|o|sP9sY^2UnB]HNwg2 &fg3tL\hmz?chQ}|Uw3Ҍ sp"m*"BeZ1ٶ ΨNCȒV^x1)I53_ !/Ϙ|)\@[%*'Qҍy ,1Py_o=rҕAy_/7-ߵ %tviw/3]U_)?.EG, ŜXGn_[$<~ݹ&k ԤV 藽^)dwzcfSͱ(#\iiI( Y^Po hNW|.*5 _UraIZN73_lj}Ϸ$=;y ۥfV=b\b|2mz4(ig=Mdc|JMJ=9o90ߜpW3 Hp[ `/(yCq&mh+ BG]Dgzً܈wN H\R$gt[T ~ANW7RHb2y썦UYf-webm3dI{Mh= ]ұ?k@Gz{0e}ݬ9+X.h( .=NHCܳ=J׮ܿQ _nXe6ZZ2 آXK(I ,|+ GyÉ@_"H>X9ѵ4~2*hZ^_kؤ MCc)/ARpl]ݱJ]μP r k|<}N3 \$ V$WuhC2kF:'裯ে Ue/=Ѹaaxg OX%1/>}ٲ!`\r]dZ;scvD>-0D'84r/;⼀~J:8utz}?|f ?S]+NV,1ɍUIXh,214`ǔ(o8J#8=OUg4"|,vVM?Յ?TM#zf1JK|,n(CN`䏾NvsK AСlym &tTB;8@RVfaif"ͣ%IrbP@lfg)fw!b=*׬b“=N*M Sd8wnQ+glO b̤iZrlqa" ]%t:aT#ޏ NzwX"HA-i>8Ǟ9LżYWN}:MZ9.Kaj59:9bG(:ظ ;ͬnRyW^X)CF)͵+Q/:F -#|wlpwV ü&U-8ڋgn@iB'(\L[L7Sb!ud=I.uj~탂DՁ/Wͤm+{Mbd6 iփi4vv iPLܑ<oN`kҫab`h&/ͻE&K65p4xiCy{iTwn), ϶"sQף]:k+4*5^M^S젮" &b.Uop!!my\fDlt&7y&.g+kO"3bs+\$>oqIT 3 .@޲O15g 'xe a;j|ֲLX(B]Fk\?Jy؞: ^79]>Ӯ*KsSs {6:MlFA'9<6] Txh*$@4]}"YL eKG,U)qqD)l=?EY\Wh _z).).בdX됮lU;{ )#'Ch!H/Ҩf9eS^ $džK 랒p6P8 noPݼIr<l]E? _x[Kw!عV+p/L)9 Uܓ|[5G~bj/]#Y*0_ KG",NQL~:M.._j NMu 7wiزwҩ=eq\%4L-Qڶf&!a-uփjwDN$?ȟE7%l3 8)LvJkzJ+h*KA=% -k32gI WLWƕ}#_6ex[1s(I1:4"EU܋t>X#N* <–H9 yHcJi-@G_PYhU]q<h\k&pkA]76k ħ-@e20߆e|@'˕d/?~1@U\cpE(?ALhZ]BX.=D7׹0#D(4zJZ넩%ܾBNdlʋ4 tN`_-8y|7@~ +t+jay/4:3"j&ݹ&.Kܱ˥pr64$~ 8NR?dUeۚ7%~=-qeuMEhxOgOk! 6#q+0 R^G;~5!/[\^ VC 0X+|Y*cC;e(VO0|Hanա;HUW2R¥x@j%VٝL{X'uʺ@66o}i$a{fB2#MN"b;~3\%ԃafQ2.o6YM@+ե45ݾXop{ WLJDbK,g:zeWBLxoUn6<97 9+J7ovoqrNTz_#%vf qRꥦ*|Ft![TyH 5;xnUch.c =D}H'yyr9(lRp}EnYVOO[@E{lXw TVY7N}y` Ua1a9n`Ic:Nk^VDh.4SOQ}a!!0?āær+C#Tg^ I>J9BN9bE`?]; +:KʬiFH̶sg%>.fX,Q]i}'q㹭v=4Fyd't&֡&z_Lm鮣I7cu!1L9V6@"z/s8 p i3C~[5uM,2(w70)ׁqLG!naa6v ‹z٩RiFqEu~ڂr9|18;Q% $2Ůt&.ds|oGX҂/|P\2_lhe tJo;^48<3sY:2 uC6J5LT(%^G76EXU\YQ|PJ !U"ǂKcM_.0Нc&0EPX8ᾃ/}يUxeYX$hO6 Lj~"{ !9 4JSϕc. XT: DLQ.8[hؒa9Oke%&6*S1)`ϝG"5*?7PDKwx )WP1o%dK+-;0hJ1`eC\%/ rG1z!۷`^I*&`/r s0A-|Д0U h:6dV[ \>7U I&z0:`EAnyް;w1cX8+تH.LYko].!Ԉe@ )Az%̳aA4O ^Bi}4HUW@Uo)~M^WPݧ0;|ϱ##.)qah̢h2,4[H(\PG9ek!CoyQz>(=\Kl8qW}m,eFk._9Q̝6GLW65kyş>:/[E mYfմ'Ľ@^*jWzZ6yj)`ʋ5T$C^vC*vwQ)Ȓj*%NXtI w'" (فff X<xQ2VKu)= JJ!SyxXv aZEY \P%~@~,}. G|N [c8ϺwAnWɾi3vL 7̲۳LEldϹ`Ės9'xvsBS[Aݖl󱔰+Nx/fH4ݢ(8**~| z7$"{o]? Tx7#k1up?9]'j;llE0 *pHwq}%82vɥj&H{#pNQLD ]SZXP ?,i B,$>:a'.uer!ސOVZي{r+;K-߽?zy)FFU 5XKǹ-|.t) (%ODF f'>X Q,ԞcԤY`+yG!86f<^ceJ1֪k5er h~گpJ $TOPŵ)W'Cnk*AB^&B`E56EjC^1Ň-/,K^Ay=ƨkA%OZg__:w:R35RX n鷧xfL/yǗc&jwRX7䳈LmdDh1IC瑷Z9X;ɜƘ, $DdM{M]p_8׈]hLihFt獁grSrȀP! lA09'Ь,֞K8#^y1vc4' 6*U̳?x)[IM_y?|`t1oi&}"#tFẽ j"':0/L!<O>W2Ts&Qs7a.f 6HߧnE3h5VJ9> ]'Y{5?r-\ 2ȨGRs>@.& Hvj>:N83❏` j$tA i萲ZHcl evglh36CR}tC,]wQ%2Q̇k=c#Yd[XŒ"-YI08d*6Wq~ndx#= 3*Q(XWKݜ/sLv0<! =?s B+3* pX d FBI]!7umkЅSmg٦?D9QLju閬'zBzZ41O6^y߇l1M*.Rlz2i# lҥ[zkLR?NVڰZd.ĀFh>92 =MN&=~$ZVtdÉ펷uh㗄_|mtpY%Ha_$mio `9ώavJ4L fohL'UIBdœr>\sQ&6[, FHfL } 4d&nހvLRKbMxM| YT젮B,"X,29(c+D?MZ=>`;포nSInPl}c$QPLO+Xmμz-ς7{g Q/](%q+4]u]N"T 39t\I _,*s:o(Z (*zl•|0nA-nm MVBkDU)vT=+=kw~ ITU8+jAa~Vq5oJ^6 ;k20]$sN?XWg3¬M^^>k]S6 ;@5hbv@:_CHKRګ %7/'bazg6s˜hF)'%j"=ɓXc1{eDj] [UKN5pmꊥg@7rm*¯hq HOyreEr @uvr#˟p^U8=[@Sfbs}v󤌺@P=O" k AI=.SWfWH^*7Xj RK||l ͫSgSglލ<S>qmu}yy j ޚ '$ՍakCZ1GIEc@]J(ۥvvCp+:LMݍU[/YڄOkg=ja9R!sH>SixD){C/A~*e-S&KC+ Cn w{L$zr?y7J62 8 ]x ҍ7EVS'''q-]@)aG8.UTNO0>dӗ jtV+)&>9V2\ Ҟ!% Q1\SWxjC`y0hɍwC ?m=K#j}DraDAv8wSCi\r.F\ ;_ )p9ߐ_дP@{X/-HKJ9X4q;n.^}*1F +)Er222^#~c6#bEcuY2˫|k<'ٖߏ8cۺQj, /D射ӦU~.Ey8'\ kRڀӹ/9F xWU)Yvy$wZOFLZr˨usz#І}MQ"S+p( oSljU?~Ǻ!(Ğ%d) ˧v%r1%B @mW ^;Pe1Ɗ*%=zW+ U ?wD5LxuG|C8|yl-A5>aa';9Zo-\Yt^,'C [iDM$<[4MHbQMiw5DJ]B.o`QT2h*^>;!ilSgydvwdqy~O5 E?g9zxBYn< 4G$y"! ^¹ѻۚLKd.U` `*P G (e0uX!sjH/;UvC*Pc˝\CDZdtJ pХU=n9pΫ2ymE Fꛚu"Y*uM-1 *73xy P#!=ǯAFGr }gVI̲ w6ev(yiáh'Q9-BFrt;cQQďi`uF~旮' Z3V!/E^b*Uf}@E&Jdq!"L@jEn ױiTwؗ %LRIɨI26]LoUޗL3 +5;E3Hb$xL<ǔ_ڍ$9QEq3RsAϽtWLJ hL:Ä=0,-w#7SeU.[d4\?IK@-jω1}7"4(VaI,~ vY )vr8X:]7UGU>^zo x !;(dIF]ѲHKH`Hw :n[NP#)=id5_3~HMm׭Fz)G}=7e> PV34Ѣk%?8[Ε%T: :sO K̖o1V FB/p_\Jn;6FTn DT] pcO~kۤl׺  oUN%UTu|\dJq1KD;c5B|!BVD{3y;)*fyz=}ҵ핅;4K'ȣөD;i. DZ_jv琹}Ț"Ϛ=3xa8[h؟SjΉhzҶ9Ǟ-#Mc| FF:k^G}+Y6Z}ys_4*4B:W(f:!>-T,4 Jl|B):NHRk"ň~!]P9IUi_YhW Ad#-o2v%jƾhD:)2y?]8w  /ŅWant@q0(ZϤҺsm;x 2~!3*ߕ:ɍeifO+Z02xp]}da69h0*bi>Qމڦ!f 3ѵ'a,;O9EL2u[SHf\'̭fZAoFCy}+(zh5TG>\.5M~=n\s}Hّ랟.yU)2Հ]bmL#`Az7ܩ*>e1/IO@#= #5[OCkrV swRsv6&8eHuw e QH~/"M a:CF|\g` dl~ʏg}%#k9ت=o/eFhP-C{ G)}OL>`L=KnЋ6jnξyv¶Z~^_NGgx3.*)z 7i"KRD;C@igl+9ḣ%cf /T1NJ8̬=ڴ7PDK3Es2gWv6 NI $Ӹ\F\>mkt10 }qkYV*VL[/sZyf8͍Gd te`6x- Je5!icKRPy%2QR5Q{>&083|>N^gF<tlYyv$$FU<*Qv1B$hwT"; k> "S51= .RrLBa (.rux')׷ttLFw.9h$0 _{ztH+v;&5At 혁^\i<]hOq@ۓ>Ym]'yUey`U&FݔYzL~#yϊ_.{,`qqbQ6JZ"qϊ.D(g4AoCn [i:NWqkwT!4&᝘jnr~ƬИD::1oUH4Ñ1{sj8a/cg GeYO= <;3@6 SzڳGqg6Y1(Kbz|+[UwGm_*uazzf; Q,`_ _cfP&#!͚LE`i3]ޢ:"Kyni$ݫu>.ջ>4 Š-lB=I۽'7aT0` !ڞLCKq YFijAY&+́\ &BS^NAZePχ{[_.WF{otu \yU%|?FUϗ؟'M '!w%v7ȫ:HJSe:$ eh'_>&|FuQh9nzf͍_{}FQvC~?YG#F3(_>UhXAFPx74VY'[䏭 uDßG^V,z}ez`XԠV>W˞|C S zRŴ iZ0iNgtpUtDRAbB4&^͟05*Y9rUnlBq&JAWЏϕEh/l[0qI7ץ|{[QͧSY#:ҕU5Q]UKaS pLJý4=yir"&K);h;IX/exWypKDP&K╠1sDFe)`F~J*7i!'j~4Fzn6ոA*[?(o3ZH252#&QnP`6DfHk1RmC)=/IVW1&3]EpYsD"KH5\][C/JDժ.X|r,p@?5F)/`1 0YmлhĝÚ%  o"v6pA;7is=*40$Y5 w%CCo˻ufYq8Oh+7h< ڒ<iqZ ۥ6î"ӆq{9]|V8a5n< L]Pb'6C*Q!=>sig&'X h  ųA@k^ Eņ\ Vkze(ˉT#y {Xrl5٧Syߦ1YWsjkiRG95+bxaML:ǽ]s6eƽNI>q. WE#ajP>}`|>^Afp~;U\[p% t 7[޺nseЏ`ahm+rXS.N'=﶑?S6Q,k TZ,Pg+ww2^{F'e-P,ډ7 ;hhS4>IO4`lR/fdRfRƆ~E꟠tfno6B-T\XP湑[/ZWF29^:u2mNr6}wZ=;z u[Y&Jߌy- ,\l+6 'uof_ W3kt^~)&fWX,vd_LIE? Ю,_69#BYQjNu5!_WL^Nv 7W%I;\aNBqلر bll |ʙdrus}}.4*:Jt=Y+(wJ+Z(oOf4o-m2UIywskHg^|; ӰePPo_YNB7#f(v(~ǒ4c O T47=*EQmGiR%턕H6PV1N9qI"",;%72ע3<_FfWVCqs+[$UA+AAϢT]Du0(*!1z FȦţ=v~kd>_8b?}Yr`T+yHL̀*%3pIz&HCC|BX ~a>U(/ޘ`PcJZ!HƟs/wgQ_%]F% 5( *oWBU(!ٔ5ˤy+Yү` sᾔ$Lc /NR +_@m-ĴjPGzpE[=,Ay~D7@|ms9I8I dGߑĂ:1iܞtO,^@ zV)V Á䅀~50˞Ek'FmA@T^!sN.Dhq'A#i)MNv;L}/Y66A7ۋݒmy}"vM1FQք~՘?tDb3[ߨ(\`jD(ztH< 3P7k҅$?E3zv dE5n͕ p>g>mt";y}@t4]mzdƇ'Dis(}B\86N&l$b |ŕ*PeH`w"rf-@jߧh-z!i?EHZ'Ψ { P~[o) T@_;k+&_ӵSA~# ~ [Jvi[J3UJN39& {&vjNP o̰0/ -ҲЂ{1QGy<._ E=yat0xE ΰdYNWK)i#ޔ;y(N]Zxݯٻ/ٮF| T~h}Ck-Yr8sJtC.`R !"]F#Hj$}M ^`O3M3 2:i2FF2"ρ2鋃QUr>Zo-#EZcH_7"t%49\|>w}Z׋Kf|ϻ2x-1*"p֖M־LC^[-)@OʤoQ%$bf;.8ԙ{<@PxƋ%(˘p(Ɔ]&6V/-r1U@{熛VGKߢE:=^%\:>_zDOl̛^ 0CKE/Jbn@d0A``6ut yD|:HP*4萂VuH6Rً"a]<|=EiG]@5\փNS 'kGF4K"̰JI>kxYṲpɣŗh>^΂uWp*6څ.8vv)YPAZ(w c0Hq>`F6JG͹Nf\b>Eys%UpE-IPAXPBEUܐC6҃f&BᭅK Lj$z BMcM%LiдuuADVRmz+Oz^|J$а95q\ˍl T3S U̽yux @#HKg 鬕r0kNekץPʚnY'd~]'W<,ݫdtpgbV83xP1P޾i_cU_'G`f|XX~V7$$c:e)aCRG撮cqRI4pԋl`#AJ\VͱxvY@m%͢3S*ehW 1Wjek!fR<kd|~$>1O^{r'ǦEB^8){3~E:HzlJX;2݇(f (v*PK1jvYBhA?ɔȮ|_{<$2֡툿:򞗓>;~< 6h-g6FϦm/W&J.Gz##Ad \2Xd w|' Opvˤbe`r!9-w30.?W'Df oyCZ<:-z5†gAz'b1|^>^b#e{z82ޜдaCE|`@1g Y ,+-M`|r7AD|\Ō}j@},1T}XQ-OXMѣn=p+[YshF>$Ј\xoBz /ͩs 7lؚ]ȼ_ݎpSSM`uȪB(]~}&P-f`uҼ}PraqNYgI(Ods({L&M!$z VpY ,/\fv:&J&=z\! Rh4a\2䡙5[sm!:30 Y2_,X=j>Ó}{YEXT99`}f-|s6_:ESgw~AƸ_Y{ gbND 1 u(O?o cgM,L#W.MMidD's(^ !=?4ַMRmQ|Cl{?7?^gd$I `o _SiKke=w"{.`=U^Nx"q=cin?MwFz?P*ܪX $WkJ}vΛK5/8U1v\| 6,p! ''G)]KU F=.ZHCW$\m@8/LAmЂ|h::%*KQuٙX2cD&Y=z sҔbHt{~`K;G(GeLXgmJĨɗ&(B\n{p=llVu_n:+ t@@s=n안iM>)x{_8׊I;KjFG.z<8~V -C8v.H"b©Uxj΂8+T{jOHă[|pQۻЯ6WU "5Ɛ%ē)w &(|oF]0 +SGyfJu KJɶKy8 ngҒaW>[[Ѥi/vƧB.̏2 eG8jxk'5E" @0b*#V]9Z\Z ڸyqoiXǩ"+">Qы:ju6l, A$;5 %*+I,ER!ԕh!YWiSUf)5uڒ&.в4y-4+vUQR̥R`$..xׯwDV\^p'QMˀׄ} -ov9ONT/ F~!5i 2z(-քWkt=;B{aeRU!cg)66Iy1Lf/-yX m1rJU,Ng3|d;RBO: GWUq! 'tSЮc $3vlq\'LXOO0>ogy@}bX 4Im rsa.QMju|{HgǑ-O|(HN-`6d5Ŭ}dDŴy 4D {B %0cI+Nr8^&C0 xw?wl6K nGƂt%zs6~GsvLlR<Ko66ߍMS+Ӆ%IEM#nQ bԴؐ7 ӳvy\GHXO1XNT Ϩ#vɉ:?h:&5-K#HO/fׅbOVE@z&GV^t_`R =MBdRԬL!]4L iN˜xEE37n< V- (Q-w Yx%&)kTUbcW K8 k0p?GVRy]fbi;7T9GCg@-*]aDM+}7扐#AmRQWD nhĀ5z&) ΒI@ENBҖ^ RaAO;ıHIu(7ޜZ#pC,f`ʰ3 _oj|w: ZJе_ƶnrH'+FGI| 6tb*r߭ ."Xt:U㭍Zi#58A|ndZ[cr /* a՞@}nT( 74Eg`~!/\.`UwI'S뉚I1:? osDEfS , \Rz:▼ge0k{ff]yD( (0E |gO$PvI]QXH1CW-e}38K~8O;擨}'59B-@jUX+=EZ)c{vp(N]Wg'? 3f%4i@h$sдӑJ'\3nZʄ9%[h ; ;bGC"OPh0k;*9ߩ64ħc_):ڬ2tH@uOT̷fhnQ#Nb#Mp z^T19 !R̽ p@O8=NJrs`/({ E]|}g]Ķ@k toed+v+s-Dp9ɒ^]DKv@s<sQHJǧPYaqޗ3Ca!98Z8dv]u&<~Ri2kXYQ3R4y֞Rn1i+nѣYuϨ'/"(_^gQװV%#8K Qa|S/ߡ$0o>z”O"OYn64 :3k.v0USz+;\B-k%GSp1VB)~_#a G'A끻_Aa48H-ƷtkJ^^)k>E:J Jd;#G@|m·sV< ZR*6z\CXc[ncKX6jrZkNorE;elp4MW AI&"m~fM֮(7>kvINhi3qp6 2/./z /:@.̶8eFkKӀx.+d|.߿\CNo@[b*.KEH/)S\1WC1*$8h\"nfy-Pz SJLՋx}燾SڍQ/y-ASwwV0xucmxNFwR7}+klIIO ~L qCٔ ѱ3Ia{DzCU26'?Uo 4[IPOo@7zBgy>'TdzaAe[p Uq lV64$[)M`ar.~%:L5> eB Z`vMnus(nîOE3߀_Z @%u-R;#xcaРja䛚wʌBA+$?dH^ktԊE ^bid$+;*hf^!+x[(Ӝ>pBRHi.+;[d jr#u<A9C9>,[ʏ8{ `ȃo Shss:܆Q- 6i̛??~Յa]ܝݯ-{!o'MuQ &sO̍P P"{W\e&Ntnwg+񜆹 Y\)>9,MI cn.XqCfT﹑ϘeQ5⡼h!fk+6=7̥yIAÌe|K4^Gt@B)睥` }p)g{%mjFi8# O㰋sHR-ōVxϔw6$vVn&6Wjw=ٙSˇ}S˜=qn|e+cmb}]sEOe%;*!2.M#5MmG𓣹1[qC2Gj orځGzl9.Ō؋S^XQ1БL|x';I; _[ߛZ9CQ+etZ0dd<؞:z̐GBu;^ - (-)`> 7+e΍`1ŲőG &u9!fV߼_k| ʹ`SCP3g2O.1k^k7z[ZKB_?T./'˶IЪk[z"aZ=x1eDAM1=K}ӓ:*WQpj6HmpD7iIӴA<'㘀IU)ㆮqކVX[_86k}7g?8,Z%̖ D'(_|3 m6]inOqc_ǁW5팖9z6w%J^X4Lktayurf=f[ }DO0.x՝s$LK. W, RA>R4I;\/3Y<ARZF|Fpaƛ>"!(n.5W ƗFv[* icpx p. 4xmD$~9{}j{؜I(%w G(9ZBU X΢((BaZܙμxPӨ2Xg5xȉ ɭxSc-D LRjmIqeAd؞j\,h\c^o}{rA OHߵjP tTK//InGLqh?CK8B|#%?^'ɽ S i)Ŏn.ȌQ{jc[<> t:gs.Ex?+fL3ޣ&_]vVG+|k`4DJ= p o6@!!jYzVi}:BtCVZ.Z(Jb7׀D>/FO?RǺ 1?`T|s\:(Ei m(a[QpQYZ]hR*;L s˾Op90#Tq]!CVRa͠-{Uqi2 CgX oX|db#&$L0ﶮPW/Nf}%h˄CŊ6EUKMLreB/ɝP)ûR Wh,FFT2n1c652fIJ|B?v)Q _84P~.l=t# n <Ṓ~JTqf'ʌG ^*C0/!)B߯<rL^6v9YPls95=ayDrQNW?+j015sZr1K0:G0J}zuO:?Q'+aՄ/!J cq?-ڮD62ͣܿ0]NUu]"bjty七yHPpKT)TȻBWDl)c(O8P& Q3>?k}~O`7fIO;|uB*DO9 ؠ&DM ɱ#1~1`6Emٝ]BS-ff/=pQK}Q3:4?8ѽJDپ2xcONWMb5[xNo9I ajl_2ߨG?Y %Jf%x>p簲*1A7]b}<لu^XBT0>+p#E #[Ե OsVi[}0~0ߋ;`jUqɊ_51W|zc6CA<naΦL@''M`^̱!?FNXuFf!Lt ,TUw8ڜ'nDr/nȮud'PPܜ(9J%ӧdޞj'r y_Yol^?ԍoшN"k+ \rNSMܴXVt 6<1,Ѻy8q"IW]CwP%$gl`],A(EK5LκdAkpi|涕B?l0rѬʨm^Ӟ–2$?`m%z$1qdJӐEl- ŕ,Q}1b_/4Q.A .zmqLYM褳ƏV}9ߔm???vc$pìyCDyQ̆Zpd6 A7WYwGʠɍ*kht9Ӆǐٯz #:,GR%WKj;(雟,"JYGHGZfAEy;H=R㙯Z.Fx .T90uaH+1fVOa̴y9VL U[&<%7?y&i?ٿV+ǷTJ֣ٹ2w}~谏m4 9!CNFBMM7Arm>z~@& /{&p:}RxEl)/?kcJoBu<8iEĴFl UɜciiS N?%߰ԒےWw ةj> cȌ\cs%GJ!WY}q=Z.~:+?"0AYWtobQ9չ ۊ*c{}btW' g~G ɳF? #k-M('4JJ))֙1e6Ve].?T=á.yj'}P;eHУBl`B (KNF[;I2˸葸!xPfvqOt|<3M >cwwz}%T7zg~O%,8wyM- |MEL|){a xz>sS`*63*K)u¿\^OJ>;QtgUr7lw5 zL]d BɘOq7R8Zq-E*P[pAQpq7Jw"½\V"D Vzy4?&B'pKcHyc(?64 i9nU{ypI2WUOLJܹ._l`@=HHhT Y~8E9u(,EK~1Tp~]9 OJ划T$r>>LH[ÿTz63i4Bc oNB cysYvgѰg C 0qm'}2/9R߮G5=mHъٻtCiH9`LJU UHKxc)5`>I&&_Xi\B-n"RD._(yƙ RlusXO5OR64htS{mmn2raeq `1Q|];#ն ]3!֤-(࿌YQJ<q~]){ɵ )"C35; suoRD0OVo*LJ'> -/Pf-1 =%䏓sZbx x\kyQyGkA?B 2m}؆k ]{l{.Ԉ]/~M??8>-TlpE'zNbvh"#^$DTnflPX^QasWWnO^0"X(Qe7鼛OxNsPL҆Vy 02`*p# ϑZiƯnH2*[0=u.}dU?M)VVQTCTr@SoJM}9luC@UEn. z""YHue4tWݗbm~QfO5>}Jj0lr_M0IX{MͤxNvMMݟ\[KoSq.[1 ^:=3RAHigkP\*-q5M. Bn~  eA{#<T|կ#= $NB':iFsPF%~~Y߮6lhA~O"VxWٿ+&ab ozS ]NYk5Ln"(2<mM7$u $f@ ;|_ v:"Npxk'e6}\Jnc͎B]w~vm׋,Po:ɷg EDX2ԿЧU h_$ga58- xyqH2U=x,SF`l/Y$sa$afn#j,&sMo &`jFb܉KnG>o+>tQ SgN\uJ֫64۶b?3,b;?Ψ?OlXÂZ%p H\TH6ȓB55_X1p㺢7!Vq ?^m OѺqo6kmOɲ oX2 ':.<)CK(S#Z`rG(gF]e%MJEцa)д,߶Qtڢm930/1Yן[6Y{DRaEޞ*DXFm<5~FBll^!D !ji>=w,F_3!;`[b DT0􉲙HęRƈDZ }ѾN3o&P~ (_~}e FWS$|\TmUU\ְR* ;`/NQ)Q%PN6ib򨵇j1y/1ޮ)\:)S%By G>HuΧ_LX I~zU ETodMNR"Е> aW +3OZm6N#h!bLcIτ,6XMؼx~m 351C$%ĉSQ wt+Ce^Wn/O8i }U5Ǔ&s&f_ʬ;\=\j!q[ *EQd:y L^Bq|o5#^ko7nW-K 1 lТ*H&7d b A 0r7^ux1!#U`m4?ąa K0~S M58<b oY"FAQ|:|bHm9!5p8 3%rm?V}zNL72抻#e:~, &^-lCmV`Zљ2Lsr*SY-mƯX1!u-S#1f(7HmX̱?muڦ0@MA@ئP3E@N]?&LMa-%Bi'7z`HHr:;Pi_v4zHGl lH/Q*qAUY#x/I5HnۛF;-HK(@Y@QZjyRZxD:M]?0梾%%+#sF; 5!P62\Q{O{W E&ְaToHhY};X iE'yEMDg:z& <$ׇ955r@W7)ZUv~ 1_ȸM*ܳo9rUx ,;L2ò3IքeGj%rHkFN Bs_JM=p"axBrv[5%*9&a@MZveHrqD1kI֭:Ņ{~^HֆyL= 8!Cs+ 0J`i3ަLD1ͣt=G=WBh( ~H?.z3[2yРd CXncE|Z:!9Jg1xH8<\gVש/CbZj W΂8U 4``la`DKw+Na=D@[}ޒ=>*qB 57.1| HHǜ)kɛ8R:D\eT;NKDdi$xOᨽp*g'PĨL)9`(ax1ݛU6~{7]Ec6?ldsBeXh hcAY&Nut'L~l{,0:\4?{; "iĭ 6XkN>'OwlylmA bX8;/܍R:Rr-5~M|w۽YU"ԱqՌ(CY;k5\_Pƫ6-Da3dq"'0JӰ*wvjͶ]2#'+BnSDub3qGnȣT^?vQXetEV/c .~s'bydq}*dltd)ORX/ q)aGR;,Y4!:CiӚ'shs.697Grr [!ҦƙF.^ZC@+o1w3ZWH 6e=mI*ygJs A k U|Ye@2.MAfi]2dsR=)3-wn.w*&=69aQ 0#"'~6IK,HS3Xk&OUL2:$9wda;-d~LcІ)p1BT ҕ^)/vc:,(3kcjI%9)s=TbL>9\\.ݏk'$aMKq_U<UWTebb|R8 ?#)B;c (RQGWc26 ^cܜ*}J]URնTlI女9b{BY(P5_ }bM6sl 9=Ųwhot[g_v^ؙ}Iȁpßx?6s7֣`N1 iKTHyuBmTC!xt9b&@5˂FFfр{ ,RR*),c0lO'+[U3.تPw4>E>AU}¸bdr'Q1X籈w wRPٙΦׄyQ;Zw8QҹMr$7?/ (o;Ļy6ݞu01YFh3- N.H&J*xr󎎒k2] ѱf"N%Ns_r8wQOw|3]9 Jl\iI)g4Ȥ?\@cpt iP=F|Lc6!=6&SGNW'%K hVm.DCjXDyEVN5jl9–k#wέz@ N[eMfR9~$۰f>2g%S/dNROY 8x]O'` *wH.<$1 Ȫ"a!9mPW}DR.E&!#ԫ.*HuԨ_&`TwcγկOUh?o||@xs|=KrR) |5A3'4-KT3%P֘ 6VFЀۘWU*3/qZ=ox8*{ącuet{iP qۡIAf6LbigodxRsO!&Bt0Hz6ۢa았Vms_ÊIw\pߊ1Ld/-npf4rkpW([b>W Blfs++<nc%?NސbU@J  <-ܴcWP‘)C,g.M荧w5 ո]Uf '=T&;ʻȉQ}y*h$PrgK|v4/FPqc~|2'QyhgtIʅREƠ=S_Oe٣Qcҟ~˥@uFN8ČCB-P~2ƃ;m>hfeCg:BZ!2W?~XGY \"5gtֽ/,y&s}S4hj c+@|nZ)9LQs &a8\|DCe+ ڇ11_O})D0R$Z+VH5dG1f3HޱqOJ՟Q8 $^ON Ѝ X2˄>}Κ0B8's@z|R+*`4>0@W+h=w?;p `0T=H8Lx8 r5 ߄_A&+ ?ZY1ފuDҢtg 1UŮMx12O4)d#+4r3][= go@|!6&a"#z`x(h` zhL=Յ{\*&J(NHɏgF9~(V*S^7!>l y6SI$2x=@#,`]. M2\X"<_iy[6 &{@}'Ɍѿ67bJ ,!ªvVI1ƌӱ>ʄw5loPz si5,pMSZ)Խ~%IJ1CX ˃?v&S}hQ%Յ0+J>țEYP@NwTEZqPTnPܺ.v1NA8w#{OLC5\s [B7tʹ'PHzC8rBBK`-ieRXN<2Wtp{1Y&G$|#p3@gtB(ii|.u.Gl`%o7TFvҝRC;a Gڦ5#f=;V}(>C2z|&2"LsCTV˴ͣq ־օMIJJ"[nV83.! t@ۇ~{ ZEsD=bI&pz|A1/gOE;ļ)lC.oeq X` yp.㬆 FMzr j3Dd9Rܼh)ﺡާ5nT;? S0t.UlќM1r1N1Qw>B ? UK Ck5P!oItv r]Z ܥ94<%bȺ\*n~ׄ߅^:mEV>#8 8A0k?~ ~*5H=heA2[^$6酿&V QO"]MQ0"n·aR5q)ш kb4NÞ}Jcq4 5P%FƏ))p_Q<{$n=5[5z?%Pk$Ax ޒRČE5OL{:|\T2gdLov-hn ?h@2so<:58T؄0c>=>F=1} LJT Xg#z# YJ 2=%{:6уP4b,E(4fI8s%~P(Z~vm OlMSftCyG:?MUnfr cO9FCI=\<)-Yk (gCQn੝ӇlP[7f3\~ ј2,Jcޚ ^ r 6h.KBի1 RZUW1aZ]#p d2$SE"Sf6$i-Y7A5?ས?H F5rJl\ږV;0#6A.#\]mi]`֦v1a "=՟{FUFh@b3ƨ;ϲeGmL=RcDth{-w!MeRMn<~HE=kGwTяu19ORY^udA+z@ad+O<_U&߷/(r^ZORCc4Ơ-6ȮgRyKDµo tr37i et߸eZ7"yBfB~K1.u{ p9k*3aw9}}m$ΰ \㝧\EF+Aξo{:&n_ȡ|JH=hb,yiu3h~ٴr.]tuzol'[N,G~x_)3u7uMm/c;}Hc7 ;#Hm7/Q%=W(&E+uӾQ8-謝xU0py>Qw$Vߘ/(,2lw Fr|&<#ˠQ C'nm摇PX'Zb2 k@+ՈHuyɶlBF:;y5N{HѯpX]jԑ0/S1{E7Dr/ɢv~u^51H+WFVHXŷ,pS#iks\іGtF!j>ikYVTiR{Wy ecBz{4PysDG\/4#貝FNLԌYMQ'?l'ld Y4!45:cZOa#5čIGCmt1rS^d~t99Ej RW/H]Z/?+E6뎳M]e ũ)LBބDJq҃ũRT(g#tHFLH  z/ycA:{(ģ4zAk$FKuVqsi)_f'D~lvGipEW^.O%i:2 N +k{3u\ECݥ<̣{O|Q+7KΫYDNYv!nQQ-VI0qgwi)C~T;Gjc#'l] ˻A,8Oh#E94(֢MmU$IRXw5aBd55yl(| !m]$fUa;lMo)2XfGq:8*>HgCr#T]Pbpg̲rb,W+[z@̗:S6L 2|sFzbjGn\p-BTSêCS Zop4L3>%dd+t( AsPqP>VZ+_.N}1_@bú0x 0*tHrtQ,=ee3Yw.䊗ډ^`wZuب2#5Y _m8vS0їfWi&/0V+)í@=f5+nbZ( fߴEP{3XF餀YKf> &S-j"uyb%E>1K ^NwU08C o_N'E^T;v tzҢ^|> u9U ?uFUI0$8$)pSꮽ%_ۊ4(TM'qW^ O'ָ1;V+=1Xޛ)MrHU3s;sr*L]ua\ڗi&V|=\VJ堁#[=acA*VqKv +y-t5m-ذାaYXaLQP5Gx^&'6`+J\٬7-Cq*nʲolzse٥o8.($Ysh04yƄ_ea A@,q=4b9u"|c7j~forrM&P؈Ƞƾ-[[o%!qEf13ylpzSJ,Pf6&6q'ZҳQ jGbs`Ghnj8| E=r:fo0ns]ɉ; _/>>;'< qF#➥6ЃjhV]Bs'IڄcD=`7I)زCXNqK.C'}s'}Eؘ6(ˌOdN9%DlXk'Ìiegnj1n7~VM?j7A0qڟ*Q,}Jx}d4 .?wVb IڒKpdę3AAҾUwu<t>4@ܫƼ˫2z4kp߼A{ݝ/_S>Ž#[ `; ns_||'!I&?h֔DbI*vrP06UbɬwЗ1K,º%=?*/#fڋ4]tPQ=z'lUF{!"k嬿K?|ўo9NIPcqEam ]뤝xCWtX^io0žK|N*gɑNӓ!=elr"CFhP.xns?Sa3m~l6&_@Pp ,XAP9G*E cxaX55*y,(yϟ%$(Q;g^;;>5LmI]-O=rY9\ :,;&txyyo?߇\sc4;[-"t U&Z-A]N=cr+.g *@@ѾҗZi,eM݆R.vlcK}1I 3h47R%M(5UkuhK^U:>iSژod e \#$ hs)s'3tHf;Ϩŋy~W=0 11/gF.Ur.=unA^$܅{BB..v g䳖 Nټyԗk؃ .>fΛHؓ G,G0Rp]vμz-f 'ȴtV|V3q\:ToL[؀1᮫]٪uf[$Nȏ,S%YiKx5פ)U] —ھ)Hv0 D D{"Ńt2IbHlI;ITߚc1Pƌ:4"Irc]i;H{ȏ-DDxmԯ.&30YWBm!@4 KE"4.Zf.vOZ/2MUdx`dj0#\P\g'%&o¶P͖3Z/kxOVO[nb0\Gw%jE]e\j=6")vhJ{g뾔Nr,<1=ljݓru7tTک[k{ S6@i*9.8mVS DDвޖܢqW<IN+ADV zvRi-o Vh!C[V }8Y(<7XKA=u<ힴye}v9 ^ O!_%ƛ\itI<2=6[ݙljXq@B&BsW+ܒ+<hKCk*gTC]#ߔ.},w\#}bpѓowy*7Kʍ2lkי5u.ZP)%=4mra Qu]|a]ၚQe(>}Um3Գ/J Ҭ@n/ϲ}F0.BE >Sc oK A\@zO+OУBA)2}V|&LyT皼-218FaRpf"ϾMFM.&\ +:e3n;5dw^k&pNc37rnH0-w}GŏZMgPR }eLxh'/LXڲk贡I%t+%ϟM }h*ȓ֖mitFsDA $hj^hX/D' +«BZЖ]N#rQ$>\T M+ F*D 6BxM `~zS `R긐'J7Y*8[w=l&lBie`N.pD@DB| aPh cb\eBMTU:B\yunN#$bah yɞ|.\n ㈘-ȼ |>;vMra_`M#nPop@x* %GW^bŽ;mģsGGczPIE2fp?)1껧׺+pGB'W{ύH~⣘RAjg06G^c8vI ]W\Xd)kV'E𯑈\Y8t*x{dA]C/l$v [B0NGuzN2\YԆx6͸ڴ[2۱H?ԉ,"mV/#\"Aap~]9o+;m2pNݎS!To]Y ;GZ5rA_Jb9|f"JqΙ<{S_[{9d={C/Q[.,I߶jU[("EOynY%`s/ͳȵNqj=.xٗxh`VU:wCz ;HT[ŹZ%i=\K+aHA_ "&|Ds I G䆘Hz>G#ۂ H 6V9޵\ ,ne <Ȋ2 됴TKz|qV`-ںO QG}s,ME"@}lB6p?.?RWh:֓1Xit0(.KCNZۓj~BYuDh^xr3䪆s|LmGl+:GnMĪ$DCy@\`B)(A"t+\sa&b@ J+De Y{M{9:p#su E)b dWiBag*%+Osj;w[xID+*^~0.7;ص˪WX68(~)QߡThb4FAZ?nrXpPA{?U^\E,])b3*r i?9Yr:*^tl%{ē4/_ ١ñ̇7"ܯؙܿ KѡNG p|~0|WQ2i,]0{K-E1O?Tn3 Qj t]BROp~vʀ F{>o D<5Vx+f,#4FP KzIԹ LOaT 29E 8< =ZEC6T0҂LЙDӾ>ҷN +ye(Q@04&S1}fNb2+ք X-#/g +(YH1_ӗbLj;ۆ nfV+";H ^'@I8;YՎ)7j!JRi_Q0Hi8IU$hb.+j^^]W,ᩌ & w_i.PQ~VwS],)ጎ}aȯqgw{d2&23Oi"-)AIy%q.8b YP^Dr?aUOaYeŅuߺ}/soɷ2{}=b0Rv Agb+yHv`e>,Y6$*ߢSn7ep\,GZB6OX}NtJH^iqOXbgƘ1@Vo!QG6!J~=Zn5zRq4`Ic& 7^1|=LԒW4)l>㵌;y_CT@QTܾ,}ɢy+،!@P;MD5=څ`ށ9'#I6VA ;f[ e޲w -q\8WEܙZZfL/jH` F\npҭQ>4Q 'Fa2 m S򿛆=!Qu6(^``%/SB}`6wu^<W q$^%ʿ5AȥRZuwPi5ܜμ>L5 OOvd?{T(*fCZA^ $o)CYʟِ͝]!KptK|ܒ|jw6BvYEc,8۞hҦ& LDL `$1)ۯ{4MoHJ:BղIhADɍ9(V@ě SA%6<8~@Z>#TVqE ]4HڿY:͓Q3u$*d0q:2czRq#`Q`.xIA2m!Ւs8z@Vԉ'$iDWyX E|bV]Y!ŕ -nB nm("_gөE}wONJ\.yRkͫo5ƣQEa5)+K} FUGlzS_~B-uefL. PP=<:̥SLkAP!IĀża+m M4~Jfqդ'ea,ڻ0:%[䟱7OW#7镼jlO{+TPkE.g?hTw3VXǗvګv]FZpcaz*m7"L0981$~<Z;$@Z ~M'7h;bUAR/i[ž( Y9#M O>'A}Ԑ{[}~Jgtmմ]`˺TǫTn*4weYn*kG mX|,x|yEHba^7:;%"-v(I /GFW4(bKhJgL%1豠4ibc47Y|wQ):y_L }CV408wH\7uo`NPe~κ6lv:AZкscf˒>HbŨ`|UIoO{<\=8k(&`1@rRu[qMd$khfQrlҡ$!IZ5k88/Z!#e dE}e[ۙ`?敐AdMZ۵O9Zॊ]_4Pw#&Xi9ċ =!D"5Y̹j"\?-ɜvh ٯKu8) #"Q +DeSȢ o`\rmn.m-ְ q~Wmɛ@ H8}ڞ&r[&2 GvЭ0lݡ5FsYO!X̡p2MVM'$NIv9~cDPAH A7l% Coܥv45!xv\;CH !=œV"MsH[|L;~ ql޻$MG-W9#8ZvZN)ZR[/".7 C:b$MjbON[- 3=|ٝ* 3B2Q(&Ԙv( yvdꂯs~; CrZzcDD4󶿇WJnKđDBBE %ivu{rd<ڙMX-Fhm8*ZQ?  ǷQ'iZDA J556\%ӀQDO+vcF }ԉ1W0hz zIgnBAl ^~EXZ3Ap'boE1Bdb0zB5zU z@]V16z-E/;Drb̗Z1b/ ǿ'Ld9Q/mZ]Os/d7׳$"_YhL6ۢDž&{%9';cT&8 3YD mg~ ?Nƙ#uw/f;y^`}Mwx2 BQ)!b4μ]G0<2<ܬ܇} P̢,@)&kO~VhR9,ǸF1 o'_GcXwFÿR!.oY0(Pt+e:hr4jz՟\Oǽ#/H-Dt2~60zmCX~*DMxǷo%K}k 2oT X Ea¸j|`w'ڀ_ݫXh' h-.j;}>=S G@`Q HR,^Sf8L0Km6] vi.njŧ|sS(plaV`ad0,g̓O5l*s,=et7aJLĤjaTVٻϻXo ͳk\͓y<.\wtIs t.&ILS.Id"iH#-+q{S%01_WՅ\D]S 5ً%O|ڑWH@?FޚxY.#bOo\d CH#hh7V\;tcvG9Zͬ_!䴱GkZuƮE* KӴ{}#VFܵHN]7Z·ަRhwqя? ( } Mڇ8tGTu?x=g:H:ETKח) ֥{gAb6 E%8h?>Cn[ iFUCZ'#K2^Q0g" 圩2߅,w G!IYq0+SjH{lArcߦ[WomoH W+9}GiTFZToA]u6(E_9#bg͈]ثn?+3^ HIMҡUZJ NS[3"^#E(#b$| u4Ms٧̼d~U@;=ŗ="o)q*+y1vQ{ע*m@̅cdHХ 7,|3"^B b^⭁Y"B v`jo l~Ck<77 ZAiq @L`Q3(kmTBGxy9+8R 5]&ߨ7%>*ՔǾ(hL L$q>Gqi#iQ uP][vۅqD\ô0>Lus!E!QKUz ȍx^ک\s+[M7o?e=7!,ՏJf=J0m@%gjcvU-|n ¿)Kq Zq2T&ֱƀmP~hUh@IB>nIPfPAcU-Qa `r ,.XA\+ѳyYZFeDVU!j;Yl4nczMHELJ2k ad܏iTM9ɶ?#6숣MP˨_B7 CA>=řWBouUf`l_ZsTPU8rxmUߎ抮;(^ STkES 4T$l݊댎l:nI̺2^UH[6:6f+ 2)3 [i ]ܰiWjk+dl)veО^:BsR]ܶYm6,V_˺mn;l'&,5>hrEjry"z=F&}^ܞz1c򲪤"e6@XCdn!G< 7BJ6O'A4.;,)KBB گzItFz[a&|G%m׊9` <݋)oA=Qi:5n8 S{ܓ.y/bPE 'DW`i~R GZDnrR\2U :G [8D>h'zOB‡3`o~}\LHz؝\۰QKǼ_Xv5< (I4`h+>۰U[uFI@q( `.#F\aTSZ`hXP3"e)}x rNp"_LR锶 HjHk?Ə'N|k!?S`-`*r?g'" 0qG(iF9$~jZB2iBݑow ewNi, ^}jI Ȇv=i~Eݰ8^Wyp2Z:D Nƺjo.%ؾL \iOų:Qi~yX_G,懣H4=q^&Lzl|n۲8@q>!jzMbF3C_1^8Qd=a_Xy!tWVS i:b L/ft~o#߸:1)smމh+Ntʇf%}zT4d'04h*_nqٞ-Ь}b6`߀Af`+3V`~K#:U3\0.sfX_-;2ߡG[ɡBpBҨ#aR~<{AOtЦGf&.ҠjTd0hv]Y(4M >l @}:2oЭRGQ/ho krG|)U vC&fTT $o44%괤Tyށw3%qU| W`ho3'ĺ&c-Jx\:ppd8V`=biHPYNm8*hp2VUٯ 1 'awjIs. dM,`C\q5־Yowv?6b(oƆ45r =|o28ao=n(N̷)ӛFT$P;WWו8?m]bSSdw@ǛePT2] `?D :QTSNQHKWF8.5hh~lm}_߿ViV!H{,sq[ OxrMVgțƽZ1[c7uGm;x.c%{;j>t;?i%#/v}t!;N@mJѨnUq.tdtO"ND(' q薯+dJ/ugu f]-C6_MDh[%W"ѸzI;s,I6!((W0j ~;TH͝Y8MsJ18 V`zSΚex{hnw]_];R&P\?ig&9*PEoc%U5g8QdȻ('o}[*=uWV nQ {RKdcnuEu⃰:Up<vAGc+ ҥ@T ̹? V3DN}ć'K=&*Q6ўf ?J/٘0 o0@Bi%3 Zt?GgY-;)3 ? rI"IWfV` ١&eH/^SņK$Bs64¬Vc\GRZ&^Z=_{8w:tX>c(n= ;/0.Ʉf1*^QلfE#zgg3)d8m\ C Aw4MWZ'*&S|VI^Cqs' @ u˺9J\%cg*8\yJV9+(Oh%7N A(K jrW9:T*ٯT隤BK8mP4N l{|qVt?\O8' 0rP^jtCaDn;rXE+&|hE^$&^li Q [*t]*Rdm-Nz A%S n!jmyX491 eP ^L8sF~T-,Ľ\[=WJj{+iEgrϻїV 2rK%cfbe]j~S7N&LajT[U7~Tv!t";xܤ LN{g*SA YRЛp^`^+k:XHu,Sx|T_$!ը!B[kn14ae=oAW8`e;{8fBt2PliBDŖV /u [[Ua`U 5DUg#LXdT^Bڿ;lfccB !%bH -c{AF5}fNh8ldJ7w}kL\_|l\î$!ı+QTgQ-ƇUv̔O\NR mh0Bc.JQ!xW*Vh'sPEO"ؾ^`97o#KVA7Pzs/FHd1 E _#E^BL$8oUhom Q=曈% ),;Q+X*0IWꍛN j-(sDf_2x?&Ԋ 5L~wn$>u QcVjuކZ_}JIV&F2yTY9fFH1e&b'w  t͖|o8?֋_ś[Ԫ9B"5x__QΔ #}4S d X y-=/` \Ke習ͪ.ƍmXpU6ֲ'!QpDen25 ӨS[-<kewP6 hJ_6=q`EDkO03G/)VܢBkF "Μ̞fYccpA79Rb`eP[um+xvzg;'-~SN~Cc% - G ^qvd+)ƕ2P≰v9q b@: "_P#Nʫp)S@lD=W0]8VGVdx$ѤKy~!+!XiRg6ÇWhǴÄi^"[ Β1٫y'6:,i<}]/;v集Pɿ]ۘ7.4Xg9uY?1te9Ow]\NrM ALL CF"ֿyē$:q!" H+y-yRwy;'73koe@ؒDgmm5䗎#_y}|PZq(qΆb\>V-iV(ph=+O(Eq#voq]0= u5Ypu*\_4Bmcj-J̰8>̵n'HUuJb^z ؔnLi#,0;珧^== /<l=V˧l;^е$wl}4!_/'(uW:'AC !(1O_M{KEdNxK.$~ Ra5E9vlcGP ۗN}9d쬉KU|vj,*lq/ւK>TŌ])P}p\}ڿftJV&:TVuQHl)wAπjh l6Imb v~%$9Z@)QnL?5x{PHÙ2eÜŨLљݭ顭@4&9[ :WGщ#WXבϷ_PMOm1LF[ r{)Q"bUʒUii9w|W. 0*qZ8Hҹ@$$&6eE)8E^1|בh}})1'5SftGݱ[Aw%:cq@1GU/'] ;^Rph<([) H9GWVkv/$aDyk#yNFZ~cM3c[D:rh|M_[~T_p|KLopdF&;8 ngD;Ah&k[.[B0&(<oq<+'PC0Qgst7R! $jGi| .4b Gk<ٔTVjLͫR/P7}ťy]W2El7zKҨN"]PZ"yh.*V;b6V["Az$(}(ۺ_A5S'OˍNRT|$//*(c&nl,ѦPۜjMSvl`xU&g7l%4V1^G㋡>~ +}l<N"1y ?-gP]N+✚RYDz yAwvNd>t_aqtG Q;!,?~Щ#mP/謫!4e8DlFkT\D > mu$ @K՘5Q^Mk{np x- SGXp%,X:-Fu EvU96r1|lIJ|] KCD?|7{V (]UPX{ؙI=,=4"iGgw}螻b'>sr"Un/K3eBɫ&\PQJoUIJa|f%g%. V5bOmGA[;elv flVU_֚' 5uEGa`*+u\<ՌQH2rH.!go~,{=ŝ=T9B_4vx}eoCk0//=x'&~c75)]XjԎNgOW9IZ+:8H ƿ$R2jNy1{[ $a7>=l3P_mc`ÖבO ˮ:캚J7'ň@W7yw/UZIaSOX"J粑>mwIND,KNsЁot}L:65P x|na"'z0۱(@ Ms/ԣ9K*$?vݥy«fRb q;6d(oUꯛt7۫oBoz7bmf7K͑"XT"O" 긝fո*113EOWo.*380W3vG} Z ,vF?%Lh'7O91:‚EWw@ӥM q$E[ 6TsHed~WaaRsfr-G4􌶌TlpWr͜J6`aiTL3ꭎ2>r8o'&pF7Qf:V*<>~#>I̢r=U#텃v7]O[VüRuZ8Cf;II| S'cw—- ȊHQM2DnsMW]Fr!LC <4qp6QU+H;mG#*`›X{![l2m{Nx* )>Q ox`KMosviF'̳qDZU+x ).gve,r:aڷ5vQQB2,Ax'ī8s#zm2CNpO?WW/ѮѪ@W?΃H/=Au׷2ǷY9 dcErf*\+ܷکN"aT Η)D

#h\/VZ٨`E,r[V޺@@U;p-<qJ b9rOIs/`>|2\irO>{ke+O7|xRu0;>E(KWw!_'D gjkFcisCA#&\ fs^^Fc\uXfBGGmGD֧7Qrٗ0l`m佊+g`{Lj381pe`$ w⽠|k/6Pgfifl3O!.T']P td)w۪~]k<]\%[Bs^ ,P+^\6*VjZQʶ>D Kcb=@ 85j&t 0颋3ɌJ&_q[-Q]E+vzP\"rڗOi$3G6_\(-~D|Hܙw9褬iRrұZ9ʚ,r7$ A{ gf*;[N[PԓiAZp<(z{X9ᗺ$x&8wQ~)"g|. Qxq`kTv^$o[ 6@CEˎ,-CF}HŤ&(g|BO9mHrQx?T4T-EM}/L 䒸h*Lꆼ#?VHUEP\Bm>*6Nz@L3{f&`}acKE;B@փm&́k>#/@&~u?yt!o;je;цK! WSů))# TGk;PZ>9,X;Tg~آp'7Q|`'ZLΗz-<se/#y3='9tYԲsM(Bjl۾;CĄi%ܞn}Go`gV]!-N\cAo*6Wm;P 2@˸@ȩ3,)lbe;5bڒm4.c»Pn\ ‘:=Cwv870g{{X@;ֱtXcDIt4|% \,I^V4CS~)L𿮎%.hu.00ټHb>z?sG"糛Ql)(Āq $X<#i Fޘ@Ziun)^hp]dT 'iq5Uf7z>oZ頡*ZӇ>[:xDI,EXˆy7XˡrѪB ׸=ʴuC\kVaׄ?VED2V 1>h\{굯. ٰ*i7 t1OkT5 X6z!,2|F-v_ )^`".@-`QY#D}a ׁ/6=ŭ(vV|@]gd)ʡ~%qj=6^4B3 Xx cQ;macz8t)4g=9 9-v±ʸ><8Us6[  11@u{ 71䫲ucZc)ovh 2/\iBk"LL$kh,rCOZ&onF,PCRYf\> ͊M|yX2b83kY'[8F~SzO֎ִr0GZBWsx!=\ +_B՘ B*G %]WD".uo'(Y<|uA'`؍ig"SKƖ?8A n>*7FTvUU5dlԠi:hy{$94,3hf.$)3-jD|C>fNmU }ovJh=?tT/2/X\tz*a)k\7ɨBc'XnTVe\s+hc=f5#Qed2V`Enx5n %+visxh0)EwPhcqG8u"$~ѤQKʚ19I3hg.zR (^%PbnCНJпEtqB:a Gִr!=Q+6vSElPAn&wT퉕E;]z9-_ dՏ(h!THҀXERL1m&2,FOk#!;&A3Ps )NTW58X-|X Բ!O q"w=-091Aȷ62h!!<5@z3",õr2Χ]`-NE~V(ndf:OmdN} (<ΙDz<Տ?iq noί84jVrf}0dfC S$&{aqcti Iul<0p䨅3T= PD1ZlM̔7uek[h.bʷ*I2 =X ڲk(*gxXyƚ4  bc{bt[e(ќc?3)W~9zK>΁Wqu"u>~|;0f^UG$!^If+G`dN4ת踦i"2LYG:I7 oY kvKR>4aQ9 ^&Tvc! 5j7Fbq-A  hN "\('ѡLhAvj' D쫉M88nXS`Vc5Kv1 h;iɢ9@ h~SR+R~~ W+2c "8tZb=wM沑>⟪f8=%,x1YC<˖!Qώd)LNz'"}d!ON?H% M'`t=FבN7&R T{ LDŽ"sE`R$vdWt`IB3;FJnqORe`[ХK8PLʧRP=Fzz㪵뉇Vq P 7SviN缚Dc"+*vRĄ9gQ#"X5k]$밖! *=Bfxs,! ![ۘ"K=}# LԚqӥ4݌ sKil>@3H`+\f^ȳiMT<׫qh`DE#-kAoHQ RG]gx9EMWWoU,I9pޯJ}l!Ƒk#w/—1HKM۬̊d:ykz0h3qtxOT[ l2vgC'$#;# rGƗ3ND>4/ _'bf4kQz1#y^fM-y.{2!*\ӬX5?b-# 1/(}ƵFg2:kaC$Wۗ0QuE>z+?Dy zQ阮`ei d|Q @L^\I ԣ'n}B7Z`@w=DGf5C iV/k j|i2KR~<8_-x"Q=m6Ẽp 7xZ8a[ Od&g'|sD1 ?GQ0R y Gkf{Ԍln ]lprJLA VHڲFcqLtX@r17-![9TWbN%KՠPOoQ:06oKiO4įc49OrYFh 乣rԏ{&weo:;ڱDbW_D(p?#Q+p,5ͬ$FLPy%Xܪ9K(q#Fg.$b:loͥ^|3CCiw4-ŝ?|@ sU%։#u{#FV&bUc̦ۢ E_4upe,P(2z uZB"ѾN|3vZ5Ƹb"|q}3[J\UP_*N3רWث 4{2j$dCf >v@p~!{MeEK_H'$ wZd aEޕx>s1Ld\R g8+ȉ2J7s}I~0(FH?ܬ9m^m B$k:/w(m=hَ&=yRb-S)'7W ӗD.fo~q,!ĵqn^fC ߥTa^}i}l-aG> Y]9Zģ*W[Wꛍp.2ocz'Pk #shXSRȕq}cM}UARYVd,MTKRgYOip䖻ي׉BʲZޝAv {=) hǘ VlM#uE>!oP ?u<Qv7; tr4$׳pp[!ЯO3}s m]}[oIś>l!h/퓘U4_,W*\nC7#۞{BYVFP 0<ʗE2GDN { @9/ARҡB 1 yɳGm=MiE<~ uI9,cq 1#wv H$ #1(Dp >:'j!/!Ub}KlWw#.1u91/񷇝1XL3Nv>cP5`U ešm}ܺAv$L01шD9ԏFt2Akxw=fň_S"M`ꛀA.g퉁v6WۯZ `=YyVH6=,&fݘR :%A._K lp$ҭ[l+]iw.GZٜbaDŽ'A?@)}>Yn(X-3 Mė[ tTYQ' )8}ًH&`T$d·'(һ^o1nӋ(7&Kn͢Qv\m|c4m=ڿ6;Tj?Dԋ3(q\Z`׭*lu)jُCqBTVT\C>vg&ߒO s!+"Ou#u~-˦\+s~ "Q"n\r<Ƽ.9.OYi..+;+n7Sa{{@W31Xiʦ _+Z@3ٲF{+ӆ]n5E޺v5SgTQg2c9tjfST)[\LܽD50wic_w.з޻]a›mx3tX]"]903"T"@ܳH"uTe L|ǙgoE#LJ4AC!fZ2F #F^'vraWcw>ztGV qEMT5UJ+O՚Ҿ(M¸>O,z<8<M3?OK}o{oOR \I;%Rv=a%0DRFË̃VlRt*0}hU@GČ6džѾO.Yxf85DLKإ(&HC6KNceb ?Áf3OC<(2 v{zD?A&P=d'E\V~ Uhw@&Cʗ\'$^C:N2GH[g]/j:΂>Hx| /pWCWAꂱQV٩>=#6mh9*UtR:c+ZD'V)=;2Iw+LINtQ5n\v4y0=K ^1YU{WPWWHu',Zx͢715J"taGMBWiBX2:s[CAj/icvbmޟ% sOR-g*c*|7EL0ew2ZPaPJ^ >T6O;#џNϊjבa laG6eCQF)xVr;JXg7N~\b+_\4<vSIJ5̴60Ȃ(7$Qgŋ&Z`TOttTAU[fʥ;yܐ*xL 8"0ڌ'ŽFKmUYE͛Z 4 ipQ^;=`~C #=-^ǰ15D4쀃b7 '@oAL_g݀j|40,b%PX܎LJkuehIM85fYf ԽgN91,t> $IFBDYF:y"_䊋g(lvx*|B^>ETVȷ5"s:9+,a iqӲ2-FWMZWҧvkH^ הC)jM=~+Df6];ĖPfJ Xa*id).&o_EȀQٜ&4SP$5D/Khg)6Yh5MM(#4S(fPے= 3D{jJE}MN#7uBk:nq`65g0/HY:zQJh&A(O+AO)ez g>,/n\^ެ#Rrkb@XdˆR>L&tfU%S@ -)VeȣzLQoL=n\nm7A+K:]9CEE} 5¿F5F,J_.>;r_y_50PFty{:-zCv 4T_h&8mήng !ad;=-WdId!U@PpϽ:Lt!DeHXam~dyƦ$$CPZ x-[%^:1ؚzz5L3$9<;,tڝS 5~& #OFE/tկ)yFNXԭ"wA櫗f23*w-'7{bf#QJ*>sjS5TzeNqt l*bI;펉Kt-EJuW{Yi`ъx5ImlJRukvaOS!R!+WI'P7Him8`ul1ax/Jަ yj+;w;Q|ÿnUJx5.vz^j^Ghn@NУvJ)wZrʲ31!{*sEG>;D톃BNuC_ \J8`dGŘ~KlIu*f3}3?Eͣ -~嬧uZ[?#J! HG&@}w E !|c?Sb\ 4Y(͇9 Kgݦbz lh7)#yHL.L%~v9[2opv5)BCR*m(`8ڻHL?'\.L[ NKm,Y-Po'rOv | $ID-5RfHYBl=A o"7 گgo<3:h%P@p\Mb$>9sa qܑE0 BkքQp8QHWkĐ]n>R N/T.x#+vKY'{?K# 2 a p!Gd-۹QlMVuSvh2A$]%dr# Hx#-!z#"q\qgd!ME [^v9 gh臑S\rKR-ƃ*ʟt^dkgu @ђ9x5j;ܠ_ݸ nop<7.R ܸQ@\ cwx/06a;P|#4=%3k0 S\D>>z&fFTD"2.gSgɫ-XY`=iUHl=wOOhw#:m:R'\Rܗ]t oTm$<;N`[xQEnK$g >ij1HM&Yij%dm?Z+#?r+>, -r%u"?,'d)j`KSə/OcW=ׄB#/f!bXQ|MXPs]9uP/z62n5%0w`Y'#wğ.V Cwx-SI0 VG%kAeh%KJ uGo q~9wrt \-M~ `ݍ 'Cg%.d-N1Vk9/!C: kfEs?l +a@js_q;ٴ7iN`|}{yy^F!ݰ^PʦYhSr!Ո]9y??#HxB{!Vx 3DuWVeVŢ-wZ AS) 32?f((!k}iϲn.ayy5'{ 5EޱVU޵ž(?029 ,;c_Gq`x)͚Ϲ*IO\.plJWS"$9cNš1/+.ph,^i.:UTmN%3,8+MaN7"2`kǰ “u+C~]Imp.f~O19w-.RH3 0|8#Mrk /mYܮWni8GTSwuo}DT SXڽLl-c-a]AT*g Oo` SRAbo`yԃ*7>Sv`Wi$#co(WȰ W2̥@p'}.CkOKYYk4oy(׈mSB1hW]=s5nq Ho=#AHcK42iP&+ s-yA=uz%4t6~1ꆤt}n8)Ա*k>ϮXGm&+VAJ&" I3L#c?q;L cm./Bç>5N[>Vl٭b! fXĸ'kWOlҶ9Z.Ya+~(|?Ou5XU Ci*'0v,rc|-%t)< jS6j'l/1~~r"b|w0l y V[/v$_9 ]e1աp$*\{,?H}WENDtaW$6ܪ",~2Iljތvy3>&苼)m!~6,o6d'*ZW^yBÄ0f 9i=u,hAn kmGI +[ǚyl֋:JlT gׄ94w~f8k}ט|9 Q*De8sk-G9wqw2u/ުzTbNd#z @eHs_2B4 6Nx!|ԡ֑a3U-$onսx\=ieīLy.1-"5t#cXTFGR͇6UD,옭D)ۧO*b2hac ~+Emvq -"~vWS,TܧWsDց/Mnܽ>/,s_!,]t W[9XD*&ΝG'yPٖaɻT Mi;U)\BUաʟ`-fRvMAb24mf%=#x~+;~ޡ}Mӵ?X(\B>VSd[kDܸ,>ц Jrïe#CbrRǧGrV`v ol #z#A m{ ..xrDv%%DZU.Iӄ4ɊyiFYqoF- rY>"~迯Q+&yt$|9-{T JQ|U!n>Q rraW\(V9ztM(Be٣z#X؈XrBɑ[sNOH aLs,rcWi=#> bbȏ$h͟'4 ]<r 5/ryRif s%V@i7D~:FE 7J yNBh,<Yh|_0 yy6y+K,'!V>3`eІ UFz,>œ9,J ^꿭N3CNמͻOC!jם6ki".rH9˝'xn$FxotyB~_|^n(C,vGAm jo<'l7/fUm^QSɿa":ԍec5ЂK4*7p/UpR{KjeM)i1BJVTgĕ; gs?VRz{/@caҞ4yVX/0ywE x ̔H:}(THSMcCVOs2PӜi&U6au~Ϣ1Xlj3c 'g#$kl !H%ˋ|JF w*5]RbxՆ͛? YڸM>p-F|Y|qNd#k@3B-_ܲРv}ml *.1TϹqLZIQzBD;Z[5>S!sWVW:YgpvYUl B`EՋZ ,/fWP iRC8dn4M:"mTN".=f6DCze=Q~aPx8<>a,KcM^)&#t&=pv YSuÂ0%~݇~Xq{$AY LHK3x6IDôCgp-M?'`vd GӀ2^6EW_,@;TE2)q3ۆzhWYyln~ʓ .Kѿ]oǔ~*xY2[Z|\$i:9$cgx QVbVaBp˻QYQ9qY\GFP6l[Ѷ_4fL]ɰߵ}E4l8aMugٚa殪2ŧۗ]?WR-P9VZKQ-ԐSi'6%ߒ x麐~q۸0SJ)Ng& iIaڋm C^`/\JT[~dλуe흶 A@ߚޱVj٪eV&,"HQ1dnbtTY7R6ȹwMb,<pS,%uMr4%ً|>hR`3OF3WB}]M]Rʓ"eHg7]ZV_T[֘5Ovsߛ2_,*x8Ԓ[?YJaNjyKlk莓$w:ۓWr-nA+dWP#P}!\`qI49Q*ukDSݽZJ3XAR>H?FariV|m;:VFT[)s3:?tfq:뛂ׅV9my0~}!.g ikrUN ڹ7xjkx ZD6B[р`C2TFZrW/nog"p|BJ|sZ hU2j0/.+y#C]tQ[JT\s^g47Mr"5P:\< $kYrpQk )0̀OFͩ8]FV ez .wÞR1t0.e8k#SJ!!Ԏ&RBzsjǜ\ vdiEf@j(*~-O\K~1%; Cǒ+=-ϰá>r#$]ݭ'4!̪Ӄ/^hLp!2"{EzqySI`.{纕,^)l7U'掲?gL!ˬaDkhv0v e+aOXs^=?!dGA"4 q ~|4>I+^;EuIpfP^Ӆ!|Xdt-dAƱIlLGWx?% cv/@M!Q!gvx/?)s9?({?O 樸{ tRvfiuϠIа+ _S蜤z8LڲPQsZy\mmv+wt.v/aTczĝނ ×@8EoDMS8Q f|8HMP 3W<"$x#GŘ#cN`]R]~0!5<P@Qf?8z"V_,1J(vrcgdt^P N ?@Gw0,<Z4y/14 v+@,׻DG!2x>;ǵ~8ၠ13ok?9M:tFU{aGXO}l_f,O ya-jK0rkذ AA*}r_f(b淄P4RL C ZЭZ7,]WVwVDfevrDe|3&Q9J]^_>ӟ4ƺ!Ʀadl[GtgmU3I܁ ZN<ONM%0vEnDkX[PK*3Ċ%Z-O"-}5Go>}D\B8UITLႚh$QH.( 3?]&E$!aHZϬ:.]Z`6JN*ah\M(LJ^aa J5͜sM\DNj `]H{#ؤqߴC #EBr]㤘6՟N (Z.g: zOz.,-ܠܜ*2;1;.|=v|BD yyL(E16f6K4Xj}uW,H`a7.%lӍ!ŪA$,0/lyBhněb }ߏTN)tNDYI< }VSdb z쳽^#\dlrb)SJ%vͮ4~vTG-36<BMQk!0T]I5cccNwxk{  .#%퐳OӤtxU Q/@V.(%d&3)E(W=q Mܑ}{W6Z./Kuɍil&-29v"UNb:+OOucsϊ>ޖrgNm۷Y-ڷm^{~JO#pwTz)@P=Wry! E)6j$w~^U4#b)lpF~gxh;-|XPZkќJ5EE|d;|J*ì5z5>4OаC^0EWdTW }U?2B?l?vvP# UY|A8[,b>p0eWk'edS֑Tɯ9N9"ZT_LQ"ɬ-\r- *\xǼ09"K~ԞH=,qY.#h xqO탡ˢ֦6wbSt|GcIT ?G!D ˠf4GzaRHc^ڈѪ?Q+3kZrvKRNinzHk1Хp89lɷLuUg ǹ@ҧ$]Ǯ4xj[_c"w7=d,ڼ_S(?M֍ tEy~y#:-LO(T&ZtNȺGMZW 3g%&xVٔ]+3!|/OX1>V+\'K1D;y;qdHQFo%aK'|<@$c;ӟ֡~h%;:`K\HgP?Cnj:P7nߍf+{xJb6G.vՋ-ȑbr+ϠS% Ȋay&tIMqK̾KCS>\q@;J(;V{nҩS(Tѿ:{@A D@$P{Q8#pѽ9Q'0wHoBh) ,O+Jf?u "X6LeY>E Š;n8@ l f$~7?: |QڦX}Y)޳G+3 B)ָyٞSLO3rAE6zCK!QӈZ͟DC&ND'm8mS~uLr#% Hf gIke- y F<aP_ ||CTXdxSexliJY؅6q>׫a\<<2H즠t!ڂFk^S/Nh&R'+edw.r3tG@?|ks雹f2TUgqxcGDa7b @vI!V1v>>@`(i[(o_ЏΑ%ND/^ÐbM꼑ߋLo٪7 ,li3Tc)lG2i/L;6fZ~\'ڑA/<$w|\[!5+cc4mWRW$]ВZ6_XdeZr AdUYdT/3l8ˆoFEغݪrAkE)96~_ng4YR4L;iw8I暫mʮxژK8W6T5|FO"b=3Z.ȶ[ 4 ]GIgd:G1KۨI !{ t[ua%yE\Mvqć>Z<'ɦ^`Qsz?vA՞+s %½6e֩KjG,n5fY ,A>ħi75984YWBhYc03WP#? z9Z` j|c5EDuNJ)Ɗu4 @ H#03nȭ=C (_1kXy6R #CKbQ aţF(\kWwT_M j>lu iqe#6MU l䟛 $2\#]c@A:Rf|1jlF],bj|-q:ϸ860KTJԳu%_TW(y>ωQVٟsp6]?o~Fr`!#O=XCl1_P6ߝss((kO}up\wmQswUR5bgL&?iaO3WEÑNVW=~4xOPz,+`IBr+p SN[yY'k,J3wWvT(8Q|7; tL|ziXm1,GPq {qꖇ})}CCc[7cCUzNlW4eYKsxBIj㍦?oޓQՊ5%;5U8! VQ j֧[t}=?0ǓUI[ʥe>}|"Cu*}UnTKK Z.`'E7`0o<}VfQk~j lHTatBo٩"I{⣞`PGB@}G3Dblp;RTx[DJcvױ+$PVS@GWBo* i]hm"uxs򾨴rmO#b_7pӥ8|m:{<~jnc yp,unS`K-&f?OLiFv :%b#F%KǎG2Yّ-˻״ q;.xGIo3QulSW]eaYN)oG)DYEiiqV7`/ko}W ûb[5r%s*G~i5[¨.ټ|ףllm]?νJ\$'۠فElxT `dt+?FTb]xق=' Zۻ|h+p7E#S``vVT|}Ph^?S]7ȉ%ӍϞm_U|0hl/wK_n@IQRP`LwڑMU7!Y#?._y'DFy{l\PϰKrPa큢j%ȗY6TF0G 3ʕBzV0Hm9͸X|a-.̛V oȋjt>ĬcrMe:ԅ~){[ .g%dS]uoDӉ/?˷Rޞ(OXgy t.\T|JsԐq.$,#N;:ڛ@MsF? ̕fh%IJf ҈/9c)h7qWq)'%s Sկg|*o{ע0[?">Rpy|dL}KiJ`0DhQ{͘!ufrag謁Sc79wpIj;|u/.δB y =M^46n %8~>3~.8 ?X$ayt>J2+IBG>Bk3_LoCl4%Y50k!Q*yČn'Q.TzR "z9yfJbG(0UB(ڭHCBBWY/[Yih=bٔaluvN,Rz&fAv_b.j8]t*i -f$xC(<!̹"n^#b#]„Y=aQl0}L7(uܕ{p tJe.vAyģ0ե x.4UB<3Ga}?8 pD+j.F_?oN5v4T#=01i3.~-81V$zveA[KLz)k,LJJ"|+fɦ^bt+2iqגTY3Od=I m@U^Iʿ[ mHA^9|K>P~}Mmf 9Wxmo\r"3mˋbԞzOymqI<7DsZB|_lm"]N^ntyiaLiOwi55߄ʳDɠ)[aJR s"]nƂ=His||bY`tKmxڱyL!i;YL/^d-tIR R zEڭХ P7$8+,2O|=@NSsABSsIz- k\xD!yt2) "M6g1LUb)#:g4茶*d ģ!/%x6}mK$@ ōm{N}J)'+q3JCo6m!QOݱѹ k;5~>X.DÖ Q09tr! O |,iw1PP:-K7dגphZ$ޖ8htv 5@RroK໮ wM^;!oXݛ_cmVF&PhYEzhig'@Ж<$-r^EUp aws.Gη3Lu%t bbZx JޙG[3Ў=,P4婚&uHqϦzMz2FAi?U?ÇrΨoW'fqJrA}ϦK ?E(IO`^(rjhIɻagEy_BL%XU۟42)9N**> S=hn\ƁNn̑7cl$=>daXG{~A~X \ߟcNsvWH T)ºL\ g bcz7o (?JT2p`z2|%?fmMzKQ eA-3&<~q (^x"MKd09_MF-XQo际~@f$<9Y]$ɲ00?p>*vS{F֯Oۖ{y#` {BT#, HD[kϹBY[p4{T4/f;J۽gl^8҉0顟UV 7b* mcfH1ʹAٴ\YRHJ0:*8LZjDgRp\JUB.yd6eMGR~a7qa5Ci'R$+_K!C7ȨmuV ArHA?w3ɜHdveou_a(6XnKߞV# ?|S=ԭ*G3rs0ˡ4A7lVQ0I=Tw:=~%M=1pǹBQ8 P*׏: j MMW +\eǃ@f+^:_HFf\OMɘ@/߬QDN# +HQ<ޭ̭l3o0ZiHӒ ]K[`s^,p(z#(~/n!uq{U*c(:ze/sR o7tE 3ɻEȫ%d#j؝@@lt)FfpssSݻP5-e Jl+wǵkv#`{ 3U;r'czP6T_ë6#AId.Wk& 1󩳒cqahKqN:"'<4NdFO,CnR7?8nALPK8rG_VzT>\ʛ=~RX y+ '4yLw@QƢ6SNȬV2AΟFt2:\az|Wb1'8UQ7qC0obyjç+̧r$-#}Vphp>dAv%wH?zhy0 r_Ou\tUت^L@`HN˫C~#B]PGU~v`a8Cvp^M/iL_Svz7)JVf!V膌Cqq/DwwjYE6uN0P(|s!q1U~N™B^E V޼= Зm>| /A߆=l;^yLEF6_eY^8t W#L͉(]7ENІv5Z!Rv/Mr%cm55\PCҔXidpmb*RNTLCgh!1E(qtI XC%-֤9,sxoQwVo܌ Q[;u}0>j /и3X)XTL%:55QoLjEc 1C wty@RKr!.?}qdG虭;eKQq$P(onG.g=oFU%sE23 ?*C /&J᭘8#oOK.ӷ?7;ao;-[!] ɑNO8;XSuE[1⾦ߗ!Ľ=. #F5'ʺgy&_Û-E"h*l># N=޸৩3v¼F58*~zt訣-!Eٝe|518i[7`%@լ1ߨx} {=cѲǬ7P|}xAIUMAUhKa n\.AOׄJ{ v۴^b>%phY@$fFO E1#@w*W~6q>fBQ<:ŗb7fbxK?wAp u`2 0# 2-P/,p7^!_8 Ym\T=+0A߇WJmHӘiX%3{n)}Ҳe+ .+8M1F,RL:mkm{ j ޹U*)7}!{0?>Ʉ$&1t ŹAY7_0ݚ%sM`ÊrC۬7f6=TQoX\_?!'j+o4k=Lrf:nBaNr [zqbtRd,?0Qd-Cg%ʫw1DA9erٷ?P k0[hfQ/[6`8Ew*Ѝ%(쳄i7q!Ep=k"$]DbDdy3+a<85^;ɇiaڤ73 {kya~sÀkG7E{^!*MrO* fhBu=v 48Y|s?k-_YvX>m$ -2nR_tB[y:rv$ yu!BQmr?܍'dhTfo1V5gҚ_>$wt勣:<zW &fZ2ښ L?5 O; Wf{ۚeSA^[^3 !=DؒtR\@gl 3[@'w7Zg?{k'jqd%S}LtA+Q:?[Ӑ2ȹw$9:t(3S``#H #*^;77r 'K{)S22zy#$$3V|,=__V Ӓe?fw 2cx~a;3.Kdmk|=u2$)-xs~7gJ 44h٧vkgZI@Dt^uW׼NCpbEyq [<3*$k{~6Q b;9 bgU-C`2YwOaJKǴXWQ#1v6b [8G:YwfZx} n=$T[>rۺG_#LlM˃TfuŨQbiwvL0Mq݊``iE3Gg#cHTn6{.2\=94"_+`}Gx 2 ?ez#͈KRB'6bs ~3eo$8Qkѥ Ra3/n ȹ5j,-0tiUyu_0nWrvtU( e}}0-hv+rsaf D.`*eĂ&GahÔa]qt[2N6q;`-X՚K:CdSkѼ@+(Kh6*FnhTDE5@eXWZO(XAZ7 VYcww @I{և;ɢ=Z[RNLȮM5I~qi tX_;nuAK+!*FX@oWVIs=OsU۱NP>pmNr.f ߚ2sByTb~!Qɔρ+x[CӉ{%@]юSyj y+"OYW0,A:wxsKԳIJZ嶰tBK‰G q;# $.w '@)EH-}}fޖ%̏cNq,+s@ir;㣤 RRm03EM| F^|~Xv(| έd}UIrskDNhS!c/ 7KXAikDhoqmB.afߡHl >i7$;|}4Q#b|) u%8BEfF).f/=S-|ܑN&D@܍ t @pM嗯XzO˨ 8ƨz'=-2O7vON߀-)㟟T}Ūz2i7P?PQ/AvmnQ*tR6`w2s홴݀ 5,aҴyv9"* 1ŤFCKDN? ]wCz?DEյ PW̎1_2 S/?j{&dH(F/SI]ߒvLfAzL/!P("56LAVS#Rojy\eNt"7˫CIR_0Hmi/ Ya(DThͥ ~ sF1YdzǏFKK{Wc):Tph3kF*20AeA1u1°o?cT+ǽ,4kGzN=P -hѸ\&,zkEU6KUKPĚ,o!8}΃Ur὏RɄ,!'BaljXv+'R߂:sM G(ĎCcBT Y0PpXPY- ` '|-D(^-R2.1!KMw23P%{re}":;Ɣ:뷛]? [uVNs͟)z;4gZF j 6ֹ$??]6*z E'BYXeu;qƝ)`7&[~+;2ARb- OLS%noKs|/,iǼ|S C,%kw9 R[Iʣr[,}A(AE@p)gCQgvoQԻeG^ߑ}n^ZhlE.:Lg;N ?kR!L5= 8WVvG=Ùɣ{}y-P?vHY)ͳe[dPjވc$RPKUÏ6?֘b;5"oevZ `;qypFlˏ{J-ӟe@ M[0#~a+Ict(i)Q ug PgZ(^^3sNսK!V.8rs[mINr# [0pd,ڼKxt 4cs1bЊL; t>Bڎ ƔuMGtq '&S3L%ulH.'/*II;qei:;'M=|s e=BLϢI0 WT٤׏Tō2`,qx~Ug&`0֩zKD-ߥZ nu>r2)̝ P]P u@AmTx#8RXϫ{g-wn+L"rNBa|(ȹ 01JwOʝeMRH1C Sx;l+$^y3z׉ v24Ģ;hD3nOǽo9.>{?e{e {nTP?!2Iq p놴2o Wf׊ H纖Lq$W~~%+,e*O.5LtKoY Wʥvm&CeU 4ѕwBh}h4>}c=Ĵn6ZyN3GSbyMnC N)_N}%l~Ju]O$pFg\ę[B5Ilzado(6`Acq[]FfC}ޅ/5D 0GÚ;-)rKoqF❑JWo+l %vD Ҥ?gGhKZI? n'@.gٯ%#N 52|ŸPVK*}fkY(h^v(R"[NW(%tdu<;E{yx:@y $ܺm㻃[~*>^I͉"x2YmOqa'+ą _W~LǸ|M&}l$(Ba7DEay*YAYzj8Xn\gQ5{3_jkkJdRy$G[N27w}8;{Y͚(cPreYiӘ qEc5ZqmZ[)r{J~TY"un^|l/5rD$c^FY[y4byԦe89OZFGa+c&ҟ3ӅG؍.56/ȯسWx>Ó7K@Y{] 7P ÌB[Q,SuRڗ6!v?+ E xlE?q]&tUu[}ovU"|OOK }2ǣ':pԡZ;s\NV_'axW.pîJ@hnY8&-n]τhTYHT>4ȼ= FEǻVcvt +pc\JI&{ޔ!Zݡ@C$GX;~;D6ʇe _73-y'm99̝)'bԊUr 0G5?ȰA#We^f^KD4jG5!薲`xb"wp>ך@˴jϟ?WsnA  Ƣ&Uo% \Oc5LFkt*rАٕWU xhPo IY$6ŋi}1L?ht+"^ qu Rj ca@z f9dv5:E^oQO3%@ U 1YҖ,kL F?\[_TǐQ\u$J+n dx]0:/ʕ_ؒqą1pz\C%4{Ż1BLq?rj,҃dW%duve|pBQ H媛gu=>MDMG^1a0sK^׸քQYE%9S 9iQ?^U{zw 5 0HJtYvWח|DÀ5lk^ GP.),KR*+!-tl7? Ί?NUk)UjX,"_pS#lEpDVJe%!nSռH#7]hEaǀQ;Ev[mv wk G VP(.G5XV j,1 ՘&~fm/FjI1 TRF[I(sg{!n lۯ# ҠD2z. đ9s莍ACμD]oǠ:kJsK'yE9X(y` 1wݷ E_Xl\ 0d ad2+ޅƼz@ߨj| W <<@dÜK'7Vu -C`g$'z/h/!^}QJOr3Rl Gt\TA ++6PzՏc:mG8J%npr%K7L8A"ѮuX!Ä_aj47,5C XNxaD0/tDKoCtd O?Fm)!6dV(jg9D29)' \ >XGz4mP5j$ AW4Ú7nص-v=S@ ܇_[ (D[@A+fi NFg1]EaHi͸~<$?`C 62JIJ4.uSL , ZL^TȰ z:}G۸5Ku]` o ZnJ6ScYϘ׈݅}GѬK80Zd7yS Lcw^Zd땶>(T̢&x?1D#ve!蠟@Q0*UxNi gN:}("QN5o>T;őGԈL3Y05v65L$P<ǁ%C=Hߩ9;{S"[sOV b4R? ={_⒟B"Yd2|DY`QЏ:uDlV}ܴӤYyZM•ܖa) +y ܭ/sWF ! BaK፯ka7&05N8J}=`ӕLp_:C vYzc2gmyMְz uH.щb' l8. pl c o+mؠToRloʬܱ@E2ČL[y0ިee8UNɳOZk-acvUwQtT$)Ȗ4\Orn,pc^_ú.Kl7B+\VTU]RN;D6F{fĝKC& z(D+*tf:ܺg)mĭsQt%Qӱ8c8IJJeLk;x'YG5Цdjw5٦ t(Ka`IA/p1S0m]`s[H8JLk%WjőˁVuT6l]ՉYgC \ITw!q_TY2Yiu;O]|9l |>([S /;${뱞|}t K3>}[qQWtyl`\FhUF8G_'ع0@pAʸ|=+ J0mD\s\QKqpX֠5~gO׆Q'2*IuUVˋ89C-SO RLbpG>vs1MMqHfaS uMAm>Z7!'wNZAc&~͛ov/s|'y-MVhC-x5_n`SG\vjԻ{i]5$}:>|-}W$^r违IMu~R\_zʳU]@&)A:yzGk#tC#WQ勜]ftp%q-c1Z=t tNhKn}ŶX6 =hI/rY@sj|O$T _?xSR;pnPApoϧ{)ck[qͱU{/Q>6^_ XQ8c?Y;IobZ+,J~fl8ưѠICr*rIwFV3W7MxYg)2M1Z0cL( ^. i o,zXGw;V - e#I]d@ZSVa&7&EByhn`dAxq,%?ePC!ג*Vu]QAn偑ӥ;l"Oo(79A ıDp' `I' ;[Ŋ8u]{gp+Wu<^w>dᝆ]BR‚#h,c;_\v4 Xs,%=KuOg:kY L‡(rlQn"#"μRQ;}_EӤ"%7 mK(d[CAmBU_Sy3SkvV}0*fAMKp_ Kx@m)g4}ܕBF>);y*ONb3g]jk$ bpNy X2Wq\#6_P,kKo@rNn1aI"t ܝR"[khOK]DIHs>cvLqxbx%m$[ؑT&FUfcD"$a럧ץ&RgkPGQ_4}k |pvc~ XxK6s2Ke1^ L-(dS܁ɚ _7Oڶ2Lwaڠ`CmNmt)mreb^,EywKhE 0s'bj󘙗uX]ǁӏT7] :?SR %H}{ >˞sُ)99\&cQ֕kUuD.p ʼb'mD\DLQz[W[thڰRDC I),Ub~YZQK @)4WVJ*i$~6q6v+jSvoTIvA֍r0@b KSS2 G4}WqsG GKA~ηG,n_+!uQ7O4|._}scEF/HhsXe_,2uqSpB* O c^o>2kܨl)΅K[?:vOqi]uBܠio=!uSN6ƚ`Q "Vi`μЩEݎPlXѵe^08EҦG!ԃ]Zf_8+~E40*gp+i!3 /*ro:>\x>dysܧBv 4J]ʟ<]Iü%PV\/ v}whw4YXCe7y\aFr5)=ZXiv*^bpNZ\마(IDX P>g4(Am* TJc%W'%yޓ6(g?R1:6uw|3^,N^4g31d^<)B8|hq']~ M c9D~;z*^Vlݤ)gYת,Xhs;۠U)6v*,y^j^a7/,_&WqO'G~d̫X惬/u.OM'/5HxTI徦Cs02go1]17kBe)'ڐ@gs[lWNt딍҃=!"!A9vUhׂ)Εc-$g"#g"iD~&ZܴboGiuZ tOz^$8ʼnn"@at*Y  ͼEƸ^my\X zd^I jegKhpc +힀 #nFʛZ'-bIVuq+i܅N~SWAhװ}Ӥ>> *fE0Vȸh?毷A$ԇ{»NZ8t| Ϊgme #&sң 1V'y_&>?(%ZE[zVs&ouI6WOBT3vޖޤ]"U̩uqnxt8Iʱ5IRA8IY39ɺdSn9՘nη,APGimO%8R  X'n$oLERX& h,Fbp),~6f w?fa u{Ո}=mT[i fS*ho5{^xM'ZqSvuH8ҭ W7JQUa/ќ+ޢyNw~K.YDR7S(|]Pn?JhNJx֋]T21%yMꅐwk9cKM ȵUr7᎒?R 3b}b~AdoKK5n-H)bļ&aʙQ-4ʛI[i՞=p#*~'P5_1t3rr_ x{tʑatљVgHXRWva]m*;c>ί}`\<0_(=ޫ>. z^0142׌NY74wLwq|dHgft`I) f;Gi{vZX A .Z2,q}seGv+WQH.ʩysKghz.> Y3C98i~b'˷:`dF2=?o]glGp=z ~OzTxz;oLnGHGg)cIs]db;Am͔L;eF\+w"02eFL' _r)f&k:?H̳Zĭ̲h< Pv]iQ=hpXXǟ>܂;hI8*E乌TjO:*86K+=ꂘj&2эDܧEV矾,/a uZcT$ӧU cN~U|g3H])YB9ts}Եb5Lb&)|AXwf2M BGW:B|̫5Vm> Ǖ07miQ4)VpK; )s Fz?M25cg5r=7-$5ũ _Wέr;@n@'j{}ڪ NJ*Rbb ȶꇈHȰW#u\w1/mSW1&f?*cƠt5RNrF) {KK3 EP…`p!r0V>K8*G ya`oq^,R+V`/ >o܅Ḙ2^s[DWJy\)vW}3y&Ѭ^Pg9n~<ǟB%Z] L8܎VanFDh!Po%d*Im,[%Ȕ6`8`\A8e¾O3 UyaMEJk˚"c@U+ݓ3A)c]Eo"k^ M >ܼjåxg^v0s#HMb/ty>*]kDߕ襡ԭ[u4(gO'p1gCRa~ @NO,!a遦dڴ3(ye-,X,Is˘js2YN?SRcb&d5"6u>M/ >u2@jp.s> ͔y|Đ7,NB}/ͦ.X:M Khòia|6(\zrMRXC݅ٻT&!G[e<̋/wk;y7lQלQ =%>,{OIt~ad:}k~I(P/%)G0Y/1lytgHּ%jk khc(W=֬k; C9@,W'|BZ+| ׻NboX,WIFS?+h}JY dTƘAWƸK8=SCtT?').3\jfν_*F3]X̨H\@fswGfr>sJ;1"JyH1i"8v:b$3 i!4o9k\F_xQPkh1V$-멙VZMKz( P~ҩJZ4AHs)pɒΘ=-Mm?EԂ%+?k*|C >sؠ%7$ŋ@Z9kZu|n0˞Jg;2+j y1vI s_Cc#xp2xo!X0&5HLݪ"l׷h/qbG4&Yܘ$;YQ f^ `V7ohSN*i7=T,t%k,-۴h_lw_M`,qe俽ZYdA?'Dۘs7> FF@!'@RL]; cbrBD Hru{6ynr`4F^0)uUB)9T/xH8$6ؔu"S&v\4W vB'fEMoɐH*JkN8č ߲kEmA?j#A_\QaHcl徭tJtf;RxwB./ CTr Zen |)Mp7?|xpsXpx:_8ťh#ཀr獾pdӗ%-B9^d4v!+dg@}#rewjN:?]g1^m'x.iD *Sj҃llŔ}}ks^D9 놽H$2=*H;fuQO.楏 y^2[a Vd-h*{ r7a(rHE !uq/s)0Ewڮs^ rǎw=ι[,nnaR67.xAIS]3Nu D} ,k؜?ˬDFRWL0rV8FJN?,|hY:\,63$@k ~Wb㫼+@(Aޭ\}&/:>gHpwrO3Lԙ}r4:(S{:{r:MԦA!$BdR͛ꄣnS<&bq&7bs?>J2We3cMQ)t`/{3q΍$iKn&qdzH՟rwχ1Op9yk^`[nZV,ֳiY3QPIDItOj#wjlm /,0wɄ7Fg4}#0Mv2 JqY~ ,.5H9W#ƌյ@~Rf =w%-F۫*lIeNWwˋ4a}ta'-7M0Kv$!EaG![ KhM戋x45֛\5\L905녷@6.+Xn:S !Rpa8Z HQCX; DM#lrIRv}GU_wWxҤ¥8 FLsԔ eY[kl6E=fP닳ʀȻWϰXMxO9N͛ \u|Fa66Z䋛`]{DJݑۣQ"|7q\9l:ןrO^z gW/ m G_*X1| Lx?FGюRbT9x,FB{A:ELaR&z*v~DXqg j_o< ڮ2pmUGLS1+yb]~'571~.w&2JDIZ_!u,1<۽ZznΔ1(LN==(|aG۷ ;E& S]\x{߄&7 h؆ǏrqDU8s֜ڝˋ9#ʖ(P&tq|u Ṗ{7KaH3/\)ix$+ p_ݪ~M-TNWreQȸz #>YZoj>68K(vJr'lNE%V+&{ڂ ^4@KI'y{fdui>-!BgoX1AS ILԬ}UpHuA*R" uj :q'iPO t&M7{&ega-W1igA}7ď6Y+I _sϏ!o&RhPyNp('ݾr=HuL-f@,z`ð@cۑz0Kd0|w~SBANI" f'rsV O4XjykV-.S:?MZƟjʩR@2\Z*< b=;< aU<ڐ)7vs;JCz>?)l)'$ -+^'gPqNalsw:iADI(^#㨶wZYʹinGbґ>?oҗaUi~Y^O|wDB8bF)q$kZTɔƭ}DlS|il ۿ~B׵V`qo[K$`.L̘ARfAFkG;68 9d܊osʳ9 ^skjU] >uDAx v݈.%6/ m̃itf2 F bؒy(!߯G!㣯[J/U-j-um+l0N~xi.4[%vY#Pt$1| ۨx#b9|VET _fak9| iC #CfA|4o"9ʀ:~-?Pxti'Ux/>SzDhɆd+\o='] &<sQ56:tU]hw9 trSL UOZcD81H10@GkA.Fhuׂ&0x:/F`>r֪֟|MAAծVp5uԶӸG/M ǵ-9ª;GXMb^F^Ҹ@@#B9@JBbiX:%- NkO! eޙ,jN-̽1y:Ǣr(t>W+>79 1qXI&y?F8!_vT/,l+p2x>w\vs(I:i^W[>CKmݕ uF\4;Ws)bQK3qF&)in_˗B߭JO*wV'&REETdTʈNh3~@)wQ~lRby!=0><V%R$JKN{gȾ|/OWd)(O,4u,j*0' a"ꠕ=[Qx.o78Jɗȇ7,{[0W3S y" ;wPWc:WvmxzC(15ª쭁~d'RW&Y9|wO B<؈!~hg~}&s)7qI ' אU"0:|;iBT[5=DKxhjYYVjEV.O7&#<Joe~If5XSy+4斓I%Seɹ FWA.>zkCWL9{m}igИ4hZZ1Vx,P pgb}{hh rbB ]{$9c/oW݄e 1Y0M=tmy)+bu7-nQY>O8ʄ%؛ мC=E%\?.= &_o:*/4(ϭT~U}< W99}V3Cl5Aw'g.b/O #,m>0H\NƆ`3#uٓNHB\JDe54^c 2cW\7y`ΒcE;n3ok[(̴;?+p=:E y^AKk`T~#V_W"X͊33n8L/P}Ah%*ecs[VdbQMtzUeC*#̳(l$OiuT ˊ90+ji7㨠C]طw/;UX:x 'pXH0C,!yZ("]߽ J]H6 {- 7J_iB%! AL`5-"e\9Z @%ew eqQE %SqVGy*5k71N橙L6Y%fnCs~4"Z c•Y+J!g;E$WPf-%<ፘDBYtEL HyMqaE\."68Heƫ 0P9 Ũ)9pNhКƆZ '9zREIG<~ -k.~IdYihT8̲U̥1 oߔO!f#׊3 &_,vx0t&czVbC<DX: xa`  Lθ.|W/e4/8{|bB<{q1nF/S\AIo dDOP{&`~T8s4,0`n/oɉ5*FSonPC άGl ѣR_ᴃOo@ŬrBE!`Z%1y_ӑtl yL"QЅj\V~]2CyD\3]k+5tG|rg[㗎0}Ё/g6'yNH1&f摆had1q0312Mj" Fν+?d`3]a1Ŋy*d7YY]mPkV#rv j 4>jLj&%]${K^(J͔G5j;adDv NVt=Bt`U<.UId ["TV+7![3cm˱5=ϊm.}A.#)~&D8?ugA})Zh>4>>QKfӫK,WJ {֪qP,'9A~i+¬bXgb` Go+QIpE.UEd틨UUJ;K1pclqo"jbMũeqwQ]%#?g!KRiV#CQɞ;,یU.E=n= G}n?Z>j3"4jyׅ7lܖ$|߅3 "]y,A=ӥ]ٿ]B{@)g6W_KRY'EBkAl#JpZ2˥=9\ Rul\Ю2 ́guљHdpkMz#8P9=FZ &j_hN  S.D?&&]C#6D,(hTyM6pm"ғJCuӓK#~[Uד=:Whl޶>K\21(ZlT1[, JD$ul .=ﲢ x}m.,// 8Z)3'N%sAJ VfrT1\=dZ:_s!0W8;H.ʲkxbH^"Ra{*3hnVv&H6.Q&}xzG;an}Go<;KQrau=;ytfN:K+qL 6ʩ0.7n F2iE5ZXk; b҆fՖM/*w2<*X: ; ^N?vIC*\?mzԚ#qX]v},X5@"82̫05(H1?͠lW Ș/܁O|t6L[,NW$ h_œYQ+q5C,ma#PFtu ;ȠbLromWADֻOFήDVyd @i=/Ox TP蕢;e[5>zOZ95̭b{ &sp+\g҃vK[{ogd_O%fŪ<NKvͯA棡tOTTGc5H&?r6>j&OC%kϰjjpZ՜s曥qoC7M c{kЙBb젦xi})ۊ*4DWI܆e981ɽBi|eǥ!Ec0 !2-Ms g5X@ NG;ѩ/ܒ gj|eP߷v`0 S(ulTL@Zt?rG=K43 6y9L?Zc/ObD:a\Jv?T:RA[zhxӠ%j/ >9M^h'zT̳ g~AȤGCii@z[Woɽܼ0?tGKQl&lJJ:< ٟWg䞛LZKEbU}0lU<'*NIoge2OlzUtݑ!~'xSM׷:ZYF#K>>tjvͻo:pGw Ė >gOJ؈ڤC4 $8St;]B.hN+4,UƫlӘkEp*kZ֙$@aHs+99?Qg/)n`Swn QyG@\"[ѝRɎ>h /BP)$"/U*$IXA(pv/D&j$(e,p5}n-rekOSt}qìg1 5iv2Js5]%jH8{EIlU[hM3v_tGfԪ;gVv @ӺwJCvSJ/}Q|D*r$qG;Wx VC'/2,go^H/֋*SE s# )cۦ.fӈcr}P=J1K JbGPzq g3b3?)\7\t&Rp,g}8q<LTW31zprn_ Mgv'ѵ]>Nw[ߧ,YgKr|۞ΞfZx)OtvOe0;p)s}N*v.kg `<+!7N?9nxvBt#QL:OXa EA~+CfJ|sBr-H6 \mp1YͭbC&y fhz~zI:yOV|kQvQ5(Exh3g+e> AöyŮIDS.wK>G]I>0"udI,{X_vC efb&neL+/er\Q}XV7]/j HP&prn"SIh)vĠZV1ZXl""Iz1WZ`hϿg 0>r1T@ބe>i]ԇlcz)d"rO vJyI1@\@jWB|PG]Kʨv$Cf`!Z"5AhL!htRī( Y #35w8XSS|U_V؎zԆݷG*fjRmÉlvķQ;|8ћZB@: h2ESHKFY*(&\'A0MR$g ш2=_g,91\hOCn Ne"^>H͝E毙5-(J^76>&%tp6m@RxHM`j~옿@d@DKgHa؀;~]^]iwƒCLVb@uy:sH E6#Zc_%]٩d8~I(`Z FNG!moa RY<1K0/Mpiv>˻Rc"|^5%"@#eޏ(MRE/%0v=,NO}gw&ód­[M/lj@gW&ŶG=@x$3AC%vmxP|XMzZIMor qO3WvꙁBo}o|0ödt |ח4k`bN([|(Yd׵ny[~]h2Rf{V%Ŷe\:'qdKm.e{tb^2]i0$6^ƀ~ {9|uFT2uI׌DV3rFG jY5'^p郭 *ɐ^6E@Yp7CtU@ :*—=b_4vęȶC(rejZUZF19 ЧO J}) xp~ ]l}cLn5S"mkk6NEQ٤||,zC{mgӯ L+ 8 )al( D ޳,8@^,fxS۳|ޜqHP8P< BoO ^6Sw| y6r]P?v6U2W-JzL- +I.mY=B|\_V2Bn3 HW52w!gUfǥ13 A [2AZiZn 6,[cEL'q!.9/<"}F/PQ_\?' npu7NCvf&0't;K^/Y1 jWDAQͱ'޺nour.ucnRt)-+sD$29n̲[ ؉\a?FعG4;󘮥F/%} [W̖b. C̟<b 0qy(fP.B@K^rZ*bn)Y)m nƲT!r_xCl}#P͊n0dK4@R즮zUEe m-G=LBJӜ)4e!&k)#kHj֍/mGX"*k6,j,l %i!4m|AriHN{if^L250+?Nxz]5}}*; )tTZ3Ȉ*,j2(1`7)fߦhNXKro[Y+PP$rdU)]0`R :ƿd# ֳ- ?~`lLRϊ6"~b;GbI@&zNAFC,A`VTbaq0\;6?y龨#l>R 뉤ɾLҡd}ZΛKum O#L[$EΥPK?X;`9' oc@ K19`2h]L5{4'7 #Uڟ9fR -}=?ۘ 4Ořrs˞S=|] LLP]n+..2͟8mU5o=c)}jjX+UCoBt[&ElxH>fIcYhj=o[}9.yjQ 5_MA%eZ6&:gg+|Cߋ?h-y^"7'KM0!];.pS/^Jg68ym 穒UN4n\,Z;.̖-t9xUdۆ9C._/CMćf EnʤlpvK%f':;uYSĢ9M,'_F{Z8F2IrWO'Ajs h02WMRqc{wr8\:vM;xAѝHpEG ߇z ` ߱2꩹1]9RҮeA.Qh:{y Xq<mCP|=fcqt2rK*[̗-DVo{.EΥ"3WfӃk9db΅AL;pʹ=UE~% 3mq0!pTv.3M4tI.B҆GyH}$(/^O<#T>[x2[y9Y;LLj©E6Y܃Dl}FJ6~ަ7LcnN3qԘKLHs$`-&- ~N?0]]\pwJQ»Db;#4`uޟMwaN/A3)I,%(Uٗ ڦQm ]P›0X;M"Z@z|Nʪ$Sy \/ͳ^oG<:7 vnx@-E$?}O}UUs^ N P -ӲYsKCв}{<xO-4"Trɭ L$bۄNvLwYd* L?ٺA<oUvՃڮ|߽+ªO{`1-P7\FtfH˒=c*0MR#jK%QF *XdmC2{3Sη2٢<4?ex% Uc~VY(㦞BN Aj'RA@ll+Dj1hf$,-Y(Y ,=3%^ߝ,?<[UeB#d臗6$h8r_<@\Ao"&/=3J"Uy/N:~;BWm'#^mCmSd(EQYQQ@tuVNW9;߽JDxkd^_ o~irnj!_{[^#FsOFᴆ^(r^KKFPoEBwBj|mOWR~3)=#Lj<0f#X4վ,W*UFWdͦƤ>(kd[gW^3#poUdGu/d7޿i]v$QؼkD(ZcӗExT遞f.ۮw-yHAcV=~WW?JxZ@sڕƄ6H&=ZcBk`+'>%ٿZ'r?rwoS-,l|T8qq>NZ|>fUpHII`wgjT=ْyXӡ6e350 &?ohФXU4ş\vN)Πxƭ݇wX>J|AG`C^7cNHt2kC. cÀ)p8Kl*Q⤷U(T͍6aJzR#9usS⵬jS>VKTZw,w~/^>lUs,Rޒ<)WY8 y3^3  fHd[:; Z/h*TMH攽E>:૴ZٟV u @ըl:QP%[zd{ة$S!MUP@q+(Y@X2觴Ed|d_zcyDmP<"e `([SAer5S!6:~GT%vem{7c1z2/_vJ7׫bQSO> fJ1< e* f&*]9jĸIu9`:OIҫք`_끛#;S hj?ҳ bSJLAU A erkrC$sc['7zqYC4)Cy wc)LZ}AARV2hmXO!LIo_邉FG_2Ii:B)2Y:HnNR>Z~m| o67m2}0I.~jkt-xRsw8#mTIHOׇدY]Najߚ.D[9 Dg[(OH[|;mG;(ߡ@\1QG -0Az: ?e he:/.6`kBӖ 3) 䠷G5U;k1: Z ?ÄK vpi/xWӯCaxSs*- 6HY⛉ 2p+!]Gn fo:`;Jv֏]u=]8yחb֩>h7݇u9E|K v,fq~3ǥ /hPYfr;0*t`JdMfy.F(Vz ) sƋK/l}w:e%1[x1mrՂdyP,cLd3Njhb+cNwX=gIDXenpcׯPcH[nkGQ88y'~'8`([R [B"Ͱ_Hpߖk$̰ȩ!"<v|gfuB(6z h&;7qb?O;$IZ04\'܌ R|5^Nim#.;--. xLQ {ѡ<^.{;cAkg=J:fTطB%θp9 Zm40'";|݃y Ϗ8︂Y{4Ps%@wَםr0LuY Zu8Q|1HdsT1T7 uR!Rzԅeӗ=IgLאx>~OfzRv S3ww N <` ~ 0y[ÔeHEÒ**.(]ygpXs߯zy?DT\0 N:]x#ϯ/GPr$ 4ۻ,J5 }^[$` rdK%酋/ڛW/?> ?rYF8nN>۱|'ێuU%1Ôlimc0Mi#XiB!Vo&N(^UdL=G1yJPuMg[.U",b~+GOKB]JK_>&m[oq(SB~_w is6NqA<z}b3 Ay0Rp`.ݗaJZȂG[x/? B[tA[!p b @Sq{y..d^Hi]e9ATkd-Y|7y5KesYcrk 悈uPmz5bp3z3Y!>_5TZ{&}W cGCsw[*}/k2޶?Y`4[e \ŷoD),S(tggvA!*56yLJxH:|ṟT ȉ a8\aZ#2uQ``NY]hYCGi_BBQ(x0Pwkļ>5=G_&zj\ q­CELiZ'WL$491TNԄ~9<\D;y7HKEK=S2}j4,$v+.,(* Rm՘/62s*IW0{IMV)YW!f\K`YGOԭ=0ct 8?! 8 !at2q{X;.x (/ qRS]jY) ܦ5jC#;Jx, 8 *Q̀S8=93ә0Jqy7 ʄ=cc`XaǑuT4ns6v=q'0:d!hE?teB7/"kE@`ic2@r\xdx1TAw(JFmHHo^.tԡ걪Uԝ $ V6,43J["L91#\Dk12o}|a U2w !53s6?OMny B7LϬ&ن1|Blār$O3ҖlAbn kړ!S"BtWu ,iK_< F9G%U5N+]m.t uLlXXKk$_ <SGw Rj:k+R13zBnTaGiƮQ*_= b5{lRJYx>mqp-C"GnQ^i~+&o8E+ ،&dv3|St2. m5[r:fS(kG7ǯv5 \5 ($'pօV4 xҦo+ybf+yCuկŰpo\^Q=({G,ku\"qz[<ڇڃB'|ZCJypU7[< LԜ{wLISDnĬ~_;L޶9iۛ%`[BV'?^1Lԡ[lKZ{b'0mz0ƏQW="e٣Fg{'w%5<_D{,l(^'}ܜjO(($w.j?&/|ϩK<y_ N{-%-(dQt-+\۷> Aw.B^|}(oF D75uk0&r},ZVkwGM'6dO[ ix&KLbaX0oχ]mNZO-ðvt;2 {B09z$ʁSy(DSb|C=eq q>QT7MAf8B^i(mh Y/˕pxm'#ix׮w,;bD5>~3zzt睈؄0;u*(]ơ}1ccJ/ս<ZŶ[Ae |V)OH fLc34&an ?v"ŽRG^E7iO+m^L@i`jyd^XGRƃ/$GQ4ܢv`񟀐Z_4L^%h+N MR H/t¼ Yn#Z Nֻ2T,74C];Æ̛q'[Iua+tuȐ-B?JT(.L_8KܳYhգiC;m )8E9g#tJ"2>U!=g8WԯoQܻA\4k~9콬0yذm+A7;\:S BW8*L+RUu_:vQxLE$dhw@CUj@JXZ濠Wz >ڹ-[GU%RNPʖ11F&6F$ iĺnYzŘ-ػ {Nv1D[' e9<>V,3!]2P^B*y2řmm` {:rw~KהCe;鰣UvcGb n3Pl B s0/{-|J!Rx/ݘ5G^$ׇ4?Mx45'^VIFkQFw>2]-W͂=,•;3Ea+扵(q1&dwb+Yw= L}#*kԠ߾~,]bcDre<ډ\~SԄՉ78A.&rE(CD5;ǣ\$6ɦ}O;JhX}:e$) %r4S.!mjk6| _}4 1-߾!7MS>w0Բ&)IN-Z }2VkOӅ+էvM--|`0 $ PUnf;B}@'J@+>[Rni6:\Y j&CM5xVg'xS[br[cl@j^ڵ}n<=+-{ǿpë' >qiێZK=?#VH*Lm>5(qLz`|)Nbp l-:gv}Fb1 =dNj/>5X )"fHn~jFYhx`2߼Uo D+*+6~vcnƜ\mq Ik(~$%-uf#QdWfDkRRyon3C%ti: qvay~ >1o~C(P5gy"Y o}T~O"QjB+@ DJ:з<ǿ]_ZvC Dl!WI%P*/ tN` BR+6HV(y@Q`>5B+7/G6m#um;in6:Qa݉ ̇71nzzN„:ƁI3PRIGWʁ)1`*^\nM)O?Pe!0^u$7δYvUB0YlHq2z@\FF]T{סOIl(p_D,EF)_O|{F?I8:UW1୊mMB*lz㆗\l5Ȑ%9vq>{~A27gӽPDƱ4&/lATM BS:;b$4I=|զm4]h!B]xg2KhD`"|B΀!/xhbm-ފ]pf:\f Na8t P0;n0%y|e.@n&j&>Gf*' @xکQsV>dfrB1ƽ1\t\3ú6f/>Y|4sa1Ev*ZiPv`yaϥ$8b^-,?zY*ȻQVHSs_1UDdF)@}] $aԃTGpeN,)&+ h5E*8) q6OEwftSޥRq *Glօ~ڇU4C fT7オLm6;L|Xw1^Ȫg2ym-wTl>Tp~:Gjh's@[ff`珊0Ҫ _YSۉqR(n*a.+["@oE7O:bMyZL!{CwJz %ز-])x@erw,YiA"EyeMj~b9C9-U ^m7h3}7'{wfԹœxM$̍R\)$h_zwN?55tZ h pҵkT3pUx#%L?3klƉ(l\Aa /2cH +u @`iS* }|W6[Y?5\0Si(; 7 :l"X̓,1ItML)|ߡ2.+׬Q.28 Zoȁ S„@=kڠGT},M靡N&o QGz~ЗƄԩTp)Z/|LC!욖b26;.~ VدLBAlWLMR1/|!nYTf˘qfH1m.bh*2PQy_l$Jrژ2QJm3zy=Naځ,"ȩ˟Gew7yjpa؋ 7TQr(8}f{o0g$?tr&hr"?z Md J^tOM}Za{̚#q!el2He;6o?Sn: !'h?:QNkqÁCrw&֓;=bTm:$ԡfy:+˚A>؄]vpi)5"y UC_ 8\vkԥjU9ڗ5@*b5Qf)nz>)Q{)VVFZ0VvT :<5`& oauR|=_#6ʝ*z.-H8eS^{y+ԾM9TǎJ猯szc^aZYZʉVp$)H(V#4z`r۴h:sjZ$o9fެx&BSC:q`:ב-SgOgMSii45:/ϻAi7)R#ÎUU`W#i89hQ^LHYagˑHgpQDC6J顕g8K> 5  ܌aE-tx3{Xx"[پ7gO̺tƩC3M&!;`P6uwj^:F5/)h׽v3CA~WHfrwO=蹿R~RsnVԗ툄d8(mQ:394߱Ԋf՚Y`s1ِh)Tj8ݻneׁFx2$iA/ ! (?m>pKoaRDم@UV4p8U_MhTV%m2v6/hnuӆ}el)$1E|J\L~iC\ Ӯv5 ^4H%vcQoSSalnۃ='F Z07G&/cPJZp-qx\Iu< [CFQ *UxBR2H>T퍾%IImQ#oa_-^-%f1QH+"[a[CO P1ݥaYHG\хrHqek?L3&&%:?JEVn@4,7$/_K%!.\jsl|p2GX)3(Y4٦ɬPң:ׄ3{ʒR\pOjZ_nyN}ڨXMW ?.'~Q'l8jQ^XC6(`z[}],,jR {)E \3V v' ]ײp4F1R7^rJKĆ/_E`c qпf0 sk"+QGo XX6CBw^(5ʗyUCfI_wt38|CJR/*~pd$n^0mjiˤX{pϭZq HԆ9 ZDs2Em )Ls\b!S,5V?m[uzjYn*v*Vru2 71ZE/CthiblO OoNJz@^KƱY(ϝcER5\X3Qn .6W{#gIv%DΟu!7-CKt23=*ܽٶ.G6d UvIW9pFG̮TǣtݽUMjTw]Dl_b:PdFeQit'Ԙ^)oa^"|Y% Tf%$V"6~-. kKa"M&'t#o䮮#4gE-ňVu}ߖ:19R"n5ΖyF|#_vYL8BYtprH); E5]S%uPcNb/Y_ïV(u騞#$7!;wL\+#G-׺ 27_fi|Ѫ9*4۬!fhҲYnQu\_Ƞ@PoŃ;=Pꖥf~|\J\8ӻ/uf}Nc ΢o N@wWq]D<X3Mzu6Md6L2/¾lO?2HƴeY@kw_矀%yG |?BID5C-*89N}Ix=f 9qVL;>5 é|4SDjހAJxh-2vh8a|=NieNU7v/)!T%IJC")Rv|G_zrw*`.g/.OA{N#&i3 ZC] j?t;nauUpc\0o5t&a=e Ȥ4Y 'gPm5D Pa)TI֦ Yx0g skU;\Ss6p6DB12?%KG~lW@~j&Q|NyR䲩Ĝ{} ,=G߱uu w cGC'AJFdP\f5:̸Fzh0kL{O8IEs>sL8xu}7ɺ0v\#sj^fGfL;mZ'LʧZPR˸leͮVg$x04 &x޷ *)N:) Wp8)[ߧ;IM|hT|^US]y  -s_nF⢞yzbXj+_"~&OyOq@dq: ?3+j\87)zYFi:67Z}Mr['em00,r[듌*Vk3);)Hf"8ĠBFtߌ<bҟ@A'gհ08ZRQv=.MsjQSxNERNv9BWGcTŜR;+!-Y:HeˌĊd|[tt@"qL<!K7՜6nDctDU*-f}fةrio ᫁҅"GcU:z5d)뙄UڀSXVܬQ!o~ ,'K۴g`}wZFvB5TYmpgƑ?d DC7Y#(;Lpp^ê8:5PEk'A+]1k9b/ N[Wƛr&LuJ1g۩yAD)6ƺ1}67E[iIG~.Q}8[}{*Ms\+a4gHJɡ%tKZIfSpߏԥnG\[B> P5qC(:v4S&>~z sS֝s >$dhXG̻:¡^G~W݃ ߦ6v-aՖ`6a&]mZ;qqp\1^,לDhf k: 'f>~Ey& _ѤFݔ:ԡ )cGk*QwZqFGn咆$(Ϯ(Q:W@Lzϑ E}ʈuz O⒥*dy"p.^xaNL.S!|f #N~8qn齯e-.X%\"oѣ߂(ƭ`7[Qc6\Ko4Ԉq-$x35y7), ȲAxk2ӎ!)%f^q88V~AȢz,?BgUx "Cw8'!gzUf&E 5^1/fklJ'ː\cVIj~?QּvPG}2A:R.>Z`B4n Ca%>CJQG-Obja݉wZ6itj+%&Coac=ɄdnR,ݔaaf6fTDjdeK3KE]F}ydݞrDnw휁<,Xe-?kP;"=c`w|id-woZ6[wvCҖYu ;Nnr4z$#zHKs_ۋb'ڕYE3g('6)Xu)Zl~6鿝 l&GzUjfj< c_-$_[_Bz[5D?F'^0虓VntRh]H>ҀNg)ܯ:eȋ>}elYpVnh*|w x\~$Wx^hNl%[tZ:X z?? 7NRܹߌ χN \cґUeA=W_7q RNj9KN VyF#j׫P7Ff4wLucp>15$ҰWrN!ؿ^ldfe CDP˕w35H\gCTrSRg(J`iZ.rUG,=BoA0 .ij-{jGϩ; [(!?*U Xqu7ƙ5t퓅_6YbE1B\F\cMZ~ /7Zʇ;ׁ"6+ާXN<WRnzcp8Y_/?3(z eC>s1MTwOъD_x }^qA=o-~! >]Vk Z۞_f>&P*_L=I*S9C^03x\UξO*\|~\)4} 7#Y癏G0݆}mѫ=W(iƢk̞`G&3lݤ3㧲 JǼ#*&=7AE(,˚ _c㭭M ʽe-fD 1KѿI}.*j ܧoy_ T$#Wp}Z*(p}RI c\գ?3`lf ;tRh !IPBˆ+*DQXaBê:MgG٣u4';870j UJZ;.ə6a@M`RQׅ.?H8GďΠY\}dsK[9?#筳|2Tk l-Z !_l 俢bRőc;bgjryt{[2G U"6 ]V5' ++KQ//GA=Q*wĺ'$['!jĀ^ktRgI!,N{F--p1c~.%ll=s!BRZ}Ox&REj\*̴~ Vٔ֝(P:xͣR@ҍF~2"A =_bS|l E;`ߵ1&a q4s^.-ĹvzmMS߻d9N9~"i+ח)ٟ/d_B P+E\qRHQYԔ^U"PdCTgLŒv͉> P~3`PNO ~b?:2gn. _+^h&G J4Ӝl+zp`]rT{)EK;{|TOwIRj=eֽpZ2:≯;fPQHxXz=fOyi_xKy+ =ҽ(|ua6nEGp1Ys}۵CS͈]Uz8 U±Z xT{|&0L?|w|wWm6Hݏ; *o-ʞcLyc2Q/{of;vt{F-E K $%@E*_se>ϑ] d*Y)2^?L >6I]%#rŚh3qds܂ 2 g]5ľ:ZC{5i|I# J`@4u:O2Hv!k`Xb믩8-dIQgFb'ەlKq\zs\rk?biERT{ӭMjγ/N(_QYRt?G&''jNTh *h/K/\:7;xqVd榌d[5!HD΃yʉ]lt钅WC%`ߕ9Z.>+ZQ1+S1 3zR&/OVKqRC1[קzK_ %Xc0)sP . ڄi#Zl-oO. f-74_=@u!t.P0ۈ FSSH?+3u܌ * ڥikp/1Oo~YP6jL@xr#=bD TKjr?a!p0ihi,nϚjSoNYz yv9jB DR[#+q8Zo7@Q~yA|@> MR]Š\CZj'̻cUv &t͎zw zA!3A[=JgNeU$IЁ [eV@1ңi[B1ynxQzB㚖]N3!]rjtD]a΢ T.3&C#k녿(^_m+J.ެ5L~2ّ{%VTFTocqM9by M#.%;8 w'KCm6αDYKw5½U*H~D&F3ELD86{r,ڗW<ݞPf' y{h0cC fr:}U3:7}bJOcmL"c,QtA`h`.eI`*nYC4 v7πN_eKGM,&FIzi JH-S5NdY4WGr ?~", Ւ/JP|vj A@i\g|M`\Tpl~(Y3%l?q~f|p&6,6 Jk%W{ǑVZ5/vE']j8aK(J1,R:B}eN)I"~WG'c YgܖLgy S{mf!v\()J-l Hkuz|Пƙ&,[5 qO~YyLiMq8+A17fyyKϒe S]tSp;0bQϻatU \0⢑%<"r*8|9Hx^EY)ۖd[~dW?@g}bK̾SXMFXziI'bMIOI ) ТaG#& HϤmX;mg* )J=F=)֢S0$A@S҉R[H91PO v= g)lUCS4>r6 HcC)pRh™I:?T#EK^+ G \ 8䤜[ہg=BZ=~~Mɽ6&d0RLT3oA!IгP3x¯a Eԏ bgS& f/hf̆ VOdȺ(SU!Uûc݊T /=l|0:Yuf|4EnwIPy%aC?#˦Y+7xEdze퉑-Y{o2ڛm6-Z?l}puLơS0!s"v3> }w)$f[{mZ)W 谴d FH& g/.&Y?gg! CR,F{{q w c8a|NWDyzcibʭ3y]_QFUPNfO+o'3h0 0Rrda?6ĩ ƛ>Ln#E6X[/е jRAax O@P8 9T\" u–dApPwRfWE*/D`"?ٱ vYمR㺥M@:$s(pb&~ WtQJW^SÈl‘~ɣVbu0n/H`&)np5NMKi8?M1EyP D=jF/ tMLlZZuՠà|kw'"N|D·lۈI)½[ f%-p9[4xV9Pk}gv?UXcy2z0yēldu! |mzodk+54^f1gdi~X1l:ĪU3y;S mmU"h/3}\n+_ )@Xv RvS5Ǽ9mO'%9')Q8ZBo:덓T](W*d֒OH<:$xʮt>`píWZ{GPDZ'>u TEc]sz VK7-qc!WWo<K! &݁3H:9'YҘI>UҮOՋBhSE4L,)c ȓfG*B2>"=Si }#qv`o5r;1E2&Rji׵W)XF.\- ThNԀ}3XY="]VlW,lg?oR,X|YC55o%afxDL粢cIIy6ѪxaW|’h>Mpz%i`hs*k&:5(a{T|U*G2:NrshFS$BʦO;]ϟ(~q@dQ AfjMBerKOp4@>_cI̴LGոab"H2 @?k aЫ^~Ⱦ+ `_f=MdS'xz!Ǜ{\c8*w| ~ZuT}MzsJFsݍ6j ?[\z*8* N=v^T2ymzLER7q*5 "GMKu!ͅ6($_mm+x. P'oia`1T17_nqBRvl-Δ{27ƂwG6n_VN al7lI=% 6տn@Gw_g)P*-">X} 7=SAgfY2LV[r~ xKP{=6:pK ql=,f/c=5w˝O(-M:9ff- IcWp2OMd0l]t.P#n~q8{xΧfÃ_GG71uF6jɍX={TK<$~YrN,Ef<`^&G8;u 9TaD-aZMD.ȜzxU"-)շ6@zQ3&nlN w('^fYͤ3V<>7; oy%27(S$I#D&Kcm)E5\vgQB2Da8C1"LAhpXIo *J̊ ޞA,Tu&deĆT[ďpK P":%ǹ_C|@@*z#H)\FGAxe&澎$5bSȖ/(/ռH xFh.BRO9mSR?QL|nvw6amcm%~va_w8 Sz'ś+oa<8dX\DiӲ*9BW7\^c H` C(0hF!M0hSRVk;J *H;jNN,A95b"n>\vTA")Μnz=fLNݍ%oo, YT\(eE {4 f l:K`gwmwL3XiOkV(k. L\%2uj@$fn=(sR|in^þYW*"@u7r!U?9w%^r2 {3QkeOdyҗ2+уW[om(>ّ{lc5?*Dx=S;'ruqo.|gz@ƴjmUG\yqm#( zwv#0[.P?_GCc+qx] $pku0Y:$4c][ ư'bZb@C ;f`@c.BZ$ ";"q y޹􆣟o*5+Iᙌbǀ<ݒϝ+INA0Fv˾Fۄe$鉯5/LAy9i[K݈A~sH¤FnL G"-=K:Rdض|dohh|H_P}?أ!f!>n?鰹)PV:횻 )e\ >E8-?5)I!-\-q}kDry@@Jr1H F|3^w1hs2X׶~*6,(;9"lh56s2l] 򈻘b /:m+PLIpO9%Et>@8op/v33aKڀ6~2=TLP'z$gVHU ]]mqMSmMbaҐl܎iPxuפ,M`;~ o㉴osuUn vYV]F`PM& aKq5}e;y@vcU jwXG+,w"/e<aRw+K$0{ ]d[>>͝jUW9phF!mWdPGqI0)[4yiդg2岯-.yf]Da_2< )|0pWё⬹s~ Zjif(wda$L]VeBƝ6DDE'~g$"=ăg_PX 7)(5`_?¸ub*cw`OfPƸc& 9]S/ ' je)QE՛ q#e0*T=6dQWexІs;Lq\ihr5BI;CYߍ6@~P:nqY[D5q7CwlvhE4C\r eNAѷM4B$li2-܇wL)GzSyrDlaMX~$&pw=2jPeخ (2 Jk09DҞ}T3\gJR -5PYPVMnUMu]ƄDGmG9q?W9Κ}j('Iq{l=I3|vl=u;i)M]%kW3P;Qc[Ox{[c #Zzxu *.V|pK H斓^jh9q s{*! RyFYIވq3)X#lYj2l<7C_^p v޳ icMO,P|2{1fA%&| .Q#"Tib9Pe,uWP]i*(Aj5B^0\֣>ln[G)N*^/rPTڒYcC8Ic!n 1*>aZXSK\C EGM8*:v'\=M_gluCD3mT(UFXdA STC6\$źbѼ fL  Gg҅8Ph7CDW|.zX6zb$vyME36ě8ӣV X4:tzlخ%76̗HRcgL>g9~+=DhJ;q.yZ:evpm *ZK:n~gEQv4'#'-8E/$*=dP%꼈&hnI}"T6[(?3:pIk#S2\Ҵ,."JϠȍ'w!nWx tawa9 Q٨\N :8bve94w uT+=0~7,wA:pvNݸg÷Gk0 B$1S)9^A`\g2'*駛B2Vٱwit,ΩT[D3VA1tih<{8'ݯ`۱zn8N&~9_~~]mY,)礼-r׻;hR[5 K0o|᭓i!.5ϳ EPᮭ%' P\Nu4*-]֛x]K󗪱nuz#{ \?+"kSx#3$QOD/f?$hB&ewd}3Ϩ}.vڢ*AvaPnAQl?,ÅQ̾?j?iDb\L"favLr语XvkmuZ,߄Z_;4j $w/sǚqk)7G59rh[3'4b PbLQvRCIO 1 jb0"1r-&mN9y.ټiTcBwQ jӷda8[5?`VZk$&߽4> y9)d/{Lmq0VܛK!PIVj߻\zӬub mޚ"Ny^/F'͍:pτǥSq(n*=_ q4NR6vl9f|ZP)[@>=/U 8E;#De2 iۊR=rȥ9jN+׎ -i!ɝo4פjT1G'7>7j1=_l>hD/o\MN;/k2g)گ6Pw#,Ll,m`58q7S0mXFЄ N18&YN)$|HmD;ﳭ0ފ[| Ѓw*')unk9S֜i^ry_}_Ȩa h8Kױd;88y=g[ZW9kQg#4; X]grFP+wfl8iXŭGu*텔82Pы7A5%\Y.݋aJq /u5EKX<7<[[ؓ WUUJ"e(2eZϹ^߸ž]ҳItUxYa&,P'OhwH~p WV]l`$J ?;zOBܰt7~ IkǶQ2) CG1i7ONك=p-޿btmt ~勘ՙ=',1wv' )#%ϏU[\r +ۚϒt0,s>’{1TShmEQuz&e-@F Oh&FNF:kN7=m%Shϱn*q晫Y"}oNnLcY # s6ZvB*'_ȃ/N P(˝\ްf  D){QҨj 8^EitD6x+G^c2xZ\'>=hK|UN^seu`dje9u/ W|py(Rxڳ_S; ui UG^ +.dOF(z-֭ؼ 0|'D^Kq_r>$lPGȲg3s\f@'(tY~cO;t0@a*yNt7Pآ: 8wK ~t .PC:|A4+_+u7X>L>)~m$rԌ39(ev}fy9Pw8 AQ*YQ:#dWԲqֶ(zMr7!A(3w(?8k< ƹmi.w#1G H /? $A^vY|m1Cy?3g8oUbٖanN?yIS#蘿u߆)%WF-+mӚtD{}DJb҇aDm^l iB%]D uY {GYG tv]MA8 Av,:W$Iѳ^s۱0נ:Sn&rXMϷGmZœ-)g*;p+5J>ìGzf+J@=+*Y:d+~<&cF ц K؍ZH2P,Ƭ.)Iig0Q[`#᩺HѯIՕ7 _9O N>F%VseJa pvI6ޒC$}mqu$imK)a9 2Mi]UTK pJ?"8?1O'zT> OcH2ń tmrVDpEo<Ƞܬu(q; 8A5OnD)=38c~# 7d ]Lo,cKUVW쩺l~f Оw]&նYSܸ @t8ҝ𘁒"p0瞈+HNcscw` ت`G5(E6#Ku~yА}45Tj{%Q8~roe'}t8}.i٦B- *837FD#y!yJ4N-ke]'~><ٮ: MF*m5(-1fz }C%Gs]ͼFG7weu D3&35(&grѽ">_9O_2/^sT6!Ŕ8Dȟ [L4Uml?S9|5"zIba}MrHGEMϨ#6] lu; =IK^_ T]72x@}/QgZ`OW5"S̒ Ww_WkRڱ=QMQPw(bANe2|8 E< ac',+?edL ޡq~GTSIrVT~|80Rǂ4v-6O >.VՂmul#@#| [7ll7&TIRYpˆb,lIwxe8ae%&yi,@EWl|k. 1uتCgA(0Őh;)3?"UR,<:T]^JvP2O6sθIx ՜tAyJ8tU_M7ɷ_{WK_BQh  L^ vE֮b1!.@N]"5]N0ͅj jvfq矕]un_qs0Yڱ)b= ұ ܪU?T#ň]'ϸq}g`ҀPd'$ 12wXŐޣݙQ4 Yoi~":8j܏rls{;^9+ae4y y=  jBfm؆g#olB9~7Kmpf,;e4!#!Aֿ!bޱ[s z|@ΏO.=/<:+x'~7ߦ'}$T1BՑ/\buy4E2CPϜysi_3O/$іǼ.%m*@~ӀinQ)C1}2 (P0#jGUfx>ɇeUBP1fcMetv$BH}9#썭tC 6w]B.+*8Tc%A[YUݎogs#{׊19MdJ ٤TYf!J- (Ш.'i$m2^wx|KL;<9[86sj__iߝ8A49xaO%EX.p)ǒp^tȭ"K{D|&N$'#W|W ̃ZI! RVU~]J PXd%QHA!gmes{dtm5pJɟ2`;sM婱N^,x4gݵɡ nC'<,1O2^[I%XOXfJT'JFd$+V"Ռzj|˰lTJ}<$O(F'''qSs#k-5C]Tm#7]2 ػYPVG9QGv89?!*dOqRsiײ5E7x-%If œ˖W-jɩ]XCF L7GƇ odXz2H|۰UjLb'i]l7_K)\#rc&or"Л V,xYɛ_#\ &HM-h ZM9%*f`lݴo8-:FMֈ!)65T4UN&< ~zxgppqp 2 PMfS͇hqAq_tZhiA7Z[y"6gN\sm)4DٺM`E`pK,W ݍ?_/{a\dPZ1uXʤ,3&9Zi^?8G;%$F˂綍EebV>=S0ːJc@2. N`E˨-Lu 9=u!ξLn\)82}h@IpΕʹd }-*Ťڝvcl9v:) fu!8D u[JrÑE4B#x'/p_ N=2` X70f KIxmP$XPKM`W)f0 sB-ʷLgDZdxlw6q-)Et`Eyz?{'vyTq{7Q'}c֫o|"%EK_:bA|ϤFᱧhp1@#iK(GTՐݨetu?0Q: +}#q]  m:z^"KD0X\+^a:ӝOp%v"F^&P_*'I`xA|\O4M7GjYո-Os_s@⃧?Nvw_ZT&w|@k7SJZW)Hg:w{! Ҩ^vK3tu1D؝Ӻ+L sTx$R7ZىNL)u=&=+v5ԨzT_3;A љ |+~P{CBqis]5U^O#K7T锍&/@3班.a٠vP0EՊX?wx~A&2d ų r#-C$,؉OI:qo5(j+=ʖ7̓C_؛_ Պ[yƧM nyb'[8Xr1Hfu9s >`4 h"z˩ cЄH$P=ɊXu˕񋯡Qtvb{vD^kWT q5jꑢZVѫ$бb~lUS=4ѷU-\+VbsBC0Tqh>|Hy{T1 b ci/ bM5~Dy]<b5.gA|d*1tS#gtqp􋟖N ʈR"Ķ3j}J )( W${e8VƮvK^4i e0̺ɻ]b:8xNY;fkyA #bX7Vآ02J7 +rҏPe̦D7X*YxvgKet6*p jm~Jb[?\DZ=H2+zuM%PԠuea;gm5/3nBo>H1KҙDN&Y(G!InP5b"!In kYd|V»p<"g| ,;. PܔEʽL-в*2n"Lk6-0Ӱ@Y6K\1SG0BnboDg,ȳAҬ /yjcEbf38I`ί=O݅ BT,[t\|Dv `3;%ǒ o$O*ۑ')5y)O>뚃{n5>ϦRUyphNTHsMMÚ#S8[6"WgfMwSz8je,{ZZ{F)~<% (*ueVhŶ%,)0O򱔤\euܖ?3R@:E=VQ<{Utg֍e앲gyY # R܀] `v-.> °.E}<$ h(!:*:cuc-KxUؠzY ؂6@s;_ǪD?Lq~yv)HGZ~:4Mh8 2b V`;Sp):/{AرmAà,04R0OPʬw*Vڰ3p6*RD=+KUGd>bؘiqA_ L!跣D 4:TQH]]7 !+ apRmKXJޓb08:~ pUzWU Ew ;Z~wc`7_=S'o SKM~P&HlP Sg7]yRQ >]6=qp==bcii#ЖHu7+4Z iby.6ϋөM:s)WM£% KmZlY6=s藢5j%Jr(XҔwY/զ5J&sd/hA2qr##`jnzȣ$ Z2! aQ`f\t|9Xl W\>\N T@uO\8w!-|5/iD;V;$X@)LCk|ݯk 8D#`@ynm$ə(%f=vSi  >3H\JC:$p.&nO'dʙ"E<TQ>R8gaM j=0yKf rpj=;g-yfO-A2I,qw$vTLb 9Ԡ++e.ṵ$ab/&Y@:%lXZ+m5Rl{~Ff0҆/Kr׊-m[FӲմ=5S䏠,TtlHwNDDi ^ ?RbR:*.`'L+}pA q18D$rҾ.,=OjGosYI3?rR` UAB8óD<.py10϶?9r(oYᜤ 1^Mw!xR>) _;'u%OVE<{'uZ!?7-Y͘7""9c2V"aQ!L 4ŽFYFz8wpOEU2)ZH0h4҆i`-gRqFs:xũ]fddžkEZzL?c\@@볼μ&OU.D{wkFOp#>7cgZhe_vl00.`iG̴Td-l?'}]άIz J= پ{6Xa:7-қ R2γL!_ P|*=:*Dgi &g}OH%͵E%7gc(-7vĊ;U^_Y% z΄7R"^uPFTt #Aoh z} kh]Q1>_xBam|6{yv᠐])XU Gu1WQ |(jP:)( VWBB^,f؝eT'*oSNʣOf7[oE8Z vo"s6^qeo -xERڡMZ~>o_$Uf{$GQ9L⩷| X _ 7` Ί\aMW t\*M8ϡf1Ut-ҤhM+<<$Àk1l~Ԅ^;{ $ \9'|x$ '+Žc2gQ"n9" q!s۴E7Jm客01jh:r;͘op *!dh7?'_T34AD5HƟr2gp3hѹRWmN`)%Q!4lJS@b=vƷE3魪u_tN(smc @X*SlurfT(YݓIƻ} jEX 80LZL*`NsZ:ɦ8Tg;D0$ 8O og㈇,GaGT,Sa` ݪeü4ٺ8*\4`LgU"3ϲF# :R bB!RT Ǡnh}P Ji+-b<<rQ $z;SǶqJj["=cxi:IB)M.7[V6BYt j)6[o2Ϗ̜(if š 픴qƀ!tI榄D6o'#Ƃw(}H}4s>h؃;8Oc@vC_:٧6/PjAjPb*_;;g3] ?,|YkMt_&z?.gڻj#2VB3)oDC?4 $229H ~ Tm4j+>V9oGI[rרQ+ :vn3>Sc ӈPv;X礴 TҫmL+oq>dv2JLJ JUAa]bA8z&*ݦbQPh.Q{,q Ad-LyPj.L NbRW7J0=2P4H48 O܎L -Џ/4b[ Ʈctj&w="GóנjY y4h @r-IƤLW{.lڙcXГZM鞑YXMʈύ2c(FпWBAћnh# x_2<$xP> ]X1SxJOg Gl@epeqMi[fi} n<[NQcY|i iEYrZ&Hl>ppNrTVe">D˿pҍV,#mPkщyhkZ sÈϞUB=7'JO3 >avZ װMa\χFz,M!gl_B>/(53wGP6Y ' V[t<_̀02EaKdW4/;hvxbrYX dt]ruфzǙB(RzV1}4|wvҏj\x9] e­os! Ek|j/̺QK[&f-ѩ4,Mk%5d0"Gw&4]55XDgx]݊@I[X0\q-: }=ڞ?\!?x^"l` $femzwT쑃ySTu>GOQ(XiL0{_rvؑ|6&^/O'Ud$Tt_wY%<] PE83B&ISTJ &VExz#ӑSmR]k5'=&RX<.>eJ1y?_ g=dRX*qVf,ԴaYE{`Dx n _3Zٟ23/2 v6d6cWmJe#|>oNZBKӰD]N<\-ul$#%qyw_5.QIfdbC ,H]617:a*k2a/ SV.Ŋ-kݬw9"*cV.?yl+bWϑe2)d :tBJZ!oQ0-yKTLq<ܰc &Z묐I.@ࣦL>׎y>^82 2f%m=O*Xs5v#0*^ULwYj4M&Տ`^be 6Xa oQy5K'v:}( :A!PN f5qqVz4UvMKS({Fiy;/ztDgה̷cE#W=YV 毤Z2\'LX-݉2: lY[mR=lnj|ۊsXJE~^CwIH콷Ϋ_:1,nV4C)sm[X-AqOl~3F@˺EQ"8o)'lαTe'tN.EoHڔ`sWPc{Ԍ7ؖm7 h)Q%sWs"#S2gZE߱GLqO% {Grk= { ;?q[y˟$'ڙc;qf-baCXYI0,ƊAW2F39 pg@a*;mHۊA&@nPIB$,&tGؼ*[zMOײ~;©7LJ Uߢq㵭F4@ ɔ(d{mĪ$w- Az57]r}aW U^>:U-)!G1=`0Q}nnvF+6Yp;M_Qs@vvX#"a yB}>yXA-<]j #)L&B]Xqs1cid+v@Mz#4rw _#y-Bn׮T CĪaCI`I凾 ,nJڽΨ J%0ugZͲUgb"%ͳ8R)UCC0x߁dz6vRۄ~c戳/BjJ?FҜr.'ʘ0KX1@{]JOs֬Zp'rU D8|rぷ/|NulPςCV;dϵnS HG .L\E Yjgscu58"t#/4"Nbm|+d4f5qaE>kX \-LL> 2%Cƴ+W.\)@a)}skge\/~F`_#PotǙD1C2@F:"%{_V9:_Ǭ>ZT&/G!O*lIzsìFuIw}=q.R' 5gY4Q*xV"9b8O% u`\#z5eDmex7>%ܿfto#]=Kf!4! Nn]VM*0=x)-c1X=Q4K:֘GK-m`sq[} 5b<%f,ZuWz߼"x~ ǯZZt6V BD;Rśxj.P^)j]0\mˇr=E:c?dG=}q^Si>߄D䀿 Xߞ,+nu%|[h4 Z&\0̂G"c柿J"|z.) CmzXK] hԊoW-O% qN8p uC A'mpuwHh+%)l >qK;kXP7X6 ]%lT*/-g]J eȲی\3ؑ0f TP{үuAx*nvT`wG#媣ô2Y+tnkL6RoE R T;+z0H1; :5IP XU2H5QȡE\৖j#p4m|XB{חHp,]-ޮr9 |_0S~Gՠx.%J࿙=Ҳv!_+}վTK7ӅP.\yY R{/ޡōZj Akon[9fZN몤WtN FyƯ(CH6/r\G], 3?סYA3Y$a՞x1s?P(+#Uo!%flxt _>,BjL7`ipp*w?m5r)ܵɷۏ}pGZO8+ky >xNo]֊佤Y ֞٦dЇܳ{fun/|TPԑAtqHs'b8 NGr`?>Lj;sCzI'jGtDa>1g^6nxK#PB*Mtc̥ԸƤ7ZNg`@ rW4آ NplZU?IF?ed<*ΡM2y n̊#jJdVO(VR+{ޣg}=t [" dߵ„d;KD,Eɬ5grcƻp`| NOz y.@u3:v;lͼ c;})D6ʣEQ+Ih) K@8 AhuO^}O7rC)>Ur m,,Gx3CO3џ wVNOlhHY }ѧpZ.H_vߣbZ&f=u7")]{/qEӴ *S2MwKVŁ;>ૄin$:m8 縇 b +TC181 Kh/%șae W!IQ KL\o!Bx/.DMزC(!iZ[-#Xj#4JcQ>;NX^띣Sɂj=lQGL$, {7Gmx>_6ċըVYEЖ9_W*_i}~_)*E!>\Iӆ N59YLq2pU>[xܹ'!;4Ԃ<~5V+]}o$]v%fN|݊3U((tiItVoF !tAYTNKV@O4BmhE 1ޞ"nf caG,B~u{4zn8V&m;mEKZufcέsyGp~ r]MgG\8ɲx*1S-g8-V. ׌2,繲f$4ZW?pFr=`xlm7K|uAaPdb^Y?LJrpu}0d.cN CX ;3 kB(ɫԊ p \^ Ɯ.1S=&C N}$1?>7a2k\ksrY$8 /s{z`_0@;.p0Q_fra~C21#@cU\)@,YtgS ^jmw~Ӕ3I(R}SVW<1OK{T'٤ҙ+H=eȌeAމ-/zPftt]{)O|ZD»f97+!7f A=bdN05g[y+SW[zS只"_*Ҁ5v&%U%/NnL'PvOSuL5йeSq7G] ߶2Q/Җ`:#%Et0W2@:|5OvJsDgߙT|B=5wΞkxp4bUj8N Dr.i}8E #Z2/sRw%&Nw1->p 3 {LVBxPpm6uv ~˺?\ OQwMO 'qQB An( jY-=bznMQ;?$|g,V$2dըՔ $tOFǬ bՑg2#a [$M޳~fѽmvG0@HpGe؈qxVsdjzn~G©eGHҌ*`j+AІڽ!P;tn0niIRˡ$r+@L oRᅶV0;oS6!˦:&@;J ]NbNFH݊((p&қw? }+U^ ZVv+NZ=VwNisPϪ=){q$!{dM^ރ1 սB| x&W+mU} .B@)V2K>+ĚI9L,:Ԓv,%T2YvŒb8{MiPTR1867KiEMѦƁg@ KjJ3@9Nt/vmVF;1נ`H|硖(@Ի^(~]7v.ǝ”oWV-Hp[0#pu4" yl-z*1F{Jo :n27O'SRk5\dE7Aj%li%/?(%?hB635_rۥGS ʄ rW)0r럌Pz-"9aP{k޺H":J 9U뎬J ^i >(|wHt[- $$ʏBɦ u>v##gk7,nc歃ȯ=ct{8D΍ z `I^XgV|nщ{Y>o I+ֱ\ #yL .msPGGɔ,  8i뫭If01.q<31Բקcy:meAK]ݵ.b+Hs;+Up) rdyHv/{g`c`ҋ?R7 41g; Pc+oթAʌo8#Cg(-2&fK.'C8w~qAn85<@vZ~@g}h}% )xM%+E$['VkzzXlEބ2Bd;@ѯǕl4Bz ]%mThӓ?)2Z/3L \fǮܼ7VcdWYWqQĘ0"hSҟ%j>3giCjdD{H}4`T#}~|Qz]';uܯoI=ՠg(-#8| &%+٧+^2qʵЫQ.Ig>_v@Udp;>Њ}k"X)7P?מC90l:3er#^Ru *P2f/娙7CudWX  6luK(JDDS%3mwsфs)}!+(7z"(9ڌLj=fiR~*t tOzV%:gϓmn"#=fL3`ڈY0 }3: d!Vd]1IPs'(-+ؙ4넍=j #SNS3C3װ7J|! ~E*<>ڍX+ֹȔ_۸ic}wqՆVfD6s;w>)l,EǀܪO6N< :#d|xCq >J `>)B䁪*&W H>afP.l4]7mr% p^:k&!T{/&s Bg-̸NaW6 F!JSR3+H.QoF%n/,(dki3˜b<4M Ҋ}Y>˩!]$iuԾ!Y};&4QsM8Dd* c4K$H; T NWI /| K!ta ą íK aUVFT}kSr-WoMI(W{M%OLSmtD rIlS5w.3qwEnF%(%]Ikԋ)'ũ QQr+`AA*ߔCUlʅ~%T|m?ن#X+NZ1 2tW kvkT^aumCA2V5ʇ;-AY&prj6: ȚE65³i765}^Q:sɹw=ҩMj4_(X+mpMK꧲@E̜h H/ot PxZWU#Ft+bur!-P3}>Z<'o)) _a8*='BLΔM黨* 0 Z$up_W&y뇝R Et꒥BAk6Jj;N"e ^ x;?=UZ1K0=H+ȯuakK\^ FMAPv8:@{mœ!Yi&N:KtPn3[9^E: p:6yj {˓Npo6% KPU{g0g ۳X&2lHeJ45F ֔0DkcVQ31MNl-}Ȗl!{ GWccoLѷ37S S$Ba۸a(s+um,jUΉov|j-Z2zŃ.r;'JvG:>Ѩ @_G`CQ% L5 =hEnȇ8¹2eV%ҡ߀25DT\yVLJG*?o+@@<ވQEBKN)`@I00Xuc_8I5!$XR='@7q Œ[44YY*D?Q=nF0HA6c 8XKSh'&$ٿC fH[\(DGgs |k57fn 0Doh)䉚}\*us¤w h]ͯWHNykPj2: `ٰݲ`nԭ x~ 0V/(5Ȝ=B#jZKex 凖 z=_]w9BmvD uiC ,bQ$.i$G/'@Έ!qBP kA}[fp%2? NQQ**XKI(%{A1^d[k&60/˴K5K8r=[SܜW-}S8pmU8CyZC-زVҰ]@np%:ی/6̒ݦ1( ֠ -mċ_`,oU_&j%FYUr>:;Hx|.s@ \ yN5-bv|~x,(MN )[,-Jأ,jnHSamNɪ.F)thWL3FGT|VtZn$|i`ԯ,Ŵ)Q@f`tpIt6G-h%ۡSDBӘ`eQ[_|\PKmspxq#mR"IuVF>"^|fX-px<*\݆.5?_ٹU1F80f7(b2XmĎsB?+ P)vji1#QF-v!^QkH]?֑UTV[ᓘ(Fw_RKpw9Ϩ!gʌuHGd5R +p" gZX\ރĩ#V&<]R>s58~  ]Uv cٻ@2-m?1d͇!ɸb' uh$먳l`SrP;WO:5 dnR:R(_79-0H˶lSHWTYF#X2a,/*Z 02G ;Zj'@Dܝp6e4)S]{p'KoL;#<־lU\xsQ4X(W!1DYɓk\WY6 fjd_p\.3ZrĝQQ{ۜtz3^—9nE~) y{HTȎ x3R=(^ˎWEBC5QcIAd.TꋊBcǸQNE$Y2~ )hZ, 37JLȵ aDﲧcT2mo?z 9V((QJ6 #WٓhjX.x r5o07`^u:dԄʋi}#].f]1O񆺄E66bik2'kp̨)>n?=*1T!>j=A؆= c\#4I`}t8 Rb{)SVy'L1q 蒫*!NդTܦmds^}0w8^D[;]$oeC^tcHJ3}Zg)!,&Ul8&TSj,xQv5yۉBu8R+9e [ Hiz_3m/ Po=gq[ʃ)#z}ȹ5HK7~n[.+'g+b3U e/҉fVcڊw#JNt(Au!!$Vm- Bjwf9mˏ_lWUX]XX.iXMLg;N jy\Er5͠k>33hJu/Ω6ˆT@݁1wzI W[]ñ\Z&SU_MJf-d`(^>:oYu0z@Mp OщZlyg_D.̊sO? 4 D~^EnBof16f Z,`PG-9[\ۼ;&ӊ!r#DU@Q)F R PF!dtY SPp  Vex$pyUfp L$UҮcJG җOSMI<&T́Ҳ?$edD'Vh&B\1(^TEs$ >smgz$ϨOCXDNcU ֺ'vWfK]̩%9ƚÿ>M(eH[@v4n >Cpbvtr&=g7.1g< D%Ý5r$խCF1sf{1,ޱJWagz!,.޿mh#OYޱ-D W">_8XG ׻TyU>fi^>N'2 }[a{#wI {$'/U]?il/'{6h,4h_wntN(2g>|Z]MpqvxJ h?P-tW1J2@GF=|"^V9E RP~0@iD$ +QV0[ź Ky)o vÉRK9nMU#nXoD ̄狩o-x'0R@+5m*͛~.*zF#O) 7d ^DJNDDOڱVt_M*Tπ)Ey.6#G&-V2EzN&[,U`s lOѧ_7rٕ_u@ה2|6΀ }"y1{HT˳HQCf`ꘓ76qxM]r!hksnD}+FOB\휶7>u+ՐZpO4qX+'-I6uc/@Z8[5[H"?F҉N9v`Sa>3Պm6)y}'>MT-?㶣wLM.SסW׏ Ew%H)3MD)EH#ʬkmDH90=@6 $JYXPL2Y*K5竕9%'V_;; 2k*Yr\ۅlT?EVtfTQz<:>U\1 #{74&*zy:8JL+m_7 S#q `cBe ҳvk&{kVC[+T$REA B b7,m2* _ xJIl/FNAlL8vE嗡X快B`qj#j:?3k?ۂԙwUpp(i oE(R"6eVK.DN kb#)ju%/p 9H帅;Zb:Z1_rN?}!;]i0_-?يj|HtrX5} ,mJT-dKqSj[_n^Iq_ێgc笺8Qqt>2Zd뮴dD_>ij@>f^+qC Gi LEҎO0U^cɡ/oOAXF;s VRrW,YM;a}GMTQ_`QSJm|N/sf\gCQ5b;,dIw3:1ÎUUr'LT*ֳ;q4G,vY29c[x9=kV[a8gR3Rr_Cr1mHJS5b4tFL51`ГuܣoS$+ ^ GU>zĄ$i. 0 znx\"%('gFbTUJ eY/D \LXYCVb➯1¬å~ut)7ri&d I^L.F(.kZ->;*4l%hW1--r]{E 4؛\xs kJ効/!z jE«~CsB㏀طO|(b̬ˡ "B{UvfϼWDI`"=]b*Si*Dʟ0"5_*U^}bz} ;[ˋRT݊ @D%=UbCɽVʓ-ܑYh^nyʭn­;Df.Q#C1EYe29]_KBL5T8 v[{lY8Z cpL낻=܆:̻ 7ה "݈&^^J9tZXB `Ǎ7AWdA!ϷW8 ^B~U߃ !kdi 5F-`w6Hlά6$Wy wQ"ķ4%})4^@^FtRiz{COO-~rQbDǥ@ (<̞9>l|k!Ѥg=kraM7+[*H[_POfn4E F0$a;ƧU%;68gU0ah]"s6afJNJX"ɃSJ2,l<ȦNh|8Y4P;Ur(b?N0&y[6S-CݸLQ?rhb▱^[ i1!󗚥yE8Ew3kaAXEݬX֎x^[_m} q/SDdUO%֙%̝hHALw*UJ;LMXL~A~ਖMg6 gAԘT?6YoSaSTlyiFZWOVucz~ 1"#KR԰q4ug8}SF +ygyKH[aܲ齕;;1akڬ&GU I4y2LöǼ7ZdR(G<.$VFf9y* ю5ZܹK$ܟ&1& oy,sF GLyMmv* ).9"覊q\_aui>F;zs4h=N7CeDž*)'HhV%p2>{LVr -uy/my.L|X !-w!M ]FhO(M2BL8~(1D[< 7hUjA[/ Nijn7S`yPD~Gm\ޗUax>6\l#4.NiM{C]$͉600 ><̓bQܣ5Q;k8M^8>c{J(kGdݏn @no7)jAQ<طݓ_Хj@!;۾[8g2 H+.;~˳|2{K=N}1!y#{5:6x=U D!- ]8L+>_}#qc<j'cS>.#\+X5>4ХZxM,Aؕ cq#D!í1dBh>e '(I(N! hrg=auw鍿_!<^$ u'd/T[ *!6eX{n܀ϠN~= KyjjVh>RFR};u?7ޤ*dD_5'=&Y\քץgSmM[Oq$b.DhM# K77X)P!E !3sS5,޶kj]iX@q';ös?s]V7~Y}~ $41v;PG{͚ Nσ2Ҫ ; ky]z!yL+UE\MV\79&5i!δ Vʾ Vm e:.x]t%Qϣ{lt;@Yy`؈eyE&scRQE82[]-! L\OEU"U6Uxzk7p,VJgi)(n7>Q;Qчջ;D ύyc-;}!-tgWVĎ"0ڟL)O ~&VsXzZ7i6iw㾈5(46Td_m̊ i}A_P6R1``H:כ{Nd.ڇp De]){Y%0{ >?>2'~3<;>cȠ/y#K[~CfǠҽZT #ZfJF7$7duv=b 8|).𪴓-9=̟?Oin{9Ԥ~(_K~gO#[XnULk %êh0ZtGb;nQWP6\'iHH3מ0+a<==x.?Ru ҁ US}'|{b >VPqXi+'`*Y-Jʾ^DvWIX{48ioI}t@ni0ބ{H .VEg*+C@& Dݸi%x$wњ 0E* jt>FYl:cF1w=`-"0NR3eſO̞:B_HauڗѤBtܨp4pD֔Nc#auUixRFƚE1z u1Ob% 7 #r`ZE/.^Q՛QNY{Tؘ/0{3WCH4[E9{w OF;ԩQ'xzUr39r,"AF$Y^ic7~{A͈p<᭔`:6L6{\1ֻocIq rbaxojǕ;ӱ z"k[jZTE(( 9{@?Pȹ*f8(&=f|mWѿ> YG7.u0"&šԷ^-W#6I@ţm˟q .]>Z]_ҫPPײ\nNbp{A'uޯF=fC>@ȰґF rXᜒz@m egRi60wYWdDvT׊{HYk4+hxuEV)O?4Q ru}1SPZ%A/=h9/q87^/E}}Գ?_jkKG)%<$'!x89*΁ ܕ=4(pARN,TJ@hZuy !\>w3̦(q{XC[\F c5zf;3U>p LI'[|x툲Wl|LQbpqep>x[mk|U˷fN[Z9wgS5aq߇t0YwK((fCv޲[l >!;.η~ֆ--'VƒyJϦo>W+{NU2LoA[zNwa=TQg{7$LrU~=kvZX4[]qXX2'oySJ``h譍>ێWLp0AR, )y=xyg < q=t{nÙBz5稉 "^J` T}mm CQy1U8?Cy:=`߈$20GY1\^eanM߻t{&U6opcIs Ww.+T.X`lKaX7m9 8i[ dJ BB H0/{rDa$r0tES#2!Ӗ^=Z:v鍜R H26A ?E 9nNeI-S.;s KxTw?O,DxYR?E ¼eΘ/]Wjtl S`K|ttsGnx'3oNͬ/a˺ߐn8x$U#  dGQ3;yiV x$BgS٬f.Q%Y>mSXl71b,IhqtJtlWܮ4˜F₍jm&O1j8H&*4K.zV NE Ne/p 9 vvPkZx Ijxyjl+5MV(q&N6ǡVZpTeB;Yu%xRGe>KP}yQwۈ ^X<Cٵu7إ;c r!?x*,6jGu`S}C;^{?f ̼H|:y47'>5dPv':t<_ᑫ\T uX`ALoճ<ᶥ@uN5'Pe\2\5g}9k]E;\g%W᫖ǶN{TzؽnY-ZZv ,L,7BD6D@|&ZaFβYj=e.e0vrw@)wUD- ǻS?8dy\Įf^*A83@D1$Eo#> Cz| ]=|fYvHz7<֪ ~ ͯ0Rnjv4figfzvHN~a"{%%8-cG|)[w|#1QD eO*hx7=Su W<ʌY8FWâ}V|D/zJMTZ8tBe:6p`zK(':I?qZ8弚P*Y~1xѭ(}!g4JCe:CK]s`rLOy{X#~W[}i_9k?$d+f&Lo(,v,jt#VAn)ЩxHO2ؾa޵(nқrDWX+p/׫wD @~Ov$x'@ے[+u5k`YfVZ0>X %3q\+Rw$c C6B@^r:N oȩxjS3@F~kY%[ݝ|4&FvT+n꘮q y x`5cXkyJ*U5(?ur+1td 1E?B γv?@/ 9C~ 6m>N [{ٓ{6R=Էzwx]wHx`fyt'o]a7 SJI%'<Q4 n}}GgAYDq6ڸ?EП:{=s*4:4FTٵr/fZIŨqFmnOຌ])?=y>q:~kI>3W8j Ga5ga[q+0* _ur*CL^~o}hF-l:4d祈WJ! T̑1>W%U]a5|Ziw6Lw>VŮPe e QHz g[fz7/KxpʛJLTv>j+^]]Y&=@{d 0qBA]TW~WvqFRk%XSM3lЭW$)86ԇx3sYB/YtΎ[NBᩰcHDߕrKz{n`ļٸY{(ɷh`z *h4cE91M-kElta+Xl韷nNnZ>:Wu_jTlft"s?3E?m1QX 53=#E:R˙~.bI@ܨTӌf='V. jV%ҵob;P?00˧.ڬT"z;|J$xb,#10Ŭ1&֗ѦpߚLcgq-fo̒"ZYrx&,YCa"<}hWAI-Bs.۽>[ cpyFc25h04^tW{H<pJ njL A;6G#g I.C&_°0 J۪P>|jbǻ3x|mIW!y? Ć0nyŠp3F:.eyzol#3k¥`S͖wS ~>m܁\}R"p*z1EG f? .9.e#wb q<'@~':&ĸ/ns"Wa[D7q+vA9@wLJcz pbޙVL-b(ɜO&_3|re;&jp^,2b^FDoAg̜i?\Qld ?/cM>1mKHLOf-#p# Z2 nRh>QrZ(x<,0iEۯM7sSkѺVdE7N4NgQQt5sRmȵއ!숊 ?KWcKϫad&q⤃mJ gO0È/%*+'G<%{Cx5J=$ڎ|n֨Tێ$z] ӪŤ9 "/h#1.UmBxM[qw"./rE8f /b46Vi >әxX_vk!S>";S|r7/sxװDŵlw%c3evq>]s;fe;+\K jјjjUMne3}8'9cE{PO Zb4㧟#Zբ3z.>Pk 4!^#T a( `3g![fՌtk lm(L+tNr%+}vO5N$û7ЬyĥVvT9i=ij_n\+u;:B.]يo%p2ƿFv*A$Ua֧f8]$4QsprBK5!-Rr’5M1; QA 54qT ſQ>_>~Q:0~Pfm>SzJal 5Sqfc==1 GZ:6I)^U_Jcp{~PpG(nWs۬c6#=GG ["N0TMprֻ;1~@`\;cg2TSܥ2~Lm WSH6q;FbnCPg -{:==߭!~s&=[倛b`C M1Z| bq#N0NF)P#v m!B?)b9((:.Aa[)+6MTGb+ ;vZ0(C %WıWbVݿHRvռuB52n?Er^gb9I S(e{@so^9Y9K*r^Wt)^xUO1% k%mQ&|_F$"a#4݆.4KD%8$`*K'^쑬ps20'4)%*J][pZ,E \dEm}\Nhf$v٩:}/x)D$1GlS?B:qSQk0ffyBE~CXjfhCJ T“w{u[׌!WLJF[C~qT{(y!V-JP@P\nOh67% _ugZ(G+@-[G HȣXg]-{Z[IMn|#{W 7lADG7]Ŕ-:F1#.ik}f枚E<nwQ"p͇wočPh$(՞WnQ$2;VA` sMR/V! \L5c$PЃB X`Y]rAo6qڊ\} 0vþcZP^*(ÚȒMk WId r0Os8dqwm4cݫPRmI0>v4SA> 5؝K4EEؕsÇxmaۯ:=>QלkYBW,lT6h?&WsoyzvZƽRRv:1v[Ka-bZG!ㄴY 豃/Y}Op u h s@V]Ή^9 ׏=@qP,-q_ 5 xx "8O^H#@.,BKaG@b2ғ'{)V0OPʽIܕmgT,8Dȱ]gZsf8=_nDګ~8C=Ee~\E&R͜;*IV7Z~I6xy ;/&Bn󶧝OձA+Ts&RAAB`]^ gej3G aUQ4 xP;&WVzjH JhԢf^NJ1 UYKpfo*@ˍ,3)+|;X9a, Bͦ5:iH{ @SwEk >*Jz j e3ra/ؽ'pqҼ$};ebuKCwn6dhp74?6h4K;Q{01/W@.8 1ڂ%GUL)4fPZZ=a7&+өe"j yPcvHLuƳ峂 ͩų]jh d|.cTy`cCU z[:wjz-qcl\c u bğx?1䣼 6[+n9=9xk G.B9Zf-K ȭ@|1f!X)\%UȂ3m)؇2g roKseϰrD!=[`3>fŤ7P O{gcGzqs$TYPJ^^QcqӖQTyNgoQݽ-HLI^kUE3VIG$((0BԺ6Y.L 7dwt ӆVA 2`T9|I1Mo ]KR0}eE~b_)hoMP)|,VY{8%A* C'dh`V"x'V]Њ?H 퐘J<`=t8.5?/c /PNts74֩~9luwTFCL}@1ry&&ZX6mjoIphuz3Pr`g%I w%AVBx T"NM>Δf-sE)ÙLڻo0Ũ!kD,W@wtgz Zq>1`{䇐r%=$ J%8`RK7kmST^mżWPx6I`X~#^Ejۉѡ3Jz QiD,d7(8jpo){A~ -m:KArMtyr Jcl p TTA+Xٙ&IS={9ӎ2%DCvy)E]ֱĊk>N#Quu˕K]< lC-J.iKj&ad[ #Ã09H,vB)[0 PY<J fP*hmNr5 JſI*_v{łA3;L#qј&d* B=cD~ʆ{NhY1ǭ_ۦ7V0خ l'oJ{&cIX ԱgZqrXFb#d`Fz}(n_o# .o6vס ֊߆==Y~V'jb9ౢC6wjAI/L0EIݐckfwk뚽(3K o o%NB!u[ϕcS<3>:>~0v[6Fk*,^ d^c㔚xA~YF}#G[ZY\]c2FLTOlgI6N{ y_B\%(VΤAb;I][US# /rl #O\'!~aNUkTlZ EOL$J 58=ExOhAms]p+ 8yjk/-PFs9Bc-)ND*ՙ& CiIUId 0U6`SDd>ېF-R#5"f*dIV\! #Vx;/3L)80vt6]~"t7 zsG[MT0$oKdOqZo ֈ;֫|VS9;b5,8\ͯ)7rn&RhViřVJg'b.!.DwZk1ru7U5uI+܍aY#)[HJ&e/[3&Ip^UMqcFd꣕OXjj:lg1ٿx*xWcDOܾʄ0$w tD (29MၬUn| @^P'xEoX}ssG-T\%ҟP0 QUfK)h%D.ƩJHQC}%.U x9px&հ-isNdeκg@cKݲNoJ .(ٶ(Z*HeGLWz}Cs.` -?滇Tf%z2 L7BU|0<:yh`ғ-#6$/k`_(RxcFp9j" / mmS~]z jHD $FeGu6gB гSMY`qݱ jx(ٌJuxQLD&nN@V`5d]jSdn &jfroLu]dZJ|vuJ`GDӱ1#Nӹz;|<"BAo׷? ;D4hjXUqsTrEPL W(orӈq 5~> :2vspM :J;Jng] F,c}IPYH C]+^efrÛ]ls%k|S2HZVi]ڱe-O{Tn4و1cN j]VYne .TD GMFp70j(I>VZϝ gJKWK&s+ "Y3eW5,`6}ސFf6`FQ'?x/4X/ CZBGDu &ZL1\@] Lm+F!E~Y3@%+Lk=LO)\μawΚe8adž~Jd#NcTOZ~lvkmk~ʟ9I8eb[nL@qڜJ 690eĮi;ς|_G KƝ82A%s0,tPlړ)l@C M7bD@%EaBCN|,6XcGy/^ Pd"skTy"ܡsNYaG5͈ Ӧ &CR 5YH |yRb#BE:c[B#ZZE[&pzʴƶ6{dK118յ%VFTǙ7l|H!+BPFos{<Qi>S]qCT;t=^ *y2M1P0ȂW|}# `%b2-JRy~j 9+p˰+q2.@fu@@?+ @οg *շxP@̳gi$HJ2[1b H Hީ.N~׭ ܑ*ң\pr? ooafi\}f? rG:p"/A4~aC޾rsP)hp(6`d . uՁ/9|rօ1{OdKZiEY׍FM=3b٫%^UK<K>{Xqj Q|1M1)a/\Lc@2b5;T ?fg9fD4X]Uj)bh50>iKyX~'Ic6zZXW5Kj=I~\~ AEQ7ٮri^;ZNxXu'2++&ɝ93xk9ٿ[B:IyumTCE2ʙԨ3?E<^<(;7[q)AhєXa N |h[xhotLQ滿 9qW=}O[ӣstI>$-e%`ifxN+ÅŇݜk9 buQڌrj~ oڳ &8hjl8͖cDb<F#仠ti s]^#Oz懫|T[AexphJ*:Ih'GB;g"%4=k sEvq 9▀rê9`F6Dp\__toC1XgY/GtŬ3IQG51v( gK(9~#-/&8^ry<6LT65<3@ wA]3NXRǽ!wp&+G&'vBF[mNa>X0nѾғ|nے6-G"zG{Ùyu˷ZEAu6PBl@WŊڳL@iQ+md.[@QذyGtC37%v]3,_cǠ(<]tY3j~/l8y~TͻTHMyQ2*U$߿L>wR)!w H,MzaV(dTY|eDI5_:KD[,E@7#ם%CT^xkz;F)wm{ Bh}3^{ X;-u[3}Wwr%%8N(pSy;e-CQ]6<=3Mh8n*~D2_M]i=wsvΔDDSuy6N+t%E;35z+7A* Pz/CJ| 7ˏ@-fCB ޤχt/Vv'y tБG"c `Pd;:<^''Yz@1eSW]Ԕ&a6m*iuVwh&4 V OR6xGIefL[)U1"$ C`VMFk+GZ{bS9̈'aĉ$U3A7:|]h4s8C; MoBHUjaaޜ=b|"J6iv%޴jhF3[Ŧ.֏/P6ʌhF? uXD[pjh"&_-!K6KփɔSzcqhX-2z?L(_t6NpC?Y*T,Wo=qi(WTPX7-b:ub(5߬h#m_'ݼX%X`ljI"hKYd]1Q=E=FRP~6;]ڜ'xmLXR/2s576,ZJzj\ /CJI 0fɞ?Sa}C^fG~0`=[\8Tfh:ZqZJ(вh2Og.>my6k^1tlU^Wm xf7e] [p8{1ެ]=!"ʹ{E㠐ϐ!x4{_YeP3W5~6ֽɔg\?NE?S\0bCgA,j1fDpהzN@ 4%@:d#K? UE6<̲\I92hTs0p tƀ4ᆭ$[D̫} S8-%(fXK{*t"i]FoySNV#rxF#)^pC&/>@ Ћ_ROh{L?"Bqzt݄MrBA ؉}4=13x՘{@}h1h`H,c~I*n8R*ےTL{PaO"M5cp< ͜kZ)J8KW(=Xh.')37e8=?ضKkE+pLB?X|gj3r*4K'Rip.$Y5K^,)E+=ڼ~a ṼpG<UY߹^>=KkV/6;MaX*Q|-:7~`~j[]HS!x:0ۉta.yz1:z5 ;! z@fnkO9`@΄u޿H6TY `[ ώKF۪} ӯEqFHƪ z|HSƍϜhuqE@ *ymZ/]4w(D 9//RfI+Pۮ9P3ckڶI)޴d?E"!1`Xuk 1+yX= Gh+8i*56hb SB>mxsFXBܶyBm҇?m'z}FCz.W_ydT#L>{j rJk9,kff\X0z(entKzR䋢q㦦 $gX㛤#ҋBZ5(c <HUEM@1d`_"mFˉѯ97䮿46r74f=LQceyAFz)\5t$8- 537s2O-wq[ '=W CXʍZɡDUHR 6WwlvGX3/vQ=DBAgeRArfLRHF4j sI\7rt?$GWD M|K(2 ׇv3|3+7?"'/ѐOB8<}~y=(H1`!]Pj[[G 0gr548NerrO2W"q"EvOY<(Pc4oad4wV#2܀<] 8?q ZS}"7lRf鼤Z)z- Me>Ҋ< ΠJ}D]]-N uBTV^+W16֕$}pqx,/ʼnl 򵡶;kJݨIBfh%Y0$z1IoOu’Y==9s8ER+(󓴭"W,wph`[_CF{zlR7Dןs>HG)aj߃ZZ6:J3Ǿ#CŖ9S}6Αml[vxK_9H5%:4-Z4mdfLK8!8g^!"pq9SigjiD?ّ.R\Zt֑ckq'p6v=K [M!ύ&h&η6@.qϲzAF#6hg-+dB|3?A}Uݔ;^P- b^/T2.m`6ܚ:**fǷTY&t ƻ+9gUl&@zu{MF Fڐ }͡CJeB:0,C|DH;H=]J$nHn[{66YvzX>?b h8ޝ"~T?S4@w*ZoZ֪.'8ܩTps$_h,>Ku1 *]޶ 8#r9QQ ,ZR`9yw-WVp~{xJ R=2?8࣠h7'e Qj/I'YW$hŰ2VQ% 6 ۾hDm߲J^ IM% 2gZqJIkYRbtǗo@G~T '306*/\r%3;PEن4aB§ϪWmN.[{,Xkujv:zrazwh#V9">=3iVi#.pq*sJvC{gF ?Jw#Dףɢ I6kNsQM"lӕ:N`2Aқ" ¦ zrP>^i: ^1W@m*fI8iKA㸣or4E}]tf w;(>#@oBN%/u/ԃj=HdZG /q-+8@#~ .6u5I#0M<,(MElz P&(trhG?tZ[?n^8qӴ /UWÅJ6XgX*Q.\_2Fp:o fP OeIQtBw ZjS0T?tH\!fvk՛.i0-䲲CSFHμqQ]xsu[r>(0Kΰ*-EunVz :X+1OХhR,gu,v`-g N-I.I-:1OeLa9c\y>8m ר*Ss%?Gpe$Ff+W hv`8Z܎] lIzBՂb8Vb{zoj26:?}պ;Pץ ua&!}5yw8ލTH+$FŒ/qӤ50֏|  ?-ѲM@:E)(+C̱ rLS-}*Kxrd|_n?L{(ݲ^$Eȱi :Fq%nY< m|=peW#d[{>3WMj* Tl8c a^7;(!9\UVhr Zo/9/.څtB ʡlKIK] 6GK!Zmd.Ql%Hq-Tm/ yaԣB܄Tk I''NGSDAכ) F-iOe %E)Uw, bO#; n4Ƚf'1 F$8Ou˝o8҂gYH[`DNMD~DbM)WG~kuf $2pWH=ʈ*- GFȕ R') #Em0GIgvfm%:Zć&Ѐ(kF W=0*jNZ$nΗec!֧g(u"ECOU:um35U"g%D?"sY#Xqq1gFEQ @r{WVO$^:jF+4q6s-өaC&ڈ_h,q>:zI,L,)nBΕ=| Q9)$Tr;J fYQQ6ngs1pV@F@a³nne35O12.g+ԉ:шi T8x-ViMcw,ۊ3%N/6 (!}rg8_$twM))EMosA`bYKd]AB|s)Jy>q̘b 겴NJ͈ .ԣ?z˘[#{|D\ ?4 .}! qNR?ulG"S!0f^W'8d )#Co2hR䧉gJ_ 5M5]sҰ̧Nb X' gQ::| Jd R B;g7͌ `Om**e\) ؠZ% ];Ǣv 7@ag-ma?M\/Vsn(2(nn{)7 l/_67=u'kZ)pXJx ÒrBE3]7x|w$bUcP&A_{q:@r;`@fݬB BxF_UT7&ؿ5h%[Q{"ܖ+rFN0=z^"(ȲiŰCk}+m|xS9TͿ$l|3(R|G4Oϋ2m,a->(l6~~1󈘳?X/H(>إ{j9N]ON”vfLqӏ_`ဠ sq.OȶVD]%B? g(٧2PBk1Ut3j%a}aM{f@\%+u_|6b!SÓtاޜz p 'n5)U ξ5TW-"E8k%%:aPE5W y^. Y&` ?[g%}9~%#YcI/0a>%`pY P9qkTCxF9eV9i o5W[ӝN)" rfhݦ/'Zm}T3{! jS7dpeWi8X,%p snG⫯ IYTr3;lϣvqîԸ^ T暗Fjf{r?t"_'_* |\Mc*RbOsTs! _Y ט ָA5N8>;{Jr+ I'\j*[:MqlP+ZJk\(dR){.1=$(# i.}-;lj~OSB\ !3`fZUe> |dʅo7*"u3e{Am]جWl@q Sf 52?Rĩ^vUU]=М)tĶJg揑( Bm(m SU.%Kƿ_]ihkp*nޜzF-0 ,h0ڴ/I9?G W_=K[!>YgZ-sN~~FXF* 0P'CW'qgr>_fmQ5D%:]H@\Ah0pkg J]͇SuDVMa$SˍŽhzll?GC54SGwx 4#m7sWdjMt~83ዉ[ǵ=K '^ڰLC]dW[XNrnYrVX=᭱(v bW-Qt$z@S #ܠ"9/$C$@`[Y8e7?is45z2[8aUEZmP3PTO3pjZE ?Rwqne:~$ bֈ_|L\8x^n:\Z Pݳp/  }+?CSw Y[eS-;'q|xHmOם 2y& ;vmG3<ܤE\.<8.bx<n(Rb`4Ky5TҔVVG&$N^_Su豥6R,g ͙.-:v34H?cECk&E VNJOq֠3e1)Rnw% w]iYO%[8TLPxI7 $fZ hET`[v%κJ⊈,gVK}۰ՠ14njn>[نf$yɼChJ3l0 z`uVo[ .A玀UL4K2?-l_彽Toֱs(jk}r 2Wkaob v}ʞ"^cy55/ؘo^IlRʁe Ĥ{q{EOwn,@a}u)9C۫]A|>ONfq,}~ġXtS$ӥ|Ҟ_:Y˾pCQ+ڷ=a]W04.g7W"qH5އbRrĂ))̕x&x鿣Ɂ {*f_{O)<*&BOUJ9Iuhrm VB|DwAaϤ7iFZVaPWc?3̾9,Q-qKQuҌBΦwϤZʃ`001aDthRS7SIdӰq_!'DMi$P23tZٽxo>)1"uHDMA:Ҁ gg3e[}NwgɢοWLhItwF_i٘o?L11*'~4^0l2.8!ǖf}nzD|Sňp%prA3sl[A%E*:*o솮9꭯l\>2i1T)1 %-1/t"UR!q eAsflybP'ŀ AMàՔ> jST4~3) KҜAWh{ @bs+2E&+" [pJ)u S iהP{03;dS,U$'vF7vi&yg }9sTՔ{ﬠJ +tZPY!NQ.ErtEHLE>)ZQ Ђ^567F nY!8hN[򧺯|!{.cʦk%["ts>a$V,>-^522j"FSe]^9ju N_+$e0e{S1s_) T h%:roX)fR\~:16Gj?W8 [XWOGT<<?99e>Rrd~0Sr&iy Ď%& ƾ7)3#oJ~$4q6|eW8zľXS)hPDB`e7˱!IDRL-&ϫQUzmpԀc/hRz]yˮm%WvW:]Tw'lz`{QϢ09` ~1"f䮶-4iĬPtjQGĭGH3MX|83We{AD%* LOu9+֡ڋ!jDB7((kvoxnqni#&Qtp@uƆiYwE^W1ύNq׶EW}L7ʀ,Ȉ'>P"m{j]S,zG@:TީDdl Ҵ joBvyAbNLUn==p1Jz{z^b54cN9_e4E\E\+'Fw& Ue7`-J@ 8KPSV[>0y]lYUv6 b T Y9~J6%CL|J$tbd\#,@S#c@!kJaC^F%!XLZ'YJLL6TmmbmE5j׬È6VЗgfc{fh[[>`nAuX9F߂zw,:V4`I>{_q}#;cKAe3{"N;4dL~o 2#{,mǛ!Tcv0jbf,z̑ H Ն4qP.Ǖ7ݣh n|TB$}3CD1j$ E `Զ P[G:!2ljƌVU|1O6Eۂۊ+IM+RUl/m$49I(UswVGQ_tۼV)Ğ> ۆꀹ7!H {؈omzXXl.baKr c|sJ/;gsd+RT13?*QvE ߨ,6U-f'yɫϝ]Y;=)A V,uU> ̐]H+HWJ&Ya# ^j^4j0KL`cGӲ/HK] GĥkHǪKyS%."_0AU۰ۓ055-^|^cJvsn|i7pwcꇅipH+w 8f k~i40fw-?h K}VM=dv  /f$c߯: uOCc^oK e%L|suv`4xԭF꼛KNR |f\h2.:HO#ut}ꏶp;|Ǵg^QPp׺1RJwXC7ݸp _3\_p+$Fd0j_6 wD t\`@ZpB+g"LMtߔQ]K~,/#Uĩ7L!?MUr;JjG/AQqɴ5U|W(v(5 iRbNY9o%a2rwDH1E؛eY͵^J;{\.ֿw~M! mn ]lAnܦa' ͢SaAj(5qL5LMT*TAX!B fj3.Jw[/8gF" 4ttqPW.jE5S IExH' /3'|J@s+/ ExY< FUL2EO[f_Y'i<\UAb^Y<֫+[]d5Z#U =E.,'S[QSvXqbE=t\ǰ.ӱjʼn3#p \eiJ^e.Y5NjB4{7?i}9 U?gNH]CN܂ *_rg6t7m}EϟBG(fNR/4jv/ &3R=2c+@ elޫ `-7CJjBNͮ0OrOwje 1 Oyݚ/QTwuRMrr-fZn)f[!7F1 EmWI6TjL{NzZL͵BuWyE 0!{>(XAoȻ6p/Ki&mF/1-Ή;Pi$6|ęq2hi@a~uƫ_)΍w[|rvsV)G&`ێ a׮@{{{6󩀉 U< uݽUAC hQ\u4i37_=.Q 7OUzۧ{6J@SCp])ډ^:[I3tjG6*G30̮@S-},`Ė'YihC#ܸ?|& ~T9`3UQ4z2JTڬ?ۀp!>:Q8䑔oQ\;>~ɀa/svaF~bOaO'jMm*w(0Wq]FvTHM1 'oQ]hg8ƈTJOGh.YvFrPNmr&dL:v}ks[‘IIf, ѕFFd9 SPCbǬ7 ]g%l{+)pBe|'RC uM8J*5y; 9< &L:-̹?RZtRfWIN`[Q: $;{$Ns1 7g"y=쀒$H̘˩^7A,Nߌ|]mxx'l}QHyq֢eĶ/cIgxzBꥢ˓QpTC6}1U~:Z~U=EӞw6M^y؈AlžɆT5JuK%^dH1}ߗd$Ybl/'Y 1ad߰YڌF|y_ҌPe9ϸo?2?u,mPc!Z~oj ЍdSw1ZAbnxME -=mU+*x'ry ҎmPX0~j11.;ïn1;`ݔ$̌UĎ]>d9Z rcvL$^TD|鴿w K ԟGRDF6׊I^'UGr7$FpjeV&1xu;R1pR, n'b+kTN:3} 9W9ݮte0}]l:JX(W1W$مT3A;9 W1(i/LĄ ABzNҌj#ywUwW0mUi=;$z_|PA ;c/뙐jT&"l4H=PnC;TAd%Րӧ`;$D|$$6/9u3|2_b@GGMlR"12{aU.>O@a$@c;Qզc- fj21zrXW[5=Wy#׆r,$7LŅFPA֤ k)+wAfe9/h>De aFܖvn^+&zd;bJ27=Y`% Xڻ&Kgݰeemu1Q re +{y.ߺW>?_ՇAY:@ٯhYF\kaHЍEJeXt_z"q}6]Yҕɧ rsHߦYgEY ĝ6V=.<9 AQtzҰ ?tn@n%41ܭO\ƺFchjZGI)M紵QFEu7e]Fgf<z{[==`-.qmet'yjAV@/*ٱ/eَ4Y+I%Y58]^%˯Z?k+7BS}F&'ۤ/#*`KNM^J`/we (}/}]ѴLY]<*-6'.g22~Ro;8@}LӧV>`?ldz-#{!D=JYR=ڦ(5|ö7joQa!Tr$>FSE՞|N(NHB$y}iy"ъ0X̀ʻR X 2R缉u ouIIq8s+Ia+^uQ"ʇtgCvCk^{M~{9Q턁EɭդkE;vvk|,:˼ebSԄ{wgY–^79n}+s#8LbP7B:c5/%oX-r|NN%iҧʋ |:w+y u?oB`~.: gRa|C!^{x`)ARuWl=FGU:j`8-Km_#J%7o!_b\|_~JsΧ~>J\9$Jử6מu.:D늋^ߥjAɳ ]:݌k{2*.Z}Vvw InQ)m5.@룕R+M܉s7(cuuLJ]]GB@#ૼaAA` ВQq᪞7^[ky -jWNcH|$ӟDLkBю&8 u 6$π8`5ٷO<]ciX3_ ,LCKIVۓK Q<~ 0D5q x{ᰍRddϡ_tBFxt'#j%,OЬKObwKƯټBILuUPxLZǷnirT B-[EMFhDB-Lr(&`m.zMȷ6+ YD阂3?˂/( ǏGv\#WZNY X;z yirѬZA H/Sl$z`43P9CO\U7Wdq<ZzyH{_K%ëEvot׉dmV#j h+AG/ytV'2'oG+"| [7s+c|X;ڼs.plbIC(nyb&rx۬kSa8HmϘ$K{W$$=I"KR-lS8 M)h@zj(Te R0RhQ]0ܺcIVܪ37e@U7c$@ɢ):0z nluG^&|gCV yVkku 7>9lT Y2csgDN O^Y@>=fVwyJ]ulEE&rt7=B"R6xV-n|Z!SM.%z~_EdΥޣaVfgW>­F+}NϧfoDeIA3V%}$ef@bȪmײ̀읣lKT.냗Fg u]_2D=?FNu|!UkgIN.UvNI4Ea+i~۰gsQ"1f6F@^Æ.r2ZKfS.'a7b|g SʼROxBV[Dڀ~;yl}(LcS"/ڈ4VEu4WJYS%Sk7qdj?V5Y l̑e!G`[ǯ?7Գ͵ދo,VA["6΀Yvgs-v!0Ķ` _[\"Ooww(&>2EexL uDh6L;W9uz9g=T܄Ȓ0ܥjFUOP ywJ248aUsR;Jd[u%@\t¹3 CfDP"QJRhmH g.mX+s:ܜ.wrYY?ES ?Pڷ"}a#ay(д?JuaۀAȄjW:{F&fXNܐʒq?& /;/hv%[[<36GقiP5 =D Fv@k1DEoBݹ5ᤅ[)vo(\Ķr F'ĮTWh cր;/PQ׫N{Ynxwpf|ԋ% )7 gh.6t4ռ] P)i=sLgzϵ*;F[ 6ʉmC{ יY!Mh#AaHt>\mp ftN?n#枚n7ˍ\7wn_6},SObQ'$Bg\sm.>3<)E3 NH`S8}ݡ&@LfpBOY5V+dPw,<^/Q 9ݳk7$Ѐ>:w$B3 \W6ې34b^t ͨGxXW>Aé`vv/G*l>SoŸ7F,ρ7!{.I b>nS}fxA͈}#$(nmnnW]ᰃ׉7VU'&L<K2SR-Ww lwt+{ivrvf]cK.Є F f0I{.4(|{F [1|z ǵBG2u 6Rv?R`W`ܙҪ yuf[TCmB%~8jjtm@dԸP%6ĵMtoLܢo|Uݍ3<}PuNI[!;\ ]gKj׏p>7$bI,hj,Fp9T '1o5}Zj;,Vƛ##jOܤR1%9ikvO9t//[Aݰa&mEEfa|3/rkt)L*;Qౖ FCyn@uyHDE|nhIk_g ziH\)Gؤe՛@i[ _m<ݪw|t9u@|uj6H.aIonhʞ ><^1+w1x -f`i)pgb9(HUyZ*] h Eg5MNvHvBUEvrU(g- axmKG4 >DGSa[g qĊ֯Z \ߌȺ- g0 r0P4@Wx"TNܻ?@fW4nFkMWwJ=7}gO cDE+\-ROQW|ƒ}pfٶ}i?.ʺ,D+1,J 94w\7%ChzL A/b!ҖpUe`W腠(r'ih3zGO[>3`{L"oR=^hZS䳓-f6l^X6ێeA|#WNMg։ySNM'vgT{ALSE0Cc b*w/͇J.dUew`ՑE3S<B?'PK6hԘ6쟅Bu6Z+dg ׺V!&$_r4|-$XD; &E_:)qY,nY7S^}ʥE G=K'@.= G Xz!} Yc"yDA7\h?4urH DI yMxC\[U]LC+bڊ'tkEo{7]X^ih-T bzAwd-p'"rHڜҙ'TzܮZ2a\Vc 뻾%]skja v]ry )$Y.{s8|nA:O;M)l_nsu_O}=ޡXeDO^(ǷB]8_7FJ0$gOQ7[ Xd"QҒc@3{&^W,Xja)C-@"8r,k258 0b|(8Tv]uð ¾GZ4!if絯 XB[ IiXān n>!jenLֶɻ-UUn}IzCv <5Op?4ͨoOh Z[>)>I7#%lÔa = Z|s\/LceVQl&2aY$_X .&B> WKm_~\nK令-Uz,nmJUg Xvٟ'_BzfV GQ6zRu_N A+|9/u[ltzm'x:yOrw~MB(2Rxl5Pe$gԽ3&%%'[Pgg˔Ѯ`¶9I,W qv %0Uofzq!>~yq۟ kҤQT|6T^U|H ]wXwЮn U\:QP_l2 xI g ؓдog* -yr%%NjA]ƞPkSrx߇[kP h:;)X d7(Io_Bk%ścb"yzߑaХC J|O>byE'l>/v;;e ؟Y+7R@'Ҫ)c` 4UvytܓS6gQd/Q2aS96_+Bc=/R gNI*D5+1CŏnȨ' U "omdw.Knh53Px$hqf)]k"=wͮآaz,aV#ծ:Q0kMIq!5y`t`"*٫+ΕsmeoCl>t}n$⳵ZI&N(R,׾Y\u1k;#z2KmZCf8x/7'<odOjE@kU[US>xi\f{LTRM Kd~uR$Ї^w73~ '=7ToLF:.ͧ}P1rTµ00Aokj/EB9Xl~"M@~39nBw#q*AH0A  pRP\ڟX -L"PfΥ!H!AEJ#q7\XXa~-fDlnJLz7B"bmIJƊ+Rk>fWw*)YM1{a*b`pŏCm]1IErPZsr~;!<7>UqbBAQXd!6t٫[1BDHnPW[\|کokC.n0{:Nl21䘯 лB[V BG:8ln;l8>ߠ[DZ/b,HLr&z=jLӨ.3J=G)l#֤3T[*js-vkRzcL.P[ ۉPh*x}xbMu;i>Źhn;c @ÎVv[L3U[*Q1!OEkI:X{ ]6֊ {co|^9Ŧj3Kj۔[9%S$֪л9bꉠ*R3$.Ed[cм&D%ۆӨ)Qf6yݕΊ6>k&&[qA5/-@heU,A}]$h2|R=z(mfq{*q+unS> ō]&Si$? [LjYxu0N*~/X7.N\$de^LӖ%tnqu:$W)Yֱ>EqKN\zĵ Z /hoQ甩Q'"0 /CyZ WOLEgdV+)ufrLBjO PEN⨅Ѷ񫾫 p!"p]n)n'mҌhPhXtX~c,ciP -.X6Ax7tt64٘MP>nIC P8f~B`e 6s?mBعiHTXWp'e?E?=$ 3` R̪қ&$V6K*p ddŪ:}a8p%[Dǎ Z!߳yLŌ x `ҔF}g_ ,W%+sOY/pݺWi?0-+X h=96*ph;ab1ЅK ExwڱC$k?"/2NK%SA;?1>2Ok; E1>~:.]F#@Br*̓{^ [0J\l7)F "a qS !͊2 zIt fԏO@M:f(wф[J%Ghqx6lȮ,aՋ7'MX˜Oi+ƍ$y)IW)pInP/jvC}2Rw6 f#;,ަZx[%jk~0,9BCvQՆ=zmQfɠfd-UGڨ7<6!R/b9稵ŮscĘ"ah1D7guRBV9gh<tҌǃVkp)^9Jxr|JzJ?\8e qe),R$?T ّу 8g_ӊ>raAbv&,G)y&dMJLפB %zU8urܬw2&mrg |G*k' .QBJoI2~v'Ԁպ7_6ӇbM*;.teٶZƉ\M߸M傱/i]d=M dX^X~Z5ٟlo]:h8%9Aw bqR"jްCm&ה&U{Q*uj.`Z%Vo"=7OKZJj}**/KXy'?wmkˉIjM G`#pӐ=,FT,N75hYr*ZeV$zRuX&Ahd@H޳ے5,Ѷ߈=#}z:dmD:$)gM)] !,vj {?NwX>^C}ʔ`|Dg*>/@k~O%필*Y[cZo5&](}>iQ+a׾xSp *|j :X[*Ƞr>]^J^,QUǣ h 4Pl ^1d9tuܰjVLω۾2ҹy C" $|D4O;Sg,7P,bsq?r.g b-|]~\JSbֽ?Ta~hE0{Kk12,@JAG.ƋO]EAKmB uCw'+R9m U2Icl6'80a~Kh:JRuSJ"-81m&%0UNh+y֬#<|w44*Ş3SX;fcF'$`K3q}+uEs=^cܟY"w8֗+qMxDEHTkWwgC7.,Gܭ ~d,|Y,*ĝ8:z31 \1ɝ `X1pV-TpRHCBO$P=TT:WM( _KVZbD:ց#‘:$*E W{! -9E9V)Y#ԝ=h;(BU $dy9cF_h3 70zMWc )x% e9Lw8/NJd0g&<[V`WfOYl3RRZ@XX:Dj9.-@NҾé;DָEG&X,PG0|UͳPX>;n1oiO^_u=kS!Gys?$ŸTKaE ])Owoڣgl"JomzȵG<FTm ͑TQ2@ڳ\ObTNAe 3$ڤ윣98oR8]&1)%y&7H@+4uZݏR7f,ep$ȱvi"<2U]-OrR%A2@\\V2a`Gg$h IXJ e)7'mV%Ra^ЅXqZIGf:sJt\y ()#?N((m&Ąk׼ż:jI Rٖ%2^5q =tdgW` ߥ;8FRPR6j0T#{Fvbܠ1P(}Fٰ"O83+Ϛ~>ە%5m8Gܳ#1 B"ykI4ݷg@3DyzXuVok8Vgăr@S&sHq'B:e|6Z@'{bURک +{` E3ؠ$";;1#xp(]\}(Xq[Ҩy_cBo E%t~%[^OT}"`Yv'qS?[jNu SkU+& `D+t>&Y{h/Pm%kL]}f'}g >nvZzI>h8VtF*Gl-x{| % dsO)P\(y?5 QZ&_n- [?X漄d,D'PLa!IlifgP%r,*V lfusEp ȋӻ\ju.Olk I j7͂=3?o\?Z׃fh dlglHXSX)'F∻ZMg{c37SHBkmeuIdC37B;o<+{*|E;!AKo?R-zZcRc0?Q0|vjq}û;蔧=U],G' rI^' Voi^APiTѕUUI|O50ABvr=GAgoe@ufewz;0i%v5Wm|byq i0:4霐(#K/S#?pcǫ=D}2EP&*ѝXzeݹSoN{l]+Ai`2 v\tc:/elR"/n {"Y]JK~^/jm+N&fmmFʭ*!| -DOfT<}O~PA- Y%Ld9ҤI1{!cFV-Pj'w>B pɜ43isgPeCٮq֗t"p,~Dq>8PrIҳESF kTuW!  Ej(bZՎ#k +Ps3ǭ?G+9j-he?} ;CžR\MlnGP'8ZGBٶGSwJ`- `仑[Ih'/zs .ׄf)[H DB_J1MfY8<Ƞ·}cK)U;:e*$yϟZQĻ#+Bz\ /Fscj u:mo,ZG(]lŧ3)HQ'̱]d\bJYa8N&.>B1 jY!B!OJ&|@ HWb=:i+'>Z;sUkUпos8. HX-uމa % &62l;<:p3/),-\W<#|aqA?E`K9ez@]3Q31qy޳sOf*| Wع/Ԉ0UF0i)g*콕C@l7l O\3:]*y@O52 [)?s [:V3{ڢQH1dՒ{P3KΘJW6e^ 1pIol $"+޷sO" 8SչK9WxrobXm~{Q4H B)ۢQ&;b 6@̟@uUp >zA%4'MR4u >R[An=+<6Wj;ʅ ݊xT\lTk|ZBwc,uL )"yDQlbs$Ea`nU3J>6lVpk&f9gFtR )߹!oѬm?4H>],\ɟFiˉ9Ѹ }g_Z|;|,*M'F pe!_2Ohv)]ޤ6C?ژXB{^&/麤`ʪ9H9|c-\:*mQ.79`U`q6`3E>.8%{?d##H% gG8Tc[o!MPs w:jjO't@Z{Q~e:IylU\9S@8eîfݰފֿ9P.Nq^7s5d֤c P ߱S=|pv8ɌeFn ;{R3pDRQ>4MȨO+o{/hi1S`)a8'@Nib j#aegMQ}Gy}2ӚR;)7J936;H¬@J8cZ.QbԄc>*t[閱ϕER~](<-|{]eO3 N.n⋋w-@b,tX깧 OGs 6rZ(GiΞ3{㺅sֆfsHv".\ssA73 oNVQO:A- Cee_*WiZ$V .߃iD@K61ʹg+KqB7px[4<)َP*AeBX|SHRDhq걝Xt4LF f8NJQ&C)+ k2#ZUK,AUSBh^ Ba* b=䉖W ~.Ɵx9S6,Aoz{$>2/R s8UoV9xqKybȤqذ֥ 0M_/UK<[O$#4dyE{څ&ȦAe{XL]ǖv%51WMR3퀆 Q*Y!(ʐ?$C%ʝlU 8ނT@X={j/;%!ZG$w^pxR-yqLUT%k(,C5c1S̀Jg=Z|w o߂+l8`KF t1(P 6}1q]qTp; I 'Aݧ i[!:*NTg" .38=Be\ Plv7BR_aXQ}b\y; Vz0X>%KDLn}fӱzy,ZE џ֣E-Vu^roЋ4'Ri,[3vAٖ8Ⱥ;H |[קÁp698VڢPFjz.Ui%_}oDr/}ۤaf|MGs2r.1pdʧka'VGniQlJ1roo?rf0o$"oY9hsעYw}loWxЯ<' N9ctc!삼 C>Djj6Go=H_S rݵk1J4;;Ͳy#]'*9f~IFX/\a0w|g'qŶ.ƭG51wnwF6>g !kVRKeܑ\sxf$)3߳3?L/DQnRN9UT]:'.@1D'=g6M4ZKǯzrc/Pj|`{%9`|@ W#݃]f] {\ͺPyEp'dzsUhx]LʌAh'/-B$K=Bj"~ݎxOChBxwe-α Oʕm]{}\|Ǯj_C,D֪ -v.؅l1V1bmsqMòTOZe!nW <LT?$զQ@,I~\FnupbIT ^nsF;z=J Y>cF@i7hB2IpJF҉9IJfRbqI@1 +. PXtBNp Nhi5]Fv2_\>/%B|`)r hO=E=;fl_$Њ8M@Ź;^w6z(!ZvOGZD'lWzE 5)f 1p+:ueY' KUFo?7X׵^Nu4dݕY73|W!qj YgHPo 7J]ojω9T5dyYs#YvBD.V+/K}$FIR]?}ӗPņ/: PFxD[DWYy\J/[,^ s岯tg,:u!ʔXʣ <wkn1.ʯv]~Dׂk_- ,A \{`b9VŨaϪP;We$@m(+T/oCd1VlbKTc` >q&ށ9ϊh=l~˪gFB~X 9 W:VԞNEjRu/"2nL6T4%](rO1Bh"zՙՂloO[$-j~BxUb diD/5l~rF_ǥ + WLTh̋ P@B B]9lm&݅jX͛tv67(Rr{3*!Nr52ƌivB߾8sEp_( R1"8n"F#e6xTe0‰5GojK7I/@ .;.8F!ƒD!؝H? l#B"uUjؽ¢Eokl@ LhOU.}z} 鴏hN<>xVX]+ߗؚl-i7n-L.'bDB EvXU)V}FppdM\30Y2(R=9ty9).0YAӂqk y%qӻG}'HszRuj -2=!3_,l8؜DocRoSa)L[ϊ&F#{͉Wc<3I/-P8X1m'teb# 1vJw|G+lJ^,-6x_,|cf2`y<4(D)<6sW\-mϛY=PZ.Gغ[ܳK1ʦYQio}prЯH.21]n;׫#2R⤲ůLC*O>]&DҏQTgNJ`@ D `78k[les ZH6Ex!dxw__Fu~?WN3WAA!U{ %b(Bt]pul]Kl_%K?!dϋ#i+*Կס~R*aM`cwPEOLr*eal[}qGnCJǍ5t=6(뷳{xFE*k6^@+ԓV?FҖ#t R'u_ K)᲏MO^ʾgC  89'x樎hCFeOUJ6:BYe:ِ3>dMu !L|o߶me&~tHUz6~g.'0'%7^kĸ;lYo:lm,7ZނVʶwԵ?2m%l?j\trJT>F򪒇Lu*P$\@GlלS+e%"vrQvZ/n&%aR| Haj" 6Hc{Y皽R tkwcɶcV"t83{qcy'1:iqlVsLbH{wcyNL&Tsk1+{<˲G.W)V0|!ܺQQ9 J}vܓ >>_ՅԠ|Z,Md31@ g/S\'J՛|b2c)^fٮK]COYJ !7~N HjjAuߣsY)۴A:oR#^ $Ze+3R:ь;=}*ji$hłU^omVbԎC0@l >vq=/H5VI"7GߊI1CKFS0ͲgRI $v@=÷Bn2 *5Ot~D7(ёwJH>:2A;R\Ãfpt`\s޼YA#oQھ=du@}pa މgd%*Nzg !~jEzwr waf U~gJ9%nO @+~D̓nSdމ< n_ ))armz9^J [+4*}̴Fq:"wH x> (Feef 0:E:]4NdOƬ^ nfqI*ZN ' |_ԭd]8%◕b*o0/"FjPCǬ9VX x+X>&p( *}5y2JttF7Ⱦ+d/R:z)~#qI該ev<[Y-=pi-җ4/S#xq?S`2H>m6Nû% Cg9ߘ-2e܋(a~McZ{nF\3LZZ2 gskNҨАlGTpXkJϙ8g-20#t A-zϨShYFry?ϟi`#ψ~¨ɵ7vM0l!h>NNfE~]B~F;W(|(=KkH+X)GT[vVR)Jq|Oʾ{R d!a7¥IssχJGNzCK'f@L=v[IF wKψ^$Vf@i>d9VVLć䆈Wvx1@{@+a3&C5+=^t~;nps+8NrX9o I'ϻ.eZܳohdj!(Jm;-巉xfsV8b4'eGȔS4B5} f*)vnoX:P6g v @VgUr[m9O-7(eKn,Jn' 4<]˶'u8]8r&R6}(oiCDj"<*2I}^$>ofTLIV!\LA __ۜEbf;n- ic8-mw6%VX1A s׫aLϝ&_<0}LJpLnj $yHqfD!nZ,l*Z145P~'HS[+N*zuJ\BUIj{חluݍ(шz@9~tÍABJ$8دƅ'>GάȎb. #[!7P}&zy1O򡖭V#QAo;<[eݏ|ۖAYS[;EKʍDFWU"gx|;z%Whbi#p@C>Kcqt7K<>ٴ S)(eu(hrIw&]sc3W!m+@?Er›[v9B!y_(}1RcS[~*&1<< &..k^-hPi~l%s&qk0OPmdxǕ"Z ΥK¦\&;y4zʃ;"K2WK[@K,0xOikt|DR(~dUTv#L&ODPn,vT3mg'š{i[տOT$ыb:IVνwIHH.%?g,jty!r3힂wIHo憢.ೀ0$&jH/ه7ي;e!tBKJITX 8JsS5w3H "^a{' ֍@9HU@Cc~: %mAZwR֠%l˥앭ܩc?tHdH4[] 񧜎=[k ~s̑M ڬ`*!=F-}2HgjYIxqT5'@Q"9 h7y/ҫJ.ݕ?6Y9ך&wnYb $oosZHdDUvb˸ۣZ{Dd (7xGm>ZJ Q2R%;zWS/N:pO>3̞1W/,~l9`Pd5aukcГ>GͿ ғ}Xl (TbA"suLl!uXHa@4QvsYwX{͆ K~뜣?s޳aW&'\icKvNQ>>S^;G`ӻ `H/N?[RYٳggt9UF'į) p'4n;}Z0T?eEþ.$2f\R%/ 'K'Ji6Iڴ{k= DvRH">$z=ac[rURp^@A)o.+2;TRYWFK;Ti4 RQNKPϙI,uV-J'P?uI"u1:|3_v4-^4Ur+Ϡ0b'%P/lǣ=USbas;;&<&`fDI$~1rMX`cPɡO"R<7|٤Ì^d@8ل>_<%`;"I-\~wq^l\YMv ZoS)| p6ff%bIWi8]EQOy/-P,@K<6:_6 \?;tN#͹ײ.H. ?ٜ·$BD]Ҩ jwnMVEv-7T"[ \q/{Pcmyi]vk[-Ҋ afԬ] #yæ,fJ2hзGїm. wSrE;5ca}]fNj@MmvqZ`QgֵhS(?2dW-u!?a}*6l$rËolqgcu|#|{)32.g@^Z1קG*wמ!T6ֺżQ;%.(A;a+MK>C'iBX>SBǤkՋ"OՙӦtyDD[?''/S@Ö 5_@>*G_nc6M>9&0)Ee/*=cs t&=ܥ>EB6V5"IA3uB. KTK8taAɚi :Aޙ?Kem02YE\>G^*q=ɰ=}'>d6p;!27G9Wlto&D.(ҕ>7Ffe"m t#aET䄕 ~}UO%'1`=/>)QҸ}F$m} 6Udl)®[R_#b"Nz#UZN@% "Uv<. 9ʙX¦@LTͼȴrguZ6Qt$ئMzD@tx&ȇ t b&@==~`%n$iqt(Mѯ,&J$_c6bZx,5iiZbI+!zOd1F(6dx}@k%Gm񁆦qh( ^/˅sV]J{roPt8lcwc{k>X~O1Xg^gvG4f\d'z/*@0*c=E#n>ȤFG-H49EpҼQ\8LHYeqfv%-c/ՔY"$sb5=t7FW$6s= T '=[Z.;N.d{*%XP+^I+&Cpy}ylsU=_G]@ԛ6G5#(Fe[g2:b⹆j:( 4úG|-u 8&ņo9t'[JĊEsW5jLk[j'Ԙд^yaYA<@eGLqZ5sqwQ1mL̃:ս\3(me%YO2՚Z^ORwK=D|VXmEd96j:*TxsPpOdoƴ{t Nb* %ߝRT WL$2NP(DqioPya]:HehƟ@OabĦf'L?)Bh;签RFX# >n- \.OtUB/LD0c,QEi"ʵ ;Jf;amUk%P (𖛯\v䙾šYy 86jsoW8弢B*if@t&Z}tSC BL7s՛}13f?r?}j1HgeXeb, /"8|_kϥ3 -s5_7ZKF}&sZ-Xxȕ, k$xSIA"jA5EMjLim}Fl13%{jTC].ab\xV t7/|RL:838}0dAw"TIFiSAru;O|[ImfOIvM-:ff5-?YFJ!1w ;>h-veByUcOns }̐҄W$w)3O&7㮠c0"joإ(?m;-صxʦZb2֩z;,l򨕝H_Xj9vZՃ`cF00->}XQ=@JO`)}s Ԣz:~= -bq* Ś&QӘ g] >/m3rZ{⏓4{{2ȾqR+ sH,^wt "BYT#Pj3 Y1WLXį?\Zu*DE !,7n2$`=:1Ѷ3,M-ëWYr(}2_[tga)6J6Z T Lǃ}3CXºD=i\P8IZN~q}kDžo&x^᫵b" Q% }T@rD?$`4YZPdD5%=!'خe>L})s 0;47 oJ ќpCdd6=k1TrY1Z RcK|-Ix,Ƕvu8 Λ8txo8Gu &B V5Gh]sjՋw*fYlhK%G8Z[ =][{*]Jov^Bd4(lW, Q+!x+*xZioYڽԑ2t [0QTP]Z9y۳i?S64Tf f$J$wW۳wNjͱZ aQ9tb:ziAc6J?~{i۝4_9, ISv.?Ɗ61IEuiqfז{3%,nj<QN0Ǚ]O.-D+Ey!#a< aK`˜' ɫeQs'#le$"HtFΥdp' ĵĘ} N">bn`h 7B\qmHl{q8Ox BDmOƅρ2篋jpYԗLa{te'l׽#'ʕ.MO1CO/ A  -~SN1o [ٚtp}5y_: Np^O.C)͍mFd +R9%ˤEU_IӃ8}x[ \*(59Yol^'c\̕ gf>ub "" lYKmElvF0 57^D%ޓarvst=$wCQeSe9?&/c3GGƯm*y'-S^ڱGk 1T6-ٌ"}BG6qн#k" UkF v9wM,DΦdlr@3SĪE* 2|)^^u'Sc~a5No# ((y^]"~2m^s^N;]Sh4I| -" *+LD4O1zoL0‚ʣ/4)gѬrz L-) H^*$D9gx)Nm0+_( =h,OBW\v :n,x]6@q-[l]^d)30sL_tsP6۟pvBOHnOd\)(Dnݻ[FWdE@.?d rP.W^gPBHk q3,77}~K@q$_^QBM y@6UD V, .)-:M|!6f/]oDcAt)zQ|qxd}^-Rk)S;N rjL#&#ϧrfɉKj5*dMW~MڡW50P1 >&S7ᕂRtK'V:zܐ2s/fIj:(҇V-ʾGj8 mHiKmǍC#=9:HdHP| P\,$l˕_H=V)+p+mv,yS3$z%52OY AcD?G''fA]F2:Vށ (+&"%lx0H$RMKQ23 jBsu{G`&aJ&H^^wl6N3;j?ΐ : 5ob((`I}0:uLm')-L;oa1͌l.)x45kcpK*@f%<>Z/h!IX82dp$9= FX5y ohwT]N M<2gwW뮚y}bG3u>tV_~𕸖&֛ꁗo61033AZ'??`ba2hcIJFwJ<]$j3(^rQ}ptC|;6D,蓴a}N^s_m+%6[wbR\ J86;\ :8ca7|j#əPh2@3*sGU!Gp}ԯwwA1Î̳}AҴW*k/ ^e +ncb -Ogu1Eu[m3Z)HfxvY$ECJ*=|bC9 ͫ͟*v㨢?d #ur}{22bXEzLMq^vMŠr\Ay)f*'2L/jt}TA =p{wS•Ϩ]}ǁ:Px,Z88.>&e&#,nگnnb8̶wrЖ,!^O&p|9e |r'vb+e-&|D\xJ#W_'k8eOL>"vNي<6 9q_q@p1Q"eV)/)8CӧzXgo d%!`|o5'PPi sg|(B=2'& X$?":V3䀷dEٟWdzૢ4XO*&V3F諉,{FsU_#&a}smV}avȸ Mvߜl :{'HlBIgMoEyxmL '@<}CivNeLoV,>JGȈ!:gpgrNŻ~(r^gԨ(zN?.K{ͥir'X஥a7SN`q7YVS/sg,\2`ћPD򲆺yDS~h 4!(dN{5x"#њӒ8u `@Ggm8!ˈ~I74n՞p:$?FD݊2JEC3IKd]%")'6LgU2I9o^}IXW7S'_U( 'BY܉U'ߣt ~G_Wi꿮|Z,pKSfW8EortGt#@?w%x ql P-cA|p玉N" \ȮoLPuB;isj*-R|@eyS(;CTErFl5!sk@g=!HPY\^`z&x b¦EНH>tɼ'zդ<@$(lӢޞNFPvYZMi"IPihٶdislԹ{u g vtؔm=YmU> 7ZⓇA]t4>oOȦ'AhtCk>"tY!L#JʾN*pB-]p/&XBJᴞ);bLlnUtQB= Q®VcY.uĵY%GN/Aj^8e"~v J.9a9 ciJ1!Vu@iXbU;ٗr. * c-.0vIoOu+Je-m&U0{Ag'F?ӧ)}}=5F{*gX(O^? 𞞫/I1UG_`*- jteAw g+Y<1B#(~QR]h6AD]-Jou4Kss,֫Dg.$jp1(kӋ)Lh(ǑOȢк7AR *{^-o˲rHnK KߛxGpbռd*ZF rQw+/[B4F+^NKdօ񜀛 ]UH0hr^D[s>,jfˊ0@;܊>]<YKNV+.hs?HrsuWNњP0&í]_$NYEOɗ]뻱]@y zy6;]| 9nTRKwxRt$-Qb;K܀-rԮ||FlN/"N/g\qSN@( *LR35ݥgEѿD0QފJ:jX()}ʇ !XS7T|3ְcw;f%#fӏ4n׫K'i㫌A{Q0:MG{}m[C_~?$(G&lvt,L,::RBUɅIu&`,J;QnGU5{׼yzP2q]wJWٴX$*Zeu!5*7? g:tm;EGoА#[`b:%25'GFlbaRxm_Io\ [}ly1z lDHpqsy^8ioFi]*# RYKnl8W+ <5y9 Y[$'c~9Ě;ϥhZbqwx/61RKmYBp_cҵ*"R10x rG<8 6$XNJ5x]~q+Wvj%:܍'7cLTߊ^ﵰf#.2av1fV+VY0,ZBtܹ}:3VƏ" 7:9Uo^Һ\F-ߍٚg$.UpP6@5=8GZ‚mQ|8wW5N\uz|E̚OZB֖xrZIpi&0ש6ǡ;5gdM.cW@Q8n(K .`-zp/k} ;I`+| ދ+N%¨ݦ*DkmH.Y8}L*Y6"}^r3xЃ ْȫrЅTwqǯʥn3@D6[#KP킹'nopk &g&ĂS;B킪dɄWlBpE֬OuJYpŎ+9ׂi } xXB2* (fӅo?o>W9!OY95 }2YL,SZq"­>geھ wfCϸw`D! Ap'/<~[*@c4ﳌKV( c:A2>MJd+:B,Bܵe' [r)]0ΞtMA`g%/bPIY!z .SA*{.4&fGnփC*RH ~72:^69X8uYH"#N*S$2m06qD#O!2j)4>\>K\x=֕Ac^Nu1 {I%hֶ1)n:xydYHȩBrB=*Æ㞚4ȶ"bUNހ'غH#3*!E^v$b?+5̈́/H8p9Nte`Y%w)ֵ>NSv*0"Vĺ@twҿN+߉JȤDrDQxzh9& /LqOnrszFsG>\Ά=>&Q%WgD4yI6`Oo_UWlW>#X#{`>T t3Fii!ʆb#h-( O{%# to䷰A !.u;I8ؠDR%#>O^jKsvrb|w\Ң 9YnUbf;7`0<19_|'k묪lXu!(0xDM[fUn_sA/nW%Ѭ*JƈTQvQtZbo,{ ϖT^k01*_R4M 5cGjէyyߐw5vS{3.;͜ȞC߼p*s޳NоQe|nYdR妯֕Kh qvf{Q\K]ӤoՌgOr,宺sU2#wZ5Yd8iܝ#Ύn:TVrcGA&Ynve[1f"deݫ"2+M >]CK!?╕3b x~ %5AێlOۧATVcͷFhw/Uf2Pb(')T:H)(yzj_}$,K`<®hv( S61$oHi?b_FK^wv~{0cp}= "3E;KNP d'Ĭ7>Nmt+=p2-hC?6k'Y #K[6P&kIXn I֙m }^ =>BY+^7mUHV{h @[VozM#n '߿ x[Ȧ&dJ%^;7`.ŷG]Sh*ox<^pYLJu$!ތ0AEccdX:)bMnb>, `WJwe 7dAˆ#CB IXرr>Rid/R`(`$%GM9@ah+X׀}|gڕ1Q?|QF8h'JR#%crCWAl$m0c1I,Sr̖7/{a罍U[Ѷ{8VC>G y²@ɹ2-鹾g_ܜ7W|I@sEޢ=W1, cZ3 dc,O$8(j BhS$sdwi Gf*N73N,̈́,&4Ŝ/P یdT2c?G +6yr_ɻbN?I^}O ,q{ܼ- =m?XȽ/@,MU,l>vtRv%,Zmg15էcZd훼7Ю=uxv-W W:%'Đjpo_IxXdB.@׏n^js MՙI]&Jw[^clOA$T{g*%O^"n L,ze[2<$r${{ą+M+pյ?Ҭ6R={B@~Pǔqo'PN-:UNji/RwRגlV*`VexJB0s#>`Q3yRSZB< Q>R*#_Q`d9 A9Ëꡒb\ $w6W̆znZ"F eSgku勹=@XQWYx4 ,1\ܱw# {C¬Cߒ/qh: 1PL|%6m0ķi LwAv79 >*xamW*\y?z)ۀ!*{MB̹,8ĈG0cKj{:KH pyBf꾞oIacEmӑz`/Vlƿ$3w)[Z"YG@I؊wcaKD')PQodLb'ÖׁVW"I/5_bט9ggM}ң%ɕuvm`uaWM` ?!|f𽽦 *x]cil- Hi5_Ąj~m΂d숎A6I%R< KMuS]1,?n nzmr14zf:&~\]|ɵ< ) e*H$u*x靓$ =L T1K{V NTmBDDG/'BQZ0Jka~%;E%"]uez7XNy COf:JQ<̦X5Wa ,q C&[wz{Z:N3Ffj&^{NsYc9zU@ddQ0ֺ gkswKxO힠3(l0zPpkԩNs-y6Z`D}wZ~D"ФL!C m+Ajv?|ČRe. w=d";SPM9#R āC]gY"{4&=> $s-/٥Z$Lid8tq}]Y˛Pѯas١UaˤEWvvq XmN}vbLeSUxTwjT:U# K߭>ݺvDN|5 E(N0 T B"en,M m-8fӁr[ $"!Z6c-`]5h:߫>7EI3v,Hs*l!mECdu)Uwgvŗ~EY&Gfٖ2U'2}RN7f́JJ_9R bjjZIY!۽_$r34߳f!2,L /}nV%"A]j|J_u1t|VX~ZBrswҟ+x2 86]L:'lcrs{O{l4XiG*?kDb:X쁻ʦ )UW&E3T5'`ۏV?T+60/k7!aZۂql]j 5耖DSȸ-fWQ1NfNԛWv\P}$AS H[oW!*mՁ kQ~t ~@rrUtE4~e*cChF$AWX8\6&G^M4Lԭl)) 5>,xg2{=yv`ַwr}{Nsn0̞ ~8ZŗH\N[cr,FWF-='?| $^?sD-s(>Gx["1ӭ*7m!K?cyBnsH\''jg( g7?(@xsFGl# m CCӠWx/xX0|c,,aǣ,4+[3C:@2 ?HfH7E0Ť |Ptw&z"ˇVd8t9ǞqĬUO9(f;v'8Ku$An\1 "_39T<&2`*6ftjW`^>E;$6ъ^/mlnt"{phN&:vzTyYSUR៞\geeiDZ'Z H4 8l+2_q [̙oP:>&,oR~2~ Y2_Dܱ~!XAҽkq=Gq 0+d"e!]pUun!ճ M>@7ʋ7 2./ۅsBLMvhq|!lO(fg-և]kTN BX?ڮVԫql2$Wo-Uzޛ q])M?k lUo&C-M L҆A*Q@H)1dCP]7 .i>{gc&f1ffHM?0oU/ܳ7pZ 'ɑ62޹iJhىĐ#3ѵKKH 0kXo,.oGQy3ٻB䲤xx6׌=A{ixB,fгt;>QG/D@ջoc˷8Ԡ Q1LajSXY9'U]fkE;0գs6%z+oe&d;P.f0b;y}rcS@ث/l`Ti'(7ݯok9P-Gj }ρ\gR2 6H:pqr!zc~~~ Yo+QΡp(7h?tׇyh"،a5{8*4CC?m>LN.ي]y'꾔\!˴PCZ뵵GUPM',mVuwB,pWsJFm7gL1L0_~@ɶR-2hg>Ey5K|W`_xVI0<4",藒t?.>r̥/P1A5M[ԿDrMɱUm̸+~'X KabIaȷ$_q4ΎJ >o4Zpڗp #T0O^_Ano_6On8W3c,ia8d/{ D,ҿxHhx9dݢOt3ӕG~)"Ve5{`:ʠ |P=? hČy,+dH[ҒvA}X3t:|~M}hcnCTт'}ܾgWOsVsm͘YGpyЀZE]q۳sdXgǮ낊΃0V9O7evЗh*=_zs)~Et/eTxضxI&-|YvZHإ^1ݽ!#T"ي֩YYTIwqaZFy-^ a[-?=!OΛ7KXB3sk˰fFbQ= ۛ pq9=K.k*ȇ>Ի~d6["!Xb1OEij˻h.`6M5$~x3#4;}tv6fӧ,Vm*WDs燒*"m8V- \3 WPBֽ5nTw_"(ޝlZPJ`?~ܴ\SїqEspDIRm^X~͘kᫌ?9IȰV&bngKtFSw᳘OF -*)@Ǘǐ'c}*,vq}pI(7)nR„ ;~݌[%j \)$\ey ke,vT]6oIaBU+[Pn3Õ}&ӱ bzlIj\7dngn٥`1[@WL<& $496u zwdlI DO3`F75wcvjO:@^_3Dj D@IM5P#N]FB':⭄\Wo_HМdNN@]c&Zb(RReІs,A,pNO?k)&iH6.xO۝lx{S9%l2}A6KHpf:!o`R70 Q8U  0$8G.!A /W|^8X \@iJ/2ٮߛ~ vCm Rop#,%b{0yxJj@3P^J=KP]ʂ/HClD3d>`lj8»*R5#;Yk`>iS{!Z6=15Y yk|K$avr~t~-Ω݉[D WőgEޢAh*奚P0@46y>= lx6ȑC!#i4 tCvˏ+6TP9 z9S=*p3|8'=]7nyXڝ:.((iA@jfyn?IC ɊM.y_Qn_E4F]  U֨Ԉ7|O@!(~(\ BR9sS}H^~h!')uaBd^B``w+ '><1ڬƥ]݅40irxahQwh649Ìfek2bk \!׆7_Teԅ沢8 _1mua7G*a"QUFSqn̈]ܕ݆YM$}).vv"T5 8xM 6YNe <|D_jcdHi.?;i+3tZ*۱sE3=n}] zf{I0%1ni:Bc*yGĥ(u̸s/.ж*ẟ4T಄`;+ig՗,Vo7D]{BateErzt CC(پ'pXXjW6ܙ?߻dY$>Ce˯X֢ٙkcp9Si+ d2!0J[ B;dYfD‹..D>L>ʬ\{B.¯^ yl|p/xbԻ{[Q3Ho#mM^O?Qcf`[.H=i D#_ V~aTvB7ӟ@7YFIȹ{cZוhqZ 质;7\Bq f9O״~$kg<`eK!Pskh |[^!|NV%)&]h D`C+ RTp8ٛsn̫_1<0.٪ŗ򗸤#K8-Cr2+Bux=#m;'ޘ{!_#Jne㜼U !r@ͩ}jjH:87Wڥ z:'Y ֞C( x҃ sl L[d}iy)n>ooYЊyW626w*ސ]񤷝@[ ڃGVe=¹yN:(T߷>L} k{N9f9q#1U9YF;+ȔZ#b=gy;VI 5 JkՇC]( I3nC ][2*PhlSߤf|#YwyTKl?s}B\˿ˣk5`g޾a\iKl ޽Bh3Y6GDGlh{GR|e%έDž6\0̰5rm;!A1A@9oRj^CT1og:BoCjc#c?5]pbMK'0I*#OӾ_~vr0摴Z%:\foJϨӓ -)w[Ezպ:]i J [oG[φ_o}jzaNZLe)ڍX&]`NÕXOgz[d]r[%R7jYMY!HqE#gKTs9"T=5w["Z_eMy?8BΊd OD`Fg V|ecX=NGXy9ߴYȈ0Lk( |@Y U- +lr9@3LsZ| $fXs"DjYmb 𪒭Opow~FM)3ES6 ݇VϖkW#r Lҭk C$ >~*Pӈi)/)6cݦZ✱_4֩߯3Btj(zl- Gd]BG ^v2?b9i0 8Ү /,Du4뷶&O~È1 [.jP wps+L9?nrJ‚($0j 0IL34MpQ_b¥wӆD,*UXUjq[5,KbUҸv} iA1Ah)t;< _ 'AʵܡlftmU>Ń}!oL: _-FԴxfd|E;okגr&܊r܅N ҄Vz v'5eOoT# RDinNᑜ얌9mk4y[#eˤ8\&.4م%m4hΎaL3 7[N=+Ϻd;g;:]X t!kΑ],p…beR"C6 )prΈ5gN!lb@2ٚ-,uu̜c"kVldƈAA40WQꚃKn%Ք>73.C?86p_9I͊24U,Q6jPwۜ$^Ys b$<58iA)S/afAr"UXAE͵śYo>9^篞h;B2A+;uwljiJ'@fODS<3]~>ݽ`s"}L(pƅdmL0)?:|[TSc&y7\8!KFsͲ&̾j8`US.0#V)#bzFrc*ʁCZ6 ![6ױ=Hj.*߅= Y[Y } |C^nOMiaHH8D0ч V[!¢Ӝtp|rDZU7w%@dvPsSYѷwQiUk~˧P-(wzfoMUaa s/06wpTUm&p*"9PY+cԴb.PlVe^.:,Y3G;(ɔSbiIaRݥ #a//n7piօe^7$>u}ZJxTTi{g,CƷ]g/vMU1V{s1-YN~Y 򝹯L~@e7mj()- IwxG"o[U2EdQw4*--P.[e(~Δ"u!(h{jZzDs]Q8ԧj4oC&A@62a&!ʾ" &6|lᛉ.] +at^˶L4((ONniQ*X֢6D2#tU%M`gspu[dsp\wUN>K~[~rR9-L"ͺ?< 7><̦3Nϸw<_3Z bTmH&T7ܑ3iRP5ʴςc8Pd f>XN֥Ҝ&gSp-gܤ)<\u fbʦ쐄~BB?CeYuo" ŀ m7Vi ٨g|Z7+u;jp2N_JX8Yg'@ R+!f`Uu+u- &)J]qhTP;T+Z^D0x"ކn#zXq5Oa@qqY `#kf5dS14zO}6ko]%Z{26G&^;+{п?3{GORxrzQRs -`jU qj2$ØEW^%9Ώ@|VQ#fKV.>͠S9w2:40j]ӗXEU6)ޅz8w*eUi{d~ 8 b$[, g%cORapp`KE1: g>KS9'[Tw3kƩ߀LM\>u&?חhkUUG ( _w`IU2\eٱwvO3)18#z]{9YVi9-rEc"f6ZМNfc{kyeud* ~ѬH~޽K5ci|~LB܇C5&ڤH>4I;i$Ί]_s (t*gGod6ksҍkZ[YV||Ij\3eOd}=JFXjq=ݳąDR_H䦩$/ ?ҷg +]gm`?Eu@h>}^v +g<6K;9kV護Z=|7iĩ6;(вK5S e8 DPbN &6[sЂHTQK8vaXs嵤M o[D 6( n6ndOy4^CHDcctgWLV5Og/ zؼDp ge=6uӊWy/MjEcWand=CcBF#֤60s VJ`m +N{Õɮ}'w(qׯ8HK ğkm9-(%1ǩݔSW9XuV5w:TAwZf}>=#M] .m+//iCDZ~ۿrk_S 'PHf;R_2kCŮV2}ͮd<'7Dvt2|im}* d751Mctل A Eu͓ YW<ےiS-1`y̵MmrB !PZ`\]&Ù9 )}Fe -^w0ӦK:﩮rIԞ;$պa9"CEL S9vt]H37~K(-E>#|F,@ʷAfȬ]a__ 8.й_ߣ&8fa'5$rZI ?#XW.9~?0Rpirҡujdz0@O/K9`L_B_` pJvS\Fn-`yn[[jg4) g"ڑ5 ? Z\Ϟ+m푥}qɿٔC8Jq @dDyCɋRKosQ5钥pdnYSF-Iޚ}><9{4V Qc8"` %\n%]?t1*leTU Rs-;DUؽKN31lPG*) =90.+n$aKtCPDя@-iEz9qw]ᵶȷ_y|'Uoh4Jd wBt4Ө9  ]^G R˥PY-;{Pvj땶yk'8CxI4ބSꬪ{YЕ mo'ѹpK3tjOgAPj:m T,qZ^ ;\8,hg յ=MpjR_W~fqfX75۶:$o#)c,&E,I&_̀c(I8"4jai)s#fuI?)H /YT\s)(G"m$\%'-{0"(ёh;( :ʏ'!H54=V,ݚ5a`#o-1XI@9}7 `R=ZkS &Dߵr>hte 2#.F1鑌Zt_ ފ-D^h0Iѿ{c4A2=#h͕k 1)UDj4 G=ߨM5c3p:㣙lWCԸ >ݱNiFS\ 7qK M=hkÈ WP4ޕyQ!$% v.ɻ8L#!ϡHPܳPz=\w<ע_4ҜDESŬ>G([>ѾVkhٴuNYs,\$rOS$`yE&~lEV6LS_M08 Ys2WsA$i> ǐ7'*#WkDHQHi=s+q[bF$ ȁ3}_mE"UIFm;,M0:62;ç'CFTvC#[A$0;"۫WBGE\1I7_h!{$/׼nLNiO9O={}DS ++إ^g!@|J9FMҎ$5e]*v%3#@|olt.O`v[}q3FR=#\Ez}Ŀrd O!o F6<ʿ:+lPXy>a=Zq"=9x <,ݿUi$2Y@rD PƠȶv4Ҧ jf+"%!\ݶwiάlЀ>7-e-sA`>j{R?㧄{.Ijkv]g3CO$[b6= dqW[:y @3 y{b%)@n/'i6/06&=Ib*m Ш$7`b}鬖ŅMm[gg zĜ w]{&@Y8ņ,ǨO\ (Oņ58+ogJ&C?X?}9d_/Z2y-9"Tn(DmN=zı}}=RHEęcsWEӚP*f8K/*D3u kF J0nVMTtв {+<-V@kn2@Ka7HR] f7 TٕD窮Qwv|ֻJ7_ `4%7bPC۽^F:NH~˂6aoU`/dc @h=Z!Pd4tOr==I OhQڞM+(.R.p$3_0s@~ov/)/5y>(5pY%re/ M",?z->]?Js9OHu%4FAdQM816 窂jKai16֧ۣb1Mj8m7Q  g,>(YHX 磾[7Tp߲!fbެ.6s2c*Pn@QIC'L#FVcl򴖕b}a ul˜U_bMn/Xϩ٭YlB~K'DeIMnEYRa4J{>qο؝T"rTb] шZ }r -_jlE(;zȹ?֪Ikk ]4"9p² gb`i \IE} :Y{;"šJNlը|{#I T{NP-Lw*$T}#Uk_Z`?[\m'r i|rQwg~//aZ-hF'u lk_Nb`.abOdv}\E;Q!pE>.\dWu!d^)[ūJK0pZ#M[_g@NI dDIM8 C&}R#~)) | ºEgS9ύLN^Dłӎc :M* NE>b\ŸJ_7rWCg|lK;oVSJg˓hd1#4OȬQ*GSJ?:ؠ5u!m*z7=w2lG`ʽj^ADFz}x}RH~I :r ݞuY+z(Gqޣ{%BSp I}ZM݆M~ݞ2UQ'RjTb߽utsI77Cά }/tҡpN;)˜J_}Oz;ȺhRۅ}CN˨qsw"Nv˲0 ,ԓEL71,kc_Qn*un]i% 1JQ?8H;/Cʣžu, p}0{ ,9/,)pqLD8h`qC'yQ-hmҶ&rhGwV]~ tw,$4n4|n֘|UwW-kߛ I:h]%(DK?[e"oA&>fdfPۆ$ފh4mn0awApHf}4f5ϻiq>%ttC%J]EeVG"mpg"~Vd}馽Y!;hccprec`$`$({nQ%D,ZX;9G1ti"tk[ A,}\^] UV͖c7^g*e\'Wۨ q7rٍݯ)uNO~C7Bjt:%^3rKb\m8> mLh'EG)Y*4<*Ycz&|Ckv-Z:qorA#J][\1nW~veƓMV GmS08/BeHH"0)cq)6 Cj塱Ap˄~aOy $EQHU%ŜO-=H~x "sU{iyqQ慆nqʋV wh%ZgZ`F"T+b'BG*a 9\|:rgWH VcBܙ@e irDxv / Ng∜xP:Y y[iB?M烠f}_jy/&ڛ(d|퍝ISvMvvy yddMem;QHJ%XNjoE_-\Y(|?w//Hh/PX с6$`{\J)qOa2Fǯ.q{3ómFUEj)2`o|ᑇFD{)W}SdžWP{%<4+]!HԪMK[~EJCFS摁ҵ@27YԔqRH*dI rys& EJ\̃ P 3]4/G(F^!cb|`t+Zd$)2_[ΐZlrtʴ:d2uGJp faFK.C <*(B쇲jś49˓eփG]I26XJ`b>~&ʹG=0 "|=>zr1T?ܺcfcX'2rB^b4Ȕcw%N350_}:!h1PT(39%Q/2 \4KHұ-B9y9'QT`odGqKMtnOo "M_pE[(0twaq_m3W/N8۟'L%TX]cIJ7!1g^^s?SZn'0A+ɟMSˑd4jOG:9Up1-ѓǷl1rd]P]Dr[V$rA͠4rTwdgؾla A>$6C>t*V΄ZXhF\[!\\UЬ~.؟ȼ//Wh*dp~$q4%lI+7J$*nm3UO\w4c{&B)V6ש:@ ŶMo.:it0P<qWL,\|> WJ a<ﰑ{p-fHZ -#xC2ҤEi.0n;p) *a.C 4S`9I*:q|޿{ : 6x\XF֧g\6bVHbBXkMba -hQu9x1_ў^*"#a6kQ/f۫ڌAGVόa6 \0FE}lq&LR:REbĨs?iefs¤V@%(6[D[jrk)`#Qe a SqSEt]%km'sxvtxC_rp]^csW㴟otdǦ̰vLOfjP|JyδÉjjcqh^y-F9$:^?NQ uNL]U`KHY~C- bB'we % h`K搗\T<}E~@5\"=D-(w>|J![6&& 6Ϭd7i7븧&H>ƌRr%vUd]ߣ{,o$n<oFP_#mZ8[_\p#+F^ĎAvS'f V!h5uƁ-&$< Ӛ7(Ӳgk+!oͷPUR9ӋJo< {.ķ]_ յJ~.BYpaa3'ohS5ZW y2.^N8 -f2ikϙ8vb5_w>Z|P3eK-4*[dRJ懑[䥩$M6Oԍe\)ws6I.+iU{pFNFjt7]*ǻ)ɴ?5 ] {&{&-ׅ~xED&UE'XKMGOzPKy 5A׍%,$>o,˙Q$tzM[\F JƟ/ts{dh=ǻ Vw5 5|"N Rͤ-|RRPTj2oҽAcٍvn".uĝ lI Ptj(o:{uv ?ʹh]d֯?/G-lH$ٙǹr|2$@Èڭ j.+|vrNOOPg`N]={r cO"Rߵ)"d3~膗X! p5(&*]wKhuYUV rMY_} &i'JwOjEik!"6J3s 2DJ. $X$Ԕ-Q/-yڨ mJ;O-/ic }ȥFka:D> 9 <먏(ꮶ dukT›Fd?;BiɋNOIrz=̪yW$յiO>А Ԩ' 0w%Q iWg!Ft|e @:=L^ {!x+H/F؁\D7U#mROĘEI#`9=1qPsuJ3F'۱u[x#ˌqEp'Ez5jdS FceMŰu9ryy֫۝NAiNV"=k Y2~@*4'W& qߐQ2q"yWF0Kk`ȊMSZTLyI\ Vȣf4po n*hMɐKHsZ)pE=uB~nk䗗Cqm*+z0DooR*ϋzJdBtHPr:XU6vћ~ dP%.&|Ġ[mXbN,&+QYBCV+?[V/ѓNƋ`EC 1XǒzIQ8:"k" [V{'DTD_Yī~vk:h _D:!58*jbv5i>O kk(kw1y FoJ#ӿ{> liȁңX̭ՄO(jf^S+ۖaY;I/p?̜l31pKdIȫ62&VIQ;濶ొ]y':P]Փǽ>CÄLyqiwpAHg=ۨiy5s(R~GQeW)h*?؏e;1FOa]ȏloFCd\y0reIM_S'Lj^j62>4ɶ?$65"G,7Y.f0`zZm.>diPU=ecYS.;>^LsgͰlkw+j"m5(! s3 2n̥[$ąD,2@t$s y8&p!n! 'g|Pr%ϾeO0_[3[*n p'-n?}{W)Vx:w4#G+V Ȓ0dR}X=;*-hXXF&ұ'O-pv8,s*g*%y` +"$L!"p>^X$e {1.{"A+mI-e\1ޛ@oBqh"߬Q W̲YW)&68jƯ{(YrK- K V7hpݓ*uicd$h)!_}y&=Q+B4YV1AO:&2DwZ4ef[6ڄ"{"R*_jBa,q׶uxchmw|9Q8V>'9˰͍T5Sĭ.ɭ&zJc훯v'I쿿Y8˥LI/,h(5okgR@yup!1tH* XJD&)ed|D!In؈)3)4WtҧT1Sˌ{!F)0W:jljY]:^ ̉4SpNU=tS&#Fl`vzX+aJohsjGoE[ub8躢\qft0ᵙh1 'P5FR}@2kr8 C /&I.;@$n,IFn5Olj–x#y`ݰmIwz9$YaIbiH(a0("uNlt 4]]r{kr[dr^BޗV?Wj2{qk\ =2գG%TaDD2cB 9C LF8|ȠhӐ` [˳[RH^.ͮ5Ⱥ.PV``-jg)"I!y`+-igXr;Ȋ>v;ޡ}`%*G˱kwziV\w$@RcqYPS)RCؾvD(ނٴj!!&P-;H? VTCm"/.N[ݻ3d bn! aUS0fQ$% Hoߝ_L1_S=o_oTM܍U!%D:PWڦ(!!wr%;kNpr ./L̳J $>0S_'QJnǶc:ci(gB-x^W0{uy9dOI&K !|}S/hik>9bcVRRzϡ uY-cab:%ng SP=VheglEʼX9B{>۷7 U4Gja qHݴ ˯œVBH0I5l9 7h )l\S·DMhNMnho#e|t\Gr&p< Y%A$m)ܥ/<%`ehS]-9$y<,mGᚵң1g+/↕)hm^lY]c#N\aH+K(xMh%Jع,$w]\t!T bZL*@nuL{ɨ7G;fdB6ɋCu`e[r!WHy1|0,^M%f6O}SgFV.W_9U/Y\[9Trd^9Ų=, ) kht'`ۚ\^XEIwJy׬[dll&*n6-Q -2z>}4uxJER%j z0/v"nJͨ6 r*NrdCm~%[lsЍ: 3g/<^PiE3xЎa~OT+PXcE|Sk:4P[rEeCt~rkERyl{#,Q]iwh5hu.HWA\%L b r9 ƲOqPGzLK`lQDy֙ 2"ueDvsKU UnǞib+ThSk LIImGP:.PLJM,, pnem/SBWB_$R^I0?6 )!)vq]&ItI@נ ޟ2hG?[ʷr,OWEEܶ1٨xX1SAF.+u=_f'WBQ{KJ8 CMNN-ϻ.ƮaCeª[X~W,N"9wԾFÀ7eo ^^Oא(Ur fcJ-x{󇁞|AuAQp{9AUPbE}$lJ*[7LĪ2^U)F}¼B[ "eCs9\d[`JZt?ȼ$3G=224R6䣡*_`pE x8D> ԯB8md)G!RȻr`cΣUY^ODh1zW|7Jʐ8,yɥAUC,&sC,{z`7Yx18ƋY |uǛpHQb~I%U9Gb΀ov9@tp6_>_Sy x36/|Iw0˃Ѩ.}Xb[Ҵx7ݰy6' o m<:S: I'c馯".>bOڕA,*Zu,ڣg++XD{WMPE>(< kl{C:lLil"OsTN_RzZ 'W1iuTM[03-;SU_gprI3trzWSc$*:"N&TH.1@M9.G1 Tf3!oԚׯY |$?ǙdkINJGPnxul¤d\ voe*X C欚!z-09XLn*1Að18C౽&ۏ#Õ:ɣ%ko SSnk12ͬ^%+zx֏ XzNͽb]<%D9:tVM$B[Z@t'-k,f /볁pd6uD?sܻS-4q az*Kmށ*2KK7FI \,x~c_]=uW`=Y,ЃxhKvۼXLBSD61A8ɤl304.5L1#~o+ vNf{}!͍uj T }VTs O@$ W?f:]z8o8UCG!ĠḲOTw_`uL|1c/7IrO *$%4=׷&?'0W0K:T0%&{jn-;ApW3g:k4yXiw/=T~-?2ڦq Wȁ[J#-5 UXF`2%D$r Bze_7-nRec2ۆʖ[L4\HFGZb dcY èka:T. \Eҿy.Vov <>јFwJ(EWvBKS]БJK)~9[ ݲ!, ]0UXRin)H};GXByiΑKUY1y!>=,ᛱRȦgw$r7nAaa&t?]Bp9HMIhz4vAC ӨӠ?)twax صzVԘ,so2~WʺGݲêK pQqA9rk%'xYJX Lp B&N]d2}r:m}~kzAդ)j) *>g}$*22͝RzTsmHU?eyf2;|bE83[ڴmYJiZpt^h(Kda")wM E:}4Bar%]/#0_  VWX^V"ݥc?<Ìs~xSN1P])Ѓ^'J6eGKx"2\Z\ߔ8r0V ,A,[S~7 #?te2++nB '!*,gM.X9c >mBꭲ0T|m()',B4GSb0P%@Z0α";ւbzk9x@~5GĜUrzNEL;&2n1]d1m_mեBhв`X_?N|*2!]6'r:nuL:!#'Zgf$Y.ytz)zW;CL;aTf mmIvW iwQKuYag3.PiQkT)qc_U(ӊuOOJ%mE!wdBMdj#ŒaFI ݧdݓ{c3ҊPsS*T2N*7uZ:=KhwZ_ˠn:2:^ݏʚl7t*VTx!&Z5OmvpDUT1S/ݶsG?Kqz]|jeH ALZ~M3"XGa(fdd0z-5Y[2ꔋlǘP|c=VZ_#㻓16M5+QlÆQL4^4)4B! Yijck>蟅qĕE4w>Lq.aYT!gj}dWmqTdSܧH|9=|"y!XŞHҠ/9 UmKcxne^iO6Z MGD5hiO*h8ȹ*tX܋9^)#F3?+< `Nо^yԴ*ox7b)]+QTl<돩fa"9py1"(cLr5 Yq}%l{{h[YL >$$7ABlg~SQQIUSk lU_NsغD>CUm߫u69_?ŪC -+֩@Hq{ [XsJFi1=W׀QdT gXJ=g3 ۟%0K-}v3]Q',|ݒ(H^UqEWOvg{ln##)2"dUgrDD**3DPd;z}F]֪:vm:͢Ȫa&I%&$!512hf(Fja Ou${6 n?JfP{Y':Y-U}k JG Yz6˄q=Nv4OJw.~GVfS]ldX3% >_2 o{~?Ek?_,nݵG~,TzK{7SB֪gC?}E;n+SxCX+b4j7`gkerZH)&gm"nVXRQ$ ~ѴfI*݄_jv0H~5 'Ff=|Nv+z.Ն3cG/5\ٯ3Cgi][,(Q/ғw蝀ZN < nM>uEke1ΐ 3_X:O) GmKLD f5o+T3K{*+P.%gdx%j4Ԡ^ 鸅#P" M%l~Fe6:{Զu.^WmcઁλfO,Ȱ ??=}7`3$z 6_ t E}m2R M %-T[AC5Svd<1-}X, ]YG[k-|A ?P)L [_]p`r^~;ɥ>jC*4oSö*r!Prmwn佣xV,Xue&M "<22hS]n“'N%GZ>KTOuBJowxJnnso3p!nBZ{Jѷ:0#숒)f6"m-7{5 jjBkm .~6^r!D1; w\|~ð0'T'gV(`iqn9x &ÇAxA&_}DAcy+3 3ɟ l"-`1?:;kR]g?l :wl1$($-H QV;Hm3!}x(Uu|mP V 9*,).>İW=,8zMZo8gw^sQA2P)w W֚/n] T1QDܭ1T:[`a ] Z(0č5sҲө 'B-T|GrOq(+,6DyOM #3F~Cl>8apqjq1{Ϲ"C+nyQn6[bNΪ(z}[y[w r:Q1WH{>ldUFXcL @ D ГXsGO0Op[6.y23uRkJ>LCJSS ̟ͮhJFr u˺vMo(5TJͺX!I LSv(M `m~U;<76;'G}'ʼ+n Xuu6k_Fg7%a֟ hwPӎީgm[wSаF*9GA_AR@J\y^],,C QoP &l>i7Ǖ[۸w3'_<*- Y'F*դVħgLJn(RMg c.d!O~r3V d_!N'=[A`-x큅^07["ZgwKV9(L6sv{WAyR7󣛯udJ1&,ۗ ҿ#RF=w/jZ^Y:bxu2Zw|; 9D,TcQNS XWvwr.O4(y}Ǻ6 Y/(RTߕ|k^TH$bA.Ө&\:ν !?vG%y~츙6[{\*>³N;h} {/WJ#™OAW bUǻe̓8עƑ7Y5=*WOlٞ鏏7b_\%V&Dp/[CCb!dof1w"ܧ]'kc wy02ဗ5,Qa)^ \K7J3Khq:K񉃗 xr;~esLi=%b4| ʹMo9!WiG"Q'[EӲut5ǭ7᪚/ BH?40]1'$l.B=<O<=&4hh Z+kM!N`:AӁ#4ΡԌ@P_:'G vE?,pؼC0.{T"͘zK$h ʐ \"5~`\N#G۰zEѬ\,_#=1n8\so)RC $3ZG1t@O1l@𘰡/k!zUq,sp 5Á %̍N2h?v mIqqDe@UTμbXMAFFJRڌwA zGA\8"2R)sDk1S xv,Vi֐%OOȊ@OQ,L_"/x F)GaW4zPF5-C@‡xrDp "'0nRRr&֫c_I1~`V/Jp?1l]){UBH^aQܔ \v:a:h>m("C6L̦Q"ZҠ;Ka;#ɋW"; i-OG?8_rfSR's >-s <ȡbxx|Jй?Mۢ~ҐmWe{8cXP}Ci$Vp!@ Qx.Ò]+B-9>myQ`vLkf8툃)R1Pz~hiI_>~26XmQUx4 #9g2ӈTkèz^d\\y'{0A 402*jxᖸQHn0rms1?^0+VAw Cesdm-g>Ǚa{ S}")_*"UC#4S-3*[nt"_6MצxV"Ӝ}E޳J]E,?1g˰׆[8MdpKuX L sXV#ktE(9.JPް#?O;滣N{rIM&`JGX}6~CVd#O^\X*B\_d4$V}c0guӵ.PǤfO䚾KDٱ;⍖x!?3L> +8 S PeVõ,N*_0nh#cLiVԉqPhC2>ҟ\:m`x$ CU?O!z>_65L DM#B Heol\7cOڏDq#(۱nKaD\|O py9;x i¨|V$mqo@테L:ӊR7n ɵN X[y L3A. Ki&($EƩ(jlj=0OJ5M DUa̺`Y h% 圄 u4M+Ўv-P&*7[S[ks 41 ]EcHOUM?[6AWƠx$S V9p?w\aJX3$2"_7*o ] E_be͎`HDIzʟ:KCPaުETӄel͏ؙ Df7'iDU*hV?hفOԖ1½Kvwh91VZ0iXL7;Qw~@_'H&ݘ{#dgwm%.9o(T #k ^d,'5#@;\!;(7.iZfدuV{!աQ_t <WtQ$S7)MٖS%JCP%O27ЅlJ+{T-MgHTD N:U_oxHTZAF&c$:(#ٲAeq(ϾN2iKh$Vb"u*BxW Ϩyo~RGpQXN3lhܗ-<(jX:!'02S3*߱[6K%4 bDyE! TILYh;2yHV۽2򰧊+!{UVө*]b~+z7&I,6_oV$ g+S0pwʍ8o>a~|][BVCGum)yN@S:w>=nzOvy2Cl:)`G٫;Δ'~~V" }>Hk%^p0ase}uVqܶH  Oh8jV/03JY1v<_.04 Ȕ(kӵKZMGCRPVjϿɖצz٥LiF]7L7)"hsu]M)/>S'7a >d0t#qgnOug`۴!x }d!>VIٟXQ l_-{6c%*n 6y{No}o?&4ǭ !oz-KHnGSՀP{^,˼J;aL4;U~+tCVS XF'<,`so*_!J{(:d!EZ/XBbQ_z9O^z"ƞnMFqt)ߐ3d6Ѵ~$m7n˫ 9w|h^Nاͯ &m6p-^ċn>p; S:NDb1rDI[Do7W'k/:?/DCIN':ƆLUá`tS ?T"ҕtj!f?T+@: b,&ʴ99a)NʽXȜPǵ:im E}+'{K#KC^[{[[;3 <}M4NU'zM gBeHA,gzWo'͵:ϊʅuŅ9?@1 fx{+7*ϮC1Û/mrWyhd_@'TqWmāS殺⏷"M1lb+ք/L^]:m1厫ج+5_H}|=vgĈtIߐx;{C׍A D\)Ts@  󦢴M6ZrIE͔vP,]HS-h|#vhO;w؊'{۬LC PاQ0dAHC%F`D.݊IK [ɣ5y1y?U9B"xʿu~f*qRMDᝪ)D<1OǸ́/HQ@gqdRM‘}8"Il',mdЍb_jǎC d MAOesq}\v>F85:>s[ %Q޷o}6}-hC1E_~b @&&Tu~5ѩ99olU)6_Pb}0'}"қ0@=!%'N%BVVa8`iU/(~(fhyc)iʄ'<))ޓԣn C'(`J٫Kl'P DGtROcCg^l ƱN [k3ĬJdU[7%9(# wt4}eI}q[F@]ϊajݹ( Nht1~CP*6/%P=l=;߮'(/-6.#w罂/>`f|NSb&4Nzp~^>(@{=??k\u,<$h u,s.4^I4E89,›vGeWJGXçB5c[Ya>FG|ӿCo„Ҭ?th׎$ ׹Yl ^/8?%pG嬭2lAZloƘ6f/*Bm[ ʬ?E mqCƑm-&CYDfO=^6tOlf my.@%>xʹ M<F[MrDN(B,"؉u V&d//B4 2%eW<(l]OY}PnAEio:A]%OО ٬ޗeE잾1y-^@xUnYi_ksa|tԚ!:4$ǎ%w~Tm}rKn7+ "$op=QMnШ1Vn1/db>ǔ]ib,tjQsENwa?䧼VC/8sVeL㻫pjc7ρ?FzrDD b')Fqp]uҞj*ӧ`WtCs$mQ :]4!uMBPO罼g7]Z ;igBSYd 0YOb< YGz% X뤰33crjLc_2A٠L˲_8;q] K*]svph}yw_MY6i8C{ST1}8i4Ey7(Ze;!sƆgqրb#XviN5V4A(=Ц  ӂ*2 @Rq۠sA_pDS -,#:8B +F=WZZa١_cmƾĐw?4J`p~8t~k\WRE/2n'~_NPa0k.[MU{`ѳ5+H+H1i692jB/Q+SP8pn1p^+ wxkQ[F-iQ`Kj]VjfbRYvz" "Fa"ev0Gxd5o:m^43N_"~})ڽ&X},?IXb< 4~}u8u!9hs[*7V ՈRR0JLǮ[}ƾTg7ϳH/YevؕkCp1pQ>̍'׾àHJٳr7ȗEw8.b"W G;t6XiQ*;6gXlz`BQz<{~^GnAc^ ݢi=܌54 (#=9z. %A@/ FT6NO V~o+Vjg(ƻy9*ne~ hI mAXK ZFВ,}LjE8@|ϝA.44 +U+bÐ,g/}.钑,<_&$ՙrݗ?Ō!CA(^El=/o⁳BP,>,MW{a=XM0@3 ];p w6KzDqg_#%ZoX沯farZ`Zt7qnk|jF{?_EA}YP9QͧBe 3Y9Fi_IP}b^2ns3ؾ6ogu!'ߥ ւ\b8 ey>mmC'ES>XX {R*#w?z`~<&<^݆Rǭ^*E;KL+:W'N C4?Y>(}{dO>J*ls˿0,|E:=tW LT]*h4-L(x*'_ʏrM!q;("+ҙؔ!/C$ByRKHen5fӟ.U, 8nJKlUz5|ݴݑ& aiRs7X /VípV5, O].ߋyCߕQM> +Ox~YS]ȼM)]9,{cF(0]ʁjv{䡩0t׋N/8jW\2jJJ)QSg: J'vx̹UnT "!\-L#%Gov1wv/vT F GDLvޢO_/o hi۟;:3;@czB){.@E askۘ{ָM`9jcG|bAqz$3epSm&V 4+tp $qeA=Č̮[F1{qiN&F׵.~h>&5"\pN_셸KSh"t3P!-|pO(C }AOr:ְ9 Xm!uY~~dlƕc#+8/noXǴ/hh \ DRZqRcE ZfE NhX h>A{t]wzfw3w9$*8rGWV`4:JQsR>;9S[lw:umѴ"WoIxϯubL6Ւ 5tm-X_\ Պϗ ;|g>|9'̡ohuI2[0=2֨Jm,t >XetY-ߜy b ◎D9מ4Nz] sDf7Ol*0)rS_h >]8Y8X?NރQ"6+LHQ[.<)Aa"<&2v) *^&x2ѕ=_ {Tl}/0gPej]/ e<;w S\Jj$ޅkIhQÏ%}ʩZ:WSQDl'*ln-♆t"a?Yg\֟e(%lF=!j8\ɹTq vcf*GV[ 8'J\Mp:Lpفo?CK̞5$=9ẚ+֣d9nsSz~ݑrA}VA"$ H0gZwJ0- 7zi\f}lEρ:j0y|ni啎Mz紆'QzMh:G}[+GP--A;JHY:?uI8>AfD c)'ctw04yS 3cx(;< v_tﱯV~kAd"T)4T}|)hZFQwxnj?ɔb9hNߐ~̘3XVfH;K=fs@K1pXV i&\_(;%aF jkSkMv@CSdhDnuH}q-ZMjm$GTdށ sDܐbMX1zݘ әuphs73*S/ T^q{x"[;3+30 ^} I87Gq0oVE 7?;č-T@Oa"d۴̝!qy̐4r98H xs 0sQ*v&WEp /D7!<Ab%H{!>E#B ZfKKţ`07|\-Ң'5DTod8!'Y|^QoGJt1Fwoly%{EymaU%IDEAo"4rxֽ'OgOĆC~((6 [3-8pzHNI4?*]f@P9Ҍe%*XcL`)*IQ ]:F|6yI݈np~!ѐc m.oX|] m"3d]|U;|Gkqʙ8bɆU'9s<܃"iYHhqnl¢si2WWDž{/Q3`cXiIFA'U&ՃQ" -\hʟpQׁIY]=W?0@-,,!XmH5 u$8PT, iнJIH!}ʝ+:+}[/|w@PqT<țIMûPŎKGoҬ/,($2W HOHӟXHli~&o(.pf7iT}< ww./oB*dKqWOD$oKg5PN]g˜Utpm0&jSomb2L;uߗ*PSmw˞-7slhr<]ngĻ ,B mG-IЬ!~P:L1QÓuܤ>3@yپEVrrmEY4kŶW%$yFcY{J-㚱WKirYPȳ4rhZ:TM[gƆ* 5e=8E1&6$O^`$8f4K꽎N+%/#/f O"6Rޟu!:t"U0#}A 쐟Nal{pHp7 Ȁ̍[SQF; `3r;ݼYLląjf\(!(ߴ8^ax8n:?~;45Syy V^4k0?s'~*A\8N۔`А+F8 Ę0,DrAˢ}5AmF"@zeI,'ht~ےqp#5)o~W~{R^5f ( !s?NCl,F:TXynuŇZ8-ѹz, ><;f?Ӳ)7~:V`F'gT-:W'yzpGy8~0AVv8*+$JI@'=+a^5q64 <~.v9"_w})jae<tACa%Dtrj^_VcVGWglcS _t37-eQ2 _JbQ0tKmk-* yH~8jZ"_ RZ\&x\ Tx`V-w,#"vM@9L\s*5ushRCmJ-Щ݅O4MZVe= "|+o, P¶dA}ULST1G++H8<%UG^L͹ŏ// x@ g,t?U -ꨎ;ۑBƪƭM]S-vӷ[`{"{㋣x9妏h⊛{|G"`M6~J2ePHI~h]M vSu_IJQm Ʈ9!_'_nN#TkxJSQ|HΧ/ r.8g:O=SE(@yI{jޘbֶv9lB{{ʟ^̶c\DKy6CL~;}R#+&S:vľs1p:&*,@q'U<;HKY_Yd9uZ' ©AԲqR6bFoT]2RtV`qnD@v1`D|75䙋R}ڸ~fW[ ƂOq67`]P=Hcې81LF!S攱6mt|Q4#;x@K,6tZNVKrEmuNO9 }K2TR,gzukN&$yhq@]?N<vҚfS83FĮM}1VMa*~lÑ˞I#*nݰDĆL/~BH Cjzi|F+?n\0錶5,TS&fZ4{ %+t$ CU/*)#$/>˫LPݷvVxx =O7$3 |#ILRt[n};HkyZњ*LYb`O,S1^z헖~2{ghyh֏bbyz#CS#y؋CX䌟 IK>D%С%mG®6f+Ԕl>q#6XIȩb;R_ ojE|dǗˀp]Щ'bf;41$;77h hד=s`ue0Cr:tTB,ՠ9ʰs¬& zH XK6;7Qū%ΐTն|^˞JLJC7- 옩vz\c`.\%eyi a> X)|u=`Awb{a Ux3f}eϫ M1&y' P  pBBn?Cp̏M90XNA͵3Hʘ>:c`:ںKxRBZp+;fhO-1`I̴>`jY~X qfN: T T}dJJoe o+HnYhFG[RUΨCB!~bq|n츠-h,G]3ЭV3 KFHuDj]Ǡ[69~=H=b |wb!9Į:KDS.WZ,9[,< OR(azrh[Jew-joV?" 6u禒 )SE󬖤/4c!**+I{T\[ԬV"\3ܭJ$zyd|*w)Eb6BYֿ"d{c,mۉ~sc-TҼ3}mȄz~Y |.l;8Ⱦ!9o0y&N"W|h.󼻖Dǎ~]􏍊(ZO27vX UW|ʌvmx${xpֶMiL3 ɛsU.8vxؠeu&čgL%p.q69@+>X>{T&6M9/rzI5*hGLHAm_}ެu_$'1pԈ9GMS7xl{ћ4m“w ]Zh]DŤb"zC'~ETJ.`?LhTC?0Xt}| Tp-¬C)e#(;"BugK0  ,QjN+>*'-{֏E3UBVW0:Zg5FRT' |?\MdUU$/瑭>z$Ĝ"P¯[lQ< ?icu+tE{uk_S>Av[7lҊ/0-)jENUR!Yy`c#1 7[i6(IiXy P'$5v#[[kJmL,LEQ#q"h +p>X'~TJj{y\w=pHW#%Z= og+h|S Q5/tm7+xo(T!͘~/?=O4"hG䭭JэNNbslȉs nx{;T!._Fyr0,lH^K*)Eh:Ĩ&,Og_;Pqh2ZVsJ9!)L`Zas1R"ӲA!OժD&4~ѶuY7ȑ 9qE*W JCm~/.G/_CBX%i]y)CbP'8{U"]YJR5 3IYT=LG.NIʬaLS]UBc'TƫNu~7JH;x}<.xèI0v:{ nzgw4'>/F dT] 3KuEF愷 TϜ=6RLPa8m}*ܻ՗~Qf`ҽ]ܶ`z @YfKBvxp%Oe`R"eq=z2LgDhq1RώqkP9ñ4q1JXGx`J+#XbLm;naᳺYdr{(`3ڝ Y-}EfÎ64 ZYCǬ|4Ra2EuA;8u:Bf4 ݹɺ- YU8P%άQi' R_xd0Jు ",Y>oDjj׎2Xt૭6aOmvʖV_P!Ac/ ŵ\6Jd8a5._eq!l]f&lqbl,CA~duu|EN B.۳Hi$2lQLʼnl'(Y0[t9-?jw}-C0vp'6KiM9)(MugнƱC9GI)BN 001%S:^R 1걌]7 e _l̙ `E )+LJdz2ߛ͸J0, Q /wdmN|ba=N؈,SbBEj8R)'vE "" r178%t?![(K-ZDn&[y|\Ccxhv+ gGqj* Cߧ2h ٷUΠ l .-u4'Pg'v F|;v닧Jt#B6sIʠp 8!wټ 8GHKzurrz[[В?OgBh"{׳bD#$IlkTA)Ccgqw4N&JTENRZKiM1Y:WNjC~TÁ3: 8مŬ VuLȐueY.7z x)y}Iʭaqo@E OSzf@Ueb%Ef"xk4\\5@y;YyYT}=YLfga/(UI8h2nX gls} )G-0hAG\:vB-1PdG#Ayt ;6Ng y~_24i]c鬩ceIo':M) B/dn<ڞ&<Gdb~|hi g큫gzYk|)$ A,4޷FO 2a8$2}L 9[{>H2}g)(Z-["ƂM͌.n^`e&ڀD?AE/* ak$ǣ m?O+kYLCO챺HK0}AN4xxÙ0Nim&3Wx1t+3M=M-(Kt9\́`c `fnI|Y!=-u/oʎa Ll*(Zm: k %:rU%ξ,m3ذm˓6WRuxB AZ˗|`|dj VkHK7B  fJ̔d4d"R7SϠWVhZy|%_eZ gh|*+kpWMjCn |=JdzTw͑R#-1' Z$ Dm/S‡X˄ݱD9NU8RUZ=cVjK >'\U5lBҖG,q]7F$CclxfC~N$E Aiq;74Js7Ezo3R- Zsh:Y̱ |Ys"k\91-p~Y㛅3=m95 {R)$eØ!Z#AjϖHԤM?0Cis "kcaC_aPzEȌG?hϻy6tx.L xC=v+TGEӄ(˷*c\ { eí FE*(Usd9 &*vd98$ٷ^sHKqŭeEk!Hy+>9pbjn<*z3=Ǜ!Wq4$deӶVtx&>&!\F5ZR.ޭ)LHTa1~w__*OS]!UΝ mDabDRXl$ǦYMW$. s'Sm'\#Y`[gUi3>IYɔfA5iM^k^)?rzlC Fa9vf\@X6(@w(&J2b⒫_M6z|ɤY{R"G2l\\gGKGLh֋ ?/ݖOs74[?M=FpH*y:lza 02B(z̗I0G)5[_{=v&%]zt&A 3qq**Gu;1^udb?`ؚTr?yˢ>msZ^/nobNqqa+81.XVGg%3a7s6\Klu0NՇr4 rxp7|8i^G؂^tY{+4^ﱭȹXcTV5"Iho{ULX|&1"??\AaJr(gmXa=Ƒ.ǽ&Jٔ[8BZDmoXȨpOlHȨZ.%G /u2 ,/;%E>h$T2NLI"S*8lCۅL5 w=(zKEĮSؙy#=TGxד&2mF¡zvطMf+/葦3$ l+?i(uwKßZkUΪ@PF{eWk,JMVf$mݺK՗#Z4ab@`eQע+ۊdB=i'R u1uֶiVǂKF8!d/Tc[8rfi…J"٧bC fBvywZQٍŋ~B l%üǤ-pBd[]ᧈ uJLi&,KnD$%wu{p8˜\aEEOJa>Wl UDV,ǡQ᭛: 'v A؞f).bρabnQG.x6ԃM"G-u/Rx^W Nͨ`\FL C%GWǁCGk:hr{+ަ֥r[:@XQ艆V''e(^/)rw>AD z;c|v1ekhWR0Xu\TƝ= {\hB.i! #%<ݖh~6)Hb0ֳH['an+GLAˀu@f[77rs.mvp&iYtBOj2늪TSC m3oYk& uw*;Rw<(|'RsԝKOu]b^m:njLfaO7,gt8-FϳWSelhƃ7D9 a1Cm܄*Q#S??3<_*b1aVN@XX$)̌]BFT BPF5R 2]Q=]GEٮ0 0ӨaqB9L#Azxws/B_h2E&ZWO5* "/-#LͣL =aQ! )?W:Yޛ^|F9 < Ң’k*qvNI_CT -MxvXY~:2"XK%á%ϲk-SYƬN_[*Ia\Vv]hy uQm^|ri{ƛmO[eI>މM5 j! g(~#=* z %Pvr=dȒMHU%qK_X`.VKdbV5 58@vcĒQΟH53NO\ *HOX=\t$:\fyB\bΞ$(*n9 4Cù,8|(|$=1 +i*-@L~$o2nDkztHܘ?)Nhfڛ^Pm.*m0p:LuyF]HLG y>,zOt\0ܽ뀱pǢ*)?S}=ʎ÷u;f"HI3h~;Xu[V4BC8_:V?$eha/G-@$qkė3Z|T/jW's EVHEa/ &Qdn m^VŴb+4 :xp6a1XPxqFQ6qT@<3d^ I'MҬAN5_O##fzm8\/712")ZeR$OR-Mns*Mj{$VH[qVށFg] u ?&dd>6MQ S<&8։id{|u\꓇'ɱ>ˮ3YqU3fdVWJ]o ܳ>ZO_Z/bh˝HM}١P圓_eMb4$kl {jфެYɊt:_Nψ%pv-:M>d 0|ױOVOyLzD+NUY9D꒠<5ڈ@4= `ɒ1U{Sl$S~f+ΔuaECdNSS|=!q!+aӶl+C">鴨EWeU\QV :SD*tNtrrVFMwf^&6iqϒ(92ۗ ſ#w(}rn}L`/R FS$ᆡuDǤ8e}ɍuv̹wU<;Sd7>0ʏȗ)O/%zD).pϝhVI NƃcO Xe|Ti '~Dײ!|x5Ur=?B ]7! ^cq"ރrƣ~bcCU&"ծi4.w[zmspC,kÈ6&(Jr`pvWp; W-eZ^m)6n%~gD)z%75dD6tX5YLEmvE0e2Y΍/m`άn`|һ/;>r)o͈A}#YGp7sCE@L)/>6E u(S?t3Pzcz {F9N'W馳IAj+@dpYa~(Ұԅ!9s\݅JB\&UIp}{U)OobXO^'Eכ -Z|`6ciڐsƠP* ;NA|uȝw.e|}K[kD jb_V]/pՓDp=a16L0;)%ОZAمc! /5cޑxʃr4!"o߱N g`JEg=[tc'/VVȲ&MwF~7g'_><]fS%RYyTFSO*1 W<(+a ME8]]NZ0@F޳L=j,,/B18)oV.+''K' )u1=)mU2=NHV1+5~Imɘ;2Fx ¬YS?ȇ>ZGOK\Gb: zWsh $,ڝf Ԅ.9+)}2Ynr%9ﮇER"B=,PFuCd(&[!xCO*`\.0P%dlTuկ~>_0HTNYMwˆQjAco(J@Q~\"GOqj8ԹI;YQ?J:TB3VIPm ȰpJNgR|4Ftg/_INRlCob߈ 0 7RwyxBxUr6GdI)lr"]=ݮL喧͕LE4 @xNvhqCR?Ia&7h ɢq6;Ow |Κ.tIV2-lԒNK)F42#&kFk] DI5IН6d`U1۶HWbF ȥe=bgxB?وP–A|޻Wv8Ǫ*L hh@+ke!9|>:/Wd)/iTw-%n7BN.,c%jaF t_擶> j'zG)Rl ǣĖ>IhbL L~A?L:R%oM:<0{Ӽ$T}a n1i{2T=x O1$Lk0IABe\DP,p"rt2/0 ?,f:~ a_!FQ߸#3F(?\E$@0R(ĩsMdNPѼ tr*T#Gh1{$C蠬Pf/.sLWꂠńuca7BQ¤qw7-d@(`HV]sS} "0cuuPROACbN/\Be9}eVob*Mlko>l}QW<}]tg=DBUQ=pNIx'h#[:̭*j`(?&aY@oS56vLPb]w .JN7=eѪskI Nk!sbz_[_22+Jƹ9ޅjLdյX`ݒݏr7j M>kpC틤Ԕ9+-LfzȪ/?ZjD $1 :q(mA9 [-0yLZ,5e9kTlsޱ#UR)y;tkP;hj{;[Ut=9do2r##C.\˂ǔIJoPsD,~c0c Zi+)QDSr>N ڡ5$r13o3'J 3ΡrNi|vg6D7=[PyBNՙiԚͪ#FUX]~p,g#7'<\7Cm}b򭳓-K؉FSmdGA+-!U5bVc>y݉ONW~P )}+.zr@|jE#h7YAqE/ōMv7"Yq3aRt'! y_Q1ɐjKP65!'.i ۟˭Sf٘|EI&k-4cLux!ٶ'MÉ j& 2Ϲᅎmd)O'CO6N_Z"q^F:ڈro^"广wiTÀgқY](+8ȁ^wZX3)b5C`)7j ,ZtOgQHq'e?4Dw<^*{*(z9sqi گ ۢtj.r(,'ێWpL4埴N!sSM_=SopzSc![ʿ戃Ĥ>iG mҫ)=T˺@#QZ 5yRZu-0.&pfYl@ڲH1\_IwQ4S)pT(ml g̲7j7@x$BhA\n" >'~|FC^VQ}|M#g1x3~IX4^',lU=K1z;=#K1WR=:)*)uM2s""+\7!7 |N La(TGA)7k͞>sޟXwB4A?GPYRokj%v_7Y z#9Ji Y[Nc'hHZ+Jwזg6Sorz;KDLl$tNwu]X(Q['C U TVv)ٰD,fiu+k^kEȣ'WU;wg;cSm_j^eQ9:;.L1ID)oKK\)ퟞS06!ɴr҄ZlFDUI>a|Ya{ 9bv5`jA<7a~Pv_}:滐gՐvդuֵjД*ϑR 88/d8jzfjji3~JB&ɬpA ,9h~󻪜QN9U} 14Ylâ1F۸m3e8<0)*4> >;nd4v"Nv55j2Ui.}*=SE3UE,P5H]z^E78? zL5,;6̚ 01AE<:8s=xKHQ1 ˈ雡$TcPoM/;Vb^a4 _6Sm-,0){N\nӉ04$uCtd[T=R: ^kZ\fy_M_NޗBMaRD}fi34-Lum-PT/d=UbDBD#>zw6Ԃ3\/x6k\Y Zb-k8Q&R#n."VCGg/;TJ;B>ZΥHgLE}'xEGeQ [''D >Dב/-U|ke8Hw>XJ>7r#\SPҏWS%ީ?LPB&qۏ:(7M\]x ]7h&aX ՖqNEӦs.d͈ợLF-Y7QOjJ%#kW}+Ej A Z_cB cʅG!7K : ufj:R~ ꁦbz`GCKNQfhkjqG ʄU3}/cP.qK Ojwe9dGu۵ߨ*ݽ酔a\Epu64םrk!y'7XL~-kVJy0 Td:1R2k\]v؜:lC ?y^M\W,t; 2XHp)1Tuh1$e#3z}N1qFBK;tu&Nh*cUsҊ17(u?s@|˹y/#bw|x%0>ʶo|*M1"E2do @q(5@ 5)Ko* @ eOMˉOi$l1f5,B9nuutVg T86ݴ˨BIaV9ha_~^ ~慛Ou%]7_{\7+Q3t? ]=(X?i )4Jlо3EZtrXV~"HA4zWI0 .s: 'S0KzɞLLC;ny~[EaV'QCǝڷa@f!.L^ر2KZo5^W [Sgmy|=.e/\95;SKg~ѵ<Јx)w[#DhO)3xNa<|)t9hI{\ںhKFٜĵ}gq֐`S)Yy&G'iz"ӵfS:jYcJfs\D |If "R?BdZysi@f%.,H럕-YS6 +i }; -4Q“;8Xqe4Y+xۋ {1ϲ &;S3u s!$"S&Ί6e=>3MːJ5p^ 4W#kW4yQ7Od/<OkpW2f!PEUVg{eU" D@SlTB _"TR fxhgBy?HC9 JxAB! >&YXs喔{cM k{<4#GlAw:P_Q5e_XJBKĦlEz٧.ٮ^QP9 mqeꄯ<}+xڤ9r}2?3 0&0rX_ ܼ|"n:K4\*Xcoj KѥSEhf"23M ANqGGtW[{vWodmvgLl58+A1$g=( tԑ['O<Ó`&R9i֯6zgx45Õ5^4HL\cO cKYu[\핏i&grˆjf8aȃ1SHhҿ L}EJ 3P}EtHi" #A$q7b >VmN*#|,bLJWz-fk`ACt$&0L&[;tVW ~V nD(f,pL5-;-`NP䑻V9rDP S fydPՍABi4yҘ?S:<'V*>c7<NМƘA+~^]W )kx@ b;L0P~Rn ulwN1CNiAczWuU^' tl/Ljh~ы\C:l!7SSW?jBY̭a(5@0mO N n$Ch%TbL3KPh\} Q٤~I dH۷'C04&HܟYW/Q%];р1} oBgyStIb3EXފܾQg~|q6J{jB"FH6Đ)zFi+=ywi˧Nj4#}h v$ lPL*Ϊ/6'b=vW.ONn6J_o,T"=Jj[ x1xFyR3ⷁT38XL] 3g%^f/ޡWAupXe%.; |k|1X?,[14HNz8ffr} Gc 4\f!)ß#P5n#)p4w7u|:F ?G* 뱲x%Lig*\M;Yqd$F0FEȰb/NhÉ+i]z~!5>H: 0rP?=㦮MKFL+-CAzĀYN_ $n5G^# Kvs| ?\i押HY ^a0=t_c`R?XhCPQ!&(#rJH.JeI.bO\ɘu\+C@G~5ёe7<bVv_Zu7@qP=zs6JIht9w`(")gxj7Cu@C ԠQ1v_0ϒܶZJ]RZew] %S[fBZ Ýv ԌmJ}R)=Eg]?Ph`ml{?8Q5o4'H91:LntGS4 gQ@$Ř-P~"1j_KR'sן8I!L3c.8-w .|Xˤό<?=o*uGBX"ք7Qs޲ݝic9zAtʖ8'gu $'eW<|`*lr] LYY{Kg)eNNCx=&k|\"H8[ƥ/ {G*B S.0ex@؟FfHۤ®e(^Pwlps/|מNذ2NRju?* 4F "P-01B1AfϬ{\-펃=]N6<!Wuϒ`Yz[DmF~nv}qf,jY?k攋z'R`=X>h:LiB>3 ӹ3 |&vMVm`YJ~rc&s1|pU'[jF%6154!S|l{K{:fpN%c.tirhɪg`\#N_tAc5 r+}]M~ӝiCʴf'{b~=e9`6[bб>Nr8sos k+vȵGR>lQj9d=]z8sSې |H@J5c):!xBz23$)o1ג srțj!jڼ00;ĩ@XI'bdjlkkyw[eE{@j|&*~A-eZ"C{jKjgUe҇StYeF`x:5m 2/욧|AP9A{ҙCx\A|y2HD S"%U8J{~b^ 75F00Syk~M Eu=gzl`&ܛukW$RGSWS_Qt|>]R\x7ջX).e*=1|=F}cj$BmDZ9K۲LJay㍉{Z,;v=/djTëY*;Qx]dE`Ζ}6r97oC֭LΊ P㸮)+ E劻Y􎠅J4]<0[`;h&BfeBAtGǵ0P~cퟒɢ{$aKCĕRSщv9Y]H 24y.\(Zb:k7ehȾN3A8Ƿ<`H_*J^ZGC*!lhY:+X-4Y Et !yaӋ,k'Z;#6Myʃ3i6(mǰGL E0w3]CT屮!Օk׀8h~۵`oR" ,><ʈ-ֲkHK&r孴Zae+,ew~Md82/L GĪۚ7G7: &YTLKy{tlR mD]d+7GƳZ`ǣA^5>*DTw(U;SyqnJ}a>ڛ,NI\(Ū/ЊYZ4ԧ~Zfáˊl)`#% |]'1Yuیфǐr +4}&J c#ͪ]xcfGBV ްyzOgŘmHqCv¼6D28eIdKoɩ7"2䜛F-*գ[`R?̽!$Q5tpi0Fs0⹑na3c.^ĉBE'ܧex><:f?'jM^X

Gm YObj2&D3OT⋇GX }^O=q71њO` x%`"c`ScTnkNAhH/{{1fMa=jkyf-mNJ@s_NLd M>XU%AMeF8lF Ujkw:v~ iwc7vAb`ͬkv\Q D,N?[5gc/AP3)/havI K KTYյJpU5{ثe?Y+_zإ36L ,6V *ļ:w(cEf#,ݭw*2b'~T֡L^5p[50Pɱҏ^42ͼTBWF#v{ UJ-iկ^ؕ8 #R>f{PyAŲwƝFWH>&GHNH/wd%Kba^ !z ӁjT6O &}П&kG:};kwol.6(үS >n"f'BDžU!Spv"ub9?h?Mn{cv3/ T LtHC14 VMn-f?ZMڵiZ#ɋp"UmTY-5;gVH8cK`e^vOB7 hDY()"{HXF:\"[0ͺZe۪f](3< . Mc5 z -*ۋ_ox#z$o\*hA  O#oT@asTz|Ra18 Hˉ OՌhF2Fc|yL$߽?w*0zюֺN- {zΦnL<$I}/W r {2:b4Ƌ%" ɚm=j62b[8pټ6.s厌{>.:=qpGI 8D0*!7;͒xL"N}eHw\QTIVEU ^iZ*{Wns1k8zIW?JܽiZ=io4"7_h5J ,Fɲ\`;^_x g"~:8"uM[-,A,(wƒ2Z!7Ab AW=$]bX@eU諢!$w"KD7%!؄{+nʔrA&B L7&m diK)Lh#2|/Ga >6E2F%OJ>E2vW#IS'drl:hZi!$[46.zr+BEH~x-X//^ | .Sg4#B0f\:!0d1D\U's 2v!=HQ~o0KlsUlgˆ̻B:flZ?|l+Z9ýs c~{#F/n"cV\sVGe Ir5!m\R9!:>ކ wJ*ҥeX RŻsp)_yI7Ӂ8DUP#=~l~PHh-aDy4 *zs ~Nru>w׵ _wI<nWU/(ǵ^ǯ~l5׆zk,črx32Dz)RllIq'r$Di ` c0ZaFu=#]K͡Yή: D_'0֞$zoHMW~#M$&Fѳ,x@ϮBs;X>9݁?_]/j3i +rGUŐsƋ*#OBItfyHv㰩΀t%O 7@e)Ѧ ЙypDᵧ Y-C@|ls]Gz0|Cݸ|@#dD]mr*d8OQu)s`ĸyyS^3fTL|@ߌUI\m:`C"0U cӖMjՓ nLPc;! 7_!ȗᢕYq-ln&>Fi#HUFm>1)VO;\JO&֧eMN%%-:XƕbOTE?՞!؂/WgPl?$^|кEr|/[㕹v+v~XSߗ-v@bfҾ$U,:9͜#XFw @. "ifX?f`k>g{D]PPomp{$b- 1軄&#Kl`9RIO}QMYVr4{~ԵcϱJ`Z/È#&-4gMzKOk.8\䡱a(+љ)w™O97Ke&팕ǸDS D\ 'ɗ~Q\G;tҝv \O9Jwv͑xiг4a勅mC4yicӴ䧖ͭR "|Z6^rmX}@r^hKMle-(`'P HxÏnC4ׅU:~ Q_Xs溧 +(_x u, T&Vj9Q*Rovv/p4vH,yCˏS#tY4GI܁ ́7QGUuF¡‰T P%9y-ߧMK 9_ pX'o 7dۀl+ꎙ~1 Aд:KVP-I> olXj0dGS?J <'v 6[)/R,R[H D= +Uv^9_sv|66Ś Z1 އ=FE! 0[R$y>Bqc Pb<F%od8Bme.?1\SPsӠ0B v Y[LBGJ٪=^gR  Q֒w|X]W)%9rcUpBwOP۪|+G?Pi񀯣ɛT%;:mބ? $VbXqa .B7XF/Vp gOvnYCn1Ѐ6V)nњN YfAt,za|怡Y+cyfD->^D.وY *ߑQފQ!rWk;8si(Mκxh[ ƒŀgFr"z7asΦFhw{s. BPHu ͦe/R$s9t,27oMG Ӳgur!)Kb1m1\$ȴ#ΰ 3>V)TܛT]~vZU/ F'vlT;xY)>-୏OR/ɲHUSHKjrx(p p%7H9@=[\?i/ "7%O.MU[C#Ќ*X ( kqy܁SK"VxT}yH&&+64&riqL)NjVv_mtBpצJrvDqSr3/kCg~aG앋ܺH7'h]|,:6Ҥ]FrzROOOwRLPo!GtP*)XJ0 16Wr 9VUXYϫmDpġ6.v Z5*f!p3+`=$>fI@|RtLoy?$s4 Z,&4i*ЀcpV'^LZ }ҌH>Eõ}jX өOrLY=JU6|"ucLUC/Gp> d1_é^&QākދhldR޴\a 럅G @b9~$͈g7*C`Ѱxz+LZsagVC=)+XjMBO/)yE0[]\(\jHn` ٫_0z/(qAG _)S4@Y#:nfh*ӄ=b`IݡU~ FڡYܼu=sUYHWKZco9oHNAgO2^E%j QPȿd.z՝.E|!#ȿ3YZ9Q 7JE ޳w=GǠ(fui7.s .0p'c@O:6pٗ+Gt!HP(lڱѕҙQLTn4i,cBkq:?]aW+&$^}fIV=3'Bl:ŬH<;~2U9Ѐa5C]MG|/?/:ZRzt @QZՄ$"Æ8 Fu*4chyڳ1lx%qIY92V7l][]>.,!(X ,PD@7뾩Ü^!jۧx{iQM9W3^Zkny!w49`ehA(~$܄a|܅/@1|I⅕r#Ucw埁 =Ws~=68`>z{L\E~/V[ 5*~#WnpDO7<&RWX8b)d*,xlA)z}]"[l׸OCh|0R7*O0M[A2h Zh3(q@q"_YuJxLJE un瀕mzp-V/__ k(Aǻa %d^Do)pw#BUce GŴ/rNg~ þމ;z,\/n{vaک[_e2Vߊ U c>(7Z}ːj |]v%gt:pE 4R K |I׎ \ܱImO)< KֱHFr@)I Ĕ*Xt4՟383NKo zB y'HbGuA0۫Mnd*?9EaI5e5mg*rK/b?!" @ ƿ&I|N\Ά;L$Vȓ_H82Wj]}eΊ Z(N/QQ#T7sQY̕2R%=[:r6֬*1,&V̙Pӝy/.tS:k1[6DVQF,E 21^tzp w)RKdi[PN#+짙'ǖm$-'(E9)qav+Yk*/e ͤ1lry'fMIʚQcln]uQӫM^#g!0p@xw6-DG`pփtqnv}I e`ev؈P?߽<`R K[o!mE]/!aN bIaܸ(9tx1T 7f)Y:n@ /QuP h!{!=o򲲠]wQ Nq¯j2/6 z\ߊ@@i7"k7^Qؠg;{,5A+VLcc1FǦV&9QP\\eݽ;EJnip<8,(ڏ\MI[F]$'~ak&0s21'Psxy{C$7fzZ}K2BLBj'!b7dWyJ@9"TMp CɖS9){ ψ_~x 0Q3Փu\qobcb_ʡW>[%:ZB_sǶI2 [1j%T Tlrqne2qE Ra c9]FA> }J~{sQJkΏ3A֦{kIBk驃c=6y M [@kEHZ,atS;O;7b LJ^]MT[-ɥVZ&%w!עt//ю0P 7r߭kOh0"7!_/4,A> &Y1*Vw&4gruhHWB-3,JЬ|\Ihw(]jưyG6.q0yG=5Ⱄ~M!:yT kn  zhfkR SaT-hhfj]'gPf{9OZُxiCxZAY7qh@dI~!yuo px wwU9tdVy=RhGR* 3Rd.l=~;E`vƈCqYq&FN-| p{a4K < %__cbI?]yz 0TJ;cgrNoN7.2*2]i، u~DޖNRzV]j uG; ØP7|w+Oɇ9icعF4A,BE)l<*S>τ0jeU9{FU[uLu5Klh _/}uK.޳KٚUz%hD%RǷ'T&\(]U煩cɎcA&g[)# A@BB{sK8R!7S1BOɷn Sx̒5bL'yϫh4\eh. ^Zs|nX uzkLmWz.bT> Q 5jKrэqƎ*ܜeJy>הW=vׇDԡyaEUuۧ0ƈ^#V|#r 4f3 9>iL7$!(#+=ས6 n?56ȕC86Cwݝ[q#"Uø :ϭG/qf@ of/k*J'M2kr{,2zzg73^x=LKς?/#>Tĩh>9bs M#</Պכk$~JjVwvgѽNʸ|0_΍tKrV7Poa7ҵqFV*xj,V)*__W [ zW6'Lj/Rl&;G6/5݃8]LK=3=g5#.Kydt*: Q[H mZ=c14>:=YP>]iKƀQȮ!WȲcC#Eɣ#Am?tYo<*UmsJx }۵Jĝѐ*-lYQ!=5iBq/J^v-񐪼>x%Ƿ o"`d]O^8{ ?9A5GɅf:΄MǶhݮ:ov'G:̲nLI^Qo=wmNG_|Gu<]*o7 Ȱnn/Fu4$ yUi`T8DZ*; E2x ,vئf_ҮS#QoR}Ƌ  `d6w'i+N7{GK8#s[+!nW VMЕJ<$&e{RPos6{&)ZӘ~m; 77-lȹlЊ" hWuAƏo*'ZRz;F4$D$ӾTv̊J;יOa 6+Lp&MfGdau@VcCQׇf?I0)|TB&0 S }#8;׏"S *@hF'}]cn*~άcn%pYtSPe`9*Ǭg %6F;ܮ㙎{ 3曺D*ZE ť3Qk N9O͙2cA\a=0 4yWT>_qHq3 l~@t!Uqڃ0g>uE?urԡ |Ct:UrFv$I}\sve"T.'W=;Ȧ„FrHCRÌ I'?L-tf<%+!] N5"k1 Հ8>ʟdyi0>yJW`\~F6AzeMڎ[Y|(0/&j@0pHM/> ԾP!^q`,NO},-#zpP&vL7Pڗ&c0sHGa2-[=|w|yc(BbA?-^N1w kz^f&i#lǞV׵CfI#(M:dP9d$$쏖Z2m5~`wm юeRVD13VFL2V|Y<8`v$+j tp]lIc9f/Y]v?ΩjNAq,C@dNcyՊ6%]AxgφJr$3Ӛ0s٨Fgj8#D]N FB^^qOꙓEa@2(@AɜUKPdjxc(_R eu'5loq q?˾K'H6Ÿ!82=[ٷ$w7 ԴT{[1-Dm58T' Jd=7P^뢷I7:F*G[x۠D$"S  R_^k ;18%"Wul3ȬڅTѪzle2mCC7 ȥYt, L,MƄk)`սk24 բ퇆itw_!9},W.&i 7;l/1JZ"߂kOLWySh")c# ә9ؐBƋђdbҝE pEM;cIWwUak(KGo-xD)&՝R,RYf}H@Lw>pӞTq4YF3GxŎi|ӫǍhs܉ obz] 7"X1Xd\(p9CMy'zd*z(}@x{pm$8ac:\%+|`us:Yfw$9~8Ll7ij XQI?ﺸ \ψ3SZY=? "  9N?ќpN^۴Bc(tG9E2.-LSWT!ndqBRS `ifDuSq!-KQcm$ѻU8nwW-َ>.HCsG ? xJ cHMʿ ْ_v_{49kEk뱻B:)2p׉tV Р>ѓ y*5LY5(7|>|ݫKblW X6uQeAَobhGTht/f џ}|鴽*؅@EX:'UXzYNˇ|u o,kX3OvPn/]/=@yJ@=@VT B!44YJRМTFS u]#lT&eC=v!s4*^S"0/Y7{xl:Ϸ5kq?@@Fz0]7ޠNAP ԋ9C(8\9" uy,M5ɉ6c|)?GF@! H6O6sT,rhdZ&螨4G$U se-RMA!~ޯxϘn.PXdsf5dP8hUtuzhu-~hѭG9il'˜e pq7}+\zb~Zg56= >ĉcȘ<4:u8ːZ7E.nԭ&D +}hh~̙QGX&=S2L` scIkԜzvlWh VPgZ [ 6V`fiHjgK{\K0KdnZFrGR 4JFjn(re' `S*Ꝏ[ZL|溺]VDn\ L[ >0Tg1HaʩWɦ._YSBGxE|= 6&}B@0(k,<ھAiV%G&0. b(kj$FA GU,8N8*v,Ѭ[ߦ·ZPX7Ng/AEYRH20(`IXZU~d@aP֠Jnip.H_A>/ !S# `Lg ž\Km%y{W<ۋTP@},lTn@&n _5ۑ7o fd=/RuP Uz~E*#;<. _'uҰC7M:w^ZbŨyL_n[k8 [{;( C9\TSSlI+}8_Ĵ!ԪH gm<3$(s9BLqۡܯP,gz-E],Lљ*nʀ 4ENDZ:q-AM48H-PQ{MڰI < ""[GX+T%TmhL/ϣ 4੠l'He[J_ʿĶl =_Ao) )GUo) NT:=Vrx Sp̒C(2m3+@ x _Xk L7EaAka!RhMyQ4|(&$´ika- DWxDo?uWU`طy`(M!^N_]bD~ި8ϼ[q5Nz|$?ɰL.i tH`Q gW La (^ ǐXbmhBhuieS~ 瓸N\*Ү~TIX:MKՃ>QWҩ8\$u+IS_{ytUmvv/#O-GC֗qZ,4?*m \GEarUYq&"݃ґ$T`-eWQ㵃e&s]5H.hņ)fZ;,`4wSP\&9'r$ط"@:VӒs 2_ip b1-w?p=g Kӌڨ6xfE$wx.\YUv| g&LM#̅)f>S8/-7UI; ?7$t[i[.~ha>O0%odsutB0^79/:8`F"q,pǢJ6֘B5# \Q@Wy&UF3'7SO X< .:J 𮽍%/Ms8#Y !dΈ7jfzgoZ` i .,locu8Ʉ+WP3ZF 7<|բVSsc+V' 4 A)2 ;qvVy^0[|,衊\,,8> UjXT#$t>0_e5E"Vp`Ԛ)UԲ9lG S9IT)oPE\f %3X~3ۉ*pFV  qo43Ê ~Qh=`*u59fpRAMSmMG ?/K[Bٛ"vsإ"pՃv{R˶9TapJI㾠XP_/4xrC﫥pth:J{,>e:R&`>yk_ V7b!?F4^3JUO6EeJ>=2'n?}-­i0AvA_ 1=-m*Z/Hrtmc]7gɇa5*Uet9CYN󎪵#id3zo[l,eUq:8,73l殍-,gn/xlݞj{V\IY@zRLwL~CȻ;\oF6)+S|{@އwzcI2z4H9L-6BkϪE8sP9 -ĝKbRKuM>J\R*ѥʽt$h!1YX 0,5axW"6}R^æz\&7ckKkdcןdq|E4wɱ!Z nF7̯IdVPFl92o{S{p3r|j|ҊS_\40*Sj=YX ^ gF8`~a3OyGDDqO|u3Q{%QOzHp[nN6H^}=a$jG+r6םcL@.詫-ZkU5ZU4;HZMVkq@Tx#BJ(b%9"zȄTmC Yy#aH )ҕ9 9Sti۽^IܮK9b=c{ؘ߅ X5x,)45LJ fi"HcB? ]̄w(;lJu4YIEmՆiW=EйN*d>;*T8}]4.<#J8̧Hmf=bIz,~e햭ܭgzR"Z)0(1Wٖ?G`cB6&nNJ2NH=^XKc3Q1ɦE>°OLz_ӎeOzl# 7rاKrL|gCALZf(3~Yfծx7`;(5 /IK_2 \ M*jR1;F/1hiZB{Ž$T%MʠTz{}cvy۫ DS6w_Ry*5J4K '_@հ?Kpy8@M?@6Z;TmuHLݐH5t]L`ogׄx3Wj/#TfP Y~9TXJOM6 U7X7|V3ELŨ;fV⾵|MHإ c<.0hCJJҼJICyUzR8R㲹u MG.?>,Syܡ~TTZbE[D:WobYIUJG&A'A. 7!N7l^j̽P_[Ǥꙡ@Tq›[>+G,`II]dȃ@2.P[V. -@w|YK&4jMxZ϶Xgj[_mYuK"#}E䍖?2e𳗩q4s~H )qdg!o۽nkx/|:΍wyݿ4[IZ/#ihvkd&Ri. P̊$n-;Q܃tz`ܭ}M rЮJfλ49Rh!:4nkOE`q,em 9,,0:.o=tW53ֽoZ)jnEuv \#v(cc W5jd׬-+{^ w䡒| hݑhHU[E mhP[sۍ@lC›ey*I[ ([/Gg 'jCwD8M:i@FACh"NG!Tj 1@^KܾĨқ 씐;AW#cгdAYlja1,bc Ry?j/}ͦ8x֭D}HXiN-88 ̵sBIŖ!W[3:hE9tW'S2OYj !H܎DKr jCVo&8|;$W爱)-YIjoQo*Nk,W FjnK`k_?uH񟽼ܾ k77$w]Py 3⪓cZ ?F4x^%j#F+HC}ޖYl?NuKEkMRFoa7Ps$?oF.{`KGtm27ݬF׽v?GFI>$eYu'<si.Cx*FSmUd$ajb&8k6=GZYwފE+kXntVk_)BÅwP &YD6G&O_֍꼅(HuvT1Nٚ3槖+R'/g`P!֝Mjo{t^k'* 1y4r:|F7usO8y"=-l9^Y>0r->Sws^a\aq,d쟟%PlF94 "wb-7/*"GU̦p&e(6Ə}=id&:9!JیֆX<$_n^P#UC8<®>[JRJEjꨈU4+ѧ"qQsɕRo:`AD+A(ɫA҉ܱqz&$PxK,+z/`TV)us 1=T'lҕ Ʃ}Tp0 SZmN+7NJqӡfa7#K\!㐈BO3*Gr5%5"}#Q(aVW!6a]+X|Ra?KwTݻ1\61zJJ}e[`pmMk{q8MwL9LCȋT7UiP=M? M;~T0޴o)y[Ln*zA&sė2-(ƿ)K՝w1p&6a?;шoT~C=S,QŠn!+^AC9Vj?Y8;`!8XR_IpΕWQA~iҁ-%;-9Ʉ#1oMxc58S\8ͷ7r+c#F\AXo9Ftj̱$-VrnGpU!h~3`T;YF(:܂;p@psWT[j&dO-Ѥ1!zp+~kxtÅ`-<'㗓>'ޤ.*2emJ NVj7ԑir?((r}pN (^"Ae\"@c(]J Ʃw]Mǩ8Q`t̄נ[MZГ9Oqvfk,|[2-/NŮZpָE*Tdm ..A ZEϪ~ʷ"D?GpAqfǍ;*cB L! > J6Et-ԅI$TE$ {>TgζO @< 9s RZS_2 F\M!u6]DZeE Tbp0;(B`CKGF01l䎁&h(YڼE Oή Xnޒ̕jd'UBއtn3UfcᔵuB5t}Dzߟ0]s &ݥ=2ox 6 h;g2Ax.l+\p>&yF TteV/VHЏ WX^)$u'3e1nrSqXoe+O/1= mQϛj02LwޞlQ Q>hqaX0߀hֺqNv]j*u( %̣4ePX5$;gDRCgv~)=ǃ@H:CzCPRS9Kmdoћf7.ߨe=dI̒ib5ЈczI.c"loⱐYSgլ 9&ANUHl8/5ìj)M7@5@( Ȩ`UgAO:jNeԉ@ś`Rl:杼?;׈-E~yB+/8񞉍oś! A^yhXXԽ/>}Sfw_ۣT+f2$XP:l{)KсdS 1n,ٳV^~GMsI ųss!#8{N$ì윞 dVw)qiPǹ C@o\I .䟀dF<ː077%FsuW %ѺDK?pRySb.fBg EE@#*K` h(uGh@73oH) h_!-xtn n-+gӵO]L]"s>!520C{ 5{dySjscڌbg<~ ׏Q:0UWmoIؓҌ]ɎJu@0(8ӕ}KMEyl-T#SakcZ);tn`C=BE!-{AD:2:T]lawD_×?R?!''pzah={tFt\bզx%T3cQ+T|UQ/QXHK#(+PwȆZpHp@Fp-*8pY2` NrFYBƒ X,?Jr5fPYglIv&R׸ t#KτDS~TƽXYNFȈ@B`XqsrlC{Q<\hH(Lt|7g>`EݵN;2f# TL+69ӢtVe*N`HPr`"wkژ,Ld;stVj)Vu_MKwˀO=e ڠ%EÜAJ,fy/S#Ѫ^mU0QBY=<}839 oXԆM{%sy>4}KZDeO \4/ьL3VLЧj5]珏1W IE-Ao$P.?[Ӭ~H5+кv 6>Qq7DX>GyO@kT28ކϊ,FssG I&ss1Da~ӈaZ?}2aD]즫1?3 ETMJ m){'wW*[+$eOR(L !*oj0ԭ#̣4yծA?K%CeV%ȍ,qlQν$QY:C=*B¥ mAn!܆:oQ *N;ڵ>" g܇_XA'aCR!'To*%0:9̧ۙTu;la;2'm8.tT-F+={ӖF ä17Q`c "ɢG6ڜBƄ87Z[Lg=*J>"<;\RTy-rIXf7movA`JWN&r &.Yb7wl Ӳ.8_PzIF0x/ƚx7?3Jz|xrs;Ѭ{sh}Pzn!7Y53 0!5@?-s^:2n<~0AȐ2 b 6Ö0 V4s䵐u|uka@1is.˚7X[Vu`C1o>=_>8^̕]LxA?S_vY?^?F6bwf [e3zo9/efV R|n+?b8~xR?:T|KyD'qzj;'oe{~I *xujRtkҕM]ZBfx--YkB&*AE}NqTAquH00xrLd: yA V+kʓ 5ƃ"Pl(N!M\ yҘy؂xŖ?2k4\->OiZI[L`DhωU)BaĜ7Wlt"!/fWS=O7 #n6-Ѡ-Ep 8a \V]"_x=[,Bbs4#P_)`_l?3 Saq{icQOWPo r >'?b4tvi*Q %; 菖*7l唛1nl]<[\V Y)szly0-|Tx)-ѥk#uYZ׬>v, _ϛU.M IŦ%LE? D)%>/tRjd:B*DN& S퇏6۸srbP%(L|,ۉ+~=Plorks yh!N/G7NI;㸩2`T]JxZ㖖n:״OpIH퓷]jm& cm#)RfJs_æ NGr٦ᓛsYSlg98H] :9ާ`E, 47ʘ3ogy/x-Ax#ث!f&Aid?C߅ حpܑbw=Km>|1Tϫ蘿š*ܶ{7Kz:"\Mny[𱟨*ns>w0iv~WT? 85vI7<_ǟIv@q>`$Ì\J/}!P)y޴3^Y-<5=٤3-l޳rӇ0G7?M81opYevnE02xHslqa!h6*d.>4Kۓ_\Z5rݺz̠M`g__xbsc\ wVbW:̡TQ0-FjR';nasZa}sw}~ d;7eYE`Iڛ$bN[s0.o?"Ixh{<*olpTq&/ueϴy2y^B,{zX\K)ޟ`j0ΆB\7W!pcps#qːSAUUCnj"غ 7#C7m:6–%G5Dbdo-UFF:C+PxE*4u[ )@shoe^Y?7z6<)S%阄ck!V!|.EŐlv.# Ut_'ndr 1N5=2-ͩ~=ǓC>&4{ Ok:5q&{{ܯ&HgT[iʡ7s:695O/c؝)G~ٟr/WDv89 ׶@ QF ~#Zᴛ"N7nσq%1~|Lu'~z,.Y^>ioU B!-Ԑ><63 ɾ8 '#=э1.CBr2$ិ9OhmBDPJP[:'L %zlC l`4̗j Yvr?@jչO8[RmPm2ɮnK舔6TKO[rs|TO|hGE- ܑ$8>W ";/W ZůЙUf*:oM6?|Qށy9D5Iffmz| |L r'< <!S'2ݮdkJI ,;W0Y)a<*рoxNyHh%5(V.imP;|?ْ|/ >x-[$Diͩ?/ ̣bRs'Beg۫]%–'/p-t>~ _kmuXE#:cmMZ\ NrfPmԕ]=>SU: #/1u6DO0)1]/L~%PJsHp/iL4,g?~Rpg%Ɖp29d p9f =_PC(,&1rhoWչP+diGBbe>cn?.(`5[jABe{ҞUaZ)ު>ѷ Br$yb0s'|5/pjJ8yJ2iWzԏ½@tgOjsrAmZGZ"XCniS vÌl9hWbaR ~C+?^ȂPs-5& !=S]=WluHN2cnjX=-X,<։a3'_%6Z84X}5, xSZrYצRFw'.-ݹp\^L$,ݜˌeN3 ʬUv̤VދiCh0w$V1e.ҳ &F Ws3 |R4:Tt-@9&'C鐆3VC$D0anћ\\m5ojwC\ŌZ2Lµ "JZPx5fKHec]}>eـdr(mHF{=5KrdĴ뾻 ?zP3)MOYߢWx).> a͓L}yopY b<|@tu2r[VAC؛,]3"r\:%|p@~w`H)u.ilʽ>-Cx!sqIRu'fX_^1^մV7"}}\]ſl/(&;ӃGqV/1c "2DG f>8 hD6[yldDGg:˽>k.Mw.-hf\1ijq%1II*vƩVZ.}~*TJɮeNZܒaݣTmB}1" sYwY^ˈ(d<üZNf'j ӻ^<F˥cY| wb|+݊EP8rXiv \\BR5k/y){"6R{meJWB FMh ߀</`=?$D)rKV0D(?FuDu-v fK!0NW|^.OxD1a1lͣ0]^ )˫\8{}N-E-@Ne3b"lG1m&[2FεE%E2;_f \Ъ=V^|p5%YPkTK 2 g4p9ڱԗ,?55Q1F#eT~*aV G@Dr{"UX>?|7}ߌp l|WXѠBqj>}+nupD6tR۾5n.USVPԈZ{|-#eԤI&y N<ؼAh̭$cP7 _4#|Wbti5\bŜ6ovla9{7cQF8P&``,KI LYQƮ}/9!<0j_yj\^Z7iO0 U D lL APJ삨ʒ]LLͿXu6-ӑ ng+I#LMLȫ~3!\h?1Vۣ><:PRqoTD7+r_6t^ Ϯ=ڠ6&M"6z֝IvQg& s9r,C9W3: ϶1R?O mĹ{g@lAXnC $p傐:e)eH6f#wtHشԏm2)Owk2~oЇp =Qs@0CU_+:a=/+xt0o݃6t'$ .mpa739(PT"ȩk򼐹9k6T狢w+{a5PӎMJaIӌM݇L0N h0l.'g\zB`>UЭ4,#{k*啃eآ8j "~N2U?2H=7vMdo`'vw!ߴcSKîW S~0I.NBCXf11xTs˅ ӰXF)lQI^3S\SEm>VzN@pऄMK Ҷ6gkĤWA/L U)ɈTksBEJ:P6k6ĺ7dq1haND,DZÿ*n=Rq>iVB˟+IR]Y `|0 ,ˑmz EoX{LT;,81p? =GryfHt`<ƊtM5LlXŽ뀞Z$^owXIU6\CRj/s?v3p5 c^P[#ыnRY%T'04_+K}4Q(k'9㿂Iu,dDPnO bocO3 Q܌ D~;r=WX6ocYPjd$_W|-: tWJQTGf?,NH},yˎ:z Q@b1vSh|R!X@4]v-Y7j,`XO_/YS7ZyM鮢,[arS"d@$VRˉG)TFdt_⾙V1M>w31DSJ}s GReu+Iao Y, eAxq^ZWWOKWYB|y=sUMĀ' +cA AU.7;&5Vo  ҴWMu 1tOCM/%Z=35O[hY>|H@5"ğyX)g HnAϳw tv(p`q~Z &?t' 8Mp05 oo@h "C<$I2J)V#z [x܁'YV#FYR0W>dtE O=Qޕg9Tŵp5wYᎃ*j*VDwlu`ؖ) 5G0Ty7{9i? 3R9]fP A]7X[LM ֨iv# 9)w1& ("6D[ik\[CqiuS7,՞(Ie/ D#99",C~9z.wAZwi/)Ob_*mŇEYskǏ؃!YFp(hVDm8UM|*__L2= $[ٟr\I% O n:ȰiԠ @i,&ךsmw/Jw=D[pͱsFh6{^) R,T9Rng8{̗K8"nSZG:!a'zfRoÄz3hY-_[aAB݁P7 rjD,D\{}xs5n3H&^ǩ;6?UXpڭZfz0O[QБlu;G,--wD6, gc%XziJEf'9֭pi^qP;ȷ3D"F4!8qecauFǛSpٖ2Z(kԜoqYGa;Q̄iUR%O:H3A)eV7,yPA@( d74C%Hྫ4i JySW-P`[mQ2czu&7qpQUC;9 }W[)$} tDċQkiߪ4԰`zYhTgaL;)^t~CK  _+ÅQ׎Ƒ*M8|]gӤ0 ,DJͲwhOF?~ =@y+7I@jG{>O_YnǬ1^!}:46]L#g!mvQ%m3EPV{slI$D[lLEʘ|C J|%]-Aa1ct؟HO@0dq(sL(Z8ZZ uAw2 ENC v⨽(W㱳Mg*7uVBה&ac"T6 ~'F ~)98)k]Oޡfh WT۪+N`@-0[+DND'h '4S/+OY'S=,\q|5?ӓҮ!ِ*F 2(o9F}8u|{#R6&9S<4\Gٌ0jiAYE/).ky)ߊ kG {ܭEqU i*;]ۃ7 =( "ylRRMdN X {IO@C $S8ٔ=%f\Fh3KU_@ $/BE.vlVWXޮ+.W&c2V bӷji.F= J\ q˸2יuCpq$1$mVf;ڶe6 io06 k@2N83(׏oP8K?WMOPVS*gb´wփ[JH3Yb#.'g}Cc>%(PЭ{]#ҍ-D0.vQs&@"]4g\gG,ca?vPJ>6p٥cgɀro`_M#drfMo9} Ae/\Y-R[š{K"Qo =EAә1o`33*4ߝ6{ 2|/PhJH/d ۿֶis&.l)4dzcIȀE`t?˲Y~4_TFyGW$5>@>[ӖE|@ :9 ?M4v15Fb:8eZBm]G⏥5~xhBLSils(lhnAV`agG6"Ĝ*tKЅd0J=ug 8k:xoMI-ɬ^?6Րمh(5^*ya':ee & erz65Ѷ]nF)cca뵖߲=u!l/h+t[}x#" g!8jd%?-옼|@Z82زc7ӊ"mb-Ʃh2>:okGUs[~4F\(}3+*Vx*g_p>Y<"Imn絑/k XFB0\ =I@9gԱ+®T(D=ZOl-!2~`>c%|'Cx g$^ev͇VQ[.55JLw| W4Az.KcS hT}Rp1rƌԯt N]陖Ա*:UKm3&b檌X( xc?-Y %oӽ⮫G2TQ'Ex_lS]ee,=}ĉ³sMc̃@Lk`]A. *I ąy \ 6Hx ~M2}J]cψPL-H*-Le)k&nRvMyϛFmUrkc}֟G4[BvT4 rdhkQ$8Xu] \蜿P>-xk6&hoYśufA7FZ[߀ OC-V[ @{kmN~&?ͶiaPWT!ُuncb,Uq sm}}m̽O'-Mgh ";&Fzı;OGa}$'>K,; S=p81HaSfR pTpA}Sh˜zq Yulbub]Z<]t.T/>upyHˡi^\[ؓ?pyR$1V^Ϧ=X2ZǫR(Z6Ezj VORWgj^ukg>g |qk+3}.y)]hުOW 1 ;uߒJR($̶CvYv" c' )xאpbox+Ƒ6һǑ4l␥E|w}2|[K;gDJo!3ڛ8O+4%Qʐg31[r0cZwcDu.105ǻkTP1;KTPuLppMW 7mGyayDwg#Z,/Z7 ^V8iK-}A_Tt LluyO7🳌0~>9:C9V`B/-j32Q"k| f.]I&Hd Z*%;g5td]; d$m[>q/,=ƟR{]ل:«ttZNqD 򌍷<$jSlsq>~/>JɠH/t"7y'dEo3|DzcV-+W#Y0@8WY)iLa\j2$U> Ώp}Xz%nw!/Q±HָA^)QhDͼĮg%UCEmG˔bxgnsRcN>^%ֵC!l$?Bbf ^w,z@<?ה!,ȻFwkq.N͜&ki{hMwnvm::X{Mwzˋ{8vdQ@lnA u z/N%me$嵔@T򤪇j*Ꚁ?@ʋr >1My쭩;X1>_=]q^Θ;'Ϩyֈ`U IgI_IM)J3'y?`eMAjeBF2'r$`X#mfQzNU0XN'Hk>ǫ"ٕ{Iݧ" MvMsǔ甬UBvMp!Brp'z =Pľ}L?OU:}³&i}Vm: lT掫GUq67\&UZQR,$qP G"|Qf ydPQ:}7楽wC1#>#%y`ϬVgtjj-c*<+ 1.tRtκ]Ѻ:d9DpJ qC,ejSidMίJh##23Ab*aiUCYY5Tf]hedڳoE҅WJݵ\8QhyHK}Jla6^AchQ ySd•I<.t= D>.YR/KSgUY @g*X9Um`ϻ1o["Q?}n+`*YK>ƛOzP'E^3Ufpy7wR=YrW}8Ν4k{LO'1 .EPCLJ[WJUq76ȬBip[|kTݹlc`)P_pKTCۄm摻ƫm JW}/:&רkpɜyg/KnĔyzn}t;տ'^h:#ϒ#^ewpV UfD{ȏ(h?ޠS|RYn߯N=]| E|8@ =).LՇ?hX96lD謉pa`5z-$pĭc"{WG#ӝ&?V1XPB1F<}ő#!lU8JNXb$n4}#^b F=YZXoV$p+JƵX.6 w]k/®\'2}.ΝK;1 LQ*knb6E}5RC4Gy<_X hWzj8/uW3g͖a&k25mpV:4G12~Թ7D/qEUH+%F تd%0b 1x$v~jӪ.z7s/b|f5"Qi8eB92qs^ eepȇp^'mҋ?j V3|䈓yWCy_ĩwDK?w炌9gnJ+)grJ=SoB~5d/CmhDU> 1bN7uFgT%!ɕF6Pl0OY*xEJ)8m2Iy&"HjTpqT|ܧz$M.QDnVLf|NL/'Du$HTcy|^]q1TblajYPTC'c_]Bu'Q{Tܺ W&Hˉ a 'Ib,#Rp0d(w3"z3~ZDd–5΄jF^=?HPgtg@E?"mWޑi 4tǞݻOJB4@t!9+L$?e|FܡbQb2/iUlVUWI7O]nOH2Vm"՞4,CC14q2>!zX-`B ۘx~o9P|iiOD5xOϒ-q{6[kdDBwLF`ЯVy:Yv u&rgA͚jzD3ʿO:qΝqލ~aH:#G1@VTX`dNy/gHoϹ>hI[M Dнa$9s"0!>̳">`gm,^gr#\Sd{K:>Ȣ6)RN߄*IS [AQ/1"680 n@$Q@jOq %X / )&| ?xnD~F ΩJ~r+df~' @}Q% J,Eb)yMFѲ攤D2K!MWiF{ F6%\Jr9qY}KeχX`\iq?ӷy ?ũT :T}%d4*`ϖKZD>x8,gl{\_WJ:Wƻ<bqdMl 1WnPy:@XȐ2_yHQORނ4NUFC2FąuH3۩9 Qrz[QI4]82jKt0 6Wg]1c%2&` 2o8'Ϟr{рL}5YޗDd#trHtuU9p_BĄ*ZeY=. *Z:'M#)gaӆ%XR66/ DǸZw:gRDJ҄HX;0K&fY.d_1V}4BsX&  ؁ M__ وvf%r! ?6oY"=h!͢|mSX=lRWԯ ?(% 6B@Y$H6 7{h.,6Ʊѿ⒴j,)U˝9,@3l\&v%H znC cIJ `3ȒB^;z! ()1Yv|4ʂ1̡|*vopF-L쎬e`D޴ $~ _Zj5Zm\Y,F 1_V4{b5i;]F u,?p:|7Q_KHYW iF ska\C3[5++X$ѱqG5bӏt:$_@W79up.9Yd\h׎ jI|OkmW@zd~mf1НqJgFμ= j7yT\kBskTV+~$s$,N3ݳzئ8#>lnQB}x)\fȸjs$c:8 kO$C02?ӕ4g~k܋B)e!fcȓ٬mCWN 2e4'(QN5*27j!TY@ܤ[vZϩtRI MqVn~ #ўH(x`|FIQwAi}@ v (>D(@@dE}Ճ %*\])1Dh-j@ă;?/G+>,6Ait~]"G)hQnr I& S(:M[h~>fwRqG8Z$\⠎9m׹"wp₴ټ1s*:{ r^6:MMyfz&+d4'4n${cCIN*/qJq)t; }=]/~(1j6yͤqUyoO7?/9\XVoo/#3=N 6a#?ϴؒhPmvUTR=^K mnB0j*򜱠 h*q/sܥ#] oH#y,DwX,u)N: S9? 6}oZ#l]2a |ݲQWL8.Nes q`zB^57׸VS2MYFr#y N ~)0实jVDX`Z0ʤϬ{veO$ͼ/[c[^Iv{͍J܍6S3;418#|4JŠMܮJ02QkGL1h#V_`|ݹ4U %(DGA! lw[Qiieߥ$\i,q a^<\= #,UNYq ÀG+Z,:_n,'(oO}BR67C'azw؍7čVs)4sNHх5^B2وǻAo8HtV%x\xPدUdtDZ{!w>4 r.(x`\^pM<"-؁07((':ca.~ *k'Gt O{{M۷`- Av/i.:Ǽw՛#?*q!F"7U:))]O}Ǝ8$բOH1R ||Tn=sSFcg1a)ѻfi:zT~7fkihj?<\Y6ઈD Ev+. />Q*̢LhlbtEvyi^=FX-`?t]ES- 3'V@:S+id9#Ȼ5S:D{)FdJp~a֗6!dsn<&}V8qCp-A~ 3`?;Ӥn=ڨUQ'2%NƵ_ W$D]7DVڱ5ZsF#{J aTŧQzukףYJ+څWf? Zg"],EmB6'd3ք# PCMeĨz9DP+(Bs裸EVW{{!s^%;/(.(;d ӿrl| .y~VU|j~Gtؤxb s*;p9?E%AX#L+<ɱzu~69Wv%\>>^ k&9؍eF{t1_Ӿ;:y /SAUAx+[N9T*8Q3vV>Ca#ؘ㎮̙5uKun$N .ҥ'!kwdו cw&N#iB}U,Brf chqq[g"G5K \w^=uG-b 1Ogq55 (d/<֋&ǒˈչD%16 گXsSC1` j)}ۢ d(;1#H"˫Z\֚p8;[Z ~ ՚{QQ̱@Wvji8)tz&gH O6= ٺ΁7i&nTݍp98 Hea<4ywK-m8R)Dτpk2ΙU86"Dj ;rE`*ƋGr`05*ZG䜣e1pnO9x?;{˲]NIm U0O'%HEֶ{':L`&+]rEV&KXPV=S)fOYjxDe宰xO*<؍bm:́1#'gZF2%w} M:n[gXIA ea䤐ovVPt!y`ܚZ E$I4ux뿜v7vU:m5"rkT=Y3S2m z[kpDٙOxB# bH=n@ICVX}wm^yFpgA{iAL^_Ѫk$7%}$u>Qrg+:Fn|!W1qBnԠnSg+٥P.DxI%2ᖘSp~Wʛd^=B%YӎOhEpaMJ i#<6!{o[ᬻ|LǰfћSFp`J诇7OT ;e;Anq\zۡ,G.N,2@`sM/)(]qNCe]uj~ʒr;s /vW\n89&$0u>p%4ޅM٧D>/,YeϞ h=ymu/a|l&b[=!)Y#B[ ϸ4EIߎLlQU#]i T>hZő**OxXoaգ$16!X2:xi~cˈ 9G#$6Fx;n~u5] i*,o 7ڭ cQBryZw]5XZ_MbU  &lF #Hr!M +vڬBߟ6J:fxƀ\8&@2@]! r)ea{o8 $y7 ,u t= -]b)XveFV+=M΂m9ʦSmh"K`Kx/>#Jt^`.pͻPy0 ppŃ{2Kcoy*_)F.=!"ӧ(҄0osf*Mqj!N؏!z,.BU~8}j|@1BxO, ,Ko::}T"cP7򓂞B0*Pyv gH CT"mgdLKB1rQυ_#NdTVFF_=&Y Čtw2U$ ПC@<-ojokΫ;rw,c˨#ƞhZP\*>> kZ}^lxD|+E{3eOaľ[<ЖHm eTw8(`7v"h +k-4},PtJNiF ,eȘWJTxz[*XeQލUzӱ|2!ԥU4嬎!ym_[J@B ge C 6X9$bj{T &b.z,K #r2i_UH9};{"۫wUiLYEc#]̛iCS۳cJHBK0n{йdqcyiC p!y;+$7l|NPJ4Ђ߅H%*4ˆ&/T u"[TB٭}Q<%WzTXFp#ޔ ]zG !F7~萪kq]Z돇oc%.v Wl_S)Q]O1ٜ'c&*2l(6.~40r[3(̯^wI\A B`d7h]TIAC,#D&ha:*qc ě.R #, Eb{O||-Qt_(h{-^K׏ӢuN:щ'wh͠d&?V-NvHY+-կzՐU|mw+ [l;PyƂAn7fNXx15,-\%  Jf]U:gonP/$7(jqytmNZ8S*HoJBV}$bmj߂k*dauۼ`TPIe4X،f `1dw75ǺUS;"z\YW"cYR  %SUaM\';D;v'>h8}AꉨZЮS–.Cm[F[f]=t˕%> d%%^ukg[,"[%ӜZސVV#YYU>A9AgѓNŽ?/o8<hܜwx^Eo=d%]TwB{K_7hQ ~Fq(kCNT,8z?BiE/6aO S%1"lc KbNM(ptbݝO'h>>5( ̻Q-UB"-Z}X(C[:j0عGN+/|CƦ:.yG,NgKl)k qtGL0U%9T:k| 4ۦ2 cj˦*nxBkP|q/%ȝ2҉}hԽ(M{wF4c891gBn Q }hTy^yKqmDوZZmT멙Ȕq)P6dBIc˦D0ѷTxֆ D `# Ĉz_a_s9@>̯}Y+ }f,ؑ/&m>Iz_=ȱ+@"|њۉ l sqj5> ܭ8܋k%F RlMʳ-μRT+#VfQ#5Kzؓr#๷x[1[Wª0]GX=Fl2o/޽t̼wI;| gJ/EM`yUu֭5}7%[%lO˙h.M+81/HݔRIUqa|JqKnwMLtڝ Ʒ¶`,tfEcfp?<֪8 jjLw5ƕͯSt:c ;rQ]]wQqVr2,;TH:&o^ &=l4jNF.fp|^|X0 !s -YЇ4YR8ήj0^?N.a{/-$k$ЀNwǤqSmL :>Hn/TƳj-GkO*fz逥X8JjFurg LJ:e\~heozGL,g*nhNJm]4X(W8Ϟ+C+mf?xyNVeI_^<.QWӔ_,+њWVM-UDin<wnJXTO,a 8\1yT #=)?op?>ap_ b 2ͶR j%QȦd.  qy1&E^,dY @?6,clbUS>xz<1 òȷ|PI }gdR, OjuMcGS^C iOR~$E;CCAgil`F{q"x1`UoDll?̺uxH|»ۛ=X9դ :6d&AGHtZ6ܧmh4O ACA}Rqjşgnހ8%ʪ'W,,!X+H%. uEy$GmQq4 ߏbHvK@N2#ޓ@_t'Td+j$͔ZE$fGIVцL,@"Ab %v~q.A7(6kW5uOCC q_ӵAT~ڇ4NO[Io!ZBu6l2E)[ק v%Bīzvh(sT'I5L(F󾫚^[u^@VjPssZAuvs35ĥ[`4n߅ti@=ؾϙCF 4Mq1Uf\7/"? ɠ|E.|}+̋$3m=.oN,rMt`nAxOat:Sq8ͭr/^O]v;=QUA2&Bí\_/U?Rm{ >zԇiXrLyt*BogX`jh=eˬ//Q!<酒;HLM?5bTޟ$FmH4[YuZ^ gNpSæ;g{0d3qʾ+#|ٴ'BϺA0Ne`_*VB8J*ЋxC)U+JVBXHnė#i.DyۨP1# Ք$NeUp#!-M+i] )Mq.sψV` l5]h5.t5hr\EG3_VhgLBTdeu[[vKp`$Q"nK5+赇̶dfQc `hU.{hsClxࣷ/u!| m6;і k2T8$2[%%(-njQC>!NRׇJW ߛwtX6Fk[c#E7>vta@SKzBps!A.}39k>@t?ⵆ"dLgQU.>"oHt:2 ]-!hrk(DoH<@-K(5)rOtYEFL \s(~U-̵phR =]QғOd6E Hƈ]BVʆY#RB9&1)*=:|O qG[׍eI_=Hf^Ygv7NƁdh'˧ ^K8A0ۼ^if>HW2 dG,ȶ;vy)X^ݕjW쇙Oz'4 h Ve%5nWg-3;quĄHgȵr0`&ev<+Y6H?:,(s2ǜO?O`YQly!;!--lYlX.Q8K2pL|4:4=>DۉVqiէ^r%aLh^!bcTnz|>BZ9U!'mA'PVS'˟%neE2W~IpK^ВjZ9}9S;A.8>8*i32s:QݴڂD% f8_Ov9!uXt@6-4Y` ͯdID[^.(-ˢy#+⑺akHy^LƳ%?oV</#8[oP@[MK_%#kBV6P%3$ע\DŽkj{Myh2 [ %0 y }l΀iD;}`KΦb_54("d*h~2 .GW+z;xԖ `m|;c\mRo3K^LF )m!,bBiulDzwLgJ3ba\L^ [Ҵ&)Gs!{H f@ѥBNY&4\fúWИ[j| ur8_ٻ\qN"JGi3A3F_")o$'aK(Sdv.S67 e?^l ;bP;6est/Zs0j@Ja3~w~$ie}QZO(}oec򕋣a>-'XFٟܚBϐ7Sy'P3#V ԟ#ϑ63/5߭^+V }`)d#r 'Uy|L|Zkk5:Gnq6F3*X*HVP>}:wa J7۠sc|&x`@$Xo% ~q]/v(UegWU( ^ ^:nU% I|7RO ); *45g$~!7SanP9O\<,:(T 68y wEط˲ōP> )Q~<]\6&ZZz}d(=@w˜!efg;tKҍ4V)T^<_EhT괣R j++jT+]҃S76 ʧAΚ~!pYELj>E|NS9c󧎙r2|e)J0rcϯk>3 |_i3=DQ[7 CY/⑴FLˬhexvR<@քz@Dx.K<"XHLSFjoeR!YȉQֲ%WZ.&\9Q^ v8{ivJlnaOݚZRb$<ҒZ6?sV?4Eu?)r$Bĉ @w}HyK7^z[ct! lͳ;ڲQQr yu7M)9'.ONCf!1L 1f/7KLqXgcsk[YCP*Y:gM"2Evyp!P"-? ?_)^`Drc #M,u 8yޢIL84 }ZK2% xm\0U?bKU@N &uɜ^o|c![jbݴq ot M;P*-XC=rQr;$ٵ9W$f"-.ol#rŖنZ;Ÿ[2pPb@5ehͲ㈂Rc{DRS#0p i|@}r,I^6حO%2:lFL.p؈u4cp3A{# *̑0iMNVk4^b/W t\HX,Mҳ7`\6JPgg*NFEڛK'N !̩n%A(g< :׷O) vM>lNG֏'?:c0J<~S'`o1O0~?;*rv4 'hi'h aQfN} qERA9Ϫ HNB#ì[R#Ļ54R;+uv$`vJe;DJ"IBj3vOS3O*.kOi9Wy}]ԭvOI of fHsmHcH/@~ Gk\RKq% {k"$ O+ilp0>l$.YdۜCM*11hb>LD^k//ܰR׾fïYO;O'3+E4mS;̪<7Vү񧶋fٯe /0@kFeXIs}#6 %nKM%6>+_ 1ۥqsde[О.u7Rp.I}.p)޼Pbk`SـCλ ԡ&Ve)~ߎΟ7Uu6q3w _\+Fe=2E"N!Hp3Yη:ස%QB6\ $NWll:#q)0A!6Tč(Ȥ]+*e^qg.KO&Q~۞.tU)eOuvw^x}&$'T?uDgǧ c|6P`zcmAiZ8cRXt屧[tAq1W Q$pZFZZkmnL&HMaDPg!MEtd*>bN1 &oǬ(߭!LYU[LgF j8rE~X%% ߑ7sӶǃ(?g'b&Dc+1B}1UN>fg_ޝU;p "{O"|Cj3EIe7y}"#$r,rT%hL⭲ >RtF[_Eau"q?m/7%,!l2Viw5Jg(x+U^ BȪMߢ@%]~Àn?*8'=+J[k}*v߰L`7KWE)͆!e`SJkA6p.{ab'֮[ SC0 &IDGVI;͈8եEeUwuU6UH1wL`YvRwZl-:xx|cdo(TAڈlÚSu^Ә:#^lbIxh yNG)gO,i kHȟQز*-x>!C|]nZ#>~ FG[=DlU ~1UWu QB5zGS/\z7T>Ka4";؞ӱJ=o<*Vų'M}q߈T&W]fv54x7sݚTᄼZ3U \^XqEg-pTϭܶN 9Pؼ̿AR=%J/0*C5'H%9$dv'Tg,P v~a#0euo W_E -]qT2 F`Y7>ZtF99d. T# aW̨PQ~ .&4UvFv6faЄ@ #s:Y.lxUhYf6 R\zPn'G,%Ҏo(ʅVilʂj'%Lɇ] f- 꾓s Ol뢋PO{( )!R ,'1 C#q{ 8 z8 K La4T”dz(Eۤ'k3wC:(wׇ'=3:-1 _Nڙ̠:sb~c^wz:;K1?<:e=aSKF~=!"d=i-4L:_iBӦdCZh~'C[9`?^#՛C2\\8 ɜV,w8ɵn'-66t,\ WӀP36TJ~=p2G0x:|gMx 'Qk#~ѭ#71v$,$nPz/z?yd_{ؐ8ꐾ/ԋ<׬ԇDM=f*6V(*\||f#`ċ޻V"^z>sτhG؏^W(zI0dAbiOu߁@2qkrIwE`z1ie&:Q1UenlV^"}U'N#f":61kI-^a Jj|TyLѤ0Yy~c/xȏRwtNb%#x2ROc9t2pC  W"` !v A>&nD { oUғ j Dɍ4|e5cLjǬ\&oVT6c/C20 oZor!o.kw)W]W"!YL@Yk-7Y(LGO5M`aq}e3$d1 E~XG[OAJB ?AKa%=0 nߖ𡏑S'?ZQǪ)t1uMy([wMXF^܃4`<6\}&.L#5>cBĿS ڢ\+! k=D[X5"}Ul2{wLlw Ssa$37?nUoc("Rx<ۉ S1j`|'l <۵okW~fqu{("ú~6uw_쏏G?M{'u^h@n "*p)@jG{C툲{7 /vD6aCdPFvHz23i, |2^10E*N$7Qs:Gm ӎXwF'sE*#(s- _Fu0}.\jMt&7WAUq*{93.WH-mlQrL&#*$E3Jh4j^pha7oUuGKZfe\?~]|?cX vWSLaR`!yǮ&]ςB/>kfp!_=++*!ԞpƦHBzm9ڕiL;AXj2ƌZgydxbƬC[=i%:fF$A ׄԫ6^Z40. mE %.Z.X$Lʣ,QT^`pqM\Ϲ uC jM6_3T7Y\xx~Lf%R$`A {0hQl3K#jgfcŧ,Νwo<֓ZR F.̭MҾ6 Yo < ^K/xlTB&Z0DPm:I?xA&n1tHD!- v3}αhv(9ICEdRJTiB`'$ 9g$rX-]&oV}cjH:?Ӫ=ePJfm'&Gy4j<\g^I(,'ˎ%WnODg'.>Wc}"kC,+luT d^N_hfFd@iTM.o Y&g5IN \u1 SZ ňDmg:ĔۧQ-:>'.X(Gt<# ZdkXuB`ڳ^[Lk5dYYgZ6oqu|Xr ق/ޕNR6mQM9=v *]\:BƂ6vO9;;>Q]mpe.|Fά*}I(# .Xs?Y #l AGG;M@/)R kLџxvt(ޠF-=''mUٱAgJkD ߞ[¼)uu6GN2LUIoB&3XA=: Ip%U>pRNEQyu^G WYu'akCF]=:ޞp:/oYr2[:=>-ODZS"DNkƙFoV8nxZbVh@=, Z :i9I=i*UC=h`,ϑ5 f("$EO;3J;U5`>qY fE ÄXɸ_s+6[8 ]f1צ)~Rf&Lиb;Jf4_P*R򁦫Jy7 տAy (D#bHQ__߫;9H+# Xރ݌&3n鋺(aԏ"2j8dDMQȶ2jy쇑:*c++QßIP$.Uu.RpF;l]ySe[O?Bq4 %m~ݝ;7NZ5vq;Ґ[s.ђdM$&x9k d&X~:,!@h<wQdǗe2k4!f7vYvn?;}]Ƅ!xȮxFA(w.@C~_Pw#:+9\q(n+Ȇh"p-VZ}4Y\mGŸ@5OoPS:4ƒRyn.+-~Oc}+񼟶^^89?qrug0 0Yȳ։oa~JbRh0\m=׆_:$XCXFKf-b۷<'d%Ig6*b|6R&ܥ U-N`sѭ{fҴ]Eqڂvg\5py)1K>i )Gn A>kt7x<~α'#|)66X9$bVPVt "-qIX3 zUx^Y"/ @ΞY:+'vNr &׹`ʯ<]r76n1bA>vru_4Wc0[# s($L['X ڻj}H6z}yZ[1d ,6(PWEWjzXYYiv'vU5I45L KRKO2 #>NYn'zؽbA*|d#KXQȹ[8bpwrv8G=4,,"-{jޙ\E+QXzޫ_Q2|6/ց7}gD1/nϟJh4"9j-+ Rwؘfg}ĒA"?G8R1Iq}"xL K~z܎ƆS9_@FXG.Q r binHQ]\/8Wjʝэ ij8H^ î\%r?SFFW_\V`i{S(\!̮-^0l֏QA`N>T'G@w 0_ v2*~2*Tj{A=X"f؀Ȩdf{!E4w{n_:)GI ;tf}ښ"HT=2Alծ{9TEBH:Y` T8]ЮNd@)ָमdcjkTc֍>\%٥Xr\b3MԧksWewGU~cx#'pá]RCr 2=7u@*`jҳPy@&S+@PVS{:apQ@8K<u` {xCxҺv52Ym1raZn^_Qh ZZRgGPsS_%iV Scfo4D@DF'/B.n݀QcaK%s)-(9OuJlZj+W3gJ46:"Q-<qo^>zw+cѐhcna~cʏZp.VCLItC^r. aɚq3N'Q~*J];@l't[WLK*cKzQ N%Fkz3>zB̊GI# [2j Y]kB`9h'ȑZf`E^np+w;KMсJ5c28{pO~14&t $`·I_GB-SvlsbÿUJ|R?#!~KHEI]d1uF+kAHY ~+awvN=62uO x64GX"j bOؐLI0b5ыԪck~w\Vk&H6gPXOonYp5 ~Ѱ ýK9UaӎWQyۺ@0MǒleUk 溾X]Є@ I;dT7`/B-Ez]&ՈFǦٕ}3.:rQLvZT-e(^{0pʸ x՛Hb3>Y2Z3}o<D# Q f @ԗr'Hǣ_dHzI,8~{hT\Yv4'x+]G1D"y:bpQ+M fd3 8,Ibs~PFt=_ aCdLcA"/V.zJAul`PP4:>B4M5|oe#(NK#d2 l.9 `:> RQħv3H L0徘D{)+?nT y*PQkyW͝n Abgޘ{`7+uTܻYlzkUhཿ'\ n spvT_ȁkrYGLV!DaD@H3xZtYz:\*dZnq=sU"r׬H- b5WBM&|b A6CװT&â/j<ݔ2:AL{A=6~aQ ^pUF,!70]I!_o /'XF՘ZF*J͏vG ȝ/%$xN~‹z/bn0-_bZ=L7^bZL0?e^)7tؘ8еQ,փrLo.賙1k|({P0o4:dtH,/2_ܮ@D bo%27-?JDh* ;lfogיjdt#lTFýKnwvn&G zTr"@. Rr"ν`GcBQ/0 qCwK}0`_ 38L?=h2o N;<1KaV`#)Rg]O4HD D݊*0xmvXGhoHkw-!:l{OC$\EZJ`4q0-|D8ɵ򡠰_modE"}0zɴ=!nX)v  2ϡ)0k7Jh?wA+yv3?7Vz' #\Ta,s Y"U_|Cg>AaT3eDk{U@'4T]Ύ~c5 v#d.J[?;+Z$b7AohOx<2r=yS\Ց2Bm?ʏ?9M#'J}]p"d Z+?'m'ŗG8ρ3Dr?܅_=X4Y%US7 j%//ʊMpTUE, BCC\ՊFg%+ ȅ҃|9Y8[Iw uʜIOxQZ57`S=tf.&̣Xn\E:DQC@^2LaL"a(Pv{ϟ0024Ab}˶'DwS4 `*4@FzV|^_а7 ,oWs>GBWv^>ˮ)#ḡG~m_D4(IRrwa(YP-"q'|S; h?c=z ۅM/ <.3jCCê?r5We@3D4PwѺ~j@L* Bڏ} tQ~|xvi?6x9fZ!n+&3Ff[8&'ϧJ3>*c.B6?w|ӓ'~ӞnYd2`MUF;Ŭ2=BDƊ&ߵvJփUA|39\Yy4`)W5"<ф>vC3Ʈ *ܛ\>tR9*;yL7_Nui@_J,9G50m9J9J_!k*UsNAsKIn NC ay:o>yٲ?78W 0ڧ.םf@8 Y/l̏GhK},f}{S9%nQH,r06HJ͇Z7* 9 ^Nɷbfs)+wR#LJeo~8PH 7]A $.P\4(nԃo&6TQ[!{M-C>sjSXU>&=t!!gu9ĂK_q3;EX_.  Ō2$/^("M惦{ F)|~ ̊o&߀w'LKtmS,WB#\(]WJL%h1}[1f'390kVݜ{ugZ?$YXkuS7*R 9F107}f~g{e[R;n'ȓ\OlhXWGAո(1E:+d5M8hqN81[(.D7Uŕ^X}RԙGmÖ7EgV\~~W IG8=c]D͆DqFBҳKocH@?TGvO|o XjꟶPѕoM*T[·\h-MHT DGNKŨ?B4ŲP4Ũ 7C:oG@11tCo6Md%a︯Lʤ|(:7Ho'Ñp@rXfᑺ"†~DnTFg P'#l\^q%o\N<2sڟ2S@|~Ri^~}R\APM)kgL :էTsN74?cYIlټh= +{,k0X]5s娧\ SfSf^\j5r z ΍Hݪu?+ wl>Eir,:\,U1mRcYy9/x(%'[k!l44:*\HlU w7>HK OEl퉙#eϡuF!0!MDa[͈_+)D.llճ 1#ҼdAUnPOyWt5x*Ҹ !78Tn Y|dHzHN_B 8>}{& Z=<ќۘS:=ǿ7@&NTݨ_1n1 1OХPi~ 'Dsp1Rȫ @6j;t ՙfʄc7|:ܠǿidc ,F^_R;Ggc{Yν.x_߄P9r~!S囶O$,B(锖~/4˳*dBM>6D=/ba&t^ Мd ;)]WUQZ~ۣe ԰z+uF(HGuptdK6kr㆟3iҜҏ}> gc`oAJ4b0cp/; p0z/>Ydtœ@0pU= g4 Jt)٤iݜO"Tv؅.Ds(2)qKtNJ=\$YW(]/R&\VDo4 1)o\Q*^݋WID1ae$9ʧc\b̶ubr&$2e]@8'P<[L`|ek߈ڣ,Ȯ%W.ygЀ'}Hkj=tQBW$ ߄u1g@9oTC1/s _W 0J(,XM/"oߕsece`뚤Z KfkvR_Q12ᴐ!8ݪP07RӸkĒP" kxzf:l{ÒSP @g5G2ux 74&bTc]A)ҋkx? <_fÊa@="BéOҪf4LJ똫Z+k5`PQk7NtXg_e&9b`!"л48fG>ߤLxٙkO[i/vNgB]9]BJ\Oi;Qw o=@TQ(a˽o#!%J\oݲ# fjUDD~ڽ_{d]u, (bjZU=.Djh88.1 0Mq^Π4I Wsft rvk )BC 9Чb\b-lڗ4HF'tHLu KbF$#nwl~U1]wp9ФO R,sZ&;~b< $͛)1bUH~Rcay+`5W JDh3a8LHDTPJqIܟ4g59f7Y⭪ Y]q}Vs폕4}@y 7c;K3;_^q`!潴v 7rSUPL&f _jBNdDT:J{"p Հh ݶ -oAv:gH"iq6xԄ67&w׳T'7 ){=KI!qEUXnsXnpLEm{a<^?V6$oм\LK[=)Nb~zRC?(ӣ"umSDG7{Җ 6OAQAwʩL }4] xZyFR6k 8ȯ "1d0̯|"}LZ:1,FِGk%;3ţsp*BU%MlMh,mmyl$mp4 +-:/g8JZuy(I1bcwwaȭa(DU\xM1i-]6k0FgqBT=a@.*N!3r#(O|dǑyS0YǘT]$_yYN>s1%JMv*I ݎx URNz˰|۸[]Gc4P@(Ԍ5vZywtHVvb.|r &d|LHXa3&Ҋ :䉓^aTc;rHwT.adbe琛M*ڑ8юU0?vT"r~+)D/U,MNR/0ؘ˂X!æbC{N-ZM}Oۆ5@ H?}NfG  \vDo1&Uv}mA.i?#yՐ 6WErex``SvŀRW8 \x~{CpIիBt0%&43/0j~ޖOg| _0 .6/;W)#g%…/TXF:āZfIuYRb}S:g3?^u~ Q dZۿ C41_cdHN]Y z+j㘥l ,瞳5/+ CwŊjSK;@DNYlgZj礁fG};ijK2*ni̠ŖU=ğ|Fo8>"2aY/rx}ǿIK*@j gze=c` _"7wmpOCs"8ž3[aˮE#MڑFwzŰVWڦή17]Fzȋ".>Յ&Om;D !y5dvr'/JXu;]UV>ũwy-&q)O!W>>Envi`N {Y[VN)X+1`3$fNbXϠD]Ԕ;oiFllKF5,àUK- zdCGf >En]gl:%L"6 F|Q+>8LM^:j}r9[Wrmݭ a}ъp IץO7h\bOq%Bdڶ?+|4&;ˁ->9o*\4eįv*NyLɹ'(+$vײ[UB;w/(1HHD"^,~4KU{)t l~esbSz^PwTN0Ya2ԃCPmv\yo,}9Y[FW k]ўُ $MhXB%:NMAkؿ'(ҧJ~fYs}O?7-r'`0< :\ շ؎>&_t)":j<*m&ǚJn|@C"i#o%4{!b(p@ַIB PNп> egFhxc=)/΄0.>]iѳҾ; C>2-&B hx3cXg_l.Ȯ_cD# ĺcǖS<6@gئ=fBW}Bi D (m873yaYeS.yGSPtE)ظ`[9uŀ=.b΂M8z;eCiw?}/B&TyRnzjm}%?;ː?i]r`*LHAhߡxCFNs"f\B_f6 0[^Ż&1 K^O4\.ns)U_na%ҫ[]gf<3>q`y-EO G, =IwIpA;LlW/h8U!L)yƆŇMSs|n 5=T{S 7bc HcdcU#{8hbT'db=ǐc6C%^nܵ^>Iغ<a+'ZR`\H3"Ķ6\¡3-Ƿ/pЛ)8#}oVٽJ6 -b>N`݃ןe?ͭXV?CJS[FB5вZVB2C*Mˬ3kMw<į:Kʂ\@W;-E u1 4I'S*٠3̳u(AŹS29fV|h҆R*z \q j!c}Ig?5~ y *@nJn3+`2%\%Im뼐 ] &yMD6$8AM]W(F/G}q z< -G6#)?]R]XohD9Gsq|vyDd[//v O5kyN$}YNkڿvy _JZ|xH豕q_G`X'gLφ~K(( G[{c1)tYqExuA ާVNRh64GFIǸ18MʬgU+;52챌aNbr} hzPL"\|YjMO-BĆ_nH=BRko]=bMXY}78aC1ℵ@l)5# .~GOzjA6u•9m30{YMs ё̴@rlng 3FbÝ"6<@ˬ 9m~$] aWrCRah=7"K 2yEw@|rLp{{UQm>F^Hi gs؃qߘ2}X*d:Q9%kGlD0r|ˍZ+űO\_D{S뿑 *Ξ8)xLQes#v'v/ M (KuXuE`1]buS1QZׅmیO\3u- žۆхHСDol;H_lȵk[b0*e0W;f̼vq@6"[֔8D6\]cz;bXF6.@r~nMx+;0ށltǟjza!hR!E p{nZb%AEx:7w'O8QwQP6.w_P@<\(򹱀9 yz:CZߚOV\ DH_>r9*{Ilq-k'#Y~O0(ugidn"БI8B8/!{nc.#?.i?+aWz5%e#X3/J|_eq Buer;yד@P?UCEY Q 0*#q=Vk;-)eMgt z|i]{`}UGNIyN /cO85iSs@O"Qr5Iһ)ʹ{tk)$:GQ0Hj(H({Vr;pSۊ`moG1 v![WdrI щea087ӞJ$70uAh<hZwU!T'C5 FȥY[iڋ^,1IzAhP_ #Ǐ5rP9 z[YPr4 ?Q:FUT7|c~xjq~yskDT && #HH YCQ`\+&Tlٷ޺C计Pd:a- hhC{k}N 8O)XI\=*ѝk#ϵYLD@vh5`9 r7b<52>4>2Pοʾڡz1aߍ$0RzA-ċ}g5ϐ75_DZ@'V=E(BQ ċ{rJ_8W||+r"55|/Mhht=mQS|0f& ;l#zME/S8cL`tR'@D޸jAX#Xm{&zHE2¾\8c=oNjI_RG((i}y ]6WafEv%0,G0B?n=*0B#ceʺ?BOm `"L2:z0Yq"ctԎ dvr|?BႣ2GؠXtc3\Nu?_yGקAV.͎ bE0&uprgHA7ZVoső#H|O4tDdKR1{^$=yieDŽT; 0~F\Հٿ\;DRy8mV'RZOq?$PtXp> @99 <Ɗ+.kM?BKer ]s([ Kk~ x/";$ ;&Z0(K @7 2oiɩ,åL<7ן7e0gfn)HkڌH4dx: \J3PDg[cXԿ7Qg zn(!t6c8kPfAv wnǘ4/VPD8u3Քd*DS2,Fر(nC?]ϱqd١l/l;ZBN5;2|^{Q :|&7/LJJ!l몽NDFR\+QA-Y,Dμ>uqU>tdkҘ^݈j)Ihc7怍/YnB.zd`s~G(\=<a>K^l9ΉMWoW\Evݞc($nICV`X?l ¥ݮ^d!\rDu#{>\CTaXM" $!l'o PVFHވ2/櫍bFIȠ (k-+± n%7(}VƕV uuoyt`J]T8nn.Tb]_}l[Kڌyc/F4/"S1ũ x:l1U y{qDs!<ˎjRe$II: /VKCnh nz %Ld1i"A,$T_|S7u"vfO?tI8M#JE e lw(ˆgP̎@e=a Y!P ۯ51a>׳;wW\j _et+6op޼4A@SKRʃ3)]VNA'o#9=g:er!>#f-c3{ !ucYT(Dǝ@\Š޿")xvVK[/6U[S0w+i*t!N)F@O &9O"^2Ig]fu0xTf/B6OkGۣH3fJh"bЎ+;' [Gy)&Q_-ynf0m7D7o.T*vFARQ~.,|(uq' 7ؚ)!PްQн6Kcg9_OV:Όh2u}(ĮAYAxi-L_,8C 'q!_!4 D(sSђ(1d+TT[C@jzAveo'iŠERL+>=Bc7`|սnHm|KMz,>z(k#l^ƭ{v{ 7 'IMbEF;9B2J=8Yq!/ s[;Ja}#Yr?kgLp c^ n>] g)dgU{+8N^'%$vb,נMogBC~/%~iF'x~@Ͼg͇e LȽ8M RF8yQ ·*ݪpm{M-bo{|B/dC֝jG! ''~Ćb~H eTj&nꡆklEA@ K}}LIa|.#|!՚k!r; v"V2Pz2Gy{Nϼ2oSie[-R ^д]Oy cv`DNET \^U׀C2T/1VųXSg!eJFpۥVW}" ۍd2c4_)r '[fsAx iÄ.8_ ,3Y'[E3}%%|tL?=L5bjW?ۿf`\Tw' *N~"b앫3KYZ | !8Xu4Eo,ɝFe=_L*WkJ9Q%t*#b r5g ?1EᾰԢIIl*Ŕܘ}xe_Q0?8%)/FW)"Ǿϭ?pg %Fh^0Ǧ֖ (!$R E±Zbb eE]&}O&!/mANciʈ Y(K~Cԝ^GwmbbafH8(A9d<_dI݋֍ۊ'qbq$|bkyB&TQ7;.b{"B]Ww##UV@c:Ijz+ѐď!-B]N1VkXӉ:ntKiLbtcA `YLO=Jd6 |Fz F3@m%},gXY9:|ѲRÞw-d$4]>}uՖåh7:BM* *1]zTP}Gny7Yo܃xxվYqϻd bp;h6%>vHu|Sr- Z[8 ̴L` lz ;"z7c7!x/>f᝛}#_"E#AZ@P<&;΄aaHWr3^Y;'aߏ:KLk,,'.{gڥey\/hcEn-͕L:9񑓅nkQP5ŢJY{:"A\ˡQϬm-t!^h@|!ݺR9?֕ DgK=*wGc@'}g`C4нÒ]riWmU\svOKR$Dbf)aNv #()`_=6G$r~:FN';0J^znIL4Nn)mh9ý0wWi1 9GQK70ĿL#ێiNAl5ҹ~H\G'{%H(0SG'e"-d-zt^?S\@LE/>{}>dQJ~d?p(gq0g̱QC'.?T=[ӟ"+#Ugɴ4BD N8[I8osoZ_h|-i8hD,|*R$2Di/ԋa.U(B4y n8 𗋞J,7PXZ y:^YZ?pbJmI.IC<-w\xbi*C@Ge2Py2d+:!eIz" '<{~;[{rxT% Jdfʰ9`B b5&WWdt,[BGwO_uFȦvV2$&6qɺ˹t#oùWdTRk5e.!Цc²$#9/[}Xp#sNX\qYŀ3 >mjr0{AңↃG8{qIȿuzg3.&`|;Gl@c7NKÒ+%): Qbޢ}膸Oi{LI2 6%__IسeJx 䚋 #u/DS[ݹKEG~,F vw=hfV_7fXH_h !2vTEd>'%ҐU wkɞ)UAi'";<'v _D/+Ggops"8wm;Hy*_=(7J@:u&uWzGEZDRU*S*T"V|h\Umx[&t$z'x dLIwy."y򷥁kZ;.{?LȇV/Bٸݺ,k_m 0\O(= oP}U*U6Ʌsa ;Wɳc2m-=GC-'>;.Z*42WPn3#C=u*-ֳD6=r)E*smG 7 ^/q$_Oa=}h˞Sd-l)|*>m_0ԜDmv7|.n& MP}L.qP>z12RsMoQ Jxȉaͳb.fGFEY.n,Zao`(c e^UH-}dt5KfY6 %z'q6'yKY8&N`7^Sr`3lmUK;~xh\:b^bX}By{3S1a&`"utBdfX#=ґAL'ĬIA? f}"l+JZ=Jlz󔽘Ep?xRLJ/ g7Ɛйv'[ -1mVZ:(ʖ)UU$?R\+bLlcWlŏ1U?!k aDHȵĴ et,'NIƱ=>v='d^ޝ !OjLe]ikgL$Ȩlpy?X{Gk@,cv`Ϲ*ȑCx/?WC-CuΔvy Ykq/D>HRUO;D8C uF8[J黫xMCm.)gH#ֲy=u{"qE˂O#tu'6oW& nXu%Xî!;p#_X/(Aζ,c_ӷKgѿ,vTghP)C mulo\1Zy,h#ʀg$D)62$'=o*c-=Q)<uvwIb(EZ487˾y/g~A-l.jxfمTF̰Ⱥc),6 kYi$,aVKfi\5ByDWD |o5N͓V,]z \oGt&jK|~$*"z<歊zn^KrSCR;Жdj ڟUC>+Z;-͐d> )I|bHOju$ EۊW\\DᡠFf&ݍ)joPGZ+e!J-@Sru}Fɛ[(=J-w5 Tͫ'D[wpqº&P%V 뿶ڞRN]dy[ͨ29$񆹦G\Z6f`}e+4+ Z#Lvlt_a5ZWL*H#rei(|sR{Oo {:q95(N~'d:?}iНel<<,' 7bO]61V+| {0RJDVXp+.Tg:X:mİ [ ʽYu uslOCL (q0^DgU K!QQ=ᙬi| ^kS~ <Oʗx9K8Jô*9Ǟ1W 7 flbC#^U["{?Oױh4,9LGrr"xe.3&Sjxw:ݠؾ(z's[i;u{Pg$Lw3(rFy9bU VyB  #=ؒ K3* + fljv~Dir\Cn:EALv׬ ]Q 1Giy`8XԔ"SKHü{# ү$&}=j"۽UeiUl Ƞ!"SƆކʂȡ||߬YMm+Ciz^=Ǥ ^Ш#ɽo y#PZ*<57<3գEl\iq.RdZ9BuH'}#8pw: ZD"ٿIM~>!:PA`'r0;0 [aݞ.}NHנ|@ J8ZՅA ^ ׽n6ē5ΪpZOCNJdt HnMPa˶`z+4WK( حs09y8Y,C*d3zؑlZ*‰jk'ӧWccPt'E_s\/\'opS'_5=dTd0WgՊmۼpʦYPDM\y,B%(;tϫ?dzN ׻Q.FmK8a,5;p=T䘤iE7FXQ8;Dn?:*Xm"#8f(DJRkIE%P[FQ1]tCH.٦=E*t66QzI h,#м)**xslDCP<@NTo~]wţAlq1$WB:렧NXfr+t~RK]\S KkoPיF٣.)~3Rq%hg)_1exoN$z !ģ]''@|$\Ac= k,#E;RMLc(6 *԰ '%L !6%3%G+!6v%4&=e/tҾ%}9`|&u$[wjG\<0Iɶ|7 -묣xs >=@(`h$M6%dvkVpU>8~x[h "n[XEUq KX.u$S+3CYtfPUX>L4Z$d~G/(d#?xXș>#dPPEFN:#jZkn*S .%Z{85Vo_^Ptpk]M#c?@>6 FAr2=` #%[ ZeꙢBGF,8IY2lCnxřlI<- U.U EMh9YyHB :VʜuOa4~V1~t^$vI[k`@.u O,c޽B1L{R-`MDݒYlTmI$\>aZϳ6* Vock04r ~@qE 9:H̎1孙mK`ٽC!p0n(1uLTI)u-Ϊԓ$tF\Y k27(6#d}!#0&Zx%cff%ͦK9ʕ.Ї2Ϩg*%r,k9,}w,|_?d CcPG4pTeS+Ck̙ﲦ[e D; g8a~BCjGXz~JiBFα'%"E]ҠJ| ǔbO1\M2F9 8cecq Ip5 q56XGip6I8ja\=|XsnwFIzA̺R秓D ea9^מـO1jHɿ}#y bX(/=iC2o]d^n !hlߡnR^'x G.pOsO93MYbF~ (jaOiWWRơ-Y?QtL!X۽0R$J7.-iWX<W] \2E$:rGz0$3Se5`v% ݮ@jzX5%Q_9+Ng YYV|cԔPvrzM1[ho)0vyL$T%;rئJ]y/E(I57:4 t% [:G.cԦ ̃cR u@!8||1*][ <:cmwԕn9qgNd[贤ɉJLOǞiSO:HG)QG6pY?/~Y~ة ydH8EN0Dm1e{ cB@=1o~? ߻!^T=VA%6%TwτЁ"RAw,O3cDInRL/=46]\SrLV^XAzMe@"d"ǣY91tr҂j`hA7ㆷNmXŋvb%Hj#=aSu2S9efiEw} pt-\Veku#L_܎\9G / ~EZ+<@؄.t'8* Ȏ9e'Z Yp<ǁuXɺŦوZIʈPДԶA4m:F'S6y[] 9p1~u(jSj;26`1j7t̺6NjHSFV!פ\68B):G p9vkyUNOبI72ۿlL$K4=jU GҴMnWo_O+,cV[qLbZei3'~JrVR[aY0AMr8W*n:ĉR0XRj9 M&6? iKW۰S|qStvc90ipJ-"yBpnZ;y;Tl59Qz$RMeN ʜO!#1Hϑ'Ey)^`Zܩ9d m)+( Ӟ[FJOu܂hJ*/ +~ۀ> !QXn <4S=ˑ)1L- ci(Ӝx53yȮODp`͚"G/.xDV/=A@TU\9یaa#x ՞aPJsLY=G\͠ժo*euij?1q./okq<~g8\0EF4Ztsh')5C9`#Aj1;W%0\.6:RSߺP̐h8|xxyƆvR&h˷G)D C}1~|uu0\}܇L# b x<͞:[/-r,j>[Ö`zِЯ,g*_\n%q *ARrNfB[;n$d`vq]Ի+,Gے{S‚"E$W{!h ]zt`mj|t8aqIjk]ӳ7" N=h+׵ fA*Zcc !$)2}L٫zmy|׎qGr*uL򸌞/ϖmd'ܑȃ}G&X"RSo?M!|>צEOү] lT#չ]쉲 o|{PnEVp{1b[#H1qsNk SՈ7HaU4J"+p6YuDo*\ /R}N˧AB 7$#7L e9;FhJQb6{~' F?~G oOfWKA BaɖY)M¶*%VV:,@` XսZPWqf{Dc(V~ٷrNS{*\y|ژ^ZSe> B\A_%.Еh2OX(nc"zU'm+4 @¼XfmMqn-&zG|S(O`='[#CT;JddtZ(O}}S;61+u0>UvVB"gkzƸ7YR5KTzcmA Ԑ(|5$++_"AIM!Q!z6R'`LE&VP#w4eAUB47~#Y0\ih?'vNO3ZA& Nq"WẤWUjafXO5ɴQԇ u]ezI \)%6E Rt9*Z{bBuD5az,,x`} y9fM+$ʱ6ڿP_LCJ΋su9~^sf{Rʅ9XѾ\ $oݗϨ_֧[W(U.(k>#]b?/Fe9jN7Em`8ݹ@8P8;SIn k {[ũC_x.Hm9t{m.7{: 0`Q >$r)8G]ڠa w6.*:ѓia(2't3\tG@Bc*ι߸gY'B\o) 4;)r,6liTUS=(x˩U1_¸fiux'јz=Y9S-ΠSlZ9L.(~ \(E+>KOÙ)H-& ^L<5;0.oCا^j mz<-L PࣗVWm*6|qo-they֣X&I5%dڨ(䂟l# %F"\,9+3":Qμ-RCpY+ dȻ>"zȲnJΞq%9ؾQQ:`:H~|bw Cx9| :u*>SbDCk<]2/S"%.y'lޘJ\E}W,)-CPCYzef7r{ۊz.!!o)9*o/'ɿYD)'/VkdKKwXJd6u~+]vQ(Yazw7cVDyFI\涞UȮGlZWӍqHUȘ-Ar)*FPt5 U kϋNRVU[F1R<\&y2`{2;/IgP&NBG@bL/ɶEL{K[ (4mYvC'j[JHT043]1r(O4fʂ3ƿ3 ,ISyZ 8(W:9qY]I.<#*=?L&=°t,8=?BH'd";t(Fe`qDXѢgV^~-1 X2"4Į0SI7W'Ns@nYsc>X3҄Ġ>}ocj.┝"VLfHRLr%eOUWQ(]j ro1&6>tFAϕla'2B=@, &)bJ}?b H(34VH}j׭Έ:8z|gk%N]طO ^8hħ98Y[%wo`9;දðD8 n[n t֘%]b5RB9%RGKaKA!r#|Ly-dF$eWn Zq޺ 47fKB- {^tVS/=Лf/pR#Bqjo\%H\Or)/!/}lN$] $t_L|󚙠I0( ;?{Rx60+Z$xa|Vc̹Iwq1V~QHCm@KCy)ㅜR )@6|Ϥ̓ /(p8R) px |7`)BR Ga߸";Mr,5bVD%/9^)\)2=+T(ESjELB&z3D|U#Bf8<+czx?[x6bK5IyGS%>̿1TJ I߹tA$=)LĚ^ e8#- 瞐=C'UH[ogŜ%EM6<]`/9v)/IFUow^EVrYf$-p4SwLVy"}PirW|fF|of|X'+E- *ƨ;OTS,4|lu!Jxdݙ7'+d='(G4Շ`~1{I: ,"3CGwHW`NF[ _f{j = I[>%cOA CSJ=|T)6u4Hv lXѪV)/~]L#`2`Bi@v kbJgd>&jHCH9,0WdC՝τc7ۜ!`q 5 +p0O2Hw 0.E]213Ѓ9SK0j>r`o>I%g`dޓj9;!}.N,ZV@F?#3MmJ6?a$P~7;d*O'S$Zbp ,[=ҎW"ecyfLp",K[!`aɩ~AC<=VGHVDDUa/ʽ3tm(U@4@Y62ӵhYC# LX 9 ? J7"8JٴdB"AdwOy,\ygJHd$m14C7]AG; >o:FN=(1~йq/ٯ pwT%8^| T?9 Q5} (#7$Ez!,O_G{K_g#<ڥl=gyQ'pS7 #Q_P72jBX$~YdySAqT5EiF`o꼈d+mMhbSiYYP\cD5\ԌGnu "Y'ҭoi"E֫h|fKD$3{(hiĶ5 5 ӱ`U2ޏGwu;o,sTmťk>zwG,'0bj1sLll4ѐ'̙2NbHLij*49c'=Xg[noiҖeP*ρVҍ* ] 9nIG`~`\n\w]D\+Τ%Rbᧁv2? q`YR*.%s o}-V8ebay:%rSc޹>Ĵ_4!1j⺕VjV<p;_%%%EQhH:n#n"Aa5/-tJ/#^D̔: *sFcԐtRt #lNdѹER ^z;S o4nwӚEC9;ډ*ƉK j $ď&>GtgR1"IqH+i@lpH^kz_t{93Gd>\in &ıe<^grCe*;yܕnZ_)wX |.ᖿ|AKwmKk~):Om %"ͽF&w~#%yjJGc@SMOjL w$c^53:T5[,qNe M*m$3'zMcg E$#̻ پxGnC8nR 2NGazJA֞ing&h,QAUۯ#Y택Bpi",U:1UZ3V8e7^>o "qM[&e=3eJN//n?lIdlSa;o11=[kz1QyUv Ն` Pmh Ր [yqP.ZZOKVM} O|C_eO:!N*!H-(x4G~#_`Becylc:u!C/ /4~g_C Jp~sًL6_4642 x=P6Ts|pcO ,(3=b~W6k,U3jiowEFM=hxkhQP*rҲ0>u(md*{y%xо6DZgqOAA)YSd)N#w} fP}e$Yo`T3!XJQG7Y|nFtGBqŰyF(h jta,[%R-vu'!py xp<_,?U_nh5-B8m'R)$اAyv稲F\㣅9r:QP5Uq6jN0$wIVa5I]!2V͑ؐ&=!x3䦼ׇ99*Y'ZAsf_5FOH:~e-lcNYoHM h ULLo~ 4lީ ; _TDì AIH'. yf՟9I DY$ڰGG]"DSxYo3RB'0m8 G#49$l"!^rseT^+ fBU3XȜN}\iが[fM Cͼfj@:zHdx`^ZR ~- E&lGeJ- Fu;d; JDZSǠ!4Y,u,_]Wxq?'?aX?#6G3腩.x}sT0'(-TiyteIs<6 㱖f/ƛ{\~`zBNXYb_]s[Q . r?>h2{]%+V1YyBj،.,骿_ruڰ܉?.V$Bp`6 ) "&ٲDO*)'kVUP"yhY>^U0721̤;&Y70`KVQ_ k?Wu/h%?cIyx| JNJ4YEn{ⰷ]^t}oZ!>]Itŕ޴A;Z>ԹWkHR%p.P]e14:C[p}&*!` x;1-iLw| ^:E+]wA.}C =>yѴexź+Jdp+oA ,R4)Tq _^ zP SC ؟,=bYO, WK)7  CJz{\w5fߠuՠNX8q}8ϙ&XGGV3Z< ' pِlc. =g|MTaX1h{ ITy}Fƍ)E)646tfBęh.QEXU[ %.b9ͺѨb.!TPY)KVV(E`IJ \x)XJD6ʀV*0h}[u5WC~BZd2͛L” Ѭ&^Le#VyS5KcQA^n)Jxn$/򯐆`k*h6q4ДrY'A$gnM:c93%6 ,xMziΊTxZ90Y]a80>L(؍]@i ԮD,XEJSI"(4ڹ> xs(Dl!&)1Khr|<>6|ewfQo_t7}سfKBr+"0 ;:Rt&Sa&M瓃TnKC>lNٖ"xsrN/G,u356J'Mas 6uzLPSrby@Sx{bgW\x*C~ Ft6s̮g bMD˶!LLL$3Y "|ʥVʰ6A*QTnK7*23 tjH@<fҖ 8B@cKe~b0Jzڵ,{JVy+7BhX\w~*Ujǃ~UruQ:8Pi:^u/yPs^Q8G!E[ C0Ms _ KalY=~fǷY\<х_[= .-'`hG࿭pm@RiUT|9|ka{_B8;M~W"!$R*&L^5bwہQS)<( < ,Y9{-!ӿyϊ9C*YƓoR}mv3}2 4g%90߄t))XvىB5Gte@눣oIN;A0[Wm|Xժʉ)lNl{GCƽ3g'~BaMJŲj1GO^ˆ|`,A"̦˹0X#w *ރF )55thlGSłR`GZP\6>hG\#*u%̝$G[+:)p!-EC*wL3f uzpЩV"+I[x U` >vmЂ c.\X3h(x_:5z+2M_Abd~?nDאG["_l3JI]K+z.˽YP(*; #tYz}M8&vpȉZbi S_{8q ?M>D!zfPf+V!NTU]Hr pC5N?uuUP}[=mW J'3^F+,Lv0G8#8)YX 3-(HO 92ŜŇσKh.A\$n|Wd' 1]q2U$nkQQ?q"e^h~~h?̥c5EͰ \5b'.&Ži#v[:XA-YcjS#G\=?+l\ML`h"9~q7J5B>\ W4UzV欹͐v4ƵRb&xpoMq{|}[<6).0s,/=}oK8 DBs߉\5T+i>F/Ճ+@)RX2>'n5!`6'ăs%o?i3SeJ]̘{TBu(W#xJ1i;RlһH̿j=k8qwJ3B?Z8J8IVz7pGŧ#t33AO(a рٳ|Y] aWd;r:T'y}rA(r9!MR󩻪hc-9tHtiZw6-ngk8Pp\ۀb%=17Aj"DL,JzhW`wW%XE@BQq j,^LYEbY˃B@rd,f5Q͞np)gZV fwMfURX9?Qⶅ2P*އGNWQBdT<OX-}Vռj9z˰IFd|n`1f0g4}:-p0+D@ ;p&^+ckۣ16OE ]VƬLȢw+A5tq DT\jv;ֳL` ApT廏RX`: |ScDZ4lT=Sb]ԃ|9C~ދŤ70H~<>lru +'4Gz-<-f?L,JnZĒ[R{Yc]6e C΃ZdR2h{Ll3H.T;%7 /qteֹ8/=\a?W`ɬi+& JpX zB8sIJ&T}<=Ix SB{)^Gl:ldAq*vZ/;Z׍Ӣ8wß ̭BHq) X\0՛@3Z3U .^;9 <X1 v"Ɏl_%) b.,cs+6܍WJ\ $G?CO9_EBX=5?\hPrH9Bk ;8bzq< Q"h** y?QQlt Q]ZRy64%tE|jSƽv${z0AeHNsi(u"n!.eXHuthwO H'E;}]o;wX"Eו%\o4ytT c(mGÖ`Cm^$%fiӻgsGG$x̢:?E3nvҭ7)u'ϢH5.)׉b@-˼QJMCIYfK\{ǃ#f{vۄϦ `I^.?章!/bs?#v@VEK$yNed0bnCrK3:s~QUHBkƸQ5N&6ɻsCI^M;r]`z/sJKCZC}Wy9,) pAR}xNqYxgeʗPmse~#'o&d)χ]>/mzp˃A_7W\ҕDoo ^@C@KU<2egU-AQ2`S-uuSfپZRPw4j|qcKBb/v֣nrosCle{2Ml:;NaՀv`IrBQT)gu-0 2nY4+ g`߬JoSONa{IW2Xc,~F CǞw7笳(0"͜)s:<0ܩKN=BK]牏07EG!dR[l}['@8 ?4>Vչw|pz dVT%$lBژSRA2"rQ[k(*#aMʯ7Ÿ$) 2*K3x]XiIww:ʣw\ e/K>E٫0IHZbi5Y{{:\g ","dL$f tRıx2K!]-Cg얐%n 0jT&OB|쥇lfN!=VX%){`u^>s;#~8~0?Z_oHbʖKA“sW+o4߇* sqjIDOUM Y'u[ѽWT;"H*:Kb;92q4NHh3k"e&{Y?- W. ElʔpEC?ϺX<#\A=_(";n#D5bSLPwP>]EԵs͈5A:Op3|pa> K x-jTvuo!jLe*5lA`Ҥw`lʭV'$esid'Bw<U[+=WJgt,fYrEYݵ^%wQ.Ldb?\ˇg.x{ .1_j@/) CY5wYN܉o7h&+>~fM+xgXA YX)Fgv="d-uL8,.X@.'TnP#aEl!mt.vu÷ u4D-1 #r|l \7;Bw7GihƟRr#%d;M1*[qĀڝLJ1}vv4q"NQR` ]XgO)[O%d^ |bbMnīxZ2>!#CDZk>{< 0a9beOhB|.∔0fyJjgsծ.'/`D.T+lEsEOnE$#i+hQ",6!rʻK/6s͒: aS _t 'm_KTBfM@D]2th@i#.;gy)@x-zʗj{[wtOA)pE|z,8j_ \2eQ09T;R" rͭ/9;w"jB\D4cn[<;zs+f&f̏!B6E]pюhüCqWMXn>%2l~Ncn~Pc9c]J#^tH~aXI  \F9_ M%6c0foj.c[TQFx-]UaTTXmwk:!J5ao >ӯ')~$dϤEc%N-#݌Q,gyٞk lM 1amr|g5qb!IFj zf1?ū ͆I'AzǠ G-8kٳU(,3іaH vri>;r/Ң\MLzOɤ1z>Uͣ׹r0?nAsb[\;[S弁IJ&l% +v/N9uVl](mP©S{z߃) 0V0X[Xb6͔~ZțĻ/=2dDDz)VKs;" molD|(֪K^uh(s, ݣ$56|ya)u>Lg-22V 5Z7yu#0DrV߻%7.ltǠ4>qZ|N]:ƜU?ίò|a+QתAQ;ۃB-ǣo| JJNd>*ȎX ?D{)w)RFoʨoˇ\R]y耤>c gnp\.XyT9c~8"lviGg@S|4N<[XTO HY,1a5j_dPkH+0ʪ33WzMܑBZ9.){gݮ)c? ]hrmLaPLV)rGT@޷3=^mSd<0BJG$N]^; pai(9_\ԅiC:tRDo}ؖ.669 eEI'R k;ǴvbV`*zI4ec\~CoAk1kO(ߔFaʪAvJ>,>DٵK/'tBEDWg }{9xujD*KtW2\ Big)IS3x e04gX3\r&c!z,ZqQ{G^7mxs̩bZKiFY&ι?ߝWa 4,IvgO.OX<"&h /SYo/룾 F >Ȋsū9"H8v|1'ڌ85OhOԊ<'鞞頀4'GP0λkmjCOXru >Y4ٷ|6 'NGyG?SM\TGQe(M2tMul/{,A}gMD2}~: "3PqGkQFt#d_OHObB,JGTs9߱hR&ci9)t~ҟ-׎G7`8. ﭾ->ؐJfR+{Ű8ꙑفӶ8Ʋ6QRwiF@σ|u-@lvJf?G*\:1B&s竿?833Ȫ/(aX Uryvmi|um͉(}`.N-ґ{FcnAw88 <=j ["7i url.]s\ǻ)3pzSRyj̎oT>D)X[* 9ٸgvjg琳?5H8\ð-(n黴 -bfm:>*!NjYEyTxHM}z#IDl3._W 﫱v#"p~ du5#Lh~8!ַ Ĥw8a TA 09#LխJz.a5f.kG$LhFm6$8/[ {g^[JɳBrjʙ ͪA`.0=۱! mU{Vf$uʝPb TsCSf>njBU>[IHW|V$蛊%B]}]#-@y)}]`іk.hzp4VKLs^VMziEjT.ha,ެfN7doXxІ>-:F"*\Hn|*xJ֨Ƕ~RRF$|,I w$ C_Fm I/wKɡ ѲH,פ К-t|&/6Az11\e6Lâ ߶+\qfT)ͭC EXZwl(hx.[yE8v.noS߭~C "1Π*g̴qգ$2 gHjh279waGgPԉ&Fpf!8e"FŏkX9;Gs!?2/_Hk 4rD3z [y)\Y:@6 zówHHiGz~Nv j6ĬAj"]6 €RӎOQ' uCu] NжE ˄$٠t(@fy.3U@en}]"T*fz1Q>O} OL=1)|vw-X%^w](ctCN rZ~\~,Syg E IȹWJWѦgI" Qnˆ­1iKwڝ$>}!c ST{+ [bLHBLmSdL|aƚ/}LB99Ȇ8θ`J̳2(<|+o}JFmԛX͟4"`@wܬ8Cg$mʔqWz-B2^Hr dPI۵ޙ4nUE*6Z:P{ybHUu]pg_uܰхdM:}cԩ<)UP:h~ٴzx"F:\Vs" bXP2_+- x)r=jqs2R&{g9Y/u.~ |pPX5ݏ2; 鱋þ[|G;.߷s,]⩶$os3@cgf# !N.(n&ClLXRM/]b#H Ũzoff5zdƛ͡_gK..@$t=}C8o_6(''tsd&c^^˕wlBNy<Y:^ͮfu?)L-k4)& )82c<)?,h;xDafS?hWµ^@gP' ST $l|:R _G*_ѫ?>CL.3C<<s}nM?i6-LRc\gIjG5e^7u-p3Zd*`e_l}~$1:s6W)h֢ i n~)whK~Rks2p`ʤ~u 2 SO[$?Ln\gJ4: O4B:ԛ˙P|c/ӆj4g1`xGZ6ןu<_pXDNl5Q ΌwkلŃ>PNpw΂KqgO,eM/H)$:OLRjUhs.u{Y7jܩn34,) 8LQLC?l=1abg[9oQ=qJzt'3N:Gz6oWV52N/H..%\J"?$ԃO,TA͘{V^,؝xӎxA` K&7SuuB-sPՔ 4J cm\|g y( 00o7W=msv:aW#JVVƎ=u/=d"QdU1tvà5]Pvq R%'@_35n'O LoH|>cA<ိqsXj0Mָl.'ѵveηTb!;ƣۃܣC RQ;P)6![(#bOD}U 3nn4kbf'n::L%uxڇƹ*(9Í= w/GO{Whٶ(EKꬲ.z>L|G= l148i/'4qLߐpn+&ĄY3* ʷd{eH.D{%.T%ױaų)ަt^YpIMޭ]>C戦,t?kU'.|EWKR)oTsq;ޫW`r^ i#ܟL9 ɘ3+\D1"k$OzMrUBϺNBgtrQC^,w?Zu6GgV":oejkɜAi9D4^WWLasoS1(Ke-i9{2b$Ϻłw6/>C}rF6??Jg&L;lX6bZd|3ӵ(X-`0Qmzڴ^=~k#R<)H1KV] nHn`e֣Բ쩌!ܝh Uɧ́; tmC"}y[.q}T a`d4T@<B{jrAP#C6 ڭ *rTͨy Ë<^aw28O=zED|4P " Wh>>NRvw6b\?FmVE^:-Ŕ(4bW<t}Z/,77MSD\!chVYyX zH#u V9@a`2$W{΂7~YF)RPޠU{DAN#W/G`߮j7De[6bO\L e Ho=F$CON$L{= `nR R$JL;]E$ mdxFSQbʓ͚~]C`q pT,ZC;Vp_h(tylUDҾ':!-f:3$юCON`JtWh=HklԾZ(Wq*0 cэ{P8{Z.*yKJo3-SJ73 RN,Q^SOr+4d][^l,ٓ F&iY_3by;6q'_KL{+Tǡ%jWWuFq@A2!RaBeE[_W\c9dϓO |!*>CW d}ms7Id>eƐ5aul_FC%pd=7rz9v+4I2o ĤYrV"qą'5&_g cqϺAj 1ɑX׾}aFrdr' t*9avnF\bx*gGOrͲ_\3GPu@ڽۉllT%!dg5Ln>BxPTϼ&Қc`ٴBN7Ço73ҽHWwYi;0vgW`b&θR'UL ,<|N ̀Oj}~Ϝi2Mͩ RAΕ^/U-YnH7 U ":[=Df"r4Ϙ*e^ac;lUe,G`]GьLK)p{nѴ *kT ^:O]=c#0ϺSl#"" ҎE!#7N$Ps&-l遂Qgai"ng1|IN-Saza~?G񳲸t4u@74q 9U,U>9(2< 0驋v<(a+EfmޑY34o#SEJ/+*{.%[[F{v|oUېbʱm#c\,Rmf##79Ht at~ S{1`ds5+fdCHwQVKE'J S? %#0@9qCkcO(IizG[0D>\ٵ\R$" @0Ze+EB.SlQg $61QVmBh HaGFY>) cR we3Vn >fk4G `1#S_:/􄆛Gtp2q40|mOrpmShXuVKh_Y |P <²J ^4 "`V[7Ž.!2{ gԒYZq'k,rRjI)3 [%WtfTltZ, ξRT!AآZ1&976yʪ`qf/J /M \gX$>UĈv fiɀ Ĺfc :={ xNn0 guKv# S|ݩ_L{~^ݬrIEH }.$Tsxd"Mƶxp-qb&Y-29bo3JwR̠fQ?з<_7ɾ#Kq-+tFItᇤ=RTTv{2`|V:dq;U2%=YZs?UARh'ڡeI9Xcװ[_ZAn?5 oĦ$gKOyHeIF2ƑEL1>&h4}X:3;-p#KJS/^34flHKx{PK+8|(SoH9A?X qN-uS";YO>H0ZPҁ2vh: rGOQ_M)ݤXaFVFc˼!\_CBEG27Ԁ-?Ÿp\1d! d: :gw0An5UeӺb#`FRC=w{2r/|j/IIJv]6 }_6Y&+ 1Auqa4|$ʙm2'9˅kG(g}6P) +QX/wѽ.-2$ Qb*bD~>]9pFC7@G i$%sʜѽ=#As" dA}x=ocp]SvMqKP)b~{q:iv]:Ѭs-g{$X|!%c[I=4^p,/p辱ʝgOߜ5=uONJP<VKT߮1eslU]*(NrY3pPq\}zvP}ME[ >xu P2Y◖  p2n} {=O=$ Cgf ^GѰjbʦAJ\/8>I46Y(a32H^FG{WoZ"&{aኺg -Krq $)#yi&0ϠsJG`#lMšM(RuktC:^1 Ir_u=jɑ50ޥ KJlTbd|{X8W&Tg؀%CJe`($uUB0`k\YY\9ޒ\w>љ\드D[=4?Q~ǿԯVXFI?# u]pTxRYbHV.BV5ZASQ `Doe\co<.DO",0䚽1ő 5;zf8iJ ͒'ϡ6c>:bEwE ӡ g1s2 Ec-/Ðy zuJC T$}cWmؗ‰ T]?UA]@*脿P.}: 0^OϤEk0)s9}ux{˩;AȂXfW@Q P.(53$( d5Xe2`!b,/5V:TbךB!0vdJQy@ҒEF ! ^~hFXfC]I@)z$,Y+- 6L,&fbE=pGUA CioON*2S FVޮCmP+6M3qy!xک|!Z'?3rڔ1_JgԼ3SVR؞ePz-Ǿݭyw-l$橂r)9&0*7Ψ/;*xW4|H;kuP -sm_^]䣒lzũ5PcJzGcZ~n:Mh+90C^ޏ2klY=7P[*01)8Oב|f޴c OwRp'}֊|MWgP ,?zNݶ4aFqK'aAm¨Y_E5[iM?o$oEm~ +w ̃y E 0N |F^5g5sRiκ[ 8b\]|p8Y;kj z3ǒ&7$N) v2qB'L"O|tG,R:f"jN i"Y[4Z,>"sb~NF +N}efl=Le r&3F\"鶑s/:]w*ƴhnMdZ /F`HA؏ ^>A3wClB2 YX}!* I}`=*5Ϯ'zjc: yli+;l?5bػ5D r}>Y.?(3LcTzqAȷ}wsnϳƑݽ@ۀ qFh~kȌ,.埻<_ԖM=r% :'(|:Ch䄺pBqH{N[};p[O.^l/;.kG!ȗ=w_>o[P!̥N@č+RQZ‹G`u35TR!7CQ.]ϐ MD5]d8'ԃcxܙ ;P?T.̋bbLth'j'~ԟʜ8[ cH\AN;^}B]-Y]8% a=BHHIShУX9k9.3\ ]g#k]gw}H)K$\cJ.B~4zR18ҟ{AJev(_KyS-BRBè!?Q}MiC#sv:XȴӼ?{soQVDgppRbcb(5HOԖõ,8Q%:! ?^M b]fZ㓒) aQdwb wxfEbdw$>ʻI|Rվ½9Λ0P5M!Ďf#'D@$%J.1+ ZlkFnJ/ ɝ-l_&09rKA>-9oCjwuS"w/PQՏi-;@~+,YJ;@%5^zYK/oe^#~,& b[V't8cVZ%嵲d׈JԿ9M 8 S'QcMq䐷N^c !{Y?px0wZA)]wuBn9B-w&"o5j_&0gU^73[G+ ?\8N&IB!F8ՂK}JlV߾z #W+*cGCgE ]6]&'vy:2Nh02/DDV~dYFґ!:є~s72U7#oZu l>f__ʹ.!vc@*z V [Tpq6DvO+r^Bp_vȅ!=#@mL6ŭQْJÁ u~ ɜ=MH[l("'Ii:u`_Mִ0otZ:Db6\!ļ# VI iBDĩY jŮԦO>x:-a {6D7UBNCNp 9M~;R<_e0qECK/!1;K"ƈ$1w  JSd,݊Q1m=;3N: ++D=Lrj89f:vFJU5K(Z4o3d p]sc1_ {a m Pɴx_^5+[VD]nՉ 5RwlI.=%p3A͝o;2ӦGR 힧yAS[ۦzd,<<.U#J]23`L(y^q'W[X]uʗ% n=Ϳ:bvuh fv*ˌHCm3ރ>iJU j]'Qmh*|M]T!/sێ<opv "^nPpLI\ 'h](q:3T`!++]ФVcMsG-vStnKVXӰzŪEjѴYҋE!?KQ@q"<wԚEN.X"ͳ4eҗ&*7.Xwh`M甸8l7aFl1c{7}?ڰv9&hnDPK?H-R|) OF@f\3S~ʆvqoN89C&OX0[5jً8eg"7< J`ʡglڕ g^GƛD-Fh{ yG_:zo񁸊D#竲)8?벥`ҭ}5.<2@NPI#MsơFLX Me$.`WM$pl `a`˯Hb\ť5,W[XИ1L[P\ԓ轵ۺcAQa$55U}ٱL7%ڰ|N_X܂N b.4;nlN6 I|~.a8BUjVU2CC2skA0.(&ޭjÁLj~p<0]^!UWK)"Prp.8YhS^|t> '4ZkҶ3E=vΖ_{ o]+7E&O Vl+\)E:8g@!(nvyBu!xbMVԝ !VMF)R -R4FȪ=ޒ>]d#q۽I$J|AG$P~ih`25o <]D5iםGąP& UjXKIm9C숩]U Ď@UxI&u,ݘNFJPK,EkOF]6|ۘ7 ])6KWXIz ZC)}l~-n+p $:J_tOOR!gr|qΤ펣 q,zeHUq= .vFj[5:FaVD檱\wv֤]ҧ;볲3oT@:(n0 1owkހ5.omysSkD.gn3vs騰Li}jP񴤢x.]1-*4Fc|QHnӣ#ې̑_ q`N,W. *Ys5CX:Mg&pGm2 QrECŢ2YPq#ج/s")sdˉvɑ ܑ _΀ QJX|f*l1H$l[c.I@=Daݼҁ5>^:uCb]rx/#7l#\Dm?P3y QݯLװBt0TXs{F,«)9a`J`}(JN >rԖ)V3?Anuh(¸NGRG O{.'$VtZg0ҞAuM|`$8Gsvf"5=UD3Ȓ۝<\SMɍ)5)-NbZ$+ż~5{o( ``SZLTjAu/]tG\RNOfi,iUP.mҕӮZW_6? VA.a٧TG zI݅M[<]cxK~p5g[MNA. SŠh_'a?!GW&Y9 J, e ĘCdX2gMve⑆?ɞNL gPPqvj" X,[*ơ^%]&MżRw˟pB'i,\!OaY-khu&zHDu` ݮ ܩfK‘ R w^m0L#Y1~A}{7Z ~~h%TldYP!53{6ScK cBW!y|E5Ac;$G:_H~ũ $(< vfjR d9H& mP>Q@Xa+$u33r |sqxd+fT ݦAsnIp$[Xə{]{ 4Thg ܼѝ farnUz!tƴ*B/<'!Sf] ; |/f犲#?A LllX=S*IQ$)Ch> 3\v"m-8в3€uܞ!#fkJBAo :cy6׶˦x9v빂t>F2K1zt!P:% P0V ƔLk ct^ꀧ2vp\s٤aN/2?g EFQnOkݨDLsO,t,LiU0ǝGL"w߹HK f nfcN 6ogyYmONR)Tk}z~.qf?eLGI*# sR֡@m|4;\w5TRF<n*29bGFs-72\oWU8"ï0j6iW_Վ\*U2oau@ TSfZ %_LqѱycjiU*W=  "s71gfr3n;HT"l0.Mr)>M a-(M4ýC HcAxc5Hg9쟑ymFocWx<,mpMgU:hN[@AtmW"2~-F%/ɯmФ˾w6|a(K )8jAvf%v{}ܗ PgB-00MbA=h('vloƾھ@fT|Dt+eWXb3(ԉ4.1 gCӉQ'BσU$% hDP/iJCP9ߑCO!"?nsTHO>ut8E$dxθgD]fs)Wg.#Hg!/kƥ@d!1r9,6µd~ Q% jw`xPXLhFe8T II@1ց{:hj=KpoX@.Jl/Azy< 3?,8zҗ( Re=;H\5=Yh-U~ ֋R`X}7EAڲ6 S/86n5h*E(5W.YGf/@Ko@CEa V>Wp󵛠Ȉp(z‹eTW6 n0kpj>j^މi\A9 jpT'|"BO%Mgc-MgIQJx !;ٛ {٥Q.saHeL,u.hLhCh8}fYxMV׶xW|#rKSYMΌμ(yUH֘ֈWByGٹx?!ؐX:pVnsgE߷*|/LWm[QdUk&7UOvMe/hGuzhac բ\q(հoU=>?ZEjizPhcu>DD9dWͤD=ü 3w%KNHfQOww|)<ӗglV1=g.aWԤ`O`Uۛ:y~/Hm)YX}W01!p@g O&)TV?0mpkfzu62!oTqyKY61Ro 3zQwzh֦Tz.+,`nIu cLlmC%5/`ƍe4 9 gqSS}1p-Gav#}k\6PӓTh`L;K|>GG_Otھg;j]'LS p>m?&"nALXt[n#0*".nlJ !4}rV?\>$ zgNSHvMA*d`3ƍzO /4V L3VN2ån,6ʻ4j)Zj~)V_*%_%!U[^!SKeD ZWZu*kzqSx yBRH*h( ;*55:zqiNNE4]&X?g)=^sY >ض3'a;T@mffg "urȦ+b<uTO CM_MJ{ wL%X` ?Z4 &Ig&?E? EEk" W%o|yMҕm?(d&:t-G+f;5Rh|/Zt nʍ^Rn}XVX@W^)dԅ?W|r[o&EGp)\|w|?ƭo߮wMu"[H}_t8kP'6Q2yW 0}liE'x:dӁd 3D[J tYևQ ݺdf8,YE5Y]/ZJdr1X;,Eme n+UC8aJ1#@uKf 1$CUuWr.Cr =@I8lXGX#e,oI };N:?C0Dx7˜(?IoYŮp~ՅRܶ0)gNg/򠝘FQ)+@YSZ'_|8e{0t-6|[#K4}̟H;*עkjڙxY-W@xϺȆ]7u}طf]s Gv尻 ;m]7td8ɦv}BpwMe=)k_ˀ[%D& |o;6>=4Nk|5(>\6'd!!yXӤ:+*G6DLkHI@20:5c[q28qPY 9i `ͩz #pcoJJ44Gtn&TIPf .y?(Ƞa Cyu_A.){ [t[rftJ䈛NpHv `fP<(4tA} Mų>O9s⺢rD&K~c#C"=*57IX'9.=P Rz*y\%w1&aU&Pv"v!{2| } yo2Wص02PW1,lNtuE'32/[?Wf'cgH OJhC޺ut0}av,*b.|F)fE [f0?E`CW va^UBYmAih$W 'Q5=axO<oU`=vbMV}/وh2^^%O+x&KnJ: ψ{,]'YVŇ{ -ʎ,R)\"h˕Ob6ΨQ%DLD6~OWBZY5DN3< ގ KuHm+W;aƒ84+ual*Zlڼ ɺXmSo*Zn+buFm1y9tAa]閂\ $~Kw~dy!io ?{zjͰ 1=yZWƉYpYnwE9FYF%{3&5o>5pكXnwls5>3;9sG"@~'-FWh,U.>pN'~2md PҖD-li/o2!Kw)fo*y ;ڼ; 6kM}>V'.iqm_@hUp dӱ5uJ;L^TJ,R;L'dg4H.y% {YC6B,G7ñ7ͿIk:>F/َ:+!U3˚P Ɇ/p9s„E:^~޸'y`4}3U/.N];ZFM%VٗC#H -:, p˷<0#GЃ@:0;hZjf,ZU&cks!V nj ;≠>66ᱻS(!FVN'w%60#buN8tbC{LT&PDGUC/+dξ4q 6}$!S7Q}A3P)¬qo{L >ǍAIRkO=W_PΧyߒqR z0$O`?3dE_:YDo~y-#W?ՁDU}p>GO2zҁ m򾅇2vhubrbޚy)ٔ[*9Nˋc *^A@bc_jـ!ޟF$k,}:XSw;}f^_JwT?ag$BH7^{zH1FowE ZQۑECBz]EzҙeyL}9i\گ.5P[wq}W$jx|?eDU3zZpc9(14Pj%V; c d*b` Qm'ӭuiOxcU {WcBI5!pDe={q $+2&ahyq2cF;\bLAc4N#ök}~6=S2LfHlKk|\fвbj؋ l/rL,jv@t`ޘ F<.ՖUQ%SD<:PZFk$)VeK m˭uu" 4(ScpvS:1ȟl~dtFi U[u^u\["yU5d oV.D.˵ȹ,25'( | .//o=)kPV_4X<֞!FXIm&Ěޱ({mW}ƼÒ\DEw ؂?54*یu"CA:?&U"0c/]>bYӘd}Fd;ǖ 'K^c40Isъ\Cu0]މq/vLxGӖ:trw߽3&P? xRmԫ_@%WS_Qhɦc@#y,| 癯H_NS2ym9VlLN־=z&@zY=#D,%SPEt uCzuM`% Ǘ؀z1X+h\o\stLӚ󩆾CTVKӯyt>lIbv#yW8ˆ5$I dzSrl35Q j$4[\Kɓ&Zhc|)K2A1o}bIr%Qb\oz='OcȮ~k"B& Y{8tWQjE 4;'tf ɮОhlVTA HŸ8=tޥ$9h zJ ,M8/rzľ ~Lr։|n9nc `2yjܺZ4j >1v>EaYfx/@T5et>C8XÌ% /]: ;q')H]JhZ[ϧ )>iP^a8/-^ʮ3-W@uV^Elf^0C⟤rȉB>]'+ >2Go H&~8]XT-~!d'טr v(ޤ-)Y,]6zno gzyQ=T[>; A #'V/S^ujfSqtNdq۔tݱD$qq$;>>P.{:xz|f_V(vU3bFiEڗMip';]eMPߞU srd❱YnZ\_֬Ή#rK&74}i3 %̻ `kk!W#إl4Gl:0çoH_rޅHx)Tpb{YX90,dְxFXn->u <"|e#&jx`-[.|gYdm9-vavQEFỰiO)G;ѼܞU_QV?(nd샜ݠru)tbdžPy9!A1ADLw. 3DopALI$xLDfu[y娉Ǎ [3 *mz0&bBeYz|o,T:p}",7$ͦK?Jviy$8,h9ceը#Y⎤3Z[iח\p &I[ǁl ̕?%pAct+ICNZ)HI?W }TС2b9Kc<5fNCk}\ubl/uRp,T4)OϔTv^($P& 9RBP]i~hu[9Cl/f&6S(kP\ 7M%gw8|?D~ Wª oIdE2v<gNoRb+$_]3Ċ\w0aetV^0|٨ 6xK0%Q7c0^]`_8ERb.>_Az!Yu&jnkK'BU"x3&TaFV着YG#Ft.ס3=;arE{mpkp-̔c[Q@%0G@6SVpSR-J\Sߵg#^j!-TLHLF +f"}B+\6~^B--jyU&& X\=\jmBIh4PPb'ct]?F-gSrN÷ɝ0Dj̙˻bdgu*2N65ϳ5+ ƃ`j@d\R[.\! Ezft .!@F`LUG%{i^iT 5JnC G(OC1x{mރe2Qڽ.Ni5ZZÚ05B  K_DŽ!P.sSjkLWv%JYU?*~95GQ Ǡg7WFeQHbWzPM8S_M$FZzXfX}pI3\TبG\`P֌;LS?P^^_E)KagOɜeU3so1˛drxn_[*Y46ٽ٥@J,H"QoNQ.rEGܩ[cY8 CBN#}. ^"ӂx/ҿkPMX=|[3> 6h-,{%_3g9(XPR%Yߖ @F=TG|EKoJq̛c|~pշ?>,=fdzR-J}7t0m,]:U #*]{-L~2Z'QNlgx#g6* bmƔ%`\WΆ;D ]lav k%52&s|c&*s(h2h~jt&)I"7U-.@OO[@UjF1 e!w}cl}GGKZ| `}kH%s ,s<'P)P}{PhKIojjov7I^Rc>"{#eCҙ-Ӝ❞"\U[u A":v5m+drTmr[8g~:^zQONڛ~.hRT~\6|͚kV#b@v䴁 @ъ<ԲvNY)߈^&R,~ xn ī\t 󸼣?/xlXBז%}P +"0Qn ,ǻzu(!Z Ԑ^d6D P_wmg/v) v:Pdr ?3g EFh|WJ/ xyi?mĆ->Ʉi?+[&ؑ| 1oD_8|[?N7wi'f=v;ld7dYpsgˎDĻukN%O1~+g5e WϒEB%ήowch*)GY%77gHnCE`I #q`+RW (Bpv^F ? 3Ϧ^ # lI_[f򛙸eE@31*#w8 MCS78?+}bCxmPi,@{': MwDP~sEE>`٪ytBcDQOsĭO4B;;c G&5uo΂У !>s M>4Wn.FDǞ9cxZ CEh|q"}"XKs$9 ؔGҵҹcoUKa;J?(Nμ^E^NEFBqaҲ5FJ9V su<"p˗oNmD9$*h&Ţ>׾mktFȼnɴۿ,ZmOi %2\-D]u ROJTkކIRNUY~k@I_[!auˉ.'~їQe#dZݪ^>i9S՚04n h[ɬ}(mH i9$g(jy;Z'Cؚl;Bi,6 8iH\7 Zlh0U 3aO,8- 6&>ݢјPζtǔPOCW``ݽ RZ0t2p tZ.؊op3P8!68ue.Ѯ&*CMݨ'PujG7UZ|8vCM'X]\m趻`0 WG}ɂs"}JiԻy*D7>T߂z((T= a y3O6j^>+W;ΛJNz(Inu6{ES'zh4DUzI}k|=ODRN:Ӆr_ˇ+Hjzq k%`3T0[oC6sOqpK;w*:IdYIlg3n/P1N`zMɯ1ۯ"wڦz|.xm I^'\/4H9xOH6%п*W9YtO.=dp>+S~E\hfՙ¬g^;'KN}[j=h ֞{K|#ՀSHnʖHtc9E.0`H,2&`ID.aOM2ZAzQ$:#Iş,7/A[NCqB#ⲥ}c\b}fHdu.x7A bvZ ?t{<rb+`dq#SVqz{zQy$@>1S\RFOZD% .ekaϔUP@$P46\J_/cs, [Xa%QGػ<yWHmh0+pHCM"@(^4Z!;]w 1A3PTA|u&C!}QjgXghfꛖϳƣͱ7"~sb`DsRJ eFUPa8ΠvmB5W1TBxglrvR ycx4'Bz1% `GEk DE(oZ" fwoc,u[2 l_Vw4}yBn';Yz^);kLnyx/-DK'IFގOdvq ({ǎ&/ô7TUO}._ θu}e]8,:"YŞ;PAǗw2Wp['MȞOtBLSN;5 -+ֽdeKg@4_Vq#Ǽ6Z+i_350CsbI BoEm3(Gl;;d Awzvy, lczp߃]9–u wǡƩ!H  tmuS " ^P$pQ@junͯ4:gQӳdce= 4r#˃4*g?IL f:#K }c?}(BV/zYq[ ~ >w.RsL}W-7P-%^%ujg| pU۫Ӆ`S^( cP4 6e& e@wT ܵqbc8D& ~l,t ISI#xЈ$ͬf]ܘ Me|v0 {cWK -L |读Z 1u ^Fյq 6Iz~-sGC鸬#R1 捏Aq H:tu P,ޝ eBŞ|A&Ȩ&tS{5dl }mvdcE; /-K>Yvh0L+1F瓖,@xoI% z8i,!69h\Nz^[nxa \%k8nՏ5+߳Sf6T`=ZIk?Htj?*C5oϐbGK@:U[ThpBr0KCjpہ,Oڮn,8`)s8EGXIKȼ~gZȴ;Zma?t\ww3SI3X Q|קOe܈"}~O/ϩdK1rF^{+*MͶF}9d>e Uia,.Bx5/E@0;:QH6?mZ8!Y %}*m= ldReNrH-t* ߁G&m[$Y3rITqr^N^!pǖOwWD8Yd656V)'莬(0BAu2{Bgs =j,i%,pG(&6hS[vKNjVSi6bG+ J;́@rУh7Σp3(x69Gv˅A0$GpƲ6K Yi{6?͎L`95T VB@7b:Ÿn<֋1 ER'7[[ 4[juI-*E'/ރ=Oɿ]f%#&S?<[<]2W6\>C+ŲyF6 ʕ,PcQ c(+ȄPgB/%M btg!;@42w,ݗ06PŤw@<TB 6{# &#QXJmU ^^zp9@ku܈J5 1?|Bm LapRO9b"|yKչ\^>AIr1*f*n.f ?PvO9՞h/OUS!?`cR{Av6Hoq'Q@ihcdJwN'>H|R'- ]tUU7JfUB3|BPb] cCv/M6)N|s㴆[b r%T𥃰GVCӛ_J8$,}.2[n*}3R/uk*)^Sv\̒=co8jA2!TƧMD`vR6Ɓ9;+lXǩ8ݮ0Lh-nXaOݭf_()..ۋ(s8ZsW+%3DCi7biSeIFCPMxV'Fq)dL>Z^.`#BCvWG=!'U]l_ mtvVOJgԨ(ړ5S)GC9}mdCDDE6{r`R@JV%MGa0 s I}|8IE$ZI{F (rnt,@J!~Y"+[BEis猠Uu,UzZKT Q :qs\k˸ZA3ZF{ū2 ǵ3[ԴA<ܖ'EBeyNj'nz׼lí s:_ϖd2ܼl5wF>FiYõteh)!tx^l̈`5X:}׼e0PfMN5s Bd@Lldc UI|C&^m k0 a@ۍli 1rٖC(Ǘp8uǗ^olOf rY.BWOTA`$ȮTox~Q|Y'>JT9IbE{eS4OiuX0i+Ï4dDA&Hbg-@Ir ϬZo`ѸH9nxWwQ0kkFXwHgW^JƿYӕxVl X! -K{FUk,c*9<$ (8V:[p)G e#Ę[LEm#_)rGp6$9s* Sp; ?OTz{W~=4\ nϞlq I L7y2 [tsX,|ׅ8u(@mx%}W?xW%u'0b숫l$R&*6ԇЖM&Jpߜsø׹QGVoijchhI]gr{48|yw, D!Ak4(ˣS^5YX$y}P1 >o~a@F6CWH9 %a#(EPt~zg^;G}ɂRRF`֥eT@ [];u6L`򢈿:e/=0fjnGn=?" FqJyUNq =8p@ݙ%776i #rv+/Gwܡ5Q0hi=%%WNtmQT0D5q؛Yy%`:d%z>W88X@V'7佣3q$=UKqbw)Ǡv|USjJnM:3#7^/f:Cv@1]*1`ek$~Zx7n1xJd*r<-\AF|#}蜨ʼnj7$+/aur')Y*62b[ĿvقܒSvC/)2oZdЀXHxAV۶p} (q/un$R#qz,:XXK oG@ $"jzdq^-ay!t }spB1DwvFօ;9cS/52> (+[t8g|hdl&ݺ|zdꉴiPݒ I}?kf02jVԞ6lJ`C+QiUSi>Թ=*\r[|MՒͿzmy m6!QD09[^"JS#Dl"r(+#QFcdH{5b2|iwp+X1ae!BoR~:w+??mz߅LfUz85|.dSJN7sy"pt}Zخݹ:~Y1 Go[t7/H3oQSƢ2FWzqa~iA!IduS %ȩg*ɂ%#rxoc_ FF= ,s6H-cebA࿉dmU/h$szH((Vg:&f sz`eJ/XLk|bL\Ϙ&\q~;ިfO~E$+r}  o>LFs'I&C&6\u} h8SZ3ֳ݂H()^~dӋqMJ= >X|8$( cTKI=$FϐʸxgXBiC}b SYx'n4v62J@2^ܠT{:cu>gE%;ׯlw.^o?z2z;=V }hEZ(Q)VSA,y kQ):25N '&AMJu7&Ńr=̵$Ȓ_bd1vNtkXVh_}砰Vd _/XFh\(ELdXfC[_>F8&ԱhZ3X\zxT<ҕ2^!7 fND.T#s8rmIqM翍3Տn LN[myC& ZC]7p°VRWD"{MLVoQ>X²zB=|ULؑ-K9-A'sU[1]at1tE)$;tyϏQ@ 8k cVa{3uHX GAIMPyGB9zPq4MF'my/J LQDv_}C;5MH"&,k$S$q :  & :RsY7n}>8_{hMQ{"@f"!JmmkWFUߺ XߓCہI-(fxk "~V[TW ?e87K|?eWEb&PWP-i-.cԪ W7THC9U@y[NL4Rl-qOfG1*uf-ڋq *ާUqq,iND894TfΪj S[t3اjr{Yi,ZYD8rmVP͎${{csː==ch'' ؝Bq|iC䛶ܱ+v!En`cCym?O\Pn57_ c魽N;kT Qa PU-# \z+ 'DƢp_4MGUV˖lD2jܜ] ƜK*/\oV!".Sc`LlSPRt^/VGͬM- ZNZbR^2[,L:I,;fœ^$ ǵp*HX4sb"bH"y:eS^#_AW 4 m 3@igL Q~en\*|L\f".ۖGu*-- vd'Lt&2lA6Y@]6#Y%m8Hq[vKGD%a_R\'p8wA},Fg՚oQ!oLU>LqVn; vS2Օ"vR &OIɅ]oqyo_HhYGԛtVmVm<u*K{$/"uQ"Qj1 0=>3;(%ȗ퍷6& ⱎnoH.`VDgř.F1qA/*ȳ=ߚp|ճ?-Ҳ~\c[54{0m S"FԾ4-D +(SFNWCN6&\?)aBpp.q< R"[ǫz~Dy]4^t&,6 b- &{JI+ϲ,~*Yd2%s^e{˂!9ZbABP@}jN]ECeͧȇb#kZHx0+ҲS-$k{iDI Ggx& 5]xgzjUkfD6);Im9j6,R >jgZaXM .*u;tlvw:TN,H> VV)ڰ4|װ" woAHyEݐ%B+&J݂MFu(X EE&,%±?'@뼅/c\dǮ)&"Smv+,c=5W7۪d&Y7&\wf>hK >z~f [A0F}ʘ-ݒ7^G[s%@!\<\cx o)^RE;)uZiʹF'd|±ċ=+cĽ<+_fTNvfBR(A#a mYu> JLͭOͽq֋ÝNmso5;酾CoA+_dUfmz5۩d#)1X{f{񦵁 }'ĬAԻC0$f6b4ˎ+ˎz_Ds`|;J$C@GۚP A/۝`-ԅ0Ȍ D[jAvC8۟5uWP)EE-FU~54z'VE{vbq9Tӧo(qmh0Òb0vMUuCE@sW} Rnq0z͐&PC*!.p)3CؠwCuC1~ٟ,E |2 Ñ?YX\U܆X+k9 9DXSXKh"FFi,F~6mfjKvKc׋W$AT`m# lj_%uW-F4ai;䰾 hŀ'$j]2W|XVQB&pHF4.v.;]> - Iq5wʻզYT( =fic捉ea`qp%5Ar^D`FrФ- 5{f8B`?w7)*1DpTg^^nHG} D^tp(;0hH[ 'Ogy\* /CH4졈ϿnZ>=O$& t-I 3ٶ%.𔸉'Qb%4,CO?UC9qweuYpy;Ykv<` x]a30͌w O@,yܖ4AiSs*S<ǘ[`}fLzcd,P_8ZVԭ vt ,̄F棫p$4 ;!o~ ak$N'}r@ÙψisX܈!NMwvEk4 h3E$=:}r!R "TG/,S!>]C( z5Xsq_E>ϤPvG=òO, H-<]#M͞kp }RK L1-E`fRIf .QEl.9FϝWxC;*fV1HZAi@t/Ck#4gٓ;~y,bD~MsPPF."l-To)þPg4fdo4 d^|D;OʶWVo S֫DEyV)'D5{8S,c(5 -–CSɭѣ%߉iM\vLʿVdFpz B" B孭]F3*)zª AMep0%hJ+Ƶ/g$6J!{,"긆ֱ=#`.KE*qTyK24̱{=OVlE0j,YL3 H;+NZY:gPsӜX'~ KVنZŕ= Pb ~>1vVgF4jU.ߏpKqIr'j? "^ѫc ;IjR]׋MY6BERubGq;'.eEoaUOciůw0 ۨQT\m89Gbz뀙h|Epnyf6(OdHq^ǰ~N+ Qy>"J[}m@[(e7ˆ8iOkwDy ҳ*(6yW,x!Xhu#ɾU䚑)mL[G,V&t-j6a2xBA|gdimcF?B O0ևtA4Gq9-oNܝO$ wEd"Z]O=owZktO56bjiQwrbA9ʔ)) T<稪Q< d%Ү' ql2gA37Qry44xVzp@O&TNL)Bu]I>~Aɀ_(m+sAl!~N/BLed d@}CSy v^N8NF_.}F ͱ߉ D*9O1 T WWO,.6mxw[vQ2P>H 8 ӏC %Ϊ;Yh+)TC}VsiD(O 7r$m1 :v SrR`Sq-r&{5/'Ӽ3!yH״7b=A*m.G;:P2} E#f.;,ȩ+ H Femܮ)᝼IWZ!IB oB8b+A*Kp$)rB|gpG3צ%0c# qR&0(m3'7ͧ/Ӓ0$ZZζaeWؤzឤR!IBerN^;`Zjɨf L̆fSBz։0!j3O3ǖxq/$ !;8e_$ 5;=Z4w^ ?)%Mz>4cNJS!PZ|bi}ʆII\Nt#mr!% GfؿsW5J]:# -R}`)CKgyGsNT,>4 HNj9r}>_~sF.W  bkhEVun4hq?(oϽR;)Lrsd)o^h7a|nTC^Sq!;J~pBvC<@wF][TXb_7WI>ɋBaX4)2ΕxևvIeP:q.`-. 'dz%q2u]F+~DtN`$` 15^`#|*(F6%C_7bTiEB2_-}.׈_?X3j+',/_7˜HO#e߬k_H \NQ:y]4] Z*<饲A"Kw]; Fxx]..Ѵ@_=ɻFXjFw3#ݛ1 A3|NFb!v>~ӻ70")j9SB2BQ#q0E֚"}&~4%NM :Jg0Y}HI!I 7OzBHEde lP+E˟+>hON|T<꣌{L&gZ(_nH:0|tEͫRynty`o g;!Y}C=UݫJ˹tS >Ye*@VG/Uv紅ʘN!J,\惑ZwkS]| C zD¤MI: g{Ou8hiї8a ! +3 6f]b&%x3GhM}gYY^|˄'j<6-|)ٺc]LB[7-&,e^]SHLᕨM3jչ;[看'tA0cOAߌk5 ܌ sI%v?qs/ Q%Vg/YHAHanGI2RV}8i "+yJ.+0s۹ɛ jt;y*Нky,8?*ɲlJ [W~wST&~clEqq*eMWm$:  [#Jʵ!awP߮l7Ưkõ Vu`oHmm>z;L[DQ/3a8ȷ؄Ls,'k;Yziwb qKꗯj*wNM'"k&e+K,iV-\]TGI QΝ*ٍ˚SEIT!Ӷ0V7;4DP>5/+ Co~Hm|2`H (a˼ձ+ yUㆫ_ C<嶸T(Ձ}=!y5x0]-A|j4` y:F!=\xŏءR'":26ԼH `Vg`G8tRŝ"G><٬’tPpq&pD^u6dtKt3U..3r`BöMWXu*'J8O,`2i\Ӱ/Du̼Ѽ 4//X Ss .h οKH|Uc2:uN,׶n:[<`q)K|*?TNp?h'|@zjtڳDr}zԝMcxA _ܐcc@I_㈿3P/Fȧt ;Qm* z]gO{R{alӻW%-.=1iIQ~z Y(Z"UxO3G-`SZ7Y3w?j ,,j q7TUո co+NœӴv[1>gA$y̒DBA>V#NZ&ǜj6n l3xc#- igdTs*kA!+ ]7EG !ЦBj2 huYТdU Q@]0.!!NkiB.X"E8V'h OȜ_|ۺ|~z[|,SQ0(I7aqeQgW (\Xo|f7Kz#U:,>ک z daoq } uln)]:,U}+&(PiZ}Hdu}vBz7C677Tbᦠrڊ IE6Vf4A\?_`]z̬ ʐ&uZY*fK18@‡_T!{̵~CeTafijEgAdh5G"TYa VNUl:G6UJ71Ԟm}r^S7.c`}mjp3(F ZHʅ08ؐXn ǀ5T]?Y}|_su1vٽZؕV25gROTzҩIgPXj&_>nXѡ2_|_NyC KpKj"f#C`QAx}Aw#~~jRP"%, ô]|r%OIj\%vxpN~ 8v߿dD&HƻsNGJZnV/F!h`,' {\.|Pk(MyԊﳁ6̯隋4|Sӧt3ʭ[J#, cW63bys߽ł(E1ZjWbWh:Hf цx 5o5-Ko 8K28_>/HIpr{Q=%N޿9iuF̎؍Gа4SV.1*Rh?u `ELsJr//m'N1AުeF*6^usrp{NIB;rw,‰E,feE@`t)p$A%yS7P&oTx{[ި1*ddGKB #. Ks,+,H.;&Am="+Z OlA CHMחsGKHrTpS9_kf|xn6]ـ:T9fʓگ,j1+hр=cS3EŇ}j5eӒHOcRf_VC ,sk+n<@qێ9be7A{{GzO,z5A)_oZPlӽ8C\_C,kteɍ~Z/ƖB k'w]OXy ]|TYP,XG4`xqSeJ2۟2qH"W>Q/^eS ~Vv9(*qr!yF'.v ˊvO|zSC8)O.Zg ބuq \ ^߳*MSaIz _p2hRO vr=3pcu.P L~'^Z YD `}M`3]Rey'/W`>;L/Gr[I$+ 33\y({6n(MS_l9C'#O ؍܄Cv Ɲ 3P!iJ Eg8*{6|rA!f&} RJq;?U($8(8xW_ mxv ?5!<K68<|}IH_~A7Er\6mhW ]ʡ-#U@TGyYX(3K`~oSQӦ%(M>=fQ JSEteM91@,Be|ZIO3*u!qZDOs3 y96 lpLDr >nL0 i NjF/]gP{ou㙏\ #V(q稻.u<'>h=@&z@kzkH o"y-Z).dM;#g h[}jTht8J0y0oEGv9d?c;sTJz^G|ejDnKj>qc5p9]ec^DN]dRpF{xh%Sޫ񰜰6KXܻש^ u9@Q7QzFXQ$08?B6e)V;TH2i٬iT p~YoLi$"=dTCP9 9j'Ot,ƅȃbpQjDLxYH١*%}Ecuo9̴BN4̉9⬕9(,A={20;bn os,rۏ]G<n[{&إih5%/gҵ>YhӬ=nmYT4؟nPH_mpMk o^ڙ{^+z7g~^u [r6%@ Kl{#v y&ٸHr45S4\>ܑ)k;k?~ô+Reo_$Xtr[Rg!|ۍTBU 8g``k6 Vyͨ.H=0.R{15>]>84nG 2$[O bUyo4<~iJ7bH߆n);ܡ@GvУJ

yb עŹt{lrT;u2٨tȂ?mu|8OV5?7VVtS;L"640J*:8ص1GTd.e7'ۅse' _YE@s=MfMIw"6pRAZ7`XOmbߺZ|(MD"mu|!&&砫)dy UEZ] V0F7gn,j"=`^zK$@ՀMֿQA-7%3c ~z@P(Q[5<4aQ`~%9{q@O^`h?Xcʂ&feaxH {G#.3$tﻛV8;O*f WD2L:JW;+Od3?;K+wՐ'.Ƥؙ$ k63$=s,cfy b߾⬉}%?OOc:q,&lfqe1pߋ?N=בA$MkSZKVr+>[zpU9\.= -ŧL8J~j/K k 0:uWA_K`ɥKt-P(j0!h;'5ݼ` k nTHXSOpWNtB,_˱%}/-`|=ds.म$Q+Wͤ+TiGEkߴ8gcO#` o#$Bt_2!k: &98P)G-r)S.]KS,Hbl6 Sж*jO75G |/%!Wg!>C9wbd0Ibu+goX㤗 g9m5t fb>LA{?Q56ԴA%9e5o[JzjPStN~+[*<@.ZSQ D ^CY1Thi0**8EƳR 6 Žuhԙ.&2ys棧˻Jt ND+w 0=G>ٸVHEZo TtKy S.Aq@oS5ȇ0Wo_7Q lDN$'Hf+T`V2Xz ]ʉ va+z>!r)B}?j -? ;Gx(LXм?m`$!e>Ѣ޽x'_0yNZ%YEiq/l ٛ.H$~O #-<>~R m)\Т'lAC8 hHC_-/+BSiT[Fp841` 0u3Wj-X@ ǯ:e]t AǪS@ :7b~/ݿ֤(XYKE]C'rd Lgrj*}q0x HYoĶ<3J /-tz䣤DLIU'HON>32 dAD!e?'.Ir8ffሧ Iܐ^$`r-.@0AC1R{(v+_RikA"ՕTkE!tل%mH鼸PG/`,j墪4)\O#C/nFn89?{*J[8A6 R"zۻ2$d=L*j@Z|J !\Y:q^|Cu:6pi$'9MV*Oj35NyU8籊TD*rG~ٗaKYrIijռ6i~٪[G*%aaT8n(HX ' NC4W>#ӀT8*=z6谓:zύɴ)dpWʧ\9-X~'x{ f ZLpU5 `JpuZ48_dz>knA1G r rӣ:cKh zsw18L[;nNc Xn[ v$@Eܹ1#H'E1IMUy g'mN|o.LvFN:&jujhR $QbQ& +MY~cnfy dxRkaܝJSV걿‘ "0j F|;G^QhB+1 6:4⪿]"˂y7-LKQT' q.OtAB"uk-  tc+? 8eS㧇",)`O)R%:buJfP7.l&LW(9s6pV.;fuU2m22 2 lח:=ƲyB͘mA~4M:a~H.hL, aJ1۩🰘Sct^|a+YVRtzQx+P^~t#PRG4BA@4}=XVVN0,P[ΣV-8\Q"B@wHt-L0s ٳ]|fJGB7S8קC .yԅqJ ΣG-B!P ٓՎ9C{/.ub.9E:SnZIQ⁞ރ~ӘʭIYmuhv$4Bn"J3RT{ن#GG(io6P5Oj=b,g ]ڇxX3 g|f?5t7y>Ln-WVJ6$k-8s+lLY$4XTImf.۝5̼dصF6gt\#z\Xek18bt2H@Z@u%dF.-b=7U%৷[)7 i}.t[-|ZF&X/γꀺeuRb8֏}z[%6\1ա.y*xF$K?^59MNo%6 )Ý}$OIm{.{j$1K^~m"7'b…d"R)o5~BY(yb6ۼdK"ٵ"ޯ*Gܩ#=SkiB`2?MRcĆ g5rwKyc[U'R2" Gm~(%x(a+I$NNѭ dj!r㽝US`Bɐs)8)`twWnVԩs 5me^ܡ^ X/,e ZnaGl /TܞR%(C|ngx륡I0KB+3HMPV>Aږ^<_ϯjTɯv : 1S fX~'yzoX:e2;n)YhN? ;{O@ŷs}\{G|Οw^\脰MHhQ@"8Og|!:>{2dNRM qh _vX k{\L;2:b X]9yޏ$@:arqZJ"3'?<Wbn}a _Z\}3|GuroEJɈl =f57& c& :o68TkG͢K&TSro&@o՞?mV$!9J=9U qgJ5Zyx}si=훜|S A[ '΋дǎDK:|+s[qw0'Ȕul;h0Mo{4Mt(Fؤ)Akuj3҈SN)U p䖁dFJ.cx@Wn6C2{{ dE9d%Ӳ)ٓ5,nHKK.~ׇ=uX98|y嫟@eRrdh^z2gYL;:dҺ9 q'Ju0ZA&ީzl8UԱϔ=m*rh #]Fc@&\9*!h5|6ʳC䃨TkL "QPXWDΖ|YΨEyh/Ź>+|gXF]a*rݲ Uȳ*I(nR -ն.ΞXvהYϤtgdA31~d|s  ؈)N) K 4*㛖&>w{gMX6ĖWQ}Dě4:5^W~۞Ly(3F.i7P Z2:>9wc$Y8 zbyE} ߻W-o\;wGPA8wC)wT):.&D%ѯ`/cg>pnb8td#8\' &ŧ1"7EAv3VMU(3uXQkB9bӄ-ҐK<--Xx5O䞦GNbYQ@j8|DpKUv͛B;!|̈́ Ґ䘚2y/bd*0x" ?6ࠃ6:ߔ;hZ|HϯM@_K4ExqOMFj/ }fm(%@`3ccm-up 7mk:m+l(r;P,Їd(Gݥ} 7MȹG1Ro ~Q+Ebw0Ց,hJMN2]7v,|KkVG ĆL\D@V(:?bÙ:ʪR#1Τ~oȸy$hRSՀdՐ>7s㥠b)tEA3{Vgkﭲ <"K>3wԿnS` PKwS2p-nh`&" 53N*'.ģQ$4G,f, <^iVѰ3m~bCJD$;[]|k!V#@̪?1@IJ2GtC1;iWn,zz:R5KƦ0UVş Ʊ^  I quR[ڞ;'\Y^zI:˧Bux]#hs<ϝYt^0S{6z>Bbh.%`c";)B'AGL1O"s^F0Yz`J\Ryff '[X ?wa1à˗gsJujIn%*zA\TQ:1YB®^kaD5wuf!X'-_-PqQmaW]B7>NDw|;7`&w $I3RtM[ auʴ ɶR^v]e zWoU}{:|uxx[0j:qخyZ [II3b<̈KS@oG!5>*Hs[%M5e0קc^PlL< mqw-૯B0 KMYɼ{97wg^MյNʯHK:3:,C6@yYSHD5W/N:r>?mPwZu-GÒ9xYԺ$V#MnIo,ӯ9f2RDMI" DP\Xt⃵d>F(G_dG|pi s+ SJЄͫѭu$PyV]:SD&Io^jUgC>i:Z@h*\  U[(\LGȎC;JJD iFMJŮ66e>Fo%g(o*./0Ub_/{V%^NFgq^Oԙ%('ʻʣGs'T<#kR&O%2u$&+Q%UA[ GA;Ā6ȟ,"ՈG,)т;K`ű[KOAD}NА:hC7vG\vIJmC,|!C^e˽jB}^9Mw%Å?hYJ V[fAQWR*nVmVcOb?ubȹ$C (GmОNo#/jQ -\e6C x7''z<3sI@|*h˱s3^{{|bsvHY)BrRk"On-hlأ-]{h]<cUhU`0RVT!i$/䷭dqHdѷ00 䭴,3ÚD#P(d"Jx5_\բ~jק tb}n G8f]'uU "[jŇD&m0 B)FY@/n**! e ݀KP(c7%,p I,>.aAYO?ߗ_g+ɓb|N,6Zвf&15]R.`ya>djr\NYn% bk_{pqjdčZZoɠp=b:%7b?inV\4jgN)"0ffsrB/$^|>.jJ-dogl/#؞_ewg/JeӂϤ+ua =(ݾe 079R2DWYQIb=>^a1re`M`:Iw>[B`Ǻs^i}mÊdu/R,!*VM(ڌ6-ØZq6ibBz\#5 ‚?. C&[`_y*ȩ@y̼zQUdqZ7dzs\?MarA<ɕY`i ^Jvg僅]5@ Gd)2nuH!hd;\EMu70z(:x +s1 3Q֚UrЄՒ°ԲSh(-xXshU JK'W7R.d)IlYLB)ŞHC:q4Amwލ`7T,̞qM Z#!ŀ4"Wv"*')XSM y""FM+Vr\JB޺lw@'Nfek#}L 3;eQmз4ݪڪe31-". *KVAʩYݯ19]?zR4h 6"ְ+ҷ"D.OX~/GK(I8$y\TXU*KNC,sl%_bdA*;c70c[~'WLtɥ}͖dwfSg xlKAu1Z^p5Vx[O7l$KyoIa#=|t4ˑDŽX3PQ٦p[@dנ7Qz;HbX'7u(C23rw~F-2{3T>0o#%#Ԇ- @*֪Y&,4qU|E8PkGwuǼ^#|@FvH'4LlD\&fr juQ3h~DCM;K h PQ(Cg;in Zyѷ_|;]tvm&baN?Gnrgk+fBA2*jT$fhcD`bNc uKACҕǔ%)KxtDj]YΘ~fFpH>$S*W2A=bsEA"Zۓ7ȿ=0MdQh VF \w @Gv&5WXҥTzx׵mM%1v$G[mI̼OՇU7k{u1>opE 4𦺸vBz>F&hգej2՚ ;L^Rm =3ٖN&;Fڢ<,s j 2UHՂ9^"VU% d?Rh79yDXgJNbF(/ARoLœ|ʶQ "x Gr0M&nw{Ψx5睗Ԣu8)4ҡy[!蘴{1{ի6܂ָ;lWxE0l"V+_0h%1OI U4`VsRZ !$>10.VY ,Juנs+7SԓEr?SKƾL/?l -j~)85t+2e;I+Laݕ:*J D (.5$zh:*㾤MHNV Q-B~$`ɀGWR-@tM'/Q)3 L%9[hʔPܯuC뺸OO) /GբBp]Gg`95GLAN?SsT8-{y!jFomca@0QB5 Ba(}P@%vt5 :$)V^$]{;ztNtމ*'DF#8iT 66%m 3xAƌ%&\aj-0jnݖ]V>6}r1ex Y5sh|Тp;ۄs(>٣oqvĻZʢGZ໗,(d򮡂HE#ұVM s.7vx-F>:/O;$7]A6brҨ.pݩEXjPH2\gY_ o@ȳ [N];wI.k:+.>&[ DnMTzZ.g] ̑NxjȲHeAm쨦A=@;"CI໺Y*8pB @ /c6kvj >Kpg{ ,f%sk6d'yScV'n@lT .qk,D&PdΎ3A_YtFzp@_0-ɀ~됍 , ᑽ'K e3$ͅΰ{ÀPWܚj0) ^^WpKM}֩VaR^(7~ DKx I'Y.ET9ڿn8y@LSo:Fی7k7ܱYEnjzip^/d P7D]b(K0яOS*']sMN҅)Ogt<+wf (‚x~5jO 1S]Bu&\?9KR0ՄOkB_ -‡H3E rIO*b*mOf?ЄVJ)%U=!Apbťڹh %fdŤ`"pc)}(FuN,1r2Y<9h=4 xM^]NyEȝDS.Qvzb#9 ߿x\ G=L/P8q\S$\=m2Vt{6u&\!ŵIP %) K } 9L J9JT(R)#wz4~|Z+Q+̤桂Vb΋V5xxNTWP]qwTnӵ5%t3GUvяUgݥ<ަ09Jw'5| }0լ .&[d&}6x< HӺvuC\)rzn؎¸Ǿ]PB,IXkDot}T/n\\SV4> ]scG+B4+Tap | e,JxoAPku@jc Y{e@,<ٵՊHKT8M |{ uqV uf+tQgU}_~~AGS-WOҋ nۂF†onԿ߃=$4_zTuß۞U" X LCڰ'<54G6j9:pP}x{/8wp'YU—TxpxW] 'a vqe*MKp8a:"֬Pd*ǵ 8 s;jP`x8%Y_WMa{Ֆ(r%S4*-Ǽ&pճJY+2iz:@p+_*ao"qՕb*¿c)q\V⯸ϭS5;!+UHyьfcH.aAj >aue4EㅽOIxP+c͙1'FU\ t U7HO^%| t(~K2Rv*W>"~ӔʐPi:*Vy7 d[:cF YWR9&+>: ˵z~+I&@S]=v؞f>I-;Î[N%%j=jקksvpmӏ?rUT>ҤLy}%n8ÍYO0-H*EkD3A }#(Bb|hLC 'K=Jqe׆ׯ5$wkF>C,h2w.7 L/ ˼R'wK,QEwka(y. ӔI_b-~kk 1CuC5bZSftU,2*}_',䦪ғn vR{ŶB>FZE4q-zDLAM֩'l4̸rE704985:;ayxLPĕKK{!C>_NJࠤ :7gg|8FF9қlLΏvh%`{A6wPxYVa`F-G6;m๙ygW2x"ÀwAr:,vEj|#W[Kh EL U)q öSnAvBY['RP~ 4$S<']M"H:3W,/$*q}5͂fpzU/(SN.銑u?54HG@{G ggl'=GM {v{{SZ~HTz{, gYFpd{,_nRkUQP?C%s3qN^ L (!Z$ygx :[GG_e\oDi5;[]9aJʱy|͔> IRNJ+B[ݽ%zYoV(#ͷ ~rșYhԕJ&愣BكaŽ?4-°[(d\.WnUԭwMUUt!Re{Z*l.:ͣ$1nArxG@Z(h!X8e80KҬIo&/Krh&AK>H/F"cN*} NIdQ)-$,_Ů|գX3֩0hTl$_%PO߁1k^H;;C65Nw@/˱٥R3`)˷@bҤR[Z5{.v[8h89N͒~iZ׺Q/p`߾`IMƋ $6TȧLH2[͍X:t{Ui@]扵3ɒ8`UhVtx!ݙEvT=E04w{[ۛ^:˹XJЗƙQdJ.(9Q(Exvs_&|uGq1 -`nK9)L*mM%G#YwHDiխXP^m ~ZvR-7zIbJWO^H6`J`T gѯL$ Z&j߾ye*t/P-/ JJ>0EZ[ɚUꜾPج:*xeMA棕enӿ D!iF ,U0q$jq+Eb=(Q,pnUP*l=rZABs]dt!0g ҍG듋/P thY ǎ#ui2/]&;V i3G:_u,C >\Q: )3EW\؆qBG% Oz8k) K(Ch3Jtw3?YA+vϑ䉥uڵ^)e?mˇ i5&A'+qeB3i~_ٳf[pIDzzfaQVlQ3APJG_ފ ] @$`jpJq>(Drg8la"OeY5O}q`j4Gi`zna\12`wkN16C,@gqT;6`/nֻ#IS V$1(`c" ǡ#Ḯd}qSb]&{];g|td緓Q\-Hurv~UT8%2K}" \šMur@~Ue C, #9Eq"Ҋa)Vil5u5oŤ0l'Nѹu)&[qq-A7uF6t[FבK.ELrj4[!{ ?[?/tLe;dsFBхULK dp|_!Wzٗ71˓C1 v58^]F~9-®I(]-7 n hG޼o;A6[Ml$܉S¸zEF(vo/MMru pK]!&UcXbɔUޗ^;S7M|wA{\Ij]MwQG}/SQF[O[뺶;iٶ#D*DjO*:$H[]_8>ZR_e'")/gVѿh\T^^lx9۰*>1Cׂ޲s!{ڦ8\@=&rިsZ!C:|sEu@˭YH}6:N67튊4!ʌd2έ19aGzh<>Pz(}:!483FPX!IBt:G{ =$^4 )PkAs*q }YjW&!*T O:)-;\l^mw.rC-iMH'9LǓR̈́;jfo@g60uz4/0|gp[O|W-@F#,o/)>=Ća%6E.$Kjh%ʔ/y76syrzF!pw ?[B% gJ2v2tP-H;-[a"Ə7Is\؜P~.쾺YG%]Zi9z~c87>j\}{ϢŠײ~̽6?-]+Rj ռˆ.=)= /u*&,0.DK0ѕTѷ(?ьr&cA]N'*WQF&50S+Z;n"h(E>״ZLNi*K&T⋱?<u\F=ɮ!(Yh3d eFӐ\ܪYR e긿,mYѠ@s>2I/0m ;;*w;WnwF+;V5,Ax@]W+^+PlHl]%+B"Ά'n^9,Pu八)'MBnTFǪ [O(6fNOmsȟ>hEhXlu\XMQR\S.w}MWV|'ፊdpv-yY+\ъ"W?FopKBN|ȵFyK^tmM<.Jrf]z^;PX߻!ws!ńuXPb(W}z3?L&JC[]ej 뙃(VB~U%C E-Ž.Czzm jAS^|cUe? 'Nכ գK W=P+HM?<,2llS|ӂSBjHt>Bh^X=Iu>N]`ɀNfA/<δB.o^jAQ^:7Fu ;H鸱B1n`XLGNWɛ\#Z&_|\2jdnڶVGjuo<2Bw,-$ԱL-tDغY-m[K$/ɢ;kiG/JTkGq/T}Q01MF7ɮpLM!jU*qPcsi6:_ \F` r3Khb3y3L ?V'0$BL 9uLP8$ɽ)tҰQ>>aR-ީZ׏V]3JDHl~R wfRXD}0Hq 3' n?;kg TLtU h,OsgJ8ߦ4$\(E5ʴ8$a2G'>%o4{zs`C^_E N76|ς Ѝ4%?@ 9y-({=4G޻&}`!3Ɗ/)UeB`| l("*^cq rB8>7o@(QNx l/J|3-w^cIv`vu^rӐ4qOw%!@*ֈL¶kDo q( ,*m#&"vF4Q~y>tƳ#; :Lc\|dUe͇.YI0zwaS(Ìi :4 1"!` =b:1hqjG.M0X<;<þ/+Cur4ݖ\aH0$z=_K&S/I\/\7/hv(Ve`a5_ S ңRzgI47 ~Kɂu{<@F^j{!<=p3d $_[X]!QZfEQ5y'-9 A0aɛ.Ş"֏_ 6^u>KD@K4$4qk `guQhSP?Wm ؊Ւkl0VVRaSٷbܬ!^l~f`\;7:ٍn 1,V)zuO^#XN#N-s{Zƙmѡ79TF% d'g.*C]y=xT,p8P Uc?a50]Hڈ?wupgК,U=1jZ3R;@o4$_Da4psBX}~0=m}1( U%Ȝ[h.~zfx.&2?G EUoQpITP`[zЎ~Ƭ,Yls:^\|V{gBRS]^8WeKz2~=c׫%c\u8JH/^_\W3%Ot쳴ja3O#;fd`T-;f9 :kyP`{h ྷbe-v:U2%'supZ`ꠥ|WPa?D(uYgcUڦ!0сMIV|@Gۅաax7}Pg04՛uXO?0f!7%'lt5Suo@'%^u8 x׫¡yL ٠u?)Kc_ 0@a6& k+]M}ldAf,tؙbz,Xy TYT䄝j JWoUnzM2a VF~~!yIٹ9f;<\x-?RnIBGYSOn$3: 7N56]G 3lۑQhG3t(Mh%$ckcr-SnV^%A*PP鮌Mp~SaGR;QHƉ`䐉iN#C(I&OV,FpBt !\od ѻ܅Q)2yXT6nhf!u,_J#",=60Uh4}f>a;9ҝ)$eB8^~0 :M eib޶MF*M.Y ]vتL Ԣ-gA:zq꼛ЇfiCKLWvQzk8j1bQ!@YP5g-^U0;O!8FI>Ki /^%M/ ōC{J9ՉpZ;wGG Q@xxZ =yH#t&珖 [zSGm((h,fr݅9B)˘z,(Э-Cr OѨ}<\-#zc>iVq?jŢHR![}g;2UL'ۈT% .?@耄/\DmgUR{$EETgBCB>=NSpz-2TEk1͖F.O?D]Se8%, +-f@nl@J5u8٫MEu 8SYo#&: "Oe6\ {'JP80Jk#Q?X^*92r~i6afJy}{hyԎ[5]ҕ@  UXùJrb/g9[~ Mð jQ.do@w_;Q">]8]/v2rGWG m9y@Y3.(UB+LDN9;h@a:[Pxi7aTG G:= p{ZZdJ1ݵ~\ԿHCCK&AhdTN:N)x8ՀB^j09]|_QJŋa 8?JZK1%t)(|ʂo@* fBBzXTZhHjoVK!l 6Q |;?߷&v*xxu绺5-Md "u&TM<0EˆSBv5LGn.kG,qP;?. 8?:BS%Bzbط}HjlLvmlW5 tru-ܹ$u11#jcX@.*\?QA:dZ<3јpAjE>2|IMkR5 ay]ύN_.`!(ߡ)A(9?_;ذHcTL+A6A%3UK.uwoX$,SSITf6^~bd</OPxg{_Wr+vǹ(Mn:JMg`UmaP3aV\cp^SL]\X""Uʈ #ah}mfaߜƞnxت:4q(3*KǀٳR)NURI"YGpX2_fL~6'DPNnmYge&J }CVp8m KS-Za uPa3|dn#QcQR ]QGz4nEľ`CS{7yX챴\%U6Pi6KǂIG|^V SCp5F`.?t^z`JoET(ld=l}kĚ2or&?\*l EVO,5BL_⨞GNQ$:;l)SuP[`SJc/bigD+u :Dbğ6zo#җ/mstkwA1%NVYM(+Si|eZ/~-PC zlm> :gF+On#Btc6n軐γDU j^+ 12 ' xYr"W'=|^DܳZB`+~_.0!\I;VF]>^O%?\pS\ A޿<ۆ}Q{"\A?M{"_S(1~N(;n=UV,* >uaM5ԧa&o^QD9#y&){>2Gu~ݸGգ'3eoa8"w Hf5V5 .v=Aw1cJZqlDށmJ7 \sྷ!ce`0BLڱ'Tb(DzPWytĹeted.=R FwJO @†g7?_ޓ =1$: +̴4+nc:k_{[0 ]cr7#ɳ1I5]T_?I.moa%H8Ψy"-gC#/k𐢟 =FYwD&qclnjC~U(lJeoZd49~%ש!NHt5D%|.,C.^@ WݵsE口^ET 䇾òhfӡjHe. $mvoM⤴k+c OϺ(TЭ,sYhvVh?:,J#odzog8&tuΦ)T[-"zx-V0'Pi7ǔ< 4]@j6k:ƹr2ޱ oCb?^A>ƛcw.IP *U TC?Mݩ]sQNfiXAܖ8Rd]IO?Z=Vg)jKw_Ϻ4.猺=7DCm6Z/ڛkalsPKL䷮T} ,ZWw)9'Μ;kDB;0"Bm^"n+eJfu ebN/@lꗿ:*9cAG* 9׾01h";qњ\r24.m!* 8 Gut3 ׅN<4 Pm0,4(7dߟs 4$w`ȷSyK?9`; g/蠠P5޺55{TUILqu吅Ϣ I1vXa)#d/dqp] :m#01<2m$~6 ؉3 E}KCnYd&򞎛QFT$L+9L{g]Ƒ Bi@z}Vf1#< LK!/m,d6p$𘦩GFtk^oLM72ah@khM4&*bzd#LARm ! z&+zox21v:&W 3,N1?x_d#zp%T޳HOȔl&ܣH߉.gzGՋS j{%.y\y9t&-g' /{Jm=/pHlȖ D5'I-ZD&#=UM%*TYDJ(.ΣՠX*),"GCr΢Û" W6LfFEEz¥k7q ;+ YW8hIɜDOĞ,8TŅ/¿AAɰz(,6nMnHlIr# g[pʳ]>hzl;)~x_ޮ]9` <]F Q*aΛY;BwoLs3!%o^ pnw7n/Okq߰7WsX[#:yk҄UR#rEOf]Lq%BAf̦A^f?Y6"W ~{|_^hMmVG[lw-ٟ$<@˰J:W77J/iKTc< @A;^L`{HH+:,8Р13u~ ;zt!J $1 ~7GN8e@JIL kPkSsՍXA/ezLr g1~\ݺ; rU%mV2 z˾JBȼ4uY<ӫwdzg/V29ۿ(ެUS~-H=OyDhgz|W( ˇAY1R0o~-Er/+Z3KBexݳ~7zo}sRv)rT([|(?&KT͌ FL(ܴdX2vv 1؀ZtXNM*Lx@NWmuh۪7[nO#Y^!tTja$M&~#9-ŢP+feP8)Gw)({l~ 9f:I=+`m4QO*P6^U#H6C$n]{uǑYV#Q>"NjzG٧'TYHКܵӗM!~/WW$a2BԐ0,KtMc={baժK?Գ Ђ$aoӪds[kVTGJ:5D{R@Z\~+UBCKmו wVQs%k= `11eK%9zO1À ۴3AI)l<6C[y& zq$FF7B/^1$TYyx{%Oqgnj:!ȰEӖl3AW#7 FDJ'o^?2gɣ3%Funi=ȠZܝՒr"8ݓqk<n>F(5'|5퓁A'Y~I_y68Qn R$eYAr4s ^Vj;LH}WվOsWxx-Ýk<ɹqq.MLy^[+n8 ;,C޸*3>̍3Iw[qI$MJb lO|E!/Uy S\StJUKƂQ\b@ :DkBfa^ N4j33ԭLť8g[׉Vc˝%tJg޳x霎 lc(>(0Ca:U[CjlwcSD3"&7k IxfФ9l ඨ?5j4G&{@Pz ԩIt5a [U(6~酚G4+%/6*Q xvƩI2q?+f'T$}J6v8Toi1<+9^0i5ڝc&q:E4r:H"H] WACZѸGv k֠|鈶ljX ojJuν>5=7bOtfZ/qmDF?!m[ [g~иWiY͓Oz8"\ >1@id66Ws&t d%qzTί0i{r rY:ʖHi8~%+"SyJ٢D_VN&]dO8Ӊ ?t12ð^nЊ>$̇&21u5%ˈ{=޿Euv).mB7oڨ9"?-N-ϚĄma<_,ޘ[g0*.C=_hg~j9*L`ClhЍ5u/bPIy7WpPJNз,S.O]{u4lL]A=+ H$Ed NDyK LӼgx!wP[e۪^( ya^%rj5w;ſV;OnbmE>O_ɫ~5a U-䌁5=-0VE1#KcbumɅ~,4ٱ?m-@+.<(PtL01pITSaG[fC L%n^ղTFOT ZX>xfN 7XYh'N9e@qpzRY]cߊB]B7P 5fUQ UqˀPJ^_Nx*g?͖05_|ԑ:WT+1TA/9O2yEdrwۇ٣4džT/B^ƚH}2<7~&XHa`^3%JJoR"g,{fA2W܄RbݼiwoKrPK̓nrŽC"HD ߁'<;OzZ^$3Y2Qz>P*36L'SA*FV-2L[/mp,R.Z%. =y9 IZfjrk) Mvx"#s?j|*d\!w40Y-fM~eVSKDq[tL ;ZX𨽘G k&cq d;}s~ECr\pk\}1%nlrG}[NlpݯqY3{$1^F:\Z''_p9tja( u /Fwecy|:tH:݇;[=zuLB^r$a&H 2'<[zr3MNSyW*k[@/Z"%y1o4ОW_eY_»~pgPѰƘ:hg];{ܠxg=ee~]v_ cԿ/phr!%y,PaJE  ĬoOS @d|\"jC _P#uWR>`WA)s'qU i{td Blhvjqyon5d-#n1?Wu tGEW% (x!˥$cW5uPF_Wd*[ڻ b\Ocj!berhiZ/k>4> Mk~==g2&}􌎻T05UNlR-uL60;BfXv7Q@ђ2bu~8dCxg=3yhM1cO$'+P#eqLjvxkDݭ[6{HD+_gRdMbXaF&|=gU%oXFX}%;C>Q8] ٨<iCq9'DCenDm8D|m")xN qV;YQײіa> tl A֫k,@"Wm\ۚs!r932Tv hee uJM=mx/64Ȇ8 {/:ɉv F) i[c*Nzr jH̉&GVmY*hiߤ˵K~+>U5E5<h|@AzlE XVK>o8cҶDQ }&cLAsk̳z]I|[`k9 LlY-˛@H-ؕt&qoUy4V]6mwBJ:^2{{ 9fFTxmYs%[ E\&j ^4]GqTxqm+ $q`DLlhSh4No_ԭc3}(bIɉU<.kоl׈LɝRk9Xw+]bﻧ1GO^_ųwk'_ކX璆~j_*FW~OH,HX̳xDc변馋e6v>gAbQ/ T`K55,J~:P"6"#eLO0J(tXgFiAvʼoӟuYc&e`b9d#ߦ $*0sJ+I jDF)pu Y{^B{6-.1Jhq鵜 A_~_@zv "--jOHp5Ecd&)ىȚ݇+n*uo˓AK-!fkbWؽ=?i\ GŗKE5cmQ[Hd<@B+v2 -A |:<|>'%'(Zz<okߙg mD _+ZkցDd"l,ij_W=-7LC۾v9K=R:^~TAĬyHyQ[T>+%л}!%{:֑(rQcOOfyd";A;rLٕalq}W2q/F Hʟ-rgF=9q5򩩵jCyxi#L*Pw{NX/42:-;j4@hB4mk׏ >tZAMMIBB'h܍=h*^#~ $#]W&댁"OT[#r8#,tK)[Z9] BFAP~ǫ )OJg8*m.[]-#OsS/`Eh=rZ:F QTI0Ùߜrɐ,xds)f#A2qlG_F>y^Qx=U,dm|o][(h!Ũüũ60s!2G`< rh8JBԕ"v fN@瞋]Eu2*Xؼ_ aAz)8"γtK6$yd 14W1;ܠgSф8FC'M wzywRkk[,"#ICA"X*U-;4W mY1S͂Y5#(VZ[}JI,;ɞڭr"I lU Q\KDgᝢ*<3I,Cj ^۟5uIT2ݶDc8YLK.'6!6y qk,km8]P+Ǒ -Xn{RCaS=! ߢܿ:ՠ%~*?L3Ȫ"TfkmhW^>2E-0 &L#-q(Pd$R 7sYĨS|U8[5n[(*w˴>'yUGUTeGH^u`sĭRI'I } sJs |ł{U BWn=lWѵoA'R3"\)f!00 r2GG({覹Q(sb94^274 afl{ /<צA<їV }i k?@E?BiR:$Z!a/IjskQۂ߱(~ٛGVb~HNEkg  Ԣzg%d 8٪o!q0e%k؇"@Ch~Bg`'##gmgF3P]MIoJ v33xSõj{[1R}=+^;1qzz0%Rj9B!4CZ[~`>}82j)Lu f[uDGEF1-aYKC q-Gt<DZ4>ԥYG'^b#W+'5Uˎ1Wt% 5k$xbvuJg?+2 @e_ZgͯYŏZu$= }\;)[-WM4sUy1'{vmi0a;omVe\扤vEn1@ Aae*igkZ\ՃDʑزW/%: t> H_ pHu &5D<&g,F? R 9C DjI'zXSW_ñ}\u&" }.>swa}RT9$yҥ)>un1DESreJT;n|~ y/= jj=gP*t^MqI%C25`3a>c/7PN )^>[,LU􅁊N_ jB^ThJu~*ca|2S͌|ѐ ׮T C0џz凼_#:hJ>/&(3"lSr^.76JG(![#^P8o5I+9pdXVl I)^kݓ|׍d6s/Y^F8WRX+ܽ Fx&#'g8Hi-yZ'^YwwWt wIK K-(=d$\KǎI2iE˂Y;AB|h"3,b"QAL4 Ă,rތ.;VX \(RXB}OR;'8Lg JOne -/kS63&Bcwmm\V*M{Wel cl+` '}zt7%QMa$ж$+oNȎZ &o "sV_9Z++yQqs|%EwJ30(fq_iW܎㰧B*I\ y*piMm)'j,n7Ps8^"՜G FwiiZIXZv~Vx-5\SJ:hRPǕp -`1ϙ?UW@TZl aL:j=&wv#LRpumc^vmTQط0fGSV6@e0>Gfz2l3Q`2IO\X& Pt&kqD~: r6b ~4/KِXR6GCY.Ӟvә/³ce1ҭʑuB_ ᎐ѓ|9>͍3I؄;PY8!55fw^Yfg]y $@"ҏ`-bx7Q:R3toK0 ġk&]L=baLW/kR'A aj=/ ^$2?JGDBYqK1-՚LL5>,GVQA&~\(]䲺%K5vLq֘_Hr,K 'OܔrK%m3(})Bv7fe)ޒBur|01w&}Ү>rB={{T=6)ьX (25U[*8aGm.)Skv}A_ÇBBq2?a?ˡKrU9DdZUͣ@{dj6Xfbb0rvVz&/F#܏ M#!uI'wAZ^44A_o{]O7;:'n#Ѣi܁Pz֭>c*Tk\7(6͎gI6Kfdy`k_h^Cbn '"4}6CP{]dIkt:5-׭aاeF~Nnw_l8̘IXMT4-V|!)#a1zθ-4H}LJYw@ Oc:okPlm!gQrsi݂18Q"C} Yi$T#isno%e\%cӵsTw@;Pd *:yh2L ¢E J:'+-(HHX^O",~ Cu5u^Y GekĹ{xyuq^S-#l^Ɯ VeOf@.U>퐿\M$wpTsrmQ#s'{H=oAOƪW>Bl_s1苩ds"lل@*C"YQLVH@k'DgVA&b8]uJ9xz4C*5LH~Ji.h~~=h8 XM~߸7q\/oLKw[1Y-[> _8ٽ0Ip|1Y"8&9Ծk*4FqbzV> 7>h\پ$D{bԛuz$cd"sɊoRj|TW2M0q]i<Ůt4R<*s4h0",ZƉ <*F$/,ew5 2n"w#/y7 ɓ0oӊ"~d;=[Q2j)P:2Tz6*f⾟8ǴH^Quԭ*r]HLImA8ȯuR yaxI†J7[lUE+=y4 nE~7C:.ED>B9qЯ7D!^2k˲'^svl\t J m :3HT +=l"⫘}V=ڨ0sGe7FrO]lp!ڴ"}"'.v%F  rG0"k͛ D%5({NW^>Sh lA!Xw1!͢qgu Biݪ!raB֛]NSBK&ZƐ (*vlM̷N}U` p0(;x5Sgs0oan1 udvMQ>TH*vj?T@ &/s65mb3?kx/8goVx(Nf`|sL?n>eؤpBSз@)k>kNWBRVx(-Emmj>^͛ɾž8__ᐤ"Ayj)rȑV.F4U (JpFSH|؄EI5P}XZ;Y]=t!ʉs՝H)a)?q/*ʒ /W4Lȉ XyD0cMGn9R"P"$ɿJ:?֗^ȳ;]{[)Ơ,9?۹ɞȌ.w顾' S'TF`,izkBD!͕q."zv*k?)yhvaoeirZq_ Zx)(Ww^P¬p{.ǫ W  ,Ezn+eC+D&@ͬиT3@sDSԿMjYʄEcE͌~l|S-pZf`mZ>>k^/\0"m P:(x*InM_&BUԥn"D2[ iBhN@ˌcX,N>Be=djq:MS ͝]uՁ+Ŕy[0ke,f {])\oq+xj&ewҁ-h6" E Ljj]pl6(m&)̜ѢH{;m5dc"~1=" r>'cmU*1!vK57OJ@rvoOXj >K|55&)z a~: yZrT7|A%\SI_zz\` gTYR#-D{ 9:$:.i#+KИwّjr'|y5oҦ3$af#Ե_[6󃌬t<ert,쒸GL;ӨJÞň1XhD^ECyBe-^Wc|+su;z+huLhU2;&u'Ir{ = L^K9ږs\aZV^k&G5~)A1!\me+ȸptՂgGY"FuftH;гaiFz'YzkL_$;g{9o Yc"LN9' qMŕ-lއJqKMugeDy;ÿd t2eT'b 30ԔIgDMs`cү"AJ`=Hž[[z!zgJ9͂EЮp|R1'pX5nfiΧs=5g_GyLːE G9ɥ呥TbS0 sQ[ d$;x.5%oj ؉67;F\,OsƝ<0zmIFzQ!AU={o{p'LWKq5M{wF.;$2@a잱  2r된DBhDR/*m1\3* -/IIzF,9GćGp:'r0ޱ~D7ɗ疘_*7n35a}u/M +M (7 Żi], !xd16rN8Ӻ |Jwu0;)x7JrrqcL䔜%ni,VO>ſe.l]S☨TPft|?e릒+cFlj"c49dbtTMiI0P;1 C:Ɗ?_W=]}gWZo /%sVwׄZɼe5;PM-Ie1ᕅmmrQX+PJ]"c6Ht͗*HU?.jaRzW!:&thAVؐ׷S\[ 򭧪0(xtjgRd۟E0z)GLu)4\fUOny퐳I׿貝!@;j@)d *"tZT}l56\}_9{8'ơI\+ZU7|ϐW#.V_wqάj͌2D&v`r+A)!O0BlIꗽxa|1gbOגm:]un|%N7{~?Q .AWt.N I5q!m4bgq8,N4S\l̋ysE1oVz Դ/"9Zv*LDQ8jY6fF_asz(j}](<$a0 jaqiLz&ʷN ϙٷڝ\Ps t3tؑa d( Z|@8?<|(ahOlϠkY b3U3ַFTcis#g WR窳{,C ʹe#,Zx}}NTNF}B̾쓽vژr9$>q*oģ̣ LAlZڣVa'9̠F A⥓VU`M,C[[Uf6-\r=Չ%Q(:4vX?8o됡czٿjlf^!%׭grG_jNdtp4 =@HÙĦZNxxRz\sUn50OtNy0p͏d6Ǡөw)_Nf3aL8Ipht;hfܦ*5;EvN'x+l(ͺL:C/)%1ej e)1>S QHة #oQ[Zn}`>;Ν mڡЬy~lʌ̞и+@,1޼R42V8Nk"x^u0_.‰wBe(g'C"'lZ\>ՊXAjW4KYD愃wimdpJh|:Wι 쬬hr^а lp%&YZS գb!3168e.sVs+DӢ5V/ ڻk1a:/&yOl |j ^,8XTmSt7_9%epպ7cec} vd,+ҢZ2l5[Ggbjxj"^XDK ^yMFi%*-M&z5rbYDڪ{fl>8'M' xA6\vs(YO?X僃ӛ?U\Jъ|,l<!p Ig؞*>mXy'r|#1]4OxjKF0yl<[Ĝ ]&`skb(@22D~|fjӼ Yv {bspFlc "V ,uc§NA] C:0{bcJs_m`P$T@e21$`# iG<‹<f0 9*$$s("߽=y+""4/WE=D@)-(?`ݝݖÐ/NN2.,sv_PF+?r˺^DE0 3A K܁a^Do¹nAV[qa5A*'oRZ.DX${Zo!`_ol#a-X.?uw*~돆]Q{g)aSE9>Bީ8-)$k!uKDh*ۡ nN UQ=M=ǫ8Z&DP܃4{+ӑ0ZOd[A`Nwjz }5)*P5w(VPT5 ̠nLs9(4BaΛIX$QâdK "vZJ]ȅ^dcxX}ù DŸ1~`bTR%Ǭ`nƝ/0&ӆg?b{: p zG/<̍2 lqHm3ezkQa ٻ5jLműu^WtNx+avd9:[)u/]\cpj:D%c`"*W+-7!B(ث!5Y*8~.N1q'{PL] KQlеj'76jHIdƬaҨJ$w_M!6^tD]ƈ1!u"DLQ({k5K8%E)!KPD?RLà}W闚T)yd~.I/~ \85B[ + *1=Ci#ng ho.YFÛ{iBDQkݪ^El3W \}CG\_#R ­$r^NоMxK[VOQMɅ1>M|FCLABNUPw0i׈8 # !U2c77]rg96knCI[{reUAz54m|#|;,0DcpAE^X P<0aBnh!Zv ~œ@h4d6k$&Ef;\,•{~j3/򭠝g\_??Wmۯd} *@< zn'[kR ߬h" /rFGK6N+rph:Op; `uPwc:(kάil5`:Dw-T5'|Rj(^<(Եv`YNE#w=7V(s 6FFE֮yw iSBY 7;ǥ8/DXrQgWe>ЯZf^:5&w$9D2'4GmS#a*!bNh\'3mlRgU܌Xh+. ˡQ3RA6'Nd s@.vIA8<6n+PV=#Dxv)]]3Z1K7 h'P~. ӚwO1Bn PI48wAY;#?ی4Rk_ BVGq֣Bt˴TDXJeqG|zT1HUoY1.)M ^kgfdAZ[W -^uS>$eg|c/p8U$er5"<&~8*d%b(xk{?fޝ|Ny1U;O*>n-)%'Ԉ$PI.KWRPYo+w_Em56H<[CʾJ-τ,>rc02#ˇ®*R/PiܩT\Aqquq9k4 13I)dBMPFNL[]x+옢͋w|b,b+Lvt D<1aX6P2Tw[^|3swjVKBYqQq/Bj ?ɶ7[&ʲw14ąuRKW@<77{,|Et+&m~RAF$eՄ^׈jV-\"Fxs2,H&6Q*ג? '<LA$q-ا!/( B{dg[>dTSZ$:tLJ2HʣOY"-6YR(c{qlYNlT5dV(c\t h]M ց2{e [mmuB3<ܱa&qWjhWN8ˏF<M78ŵ<1'hȿb~D>q(7iQO!U%g? _׉}Ʊ0)m92A(S~9xP>^W3]iqDXa`k*L9fy^+eCg6 8O֟] qid~'gzm6ӿ;GD;#Y8 GuTPR!/Vk5gnZZ U8Ơґ>ߟUx1Cc|~7{HoK\tqBo >W+ۄNЀkQ|LpcY>V^0(@q]ٗT!٠Tn=*HQ,5 =wq}t@x-һGΕh;Y{>ۉBq㡔qު,1]HԻY@X cwE Np-(Z .D 9 T߁4A l{s]lL86#B[Mca$ MHCՎKp+g[MiG&㖋BTũCN ~m|p>+) OwIW$YV>ڝ6f1Rg< %d}ni9da4$v!fNsH^K7/" tG~Xφ_cƷ͗"L59df55s ( *~`3fwG d}p)[aRƯ9@nioI`c. bzΈ\Y`L92,*|aP"ۺ_U9<鏜[V稄<b %| e"T]qAQ཰I_[EHD[gݩ4ڥa<2 ι2<3 4T&$3aVykܛQt~S:Frdߛ4 Y9* Qf;6}ZE 6W-V> OݸqmCvZ-@䯣4ו ahqfE` b PZ"Db[jzOʰ9}vJ爍6oy8C]juCCv!b[@ ͉Nh ?>-+M35B!^ )In\R{'AʎQƳ4 ƇVMi'2gjVDڂybE I^́x)ɉ ^o*slRUgO-۱@bL("Ůk1Tzp2Sj.:+O%I^ !=$rG%\ǃ#W5IA]!go\81"Υf¢fz-RG.eCYP^SPw16(]j8499g;{l㣲8#9M79&S1l2Jo8ƎBCKEFuCL< ?O3؄apTyJ#3/A[ߩ֦U6Z͏S5KD.}s/+ L:x~3T֐Kșnl k)ү68lxsۜ8N. 3 qDLM}Ʋz2tϠ|ܛQB2j)!2 (1wK>xFa[_J4bsܨ^;zY${`1Z*ܔbMwv<*88z/XV$?˘[:Ԟ;_J!6Q{.3/)hL[qrw Ffa,3Q)=_)(<t:i3|`1/j0A+sxPژFK8*.?G JZj38}i=7Ň1d5VَPNJpTfxfU&Y$u:0/Jp@~-\l=\aN h<\̶J_?iZ<E_b'ƨ~ZU/PDIW`N{Yh|d=U b}Nܔ?]nK\DnuWOyK"pH+N-F>#_e(wi}Xϊ?79ZVFY tJ\D0EtK CSpUW~pB>YAJa%g< S /ധo)ots7ZS5tG{"GDmy y@}z.'JOjff:1d-SQ SQ^Vד,%_=6@JZ5&7m3A٥4xzhOmuqȎLd ޓ%`z›qn/ʂzWWoB6\f]YzݔdkLk!SeT 7V^}zUQfpO[ _PLx#dF2 +\éԑz fEaLuSj1e=SDlvg4s[K0E؁A<1c `@]#XJ1it/<5#$IoH0 .T"iF MDZ NSj*4z>˺SqH!)9v] A&7G0@#|>5R户܆l= }"2:Yovl+ W_*S3J) z_ru-HncJd`Ob2 qTXnMP0jPtGP麥ɽ)-4 >Yq AWџ\QC.m%dT>*RAV( ZNɰe=]"Eq h7`ڱ8,Q`@ﱽL Wg8&f9j1gg#,qUO6$$ TZXD,HxK}\妆 "z/v]}$s%S690^a!+"⒖!п %XJ!" ,{f:m40poJ M=3 # z]+;i}OxSa~B#n-t9W:W*/ςzsL;XWc/;$X4@ ڃRĦ_(-/9{2ƢZ%M'vS"O I pDx^H^{r-/(#T?>v]A?S~׾2wN6(}9adR(q4x~5Ո~ш"zu ,?S켐o}s&^*#̂QUɴGH˺M _Gz1/_Gj؎F{X`=V-u/ c^m0oƎ_Z $zg袝8i 21iX@3JL|Jl+F%Ks)hVU23QmILa..Ƕ5ldk5d )vyhqb)'/4nj}l97ro"$fRG{1iɫʠ$0\NRu*bTP#0tZmEOf/Y^Qp!=Tbͦ'  "%N腫r'UMnbvWBN]F2EoGTɁ 5ڙ}LL?b}8׭[aaӟWwn_?SY&D pG< b> `jC"ANxmY Ʃ5sn~Nز؋`:i 9z+jS]fWΉA\:tyKsP\j21t% RJcGη5~W%' Pc {0&hI&@Qt4|7--jE- 팈-}&~)MDUt'G!VО5x2oGCFTgL,^f%]Ŵ67A(0"j[@@ p}S3HRLCͤEnKlisg:*sX8lJ8ϗsZFgcXe6\؟_bSt[}<'ޑ&*qD s@ gWp=V;Jc8pPz2&BTsK^,ix:-!I,YBu}bszGU^ =%9g*;<4tcF:\ӭpWa\xM*dvYrlGD?]Q'4'^dʋfaPCz3ZMWJl^lk\e޶n_SJ1Q)TC[;*|#ݸQ SQ [PHoڂ?U"ɐէ#ބ#qٝu uRƯ'yv;IɲJa&|ᠳ`"|]i(04)=O0,0Ϲjthfij_44H:UqjHH.Yۜ7 kHmLd*Hv)wGC>Y 5t$5 2Oc <1J><+ZQwSRœ}  ,5;KƢǃCݸl(dNgWBUϞ]xSQnj4tY01Mb"O7?|mo@[g\lX؏Cp# ;e-5o~TL22d Qc򔚞S<+ ~gNO3P|Z™N]y_ّ^=gENϡUZ?pDHM xpӓN<԰Ob[dq셃kB5֠!dyB:fM*>Jٻs'.ʱLzG8X{HjZ~d 0 dH-.6DP7ypPs{u^ZKlTAH~}&[zY()p߄z ] gmv]zJlT?ܢQ6=:uJ/(t|Yh a۴6Y=eoŧP'VW!\\sgjK.˩ Тab~'s hy>erDe@zR̥N;-MlG@ f:BA!O13PD"s'_GAUpr8Է{12eBH8 pɤώ"'RWP=[b{gqT,(*NBU,JEy j)8*/yVaBNF9lBJX\5@ o;E"pZ1sø}=c<1{Wܜ(+XDZoLX5_딟(Ű)d?uҐYXgg/?Fh;k(ԏ$szCe%sn/ 6ZcNUwT ҝqs$kT>׼an_E bŨz}KwdGzS >##v{$WMZۧ=`M=單6 Eb'`֔`H/v;`<_Μ8֥I1dbɯ\@[uXX6<}SyޤV%OP%[a9ѹ0$s:jAXȣvH6w|=d5c=O@KyebN'kL|[]6%>\CI JDb*>X@I12[Oλt8]Q e. .-SW6†g3Xx ;Ph 2dKAbM1U<vVVX+"b[I\ε_10 |:X5븶aE9Ȃ4__ec}eĀg= i8~u͐OK L;rl-k1%X%wH?ol _uX5\X~2L.3$"b}IUJP>BA}`/\J u80oZ%$B0ToUV)ܬұ(*Z9KZ8knT.@&S#|HhCv̱6^$"]BWIITfc.U8%:eAu&_ u*Ul9aBd0c }Xg`/"<.\'mpqʄ~r[uθabxWW%EnT[v*m;9,9V{f;\ɦr_ب@bU@e#oֈFN UxX![ Y,%/mD&"9PVnlϐ=~@QoFwXlzjEj14qtJ|vScIM`Nv%v ȆXrz BAB> U1)ޑQeC3$EYpJ _*u (@x34):.ڌܡvUOV}CGuV}tIjg# it[+f禼W_Lgpry /^L NlhSS`a//'Ŧ~K+@"8'z7Ϭ L-s?o)$7=ecH?4Kǡc09aNW].(OMJ6H~Bs^PMPB600{Nw V*hd&DnHo̙[4,0mҁU re47l.Ѫ:½l鬇XնYݼi-`R^s4$}pa ;K7c0H1p gh!ccr @=+눚Ͳ1Z۱3%Y/vXW3&G`PuϤGLf~Er3xP gk[_OůHp?x@sC 5=.5'\XUr3y fK T~_&ƄicAar]ć'Vv9Z2s~o\Cy20ASmȍpEkVCJr_)iGwm b]cV:(WL qFS>v)X(oa0 4JgK5}HJ\d9B,Rmݧ!,h/fpyHT`Y۵ɗ%EO-}}E{Eje*Hp'B\:$p2[P1w@gNdg6H|Ek=݄E/p%in.t5Z=ni 5:ia7*É8kX[-Y¨:1hVeCB.xX8?0:8?BZu}T^TW^{f,C6Oa$ =< LV0dbl6珉ks c=8ƾ{'w;߄j]lCDOyo^ɗ~X-+;Ϳg 7F4)mVh D@(JGܲEaxH#*1[CxԕY ͩAstĽP㤱j%Sc#r .6W&1@7L1d7SƽθP@>%6vip/e>pvuww!1^b`f,|G,a(^] JM 94"S }FݽY@M(G4$LΛj)2ƀmf 0" ~bnu@Fco"Z&wQ  O2T4~=CeH[T Z8]35A<1MĤus>3K>*_R=0}7F/b#<fih}ddw<&9m*LjǪ@Ysoc_H$AUD}/ɩ DQIw ru4 (\>ΈYѧؙ dY,֢:ئ0P)CL<=;\CW"hD8{9*.#E;RAFVpHRU:_G7:3qT;Q<nSqnKTjHBm1ǠY@уۑ5hͅaC~xZP(ֲ ϥx3+}zʷj#N)9i}2IX"3Obh lErL{|-8rMB,`5}Rh=NT?Ɠ|i"2?<11VȉeF8)DQFnfk\Bv>9vW^N8Q) Xd +O5uX6I4CKNL! Y(k͖lny< .5>X#ZRgEdʲL Y\u$ߖ(Rxe\7ېEdCN|\sMػ/;U+O g 6{Egs#8-̘!a)+rN :. HQ)~Ghi6ݐleZgQ?cNBxfD9?㥥6 =IwvKz*Gߢ19mȈ[5A$_[v %뮳QW[J@ܖ*CLn3ӌy}RBS/j-9=G;} [VTUy| oMZ&i1-*jߎ+0aMF0ܨpNWo͢At/J)8},-3QUNܢLGDe&NĚ"kR+2![?) P?6TԬر; dp, /uDws<|t˸#N(cӬ5aXNFVI0t_E >? {.,նM(b&? )gu1L$=WC)€V"U[#0݅m~5j]RYzv/iV>#7uqy迹׾ EҸ?i\ e%br RtvioaFgBum AX{Ä͍υuh%bG VQ]ɂ.5zx̗⎫eavk /SueKW.OXqvjC͐M1t~9PL"jopoxиwLm/BY ra""P^m{[ASV:xjMJC: Ł=l1IP$ŅK~.F;#j o3qy2G|t^ x]Y9m86#YS&2&QNstPi8)#9yԼ q`mM9f9,|@}>y@YjiVm0 0RT9쬙ݙu D>EX[ga|#s J¥@k-H~.)21ja.'ИfEJ)Zl rr7,!ZB\eT{*XS4D^DK_$Z슥wn^cho2;!j!r2{NULJFNꆨ(<-h^ ]:n' w7S{lTi##狪xo2}go.7r*ReLA)BfH\,]tA:yF_Qw@+p&$Jgioԯ}Qg]zEZ!"%7ۘō1}$D m_nޫ=Yu:R0y$eEҝpdU] |pۃFa%sIQxp||{Ec2K=JOisX]6.nڐe9 N[u~{1 J G%ѯ;esdulBi٪AmL41Xxi/ [cUO[=ukǨs_oKQl=0ѦUJ%[YWAi qG*Βz/5ǟ(XؐsE (*CTĨW5RS?C3`x F3N G`U! \NW`ΒS+zb7&&474WpXUA+x]79r3u䝖q"* y_={Z֞7Dcz -sESl@z#N9~ E4AJ0t"a?̽ADկ2f)B%U$Sx|}K'# (3|]#2Y܉C?7 u5{dD?mѮ08uE |Y;I@zGS9"!tK>4NL kGNrlSp+$s-yr 栶"yĄ6v !=B֡ qs6$t(*W[Bobs@*."jR4Q |3CyOy$"Ju}-ixs~|o]c^t# YΞne߱zӴNf-0l۴]j%հTN'n~W6 }]DEO;r>YQ(@yEw6POHȵ|sڷE&b/1F' n6p̜!` C#E*e˃|H*_zUpz)>2S+S\tg 9<]A\ K{tXx%Z_0Ȅ"#1[m?&#S1v^&-#QDUrrw3o:1 )y&YR#cCb'K c=Sv<ǜ(W)q,(ݴ.orzN愈MF'I֣ig LlL BXvͨbG_\!UB!{!eyQ0Vri< ,+ԭqč3)B| .(}ޞ;+ X{>uֶ{Grֶb?,AE~C0BגǷθ0 Ӭ KᏗWL&8%̨qK2TH;xB ڳQ;}ȝn3 H83rbעN.Ec9֡y:zF(0fX~[2NuskdGIiɂǟklJ7@|̵u%8Lu7B5DXQg^0-&i}+ŷ@&T d<)g+1kluM{>gΑbJV5ʼ?o.|{U%Wd莾#]L[] tT3_bQ:aU-}*CH?܆O3z@*q"QWh{!?arn[1P3SF ]vGgDf!}csz0Ox1hU6so~b^Du,2ᶚ/72XX ՆTJ}J<왘pUO2UBhk*4YNYkRu+ Ķh ֚Hqּj*e " &zv턥m]vPrj Q2-Pc)R2>rNLcl\ҍeD"t'=ߠnr[M2D]q+G` Y~ΆYyֈ ~%NEzu^h' /8H_O%Ǎ۔'u ߃vfr+{ы |qй^~i Dpns+ Srؘ*_SbЉwė V)3۴ 6ǎ+1;SDH>î9zBWhW.̼6%2.:A Ttf#)N(}@ CQ96Ԡ$uDѻ5smCVo͑IVB9{ϼ'}RWE;klHC0WbY"V=3.fu&:Imߒ#*7Fm:[8%rliS /!Bcpx¾0R^ 7𷽈5ɄW4cv̠r&бo\Z _205vw 8 Qf{[6 @F€CJ%R(I_p~p/(ure`G?E=l dW]TcK .jZEj%ȋjn.>WNuwFk'L5vHa_(f¶7a2P_wlYR@̬--.aND^rnx1ZUhwى/Ubʪ.3W=ڽ_x̜Z_hzuJ\$A|@zAe9}Kq'"4Y p{agH=N ^&:o;bK4y.g5ȣ%,JG<\#hܬ܆4hFDL9jl"W轕J~VT[X%#Xc?laHD\Z"ОZOTvy%Quc\Tެt^lN7izV#.-MS#Lėm V kiՌ2tjfd$;%:tKM+r]XmT'4Xpf"مd|SL]ᇭߞf?bxAַw2E~g+]ac/o5*ԎxIhmk]+ҏ>c$/{2:YBd'02fl!U({bv3fuʦ6\4H7H~##5f6'oBN@Y!l!duU%%FC@5x2aR*Wwu3yOrN _6A4iP{ӞWJA?TN-4^͑} '5K-_O҃h4r'zAlJ5Vf*ovvOM0KO\/A4ƹY/yL9;Dsb`*Q# AI+ `@BFͰᤌ."`e { U>y ~/x& )q"،HWPUt]i$jK>*Vղ3tK<Yg{vaCѧufq.:#6!9R7+$ŭxu2c 3ώcn)on3_&Fa<8ޠ/NwrQDZhZ_d OՂ k&i^-`*@_޵>خ$[l n97F8 {ĭ04R%OZ/NaC;[8:'I {҅*zw<.o)shk%Am/CY&7ê˺(Ƃ^-{~ZUw捆qqMTX,0 +~$sO?"XJ26Z<MFZQArƏc[W1ia@uF4xLY |/G N&?45Xor|{:qA+VfaXIS>cʿ4F̆̓"vZVRS}I+4Cwvr{aߕy}'c"` &IJ(Yn}CVզ̖NU$s S, wM8#qke+(UaɅHc|AM:ٯˤSI Y9$m # bdI}[IXk:]}\*~[䁤) kk&D0| eGp[#k0 TanOLhbFvF~X!ZNv<.wHjZ 1SuUtI67FTuCR0$2V5<~3KĒp Ϯ|BZq~>3|zYi)޴6&r 2- +`>۟8F.?q ;4d ;{Hrށ~X2d<֝Hܑ)#(m ]ڑb5 ays\!hUW6MnK+A"Bk܆P 2Oj`Ο`zY n Mע!"+?MvcY/Xͯը.zAEuNǝ'1ڼ)o<} 3̴;AC:/ȣRp)a2UQPH>N57(/nc.p/}: 㵲:ގU)ͤO"-0GjZY_THOҨ(ʵeυXJNCc䥛#U/筸 x%[qlhM>h̚Wv-[ӧ>7ʴ"a ?YDlbgaSV Nz7٪xL(phe)#zb,W=pS3wfiiTHtѼ{GPmaoRCmNJmҼnP*jz+BWz #N G<좱'N DYASgCU1CՓ,_|;[ԃ2ez]_DsZ\zwS3I゚q*/&.P2f9Wl}jo445یL,A)h2)lƳ"A!c{=#jw: 6mKmMy ?<fl*X-^짢"MP(uxrzot 4`nX\o)47Gfz|'2z5WNlpBw, Xy a6o2 a#c,YӔ̈ ~z\w-X4͚hᎹ鶍F#زPqmMF+g]GhX LgK)Zy,"I߿ѶTNU+yMZH HN``?)mg/̏%6.{-OrJWX_ެ{8pU:Pۊ ;9P(KB 05PW Ђ)!M+qW{9#Kd#è/ZL,-a?뢃/OO}T pr$ZpsiC>DU ezmrbY#`Iz _IbgQ=/&$šNqT X.jei盵 V?Ƙ azeGEjf@5yP*#f!iq֡-B3#WqQL WT]n;rNE QQd4 Xaqr2[&;% z?E [k/Y1xtBJb%U7s9>󕟊ap* I ;/"ɍ,pIj\#UfT}" Y/"`iڄ}H (EBѻ&x~ 8ڽh9L%Q4WE^Q1wOTWKOVoCk0XfZ q"mh$<^vŶ]">|e^և%:bLChY{l@L *ʖ\ï&Ayu| Jx?бcpt.1,<#l{' bOsC+@06:T7E}Y߳kMKE 6`LCz6nMh8Of'7$o(mR?X]sbɋC9S>-Ŵὧ1PSPF;&H>3KP +]8Wse`KZ& ew sv:% ]Nmp܆n]*YQZ=%Pc)%*YƗ xcnB 8Ŵs oqeFtADE~Fph!?^a@9ꏏ/!eN3[VA _wq[Vcz/yIo̯ͥj ݞxZuPh(}V;//,w?-!&r<(Z0= jfM s('=Ql DShSlƥ^`|\͊6u(_,Q֧֭dnA_|Mִ 9ZKILq zd.xQmH4d'4ayTQu}l.'o!Be ˌxHfzH7lmߎYO(;? b.uV(1S%Qr9a-É'74V_44@gs!Xq-ܞ@k_Acþ 6C3֠ 9,F;b>nSׅ,t:/aI?U;0}-s{U/T$Y 1Bf}x tgMʰb aJˡV/d͙oX"(Ȑ4 9u ]'g9^IyXtܙ6o7I\ R4UtqMFfO땮koJSK ^YwydۧGn -Xxk~Drwxx&Nxa(!$amQUovfIiR1KqhϜ,p]84`a?Sځh2RvD ]HbDar& Vv!|NXm^'S3{gL}DŽg8]QE>Z{7#IY3C~]!%fLldjpX*DӃeDo%z ٖj>,C46P:V+e-I;+y|}9xRnoz ϟ Ta:XX_?|,u𛳫V ^84&?iPGb+F'˸Rw7q-Ot쐿g<9vfÜtxf1,eֵE=s1@`xl"ƌ]d!;7,3M 'nn$m^ _[JHgcʔf]GŖGڍjT Zyi X8tA@b]T eȪ'CԫpPR71\xVuGXgZۗxB|:To M3mj 7hm=nW3aә6R/csuU[a\L{oȗ!*EU\K+9t(Y3v3$En0/,^Ή<0I_ t~tE3Z6_iŹAŌD6Yj*G·=B9ND`ڕT?W.kEθv\5eJ2|BffYVVr(u7tSH9#C ft8P)PY0F7ꔛ7VrE1.Q=&#, 90/{TI{nJMNF ցadjtՒIFd \V76Y-0YoW{"r'Ay54lgkgq~M:7?p&j`Su_(OvOw~T TϘJH|E hS4H'5 ᭴Aa+M\f_b9!%wU"u% yI8}:g$@-zoljvM-]ad#AI..E'J2֖ lFǝn# §9[;cBV-d=U4GOSsf 0=d7c+3(w0 =.-!4줿~7צ؈Z^d9+^u8Y0%?ln>~Nb"ƏïÔ֔=43Tz\WV 5"pxt[[s(ÑZqDd3a|GY"ٵbT'6걇!]zĵ+$_f') OP1;"}Q8aBgR;}b 䪐=nR4]M:@SI4KL#]7Y 7?/U=4sexM"D&>{.0|'`M$|my3_J8(bR*6q;rϘ=yVoIߨk:'CkB>:J JAcLY T:ifQEY{ӝ={я {}KY"B bA\PM@$JH0Ջ L&Z29o,-pJY珡3D{9M;H%&7eֳ=KZ-#_Q(]{s5&A'՜Up}egy 6~YE}{(D@}PM0;Kn1'G뗁R0QΕ"Wި=knЙ2vtG8qFY8OX>h-z,eȼRN^.̗K8#8~OȤVcGDž`4B&b!Prz)nn~#5ߤ5aT XjƯ~XEI|| b AP;uMNA<aJ$!L)08Frc~|/yߋ}ެ&̦zU(!ҕ`ϵpQ{")2~2+YYD,E($(!|uҞ*_?ײ!;~8:6I4$."!|zOcq0C6RD?,J b`JC@xKx><cN2>ٿoQƑ*C {9[},lob TH0-NxyJS9U`}iA?9Q; mխ;E)`pQthAV0Q˛(U Np` -R@-[yX14s}@褘' bmߍ,\e"߂^'!>RSd,*_K\Δϫ88-\-IwiT0DĚkJ ,NulZFwJ:~CyѪFVS˻ezV߼1]@ђQ7ci9aZqo>rDJ5tg!#)"!Tjic{6@=Q3|Rj m6`X[9ycwd&:rRS,NCvM²S0j.@bQ ksKcЇvXvCgU=#SS%n*ߝHP a@ O~RMQn.{4g #,v{ͬG#݉)Bk߸Di4+gR_]zثU(W*q!# ;0K73iVhi"ƲH_x^D;{9sK>D-W azEۉkL 0 5N,쇕M8*Cq;sP d;JEfㇼy{ ~nwq14kIk0K&ZDY1+Dк?g*D 6gt\^/~_UK+tZs1ܫL4줹{& t1MaW],l N*gV XY,GANX_wZ:@vF7W `o2 l$x#;!,`[)Z2|h.)5!$YCl#AB׻% . ' @lFGc8t"z1g:d~ЊuA^>}{VD "ӹw J溪mREw.>U䅘kK;s1PK#xHM-tEGD[YP=~d.|^` E؋tuw9fϋ9X)=KX^;Fu=@I2E m誯ke1/; Ws$df% ؑhHƛq8M+u@3/bJ\h3#)IRצt@I~j`[[˦(ȕWFVlue\zFv kTmnGndRMw6GCgyMey?,A޾YOsMD©.iX ;OUo 8Y$o^>N_D/~ PT \zז:SbJ쑮77v, QCrG\ALC%z.Nͨw@~dU/U!~4vi+ Fɭs8ަ5Nlڱ`^bP%LvA` M8T x9f* !/y}M7UXOLeɯN6Q-Dy>ǴrhTr*f#%ME[1?4q84}cZ-tߢ6~S?MropY*~a jN޽n2U?#R%Mһ磻 a\<%ezq̲%Zj W3h X,Oz Ow]G~Nm2SO"I9; ]OnHhdMÖJq7`iW)!䐇f)t5ѭ C!Ѡ3xHCă}Arf*qjamh wBzam)) 7U4 \: b3Vs,$d;SA :ΤR;7<1Yr\V2@ea&ʛm81 ,ܚijarȹҵ _''|ch~VlH ,jhܥd. ,UPf "2*i)M>{ZS7?as@dgտћ-+bF{=";tb;Z4 4s™ami~%/z Ѿ.^80 1BSYɞ{PlkėLrd3]v 0u}l1OPMz?Xz Ńu-w?h/ 0bcxmlG :K%%f04fԖ΅ϓP=[ ^- H.\ߘb6/2B%a\XE:`'/CV\IyK*J`Zco3yװBa͞4rȊO@A:jH>Y8ÅYD69qPAqDz"2&^MA͹oYwZ'] E!\u" pj"'ݻӒxBg 8o~QW+#dO0>yf XFZ3';6zuB}a\c@11'0˿*y4<Ԗb^kuu=D y޽ uL`> d]ȹ9Zl/bHcP\B1ͅ^> yɉo/jlLŶ6Rqhح#T"/D:q PƎX* y^X2%A(ܭ4CvpW0~a3%8R`N,xDQhơ#"L;fS;Xr͏p.qG:ē?ۃ?}-pc?wNsxqpBOGneKz1Nt@lܸ+is$ #1#伲6J+|z."ܝ3xt7ؐyܫ,h:K27*v.p,wx7$|A[ϴEDOQQǟk[/\2 z#51#$s#4I)ϗ&r_k$lW 1# QdɃ'_70|0o[NͶ DM{aW^xl}^̣ 2+1X C)T{BWSpE@!U(=/KuYIl:yo/ਠٻ768r?X&)bAg. 9gg{7|e\Iq~sN aikY T4>ĝ-҂{ޫ7 eğ_#4T"Gk#'栣t%9Ѧd|O}mvjD\Sl@=W% _+@=HjEq`㭪2d)~M•a-,NJ׹@?uΒ-ϔs=ު¨UrԪ*oZ> 2U+HfIvb b )}q "p/?=PrM>.j݅EBnAtMft3d!^E<S*zBw?zX퀅aѽ7kݲq;т TE =[dYJ[3*nQ\qޝqXyp̑RE,0ʟ]9sL'h'ȸθ_e%´9lvDj).MkRJW!jA[n#qڧƧ;} 1MK,y`S~iJ(Uge'QvK ,{an0ؑo 2Gv~k:*q$c!Iu^Д%(\/|2O.Z5{|YLB` Kڄ qu][y_bm NT"k8|kf@53rS\zoz/lJ{CH"EC)K[4+ƅ+DkKB -lsN࿵ {2e FȠXN-3LNi#1A'(Bo#ۋ`}Cc\mR MD*EʍK#% #tb FMO;6dkH(.zx(uG@(RE~nloA~Pe 4UdoSSc% WiߵcPfjyW?ٿ<jC j Njbo0YiCAIao,k彜--s qNI_{r@98gADo_duǰ_4$@ÿ>#aF͐gڠs\rNro*PP|ʌ+Ufq-=j]%#aO0_ybGSUGZV-α#U5.\x 1+}AǴưl;15zsx3,hF@!x͒ꯜJB<%~"&%ǬsA;ל[3%0 =$0OMrDθ+)|/n˿),i01*2oeKq)Zyp^t ;0gqwYSSœc@5;'KrRe95Ih v76Vp)jLvP_1fw1WjT <CJ=L};ӋElq JtK!гʟC-%Ըl6?b*UYoΕ/ZI&WPi5z5.iX%zD|oBnXoklRtmCYU<ʏ񺩊]? il}5ܕ͞1׺Aw )5 z+ 9)b`V΢FmeH h! zHy WQTN?Xc#/I‡ ]t16O$8\8.$]MuuRP7ƈEr`ELjXaHrtAG::Pf#cZWY0x! !JP&[Ŀya,g^UK]('TY/EA%hZ.GCͺ TRwa7,kga(gZj5XkvLMIޡ ,Q W~n%Ȯ]Z/};#HqOȣcERJVָqI/n:oJ gy #͝T rm_A0[J sbR}trxDS4Wy5[G|ts$o0:)㺠`;m((cv{hwaUUe#_|}v0ySH+J+'bL_IWb1/{̲H}wq=e|~- at*HXEMn1ei]f [}^?BE@򵛬'@e-~CF~8jȖZK/V.zLݗnWh^TЯU37=HP8ye=QݨOwf 0U.Au"SW,u \"?n#:ҹJ*ضu>A7ϡ=}|l]f56ɶhۭ=`l/;Pk9\ZZ @ LnJ?93#G^ /igZ +-K D"09 |`t,'N*֔:TXiւ6P_E\KMCfgtt HU~V g vtj pƣ@\N h (Łwg \y9N)jCLjنj;5s~-IyEi'ƣR_*":E1Qv`S$(gȺ1/J mڣEz ]y8TUu ;g.'B խ1l4|>{rXxUf ۨhqqYtn'Px˚*UAIא| I &1 PJjglQtpB!yy 2E<  rW9YYz(g^F *[Orelf j铅a(:82&(V81m&P#)/fpKg|yxV \GS\d%ݴ НQ}-n ,x~%'VZw#+*cW4>w-ާcs~*NGIK|cGek`w/&ğ][a:,r,[e-z=ރHo(bHLx|uJXDA/K J,CKxVoB4QziHLeo ۞pªxz%䷑ʎ7z=b"{bL>r!fCx{Y8a寔f\ 7X-"e)11pTgrTK<Bm < 4D, M--0]{z~Ǜi`p܈dqZE,%T5rJV$|]jJ\ * !Z"7 l][N|]EtBǕ`}'>"-^dP23kXMux,#eڿ˾b…rFNQygxwڏbZR ݰS'oRROGZcUy{0|X~t`žaM*6!ҙx!H:x8wSDZWVxofYqx(fk"҉Q_,hmbTJy0@J/Y>oM8hb~J%ԛLi;A^_щY6|q{b`,JyՅL.(ES51KkbZ$䬔> '&!|B0 ؄%V,.8 dZE2s!!t)N1jU0 X'h/+cC;4O#E[ӈ mB*H|pWV콆Imp )_`m&M8(vVZUP'It:8B^j~5s[C ztx\^޳6ay iC}$?The#ov2}n_v|IB3 usvsSU.]S58Q_Z# zqCwH.dKd]Ǥ{itﱡ|!Γ1p[&a[nt<.!EAqU5ns*?7f?iEo/DTFSnjj4V5Bxs/BapV8N=5|Ei2R]ۂ'"j089b.8π$巐=ׂ2alLAxf+G=aB@fʎ{[2摢R7Y*ݷsjv" P! C.\`Ƨף7ђџob{$ٴ7:A¸z; %)} ƕ=%bt1cO*#eI{#+샦^æia%ӟ̺6 ȔZ<t{7R-oy+fV==/ufhE`MiD jxo)Ƒ%WZ$޳KK5kEa7t$PH m.+DE"$'H)풗YЇrWkt iRGjǝ2HN/ Fh G$;p#I b; UHqȖ›7%@]\]rJ/oЭKbJ6KvZro%w'}MDd~dķ~6oYځצEߦQ:Hs!6;} ԡ+ν2Y˝~0f&tVj`2GKGJ>ƒA6VG{\4 0W蝑g}Z&?X1 Л/VEV6;-Pe &?np;[kmE-)\+# &|sؒ|#Fh_BbT ~.D}%_ Wܛ+\:ܮDx-.ߦ?0ƍRYFЯIvj842o4)T˩ϝ<]^ZIgYkߜV/喥QƮ\"HQ!nݾjh֮dH"&cgu;);,u=pdDbѯ'Dx4 xȿ'd xAƧ#1Rԋ ~v}͇{ IZdcotˉwh)? 6X^AtM6t8N$yF) oI  =hi1IsAB/VXܚpc"BP("U72l@f]LLܦcpLWDo4s*F—$ìThԌ:h>&85Չl[掷N \3}%1W\ߕ/hPc:\PJɋ?8x>wCJ\] )Ӈ܀@/`$>O^A7T \7%l|F9`IiWOvRYߧ Q4<bJ_aq@]ITY_W }ƴ0zW&.LDtISLӸ,eSDoThpi .k%@/$.q2D`H#q)(LPbͬ_JY/ j9- kL2b5P~4 XQٔ|[$XO2x2qEs`[ęjP"A[eolE0̫HKF.BIPZ최Gh;.5ܔ4ݵ˔ecc_h>mf6Z%xS}AwLk],j8)mő6ZMv^|b)!Wwv#uOl?vZO x̧>Ǘ% ǣp |HyXK%| K"@;##&s?K P)aOU6gcldYaùc~Yرf,7HVgB>(\>yR)B$u5 >ԭ4J]^.Kkz@_lQz0Zj87M@mh債ov*aaddEb6&ys7/?[?ᘪȷZq>R[)E lp!,  XGrklUhS(vq&;z{W]&Juj_q*E8ÕC y[g![\t1sPȇQW!"Ic9`44n f2|\&rtx8ΟdCYPL=͛ _9K\xv)mS3+Aժmԛ?'jW (эr[ĵscp\tf\sbS?( \ʕP+ZpצH7]:]|i%Hp|0Xۥҍ;+[^39<%h-fO~X,ly@k[6?Ў=:IjHȊx)J&떟M i7ofHciaLW•Qj?JEd2c4V&/<Č.g}f+rn|Z$p$ܭs]l;Q&drϽZP`%QK 1㬢*;XKo9wŸf+i*t"MmtKv~EuD92cbd&PB0(t29Tr "bKZk@لήtYoʊ"8Ugk`ǫ$$ =uy*l )T/]3' #O$ Y-%0@I;o n&<|@S0ZKS2/Tnȕ/N,xySLэeYPy);ALF_2gND&|-Eh; 87E# `leu4o(FkNJs4 XrhV3ÏYu7} * _y]o݊g }y$ի8YL8ʖ xX^&[Lv x#&8!G/UZAUȀxv bZfA-WM5v~M_3/eS'Ѿp\YhȹU03qeƇ6ںЉٖ!DsQbQ,r_=23ɯV v+)Ò(c/].F`ݟur"F -WWcBXjP:}#<:nAXR1vcR/ʌi_dj+|95VLy8ˑxS48S Qȗc"~`OgvclNkWIxEI-g 㗝 Z>OP5q| ,>1]r"bAoTwʴ+ ,pC~H5|63/pz="A 턼i۸`Qq1s_B'cT3%kvkEMd8KFV=B/P@JPWO}> Ih)+k7z#=}u4шO!9p #uB-F:b`3;K-G;z6NQzy{^ZׄՐ95?.8c>' }UWi$;N#@I_Ej[\VN&uzDHsT?Y-iEmbDliwI=>KPY^EqPk%x@PWS:Y㘕'tYBKSfa#0?߲oBS,+k?:G:ik5Th |%N]٘s:[ĝNƖy,q&o_*T}淒_uiX%N%^ mQGN2.<(tVAL(iK^`/C zP*r:oZ ߓ˪pp"}XK!YWz*tzm/l# <0irQ?꜌iʻVT>lP=y;6aͦ60իC27NY36$k_cxy`$SOPO Ol-&90e3TcX 5n vgSl&8i'i*uvipں1RD0~ls-kZ;w:ꓼdNY#G+rLtA]U/}!^" 5aAݟ3w>_P6yuޚSk-.PWIܐ$i2րc@Ct߷Y3sEJ)B!4]jq> P:"5gIU>Ʃ$5S6rEMx&F%휪B?92=ΧknD kS|tL]UT?PRtڐ4gW%ؐ ا3ҍ1ˡuΌ 9=f+h2##t!NuGjZ*ϬWNVh|~$P;cV_C/ɲAc 2$md,sU}jZ zz0ψd2Owxyz.](/*@F`Ud|{K|igTgjg5UcaX*9bNG :õ[ nczT|`Zbd_"%:xWJálgoᣡ`" D "yX L%S7P2Y>{afDo s;]p0,~1خ0 Dž[¸XTDz}%NP?fUlEZ1e4Z)^ߝ=.u~ q8Op'cld_llFaBߚi8CQ^Q*RJ: ~`LfDY~|bH&~op%v)q@۰2ޠR=C_y@y.dmbcu$ r_%d TQo([[m^sPLFɖ ﬧPzlUgHc>z\%N\75e4ZN6Ydm`\4mIgOX)_!'x[[>ZiQgzT߁CY'#O+l it].*֍qc$n:VJo?8xp!:euBqwFhWE8JGBl~Qle ueъ^Qd/"61Jv#>k[VHjnDLƅۀ~Y߹EkzrNOds !P'`H컴#IqkBw1+Yދ=vX+.@Pm ܌!mSYBT7,hGXBn)6%Fb;Qjaɂ:63]i}w~(bgo^L@̴КަTՑեy |<{`HU{)$Uy;WzK'%?5Ћ`ԳX#ԭΣmq>Ix f b:13 ߩֳ[YfG`gMn c0ύo,SsصcbO MV/6YO^Wxk؍#j&\(Dl$a~Lrb b{}S2Bу3G#@eᒼ3wl@Pl?"^4d)t- NȔ`X2&ڱp``7Df\Vh;":hB cY7⢺rc\F#;M |k} Ȋ!{i/[b7Q ZU 뙏5`H IK`4w9CghҁxQ% inW#dg;(y.|kh-zٵT=,lXߋN-xn ģ%"GIckA[: H&zU/*OrU$wG; d䋫l%ufܛsZGdA'tUjE&ZB@pVVidŴ'wz4аREs}j(Rm~.5۩y-7֪]Ҋ pViQ%P4v|Q#Ki>RMyL5\ hS@H?^.B[uԨF{Ϗ7fΧ'qX%/j'0: ;q4Peb;;sd ոa!h Q>WئHȊw<UW/^XFd}3+"_ci\ck[X_(DŽQ WVO{[/h9tn -fͨEs߽prv% |pxI, FXIGUڤq;eN@ECuzlfbE>C$ؾɦa^>ni+\0#u}.V,1]$`  :S 'Xn5Cx=|ánqpU3K6r>S)M77 됟WeW; XXdbNHT)LٗyaUώ[ J[А\Mysyr^:ʮ@̨?eWR_#^|@15ˈ;~򼢲q y_MP\9+?]L3F K_l[gn<:ҙv}Z҂^*Jc Fvi@~єѕgW/㾲H}MРSaIx $:; WkΈwBR~XB*z/^{9dPnki2M1JU𻐄3Ds'w[Zyy/}+@e.sP\_QS%~?IC.~J$eMXS[Zza>FLГe@b81pc Ep!n8.ElB͗< `_TV`$! ]*a/],FEjh'|\zi3#6ZsU P4n-hhB8 fţIpen`Q7bf0VTs5,>50mu]^L̡liޯvȱVߗMZxǟqˠ]x8Kq_ɵWegb̀rw%4>E[ڽVd)0ոkg hU̢ )%/X3W &)|!l׻-$d: o2̃a:YnŁ7~KZkՒ!YխF{'F0wi(<J[89O?rAm+D:$JeVDx^ qDʠh90l0.Z6 >"O0GC,>tؤ - 09je ڻ]ܓnlA\l|Varl_7m&Ί NT CEGSFn#6ޙ|_GTSC4Ȯưgӈ"|mbܺp+6s{)u(ےߏ[4TU~Zd#,l~P.;y6Rhz!N<sx@cLSSԑO=;_;4s3*3Do^~0v7Ǵy.Eb3jtobЀj.t+0nxA3:WxvJVXJ_ўJ[kG!{H&L@vz%j&#y5 \!LpځB0X?ifQUPp o1Ҽ`H4؇[e;WiRWCh/i_4|O a0F+dB"{HoZP6IO+gQ.hhA--)^.IۙF%nURٲV01t.W+ ބa̳W`,eb A Yڶo#0>نNM\bnTp+g:M$71rsOd{]C +y倭#bV𿴢Xˠ@Jq9,w-QL? 9<(Ur3; NL:(u+ݒ h#}>/}J҆l=ΈǞ lw`dL @[yýAfDj@ Brv.֮UiRc٪L, }ʔ.uiWbp\0CrypQoQ<񽖪jz"XNG~ x0_("K+z" 69g2f&ZIv?O"Vo1R ٹqx2L}#i OLh6s'&NAz; H}7tӑ->Ĕ+(&Z70 Rۀ5a$X8JFb0;^uɣ[4dB X10#jd@aԻw.uʘXҞ:G Dˌ:&3ER][{' ,~HDU"~{hn-<,*WҎEj <ݼuŦC?'XNʻx rn2[ۓ#qŝ-` 909s+ʙO^OS&oH3{uȥ;v !X^g&3;+6z$H-6cO~mUDCa}OZ/ӜANCԐbtsޣ+P,By{;wi<sFt B ̬9i׭A%k1̻a}[(4aG(C h uLW9N6Z.j2Ki~~i'~7*|#T-hP*ʇ2Y0dMmV8.?gX%օGp̥b"BNIX[uۡ7u Ǹ7g?LN6|>@{m39ŢdeayUP^5 /6^sj!K }wv66eK-FTQ{ߢQb,Z#炿yjt R{KYn}&FHןvH HUdICqoo }pZl"Di=S[1M̀^h=i۟{ йDm }8'k[ࣿM.5;#X׽a0y('lZ^Z柸;Ee귧|1) ܘ *ω++'C@^dA^Rf@Im&εMLն p!0aO)%z0+mw)7~eJt %7{_A]v'D\,bjnSQWaweEK̤=-xQ-@?+~FAmZm>H=HӡiF={ˤ$DJ1.6chqM uB d 4e C@`u>{y b %O-Ohilw r!ՖXѡ/-f,X=Ӛ׵Tnr<:Nsc[He@5P0\&N/HΎ. 'dKM 8Ǥ Y.fICXE|r5D-4t9;~9y轔ڈ?r\)j j>OQ%6J(ס?S$N? ,97]zm} )?SJPE ӠD~z(:\R:S^y~XL -\Qci r~?<9/ y=WUx@t 4T}.3o8i!ᘋ'LWTstx0y%:9gUL:'`66D F,2oyHoPc;%6t4-w{|o꒯Cxr9){S|\N,Zj~ݷ-'c)] 0YR>l-+$r=6󡜁Hxt9eC12,LUyjL uE|4 wy@_)57`Ya}^uk)OmR,y>(dRA6;W$Ytz3, ˱mRhodn/:'ӟ`{ @Lf"%Fp랃zզ[k$\SKL=0IS_DDuvUB8aQV@";AdV"Aj]KdثJZp׫L E+i/g(f@7\CqC41Z Xj}rHUbN,빹U3Z*"( PSv WГI%iM1}E,8r{5 y#a[Td͑Ȝç~W&}= ]Q Kbk3"#@+k͌^%QAFBE6&yg\8Bn캣'Ns[.CnJ\j*V奬F,GKsIvBLÿ?wjl޾+g֤6jH40tIauОB#OssLKpKuyl m:x+.Eش՞ jc@۵ft>@|E,n\MO\&Ff?4Ȟ;As(!ǐM~֠X֭|w= ߛx_&JUCl|9 =+~a }h{vTs^]DsΞK j~tӆ: ͉oN]tteǣp `\\22%ūTĦJ.ǟT8fo\?La=dTTFs"`w%qX09&^ Zy2yW12LT_CL 1Djsҫ  VbbD/!W\քosIk"fovX?#TOf g"~ %*fIvt|pYϙ*elO;?]1N~ |l%^T_3B]]R.^)K_WNJ wH :0S~w vzY/r:iL&miO^  \@Ab1}μo!j9LȞڔP\T¦$rE@~5 ȳ^A)5%R1u8aփofLb!^ۨ]UVEB;JZas'Zś43'V>?gkQ GeY,]'HK'g.)ˎ~)U$$@̣< obN1֞1>$1iE(T@VҰȐ,8α@]!+\nwB`Ľ" .h1EdY4퐂k &b$7 eD=*-T XX^ϒ^>ćDT1@[uBONbЎZ E3ǏGtX)bZ%B0%G7XעL `]IE4q Oc-0}FVYwdi%*WClskM?)DL?w0ȓ.AyzjmI#'3}|.,z3,,Mjq& g5SW'UCoat 邡p=|lBC'@1V b炩VDaB"6ӯMWT's@3z1c< yjۗs_|?[ 8Qty1ɖf?Id]~?EZwB+Tx(2.q ΋^}+"DD^ԮO6YuRßs]dحWiOhyRäax`aàg?!#_D3ԗ8S\nvkuMkԄU߱>:ch#KiBCɧ;S/|xeCmC:(>g2Svw//rR6uLxn4ccnse;us(xUmI}}v󣟝S$k&C943%fЉ򃘎w,vE[U9af ao]N'@ Oj#c57A/~ z,*G5 ϭ=հބJ $L "jy@k7e 7>|0zXxC2 $(Xk|r5ț[,0kW7.gy1R1u_(a~ٴ\# afyoKz-T틱"Lu%ESqXZ&p}=jԹ{I&ȷ dIBFjx͙-TRՇ=s=ZxD^ԉ?Əwj h9E/UDc-{U~lŴ *``2*(4 ZAl/B^Q?'F$ouPǢ@:raEN(JQd[2˄d2- . "O!gbaeg򪱋A׹ *]Dh^8P Q4Fdo_'" %[o:pU{j]Q>Oլfڧ)-V5$=h]wVF@Z:0WCѴ›u b غ\^,N LeFa<4cW1FAD`2}>0dӞ F|v\Ki D\]ꍈ9XSwxM?IKa#jeVSr0g>"; nވvT}!>OG͒V%"l ٔZ^ףAϚ%oR2`N%)ܸ1g1"C)Cv:-PO68!K%A]hV Qp1 X &HY~WntU]td ql)dn"º55֖N Ű_Z$ GYv 8&رc;c3!Jի{1XS$6AB\``}JԠsۈ!%~s0e>fT{54l֮( R2 L8 k}RXZ= ygJz2\sqL.;;dW'28ėր1Y Lfj!Zj/.YK.~Phjl9c&~j$W4wP YƖo=`#K;䞆9/|^8z ']19&Jm6h؆3ڇ鹊Bդ0-z~kfra!ېϤ`3{Ku'D'R&!z0&a_R8X# o;W벌:\ׇH,ÏZ 7 hm[|.uP]m: R }1]IP3!Dt P@PV\ѣ&%o ԫ<)S/ZxɠasrsRnbE İa|]dۼZy ]Gjt /:bٶD8+ ih@M%ۏа&u[oyQPKfzD{jHˏ~15Gɡ}z1D۝pr?ܴS&UT<+a=o{8Ԯȅq-5ʽ (Oe>o&`tj.ƶWA_GDGМ4n=n^!1FH(#vݡnҲ_,=o?_L)`onݷ5s A*]ՋfMjf=N=3.$bŻbDfC!fV$\~h_mAW3k+'Whd_Zx=Q]+6Sш;ќˆ﹎M46d$n/[8^"SR»9ؓt pDs:/{ ?~fA9s:,}C㞂 kߑћE^Ŏk=Rd,D:,t݌@ōly[iORʕ5F܉BLX?c mx*rTڈ3db5ટ4'J6 ҅e& о04jgo3Ncl9c/y3A ڳ<͇>M F`𻑸BswQx/5p#J6Syd=}:g/dǨЫq00QO>{Q$BBU,_HSsQC v6jV1,T%X~7"G->{/P>(]=wUvpwl6&x@y\P ׬;S CblG"!v]1r1s(dk$Á1j;KDG]UmwK_aڳʢ5 &0u ilҦ!-{@TEU uxp+k MNdo )%FaQ !$!C*JRO=y+e/l&+ЇW10)Z_rL.W?"**SpLNƺ[0;bPuzVx1(QĻƸ#5A̞ `[; &mBn[3OO,ۤ#ߛВ'C*4ɲ U|9˩:#Pj@E8,s]CHK;d"qD]t9P9%0tLt楄߂Q[nrJ4^x𹁳@\pdj|)吜{sAӌnM:`dA[Oȸ~(5$7o*[{bПPime u-Iϥ1ThĿdC4Nj=f^Bvϒ]]B#r/L5ZN_B Kר )WʖMN(Fljf8n9 Y15ۃ5FO?&I)Մwx *y,E[ÝkZǐeR/&QOı`zN~Ա$Z"#J L 5 W9V :GBcH+#8 #|WA+Q#&5%Y H.HjƜ$Pພ-ܓ.D+#xM-OQWxt%xP3/NxN[IM'yR ߪ7nۦaלH2̬]+WqTQJD*2i0 Qq0$X1ɉDEhy- ɏr܂i2fbgQTu°cwG/fhXIB_Vfq>J62|i:U{AS&=K)MdG鈮*Տ\ 3W0`!٬|M q#| :YTXlF/8G;h\0,EgQ6:du{)PF hua$sy%[LrY%'Wd-&3VT/ya)OCf- n?0sqPm_gN^+V2[7z𨾮r58=)4-nuDgFa피鲚V:9b)c*/:<-כXcA\4Yñhy.Ep ~8ЍɯeX'.r7z1ZO xs]D.qVEߤɈ w C$M8dcPwQˣ}OsPvj (/4w >P\oI ~v!1'7)xL}[#o9mּsr缢XOj\q$}ٟw⓲Xǝ ԜRLQߔP\%N9$1po^O*P!1&xoh"3 Wi s/( LMGK۝sʎ?grΩ|%Ovt- 0(3X !㐽jLDO#\"f"{}Džv?F]?PnH}Klezw70CVQj .WnCB 2U[$DQ/:Q9zɟʵ*$$ӟ^d PۂJ1뱢؛f"1㪾byU:3N54%3 ?`vaw[]X dV+N‰!5>@JĖx4G~Q;2#kdݗJ҂{oM|[߂0OPlf2zchjx87&ẫh뉂{K*)`#Mٱw'ITwqkܴޘWĜL; H.19M`&E%h)Chn2΅b^TPJxS_8ʞǥpOų|s[q~)[g@x *Fɺ c_q;TRz{ÜUNQmhy:|vH-ŋosU^Fz% X>U!22Qè}=rnw$v F9՝{5zwZ EֈK"KmL IQB,۔/po)&S1ӕ)Y/ [ bX3kW k|., 1X޸40_"zIK0!4PBn}O͌AYWm,)V22ɸթ^{ R"M;ה{̋o . L'Xoy&UX_9(81ظXC8 Z;1E\$i.ttֱLsiф%ݱkeFEt RH?1 G3X.#0KUGE'ǴB 88h:@W"k1ﻮ62kqYZԲ!7~1yF7i&MDӽ 4-9v4^K3"e<]f+j;Aޤg2X!rܶSi h>Zde+NKD'Z!B\"UI_^@\^.7nNHIS8b5 I|CNj.5ɣ A^+y "o0ߨ)Lkc7g|yR1FQ6cԨCژxvyyf֤.c!RXc}aQ"0x96A4Eb£ MU) ȿ#~z۴"k;,cM_-dr[4}G;A[ &>(?Qi͚f])&@ M`4Czj8xNf0U X抹2%+CAu\7ꔍ] J1h.03$jY:n5iج| ݻoH YkaNxz_֤M0d7oƳ2Ջ8numwcs A%YMIoTFsM _Q_O4%aSG08{]FLbc9]"M-7NGH6+=kY*q()0v;״:1)!|val ܗR!53x,M!yI'wJ3gNpV?M aE [~IJ:F- 's9F ut]?ңܥ"/:/@v;z2 k!Yz*8 UPX88/U~t!b (da9l,DxU>$.ztھKc\p+/"f p oX)rOb[02ܪj!&A/w}|JCS' $GA2-SCPY}4 ǥ)U ~nLL%t^ vOgPB˗6m'PGۤŨF6n5ဴSd:H؁~) ߼E#YR{9 D !0v&^#1Q>UA?UJRIBOձhaPO .A0bx HhUf~r 1Uo)@@."#"yC߻Chk3:fxKÉ?0kE"@dXńU2@k 0Ү%ѡaUm#Nx9z'ɛ^< д${k~g5vEd窪MR\Sgj-Y?}ŀ‚Z !2Y(C = n䄞h~UTr1-&1[Xiog[z¦1;i/I(v1=vGy=0AUVT&S[4s˧Eh"OHQMӒ|9Oر$EL-O;ceMyXw}lb 2&&J ʏo!f},Mb6Y ι-.ZsGU\=}0FO׹ѰEmyfh(jTdK}z(uq&.HJlհpyLV_pWA*㺾AFx qv&m.`y i~JcYƿR<`ݡIBIvO(Pf.{>=Ӌڌ;yM9i<8T_?sS ~K]7s_/џfL+))/coB[˛ ' ׫+M!Q 4 H-C'e]{k %SnI7\mMKҚr3w4{7ۼJxN$h 8 j;9;!\X= IU7ImB;gzjfIئBC2u,j ޘf/ EcήЦW G.ic b9\glZִfX/`9zWc8۹c$g$?g=Xf$(׺LMcN}9Ӝx`N Om 䴺)x֐߮}/1&P81moMmj!i 5_l  Ma~[j1vSi'Q4^XhvJWj<\^2wVn~ a~_{^5gjU@Ii˥t n?^HZ FU%;L(pw5*Y^6 bBf.2b~`n40wsNA-;v+5L+u|j+dd_<`l6m&ݨp |[H7W=y[mΐ8ކh *3CV(fDX.ϼ5%oqr*Ge(R8p?hs {^gI| % 5sQqD<s=k]1~ JAqx٪_q\vNUZOł8 h~~0/C+&*2p~[vٲĒ9%ރ{e2O5"hdo s!#@%8/e`75o8߼ӛ޶R2m{N+BҩXDU`+MB(JБ?&7mTiN\׎5=jLR o̲]B.dн=[fڔL&s=,ZSꆁ:[Fb#F4H?~^.(ϻ^`M%Hf:rمSצ~$ mƂSE/aP,ɭ8 3,fO.yBZF؝d둏 $Xt,"BS৐"}!FS3PzYVJ h'4(JVcz ns< -Jzpg]GJ [B ΥҕZ],ʧ8 n6,鋜J:v$&?Ͷ ̺?!],.B8xlPBB[l/YFr2q d Уj^hz@CPe={<$ "7%ks֊`*F9L,W,|F5Y(Ǻ&jJAZ4fRigϳfv`dFNITdJBy䞟?C$cH[@lAs#4 QŜovԀMI.u簏N/SI6zMZCD7C`5[KGi|]v_W y/?R\#~{V8cY!J N&&rgD#! LdktӚU͝FcqI$n/_&6JDtnIX?ZѮhl<@?0C#դ|LSֈ{DL$ZE!{.G3CG]nCskn5cұĜmy?5h5'jvȜyN`Ra_UE2tڡ}w[STC 1QŷMiTTmIEjȝ8cHZ v# "o~h<|?UvRS31p 䇋q};jw&D&(rh! ^pX%. S9$%q-l^ԜfۋNyB OE!йu4~Ch} >pyQPQO%E.Q*uKw?d!hHDyK.v@j_0ʡaUO^)뼇 ÑLSeLUdW4/).Qی3{"ia Y9cX^dp`bHV (+nZ% 3W6w2=? ہR cGƵ:9Ptnˡ-JG]Ƙ-~֗1V$qWBJ n}VW}0"LmfC$؅^U*m(,,'P)>1HPx9т1fj~ZЫĶTtVPDa =\;vjpL  Zk,'ʻkJ9 6G[.BUWuV딡A O@G#[F$wPPb⡎T(͎'J{&# 3>O߱/^ԏW͹%2~ȗ3*Y#JSۻ[i\y(~α=E.LoIE}v41*Woԑ(No /hf{dϣycF]rYȾ>mΪrybsc[DGQvQzJ=_5=0p/3T~&"Ob[# 2 CvCouL}pPڡ3IA@뀝=6OD,8:_oÙ"3u.mk58MĈJ1?W9Hk# Ԃ$N43Ȉ#Rȏ)KxјbHOg)SE:k{\d%H~^԰+ҍ))tQܙy1"'utG-inIaB0CKh[aƛ;QHZ['n(kJK>׮ىU 侠{{U9RLPdףٕT*,}bh(+Ɋ>Fq}lڸ;QRݻD/E\ R*Ap&Y} 20hzĮ z Ř}]vR-gK;-x*rkH u]@v1\[H-Bh.C% Ƅfx\ur$rǗ.B;0&15Z36:,AQ|3!_JH 9ap"}S7 W#T[ut_%VrJԒaPwAyw8$&{TBsl<,csJ؃RUH9sڅ`%~6=;O$)\B+JӍ0K GԨe' Ӫ̣M$MU,c?޳#-tsDgq'a'$4vU:NJ{RO]x5Y U$y21X)7t)dTM6#_Ee60tiҐA5FΠ PW¦ ~y7)Q`?2|hv>relɡD^WDJ&MXXM  <Z{{Jdzj>@[w@C.0dB*z kl>lؽt h抵 Ŷn8V.αð-4mCk YN#VWg8m3DT׏:9}X7Ź|umZcOybH2]Tp︲lp%Oܯ[Ioj!&>z+˶Hg sYtd:duO-b&Ilp\1Sq$8n!5̝E79QWQ Ͱ :*2iH,^%7]=d ΈGr>'0-{CCugP:kS&gy%+珗 8IWּUA$sq ~}c!%tEyGojGGuks00*)6rwFA~~y35 \X=\gDnk'6[2L=s0ĨV~f5.O F59 䱍d%;ž:̦F˳QG'(YMc˾' 4f^.C\ `۞5&2 r~Php9;t3>JtgIl (hZ+r*ybbzI+h*X5CT6HQʵ)ʮz 3ά)zҘ\eR3Ҳ3xk”{QPy7h]Z7SI#N sQ6Wo:\NoJ8n͟=khcئNE -ek@m]~K`J9zYX6١JQPTڙ%=-ޔ4OrW. h<|4|Ny&@xХba' 24Ks@ψh^A<٦W_hS4>ZBHm뫬xG\0%%: u'o6ԩ~F~hJ?q*RN}(/J'߻LQi8bX6+ 32K=[B!%?6 ѿ+<ńxX8Au|  ߢ[/|4s\;3tNqQ7qY^&NykqAJ2bo'8Y(0#̦ ~E%6H‡mEAzlM }C1–D&%v$ވ͆ɞ `ȂXQx>@/q:@pv};s p9{CI$(!Z_,#OKeG)8^~8lNFʼnxVAP!o kċj* ̇p,?Ph ,071Y.& ky󹪄%"L@H@Կ_;T:YNhx[8uv" ͩU=1N/1@F>׏t,QbAW][ç D"Ӹ!)sgb-1 [׭2b+P)zy<"KA؍z1 -lAja7,I 6C/["u-M#mb*!֎7kSeBCe5I^~d@* DDۀ^1R㏬UBH>DN)*^B>$ņ'&F-}? KJIJ3ma.^Y%F nz7$$S{$ ;M.i+'p珳+xE-ZzBvor !. rf_AsS/<+,:uƦ,(M3trdg)x3@~HldzLWLjOL QNV1p n"o.G/{ml'^(ͻzb]vt5,qy5[E>PT=d{$>):8w8\s=w}r8Ь[Pg4+C#XujCG!p8ᐧnmP:ruKd rP}W: xz)U }VzDE')mGQj"M%l͙SXP(2dKnie5HyK"fT.ucRc֎+z|..P2!|A fyfEQHC:b\Ϫ Yx 7~3u//ePoSxҒeJ+G~ ꕂ 2 KI."pҊ8nT=N̊ULuD_5_8 bwn̆G.YRkxJ+(NBdھL2>ϱ3rf^Ql7ǮoPo P7{5 _*-cz[f0AJ׾ ok@J¨݌n= Q`~N K{WR-pǍG|]'Sdaq\OAUb/;4 [)xt!4n?*eٶ.RZp;)N\dR"|Ӿ9f~9'fJ3]K7_ 6vؙXmfrDӜ j[QiP2L28jyޝ{}L@&0eW-O2a# ZOob5MK/ hζ4 PEXձKw=S[Mxwعw2T 5C*0>eCX?+TWce޵@;) L``p3kx?kj[htdݖMoW=u(5^uq?#osJZ?.NޤlhgB7ݝBԚA0`*B.|T܀f";u ܋We\_UH؂qx* K ?M$2LICs@ȊH+7sR@Io iS-h%;WL}#mMEGn~)G"\Ŵ4FYN!o_ZܯmSc/L(k6#ܦDpcxנrBF $^ bɵ7AYP77~;A5T1 !8ThSneN^8<h7Hz 1CwX4~dP\@l8XbyY*>{|ʺӟ9jv+c4Q%Bh,v،P=8 (,V~?ҿ=yVauiWAO`dwO-葞p#\)F7#WY,;)>A.hQǛ`T cAZ j6\6뭹Ҳ-.;wQ~W{^94/3 G~Nuu#54@Ņ͗4C~2T͇Y z *EŘcXV;O yKBiкi%Lvd:DK!:OAg%ǾkKP.#Iη li,{wU/LK^fz-O@vbI5`YGva8G_տAD51r*9`6(\ƔPUb5SQJ+zRm0N܄ZB$!U؜0_Dj^fY] YZApxަ_c0ݙ<)Ӆy6JngOHs}{Z/1YS2PyRaf0axfV.dWSh>xZ`G .E7m\4m[ +[(|# $Eml>@o}̄ 5Dx@2 ?5x*$0wMשOAA'~ ~L\yP#V G}#{Ыqel_Ojyrm[0-I iX &ch._U1My-rh 9 uIQ>W̕/wPax &mCs[CWZ-$OvZh%"9a3EЃ5|X󾽴Y%?[flk/w~JUqXv9jOV<.xi,GoAF%j># wbn7ggL9Ib8G?RF'ȜL*UԵnэNVX)-:y~Ev۞K̞L’,/N}:{b0P3u6dJ:xlk62elê='u>a9G"C~9sMQdH[΢g33]}U}zciayU`NR6WrXJ%(o4,y_q;S,vS- }9E @>`?k*tE!%~Z ]00q.$7HਥЄ-ǑieaO, f UP='GkhIj]sNDlu^S`!kH {_B1գo<=|DV4K6)G*\=zp0{-8-RPUBvɏuL)4?T Uտ=mժI}3+^,/pz2ƞ<`'bjٷbև}3,`" *)YXK=(ʉA;9KeM]T@}EB5xLHםw'% c~omg&߯: 1S;@v&ʃW5$ oǷCᘕHЃi";ceb%y.-;ʫ5~%NoD@c8| 0pM?DzO% &s%Ciogd|p1W\-5(J*CYm@2˫2{qbr} >58۲L˿ 05']Hy9LT qr"(AEVhg.a(+i׿I0)DOE2npﰗ+t> \?BM`ڄ*E LX%io k%0!>d݆fWR*8ګM󥫘pNjW#T>} ^uHgсlVuACsHja8ZɁi_`>,[W{S%KM]X^M8\^E=8F, P1@3C:/(F̥3l'aݐ嗻sS ;| R, /%|]!PֈـRˊnAF+$p wPN0@~)HR jy"-%MN$c?/%k\<&FKR_DXHg…4ZjI2D1A{l*w1Ю },nrlSi4EC;or 1[(CRr ܧe bC [8g-7"O'9~GPQGexαB3>*v{Ex; w#*f\Eݵ8Haг cEqRD!؍u8$Khgx=OI v;hDpp7.}t!^motZI69QOdqֳn6%XGZ{j rLgE8v6~fhì_^7_{aPRBګ}T"ҷ h1 Z:W,}L*z=cavKS 2y`g)+g&%(ڸC/kV0XB0vN}q/d6QogԆ7Դ).<9iIzn/vXxҤZ> e'cTǍwSthpPlx՝97`A $5x]雂{A_[~R .$4=;XgMuiea|,oOתJ3#Lx'LCPQ "eUX49!oJwclA^Ll(Ћzy]io_ ##4OkU(Xloճi5b$fXVx&l-e"i$#a)1Xs\d^!XHm)V:RH6D5haܬ.@Ζ;';<׵H]FN @lY/õVs "߮x/Q"R+ rA ""1Wp{.m7aL^{RzK h(?UM W# kGŶ5 goUU͏(Hư'١9(ၤp;kU3 5TCV q\gK9oRctwXRzńY7y) !:ErZm E{-QH!0hP)ƌpQ8eί\ĵZb5:Dzzr AeT"O02i(p[_:$ԇ.hl!}eLAsN9ګLzl4+QSOR>+^_(l4Rn4,F'ՕE8Òi**!I\HnDn'`/A92 0}8?[&.^a϶7( )?{"Vp_0WWs镜V Xy|ʼ\7bEj;CCv Uu\xC :dQlH';nh~Mr(?"Q֏i. 0 k[>I8ݝtP+Z? ]g_lY]ҒqPK(}UEUONJ'{vb -y~fȩgŴɂZwT{bratlj;o0w0F6xLᥚ&u1̣b(硘&?6'njNt{e' qA̖)|u ˏVb+XRѼWBltw -X2)DABYn\QTGz܋OS8խsȼ(&0Ü+k% <03+l?%F7 j@9EOx(﫬;^ЉDCq P8ỹjq&Lґ]ޫ̿ID-J;\"J|cYHQ(CjPxc{(1g(v4Ve;_eP) ?IkѽUwKQdb2ss j@B6WL) ѭAC` q2uvD _JŢibCI4۫,҇;0`\lFxۉ,I3A<:Q,Z92Rܐ"fC UNƺ6_j:"&+$ 8+N z#2*{1c6 Cz" YW4Vzhf~9$UcAdӶ= PBx!JaD-ϳJJ|( du|eQ͖N=YèGE;N:yqRjh?NJAkJ6흩q`/dco:΅E eϺko" K.q)Ò DFί0qFnˍ$[ Ҡ8;M_y w%k[y9?9@\&۳)(|^pAK+V=ʺܘ,v9ă(::s͈` dD}<~Uꝵ[% F=/*qa >HR1>SΊ2d2ASƋ}ô|/ك;h?5W.dCMhב"_MT?@͸yT|ogO{ηQ~E(TmxPy:κka>D'6>Tæ&%~[\~„*6f&x8P(/`~s!q=EJX44%/`l׈ϙ?M1OJ2WiKqE:vl>nETU4Ю7[p d`,C-#yEHNvJH(]ݓI:--^sb Cíc$ǽЙf 6d;Үw6EIrO>lXsjhTBl …SOhOp`TiYrĈ/n,˲uE&1&ޝXrY߱"Zn?QMv@_:M/VX5!Ͼ+ NMK^Aw]**>oݝf4 ok2;6ЅΫaLEePAAm"QQӋg~g$kCU|X]p`6M "Ԫ8p%k<`T"?Tu|hCm~ qnjN)&#ey6j3"NK' @v\:p| :ͷ< L.\:֙I̟lJS+m3y)h {*uԾ(͘#JTC<}oϺ׮ :_ϔ|kdŞ2@rdNi;mDW]n@D L!? ad<#Fd<;,o4-Wv&\rfG ФoCAofsl=%wYw5f`dCa]j0;4p;^-fCsle[i)Tk) >G[Q MQk;pL#4 e|Ք" |t1UN̲ }C{@'C]t[ ҿt`gH&TRvs֋} ΃Lu:ч}4[;G2<џ8_BHZӘY$!Oru1#_L_[k@wfTwJD|!S{S2 -hʩ50eS:L{"cٯfLؔ7} 1Iw_evbgN J_A:bIXiN]yU SE/s RVjgQd)lkg }Ӡ/Y||q4<cmN%ՊgBO9˾HH,/[=̉ѹ]&e7 ~ǘ^ٚ˝&w0:Hs[D#WuG7-ՒWC]oޑ>r OodQ^0p;y;w"&7{:,5Mb5?r6-Sدh0z=$xQ&0d.Tc6\,`1/Hu1j|‘?I.9OձU`r ʲ(@1:Rcg8ҜRa{;K*q;z1A$>ucsO~( =ø'>/SnZSP:tHYϰ ڿP@✨[0g{HFc |'5vA֌%BQ򉒘,=Y3an]W!i+^ֹ;ꣻ;8]2{G}P,"at7``' =Au Hr1E5 kX4^YW2ڸ F4ШA[pcQA:|e̚SNRdOQ&ch]E8aX$Y~R/ʾ#jih0CU?yjb? =9͌1Tw+hV4TVAiœ_ܐ. GᇉQ(<Ł;<7-oPT &c~ڲowYE^h {YF n $ KX̬ҹ{ǡ 4@#+֮ |6,@b*5ʒEyK@Pւ/a<7>ei08aS2VV5M(-Iy}^rfM%FYC,"Yk1 ڼ透H_` FDo )y2&Wwqq1']  ,6e9pW97sOlc|QC\! G1#|2B?R:O.}'M_>}T}62) `qAn0>)Gݻ Qs2Do ,ј&!ܳ(2o:Bgc9W{k p42 0/"U?a>Si;whgzEDTob<-p_HsO]9Y\nZDM1uC_Ĵi(w|:uM""L4NXpo3- Y5g[ΫtIz`0˄JejWR[ƒR%٥=%.+٧46SCpt_XeI!nQ +z]7,R ) 'RtdnȚi93%.lD(>1N]XQֱ to`*Bh F6TDÇt30ݢ!Ol}%a1rtL? ];f!D`ۈEy^'V [l -,3o͑7˹ǣ>Dߪ5mƸt)%ͤRú+tPK0x(^rG#~v_TtWO^xuܗ!jٓt#LUHEL!v\ {,6zM+2 ycpzRƕ>pOQN;@SV{qU8P88xj?^lre$hCMdH 0 o֫S䰩Dt&o)x>\ZJН.&"0b~]5Ps K 08d&tCm "2&/[tE9c MDL{b:,B:ո7N(3|oUX Q+2Mؑgl/8eB:`+9(p&"ϝ\hsp;UH6\/+`'-٫ t] GYO 77s5WbDa*Y%3\T2Ǭ;v8ld]BV7gPH>M~>b-i"cJВ4k%p1Iڅ;e"1쩿Um=[|oe-h#Ӊ%Q+*`| >SɯTB^ BE6F(#KN-"^OT蹯.aQ_qt2OGK*a%]XZGcuhC9ֈOƙ% |ѲakϼT'0y78$t58'={HD$J;25iTd~ЌloiENq:YWM\e~cb1Ix@mnDZ stq1⋢+@EfjezCJy1㐉p {#i&~le+r#7>5M&Ͼmө,IUtx>Iob&8 8|O^:YO~I7 8٦ i34t wyܨ{|XDAP**ܲx.mF5aoW>@ D6;] !HwI(OŝgT$5Cz:"%y|?uk `O}Œ^e# znTJwK1?W>mEg*Y4 ^BVhP<(TbF)AzĻJz/yIS{r~@pѦ5@_86eRسospN8STУt9X5+3!hCZzCķw0OBD d5B6vA cr+$`lKRnj(<ߓ6 dx@H_T^rS܇} H-֐`6gʾC0_Y:/OfĎc->j/ދ,tCqu"D("D:pQ]`6J{K-Fp\~/i&RKf7 7G*&fO|S ll8چ= mcEDR[Ͷf^+[k.$3QV7mE $2T U,krH$@)8q#>h%.Rpd v' ڧO:)A+wpn[-YۙYkJoSɅĎs)UAEB(ܡWR hCE2/9iLr^@4mV+M:ܝ"`&@wL7ˆBXA]uB& a/f7!Z`\?F- (ؾQXp 䄇3D8{*}b4Q`_zPkJ\d1#6I`(iB9ĀO"8/:_q[ۮ|,H\_cX5ωbA~Yz =@Z/4zRk1ha∂.XuM7o535)vi´Slbu%lGsFdLHJlSNeFPC`mӝs`h{G;^.re/^ΉN7W5n<"Mui=4̬J:_Jc s0A4ԑĥ*KOUzԵH]c}ᗻ\|4kצAјG+do =x$zg\R|`S*X?r!EzOGL%;\XD@mwQ)`x+;cţD!M4] 9/݊4`)U<2pO/{6yJkwR)$FXƒ̦4ΥhOt#rkw4Pj:FadއzNXvM-'nFt7 *O*0R&"z7I35O3STৰS;`:2qDE ](h#l9In{yRIq^>F7.p(Lϗ< gG!ђ=_!U_lRL\JR\a(fɭ- Z~@)i0{t@51},!gf&H+_@5MyF亣KW?H-Z߇;y'|#A]Po«8 ׌;r9^&J 0wD OZI׊2vSuQJOS‘]ϐ9NH{ L=#~Y[}>vw}6>!KW`9w=m?-JD-<-ɱØ{P5_Jj1ޏ [~=5~HU2- DLjlrD!`Ј lzEJ` scbaﰍRkH/4 ̤3H -ڧA"-KNCSuq փ5Q7ŚC)3̥_P!Wg;}ѺAM37`.zG$'m4U&tM3s曁ࣹ TDlk \'0+Xb5L/2H*(wu|@INn]…XĪ/T ;jZ`{U|U_ b[6@3=?-~b4; _ʹ8iͰRe1i萴,C%Sq٥ŚKa@s}͹ V6G |E zc*PxQ +WJIWt T+fw8?P^8);7iErc-K 0`|ՏdC"S fHĠ:l7 [sL Kauo8y,#'*0&!U}6,gカ{ܢDonNK#rvqxNƈ ekF![.S%jk;Saܒ4n˥|4_`Rz"I0^dPCOO `ѵJORtUd1H;*S_Ӽ'_r$'nW~ygKגiv9~|sn&Er ^4J_ە"Lȩ#k9rj`BC}b 7&c(luj]S/ M3{)K&#&Ju %^&gH`Kr+Cj!K ͖Gw%*8>~npf=~f;`&/.}i҉^p9-hzDU0B۬tD~Eۅ,h[̀x zKpH÷;;rxMJ/:e_q{ h b1s@}?ԦӑC5DjD֞N84UҸL{uܿdOReQ2L*d~3V/YrӴKWA2ֽ;h?MȋqvYQTuQ/8> ;/yޭoc9aܧj(c^R+ǻXE{¸H@"~ p'd`w#_IO\-v,=6j9b*V܀+ \ɞr )7NXI5u ')ؖ]6t{5Be.o[ .<^N ~Cb].S,b h]7QsnO[K1Qϛ?N(2.gW)VvkQ hrO]^B1cuj?_&@iS w[^lb}54+՘ƛ.qe:І~Vˣ<#YERsrK_%4o]N=qac~ksx , Tp%}nNqq-m!݈/Wf@khl\Wq’0gژ+с oϮ=ma ;sKqPYaz&0<8"*\$mS;u'xOa41zrJzzuvtuBD}Zq(uFE7$/fXo|K'Q;Y[%hxlj%/*b[oT#Bc)HȐG3vThWި,ύU)SS5IK&nxr) <_ؤZ802QĎdkauov+~~/]N0Ő*ySF{ڥ;yZelT D|K!}q"7E iܽNMʦ y@j$'2hQt#g{="5ݢMM'Hؖ`YޱaE%`n>Pa,{3WRQ}~ y{נ\3Ԭ)b2G (d@>y`1ɣ>CC3>IH#oL#G8\kpLliwBv\vd'ilžy$q@A6[a(\vVMhͯOoؠXsL- iUi2^a6Q? 5joE_n OS%o7tًt^W֢:CBW}"(iw,,W?]/_Srx{N}Ev*1<8n XgnMbG#%nľ#3h$̀\Q`Zoa Q}'ͫCɳr  7cetPH*ziZ&Eڷlc4AW@#s㓪> ƍ*fί.ɯCJM'Ws%=U*ʮvw2 X66R%qYݘP<˚sӁ _6w KHUDKuHsnVb;jа9AGg\\ POU :/p H?z(MK‰ĉG`NF߰NpXBlU!{q :L2*po~EN~_|FvwyZ3<;gaC6^ ;zS/qd"&M~* v5T$뼞|9ˣgf/y_UXbj> D\dq5!xm⃌' fL;R :zF˜ xx`ٽSFME۰++T 0O>a Ÿ$k.0Ď"$cjxGEBjhV]jz` G-IY΃-I4)wq <&ܧ \;5s3֏o/q΃ؘ:mq,4 x5{أ̘kImT>PupLN0 )%J~2ES{.KOWMd-p;>}lvi61 ܅1!}o$M!ifxc׻d2>Fψ$8&"V]=KUH2+fu+˿kUQb%5cHUtKg6Aijh Dȟ*|@Y;nЄQӽ@AeQ.Qo1)lukGF-j w՟bKO +O}!jwU#0djNtvI{n@ !֔U֬.!FHEEUƥSk),LSf](tD(cCf^i42xD =58UfLXIB#)o:FɉD)V_ ihŀUqJizM>(cTÙKb߉%ҵ0oL qdM &FNS>>TTq)DVWƓb [Utɔ%-jKiՓx9-jz-&^.TӷyЪPw\<X7F{w~'U ^?Vmj {̐ im1}"IREw =wabTN%om;d)qÓA:#Aa#r1:y"5>{E !]|擮9)J$V`.b 9|^oN8ਧq7KFAݝo /҂E8esLΓRY)jIZ!19#>vMB'!Mb52»Y{6` +gR J|oC3GX4MEL䪨xj+]p%I7H\T7wɎIy԰0'ϝ7ͽ1_iPqT U`9 ;Bk@ ralFw7AX{e^c%*5YYXt=M_q!qlM(_'QGud`Z"l) 7NCĺ3_LpSMoTɓAfGL3lV?*(Jaݮ x}(qZ9*@upKxg0\b}wBBC+yc˒h#9L*m%*W5Q{&$6,_HMV.> \Qk׉`diybڼ6j~7.$Mދ}Efܼ - CF.( `}x`$3Y,9(#.tt|RKg3PxrIY0ox\ 쵘s B(n=LtlYU\n|)Ӡ2̓cY2a)ƌU2>#)8EuŚN›&Q㍋9Vː l5hE 6p3&\DA~ > X]D_x82)$Xli O6ӵ!v*+Ѱ&$~1B>RY BЎAn@`[Τ~m+FtOnO=Gfw幢6lˣ>7C-sls.'#?S2,ZL//脸wduiZd^u,NT9 q,g;l8_IOK{˭2fT~*ƇՍhAVŃlvUPج/.M}j(,|m2^v@Hah*9Vwe╹-EM_l>6@Eh]]$ u}MpHITf4ȎƒB V7-K#O43|tD A3saBV U~Ģ OL*ʥn8"mYm`Hn>7dkk(JNcpnQcZFse(Y 7hIEvd^{xGPX|^}:o=M䙌b<XK})#+e3)r exvpGľL$ΟNzʣUaIc"y*JdgN ]5_dSjSgm1r?!;N3CPY8^ Sauq!j*(> ˜fwlP2]O TϽ:dD$7B*sRj |9ѩA1 $xk_.s'QwSv5ȔNz8w4VkKfE!Cצ)+4𜩟پ0}nߚ)S9~JCRaZoDܦl? 6`'3OڨZBaN}'@QT룝3ǯc +q ?Dik06-ONUc%V0VY 0q|#ywUQc1bbp°+>Z}G7oPDKa_8KJehw4\Yj̙zMH_"6DËd $YILNa%JBA;^ϫA(bu9@mNe4lp[ÎVe{BR+Ґk kE⬬B6 @荷dl !/y@\x8TEG0"΢ o(o:J4NW,F"Ƶ 3gY^jݾt+T^A6*RdDcwf2yrTM8E6ASH =(Z oyƑ*Rg[ឧ;>Ihn{ÈD-өcie=uO~Kh"udɏ62iCXõ\ [%N, 2=#䬚z~SO'@ Hq1Q#`- 'byU]OL(۫k/ͥȡ(vk\#fP0~|4uAŚ$viVs<*]6Srڂ^q hU08b^$)<&t7>Kx5tr /G({єHofm0qz~<\ e#`l<}|(*Rt5n"@_ea^ xxa?uOL1ùzufQ&NA3 PבD8R+ u uŰポ3'WҴ륄"0E~vQB?"Dz0ݫڢ@-$84φwp60 .p ,KްS|Nf?+7>~W!?w?+n" KKUor@D{ sUPunEwzp $;$:Af:ٜn[%BP KW-}P]/.5,8QSC]BFU/tDz:Zzp#s9fZy][):_پGWUXV]|^LQHZˉ-5eɌ`eƓS ۟}s|)Gݷ9 _J`yjx&5jT09}r-`Oէt4+chxql 3}OD1ZzghUt%gA'`&@"xp@ fe@s{ %ʲ:*5@ ;į?c!A$<7%,CxL[KLx/P9D! ='4 "Kmc[-IŞG:4߀m_ʒԽQ8DA8̀휛Ö_C`!ڄԆ =5G{_.8iGmWxPgQ8&_C9Av|ct?2Ky*da ?ksN­=đI鶐Q̿hՂ=¹0?]%fuD\Gp3 ]!&!Mh/߂M!f:jc4l{O<5a rVhTvٶ{51&CsRe4r?P_brƑT.@@y⡆) FpH/pW\llh=uȡJV Џ5WpZUɖ5h]ǫ *Ab-KVf ey@~X2Ix4\ظ4cac wm @TFÞW25ѥWA3yg aZVfݎ  "Ӝ8`$Ys7& I..ȜxD{8F*.c-uXS v}ƸDbļtzt$ENw頜4x5Pq e׭.\ye`*=HEaLpw)ns!G! 1#>ɜ}L$3"DLbaCۯRuApe0I;`/F((c͇$䈈Z/)Q$Tkh Vur#ic&ĵN>/43bG>xXȈFv3%dqtU9(g˳q|c?*V+,% 'Dlmw#Jݖ"ju%O\6p xEaL ZЯUO2n7[ÅQ?<Ϥj.EXbZ0Ӄ\5NȪAkmlc]Hԙ68P.D]+3 +c>:w"Z˶S S hUϋnCaFSvF !-ijè$Zb˰Iu݁۟gHyE tJ_h*hFz1Ln"1YdFTmtyac/fڗ;׾L:SU}]`i5cWhx|!(`Ui@6p9QVm[ḏe>@8H65%_r)EK7Xhz/"1Of"E 'tgMzwXrYK1)*io|e`qѼ8S;!YZȍ>O,vL9am]*ˎX9jHQ%gsB1O@G,{076Vo=Fй-] 9+ ;\)wLN0qIMd Es)NqlR6ʲ+'<_esWA3ZEy5.4S\~oM0&~PjĐ(VN:^Vv1XM Nm>cI_WF5*Rs4RZ4 #s`(Oi-smbYJhaY{9v2|+hxjyhSwP؟g/op*}tE$@#Az4x"Xd$2ר^ C3f"~٫!h$3 Ȧ_@3g,aI %ogBKFG>n g.s4,*{^GYks*<3tsvH4=dSSj^(gX2b \ 2-yה~*ټ34?ֱşʟ V%?n)bWk Whԏ]JS-O7 3h[JKq90ҷ cp^+ hAvD6ڭI6fu)гVUJ?H"}X2Z!]UtP`٭~Z8Zk%|۾9J_\C+MwyB(pBceHjD@+A5_|ˆ0;z-(*l'2+#S- =%ݛqP6eyT@|HP 1< ~nR"c|DZCfzW-kU:kCui4*ץdE&We/Ɵu^~|BZ'wh |P`\ MfH(kj-z ) YzM6)o?J`9IR( X+/ӪE͗C#HERl!Df,#1x%N fg)εbqd$16 `~ns9c ;p>MjyJ]qs"P{ĿƆˈ|&]}M+ߒCY4"[)ɺ;-b7LsՖ')Oڙ>GY%&9Zu+FĿ螙 r 5Ht ·"7g[ǞZ/it1jkbJÖsjUX`R\!|vg6 Mo/W U&9>7S 374 C5-u BUiw>"oEyӬqmyf)~%sZ)WsU&՘aJUfYkZ'=5^1F{}w; SӽY(oiXmoXeY)PgRnU|xWt" 6٢| kbf}7u<ӯddv z" 'l_B71nkCY2Pm< ]NV.0XXӵ =bU}[hg=J&1sY'hZCx|f O\NVZBtʚiߤK-f.ryJɹ4z>N iF9S.eKydOa6k(Z OsR ~%5mo_OgHblD_$I5J TzP]՜ODVpکmpIr!e\=G)G64ĬkSb3h K=LP>bqMx{@;9!)Snzr s0OuC'>_h)7S1e t0`F6'u?o.,9G-O% dKx|$g!f&({Q4Ujt`&hY aw0vF)w܂8v+BEBɷ#4mꩆڦ: u/< ȅWuuɫ^OK\df9 Ų3IiwΎ.>]T>6@a݋4;ոgW6CW>JQclcZ"cNAwG ͢nm;SZ4T=Ejgi*pe_Q[af ;۰ԖY97dQѳNH>3D4V%WrE3wr 1nx&ORpKT 7U8 RL=;m=D9HGe9ASߦf5Up\{B9Ի^6)Q_o=R&9Bu~HLrC&|>X  p+TƑ'Ҝﲷl ܓ!V|ѐw\X p@s=2Mt7t"OG;h rWݨDM=Lރ₰$ebQhhˊCrq>_8xGʵv`svwgת؁+z ~JHa /F xSz9qg"Dv& ?GI>D&3r#'i-̟u }{(*s0 8bA[6kUa2@0mFsK}5+a`3*/Ch>?*y+i%)/%.i-DTkًxo0rA@`ٿT;!jɻ HȮvg׳W[p:-KҼrSh.6_ފz۴/vi$tfm!\|UK,g"%?'ԑsyc#~ Q)sY j̡6>'j BˊB6Qr *-j{MdA\G%[3r)QTqʫl+#abF @+dϺ9FMe )hp'|9]倆o1 0zTu!u<4*#u$1tovR0V?hO<47S`n^:GTULF?zz`0[Z@яZF L@xkbdSk #x]ՀHFuJHb*Bavmd>AepV.>\i(wnȇ2fE(LƘ`b;W^OlJi~[M PxҪ_Ht:}bGA)yM]J8$JM>7{RUMZʞSQG{7S+8}Nl1r/P*`J70,D9ÏAJ%cus*ogXlAf.>^R3~ww9x!c9 bUy5 ڷA"ߎOl[z>7TϪŮNt,}E멁 Bg&zñԁFEj~z-D,AJ8©*ֆ--z1  Eم %rk 1B -߱JĒUw,pMU Y[[]wJ7&&5'KtmMlQГxV4875?vJsؽ<ܹ:ۇ"l3|} 3^)؅xf'J|xnO_RT ||S |shA2CsɾCv$hi ̫{a ϥ`t-Dl!m4jћ/>Ev76UF\x7M T"d=6|+oI?E*/&T{ pZ>"}i][k;TcOx@`pFKcz̷REBm/g h5:؂ͨ5q)CRH/8Zil՟қflaL*u0D\#4ſ o @8&tơ*_X1gFzLz9[?aCKlƅ_GjƝ qWrSk\quU(^RRW@ ^+Ku`ѧ G2d4o|e9N_$H zxI&fؙa,[x52 dt$FZU`V8znc۶6rWzb X:@HCW g9 w<#I|xL_|l>IXfKLQZ.O~FǼ7 ϟҊX3>yzOIV-Z?ۑR Fc0QFM]T_Pc,k>ll8_KqǣdXn1V&bM :e ~ B$>Wh⋔ :fSbVli h`'h]>o8/½ 6dISҩ"N QYENl3--#K' j?fQ5_Q?L?FQd(6֐elZ+<CY8,4KR1i Vװ+D]hXzkI5Pls&z\uam* B;D,GA\F¶;-ҠP!YFoq}E8=W8hЮE&VĵV*wBSAwqŘs"AQXIS/W@oMqFeg"y)Zzf3ѲpzQ@@8^a&a/eMmZq}\=!2NwUTSeZFPnJ[[H,lلQ,urE;L2s Z%CZJ1b4Ve9˞l٥[uRWUu tkŸ?f+4SG\oV]׻o| 0^6SVoBV4BiEWJ㘾hSDza>뾣vHa{K۽Dʉn,)Qvrf&|:p$dMss6천"Fw-0>. :2q1Ճ$~N"vo3'o( P*^P8U}kǃ-EX(ZFқ+>*v>2&)hҔM'Ti@i-Ai FAI=i4G*FUo@3bu^TSAF[;:ѡ[`ܫ">r?Jg^4V ̾EzYt桍#O}=`w..80ISnAI$G6drk:Iڟ5!_c=SlmSBjAw9^q3# TZ3qQQ򶱯8J)3&j9'=V+!|حҤrQ;J ,H_P0;x>+?&|L>8,jW҅V~2 "~ *Pdλ!*qـw_,V&30^Kh8.zIfE"z zl B׈Уw؛"QnU}? v|#N[paeJтy;IF3 ];4DPmfЭr]W Üն6K e`fYx>jΆ'2@3vv*fmvc8@ / JOlv{mT"O;%G9|6v Eaq"q0FcuN lxCĠ!`T_r9:}ofafl~a4H[bOCEIzC'B%q{Kč < Wi.wRw>h:!+t| Tt1l]WsLz)-@x{ohF&jt{-O h^jZFsáX=?nJ=G {mR^z=*2;egyooňDya !IE9`R9EOǫ!U6Ti\1ߚ9 )vosSDߍw>'(h[fBy`7̊78Hߤj@_-S[# !FF]!Wd.D>!f7긶/.&3ZWmk`Ǔ*i%SX+h$r4XPW'#p!&_m9 DRsf`fVmGPB Ư6r]u׼BЎx?zDn uR| oHvM+חE.,1XӋJgu[૤ ے#&y]AXdIA/TN‰YX R?j55OWCF+g!ѧy㑵DSY~ݕ v My5V.笘؈,*w[=z030iS^Zg~q>phD,"m ,dQp#">>̂FE[tef+3O2FWEYaB˄x}Y6L}8{L1=(K˵FhϘdY>|/a ą*؃# hZ7WdQСk's716_ G>3c0E4>( F3<e˖Ć[Iuk]F~Uvk=@ MwH 9dW-wxDA&–͠X@U~ . 3e˟}ji \uϢRen`JQM :R8boz2z޻۳~E(F?-KD6;~n _\/7MڀoF\ rTB:aе>!*@J"*}yh|X.h3Z s l̓) %RvNāxCٕ`?ڒ@xQ]\ N8滻CiF-UtVR {!7͑Z *NN6((tn2R[҂ TE7b%/ol aWJ}g$.Կ\5WC%+ɓSl`0t<`}_H_gSjfVߤZ,eK%QY'@eiWfaaKmh<Ѓ;@<Ϡˁ.׽I}RU4 Cqz0~O=n<<dńti|޹*B *ht@ٛmx9?RMQr)DBiEJ#D˚,6D%Z R n};m+ #:j#&2\Tպ3|v'}qx~ G`=+eTwV[wudJ6s>Ȓӷ+xl~?38 Eoo`NX#=1|,~eƫц/Gִ+~l6TėL :X?;%kFa$okHrW »-.MTz|ͣOR )Dl ~-jM*}+~&Or܋GbfvqE6u[7 ͶY9.ngSɉhynshcS=h2!S|w["4`}/u,Q!㿚9B^f o6lb?*6اG+h;$D0uڶ&\i1»CwV9GhfC3IL0B*@-An7=SsJƗzEDiS- 0䮽)2FjK@A]}7/_~r@h?rnwPSF lH'e>. sU IC kG٣#n(QxUE} yHt>p;B=O"veI>V$Q>xP;TXHz~O [5;/@"+D" P;y="w*x@jNi&ֵxgAaנҾŖ! w'V#wm C %1Ziҿ4ye>=hvз1N[8u nPOPZ 1v '~ѾƁjLiL>k;3Zv'64'yYa,N+>b1[/]:þ?Ԉ1LDbl`ryd=IpMehV׺$ vnJ&K !6>W%ʼn^#W?dG ;](KW=47ÌkZ恘\Kz}χ܏3\{.lQ#vm[]lD*Yy+ǠSŎomk\aq[[~Yz˂u)-ip|L^q"Oy*գiӯafBC?f$ ۢetEv"W'1 PL/E?K)=)'ϡ&yT\⳱ޝp+޽{-0LTRiB,\xhu0)iū&RycuLMurǼ3[U>&dZCeYHU2pv$' +@/KtQps{#05g4m%^wЯη*Mtj;UVASE0(A<67?]וWk2," +WyWe%L1/A=м%UkBzrV')b\Nꯐ3.8Y#!Fio@Kry"hF X&&Oo?HL6qaMӸ si&Rr7 1:7//nYGllƹ`Epne;*KL뉩4@S%8b_{q@,))THi z4]"}xoֳ9i' CUl8yleu ":2s⢺a"Z?M˂/ڊ~9kFyCZwV9Wg bl#6ּU1y*`^ #y"P^NP,.N'7Bp+1CSbO7O%hYq;ƫᦜwle˼FĐ 8oGj0^aڀ[|^Lr,~NMwϭ K pip@ 1vtt!cú-M< 9ome.Aq5eDvk aωv5}a@vi_HvQ/wRH%wf'TErM' V({T(LDȇ- 0^z{s4`v/ Rq~~}#*b/6@$dߨsnѣ:e|e W"eMdhʹV4Ox7d#%t:PpË[|OF6'Ow椱us&36: 0&#%bԇv6d`;ejC#W0WhD!HVΖϢˋ%DWZCF1ŚR:qß(fe@~ xpjX\ކ>|쪟>TLTK5Ż~hf1^pnmӜk:7$ƛNM~q5'@M\֢4kl#c>[+C6ET : cA -iE|$pʅI@r,ȚC(l&]s Cd$Ny`4,&wgY6ԅK8\.rī.)=zɢ"ͣQsl1YNbF4rOb5=WdkUPGp E2wlIV#~Un(5X3X|X?\ǦG pz'= [y"%ZIڇ&Ld..4:A9ϤzťL(9 @zh\->gHLF vJp) ;%"m5Ffo鱾C%IrʡM'u׼9J[`* )s- #}] X/ʜn{2jr!޳H,KINS)B|4dMJ@<آ%01RinG~lQ1K#HO5 ]RdS𹑒X{ k!G`K-hx6֜q)XZ=]"T!x =9QyGl!pU2WO=r R¡G@+S4<%OJ6WÓ!_:#{q1 v'Z+׃3;7gzph͞ew o`AL ?"%Op6bCQH'^ *0:qr."viiQSPW)ѲcyeTRT\G2-"\RR `@a: ZAث;˲kY係޴on [`o͍÷S:`OKFAJ(e17*CdF$x$j۵a-4#$h[(eh4v$)a惂T֑AeCD^#B1Ƕ@>јނ<,ʅ~gEp蟾noWB+ CpYL<. `/\灮Ih7FfaL-TxiImoN\StxG7U{]iQЩU@ S=DKCX "]fݜ%k,_zuX(!ˮ Ƞ(״v'ť/ok`615ʥd)ĿI] >{>z/{QE+L9Ѥ6I[h_=!ȝF믒08协]T><$t')b~= dt})#_Q2*.@b:cKFV}oO"*ȣ mqLui2(߄VfR_pf>bK= ;?9f| !IZ27l39"e_oDJf9RHDH Ѱ^GFz<m=+]|it[*M]>܊%I ]c؟23DL}*sqp6_ 3[/&f|֝ $mX`AFjsw=L36xN>f&,1fC-nIIoSam|vNt˛-g:߈#]Tjȉ*'FsH1*,z9Dw?L@ֈPXԿ'λ\~Dy ?ggԉm_k[ M*8BP&3}['yau Y3y}N5<_ndؼk*͟}Zν\ʹTh'=wiyzB=X ti'|X2pGj -gop0ôktNˑ\iGݞ1Q_p_T2qCE1G_ιj(=.HNFvn~iQҌa[z6痈&GBi+B8m$O"^Dž%dX_ 5b"7* +4Ɖyq#vn~l ȅHK\&g O;;)iyr,Xu$qy7Q̸fpN(_840uQdDv>%jE:ktmciu?sx^ػҶ;ϥc.U,RࠅCߚ@Mx߸Q&Q42`>BI!*v3K6b;>8~p!lDj0^dDw@oT+@/\֖‰7(TNGt hDž f~AN{[UQF%jv^υizxw頣<$ D8&.ẉqWq ic.]PsoY4bFv5vj_Xzz%o1EY¦~Aĝ PTM_ֆxЩp`i5^eXxk~>XȜuy>e|vVL_{%4zhCEi HyHb9>b;%Ϣ'B{_W҇RRli@\H#n"+>ߓw}J'#9#{0YP 33ШCLTYު4]ҖʀSBpA;6D?gvSG!)WtIR7%'p1?:֦^핢^u끅$zt& Aə.YԵBpFVW-JZ(JcC:BCUl02;]柄EiF^Q20 шʨTqHC[ -= VEmb.a;}w=бգ/5)k;qoHF]O.PP"0LwR|/lf8K%#p#YX(+U >]$jƖ+HE\JZwym]MCsn%ͩ`T /1j +PyWnr*[@a:CX\j<^}x:: v܌ ܴ]6+x3c[~lI3o-{gmյ3KS223w43?ZMv5@珇{nI„W0޽ F 5˄.=HXђҋ `:% :x5oG(HSq0$+\Z÷d~ns_QkG6㗾>}XH-Rc!h*&3z=2Exl ޭ)z7YL]0kSXeU(K{#- <+:YtKib:`Tak'4 S/亘j7yQ+ N~Ę +u k6͸H9}jm M6~i_]$la@'E}~SR`]lAUWt7}բXٙ_[)OBژ&ĘČw^,`V_X/bݍaxaAUNsX>#:l$G>i]&᝺S|ߔ+$mV-xJ*k)>eMPB2·1N@ڧlߝoݔ*Ⱦ3·a2+B"v䉗\4E^%ݗ˱\RGWۂEqMvZg^ ^ ^ wɣhӂV5k8e|L=ϓu}8 t.{J}e(g܇-$p槬~n, vs#ZС `0k-r&kD/A r+g42ly^,hW8}Lu55_s#wX צ;ldJ1U@K5 cmǔ/#} [rڇ4+fDqPSC:@S g7xM;g,1iI/џWM`a#fyа&(E(T"^𞤒V- f!FMP W]It⑛/fom8&f+'Ԏ5F)0<DWˍ!]ђ[C5s+Fx٪3V]<݊8 )خ7Lx{%%q41FUu7vʺ@ ?Y0,5K .(g{v;U2?\A)S9]?̑1ѭ 9vĿPd>}ګLbB4m,9jti`rTݙ[u_#%4?ϑ~>3߽atrK<lq)BRȬմE`;yCǂ4t#_"'FM4gd;GIL 5_Jj3az1N5ǃfcR0_1w4Ů#iGO5Zo$1Qt{k < U=1g gaMjh\`\V7qo_B+͈LHU zbBN iLA~i}qx6mfBUaU8K*n7Fͻ`xkL]?3ת(QI H2[J3~uNᱭ}! Kkz|'#[˯:DCFRKDMyeL'[%; hߤG|hAJmq:Z~̠=7 `h"4t2Otw,y!Utp:L{P.S~HnLjIYZy<@U烸6 Pa- p:bР'QI2v`O1%AnLj;W>}^Vf6"6kQpDW7;Gm|yMXQӣ>ܹ c|llUZok+-{?w) 2Cw!ܨ= > o\"~cKJAxȍɬJLl~`st&] d%Iϓ'VǞO2ӛoO|$^)>jpO f}Wmu(Mx#3q.:K؟/ 턪)fтU9m-fVask7t4>Bf¼WK9},w&i͑Μ]Dq5Vb^ˋAoqW"jy?S_fYaS<~?0>pJْ1 GN}{5H160ٝ]k \Qž!zb7_%ڤ={l_#TuȦ`@ҫ[P55Bdr\o7`_怩@ ^ &$ ) JXs7Z!|I8ςڟ3m@[.eN[޹~@u},5Zd{AWOQY E{ѥ;uYES^N&:)ްKW x6Z1ЊdWEĴ{T #Xvqv9wԸM_[6(_"Ay!'{Boqk>?AfH/='Bi1{FZ 1|6I/2Ok7k4U>%"Ts7KaRE]4׋aq_r=F!݃U,3 [75]# S'`Y|fXA˭ 4pUΒt?/[5~aqnVe?CҝTl,Ů71| iT[I۰}BN[7cvѡo8{zu 6HQ(rŲǦ$őr.7tL}tzy1"h60[9@$t,l -P=w9qjT|N7ARz?` b42~Zӝh >FU[y#iwAt?\uW WKМQ^j ojԫJUəseש8XW(aXX l`N0MP͛R`CӶ~Dw ͤNts;KQUqg\}OOdCPaTR#sIsDoˊ"r#.oEQ'>T6î tvWifyu4;X|:͏,,Y?kn"g|y!& fBt̖b]U*jxeM{ƄʔyN] ي|PYmpj&*Y];$ %VshGÎe [>="Qoͫ"_Gm53v+Ryr'5*G[qR{ٴ&B24n1ľK[S殆#)S;s8xOw )ڧlmI6!D|= " [d7 Y+Eo.ؤk ]XTy ИDo(LaFbs}٬qƫC^xGxHZ$YIAęzcnJkt'LF^qE>6ꛇ:M 1zR]6M*̻ V2NO0Mý0g_ ɇG`{xی܆"l .R zI9 4c?ڨ Ei Ay1 w k+e4䅜u':Uab X>wn=؛h l7U=L R`}1$aj{V 5v4Xi(8l;KR.HtJ}2r _3P9jrl[gaekl:VVӍ' QS)BϨW!΃7zn+{ 8wC̪o}tnapGudv&1@V n4?zB(ߗ|d#. dxM 3z I H!D#-;o|}*>h2?fz jS_c6?:|@L EUGx.'  r[t+f= 2Kx_5ӮɩdzΙw`c0ױ zN^Zn۷1\xgD>bz ˜FPLGȉњ h=qfe?Hnzp :V_f-B*Ļ!.jBwc%R Sl]փM P0|GZOYFE-UPI3m#3>Wh{3l(8nV_Amtt!=Pͺ:*h:F @5Iu) ͠5ZvHIsGjwۤ\(vW2oF{J_Eà9=sA05HcrAx8wbMȫ}E)k=R?+4Ts* aWճcȟM T/N38z +haT$zwSh_A:`g%B{^]jA`Xye=b=|ne۷.Bc)Wkj32]R*;ba{cec^a8MDnNHYɚsWP^% YZ֡~K|1K]-ؘS`z[;gtR[FѢ}zU 7?:D/#Sf&Rx`SITj+yPJ1ĝ(?j%JVLtD }%$p``RmItEiyix~H^}m[ଐ|@{pFV&#V"Ars[۬JE[x*SbugVb^v P\ x>r˲j>&5ڼwԪN+mew f#(˴Nubj93).b9mti2J}).>LaW_ތ>GXfԣYQ8^ lCWKDфa;ds`1n)ny%yPg-?Qk<'wQea9?-.jNEWWICE 7X.%F{۷b; m[:+cyQ ZѨOY|HuMJT:m' <t@N{;?j(War!O&lѐy!x6k?u{ֈeg\8m\W܃ۢVvΠpQOoe b_ sUcfǬ-Qd*sy [h\^ȟd[(C.X &( Se[:|x^ȓɴgBۜHԜG?[_M wˋNj9X0' GR "a^jiǗެcg40`őbU8}sG/Bj?(>tVO&Weiy7`U%`P 2PSE%/'/6 b&ELq"^"!Rvx6ڍÂLv}CP)@NQ̴"x掃ՎlV׫IiU*Gh 32uǾ߭G) :$"dVt P:ԱԢ0>/y}K~ȰZG.4 S7ooIBy (f0Lm/v[Nߩ1hqۛcRoG2|u*sͻ0.y@E VWrgbU*DNRYqdjFO13׾eb T: O҇]b POù$-uP 1+fƆ)e^]"+B!^Df2KS1rϗLB|)-n爭O{یy]<4 7elG\y8ݹ;b~wٔŮ{-Ҩ^vM1P#2+@{jXb{k/z0{q%|I߿Lo?Z8J[5$yif{7[@ >{#&dA\H0d `.}bDLoRۚR!,yp[?f(rʥgƬ) C ;p5 z}1R 'go|(Y ޝ2p 8U\(,a[3E3^/<hpij:D s͠hCŗVU hB0y؛gc:Ir,0$ @4c#6'+6շ8Ykm;m> 1LSk2ݭlЃԑh3g& QBstvZT"4^{7n@[KΊz0+(7V=/[`w 95~ʹ (!P~q$; T*e-fzyPd!+3he9CY}!hM|q"#e%5dWԣ\3vYPg~Tlh n}vU\}&0pZS>s^e&6LB伺aOj, 9>G,ݶ'(N z`uD;훂 ݘrQ&_Dʓzq4%`IJ7XS0va! [-#fw'x*{S͙e:S|uap-7G ^PN{`/7%~R-u1&O*S8 ,m!BcS #&$& -3JNӾ(dv&4Y@$ŦΜ5ѯQ Š|DkALΕd 1V.a8Ry:n z9n bQφJX,w3g p2rV1@QGx> pT5@䪶SĆ$g-Mr:/Ǵ+d;bI&LD uxvJJrb@@V 56!QJ>Y/GK4mN}Q `d%7OH\w)VB| =:t>3S]niO4 aYޒЏbS/翣B֊0BtI\qrNطkǀ'4 8#iW sֈّkVQsk>v9h5nB-u>":OQzYTTgZ!ϻB6gc]-rwBXX䳻fbajm)upi(}iwLJ"'X hK~t&]\)N4*NN(?a>Fd%%A9p΃X[ Π&L ǖO%$IW YfQ~ &,@[Oi]ܑg|mCf92`s`] "9L#p8]$?*? @D+!gl>9ߒv~(GUYNw ^o <2WoC@jΗ"E6Z1 UDpݭ ]hJcLwRD$%qu K3eM:/r]N:rt5ciPݖЎÇ&g- QHPIc s:Í]q 7(!俿B4xümC`$ʣӡ/e|7G?Ӓ2Ge}#q..{D !JDVa[X(x頎|(FW[U*A~XEP):Kr35ٳ\6xd9bh̪lmpu%pݨpcd2擮ō+e4Y_pEaOzŗq,IY"8=CiN$BZ{{J P Sfd_A_&>_ڞ֣gGH(:1znk>lWc8KШZDS;i @>t󻈳iiEƥkb^rkDj9hkYW3 )Rjibu v%+V0M0prF+"Ǧ+~|OBb~#7}5d!XR7 "ӃKkQgԎ7`\ryNLD_tּKU˛8kmHY_.XRR B o,I.+=mo<qx \BGЎA2?rI"TCV)gG7ضqW;dSZQI#Q X:rSkcn@\w;>~"8f=fzǻ!Ц)V].."y=ΣJ8"]_z|/3,ݠGC㫦 (y.yvϘbGlW3(j8,zH-!Mxa)^_⡛[N~r.xN*F4(RwgK~M.9yI{j0Ȋj>E1Ld:f_ `'P6/BF?આ61Ci9o}F#z?R4u| 6(PEF^8>n/ 2JƩK;{ 6aFHYD=ɹ/ʤTX)Nuu,/J1T|v;~Bf&;KC8WNò2swk˸|xKQ*˂Ǿ7"FCģ(!Wƫ( ޅ[ &\8&ь0 nDܹ ذ=>]smvL N؍WfgN K;&ځ_ygbcP~+m}R1{Ah­QQ-IPx]8 YP`N } Zlir}YfT4Qx^Gӈgٽu??-ϸEVt5MѧUN1Όo^tdS{{F'@XOuq[lvnOEbrgg`\J҈-5oS3U(8:3 Kprk9'vzA# Ex'D2l{tjMP3hў%C߀Fo^7^_?|2 j40mdL=Z"vh6Nc^CіaqPs`. H8w1ljcaҀ/,:F`bĹU)?c :I6UƎ\#S6x dwe E=D/F(f2\"E's<2(HY=Ģ?\@@Q&<ܢM@拕 REy騢Vj6L>Wذfq&Uz{nQtLr Cp}"=cz"ʭ1Ogl@N}ENqc @J1 pjo^sσnA zOq9 [ az%Iݠ#~|Va}Ri.X2 YTc> ~Dbɟ9{%Os S?ކ7;o.^'Zp:u>*5CZl+M4uA\NѲXNu){_:v HJ6BAZ3#1S T=jAW`Rmq3^Zae"x/28ǚ~'TK؏!2Hg7k$'7-Ȼʧ!or(3ƐACy݉ Ad8hrVf"QX&789֋S"p5=wzfDd^ߩ. r@B'׎)"/D s2zu\ܳ`ht ¦!Ac_( }tfiCrYpHs|!3S0#+gcuՑ`a< !P A@<[LT VKI@S _n^AȓRe +]P)huh칀KT,McT }'.ќm-JO4#0{ҵۘ_ôgP#-fu﹋$o1;;9M3Tϼ߷,0ҮY)4~Ӣ!>mO 3 >)@ rev!Cl#q9ɢLM.K(2xB=$IsC:[l $S[(? \etl˲1kc7ltNԉ^zV=?%u/LN/ tw,AsX Jۼ! L7Y]8U,8ui&#_n," k;%?4 :Cwb;/tO} (u  / ; 2M ]@O#DU&sV>ǒO?|Ŧ!nKj=O% iq(M'^/{~$ Ʈa5|?4(c~e8TY%r;v_XB@/ U+ޝCfnsh$g׺NWsLe?FE~Mtv:.|Ϻ)j- @'$Y'^)rkC,7<^1 k9#&:jPߨQ37m7tеD LhztCB2$flbM? @F֯w%o;ł ݉fy12DXDq+-a@#tP=@h|D(jd{DLnxm 20qB&mT?&Yb՛9?39q uuϚ)=W^kpMv?bAvr׌@՛Xfw|"l_Y<R|,;߄\CDbzDJ]f˟0n2e\'2!*;k*7OHqpJ>thڟhMjI JV쁌I S >hlLˆ\@.B4鍷رSj 2$lb&/MBt>ҕb*|L( I9udREc k&gs _F@R\(tљֱפ:(L&,aCR)[D?wT eĥm@~I56b'.030D!/ e= OJw V$DPS>'8jPd54kC  E!ݎu8.pqDMy4K@+OGSa.8]m ^b˜U ܣ,gecE*ovr7J@)lӰR,jSHLuXxT9u-J~=n͐(ދ4-Pԡ BP4YkiCf'\6#^zWe U™k[)dؤ;+  exe`fpr֣^=uGM_%z/'WF!|]qŤޜ^"p D7} *z$Y[آIR,R{٘nt'P k>BmI^RHC<0$^\vjKnyZg9}%62?ÿn'ҥvYi)S/"jk%o7{`N QU ,+կFJq^:&OׇuK ~]Q#ĉ|Gƅ)#{1N?h9G[R:JSZm½W3IRsyfuF `_14ˇd7F= 0t#KF/k?"NWC>&ZsSΪi&j{q_MInL5Ji  t} >]~룾`-X(MqE̖0}yR~%e4gC+Tv>j);$#hb/t$ϻOuL!d1 ܻYӃAғYuCiu$yU}焈 Mk0Js9h^h.0ps_x#>E5} + *7}"/akv`}k8b+΍0W/DwW<\.0/17" aF%?5eIJN6%[k@[{1ԘWPQ:4KKt]yA)lzQ?Rə&W$qooO  GG 7O||yʎqkI#ajנ*̠!^dJƎQڮ8#:U*aIOgk燦m}Vj-Aaf-:st7Z4/;h]VϼςDIo TWcQ]S yBeoks#N:,5: ĕy\b3O θ~?n(١j@ I6Blr '-r蚎 * i?h=55M(o၁mb({og_& շ'%tb~qGvK-i|MRz !R^j΃ph'2 F? ~Y+qɸZ uL3㟡65L_lϢ,DQO6X0F`Prc/ /UK'jo? $'g m̰_PEJ*$:JXAqMToR KMTN<9qt Wx0;W{V -r o|leXN8l=ag5`Z3cQʁ*| I S˕\fYQ ~zhxYgBk.O n W60|`+.*yblkpr \ =M43~(Fc8.wߧϮ{ȫ\i}p(s| ( 8LeVXyz@s! 75-~6Q(ΩRt9RZqEH}B&0A0;1Kc-ismCQf"(e`2R88DEOiJy|#c" :l8¸eoܞubʮP6wO:- h; &0IXaχ:@dD X쵷9/]m<4FIGŎ-buki,osP&V;b,tmYE6l+;@vasJ ۲$bZ9Fs~_t%-wdn>;ZK$?º?A] hOQD*٤aٝeuUL";1tdpֈC}7KJl|BW_'xAy8wEc{$Cmo; @9B=-:t!/IN:G@Sxȭd"r<7 EHGD#~bZtT"x2mW0 wP#B| )DOO$geUef`L/0b}u!?Cbj/fj ģS!^&T.OI?'+vt"B!q&apd^oXSV-79cISY C;AvVd W~^ډ`Rz0r=W|  S7S> 9!%Ċ{8_{ʭۗ[۲h^(o=Ei A**}*gҀ- _@82##nWiE`|5#sN@e):U}'"G;X]Ga?]}L |?DĚ dq%wvSAYnjK~ˁ~O 1Xϲ$Y/WuĂӡOŻpy[-9rQpi9" %#bo[ 7/E OZ~v G\su+~?xiZ07 XY3Cn-6}EC =zDgb=>WHI-A\a0_ꯪA ?g#r$qe;ߎS'ǂǮo_XN\4yAx]!@]s5i/ Fj };J^Ztv&O+GT`"Tmq?i X{账!X|p ks\fXh,.?1i8((a!{)/.W\)Nߔ4daR "I\s`}Nja]s~ּ*Ikc udބP&T5\#qb9?"Mm uůO|g_4b.|F`uXlQDLaߵ ڞ JnEӇGq8w@*9N;pA_:gn*H+Z5d3H8rnb(eEʌ.W„|jX.@y_wEKC &m9apk­&a5&O.YdSB}97 F iS&Z1ޢdR~ـBD=h@P:'GLzQOZ+U)W]'pQ OK;[69Ԥ3bÒՔD}JrTa=7+Mp@s{:)&-a9Gu F>ڷR\4* [.FoT,/ LQ[2#ݻˈd~!g2\F9[c< T(:mkbuǢ& ˉ{!D\OHGU!#!xޟ0Zd+$rMM ӈ|3P ^9Cۂu=1w۟$:=\G]FI9/]; ><}vs<,t)1q<Ժ4Qv:ax&NVISE[wXY@<{->2Dqp.&d)/uFJKbڱqcu SXǙrQS]DK`sʦ0:sM ;JGCo:D=Y1 ti:٢؆^uQvM+'b}$myƚkc/=}t_`qG&3eyӋB2ܪus\$bv@܀i( Rutt@4 1z ZL "gKJ ]]v9#E5hء\LX"(4(I-$rǫYO!k2k@UX8I#A6 "d`i^.,'Q7U-ڽC63![ȅ8ehW1jA1ˡhwˬ?P* ӕ͹(Ӥa(l32X}H7ۘU2x aOlbvߋ orE[dCi+̪m(YRsJ2ALL!OyiUkb 2U+kT)<%kFVaXWGʕyT$V(a7r_O!DYA(C^B.@xl@jӰC/c( {Si%e[FϷQLV$YP&zEKl7:>'΢ 'K'םv\oѸz IS+ZPRkWy|GV; 6 s5BVkLP>6ՑvrQDۜt3ilካ)t5PZj4A"e.o1oXфHR,Uϼ9SqzW֟ G.n1/C 5(m6nvDCG HI܃HEp9ه/ t쎻eUZLkF<.weAT̴wVkIU'R0]%i0t߃eʆV/Z/QiGK?Ȕj%tsƴ>Kc\֭q he6; Sy_;5?h\w/,kſ^@&/r7Y@:$Hv|VmS٪ᩱS5 Z[+Sz/|eTSK }TGܴґԳցaYJ+?3S"Dm0͘f4vg,CBFGt GLY`A=$?y|~ [e .fc[# ̿Xm;7T[1I.>|+O޳5Ynq+ze"e>ˁu)+/k~UӾC}CZ6: g!hcQ\ 9#ոbU#]hA 1A{E}KIѰOUo+ P1ouh׈`-ystNY7:G #PZ/ZVKvۙHx"6a6N4s8v7so圍;fF́N0AzMZ$4HntƇ][C"uhUH ¦Dr2ԅS7Q#D7yq&Wvq1AUJ `|΀By+t퇯}\/rMR H]7^,H gQ-d VQЏAs79N,ʗJT]m7wj! 3[NEґ:{| 9.$8-+ʶbЮj|nT 1  7Ïyks­0o#rca9;Bl!Kptتcwh#Ct4A\%eiT&&ؗ؎quUN*,Y(2W8D F`K2c̥t+λ;{s\ӏ71gXڒM4t% ~p3hʠ7ג9ʬı8#/sXm7-+`2}mڼ+|%R>Ƃ+0!\SܗX&AB.óݜU$g~'m$lC\slޖ;6L͔9t'ΡuN K_Efk|76"Zp,)4E 9 j@'%7ތ5?7FM9K!߆0X,sCT&+b=ݲ?wyدGihHкcìS#}㨮Yn)4Kydk^K16x֜ӡdbdž[TF9܍rnp??x΂%؞8e|ՠitd=(*_^kӐ);V3![VkJ 簾Y!"ӆMٛogfY7^}zDqtTٚtxi$/[2̬/ʼ:$i>vn0f|49d{Ek evz 1Zn&ƱfL]ya[ohވz2 EKO\X模%yľ?&kpT h%JAу8XUA dׇ# tc|q f$%Jr}pj]p>%e~Q!;lT;׈ mgzb;?#4sUВMkKi}{6ҖpJhkh|r2<fΟSA8? 5h֦&zn~nXŢw0~m@7Ia*BW=|:#5UR&87}m |FIɕ#E3-Њ9 cW=6˚HDЍ>|#ۿ_{7MMyqs}U{~l؞^wљ~n+jxrt p@oϰzvIT#WyCp7zhPa[L[ 2si#Gج9/oWfc1> riA3Ŭ}L8M[@ `/vQPhU'bFønn ֛VQN:#nH  uj7w䧥].#j2$ڿ Q41T`h|$PP"GYalD \ŀw8]sUj1tձ#ͧ|8 guIe~~Teci'`je{^6M2~ DGtD!nAEwHkV1![FkXW M7f[d~l֏E-s{./^d{?|*-k쳲?#; "t%^5Int₆1 !ZpG2֗%. |>xY4)hYg0`/g@B @s% 3&J4bC܆Ѿu@.2g:YoIe>gjtUϸ`9\m$1u}CgfzuPvcGk[AxƐ́(ɀKVk{4ͅձbZq6["ZYsh¤AW5*<|y`9ٺqк@您 >>$vIlsݔ"'/6I@6(s"\#F;76}W[w/yMΈkG4l\QQ>pCpc-F+ᱞcϒ}yli9\'0ߖEߴU䋱x;ɥ*y Ձ.@džLafB$ 5Q?:?ȱb]B=m~/ldGyxN++YM;_In0t<:I̟T$xY`nwm݅˟dHkGV)nNF{!CxÅm/I9 ޳0tu{#vSu|/3IL SU:G5C[n`6BA $$}.A 6QQj̤^(wt5zP_tڀK&H-F9Z>adp;(QɻOv{OEu :;I`nHuyeN؂MgͱIhs ѫ@p9NȆlo2 u5s6ԖV1 _[ϧ;ڲV1%Jk/"TݒAuUߢ)PrOǥ.OLo\d.҄^6,abw(#8ڠ/qN@s-b-"Z)?K.3Wqmn!3"vLfoT/ x_|v;-t-+>mA >g^zPy$أȻj[g슛S:3hXgvrxT ~38D(p]aNbR+ߟO8xP:^Z;v707vbThÜ'$iДtbǗkXbe*1q-g;l{=s>/Rvl kA?RKqLd~$ǝvrVd7uDvd5:2Ctf+롋ﭸǝX|Jq1{'%+ = AS>Zwg1:V\"&rK6lJ/9#jnI'IhAz&֊+_OG|bw5V=l:)}  y o2eX;JMn)_Bc²ItA f1-lO a`"8I%#ZdJj&Ye"%_OppL,>z^70؋](NJMj=RhHAf!(jGdP-[VNnsn}1Z Zwŭ~Y j, pK'Ջq9ԡersԞsu$}OmwA 65Nqh_̆d[H$ȼ[ |x_ldXyU /ߩB8$>$伣ݱ$mXNY,d?ٴɊ:+ulK֨7-5CEfHg^O\O_:An5 UVRh-QAuO[JF~tR*)+[Ǫ55E}_a)DB(r\-3o6Ux#TJ]0y2B[8S5e+7]X?AM9d%~|X9eN~QπcqKVM}&THRuDs~!3]} X-~)bY/BƠ۞zO~>\ lZGZ VqgHsn}'^ A8OŏE3BjKY[уPqi}Vå@+$P|F-LIl4yfɍ &l,,ΡIfJoS\:& ŮD'anySY_Jap27ҩËl۾(εIwSGao_*7. S割ޱikk~CvG?䥗Mʱ\(j f2^{oZ¿Y@o)&18Usq $mMn'>]cZi1:6Ӌ;6h$A_TydZKr엓Z7t_Ϳ5Aۨ >_&t7ɚ\v|U+ɏR-{ᛪĐ5rKmK?ΪRRYBQ&JTJ~OD.%aSR"}&R=n\ `U0GYZdbǴVΟ0^垸ɷbox8tTlltP^-l=ͅ)c3l 88ߡo;VU:rԞJ[0Cb<8qo@c W)bݘGwYєmG/,}xSk톴"̈́eK&= I?ؿ'o>qy ,Ks{Z<Ѻ ei 5jsՄM^)w&B4ބDTxݙk/&  Vyy᠟t`C-V_hGS]N"eo+^g2@N2VlD.s1D7{\p<(bE{Ї-Gdt_Q*Ȗ>D(,4#YI#D‚jL|zW0 UuT;;Ւ⌕t;Z$Eijnn%I)jֻOhOK#@Էq9} U|t]:J rוm2ls3ZXSAπt̂~n-a4+C4*N!.ܡ#&lx}9ܮɩɬڻjsΞw:'n^Csg;GB1NbXOf8LQyB_{!&t& R؋(~Ȕ aVەe]oT:f} oūqS |W1ކGHE|LSrve<a: y[J9ƽv#e#1uI|`9 UŐ6G<ɉfڽEkVJN,TB=<3%9D^_%R&.Wys͇ٴ p3aZr/K?,,Я%``w>OjfnHaqj);J\p 쬘slΪN[# u[ 2(͙sel nKnBOtC]ևԋH%,}*[%>m;$km?J˦k dc%`2ϙoyN[4ˣy 7U~[, $ovg}HWxIơlxj7q̯r3V)YS;XJ>#_C1 kgH\Y X̖Yw ?kgeQf\ֆ>?CWw [HO"6M37wcj\G"ȥ^Wf7j`̳Oxߘiwb #[}DDks“֫УVյIh"-_*h,\׻{Hk;m"ci4f_D:7cUtڒXfc۬Qy`ɸx уh*Me3{%χ亢`+59ŞGk/K4h"X.gGs8g?oj,uC7Iq96am;b57(c#$X߯TWlҊ6T/vuG7LJRH<"rc& ʓ70`>r'Ei b%^n-+JQ q>:NWKL1/O'~?qSiJS rŦI;^YsSQ@[3VT .JܔݠVo4rKp(_(ʞ_xA%΢TbsaeG$mnNcbV@IE/]J<c8ױ_;Kж[mq܌#U"[|)(IESiQ p; uC!%٣*asgWTf8 o:aLƯe'|Vt o@G60y{t\a Fu"{wv\g&\n@I >q'>]E`[,e.C~ʸD'&,[IWG]'+sB&MrǓMu-04m[N9B|8@z-$  {ѳoY %Ldx'yEi?eA 5gI@=M_.|+iT]CKL)lQ*WV^x 2} ӐK[apƲa9MVک qJ̆RdO?Tl>/wy( \TRADhR~_rs\{|lZ^>46EhKֻm%Xn t58tv nx|DA* Wa]BDK<`ғ4Iմ=tS|ryi횔@ /S&: 7οg$&h.[bl[ yj,Hml݆2t'.aR.S#1i^~ TPO§oO^D(qŢw:ÆnҤ<}!N&D^]cB,l~b ĢQݟIU +42 ,/R ̎6\ -l;^k6bm(Ab] s&ZW^Am1.,|Σy~2EP}~͝y6vAGRXiy8<孡öy1^L E8!v"®'=#uzMa A甠ns{aQ~נaqvx:ō"oLA y_"UL =J KeJ/xaFgUV1\*Caݩ x0*_-ami<8q,F`LBCzl.$(~e^$|G?m"/#j*}}]&JU->biK0Veג5ٖp~ d +`m2--kT8Ӆd"/`w9a3{= QۑIv{yuy1Ba6}}p,ΓD[\vJ'۰f<9)@C7x}S{S4-)j>L.NSEwzn'c!Y@{.NVHaZiD}FWE.Sv#(EmRugۿАZh##!znu8&\f 5>fڑC;G2?@g/Ĭԫ{0Q=ɩj1.ӱIp(=JUo 1v *76uDQ7 7m,47qքzش.֔UtLwT֒(a]2 qB%IDJD+ )nQmׄezjHZȔrφșol /'3 WUgq 7_HbkF&\wQ%~ ~n@4GXOv`*-VI˗hE[i] w/`Jm&xy"0TD2_5.M\IdHL =痤5EYA[??g48 Q<wra@\ҥr[} IČ[e,:oOfq G*ZFͅk {X(va3:${F&]y$M Mī^fI!1BO1_pw&f[m-FM\|˂PY^fur.g65>*KD?_{vzD*TrJտXfx4,cxNq!!bN+DJ8Ǧܦ-ꅜmmWq}Є5y5Ϫ ZvukOh`Y>[L_FòG uLFrO:r=7k3 Zӛ B<`4K=Kc-߹# cY%ܛ:WYgӞu|53l~:e{v OF5pZ5$&1Do۟} D~!ME۶cXhRM"?:'@1YU׌T'¿̡ U 15#+=h9za1}DLوXXTz65v!eϓ`9cf|.6s\Mfo?C~ h&O)7c6Lisdc @\EJҭ1QIθ|YR۔,E-&jz {E N׸sVg:@1'ۡWT:p'kyt7n-xf[{'@xY\$Ә+K{\#FKe g0vkK#qw̯U2^lʆ&$fb.MH̤;xS&d:A,t6UB5\#ÿHP"n)ze~-~Gu]XGn0LOYW4ԩq0}@S/q.wЛ 81[=%-~5E':CX;^Ť\\d˦#0,+" 1!?HUMŔRP%)!2XOs>'E!z!N!PܗR%qtW=DO_/Qw4ߟ߬<[-O7CysI$ў 7TnoD9XP%0`:n/80B;NA7c@d")}Q}7q>ORqQ>x]gΧxe>>Ńg=>Oiu$X• ?1iCQp;FUxz':]DGRݛ,e%!a-GF0R0 `fHX$ O8OV]TրuםV,V2(觿ʡw(KaENWxMWO9[Z!NmiΠwëZ.V8ucG\ 6v|a}1 F}(u FY-]!Il7a‘o*(׷ u1FeKh![gn{T3)[ɭgWC˝Yv'p?QksMT iaMTF$oɉHRbQ'QtV7ǗPЏ5 m︣ڳ%-_Qg$t,qrZ @$R敹g4 b1"LgTˊ6;<<.G,}Ss:FlfN|}oGJN\ V  2_>b~R#K[)3Tׄ%']2Vdȩh3v-tkB{L>M t<r!5Zqv:Rp"] "87w^%_`;d2)41òqsgEsѰC0D,Qe)N!EdG8l+ܴ7nu$P\@N*爞|qAx͠D ^ׅ]W&D{]q%.o<֯C+y IJ\qۭNʧ+zXauC)- t!Q''Xyu.靖+̐l#nX8A6yj(îg"WeV<]35,Ź;鋖Цa~J!8d7+% [1z6UZpsSKIkT֩[a"|bBo/sek7V8Rh-96gH93"T;dm*@ltO{qH$ [?+tT+D*& FLVXdm*LN'GMs]L H4x6m`w*Q]%SQ@{.uC$^ns1/QXHWW#P#jU35CV9CRC[2|o푚m(ۀ\4cnd4z \*շߔ+uirX)0 8H_p?&fhqfZ=C{>ԊEA3]gALNtL"ZiKlΌCHE!m{E 雳"B=Ngߒ)AM{N~93ptEhzW p"JL ~mCo%9K<|#⾉^;ϚA5Qe8fEf#"5aZ&D}aӂQL`1>8a=TD]-R9-ah[4j$9IGepEi?ߢἦĨ!MmKV5Sn*feFu9lS2XZ`B(ueu1ź"p j+ 2u3UƸh$U26P7ZcŞ-~S\ۅ$%ygP{}j3pƍ u?Ǹ[-eXF‘F]Q >YE ]@N},q\<0Mgո],qX'"b!`" /p=Ak!▗cALTVb>.3h54ht|$HCN0͉t gywJ 0A] Jɲ"a|U ȅ^6im;nYIS?Z\' Xj>c[tza/!]pk.; ZX?"W hw4 BtHS4ɂfQt ]w&M }*0IK/"~7 f,SNwW+i+}:S~r]W8,|)٫ϱd/TjxCTuw! JeN~s15_* /h;~?ˢKjZjD)R $= pN%RFYY9!(í25>4Y'V[*=b֍GGҧE!Vsxе;&.I[EDJ.b Ml&Y=LjXf΃ b <Э6_0jz\#6",AJ$#c۪Pᢪ(e0> RR Ī!v+W7S2^iPi`Fv*F'<;sW5)߆%\\@1]pAۻ!a΍%O '+8S#i8ϞRJ̾KlEH35Gx2N o_J#n`y_<20]:\]4w s4<ۋ4@uN`Ͽ@C낓$B/1gJ׆§4 ɣ/x(eX5jp9!60Ohȑd{uB{ct`wo:>ǪZ{+h|nTrh}}N1I:K%GiSWKWúKoOg3+R'뎒JyHUg5W?R'W w,_[L/mEԺM&.i\-KM]~r:~)jӦiȹA>`/WxG/km2Sa9Xgʕ'!hP0[ C(T. QqeO);9Ed scG2qP5#SC6ɣt7ȣ 8Im4q<dX}ϙ-2g|׈,`R8c7b<ȱfs׋?LcOQ:g`aR'(t>L9W$oc |fq>j'8a)Hܼ*tW `>(l0_?iYRC*r7w|Q zИS^Q}1AY&SY!".ɿ@_i^}﷽rouϾ|=u}}fkou:ϻ>۫{\ޮ}ۯ}>﻽|ϝg}ѯkOmGvےEme뽀wt},\OG9}^=pw]Rtu{w}w;=dҾ/۪sm^{ׁ{ovA}}wzv{OZݏ缻5wl̺Jw{6{}ϯ}V_w>hv+nӯ{{/w'w+{#ڧw}|};]޳u}w޽|﻾wFv{_{*[h{W}}G{>o]^u^{>yZo{ïvriݭn\齟}Vvom(j\}󷷣ݎ.|]}9W>z]ֽ֞;}@Imow|ۻ{V޽n^Iݻ믪}t(um-yUjڻ;﷟nznϺƍ}޻zp7}o}:Z{}souU%XqZ}wk5MhPq7a;mWmݾcݨZw_nu_G͵mhz݇mE\u4':U}碥Ʋ{Ͼ]S}8u@׵.}ݾsv⯰h[}(N= zuv=;Ww|dM=x=zu>wZ=}xp>}}ݾnsn{|no=Mo]{ay}TΫ6yxקmt{{s5݂j;yϵvƷ}_{wwiPDۧ\;u۽c>9_y=]v}0}AW.m5Uyo}sTu:w+wu1{m9պ˻9zW{};^)ovᄒ7ϣrڶoovہǭogv..wsW}׻{{nw׻_N۽jo=nw}o6Ͼ.m7>zG=zjw|w{>To}^}vkMW^7ZQ=.F=unݧn^{ח{;.N-n4gۡzh3ͱq'ط]=twe}7&}wzc^{N}׽-Kyo}}9ǭl:۪}uͽkۺwl4Ӷ{]e|ݵ׷J_oN}_M}VUu޾n}4;;vWw{{Ycou7˾Av/_vz4{wϻ'5=>W[mwv\zhUǺ}{:+} W$yo󜴽ϫ{_ov^Mwr}ޭ6ƝQe{}'}޾ﻇM{oXv;}=t>i^fwg{۷ פw[:ݾ{O;jfvgMǻY]@u۽-(﷎ǏǾ}og:nko{k3v㓯^ݶv(wٛoKy_moP}ofM>u}k}6SY:u7{ᄎ}۾)Чݾm}Vw{_w}YݺvR湺jw8Pv=WYwۥok֝0뭹w}oGwzom{ZW}צ_okwcM&^znW׵uc]}:n®dף{\w d{/kWwۯ/}Fm松{ξ!yN=Ͻ_w[]ݯ./ޯ9˽]o}[}ϻOF{wޟo}ײv[C=;w޷7{^w[{Ӫ1^fV{ӯ[W{_w}}{}_wwuo}-}{c﷮ַ}x]{7گm{^}:zwuy[}{os}ڭj>{Ͼ{ {צ7]u=ݽ}7ۛx}>ʏnowz{q{{}Ժ`von|}Ͼv^}mrѽק_x:}}i}{׾Ϧ\+G{wuUpoGw^>랸Vz+ݩwt}}އud= ۳ﻀyw;uovҺvdi }v]j}{׽sk]:o/O]sܶg} N}ltmkޛ|kjg}ίs_}oe}پm-}z{3n_wjl}oe^wWztcϾᄊoGy>s>轃o[ۧ}kFw}wӭt﷭+}>=Sw{}{[dϮnobw}W{z7>stln:74޶MW۞}>>ݾw}{_uyoon]k^wkݯv^P;*=۶Ϻ{뾻goQ;{{gׯϵڴ^ﷷ>Z7mx7]q^f5Su]g)Y[wz'wDz=>Gv׉]wӞ;;>N{zu׻_q}ϝ}aXVsS{{ކ>|{}}kon|Oz鹽n/7{g>̉׭]kxm>{Tzס,w{cӼ+vޮ Oٝ{{_Onw}pVe_^}joOyϽ_utmk8uV}}Z77uf>+:Vo{}޳{:U}{^e]}=>Ow|_MW/ug;#^9|{}{ﭖu3Mw &}-o|W;vv{RW:zm=m{ _nw=ýy*Ozu^Gn޽މW-l__}e}y>w_{Ϗz޾nݺ۳77Yh=gnov}}=_^=w_{>}tۗN뾼/{u}w>N]޾뽶zu{݇EuN{um>gk۾ޏBsO̜ܷ/>k^mカe n=}>}Z}>y/N|_}^VkݽwL޾g]o}.fn=:rsn{}&A}wo]WѧOϧ;ouzs\_mm[x㽍zM}U])}[f=o'֛wt(YcƝsm5_}{wmt糾^nƵzmFu]ƢM@ow﷽7^zWwﺷwؾs[]۬{o7aomW];=cw_y)nǽi׺Y6n>}q=>4c}{^s}nveݻ}u}>{yyf\syzt}g{[۶u޶_t{Sݎ.x}};>}|}{u윽NپQKց]%}@u'}k/}j>}M}}}^sMw}svf}Ͼm-:}ӯ}i''k޼Ӌ뾽sW;*c|_zg}=Zωu=]}Wocwm޾vw_}VywA|{s_[=hwwֽQy:R!wj}d -omپz9コZ"u:Iᄒw}k3n^zuӫﶻڮIuuw]ݮ6ro孽/Z=t= f׽w|/Ϟ}=w{_wl_^}ݷ^n}z{ww\Gwknۯ}ծg}w-|w}}}h޽uc׭{9on{v޹{|5}V}n}ﳾǷwozuo jv}OoVg@{}q7.Cm}֏}`{}kz}{kN{}Ւ}}wϧ;xC]{|Ww}_s'۲v}}f{y{uxuRwz{wnﮝ}9lϧ^NYoxvzk>{|}rno||{϶X;оzkt{rz8׭ZN;YoԬFn]ޛm]}ݚd5盻N}ﶽxw{޽uno^ٶn=Ͼ]}i}={^ηlgv {u=t}FxU۞_uۧ9mw_}n]ݻwgv轵vW{I>Ϯڷg{>]k7wO}{>}tywvzWZ{wuiOOmn\u뮷w}{{^W>|}_rc;;y]V۷,kl[ z{}/}}{wo}.ӻgo}=Pwݷ}owm={{뽍xtlwnsRh77;X^v^|^oUϾ|޲w޽tk뫺}vk۝k}}뮫MwXx:vw77ovwo.3wut|4辬r}{Az>a[{}of}|틭sX{;vv}uomەj}.>鷭{znuv{}׶w{yQounm觧[O\ڬ`muŭ#MˇUU{o` x0S@ F4C& 44@`10hAL)ਅO` &4h # $B2db hT CLFCA@!$@ $`@R 1N'pO+7yb*%$mfȐE SZyHc1}<N_Hl 9䢳l0dcz4k #| U RPѭO 5O\ kmcP<:ie7x9w }F2hIKKxAy|,ITL &B㠢[.ap]9WٙY d8{bWO|Jꯪz YfD0!z*eQ^_n(vq}x6s@3O9#l߶joViu& SxB3ួ['e*`y\T`6^w_ĎE|R3q~_vhL@Xj4"=$v{1K NmTpxT vDG9g! '֚̉^}4-Kخ =MicIOu)FE\i0 x2߂ysX ťt)&? -ވ_ǰuxD^ߺd@|B.do QB7mIA45*=io÷*|D=+@bSQ-?WqӵDZ_BV"Y _Ic6^Ty>w.eI6X&h R7tvHP8*nǶu֊)`C)81M h_͟l=)1O& v!e<>Q|~8EoCD@7#ԦeFh!4׌fc&d-svԆ=E0 oM4-b+ IW۟ Aw鮠hS -<}p(H&B sZs(\:\U O8lwTa"ǖaK ViU>|S=9&5AgHrd;-x/8EL!?ؘ#61J+_O bdvnh`e-uTuSy'CK QGVƤs =sLTÞi)=96ݗ⶘<=^d ܾT3̳ ,JXxWk/ufڛį0iDHq3Q:+A݀!N$C@o9%9=̔H`b}nJꈃ,>]W6D;tR_T[a%׈2~@M%tн N?չQN,S ʟGA<]D|@@˽(FnwѮ2s6֟|s2$J9f(Y_AtēviҏI>h&Np3P+љ?i44&0'Z4!jewBZӂ*3I1⊔њrH4$l(G"@"M!M>.xH1V*H=_Ջ=Efx|U7PQ~u.=#0(PN Q[ o'\ :O2Vuo} */(%q3 _i<>w Nn"ҮZBjϽ:/_\-{B,Jpo`lA20rXj K+zAepb4AQ/dn;/6,.uoJޔ9;_=1K0Ixl;kxNy[pֶcwa*„ czlɏ8Nj{Α0s?a._b$`TbA&Jr,%s_'Txx}C'@!-Xх|vjil ] j x|>JN7a p7ü˓H׍A|\ȢeFŞIi}3ц &vX䙼Mߔ(wՊg$juT瓆Pl"#J4[U$^p7%< gόҍ 髱/T#'u- @ ;5xdXzT" 9>5+$pJ~shYǮjR*NjQ?f9M;sIz(=%$= [mOth[faZآ5Cqo$ŷ ;U/bgh+%";PSɦ< "s(&ԧ"Nr]D*^H⮙cxTXŘm.s[ru|ḤUCpFӚg(/# cH-c0UE#5ןB:``(-Db.) *ݛ/=m9=ZCG8 Q4&[":fed4D~yx3ԈqnTij$rojT;eiP=q's.ؑ0cc"&G_\th/4v~?_|{0τV`Tc‹gZ, 9 wٶP(΅۾X}^X ;Ȕٽ,Cmӥ< %]Uu~ /^x=s)bwelj$̅EE5^[p '[dt{052?#{!&BA-ʧ3UDI>rެzcӷUcE:1yc訲lj?Bq88>} T(4x;/kJĖ&BUW_Z8ԆEr{D;ZeH~ GT @ Ѓ^('ԯ0: |['+& TqF+/A,LUwۚ*'&̨p"2U)d L% =DYCMy,1: xIHc =C}i{t)ݑҜ2VEfCuXU3G9I#\XhX&v &B;ͮNxFZR:LfNՒ .h: 24IFBCNYR{oΠ!zѴ{%m:D۟~0(A$5Ts\8(*w ,:p>V [IET d `ͼps]PmX,nVY<&}5Eo*IOx%e6Vraĥ8EfqMXd,!ރh;y0MGc}wD;h@FN}j~ bWͨ.D`ms kDn02CuѰCA;mRu!gf}>>/O|q` ,k F3Z2wRuطYk!@;jpMt9Rff8kjGQ5+ 5#o-k5۲k7 2'y{DrXіSgFxV*\LxpV߆U:ִu'umo /'ԆA t<г>6&t~61j"5]>߭Bru@^G&*I$Og8VDSko (d(|Ȯ_ y-]㌝2*9%=y+_|I5v>Ds]*vHK z`Ez?bj^7DK pQy35#L+ bDa:w)9ۏk<S{Tηuwfy *Ut`:$-N>vbX}vۛg`>T1Z'*t^ߋC&M10ڡy~\-=[];Bv7v\"lr@kp,,|x%s`[KC[h/kbij]^:Q}(ُ‭"yƍ8v 걋Ϳ,0~=~U"Ed]8!u5Qd:)Zc= aX C#]/u* lK@hMo)ѵj,ص sp^r]Ɠ6 g, EWrn/V& ,Bm( 8E{cEC Pa+< Vx8˾{2OjΣΩ3ahJơ>lh٧qPir][`%4i+ C&,I}_$t{ak/8`U 'Z6zǝZI`MMF?TzOHSF>LpZ G"K*X>Lŵ97>oÈ}|d?l1Ʃ! ^qm:Fe6D7LD^zpCyd12ԇz 1S4;͙\S8sDjA@@$}-sKE!fw- wb#XU M!ʺ\(u<J_;)A4AvӊIf4Cȗa@L{H(*,z>F!Y)*`ʽI{ T]Cd_ulj3tkĩ2Bwl ِRZnbmy~s `o=IP}m7PPI=!ՑND ̦uw -p?^sfQJ+05 ZVgz^!b ++9tx>*hLCۯh8^G#ycDnK9j^|ty;t|c] Jߐ,1 3JU0;$q^^,v8Beܲ_TpW{ISpcS`jyxur B'n#Od+ ̲/O+}5D?}:3UhGSsKz{G>͂e)rd/)s]>uqhSP؀nYQT*'&c քV9`|{nH{ej'!}/Rw R񁛨* ^'vq 01^A_h5iψ`TsK SŪ:}i|s &[ɬi81M)=TvIlNx)THfIۦ`<\}c)AR{(5_]i4i@RIuI ^R?jMkq1@p0|1+s&ot1lxLR%i`rDWm+'B~^/E4{*JD[֊3QBC 4._v#FLm .& !Rk-.VLnED:mSv|#Qp UH6W rƲ?C vj EֲȻ7ͩ )d_ ba%gRQaj$AE*#ȻlAi:hߑ`d`~/AlRɥ4y10!hQ5CY-vi(G㖜F_S#Xv0rs;۱kғL>jVl9jB2fQv:JzM7tWejUANuo!T \! P p"5˓P#g{Kpq$YT$Iη+^2!PKs*8+~jC2`f CBVNTE`KHnj/_`.3/2 sPk-6@[]0H4W~ +Nu2&yswƶr87G`Yۈ4]L!GTڋSW;'vdzd>-ŢȏE_g>޹E>'m2?`~4)d&|T)v41 _cty)n!ɔ|:V,Rkeɝ@ͣ$\-t/%ͯp&|Dݘ%|Vid9k@G-VırLӍ;*ID+V;1DCK,Tq{*ViHB#N|g?7L\X" k-WK?}_H[a F혪B0e?C!ͪ;wmdPcvd,B4 Dw+>z\O,RBrI٦Duy:_*1:t#17%򶑩8)رWӌsbiS[_KH(h}jzngaؐBw,7] LĵN [,C$(| g,|o߳X-VțuQ4 "'M6@oH ́"K&dO#OkbDJ0UCZ~[=dNq7x5ɇꝬ1['+#L@f}{KG|#Ě#!A&HSsEoYc j5$n421)0_[frP?4`#Ͱ\603khGN9t1" +'U -wྠc-!cY!,Ba` 1y2ϵ&Ӝ@Ei.5 0 tI.slE+.kA[|Bk&n'>c7o~ $Ԝ5ؖ6`Ym֮J7.W[ An- dgpJZ9E_ ecF$A R a $MwJ_m:Pz>ա껒܁2V5>O@}:IueL 9Nު)A*!N@t )f< ϥLTnw @V, j}7KIo1v?x!Tk@^P\}jSMoNY0+uSs9J楫85GS%2%yDd&5D~`~[j{}8 ^j'W@|݉i=x'P d(G3:W0\8>*.GItk!~Ie_"ۋioч2 a2"n7{6SM+Q4$%bO'yH#$e}Hi4$N4#"p a=r=!䤉ig Xi['EtWjFXQ.٢%hJ,c4Ȩ:oٟ,sK>Ioы~dgMG ٖU }dV&]70Q[h66gC!.hMݶY@Xө+#S)@2# j82_0;6(N ,td!y>u;* |#ۭ:HUc'!zoT^P=hKY+>~%t“i/.Z8F7mS:TjYL^xje;bIS.0|"w\U*X;pI?oc'gKAcS*2+"h"s9'+qi4Vh`3ȓ PIiX?swr[~V;/;Ty]dHKsZb)Š2^9|/'a8ZYyD䖭 jπ;eN.UC9qBVbs~TsCM ) j{G% ߽ {?w\MXB,ꀀhr&͛/}" NX^*WAt!iA&v|-Ub<_/8|ho&׵Y~b$> S0ς4*'C G }TF`L!b/.֙zh;ѓ6M93*4AFm]H:vh^URs%{ЊΉUA$hJf7x,›_A6:pb8rVR4)vzTX2 ɰ<:Q11bI!<€XM < c;e>$lWh_{z 8xƈ">(Op-3)e#`ܯh퀑P(2N$ ;E|&]$ȝpEՏ%L zQٖe|-C_]s:?]Nbޅ\A2jK[%a%PV.ȇsȄMs?抷S-`%Y?o[q1P0T_י6qwj 6)V{} %`ʺ {0;BZ+b6/X!YnJvv"#qE4'N\Tb6t95LňȻ5WI֔q]b|DXRxq ϑS%;,RSKiϒ8퟿MC  T]%Q_ ?^9z|DyTM @/n/pbuR6 8iH(3ýml8au8a0y @džc_(ʊ.#[|/ I*X|Vo kPL8I#y ϴ8{*GR҆˵ѬJ\+(~r[KL+i++:_ӫ_a6S<^'C*^GVk=ѥ6̷p`l&MGJu鿮Cܟ.s<1i}UH{^90 R0)P^mjК:OcGɳ%-4ϽYmx.pTZ5M",50?'QsOf9 AWªS (8_pvy~Bz.{H~ 6c{V5TcAjdPEPvD0{Tz '2q"4K!U)62Rc) 7#gBsI#ZB" ?Ob/].16βFp͏>*dLi$ âWC2 tHFs[P OK77Cy zB:TDĊ^f_N@:MO1gsŻGGǩ+ϧpYG/c-_ Ju_Nʠ|bߗN:~!K]#;٥%,>Yƒh-ԱeR%gW;|ɓ6yDYaVK_.֞Ds쿆;VDA xNǁjj=5{i1G윕^4^^lLU;\!>!ǡͨDMkzFMKo6 ~:{Qlx^i;B"kz8oV_xBYT,4}X$crFJX3֞q 3T{3x_O=&d_!ޱ+AjE*א !SbnJI/DG[p{:dHJbT!QJzXN7.f!\Av[^D uE\tg .@z:+c_f^wJ^MZ/mym9#x9 t3_x>$Lʳh"Q f3 bDvI#3GG_2)1 ff |H?mLIn'fQax!JuCm_(ewF6T5\گ!}0*ޤVFtiR\PN}A;jçl d|h+rgԞn4oho|>shm3?MJ,6Q <7|.%su ݣq!K( TYҙ]lic!#hq*W^O.9=& &+sW muo),!߆>`]R[ا)E ݙKcc yW|U__- U=\p_Q#$+UdOkdT$a$O!; 01F{Fd<8,f2ӎ#3ٮ=ke# )`vg%vM_6UEs6& ݴpF,`Mp>޼jh4*AS$? E;B(R!0bטfu5 8) C4w }ol—T=v:"s&9 #nv&=k_ԽH&TQXtEAFw}nk]<]fWBԁ[Y͖Tl "qC|ojQN`jWG΋_mH9a~#;m}v@X3tlAaG -i.G9AgOsb"ffޘ+HqBO{8ا(~]|ѽsT 0ХLl*c`qV#;%UcDVW) ЎM9Cfr H ^{W8U/)"֟2h)m\C=hqE2t DC^¶jqJwf16^i{I$;YnvD }gѭ1Fyg d Us"ؽY.]&1g3G o\gO=THg9ѾsOȐ`,e&(Uv)>.1cU@w*Nzi4'D  JB뗮 #Kxz3eި+_/Og"PV'-O:)iN[K^O@<.`P|Ry&/ ̗|2{&q":cnlUjAd7m ,Ua\0V︤SoQ2ϣ¨ ^wLukcip1㻉Qʽ{~PA-0duP(Uޙb59ߖ~дMlH J,[y&Dʥx͆E!f ]嶁aM@ a(sxܣMKxxτI}{"0#˨ïav fmKd&Ssh?!^h}]h'mOxa\{R%Ξ|݇NultVULrb)`^+6O&pFCz2Ƃv+RwE|dsuL[0*c[HMb]$u(1 QA^>u t SFi CwE歱"W \ݐ(+3u.#>m^ xT%T5jR,VjLF#@ZtI"O -V:rՙ¡If,ްt+9Uf_Z6|V,*~cF|ïc65^*X,pJ@KU}hnHdwlݥWʁMwDVs&CQgUU)7]OvX'S79: `sjic+'*c1*N{ph613TX%d+zIn6'nL#*{$+07-N0/7A@^)dWWC-{w1/@(活'/ų7ăOMO-7 V~Ok 5+f-Nw+rFgkz4G Fk*\ 'Rm^^PIX|¯6y__"[lILرoLࣲ- Z/ 6{'M#t9;1"9ȉ EZXCqk#M.~˝1J3Ӝ?/Zٻl[W}fQ{vv۴m=7y)DHm,^dq ra~HxC1 `{wh,%; Q mO+=kE8  m ~^\WB? KOl?ye됖l|e ^!ZxʎbO Ee& /qU*’Es> 7 [p@{.;YqT *6y,=to*4G֧ <9YUcwǍm)r`껢,̩a*4F:gz3=ށk֣v̇+)h΀IT]7 bW9,V]پX/g˕l64;/Z]TeS[CNBɉWT̫H zN"_f6@>m[[xl6WBVLj3>B;f@tx"=K"`d廎+E?ٍ5SMl^+wyƒ}1޴K_K@=0gRݛ+8~lv\ep[d$Xdy='_VɃLlrUZVU=Ƞ4Pcm?=,RӀ0g\,]6 EOO!>8GG_ UE-T28g.E. nǖq~/ƉiYlp ~<2k/%|X<'<)& 4Bz8}"MU*”R{a3ZYDUԒ5+ЈD6 `t:Hc,pY>vD:^.zB_2kZ4R>j tpov?@ gB.\ԯn[T+в=ͭv}d#K3 \)m:8g. uoDW5bgңR3@^@M=6& ':ā!^LӅT{o[aB5~4QXs8Zt( kVwZDCM@0zЄ6$P}'~\_(Y 2c)+*x)q\_|[BZx<xtk˫4 |С;ӻ1 fXNH龜Mx_@0 1o;AUAΰ/U79*kz H4rR;pxꠘ1""cæ'fۨPD\yTgٱ~A)?IUEP 0,Z K-/0[7"xTS3З1[;5, =i+h \ٶ ÅGn_9z/%GӰP}&=¯+PyGX iE)73NNyaZ &k2ɕ|[QY:&}-n}SITR: j ˏ^.zRw q7Οu #ku aپn˞>STޓ(n{7NiEX g iPь +*q=nsX﫻}Mt -,%Ojυ{/1JJ''pW= Nabơ]0bUo qV7}.` $( k}E+tߏmwLJall:t3k?eswA񶕨㘺{=UXzӵ.l`Ȱ&)0sbFMVQ9P\ ( oU2Oqb3BXjrfH ?OcTi6!ы wȰ"@\JKE[WarmhL&6 55۩K 8cjIU>F3+N0GwHc`+(=%e AR̽=kc|ܵWVG~%!`2o808l?4Ik$gꃎdٙ@+.u8 t,$_Ŋ<1n'H-Bk3} +u|[S44w-45=pDZT2pȷKik>ptQ8#+)@woҒ03$QƮ٤n#iBGO8liETU6FQ>Ch5Tײw;{NA9= Бӛ)R2n=u{3ڊcSQ^]ͭ =04`tOln[h#zz"'00U/N==%sg<79΃?I,mzh)oرXσdm.Ev*@WVÉz^֙<`vhU)72y!c( ؉F{ۢgU_3iXz8HL5?-ǙѰo#`(v૸#~ej'Taq7S/KCWW/pYH\eZK/xx)jQu1;=9g1t$qYqw2AwOml Ȟ g圓$ Gu@GFZͅݺoށ~L\L !MeXeU%wՔYsWh@ʙנf&!5b2DC Đ9:uOۦ{ NiGV@ 4!j ę7Q;\]".-/w52 `LFzG%['SlOjCzX̌H<l D:O(+&FP砳ڬ!.y yk=hk"\ ,7CR`F-ƆJUZoR~4rO 5Cx೾SE,cBϱy3x^ނ1xor UʹUrH߫%Qcaꇻ@ې:HQ\£yt{98@kCo>Dcs;#ro@JIrKY5JQؐ_uD>)OybcNްnλVxh$h/ա8ycFV)iҦ(56>x9)SOu$MВ6m!׆l>ܪ)p|-YZ>20![ʯ!7W﩯l Ccri4KnYWy^}*=|jf!iCS2yM?F3e ;e$nڭzDuU^)0ia刍L<3Rg"ɢ9νz#nd2&] ,x>;b=!\ x W]Uko1 Fn2O,D4bczmX7n_C)t J$a| rl:rV{Z7([%F-'.`$Ԍ ݦ[sڵ3o7}̢u$5}E5nyW.CRA>I=h<ԏ/}"4Hr(,hmDCZ8adg9zruDB.F1Da0KrFYHH]` ֛Rwx3SFdZ?-M[s^p=JJxGah.W ؑYc%[qOzMSCX_h0y[/3fTC&E+hsBx"B 8, .Nt~vDCy1Jq۹"1ʇQ zk@sFp5a_j]@!}ghuCV#A?86g!d5Q*٭7ONJ8:G&&[nHQ}Ӳ]HU8H<)v .< ̮av y^P\5r`iɐ1ks(YIމQ+/eU㴎~l]޹/H|Q_3=p^gX8chS(`J9: 0G8N%،Z)?(V`/ȧ>ْ6V_C2*`o7NSwY܃`$|<_8Kb~B1h4'Oe9tcZ2Z~2dV0_[PHVѼ^\_&#PFt:׵{cI }9H!g4VײaskRbvSGl+կMjɟk5:l8w:Z<Ģ1Ƨ[fU"Q&1郢6<0 Kn=T/(İѡ{VgHe2#Yzkh Z;;ftI&( @ \@M'=0BCBiz,*gZJ򳣵ZN t#*K5.G=1ĚLLP?nOfՓf6`wܦ[4Q+mA|fOwoV! 'cvxe%u^ , KXx3W?֕;LE 5~sV͎6~,oZ嚱XK6G#na;9,`GQ] ..VC2AUNsx~YsɵoPVl?ҩ;? ӡnߏ+oJB9 mA'TR:gkcp\4&(zindb5r =h_= .T88J w>ߗ1/CIs?3pVzl~$;] Ho6 ;aAڊ:m4XNO!vwl!aNGRpG nc jF?A]PRʖ{3.=H)HQ%0~:jb/1[>cQE4>Lbsy*lc< є9H_f'ZOϫf:SHv0I).bޭ:h Db t8#'4xWeUXh.j^ǒ{3=8d?? R~b8|8u~ePB% QW6(ZY &=.Dx*7!z#A^][ԋeQyev)|zvU$URCl㭙bPFz)NWywto-p 1&ƍB;7f֐Ja8RH[wtYL3F,3 5+0^f1{?aX YTEJa7ev;LHYI*%O6#0{v7U[P a`oPI^F-;6I;r^@wIm %W,C ~կ2El4h=Mrޯ[4ݞ0T_he?ɞc]Uaq6/Ee$^Hzh61{>.5-z#7;쑁5xJssNIGdiVqlq VKIoSIh[lymar0Tt~Y ؾm=ӑp=^|tRZb_dZCNgu1.>{?Tc]wiع^Gǿ{)]W8&>,COA1ʕ}S[bW$lk)o9ޱٓ!H$Q4R o,AgɃ*{Q\ }ΠpEXV#rA¡a5.:J6.dNv@UIȇduj2Mxo;wJ] oR;=SL9aRq5VN#2ZdK>o5 ~>g?)}d<אN*T5[HҴ5S~EЀA!H`ruj+|_i e,xdfd>_#S;)|ac$@qY/g++,Ą]ƚOU@* Į=~8E+.ܶ<n.> pQ(?^h%-tėS\4<R6ii@9W&3u3Ai25{ [o|&C@P+\2R䑩ZV{5H (,(ͱn@T GaP^!){5et*ݩ [tSA|7O.-Y߱^bJ% qq#?8SioԿiD~wx> ֒1^PGoRq[7eh@M~|,eWTxOdrH<~W:NԏṴ+iՙ ;Xg08@$؎XuN>H ̊k,J,͑{ȳ2dČkDf0Svv$@<cW辡bE ]ZjI氬x0xuz^m2k'M^X hw#뽸ns/g#rJ KH~BɞZyfm/o뵀cZp'"u.;vg5"s$s4& ..FF 0e?Kڣ-)U%X*3X+f"#qCDNiS2TקK;Ue0TlIu^,xMZȘLZXzPx\d Ҿ2p;mM3Hn$UAwb3!{CZJ$DkP/P+ r^Y+"T)WK_ 뮸:F , ZsWQ0?S\}b܍5)K< -x9J^)f_;3l~wR)iuAFa.]X?) 4cBW0rn_zvthE1z=$Āӏ,9 B \] zy;Ngļ –+͕!r?\M΁õR0gkF:dej{n뫦*gt:| IæL@qawbLV{w0 -iTorQ1Dy#d&S-f@hՄ]Y 4"9r j/cuO}ćv]Zէ>+1Z45UC?PpX) x];AH4* _2D@Q()xfH,%OC@BvbGe׍EOU'H"n|QY,P}p)&;ZI`Fq'!x|Z.%BiS@q~C[gKڻ<9Z]Lq-< )iTti@W7S^r}Lm;E0>s\86=N^YIawalKZma"9U̪@_ٮϩUku"d^pWQDbݛlBViu~2!Ôd T)'M#\F@BL[>sBw׏V忩G%bjAH㓧aŕ9.:P+ 9'.w< J^&Ef3iJ~j1#tKzi޳R+BћǼP$6 銼Yu;% jyڳ;s< r~3yZ ˙CAmW;-2&]}hxH&b8 HB"b\!}AKpC?Rbm&|-,:pufW2SpX ZO* P fpbC|P,VJ[}<Jw Z?n=^P#WjX_njY.+Al3Zn+cB})BpsIDu#XSPӗ5C$(),ؠ5'ff!|*:wdh8hgFqEԥsթ͢G"SPBub>BcN!t)B@[ꢐ4o-$$R Gү~Y+V\z!HKbzyGF <|7}YĮ ۾ސPk"&q5_Xȳ35 :x+M ǶK!<~vZԸdWx 9gPb0gՂێ4[`-V{Ox9'2 *I5LZ>x_:<-ŮR6oDz! cҏ4zM%a# -mt܇kDO;l1qM- |7S/AlukXshN2:`_pV SgP̝ƌ9ejg ml0E0?0Q1~yQ}CA/3aڋwo9=!wJlp$0v=uf  RৢDP4絗zCq`cm"=ߜ/XzcR-"<>7?Ќ_B;a@G/3beH̸Q}S \l.hD%OXӫi]5xR&M:5;W'6u/Ԟ  SIACKҹ?X{>otQL:Z\C@_"S?$G_&y LിDE׵Z[Dc\v "h@,O&7gƾ=j7y0$qa|&l u*ޜ[Gϩ8s:V+oY GO]c3Fɚ}FV]fΐyCR@ QR +O"Lyu(\NuhY vǩ+zGv@ܺ 3٭Q/WUV.n؋[HG!KH4c|:l\DA}-Xw0z,n?BP6j(}T0].Te9?tqYmN5>* A!G)_ӣ`nG{8}Q1bMht * =MW*72ƨA8nEP^JR[ \M)IQi~ًˮǸay` @' 5Y5U${ԪInK"砓 \ǓJw)]LaBId- u͑dJkӉ ފLZ>HNIbT~R6PsnWSlV^+<}AҘ'b2ӄs)(8L'hHXw<$G*aW<D@+WCnhb\&}JbVܬ&߆'37Om qF1-x`4A{R_F}5B뤧X<|`Ӱrgt_] (G?V<[1/Fo)Jd_Y09 5?K g ט\3{u&H_տw.!y@$uxs~j\5AP9] ɓ<ӾA In4ӗU98tM g w2BxT㌙K+fwOp*_b(\[#t~ AG[IoQ<s}]%')c6SSDy+pCܦhc%[ؼQm4W :x䜸fW&jG9c~ c1ž899ϘdUsp=^U~fKU5ؐ&#+ _bw&1l7vžx6ͯ\cxhKuH 4Mk3I}'Z+-5y?-s8Eن땙H:ְNgWW,w2ނC2ƔXG%eo~v=HiW΢G7@eWq*v0B[Xma:ꁅI۵<_R`|- y$T (zh\pޖZ|Ws9sln2Q4,E} ه#kZer$,uF9 iDytsTYb 0]M9E[.'ju5 x|b65~4j|K5=mעȨ li(nF,w,5Z9L)7bh$e`mk ve@jC67(q Ж2oG_E$/<`,}iCplÊ֯Sw=>CJ T@Bjgx}GPx5 秉p(R\Ot#@ӕ%98 ԨkKJԆW3bZ߂`-PI-+Ŏc ozaeq/#|UjDC|*?yVJG9)oV0Bdv l)_X{~2~aYs"0_4|N>lB,GP*=J :Wwv EGyp[7:3l,7ϘȓZkζ*:5@ $Ǫ )8IMMW k54`u$?ʮ}__N9}*E FyNVy!FBW)M_HN#=[pSR4rU 4eRNW*%05ħxJ_PXkmkCԼkH7إ4xvP0Ig*V& 6}?!I'+Uw%y:25XPħ/\>u؏`_&}bp:Z2s :Ɠ {kt'ش:>7Z QM\:Ngp űecRZBPlxuðt/jZןL'w&`Ieo6 RAv Q|';(?zi\^ iuNWS? w=)ǃ70RCFK! mnKGr栐lai(# RpTKb܍YT#D'|Y2n?ϗ꓿B=<1m)[)L)1{(S;3OZ(Yҍ ASC+-BnY,,*WAN\[te/4ac?KECH>)Th2i:~ҜbtۡwM+-#.H SEC"0Wݵ?,hox,e|4XHiԲ GT匝*C#Ȓ-DxWvo^=&~V3x@ Y·<94 U9i.w޾-rL9:܈6x.X07x='<6b\0o`!8 GPMШ]j^V@D5>9艗}FlD oN/쓇v:U+ tj1>t:@u+DŚ+((Qy4nQ0y۽3V: $)Vp _"#W6~#h'Ӵ&$x?!XJ4aT3)ۚa@Wfn0Ёo0@lp_a)ܱ ;bn ڰe/k5MF 0 { 6YF]\ܬb1+y ŅPkjQcFVm#.x>dl>v/(h1\``>v&0 OZ,)7m#D8YE>=/NeZgE c ]F!b/rMX$WA]%x"H)^*9,BAGY":2I)>ʆ[Qd]~kX̄wYaUOԽȔQ+]vDc$bVl KHj\UUye3yUVos&i'סV Jh@%h ߬{bJnp( Gm=:s#<{ߤ )T x5W6odF25"OVlԃ7r⭋EIǑT =3>2iP:Ğ s7`_8[jcyPO`  f@ nUF6#>o8|oy>CA`ԡ M3,R\1ƒ>C{9s5T8~PUM3ND32j7vHj:М9ZC}(փ./b;AF[-xݒJwDȽN&xt :fxkj( N F7RuVh yG3װ q03cfæh{ K#/<E2VN.3&|@|}iOHkaKZې=yaZ/>|8F_hswG@CwFSgTIc•/ssϸ̬!fkHMx42x@ y x-K!=/Lj'{c0~wb<+zZ2K~s)@6xĦ% 9h*/oޱtBP?% @ ʣ;oeڂBd}a$)6*)SZ "=p*wJ}jb= I?ٌy؊T^ _IW\-}F*dZmQZW((5Z\etbf3ϗL{ HOĶ:g呷rdO#? R?0[ß1k7MAJVMY>"f5W4^DpOx<5ԙVv{y$v! ʜfTZ;pϖ cQ_+NLR(_r'Ywp`3!Ip8q8.f9WAzr:^=s uNeVKՈ9/C.L  dS>\VE|~\Eg*C縒um uC\uI%6߮2»x?B6Ah*l56q$eh ; ZC⹝ *מ FbuL 0( HL \E MCz(KӅU*'H˧֛oWh\jLUV,+Sq ~ qb_Ԯ@8{yW;M7[, V޷ J*c}W~IslqU lQߗ9<)9;$L3AI`?^Xf aEdʟ4#VsAq6;OllƎ>h> #Blmb98 %&P!۸ƺ_p3fMzQ /t]@$bӥrQX2R>7V@2.bvT bV V. +F74i,S)S 4E2Zriɦ[E[:M~K{ &8qQĦiERn97'.WX3IG*5IR;(~,2t~zW;,ٚ6c0[FH(XC^,QR'ϗ&/loI%U{}F2 ) i"Jb"<23]ݡ= Ab0&ģ!#\R5x鿑V=aM*XdJ&ifgbSXS>t{,dC1[l[\UJP=Cg+vQ߮UlA0TY{gF%P*_ll`Jn*.j0n] rk2toN#8Oho:[F&:SkYl\<u,0zR:`" ]cR>hS6 $ק'*ktfNivIK"b9rAi}@@ TˡgfBxJ{g2)?Se^∖-id܏K3z1>k=6Î2AdoWzyv;bȅR /W̩eE:~\s"b78t MuaюoܾGF$L3GPҼF~c0ov0Qܹ.W-s6A2yi;៳. 7KdԈ-kgO/ot.*k)Qg-}c(y^D{ջ`*oM֋ &.8뉵/$ln9f&f@0^˗/ FKSX&6f޴DhX4Ŝ:Qɷ}zUB䃗 iZhOԅt/Ѻ`F:o2/R# 1TO9iA#ΣEmZ?t'amv"E`+|PeBt 4x1̯<^I),J>ת;A=7an ζHҗ,O#T>}vFF4a[7Z WRcMiN3C1HQ@ \:&,*~/0X07^CԭKVo-ȟ=<kw]o!\}:tohevXr'Z? H9$ 4F𢊱njtGT-mټtc\̝s7-$Dd#gF.s4SMy]E.+Ze̖!BįXit\nL o1_Gr ➇h0>1gdD-C49L, [ 1u/\uj]fKlц0ˋ` ͜௝[p/8.\*6S%1@bw%?6C! 1eG`P( "0Wp @f~!y=%GL=+<&ðnd9o`w-+eSLzRW16QG ʱof\;(<(#5}O!Yq D3(Zt3u%9\1mQK*j?̴ =բ@qu૜tĪ4 RZqgS~pG-߱T,'"?cr #X^ҏPA3N^b>u=svPi[Y8]J\N*F~/4>3 2E&#E,rOC{ME2*)Y \^ԐxD/#^UTBS V/9 "a-9LԎ1Dw"ved0piLUk|Pu&E'ᐁz s끏= Ӆ ,1t,A4 ᪙~%nW5(K _ګ YrY0bG$.pܥ֩2LIJ68suF?2okqE$q[l BlA<+Z$^B"[JZxYAE}{[p`>Z3U:TZ5SFq;e#FQ{F8vFq^T5'PGmVgJS48NVMi?FL%YėtҮEjwCVMv-BTC z,^pb }O;ȋ.M!4 pyp0k!HAۣl&mPYȞ @ůq%) >5CёҺdvhـ*&6Ϝ] vw|Lu7'R ⒹBA?M+U+3xf:/Kɣzׂ:`KalOI :+sPg{+&S? fXnw#l4NHbo>rTw"nnߵ(ңTqg`?.4NVXEz?!GZ>30 $٫0Of)>0=nd@@t܄lFV{JrMF{1g-\*UH6X[Wp`iIZ=\f?5Su=f:@н;n9T A8 p!'f^PhCAoeKW)]2{1j0וj;Kv8b/tkqF_g$Yr\H[GStnвτnM、xzJag[Qrh-u< ;@HYd -IFƠp\wrv(5yr/fZT!`E=i,‹m<I5[o;m*l&,u aTbcB:Q_|) {X7S,=c26'佩6,@`=Ev  )ZGjfyXMV?(MR@۽G͉zHyy*1pd_,<@+'vVPkP 3Ϯ8(< %5'쓯D(/"bz,fiƇ8370AF2sk2)ۯ9 ԪSiꦦ.%ŠrC *6Gm|U|pi%驳#!VE6ݮ/OJ-L+/YL+ p#ގ3gIvHFej8)w 89KX&$@/աȥ`PK%j{DN4~T"I݉AXФZMMh5Y 쵝?i0]VMr!0fɹ{_rgIS`9gزQ-7NKvKt "{17@4)"+*V 'GVW}lJ]PQ?C~2 (bCOeaH V+鞎B1qNrf]DtkWxI>oZI\yzC1l CwjGCGrqD}:sKm/Z||!YNCJ㚺boMEz)/<@9=(%6cK'gY䒿qmYH9Uh-;`J$+C ҁ?: F/ VY맀pvxKwh(4QNҒk3ms,l 9͙jEm r)e؟T 1Z j+4OaH+(\VtvՎ/<9%d\x<k1"v+yA%79;9QJq'cf(Jez$tmriM*,!Z$;N̷Sy1sTYLmy^xmYd8_dRPNg`w&ʓj0n~B>Fyl; dwR Jo)x-|JqCoB*R%υy)V_>L>X"Z_jK.Lnivy1;q:6Â̙̍пi{V c '. QuBv#?ȱs9D\ "-o~Wpk-SZ(ށX$'Z@z]䲠 b6tYYT5RL5}Ds[L1=Df>1-~kǀ7 <2C:g]u: p4gz]+HUFHˈr}M4]3 /qK9<Ft\J']e94O~jtk>i[|ջ$;M:-xo)haZ.k ͮE`PoLdX" 3嬃2 S1I_rp<yxоq ۤۖAt\Q{d^G5&&AuȢȿM>_ulCCQ.+8*Ahiau٘j~^':v@d]8VbH;6H2Jo:S ^Fk祁sMYdء(Aُ< I,HS7?Ў4Q:@H8ȺUo1GPqC5e.5(~CCɏHȶ tv}kWP<=yo_wpܔ||b/h_%i3uJ 5^2 qSFi} JI1*J:Dc A,Gv&SK;.abVδuQ`&+#~> 3$c.q\,, y_̜#-QS6dC?~WIHɏd?dyp\+ 9dmIAc=4e"Gs_M(sLU@#}, kVe2HC|qH[$f@CIÛ˜< wΌncM>ů!_#>.ё`FZb"4Ӯ)j@J@D>5yS@xq_ u:ݩfЗ#~M"}d.{' +6!wMw[ Fh Y>bfkR4\ĶiP> D?:QrxhSOCABi¿Qɟ t)D|C٤ h`aAÔz GK!?QX!/_+1{ʭfzQ0NW(u 7Ɉ12%Y =6Ntz`=&L9Dńt(?OIAyΦGe%-%2~ʹb @msؗPQn+UC?~]΀bUv!2jYS@Ynft;ݎ/R(>/ 8l~/O[DiǦ ]0i \B t6< 0|cℽ.,]/ )OClL˩YL(rϗ`<˛GhyC߭E|skG@km Ee e]H3b$gAC;A`_y o[F42#  bLLψ~7=j -ad"oslo3gJM=9Y~]ܼn2Ŗ)Om]upb%Sʰ WAӕ&˛b! \Aij>C1D2TpcA{7Ӣt #4,Ɩn W_c r17Yo8ڸ3h7sF@qnD)u `GwHZdmi>$"Y6y08daqϢujT'TtYϡbԍjNi~]BP&ܑdkеHyi "/4T\y~I;D3"6dkF(]E\z)}^1j<+ N"W} UHN24':NF% tAXʟI G TTAE~y5{Uޫ5~`mi&!pC44)Y+l>thq{Elv0m]PLlZ IɈ,>otXxe7_̀:Rh8o[1LМރq.X$0l}b6a:+;M7=2Z8+?9fé\ٖq kR.opݔ,T1R=yih&FƕՄM+6e>&anvF5Ҽ9:E 2_R 9ʥ'PV̥?(i:T+a]:H^nSr t jL;Af$m$]y'w] l(d9.gj^-<6;fa2_0K 1sQՎ5ͻGna^]#Ak_K&3x&Nyp;9)y1[$7'2 dCDt}BF^·gyw^?ø5~T2y@ip6DgڭC/5Tp A}!` lq0T͜)2_4 VcKA0TLMB%0"q@<ߵ{7T>zR29BaŦĨQ,Do'q7\y=%j\iu7F-T{e|bQiź v"4 rRN8# :EёjLhHX=%}ȓY93\h b0`L=yh7Xg *,469̢`pAhq-?ExU7ynnCwztY +~-xV,5]Rψ1JH ݴ(ym:쾌K!5r"H\q_,Oma,&=EFde~oQϰys`*QX]y[=  $(5a˶ѳI.2BsuYt;Ӱʢi+2՜a`t*XLscq+86l(^ܪa$ s (A՝;Yh5SB&,8= WpElf(NjaM/:aRG"jvA'cCUtTh,/CJ<bh{sU#mT^Agfyb8T["i;^+m1@'7ma=?!/L;E;>$6ݔWbA7a`ɓ7NwpOc ÿGVZ$ v٣ay qp1E0?Kn:8z¦dIJWàpߛΊĔa*ˎL ^DZ%YXe32= u(+ͫ3$uR>N]z941r/plP9 M*QՀHdaxgr~F8⏒z]2QG'qPh5,z=$_ !mN Hр$q(i\io-2,}d`l{te;zJVcs}i9<8 w,®ne8B@ӗYx@*Do8(3f4f.?xftk:*wSX]EA `8j#CޤUt6jʎ:E~4ӗٵ"KTa~%q 2z:!&օ y'Hsٺ{luF+>+Z<(I$|EAl-~qgd/  H<2:5eYx K':/XP&vu6te&_B6ɆFL%5t l ySBj mlaC2BXX4hcĤ{>5l潄6X?qԐ. V r=,#<زxc2D@y>W7j"\1'%qM]ntWv)"c_ʀKmQMM*NPDᱪWc+[k m`}8hcEGa47f蔣 ox%'|B]/Թ`Vl7e Z>f)Orff ͆xw ;CJkso٧+sG_@n72jf=/پ$#8<3qz$W)) bj=U1Ǫ2 URȥv] 8$u`\kݓLio)'z4dᑲ/^2d&QY\ /|j2[suñux 3ν9ua'JKQx|iȗUT?T'& |s$9Ήšz۳յogb8Ay|)_blE#>+u)2* I'^H{Vm I>USqp0HU{adu%wgC"8wi_FP7,}X#]M%_|W&x2]M;yX;F<}6d8QVo%OgQS6COU nP!ckfAퟺ V21ۛqTc=3C*pJ>0r``nE &:c\sj3 rȗ6ܒb!-lC1kj=Ϛ7c v繅u mϾmKm,uzT$09Dh* hM^bK!3+q[YW%Ә-`` `O1)"?'wv2ʇeuqO#p]^#c)}| l7e]baGx蠺HP*|I1ʜ`c7YȻ9Kney06,n Jmu#i{'hZA8!GZ6ԈlU9G߀{9y?4 0J@hHKg6(~7\>i+~ ZTfXUI\}4B;kW܂ZjHxqՕa3ns0Iw-=>xnGcOɶMCotP87ܭ~{~QOUZi^ :1~n=Sp(~w݇)<G:ځ4l} խUf%SJu B6]R[v"dhdJ\U8b`so"}{&LO':[?UNdp&-8Wf&@=.mrsbVtTL;nXrY_c|.ez@#LWirau u:='2Q "0%e݅UHhP ^c}\;DD.D{6^Օ *amwlm1<αͯWLR4: 7@|}nUlH13>'dn \JY%`M?3o\*[\EɡbЙρ`^ ~tE 6CYE U+ƟEomFycדX*2264yo)^+MJ|f:#MЅW#Zd?By :.w9PPYw /SA6ynoZ8κ̚+vOw~^d˶uj+/O9z-^fLg`X`ztN.Z֌SS ]x*;AnVyx|g1{|)D>z2L*6,k@Oٚs'yeA@=5}.Dˬ!oqf@'-1~* <&QBA<+}:(8,[! 9oQ:`qaLjǹ0'wR4zp{"5w >#]mՠ@Q 9~d&j[{l ubѨn]ǯ0Ppfln8goib1T"Gq9#!~(9I^@oGy4oafŰ"_79͠';p"NǘVׯWS񊔗c=be%hXA*Z ?U^Sԇv 1fa:_OpS.E G6 ܤm(do'.W_lHR(7ŤrU!Ұ^s3o,e!E17DWqAՑGHEk2N,D=)>"4=g#R q(F0y`}2.g"[J.]Ʈ͕N1x,dD ?/{{R>+D*-41sˆRS˗>2Jim ixЊǖ5ײǔၗ'vNq:mʖ-c\~lN)id{Ηw-'Ԟ')b T,\@Y}湕=s5R.QEm`l8/!@ uTf;Rx0]C^\_5#n)9FŶV歞D^um?1[ J7D!d{+?5CڅWcږޱ +hac?|״3^}ƭm^nrOyh2fZ oSL "D,+XԾU}vrB)qߖd~l( o޶ s.4U ЅXsoeŵO K.UKF·Ehp YHn@D Rl0+6fo &z4W%/P5Mb-7q)]Q5#8ؙH؋ӭ=(s ߝjPfQafTJ,JOjeC/ 3_-$6Wm6}铮3 F|]9j(>0[. m,4DZ3M| ,9^BH{"[J^-痠ђ- hm-uh.j -_Nt_[Y"H:R8`G^qQ OW8bw|"vݡ1kV {$0KO (/~UWJld$BV>G%X2.I>M;YueFEwVթM={sѭk6l׸`wcC8-dqRf`Mk9ݺ ou-l `]\=o½3`HRXez?J;AC|g%%okCkN 'rL{=$C~ԁ@QW?b.^x*%z}e軙T/CǃE}~ʘO%MC",mX K-Sq8Z+>RRGv~Vv)pgպ+YT;F?^X 4xIpLw'$N"(!a>;!x?v278O<q1XJ VH˞qC}A&M1yGKB #1)>PŅ9aó_xM0ZJg_QA+gPÙuJH@UC $v0,3߅Atf PpL6(W1ABP#eHYgNh6at0_)i@u6Z$z`~|ڐ0N G}+I`$XDL!XZp/zcgbO>^>;I`:aUHdƺ"]=$zwqv"BZ?g:~``7&[4 |꟪{ln}:d_*q ߩatY9E7'=? Oy:<ѫ%BI o#>Tbn"}@fPs.-G5$I1kt!Ɖ׃Si6z:~kZ; ˡ}p)bYssj:Ն}ぽYa % 7O5Y=^"vۣ̱NAm:JMV#&i\- Uʰ. K=ć Vlf ~ƕ~6x8k-Y`^24;"enA _uM$I6'gJCLYfUpNm譖*4?.EP&T<χ>3Q;o+|dz۴0~-Qt^\5ݜAX.޺Wd#1GFp.^YOuG ,$^(n]XBb PYFJ8 Vns>n13E-ҋHJό7 -AK`?jpH%UR$믕ţO R-EL?yTB*rzd/hOmvIf(kO`UL3ya߅B9L ނVw9J?g>%s6Xғ`صIXK/'yotĉGjf`)N̨8n^tZhkqe MS'S9k󎜻WdvaKe{#y(-'vhRT&wga_-kQGQP}E #(sITjG8ۨ `5F`ڠ 1[H.vƀ|G>NU^^ch7#/BQyW ;5Y֪讪H>#$kK~bF L ^(H&3_eHMS.ekNm0A lgzWσTgq@ Pϼ!GPw%Wh.1ҟ&v(TNwބ9'A_tk#E2/Ƶ4«h(~?٤4{W+a׍zl)2t00ɚj+dA'b\qQZ5!M+3OKXX NEJ :굼5'bB )4":賓FJ|8Q1j,o,Vy7D *j3Lxs|A `m K"^X}cPQy@jj{]{w/RkHw?$i ͧZӊ8sQ+ 3R)k>05ԟ|X ︆bc>?ħL,QAL޴ T%0{ Ghbj^o@dtluP0D |돯 qPhSDT\B:,m=U>+̨ XԵi QkȦTP\29Ki>BFBXpOܩ>R }XtF0O^`7Dk4 7]CM I:q8#_-H94_nZ(`RQ6k|]$[ 4y#WB;Q ,Hq|{fιW^t (1!Y*pcP˧4> t1a"y6F.L1|kx$W*H2r> 6)355}ZZxeE]:)?t3(w.<%DPKo?ir~!Wj^'JYD{31^o5@0w aڕSPhs/1엌CIن=p7јCѻEΈPvbԄ>5a{eiG8k A͞8M]aD? Nh"LδWc8}ŕcGX^rіcY\ ~{fr?Ip.T0KD3L00dV`4]mD~ڌ:5bzE* 6 ;ִо " Y G%Oc?44hy|eHSv{&'T t:41+9mI?;3԰d9ϛvߑl`} Swe Ò!Bpa+@aar@e fPԯ yΛ`v .ݻRbJ_xL;2⭸4 7 (mf/mCEc !CH@ >IFnncu-5Փaۏik}/?_u *3?g)hvIk[hp+90_/6Ed㌁aN,Ϸ`rΡhH4# /GoBK N ^ejcl3HP-XEO [ZMy߉%4#@;O>Z$HGDw0v++Ji3+[P*?f+%GO(moE[qj2j:4L$wjNW?$G< Մg3M[s"_aߠ! mj̢~`Ԛ8njD,(= ίҰ~ 3oXm4S.z=L`ڔn.DZN|prOս~~lJ%ݰ t> 0朶lL4 E\$2C]_'~{ %btOߟ`;GՒSHk%8h;!X9%d 0mPsG]/Sq63~OfdUi4 #sOKRraf,~ϵX6epMntwu9axA f LotzSѐB 6@ /98,ȿ47Ӈŋj-jujt_FԾѕ+cg-'K%2͙Hu?J~.ykl1YC2L8z 16Eݾ6WlVm>KOGd8ЉgZ+k<_*UނPkZ@#'j )w,bľx"'q7BCea,Mz-䧪{Er4 VC_ aK\;TT &q86j~J[slΒ#jS#.od][݊@ۜ6WG{Lr>֎}aۛQԭP)9Qؗ,H.)R-L}QXkJ!ϥFJdT4 XkOH'$If$hEGDV0+<^q0[7_NͯN Oٗގ4=VP]H^d4LѪOʡ)qgʓWbwvPkSn/TcMꭀ uG4Qj~$,ez*{^8W݆)K`|>L)NQb0Ky8jx `,-Wg>O@ZE@ȜJ% }>[G&Xd(},92PPܞEWJEF`3l, beQJds-Ҽ ( _J,CW\w}?1+]åLZ8 F6kBZgH͹VU',ߩu,)RYy/]9_&YfFL}z5j'({rL<;o!ރ7MD& =&2'Sxq$Y'ViiV:/:PBE;F#ŕSiAkrt8-P`Zc6qi%/"4ƕe-Z53һ]aNm]Yt-C1vr@1Vu}VHcr:O 0u# ]k]/yrUKƮ;}%A';'ȕ%jl頷)<`.2VW_[%jIt|質*8.wTXj %Ŭ # fZeRجl)P'>嚁'ܑU5hlxrg4d(@U.Cb1XfEsƞګ'x6 Ec/d>jfJ]PPƫs$׈8(cjo~_]6U>#_Lsx D‰( k7gP]{ &"OzдtU GK1"8Qkh%hN-}Y*_X^ӅHlKY+u≯҇BmXBP2Mq=b1V/ |t/k}GdR(i8>@PshiI`#(ܒ8p4~ģw(BS\ σ-,V5+ љEHl$KXߴ.ș[*ڥs<Z16By$˜nގd ;dbwZ)+ت}"#$D ~TJ4LɉfqEvpEۍy*{qJKǕib<"쪭{V7 Ye'< &@ (u%b:k9E8%Ә)NݽWI\p@PPhfw$HC՜hjP Ȁ bPdaN6B_Ʉ ťbp Dσ70GMctLXݴ YYe!NzYF]/ʷ~,!mYFD7s@w.VIWEKcSEj/%⯸ Ñ5r5 Y$]0o\e"Qת;4j͆,s,zӢ qHS~(e{Xԗ`7uMtޡ?z `v_ UDFBT4dg#`2t\wof^\!(k}T:AZLHkmp!uGix,1ܡ{4gMzϋ#Y8uh|m-S[r{X%yԞlDGHRtrXZ<ZFMH4TDbáS *~n X.YR;k]E$ S8쩏;MPs+tYY{74d^ӜpL=ldɻ,ݹnIl6L܄E~u<qΎv6磾P#-+49~ey|M"x&A[/7l1%\&|wo rŝ,ذ64M/VZ~1A".E@#ƽ:Ly;|yGn8c'cH5 0Z2?N׿؆e,$䋹v+u<95hhx^~?F^8N  &a@/ ࡔ5_hEZxk ȺhQHm/ ׵=k4z x~ ]~?^b L9㎝"X0YޒLBOjZ4܀$CN@FԿ+EX4;ZI6[F%29Kz04zP9ŵoh7ISa'`-oMO`LK&ߵJ{˂)+S={u#N+B{N/ |g w]Ч, }֮Bi%&Xlƻ<3[7>߽_b"^ tCgM* + l; ,f blS:%cW3n&&-D.}Y/'SR0#FSi@d]zy9B+1wsb#p0 ¼䛃\8#qet\\[DZr%kg ɻP(M""+P,[HPZ.cfC', =Äa[严w/0q#=xU.:-x&*÷R0c+:F~Dk =Cdt2iy7%* &nK14_9QlZHb(J K%2KSzcA1!)y'ь턤N`9@ k{2Dmh5*4Lɿs:}y<h\1MKM1AqdK'JPR >[Q}0Ԋ\dƷj+nq)T|i^D&di7rntwa$k  '9Fױy蠣 ^ēj]5Qmn*fZ._;3/Ya /f$lY|L2KgL}Qf؉+?'V eYKDo z3bc^=?KY}{b?E$O6Ib_ `r@!9RQ΋.T:!&. iڿ3\AڹṚr PMEj嶑`,g^AϣPIYDZ/r>cOU.P6xdU~0\"NMΔvDF7 =>}|6$ܙ~ms#,&BW PX1[˽S!m Ntpi %r`fߎhB^&tR" s%`$ŔX{y'j tb?_ʟYf᭚ܳunռy;1@#NwavZfv]_^ƺ/EK 5*nU= Xcl5hV~ut>0q>"#$E 2|9׮& rp]ULoz FqCg({T~ aKKkMP8=V6 L^j gSg [B=?6?>_v,L2I Mq;i,͜ :ґSt:4*{݂mp>bs_&\s>DNMQgJ1Ceȵ9X(s/`+nQRÀ3,l0S^yDJ&ٿ uSgw~ Sx-b@NjH4Pw=%Ĭz[ r'u^Z"HTTaixnx9nWu_``[d ¾^emzPP"8kŇ}ASN,sn6N7VeMxCfwҥAYpez;GniHw1)bNnTb5Nx`?NToFh:lT_A0A}A]յaӡ8_,@mB'j2ʹC-%sc0[NՉٺz~NHK|#B $y;Q]Lfd! ;皳2T!K2w?n#^hs.yx؀'DUc)PoJMOw5?7c̬oi.H.=]|[Z3 s`g>r͸9$AfvpppJI-} mwqc~mtPS+G8|!Ұ0і4M]N3+Gs,GdUiHZGknr[UecqDa4L&b~ZFL5:7+w(6ay.%Cg N dv®֝3zOK#!j<-‡hN(O6Ž ɱOQ2aEK>Ib!=X5C31p"&3R8`} NaNgpةGT5s]2e()LH?׆;ޯӰSWJwK6i{7TlST" Euf-**œåV'5qh381 tJQyeIntAz\# BW Эh}qd{섽|[ɈxrBx?U6[C45yyǑ|`<אb&9+,V<ŖXwD00O+Ñ]Y7ۅB,vHfI,?HO:ZԤFZ[zM *%4(`؃ekUI"{hwR(25`鏑Vc<*zdPQ v|O{+}j@ǒC.O]{M%{<1>q::7}] \P F)fdvN`JI[~)/#ؗB6ȕD_ $%ǰϘ[~Q{#]C"I6ImƊycH؂:rHևɾ.3ċ!_> i r@4S_(u?xa:;3=}?S۱FЅLt;ĖI `"zH60{QC'd5k_E/Q$B9*G'@h䉜Gx_:PbHD z%&n +u ?ˍw9{c y+=o@IQd?5FTp׻)_ cGhxGGo/ nN|'Q%$Z[lBs}KkQ3öV*ŎS=\cA&L~'/D~<-;9 Q r.Y|!Zq5EBԼ$9P2Byo !yKrW,ϻ".2F?DH@[؋$F0&x}yًo?)K^擎;Mg^@VuwyfACGצo)QlsQ;͚@v{eM'g; (|FW)~b{Vt a@m2ƇE??*b·⿪!'?KqWR!|Di)ma<1"ҐEv^a\߭19,s@ΞŲ\E@;蒒s 7R[",Q58@FGaך  G&8Ǟjײ`PoZ[jtͿђ^Ia\ ` f  d9_B|BtU u>ߡU{CZ7ᾄ^ۣԌ$wiTC኿!`z*! և΍pe`C% dj,+n柗p<>2`T2tdtyoユfkObY\A;3A|1Uս(yXZ2vevO 8&uޔ ̐=38tMQkp\J >! *)9R g9j? =(` S=r?!]w] l/<˘xƋv;%C@Px|E"5-KZlF)jq>JG` - +x`.P'obSF鞜79 Kf#T\pKIW,\"fXC3nZ%1@k6|eN~ysqi$M+rN@A#5UAwp{8T/vkتLOoPT"]α3vʙg6n(>ϟ'ʪe+B_ sŢm3*yJy~/enz@ { |q'>7WyOb ܗL+=sISoWBhe,}@ /0SwT!uӥFU[@l2{%-7>IBItI] |&PX5"fa*sv㩽r/߯0)n-@AlCrp@SbbJ&yɜwfLj5LeqHhTI|3΁/-RZbE6(hׇ̻tO U}/YT./%/vB 9bVi9C x9dg{$?2O $m/W| x*F8jÑ=AG*/,&ȉ֕9z'OT;A,EK`^b̮p7KIEG^5i6NVoG "SKz߭-\WP+ HA|Jo3YAG݆x=6сx~1kS7GpC\`Hx]2 鼺c Y"@:ϢTT0m䒤oHm;)@V^dgTimǁ/<*V0B(^8 <{N2~^&.??R[^3Jkb+@L,`^xllWYc{XtNl-D՟N݅Snof^*y~r20{'&Pg)>{Jk8"2,[Y_ d_cm1LN!5P0WN_w&il*.#Plm=kU3;~8%^áA, *ݜٰDP< .e foeқO25\}otS* ӃM6t/{4 k5G-T֋E], 7{DF8m}FyV`w}ɹ {rW%ڱ4 Wʀj 3R'lܺ=%(^ǚy"- oH|2a{#"-h2j)v\]`GL st)Ԛ0^nWqUc/FFfݷpL".6ᆨr5vgAr]8'Sdz?K8"`}RC9l:_"x[Q`זAAP~? S 4FkDr6ڥR> <`qêBdN|Rs?EZMz_V@XrDy(@_Vr\[9ץ+]8QiPw/`\ ZXz|e?g P& 1]D|'6)P3Pn)Z4zۖ'W\wQZ$}R :06(XؤEm N}:x2~3ɆCa++ӨC@e6AknPGۋ G-QSi2ċ_ TERT!шde:fӡĴ, + `-|%-7wA=qdi˴[h'.J>3'~u= oK;3BeI/D1u   UsN8Lk6iqG2&yn;ncfnCiHtWyZq ޲/dJxnPE-;̚e/JurcNXQ ͚_P|aU7v8#GC, ˵=m[Ia&>R]9A\#Og,HJ~b9 0/T?(y") J;aJW-~8WeNۯ"R08!ͭ~c(q@ZH-5ަ|ZTatFѮVn^F>kkF7qH#S0tH"A'h HGIV5(efOa\A1UnT5kZɤZ1>F( tK7@zYlTO_)%*1.v3 ~ßQ A/KtZd9$p9jTu,1_ID0Jwk*MZ md:o4#7@(;ˑ"aA苼mW<#/\sCy_O=X{DsSա'!8=fnG#ۢy!h{RBjZD)`6PAf( = ?vm&B&6t;_׊:Z93&20:]%'4A5-/崚Yqpo3>1A5l91PoD΢OFl~=w 6#s D_M^?P1|%iJ_5< I-pX(s@I\PRܟP1z  Iq,J+^HUKnQ̇AqSJqd0-]iJGsyDݏ_Z"5B)P`X?x瞙hAatS Y"+KKSWI|aU/JO6R3&d1.avQC/o~oP֓\#j#8gW|nw(LQ%R I-*^:$5QsI#d[Mid /h"iZ2TdteqC,6Zw)aѰ Ox/j`ҟ#h-q;#˦gB/V|%MK?:amDG(%1>+6@(4xT P%akXBeJ^*yVscz;?`ü6!d!N6bU{T >/Äa%xN]^I-Yh"Bd *A.&)9eq(>F W/@72.Y=PN8Z 8g{".]㩽h[>k3t` 2gғx?WHyJPu'͘2Uu9nƙ`XƦkFtZ^Rf_'X*{mOj"xAdtDH; \\a;,C)Coݢ7߅'&.U 1| Xu`YCE>Ta]Fm˻:ahRi x?\39=O˰k 4*La(#S9AߢS:sHjq##dDR[q "l!#EO&{fb"Sv< /ZZ?"1ES˄ O΋ԋ3UNi/W=%gAތr>_gl 0ȹ JXtu/sAfsk Ҥ| 0=75)h6ZkL\$k`ohg6$iT<ǁD?qXBX9^&7&8rMN, ֤*=06L:}M^WA^>EԲbkayf\$MӁM9)9jPvtNa"͊\eE#'2q )Ղ~1ZϨ86JqW;q!2"9"eZn!t3Uv4l>RC߶DCBeZESֽ:0ݾ6DlO2O X_lv ,.v(-P*>Y2+dWӿQW' c`zw! fg8Ќi#"E;k&4J窲!<r>\Vl{̃-FzS !@Jp6a;;XUZԞzvyibwgKͩjbð>5dۮzkvH?'mAW-ȗA#|d Wige8=0>$o.}Z=P˨[.Yg,=zQ RKCP5%6-[cWŝ7J6n-[~d| |ji0L ڤEW@ՄaLd $nWhR#R7eQPl0.b@ЦgP+/ZSH_sG4-(eWiE ӿdo0dLU :&@J8Ug(32YpE <۫|lPr֬Ⱦ*z)#+<UG=@pyԹvX([@IIE]8][p )}kS؄m|XDh(7L  FP־J%lZ**eS}I KmFRsh$}pT>_oL)>ߌ0fjRCj>eÊ}l=JcEm·bQ`#EÜKy.MH169Pm($иSeJ[ fjhWd <>r}J^*>L+etjV- {!|?vŋh"w詝7% 5cS_ S Rؕgu ):GtKaLgBwJctћ_;f PK)74fq@oQ>k n tH-Y\a7$:[piAD\E==.-+EwXb5syHЉf:.uO\˜wvєY!uq+]E)XqWZ^\QvGFlxO˲uRH֚aRrVw,yÔag0ձ!SQfW;4@b 搙Y|w90v\ެʷV@YXxrp% &@fb$\)_/g+^!?t#z[-ɖP \->3l h*WUlBΊH`͢"@Nk1p(߇C)D} xiG6 Ra83),,YO+r} s2k m%HR:MX`hRׁaD@yZ%Mzq˜d,r:Ze>!mkK3*fӰT pU FT#gzpnyo.>(oT f%h%kXNK튧DtqUԓ|a]|ۛcT Δ!\h5{l .И>xN$dUMipS_nR FUC/*}eRȖ?YJN$ fKb )tx=Jdyg9yP-҉PmlK*t)B4aa󠣫-Hwİ{>qF.)!8{6:oަzCq~Bu$C AG[ Ց?9Urps$f l3weU48N| 꿐seV.K Jf{w#,mkR6t}|γY*9+3L4,{w+Fefm|HB(wilʢڸ8Gt SBU{R|>TMuǤyRPZ(鞰Cķ忱ij Wbe8}ٳV\+51kRr*.s%+3z#g ?Bf[缎ybX XV Y#1>'# {™5?>@B RcG q!9k.lFw*d^/P>"}0CP` ;&@r6lj;1]R=RQy%6:|vxXUa)NJ?A$gp5Q3MfK2 WH e)Kl/9fCz<ueBP+iWh$:w.OM3`5^MFaNܺC81}\Ѱ\7ǁX'ʿ$b!`".6mJ_K:z ¶+A~'C)!))ltGqWE $}#9U.N3U_%r^]Wro,i@G_T깻X6蘷໛J?(jH z;ʴ鲺tp|W>g *!Dr-GOֽJ9$'8X[P7"mU%;W :XdU%&diV JkguQYqQGEUL)3<ѯf1*RABA'I@RZC~{oMC٥(_'"^@Ӟ'*]9TZ_V43Ҥ6­Nđ[T55\&^f/(o1͜U{4║s~%.Ri0ƠtNJ}1M]{v[h]^7,9؛eVuLJ P+eKu,ڕ2HDޱafR juTs=ޚe`^-K'TW߄rXȽ <JߎAh'k{Eb`2U)},Rx=vﳛ\[;d<4AW6ɧQi+_"OZޫk;ME)E+,n7& qnl'F~"*ؐ:KN6[dЮWooax5eD7h#`R\p{ T-޻3x\a[C}RmH@+͑wBI-ȈuTJ>I1>%|1v"ǣFz6By{:RCqL,C0hh#ǔ T2:.\w7yigal.Ibx:l HN@16#`*/{FkRqЇrzMO<>ߟlIV #A24O?IIW[sCY.ʩ :#4@cל%CP̫ܺU G^:/5xVb/$?bZ5 ]1FD%uZ=3̝ ꭯?=T|" ~#O'.?[`h76}be00W,\2R~Ck(ϫ`5G4@FNsK *`T!8q{[BaCc<~$evpn/)7R7YۋQ!*dܶ!PKQ#lQz}5ARDQ^+# yB!%+OƻKBdVZhi驞2,Yv\UNV&qSL*Nm3_d}^FC *b, s|J(E1kn*,qg =9[W8I[U3PƵuN~%#j>ʏYBݥ`@4H ]a ' Ar4I~'wǸt*QjG_W3 dkԙ|Z# 2ٱCw$U43 &Tj[ws60]<܅rdAPjP\ tBs-߲ WN"OB/W䡀x,/&b!rV>~ɬBYU.%)KC,ďE+u؆#lI)ǩh$D(li{6 gْ@atہjd'ǁgѢǓ S6.X0z  z{/O*aZf#oT :8# ! //+Apf\{:)5 ĞOƵTsR߸ՠj駈rVmὋzn]X;GK{%9滇Ƒ 4ճ,^>-`dbDNɚ=L%G !} @y/l[4"OuZ ͶPf)c7%lBQ0B<ϘNTC p?[ NkIFZRщcG|I\q`_&O2 ض#-~QB155u (~0&+UtǕ8yYrtXNSʗ;gcXAv{ቌSMo"-'iS*(hv)da[دm޳Rq;wC,Y3wsфt[L臿OgLw𕓨J55)s1̓d P 7HnkXh*D#G-On_=HrVޔ +L8-3 v#p t2Œ"QS -ԭ Ϻ HBxK`4z6 h. w'е9V;Ewc*j } v8m5GK;tXmiXw $'/ESnv#2": 5^Q+:1cǷ|Eݞ$h/_%3 @~i%phyjzY3_ )W/s&gHKAVbbP |uJ`3/Y^6(8D1[$*4SEK@rf [l$P'%5r֟kauܶ҄^|_sn L zuP=u^V9TtuI eW2$&tl'6T*CXcTDmW_t * j6UfoF<ŭ@q [s zc;nˆ|f&/>D`b%rx* v`Ru<uOaz:5=U4ľƈ` L @v : ŐiL% S(czԤ] Q~ܦS Tڔ"_=#Av hmu!p)"xQ'NWfrt?3 $Z9 ӼQ%> N:?|qU|=6(.^8୸o1}P@ SEU =d' ?ʈ#յpȐUaӎ `DA%OqKK"~v5Mh*i y}6ݫYv9Xe6Jm~PvI.a"D }8cprtqh`(Ar߉ip_k3X+Mo-óTV(,w9q.!X> fB=Rq0Č9g8rlU}+D!Pݢ}Q%3Ps-`;hJUy>" wдt'a#!K(g=gᗜ| {. *¨a +9VO(ś uo 9GMumvMFaڇl@%%4|ʼn+UShpt:nA2|p Ż//'bΛ{Lx+@trCI8>lH-J,CUX2.7آc|PLdG1jUwb&9z ך7q=&o`?+֑mTl.mjZ~:VUm t$ #ܘ!iX5[+ CmHc7y.z[Iܴ~cfc9]Gk#)-cTN^W ^u(a/e%FO8Zsl1~͏tԋW͍d"W_9ӑoK,>NoPS%oYA wnN ŶӝsIlDw:Vb*mmG CfY `TMA_ ~@|#.[~2#H吾E-KOj9kzX~ Y.3V L>HB{9¸xrb KGʢTuG,bPffʂ߁Dߓx*O$ܭ Ԝ~Ss1\ GXc;}lFys gU(J30gSXTU+yjbNPc\ٴBT;E2aYi @uZ#Z(5TBFȮC?i+xO :RZL}d~$S_3* x XpxPvl,YڿWُı1!œFq9 drxs~y/۲$KۆJ0'ځs^.G Twir,(>ڡ] Yy0["@əiSJH415dQi2A."Q ᙏxc,P0֜m x,UK,93V+ȅcXa~u}k埖G+ #fK0OL~"üWKԽ[`n=.a(6(߸u@wX.$h #GUJodI@-,%"IC uw1>>'ZQ|3ȃ&#tqMIU16\77#nE- ã]Zv_XI%͊d0Enm6P#q YTv$N8BĘf6FnG1c[dp*6&Poa>EU z*}[a܁jN=Gl ]B12v3rSf-lׅ~!u`hO]~$SسْGe#AGe.ۚީv%jd }PDkZ4hJCtevo^_C2+e|aP0qu}fL伷򟞗yH-<DC 6m3Ip!Igi[!!5\I ;Wgܹ\!ߔxD'yU4 5R/"Ĝк_ܞgUP}^oor@rP/'I:#'N- iZDy۹Q2~q loyBc!S(Yȴ<*A!B@zirۘ[oLMđ[=q.pr$h"V5nxKX"o65Tz0q A;k2e)ǿ? nx7/ }twpꂲmKSt0Mx$h -rMZ5 W>Q%r'ɑ'{\bWlkx -q8fb4*_z8ȱda k\qGSwՈ_EIʎ0]5gn,Iٴ}Ng )ã~g=a+:o>\ z6hD -Y8 sC[(y$`f] /;6W[I(k3>e›` #I.J;/V$V0oeU "_E{oATݴڋ`O䷦Kڅm-dx >{9ǰi08YFgNr,iF[c5,4_4> -,'`EpԒHD-öqT U5e0x$k}nK_'ϵ}i5ihICo#4AG\:"̲@RW-i8yX{S%̷Ig4*& R5iIZ.qBD1R~|r{7$Bbk(_5)4O*Z pFAhU+4^"mxDftp/Nd-T{QZY';&U6_1;817(q@z! eFB)K$߆(Lxfk@kb%BDvvr}2+38*ܳG < ow!Ea7`E_.f3x'p8s|j4dCSRsĩ7riIíZoJl ւyMXPEuo[\>M w)(Y<]ڽg(OU8:ߵ{Z ]5S8rih|yM 岽?(E[XyuM&uXoЏG+V#tCI:PW, `G >:@Ew?wsr`A$6\FHDGFdD`b-[R[[, zR֝ i|ЦNQK?@^o&꽭3MOӪ :0*YP~)V=k.ct%a*w~'8 mwk\'}ӿԲDۃrd"l zڱ`se?jɹBpCfetCAy%+@>Iz$7-J,oqjhfwgB \:}LGnV ^Lx/EuyMBK0nΒb 4[E6W}V\I[A/Z.bA؀-y>ezi|b#R `(|o~ם>TA-  rg'-+'o~s V ~V =,Had.@9T׃jp<kz+t)fDY̻FbmnTl/]堞9tH/4& }b1J$s_l!o ߙ-@D2* wƤ='z\TBv=t1KSd@sѵ|Ci-Ջz$ nᒉ'=Mb^`$JE 9 f~t!]y(K` a#evDn  5*+ydYҷNZ#`40 "WLCtO[`.z\n GܹΖ ^#:@7);FSZ-<CH[39Q)'=8~GQq9Z8ƒxcN$ĄrjiNPTg9Ft79FգK\v[w!(!V@]2L(>@g]+}%x=6nzl2&QX'FO#c5 ^?r`m Ǜ!|ǗP ]Z  ALqV+kؙ.= i9=4k9{\'6?0ùn-02-1g}0Cu#ȕ<$=w\ax 0$%be|E!c\ʥUtDEHE:Sfo]w*55T^ñ<\^ߨ Xr&*JIR+%^;IdGEU\oؐdr-҈"5>[C g8V̚J~'[F(<8l{_)Vb]B=J:`&w[%ٙ  Nb`bEI?ҩ[4/ݸ흥?^!"Z;61ow#g(sc:`g^:Fۋ 4֍ŵc:v,&Z$w^a'|sL@R9>ZvBDc@ecW! [f9nrf41SW<9;n"B4HWi$JIn]N /Zc:HN&n5H=pDReVϛ0GQtRnZ<)V߇P%<>sQ2݊4gƍuƺGdڇݶ!?1n2L w;x!6WF-?V2N#{ѡ`5{={}JU`HLuh盤lQgwcޚ̬JK+mz/Aǵ, z~9nm&]Ι6@d3Ĕ-ڂ%e3Pz.Bt|  Bx1!GoCH؂A{DcI !u(J*Bٱ^}F0V P@6p (q.D")H`ZpCKRnUT/e%,Dd\|cs}3~$"@D~4t=y*j%Uu&aY^0á-N!U&tl(+P\^d j;I)c b*m*G!wi%HO$*Ar̩(,R傯cY_r08/8GgBOMk8ӻɨkU\Q G誽bTI #rW7ԲFVnmG0΀_28'{[ۣ ȅ\t%C$_}\+:iPpдuŚ5scBϣ;`tj(KbN;'J`f-L)Zɢq\bxp(EdmToҭ+tr.5%c9d:XO97L|Eo"UJӳxS uq GP[E&:1Ǿ؁,Dd=ź@ަ(mo|jG23Q =Hov|~?|3lץt)A57durW1nOU .8ņT$ xcY)y<w^_i6H|a6x  \\).r3v@x^7QD=Ӧg?l4LTooH@ΛXVzWpYBo}>`?zuqQ6]xRͥ\4.`ι[x~)`$ɟ -pfj!gꪛFy*ubQ9KU>E6^#=;XNB)l緤(;QzQBjOrc YJ5N>-uV؊e>l xɃf3a߳%~H8B͟$G98+0Lβx Ͳ *;e!nGpp#*1 2Im8?ͬ3-'qA–Y~zwbx$SmT˵=+rړoHqm[㮹ٟ7s!iIS%gd}z;$$TM&ߔ|h|SP@i현%#.rtˊ5ӝ ti =hY^l`LJLYB;h>_kh$aglp4w¼y/t3: ![\(vpw u'uJU!Wru]GZ|wY1ӭOnz䆘 z>7J&[a_jBX|XD"{o%G[&-v3ʁ?Q4-r`5"f`?]!xQwH%ZZ.b v>;zmw#c bz=hAVS/[ z?!/Hvl KĈ}k;uzHs@@:1ڸxݎD6Qߞv ͢ՇQPCr»p4*&Ot3 $uB]"vkjc DJh74x{"OpU&t1ѕ3]~I/!bxMX7..8PZ ͗=?U)X*.p'xףp7|9{~]"Wx#Ȏ`? G2\UaX;_6$Mg-H'v '^Gr 'XW4!|8 Awl6|i[( ijTNl"MJP}eTeGl<-~Ƭ!]xK%MyW 64G݊` @f `Aꐰ2HWTCdQk; zdR@fOe( ;Tn'dz -gxpxo;-ne5) r=J 0gz9Hi%|?d^ѩkG0)#S.ȢAT` |tN~L_L7cJm]yd›%;Dt % oӡ9/@nՋT&` K+!c;6L$ < q S@ o 3ZofPY?Q`^!oMdllQvOO8ɖ8ܡδχڵϠ0y'-j\{K-?Q{vho<غ^ ECsF8H #ݔ+ݖc}:Z7ֺ@d@iX:Gsʍ)rIv'H}6n{{r?NU:Fտ%4zdYH'd-˺VlE ‡]K!8?~)$G#{)0_WxܛF("RIxNJ;ͦ)kJ;x2?8 E>|^`fŇ3@/Zw䶙tꣅL|~&GeGy6Vttb/O+jgI2M5ց\˾ ?{Wuwc.^l:ʾ]h701 FkLr=*)*[6)%p b;WmM>()>nYé.#ᢦW!.q;Kj[jZ>gN":I9,@S^wszY`'3)\?5AQ 0sPuJG9ciQhE dɍ:۩"MSNHe>¨F|҇$]/ԩZԐ/Niv@3lDb+_/ E{m rw]^hv,te$fGFpV[x[Er~.F)!l ARXgߒNd=SIx?EuVR-!״1pNb9TS_u ux?[^>6 {XmAT v:>$>Ի};0 ݠVFH%P=V:YhCtƩWYnW2}P}6w(-iezdz%biz z+Nx٧W'[g`谩W!{l@CRV(nD+:d =y}[0(Ķ72=VK#T뉅1VOҌ JJq^ni~,TlW;= Hz|I}W5 5Fđ] [g`E`V׺jL>Ix/Jkɏiq}F ^`ȮO6$PtmT"t.)hG'ZXk,ӂ0n$/sB/OKU|e`kT%Ր Ő 9q,ܥo?]9iI\x|L*䢡g7PBR^r*z 'qŇ+xpSPb>mdهhPpiJfg@4 &A4Sȶv\lD^ Q1 ]IGN C?aJx! Eq7Hj =oߏt_ x$"ʮCo9 0Wɨf}4̂i 2a87#Tb RnRK0>vp_.)шmarDC쪬eK=p]U^h>d]V;>I|>8H*=hS#w={5%sltaIqx* -#\(`go'+cLBAQ @JHQK+Kv^/tlDVޞb7esƢZzSH\TZ+kPEC3v!gmB.ߎ- m@@S)fQchZ5 ._ D-h BZvv晒wT:s;a h\L۳&8dh!X01FT/{N?M7y Wa?1n=3lzXFoB,@ 7!?Yr"(ޫ uYSor iX&!TvD@:yԀ6(t׉Zk OD4Om+vX#X $jI8yA3Iswh1Nw7Jz*j !6Tw_l_a,%Mښ3q4kcÑiPB4i^R9i(Yrb07֩o( NZ$EC[ͽH)məOt%8i&s!JFktiNR-%[9AEXͿ P 9UՏ5[D_C%ǩ|+D< (x8O|Fs6YJNe.@D4x|_l5}qO7FIy]dZ{pmMLƱ5!Pcp ϓ?+Y+,@m2 鋘ض+*Tzm1L3™s=ճ̦?w:h$<hAN/hen_ ?Kv[ni0RHTOʐ w# q < >;sZnWʦL W {)3p&Eʓh8m䃨t93H淊_,t&и7gQ=)⇦CgaV S4!N4`<+ya}ZF55A/{΢GTWLk%~3|RCj!\L^oT~[Ne(`}wz(_R!/ H=ԥ<"{ă?V LjН= 'ʥ`R 9qn_;'͟@; =\ L*DmF!+p ūWF!zK~OT%Y1=O##[|V~kdlWjh\@E)ڿTiA.1ND!*.l/>}waatߥaEME{:o2XrYN`Q@fۙ!d6zڋ M ()!OX^hǨimq;~ D$sׇp P1()\kik05{f_U`w˟R}e7U/SFT5d?.q` zY jI%u!4|S6V|̉!fj_"oJj&U nDqeЕ7A\Ȩ[)<-*W[B\!UXUGlfJL#A[?ަ͟ 7R,]R#"6|mbƠk8!G #/Yiox-ꤩp[m#5?YED^F9r'UBfǍJ3ckV 1 bڟQHR tBc=ZFȨۀH0/"A~TS0),oSJ[&CK3pe"3Y%gf"IKNaZ 7>\mzGX5uf _)/XUnVcm},h;8 3 4:^êIs\w~evUz4db ס @s@ֻHb</ƫ4JŶwkX8/ѯViyf2u7n׵jay`tWx0fm!U:Vu`98F > AC7B.RɐV"h:͗tik<Fg=vb%W]X]Ȓ1s 3laMЌvE!{nE+@$0}6s٠tRFlITG{+,hݮ.º٥DK+R᳗pÅ['ewvp>ר- c3V;+B1(!gqt{)^I+NQ8Iesl<tc !ɍY@'{*Wo<:*92xѳ< |R^9A3a uXŭƪen8sC+`=3ѷ(fF-uR08x_\BQ&W,Lg%#re *ͺ/ࢇ&oI``]LO7N&甫y ~oBo;q\dME4r%(8ůmEye5ia3ЮXc`EDnC& |JP O$T62>ߚ V΋y\ټ">nUlSڌ`άISfP ;?-8%X5ߘZ3'ws 4C鐎ct }#nYe"q0[=cC"U9CܜٛW&.M $  0Ӏՙx݀8βQf #Ɛ?:AQׄo}bw;cjfIJ$1IAh*!̀0w#cdvE f);9P4]8JU9GZ (,..r2:PJW"Di?1S܈Mo_;PINJϩ)Y}V®)j}1M䧅2ddd_ kԳx&[K߹h:K8J1 Bia_?7vBwD6AJ;OY43ig[ײ. S>:h&Eʖ_X zUِ9GM8ZORʃ, W$Pi݂{#z\cq}:HE 7x7=%ywok %zn+P\p Ct+<__;[T5(+sBs.\ltή$Ϥ!UxM;M*;=å;jx[zBIhDG FIRܬ]kJ"; ʤV4~[Q3heV\68Nr @\z N:ѵCOo\)#G+aC}?T9 mMB¢S2:I~|uM K1.!ƒ[tx?O|hȡQP~]>09l b -U!0mBV}>i ~g4 WRק})nFy &ՌXEOXKh8p\t3%2k_mg!RȾbub W{O@ޮv] \|T Jʛ41P[y7]1xa]x}l'*$0r9=BdGm=Wh2dy;`'%ٻ(*4]@< -*ڶG}t5Z+HGy^?G)ekjTQ-}4xWeU1h, /@5܎lw#)`4"ŏl XR!jT&" zKx9ǶIx-#|=R.K4cv"i;#^= < <c(,?28M7PU32>튐}L6*|*~vU)4̼݁v 鰂Z>`WYw =骉}/{A [~. #D_QyKb'5ˀblKXE&8gBh1#4bu%èVW5Fg@iG𬄜uΙ :ʽ;H N-; ȧi forS=/VCq z_B Z#sQO=J?0ctj-bXgiQ`&nxPao}(cc|PjHl?dl`bx,iY &DNmTr5@{&mq9 ebT7^mei*dɅ!p,:'1-v'oC#[i#D[6m#wxD}LдM/4:͑xg%Y*l,|q<)CYI]Zg;冘T.swDWck3^D,)F4<#H%ov8mvjcؐju`"*Q_"_:#ʐ1.W:o-iT;ѭnRπ0 r0*.5t@bSAyyM!|TH?$"R+Tz1!;*,58K-K%cV4؋@O7̀MNEb|0NKvPܞeć s-@mAe>w4@7ǽ"jY4|?Cmr}RǟIAs1! Gjcv9UM38i3p'a#5fUp6C A1*[}!5ZSMAz$(eiE~?}bW\Wlg3i/{)MZK`Y;^?k׭-SXg,](e^95θJێQR1~]Gyb5MeH'53/dVi_xQGOb(.'"oD!_oGrv_8>#6 / ϻCvtߔ /?A\z *X¯doKY;!ep [ up'+bコ6idEcAzBSTa/(gmWp,1Ŕ#}Ƣy;)_>]k`"v&Eڴa6A y {Ԧad> h$[ գ~k>p,Q]I t+-"uI:廁ӟ V9e P YV[B_D9ʖ?O}/8+-a܇wŸ0TQTKgFeOvEҞk 6tD~uͥ&=[3& jdƆEMC@s04M߄6+7Y 39 AnhPSmf vyuhllKr^8+w)q&c ff(ygV oT;-zf耭{ sS8itם^Kv9K7$I`g, K*e?A5H[G}v%/PHLDE 4',%(zZSGMr,5.}3x.4Qzl"0%‡SLE/]{ ;r;Er4V<:,:tfGĭ*\x 7͊@`Qk*p|!(;3V@ˮ͇Jggġ]&:o@y =1/3 {M˜xk<3B/`y>n]Y^2W%c_˙VIA` c Fǎ&$Z@_߷H9LMS#rɿ`῞y%\NJD"qgsPBgM7V1 ?%Cpk[(3QFM.I&-q^e p aVC> ]@k^)[cMŻ uL: z+oy?+H;HZz;8umEaj:uu{ -TuBzAI$?ryx(~":BQqKf~P3 >5FEFaJozMu$EŹn>U}auֈV0 JPr/;%a?~Ş/M=O`K 3v2eڢ 2`@`y<r-.ϦS.ϱTD%ݏ#`<ƜT ^d-L6Вk=4dI쯊Qy"8ԓ-DGL"jaR~SLȌF=P( ʩO}$`g|ѿΖҺXBzC0O'ˋCNtrP,Qy@"ϧ ]>q,@C<h2:.s-y΍ 0<\i[A~hIavdݠ( 6nmDq)j}M۲ UQ%n:AɅ +^IQ_ pW;,*4eT=qGVc _tC-sUgT#O-lG?Z6Oϻ9)H'',Cxs( AW̰<2"_b8zL (n 8c:d6Yiv挖wt9:m'ABWVͥWԙK+%F.R$ۈBk;@S֗pcC92"塯%xjtp7+E 9n>F![[]V_Oۯ/Ё6oAo3Ū"V=29=Ugy["DE=3%oB#i6*iHqJXWaӥ9t U,(+ŕBZb7C{A,R9*ƂLx$р^, |hYɾ2]KM|ܜŔ\Z%CgAʹ_8.l[5qo"8Љ￲.GofQ*αLP(oT- |+;:B1D3.v0N\L``V(iN>Y`e~8ٞ%sdPANcJ C\]ĩ0U4pa5&a6]Ws0Y`iȟxfZ[3`ZDzvT/nT=5@S>R +p=PRaQD_}X=2_I߲3(I0Q&کe;&rKr_MM%6ЩdCWMq)3lXxSC;ѫ˴Ifq*X=l1kNflkK] V^چ]Pi@ l4?N7ƅV62&:6,-Ŝ‡&! ZcMc)xk5ȾVUFS;au]N#z&@1{ҷ q))y ZJeaQ.POkVGk !y I~rlid]wH7X府&|[@Y Tu*i(ɹN*2{hPSRz" O :h]Ϳ`{fH@} i|,梭:c14zbF~q(ޞ3`NsmhsȲ*y3n] :fIplfoN)B/~B{%|*O~8D3x$NX7PLGJ8gxҟ垸QUzx$hjtP-Z{yVI{Y*wfs!u'}Fw5<-tTҀèm\(U?N~YdTw5 n)\~J`A `R3EMEfȆPI_vn]oUZ֬C1 O?Yvʗ:PLD_Ѐ5j ɦP;;3L*$HtM ٨PSnfڰ^A'`NgYFsN4oz@Po4Zs9#VT'9ԙwT|V A[.^'±1tp{ԝ ٠K4BOX*D֩10~\Y{9N17 Gj"d))}Ѐf(tšƤ`VK16MT+p"T4AWY*X;40Y6:5],(cp&^ױ$ͦOˣiL֏EF%X:<@Q9Ǖ{,_-Z"o 7tc3 WVx~9O 8Bh0w!Tl1 *rDE ߧPR•ɞ,(J:m3JwO/Qj3IM>񭡎Z-¬RG5L|nX' dY0Z>~9~gF6igD |޲ƶCZŗ@ v9qΉJGyr3ly%'#ǹ8G vP 'Fo"J/4J3f<Wx_D ) UUVqf[ 6,pM/ñ-ۨ.| ex Adwu՟h؞R=+_ٲzM~7P&l;MĠy)>$uJ01!@T{*vSt&fRjBjnP"褾#wRWm.lhDyUF]I+ft>Vta ,R8˚-\S= /,%ndMH+I>T^06S?^1뷴S&qOV40s4eUڠ7阹4Wo ]-k4=!67u;⣪΋tTZӪ*g Bu|D"$XɨQ0'{Ts q %E礒B焎n+^5C7k3#tD>;EI㙂"ΨLtίכgK=|?n4l"z.B_SX̩BgEku^<_-!WR߽G{"iBd/õlYNswmvӈAbw~f5w9=)Gtpk|e͎$vytdeg/{[̰Rmro8 -h7JB0Do9BtvB~8^[lrQכŲh2{1-\I Cm9!gB 6B B%|DAqA 4 1FEO-eղ.3: ԹZB1Zc]l mؿeES ;*2L!&nx<+D"ՏM8nZIpe,k 1`C2+;`Hi%=X>V "3ygO 8[51sg< ԄPCq&#Hk?4 kC3m/xJ } >UAE]LC>t`K)]~\Rˢ2{F/~d M=gUn5))=}(H ObL%!3dut1 泳ćÐ'g%;Eҧ|$n<7O_?ZWz i85Wˆ~&˭pGV1 ?}C9 %(Gf2.Yx% $2Jlgp_YZa)lJa}4ߋ7z₃7*p:O b|BFikk"Q\O>4ڹƟ\m,q^1ɃtްGT6cmt8 \˩TɱRiaCjejrQYl ~9 ,mmf?x2`)/UTEU#Zf`5mDVI'O@䊞,bj<Ԫ%0m rG?H+߲ڝN`VBHl69.h\86E R)=6?E%V-ov\ί~57rF]2*yDzQ-7,?' )yCCsIR@fri rwy f7oѵ9R1ωqr|Eо Ѡ;S U%Q{QCrjhu[;ۿTaI#%b`܁?nGAr!;[:_~wU8j-.6`E"dA^y|֑ mf$l+<Ʌ7@=Apܰ ]El=ԏ %pHFsh믊Ux5OD]WD .%)țcmV ver=nPBc gfglbB{6CfI1ͧ\YQ`gKnƧ Kp. ovD$7h48H8MuN+ΪrD 2/AoOXx Lvmfqn ?_yYEٖPL&$=v/,z6 =I",X'>(37mXjn."5BDdNj+G96׎a+sC [ >oYS; *.z3;S>W ==bCFOe#0̃_!u#u/ld2IA9#NeFɹjW3:9dvt<}8Y'vl=5;9#H2́;Q&t`s4V~W232#4qre9KYtE@kV0MMPJ{x|53w抾ΈStTBP4Sd |ᶖj^*ӚGuJȌ'KXЙo .l8 \W6۬!_MLfbm:M;V(w~Єghť61qR-hQ'X.5//v }:`Yv,8(r, CƎΔ12{R2|6MˮqT?T:IIw>MnJy&` mt)yٵ2lņ3v2KU#nDY<1<w=4Yԯ>Yiha8/gK+N7.ǢA}C|/;eh_>X|'j.vj|{^#8Qt RKkBD,̰T@r,U5Ni[0LlqᵙD@9J ؋EA=`J*NUޑDNgP: /l%IR3ע0kyevA0t.̭s{4@c{H.OS)AܨDC Yz^U,W6R|1HTs+Q&W7jjT.4ĨhJIR)r$vӒ>im-ydmJ_oםbHށf'$)]Bx~|T3)~/6}dR˘?K,5@Sxm<6RH4ۗh4H+B_^ Wn2]Q$tR!HN Ce_V F00t]p i T4|,_H3s"_=[aa6|h(mT^R]a v ڨ'^ ,5Ԣ}yQjhԬV'܃`P/bY^sa|tOaq9,v׸Oyyr͉^-t<o>=$0قf uJ5#פxIc-:tޛA.}ș>NfpRZο q@A~u&e) V> /sjej:C!aUFbg{')1EJ&VHIFIg6c]qظw[_7悵eJf?BMHMA?H"owc"TNɊ{EC˼ˮpIʾeۨKZNîTk-La1 +/]ߔÚNơzRu(xӿN^,3vJ"pZ''%IK 8$vj& 9}QIōԧNU8k ?s0dv 9CJF<ś71 fW^-dKP?1ѓQzuw3T~ljG,n_lB$sH ,7|kKTIIY@Ll[6盘7Zo~5ՊGtC -9 'z QĖ3$j4mi%oL2Vl 1T׵ [׬2>Y B擁'dsiy+\_a=P۫|^M1zJTKT /^Mؚ'xM[lI*Gi[ q9G`D7PB 7 ?̸ 9[)w~ۙ_g;=__ G^Sy3]A#\Nz !%*<-jr\cGQv:_- 5K o J_eXUN6&$e(kC6! lOs9gjB0:AGG\;@ג2 R') n@mn*b2͐q;ONװBhIS R8e.cCC/T fq`KM;oݺGi} SNQ"DpeDti*&?>1CUz&"0O)SVK܊%9Idqtʖÿߓy'ndnm ~3gT'{xS.U+TѡI&!z14KFW}wJKFA494zǜ`QMv.ܒuжc R򁙭-=\/,mxP:^ EAwK;ur 2,OO$@O:j_*oY&`ӛ4$•oWKYF.F*|Q'{A+~y03iΖK*%UU~3EQٴcIuck׺˱°򊍒7˜ 6(XB> ne5O{:̩ͷvR8bb$aK'dj8GGwAb:c,ﵺ FSۀ7 ]Mȩ:9: 4N7 N2!Jr,ju>Sc] M/!:lN&×ŌG~zSjFtiKh nm;B(x! ~ C5xCs֌&稿Cr(f5~X/$[Ĺ aiIH[A`C, `! @^\c< :isgW L Qw''W^o`O3]p_5сG:E$`e`3a&u#}Nk+ևu˴]"nɥ3G?+^[0 zql>|p,UYV91b rrfYy* _@'}/>r'e-dwK(ǝQ]?rЬ* ER[VJu.yg" i?6bs>{p ظzޑfS͏5}@%"E~_G!rRȦL>"&\v?I@d0r;uoױK ]ATVZI3ԓp} QVӗgNұ=,u8z~ր@R o-!KJ[;=\"5d8;i-{9QC@|S(_P!S0ZE:FNI_n{_N%{R6;9寬`tD疧Z|qMyn.͹'a౟rg9BxtTD]@1}JT-DKۧr:_.glh_ rǖBwxdYn3\ =@83W9,9wsS=@3L=78wXj=m1- qhP4aZXķ'JJʝ+IMq+#c)ҠdMlGu'<~\Iµ{@￳3lt Rfw(|$W+PV$1&jnmX#Q/%9+rr:D(HMX$(.?1EXK?e^WmGx7^ \qtSgtjr}IRh~rpnpWzr^o^rg(u:+ V|;w ș t[^y:jfQUu=GnHG\n1%(rS:BC& -dcNu@p:-hxD{N$m\%!Tsm"z~@[9]kG6 `fh%ϛeD/hRd%AKgF hi|ɾ"6[SإK}[YDwo@xx:!*|XiN)] 3@!Őz:?[0.fIj #(*"hοķ!WWcu?9uƜN|i!D6VTqz(j;EOG-dǓb#5/!B78')?$AaoZ1H ;G mm P^hR@S8K])w*" Nŋ1(M dr6nՄWa}8^/uAӨWfl=mdxi$*╘ܨK`cld>Wc/&1͵Ƃ3q-]Ap=g>E^]psdL ָ{/lCLIVg/9$|BAX-c ,[&R p_֜c>Qdrn: Mއ>:Mu5ʼ&A|IekD35 o N/>',hBe)SqbۄYyfߩ !W2YH|Gi5ӃKà{cJ$W‚ |Ј]>"xa3OHyuDZVwdi2qQhX1ZhOfho[;`n`AOPc'_0x*݈N-Me-=w =I ٩|G_CDoYB+>Coi,GIbV$fzK;nQLT:5Qw>T;yr }c2ݘuo>qAj:U j]O}obs2s읇5$$QQjww4a2cm$Nے c5cܛz̝YSVXvJ, *OjyE5 V pd1IFDB'xAӔp23ga;Qa|r[Ѹ(-hxq/?VX$(ODZa%}o|E: ~`A4X(}L{N@¾{˻":~OR&+!$n/\'ㄸ̘W~|Z psD|5 Frp٩gWHKLx*R`rLnyw.$_ a̦Fa*Ln1"w)Z2\BR w=orW?TUQ৹x rCS"c;g?e2O kCLÛ( \g=Ehn0EG39Z{PMT*4hHd]N5ˮzҾ/z0I~]p7"@KpY\-c1ʉ 1#6>8J~𣵋,k`^By@_%O O1<$f*BSMα꜅,O0Җgj0񔎉xxk}lNjślh h^HuD⬶OHoQKZSr"Q;1֊dYbpFC sOF1ie|v-oP(PL1lv`&yY5]3"zLnnO(aD,srF /_SSF7/; CMá:4hd}޶rRrKyx:|p|É|J I.gA7HI<$qÈpFBeٱCy1c$.z@(bx3 #r@YE 0/<-9ugKoZ:!C)^kղudޯD~9p#heK7LA~R(zrmo%N D- =?騠z h'G"/d 3de2%]]B- {xt$ywHu-I럏Ӗs-4HϠWTbiǹm =CWԉ2m.(mf&mQ}F4,=+}4pCz.z_[ F@zmP/ˏgHݺ晸/2Cb~;G$_3kmONͩB^3ľoz|t5g1]~: WXLFV(.tycTRzU&,J]"A@B9Gf~~ZhtA>۝vp&_(\ h3"^gWxʮ2Kb#&w5oB` $`TTa}jOu O[tzM/RH¬wZT&rbY1 R1I*\ܚе2aҘAֆvnu5F`̜wZb ('a[SȠliӘm"ƈqEiȐI/%3E0"76&pԋKyѴy5Hho} Kp$&i-zOjY%ɾc$ps@tIOGOUnQUG9QveU1Y `!ﶊׁh]M`vtP> < S:I=盀ZROIgs|ك<~ŕ\9jZջɰ`_zȱO=5߰RYb-N 1x61םUmJeW'tD;HL:%wFr9 x,53cݗ6er8Oh qw T;5\ dbAݼusZg̝`/q *jATCn 3I\:wW'_(M4i@;I:#>+6x[Fk Z묹5cl^ |%.58f !%a;cOD% 6jbKA2fon'ttZ_`y31FF2}G:c5A5BjMBO6]LNY&dUƕuvz0tU妚MyDgViĥAL<XP!;> nRh~RCbf~ h[5;|)PBX(FV1/kDx/+ =3P{a ^6+a%<1cb޴anWQS0ݡ?/~SeXkcX9nBqICIǂ_xDfIa54 3@։;l3u_T9O$g9ʼnwhJݰ0\&$13q+`P߸ޕAt Mw {>6toQ=^Y69UPj ~C >'7 ޘiOh<ѠF!i 31l]$DG?xh=>CN`Iy@0@SSdC A˞@v&l#~{:$/gξ"aL)UywTrG`{ m3tL~pv0,y:|\ߔ!0#Nڨ* ,=Ѣ+c/. dLSÕlm4?DXE* ^ ^3} Bc9MbBvnë PHyWFDd!ttP~:ibu' PަÒU5]{NYFL>Ԕ|r0c .ungy:,pZg-nbguUVǡGp\{[e8eSB 0 Na\0L+R3u C<Sx{㟯۔̵C_Oxw(U|!o9%s, 'DZn( fmZĸr*?: ʷ(:v+xMte+c!V}w&^"Ogm<Ыˣ6- 4BEa=Nz9 ,´\ް&M ~ӆyɊnT *R0;듁mc^+< ou_Ӳκ2\0MsjuxWY}DЋw "HXb?T[5YZUI)}:>p+0r] nb0wQ}9ʖ'XA,J/dp'6,FO?ۃv{ߔH]U$I|4Ĩ)B@t-cۗ. )' !spf,35W~9`st4H`,;"g'OZâ Fr_lSOeyOpKݴ8Ih?d!hE2A_>lk,մ;%s,Z8__NѽOcJ uV.R0`esgfzA #ǑP?sq(*n3&!E8Ĥ^Yze =kqur~;*:yYu#ʍۥ jWet3uZ@Ux^~@fҹ.GൄpkԎ~odwԬI, lr`o*;SیxS/"?в5ί-sN"`Z`60< J_ξ..E~I(^rC)ODkaĸS}}Q5Q#òA2Mfw6|YW1ri@jFR-XT2ocKF03zKD"$T pv$4_hOhci8>/I`UR*^DtjuTI+s!]Cn:di\oe1Zi#k°=aAwO4EşC)*88mN܈`ʯ"CaPe,'QWy:QxRxߋ |[-!n8e>}L%'U[7ҹ,-LTK2ݏUt 7:W} )B$Y$$ .ﲄiOP Rz*8u?_0Qౡc{k .`̠L|@3u*:nRGQ1Fw~FB˱ zvX&XPDTA˩}M p ~wn_R n#Wۉabl0)RKaWuTicK%~Id:y>j\F;}U(BF{yT'DzYz~ tUoUA{,n9 8t16K WL5ͩ]6o9o +M^tvJ[uӴh"Bv2M5z6Z:mmcC2 <}Bfvx^!rWo'4v`Je܍wOСdu#?o/Ɋ؛XD$HWK)[ $jWE B6J: n7ІdIܯBR%"nh4IVܴk}`TssRw=;l*jMb!J#BRh[ o1=}Aw^iDʀxƶy ҙGd]aX}(HlC"ƈѹhIB AjLHP-ZAprss=]Pb(|y39=QzYK(~jQZh 1kʿ|ʤo0XpxBvl# ͋:3Ma=mЁ9<J/3G~L],?r`]Ew_up]>CP| s;I*(.qa}«G*cE$y*>x*Rx~3_ bO6&_wJt4 /Y`^P,ɹo. B,D 瀶K+?fľqS]wVDX:Ӗ eQq:2Ry%HȩBA%CVɬ_ ;?> #·Z֌d7V iIY>6t!!Ӽ,0 dZ8L۬;}"*ԮTo7Cel6t= 5BѺwG 뉞0w^0=NsBj6L{=/B3@O?]0]r$*1`>A_bmYkK.sa*~~o,cۧRhstQgUpWf-9؉9o G& fY?y2Ǘc&~KG4&}zᤨr knT40t9.`ZqvE? ILRi;l,< ;FsOT>u_7 NniaQ;ܲFAHVy5h`rlSJjEZ#`پ.WG(EnU0U<"Qa Gs>8MM+.:YD˞YBI¿-C4zGXxꪫ1ۭ69  R(yhrf%uVTL/V؊V6WTEreM݅9#)e=zD&qq.B'-4ީ5;8 4`&VcTs!,8脤)liOlx)EQ-ƓITOU? ;lCojLeRNqBd~^ Te .3$lǚ*S= *ΙeSKeW3D$% 3Fы vQB;;+320p<ϳwZͅRnL9:|X6TjeFB_=akP4QXI;ʹ[5tFT PGI=<̹-l,*0BW&pf1QGOu"9ǜ^4L^l 2X(NѤbeYci#{Q^{Uv++ .VUf0P KsUegƬRPƏ9 aT_S#{ >|'z) &WWGӫ66(^$7c"">YO/emL2+zcq7rz_O:~Xx0Íah<)שV> P6eeP5! s5sV.7{ū[W]+#4W$&Ud&Eq"(8yUs^ Ae(K&^A4u Aveۏhz&oajg $a[Bv>F ܘK!]h?crA]mUEd9LQ`-wL"v#T- )5fdI=q))"ke*ۻ09 lJk)!,f }8μ߀' D+ي{IҾsy#E";8צM®eݓ*8X9 /56 aqjbV}dC5ZŻPMK*p0f2lF`F>o8[;C/ FȤ._r~W^ HCjA/\=ߔoI"m/#(+hl60IqM"Aym%#xwwKb~̙{IL-"uD$$+# ͜#Rzjc!^1-')IE2nMަ+#aXQ܋|<~E}7[yG]ЃYN{8>~Ey#@䝛TU~6u'\!N#@!N {['0ˑeɧ/bTeU+'(--##ȰTgLg@ Zq~a)X4mٝMPh@ :%GAM24&12bAh64'D#'FV'ߐo"Z~^ᰠ9/xazc4Vl`1e",R"&pAW9TG kU'g6%)Ji򑢱u]/0>!D7&7M.ӽVka!IS*KX]뽾jZ`vQr &${PVOᫌA U[Ac@̈́B#.]H6IۯF ?@IC΁"lnwePD\2(BGÃgX`y"uɡv r(4M=N*Ef-g4j%L  5q{[Ab<_ki^hŗBhh3B ,dqe#iꩋ^U~Y՚9[|1gkH/Wg&t[xi%"C< azHLיUk8:0k+ |FYu޵>ƛsorX)ȞS5;cfw߸|v7y7WZߵ"Ta:Pw6&Z*A. 08  QcJ]$NK,xūp$hisW.->wdo bozlpn,$p8 ’ڟS ǎ݌8b~ՙ7sp-O6(p769A?N ڗ.#BՁI X6Rbh:.,pSui&lԮ(K?fZ މVN;ZMv֜V}>0,69a,5R"ſ xb-?&o߶I\h?h{ƿp88bE^D-,XbQ鵦`ΫֽH*{aR*cmÇš^?D@a\P2-G+L&~Rk;5*FIp1 Y!,SV]HVİ_ʓ+N9p?D$A5p-bd*հ=['9#(UNv*2_צqZp[CLB{{ᥠ$&!o\ v^_Q]>,xŶd)G!Z͎pB-DO%/;Z[ۭ<bƱ'Ǚ%Dp<fu$+*7?݂ߔ).Y.: iz&..5 'R#zJ ObN>ZCOr+hʅVXba{gZe.J9zV%S>v7"$*1E1zcLdNalsj-,7ꦚJN\De7"I#6_&54 i(~(sXEC!~^ӱYsƟ a,c4ZaBQE*PE'MqfSW]vMߧp1Ō2`OM;l#%_ﮀH" Tkkcﳸ&=2zT0@Ok 6i `L`Y<օr~`D '.l.4m{bi]Džhh|NxwɸJ{pF|تlIC/b9@c lC4{⋬#00Qeѐ`y!UR3F~1$C#iFhMKb<uDơ ͞4 )VwEt`7AU8.&C zunI[(02 ױw5t H!Y *Hh7gL2am>@{GlzFP"7'>Ơ^'(tEhXQcfŸRe8߇`TSh#^)9^]9s-Y=-zHş)J=/ $SL+GCƥ #([>.abܖۋ8o&'`ߦVszE%`)*Gڕm$!pp@;?/^>;&}7@B/bO..| Uc |wo㭍.tR4M?w!I⣇1nqj9гkFbL0M}M0mc\?̪~d&"Y=A~DoD3XU9VR>y|!T=7dj iw2=k34߿?)Χ@; u򤜂-EF߈+9\phljWHfV^kbQ 8Taa|B?k +dO mH~Âj'̄Gf`cKq>GcۘJEU[F0]3dc79e nV;u˯Ac1~?"mEVHc;a] 9*!pE3SG*?+{C\ƭu[ybABAHaB|Q:vŵ"Oۨ7=,w/Q%FM@ f,Mt轇^Ǯf9{)`[t{%mHLRSH(JDv ;Zq J `h A8.}9hsI}É|(C KyIm )oS7wP4tG%r\ZsyBX$ڑ?\y+w|fى$$DjiB:W6Z u*nÿDqGu2;wN[aZɌoLHn2ilBaGcZW#)rUPHk~4N3[+w/p{HO)V)Һd5TM]h:vp)CpGo|BxD@F)7)yTp8K!zX>v[{HLYm ,zLOQt޲tkx\:&fӼxo)D01.C~gS( tR$s5߅w1IE Jl }KF q2 P_ ũ> L,kZL|j K!晋Q'&y;eRp^XTSit$?\/  P# F+b<*hF:t?W"x+rdfvd1.go:͚Pt%oAe89ײeiʬBlEy1ʔxJ᭨*ɨO5HR)ڄlntwY]D Jpë}M==jIR&FB:JHRpˌ&"PTEjxȶc5i2oz?y!MEWZzw'm&[V(APr!+rvRDADRjtTR k4cRCʥ|*&uJ~v"T˹48jVh`ߖwBSs< 85qa0Tfd [ *onYo3c^U.~R$;kjbl H DxH"PəC!*T9y7 * p$##͛&ySt8(3/D曝> >zs[E"5!m ^],,3<%`?4>9ً5J.8$#ajq\qA*v2x:.d$ |k@1gむ,~`"'~ԚV7 _qC4\yv'-TMt^yșz{mKB3p! _j' S䩜%\W UQ|ˌd=1^r(4Ʒ  '<]^MB;r"EW\@:R$} ҹ@ߧY7V{4!LiS?Q9ePD>emO]|AxYԯUp7=|֎p -/3!}z ^b) {`17z X'5"sPL_Ć1P~hu\#x߱ 9fA[UDG,(5VFkl0PCʆ&D[Zu)Xc8,80^iLlū TұKw0 >(VfԽkMS]ڞ PzٞҲ؀+?,B Ÿy` +o|O QR)MQ6Qx2ꋔz魚xTqX9Wk+[(Qvr/gh/J-J xjW ,J- WKMGIHzz-=Au?ˌz:E # Ψ-靦ǜ@%nx`.4塚 j)쪣sǚef\7QG mxI7roc`c -OeZuTѻ|A BKVg@4G1͑Y͟F RO'R hh޵[~yf>D`c=9;28dֱs6PDtC;wwX1lyB,l1^S2'tӆN)-V- po<;j}b2/ {i5:bT!SԥF;dui:J.n(e`4Rїd?8Z߳8@`(K1^CD8Q8-X jqك\Zt&^?ֻ^cb ӌIb!/LEbOӲ9iLv*?Tt e3;- !H-lHu'ip=xKZE+ǩuhN8-\a!ڢ@gY]gjTݏVs֠ߓ%U:ir8`EG'M9=cr3C;̗zE)L'f3iVU֎ m/ jZJpb ʗSԬ沶'AL1$8 rӂYKN;RMz~BZD″AKZE^1MMa@6.Dվ_a4dÞ]Nz}Qδ〹Neż"6@HfETxV̋QDmDWIIPhƲè xSs˛-:Ww'4*DS㣴miqVh5`;` OAuG" )jOWa#$-X^d6Kړ>qN5ɑː)qCp40`Tx$T;(D(["5Ƥ>d6/=,v6y\1+=,HZ[Ŵ%Ԃ`*\=&ՃGjoj7N2{΄گ"lk4}YJ F`T_ciN%}wݓzaǝM<3扉_-wqx#|s$B@[Dw<࡮GK-P)eǶZ53Ҳ5ՠ k!n9Q7J$u䲡4c殘xoxٱ7q!' f:q`ۏ xoBA(3j=NNJcəP;NfcLp;[Ю'n#FQM*e6EzU}Mdޓej >YN,[f=QR{/y o4CQD`cg]k ~%cUY7MuRYy !: 4P=@35`i0e!4 79аP%P\Q#Ǒ?s[nKV!1dwJK$v`et9ц3Xu՚;WxP/cf33xW:m^"rQա0lO(K5㇅b KeuUG"E_Nij>;)dsEhmljβd-Q&2` h_rPD.j/r]DJpi\3|behP\fZ\exJAwH]{G51i5]\ *X]WQb'+g]gS 0Stij6=x:mk/cLq] hȸbcVp GYU8`Hc#0HUy^n >FdUt'ؖ4byk{h#߮0UKEr:7lxF;IcуMvDL3tZ QӗH8zh/7\d5\ :-`K.c(&q\w-g$#7B7(Y?77ePyurMoZ8)b"o0(;[&<ӱ~HXaȍN?رZiP^OSb {EOy` I9^mhgnm?ß\w[!riLC=e(2ׂGDP^ǔT'؄ٜc;)&{snXI)zLwg$y>y8EuzM([`w@ċJꓶ)0q򜷅IjMcf@G\3j MbQز\;j`҆g{3hXjNs̽$[q3[8Kւ~.S rS6!h F]іlTBLS9w9`J8U$W\LU 6@p{Y:'Y>4x{كT(nOƸXؑfKה筱 pp ɿ`k1owW=\$iPpzb+\Npʟ\OP_CҞQ. ejuVdk_ ɏ?,pP'@J^dO()"Z('da| #BTvcX).9$bŚg1 47=sOka=" 7)vMGpD=o\e(dTY!%E.ah&t fb6`1lA,snX/?Ѧ ڂu9ik;Wkg"| zd%Iix{"Ә.ʪ3U<!v=k P;dz6Y遁Rs@ drebbcMxw 8xJ+_iC0,A Ä;Xh]_y[*SR~8S~>IJu` Μ6o9zu;ﱿSɔmx9 aXLa:Q9#V-+L?Wrr9qr (9B~?8N,lS|R>X_٭dҨuz:1@J#B } ɛm$scgF-`( w;^k m| [^pUU`ɬ 4>d˜ۄja,0_x=pS Wp*JSXˮ1E,|6~.oicD&S{& =wL a Qe1}A .Wu4m{{-c52#ݓCq°51D @j: SGow̓Τ]u:ϋc*5u  i8`^De5(عdP)[ `RQ~/]EN%u6OֳNx{h->YhCYqRGGMN\j)CQi$rkFw K[?Ddٕ_H:F/`jc)$?$G-gWч2yI'dSjd l5" "-T!4TC2\@ x!)r,Ѣc;BYN!S0_&1 -+i+ 6aw߻hMSfވ"M{d2y}ENɳ$LMT cꌿɫc } ?L*>0Xn{U ȡ&pkHa3XEma,pX•P4QfԜăEWk&*]u+K[`P@ F q)M|f{RЯ$ M0 &o LBŽ^4_^L 5?Isl 0X} X@lcQK|uEH*%|Em9!˳JWGO}uy:yB `pCG/[^G?Y#>6Q*<L OѸ\zܻC)zN]z;yJosTmTvD1 dGӷT8ht-jU[)tXm"2ڙPuҦcD42*['f=գ"ބ2m]:iD$eLHHCiKDų, `8YIF|fۇ1g#7gU#(kѠffb* ?M6V-ύR׮ !\Wwr9ƿ{gI ˸OFwxRݩ}=R<<ΊK{t-zkc 44ã,IQPaf~Ac@O4Z=f*v+) 0ƞɝNfqhl@-Q[PVLʚ׉Ա]h*| T y(*h&žS7l3ǟFZ8IѷXSgٷⲹf?+rZl&=I~"y`)6Ef82 xL\p^QQʷ+z#Z:r6P<:6%XFD @v[=^Ɓ |x/Mmjk6Sbv;M%,.jF 8_eatvۈ@ R'ZAeF)ĈDy%EߕpiX~r(# $ݫ11)-IpݔFCqr Lf1'dz$S-*Ewg? .LS;d3ȉ?*aH:!Ytgr6k768wScU1ìLLYJ^]=60`a3oW^bfZECFa_%>>yW3!|;.+c-u(LV|(eQձ^l\T -0Z4Ixv.+XF]u`"TȐYa->oԢazeEdh9ճA!b;X/ӭƚiR_ղ5p갌WWu$jF@P|&m\&ZJ[<~Ƞv파? Є<ߤxRQ )Y$ui1 !AI ||g*bZN]a= -LdN(()Ѳel¶e"xoCYO)oɍ D#s>]B 2%oC .6)qgp1mF$`n;ۘX=/^uL6u=` gXπ`gjI;B.r,^WY u]ml}6;yĤY7zχd"Sav!amɓ?>{ʃw0v `7͙5ߋ6JqxJ=- < p΄&@)+˿ݛ;fxIM]ҭUO4۳~\opT| 6Mi\1|ϋM[m}Dr,KS*xE4q=tV4-`Ww@z@X;G8} \7b2Wc΅b$coM-u%G'oi܎|Ci ~b* Ι`c(Iw#xDX7 $ͣnAo ^^GhA Oj3RJF*7ML E 1Fʮ`̃22{7\C#`B-x#)Q6,/Ha T;!β$iu]co_!,$$GW.EӃW>(7 GI<P~!}$r9ȃ'piɎ/@V u>LL[5I] ^T oqXw2jCM!5g/5 y|kPO:N|- H-qYCR{| j{u.Me_S&MǺΙ%4RI([M^62$ K/z}+*h : }tx𨴇Cv{i2ٶFs7D4N9Anq\> s63Z` f'XlP,> w&?5Aaqñ~u6.*X<1ʸ/l=  y4\M5~/0E?h5&fR*$굅O=8uciT4t#%[jB<ڱ(2 0,5 b . V:0~HriLnWԞ`SY3[K)W覠m0[xQ=%U8 EC!j( hP{"ӵJNr %'g\5;1̍ ,Y~EoNh?ױvLf!xٓ 1Pz\qU/Rif>#3VP.bR5SI5oߝR [?"E%.جkó)E-a )o$6hfv4[΂@y6gޜ5>ڂi?;FWGy|hX7FOrxsָ6~#̐i|4sNpuon&Er8޸ _ x) 6us1ĝ}Ɠ)]WĘ WРB[ɗÒ;r2mvdY~)?O<y`b.2J5M&ZnAcA(D P + r ¨N?d@LEhz2elqp ]GS0ӵ.ˆqK)rJ>tݾ1vs}e9N2;ƣ@%$ڃTArgt8yW)^&Ę--ŽpZR^8ujL6 z-%ڒ֛yFJ(EV ZX{:+e+jYQ=^0cvS}m%Vcw^VO"%+\b i__5 ^ ȁtW$ SI!o<./&`Dk)x(~&@n{<`Yur@M!ݢ K"H*3I~/>}Šelۘ6["ȃL4_׉#4F'9F=;͗d{q{>ISEayo5x,UymҞ~"7W^dҖm!QB=7tsw/i:8vO l@˓4kew:| l97K_4Dovk߶^ybT C4;TLLv^~1N3f\{$0YM" 儷5#BMQ'XDimR4?< ߢcl L,h*ӡB˦KyPj`,~P~t k3z8I}6燌P@]pґ2{De ·W&/phBn3H|خ,1Cp{^,ОPʺ3>w]G .;L[,idYAVtt QX`nw ،=?¥e;i%x`qO=qU9c[R#n/YIʺ#zc8佥JH .Ii7uh$>#}'X; r4D;WPԱ'昕+!Cakcc7)?\n/ io'~P)Qtؔ [/>T6F#o风B%>>*b׼3-V5NÉﭛKU^[rYf#5YqkSH"!ePTioOOOs7dmABV+@?mI0/۹@^'V8%9:!;Ǜȶ<>O}YbC[r))hcq5OeOf r#]'p%g3_(xXl!LK ŒyRphu6DmGd]ǜm3/)"_Y#iTĠI `U*&;)dYmQ; nj@|DQ'Ո]QoW P޳Г95(.-2g Cb{* o%@4A)sPR iKUPmbn T8>õcہc,eMAP S=#]7]g9N [ꀌj-pS0mH9zL|ҳN+UT[N%m2=I#IzrC$(:!( }Ks B=.[F9X{>exDXB Z94fuc@|V \tbM_rֳ{̂&<3NiR7v$)_s0V[Erp06 mhvuZxT m q^inlJ= O֯v4_US1Vk!l]y<{9}z9a!}!wa/,65ˬʋw 78i&{a$݀ яa#17*CrBv;a!KОv}ST^q-t{+tOܒP^Ni&e ɒ'a3_#kvY0/Po6ƣ*BG7^_> A,Ky6 tG-3 <;{!,2Q #GU۰R6zJGzv7vAg>Ͼ*F#<2edkشXMl.ڡuU sC*GO[”eIbWL红2Kz3 uz`jo )>vX='R-V8ʟٜ^?;B W֘׬*Lh k3`k|;$ E,alB2=X䱭ZC4X-@>ۖq@ I$Dvr,56UGvnqԥPs:I, MJ(e'TG|551֙n;.!)JT(?c4x#АzMdӱR˙guu! ݐ&P"] "|ܓ[p:tdoZ h/k|Rl3O o=t'!mDS{(k˦4Hc QE91wʹCs]O.h_ǁxSNO K{.VJS=WQ˖ .PV5FCP vk Y*I :+2_k&DLxFe?ؤo;nh?55x[jB5[ Ϟa 7|\NnC {-|`[]e!{iby5Lt4 g )yIZ,ɣOXHf"uE#oM?c:/e9@xaP?9Uoߺb{B,K`ELZ`]HG1S+pTt)LE䷯ڶoVp;.-rlF,/"_V`r5g ME1b|4) K& =}3tb^W0"r4"7{Zti6 O Zt_X+^+mke%_G2-p )K\)kCojO,Pd~F`0h\LAW$vk(mysջ˵s\  Uc|1R43ᅆRlf T\FAbv*B&Yt˰6klhzXM$Ƿe!r( ț+F2C(޵%LgL-":(P"*u 6%ےx?_OLA񒷔%s*J0 K he$ADȞaV kX~b# <987尴ӏe$*ɮ./biD} NW~-l>bR _͵ڇH9ԵC:Rmf.KΑ+;#ࠜ! `餜)0^04 \ WV|Eֶ^zUg5*htF-oYIFpiG D] ebU3PXD,6J_N0w H 6./Ø({dç I+ #.fo2@O{rZ>^ W =q-}j8vwtYN4mإ~-$UH dV<QA?єn?ۊ U ph/k j](ԭ/pr-$912t{S%+tᘊ⌔n&V{|n—P8j@ѲzeVp=+]5(ǀYb+g QlMX$;Xn*Q2HGd+G=a'jg>O6NAw:{za؎_7*DȒqH֩5!ZߗH*^POfGs;*?BHi)`N̛)bY1{G)A?. FOgXP }5%j ,Z1*ɪR+mpI_c4Z9AfbmHҜR7; OSR>wǔkm ;JK)BiwP0~jWz'~97sT| as A Ad~h wyJ@F Q^6֚ T;;7R@>oNrXܻEiWw$dO՜y\@QlH_rr]}2\oACzI<5N@vtt,"J{tn,sݜΨX+h{& -~L*ur Z,|Dn9ViY~Vpp)¨t0n̠0W884djO MM!`A^ h5da΍[7~6l(xi Mi`DJF{@'4^<հ~@u*EW Sg-]jDqçJXO0b1C)DAߊݥ|lQ/ڼIDdI١N录$i[d_zc`d&uqCF aY VQ/&6j"Cybj Gbl7Qt>g\Xf63sodHz(j&$BV]-;MKKL~GBXvrCMP2iG \OBUӡ0i \XVK`` /sKG'fToLl `6\4zc^+)plzXTTIyxK}h`Kk׈ xw/{wWO?͖7ϴHEU#bV`t`꛹2\I\@*|h'[O{!@䑬*NcnaǕ[Je(:T'pch3[|i(@%{&E |gB$Bgb[&M=Prb|eչ:dX}|bj23|UM@O<P^Mc6z?߮q2٣q``]Q]d,(ÎT0O٤`fA@pM@ri+kn^boeI>v{W轫l^ sZ)FVVǝβ۝tWe¬¡QE1v$~[ĢǷnaiG%iI}zf0(W"p@˰ot iK댇~M#'tӟ,<Ȅ7|֭A9<+ PKNW&(D"swCH3v}52~M:Ȩt|ђ)޶T͐~%.?!i@AbَX fSJ8? T҆z]cS'eFGG$}pԛOzq ;Vu2pp!#+3-ܵ 1ݧ~ X Y ÉfKpe?Z[L=e^ O3|$0^QG9)@F\Ij|r7u-̭} pYM0y[KS4-4b!t8 UrRMW$b߀&!O4ڕG$oAꅊ]0l^PznYP`P^L: <݃VK~iJ&bCE@V'E,${:I9^B' L!ǒ:k\:ZEp)o-gGq[.nmpPQ M=w{bڳEndl!Fܞj-?ww2O:-,8YJYwyaZi/}SNb حx6'7amjE jGVbiv9CJ&#*bn=5,}J_@ipdXoZo: zb!sJ8%wf%tk(t_o9+՜Ή htr/eF-N,i \=,.Mۮc93}Xy*@_HM,=߫}5%ps!qitE޷?Y޳ic&+9y]@ah>}}i%wx*]1xLLE\V@R0 Eqg\]#ړmkMDHsZ!d, < *j#4uKT%t+ O#g5{޳Th́@K+l $q:ox6w.+wdQʼ cZeWMrleH | ={$.6yzxl[ɔI|)V.CnI+$gzVcLJ4+NqryJNMRuakpRkguZZRVc>iqTĢ6S r8?;O2G 0POG7wקl]SwTU5 &4靗zDg^JƅZcH kU#җ+Q)z͛@ Hx1?2o V&RөyDU_jؗt ''?AzJm_( i4z/tiY${AqfGN>9sA\eUi"F} .X h2m:CEϳ8qҶNGQW Ӗ59ct.?a8W^8?聳4@IpG!`10$q^lP͢G{{*/Nf2 kj0V2&eE޿1ȻriPo]&&hǴB%*1WJiaQ)>"}8s~X{4\DZ,§2O@5FMc:M;;Z):r ˮ26J?x[V)AU#p=RdX*)*'7}j̈́n E, =FCr6;)N-XXuj1ιJ5-ŷw~]6{$2X<^5I 9= R5+Gf E9@mBT(hUO$zeAy6$G\k=$-4^11"~7l]oáagvaGh|Xr*NSoN_V'Sm`*lH#^,#u Af-(3j{/m<.mlzzTJX90z S(VUY"@N=[)0ûkK(/q+327pP?7kT|w .cT;#[|R <'<&߈$ :b"3xĮKI_&{mha1Goc @Йq @Q]t:әDu ͽ;D\1dG6QoAK󠸖cft }O!7d?__1cO6H`lluB"43VTtt{S"*n oQ]Sڐ:3ѧV`u_)y V@&0Åٽϕt9CPj%DK~"=F@(eg˴k[ZIA瑞汃SC,_z #?!3G32E1!W&ֱ,pg 3OrI.e1iqoB@]s$##Ȥ-}ЀC9nσki?Tx wr8R7Ne@?ʎpbȚ}A<vҭ. H 8_v "8K&Խ K"# 2_a K 3R^_$>2 _C3!JAxUau"X:ThW(j1OGy9}<щS0!)ǿeH$!g T߈ mm3«%+C ּMk)h[M%Bi)83Ƚz$3Av8 'E7ꡮ1ėp4QJɡ/uzǃmϴ(M:סST 'U 1&|CFO>)J)C1#184W@wH/1syIg'9C;>/}P$^J?#ŨW ԅ3"[z%b3dmF$9X!.,>\G@X[Uq:W?yMk;sHF4Y{-WYh0^Uٍ]t|)Ow_+ѬW}d!ġеX4B"!gqg9V^UnSt,)w5@Z}^|ƅ >KOr;%#T#J+㨖X4U%_9/l؁ֹK=HUZqVTpqnmo]wŵ+ީ樈T P w%1mR)Z8X=en#Qo~nro Vt4JŎcw oӈHŗ;3n\2w\$V^c5(vQ]Vxt$o4 V<^lR~*upM x#Ow#.А _U&[ag}:=үJ?kU,)CE*JO86ޗ1ю՟0*A) g #bl%z%N\7';<<׷?̨ Dn :ob/Uz(ENƊC< x00wx-a)g8^*Yl 7aq@'m|yk~ݫs2\Ŷj(ٱ)2zQAձ`ghәka%9XvW닁6U?Z]V^wq_VJ\z@ܖMGr,e=ҟB!%Q/PЦ7S0f70bb1Pq4PcE57V>R=aV O~լOݾZJ~rKyPE38PBN͑/q[d/TV[uNfSBKj t/KfUY1Hjce"P w0)P .^4 gxTCW!7t*觶tNj1 9 &o?l] jsK_{)v\bDpSuUA,#G1Fއ1*ؤÝW:AOB5yLgHm7W 㣢+3:B#TWsPՕ7=VDWx|W;T1`=Zy[5X֋^mB!/`1㳼A_ wVV$$_߫o2$(F|᫕Qqn?g@s=\|y|,:ov:ñ)^T{-ˈ诨bQ( >_k髞m2mCL{-~O5@ vAH9Lx=Gihb1Tl$.`m!( px2"5m ߽|ez]NT`sLz%~YJO!'aE x:%j;(2l4Yb8&%4?Y v7ڤR፞e=\_ijvlixy2Y8lRk~(>$HloGC?d|J'(aڿ;J*f1?]mmжBkŹ  Ovڒ%_2>asf -&:I ۗ`F@QKZp[P;)2 xXu1AV%H;>Z j"Fy%̗Imq|LJFiT{,)HPL':j3ve ٿz 0_`;֠9 t0T#+MI0v ʥ'4ۮ (ΊO;~,Rڗ&/k3oݬ*)zN/2BwyGbsO>AF:d #7+s41mÔ+:(\K 3lo#b`i]>w,]̨gfO|@WcvFPsGrBW=Yo'\&Ѿ e ]cFpsw b@h5~(6U!R9E'i.Ud {M\Ż3eO"m3ʨ{ ZψL/D1ԤRy.oT tp7[ iKn)n{hbrwd֊ZoL KIGSkF)a֟Afe͏Nsr~Y}7O+5]L<'BQzx}\g<̙B=:wjT&k楌¡׋:!"*&ܵV2q:u26s&@!YbuwVT JI1DdɍO\GPN177RWi4QT@v#SHGF] o3~4/gn쬑FPzeX멫h5w9sJC?ޣU N|E'_qZ^1W*CYyI.n05$e<hPo[1 IVr%16d9;$yFZg<rB76Mo&IoݣT$Km/<2T|\HxL9E _rqو_zWڠwZ3/{0JE7#e s jHWօ< ձMʬ&,H~⷗O;ɉ\AGᅍA_%1v2NWh Be ZHGa:;0Œ*>?"ZG]a7/Ě^($@:ۤDkW{O|R`ȉB.0 wݎCte# \95^lfM%KcvĚ$j=Mͳ_&1>gjmzlV"+%{nAWmʿY@yl}F}8!=os^,H0.2i%'&Z,樁[qIsQXHXR 9{lxS-5uz0StWr&E)Vނ'='-beO gwvyg2 6Ĝf=^y!F֒a er}+q5׈42xI[ +tJP*~C`.Njӂ#!&i.<̝O1%j# l hZZ|RȢόtv[3~`GMa责 1Fr& ^XJgt3qj,mA(99rPa;?$NC˸ *';w9"oCfYe|@F>Fbc](A'm%%4]N z Fxmw|6`=RRӜLi_:pW N_WbQP‡z {3~*Uf`Rqj/}Ks\3rtVEc@0M #DP|yIO)Ei6!Z-S7JJT`x0ѴRlٛJzCS@_yt|՟txTk 򉯡<2Atvk-!5\Ȃ:5ҁάw䖀kk⢆npSU D>_7Eh1CluTT&Za0|v=. GquXgQ~=#a|#_F)WܼQp{b[8R ]OeP E,UVXfQB^Ѱ v BfQSihdho..Ɗr6ُ5Ї=  ЪZvVx:u|Xx#wngC~p ݧ'rNe#oep'#Z{zYꛊ-1xiO4(nd&?WBI]z*%N}iY+{qq,xbʇCu_u%uد7Ǯ,(wmAw4! 8V.|[c%{*!(Y7n ݤF}R1AKSQC(Mk̈d|gWF/." dj/Wyw!ٛGR8:^ذڦ*"ǃ/_t]]܃ X}Z&os@⏌cYiu{A^T.wAfƈ/LU"hvj9Wt>ļ`-8މEtvmrw8n\/ɂ[yh2Xnr^zO%c"h9M|ꡔ $'H!?#svdIZ=ᬋUżA #̮`+Qvg?,\ >WTxptUtJ^ۦ g _vPnStI)9Yl @~9Oziޜzp!P+h?f 祐6s&(ܕ!@&ndB}}`YXU5;|D$T/7bZbrثkޗZ1:bdY FxЉЏK? i1=2& &|C"#Akh S;9ԇ\>ӡq۝٩=Q%džs*a0tHEL阶!V;4ϵ|,cbynI@Uuh3Dڨ'&@tȯ6wƅj9WuUxq^B<4u0Fw:23$գH @-1ZEV6c+b(>&8=G=Px6<(Ѩ]x($ Jzܪt:Moc> ¦b Rɓ33[ pkY~<` &<{xֵ@sb Er&4G=leDd-o|>RneC1EiSٌ;굝Dg$%Gd)bk1r02Jeyђˑ Яbu?y4-z*J\Ej#ⓖ0r{B_ STifjt\"r> ›%QPw.1 n!, U*ChQq$1vcP0% 퀻Ǔa MMfO!N^a6iJ_  \FT? <{ZR{5r!l*3"nI,na&xWBÜ3kTMa2Kz#m{.̄Ϯ|/b&yts.$ΎS%LE.HeS(PŃ>h?II/|FA4ꋂE=k#V?ۍw ASb F|}7HqO :xN*͐1V #a@^\,`99%TO|?") ZYԢk6tִi|A6s4Q__dz GO,r5}Rߡ&<)RoзgtE O4=$ PR/bh}X7xFƽ^3uL!WtGؑ.QUM%~r) ]!K!! -qdup7twy+=V'yXkA MaJE# -_ѡIa rj>|Xv|1:`B9lժZOHƠZv:]Y|`wj=P%oT8bVzJ -|J(6Lkvm ?dlNF X&irۧå3y2UػFVKm xhHZk:{} +G)5av~7ҍ)&V_~Hݦx?g:Vo{B* o\̠ZRKc;(0 hb=OaN5P3Ţe1eF /YѷR% GUbZl9APnȽCZ*F0`>U£"ڣ%̙H~VƸKp/pwcIq Րa**Q:ID+僴_("e> rGMXeB?'p' b8,!3P_Q]BF,stpZM8}™^uMuq+i >?q(/b6&%[VҨ=5@P |2]fD+m*1{^%v'50B=tbٗHT>^ ߮hTlU(e~SEMJ1tbR )In?+3_l| c㹙ܷUn3:Lv"KAq]3s)b?&"X qZ? Lu%5&c`j=}k-FA@+;WHc=]UP|0/E@]Z3ã\>*ۨGAf,ʖY83OUXYrhRr[d/fk-MwXSm PNS0K#vB. ZAҶXxay $$-&pr?&|s:w%Q7ḋ*`\ f"^`-ϑ枧DO* o7`]oWȜ:(DZ\<#It񙳺Z/LƭoVrLMjj*a[mj Au$'ˆ/Uʈdb|N ƌ%BA\)}w'OGbͨ!;,3JOb;3XA- kxX21% ] #3MZ){ '/ΑnG&h݀3[U9Kjb"TAQs#nO@4$y"'gpA'zs"MD`1Hkd 4GkRЄ;ϵ2pԝC iݔG!88_OM]cIn!Vx$f ݦPMAgՏU@*``A4pxf<&(cdsٯϦϭy Kctc$`%w@z i"i`7K: !J(PPK`.E-7v5uva-L\.7Xħr Kىx;Pm~yM}/onTt?P՘{LXOg,"O,0[0  PPH\YԘ!V)/4|X2Wĩρϖfpih=M.{<g`\իD΄CTOZkκhbta՚ˀ1q]>=h xat\U\CR/kvTS<FCZ tYVa!"Лq/kiUN9k.ҡ58t RUw{( 3n\f`RYH"@m0xP[VWKs5ޅb=Plmᙕi~s[}֯Vgm G1[cwѪkg! ًmų0/Y]foF؏~[*.B򯱁"e fȜL>󦌡d} ec<3 '\ 3846#Xe#7m}X]+ǵ pڞeC^D2?TRqՓÙDG:"GHɲ"=Be =0bj_cbOSTs+3zv{@(!e;oacP|F20Ee)"Pgڕs rv~L>E[j`I1Ql\gڢ#)͐z1U[[F{>BNjNɇ?/B| ,d-mR}Kd}bQ\Y$lYb5EZX|%]8YZe05k1q.EЧeJ)ՠy ]~ܶhTn?L8٘^/(8{t874yԗ}C$"c 9o < *}&;Ө+@㋆#t~8\2M+B, k$JR8F'|Evh?{(K) `z:p߲0:J 9AM`a_Aܸӽ*qi` :rEDwɽʯw+Mz# l'&l8 yEjr<&56,005WV멒+?EH:xtl;E法c h [5JP (qUO0I/g%|}6n*\X;D|gV(/غF/0#Ppԉ3M?OJ۳R$zlvDf2P Ru$(bIkg&v.h:#OG_!$AfB!$`oaJˉp32<'5꿚ۼzHhx-A Y¸JtA'V9^4w 8AgύXn)],3I%rNFBurewueȩͫxtbOպ\QIsШuÈj3~,:YoШRGt֌zebzHIQI6G.l "k pǕQ%â_ߧ^lݷ`;I' jDb EB ZvAG;nVc6j$w…=+EqUq[[Yβ[ U9~c`"ZQy')ʌfM!2u ϳn3G=fFt Kfre^.r=7D040>.'++,bHxs Msxz@m&׉mV ^Tx@h0xaK凌+$mKdZ$ʎN_iku=^葶P-v?\Q,ۍ4g}ڜD@Z{>I0(`f|c-'UUYݬXἍª3DM.KcKI"4m'ʾ钄|]liF۬:0!s:2ak}0av}|z- 5 Ţ6qܐOq]4זHxV͖fc/c?Q?x6D*NR,ZIWZh4zmG3N&:k ,xK([޷.lwO>gy}*kɇ=,pTTi8A<0wm$FBjr)x`0[G5Q1lɱ_ R@J_csНl'%b݇0ױ2 ,Q ffQ6׀d @(s TrLx(P RV~!$T R9ٯ|*;Óc E~PJ %P{Ŵl, ֋}Yatlԙɂ]+Lz :z(}sRi@)"g &>oͅ{pF,oIYmhMDkb4M>}MwnRdrs4ӮZS\alC(&Ldj TUri8R$ױc`DXy`+mXcՙ0Ӊ4+W/]URq&C〛4EE5{{mJD9|o^f.D^Y{F*̨Yrݫr%3Wozn0Ѷ\Cm5{XTun_pdfIz {`,.]UH3UKQZmAfU=6X6]p}~4 7GrBƍ`kĺ#X(-:| b Nq9> B!{V6Y&{O)SN-*e]`d^FâٞܨB}{Z2ڱg"-W|M-2r^:|P|V):Pb^/h@ ̸&WaD{~:MT8 u9 trHo:-y(Eg(Vڊ@Ją׊@z wC  'vZiLK=k8Z9\7/2jf=~]N|-fwܓ;(s \)1g<ݷGO,Ojҋޚ\s5"`-S,VHʼnS~U#c웖O`hCe'%)aZNM7,ڏcs V/1,+*7p"W VgQv~;?ri1j+_Sz[$ȏ  eO[imؤF(Fsx=aLB]x;؊,;~dR#p+:H-~kȔ_Q<پl+%nb^'M?fI ܮyˆ<1%,hRz0%S6p3/@^ }'&| 62dt-jڵx `3{%O:8eKOڬ}#1l& exQ15ߏ2H`M"pIaiDݲ28LIQQ'F/UUTaiSpaH@ZG'Z[jBZ<3(nP<EbQ|EM7g%5ɍ5VL& k5ZL{Işޏdÿ}vMl SkC8z^ȽmQu^/ҵkea 'Z4}lf Fr[l<+F}l574 nxqk [@=ݸ(HH} ^T5/%Qàïvلi$Ocv${0AiVUrǗ'RvF^y)k\(_x)Z dK#ϣ L}.kc{,qb I_k .LϪjǶRCY^#b: 5ɂtlCڑڣ:aޡe"΂/S\ 7^Ыo4DqNn_zjeyle찗1 Ȱ.o"(D\)9lUs^~V騢{<7bҐ9al` T'Za6U$)ƸTFDaqew?p& cO3C1~C^ncv QkP?@;K^R!Wb!'Fr/ia_`~v} q@T(18H&rD"0%o"ЁC.Mӽl=۟Pvw~[B rxb7U (iyxQVGc즣X#,=U@ YP +FKSm\{jX! )ؑʊvUѷD\ُ7a\{̺l퀪P zP.w^ݷAfeo` :XXx09Q|5&:A_0 e*Zl%P;xVCSrzܠ~Y^L J5w%[Mnj7翃}A&ڒa㓄g״$>AB6 SUZ2Cl>W97?70~JFKw򌖛jJ5a{JJu&A|u6J>Xra[[2 Y"N@7Nt"t}7WBק+yF0cԀg9Zg<OI_Kl,1d+ Mh" y"`emL^;L|B/Dce%΄1`OɄFbZ.3tRᙇ}=[T>Іܮ6Izv.lgqb.%;% D;~fzȇ@v\r!ij .ozYCzsyux:.^n&6WqlUÑQ60{t$SzOWƴ#"g?~,) PVVf==HqJ*W_ -nӏSp Þ} 2.f8"!g$I-Z%r<8Eo] = KgCK^5\0.#zQ`#kS(w,sL"CEG~h['M5SePwCDP5P׹=j1V )s}# iI ĂrΠ!ӝ!0-ey)/}K A#'*6 YSqk+\ ;7~EܘL7kY:3[?V@gO>/V?|Ʉ/ ǬL (my2 %Eҙ>i{\y2d CQrZ=4o&S a6f'[m "d]f %W5*!2[e<Рh#\QkdDs Ha5p +Hf$yq`Qu^Γl7Ⱥ=΄Myti✉ToǸuA;S MR<_y'ǚ( U.gzV712PR%o|&$8ƪN*5i]BNeOIo@-&{\^Z+ߧVRE< gZhNGwz*sA OTxHnH[}ǽe`"0Mn|l`<V eyB g{J}Gsx+ u=`eh +:73C ήJ.9LoPX%e\#cRE*>$V~9qC`~_*%5?;fϐzy3=ʦp-z'sˈuZf3> ΅΍oqW-kX],pv**txShyΜw&+‘ u>TGyiEPZP>;])KJ8dmN~qcK F]GC/)'}4 r5lj*wcE[Q!d7q*~;s\^K-tb) ruN gXVP8|Zܓ= c@y!U6Ps\l|Pn]{o}m \=˔X<) ON_bHP"#[ S *2`dfڿZ>wNztGo c'B"mi~ǽQ 98fLV;Y1ӎt8P!s]%/=|<qmJ0#kvuy)&A(Iz /PRMhum!bMI ٙYx狐}Y/4<$2J^*xkp=%4,aH @qjZ(\AzK #K'H$^,tU+LOLPA0.LA ?i#QyO"/O ̧ ,w{  Ѡ-G6X1IQ_Xn#B^_BxSȼPI~숫6HC}T6ogiMcUzkj3|ƂMTF А !D eX6B %anuP0l2'Zmz.Usp22@)7GaΡQϮeie i5D+q}ff\{Ѧ4D8󬢸n\H->lTS_ut[1"q|*"fѤ5E*3QP+=f^9~Ն֟'!`Te,/x1tAkdǦy!~tC[,^>`C8xT\fmmV]WWbzz{ 3z1\dhn|\5ԭ*C9JS-P1rnX廹\2Ab>''I(),vc r>UN~cK>F_$+n!`Wna "1{B'-POǛ-SL}*?ՙhl2 E~:A1;O><8C$(4R]U- qٜgt!?h=߂#efI򩵧d1 b9oܨQ<<"n2CRR7Bg\NWty^Uڞ7I0׿EHh hUЂN 7[EO{i#1q>6(J%񎆗kLQt?_$1;ᩳ4,QK|J +wk݄8k==SEv ኉~.%W_D 1wIjf|s{j#Beߕ4SNHqj hfDQfBRTTJ &KxUבs>i-}2~a&)TUcjm5 lo`PԸ,0ˈěÕ w,ow6,r.ݲ[ZMA~9:ãĺ&59꽴4!>e-Xj[LYTBNQtqbd4LVbF}?5d:渪rbZ3 b'y#+&l ȗ<,EN~(NEcG-"p MO'AcI_HWu-:䐺gWhtI] 6ԉu?6(%NGؑ4@3X";g0i]} QBZ pkX`J lTLi\! yVD6֡7q@i7N΀RqZkي,TIE޾cE{qQxIy.`7˂jkzTz2=<˨KQFl0*8n&0WfBcqic2!+^d.RGaʄdp,o~|9E؁O[ց+3/!`_Qi-.Iadhvk )dMH(O [Wr0*gKҪaBA=j`F Zg8X"& ]4bB?&/:}Bеϙx-L=u7(;R- 2l%Y1EM\Matʱ_Ĝ1f#`)_Uu'$Ug @\I ݤ!0g&OUNؿHdAV2jz cclMPx4?AŇS@Ձ񧝎:nvW^#+s}@ W"&7r^:k*UaKtӔ˽ƔH-dUk d#rK~wfk$| 1=0֕1/f8 鵊*lGS=~6(Fb 3d1Xbv>Tk5?6*z($\A ?KAP3{EGLqeHe+P&wKJ'vA\oa(U'Vqp+Kbո~<%8^[$K~)xG*{H,e冝`2j+e"C|w> 䰾'H5(nx yX]{@r*F^Ii `Ax]˫w&/o-*#.lpŌ*%Ũ p0}a+dغs[9l%33j?(4פ1!Og d~1<䩺RFť8ݙk2};T1()>#IGI2D̏  /$@z  VA𢡊v/<9ӠV@$&h)@tn4(|:j_L=U=DKfN 2S=T$8xbtUwa'D,O$7 6P ^huXReej(#yZ H!unsFU(svz_D,?zE^ȬCa3'׌$aլ 6@VSǡi4i0>Y op"vyZ yz Mxإ{b|9ȻRQO7 HX~Wl 6Zu+oGuםs/0ZWƒXfܻ #,tnO-e ࢙Y᝱AMzm40 Vn#zaT0vA 2٥}zAnN&S(Jvq@o bs2%;lCvoaZÉ`[e1OyNf;bʯ@l:ԬTd<2ܶ P[5Z{SQjz'w'5Kk-!?LUhK:?|CA݄Yo$b`zf1X(:R,ͼi nih#,M)F9\8|;:*" ]4?O Rz%jG_F'jlL)-[Tw&ujEK:5KT*(|mk"Tt~gh+tA1o$*3g<[7p[?,{OOtyǁEK_v1z(%Hv "hXh;֐8lOĽ$V1sl˶)(bӷ10P;DkI}+ȗq}ǘX1ɨ7N&ٟG'}VF/C0~q*{b_$fY{&6 !"r4oo }Z=N䬖r 0E2⳵-blLW%je.n`$nTcea0MNw2пlrIq{gj B)>3kcC;~XP9 7jđO}GC!f1ng:VNt_]%>of&m~.("ˬB`rK[śԬd~rLLk%EUq3P{-?_X /7E,O݁?ҧFhw4PgMn f_]Bd/~UU$5Ի}Y ^s.0j "A}#B ԲC++bλү{+KA!zWKĴ9ѯTm–L]/Bqz>ˌ(5Y(SQD,%T"jx[YG!F+E&t !fu@#U7]t7f֩S q')Ό.WzYSϾ &= @tR~ҟq9Z&s_FHCd2Ӵ!1o}7%4-<:N`yc:*K[v)> 9N(.vqYh!XEݍ>DWXS)N̚*zCkeLKno؏EICrF, <|;<[EAG.-(eg?0r[۴;4PDlza3Rۦa{ܙ;oԘbڈ#_ғaCF) ]ES ʮh|Ъw5/bJZVf1"͕s=.@ O':-欱Of$8ol%Dg:!ɲq*n|٪++ .VɈ^ ̑pbt(Y<+!LKB [})O?'<-6ֽSUyjmLļpIvPNVǧiEg)}@m.yQA1.yЙ$?"3ީcFi-< 2n!Ǿ.!9QavyJbV_zV!tg,RLP .fuٻQA?B4ڇ[h|c7#LVdiC\ژQfJԌ+NJYk" YOVɃZG3n@e˾9`<-KtXc_ |3Q]Lw ׅZcŀ+\?<ժu1XsY9yyԺ#Q:BVcL"%!AE(9%A7 <Ⱦv>=%ⳓ +b!+ դ)onrV ׬; Myy3҈X$I{3ôYlPYLC,u0:a]aYZPRSvh#Z@ȇy A*7{Pj[F*u ~߻$g/Z/?B&TYSYZXӨ}j{G3?؎Cdso- .@:CF ygEUv.dQcQn_UNklj WWC; ̊c1Gw[ȷ:?a",=+(-I m'eiz5wsӟ!q0h2ͻ87O83׫ ёAn љOcxf5 EmWZ"翤l<"If+㗷m32M23V L`B.XՂH(ĝ,I~~Y`!u}=곔;-`v>'^4+fs=ҁuŲ^x-ZJ M˞P"luX3Ba\G:Y[7-;1^Ѕ&LO.@>2[?y'xQOCM>^h@1 ř1]!l7Y1ރ8]{)$Ζ ,yR"-%9:rLÔ4ᲠT+sFb SHrQLN3>] 0YB*O Zh Kx$0З9r^O5'cK՚{yMwnag$Q<rVfGlM\\3wC @|5MttrbO(yj>`eKڈNDXe  a}&73IX.g H-s[^ )Mɽ.LMrKmiH)!h D+};Ih s#_, .s9滙EڽNv? Y7 F ! \V_Pч'FT 4A79#+oi76<0+aWwj5aK[,C!T'ye w}tu!9aaG_WJ'gLRn]}ϸ 1}|2n;ģ-!],g(fتР*wsȝ7T##/M$[˕F d?qh%}W[|[L (NF _dB3y[>i&';.Y*8RC[XU|ч 0O翢{$6,7 Og0n< Xh@<Ӭrd4 I'jf2EHg=a&7 `el{2foЂBNAtbD(,Qw!<#jB{ͯ -lpETk|]{puʽv"U2Ύo0xƦ${nڟfln{@Z0:D^8mERK{AȜ(:u"nd]x: DW$,~'l 畀l+doU^?0NnW7TqY>:o|Nr%"=w)0)|Eӝ M,!V˦"(T&EP`6YZB%h=eY5d`fϿ^Lfwy,x7j!tk%"1K xܚ*=Y:N嫶Ŵ2Yϖʢ ڰpcw.`.z9qQ/> W=5OC "P+VԂ N'9Wƚ[!QH 2*ÀKN]Zj?|IS6Tl 3㏦ALh(;ׅәGv1挓xD?t v(KUfI+I$Ql |[aO|mDzŷ %qPY0%a|N7@c+jh2`mR϶j n~g{gd^E=)my8 q7)7Ȇq$ *RaZk;EÖX(‰m>bwy pD7]wGH&J/1GV_9*vepn<3b+% K!"@MlDV H씒E:'ѮvnV'؟jz &n2gϫPsFfzk;! h/U]*UTTTً\zcn_k0=pH7,LϹK]s/i]q'n>yZ`u;\ugxߒE+-߈=`>mIthœo!}UW+P-*?8kIWq( Yҽ:ՠ^t@[7~N (0+9f>_,˝3΀o+&T5)|5+_;7@,bKM-}EMPXۤQ8|tH)̮2l7wՌWXtK</\ |d0EN}S*&&?!BVO(=v +fcL ;W1TcM3}q{z6=Jw]f+ U#4S^*sh޷Z[y\tuNz n F4Ty# {|څTf~B]͌IʽL1?NXԨjb%ICkyx]wFVd(uܩf{<Ѽw@$DD_TDpZTkB_* u# ohXi!Y$-Zj2 5A  nal-TRAݽj/?Bl%K0Qh*G/h¸ӛ֖6wOXcY%MU#fOS". |N2p~"xa N,O΀0k ;(2G8 3,xkV=(lrV|ju n⤠d \7ԉ>`3Od q`юyJE5'T\RdBXJ\nY…vzlC7zTL;Oy;sH\{kC83 hbՠ44܈?297B0[_lOleZD_q[{Z"q} {keL e=ф}1U@AѱN\C0lO7RSԴ⩹D $`Ke $o!^P:PP·g\Vy#[yɞ mB?\)0 x{hMǏ1(6gwwUzߓY4I:cPg8fpt13buNVZpSupڢ[PqL[xXЭ]E6Όӓ:xp-ZZ#O K‚ͪ\4o!|k_Iv̲xL0[5͑uePs~am2E!'hRXf :Lk'+@@%DZ\)Dj ,DV@p_C8O)P \=}B߈JO))sQ`(IU'J@e0ΐ-FLDUDp00C Zw.DDS?X^ ϊQ'=`5RlߎULF< x7)O]^gfJTkXd$R#all͋& .vÜ&6oKR'GQ o TkMV׭#y2Hn/mr'w$#ԁ]ރՎ]Co+JHXCOusq_Hmf;(ois#Q3V[%|ooF8XoԻ?@ʪ|+kYp eP0qTU;5̗3qX{/ yb> Kl|GQ4<}lB,痈)HW\N1+!c |Ojqa?SrIyqO L:WT3,{N\0ޟ) #yѺQFE /| $J;;fE (bk*ި>I/1d6&F!|@M2~.4D63͢!x'0/THy P!"X;3 Uۊ` -g93kW|ck|&mE:5y<8_@qZ ` hs)y>y AC,r&%SZTa=ke)WM{%oW4u;W'+qXvJ &3ty4 &?`P_-]-[1I]يoA$i6x uJL{8g"*TeIms}+*, ҈y,VΔjx@bIꅓ8:sOq0EI83yXJɅSq'6,+v*]ýcP@\4_mK-E XQ vǨR P6Ƙ]b0X bi6)ѩнdTaY$IH.neQ0Yqsoov8д7|x42맿A4u'gIl $|2X Cv;~.W~Pba{,~K:g r=l/r!][m 2ANmbI/0QF0o X3K9+x {\6UFCڰ@~zh9 {N[PYYq+*9KfEgYuHttj09x ?C:l {xtqJ;8Mp;}Шy/yrYs @+ :9FvS4G@;wlߟ7?kh[Z݉PVOrA/Try1j.V nr8Y^84zaxIun+iL5#>h b3vV{=\HyZ!Qo"x;pi/Q* eXk- Em"=' 5oβ gVW)@ b_Tjŧ2hH۹a*}̴ DTM(9ID:qvvٓ7 |0j#0CH:0{_r'@;_\}wRYp5F;ԂͰR.gփTBĥ}ZhaU/& NP=Rs/xBĮ7$ZA9\Y[QR-6hC ;"+:_aq өtp˝.9z=~ز@Κ{MۧmGB,&akq|}JÞ9IcfX|Plk8>LeBCH;WU g#қ0рYD)S$ݟy'n/s~iɠF<4@$r뇨טgL +H#O3rO]teVBLS;\ N Ec(Y->&D.Ka^ םlnW^UyryUÐb2*Gi#%4wSxS\A9ƍ>OlA. Kh4MFK;0NWV"qb479P'.2-a?3LxW8Bŝۍ ?lerQ0X%*sZ]vʴaEoW@;<+U1YT~P8m!AЉ{ 1{SVT&Sq7cؼ ~|U1E["xXC0s\dв|ne!Fpb:.^f`X)Y4)_8v TY $aLX / Bv+EYy S\y]p;x ^uDl:zD!vC n>ET%MVjw0Vˡ/%切ۙ$/,@$mC:ڡR)] D!6RaQѭnFsS q*$}—Z]v9>1ៀ^!3v6gMX/\vwGK ;-(PZoV|sR(ݺqepz;Eǃ.$QGRcW}2Әo4^)>vbsюK}fXb3|odZqoעIO3}8db !eO\Gؖwgr^f+4O:Fkszv %2XBwd~3iS$.o.ڧ8g[TNt:kq{ <K=Asx8&?~a[|+K϶]\dC Xfv[_vŁڣ! /8Ң θ ɣ)sAv#vE3fp2D39=s n $6a]ؖ>;k#- c/x@ h}v 4?y[<0UBp71)Mw1;:X}r谨@A7O4Ie~犭;2zuw괫*w: ж^ˎم+Cp^Jphtv/Uir iwf>"H*k@oδGh+V4 m+2H0nc<{"MIP@BQЩQ;&p-#ͼ{a;w'Y46\+dcPjeO@v2J>e#JC0I(;KӕUFG0#`hl﫤2{yO=1>`b[*[f fdc'9p2sbkKYo@Mq@"qduUnhΑ͸صb.Xtv)bR 䄄J"RU( {}4ExQniE(~.̣NeUP$P L`c4>g(y#v͟Q)2ׇdi}VrpG$qI(4;_YL3~eQY|1Sg".vǸwBE%{,]Y? 쿔IIGbYȀ,u5ߪJR!2uz#_2`D3E=C $T٩ǬZ;ר%&P3ޏѫTm3j _V'͸z{֘†sRk.,Ŕ4ƜB!+y)vKqTfq3h/T}28QzU;vozKNN^3:wC#۠/0Hv[KPRE]|ߩGaK̚ C ,o7* .QޑKWI"`&eW4@+'skƸ1!CyflՏt]2a^Dڶ5h,6#Yf6]ZsЂ@}AzoFRR˪w][-RG޷&LD~ESZ@66[o+LlO72;*lOǔs3~ {&#RyP \˜-<ʼnI3'XE5`d&+[tϧ;*= 9sfr8>U8G($dR1 L*mۓ–o/"AJĺJ)nrV}8-X|?=ͭօ4DԴ8'TGGE4\5s\CFo'Cp ?}:(pS@Xlok|ODZ`J1[e7DCƂm8W7Ү#GLT_,nHF+{ƭܚF.dn,C@S1OjwjqTTLrPf @T]d{ |ZEc3*;7b)q-dcpO!giJTW7 .>k("%Ҕۨ1K-T'Tf (/mb~scoF5vXTRO Izѽ 0ɰc#w;"]P`KLVFzy͢yBDDWVb~(ɅY&\%U{0z0K/ wnA/HlpGuAŬkb۹x@yaTkixd Y]QW He蟏o/5i91Qhp7~hH)ڮ}jEDEtT#fxNJuXrBNDw4YcscsJ+ܕ߀ Q~$&smWjW(#.oBHLvR盅 pSo h5V:jړ&7rxGn/~ %v:d)  D)_Aql0T%ک؋&{5HnWtZE (Byz8d*GsY⬉;R`]=ˣ*:x + H''8E!GFa4Zv}¼)td!B& w@IAs)0"KR:Nq7zo4}m@i@RfE0IiO$sـݣq53x=,̾ƆkZW2Be?zZ9I͚V;=F+ TaOAԹ Gw=/Uzu;. DD9l!a((PO9U9BJfr6(=4F=[__+޳Rm#nw9)!ahC P ;q˺IgqAH;pXǗ+ f֣I2ǫt#B 5:Pu,.S#U.\푸4/>Pfס@v0ǚ_N52I X">_UqbVU`0vV5i7Qd.8\ƼTѿ}"\p^B›,+)X;4L7m\&>Kro'!r0x8l<\'9I%n}BZݘ=yF2qgHcwwHţ M^V6)0V.+.;:uӢ>0gtHixY9I 5ZSN9QSgJr`y#LNU2I޷a\lN=L4ylO@v"lU#>Fe&ԊoAy>=L^cj/ϑl4vO+UPۇ=i*: ߖ[~s?R @̆L]&5G#gּ` $IW3E W'G?8Z-.lLSoorS gDnU},ם~JVQȑjFY0H1#bK f8I6&^@*V0yچS6 aAN.G6  *v griV<ԩO֔Ï)λ0_%lAE(^J"R@ s ʹur̚DX^Lϛ9ႩV.ІH[XגQk}(X|9_==q4/-=L̪j!9@KwsM}Ծj'С'`,T-#sXgঘzaV:OZ8)xCE3um M^!`P+w.W-beۉo5 cѧ3:jMOɐGPtFr,ɕ+`O~5_B˧R&$> smSo~NqhP-}tte9؁vBҤUĠ~3Ў(ah[,vF"`H`bI` %5ԍE@?Qwvq~_plifg!.cm$GihS$Cf&e).'a[O]ϴ"?p<;ݩq^U3s_@tP u > $ +I 2rJ]JgĪf?Z{D?]=u!`4֠nKvѭ1 C3<>QT7-isv {H.傻4 W>F'ѓRw1KP\:՜nw]aP۬/9ф/5#'/+t ޏ  G?E{"Fz02!ѝN' tr]QRYG2OʳY1? |iwY&;tӯ쇀kA%<}_euPx<0uE&"ټ2wT0R7!P'2W?!axɸz8Kġ0-D mn8̥ M]~ťW4@:*"^8TR{Ga}G',U;ExjhH &@Ë 'A%ټN(m<w'vQ;]IpaNo3TďpٌL)mrG8 &5DdSd 2'^q2V# E "*y}z7OT*8*p,69AZX\pFjgńe(nfâ 덏(1z\GjD`WB Suˤl<[bPi>Y ك*Æ&+ӭyߝJSD.S`\)W- ;m{=k*'h":U7}#db9 ၰO`~jݏ+zb5`)Qh*Mu?qknM[- yPɋLyw}Fu3W]Ҽe6>sP7b#AK"4d>KP+XDAZ}٘ J&ݽ/{cm2+3F⣦PjɲÀuLOpȒXj1dc'LJ˦vT Dh} (H^62y Wj)BcpD@ L2%^_75bG7Iv~ RBYJ75 \.y(+%><Mbi#ŀTwLF!'Д+ ly/+b0{.td#jC Ee (+%AH;3mJ1Myu2Q=-` RV]Wmjrek[kf"@=@~ 3e "=-ʵaqES[{HcS,ؖK4e=Efb8JS+d򝞙ٹ:˕|ALa9 #]SUL?50wI/Mx2IH$ |vUAwB*lH'o)krs0Hǔ+n V3ݎ*9)S\9K3cG.qv"wʤ, &p/Df,r݈F[ IOB5.-'5wUӸRo;E ـi -<=.w3 ]քSvV‹FfHbO["U͉nOZ՜5lt&^d8¡ $, :}yEo@+5}`yvj>Ӽa'ms9H@v}S &c#j."OQ*bIxf '+zzàzf1qs }S/w5?Fb&fjOW߈YPhfo6͊Nw;Sjj."JRQ6K =ֱa~EZ%k_npNnsFάu)|zmنW:0LXd!F E5wzhn-sKiFɡϚ>V&C8i|.`symabџMJ]H@1cd=J' dZB/5oվnRiy6ġnlZgkkPHTf5U֮N︫mMx{r, + >PY*8rEɾRČ'zayQ."98Ć@?z!gJo}qh~vVՙl:~uBda$)}4pO6 90MYDmNZv|8"(= XΜAQ\a bū8N/cZVGAE{N}<n <:Q[ e^ń Ðݯ}լYHI=qp;d4͑sx$s:3@]ώxW-E|$oOHPk!$U_3|C05!]P& n[%]c \`Nw gk?R{ E<18/J1il9ygز5}T섖 jVxlLma⋗1JWUŖ'6ubUybVd貈ܮFD&B%%xes+=ravS>9ZVeo-7=)-eY;ph$ἢ'-G*ztֻetl'r?JEysnæ0aaĦ M|V^8m&#CՊ*b8u7#ͮ5>hJ[ҩ^,E/4H}Hݒ5̥_G@PAi&rT!|o+'4 7Z 2*Y-<4$|sf;T0 aF&?>^DXURJ~.N4AM 7#8nR?䥳Y?G>峡s~ەb]{}! ~10dNt)v-/2M-qgw9Hȁ#LJxaUH]ߦYysf?LjZiQΕۄdtq>^Cd\o-Fra,STtzG),qeǦXx%UdOv_~[zq_=.zCPtVD<0̵@|0Gx4+ު$o:JSgPN~C/Fz$H_j{O\`4-Q#.&f9+$9iexG7c: %b"Fߞa{ʄH2NNM¬f/ tzskeJ4fU:^l7J7cvWf=mo?y'$h _y ߯;h ru!F-QY (f Y`޹&)Yxz"݌\NX$1qe0͑w%_ӥS_R%'(@(4e.3ܜ2bvvT݅rmtBP59\wP6-ogs@RkJEssӟSXa}~c1|K@U0qR( /!(:lwĺ 9p%DqwD\&$bH3{pqt~L4ryt>g!ppqF2J^Kv*}$fA=a,x]Cf?) _فu1?:E> A~ت;B"z$S?BvƺM#r(M(A(fpC47jxs)H}P~g4{hX՗3ˇ1U3ڣRbí7>X m$,̊3< p)Bˍ9.ôD5ĺiu m _KtZgMxUDŽ7FԺp6\^򻟲kMj{[*~+@aP-Ͱ"_U-4Dj8;_ :|Sԡ͏~\Vt yH=.V/2dŹ 3W $2sO% Oc#aHÁL{_BJz3bx"ZЀ^ӂ<\93˥+ݓ_<ʌǍJdtC" ?!Ʉ+hmgL}x R&]h Ÿ^(6\#smt+㍛O*e0FK1A{" &3C֎=DP2;W5b0eSY';L5<6%3>78/pjVꬭ+/ɶtv;cKZ^?}u42  °a #-/DP}&]ks__ ߏo,)a $5fkN0HƆ"+.2aaA`^\{$9ℭF99buê $yaPr1ӌ;ݖ}flFšM6JG"0Uƣ-ygqp&Yd7(ŗ2A:&1Y[ԡ?5.蝭}="y';ܝk>0T5L2~7,6Tx"9T8 )Ds ]1θ#zp4,qd斦QVp6_;NsBy-L+Yh^>>_,Y[%dJ5; =Fyr^싯GLt1x1ͅ{՚"e }stŠƕ X;R z[4TLsN֐"9UUȣGCȥ' BJ Ob[H4mR6RW6jIKQ(9Udz~,0b z?3&+;j'pۨȮ3m](̈́;4:Eåz ؖsH!mPz))WlMLu}p؂PQZo*BgJ_Lټt{`(J z}QɥZޏ0#168ҤM8vhbewC_Ev3S.f s #hq+V>Sq:"(>q9{%,2viߔ}cf6[oc-6~pyb{JTVMp"wM!1)'$hBO -6ViH}aܿeWĝ,}q\e"Urr(jSRߑ>6,p mg=q}.>>u'6c,- ~e4hl^,c\%b OIő89^p 7Q}‰NrA C/O 9"p&C^paFyi]mV=r<&"yY@*tsp~1G|IYm+ Σ0[k4>􋣻=+_QlZюP{ZK˵YW@Qc3|QEU!-An"N^3@T#f)b )<m/KԈQtI6vx-:C!b1葸Nrp/~b%DVKt L X<I2*?a`P^-ؗj*RG> :I44?CK(J(Y ȷɾl|9QBe $FU! -z{QMn ƻk\^+-5Q?Ō_=HԪ2mI&\ֿX\ev2=)@u~Mb +* x B_T }8.A]q ˼B-﯌ ͷשp* 9gm%)#rT4/~Iw]|9A*,0<3בg +q хf7'7\̛ətR:c:J9@dy!k2U;Ky뵝́$%܎LR5ݫ^ׇ\>we*n3Vmy1 yJ1X*Fet/&| ;yb בx!˔r.u ZƄ.4)ynr=RM6ݠEM6vP'Q ;jĝL Ƣo^kLm>p dh=^/Y'^ !nEK6BA9\R}S;G%c)WPI} , 7WQF;{*?X^?Pg=vCY' #6h0t4>k,KhnnuA e }0Mbj$Uw[$0&:s<6uQz,B\Vlq6*Wdj =ubqa IV$ 3d^}4S߭l1ߤ&Ob.#.W_"IN?Qð_J5%b9OwE[MbjjK2e #q2nvTG9ŞNDr Wt|))]:P]ݕYJ~ZJ#;o@R-&*u HʦLx.mdP9 mhvEr+K(G N$YP e'H%@aļdЦij(sô#P]I%A%2xԶ0|Z ^?y+21Dh NNq%vc퍟8z%`YD0\^=Dcn ΦZ˹rd|рEF_/[qSbn澠zIsQo\gԈ95[4,$:Ӱ_D5dhO6"= mSBo7OJBt A[`Gcd,flH8=.f~M*'~!~6fMU]Fۂ2lRߚɗ2L_36k ꇡF̖BFBEӧ@Z 3ơM6E Oi+#LxX-D:P;v!{#L"vqWl!,JYVm?LE8E&,mu@k<^2(hG! KiSAKfIQl8K?)j"UA0cV-حC'j ,Szd0ըP*a%S"Tr:# ՏT{4d]; P@sn[ٚq `w&ʤ w,Mc2 ۨlH&!‹48s&BNK@~5!Qԇ s5jlҬoN|% _>r;  \eH\`Q^\S-G .UK cZ*Nb#;lk5?fKj;N{ëeF)#L*S JOvgr]6p+kK K)R>;I/c$$aPJ *p- & z]# aG *\ k.~ZV@ 8+'B騏;b!g'\;}p:Ǻ(>VR"YpOfpX'yw;`1jp=8\D 4 S}M4مl h0jg%MQH@QvZgϢ]y퐁D{d.`t`˥T4NI5Q8UX[=(]ӌ]>QCGn)(~&m$K^^N6ݔ3GeXO3Gɲ 4TA5QkGHLBJdG&F9IalJ-O0"= -C}ml-bBY!XvzTߠj7@m5 Xb4(!6~E0#Id--#aG%OMŁF&SOr8eczsʬ@)r$ piA8 J@fzӛ\}({8xԊ'+q{4L`蜰$'A' ~2_h}Jk2h]4$_ )OTWzG 䑭8اq)LsEL`Jz2!A~a)V 7'BJ!8&`)s a5K"{4YKMsl,|3{Vfio9kҬm{-[zlU--7/q.Ε]Av<@_>Tqǰ~Ed$ 5& P)x݇. 03 D앭ٳHt*V3A%4|4#/A0ܚ[? }kG&"W[G pxa)OdWhS\ :Дh}֌bs`u,M'j8tpaM|5ke*Gd0zKgp<|Rkb"BjT!K{Tʃx/#bCZ[!瀪f0ޝ37Rt=`KP.: (3]٣Ai87 2⨭6@s5b22a&?FKN'~O~E_8FGȀw*"%;HүcGANͪ V}r6^>ESMa[hy '|vޚJ"Qhgch]&´g19.u^+/VTo_t?{n\]b<ٻq>A~ʱL2O 'Q׍,,s8P| G yaw}:hUg%c#=_ 'N3No= LpSrk]5Q&jpq稂 TMvΖȕt@<J]%f$ AgyQtX|DAy!ޕ'Yy;5MgT!#. ~ȝ;b&_Aٽ}cWfAa[= m~koxj\IWn҅ٓ!+.D@4p4YɄzelRZTұ/HJlywDp!nID3⧏Ԝ$uDol0 ,2_lYI{3S+.j|ώ?>NAx`~^jDPYD5qڑZbudgb19+lA(5{KV."+2qG|\^fɝXhC_A!+-}W| |/ʽWn^AK|`H}LkzB?µ~a=C2/U jCd*E I#viNA̽Eq!LF(:=>cLYGİ`ˬ2 @j^B^Di, 3'٣Q$o!2V2(&G_:/$!Cơшأ?omj^ɠ: ޔ B$>I DQ̏twT^rL'=*/=6//WؼQŁorG`Ag7ldE 16g̳(P J}|T\2VʻiWFU3Q?YjpDg$.-`裇dTR`?ȣGW_P9Wۂ kc8[=^3j3D`(7򷡹f_Sq*zTi(cB>Cl/LtKLuHSr)v|IC=I?؀tgV"eStWC j.z슧mvrcNf{W sO1 _6n" ב2uˈ:{2UfxqiCLfLeXЬE>9e%F?n[:$g/g";AJ3ꋗ]#R'x ~g]w/i>L TΌw]:ϑQY T| ,"S mXd6͚.m@q1@h[%u|BYҿ!2|l?VWiL@5R`+asO(xY7zI_k}6&Q9ԅ|09^ٱ~B4}r<^5V5bZ >c \8ez+jJ艟#ܸ1a#.#C[۽_hwa3$誆yKqnя7DžW0e~p`$ )nr._< UJвadH)i/x|g5 X;VzEb`a>ʥ;ĬH',9%p'PhݒW(~MSG2C,@<_o~{%}u긱?T!d":1Rq0%6P V~s>`ځgB.L 4T'B`/q7RVoNv0 4 y@^$[F?apebqyhv978%L|Y @<D]o= CQ# º-g}٫Uθa&W=k ؉+E?k5:+'Sk^˙*-] Z)>XU*]Tͅ?IAmҁp/Iue8'yډAdGUH\;lp3h^l/>!g$ a  ˸u@w>BdaW(6J~$*/ȅ148jeܶ_|-Ш%9טR_}vwD=5\Gy{o; cWڇ^8t(6a6L ŝ|iK= Qy3=5aZM?XW_CxTTy ;Xn/XC8ys 4hO(f<% cb qf$æ@cpxti&T #_ϋϐk ηI&eyW&QAS~$)>6XP=9^;HUxƸi}3wL{ [3K0;g_Kg=qMOIQaG>'|3=jaGF30P C+PelG{JREϸaJ9;vռ8D֛Yn9pzui-0b¶%*s`/i;xC.'Dݍ7A߉p$x:Xh;ގxr@lM3!\N<CT^KrA$i6(I61B%dHKC? asx]Iީiji]&"ńTSjpwax>v!#PRA -u0Bt)1WIC/g:sAL ۼx 2̺ ;1g"F$^LюyVftc{)riA-i)4QqelһIUHk-[qyZo՚%ENmD]?slѽ,T|P>⦈H \ kVE:9lp:L+7[7ewHV6(B7v<dԕ;P8nj`)@IxW?ipdbZ[o]7ي{-dϙh[(Ň ^϶¨([VypOffO s٩A"zfl}/W/݉0ˏS->jA#]2RG0}FC/x7V`3ԝK:gC#+o:֝ȋI TY4:G9Ua'mxuԨjʏb1} ^oRKuEmm"Qy);NtU)eȹ=ق}{ 5UMzN9158p0-d"𵟹'ȳ@穉NHG64XCUxuqSb_n3%3%;)<*?CFgDm@cnes6VWv$xȀ+ڟKD ('e}Vj:MN4I|Hʵ!m{Fs i}^ޣ;L$mwC|Y)>uCסn1|= F2U0+֫r0GcLP3MfcL/!"pC?tp@3 Rt?ʑmSa_[kL _UEKZ~Qx`iZ郠wh Ԝ^m:"N`4*O⻒tB$c聼C9+24 R|%(`n^sxU9Z*Ֆh\QhgXtjaqנ.P*c7B%k{|#mcSNA!BT>MXTJW8 %ʫ+2^zk(o5-/ %@ &*YxxKRL yLw`~Td%L 9VݔmMFY3=`K¹cHA%}9l"OUq=$T~q .&BG9 ^~Ǥ+ż\'[EFT`cplѼA$Ql 4f1B!:>hL6ӂCk|eR+c2NSU.Ʀ8"Yl`NavtPy]A>&d vc㬺s-x[ed(2< @>G&uy?GBbyNL_Gژň5W#SX*a9oğ~E<xsDC>}ܼTVf857N<pT"JkW97~>0-{{zl]GRd\ITLꋷ2Y`倫=WP8)=ka~:HJ<f }tn%ݹ(h}x)R5b R#4* :xq{' !R&[O/uMĪ2IĠ{ط-)K̔idR^~G^C^uz^ڜӚ굶iɋDres1ARIyq0@&"CZk&Mo)yB)s7Q bRSԔvcßnw0!@I@{KM& .˿m^EM@v{1Lwn†[».ML<cD>x9*ujr↕ e@-aR'ёj]EAF|57l3PVIN.],3{OͪSl';5FzCR-׸xVx#ڤZr/܃ùq1P7##nլI&WT:O7ຕqMsǮk@ْSyCVc:ca ГJc6z =4"BGŻUGP"'6#jVlk.^Ky!h7 }>$;ڞUPdJ㍪ж[8vqoJVKuj v%wijtנY_cЎP`X.~(.u=@X UG$ ˞sTTկY LUp,W#'!&@]έ]]J Y`5d!I鴣FJ?أn^};%. |CWKqJdb"c*j::Od)6";oto(%&M3g`bv;)~#U+,E&moJq^Ewr_woxNzPs'lR6 ݒ?^@f:O G޲i$E(D֑GRm"6>p!/`{>\mM)L*ޯ&y.@z_4xSuHd̶tkHy Ri2p{[0M~Khu $C3r%Q=}AC׺5=kQb NBH( SbNOW/E@6S[(U'3.$jÄ!C8)!=RXz˲Kz8?x L)$l\FXs/  r7EX7PU%4|^S.HEܿ"teH=[5t <,"Fbw9qL-$uC}knx }Z)Ǵ-N ǵZKX`$kUלO묛չ? R2!oK} ֕̇_/1[I.vC4){79Ԍ@ukx=$Կ,׎ڠV2&b-01F<z60K;|׆5[uzSbY-ANX2T8IJ-fĔ!5ݦ]r'Aa"RQ%~>J;>^H{j]D0xS/ՙa`WM+St.2BfybMB&mx{Z|[UFs a3F!]9꼺>6oט RV{KU|J D}vzkS}L\""MP߯_ 7ׯ6eBִ:cFxIgЀj,_t4#$/bX36\|f~Nőؠ;@~ LeADɢ I%bPg Q 6*9Zr'QT' 2$ >$pS-ZpuG>%DNږ 0un|q^h1 Vv R8H^C#x$~:gt 3]ܨR.c <ǸŽ颱 /$>ىO[8"_ɿ}5mUfi H@,Y߽Fn:lPצOmnȰ~*ʪ' XZC|9P:~t4P\9/C'TZx/]wf4TlG%Ő .7Z BO3֗р=8 TM_:8{{QbHn=aƍ_IXY j䚕)7BuԇI,d326+?ѡCo̶ຉI{OBqA &CP"{Vs_yp[~w&Qٍ<Ic=b(HUAWp] b`{O2J@-d|v;܌U_9C`x0B{CŜzw*Nd4:!q}08G t4df"xp&8&[3Ҙ_IzB'V)M_IoQ#gI7!w?gje~͖֋'5.L%WVr|RZ5j>Җ}W]ċE78+l<&XA $`;xG)T}ufxl4. \nוsvI~cfI~"> Z]ih/)6$^ФY5+!2-^8An-Ud{*𬥛Zmq"R80U7TǾ J(s u )/X,.Qkޣ<<)|hi'ZnT`0))7&Go"YB0 A>Xof`\v$?Og{\Ep=0 m7{)YR]_r\m+LV\stG > _DVonK2Efc}W$tfs5' ~-e,f䁙u\"kF$"G[q*XDB۵6]o<5KGE4W[AŢP\hi&VsW/SIdI,fQeH6G@<ډYzIF-X{R,#^3*#׼ض%OulgD}=Օ)FBZhl81z#"9Odox\_YV!Anϫ:ȏ`H~E?~2*D{r9^n~'Í0wIkI*Y#[7p;11k&51foہ5mZ}4$4u;x,Ӂ=hQ>29^KoTmve0R̷da,0iܳ3X;6y 0Ch'UQdwT.É)S<ן_9PpT]p1_KSxP4ؽoL LDیNaSs&iڃW=^!;5zD<_/ӆ?%-5mE:vEɫxa5*g28Y}os\<}˸ӆmaGLh V]!="suŞ+=P]֤bZV΃IGG>$C{'9]9T~ʕ-'qTb_[l}teXTt-(RcR.Q؍zd.,~U="0`{C+pCkwȯʴcw06:2m$TK}J8]@M-=-#_ժ8.O[Em.bIWjF6c,DÙ=<0!Xqa*Rr%|d?-ئ9S L9cTy;m7J7G%&sHICKcN~4\nʦ$n0ybxJ8IcXѫܩʦzOJ8P/d `|KrkY:%˚e!-V)\kx,r/]V݁N%;lSg`"A?j-0#sdZ^wikMM=M~G =&/ 9%`Ҽ<x2_S:5=#pW͝p2%#(FDjx.iߴL73^,",*y B[D; \jlTpx/C*>&"ٖ$>pg~=R*~@tm 2I >m5p f|,9]bpҵ>cHn~kAltll!*k*Lՠq[N+Xزg'C6Gz`WuD;͆W9,jvE7ݤˤQ`^rYKɐ&V07r{.)W HH (+TkE_]2 tzfƎ+9"^[J  >j}̨(Q>ZRmǼwvAOWwHs ̓uԻN8xmM)]]B߽٘?5C97w恟8Lz 2wWhN&3>, ]볓kg*¬zȀ[C~:me+ٴO]~Qbn~`INuZb@;\'8qF{ 7'IL*T[N\Ff]c3,uf3GbuIGr qhB1Ht?H_y=ݑ2nFT^9@U T>SMM@}Z1 5tAw,{U_`w \ڍ~a8pE~4s*a T! vHKO"A@foѵ^ͱؙFm R:B ռyn^V7v)5^/L0A&;rI Qƞ ud+8Q;ŞSZL[ PhOaux c9 >̌YY'al&vv=bӞ._o~#CpFa,"VSs,Mi$ z9Qڇ_{z a`Q&*@>|lܯTaP6(!04,UTV@CļR_X I 9ށzrfZِ|oxCӑdw_d0ΐ>ュS$@W)غKPih.Qun?ˆ[M0 mp# Ybj=;tj~_C{O 蝄pQKfI>YNOKs/y>S\EӪ%/"̴;D>:XPO·(m7W2ꂽC}aXOI1DK ٱ uIF,Z_Ƽ!-IXn7 ?>*6|22UZ3la&BdK)n;͢dO3JA> ][ TY0.6˘Wt +7~G'9dbo(Uײ/ýJ$)^ōCVٙe4Y`086 Kl[# Tʆ^BPAXXi3zp4+Vs"0`̽qQ3Fj,z}8+RV[A%` KͅoPٲ| ~&׹#XMEC=/X *\DNGPwB "(f{Pug="}W9~}I2 N5ġY >Q}ql20{7LfU=MjR`oXٰ]Ԑ% D:iiK,UN*h'$?b+I{!yfQ, 2rO@FA|JG6r6^iρzj^ rKXoy:-*e%V GE)S7 m)fM-xjaq;ɑd}#dQឫ878\WzA;NUc,.ʵ)ؐSDv4eid$mSݷ_9pޥ L4TZJ__Y'9ԋxd3$ag2ԁ].4so$ 4YWFs^{3My4{zAps+/*kuBUN |>#v.%Y .oO s uWɯB迒58dj\$Ͳ0bi"[fHV~QN/vD}Yi#N fI[)\fc:p}y)j87QXD/(+(07z$!:.7Ȋl yjp?@,S "/BUMypQ*^M"ɏR^<*Y`@Fu! j2WڃsB Q?8=Fb1R䳒YuJЉ ta4@AQ}¡tՋA&M?%5rfM}q'i O LN|"exBȃ}4֓K4d׮[-Ap1l B9A EԀ٥+F6LЭ* 2ߞ]w*3 xҮ4,)h$tB=lo\W}l& 3]=4}Zc?x-;BȃҨf.Б%{%qƳ:gܗܫx;ϦII *7 c޼Xu+uThNwɓʠ'Kp CLJ\SC)62TН*5/m97>:(5T #TFR+xd5X;AImΫY$H6e%1V\4o쐳2:P^[}ZE1xX~/J1Cp'O^ U5):Uo" L=2bBbr՚x 3 { p=(6O3yw,:Þ^|vP1q }Xv !?w Aa^ON8?'J $5^},6KT^X]H [)0 Kh6n4 uceJ dxY5]ek>J2ۦ<[4,7w |dYL(ܝWWFVUeo/ UK;'yްPG)zsP-%QN9N3zetj>QjIHY;WOlr^VH0q4>դ\ܷ ђaJTn)W&]w|g$̀b3{el]CM-T+^~>HlZ ?s|QۍM|nir&-mu]fȻ8W1s>ꘝg(_9uT(j;mRy ބiXhE.umz尟] ' ܹ% gP[b<ҮINsa5IyH!wn'u3`"Ȅ{E(g:;u-HS`w0IlݓJ0l$ nObcwO7Rz@wU¸wI U"1j$+ҿ% C,;gC͛íjjn;·E񢗵 ЛxtDܨcO_0 !jܙdK B~QybL5_m@Aӑd!ƐQA͵p{Q!(˙O.7QOMp02Bj:oɒ]R1$!ƬY}lxrCZx4.̰rj_|̢NwW.rCvWqxY^eXR0N A N]y;"A ў&S&uv= fzZ'qZ/ћw_7U?.s%|XPFFit&-pR/YyrC4ҝx1I"^ڟ[)cpt[1`οˀCstqX3|^30vf p3;}g>\NHƧZ{| /ɞhi8 ٙ(ݱZU_ Bل(g0^V7P&?nLk&Yq'( ҺЭ&ksAj4# }֋WsTnnOʖj%_ 5.m,(CFߡQF=T '.#ȉ(bv6^Fߢ"`g4 La <|ˈA^70C %vejH)|]K}T8B|z?G`'=dDLlDLȅ+]ѢVG\>d@e?hJ2XC [Nsxx=VwAX{rlL,[O>Ĵ?VleFV:= af艉w,tUkFAzñ,QLP& 9%܋ỤF/uA(B<l mGL܊['ˬ`0z,Bj(9O~b\A_zioAƴ7` 1}F$5Qxq.LΖكɠpJQFY);P#`Y _dv-*)vݗw/2}n(-`gaS(FDC!)\6s%?%FzsԱRI!tSz./q/ 6V{b$ 6yJX oɉ3͵y Tv>J oJQa{E54O4C _"ɩR£ZmƊޑԂeꌢ~~4%%Iz],wd@j065+__>3ۚ͂59, kͅ!L^kǼW:t!! $G~%,eSf5A*D#FdZ-#jez+ ^2$nWQNOyD#C ʆ\IOlg]R.k-2Xyuu$`Rz ^9 OH|!J Heޝ86Z͎Er3Iڳl,Qqࢠt^zi`y"'9㋰9&D{ߘe_xkQ 2z M%(skB X\ xEx{& P5+HS|iK‡{_dHagNpPKx\ 2 3YR/*9ٲM"rĕAH(tkDo~SFUyU5J]qeǗtQanG&煫 /nsj!*5s'! 3GV&M-{1RQݰ~d#BFg 0m0ߟFqrϒwxx#1GMLȎ:Yfjus?ghR4TmUgDj<`Fj ĥ9jdKiz刍U5)p)Ǿp"%s{˹J3|D9֫!s`a=bp-V/$4q~Љ)*BNbN6 "Q8fpp{(d%CZggߠ,u-h_*9$c^x%nRn]pgekTVyڗgnn'5\ihpP xڌYb?hV9:[V٦J{RN0 $7E6հ{ Ң,JDeA2Fg 04Fr,dPf [ U)`%Y %Dܧ17Ӵg]):؈W_1_B,wNqndne.gy5sèrUsHeOq { RJ*yK{}H("('ATebDkzBYu8Nf44aNl < YS5gDzjoGf\6'$^ ~K&maD\<@rjtOen(0}dnI5q5+XeFd>xrP@\[ȠȰ]Z/F0תO+T=A ߱Q鋋KGnvԭ k[Xs: >KFK&œ>OCkR\Oe% WrbL3rC-o88vqtpd?"buHḤ~a/}E}>u BrVn־`̢[|k.h 8bWTp榦Yvdm|0`*{D{{H"=fq>Jb3H:>`mW^s7]ozsoc2 {ǔH1$1|,!26#ubftCB:tRJ M5pDbYLwkȁM0:/I!YBse)t_MdE#Pס)|_ɕvktG VMa*ftwA0WV3r{#ʰKȈ mz̷*P!qa;M˽e&lv ,7-Jfl4*"ARCЬq&ɾrA"XPMK0o.k9b,bRLXT_,-TqKԟ:jəMIϳ t`!ЄKq B]ra9͉ȨjB>T7@'$8~Y0pA~Q_3 5%o;)`߷/X~syZkOWyaW,> s7F +!omoD Xgxx39;:A&T Lb I%Sh3,> 7rv-B e潐#U[D:?=0ΞSx{s7(/uI>I !uv@NIv Zla ozN >s (@9SLTu4qm͹AdAǍvb(dAa_JUZ+Qj7#R"mqfs(We'[r1\T򿵻TF>Uz1<_`O3Bum/)^y> 8F:bRyrp4A$5x,muG oI:"+ k W`:KU m1pbctEUwg1t@@.%Ȳ 7zA> -9#60Pv$.]zedKbZ'їT<Fg;{Jq, JY=XD^zN| F))E \Ͳq5bQfJֱwV\ٻseKw-&{b0PZ`\V<*@%!8! jX I j;g5##^OKqѯt'R0>85tij(=M%$ꦺ-2@xz-%&B5;W D\E z>$_f܅6LD֊Rn)Khȕ}R̵Y=% ˣa/n3vCT9l] z:([@$O@m^87ttܓ-K^,6~ (l* q\6=9>P1`P`lM8kҮ>;ݪJHMyy @ *VƾsC65Jmr(N518XVGHH_}T3p_v L% TW}˗2 2A^.NS(R <04ރ$iA!mEj5U,Q- >glz~lLڕ fe"!@ၻ;>Pd0e̱]Ho"ڷRn2{A\aդ(}x@A8Ajdwҗ4F34;Ss!|_*@fBIF2~!m g@ښcID?^_fSPeks@ 7Uk{]rG?'ֵ˙_VqS}YʲV*AA1d f2t7Bz<7sks6 NHjz`@7) S2,3!p^u0tVg8 /,h8X6B%{ =H+,}d"N㽮 : HfdţKlC4N\uڊm5Q_jX'OW*}m(].mu g; b*,Mg$[nm}F !~[c ѩS(@ úWl3INQ0ϡ=4:"MA{%2KaQY^|OIj(Wڢtby;)3-в9!qĚ(`|==[S"͊8B2s?"/^_XAYvy 8 =4"ZݹBHsjBcmuRʼ't`nShXn~)D50 {`Yl0LdEDO} ]XۈHͨ姿[:v6jڝ3jVXz…Cz!E9v,e*o!{B@8D:*@F|w 0hCpQCھC:g =DId]ߘ1EceHsdΆq\/25@ V/ 3ú((1{CsrJo@#~Wf%&#m{0>+U{ k MUֿFF_(o+>=>e;]JG,}'>ͨ]uە`ipYFM-L ՚c]ۛnau^ gUtKuGKXkYw}HY'?lVb!*@0\b-&CwYf+ .Z;'=>K6 0Se@K8K;ݸj*=bVXI\u8S.}oBD4ƦPAH:VG dIXReq`LNTscD+4<kt-8iҔW 2EP Fᲁ.,~=jАkn$ w VS6+UZ4.д`{3Pj_q+A_2BIHӀ~ina{ZV@m,]0ø ,ƆN")8Vc(>;D":!@J ٙHQn]Hvʭ{ Gv@5AGq+@CoәUkY(j̫S_DSwB׊i&;b0pJrf TEm޵sCp/c5VkҿPMTŐ>% v=m"%+tJϡ{ k[[HP0+. L+T'^u9Y 2X:IA()Q8`AQ~;9:zFVLl ~71 R5TFuaCFL<,֋wvjVܪQRbrapw R^_5D ]ZEeh`y2q!Zh 9onDW=p/\}&ZĆ705v /TW!$dDp&({u~_7jb q$A>)!,΋%/$ٟZ- ^gfr&arLRACj&g+׋ 250m gRP0ȃCjxmp"45$~ ,0$0G7вŞכe, 1^ \CtӦV@WmLٳ!62A5|_(5"sjGXWO8SI 5AI8N&RE="#0Cէl$@mX$IδmX fnX#tiJF IFZo2(,taśweΈ_y 12 OO!*(QR00ڬsv,}rX-T/G3KX3=8:lRW0Axuy{Q1%& Q_!LR|x=nmviG"~w1)f}U# Snop!^ #XttcMKXt8VMFlRZY_u$AvK+`^eWը2=RLMBe1am#Yұ,JFoxNG ܩ*~bvA!p;GTa(@usq҂Pt[?xAuw +)&>lap+,<+nto2cf– f+yep1-l_lb%媇:T''Ty>a.rAhT֖t 1^ 2 953 4'琻2$A̩;g%R)=t𪒃 `_@L }OĀv '*7)Nī%.U;釺vE=6Ci;ɜw)z𭑮F0'i[ 9`,%6 *N ݭFtvZ4bj=C=I@DCEM1N˖KBK0D3:[ TWyv)<ȟ=)' Cݿ9:]r37BmKaPu1s`Y -<&*eJyPP)/ F5FDzY[%x^@X |-BQj"  Q}xo8|3g?]vŋ'k/3JqtA*1H8Hx{a2UcQ heJ ڠ0a0A[lYS5rU皋zd(p$ۊe۳,w^xuT5^`OTlO_w!aU G06cqڂ`! bO#FXkvBO>,i 3 ϪS/ᤕ}̫]vCP{@ٗL!etQ#trc|J*O0(/HC)?Yqtfy߇e,Atv ֞&e|jR4(ow?Np^.QJc=꘱^yhm>,K p&FWПH% ܠ@Grk;^,Z.NO$jxVw7\gLTzgMV!$睝;DI؏L )4}`IG3_*=wkSjY0Q<)x0Ii{ezWbNZ,:#p:MMWSI:Pf 'b[5mФ; (fBi6[LX u IR# Tq9EkpCWJ_ ,ε`#c!}@##bH7=U/d%űunә[3W"PTE eڗyk/ OڞaCF"qv@/U4+L+*n1PFt6O@&LnV]qi!d.%uD02I3͎Y۵'mp'F:A1!/j{Xڣ< OS:)w/Y+]63Y@| %rakADٝܙ[F4Nc/̀G]Q(.vh uR_Xd##sL `:MXb;RGn@D*;VR"J~vkg*`]-M( daV٭:1ڡ|N =~U "F25ThV]v 7 dޅj 6fJ95 \%è#̯ZCUQ|ʒ.5n7ٹ,,Zh_v8k&Nx~ƑR(${@>m;(.Q:k`|&5 Q9DƟv5ɧQH2Jn3Ft,"/4 /氼SFrxKZV, /(2iD=6 Qfgw~EާGw0fcR`i\:&U  nbeRX*ʤ'* JmD9y8O ?[?/Lvqnʊ e:i`P~}To|ycռ$aM@CR]5ݺ\A|/Jrʽh<q,N0?Ih{M7(g n6e;h㰵EPA$8ksQOU2uv 趼d 6J @41 CmNEQV߱$juAm3M o }@?T A;M 8)kd~\ḧ́ JefP0B!S :rG 0u)AS7U{%خ;FuYV__4vE74.gmif˙/)A(4<{W#aqTƿyTaL;b/vTV3nCA?ooӚ,n?\;B=!{I՚Uz$SCeH6\ !j"ZKU_`t|ed'zx tv⋹"Xʈ,9ZԹH3GQ{r͸bǿTҞQ"|/pB ?cU~F/O=)ovT{[TR_F@dƗSUgCS#{h۝xV8C$w +: [F*;bqި}?Pb%!⼰AHr4.D?K զJ ԅإCm]'e 7^"z9B9os'd|6D8WӰ[{> [}Nzm ^R0bpX,^"2zDAs fv`IGhl6EǦO= ˡfWW){!jJ>.Ffq4JRR33t[KzYK@>u t]4O K<Kp3FWyS!L?) &7u^dtz->%wWJ6[^-$, lHR|t=BI#_UJW:<+,s>:AX =%r])kr9o47cOH ih7=f#J,;ZL"K0LIamո5iy H )H_/+ooYQD/*& d=^Oe1Mlz%ydu<0.݌C͝/?LeXQd+ɧ K m~% H\0xv\IK򥺴5mNh."Yjn-ᨰCZ_=Np߀Y~Dhƽ.Xg(Td6_7'[6Q@d C` ;D N1{{. T<봩Z&U|![?.7]<ه_L5a(mB7tCGxP3Cٍ/+鏹d3T'7T>L%(aW0h%ςjbTD MibH y-˷QJDO,ǥHIcP5ׇIM~U*:8o]ZJ2Wne5rq`vI(`'QMp3t:{v8(\Th zIW>je*ِaA5+{t9hh8H, x_ѯ9f'>MSE@se~~x]Ls+8bR?/XrJWψ/3B`HܦҾ6tTC^Q!bCd;Xr>MX#ZGՍ(ǾP L7|[GHۇks5Pq焾yz- H˰{sOUmWuB/c1 -I%( kd6|bG*?u4eD+c nocr9uQe of91A1ǟޓIуEiǐMđD<=BTrl † r M21d*DŖQy#ኴߟw{,XD)XB2B d|4I; 7hqjiޗnK3U(-|ϛ)={1Ӥ} !5A,Ɵ펡T0"7rrBӈ*jih2ODb%/磟,ᤁW^$V[LDJC_s*U7 l'l1hBB5QYG9PY`yAP!B&wR0'J6] [',xƜD0|8%#֣΁W{k_ݶclu g4(CuJOu*Ɏ<Vev͑&"(nYRvkx9\bWI%';}N(21W3{ IVS ƄDس!U7aX|C ltJfa`H^}sc3ZeWg o=C,6\V%dg8 K=_)2:9S251fTD`LG&\6K\B&pk㷢&%iz@~E]Qmu=!C_Y(spNVDD>gC1H 2IG0ں 8>o1IF+5{R3<*c/M9 YnZLi$ yW %}hXd}~RSiL_W2۾Fan 5L2X\^wK&5 }xE5[ߎtLJVS8Dg]gW/6IǨM#V TPW(i+.$FD^$$ 4C>ӞuV%C#1LV޷jyQ?'Z|a_St"ScХ~T:#s5;Y%a'ZK@s*]˘sc*lwžVc qok\rٸu1@NWqc>Ӝ&9ާ EX@;usv<] wXx([ë eb`!Z(u =[tM,\K Qh{Or>`ЇJ$!l1`kNCtisd|L9U4ڮ%OW(C5UVj-=BۉYud|Rf}w &nrg28$V9*?'?mQQ1{5epT`Go/S{'MiUmfWb5:ݲhCA8to%wO\m8)^`!TDIdFAk [^{QMM3h=Ϙ]ky:8Q_UqIwKp= Њ.^é.هJd{ȤB˶2SG`#q:c'˝#a|I }8F1`)4hulPvM+bnFnZ2F!0zHbVJAPRߴ6n+sX z ¤+N)䁠%ci/O+1V14̢mM/1PDHO{=Pg819k[F"eaa9pCCs*CHOczJ®^# n;DۉFBj[CMfh&Eī7b1Ys2e0QUY@QIjk,; 38i^FMLYF 010N҄ _HOm@hʼY+_tH= ݸ+u&6j[&C6Y'\DZ6f‡PC30f=(:-, XӾTk,b%B,jz=z?bFu }DŽ09G(XTh0^SlP.ClX|Ç #+/%oYP) W >0W}ZSg]&0''#J8ZszVF\.ij٦;lQb4^ ]_vYmT˘ =~$Y&vФ5tJoqxI_+*`9y+*1k[h/H~% OJ w;4Iz@)Bw[%7t)e!Ab%M?{ ⃃";j3[>q}m|EȤm %gQC(DR;s4%: ߳ST!;@M2@ز9/~GfDDp_Ngl)x=5*]D=!CO?Bʋ-5OYzչ@9rux5nN^跚j=VN9,b]83$wؠjYV.2?Jآlkb@iSmrp?#`W`or軓^D+-<,T-,v~#>hZJ@!޳,NHt ]!y?t:$f.E`V&`S` k/pO};7O|*{F\1^=92c£μZ=~ֲy]XJ 1rjwK7 ISVGI"EZ;8zڝ7.K"ΛI'b[PM"JH+ʱ&σvDm+jكиt&I54Q;^Rj,#<Z Ox u8Лw&eLL(a& ڮ([~?G7d~[U'6P?eԁ xyNe/SinGRw wp0Cú1Fcа݆q,tק/tD>ݬ~ptq-xUH=@,B XR*L ˠc.: TvӔ-{ udeSbOxwY"tx`0n(y'FmTenG'z°bU9mDhSCD)!u< ^r{ 7$t}O+l#O NC)j-20CA"­Sw &-!lcc' xi*'n򂭯$V?4qB?_\4tX>CI2Ul|?[ՀZiC~# )3~cA؅'oL8A[^dV,3{1ܡDk$vy7@qAO0 '4wszWC#x`ҴV ipj7.1S -"MIM1u| C;)~B:DG5.e=|NM;:'&^Go$uV < uoʿSQўkqClzP[tPe'%5Gs" ?D<:&kZ#?hլ dtaZEg9 t\; rT-ͦO6XX0Kf- N6)قŸck#d ,i:PjfI ':EJ9iR~}S*m~gh%D5Zaꥷ_߼%p±UBv-]@s'io,Mar8Ξk޾ˮI_йlׂq1iFK'FV3%]||/JBt`bD9cT!{lG|򩩛ZUZgeÍ(1[u"! nDֺU=}zXs66C5+}ᎄX0i%paT~(fW@剶bYhٰ2X)fVgvj@=J zPU!o&F) 'sKx.X&4x *IһC a76>if #Q9%cWF)+ ydүY"Wq U\E&Oy( :1Lf!ݒЛAhcHZY*,G=P[jj lNp.X%+{TTK Nǣq>k7$z 9.}BtE|q8dAt62M/D)N:46'=Pꖥ%&6CDec!wv)i%iDt^eqD{xVy&Hk#t;- 5 ?VB}e/t 8_`Hv>F *lڹG|Ά¯ N Ƥ1d%0IX+h/w=7jcJQWX/XbO YVqm&'"N?:dggOC烈3Uqr°khdMg+0/q)1jb U%iph3kԝHȔV&ҧcN~#vWrIw e;Hѫp'ek#"I6J)ˑLTxP:Mɶ,Hw uGh 5գ@hCy+Sh' }sU1YuR$:b ӯpBecK4 1#ˍERBG#,XNfVԅ55?axYj\I%$37hdWOAâqر&0nV.S.~j~0ԥ(-\~<ׄI65/ <x-4T;gZ}L5JVjM&̴s) &ơmNcw1$;Cwt&,1)/Dqچ"hZ7 ˉ-V_Bʁ[^i@OxƥbY饂 .^+21ntPGv\3[U6Mw70e~rdZ ĭo,OrUGeQ.`_XoG+g2\ohY_Qծ-~;r)0 mQhGjrF9)+K$ O5s*\Ԭx/6hCX0ٛ=O <9>Sx3ʷ ߟww࿑zG0CUXkkJ?='{IxDHfydbo,ć,yN`"l6dK<HF*$vąr鱙EX4ن<Ádѵ6(&+B<}.; xUUeo=A>O%$$X={UW&`IJZ#򥀎8XjcNvGf"F;y/(UE6;Sdb2R^ٰmɕ`aN4;a!㧷uEue=xjwgSܭbE[1TU':#<;&ʴќ jN6@bIcV+=Vuƥ*alzNt" 닂 < 4ŏ/`j-fg!HE31eCj?iy5gm %=Q/#OIԮŻ4"jd~ shx;va(qo3E-.|}l;Nߞ5h#:bk_:1 >hqVP8zθ>* j!&E6Us{g3pT $˜4֠Zq<YW){f?S;Gz M]P,^$X,Yn_2-rڧ?4A~sun R֋"0tI㟌 y*|7@l8Ex,p$ctÞ @?9#I)2E ,Yp8Q@#Gay8>8ՙFaZ!rm1H6UhaϬwE͆ c-p['%a;JwH@nM`9y+ҺBK߰&ZnF2Fa$MCw{Bud4U SuP[gKXqbmya9SD^գ o-(Q<9k@*9УG74YDAҧ fs'vsw~M愄0 `׿% wL_H@;f ȴγ&k%Ł_^ $pL;p (Zc6Fo{4h鼘WkZtT-H ,(R}sau\3ş2\Q쮺1jIp~=Z (ZjPGo#@y҅$XlT4pN<ΘD1>D,F+TD@5% ~"ʅC76+5LqBBeZoؿJ9Qڛ!|Z4>i?djan@}LO5V:ta\f…ӽp+e I8s4 5#(>^yi+ IP^-%LYC[bzjG« { #0ZH#[ O7!h̻/Bi=C$"8PkCvt`,OR6xk0%e_L&h&O$ W夜a42NYw F'0D8 p3ML3Ja M# BmԿV_+X9V؊ X0#b}H'`aT)NL#P֯?$Q3cn @Ѿ%cF#NKC/8mKp؋PU2.M4}!򫬇GА\`0*y_2MqOѦ}#3d|jٴXQ JB8%y QF!<DIX_ݺ$2Wև؇Y"n<2xhlS׬UC+L+za+$e~.m4/෤R [^jkDmA:ڳeaqg5W_* Q˚ܡ2;fV,oB-g,\V>]["ϽpG艕?ԧdptpH4W)zϠ:X|UW+?9ajrBӉEIBdԐ?@QߦH }NXTQ\eTO$OTiHPFIJVH~3o) ~U|&f8)쾐[dX"mq+oj#(. xv WMxp!^Phú[In#}5\ owct4D@w j_d6AbHMkZtmh |6`I('#)ɞ QLN9?v6 ئG#_P}n*\5eLL#&A(R5*.99Y1}[P6i_`Pg29/u~Γ~ HRNC$c+_Btv9BUh"f)Ɋx}bvdB>H_gd:qE*%jG>%e>R,p0#ϋ}䀷gaw_*;6ؘTK98RF?5NuI`qE ROe HNdh$+cLjE>?UMU:u ̊3½w#gCIhVĪh ӔVEi,pHOj*~-,wejdC4yoB% @*\ix;L?APG5sm11d%ƴ5l -JVM/iFYa[vFn$ L/8b4V,8^Dp%{P޴%Nvam~BB$d+ɢݵ8bN٫|$D:y@G[qy*賋ĖW}l6N,3 HG0V6M1)7ĆBXdi*Ќܕh+ȼ3"J44Lq]`2ٕ !} ҋŴ(&҄e AHKjMlDF/UD/ 'y'\^ą[d&~UOIIg>̪ M.v#ϖdgO1Qc 1drN3ƼQ?1yƋ7n)ZlԢMttCXd1ojXX%.'D˕4.(AıWsH_Nkcn]ق|ʢS\}1W"sיfJylQ"䲢GW{$'8ԩAn !QC]%xzƨG;b8:p_o2Vׂ  s35r6Robtf<#y\ɦ3Ho=jX $5K"-w3 lhkUI;{O"1.XG5"*fQِ_N緟*97J)Z?B}}4#EbN7_|w([ 3?{:}J^rJ'17ɰkaE4S5P.H蔂Kf#nM N[00MhiXցebgEܰ "O4C;J3..)/Yו93]`I lCg.3YMWN8]~MX] rF"aho%<*]2j¥ l|1{'Fr+WvLov򪥛{ѱ inLtT`@vޠ|.o[K 6Iz]4bG>G {M;_תJm}:*q )AhF rk 36 `Q (0(}[R N7J{ah $NY;T$\*?55&ւ 7+(5ZqT[F{u~K_2lxic?S{7]y=ؓv(0^UWLf+Q2:jۡ*$7B6ݹh^9km<3+tᑯtsj+sZ҆}ef%sRRԿށtiD6] UZl`⨋ƅk:J/ ( H?6[t;"~[:cOF{'I%|Wh7+)uF(E]Ys)c["S\)PalrWLuue*}>$%\ĩ3 T2{V9`#/W XYuVT`rXa(BPTMZOڌ(4P>k PuHD@y4)fc65HCARQ^ټÓRE]O# ?kk&ο8tv\ ";r?_mW|ZJsS5;B-.˟/VE>N0Vep,>_*]WUߘo{sQn)87i.I)@irB -Mh$,hָQMWέI&1t}zIW=2<*Yeɩ5E7PBLJjUvvcR`Pԩ63 O: bZDrU@>i{h礻 LQ'>DKSFKw\LM<9lf[ˡx9"C+YS i-†{@UuLi:yg6L2:ZJXgQHC]e*Yi⫷ɺΟ59*IK18:%{7drMSs @&Rș/2O Fg+3( Ƃ>[ːjj "YA*qD& ФFQ*4/5\y kIK+jbf{  MߴXsDzNhfdˏ>utpH@YN>ީ=e1kڡ.ry*_J0;Sj/54i l ޣRƺ˼׫zlHpvt#p7u6N=HXtұ}kP:6r6gX9EBGD' y>w7gz$So, }\#ujFii|h Zzn{>Ff od"ІveS&Nq~acKO6]xZۼ"C 9e^wqB1IȅywjTP_44L'`S]ޏ'6wG*P=FvuV`R`~ #X#S0a)Doq@8y{oY~m` q lΣNCyS" oAbT >8Mhz,P@H Eրt!",`#`%_$O}5R\mޑ"NI9PӔƠ~{Y )Š(Q8|CƑSNq,h7ڹu8J~9xEڱmF$xiwdבA- kwVs{>y̅ ='dxϛw}Q ln~V6j`vZcÝq`^(X>9S1i,G*j|YYNɤFM't%Llwt͓04Lb@]KeM"5԰(U_a鈥:e:Si?.dYA7ͻm> av*HMX!xLHEdõ"Pn~!gNenu`~*si2yۺѩ h ŘTZS w&(ܬ-te@qԅۑA=ZaE*2lrՄ[V5 DT2;Q˦ ;lkNA UsuS!7j!Qp l =Dff@13_?I&ob0ŨoU`%3 ǣѿCkm[mHǫIFbLWTKvo'Bm(z$m8%Wq:[ *ZVk8]}#[[ESum aDvYW Bj FIgH%yJ5CoTp}M$peSm%TmbRVm[ +<"0M=TLcly\?fI_ C\M$o\\6sbwH]f( is_.bLrb lQ$2R%YґA//, \c~H H ˷RJjmVpye=@#!M 1ac\AF3a*6RCגSg]?yUؙ@O4seg%BΞh. .ˎAb}'8ʁJ @f2#`*>CwF;|#]դRPgdrM1՞=ut}&*O=0R{1qQAedS}⫫' / 75Y~Z"l2Ԉy :Mt<^`EQB6/5Xv䆇9EVbJVÈ? |_xdRKc{hĜ)^(Ntc+* ,RHO!Mp>ps X8  SP ڇ{a#Ο0ݻ^.(5W+ W 7e~ _ N>e͆ J85^v T:W ءMპp`1c[1(oPA`NAQB̒<' ߴ߁Õt^z5 +d\0QwuCL8-մ03(. ?v?+3jkqCD{{ UہyXg9`3>7:Fa@rxoR*<^wCb]; !"{`a@V? t;´r4Jgq 7{C~b çIۣJsj t27JsP'xjQ i3h܄..D&63Ȉß6=e Ag$HSRuO5Q <FGA`4ԍ:$VP;IVa@psŦ{c1IyD:jcw$8U?9^ʁuRIX(ЊѱUdTǮ'&cH8gX> S3 }-O5Ǥcw~\0$,\?͌)O #ȃTbj%;<-k͎0ruDڣ3[ -\a.l?,-]㼛cuq3Lk<4s(an5urʳ΂ԓ5&<qV.Ɓ  q) =`7.Y} XO g[ .{BlhtJ!5^DɻvS1V֭|&L!JuYKM.MEN"bruIשHB%uY_۶ K^"/C$|`hTZ {>(Ӎ$~bL.g}B%KKi~HZl~ܐJ'3{4ep$^2rE@!K7Zc$M0Ϸ{Cuf 7&0]!h~abPaM&9;TQ@{\oe-;mMF4)8Do 0۔%b(9mvLv|_fR)\.b!kP^<v_Kv,b^,we;u͠/wO} ew2P.Ok"PhVYzFfP0r,i38jC0Ci0{M=c f0d"8VWws,' D'c 4j7>Q29q1Osm.vur6CZ?ru~7*ҷPPiK݆6< }`dˮi2MU:NqMb:VBPmHǵo4dMƻgcŒcNq\Ո -9 Zc1J7dr2XZ6\ᯖNʄlU@@ ZvʩTg%}"gY'*+c3ڲ5n6mL#zp/ƭB*i&V# ŧkɬ\sS-玩X$ Z8)\¸āxPSmv otӜv#p\֫ф`O}ӻd) ~ rg E3DM<ĄlV.,]ӍMB^>ae~|@ԂŬ0\`ky RX3 ?4<cLEp "Tyl5%W`b sp4 %8SzSLfGj˿L ڝC6:eƻxC(=u[ g\N,J5jjӼ f|KhPD}8?sf;7@ٲa| 6Vd? i_T Gfh_GWRf۶c?SHNgϔ?H#!T <N%Gc%Q>TJpt<`Wy2ZaeXtCu'}ٍ},|Et՟j1LZÈ>urz2'\m'y[A-'TF3n9}E>W\ONIX' RĹkI盲ileѮ[?gӌJy@Iy9! nʍcA  l}?j.gRâT6n+ l-HuAЭm`+$l:9z$Nhe4Lqᑓ;/,q-L H/$acn'aM;[K-'mQ+rXPcYtBbeNCsdh%"Y'،s7>@1"6L.uj(!k\gjen^|wwJi3o_rjtxT%Kո%e7KD TwD]3ґ H%p^Q~l% tOӢ0R87MNТY1Mk-v FEtKsj,! #Qvk'!练c+,sUg_6GRWc|֙_ulUB񮱊⢈SCI;v_g!` t0,LlynjtvjNsT&Zc ޱh.6ScX\RbZXAܒo "덡'^[Grm u͏sd#( o D+ #B O-GJf_S:PJz H}ev3*a>ϭ̭}D4!܍rQm$Z4ko{E%@Oz"e*;ҳ1QWZ'ep>O:b1^UdĦz34jSZs gI?MS&a"rϼIP Yےg1h*g@GF  V+lV[^ɐ9\nD~NNxQHC|!=h.~W+;fkocufdJ=}aʵOfzr?:y=n- ~-~D}<ێ$%kx@_b6A[ʭOک fX=F,^ A<8CzO7BHrNmqI*avn1Iо6 Jú$ 5^R: =P!ew㱥v ƎzuЭV )iChç9{no-YIJJiUҰ@&Ff\&YqJ+waQk3΀ 8#oTE<%vsVl*_#4tO.'A$crV).u Vato @! }Hfgq⸀*1QVLhh${UԌ4PypM}d,疢ָ@_azqA7}q@Ss7̪L t!D=+p@ NKX1ҙ`'oڍ|6%3f|^K3:zl}Bq-7m0)EuzL?x2]H'nwL KRe;\ɿ ˦4 ШV u ۀ52?iFߚ.ɆVY@E <ئ~zҘҺnP.q\` MP~#\j6E.Ysmi09Q\+EKa݄IgV;/6Ά7$uu-"KЃg@`i;,_qP;{s/L_sPyC#&ՒY@f@;"=*+ ‹L+ojG45YXVk F՞@֤렋h$\r$: X i/ы0T+aֈ+Y}!fxigf,sNj?ɫs`YʳNYp&beNVw5{ͱ.ܖv7?!4= ar.]ikSִDXœ< ߱"6y?T `(Z%1=Ru'4 |[v=%6+?:eaB}Ʌ 0ZoөBo4`_LI-%?pq2^VGKӦYcL_ ͧ>K` EOsL8hd+*f.N6ojc@ ^*(,AR3,Rwi2ƹnDtDCԴv1$l 䮕&A{<7]Y[7Ki8p,㢘Gm&^ c$^6 ܟa? b 2yk1&*(8M ]?=ic J;k;TYu4 o/ޭxa y_"FIVH\s;O=sJ+[Կ8j(F׼t\+SILYjcFeнt<=ed#̧u1dMm4"#lp*veNfkaCʒ}ꯉn'b wʠA~5Gl@*T_k2`0+TXC Ȃ+Zc3l/hzts3eH+e)Yٚ]Aux_ıh_r1j硾QUm0H x5i졵Gsڷ6iNJYr7W8V݀+AwbRf;Fn]r^[ 5W\WJ[Ng܌"p0nA@OrRoC)#6 (gŜr+(dTPt鞃 wjC3W+ ]Ъ کCr9bLRw)0]9Z }۹y&!hAcgPI.ޞzo0k'd/U{UhlZE`MٽDԞ(N?W+h9^rr"(K2õjwPT8Z;0MnrϚLY.\nH`DF| kyۋ1?8QtNBA"q 9抿k7h"c/K^h`![0(0 O, |͑i>q0E{9uAU9sGxonf,_ԿBbeۗ1e݀^Vo<=b[jڋ[E=6[9-_2) d-R&uQR (BvĖ3{{[Ll`=sOXT_3`.znJ;Kt tS94~F0Cmz5e%39Baa:^ \r"ګp;%XZd=W"(n.#dp J%XxQ@૓&; Aq}:FtΌ[Mx+a~\V(` u:/.DmXONg#PhB P:,a-dV̉˜09EZQp7I2UQjj=|oe2;V6 h,4-Zr H`!r/2AC04?hs]d91ﱅ2Df}W=.jTxgf=XexBn"|mҭ=^?DK4$sI2=OBNo6WT5Qc7hOc],R:Alaf} ט_ D Y ߡUBhw#`"8 Eq3O]؈K~"-kC1_6K o]C[:w?- 7[7U:ô$xO)t|zA`ʯVa_pyMh Gp'=|p">ny #lo[mx8so)nHڂ[Zu^NנF jk~1})$Sц^? @{c!e&%JҨ^z)6m~PM-esZWbZm[|-IϪNzD\_ŐQ(3燊B$K8iUso Ԛ,irl _ЮxƃI;V\ߵ;"#E梊/'LXFN :WS[팟\ {.B3ܷC޽_^&21UepVI8@wu^r h}^G[bL:z❕.dݣ\ O[ PJ!P%#4!زǙS8j6[ڈU$z0ZDF-kEǒƒM5%4FjZI[$ɹ+خ;~]^6r)!sH%|ч"MQ躋Jڅ"v / 3lJ9"~b+b'ٔ g=кpJBA5 '#V0'EeFth0??ޓ|a?"f63R4o<z- !jQ?<؎y&6ׂ+왭9;mȝeKmu%ΟV(,'],G5Jf_{nv8]߿ 'BǴөAG{Q?_%$x<0dMqOy7EqhcdtTצ EVT1@'~6DT#| OGA7%^D}ZԶb5 mnY4"9s( ?ȏ]˧Zʚ(4[0A~xF9zl/- xr4ɮ.V:闳/$ˑs"0j90dULdu* 8HG:n>u/If}%!ΏʷZ) GҨK(l8-Fs lʵs]Fkۃ,i̽(>("7aU%∘%q&} 3vyrRL$\㼤6"g1k9Vef6*.Ȁ]F @=_ZciS?\cl[K(H吨L鑊k0roW83„ ؀9Is I} KV?S*,F*mJBG<47BҷO&(.n@Fos`07BEoY"ٻI m(/$y/uFD*Ár8Ee$$>~]NL4} Pu6Ur,r}$OҟX^$߻+HWt)g r@3$Hd2nn8HdޫMhB 7 ™n 1omדg6(Vpى|gPxD{!E| 4G%L 9j|JX #MeTw6 /AάSڞkX'dL L KjWSƠaժS0rdGY*g=bIRvr([o?$ũjN×]7ˈ&{5LݒWyk "t|/;S0>(u^27ap (<Თ;' Z8.ҹ-*ZЅ:Q;~ N_}MZ|̝^ŧ6TR1D폣'jqyS?!qGV P8K5"{.T^xLmx|}BL[V? >~J(F\%FAUpG•#-UWȻq`-t&֟3g 4句 i;&|z"8S;?xw MUy\/CMq<`EM2EG𯌵]TU `*`dqfgggu ͡z!.Z-Q ډC1d$y`& s=&&p6 H#;6CN/tN Le/AH*|Bb+Q[gaL (HYnPoJ6yՈVwgvl:lVܯ@Z/K[/v,MZMl sK6tax1˕σX x6ZtPLg!26"A vxe u.PǏ"~pC'ea6*10uůdDcN0hUj]}BnF β3j/@B|mX{a_}R<(lRիQhmm:%CLl?^r4t5oZm+5vׯiz9bbx;͊8edg)Or?xXu&AHXa(~gel: bⳖm\!tm5yl]Q_lgB B&25kܧ"Yio;JxwM,cJ HŁk3eF _9ݰ~VqJr093PsIQb< f dqB ;zG/5nubDgg1H`3̓JfF,Q2N3yV&2c-&{>1ud.]|en&MtM5R$~q856d`#Ӝ ԑn;;:0poR@TEy-bHAyƖ( c﹜/vf*ߏth*@n! s6,1,.CQ2&^76rLs(DθU -%'k BWcKZo^pڙrw-& ȌLGmeqja/wy(_3*{h3?Yѐ!|ߜs3g 5ox!8߆!"DV!fsgVU/4zD%o0WlÃ>͸fk9?Ƙ dR*޾y^(3˭6"\- zS\{4=FDA1(?}S?(]xx/C#+Z9jXEC %h'}c~WPʼBxypY?&W`E{Yn}*=~xݘp%"gr"~g; &J||U((uQ|-}GE?X M:# 3>*ful.[) :y'$m4qP\BX 0x"djDnW9Gji}鄿5;#TCaE(IW wZ֕#Oa ]qu0ЊTBns$ uz~d6K8DȫZ*Ӿl*,xƆ.Q>'r;(h#6-%&i5VbN50arɺGՏ \EGE HTGo:HIYėexZ&#|Oi1g'8ԏ̍u$le>z|+P-<Ϟ@2~,qfK~{d'jRNm햃4#->VGkG 06'f]̥ZP|Xi~ _BG!}k }oC\1E过U$B(ECMʃ9e/olt_h7BƈQCv cD $ wSXtN&( աes*#-l@!lNB lUp|xIgivC'+f9 d/#X Q++!7{F1Kw vmd!yPy\N+ݹ'yRS>7jrq-nE7m#+&|t{ A36슉0G7tiA疥nK8 !0na5yL$:eRIWnuyf, ZLī훱7|z̘kGl%%J9=6C+): _`kH l7ZH u\ɄK}@^m@`bl3iSb"@$?pi-u)X?(![nz3#*? ?} ۜkTk-*IF`Bjkտ۵j޹ùo<,3]p(;S.dd B{49,Z~PCa,76SH@d1y3p5PepXo&HqieNk:(aR&JlyDuaV>rC@uM#gyb| Vvt9iP"TRgKًQ6],rͪ aCJ.zBS~#G Pf2&n ~GA!DEiq)<{vĐ:BhY^D0{O*n@ #U`XWsYMa[?* .y9pU.'EG?c>!OsS;08Q{]7_&3 T⥐Ntz b8ˣt-QtJ }\Uyi/7jRD5 O Hsn@%`H{`xo ?smI(YUW #q16Ѿ]׹B9G(wDah##c%pv'"VA~G^*| ,V6wNW%X?k񿿦S,'9)忒@@OlrnҦ)%`0^U|K,2FrcsOQc=Cj{f֫O>L0mha6)g0o}xMX){u'$Y#:þƻ+P# rW=Ka ok-ЏSYl=ыtƷ qQGz5 .I|?ދYϴ;ɿrr{D6CQfe>@c;nyBȰ}>ii}ĒO/)_m>$({乘td~ڏTėҋ(x9y;Q@M,ru$hB/VkEkq>tbNm^n<m>E ѣNzUJGԹ`1ۑ*AU.(#(1Nf#a'yGIeB vމ$QԚob-`.vw^FrW{ܺ0 v3TDMK0un- d߬/sh*~DLR7FT/JR<$HzιÚ3j@Gb}i` nfVNC38(+j:=YJ X.ےUzen-B1:S)ɐ*g7ؼNZq+{KD#mMʢlZ26 i|^2t<59:ko<҄JXzن9!^O ҝ&^/y@J~M(Pv`&*yrT1,FƢ/%?%U`wkЁR1qХ4{ +bc{Zl*SP7PIey0)!zB YdXe ^WA1gF yual`v[??gr fPi3T| AިMuIR6h[ɮP2 V_ǩH6 o!ɩ5AmeqpGy;ͺ =o^4b›WP?w ?@2q WP 1*h)w"F_#8۝IV+,Go$?HucB|<m)E,ߑk֕X )ɅvH)_R)4`٫M nz|_~@ WvÏCaRR^?*"6vJԸ27<^{7>̄UHYhjV0c|Sy8Z)jKOvj.%^:uA syGjKQ2DWc-KEi3._%=2*.,5_r^&_Wt]W%u*ٞ X4Rxl$$ZξYQt%hdt}6(' <Y"Sgw~ 2qkus}5jP9꿄'R[β3IH)ߘKIO7LJ(h:r cuG(v~'jM~~踖aeNN@_ߔP3B?K`=#CdxRKC/ќD-&/G:hיzM8damAYtM?I{`yF [ wKػBH\@?ni L}Yo%íDo?Q0]L 憸aYGRCj-a>t׭?`cƜvlN~xQG_g]3A%wx~?[|Y+;hegG@)]WizX!fFio,ee^M%f=ᏴFU> +[3?lLfX7zk|iiԾGӯ\[||m!Vgl_PxyF"ތpXcFFwUZP+XV`, `0,S 9縺XSĐwV~K\ʃyw$XŠ ;b`kı$%k+H:ҏn,ckdp,IK 7]krg2AjMbYz\;s}16Y%ȁ Vn %yyN(vՁ[Ä(`'[Nث|00iQj*syy sdm'D?[c/I{N<5:p/J`w+ Tx3iz4Q/>i/%Պ5`ld|b*^l{^`VIQsuMfko$l\nvk\Anh\+*HbSpjIXTnerWoUTEEB3r^37=VU~k7;^G5A`fqumnqEXyXD7o.C( OzWN{gїn}*?7#gf!N bFî5.57-t *&_nK5vUDFh6IT^}ryB$)%}BJ^XcXd%8,{6ɭNS U2$h?5xH"z v/jI(N[e󛙀I/c ?Vqj:5~,w&p絳(]ѰfE`^y2_)=wbgpFS@6@[^0BTJj%EYeсt'?UeM* :^iPV2'gȓMOA&nt25DN0h w$ { 7ś9D 1q+(rrQ\w +b.q'V_\>Ǫ1MGg2 8؄HWqsԩ%,l<@l UkxaD]ʹNA-.̋uF#ʍhɚslFyJhn# xJy]ti!e{"d"!Nz}2X!f okKo +erY@N}.?|lIs4'03KVgOT;!%dgNwcO,G)]n jTY .ROk֘jV7#:w׉&Zb4DS E'żGRW+)&[m]ײǗ=ɶq6qa^rlŖ'/p"[x/W& O^"Ei̞nUQ SeqU%RGP+?YqoJjClVn-=AGM̡L< C~-}nO:_1LhG[V)Ri/#>Uj,,G#FD(lJ:J+׌ '6H2C-v#&C&agCaP40@PJz6?:Lt_ȏb~@sw}WϧŐd[n+9"_5(g20 mcdQoUb@}Gdb_*`[}A_dxSa1iUpWx* Pػˢ.U{P%KZ\ IWulDEDmWoCLSDdPk)#kw=%{7%%EJHh'؄YhG#0oz4Hr]AS*o:4R{ьLskyo-v.1X  ;$%q<fU=..eQ,CaRp]~Gl g$vPx2‚ڔ|w58]b;eČҤ G*_.D#e -b낌ʡ:˛BA/xM?[$9Ѩ,d !$fwM]f(t.lӵ2U1l>dumC4LXʭ6C,ܱS.̱s hJNc )ZUbAo]( P8vgwɔ:x<댚 "fֱU5GPJ ]t~JO߅C#8$q)NE4%i=7`psOP?*8à*}9R7i)w(rA deFRUL/)]T-)sL4xN,:.B8YTgRe1Ϯy"f߫ڨkT>j"F $>3q Uq녹j9F)R.S}(%**;gf/~F"9@~Jc)> F`2'[Kַv"kyI ]GxB[%Lfɑ>'x Њ qDKhs,ǐ>>[~].\YU"%sK6;Rp" ("k$A1'n^9X (&‚zϦDnM^ua=T+0B%A+0oX j4a1tU_ q) "NCuISN:<3zo QnФQkq3 N?(unԵ/US}>f!0K/24^MM~H0PPa6V5GO׷[\~Uٜ)}$p&q`%OqE;dnHjj]++R y+U6ifBnbbz;?cxegZVf.u4GNp)5rX`ץt]t6E_k.LM:@ڐ8yVqЭ[j >:4P?2_  Wf\S^&f`_~Am+̂kMk`&P- 8S26z(D˳`z hb/"؁ͲY[Bm"=o.<ߖCQSEI j4I5$-NWJ]O[VpƒH$T6&vY?tIP0}SB; ]l4B 6{ex)s?]35b RLkd sXGB PnFXWfVI}9)0XR/Umq? z :/yr&e-|c+%s?WmƣK Op&|($Ѣ.t>WF /ēȽq;sLnbhX]/I:)"o?u'?d @,-t@vz~_a9EVF/Tn6WN)5kǺ,<1/zbv8H+6BPk (Rk6JRj&r@ℜǬ? `alQNd6I3(iya8)\OE9RMc!ϋm6dZYNX/!c%\,!S_=;7f$ l:R~iwC/`)\ H"0w` 04+؂5 DDͻdenBXW[҃.25T#mXQDA6웟xKW=!*huW$L3SռE30x@Y egYrL|CאYI`DNh +3 unTw7P?cI/"^W/|K;2204֚WҿL©PL:S#&΂Jy6viE\6c^et6%{RPr<}6k>U:-nȯ)Lպ [ ٙc^,lID2Q}:dOi[aU_0]eME; E +wO}_պ1U_W /㡼Xgj,ba1!UW$ ߛG+MOMœ_~o\1 ' PGVc3q~C쀙Қ]]ƏөiRbzBZK%?}$Uxm)$pֹ2!eAىQr@$KT^ zLK>\ݎ 툹&+?}xd$wsW H*ptS` \SloJ\-kŽa*r-oиtWc@Q6]$iWJ-ZcX+W9#Qc`ytƋ!ro܃5p9U?0)EhE*Xab=v%X2=_q6Cr6Ngˇb,-;ʱ)07Ur81CZW2byIVلfYqEm*< v`O*3,~[s`㉦WozO :~Vnvcn nhVb#IR6`CFmċgl}wPwPu!e8"5?]DPYGxiFY;&8(w"ޛ1n ɗ.^4Ly,)ջP mH ~&iy&a;)f-a'5%tS+pN$Sڸ= !&ZOu9@50UDgc_kgBM}B]ptcpbQÞSՉaZ_L ߮km-eMM4IQYz4_}# ]N4J;HV2lvmJ莐r3>WLٕ# UIp%`&>H)t a͇:INq"HzLp6x ia>,d(UdrJk_rqjMJ7Ql@qw,qk?)Bn\ h#'Vd<du횃ϖ}!nSbA&*@FaMVk=ءNr aZi\*m>Ϻc]ѯKⱏq5nbB 'LU#Ui3:0[ÌR~7 ү)*ڀ-V%uK]GdҨ5`\PS @OgC"qu676ekW !?^`y&d@B6/"qS1aeCGdq,M| 岼u\foMX\S\PN]sBcf ?BeY\WF:jL sa); !V RF>%%PU7+d}ko݆)rHcs4ɒBƦϓzΈ18+.{NmB-R(I1o  DӨ@N˕CJ$8|lz~E:c`C7Hֶ SbCy61ȉ N X#"w&GhB|+0eLթ'V9DC;R=]AzEC8WG?JD2ܮ\,җowS2[! 3X PŴV;yJ^F;祴{ҳ Γ푓) hVtnz)׌. r˒WDzOtv)>~^IsB\ о#v9)xMef_"0I ~$Қf 0plZzž0yiLk UbJۑ`GB#yֶvh둸t`Cٍuf@.3D„?Kʸ9&GL~9[PfRoFW@b4IT:VϦZݠ,C:Q}.% V:Au\]G7XZS8u+I7CZ[H~iHҐujϨ٭2a? I vk)4a)fg\n =b m ̞L2IpWј6߼Gzol Ϫ)FVqH$/@P:Bh~|}f,@EӍi1woި+#08L>Qu<΁M_KI9H./orG*U/F Mu5e G68W0 ŖnK,"K4 ( q&z:HX>e: kyځ°P|c8L/ \uC~|v05h5Sƹ.uɶfn!+S-[wT`$\D'mwwWq_<bcC=Uc64Gdp{5TwCnO4UG<7 2[`^k'Y\A\vKnik' 6ychӻC(x^ zw`F;bvIò=U'a9Z9qbgl# 2oQg#5QoK܋ j?xAkŬW-!~-ףD6\>;o*QypL*Z , #/rxz^uVGiI;71/1?:\_2UyNh/Kj!j0]X䝶Z ļ} F8BđVjhҥSr@ X8^TQyٷ.?'by"uڵY\k{ܖWF_Az3Vԯ`K q9ww76[hGZpͤ'#0_-<#3E1} ͠s&Όؼ}*<*?ٳONӕ}[{r˺ƏRPzlQZ+ XZL}3~xx3Wʴ#+3`h[s|]ilBc쑁Op3C}f]Wbc{f;(-<_P7`%Q[!lL%87VU2Jy_;l35|$VFuX |J<-^9R;far6v4F2g+ox>5i2rHr!i#S+?E||'$t|ATbGOx@Uob݃ ^BV6__vp#Ci#O[G•NWOwwmV }Y#-IJo*,`X~n?3w\8^@uB-}@J*|vq\"d!M$3*36/(T!/8vT9$qJݦgZtH>$̽1a5.H Z UR|ʀ*}V{dYR7Ճ G[T)6F>o j$޳D@^qfQox^?6):}zam jFAZ%I>`J6[X*f1f}LoAvD+Sf.d XŞ3D5s~/WG2oU ƺ _.pQ͚^tMd  JY{x8y7>:J4 9 Mf؍I-{WITzQ*)mSg9@ 9!GoʄN,Syi79,~#1`Zr;Dņ%8+TFk^&,K% W7~5ٱMcv6Bڞo[G贞O,ʭ4[y{}n#jhFͦfew1hD%+Exo35:Zt˦If!r vz\GWS- zy .}g|[7C;%»psQZ*WtT3.Z2h Ln(/ yI'i\uGmŋ:R;`?ډxcc g TL7RzI7kMhk91˩dD"YHi|rv~1N5&'@C?=ay8(8fKUS>gиLXoPв^R}$Gh*_ŎkK\qTW/v, ]"ٰJ% ~sD[,Uo̚9IlSO51sjwcI&ȃ'\KgS*a *㭊ۚeYǴ"j`umOnM'pK.Iكڳ6b-Dr\=%lbit86X9PTq*̧OD"c' t)SL֛˒|.2qȩk[=@׵9Hn=aЁ y~jgeB\Ql&B7ic"k=<'PKUq'B1oƠ1z%iʡ YxZ؆U|J:ކ{`wU'wBn1:ė<uEPq$rۤy+׿OyLļRف|;E+ La,}10 $R9AE^گ7` ]pw(7yJ7mNjU͏JZOWV̀Kލ{>}0(1.fu(W_QDI؈Xix`7c|`k dY-͹i g}x*/- 5ݯ|Ӡ]bb1$J78g9ƶݫ&6GkXH}}B~|sՒ]Rbċi\ !vWyi΁G*dkQX/j E̪k=tOx&MM0FN*c8}oq_̴Qo]vš< P $>+4D w;(_X7-aW%޸<9vTIvRw}ޕ%  .fԾ&HZrj%pєg0QI% m{g@GNvrbP$ "@:ݰжWjɝ e=~sEv*~H!l08{ `e8>"KG-35X*vԾ&+ZgtmʰH;q#մ> 45[P[xxd`"{ W hL.c"-5T ;˚\fQ.>'^ӯou|PXfo'kdXXLO]-hc ?@%qqł)NKO??XGcfs-m ^蜵N9Y HY}<&5>ҌP)9#3bVZ ޼\H5t<1Bw4n)U'LjKwun.J?\؇#;>*B6fk7p &6lOSkMUۆTDP Ǧ.w#n=&㫻X$?ަfT/r-J e]fd0R&1SeÌ젹aT ~$qy{tPhE--/jK/Qȸr*$u1G6 uډU7gFsu?- :W3Y ~6!ɗ LU/5|?Jk s\ 䘄00,F÷ Us<>_ckT m*4yc? Ԫ,g3Ƹ'vNAlC%7ȩJ!= gî@l!z5gNe_1[ :[W:j2H<e !s"P_::"PbA *u*ձOFǤ/ho&s\\`@}_X>qp'7CYEӲf[2jeUUO=zwG9 ִ.K 2Ndh%z[sp:7RwźR%\/O1gOXyYзŸĘqܸcďVZQ L M߫K*X#}ϸ|ǿ!l F=l1]S"LĹ32ODlnPDc'xF/sh\6tms-tዡ~'?εDY7''ˍ?qb: m#dTm⼬I;q褅xv@|90n[^f3>|C+%TM#cY;Dr LZw .h=Tg\ z(O5K-8'j"V@&6Z#^H5$ Tƈ|ĢAMc\h<WZ2hS/c[iS"|GΘ쥲[ 5BYy 3Z%F8Nx\}Lܒ|YAbIؗ| Yzo*JK^g}A}> 7.| G7%DAwki󽋓׮AѾ *ؠxs1sR~%:ҫ+ 0 M\wKq\LUJ [EK4u]ղR<:?*yC $] @C8҈8xן}?|Ks %вqm #%5rj] 4*#R~#Ai],YO8tj& i)EzAT5S H˜Y/*4ƶ޿(@n{c0j(A?#|5!Z`Ew^~h@_1ߋyv 8r?_"'!n EXj5Wn< jnRfjMk_Ǖj=̞e8&ź7$[6KMeNwx~)LӀ(Ǚ/ mNd_ KП\ {H XBċ9 EM"[$N/r qD3Rd\ X$&AfU_Q}|bHg)؇ҋ8͙`P k/F_X QФW@0(4ZÀ"'LQjy@lYpX\$~>刌o&_9FR/XcVA)nǢhd{'z™ GR>9gC ªmc?|s>`,Sϧ 1+@9 i37GMDbG<3±I]C>xZ`+ѝ?@h펠BgT'{ġ OwNùNhwDxWC]1_W|w[b8F:j0sx+#WOsm nԵ?0ovuym%]DUN}2xA׹;K&+zH;V^M+|W6ǔ*aXG%c5ymfWVxOG-G> Vi)I4v}fpQ]Ac:hSvft]l<Rf|Uq?xG\Ydi,{nҷ wf3i_Ķ*j;ίҧwVeT"BE5rF}SÂA-lHgDзB3ejF:C13DCqb1> jVw&^˙[ >s|bMǷ)N4gnK P)w~ Lgk0e8P鎙٧8#,!Nqwӹsshr=y(T27QC^'U΍xPT@&6mu>j~Ͽ\/`D>;P*'Mߠp\h5lkWS2}yΠMjZZ);9aN[A2Pr \ Yd&5Y)B ͷ!U}oXW.-#H=l? ɩo[[{/&z⟾a.fra4Ov54 5:;z.٦\@9."׹0a 8dpD^syȁV4܃KI뢉^sYIe!E%ۢKkN0PX4"B1Yt$BN#=LHaW4g[Ō$N | hpu$[ i^c{ 1OeOzd1娀֛?;狮ȕba,{<$`a7=U yeOXgJy _'q9SchVHz^(JA%/Vf;62"nFS+uI 1Mڹ#ts<^= >̘`DyUUQEW5^?[ԯC>Q9*+uS+QT&/kj"0IayJ+>{>EǵG)&#Y ,[qÇx_ӛ9ژn\(ᑞ 2<(>; ߉ nb۰-Dݨ11~ij.Bʂ\MVG1ς ӓgu[q]t/'Ϋ i~2`J;}˲NS ')^m:vܫgoUcK"'ur_HŘVK_A``/%m/?"ȇ hUWU)k.6#)iQ^,TF*ɡ %+U?,FH{܃kD|5_VJX7k*?)&IǰR?D" bKoH$ؽY ߛoiEno ȗH SGomw3d^2O[E ;`V!Âjz\D Pm;.BE:6baW4N68)) |}Obb/+W{RD1iەU^aBөȃM:Oʃ50 hJ;ʙb͢87>rXWA.l@ת!!-?* #^ EBZa!!/jŽ!!ʧ[0Dp6sQP]_ld.t`]&bPK=EvU̖G4D  Kf$у3g.o!G |/hҪ}͋d@ntQ'#nWJ*y~WRgI6SӀ j ͎0 ^^*"v^7x.IbSARu*5*$spO఻A&äRrRm $4x;7bP*$ATB3ΞSgtF|]`8-DCڿf*̑iLz*xO7O)qfg<1MX–",i|ϭ]ˇ )*q?zX bi!vHqg6:]""'̰1Uq֠>^:F%I j}\a}!FI?eqX1?r:lI?>.3F= Ta_]A+tAJvQ Jr0Ѝ\SELCI W;l]WUhi$@ 2=U93τd̓ٓHS@ Vc!`P Ǟ t}G.BSa﶑rqSGl07>Ol)VPMUH{yt1}By1ҖI/m-Dy)<.)k΋e:6]hCc54 am,O) ҉Q;#LE+GEV@!9Grvă DZ!o*<%w)$z09Mc<>l/P6B TG>O6ATZl82l''m fJ(pL2wK<+1@VcUWM59@Svw3 _CD>%u[uI7tHE#V]ڼ(}d0eVQC1 ]/fPפ"Ц |KӍP)U|~^i9 P0Hl"w!ğ? +}}&qR[z̳Zx Ylaε4q\rه޸^]z0 +ĉeBN q2?Zٟ F1 uk_NIZۍzK#[]OWbJY޺'@KjHP,{j%8 WpxӆA%!:Dc~+gsZtLŕ Tخa] A[cׄ],}VX9vG>3I=qQ)3r4axИ$l-8F0/O)FȄ@%u 3CIjŐ^%+C6d?XAaA? sb\Z_T)y)Zr"+ՙ0FabAÀMsi{pkrMXω_FyN Xe-=`^B%˰q;Pkt4~#?k5>Oq'{'wse޽Yͽ\D0$XXb$ GA<lw_4q2!81O]1}r[Fu&1os埽S|d]Wנ^Pz4V<}JE T#dIJ/Q5 12/ƀSyrISZwM<,m@h76)  lzT!NO=64:$Ty)FE)a+ 5D Y?-5TdGv :Pvؘfg~|n3"9{qq?z/$or ,y1 NZAifHs`~Ԟ`qjˈR4QNT|`8 Nba?H_Gk~l+(l}3i%6F*+tq?5y8YMK2ICF: m+m۳TiaH@9C~5*段?e%ks! *5|DhracaOق*PO%C>d¶i^"sʄ+kk"XÔ88hq=\v1$!f"PvK}ϼkޠCP%FW8&$]G4 S b)ipoޒU;]e%L# P?/RH@α(wh[:}[!2Ԭs׽2XT(H]7<m%ID 梆pCD<)#M1">Ջp dŸrC0k{h{a~Z^w<bs:_^w)y֑}rn7(y7m]d>x0.]wOU-Pݰ M[zfA| %̔U^D5DtO[!3kUƻ[(m:0!+ɰ =d\J<8Q"YR@rac5uo,F8Θ=Ϊ\"a_F`((r-] F;Us`X0mi_|k=5֎g <+ޣR gUn076 /9AZ*TYi!=":l&doVFC4;>̀Nhp碨V_]=頼=&}L4u& V)S` lеm.D > 2ьÊX9u_#0ΪryӔ| C,;~~]+.Oɢ)U}0kOmuIG>2`˴K(O4EΕq Ĺ;j822et=@ ``.t=n^LJ–䢮hc"`V]x[^|;$7G_}t< !Md> o" g`(s=6ul{eHs.\t=B3w\]}}7r&q2 KlLI|2>J\-k3˹$P[jrvfw7Xt)'x-|n!.wy'_'Q iOC4H!ǝp bҘMVH*ģ%XJn]H@*gh 0&=[Ck'X0#>gRNlu&9~-ɫq#Nx@v j:A 3o@ѭ-6o6X2_784b 3YUxAQ3xFtZ }oȝUeW ˇ%~*LͰFF9sUJ}Nޢ+s5K0r:ĘVțvFC\K PxA qy0cQf5,xHK D1Nə L@ݫ ےk$ՌQSu@"Pȱ[)1PuJ ^\cTU;,j5J={'}b|ik}.- g Lˤ'Eq<=>P => ˥oJ+;  a l۱̷P]M%7V˄0o(ndNˬ'g~ƙM^ vVzV%bvSP(Fs:6f~/5ʊBHP?8?@mLWG]ێ]@%Jj iߩw+b֫bܠ̫ʤrLLŗ'bՖape=31Ǽ(& #lCͫ< aø&ȊSšJe`gw%F} lȪ[s.I|nc;i"9 |wjw$86EV0.r1 HJ$)glTs\ڣٿuX RV(UO|͖|qT+09  ^rU ͩ*9>㮒,WE'ou OVr O0B2 v+A@uA|"rh2[ޝ %(ˮRO> @_U2|>s4c$m7 ,Ĥ<9pP&j@V#`m]'6iG҄]m9}NJEj<3t0"CSc4[2] ͒ `de᱕ j=)Ǟ*N\_Ø8Fh0Ҹ#!nEAbhZ@w 9/)kBA5&R_>u߂ncW4RG<(2gI0yF9$Oѧ >.*ueޗ=[y ~gD賯]e FfuC N^`VmDv· (OͱOa\ W<-k&nRhYM g|<(>kĜP6ȟ}R i  +%}$nL`cp_%*r@!)fkjiAkQ] ƺ19:P?U{s{#X.Ѣe?rwٶAٍ)1SS_9 ㏌;)S6y9|W# ;=7?t+ЧZPCUɠ%cfFDFe,%/>6PO 󯄀^z#D44{yo .?l/*)] /^yhyNݰ{ ,<}d|lAnrcTEhש5}rhZy^f\5 K2Q%MWƜQZtrc4DgՊ\.9Pܧ\.>U#/]GaItUMthv ӹԭm& oD(?-$SS:76v T h_*bARR1rξufڛJr6/:I9СM(%w-# ֑kۢne0]o(;JWCKǸ'cȴ2Τ)j \ܞ" 8{v<[:5j~!1N3or)1Ar9;PaHOZ"!4j8\ɳn ,.}_peF꼦B S;NOzT@)(Q"خOa\zRO[q?/g1p~0_<-xxVxTԈJg^.vW =Aw{S7uv3N%tZs]qg2 Ld}xQ~6h\jWh?,Ѱ/$.0>Igtq]չǞOQ@@@X|a.xx6Of]&v6v2`AfTƵq+"FP\4U ❢UUwpҊ̨nHG[w(7Wb2J\n>_>yqmYsQ3EOB`\8[ԟH|FRM 6la'cDB\%P$#:~]Ķ_oo9ǾeҎ}>Иit"(~ufo̊[M5W␘ۅ!X|Q )A3f$sW zW!RQ6C.tewη^pq:7WPGXCL?[wF!׉4#܌gΙ}&ڃe5*z q36]Ί'7i<sHP7btAOH8hԹihP<&S"۩DNn̓0\Yހ }S#Ci=Jq9"(Raa3stgҧbɄZXM܈t=aAX-ȮD堯hB B1u&&y^ҁZN;8.SѲf蜓O7._zK4?]ŝ9q>L#6)ad 9J6>X&"6Q8>`tGIC#lV]'jU_Fi;P4qE?V+3A!EV,VwT,+%d,.VpImKX #H\4YGj]%9;3q̑xAiR|Infa[SN#T9pBdo36oMгH, 6p_pը'CWOiJ㝕RǦ_㲧wƃJ];v[;_#Sg_m(,ڑDVE?^!9@]>L. ?kM]]WJ Lz4W-\9Bc`i 5NhXzрQWX#ͩv7JT>B88|nwV5AXlH7_ʑY@2T5D?1f5Ž9 nz Vȁ)`Kr?ːDL&O[kET7$&J+؄:ĠB$ZGѳhj~:XKCnxN.EQUD*"y~x$=04^)j5rbGH)}^#53lgmf>YeE{r &^.n6įIo %E(eM ý:6V6xhkJg'/ᩀMޜz:5*k>KBNk#kO5ܻeU]ܹDٌY^3uuc"A *c;/͵8Y̋U0k: Jٱ`n m}*[D ֤~ t=@ឹ호{̌nI!ȔAn7cK8]z7hksmb2ڜ:6 ;-ҼX.20'F ljJ_!^resH4ywRSD]7]/{Ox~M7n2Z\ﷹ=KTZP ReJ~;ZܜuM4wzCMG hW\}e) ȡNO@pI4*jj(v;+J0)h7?"$GPuD]z8G\9Z)j2l`U.#ԃ߀ ELC_blW/VzVpm\+J WAie˖C+̷%CoPݳ-_z@wۖ_Hlޑ;9Myag4߈s0^U]g_I~gi> |H\׉4$ELixMKlQȈBsc7f[8-J ڽw q 12PeF~_c' ~p'GßP HLA]H8+1o.4[ ?cAp*95CN1GAi_8\R !7??-m<6mȘ/8%'fFikYSG>{pį5lU~Y}2eU@]$η3{,WbL1'tU IMb`Hj{y8Biaym~"Lp쟺S VĭjeXgZEƪ,.-T5%[4goHcC7=_VtL+ WUTz_zk&iɼɝbD*NA eb"@ZOpZ}WCl6]o-DWM'׊g.TBtk? 'w й Ժ>ll.ZRUjݭÍj=kC> /+@Щ(~baTn$ r͛פr˧MGkѪ҇ m$!L骹ߥ_&|WxzZ&KGQfGHۦB#v|}ds,x\K#6,{ggkA54c$RS1w;yw>(PX.`Vo(ko1lٹ#<9>xJ8hJ̈e5a:Rkq4,C<6 +"1 apŽkߞ"CD Ѩ])[)<qqqa,5"m:SX+ݨnbNՎazC+V͏~th^0trQ(D>'_`t/Ql!Z0'6֝!z^ܾo?^Y=X8ݣW'KxJM.VDYMsblۀ= FqWZ4+z9}I6L 2ZDOp`YkS)î-yװ?t6|̳A2ژ+?{Q]Bj7R?ʜ2QiT:q&:||Pw,eD \0MMXHnXUlɗlߥp>u(.8_Rһ8b7OEFH]E&:QN4^c,(+ʩ'gC<>QnG#4FM8䍳PHxS\ɴCyr Y GZ:ƃ8}CvV)ZkV4 O HICu(lgwahTknKy9 q\G{飯-d]˱ٓ.`2FPgf^vq?T[Ɓå|}RFd&<LҟkvXյ~? 1-D DيMYՙ̒]Vl;z`}Dp=Je=Bk`<$v9EZJ8 (f=(96Wtn6B(]{nr.7UMe祈|u"qM(a\ FO:|(W#T7x4/`q1I|3\ 7I#h|On bc-3qLTsҦ 3%8ϛ*OF-6GW{-<0T_Jmzk.0j}9d mTXe 9ܭ: oI&d"g! ofAL,u"6յE(-+B[m0Vy(8}!ƴr2.$^Y2jՒ]VW'6 lk3~y,ȟB^9L9ڳJJ IT渃a}صہ,ۼ3e5qRzq]XE?Blo_U$[12 2bpxEaXbE8YL0`A qzP&P%ފz;2Bψ7;!ا" ^C܃)K%Ѱ7"_.V[HӾ] -nɱ) iLE+ݧosJ$flL0J^Bx .H=ʐei&JhdU8xf#B={:b߸ ~?8)zw 527 f O]z0(UdY|kiG!Mݻby/%݈`̄ﶫsK \J{{ yܿ22جSd޸54> mC}k̦w>ɡ^D/?UP34j宗fgTLQWjDՂ:-7-o-{`C: mËYc _oYsq{#[9MVh6'Ɨ*[?=F@sjIEې`4*&V*IE4?+)R҂QP٠dE?jƷwu{SS1Ο#)7LՔ,W]aES[qp{K<:Njܦ"a(={A1 ;%b9f749Rz듳#\= eAMOY'TWb~t}f/V.=-fK6=G)e  c 30H bxqik Cc&.aGwfrru;ub]LJ*|e6AxasuWW0ɑ5H_\HSxs)EA=>.2 x L|8\A_wx4IOCP;t:dT>#p\6,_;W 6P[QOO_yօERz-\y: A]x {C~hfzG6CO$=<; .Iw. <Ј&j.ܠĽ8ش."sc^q-M*9Prө=n~,%.#RS\S)z>rq&4hJ˓jDR*DeIWpK ̲ XW3Wvh!(5΁.UT-ѝHp&,lOdgCC2' }$/^ wa4ЄY:x$ÖDwrA^)Nة"i;%rbvsP .ú,`tzA˴oX]-h$8-p-kF{҈]gC?~GW %@r8퓂WhSsj<`nfx` f>$ Gɡx{r]{KӨYG]wCq 5 @~' C:"apˁţtܴT;U&lH܈6=2q,k LYbB?cf*ffBj%$#"q2z/{hb@7i4驢mZz)mϹ#/H: WYxy3:Pw>4p s&&9bݼدLivԙ[[yw }qlêƒ<>}cGFA[o{ 5%| rH#)*wʬk@6^~"0#i=`g`8gl^ z8*J3N;+=W+uEhk$(Gj GOs~AH>VF:i'&ξX1tm\cp[zxvE~h}5mckd8[Д1Oךb vh&Uyӑ>ꑫE_+86]j8$Mo8R=VD"fq7 0ؐJ;wYf솾tbj *DPEߡW<GLW_E“6e8kR0%Qų>GmY_د=hW-kb$(M  ^;Y]Vߊ8bi&%Ca6]CoE?IN^(9’nsY_:^r>Yi(K8CϕA2؇MJNt"7< 4~# hܧ=Zn EIu1k8Ak ^" Hz<I.,#i/@" ƗICM6EUA.Yzm:TI ( wq'B5>ٍў :Ed0lz[#)iA&e/^-oso9T 8컕x] q⤚|-~k|Z= '15t-c gǽ QKCΞ|?17OCc '%C]J,Dk>Y@ҘŴ]7/Xر-iSMsKwS~-B G c+`>H.<B þ#bVٹbr vh]p?Ⅹ', 5dFc6. 7 @RKAԏ8SAșSLs$kg .frˎ<\v|uWN\XPWE޳5<%7iq.n??fvC\iY񠎓J"iPIGxdsq9Wh}:D5kT>h-(#lӆWOG\hsOP5p-x!H z:w ecUjFuiM0kd @p]{YlT4hh<,Vb%m{u붇r)A}y$Nc{{W/4Va*p,MӠ~SQ/Umׯ5??k2ءTAei+`bnd"\-Nsg=dBnkcιRlg,jx4 00q#JWC֎'VňcF 'ͅXTN(ڻ}଻Ȝ<*<NwBqxdCa+W`O=fOSD4pt7?'H7HWersH3}_ ")דcA r W9` {#HU^wݗ(`wQC@ #dS ʞ!u4NLq'xf]*@Q[+ J%c-v׾ ѶiXZ! p&/+4揘y:4 a΁X4s"}ƒ,M1U2U<)yy[mj0_HulA)LU h)q٠&we֬b2vM`_iab!O+JHzzF1O](R*4}ιu) I,itU'o^48Ls"NǙfغg<1ݯ%I5i=f}<z>{(ct8фAsb;p4\_~ixE? ^ Eiܟa.E[z4P)/LuScMv֞xƺ tk#_}]aY7QMۑ0+6a8}ޯ:o"'GFwv=tIa+\z4ojv62&eV:p!tSܬTs{ӌ#eJ邲N;]H+ķ)gb-A);f(1|HyB ck߸ PD7&]]l-o N*U6A+_C63蚠⇗| Vb=oy7Q讍9ʩPmE^? H?_Ͻgyol V},Y/I-]%` hbpH56J@~Bs?) 8:wIK1!ғ"2ܦA|fV-V6@Bmv@1ƴ#f)+!r6N,-J>Ie,'/t7.E4ƗK8R_= Vm&}Q!g}x, H16Ѡ?%.iabCu̾"p8PEC&x))U Ͷwgz阺%'\#]zaX jC'Jڵ1w '; l~hlZ(@ϯ %Sk o{pZw D)Pf[QW WC#ĄwP5Ie#qduw 1#,&Cc/Pvƪ(ER15GiFL3<"=w/i&RDyu2& g x'a|rQr8y;Mh)pZ~7bx’bZ&F [SY%Œh)[+A;CD4^u[7 W)HUꈰp 7G'}tjKqJi;,6cV]Wf^dJsP4!-@gԔ ;s{ېE}6rN8x@UQf5X2>H{qpP!a {Fx_|%7lVesMRV)ӧ`_%+}RZC Nf&5 ye2EmSR܁W8sj÷+S2P><ٓ'EB||?PէJ&/^`[;)rcB\]xҐ _ e nHխmJ<ȉ4':{6 e'ߦא Vk3SL+?Ӓu BoNxpw)ݭTpp?j0^0fQ/;2/+=(=05 )F cRaK@Ee!º ^z|O: iBQ7}_Fc!Ws8UK5Uҍ:x|k,>I% "vz,hmzY{ G4w&F<Y-uLqVBz㫶(uvh-SuNHXƐNAbx%r$8Q4:+7wo^G׃,]W 5YbL$~aE&cdhŨ`cG\?N_ ;@;9Kd 3Nop#1q&qLZYgrpo7+T7xhzCyH./ɇ"~ NޞH4yaOrѽ5k8* 8XsggpTmջYą,Eo.=&mt )qEJjX5V6Guue|Ͻi쵨ko;OMp”+uO RcS|da]p+PgeKO얏 ֓ŽCZU,+\8Q}gb+LTu8G^A,7-{V̶[in1,漨b:ԝ9-*X($O<XjN3EѪ&^qw9C?)XPX> E= ',<xƦ݄<2x' yEFdžV4 xS} "!P:Kܬ(1~;^Z&ޟ 㔈SwK/.Kv%DŻ6jy;NRW4'3Pr ?˜ӭmŶ Z+$@9Sv$*xBRC3v{/@w a~mY{T2pGm w؛%%5V odaNB%zS_/EXpя:tj첹:  bn;Ƭ}Z/v~W_4w j>#{X.]"o 1 *Àz@)a7AFIH>g4ǿ7).`1SWk7 WcU)Z~0hcJ.(rc%!!]Ȫ!eeEiwVw-X}㩣6&iɖv3 9d6 QP">VkJ2cgY!6=E䝭Pʨ%'>=z T zH`/L J{.w},v-$9p2}QV qXjVYm9igp.Nw>>_Ar=QP,eczIyҊ6#]2rxQF2`lα( T!`92(>p.C- ybԘoCɍ?wvQp:1c@Q rP2!` "ahoZ%o2/6U^Y;.)_8ѻx OϹ'0suLZn <O55h^ g"1 cv6 o?kOCL@=Z0[@HcOsǗ/i!jj_1n~$s'HF'WcB@}FiS_ M!-Ca_«?s1]y6yU#<&Rz¼bw#G㤞#`pDx] ~RPfdlO('e5m(&{MEטMr򤂳*29Bv1A1_ǚx)HzwN9I{"g%,+S[^ޜW?(ݩ=ub֐'&͈,.1 J+= wŰe~\GH7sNJAL+pSCdwDn=m<|code;"ٔ%O[Wg_BQ'Rk{`O%k]dCuv&l14@+Q&.\t[X݂ZdծeAhAR6`3w&#ND9OJu=MQ4bhϋEG=s "oa°\ݠO_Q_$EagIeh=%8g?@K-Š\4;۪ڒ ա2VkVGp }6|fհh;5`+wre!<+PuKfNpڀw߈ߒArL_=B}ۅ(2NnD.RvnuXx< O~~^'D'#0"^zkwDy-jOzB?΍sM_s`svfYf57"֠鷞Y(;oFFwfZIH[ 4usJ -! ʕԕjGA[CPlPa= t*j,nIYa*VЗoW}i gc2N"\D.by>xdQ3R3>x;/45aRbZ 1~U 7m弭lNo?T|Rmv53plRr+~}92y_/#Y)C(\{Llr$^(bl)%qƧq1+k\beW㎎\GK_8X+̡\ ~jFlPP[xVۆbdAce+U=|ן|N/[dB$bOl*5Y2.uG6Qa Z-&nG| pxsƟ"ZUkZ6ZɥmM袨,h ZTG9k1z/Ui : m0e{şir$`ͪڀr#NNͅ/76Ԥ4qF6RL3Mq4R}C1=7&) ѝNֽSqXUz*#gJƗv^$-jFXawqpAU,rpdŘ_֥K['{ߓE3SK;I~NVAʭ2:T_[5ۚkK 1#џ\?^I" ;8!{Azi[>꽑>S[IqI@sWIg&rjׯzt6@7vAAD@X4) j[ܾ!¥4B-"niF۸Žn[rO ԡ`x\"K!ߐsEjÑ<6 |E"}v zm;օc`sVN LYMk(M88>1AAX#%->4q)En >ۗK*Wk;rͻ$K.Җ$dt )k0C7?Nn Qvن^z姁\WUrI:u0(D haݻ-Ћ{e"uqiRtd{f"C {:T3_c (ImUFZnt?&3ҬԎC gfY.RwM^E!~_M#N)"8Uq_ZBJb5} tUoXڍ˥ b.8E>Y|eĉѧiUru&R'ޗ?x [|4W*_=Efv_CJP'QoU0kUr*f4eE~jXKKgHK^Vʈ' vַ9vQC_ޭ)5IH 3K*OrY0 &Mp F O@7xS_?Jڅ%rNa1ҙ&Q&({PtjPN\ħP!5L% ד˥'%l !l 8?λw$rtkou/JwtlU:M0οlB;~h;7\SLwfֺs2K&-qڗ'd L@15+'bq;¾'mŪ҂YCkQag4emEvsnڷuX)ft<qղ=Q3א-(9V̎ Lj=ڭ>:)T`hz'u]ڲR;z@\N]I>MM |E; / TW.(>İ*s46i+[J/{q˜sltW%ě)lgqs( *ճ"Hlesk[0^R<[pdnB)86X67 oJfQ0 _ X@ Yh3'UU#B7Nd6LÌ=";%UDUZqM%żѡxѱ:};z(g-׈d-ПYS.Bi@EANcs5=*2x=zuΛ\&lj=;ʿ#m);POU0Ll˜9Zw ^u/Ԓ.~NjLVTc'_&M9NJ`0 <μP22cOSѕr߶43[ݟ .jTi! lqo/k+8Qfs ަC&a_Ζ 5 WB5JEXP?80(ʅj`RdYN; ݐ4aKLзwe Xќ 5KDTl d29~v؍ڵ8%t.(ɈdbU!͓Ad-byb ~`&/(n |T3+Gu# rKۃX\*u[*YO7។HPV>j1_0 $[iӅV2bs( Rѧqrzzd.sn+"aqv䦣v֊-(,|rHHu!#yk$J:RY@!I%>(4Q8ŔAe)< mfB*:{4d`h"}sN\Ƈz[(Mg$a" < vزd*MpBv"?cdy>Zm3 svz.5 ! nf77G>`KojX{=76FjVa 18H|g=caNpdUn}By\TMr+2aS̱q:ꒀrjO- vҬNn[OE2$"AnP~^B}Ҋw {[Û %,76ǭ#*ҡf[b#q򝁼d#Ly"#PZQ6SG(pؒ]kQim5aF??FBH9jp7[!H|}p3xL2T?בnŗJ#8WG{ëYe$%,8!QQ :5cqi] @c?kPA-ǵI0X%x]f jy|E 7 aD GR`}bO!X~k44R4pVž8S%Z.!lT?8C&_;Vo)VE Bf@73}d*%8`jsw8@"_a*= =PT)b< ^} II$^ bӹ*׉ٖpE-Rxd"l;Bk؛qX~=/&b!2nee+\(bZF+}dq[=MWI"-@OMSV4*oiUf}E$tZFK!%@"怒ToVz}Zݞcknk yQr+NccdEwM^i݁Ft⯽wJ_M1-\F>=pH9@^‡fiG~Ӄ|E'PO[U,8mR$[!Z%a gPsdqp0'9ݐ` ~IlB'Lv6B&@WQ{疘kzۍAD* 9F.jj+r40XD8H1n?q =W4 >wq[d="PveM.<{ZP)xє=9(tv Q~xYrۿS&M&ѺCqs\bŞ/4%$>̢Wm:NSN?}YJvBn7- MeM:GRv(OҰ1 2ܙ lG܈찥&8UǾ`41B3nclsE pJ p{$ C=xU]$U 2?&~9\i!6qqsD~bO<c㦘6)x)Fil0F.]rf]]kVvx`ĥ̶˸Eo:'#@Qre%䆀)'3EyD@q[c;FFuc*ߨ[Oe2n&[W ^&/5J۟.v v{ײCnNT׀%9]][6572"d4 . @a!݄ՙa ˉZ83 ydž}.zAi׾o-&fLnW`D*KX%DQ% 1ɜ/k!$Q]y;QV ZW_ƥ2$+GߋI3tii&bSPE 'jZ*3~r]nlk,( j ,kCa> #0OiA% kY}9<=YjfHaO ;P0+OH{6i4K--~i= ,D6؜:ͅlSfy$-adݤsԇQ>(Թ<| Hvo1yȼ@N}46g~ӯ@GC"6rSq:h韣Mn]f'eڀf)*/CjHX@ W>~w_DIBX! QֶQ?r Ts47y*x<>MC`ecZ律ahU8h% phU  ؠ&ywK{n\@ؽ|`Q1+0g/Pf_S* 2W,[zV/Wȡ68p :070)B+0L39?KUE(bRvGnQ,|+gIx#e8!fg@u;wD_)HINp+&eAqF |@mzF%&ҷo3Y-w?f /:I%j21U >im?ų"^3iRߖr,G{/V#$e춚lPK9\_`-blXX<DZؕ0_9Pxce饉} GUG̀2yvZDѱ:hEgKSjR~;@S]Xy?åm!$7hڹ@}͎w^ǣ]ȎXiڊ#cms1]wvj5|Lm+]#mj3\*Z!!`vwAkWtA|hI"8"?a6N}x^m$킚!eL?]mQټ^܁p)v;`d-b . d[X߇bFJQ mzw_!wB%4 z( ;YRzV EjI|yH#``*8 jp{ghd@N /t'(ǧjpal9  /A >]˄N1Ԋd\=3ZeI+^ٴ *48q UQ$ЉR#_iOmBkD&DOyg*dJj;j^@z>]" hMQNԐ?|hCNoACP ;=.KV׸`Iܒ͏i=Tݸ{ٟ۠i&>t`i4i2_5: hK#^8]s~f3a nh $>] .|>##xY7ޅ6`l[[,-[If \T+wefgi-6 q#eXI{^T3&6[yfqTUr_6#bfgwtmj%di_{`n߭|ih+9=!90kI ѱFx;Lػ:#^Q ,+tvxِy#N*}2C0`8:VwYV\D\W5p^ ~}KZYWJŹ\u )NY^Ȅ ?ten4h\H5}EOojo"d=ʂ8ik"'Sdo]T?؝ԒunK;7J`"}}3ˌv雈x]Ss%++%%%:H'+ h_wPݑ6yNQ6Y1_҅rI~}:/⡚5dYUW*p6[VTugKc N,[[_õ.ϣMBo]0v$sqZ%c҆|k;3-lMC"'=44GV/QQ`7iFRJyOqLt> nU ZFVj 32 =_TK00r/&0EZX3 j m!{ˊD)d3׉.'X0?WQgބ7xH>^&?JtLkr`P[I$GXE;^}ks"}00Qj 3SjQ5e(oҡ MnX쬛ЫO{")̗r>FRU Vr!J5'OR 8)1WDg+"O;B>eM&Aq '{U'bjw/X*=YɽnLWsunR Y>K1z0LQYnGǘy+1a/Ab,KiYbJbxplTֱCْqwErt -)kw;M̵fu_%7<@b?NNϥ`6=<">mKSm{,a2)uĪܜ '[qNA+K% o^G'Q 2t]߮Fk!(O}.%֛lpU5MX*:ԇ͖ 7>%;(Y:%~^ )#r}p>t~2 7f$!YM;.5K}nk!) e@&)bZL#aW#!s2(>/ق(Ea.#|Պ.&򨒋Pt[`ѡm^X w:=T/c i܀ ̻_ARceV+});eǶHXx͜5P}ya<* i3ͯlGQFUBxٳ’ꘈcI(ɽ#(]p0i;3To T2_3Ckw. !oכ3{ Uy.!%;yuZjƒҫvG/+@׼rwvR;Si/xBHSF$wPJ +oE1O(@1Y(jfy!&V`,鳶Gi\$yVi1@;! Ye<>D~ӄ_!$c Go38`B .vp%7}M]3F 潛TK4-{<yz¹;P3`mZr(aU;9Oƥd8_"ϫ' <9+G聳Y|WN^zxH&Av𩺴zBq$u \Fٹ_ʪ*@(Wp@Tgf%- (.ǚ$R !-_./xnae td(XaK)I]z*LN-lӂZ!L0^@a`CtguZͧ0njkg YryyI}PYӐswW,v4qfu:CA1||l9 mkx-9؁Mw~GNeԞ7AM+MT `_ޠEjo:2l deЯ`L<)b0`\Iv/SL{bAXPl*@b:T) _kaRl7<@ih)<&.xO>wG9Be1@Ra CdZa\KjFAѮgђwC @}qz$BKsh@@K`c&A AؘP  5Ta$) rY_"Vy3[3VX, ;j\x])c^H!}S=wl*QCNDmfdS"8L A5ğ2] %?IJ\s/d-+1__ [}x cAE@Qo'X^X\B&r&n@Fxbl D{&>1UiQgYKAq0_靼όF7&eLR{:mO6n[v&LAO!%ԸNX$a-,Ǵ; 'z du3@ Ap9XOgV쇔EjhPVG5r1$[7hdxTIdjYd. 0(ڇ Ơ8o4Wn[ & -]򝞁2bdBntZ|ZO?"T/2ԍ@4t=3"=6M׀ ;(Z9GۦbxP<pj]poٕﻷҬ(K^ \ɿ4q@$H?tBk^<=掀B:F#wTo\  +f'V\c Ec #tmP^B-W*MQ`+?Q`zU!.w6r;`&I'CKH4ջ,6dYў#5}oʺ} Vkk ^B^눝۫ bHbn*qԐ=陸fd},^qN˱\'8bZ;>{-Y1sjeaW(jv (w@l ehig,yᏐJV!ǀϵRDP@qC R(VƤL@n0JXZSB֋`ERp oyEYv>D=ˁ*փ77;O.?DVFpE$W sH$+$ Y}úL^p@]B?fGW>r;E=C&0 K4}|Q*I\Љar|},Y}f2 0*\a7izC1foJBV.; pv3)Gݤ'D/V+>Hi%0(j&=ͅr]Y[JHg[ $t*mey3G5'HVK lZp!lg[jH3t6eY'>$S,-9YcX8Xs7FES9] 92[1ٱ}$.}"X5뺐r1/[=e/eߠ,e+y\!]Lt1TJeh-Cl n/(KFaq3v B-Ăs*oE~5q, @Y \ f K4$~F, <4M'XwhzF?|Rzf'~r ~kzpR`”|H-AJTBDKuM)Ft;T]/H4)"Ab8oG,gؘ3<7%PBxdCJM[۵xߣ (Iŀ7N#Q4]$}~4-L u;h,m5DYTgY0R0x'N es5)F$mhEXUٓkK+fQu#[5m lD%ag};usd}#m;|`L6 6x굉W [Gv}`M՗%͂a~ 01X u6( %ʢjE2D&n V Ie_':$Z yx#5;YѮxYe$7Xc4ҭwAQR>o Çd1`{|etgQm~Z,V疰WTX1JkTa38'`$V*4Īӭ;P.r谱7]`h=b. CQ=]D%f'ywC/Mͽ%JgW%Ц,\JjLaPD^pYHNK$9B^ArBh'DM7Аf!#\@n/D)6[Z14!ؠfI.F&YR_ )^ٹV4v]Ca=JN^'0DsĝY4 ڜBcGelw-t҇<\'GqBxc=tE铆VC]K^NtRR8, $^u.̶[)(a<_ p^^cX'q3+M+G$BMR5wc}B m&)edrߊCH=3ȧnǖly#s%Kҏ `'7R(D#:h,ҥ’oYi<됭dy0PQBl3\K=od %#`T/#j#2gɃkC5zCUnOEw3J\u`7^;\ EUF% .|?U i+A$0&Ba65~hxakh HYskFŻ-z?Du5w5Ma(KEbiN&~4ۣ7Hd/AANx?]~vv~~A.  {Ffv>bTd6UUAYGvVeԩNx{e&fȢ=Q2 [% oNa2h2jz+T3*K1fo$=<. 㮻nzwP'u|=ܢAuMk<5ڃu x0 9Bv^١yCi7Y&$GHf\]4U4~*[vȖĥr6+)o%[mB?4:~ kҸ`"BܧbLLC_}*0[hJ], } t G/>@$苪b.Sk~_,#,T՚Lik%Զ#?D/͋7 YJ[g{u'#z]~/1]`+hrB>i\ ƟAfS ^li$/ a|+H+dR[}}܌1W⨥+Ki@}4KF>Bj{ȥzA_حzwQDX\f!WCC}&BhCtBPq\D"I 8i[As&[Va;A.ӴޕE[jR*Nw/?5pz\.l# |ն-k#m4dG-!a-{.)?RsZMh)et~Ru3 8YX;B=`p-A?Mîr3û< 8hI2X儤txGϞGDȃ”BmO `&@4.UT$ﲌOi^J E$p2ԮR|enGñ9 lL2*}\C) iGwݴ!7GPfoRY3sع1&uQ| ťO`Y2佨ySbe|Una!7XT&@g( $;Mdjs8SM8NJb[rjD(Nm6Y/Yo,U+))WH8MOC fc4nd[n3R뒲B![@?h0Ptwa !B}s0^M%"EjPOᎶYi߼ 9!ݩ2*Wĵdl 缮F]2x.Pg4r6="8l-0?+hGĜYG抅KqFa#q`gܐiO5Kzg?{' XGPիC7ѕ]lj3Sx-*~IY#xPj h }y H: ٸGAaqavsE6-'';OtM2b++:ۜ?:-wM㾎@>s{+7Fc>KD`( S0vȄ Zy!*~;eC%>]v|y.ƅjqF2e^5։r5! {Cv]3&تr:kCi^J@̆\TdC]Tybw2K~Dnd&o::ʢ|G|gQq$7 kq2))`%^1IxZ{D ȭ|7D4PCѽG`-+J7"/p@Q Sb(DЄװ? K ;BV`Rd.$^b[D9s; V(<# Ȍۼ:oOlo*Xxx?.Q}K PO: WԴ휙swBYy:% el|TV>]jGk" 6ʩ듾:<y/ Գ̍CmK"DJh">Ti@U|L2HXjYITX Zr̃Q]B6ek5̜=kﶍK5_UU;n*}!BW/B1H iТ~ T04tm!>"MUuAUO͎.J(>(8M}ޙ#"IH=/7qqK2_ GX]4l0Sd^:cGO>Bȳ&͟_'֍Q3UJ{U1.NQZ^jʲhJU'wέ[ɄyrFry jvoS8_xf1LJ--dFbΜЗ66;c񬳌_}$c)R2S,,l*s%8 Eh`hI0e"&d-G{)m#]l:'[)"R%Wwn|i0$k8 {⥦_1nk|hYp 0`* 7j '1)i XY|6YxxGu&%9!PF9maG:kҿ,1x͝uSR u~gbEB) QP+732{! uy4]GXiD-#@t7'}oT-wRwY9$x`i &-Nޏ09* !("1Sn' Vs8)u(48'}$ED,+J;KBf6T9B?ɘbopHU:!RFRƒBcg.`dF$ 'T0;*ip"j?dc|O.!}#> { 9?6]Xؗ(ױj?ND(ԍxjCjtitxl@|ݰzYUgK#xЍMaKWt@Ⱦ7ƖQ%,/{ݑ1]ЋK:6_ј$ eJI&ɔfЊ]p$Q+ݮZ:D2w'3]>xvlE/äFGJ8p DIGTƵd]d}G+KmՐi6cE[!vEaTg 7u!&F zN' 9ćVLbsѶ g # hׄRKac7OńXsa=g ksE@qa6fe].(R1,| oUvCޡ6g-A2Zyz-P KN;j[}/㼵CҀ>c%jFصxf7uL!DfCϞg-c8"*c>/W+ٲN#yzwL j샟t>2 ёl<ĹQ5 pr#)faRow'0e+!;[H@If9A1V;څ&ogVaʝ6`vpR5[J2=רk/g|C$z2G,oԤT̆KwmP ڵƬ߄ʞt9ھeeQz/;,)_X-(Qze+&#H9bzDc([*BJL<7( ,$.*ОM8>LZNم$=kk|1l)SdF Q&]*u.[+~=_mzY+cvk-(oV:J;(JeUOȔ08gד_g&@ARS@d* '҆ [ WFlBeP3K'C?;3{߁s{kҐiFc'cZlj,?r|Mþjl!ܦmcݔMݚLrQ}v;آ/P + 1l*>?yg)I7ܠ%+yP +#o`3235\{6: 3`t6jkx&+WV"c]I.LVy"Vx=c:F% !wjլ*Bh"OM/}>֧+Au!ʻALP-Xir򮙗-RDJi(|>'Zpam'is߃[ Rg'@ b@l/ugS\{)=.YEޛHD'Xj6T[X:]ֈ[ }~, keswq1̈́ilf+6Ď\lI >ܝe=I6*jiF\0!rC~|ǀ}CjTԋ |mGZBndBDaOQO"7b-sy4O;(p^dm_9D;0p5<erJ+@Ed5̟HT-"޴>;H`B Ey dl9h!'k q5$+E!}yG= u2 ;){jc:l_z`䯱uwyʳq;v? SҶY,fOB&;|*tnʧLO['oy3ر$B)`rO \X؝E+W$צ2+4ku}ouP4Ȱv>m[9|et(En'c`$W o`yf? 拆t28\" +!9x3'wz2]%G~ j"f0gR1G+0ο}"qHZ (HHDjNY G]/{gu^pq2ZOk>+Tue`kv+Ko+[cHyؽgBT- +CiBç1ZmN V{*~<0 ջօ49 `q:y}"eMNΫz kPhS(!i*Aέ*XUSDj_6P `]|,6б|&,&,cqq.UQWٌXaGv@^"#dp1 v'.)X+nV!&YxwFJtveNڨ˳uW8/ -J`C9CO-!d, OR\vWd]x̚ f@Q(yG&]@^4Zqm ~#A7 q^10s3X1 7WN\܀b޼._}`ebSQ PGP *5`^6ݚf}$iٔ~rd7Gx$*T/nQu,V C <J9j>MuK3cy:үTcGXX&S[b+KVVjY@w U0tnӌl/0.gviȔvWqrzqX՞F1,#+{$3AU;ZzԈi!S= S>4.B!<A6q(@fE.a_VXc(+Cm~w1Ku(w bWډ Q0O(AfK;͓ ]>kRt:>RP`CrѾS-3 bCf \<(1~&!;7 >"ZzDΩr92W2.6$ܡ:$Z^Gq^8 ?}dt]a,7;*JR~P+o,UB6>{yzoGL"ׂAH* <RD6ev8id?qXgGi 3u8#!Sz@Em#-IĀI}9^Wu2#xz38f| \}51to0jG,^NUa?q8 \/}π@g ܿm+|wXMkOLі~Ŀ aXlpVWS *!V0`E}w . ;pr9gi?CB +sXzrWP폝7d螬$y3)Ltn`٥1c2~:DrHUnc-y輴7ȳӐ =з&.DמY)#}*4Av/=t$#jK&6?LJ`B4؂-Bk;>Tfs3W\:QwaK^꧓s8Qc|'⮵ȝ!D$`?f_s ꟮v8,qؗX p儦0tVd>OTآmToÙ,w~?vC-PKXLPEMIU=@w7]Dao"'5/c9ӑE|xjLJQ|Š*gEx ,q u(rvƑH =evNW$sI(Ӫ@:&9K(ʵ#SeZ9e=3nw=p9L7~09!9xTYU<+9x6uN=݋}/b;I:oxr&~^څ;+53}l2iߚb旲 hT$4ŝ}>B-Pj>Ԋeņ^dNC}b.Q5*2CK1VS1AU:ؿ# ]hN~ <+2%T:٬M K;̅yRG 31J_8if$J Fvcgpd\gqђ(X-P\DewX:@ɇt նMepT'H>eH,nɄ/mTtC%3U:pbNw _ao8HRi0=.1i*itsSq\)t?LGJY ]|S Fhs@Y+yYfHǝ0J Ź#ǚ@Uc .uє -EBy[%C2M-t"DH͍lII 6u2 FK%cjMmnm+W[2CCoZ@cO^ʕj/ J){R#&=Sr Fwzr75x@W.fvlښiWnBd\H?~]?bs8Ixړc!9q}a)iA(dtűz-,LS_/}t^Goy d}q`ԃ DIbTh%}@_3ef<' շQ1/ߵe/BRa1jJOWuakD89tv.y{7XYM+MA$]ZkJ @_;NKh0~ $q^4bjc;>yDIRo00艊Y<$Z5h.b4W ^6%Ohf^g| ^T66vt jIl_-IejwgM}Opmy -) FC$?0 b܈Mȼɪ-1Qmv ՝ nk@҈n51,:LN'|M] Z6}ѨCvR܄ٞjS6٪m7 }|2gܿ >U0qG_|ˋ^m6I Q 3obWiKXEcY+`]-|hqw +zvaXoh˶{Tx@ZdYVי᙭D5 >izT :ߞmDuk3H[m7_xpv b"Ź(F,SX~ڽl@6;.ES܋M:ҴxCgi%ڼɽbյ! I/Qi=caTh Yn%.jč9:?JSBlNǿ#qIQɼ8C:E |)_qet^Lӥp\ݨ1eϖ6S O 7cfdǢ(lZ~,g#<تa?~e]}7{vghc~+tS_yYRd s^l*`qG#)#H#xE!^;KV'KǓj^M~YEK qzAItzFs&HomKaهN9Y`>#8oպm\WV/S9 ݥ`rc_ QpyOHzBqw/6dTǹ {99>õia7$K3_IƙnyR֨:6Y@7/|vhSuH/npF#}|IDY +G[ghaB6II|*%{ ?ؾB5|^=dvcOv= |7}"uyoaELyE]U U7~WJ@҉ADhAXưN",UChIC0= gzowd瘋d7&J !-'xg7c߀Dg7lPj4)GIݿ6* XA~EA Lbj<5)|x+ -._MYX)[5tG0dV R , =!mmY,z GTI@c|Bo;-;?PN6L g3ywG:Un}V95T=e:^+́X-t +{WŴf'[EY~ Tbn4;)> Cr)h[8bg8\OH4 73n&D؁ȹTka-BMU>8ZocuBDa=Z)&de}x-q0 x* 1".%J:d ctoqKzao5܄gSC7;KhiBwwX8M].D iީ2?⏇ZQ7`]-8gnr~]XyF]#,ڇy fpoJT>Z4AqRP&o΍o\,e]3ƢDQ(2uX?"`ֶ:^i= " 9ICy;Rŵ6d(mqs_<@D$3Ŀȹ!Q hu,;e6Ŷʗ.-ZNu/6~3Ȧ?kC;$Y_I h/Mל]֜ Nݏ_|̭\WP d^,ic\܎l+2};ׇTA7o1;i֩&" 09.jU.?!$l^Y[.H8ȥ?|ekDEhw$!XBΔg{Ny4RO~Cy'#FhQiޫ|DW1Al|KEᰖxEa wDKXb}쳰)n6sİ  -8wAeܛS&]^*I09EOWy .u aV*kmʁn1>J|}'k5J׳5侤/&o'j^kOm:/Y(DmeS$V{8x`ntFf_b9eL_^l8P9U|S g;  u^A;d!`Nƿ_i7YҐU? &1Ge;NX0ȹ<#K( {aXsc}b՚J[]T v*\P$u8jGiWpm|CH0HfI慨M=~. pI]Q3PMLJ¸Q(\nD{k Z;3 ŝhR|#uCr;h|0,*(bv0k6FUh;m_ѣKG;Q؏@R o/_I, L {** LAj*^7Ƞ( O 9'N0?;j}mZ<ޯBe)}Yd;{ DU1Fh,|z{9!B0ރpcTNs[6Ş̪f} #jW#$1GBʹҊEgkN+%~4'i6b珊WNr;aJ x::k64%(Z (bCs7FRH~)eGKn9eZ;AV54Jt|FZGQ뚰!t g9dѨ\+*^Se|k0<'z nP^mE!qҵrH?1R [4M S9a/%2/E0kU+BNië)#6>̅zhy*Lc!BqHࡾdT<s7m -}RHi{Z qtn{"tkFN1*˴f!(-M_j6-y(#"AJc,xF9ݣz&ʍ,ʩVR7mÃ!}VɂЈt;;*ܻ Xi?A[o V@+!mI" T5rtfs)^ԊLXLIQ(ͷ,Y5Yylb:k7qkǁtaC޿&䂐h6\c}G?!NI2::-ZȁcsCg{^h6.߻lF)N1zhD ^zĿ3˷&jQJ©4C1M>َu9uwS}a]׫n*ǰ`$+yq#֣PhyzP+ 4vWs 5oo۔q֟nhD(׏-Gs2QF)/T7$ ʼX9C7^P(؂Q2rD3L:[Oi8"Va QwX=zU~":3g^3ƥ#<ҦxZ\W $J0ƫU}FH?Cr<nE1{@VA*ڒSz1)_R|Cz6k>GE#Wټ(ᓂbm}cL}ǖڙC8b'c#67lO0ͤT)! 篷QǼy}毲7IHQeie&Cß#X($3)Ȩgiwĩ/Bg 1I,{۵p}z}]e(EbKTV$y3Z yB:t_iLK1 mr;gS祟 ]PP|&Ȓ#Z2jaf;zcm Qɾ/$2pgoSǙ'cW' ^.}+i:ڐݞwbJ|қu3ғRݩg"Mě 1ș&Y$)  Iq.mHGu29ŝ0̩XHd_'R!_KiW7/G_u깓{ ]agKx2n,'lq{ VPyq+ʯf +9"@+Lɸ=5H /pӑN,c_\l .;S;Ӣy 5$&Ϳr{G iv=Wb,w۞ 0Jm0~nilsAU|=o@K+q?oÍp8{K {S&;: w^RcM' C@c~S8MM}/wVWWs+l >ѯ'01>cM ʉyM n֯)< z  pGytbcW^5 -BA1 84HNSd8HNzI9ytBj 1S2Ls\TR?A^-ڮclWAMyɵ]XNI|޷Rydw򾵗 MvwD 4W%u~?3|\>Xg qrc {T_oE(ak" 3Hc>+Ti=mAl*QY+q{KM+iA71B(F̷ tzp'Isy*Zrb+IV{M2Ω|"F6ܩgDc^3S^%MnSFt.NK1^BjeE)#]o ^@dkcÜuW^'2} MGD3s=C21iu]04Իb~7\GN۲jVx8-UT6; ܓi2L&1-')v\k> 뇁~fk1OPae*b*^5K"7)*_nE+(Q~;{'gk"8 4~\VeG׶.7{ `(T],#OH'?ֳ)a& \fn]w[FSWe[ :H 52#xE>1YnuOvAfh8ZeLAH[ޭiYLı -g> ?4dK9G~rĶ0=yM2QxRB hޔ:Hf]U:f:ߧf|tp 6wt$׉lr)b?_>x#I_]>k'+Z&X̊n]HA0T4-W#@8yٶY`Lꍓ-0ȇaU]R5g<$:|(d{$)0 v C})\Aۂ?Lh2Rv1;s/*zJ'ϋ= u߼tyOC]x(LiMw-SUWM35sFãk)1fH2쬰"g%쒊6,ak30t'&׺a'nBRF7:$X%0y qGUݩ|U4z aUetԕŷ%}ؙPQ07dt ۥ=ݓ<0*"naIumqRau8!HαDhE;pRNi_|]JW_m,jRnik.NÑ7Aa#NX5+31:&1ck4# 6敃1-enNc$Xm<#׺"F 녈OB3Jv3b-Y!vkv-Etw;FX-h.nQk\x/D|?ɭq#,j}Ay'1iJLxg~L]_cRŽ`ΈI'`MK>,]/1+iER-Voİa.brH7,`cE3-sD]8W--Btu%{=D7. 5iWm qST_TΓȺY0xgLS]Ks/6 oJOr4ZX}!jp3K<ٞ u;( 9`p(&U[8=⟛qnܔVE8F\c22UI]?i-KOU.#ShW(&]'b^a='T=5 鈂mkCXr֣:75)b"UJOyB!Wj*4 ;I Uoku@* :[4j1! '\kŁ;T{6wRl2̀8ez5/:8k6u9b;yc&:354ћOҮ]s4 ʧt@t?o?eq Zt)a*ڈEID>6y[I2=ld$r/)zXK]/"641~8 PjQtU9J&1QP%Z[1Biv&W[%df җ{Uۃ<G7<-P Q׽̔lIɶFx X}+L!t3C5Zex=EUfy!_ 7\/"<̇^Q崎YUR+ ¨ o(ZecTа4<~B$r&yz)ñz8P( ,/ 8#8POsv+4?WNr]`.*2ZFv'EUψQSF+ f1.+w$ #"y@ߢfTnpn1Ӿk##nv -j-e? K G Lwgz;2?+o1~E}Ѧ6}4̤\q6Hg̻L 6K BCkC`5`)-v~|݀7$%a;Ny-Fйtj&Pɳ^Mq? ʀ#nV gbrLoi5QIt$1C]-fވi.4z kiX|^<%R*ʋ$>eA`iSϳkBr"Xo'ĉ a'9 (^^U,DDzREW*.nuCO;+l']ݡVd!JD9j;ZbH@cBo6Kz.٢_HZIr %#QY^E`0=|CsP*&ڞ/1! "jY"Vx}6^nTziߏت'aAzaH.Y_O8Ap olrKic≣HVuD Oq(&<(v?ܦS sSmq=0 JX!V 8E `ND]{M#kVȃ#R7ى=]My3c]\NQ>\C<{P";t*a|-Ck} ;k1$-Vw'Px1On0;)^aN?"U47K6l{Gz>eȮ_!&*w99Τ@ n9şGN"j`Ոe"hQS?qrgnkĹ?!$ 4crk<Ӫ߸ŷ:aP!;0,J!xf{e]MR =) OB:Ӏ+TK`+Ǜb'?˿Ms'm9T_1FRHyqYh֏]BI@m Qxz|tM50>.#m-+ QysEjN b&?y} dzX R %0X35b4<컡=f ֤SJO9#\Ă@N,n Hcv7ȢYM:ZHrfzGKscޘZZ%*xwbC yFeȅ KNR,ˡMct6\&EE܌_gqg'F& ~M9 Jq,H}||,fO'"7.+5<:vP~mv陬Fk&6uغRQ6 }Tv+U`°@4ȗT- !|:$HA+%3XUHm.` r=DUzK)*: /@[z۞,XH@ O YK*9 %(tdډL/"V:bg >xﵯq\̽7$n{Af~|!tW= (CW 4z*Iĕ+򐏺lua9+LJ1N}w)Ʊ?.@ŋh" ~ȏYmT/I#<Η0iѷAE끕1w\{'E]x7RR_0 y<H \ZҮA+(Ԡ'-L k J<)IS'cŘ~RRu쐍7Q_M2?]0P3qGc{F Ń f Fl19/LcZ8V<֏ U*p/e5~ ).7@m]HűnxZR19|9H(8pq/J}0=;(?Ѻ&T\J̤SЊ\Al"8ֆZr8 񁲊 .eV^^JlS()Um%x?rz+ٗjl}?s0٭^{">P )l }G:?<'4e&+iHsmjk_:^?r vt2N N|7~DV Ȫh tpÇeV PaoUdcsG誝GA]^{O/?6[nG(;L/'`xbHN]w:wzVq ww3F6k'Q2xѬ$T{M_=0ᩨSJC*,PƤ|:l_gN3) Fٜ]Hf46h'K]pn-㓦)k[c x[X#t; k\V4 > t@CcrWԞ2oG-<˷1qqTR)3-;Hѹ2DC72N=RD"EQqN0<́98*bśA\?Nnh{+ˤ˔ڿ&ofz#d@|6VAҿ 7]|{OiJJc4AzV@QFX\B _jqNTx,.6k{7P c;L{]|HJ2>%o:6S-ӎi:}#R幀Ovv0VFme@2#yZ;o6hnepȌb2/oPayz.ި>p#h)s700=(h h d n<+{f7E,#pl|`sqHnڡsNՕn2nV\>6Ms{c+ ;#'~}ca!_aſwvKB2#4|H:MΝn@x&_* ُ G7EzG"X:^Vg7@mJ1**cN|ӼB' F#n##n_{}Xl7B*.V`w"_էmsp%tWXؤy`!/:+g]p~[k7v30{ aEҺ線Rc]F~SAwtpCTFAܮ mP]:O,|)YŻ䕻8pG8WX<]*ѐem VDJNƀ")8*|u@HKK|1x$?`'!8@ C$a $ba) š\Fj9V?( ϗYBժ-c`D`;]T6ZLNfsA@rbKyin c ށ(I'XqRHǭ,>jW2p5P7Q]WER;-%XØO1]q"+lG4lQ [IK 2[I7$ٔ=$麙O)btY/fy}'f훮߶ '|5_߲ O ( E bRXjV`qYŔb le_ W{WDzTg9v19:*$vy:qџV|Dj:Jݮ{>j+rhP:rN訩чv9 pi)y$ʯ>IDn `BڙW~2J 6րDx!OE,-ŊN5X^Uw#:ؓy!&77 @XS9وջ6EoÑf} 9:\ !"T=7%XLm 3EG>/ӣ=zLm:›و#-rqvQcNs,*"\ye<%jvcS))q"J.KtΑf{|ނViXݚ+?¢:c o꣺іh})wwF+`LFag~S @)P;^/)ج(Uт _@%g q[BY/2?*A N'jdž r)ragF!iV9}/)\*ltKMB$UETsQ>c(nGY:×ak)5Ф:PHƭ hAEGԧݲ6eN5RAaX&!`[[p" 8->7mN\ξx`ռ<$sU!2*M bB_Ox~:SK6i`}? 8?5</6͔PYIP~7]`Fa:^}fz2_#b& #V$(3v/gi+y{2D럘E#񟜋u.z0s`j{0YsvwT|qNӟ,UY>3(P`guty$8{:Nbe0x}^)H೮A?Y=Ҿ;-!O}}a:6[_hLεNΘы@./~3a!.u9ZL_]k*8_2vKA!/Y}Dۄ#d;i#܅zT,^"7 ۩&GᧃgMνsIRN" l1wFYtZX3ΐ+YQI\,er :˿miTi l5* gKR\= ;}~66)q)Jr i[XzooWe/*EGo 3a6.,8}F R8m7\lxkpG6]/4H@A(ӈ>V.k6 CG{96t .B}&ZŞîc{,a}&lwdF}JONfW"Hrl'B9kW|Rt3 ChfKGB;0ր2PYM.gf5^4cwjdT@Ii0ȳ9e˼O后<_X018scǻGAd֫Ki-{77&+92.{!q?DbA.pdlwZ9 ,$).SM-'Tw•>w\ހ )ȵ.~/j0C衁' fK? +(]rPJp0}f߮;g+6dPUU^*ZD 7ߓ)^3od:h%k; 048  %5;~ {_K=BAXW)&iZŻy;raN]wt?5#vM*7M3{EreZݵ1rwO<^_yFH4:V- khJ~yNj J`jRw灇s4:7fJ\vCBbZf+q: ?Hfa 8KsdUj΂cQ3vm^\P^P{[_S^ ug 2 "RR#yʑSj6F/5؋ [A 4i]mQpSǶiw\5@=&(O BwߢJ@R~ly(df>ce*x%7mefڂ`> e. kgTK! 3%JQ"o:Ң+'J+hAНtc,duMb d欅;6Y6$qJOɲKbX92FEπaȈZv_/7 p'+ ŇR9zU`[{*%-r_~fWJɨCd0[wv1S/'v"S@ꮫ#V`eIdxA SM`f48[Twr} Wdq+{k&M;06|&:꾖هV!+Wt~([ (1U 낁Wƽޭ<4jxtɆMDr'2S;HWn>o5<bo̬8JjW>Ǻ҄d@M9I3,f {;Chµ'Ɯ74-&mq$9xkE4._V"I|ґ)5w)/G-#3зƥ- cæwg.tm{VXn$}| zluS'MrW=| ɐZ\HPmՃ1E_BexvP)fD+zGOh'D{*{Ѧj⭲, cIt%q'Z_%V12 wjSfvoK'M'$:)N̚ddr`RF-j!J-pK{}.U[ Eh<"V0y6g e "6ܬ(lU:v]0YI=hMzuǢ<|6ۈ +wz{zYp ξ**uWcs\K<Wl^zB bYjf$"M$T׶nDBGO"FD1s?/fݨ\9 2Ito$="z K٦]3Dz6=X\qK S u/ Y#nQedJ03F{zI+rߘg$Fᗋ+uuR빵iU&kQWiKw D'c]k+٢`t:,%l<;>/Ҿ6EHoVR\`8*t@IIq^D9_+P(Ɍs]/3Z%\cnŴK#U\~[Ĺ@LwtUM1KI ]Vb @^QգLK 椴цB3*),VyCeTΰMq1P8;Yv5TiS[nFk.aOp7* 9~ARnKhXeS<*qΌ~1[=) )D%;ERy6^jlFŦa@UF]BAwu^# AvTB}mh<9eI\w9*aQxIKý#1ʁ?LwGCxJp\K-RՈˆRJ T3;Θrq4h׏Jᆜ#"RtH];x͍K Pawؤߛ޼!(ڒ|oCE6B *}EB{7dyb/TfͫKM@-pқD5-,:HM4\ēe &\.,/oY1n~9|еpz/5A`f3p\3m'FBruMS h*u^TF`SK[EGJ?rT#{+K6 _.nPG]bh7P3/sR &,l\h)\U'F@0yB*zT} >gtZ>1B7YK )oK[gʒwٚڎx9+nTku!LSeKAቺ;b! juʯ^} v4dvrM6Xȫ-c9{?8n/O4ܔ뗫;jT)V)Dg6[Ӵai{&niaJW}4is,օ2A:?fҢ<@Ϗٻ`X;POfaj{  [4R ԃftp zL9M!4.nt&]L`3u @`3CDyE:z q^F]Kiժb\|]ćn_|׭887p]GJ3rr<I 7 uAA!g׫ץKQxuY"3 g_$o21E* 09iGV oɘuҮ6]'d<Llh.0 TqD:x@#$zA&ҒFm?:ƦHmPU kߣN [@)a,8 |!+~ႶJh-3b zXǩ؆νcθv䵧2҄S,Q074  q2?\Z¬puayCs HG &}xwT ˈ"O3P/ a rv`ŀd`vπ(WVmY&ּ$>m~Xؖ0j z_//H١99 X^~5ޜCѴ)5op8vq1meI UDI:d+$[!Q\!ĭ97u44 >081;p\iZir<\H7y1nR37Lu#1 cQӸA>,Ȥ+4" phneNVJ5cZUEZ}\51G>^l:IVx[;6,Ka^ Y_4ҵ>5(.7A+ ^2'!JoS#e%do~Sp0Q$Fk ZC5~O31WWI+HbEjpQwDU9s}^DubݽhQ 84\-"`oKR/{cOAWHS(JKJ.%y imtX6r@M5ԛƦy#<`H|z1.Z:]Ž=xq7__YqpiS  2zฟg.2xda0gqsmYХ UƏګ&G s;$ƚjl1W&oA(ߜbAQvTØ"'{+SQtOIE|4@hݛm2ET\nV(?P8eqkJ_m.]Eך$H(憲!A{ KB?̽;ߟkj:[:s 6 :"nҀh{u6F|r6몌'oLnrj; SiT~L2lzQn~(JݾBL0iyፍ%m`k"2'hh٠s5i$D [LJ /TN i"=foKfºQ3ۈM8A'yPc*ղ˧l36MGi9K:cpӊ<9v|~M8.l5, - vS^W⣥yVtAH|xWh¿OY@iT EK{kUދKN$_7'HNO#Wa`NpXGR6w.hVN")E1u2dX/r a~6tnxGz#y+:!"&O<0ѰoA*(|֠JphSxYr+w.wg]+R6&AA'_=>]GoV:;?va-b\iEc.ʑ/jL'a Dwr ݆Fȫ b )y6˨Y76fMMȗbn{nt'C gG}'h g3JsĮX~qv[^w@/Cxى_N1_r*PƤÏ2x]aXWc`9\~-RfΕI3##HZqy=Yhh6)E;e±;}ȟKLƳcyLj6+}؏Ґׯnlf"/EYR^\2n] ]V(q晑/8q&܈2-N09˫qR$Lv$Sy;u,=_-aO!`AG}bMꞜ9MTi7\3=D5%Uo#JTw+4 YbÈćK/NPC ՠHQBA>oI9ɍdGL0v@SQuiAQ2fT踯2w.;1K3WW+j}9J]兵7w6uR\M;7| TfZo a 2VO/1Ъ[dUXٽ;QSqmbނp ޮb IC 4`D|WJ8Q%njX[Д&KXJ}AWq"u$C"LRh ,` f/MlQ+UD|úGOv0 :TM IQoəj\mlJ;ޱij|?:&?=e%&B#=&kB7 '2N3!->0}W]1 Z}%p*FԫOɁQz S % ;?,GEgȣ5/R(\;!Mv sGe;>e ]F.' Ek S"L%ɷRSzal»`N尙PO\#so u;*Kd6kԯ]VB.lPV]HFlux(/Pߝ&xW2WȗIJQ if ~>f=83crc񇯀3V)ST{TɎhbowLc7C'U(>wK Sa0?l2uvR(<ӪH_)SNT Q^3q. <Tǭln:+frhh%`6ACE:VNp-1Yی$w T3 )a> n_ݤ ƠG1צ'W3qbS lUyr)RDܮ#~"d7%[|`LvY_Nۛtt̎9نfpvV31OU@ ߋt4t_ <ψ`vHUzFxH%WX_ڳVS' }NMc; [6\fg{IStjGUXqyq`mo'8ٶywZ==^&6@`M\>U[#(3\,N$$?;+ 8WuFQ̯wέmg5җ7,gViz^Ð>j̶_srd!9 zZsY O8ZWmgTW֬ˊo qnd%Q粬7:FeG2H}h )]ʪM}`xT7?D x7ﴘ:2\yrCO< @:Pkr?97-Wn 9;a0[Χ&}"DF}$&~QHGyr1gPpŠfW&f+a0ts]/Ǥ g2 F82Jw?7ҨJv x7NEi*9F ܟ5 =K1vaPӕ||.E,R'Cx- 監|ݓ1Hqû G o~Dٚa=%_[ÌMc,0Σ34n,p?'\Qn,*,P`/5iÜSƺt7<5 =I&SyVV>uTLK 6z"fNE_/JӚQl~[œj1* haZ"o䚙_4 K%ÃA0;wn"(6*1 SZa ]::AxWl ̙_CSTXdY gNLy鷾GQZt~0tHz}uT4>pS1q|ckѡ;{K۱b0YY>L6yn+^"ZO6eӭy<e9ܬ V?ޮ _IeBB!vd49Oţ .D}loWu5>%$3u+}ϠI$iN^Xwsa^Ot51!SB.7Y3 ]f (T) E  i1e'_t}$_Ne.u1Rinr5}"h}]tDH]VMЏhtaeja9 8̞<4*]|M,'k m}ا_`i+,d3쫰-cT$[@1i~9Xh׈gG~fWI: Q&Exȟ U:^8KP?+rwjcm(t5Bf<C Tm5nWNNO#^_)D$?R;6 i nֳS9ya_{B)^jӁQQR^}N$ ~ǧf%ǬlJ$Mm$QG p9Qp/F V7"tw4Uu=\. =͠nA%R.8# mL@&NܽKe7%(ͱ{ pLʚIŪ[@5,U?!I䈴i,04 ;ACߟ}hhqAB3"E[MbgѪnJ4m>To ,䇭1nɍ^_v"UXulnr9 p8o|d&NwOѓ#KmNv;3-Kwh@^*~FT6k1]J5Wl{`Wq?˔vQIػk*K|) JQ.y'^U 򠼄ަ33BeQP|OާʛR :o8Pnot5G]CgaP/WpW6a7BU)ĥ ;{"}E)Z'n'ΐ+2)kâ /\Z .1Bdu1$*iS쉰ܴJ)x |Ou40 X._>,eL`IrUI%GLyä/Vn֦YO@ZXF@w%@ҏ`[Ұ.5Rr}~P9p!x_}S2!QY|VPxL""-:*XP)Gw%⊲C[M*^ {%U4=(7'MqT?VT*0wQ,]^ӳͿF{|@UT ߎ+4.،/)fu?V)1^oS/,rT+dRVd[ y%#f.(~3kGzmĎ%H)L-hSZ2)N5Q8FЃr.0lXwς;VU)I=p=~ǎYNʞkڭHmǿSa$9]%sVhdzt\0Ǟ1i7j&s`G {`e}q-p#aKR8΄{oUp{Y&/x(I/ds蛴z_H %8iYt`s|>ũ|J@~ha ^Q5FϒMnҊ̖_$(xcɬ|W[N菓d]xҳMb{KIvs:utIP8Opng>]y!S NSӘiϋ>=)Pu&I˗Sd4Y%/zhܓDL^œFWR}E$gW@'1l+ v >? {옳Q5.f~۶ bK9Z2 TU?lL/x*Hpd^G+0[;I; ۀSNX_G9s!Ey*u6@P@:a&ݾ1#plEw1e)y%CŗYS lq=1\>ݷR²uxt lFӄ}s^^7fܻd*}Sr L5qOݧ84cz oezQl1D˨/-vۛ$~o>A?N 6Ⱦ\[DJ-Dch CC˜/~Ke|ȤNRn Jr5#i̳h cApdjqr+3' 7A2|M0r0Ku;/$Ya#aY4{Cf%]{JoJ5x\yMp"~# 1KWkE-eq£c&2)>qyAȽ'ïℋ>h)dԇf᲻/y8P0VrqR9 k9}+_6Vqr2ȏ][ Pͱ\sE%,~8`y~/$ m~A8 HXsM6iөsX q,*\$3^zU~sW %\0L)5,sԹO 0 zTƠޞbq/.]. oǿep*=]qwˡ~ UJ^7~FYEi+YRRܼ0$E CqB%9t ==8Md!9Q``Y1Mw~qҠF#~k{gXy:;@M39rwItڲ^Dk)zX 1R^2]֙ 4ӄ҃~Xsi ? ONeb]YNb+#g@Yrt  `>@TzR ` -2j)O?.K2C{ K?yD- r1%{g<*7kNQDm!GE'6K5G}2mLdY׉koPfγqEsL ɻ-9<ȆY6>yC|{Z;_ȚCpF44U^Xos k!5g 7!<yɫGJY'th7]jyϽdtx$_P`gƂh1- l20g8 ݟe@~}u2EMV,TPp?ZY!ztO͖) QR8J)ރoĔuDVc%cFo#v.[h$o g8>UyO0MAop3>5 d@DePhTPБfTp͈D*;Z(|K$YPYg;(X]M0RO{X1.uέ$b;TmI}S4&$C<*8ҺEe7!4}g(][8 v+q32 wP:XbX#^3ػa#މIͅcK {bQ4U/Bn9^0oJ?Bl#` ZcDnC3{–Swߍσ7h um-+ZI fk_=:Հ韱4yMWz[Ebɵ Z>񉰜}@",YR"vuK#VXlCBn.-g$s 9K6~Jl.Y6hwK -}I|0C@ 0}e3@BU'Mߪ7F?b5mu""Cdp.ĤIЍ5Õ!뽎 _A%g̕ )=n;0_)q9>e拏[ _!3ĨJ//pMBǘkej\_e\tEs#qt7 ecI[Trc]ft#^Wtb︫Ej$!T|^g6#ˡ)+ Nu֋2I|ԡA#í΃V >AMW4|TiY6ma}g8ӱb'h.|p"L/}W`ؘn=JPj_={ Ԋ,*ll||aPbQwT :&_m 7+3¡_@ 4WoL n8%;i,צwz'*3"47J[2]oO#^ApDڠ 0y{׋' Wrg1)%g]_=/DFy?h]1>tc5h3&.R4MM5zpsCzu/IN};1E@4ݒ\$ - DP^D1 ^,d{_2Y(oIncІH(gkNvN&lm7 gbM )=kq;܉:ӌ6^Gb&ƔvlW_\ȀܚO͞+'p9У񼖺~ڏn2w*qX=DR'P$/shTǝ9>jd;$%0elKVs6^z#=ե#)+a~xb(A9+JҮ4T9o,GlԣvJD0jx&O08U`W]\m?v!;mrf/S,׷}sBA7Eޡi{4B8K.q<OQ'[xұd9֚Ji gy"a)1,bam se^5B#h蓶vp.8uۈh >VU}g G>T!e\EVKN:Q֕#}Q-댪?9 (u21%uLP+s\4U+0EѨ%q62x7[$ZFC-d,UR]O#0B`5B!cr8i _Kt0zF!0bۀ%mfUB ޜV5cAV!P}_*( f˓p{X.JznP.xTkKeC5mHcbD#FzJTj9ɯbM9#K8cHڛFMW=N*Š{r:-t"4&+;!#3 3NkY0YЀT&87ɀ-Vd΂Œ_ˁ *VKd,觶"WZGbh"ZM_`Ȩ1;8Ǘ^E 2S>4b^jGv^|/nʥGu u@/$}r;Reu OQur-%6% VE׿ ?(.HvUW6q: !IRW>X}sQ3TލRd\/GPebWz#yx}Qʼn?Ŋ=BE Q5'4"#*b5kp46ϼ)dA d ̌\mVi~֙UU' #^j)TcA+F2#yYP|".XOܺ Z֩pYn-X 9˖z7t`yu#8-+pyOFYmiAυ؄1kHbݫincM{&uQkLZtٴLq'bQU{bRf* L>n &F2A C{gd?|XvrmSO72^܀}7|11pDމ." grd= odVb70 Ts;LѰwSL7~< h[:e_ݼgrbg96׶! 1n\P#,W%eT}M+lUJ5_}N[$ЕhmfoFV>4MȻIFn|iCQR3F|_k=P)] \ޔp{e6u d\x+E=DNkn\IsLs̉f7x~ )4,o`N[XuUɻs;~J`@qDF~*?9F94hLV.5f+Y?Q)qbo >0;?|6^7i|ήcښTUF C8U.b_ؓ hAi)kATȮ#cv8;l R.#<1I"/|9"je=c6 %ň;xȹNs6)ՓR~>gPOdeZ>e+?6rڐoq$ i\W-T@$$ǫ - pw37(,1~a0Q[TtDB#GH5jdhlyF,~ S0n ȭP:UxNx>]wt;E  _MS0}bQtE͞::>eNgQeBIܱǟ&J#=)ӄԑ! $N]FeuR 6O )ϕR&D#DVpS\[OYt8Ss&tA(_k1wWS@Jj*Ú>nJ|>D r;kH| ɌF^WFKIDtu{:7Օ8r! /K*`>{PX#p@ =cR~Ͷ]Ζ.UW$&%pʭ{lo!LrR*r0Etʈo"ΚG1 b.Jnl N)y֚o&. | .,a"]LE@Y ̧\-f9 @%/"S@Dz2r 'Zʏ0z'B3߯WxVu&pFϡ4Y㧘8ju߾ӏ 8(nG{7Iߖijc5 -YoIscG_/خcP9r6;vz>C\nPJMj4eǁ|A(V3ŰEfZ[f,J|O( CpQ4y\tyEk<WOdpF":쏵Ǡ:Cyg~£vm?r@3I aϣ!~/`(w_|lbC0+w9zKX]ϯIdkre[Gnܲf4uu {5mb?:EΣ),*OaTQsZ Iħ%TBMOQI꽻$մٰU4j ߧ 7MC " ]Jk3Tt>wYSN^#w8D B\n~ETyWeM6km>;[㶬 u Nr.Rӵa9~|ɯc$zmg۝ Z4#8=" @btEHE 1GxW5'Pe<]7 HlFdA)=WxQP֋J@BtπB/ݧϰ.kU\5cp0a]@Be"YwNܲxɼt8HI7ud"_<0vCyRη>ಫvn;=`1ܦ@tMad yyި,4OsNi7vԀ)rm㟝UWSv>?iCu_C::VzyȺ:.id N_uWŸdTԶ(2R+XM}w;2kDfp!9Dqc)ԍ~쬬pt/m@%06Kf{e#(Q\=(ǛΏ-Mh붅E{$&Ngtƴ.G.,@I$fZv_p =/\V"rXczϑiҞzxعõMLT2@NbϞt8Y+&HU ҴJd§HHT4<'֣bYM^)Rqbi>{[\أA/"#=QR/ZL Ba.:xy =MrˏujmeǣuWGiI{^J]!~=1uUFfk[cDvkyZvH01Cyg?M,-9LBip:SQTh}-7]ie Saa":'Ѣ;[Xuil`-sgaJn9ƚKQϨ FڲqDNmC*Pu؁r[}}E4Smtʸ ۧ%:*].OO,yVb%IgAsqi0f ХƎ~&݁d 喧\63 ? ד !z*?ibi}M 4Nƿ©a\ "3g xq-H5~[:vM""{% 2+X?ŏA:|mWZ*7CYѹ,z,hNF7pbmLұVxVS:9GQL}Vt ~]_67Wil#4xM"΁-9hD%2Vk5(HtMQ:/Ps (g- W߉>ڮdFCZOZӥL#;G3JE"L.a*Sfچ%ʹ/uc9;nR ;pƣ+ GW[8gVn2KQy>@\Q֨t. hTYěS0J 8f`d>Bʧ{':yaJLD1%TƟh'4 " [{A^54¢W~-ܘ6(TO>MkJo-Б`αN~ԎMFǬMx0hA%E 1z1EzE9_p4~B51}v)*@ 0 I.~j_<'?Z+K؁Ls v{I˱|o]YBY-*?E:Ƕڎl-H?T4! UjHxm[RD.L"HͷsYFg3W"ԾݔvГb+4kMK?_͋UkN@+κ+鿻ǑD փyf;FUˁEX,=aLɚ7̹ ^oZƾy0>򤚼.[oN#f MɐXE*(4JSAeRHI3PMtYFou%i[Y&U sNR.׻r3Dk;:m _mM6S4>TL# Cb6:1,';]7mr.yUzZGR y'6o7"ܑsK%˨dXi\j$4Nm^o',Ilb򣾭#Ž@F.3*e55;G$rYʕ󌞍+霩ŒJoK!B2OXۻuDcIL4='Ϲo"5?=A`H!Qw! R.yϲ*#oj@Iv6I: 7ɓ;Hj^Ү*CG1vab/:SS\ kb[ܷ]WA=YY!b:txv|X@J@ |ORFXYuX؛7(iQK6Ӏrv_[pCTC5ק,}8 Pz}Y}70i~~Pd"k_!VF%t^?&DY~v"V>o==0]s{YS§y8NGB% :Ri6($fMÉh*k˳1KMjhejLiRէfe{F5$Sm \7Ӟ4CѧBݭ-Ot]"^-XqS  }t%8jK ͉O}пL/Y038fXDO)gힸ-){cJۅ,O$EIPy$jgؔr[XRjgXwߜ5`m@f$1g+9q&CI5]3$唸Q $}ۛR4bO0_BYs7YV_Θ!N(BJ2Of 5ca_Ѐvo'iqb-r,ӳ*f$qY<%Cb%?:'Xi`Sx_I}G"(gV ^4sʜ=O-u\hL-pۜ=tshD 䜰Sbsj]%#+TZ {d] R'bRo^F-O1I5tR q#5eIaݓY~;7NAw~GZom"ֻ#tSr*cOJ ]9r#<9RidDrf.2j73*]-ʇ5X>P,^!ݥ z/uگLns |ejyCѦZqv*GT#&0*$R6N$vc"zE *+ Qx6pwK ̥o?Q7#oUMr͕ -bdA9m`,~]PX cr=)wbU`U?6Tuq987HK7MykQ7t)OB87iay߆UMFAX͔ U{)ns~8]Ts=1I=ڟj{nP"@9Z(s=6zQEٵ? OF(U1}y$>@Qfi@Zb]};C.Wc,'-"vq&wv -ov&f#C &X` |q3_hy?p ubB׹j?|,[ R |QJß%ĉ;2df;?Z?PEðĶZ0uC_["H2@O ѯfq~3mPW6A@J[Ώo>`+[tvyTًUۭ;QoP<(r򷳇#+kI-cg(" n҅*A혬~nsƣg{bX_ ! !_D]g'9]l#F0p}B7X_zEzrTDN؀'Y3_.hG}gUJLF%Ȩzwg%+JFu)Ph輌sI oþS9k-\dd-Tz퓻A0߸ ؒûX&,=^C<T=xе!g/SWd#tln%z!Io6\К[Ysم5W 6C%@Z|rm]0o9ڀOR}Ԡ/ζqNW**KXk4݋SceHkOU{y<,J7TT Ĥ:{[Y(MI4IJt\D`A䑞S84CO(PN?z:^#|:j&$IKphħtiU\{l*nB_#\ꡞg\<]Z$+̴"`x'n|~C(Z$>z]AV~4lhmρi'|ZPl>t=>9Π <:7wjygǧ ﻒk!LQg')+L"owOG,e|.f1TCi@I?%EfT= ..ՌWʼc 9J~SqU'5z53#L̪FszmQ'3:h@oH_ģÖi ԅ1em˜… ~f8\ukSV˹L2meoD1BT3M {! N=IUfOPkѭ[˂p+E}X="1wޚv yY%D Bv} sR:UUn'3Fm.^W8#]aUKWnT:ϴ*VSF?5޷3yPsIY&R;ws9<רEIՒV-xHS"=*ߊ=JU#њpG0 Qj-d&( hӍw>)VV]=Z:?{-1?/{E `m,6zѲ->spM87yLH:TnATy}ݿ? K7u%8wH#𱄃EZg"4 #~@3]tM!l,#䓫Tӹg̚2)/8E$j8mzIpq'}ipO".x9-FQ-”*r#v_{ yT;aR:%Rsl<|ѭD&ĩ].!/7osJ;oTG԰ﴃ&c#}ޘ6j!w],=k-JjG[nWL e&)1G>}Xv0&L@3lLPpVR=m+.50yU?QYl-{]< a0u@]Ѿ>3.9`+*5ïHZrjt8؛{C2,y EBv(Iqve^ S hLq AzxٶɻI l^VG {;߃8ͭ/'$րٹrވ&H{ 4&s{T2&7_Dٽpi2sFmU>M3K.чSo&P(0.(:MUL5 jRYXPHPJ pCQwz֛ŲLᗟCl~@'Ղ؄8Ў32[}3SHGFL ٖ[نlw纊(ޏfJo*I!@hQ'(Alz#LecTl}3̧`cύJ* mKY}#1?!D]mc)(AًJD %t ^-Vb8"tOG*, jȒ @vy|\RGzMaR+B, wׯvMNgFW-Tq%"Ƕ4Twv~D䅄 eBWU9W6אh"ŏ x;|Pv:"RqF/ag9R9g/!:|Ѝ(w/7逇*#-?1I䉸@}is>x)6HAs>wvK1B?녣1sA_u&בf(ihv|J ^$yծCwEZaM5hl磦6˜<=WXZEɯ\,kI} %M S#,zl%gD4JiTM{ l*40`Lm5%6; Bb 6u.'4;j*\Y'P#U2t>`֏O D "*߃h_d+ˡOnKb [Hܞo< ]; tjjur)@afNk{n\-i/6wC%!c| `v9spE Mc,J-/hSQ|FSsq3EU"wwCJ/ddpIQX i/)7GkJ5N^_ 9i}긏0Ģ2'/AZ}_ +1Bt}SR(*b9i1&ۈ^*Ek<^qoP.zr8Y,N{l"E$1k`xKSj 18>u)16 CǮgپaWDQ}5 mZr>T5֦'$_K6(9|/u9qM[opLPכ6kBDT1<@s#AK+jb|OOdQK`b>:t跍+%G/bsE@αz EYOr5'7u;uhd͔rkȢw9-6@=Nc N8qqq(>MmO"L}VX[Ҕ'BjѦ7)'8&q_kψ"+dz,?Y; W?Ƨ|T5qa!a>5א^Kd$jX 枧'w?8IJ>q3oAn!hZ(fnfM[6ٶ UΘQuƣ[l*]gֈ W}c`{{T_p;SU~ʿO|@|xUYu•p9]vL\"1$[LX/Sیjz1A[];YjBڪ>-*r"]mȬTpM6h-($m ʶ.^y~Ro_aJO9.U`'Y~lW ;^ؘnYgy4}:cd&s~S<܅!FAU}ԼMW7.O9j)޵=@AR𳿈.`wui*fQ]Wx7Kt{v''I8X{qdKf0gT ]p&F@'=o _E8 pC:Ҟ[|F.ZC|>ϙ5u%sv'Rm} tEوwX 濈9𭔢~ȣWH rܷ^:d4(\s7',m'c߂Н9sWS JĊjVusՠQ&Afֳ:[X!b"0hbwu;Ǔ B2otYסGԡ@GʂK_ ǫzܦ. Pz8oJ{,3Q=4KXG _NK9ML- C USz6P4a:o;VInxO(zϺ$V̉Rշ,Vz" !nU]shbT55QoϢDɝ!eh=*|ޱ>a|-j: nbas@;VT cSiY, #>$اAaU=Cw],5& ` j~)hj/.XjZ[mnس u[c%lEA'܍C:9 SU0GOa.Wc6#_c+*BW0DUzVfӻ53%Gw) -mIffG avSCH _ckUS*W3`1LRwD !;`_}!0  m Ml|iT9B|rD4nxMaa&_>u &f:kn;4,䉿yw#F$`>PH3]Dq/1,ȘBMG AO|ŇDzՁ\7:So۴$ ]^UG -7Bu֓t ƴyՃO|x\Y뫇Ü܀W*znd7&]3BUt,R]b:Ee}_˒J0zZ )'@RRYjU>B[4J g9~.o?ܟ])3' Ja=QApir1&*rG.~ z".qעW؞3P$ϐw=%5ao?ϷmbTE{Um!-LwS<ޜ 鸦@#'Lu(&q@]_?yDYsv*>ME u&C"!Щ]U#r[W# mrc\OѠǘ 'JްK2Wk/Vatk(@}tq\9G0P0n?BZ #cϱJ<"f@8&SBd\ϣ jvgp邐#qC̹ PR#ܻ{9\ n,,E ``o_2,6h7~}ڰ'leg5JD1[ޮ*)㳩_s}̵7jDvZ64S ;_ 0D#x}W%VG,Դ.m4,zgkLv. x(-)Tgk)UћLyP"'J-QאvT81ǚd0Px!NX^p(Sˆ\a@XeFD(4/Y˵ y3JQS;7Ico~oe|l>p䐖#ҡ\:%Ǯ/:Hzydw{(^D$w/3=-&4 @%YOdŪ[ؠ=FJoK]|&&\~%;[QRE0=@"7xJ"f"5F"6k}2 .)בPV@%D/EJlqfLm63`~0S| n,#Iyԉt 5긗[R"z\}IM4>쮒c{UKj=TzY%5rq!6r0*)HOҊ')~xL8i/uRoY1tÙns:L7PixNJXa-%]sQZwߊL||Sn^(e3aEHͲ#yFŮGZFm,vg ʓiYjzf`el6`=@]a'\_uLZ ,9NiG!ěSb% ׽tN» ]8ƋxZ *1hRjZ5^7 Zaf\| j22pmT|tuM?*Xf5- pK8Á͗(ar6W:h;%Gĭ.Kg_ d ]0ā ".k^qXCCC}>^ѧ]:ݾlvcҡ2Qӻ&->ܦa"[!k#P$t@E qvVCo0B_^FA CuD6^+3erBJG#[%.IG'{JnnJ䑤4aP+Lxl 1˦~UZ?;!0kZH7q(Lk^g$ҧP]=;-SSd%jN*uicj\6XX?7鶫A92I ;%'AB=/iVj B=7} cz!Լ5Kym]  2/vE '~c̺>]4 dq4LO+2M3p7l9ʕ2pr @V oaI&Q, 4tA :'JXc4=t:;oC)+[x@+T.{XjVi_(0vb2P/[wMC~撻?-Hy Px^Nr&we?؇>DN׉U8ۊ+4J (KUd# !Q~jKw6/KZ$? ~`RqbwqrB' G9*uΨ?Mt=jʹ#f>uȅ7[wy JR{,,c6Wg!P0Kop)f|H>9*-@hXed4ΐ&u^AǵĪe=XnnPEZq]l<t$mu%.('IqIVKvFZI/ҙ«ނk *OtLZ{f#ɥU0Iغ D#'eBSrZw0Ŭ ,Q Ãxߺi}݂)[!;oK@Ɣ+-? f\jiGs*ɔm26' ԏ8SÀش&$q[lGucqqcz] (@]Pf×˒72{#(C3|#̧R\r6_dċ#}.;Ԛ0.oB| H ƼO]$Um?̞AIB|yų3IcefR6ͮ.nv\&-)L?/j*G,˜I3JP7~(>VnW7d0YƖ$#|KzCKF9]0ýk QS|YQ -e/QbM$}mniN>A U_?&y$,,J P @*>QRZ nZgɐ0?sy6HJ+&=3UdDeYP'UŒ%[''uF+ 1*Zz"1'wWg[/Cq9h݃~ LbLߺ>lA3ߎ KG1QOY4WF7.>%'6fxf98#Yl܁!"3NlGOB G-+t9:z9GEx ; RS` jgHg@M vk?bTXri9,7 '6tkpTf~8ʑ{IXmbShșieъdiԺ(_k SIOf\V פ8cG%Y,9>sfQ@)oj.7&pv6-4άBAb\y ryܫy 4ar'0>qHB'(obw$6yuRwٮ)^˛tgQant)St&Eπ"fګtWS ҈&:Ϩ߫99Gs8yo(sJ75ۊ_*.$ ?%ąK3ۉ 'b^t21595@SOƬF\NfqNE\%!(g~Y?]+ʀ58ծ|ui`nH0a1x BD>b5L':)gCnJ̑Z#R7,mt^y1Ѱw uπ?kpUv6`P7P%dT<%g<tzX"\myOҼš\<}qo_N\. "xlZ-4c;l,D߮b4})7^o;φ-EJD! =XᯋeJ6CcMه`V7nQ+!Ŭp8!z)W[ܚ7imaɫ v70j1e? BNWTgG_̣ͷ :zzF5vc \B:#3/[Y]ݕc)<`S2!hb: kAvL$ɐmldh/|k岨M(kTw3ݺ /L[ : 3WTI%,"qb<,Rnj  b5r=X3GOf9jiv8$ĕVÙل.,T6^A: EZxw}ѫ ,<vQ~F 5 #7fRU d&%, Zv2seOX V- n# sn!%9v^S̪'XqX&< $_Gv P=Z0Ր&~LH l>~"DrMze;^R;<J\K=ë9A?EErE>!ג zX;l-cj}5$&a[գۃ30 ze֑X[љtP"8i 1Ǻ̂ϱ#NLeyI^:SA 7f^"8T>A 5Ap98/]/ȞCe)oJ@\?JsmO}&Ċ)M&`LA\`OA l 1Qb隻m> 5DT ) ?=c$;<%xR1T@? @ .@)kYJӉZA.̕ΧNWYxl[>s)# *(NoEڜ=$:~2:2 7%Q`xQMt`rH/` *ŪfQD$/`tXbUdΘ8 m۸`!a!!yfiѺs3^)A<+EžB[/%k߅:H8R;̄$g[;kbrhlH>ݛ9Ő| C""6\_:lJtze#¹_}Ӹ2[S /%U~!$bWVnw )KY|@}),1A!$ZTZ oeo.!&ܨiM trZBk 1USkϏ}'du֖4"d$jhuf^/dgu"Bl󚦺΃3 wsR I$Uژ\nQcP#Ӹ/T;[Zw=]~M.@j Sb6=sHG hUohZD!НX"F]BT|%_ cQqU[ۭ^Sru XU )#h u{xSd`;J1`I?' F@Snmq!.ldЀЊ"hh&.ٞ6Ӣ- ĩz2Cb&r U }l8҂hqA}VrOW._ B1M9ߐ:(Fdn Α H5Dz kA{BTy[__->$XHbվubPͮ*l`4`㸌jJy$.$G_&irŀ@"Z0Usy/kq^|*h+')+[3o}u_\Qz?bSK6X`3[zf|qj~χ4e3*#aǡ7.0jXzwcVW^8"|SΎVȞ?a]쌰8 V岞MD)Kд ˬ>eY'I v]=fz! | IXRZjxxlݴHaknPdÕ BrOpIl:K$qP<X>騡 r Ic5 w%]cp (`/Toz[l4_?1n͊j\:醒g2>DCQļ3Dɳw=ݢ ٚhfkm5lC;݅|_vXlWylq]2(nd^evoCQ>!} +)h򍯢VqΓݟ:7h%|EK1re^yL4#0y%SAQk\ i86K.G6#qpt#Kixd«t )l@tU|6HA޸FzǦ@)Rɛd!pd"뀲CS;~5S}tRaB09WvOrL[b9EEu>++FÝIMam8{ۚ:EЬ #b6{sح[J`[R\\3 `XKKq@ţj"ݪ#kJS I` 8%_o3б)r bJN1[aiQ.Zvd2CG2$j:oN~W-Z*h_<ۨSb5 l헓-]볜v KGI :ptKq3["\.e J1IY')KZm1+p 7 ,Y\s.MWŞ܌Kz\BԂ,'~)RRou:3|^!C˩[L VK^aRUR6 ʤi d rn[H the{.WD\I֔s0Kr\ᇐS?xv=JJDjTaMP-2b:{"!( Qj@;qIzr{M^TK}C;L YF}6wu9l2{ u$ 7ndM21NL$./ܲ0]B0ʁU4յz{fQy +?nNqX5iHG_D~h<׺iS*:Zpd:e0:^fqKIq#kN-Azm`N)*2J~ Zf8oʔ.LW)w* NGqnTM]]V ~c"?:@I{}wn C{sMb<1o4ՂUڊ~d\Trz%֭7!PsCAԹ Qrl{ O]|NvؼlO1(h',p'5IF'F#jߥ1KP|ϠSkv9 `<=VࡓJuo֠U Y s/>>cekbX/ ҧ2Z( ]gi.VyA]PT+"Y[ďOM1z]̅H"mъodVH%ͦJ r0lDu3d,d7*!$w~4 zL|=% T4*KFy_oD>DUMR0 ~ET%#sJ^u8ޑ"jFm`M Uyu zI*@u*ռo)澿@fN;jLXVH&A ͨ.pݰ;dT {.l~ yg(Ro4 .X[*rB(9 t6cyV% #՞ _ 9X;6-LٰJw;$-Xmu^+7mTݻ%tܺP_1f ޗ)ôW&"rUbf,r,zSڡX(m‘>9T x #vwtm4y7%ٱ$ea3$V LeV9g%:$~Aֵ{x"I#X'\[n( Q ǐ.y_%>umQ'jq.W肓ReqKb|.Ӈ,6i;Z *PA8r"[k 0R!qD5ͬ݉ʝ*|_4o N2{THr =l>A29̲qb|Ӥ*vLTaxk|{_9Sljv&{Oz)pWWF帐1 [_9ҁ"N88)~3ćb9)\~}"fع ҘiYQC׉F+ڈ8 I@ʔjix2Np%MϓTw|^ Qz-~Y>"e=,HgޖNZ,YBȺ ؏bW;-@p= e6m$*'ԝ|vqQ2{T+Ф$V QX=-z!(*DȐߔ~GnOZFU$z&R*>f$/RZ0ٰqoVd h%" C%N4AR6C"W.`\S'f!;&AlO+-׷\2h!M3 \ud[֝Wug5VǬ T}Be8͉HvTV[Aڡ44`!`f%Xp.Xq~t\g^ e*kCI%|=ARP-}bп/Q uւU0Neד).{lfNOc#u⥘kNsbuc FfM*V~Lx#h%bvuG'f@iE˴— ۉ\4(V-j(}6•h#IܦEAe;ScaLo%jͻ^j#K Nx~zR*`*vÆL֐e] xJzI=ГfUV$H Ln\,LЙ!α>fҧ$\Ր`bu\ocL2Q56q҉0O,HMm"B,;?*#=7*AgU{ 95Aj^ߪЃx,C}C;X'ku-. S6w!Tv.rƕZg8j ۟ xv+߬4tCS1ا %c%"Hj焾JEKCfv( Ќ,o/6@;ܹQ|,33'! x+PZDh8Y4ΏhՏ}IlnjgQhCu{]6W 9!&)Q vfy ߋ|gk |ۛAL!ZmREK/ZGtN[ة`gIۧ|b e:!wiZ^mkpS=@qЗ DrmK=2U3T)aqr;¤6-#~v|X yxo|ČRP1K m8+ΔVzLU3 ] [GFtR 2=D[m* :׹za|Ň\]?ڼZ*Ųe6ट"J6ik}(Lvu$@`(-$gNuZAS]9֕k-j=&`t%MxaS;$F{0"D*ڄer$/W5e6? 5. _K_Jq!]:ESҸ80My`~z0"CF+&IF _F>%M=l G{ y9~ˢ+~\CIv&@ ȓi1`DYId(*C,f#;3CRAl$ (]^D/ ">&q֚,ӽc2Yj _5VBdw]#PBOzq`Rwr]5[.efC?@!t*'xbA),2NY'(XdvC*ʛ?U_8EIx3A^݄)V1<_# ;^;2K`/qLFf,] ^3ߝzR Gj:9[w J뗅,Ts{DY>/DDiO][08ԇWxNyr#tSD@nƐѸFX9GQ&yBDnOt͇BFm>PU1pXй'`*4 $ F:ZHqA '7o%TwYg>l4uxu5gAWY 5b"tQ=0̦Rɍ,* ϧ(<ᡌU Hy [y| E}/C7.P̛l&\ SAN&V&NqEX2~4;|tNP)p@]91j󠺌nφCh3h{\ws, reɆ'I MYpv{͈y>@.KFz KW>T9E[sr8D?֧έ.6Ӫ!e)w+50:}4yd[o`q,Ft)t84^gSqН@}`CZ@a#4{84egWN3..{%=wD$M^&xx!(9ۆQD~\LO .@}z,E)Gۈwl.@!9pZJ lYؠ?T)Do_yHKԁ]9Q{ͣ#-]xc+aZC)dIeF!T#2j;0&-x$U'-Ň#/Π#(;?!.'YP]Ǹe\.q~;=0UӣoբT~*-,ޏ>\;Q@}6wEcH2(z8bՃ-u o:- ē(5֑ʸMֶ;gH $#F<ģ(5+Ӆo60t?%.ͤ9*aI!Q4gvQwB_94}Wٛ7 )ڭ\*|64 ͌q4Y\뗾77GᤪuTο vsrKl9%7M3zno؜W3^U0TZ yA9)Y.@ 2-j,]^ebdZ'B=B$\3l#2V\ؙ G`bk8JhK 5P.moU7ls.V)Q hQd1MұIX߈,V~眐y^4+R^ hHזy8x4<4Yíix/9B\ꔂQ26&vkiG~Ww2Q͡1ǁo[/hf:mExs}Z=곤1R|zfu1+MbݬmDZNWs@OLWCLօĘdg[E'?e:J޶?tܞr5 AqW #ֆTZ9JL1^h+"^m* īMtG@E ݃X|Br? cywX_i[aLT*DBȍ vok$e)*h&:؀j9"xB7<w<T$%}7.&e۳le8vCkyK~Ovme=#^W=i J^g':!:( 5Ft\@Lpn* t*vڗ!Y= XnIZ=٫B+''u? 3pNI>ZwR>r7ٵU~e@RR:1rW Nx0>q f(?nvMU5̈92$'UI]L4 #{{w8]$t~w V P^6,{rb89./cl>א^O5:zLKGz4HG T UT@y9\XF䎱)CV',QDiLq`5dpIyh.Z }F{5L[[N`juD+, XCF-?lxY{AMiK]a@:M/BPԋL%8񻦑΀doc M^9g=eѶ@_PO Ɖץff%c )&B&8ܞ[UdWb2 TaJҺ*C+ pVc?QvW[9S8n:S؊;FSb=JYU$t&&~pl'܅vAL=MI!Ǯ@`RZ,W=Һ*J$X+;CLye-V[ű g GZ8h|w^pf,gCX1aL۔gс>b1UEGfM;cdT/>l=֗ =8jlGSЖC;2"MKcI'_9 ݫl9+шo1)82+Pi\q C)(ǟJZн^ekѡ*+Ax.<VC6Jl 4ni=K2?qqD sԆA?E7ir:UÊy@QZŞ-w9Vw㐐xPހQs$k`ፙn5%T9!Azd\ r]&k^t4PnfhH7!zt0k QqE/H@FpcEەܘVո2p>o pe?. Ҧk_{&;Y)ګ;EaDKpùoabsn© d 7:|K(n֞9UI^dYScb=>q3|wxh&ٕ! _ENbG&kz!tڨ! Eqxs&4@evbk:\F黟0;0_&D0mKKG>VF>K }G7g8 8kQuX"/-5r> γ8@|m=~njxY?"q9ى! 5>thoy7B~ *5γRUH3mPИ/(_^aVm.T: -jOxLzoOנ ov޷LC k8?%\U-LeЬUAgV6v d؁?W ߦx(ÿX[h{66 _r V:~fuDho111nu2"@9^5xEkGߪű0҇0nkZ&SS%ڠ8rކ7gUM-;LC\ hB 8`6N0YiLFal2[1Sgwc7PkK<3}1t)}i})FV)fdɄ6q2'W_(ǸuqB4Ӂw:ؕ)lr5%GXPT|57w@_$aWOv)c=bDiOMC3Ƞh΃`m#NEAmԜ{ʎ?ӈ /?u *@?Ru ;Wm"j7wd3si؃v菚'9xK+ ]ݍ?([$u׮ƚ܇`FL:_>0ip˶l1?evt6#"%4O0b [_z5iweDȑ@q mޕeg.}שg[@0.{_ LL2K{V$ qb.L[,>XĿ漃͡nX$j52 2 94;A`>^2+1u6j9Ä-F=Tt{,zS`~╎Ar&D?/szќVt~t$Bw)r, `U9.S6lo-PV1Zs,ӑVi@g\I([&ǎ@s Z/wԬi/q v`{ƥ_+&+de/"Vɕhw+?JcڼA6ޣO2Ҟi]!/!%6ܗ7Ql7$QH>]s*2+[-t֪`Иe6Zv@ `eSeM،ұWi~;.SHq#3ũR8DZ~Um`WloͽEu%1N{Ɂ'-G=D VSsLԕD2ma8J ++Ԭh!m$47ҡ߇UW=5>c3x>^gFV_C (!&CȨl}m(Jt#txC s{,MqnWI6Y5gV1 o}2r`$*Gwh ?r XTGfӦ~e>c(I=QbA,.}ԝ?qhiV).HujG 2)\V<3;-mn]Du$%H,AVo!?UV?N\dZ,eG@(Ts]~sY>M%\퉗7qBOIRE<)t/@ɈJAydڽhU=Tv ṡJ-cMWdH֚3NTM?U߹ONH.!L HNHOb疹63Ih=NJ#FNl'鞿q:姨itj!8&K 0cwqc3޲la..ܠ4`jt/G$ڞq8h!ȼ8sHE\>eOH85I?pEs5oOQgԔh-aFixGKt]@Dϑ>%9GKjCdeQK[)ŵZSp<A>D( >!љgEPHxC%POt2ЎBiC%D!.^li_y^EI8z-YԀ[ 3/hѼWAs@½MҿXtzsL P E{F^ezUB hP[`d/Uϧzťg?Ce嶫d8rSzgX03(Mh8p?2)I?ㅎpUkX-hb ]2[u-'S7GeС@Xd>#+eu~G<\E{V\pޡld~!eG( XkKycu>bM c+!p&4֢U\=ˀ4l.ˎ[&Yg?U)Ra!Ӑ~R? OS,' b. dzxok_C猄 %#ݱIb Q!.cҝX8ǐ|zi Sb >쎼A1n_n@&s wm QnzHiX{,nR8á.|Y#AJbZp4.!Vw:z}Cᮾg 0IKYt]an~md!d y2 pVm^M:HՅ|j>u: RآɤRU @ $/GBkV&ٺ Wa`rɚdSX!VT~9glFGztN7VcCщ5;aRe枲c,AgU{ gʗ!OMٔCm QYIU&BDzA5r2ۧ9 Yc^k5ep,q5GVjI<6/&9kKU6ܘ!=$FpA7t  k0+"@21{@4zHFt _݅[^Hcr]w_ 5e5,‡mU3T6~J[pDtMqr|/H  LtUe!Ep/ЫMqћ4sh,i?IG"7Ҋ Ϩѻ͎X(YI Ҧ&n>NOm#<ߏX)uӌ\}|93ˡ3|u=GXG߿X-/ђ;WmV& {/n8ZsQL<%_-HBˍ"@4 E̜VsAmIΕnOmT~au m+.=EPJCP:D ,H#kz*BL|T̤O%ܡ7G9"p˭-TLۦ*%hޡ! c_nEUQڏ۞ϝɊ&^\{ ibkbq64chÚ`xGz~ծ3-rl:0υ1@V\0_j,l@Ή*aݣt4ȽXӸaX G/8FId:5≰1_ߜ`β~,if<7 &'|0Y:^bb1倗G6wVpž4T þH݅le:ԣ  񢰦|a+WAҸ<}!`88kx~ z-%I o?>x1R~= =G [KBswGu&V&2%q6v8AB]vmW8T~|xurV"O,9X%I~aǂcl?䠷 f~`~kR,l]!pWe N߹ _|js:e{ ei@Dq7#WM=qX.0(evٷAF~4vv䠪**hu9=:H #mW̊j΍ri =4lj[ΰ :'m|/D0e"婜aV(/XbGqST76lXmhge,`!YC.*azat7'>& ,ryU NE\UXПz~韷NA>q^#LJG\r/;BCqvnλ$3UN .kkyG+8\zٖд+lZ,>C%4Q\;vOF\hZ3| FDږ(u̗1_Q(r;SAT :p Mm+${, [%T5_1@/}B-L%h8tN) jjݏ !"nd_5[ AӰ1^/_Q۽b4.ҟIU:!6EXMak`03uIY7Tx[H,a%r9&kF5JE%-wDT 8k~G^ N"oW5kS"nV#{29".Dr78x^|Yhzj:0c@ǦI|ϸJ [ז_ՆgE{xC7mnIIK-6Y%,E2OЙAV`!#+mZo35^`:%/]iv:W.(vqT`$69ekGlt2a؜M^^9Vϳ7w d L,xo;SYA93YDɕObIETV"ipP1&Qoԓ@<_ LfPY@;:Mh1wP`+iQt0c?ђ ʄVoޚn;rE-J 4 59kaSP`8h?R^s8wkHߔgi-̾jDF<]?A/1.Wd.b ?&QѥTPP oi7.񜙅/9ӠgP|PqPw5 YCe :UbAN\̓*>k,1 SMwe\FX'Z F\ {~6q%eo54+BSOsG[ߘ_6X[?4ޏ:)0xQZ-q }0 /вt:~d T}uSVUO9/ؼON,jƴo欃Gܢfm-+/OMg4iA2k2kGe5Fd>˭ؕy+Ae˅_Ќj[ Uex6+ 8R$Pk*daE!:31nӽO!:4^``)DdxCtao~9B;uhEgCry%G85[r{5+]"-~Zc WC%ݻ Hˆw=<<%oW:›i ML.oBU s[:2#: F\;X揬4nEdb<ׯ jn; C1- MXi 瑺VzcYJ8ҏ@2=O? T,VMS5[oU:30}z"&\ l14e'2 .=?&J%d1"^+T=lWDž!MH&EO]k y/gNȕblX:7GU9`82q|lք1j^]8:[p:: yBGj~C RI>sY茌îAiWQn>µyFjo5k)ҁVC:DŽ0 !?In;.C*UibTȱIYg'wٝ?؅WƝLZQ-` ?AjT71>ԑo"D\tt|))EbekuX-(Qa k$=2~[.C6Nq"8(PTF߲өt)^{Di2. ޒҁڹn%6e 3w_ԴJW.vOWI۠4!.wQU~t]Ou=ԥ|_Ȃ;G3X C/ 'xѤ+jTpgN?Y+#EZKsL?7ck$o46=qZ5L }ˣ#/_ubcYQjᆧWs]P?@o,αj;&O @CytM>T)7N z3J}*.f5*-@vG2.ϭs  | )xxo#=+{FCkS?T)}SvS͝Vb8l/ |K;2(DP^]-e7xPq~/&1]8^︶ZZkg5@d2~!O0%R?~>hBH@ɯ vVсnA➝xı37a[>j9c&zy4ESD*]j 4Ui1ѽ7%䐟WѨ389"d ҁ n>3iONCTsFBQh UfΫ<^t$!/b4JbǞ<]^KEQL^fy88v  Tj+2r>ʮŲTמgM׹EW:(&]?Bv)Xs[VG *gճ-kvq )~p^-Czq>Q0cҫg٬MvY 1;"A~l4$y/I* v$-܁ Jט&v/4#.F`mD%z>˔pDDx]BfC$(\fn9{ہ5 <(T!9:B>GO q|fVLq:ݩ&,]mY \v:c@(D&o,_!Ҟ#u@[mn2ZsN6#F(>U"Gt&\A$;1&wPr5=4xKRBēj}vϚWgـYK9"FւIEZ\Z6:U,Imm?9taU&YQI \a 0+} 8s4,4l mu`E$dR/fcٍF8|3䇪P]OM}Jfu9[J .-SqXBUvGӀO{-5.;z-XF:zWٞ֏оS` W/a gva*`tzRB&> |2zZF .^Rƒ<<.S h4*р%tOB'qڷAֆۨNԷtSǤ"kE!-5q<+֪B- GIMRxEn喽0sIЀUѶh՝V ʁNu$E?uuCk X|$4o ŭ|l36yv69ê_M7Z[w+SY箌ܚHt9Qh1tkͫ-tPMٵy ljlu9o\Ͼh5hD{0rK I0pŎfxj_ym]f8zAz#^H |E:WWj~cZ fZ]E~'~bCБû{@ҮȴXt!*cd@ qiWSMsf2h_& ]C!}UJos ]++ q Ԇ[MOlWVe#pD4*J7!Lf`L^_f-o ։rŕ%c'^ aw}J'ۯ -RRff*_\S6ZQcZQ#ߣr-6fe׿*`IEZ6qrSE7 Sn摶wsC┼R-RN܂3:썙qo[%f[bK ƌ/Z:02\XWo򃠘{ r-oNOp60_I29NJohV[[hH#7(O|jb,fapxsŲEV=u$K٭8 I}kXȜ" _{5P!~0yjTC4&fC #▶<ΥAUgqr2&stPSu-(Y5N :p2| ٟ{v"i\WTr&A3d} ![+ۻf)ooA- FS։Jh{rn\&pNQjp;+o01=ޖ^ox*B]8RqC ܬKqxO}q_ 3,<ȶ0EG`t*C(=X}eQb~\2#L%^9 pZ5P:vR8$~L6!|OyE 6 :7 Bs$IEv#LF;J69&p-7a5u)&`+| GtuPk)cX5D& |jV#|6;r5RC==SP:n+s-a=[HcY 0}A1Gs6AZep/Z%#Qlj]m,E$qӳf+\,, v<]+eN.sXI‹@ T\.t^rفSsh7qLn .)ǍJ8\OCCۥM di lYژViFe*]f}'c"TV2z.}})uCn^$M JɇzfG d1Dx;ӵMʡoppaqڳ%sIUA6׼Sƪ)/J"e8!4݈"?'*_tՁNGŢd˭^4GB&f]p1pbǔ|#-6s/~1Yx%;Ot8Zpߵr#,1Qb!l)'egBH/T9;+CiǑw k~*ӖOA=Ydkk CPX߼ӴS*H`ꝭ^ nؤF_=bJ<tB  BhÈy|4t}2@G_4ٳ#z'qM1]w$ A!B.¾J/e WXvv(9BNV+WB"E$!{6l!~/bK}ee-z(.MˊF>! #17iDS]N`Js mכּs٦Wddžh.~b r Y )(\A+]Fݼ3UNRAgwLR22=Sj>{hC쳵,1[BS:\ҙ+I945Y1#Dgߎh R|5yl0oTB ilA`<@˲ Ҁ4I5tDtyV8 _2 p!5ƭxo.2mdw[Y}y=r焔|>&>]`],ukV*||G>Euǯe]+BHi|8=%&ӥ"c-q^ ^'x!K -γ2Dk,f2=V`EP3k@YP@>uktNVr̅8#d0;GP ~uSƶ&Ҏg l}]?P_8[DEyiL̷8]>uL R1=bhz[](v;*1J<21$$ݫ0%x_g;P{b^cNU'lLt_.ᵊS["BoDoĐl/'U$Έ YFY̍ .YX~0uO}NEx}azp$3)剨Ev ܕЇU\Rsx${4>{ಪ+n$cٻC!p-<"N \M&0|z kmYX*{^M3H5 } Fr" йեb㹌O=K`+Jo -56'4\cVq.dQmD-&nmDI")EUB=M4ilDBx=[Z d݂4:(KCWǓ<+?gI,7VYiYtLo+B3!6UI6*E4&9kjd7Fs|v^u-3\LIz&vE \*//;GzY[!ztM Ygt؊HZA`x@Z{Q-<< A@ U{_ ŀѼNeb~k'~.$>GR6{kk=4G,H߂Z (Yݸ6[xdXLChƺ^5D鍉+!aJ/#u;ш&+hf:IBCu^qz }VK52ޱܠ7v{ _u5pAy.#3#$) <[OЄ=qH0~';f,- d_QÇ҇F$3uG;v~#q֨Def?w/"B~ 4f@P]ic~"LWW`H %6ʕ5>ZXN#K:]'fȯq+<׃8..W黜XH_k7b k/[XVX\Ϣ ]kb.S)˵#v1d`. [ko{j n"Gdd |Wo2-*˲'4n; )iP`jt G بh#sͫn ?ޘ/&[@7 >[Lj†DYu5+tDt^n^XP:L9:گB lt .:ro ]5@_:]Ѩ9[Bȧtnj' `F`u~Ѩ"_W76 ΅_ ?-zj3iSQOSVrpn6-2xS7-){y7wBX,nk7zRԧi Qll˗0|Ŭ":PͲvFwBpP6 Fh2`PT ngg%0/yeX,|^ ^H[ Jyj'ZLGN&BQvb~ju~N[] {K$ (uAbƀoS -b(8bNYEj:ÉD`5,xb4>oB|͆ %FNcGDVc'A\3lA>Zbj.I]»ڲ>7wNvR'gĵ"F5W>nob}#<4S2;qyp:CG,G(l85^xBP%TֈA a]ᴩ8t{J5e8Ui釿y}ьAasIw mtq%WY:Z^88g19ޓT'龔;Րɚ&.pW[U߸C{,Kߎ5d?||D-SF(S\@JDLIqu:@ J_`/ͱcƌo7 m"e{>ָ!a=< `vFgkDf2ENMMxjnI_8ڇcNGI2\-8F><A#,!FNeC5:NmڭY#Z#йljP E͐lϲ@ReleLɬ32YӓŷzjhP^{dzJ^`}iLD2wu*OV*jʍpcm?Y;MywV7HM*MZHr?;O,5o-ޗ`'Xa=Xo[;j.-yy w:PUºxECkHn=Pu8 ,9 F+.4 ZS{|ެoռJ S0*dK*( p6ƾ d@t~wyi΢ϐû1 6uѶ^£4g"2lrr%rŻ~ L< +I~8 MYCx=yu-YWx:?/23x}ȩRC: L}-Nnvz‡]mFKKy-/Vu D~]KO1>b9W$_dDYq)S1ٞ~A^4U1Lh-Tasut?.&p9h0 TDXj,hѳrc`2:<0[n)_¼wͭm!%͇(m4CN?STNeeuTL񤧾5Y*I{5z2_?#` S\@и4lӷ]b)ց "bt#,(gXt ͮs#<"*%Vy{P M:>GOAW |w>}li6vͶvݏ>nĚ`'wvτC;TlsP}1S8hF?J@LHa^-M ֍\w"Ѡa=bQ!B1fYWа} ߴm_U,?lqp`]KpZpT(! 5h1EVZ*"b 2B@ު "Xd1eE = fl[-Exz/&O9CW'Îj Wz`xVJu"KF(Jj*^6X w~ C.Wr ZQ}r:l=L~G7mliVHI$CW7Z:"I_CZ a\^;`>_ڃ ME2fD0ɗfrPGpJw,9UtpE 6_ab=HA 2ӳ\܃[*KL)ݎ D^p-O'DI>>)CĢY #2'堳hy<*eo Jt= 8k9R(tuEF=^.TpsƍڌJy)~>4\ФP63n^E\D&AQ մold<#2v3@cKO&n@bZP%2Yac> P?njj}X¬ڎ†,*@+݄O6UC.L}E2:{gfpR!]5ouR0<:t53K&b!:ӓ #fC T>T3hPT0 Vɠ;+E0R-Kt upCHCR\Ebl)v ns \*v^m=dؙ>lO#ͼ/w#Km6V&t.=l;s/OԵMjs.\$uG)i F7i֖ۖQCָ%'U/Uybw$phw_jAh,6ee΅z[qsWu6頤\7j!=4nv.36PGyl1^4|LJ1_7RX_dʥ0Vlw\%gS+dQ,ʞBLfuţ}UQBCFVtݸ_A)f$~.TQy:՗0Kc;(ݦm@bht~)XN_.%y vHq{Pkrʁ?ۆ$%$|շtE1#{ԋUbo4y.ݨjp %$ T@?e^* B{5Gׄ{O0;ꯪCt0^mGg:u@;[9Wt~=L7PdRٯqɥ,zmbetZ絳jpDŽ1@'& @sq3~ܣIH)\Y^.{jCC߂jFʻ.)d eM)[:Crle,L>vT "C QF] K.fRf` 9kXŗG2ҼP1SBW(r(xv6yǹ>bn$q*?/Ry]fb.ҡFڡۥ<;g;OرtAY?/#9HHcwK!t>q`cY+ѠW>g}.EgqVh;OYCe}n'iQZ n_>_!Zn/VFg>EZ'Nx?/ w#|PT_mjfpj-&du OUx)h.Qt"MM xC:(75 d0ĹMZL'wXcZ N%-^Z$VwX?dx3=;̻g=+uȓ vak̼r͑}%iٰNJug[~{V>*;&C)G/0HC2QõrFF[wY4ر~o3OS;2r&ny 8 <_{IPcd EL\׃$V5-2/sǖ0%PÆQaXksqQ Z% R$+`ZFBΫ}IĖ/urgF"|0ͮs? "0'31̠rո]d{ ͻfRvk-!V=ZW|/k JQe, kNJdc3i_de;i'U^l奂+ [RM{&G]Q? 7.nJSU.<ځ$a!/ԇ}p T.Kб@+s Rh'?i}ݾBS]4\9y VU ctZLsGiMτgd QF_a琠2QGtFt.]Yk$QؠCR'!VU>'Đx,2 =ȕ!rp".+΋!'f\jVjqj޼ S㵲"`᪪X~aC3%%;.Z/l!IyK Ny4`3\ќ 3$`.NMpWjϭc8L_KV) k@7B`K+lk8pʶ[J?XcboMA>Y#7 NUAP*L3OD 6 tyQm)PS5Ӫ0\H-A7E[TIWbaXjr: ~qIh"O|Lm=@@7 t\jg~[k' 'h67ZCDckLۻ8^j>2 Ż'rDbh@阣S1t0bepRվ]M(#4>WteXa+ʊ0 KzpY9O ? >Ze=pb`E)4`;-C8ٍ_7h7t86M@"O E2v(K ]0z0pTRg Tӫ$/1/)1b^džO_vjeCjg h2<ϧ 5?'-}g4n j[o׌o`Oԇf &d^tj`;Mi(݋`{. l^,)ajHwcߑ RK- *$AJ{U7ZNj2-7ZKh]O8ByAҥcU]R04MV 7!? A\~оUEV]G;"HI,~>OFp~մpNaGM2ȴ޴paվ"WIӆ:@@{2Qo F ˌgE-y>ifCg (&lԚK%?eߢF|UelLd¹JBTs*dd]3)p D&La sFrX(Wl*5ާGק~JU%RT0'~#nH4BvLI l_teENvHK˽&O fZϒ`y5{@²6n]˹9l[fWkBGSc"l"IOa0ղ/x?|n }PoZtd30oah2tdMxDԝNV[7֨q!WsX?bvrcI[k|1Y-wFxAh CdTyۍg'{R`>Ee &,u8%'7-r^Tyyd 1ޮ"^Le#@XZɔcԒՄox17o_t=5/M;h.Kh6Aj(ռV t$FӒ¯A_&5_j6įwf_G6)hb8B5Q-CAyԿ7W*V d|nWŗI8? u9NcJJx3c7^wWk{nk6yKnڗ2oq ݂>]>?8,tҚ^f;ϔOU@O^8+L{!%i1M]M.Bʅm>GgRqw'(ӕ950*=nhd ?bg۝>H_IL2Ӻē)f8ɟ&af9Nü/#X[С$M}t#)~l\e b ҹ%,|gw품*=bxiQ~_ԅ~S0>,_nt HsyH_e:&>(?@-OITjWm#%yaZ3[UQR'd+ޝZ 4\4svB(Y_߃A jGԝkcm& LscQ#Uf6UG= {'lPT"-$4Nh.y/0Eul[9\Yʤwх՗Z:̀99Lzr 1VV& ]&tn8Ѽ’wT'<j,9E~[Q1@ _⵺v' \ceoaȘ|Aỿa2}{򘽖wQ{\9yi@~jdLHq}ci 32-#d"p{3s+EksVyZtSH:ɀTm dYܳ'^Wq97,׫.~ nznSuC VIfPl rf|`P]&.؎Zy,\Ż9)4m-FqS^ppl}WN<Y<]`*e2ne|(U[Ͱ{6CVr"EOjVȜh}X XT/.U{ӹ7|OE}=pRamjECX* ڧ`CYI*RpT PPD"#GI uU2ǿbh&M"k^ mipJh7F-=_=um8F >3Epi+}|Lrij%zOJ:gY~VJe吢JM~NTX$9ٜC1T}ZZ!έ Mz-ƶ@2`W u,eEө Hھ f%7JјcN"31U kK}a~NgIvD_)azh'~ISCІqv>0΢M>ME¦m;gUQ=leyU{iW'@0Wx{DSIP:&rɯu$fZA%541ρS@t"T}tC]ubFnA)1`rhKUR(M@6k z.2Af B(?\+21)}3µjNby*<{QK46˼ -7R.|fիl]#"8A02 o\`鈰 )涢,Z^0w׾"&`_7KXm$}M:|6Aw"e- J`{ TK[&5=|fz =1̃ *iP 08c8/NJ@cH:`֙gٜZ-Fnk$^Vۘ?I ¹H#oh "MBRj2r6?W(kHeLŠ>JS?6dp*6yC_؎uY,ƹS)ЮyH˭^HZŸUV@nN㏖X_I&}r? }wY)JSAoގfL]bCX_Z4A~@wr\ŵ$,os;]eTQK(AV {I1eL'f .%K.Ml)|&KQfi![ ghA0>].} e9{mf(N6f7 ^sΑxf5t)C .]iKw{y֞+?#@ey iJU]{SP `@=ԟ'!$ġd\lӭ0K7@n󻐾R!5i'޾LM`Hq &(d.cJO&,X#`-MXyhڣI&,l;*)e<$X[dcF!s ~arEUuc|A5"6UsE0ȹZ|Ouց3.-6q;ǬjR1V7!ȷS4-u} WqE:elDk# m9! vd@IKlwfw߱>:@Z}VPD;}JPKizeMM"u8T"D$9RI(h1;{Njc' Q|BFAQ5]MjfowDXJzIP` 铑WU弿M!3%ƫ{1>B~Wr"R(9ZI[vb^=G(ªЃVZ|D'Vjg@|՞oPcnC@DVU J~E^Q G(. s9\Z8R{?h(*ծr1~Bn6b=xI*r]uxܦWR yJS3U '#pԜG!tWቌ;70aM^&\Gbj#o[ڼ *JBa921 0\v<; HL#^P8()l^&粖/gOPtTj}zwA"+վFo P>I*/.$e}D L3u ,K̓;Ǚ0 A5v{Qͦ3YF$200LHŦ-_6 @.Ѱ݋ V=/bџxhF 簲@K)s+r(|i-Q;/ >wW̵7۱TCXr.U@O|sq|A$<CwDY=һxgfmu#hэ!)/siDŽI>…&٠VSkKG݅ :;l0ׁ~]lӠw=V#ݘ'F1~ 3䪺d14SBa\q猷A*_=jL`:ib YKG񓰖;g?g˚Ejsu'P!zp]=&NP7no2"H7h8]̫)'/!UVY+p'M_{%x\da2Wg{PRk)dʟ9]tW.tPA !"B՝Ztt%@q֮&aߖB;j5b 3w+x,y+7\F{kKtK[_`iA'=JQ^& ]rq6 Oc"bF.v͔ rۑ'4Cx˚ ]]H5~Y/@`d/af`{|vkӾ`i*u@ڋų"^t@Ѥ.prjkXrc}f0j'o rGIN&,l:TQ=_ F}p.q|>0E6|wo^ K}Kئݺa⛩++c:wK:NG^VZ!B@Qf? pwͪyCL֭3f4]c|.%)MivHP+OUFF[?+b' 0h(fBA 5H/+riV~7ώB pA)0%t'ESNQ(N!@D ޑwxM*;T7Q#A4TG;+;)X1XWpP/~D:2CwLm'fz& >GQ(+*7WѴQLE7(B je, !_5nOt~=6K>U!#۽XEM'}|uW cYX10ii>e$ЫQ<5nQ#4VovPc,DpMA+,CB& c4kȚCP9یYEol}K3pƧ敗F-Qǀ cmu2XCA[3=i{ WJ"dIe@>w٘Kf.Rugjp q(k&<0|_:far`>ӆ nHw62h<(⼪gcu\gu_5%obgo :MvzUmw'ipNC"uDF|cTxg,2O2#t;6 4?l:Ih /~@KdW E|Z6.aC>uQ6w ftW^4I^)Vȩai e=Fi۴_)do:[:E±ǻ&qpc`-(vӎPL%d*Ѳ SuO[&FRUiªէfs\ ±Њ\8gBcx*˺,;kyW@w 7 .YvC ҹMcV1cGo)𣏕=r; fhH8!@1T`.y}͐9QhЍ{t%;liL|LS (W(-{~bz͛cVAr\n' `AoN")iHpfpI $nW~wPHT{#IL6-C m1.uaA^(eU+Pr6ILA:R{Z0T@LsIW㟂o[1lzQ}Aھ;~C͔o((5l@s|ЂЈ( !oIɌʦF͔C$q0%^W$^,9 T]<0ߋ" 9YCl5|lO`O9){F$IQٖ_oh0S񄠸}ۓ 5L0 xMa(6 kPX%X^$^^9K{8w} ] !f"~+0fHJ5 ݽ׆ \p ff>Vny~_tOgī`$^FFj$1lS@oWXylj|,૙M&aPWqp:*1WcH\A]V-FeSک̷v%d*.AG%)ô,^t-UK57=z5d.Ɉh٣`<\ ~I>|nY q&fo%Bpw~֙,ZQLRDGY&k6Օæ^j՚C*#Uofs| })9_܌}X "肆ItzQAr xhC0T.O(r摐9,Wkdk:`ဪJZ$M ` +aȨAYw5\z0^v1" dw6V%SEMn2̨ίYOVᓄcy="iT,lPI`}\[۽oa\:(łROjeS7/@F 쒣A'_:RH{r73+6w$Nz֌\z 8'_qGC*\@s1[JMy _w7 ]mޑ#aԓQ U 8y+f1u/c+hֹm/C5(0q vnD5d`dY|<٥a/ Uq}񕦰;f㝇ەt[ #AO[Ҳcv!ED@׏n^Amp$O9>TaP(HiSAs.5$]3QK@m7!? ѩfEǜ뫲AG*4Kt)6SW2uI滳P{&;1f(D*(LPub=IISǺ~ջa&f[E젓"CHRvB ]7뫋Y+v1B|(Զmr?2 p ,1Z@I#XXDVM 0^/m+S8j@A7'7}A#sruxBp[SigLS eʛ^s:/%Zj l Jb} ?g@ TM^ AFv|EV@$on]p9>[PR.~6żVcDT[N¡Z\'5º?YqSa.eRAG (ԶQv9۸W .MfޓE,@ i3?LY{Xoy&g]Xg1x֫jV_*}ioG>Rk` P65)yۊ*Z \\qa yFм\%D7`Z<Ņ1mIjL\8e$6JY7K@}A>{ף-+CAUea0c0H @[uʺY15@=#pZ#[\Oq{ Y:e$a9~ PD#lN A ҝh%M5z1=CUQS:$ct~1竖ݦǟFt>}Zw6k|bCHPv FD^Nx]ЬNjLGߋź/wSS[*HΨ止I g25v*WjˍpjE»)en1ף&(`yyvׅ2R@>U]ROt- nࠦTnψ&w"F%69K<h#i2'\$W}olGՍWV 79 `顀z1Jj.*gư0Sak{ p'(8h b!f>/-!"17&( &&x@ dN`eBP"]42"X8:+] L^X9H> v9~t&RA*#!s{ E,U~NXʎ-m~B9cwgLղCzKKs-^v՞YldVh;yyiة# .%V9dlM #o)Z%P]`C` }Nή$ح1UQ,Q8!i Z2lHcF 0nR~PN+֗usw̆<뚒xaS3 cOeP3dSM8sTY^+ql?%!J&'YglQqz,.Cy-y^֠}GQ=n$f)|rgydfEKqϢ9v6](NiH[qב>W 8/0{W[翤MQZPZ -8&"/l:WQ3 l J`\iK>3[X)vln]wBҒ:kMo~*O*8Ud۴Y>g9֝c;=#d}JTxIѼگ%e)WCTf7,"EDGNxУy"Ӌ)eݲ}IR߄DU*h0e6{ےw6oBE|RW#N;n4DQAZWٌ(G\uUul93tri8[TCdBc4|cِ ݛ:4sv9 Aq7S4ƹ;F-?]" f`򧹺 qqb.1"ϱen$LE1XO6>&u]URXz^@:APMDUL{QLnQ;^~qs[~ƻbjH&Ɂmqkʙ3VئA+E *6|yWthP]U>Ýh"=cUFD}Uˆt$`Q.$)Sjj)K|BP`fG%&8冘7`<ۜg&mҖꀛAl2w7=`Ayl$IBeMhvNJK/ UOCa d"9BD|wgdH$*9=W{$3QwU)';;qfv ֎ yؓ|n؞yqe^ KAk17Q?e{tq_qov i5@ Ea<5TDk80 )^HLtV'%c QWW!n~-W>ȰH:PK1~qph7z,gecPebr?PeiaM6463R>dԽC0bOGIη[݆D<#icLx t[Ł" \\u1=N@@WUwꗉUVz U fO-i|q<=W&#;KThhՏW ;2;aO5|<Y]PM*U*QE 'n4rsXxOVŇ޵dpb\X=ߪLK;1Y\ۘ~$KZJ[ON`ݝ0yp"l1&d@ 1Eslg3_ke5~g|f'Uœ~ y5 B̸xE}wOotup;V<6厳➰k E|~F L&a σ0_!w ld`|0k]䎟"StLb> i/Vh7U  P6]{z<5s(t/6@-x3lK{TChl !k&4ycs~ O(3MX;B, Ɏk & 5:Kn.똸17xRŧoͤw잉0=bwqѻͭqu` E1&>1|睻"b\ez[R%bР"qS_CHF<W{H!`O,};L?Ȫα2lz f x2@<-!\(S"H G%GUU $BrP0Bnm1iiA <@ Nլͤ6`tO%ǢR {mV^tFϪnk<=T1l8km b&`-I P;XN788M]`7u~6o?IbmI,wZbrl<9z\=#Eq%cb'GaԹ_CگhɆπaokF>^z$dxpL?f$hq Y(ń-ػJ39[kY&QیZ1ߕ9U#F ^.A;(gqCnL'6QA`.kC_?5 'wGyȼrNy2<7ǷY(X/5'I X0 ]"z i yI'ZIE WiS|£*: cK'*r!>rz "8p j.h<ɮ)QЧckk= FyLp]GP)Oh!8qY.؈'Vb>@#l"'<w:zBjGFc~lk2um-_:KX P *"ɕ@EFznAYQ|akÝ3X-YvilU^O/L3ʳ~z?O!OLQ Sq.uht6Y`q~2K0IŒY'vZx>qE`+3Op/{ɖ:3MG֯# x<`(I-ԅb~\_zG e|:R'Ie"ث\Bg%#d&^w$&QlDyP4pНD|[j3һ[P!4uy^[?jMRLí@ZUo F`y>h:+6ef5磚ZIj LgJCI8R\_~nx+,P %^ " {nX`{鎅?n: (Bf6jO/l.+,5usM[/2;{m["#eKI@i|<(OswjQ[b 7#mT/ Xfs 9o FJ@t1~ʻ`h ?W+;×K\0*mzYi#O3?MDZ)jN,_b~D~nԼ_pC&pȯk P̯^DĢx+󩘇nnI\A]뛻^bc||622j԰ $#K36jX%tC劊g5piI{?gW8MnI]F>sK٦<}IaSS͢?4 +Bn@Xޫ4%t \_ŋgnY!$GwRm!!ilt,ʊk[oǾ?4`9ؔA=}ZGZzdnANf( {GuWFLeٞyַmD7[z_NCoi#3ۣ\n^E(#] jpfC3׵:VNl҄ɀkV`)u0j-k+=NΆG0:yU v]a]tiɳ0z)yM}|{>I4|1Dtbv>͟j"5H.cҚxP?\Eb!|}uAtWIyr\,EJ1djBIJUڪLg}QUZncsqGbxUP/b#ہ1GWtδܢ{< 0/ArCZ{!^ >_5ǻ:K]QlK+j?(n ,Dh@7aaQHJ3;+ (?W- aJC䒕ʼn8 I5P.1Itc5tK qT@0QPFxC$ҿ|dġd'E%컨ceX{ECH'#?hsdo^ъ̵(BcXHNQpHm^'VX)l|4HxW+#LST 2'[̚ڀvqx{N*<[kں~l ?[kJ07@~Tk,GLҼ N"5E8 c2Lt5 {Kjָ8u~s.ggcn`F(Aߓ48_6z \'6UV|.Kq7x&93C.CӁ]X3:ޑgj% (mAAH`qS^,n.QX,$,+\#&1ZڴNkOG ?(.)y4[؋&*O#c5ӛe;$!3ZT>( X3LpKVCGH3 Hu xYB Ӭ;:r8UeW n`=*:1͔f  c-ejB sBvn"*ɿ-RĥPwC5I9uVC[έE2;< ]b )A_y*OR" )YUzTKZs}~j#U*n[@$B191@P SAqvx]u12AW4 $Ĥ8\ wJK*04&,Gy 1$U ~n,ivb*SX_Zt1ב$FBKV8#G09Xu2~HHzj?|TY׫m4oAٺ^91^N硇^4-\hutq,? &;?;NvAGDHCI{x4F~7d ُ'G}1,/ϿQUM) ]9+:z|j޽_RT S ftˬ/"\59vvO~ip`KQiJd^3N4>ٞ "jg>PC@$&$&÷w!' ?N6 )mmb`#&wpM[~edSK],:?0PzG:U?oB+chr3 WR) JՁK QҪ<6|hd)ԨW>!Mm2_bS=原Va373ZɵgӯF-/:s; uQ*=+ݻ!7]0ơO+eo6 DB:Y6i T"/nk:SnXU!5?hQ02.:NZwCfJ!`iz8 ⢂zߘp0`HHJ&n р9=|u[e>nl$4JyFMeHsqTJ՟ kV  vs.4mszq6m_0?|M`SJ:_di6CDz `}'0^";قQ?z>w2vi Be7D,<ŵFr \c/fy8,ڡ$b>mXok9ȋð~bqOO)3ˤK30aItF[lJ@ X5ߕGP6eqx闫K@G{MOzٲu8F@)D[E( α1a@@DM묍S,g#I~"Y'q`bE33 >CZb"c?m^rD׏xKGW2-*ϦBowN|xBMy{JúL)+)ju  z܂`^ Hm>r^\-9ظj:Xu#̶8vI 9G$ gXXChXQ%rxs 4ԭA)y7]:jj.o^q;O,T/s%Դ%O`Oퟒy eŹ5[Tt湤M.D9wi,k1C o+˫*?p] +hTru>f/"Sc,6w|3~6/ʬ[^R~HL v !};QYKN[yjXlx\KxbNOp>TWIs:!.u-5w"m W2K~a!pNR8|Zߔh?*/C'5̮Ljjka+v7/Pl/127ÝFgl>AѭZ[q=CR 5B͉=HqGyhS;>##*rrtC0ٟ,X{[Fe|C%wc^lqM\(oɊݍ}JAB4煽@ˀn_p2[WkVp\5)M aO hWpEռV!cڟ!#7 X$^ p1: #ؾ1l`IA.iN?A2cl2Np2 )i)ޞ2Ѱ9#YLH $B/]DkI˕!!i/Q| |?'+aVlt3~/P"{]exw-(<{ (0>^[].s+Pcz\d[LPk] =11 "u3 $ŠV*neи%!QK[Ļ^Y-N)Ot.R`=7|#DC zEPP4..k][#0kx*^KctoIjS/?/ '*> } ǃz< 9^\yF$dG|f2fzaN,$z?8{y6P<4 y8dzIۛG@zXp$]kI*"SJ" . R:SSkjAM+u? K8 DZz>m{\P~ xrX~3ߪ"/TX]d%N>N/B,$JX} }E8칅GZ _B)Tw˜̵׮V ĄUJ'P*cBWt<'o u7BVA"9>B4}WsJuIF_s|*gߞݐx9vdAn6ca?4Al XJ,P;;nvՐ&f/aB-򕉽P(*ISϥx/!lghf5Qi΀u4xsyZV0(_zqcY>/*WU"-!8GS#rZE$ՎA Xt +m<$Š KnνC.i}FM]ל?%(Y K8Fi5ͽVgr~Oa}9!,FZPf2U:/e׎"rgh󥳵>O"[5pЫ*|P>sXwm]@AkF' Y迲착-ap-JjgW̝Bf\B4FxbgLyJ\Â%PթIA:NPk'c ǖ2M$=k=;*g5 `!h"yjĤe٨$h`~`u;HVԼե !RJ1v?SwrN>^w[ZC%;1P~>١9U+Z'5Ez.:bW7@ /q4<ǁZN?CN̋@#Y8P%,W w`t1J qvA!$X5gP)q6}[I[ X<n0fH6T\|VK-{P'}&u"tӣomFX= @lMl vnr2=3ܝ=ԫ砾w/Q*-Ă3QykpBTiZP58i;;z|, iڊWFF/l{Gj/:ȣ k(Wc,%Z805YF}~aQ7ho1lp*Ik|ؽj=QH ~qzE{`\jy@橑 Q,̗E +t(YAXd #ю} ݶܨ^ѥSj}q//еCK&yBFGiW\8=E}-eRPr‰4f<-q7Pi^AMҚ=TzQ lU'0҆KSVn7U8U#UT`fB ; Ʋ 0_>tĈ r /*U 'i2/@mHPjp"eWbۈ }*̢zKo&KyT,B'q[ٟ vQ-˰ ɖ'wӣg jF[{ظxp[{۰ZY_#ƀvBYqNz]zL4#/f6$yz{e5Gdc_Gjck %6ʮ}f [jl3?O>uR41۳n3 wsX3] /-?ŐfB8!kCD}e䚦W P [H\ A,Oż4%@E%7iXD}88? F SdWYj2nd#S."]dM,N%fˀB@I$ kO~O]xy xiވ%gG}zd>S5* ¶Tft:P0%T9KH6m\kl,M8p 8˵\֦ Eb㲔NAn)y 4Pl(5SW6FOX iŸB˝"0MtN,6ثFzj9lF@Nm=Tx=xClYA_o-& Sx8 DuCD nu6Q*agpm4 6?/1pwxT.@葼d_#mZc"e Հ sqe\Li]r97fhcK_{3ҥ]Ё}47Ց Y "Obq]_o5Fu$($ .!DTB%%mz 8UWr;x(/:j6uYZN`PR.h2(Ldod+rQPu6 )գ`L.9ߠq<*"U y\8UST%ȆT/Fs|ArRES9,doAbi$(& Os8>& O͋k4Bc{ln.b)xǾsm$!X jzv cʠR\GNN=I(pE*1>V̈́`% tφU{ 32WE#C0=3w6G6cބE44y23J_׵A}{<bfBq!S Tj^S]iWǐ.Ie(Rʨ]OeUX*B+u&UMB+ 0@9GC#b~4fikWK9s(*#pv>nzA Yxٔ bwDHXL%b/â/MX8ìYb*+IuU髝<1lA`gļ9PRP76! ϧ66eĔF1/~Iޜ[OɓÂ҈x #zLGbqvB4FFi16R v}7!jŬ XhDξv0Nף"@\!㲢eME| F S]$5%7ӕ\I³)z]bo!S"!WA;ǑWY_w+?^0Oo$*zʄDG9ҵ_9װ6IJk,߫w%IF`=21ZS,?HlثF ARP̖L  Pudrgx-uA/%Ą]OtVZHA o!轐}h̾MNͶ^ScD)ਜ=y*HYfD('~o=&̌b2S}7G{$l|TeVHU &Ϟ5C1{)VpzG{-ی&ƂX&F&Oϲ0S5,=CFN'oZhnTت6Hz( H E8{yEd394K2UO@Dkan?o@lbۨjeqjz/U$OOs~kk2D_J2#k;1X8[t!aVgaVm8ʁ[لs|h}Eγw2DE k2SM@db5EYͮ8ӴI|1ӿTb)Ml lSA@qƭEdyUIIe跍J> \4BֶJ Ƕ̌_(Y?e3&;Sj?*nSX,)g |'6rFLCZ~mBP`߮^.WaA9 TZ>%W{ҾC[)b. -з/ }v]a]~[ZgZf7Z:Ny44KÁ|B{on?,惥H+@;sŔ; Yx@W2RA-)RɽF|"WT]:QJ8\mZڞ)xu%k&d(&lĆk.s4QiCK.%1_Fz\gouhB!VuG*P#jWP7lOU;"H_A=yB0Rg`Zv&!oZ|塞G.\ im$)Uk>qy2+#OW.0-\ \WDS^Ph JLY] Sz81+B/ HG46Qh2ǾD+rN$nk- S ~-#NWIɎ?C~iS# k.evs06Pw͌ A!h9|QB\yR.ReQ'` R析ܷ1C"<K:v@Kne_>h$Jy-e0]TL3E3ePINwʷ7]U֢H`'1:-O!^Z0_6S!u G4^GXe}V \sYU>7l ЄAӫiCuçF9#&-@l݇ Im~dU5>(7:B=-7 hcN>#[ǁ/S:Ghwݸ\k-ׁ̎[+W91AͧT|TE4o\T`cilˤ~'$BpV+J$m%xu/qr03 W03xḒŌYқ%={$aqS"rP=V"t }&lԑpL_,9:J{Yte O.)V/[]aI8f$u w@>*zc]I9].~,DB[PKv~k2+5Gy/8{? m&-=L|f n: ws:rRQ,oj:XɏP_$I*8g -kO{oO_T/̸\)y¨|nX<}V 7%ghzQk waAT~Q"N+e~q vn#y7:S6if rU u%vfRѹ:jD__X~2QB %zLm@:4n 2S6!𺗂m8DttU=_v\ Na=2HKE~vK[9"DLeJ^o۾Q|ԌI[l;< HaFp&o6h'BPg|Qֵ E_@̎=Ycs.*Y'*Y%/!?(APKqb"q&sY>v~{'A_sĈhͲm8Wh"v@/+؀.WbWw+A1`$v}ٝơ3ŵ,uj8P2LؐB`-<20Ly:UT /wrƜΗ) zx}[4d$vvY{Ł4L=$zFSnǥb&h4wOU#5D!3fPUQm/Q ?4rh> Lso-ɪ\nc0ᲤÄETXЧI}aƭD([UX^.6:W^Gõ0{(] `hk7T`5G`,m]H)TL+ebʼw*#|9ψ!o2t2Scai̕]jn۶24D̄鈪 Am< ċc -.8'|U+5'6~BS O ~*ƌB)iqX JyvaT@zLJwqXU s~WCF)W̢V]=%%-n1|ZV9"ȹhpY̍yCZ]$0YAN-ԭ%ͽa/8:؎c:wP"$n? kǖKm\X8UnO*|íAiH˛qR)rJJˍ*cn5~^رV"kejJW5P#\JUʣ'W,F 6˞N֤ +7GzԎ:GmSTRFx315g <1m.mRp"?pʂ. }OIE`,:l{Kf.]G5&rM7` TjU▮L">G/9ܥ*Xs l՛z,MU.Z3p2K*нYǪm<2ajd3уzHWx.vKA~+Qf'!e'<+5ZնGb)Xao=]8JK ^J5Om4"|M3rqp)v.%ɭPfTx#Ί\bb/ǟ >_˺ ~!"p8Lv(?r6دbpO-oOD@9<4%j\0j+[# Yml);פ-s_ǏQWx)\% [4 WM UV}Lg 0MY0i7S>r%;ߧB,g(̓Zi؇%JS81(;4f9jxl V6)]Ls:T V)}:҂|J6{? ?}1ҟg*%e9_ 4?) SdEgͼ6[S=ĞZi4 ET㯏kVb&Kc&Y"_F~Wswo.Jmg( vN;t+&v-ٵޱ\)InXŢՓv{-  ڏMR A>hEᛥ.o^CxZ!fԏQ &WtdUvl2 Z6S8ijn ztCԻ_t&ECztE;.' B1&x%,ro&ސFR_! @qa0lsפv> v_xف f2H-frf;ֽ<I`]CeO婋~΄ȦƄD#q3ִ17:}dYƎYJ$А+ȌglgqYkGf4Lclq()iq2ƅ|a sIQ+??X@^ g{2`ruv՟fM ʇҭyzr Y0"?ͦQ>>&3&+1QYX8v&,% =J G?ݫeHD[d篕@,1hOTW]5^vD+PTѦYwXI,C OfB| dDc%~q忏-F6b#e~Zv꽆 Q2U=FYK*$%ISzV ˇ5): RpZ#NwfM=^vtQ~{\ϻqt=KCܥ+-2m,!t[`P +u2rL* Bl9Gk+C0#åUqޔv$l׸jt%ey9HT%KS&Ңi9達=wPth/d$Yló5J+w)<\hkQn@HЭ~2=W"#.e|C?őw> nvPR2`PITύ8.CXpx}2z#0aW5d0^Y@9 wqpA z M IqRKOm ;^P7Zĝ_o!&CjwI=ӝܖ7vL ,]愍BN)/x\Wu+U:%L^ꗆCJ&H)lTid8ZP -2W [_=Ygz{sp-_~ 㗢#@7@jCD$#/, 3}XFǓWf"F0yԔbm'B CcbCvfyI8}6]Ԅ+]B%SΏ֒[YkI% #9G6"-7zi+RQ˗VHRi{ 36srH&jpBH:{NƒKmÿ ZXc=u\s~H{JDCxH-.yrXNArZ/! 0j@;3aL %fCfT>`p`n*,0 9-`ꉑ(} ˂OOQuqjFpލ%1IrLhf E4zfE@<ߔx>GnDqHNi+B:4hKvZY5 uՉOD2+^ 5; Ř\&AڥR=gNհ1jB8D$2aME3N80<,4!rUy"K, 7Q9L9P'2+TfDJ(֐K]B}8hy8Л_[0)@Px(S+gElg/ Nwz+ET8'@!D+7QPbAycހ2oF5l* O$u@G<<$Ѣ/pa$nk[Y.QaPe&|r7W¹g$ZK8 C4!kK&B0^>eDjzRM)M>ʆɐra(wOBˇ<珊4ƜL1IL‘%({VhZ5| tVOBs3Wg+թ쯼-^ (`ֲ2w6meTAWnBMSH-k;,EBoiNB$,7+D< aYBa^bL[Y9} mw<|so-Ce ^Q˙HBB~@5T Uf֘/ҼDJ,`^8Tv87CF6J[ز]T+ x#seŰS;qb;QpeuHDms1B&uloOPr8ɳ~_p1*B\VzPrm )%?P aLIp>n}? rE#F} +Y|sTΤ @t̔ɨ5F($ Mv;g &v"N$iG ~:ǭx)?~Aj-K#ȍFH犿}pAO_TQƨ:Qzj`0b]s-Li6R,NtϼI=M#PKeBIp,]%k$[W ucR+u???9wđ T +e9R%UՌOúU[yTc;1ɥ uW) 'j#ܖ$ 6Yhq%`G,֓@@:$c\iEE9 9rVGrFޑ72M]Z ~ 4z#pMDQw!&BpgE}y#pH@ n=YT&͐=~@qXC-=V3d_ mt,C!qvlRu+o}G]Cb,E_"| Gz| ZڄsϦ .ěѦߨX,{K-yK| ކA =*#DYD%T6k {m0l>l{P|)ÊQS-CFY" #fmqJ*&PiО`ZDj}Yh~$$N;`s $zQ'rtOb7Z6*lk%Vp3 w$!!m趔 m;4p=#G+|_gRttG$$S@3Yp@.tYaݾOr4L@[r}yF#Ss>Tɯo'Et\|Ki* ڙ hPm^WBV+Lb(VD?6YTfew LɎ_PzJ8&&`C.u}W}^T@*ͅp 49Vxxnł7+%+=G:h{lpiBϫ!v&dTyIX*Za.oI-w؆ GSE$¶cb20Ah~/t򟴼Ε?(`VkWc'@/b7qR+v^KF m 1<# fBsopr(M k`HK2WVÛX7KB_/Q)SEїMT̗ 5>.+M}dca6' ZQi턉t(Lx`*)Zisj]Whjߕcj;!z@ ɭՁ"3˹%`'qؐj:HĺK'qp6Zh2C|\To|R׌! ,"~1iWFipL$AC8AE1'wWyMmomVlmOQ6->tq1 *{6ψ@p'j_iQ-rc+;#៧J>7㍙+>UMJJrU+JAFZ(Od!A~.eqe'-# qA:䶜7Lo] Q}L[ 8toBmjMu)~9>pZ,6BfoBƄ]i%u"[:N)P5@q'Əˋ)Mwkg+GjWMmߕIDHD9:(X+p`|k_ʦ;&d%Fְ}I%m <24;TawST_[ f˰Us(X"|Sij,^p눞CAڊƲZկe_B1xҝ[ITf5 ޓ&I~J3'ϘJ=u[00oڈBo"LvWLmaIeM3 E׈ ~aXآ,gdbXM /zUm7ߒf)< V*#He %heRƧC2BM)AKѧ^ʢO{#6䕴E0<xM\$imm;љڲC ŜeU?Oq h7^GDU O6AgVg aC O\I#oD :ZmgQ~ȐZ)? -I#Yk%ft/+O71RQ%E%I}y.:V`om \qFIinﵨ%dH7-*ZOik{Fo5\N\%ņ8etNFJ4Ut˦qƩ:ͬTz6ciAwL5hxHR&Dv\`b.0QXEK}˂'T ?'FqнN6LBצ!.Yjj{A?CIP;B8]MC5 = =µ+4q*`\Θ$Q².H"=*v.lk.b (zud0 ߲n&uqKKA l’fzx۩|wcer3OGDmKR/ˎᙉ m?Vzf-xͪ`\sXqVA$8!nrSe=Um?? ؅jVq-Wp̨v2)MƭGQ^kɱs,VAkp>Z_,#? a4B%KfY(6hSkh[vUqK..J3rtW,#lX? VދQR{@y(˶cfco&y ì|(<$n_[Pq/1 rɶPU R&!tOPح)UŽIJFНk Y!PiHHʻ)b'კOM4=|s_0nՒ@JFXAl1juC=I4T=0j>AUln"E6Myl61|~T|>y sṚ`C4)ܛsœsÑ*l=+?9S嶵t]u~r<7Fk .'wdO/&Z㘡e? XA;{%VjkD\a8}Pi^ˠ*bZɝb@$*x$>|^tGt:/sI XWQtzrBEڣ!k.`[L*~QY)U-'`އh xNxY2TfjCĄ nEPU)͈Zyl`0Fnprl9FŵR剟"Q$ dXipx73MSw6g#oYn-{8Lو'&}x_l$`Ӿ`g 7YπWuoZd%X[jAl]gqD R"*jY<M!3N32t\9S‹5tZ]KfW=}ul1"AMT&ͳs淥-Q֝]!RZzGBgr#uSi8q xQj92xr_0n+w% ^`jp׉4_%]lqIvsZQF=xg=d{2jJbB X 9&kEj~),MZipIxdٛt؋((W뒽K26bJ&6sш9H5-!TN|eEE+|GHi8]|L6T b~tO6@ jڌY:Y",EũS)A(aUSr_ ' L[F˪nWFaPkԂfGA؜][Gn'1ՙAˉS9 =0UlAGN-u&k' a a7ȿ>Ea*5pǬB#)aPG-."gH]Wԉe3_DĆ[#7_ϹCaǔYUi9H_*Փ/)/71F_>O?"@.×oy{m`YHt{[6`~ F,{|'ܩa%/A7RIì@iWeA“bmB+bԙ8ɺ09?bM5Cl_iQ}@lC+me@.UffE0-^/XIsS.(ݭ@(gGvX_[2NNܷk ɭư4 bYƣgVLڠzF[BL"C@`Xv]3?%f US#N{X.ߙ]9Ti@ ;F} H:\5Y"5$-bH}TK$cވ_M$xIU42(ć,` N <ђxXCF{ݝL)~C*)W*:lb=$:Uxxy2^_\%V'fнc,b}T2Gy7<@PK"@MnV#r RjHiJ2[1jY~ ` 73{UX9Zb*K,:ӧ<˜-{]ɮݐ^iJa j?"ؕ1kcH2=8ъ 񰾯}&Wt;Ts.Z@(PG0CN_")]wj1B!E\ҔNmp=A*V8Vu1]SĕT-갰<}X!WSQBTKWjTnKZT#8RD]5!mr`UGoVmЏ$yCzBMyx IUοW.,"c{sSvB~[4MϢ~aPةOX41n~NjzFISUէ;N/ Z B|9kKV\&+: Ә Ob(]hIN_Zҵ`<R;S 4o!9ȇJaus[; gVd!rHWj8B G4GK[bjs1./~Gx2PrZ& L\# ]QFRDȔ[Y D:D;X\C)0ҹk;ßfu| 9 E(_ D3ˡ9|f W:w{kE5e[MͰ=ܐfČLJ""TQ5M窘3LzmxJRcȿeA%ag,}pKݥ=8o<%WjN, lu@r Q+)!wIkg/ ?_" IJH2?,C4J@̯=ͭf N(9aYԨ1nO[9En%m Ta<+3rI9A:im߈Y$"j?AĢץQع{ -$؉ܓUGU#qEvSRۂ,3訵#iBI}>}%쩠RQ%gųCp_j)"Z3SQI"IR-"O'c3W7"#xs9` f}\Hb!I/7ggxM&'wDS=0aV3+o BM3b%ɦWsEpR.TߴzrZ, UE^/ tcySm~ a{o5[HYZ S^sYy3 k/ޑ3yҕM}4*Kl,̠9-]yq@])5z2Z7?Gz{8]huCrE1+1hԒљN} ~䜠|`OF,T>TO^eeu#LAyi<6؁=0N-uHv)S $q#k"h,"2[/ GRjXV,QB7OB.YYG3 TX./7VɼQtqBlTŔ0,Ӝ_}f ^>abd8B5B<@2Г"8#ͳmQQ!0`kt/\idMK>ݲgbΒobc~[/[tMQn2$>?a:ר''P9A&! h iZ8 lXF^\NViX.F W VAJD>[du{^V\(bS }-xC+WQC&7ˠLwT+bMg1k; $e v'i$RĢK5k19|-r;@qÖ /tap@2xpFZӆtz 'vfke~×ԇh&LS1@~P::„hpX\GIHNˊAj?3DW d;$@ӪЫP}WyݓkEfyRG>E=p Uyem5^ ){`C;%6W:}/{>B#/R%k;E_x.ga&)"@X4TBaV}[vF^^A/!<])TwN]D X뾍w[9a }-F^o}z6=3b-#/vWG T,h ]l>z䄰KUli֬TZ ҶpOiŵ YQIqd9 u‘gO1#8~4sW05z*uvd_J[*axm{oB|wpc.τf>(iH!;H9$=Xow N{/2)!Y 0\_ 7站H°)WtDƘ,KHD@ #{cԢIUsgCD,azܯO;zRM J;60F5S( ] ftztha 4e'wh]$|Bȩ2%ɼX7_]"K#6-# >אַtfTFld/!bQV 3 -6U4FXl8n>z7i\v8&Q!_\%3)q@p ነro< )՟t@SX头ƱiXoŤ2ySN5T΍ŧl3A3u5>~7DW#='ޗmwt~("D(tvaCqN ēkũ oP $gȏ \ [4Acv[s|ùIrCuj0s0@*ǰT2>J_q]~ɴ&m)yaERȻ%\5 ķSKɤ+AqזǼuaR|&sCgU510_>YMxQS:v^\ӅgpoPwkX| @ F%92(κ`>s$7gzXq{ j"}*=[(NВe! ( e)X/]̫; 'Q:Y^ t)TIjbW@ݏ(E!rm82'$#DٍPB0m`>2i=**^>ܑ]5etc~L+҆8Bre+A؀psvN0ZJŽ/z7b[Z?]LtU 8խQ%yôDAflIs~]V=  icb9/]~DU]58\W)Uٷ=t$J@%=!6JUMqnJxʵm6)!V>cURq^N` )ư68]8?c*.Pk>rt^rh߬f!Tw|[Xj<%f3+eCSOa8(ڄkpVz9@!8F*{!7/)&ftSrN(.!3; KҜINb6WyLA $w.xCt𽞓ߝ65K>')i39h ˗]{ >Z"Kt:z&%ĿB%8)ra}tA!^9O?t}SU#C!UkL:/I)-54Q7)^ʎu?b$BvrL@A@*20&zst0s-!T L"$`3d$0픪˫GS&UV)ԇ ..lHXM#]21 5'EXutJi6_IA{SHn׻X캨{\d~_wyv6{^& ;\d:xiS12Z}mPgT5hب!PeD/;~ ,,'/E`*l\ tb;0. ~%pcR!]<$yBm*X, /_b rynܙBJRr -XoAd_V?qPecwv`*}Ն#e`U(k,D#d|Is F{L}w}E(X ./T${ie3y;fwe#:ubx(^md3z2Uv;.&~ Ye|g ;vAR +PYJMO-DQaق =;8{9b>) Hf +ÏpW.ҝiŲú6>~KAz8X=1U\4 Lc~Aa5-h|ȥ1{[ef\x9Ob/ߞv_&gZq}@Dtp4feœӾōpK ./P^oFςnb4auΠ<'u{G՟t>ߛ6#I9;21EU=k!!>~p/M@R9 mYH)/yF?NKr⦨~OMLnD?02<Eu ;ꀷ&-K g_Ф|Y䔃L2H,c! ntSCBq1F?$ \!D75 Cr\lH^~Z]f,+W4skR${*׳R_jKk Bδ<”6|S!z&UĪ:2h6ugfmo؅;VSB>P6pQogsC&ZN%D+$>Ήgȑ0\ A r|#&Vc;nFWjyto &h?}Ŭ5Hd$?^|'5CPHve_T!;Kڢ4xfY E f z {ÞB ^{V^ ^g{%#ʤwE$P3Bym ޚ&e`fs+r! 0 fr*S&+o)Q nZQiLg*JJ **9uFA{əY\9)N z^I\;k8JE_@+;7 *Zdw6L8AEz=Lj֛cv9F.,u:B"͒ڋp+6P G<%6d yW=aysuI皲Mb昔c96- \ra=T8+U<DP㥺 Ӥv5Ʒ>^Լ&v <TPIdxUL&IT2HM#:/^<xwd-j[?Tkb{rhZӄƌil?U= $z%|K|zH{54|Ϩ@^{7X[ĝ(^ߗtn3f4QǓ 2r D vSt}]z! E^xusلhO h v,~Ѕw=f@y~-Mzo1P6),d3}H%]G;@Q6Dn?LdBt4!p̪R>4Nap%Ң2p98}}FTȜQe^픆Uߦ& PQmwWܟNLcmG#Cܣ 87yD{Je>B - n 8Bt+[LAbd.嶳kCD9B.iN>2PrZ`JDZ7T㦢LIXP^^u^4@4( k/j0dgD 5oL>Rfn@^ dEwN2l#W{^̇>}R/ d =xk e[Iͧ9d+5w|ˑ;#Oz?EuV@P,WL6JDt鬧WsxtnT?JS[Ri Q{#6O5] e4Y o=FS^^V+K.?lAhڛi1"|tNeVPS7s:/oHU7; >r2O8 Wd1 BC<@!a9ZYtRZ8m[eЇȈ.Vg3ܖxϕ;)\qʷGx$9*KdN=] \Dp=eF+0락lzxY^(.?cddv0pWB"xbD+6@TcU7=8;nx0m+1I>;8JX[@ FJkS>]~1yW\xIMy|C|y'9 K X3 oXm"<^38V~p-Zo @=ݿMYG~y>ͷ1["ȷWRzpU'&M - RRm:rQMicÏG>Tk|WseEI@,6nS&; pKV>hAt4A[+S H{ RU0}y*V+ta'ljp8^Ѭ:oj܉O ʄ_,#&֩^ٸ:[tϣi6$H7IL&y̓!UTj!%'A@:S'[n|viS^6Tq^EED8>uWNkQy R-(1oХnCMϲ6d".s@@g K=%dl˿?ւε͛|)j^F6am}9^>K&{ Me6$Kp@羪I't\`=KҪ1:.>x̆{Tm!Va^N!9 R's2eۉ4 ӗzwmٌ+ɰ"'8n%Q5AI}Q{(Gj$HMngꋻ6fIe[V6݄t~G aH!eQq!qb!̠z QiؾݥFfDA BA,ZYY$\:/,jP q5SLGM4_:G ckDWοmv1xA!~g. HtY5Tsˌo+3ECƺ>W񮐒L=M$ H+Xy f``7Uh:޵8%8߬ XK)ƪe3ŀh9f<))3{t!k*TwgвH>g5\ C~exw=0xaN%!Py\݁V+^ ~Xp6F7N U8mAt'Q rΒd+뗓#v4!\zp8 [yAK|yvx5(P]րؼ{~"d>Qӝ`찡OcM=U8/ eXsJ)z㴤^@OFEzj5nR'D`Y'<ّIpcRePO 6& (JyLbvS/I, }πa0x V.v~OY%Qjc;~zFm-]]:z#_:)!!,*&M ̈́v5+W<ԭ*Ck'p;Yn761xK _@D3ˀЙof̧JN.TH?Qm!2)-Sh[,DD0#@DW0U\[ hM3{fR{D2g7ַ3 vW)Y=^aӍb:QT\nӘKǪ2eg(S8an Ldu G[v/FJ PZ-ԩpbnp'0K̓{oA}KW͋R.{NbCXL !G<@1iJ9XA3χ_ľˣ@強z,l9S4 DT]pP~VbMս,ü p&Gn`̼oeNg--JO ƈQ Hۣ6- \οx&f3m+)A֢ލ.&!Jrzɭ'9[:R77R"Xi:Q_7nqUE Wx)SrSnqTmQy.2ONOaU1e_FAGIu.UPϿ㨓(ۦ %>]a4)G T/{!||kE~0,6<ȑ1 rQ~G4I\GHK8<\ƕ&|)SG#^q'odiIdv;nrFSF -n딋ChYʚ͙rT9m !̳4u-fz>>!_W C)b)Hụ*l䀸+}#Z T:N9\H?o>'a̭85 ^xa*}4=^Tx>q]B{5s)$9skP͎@~ZS)MZqIU~X$D ؀-#Ab:jnkv{L[c}7b|r$7Xf}ƛ~yN/C\O1#ֈcVL 2g(?1]׉eT݌TB+塵OF_bw~X-h_:J̈́k n\SݩނE{.)gcrMm0 c.8E>rUYJrWԷu-\wz$t>{qQhR-v~a߳q.C9sf+ӝlv.@2hC@haSC ɶ*St2CWRbkɎ"̠Zv# rq0sP[PKY%K+ygB-ѣ&f-ln( V)MG9MXw0ޖ + l($3_ɶ+|+jVMp&2CN- ذ$(|5'{Q-7{Lm-&O8mTJ%q‚7=H@ P?}5%%OUH ScJQ[Ff7NޠLAV,-]ЃJ%z1Rsr};Uu)#q hsLCǃp>N:#`wʰa +}'%? noZg.8)&i97lUMʢ4&?9St!w]V{ .G. lW=]D鄜S{_/?:[%@ldnOk{6d渪 bZ8*2[viH/I">en>p%" ޚ5TPy 7 .6ĭ5x oqw{~ NŢx)HJ. /2'/ \܄E>%E[#Rp}blL2~RDaz{iJ/BFn.Afɬ0c\'ǩyb_At9}8ͤJԷ>۹` #v7^H yg -2 TY@~eU˫d rA*3%+_*16AaXyջp,@h?͑1Vg?&]|\8BN.I~izюLs zQ7ǑE= fɰu!ccTgKνf c? ~~Lq9#=I0޴">*\!xTꪀ9<ۘZ"w(!iN=k:bLQrded/uUG!!͹ eHQ/UQlq̈́|'a={C<&.+=Ѹ)(A殀c R$ 蚓3mm?|E&2 vҩMb#wiQ@$`SPq 'R]eY`qcZ[g_a>#rwE}S2+AYJGHti}x9)C˨%OMDg"XՋ5Gtd j]5 $-DlN{J{d")Z1PjY9-|EQGE6E~!ej<2 Cϔۧ<#E8ԫ/6"(ysli_H8˂t=-Mvȿ#~/$h?9'Z [zW+/Ie~x:i/DHݗh bȔ;Hs݂t eRvAW[09o&V`˔sˀl +fٲeb,ߣVI9yNDZ,D &59U]b$OnB uZ_ X#&Rg·z{+G ̿-AbKΆYֿMEz"Ϥdqj'ʖ(Ai8bU:j=a -VX]>O 9Ð`Dv,/S$ 춿7i}QcB*Jme^ˑ4FyN&qר><HkR]wr{>13):[HdY!O렞tkdžo[83kLi81 t1HPw(l@ jg]Q]C'Pڑ^ T4wPW|FDH؊w1 -0zd٫bpB7V'[-ftMBҘvQ}p&O+Tyi,& 5`«5pK&= +8W&dߋN(ȣe9]>dS:Yr6Bj4KllW,#4e͖^#ۏY=gAXL"μgaZ] Oq%-m 6UhC~c[tMfͳrAo_ I'06|JnDfo&Ͷ3RQJF)4a 3 ˳tSH]x@fꢐR=䒟G4` v\Ixm~{~墯f@:9K8񹱨,4P0_3nQ?[->'g 6/-:~^\1Q %)nHHҮv}zJ} 1i:m24aQnv>΀ӾX|#=F|sWE $8f&S60$Uum~v('q˙gך4$p:_:sl1o@R(;:%M5[oԓꤋdABjȟu} s:" ےDuu5,t&>Y "g;Ɖ)K$gj$B'"uAHr+f}PI7_C/ȉ  *?:dh iZ6dB6QfYcɶKṿ늟Pg\4BZJtE$iac~8^]M7Á#_,/ǤUoC7NFղЕl\PWSz^\[kW0so-X*f8y(WB_81(W=M#JϾ=EoI_Z3ՁVzY_~i8fI43=mMr=`̺u=L=꟟O*$PxKțW#'V }ad~$4v~Mܩn~MF~G#GEяЭL^KfV€CZ Cs!U9})/k^L +2_2$ d~4 ɨe&dᦉ( ۥnpjvn|`͵/5_b/UJ"=pd8ʁrwCC>pKj/v-5nP7#O?t=㽼%:ѓJ)ʈNUwN>]S\1V c k&gT3nwyŇV5=)Ez9{^T1{qr*WZ֙Dd]2;v F64J,ȋ$NUyT7:bq5~o6Zs ]Smxl&Z:I(qLA0b|s:Gf:ϰP3<,WzpDWԮzgʗV5'9/|KͭO% A!+j ¢BM[>P$I3eh%|.ԱrOTʀU.e!.u>%>uQ=3/?γ&7>u3@Xsq'fT; 'a u4q"eMy'WL'\``́F_D7y_-Wy4DR,ZPh'qC6h+%кtp$zgh/?nr-AGAl5Kf{ã~)ЧVBmNJ3y3[reD|_ѕ*RK'VPkQn\|؟?Je_m]=ˑ vC1]Ef+?Ңt́}ia@u9=} 4*̈́s0`lLS`X""D8* GޏA13"VNI{5,0I[aH>ziU(#\ h[ 62ncF:>G1s+C%@b)U{l"i쎵yb dE*%^QEyG&ˌ7H/!ss_pI.37сv̷vit>(s 2Wuc쑾JpѮWE4Îu ݌˚Ct2f17WI)P2XsI*\GnwH[/`̒:,<+'c~nxLRchJ >e =~~AqLx/%lTJvݘNQS z;(cxDgQ8I7}B̧jF\1Όs[}4{ Usq9$@c #RwWϫM5^> g'cmxMMC:zw|,Z [El|J~R%<#i=ܼ-Z1Q3=;E+_}8`kO7*`(K(5!K`%nq ۂu׿B:5_دl8/7*w"wI~XԮA!wj5Ѧ%GKwvC[GNN2֋RtUv$s/LQt"$,7B.x[F6,%Tj*- ݣ-Abe-Gsڪ:A|$֏~y[o[2[蚎ގOzL `,# ä`쌾Il {*$b<ƶ %sAMy"OE\}t"WWCydlvtܢ۴}@$Rv jKf\B&ȉS*qDJqyfL/c/[іCh]ʆdR/Yòƅ"#HAzwSj$ՀL@+Ba%ǐ_xt, dGQ`1>qC$&؎im6żA[PZ(29O1*+5( y`[`$3G_hT`ЧiQ9TZO¹.u -u}0=hu'|kQ ytOu'NkUƄ٪&؋{ݏ$KSdd}̓Cwqp"+Y7CRz+zHΙc+"2`Cv_Y9Z3X?do4Yq4 }V_j_;U@MB ̼!mx4ڛi QqE7|Ńzp\]v\gkQkx$%f;<2 (^3&F3aN;d&}\*#40 V/3GH&(Lt6@%Cnz-4ho`?rߪ-t儆?GrT8uJ3 G ),мS?{XCI9[M ==P՟:,<q e?3Gv뙻 x9oSj<VSXBmt7[Iq-BMArdF˓w{IM[ru+4d)GI (lEJ ڃ9v@ .1|CL Q5Ch,2#kk}D2- H q˄RqJmZ eF^m/r9W3Őz/Gb(o@5Cz'f׎!#y X{srCӪ'-@& .WӠ^JcW̤Z"AqUPL%hqr{^Ιf 6 ow65wg1s/?YSZX4K֝iiޥGUSWg5B`r17Z[b,*,Snf`Īo=A.!P:TI|3q/RO;n(=N%.Bjï h]zcܵer=ueؙXЕT(aį M}- vawĆ`ӏRKh /q)$:*`U(3O彈 kZ=k1|Z< UܹD~_%yLWO>(E!흶3,S G5߬˕VX.R] ~!w+.ν_Rp "ZN!z=X\bŹӛxeʖ:h!-(uL6JG3[]Q,H7'JJ("~H zpjUb{9L Γ (Pv݂C7E@$W db[{ h(7{JH:`c1ܳm+}"x'd8[03m ey30) lZA0-t>ۉѨ--*/JY 1s2F"4B(\,*ͧyH6(<ivIpw sQ˕'۶N@!Kams.1;23|M/8g FŢeP^h.qΖJ{nW5j/Xݸ1XuzMex W{V2$d;T0Э>TwД$v#!>iSg%|Uq">IMY\קPHf!+]0E|jA{i{j |~h[ 5Sdժ>NncԿUO?i !̃wp{#@ܨ]!u- R7mo꩘>MD) K.R~ȹ^5MgtyFz f<ޫRa&'Hgr|&%a`ݽ7'L 4hk'w$э%\ _6=le3{eJ>x;39D?|!xډGKmETR3/Z0 dɧr7v[թYa)wf}z_߃K]&L9Nm.*]0IMnhKy~E<.;bx%v9pKK={,fez 7{IKKP"9×f 6dC$&݇`$D/:(LP <iXI3^C[%@=GɟwxUUްny`x\$2(gd t8[-c9M"D|LGAA+%q13f["SbGI oZ?Pg} ~x350w!NAOkT̫\D^Lא挆N.;5A< |4Jl={~bDEW*cӄ}^pQ.IhypK'Cblr(mո9RXr6ŰM؏LLU|Y 40ufUF)刭7&kUA\zt4mTU X^;־GV2TӳB NYqL|0WMťxe!3~mB̻ TcrEMcj/F+!jUG`( # m)mܥft,c Vԏ{1)/{b6E)>q/F|(\A {qd&]> Jl9BPER{jlOM(u$?2GӘ=uw跡cS *! \Ҷ)~Rw%p-Sm\%l's/xH.n %КQCe8;ڦ`ʓZ2njб41']UgG?6Xd6!~ݽ+Z} R B ISRx+X1i,k5D<)Q mNU(BۘRl]u?[qo2[桂P pi fo)<.?DSmH~ۭqV(nYH̀<*R3N\WbڻRs$?LIM@ּLn2PT:YFdL}! !eE8S I>8{ה0WصG!}DżĕB@adrB)!$='@u)NcQ *#뉮 , 6zIEdޏ~8v;FQ"ٝ#ns)! # v]k wSCֹ r N gA5_A׏!U#@me>wӔYgfEOr yB^h90^Fm\'D`TN jmƕra#4SLkJ=[P ;`XDilmG芔n'#9rLkX}ԀO׉C;3:~,F)sk*)"*⪠cMh#P*v=5] G|i6C\$6F/-$>i6aQ).% GhJ+b==޽qt9rwg8S|>x-yj,BX&r.3V/Rb1E)gZ e@Dp(2)[ŽHM7>Ov|eRsS[,+F768Zx-rCB>H/'u+n% ԛ-xt cwWHII-}؅MAOl:4XT#4Ҥk_U Tx>ռ4؉qxkʷ|o u}a((>fm_4p_I(vʷsSF%񪰜~ؚI8~+eڶP~tlԷt/9:眵/͘d]ڣaNiknQNm lrh+ . ml 4%X5W)HjF:$H V٫zHu *DJZh\Qט' N6bZ#5-W /p D'RCL+ 3hׯ6_z?9bN"*Lgu˾ FR1wfԴQf^$p*>:-LWҗ\y@ 9)M' p! $5V OmvֶGJ̢4uo*Z񜔉 40 шֳإdxys v#Ydp-\&¤~L }i>JRy}KD)izaSAit?(yS7H&Vt[:Ӈƺȱ3ċ8Kp >DtǪ0HYQW.fo$̈_{HZFOܠWY_aGgHZ†>/IcEX@I2b{x8p1@Iʂ)]ގip4rU+1+ϽB)4 SпtNFY`fdzO8zHȕ k0A{e]|qvw]DP4JQʆ G%rkU%<!+JLSz^Iu. >2:^}ޣ.x#񌩦65X7T"AH? 0Ӧ#7ϯ,/?0:Q=ut-TOЕ> Fot7p&\@-oe8`iDw^By9(:as}0T%J+@FGRț3,q5*yfaגc+M5zEoh~7K‡yIAlWWG09خ+V'0L8}}7SV) {gIHNp\`D ku4' %1WM '873ĺYg'o5C qfnwv*;q79G  TCB R sd1hahj#5QpElA;IlN$fEI#be:?K̾di4<ŧt\_Ѹz`EuqB+$Fwjq;4B΀9Hxb$ 8nLY 4UM51,Nn(:Φ wB(熧[V }?Kx|nTQtJ |/c=Kעr"ccD,7 1T069wGTTHbti 8n8#i@>>eEsTZ .POQN8B̥i%<; pN 2aw"^Ϧ)O9~6IVz޳^5k@m]_َ{kT2|VQNgUxqWwow[eTD1N4+8tq:xtGCdPtB GXϱ~oBI_6p"s7Á#d7:&>z&Mi-N mT9̞:>xThQlp4IAmecN|/u:>'O6lVMZwBPL00_:eVF:^s* YTWf*™+ X6ITpA w+,q5AS\u.iu6 ?xw+\/5QV_67> Bi: ઁh. c R%SCssƤ"z>7I TjUzT"XwjE"myӈv=㱚P$;'z&W34pV[>f8"<Ő i@SdQg#%OqN; |pthhS{RsQvU (*Tu\ELsZNw٘e3Kh;SkMx PY/j\A4,`폎%?0f6`n?f* #B ?h-%G p!A+[%TwbA~KyT߳v(ȦC :^*0deK652S2g;veGUOݑ~3E5.RQрrN}Z04TVE<aw C^$?FT'ҐVҰUNYVj#%UZI6zYiQ=#=fB(r1:5JЯm$y<þЕnՏDlЂWiT·\!bLXw@=O˵ˋ. QܤL 1 4`Ɖ|xJ—ٳA.ê8/xA"# !O(U<@1RoD'~N Ml?"ǡs䛅7EGdϙxV8O*cR_GԈRmJ`+\&"D ڒYZN_@&NS+:Cm G+>9 aϞj_I@!j&Z^4uiOq(ɚ,l˴R,4(`wӻ4;iMWa>En"P>85il +S _䥠w>13[ģ@aS7H4̄/IU* pœ1v-}"Ac'38+M}A䅆,eNϸk5:剚?y.B龅 +X\T?y,FaUإjRev3BFݏiO߀f{;ω{ aG'fPL.I\东N_;nT 'Gqj)c٬; o0 V}ơ~SA6Q6UzFw4W`"04JUcaW[$у Rt*}WMlT;5^ڣDZ2\Ès@i萊@b/z&@"1h/TF 'Zѱ-Π@v~*;Χ%%Y)}#e ^@KĈg ]7. ?vv‡Gqi HӦlly4kR5AWiCpͥWWsT,HfC/6;m#bcfY“@ﮮD-tv\P="l?yYPN~B*ULj}3בFHQ%OkX (9o?9m r [DCKx~|7 Ю"6uvĻuXuR=h=LÅznAoڵE[̻}贱m^k Ѐ}U0 y&oĕ Z >~H>C4\}l8#Bя@ t|RY˅FYC{Otr:7v_QMQo[ϔLf4ׇL~/Pb]|P{Y,7_I+%dHJ.^'L UWal3 $\pWR-YG $t_fjڢ-q%uQy:;C78 QL)0knܰ?DL/۾<ٺXM f9&,V*(7%nV B;HsckЊkY@]r y}ǣH*0X{Yr +HZ}[R<+C.ƛqjm5j =ƛGJMj|:/Vˈ\ηRq}޿ߤUͅ5S2,~8nE>*UW I[%wOWip8% .'$ XWnkZ5Tq;S3Ęd.ci;M GZqͭ =jخ`["Eov(TA,y/z[J?v TBF0("ŗ(3⡮+=IrI.V \c(О$ pcєI'$czDd)ߟA๱_c$1X0 =EHl 8lSWWߕ ղξ㣤5gWy8ucn31ߪyn>Aϐ&ۦ~t޳tP<mbZ҅Y"o B'ǗN鉵[b בv+ts>s-r>^+HfG^K.vw :ASFRRow@XH؟Yα'LQ`UQ'pZ&CD=*njavG0mc<emh [%jՆ3krX$Hn[Jppl3 MxErH y8K'x/`c;18uFs{.[OEWS>~ĬI~崳 S-/Ĕ:b<[WQhΆt:˛ 5CeZUnzu=EvU14W36=fJ`"l_ <`y:rJIxEU cۥ XcEAv/*,WJm$O{x e~˜gC#IyR苐 2|M>3Bq 3Q:;]h^x-0.+e鄳ԩܽzi\ 5, eAtzk ˜ZtAi(yR'ObX8U 1.!9kSܑo^<<Νs/$Qo*PIߛ{N j@MJR?:% &b]R/ODGuKw2(Bc4-z]LJ3mMՀ0Dr;k02MB̝(,;$?Yeo/iז`gY/yI >AfN'xyƄK/,/mwtvn蟔UKBKՙ0l &bdDwRP+EeJW㫑FKdnz%k A\wYrMs܇|1ؗ ں rmBzdIqt% O95Y6 \@9C;glPy?,#d1aѾ-=JQq 1H츆hSlL8!</ ҢQOww0 @;*{[#0]p ^ ҬB @h0vۀ4 ?7RKSv!bo*ԉX5Z-ŧiMmּ*G_5h!wv_h .rarz VyEyҼ`Ǹ8HbH'E Emp3XUЀeP-[\:!v`@G꾡C`{ś!վrAC/*x@{Y&H}HeO'zώ7Jȹ`*LX~kK,{ANoDNh^18 .|:/@ *@zP^G,b+-(tik9 bai{gk_R 4LjݥK]c9Wj[NҞ..JH{DI> HL`i<(518n^ dL /:dML)z2hNt; m<\^v_sgmb Įӕ g@&b.E`@dtT-÷:y+,-ޮt~U0< |7vy0{\zpV 0BHFkzׯc9'fPg~F[m.iڛU#+(K=DH\jLI1J"G Y8\Q% p"=UW"?ϋt) A +$ӰEiU|n"0v+S PE>DatٔKz\A+iO ߐ`#5-:F-12J[7-RZ4V{@>gdڎePULnh;GHhNQŪF&(_b P ;jzz&*$7qiIb.F8 O L5PH+bp tZ$VŹ}izxBrp+ޢ0dhd;\Wk7;CYM Ͱp ]lrzfQt,gR3̾a<ɇ-B܃3.|3+AR(8 -MO͹=dYz~UЗ'DBHC5gRhTw#8gQ/ejdӫ@lx~:5ݙF)tfݪs`ez .$>`{dM*H}jRqnXokf5l4ay>cdFt Φfg=tS0%kQ @`ZiU/wZ{)Q3|U9@rsЎI=};%:%[Pfp6mjǁw[^ O4rRZ\d?%eg|fB +lsGdXOu2gcՒ3n"onF'jl#dB kJjhYY|ӡ>:#1]@2lJX9IфZo0z7Ge:c!XkcriM5_'i6D v-AxY+-Ҥ7)jy7w}x4b\&|#hNɅ)!rLF_[bgJY{϶Tf|xRlht6A5SWdX}/G˗깿{(o՟Lb*YZD?; #h/iUwݔkao\|\U|ʼn2u\mSH˼E\6Yކ 1 NMR ܕ7sw]mυ b$jy󲜐>:(NXٰ&$*W ކ:d-`VC^/MULGjxd~Rѱk& 9M .Y16b8@Hj;˧y Y?H"͹selK2D?+|)0# Q0 r lnQ6)=8fqx8ܝ*OV+&C:s+YAT"á,@'nPŸ2h->c~s{oc<&Z eD8FataoE`gf1 \Tr~/-t9$Tgr+~o݆1ܮ4ɤSh Ds|G4l/Oȫi$2M'p<2l!w7Wp,3 3)V͐R!oIG#M ^KxGh(";Idd4B\糹pz +n`GМ/}un|8p8,KUwp ^@9WjRn/f~V %Hod!ԫ Vߢ|)ڎ}UgGg@"%zF&)F7d2NHD׊& cXݜanDz]Pw,r$D r(>@Zrd&!f𚽧WJrN?E K@1[)J @="}&ṵ;@CbR} Td/U!N UqeG9i Q"z˸<!{dr7hd; u 2F>vpzhL.md!6/}&G}a /. 'kJ(Kn)l,z>}E]CiXFIvcog/ƃqTN4ԛ1IT^):ӂINBdje >GY~N#UK/ˋJ&g;MdZ>|X); le"HD=&AU<"c?Ho~5C(—e:3h=Xj`T}/ku@a2yHf=41H7Ji}p)ho[ L]KlA;lfX\ظ{iB%Bg81q}huj;*%*!9Q4=cE~KVӲ)P InVlkdLCSQ]_tgnZo@٥ZsL[9*J9iVGyKX?`tMԀ3m{@k^pǐhb Z&VU!F@|}d+=rO?ZS&pى r+)?Crn$z+5Ȁs,f^ÃKT,}8|䲹S Y'D<ޘEOХ* ʼnv /́^'rQ QkV3lrc0ioEsU4Ilc.E{9wVqTI8I'L/sSF7< (u١/ӡ'Gjz'ͯe۵alJyMU:P#p@jrR i_E!LI*)B8_oT*9y d/UY褕6Î|M{7."SSŏ#iZpDkdEtēM.o lsR10c+jYlAz`vS9yb,g:hJ5¤)޸c|M:u6K%qKTp*2hnV*j\-L}|G:iaӪ)b5kkB3QND^mb [12RZHD7}׊ڽ翅j5.d!eGx!?72hŤ!(ez~s&zKV&2k,z1 k$ *GA`[~:E'!uCUp}l^PN PiU,9>bjV 醻9%Ӏ+#yPeA䦶8>a\C|eKC7ixrl!n0`h]-~A3/l#^!k[V^ODZ{Y}p .dpT >_o0txq}I&HMP+a^lU ' Ed Id D;7?Vq|L]@g'6O2L )u: `py3^:g̜!@V#?3BTӋ*6PIIe> R&8#A{qߝ_> ԙdcV!WddQ)&(S@S͟g(7͇ Iu|>aBK˟G8њ8ڱJt q#=#yf>9˰1 #ʱ@Urj+SA@X]%-*"“,kІ="|7Tio?c߆Gk>ഇ&Ms s = RsP% ˆ;MD\pSRw!g{+S [eY 2ܨ<@3w+S VWݑfKQY7g'nWc̱P!AO"!5jgIy!C`_F6v5g&.*Rn@i N^b*Q}s0zkQl0e ̠.Dg~^\iKLl8Z7?ג:9ھ;Ms7ܪ@7D \V$: w=yu;e6L 9t;+)B­x_O rAǼ=u l]* }_%PtSpO֫uiA} ,~ӽ~0-VW!݀ӕҡ\(a-Q]rF5% w@7O_@Сf ٳXRqX5 79z:vѺC5o᪽yja1ͤLU`/xEI`RPsԜ cI$Rdl#=eeBPNłWoS'"h!N4&)Mb$z^n:oZV(1]  ")=|~N|ni3Tn bǸuIm ~\dW+ǣ>3S3+xWD/|J Ղx\{6j;yc -h{o\/0~X#YS'k_(E|J5WQGR({.$}O#ٍhsYGX- +v=ahc1+aCOFPtg͐;%Ƞ\E ԰fE!{u8%NwvdL}+ ?, '8㽀W*od{J?Tu^}#-ƞ偐 n֪lfk Q2gt@g ]?9;N J 3P͐ӶqqC д ԃ7 p)OK*\BOrSTv#\3$k/1EǮ7Wan:L"Uo9w#YVG$<|)"+CšvVIcx\(n<89e>'1fl'Nn |eHv拥8-Cݳo;lisT}Pz xUDA:\h0BzkzƤh{ ~#XS>[頽U&OFuvU@ES ;z28L%&F;ޝ7.tVl1^ 1 lt}PM\sskW OSJ[YmJJKN8}Vkw4%v=WYg*q T9qsQҢ*aB "9 &<*T /FH60a o<蛺9Y1桉ໄ-,[{.BWp2$=41`鼒Xbfw#S($r=&D[M=*by"i#+qD^i ]M|Yt2h7?7~pV>5,_?$pU֊%Çw5$`,N,۫ A͏zq!*h ɔkDWo*PgχӁ:|`!&zR hh]}<:9n<迿Orea"0%)$J+ u"3gG3L꭯&9ca^DzUl3D Jdn0ZAl9&<CLЫ5]nqRg8 QF[FMd$ ~a@M"^m=+gK _9tJ?s{o'\rg J9Tb o1*^wjy!`4Kc4ZE&m<7*9rɇ$^)q=c]wZ@|k1=y`%ZU,Xw/`xMXWM>^Ky2t9.^ʫ~ B3,~Ia/^6[n2B5} l-hStCKm2TԱ$YF#vH4^ȓs˷d $ JlA SQ46JfzҔNC O`:y>$ۈ&- n^S1L:ye[ӄyt滧LRS=r 'vP^ӌU46g$:]q`YwfZL^QHcxcz,HLP0p@ZH̍eX`Zn->>}'Tdf!vQ=$ yYrκWlYW9(O7OirML3%51k2RFZSmo?}^az+tTDY'c,@A=Y,C: #Pr轙cP@U5OOcxͼ Ζ:zh0CބY˗sfcDl=<,%ӓ7nm^| qcj'uDG݌LcxZG!'Y48~YjD PHo5g کqDzpomw"c<>_7~]XKgt'JGbSX#R7">pO_GзLuSәsQٹBf-;ؾ"_3Tr~z'^%~/}d@|A6f,$x0G!` ¬-XYOr:Yp+tEBhzfp_m:_iAEJWL! KJ a7<I3Q~i}Tcu®TuR / ZypSS^?ovbڵxY.=Z0̓5u(+];gkOk3:]ih(S:,;&R3pFsg ~.oDpцβtBw尔lAU^kt9M#= TؘPWf& Yn U/t[o~$DUgc|~x&@f`֌_I;}= 0Ug?Moa $t?#B$47cv(KP^^U*a:,@<Ȼ߉ ˓T жB`Ktu Q^89QKG-[zu =Dcؿk(my<)R7}VAE5 6~vh&rɳZ8Dqm=4Ur( |EhBIuҎ}ʜe)ۧ#&Aq@Ն?#߃UӃ"kЈRn.=|Nh0A-&BuWAcx(^}=[(䛶,6߁"(Bq< sR̾7ޢ* X_SoWi=>WKvk Y;PӪȼ( [\^vYXz5*OBlʲK5_1zjoJ10ΣC\YxŶlllv8t˄񮑕U~lƎ_(5y 'ư8:?>;fW֓_ ehGh*вzNҔ $Ӑ7yjz* }m6S}6qI~}"P)t^(WBð9|_֒o1jŰ5 U= J B zKgu@ ,+(?3+@.XR&͍lcy{XS-9 +Iびo@s`.;%^Y(lp8W r%e1n$/Qd ՗MVwP0@]|NRgÙOz6bi$iyk ^?V Pl#|2{Q FR$YZa58f(qLa3V'7̄>J% bD8WBad y@qWL@DLeGoi1aD{zsRꔌx7?ɽ `oVD ~xj˔[Ƒ:-w5q4lf(`0mj$⍊H[aB}50KierTW^ U'R`_ evB4 jTGqО;~a 1EoׁHAzhȫ2mRqCA yTP{(Oh^qqs DuQ)JiA";KU7CE={ *)8qz_sq E_ߙP^HOR*AgM8!,qMr} H'oеl~!;&6:wd}.,vxͧNJ í1Li7ј}?ԅZ.iF[Jﶎ8]6V)E^cp2ouٟZ)%7g2ŀo׮x^''VTعYspi:+v@" VA7|:5(h+}Ku_?p qed Q_e 8A*X»8 4jFZa_Z"2n;x E,/[q7kʖRDR-k&.cAp?=2/záìƕYu~b-8J"@='QỲڇ,:0og˯zg,bd}iǽ:&Lp iȦ5f= + TXu^Ḧ'8Ϝ\=\/bX6:Ŕ m) 6y#XKP^ycfsg7 xL7Lb(e2Ο$]=s.q@N|_(RIPg{j8]-C-'YO9}W8i*}9"DE~gqC؇dK.[nU^+IBFabAf}| X7)">`6S/mvdⅤl"K&տgA82F\UVNAƚQJ;{Q@#annhCe̗YKPE8Y HPPm](M2onT.Oy듞FZxZ{ޏmXQޏ6tk0Ԍ+o:c|$k<^7R{Aq"P[xwc|@̴{eFEb5N!uGP":%@¬rv*&MhvVaI fc>yRxhN.e]iz>Rg“,B_h3x{prh:!h~).wuà.C~pfܴHL'\9!DF-a^^(pg.H1%{%uT Jpy\e=AtcJ$gFB!3 >p_ Ѝ3'6bRo[F÷\%k%/S'?;\>޺xIE2muA_]¼x|#i0> 4Kzg ܌Ux].H ݲU翲[cfi$7^d; bY* 9Sn^w}~0sMd} d$|'>YR(2p-OSB8bwы,)NsmeOn^1|LWyo>Hv]#"5 ?0txMJ9`7{'-PɖBq[|~[V̏$ "䆲7x*,֖!Xگ]Jb/_,^xd>hK@AȻ5[iŒ?BMeL5DZvۘ醯r~v Q)9B @RM4A?heI4piƑnzDB-1b,{dEi(:bwIzHTDM<ňg%\VE8cŇO`4@3O|8v;/~YBkl~r6*gΚ; Ιe2LjY$_ B|&Z a`Rlȅi2Tw&X@H̡Sj=}ÚBlՑQb8a@~? [$@- ϹEz RB0c<<+vB$C4yULk #kX&!gAG\FnG!d|Afb9F'򙕣…+Ah,j#WBaՃpX y@ hϠ er[s(FgPM^2[HhsxRQܙޛH@i"x Q& 2vm:39뤺9:f}ȿ|Y:KbO //ybdXãY[E[`Z'EA{\&:qyR++}TnQ3جo]+&*/QՊ[ bf({"=媊!'8"Gt燉{cim DX/9*(Z`Vց[+.חVHؑBQv^{v辳LUbp'o/&[N hǼwxpPUۿxIBg?מy\AږpU?{n]u O^K5V߈\J_qK),!dw>SKLڤP^/0FiC^5ov,, a~oGzꉵE98_:xCHȕG="1TˎTb ~!9ye8O7mkP欵/ylMKQ; {Y@ :j*-H )QvD)3 _*У6R/`whD?u|O]S^`j")b*T8XtPL, /ya p0^쿷H3ăA⇗w"|iӲՋX;AIՏT%Z~x#|WO_]~||: thX;PrdMT'}Clr>!7iT7QGfGmZxhhgѠJv?+|M+ p٭0 tGfy-¾*s%k;N~<,PFAT BߗWw6&:X̖FU${8#WVG(2r>C*XV{ƚG 8#\26x,¦^If_%"^ :õZ 3(Sp.Ni?}}'fD6Q&((eC1yɰ?C&dvUq#Ul+-z%ղ9~u ^A>` ,h9ɽT6-&jZEMe>9o%w𱈠'5@s{z8QϭZ%I._<{[ܤA) é)K4w> fIu#lb!"(r1 VsW썝\;_Gԧp1Q`yMsJK-ShU:Eoˁ<謰c22U(SX 1[ϙl#'$V8ꃞmtF}L ln7ّL qRd/K3ۻCorc1QwEpli+nU?1 8*: akzLBo{VJ̛MGwk܉qh }ъꓖ‰9HTuBeLw/РɻsHג@"ޟ[X bc][/i.}|gW}(6Ǐ v>#j[U)Q珉~6ث|Y0lvsɽI 썷 ju$V#X8yOYYȦBU'zVQ"s?aq]`cպ=0 Lq@Ү輄pG9Qb.R,Q aIq]U OmEt}R1q[oK"_&Vqw+k /*'OuB*7 CU;^[Aqwe]S͚_9@} vmyc DlNA[LPTG|ަ] !>{T||d9MAOƒ].fL>gFYneXE x۰5 &lgTK`~еm`…6īhptH6mž0>m֞C=#Bwi yMt@Y;u&J 8L_⡏46d5twM a#"/Y(-;`4<9)N | `+?3IGHYX6u2ʙvlGᠩhIG)$DP=2pj9s}W<L#Y|}rγ>R^=0:>abieEy#W~8ZW0r@B2j}Ŭ{" Wov0_ۼx "4qiUMSn/<ۧemXәwKGkAO;8V"5'6 ($?!{>-!(BJh28TY#v \ [HnI&vTd y4;vIb'J{ɺW' +\-89nBA 3vv ՚6(iBپp,T<!)+nB/EV<JtBid2iymqJ3O\OJ՞7#$y`m4u>z>摚. ':fc[$L.Dw*VkPU-񕔇oALuiIf&+d2c<0(I]ğv[9ݵx6{5M}jBy9x f >hPw_\yzI0tXNR6a,. L:hyQ\߭{Pxeqȇ ]5$5 YȆ,;{73Dj2n⺚u~+92a^]kw?ܩ2GGlO_$W0@)/LW7Qy_=^[gŶJP3i ".2 3b1ClÙLؒdV#H՛t31{wDJA4$לĄD%HBb gT8QfY<[IhwBM!|{hv9qP%˲Dս+;}ǩPiJaYGդ6[Ue==f2eNJ?YGx.SE]TfJBYHs;8SDuǣ轩A.V;p$sw((v̏Oc[DT`xİ81I4`vnŞk3(@G+pF~n9O+*B937ĿP.qOw=]_uP16:ϟF1$+-(縈ܼrQޮ(쨔'- $`䞥#b^)5fo-UE4w ZxXQ G\~1lqgsvcRS7 ߞ .J5o,pkcO?HfՆ 2cg̛-"TFȊCcFp/G-m3>[6eq$QVX5\R[ ;A{"I^6Ƈv,= s5r8tКlU:$!X? 7sTk,N52`:|^XdұKkT, ͦ<k"2˝aíDȸ"fV834MN)@Рw'[2cg q%rbch{BKN ʍDx{ D!~kd L2SG߶uW7u& 9bNh&* ;w%=k >Nߌ8olHCAy}|/V/臦V,E)+~| B}’sP' _Jq\|"XoQֺY(*MycIDWnĚ0o?ʁZH|!rށvj>Rzh߿Q#IQzД-MGzi3ca Q4>^#O2+ArNOAagthg@Vy9WACэ!tϠь0)?JVM@?:)3rVLSjKJwUG-$qΉ<#R-Elƶ% =o@F)=Zh]'K!ySDp-Ē: 0\ nUAk}NWxDj"@)p!ࡏRsŮpN=?/M<Ӝ|)F<( E Sa&Vt {*H%AlqNE eϚz/'ed[C8~is1#h"0+"!f/IQp>]}u0>H:1A(ubKka>G@t~U{/l!?i'*3dΆTHOU!ŅB .uҌ{&'Ta5LB&qn>IFbFhʹ+ :uO ;s BXr޾d*Y+AZm Ka6A_E1Z[uw_d:ɳ\f˨xlG:"LRPlo 2ީGS |V6zD\/no9GVL֘῞eaJ<_)p.84\.7seciq7s .U:OmSʦS |P6\S䈾%9f :QwZʨƤ2R!\9E_aĔݧc<{8PܐqIh t(B>WRm$Q %}u}طI-@>;;Ms:5ŀ`iFB -D R1=cS<~W·tC23^8 io /*-fUupe |ZvJ"Vk5"Ey\kNIvqk\- [{6:%܅ݦُ>8ZxIGu*KpH}g3lA{:)ۖGcf-~os1$5w "j; -.Ry»J^Z(DDKrf> i.6%Ԋfۇ6JDJ Gcc`ĩac"XIGK?ouc-NLLhǠQQ*λCz/^ '9ؗ$X Z86ϩBki,VQ\:򮏎;vmx2*(e(o2f'9SD}ERNHrBA;5x*0g ; Ytofu,Z;bwݍQ=K@7xkꆿ>? ENE5S%@{}Ye3ES hʰSKAm\ȹ)q8Q' S9쀈"nAZy#9X7wʩgo/mUuY3ܓÕg(!QO)M9NbrMv+m?H%slu\L&FK!b%X bAJ3P">h`V L +FZ~RAcʏ@-}5KO~씬{a!>ICu|g"]H {kspP@" W*-ӭTS+;N9jWHw;;W˺Jx;RY?ޖˆVij@iX{XZ73%s=M~erUijt X[T"\qF^CULVAmkǮs}0#ik?}NB;zjn%XڱqJ0[05,|6E2PH>/WbsH,DJ z;%k|3OҟkϤ yF+N:=s!^`*q-,ؕR]h@F&]47>Xk[Ts`!LnhwБQ[~zެن /s 5VlԸZ| ɐq#dl_:b 4<7i-610oZ}Ȳz.*ՠqIɠz: 0GB=Px7 E؞&Րb_+|V䲦 S^Wgѕ^BO.Z~0jּfg2J0_CgVpY3I햀 ʵ-Vp XfPڤOX1"ì3y'N|LE. qIՒT)k+hJl;x}5V+]rJkU|co2?n} Lt9!"n,AFX 珛L-% ?$%uRl:[rt5at  :Z>Pzޏ_”0!m ]B<`bNuG0kIO$:afH,a#iC ]S4ȊQGU?'6gԟ=V #eVڔ=@'˶i/Y&(D2>>l [Y~ e-ܾnNC#_T/{FE-/?aY\}_RCO5qy۽V/r( Y28TK0u'~}|Ve,A3& $: rR/bTY^Y]oikfm)eGW1Hf7Ymw"}1u5c|En'!աh̕qK< I 4 ! 퐊Q'ӹs&rA\l}c89 x?ՊNhp{m4uN%#P vigg|D{C@>K( P {7ǟ)ww 1j L'@2#3"iKӿ>ғI*5nkg0E2;R=)ȋMTȉ0jcE-GS܀L;q$5m#I@[W285xǞ3'=SxUgcxdʀcuuGO#>BMR;5?_AqP4N8> 41B*\߾b^Vҹ;W)4M%8~:FP}& ̋w s?(#ufY+RIӥe֕I-(k=uaqH7n%m0^}e9fC0_B$:.Kd`ݴ/]\ZX=zfS kINcuOv^RNN}y-aijw[.uLbymlH X2J3~.cNa%/1 " rB(!z3rnYVCE eDE5K yT1f,ƕamQ ;dsRQѽ}\gD>n,W`tt~GFo w\M<2Su;k⛥}2>+>Ų_f0u^i9'` & oW%'W -R8z+$OHEbvg4}#%V-Pc@GC:pڧ`L?ﴏTߍZp?@d$+cA̵[L1aNe K=;] 2L5)SLycÅY K&ȎFFHL޴iW]ai˛lE#7ewPOI&0$QX6ZO g|}}wG\]RC D0U~dVdJ'%7 |KTjA؍~Xi{X@GxŨ 7e}xxr`/$Ol[;vg3KH_1v/he8AW>NX:-}v!KͣfC:"hu"GMS<iq/xDY0L"5[Q]3o]s~$ 5hfm\}YuvxKzj]}~1 eaTF:cW2wΏyXtC&*jpDxjyiD!aֻF"] 5) ', &u k%X¯QM}X;@*!`qI}wx]v*[ryZ=k& !B%Uy[x';? oB!_'pάStzVL A (l65sEy [8פ+YOm7k#};_̬R)k]iRY,6lZ;q{ [LȅKy՜&W7֮L m~ RǩOlЇ\.J⬵FϣD@"0yfsD)Ml39ԣ#";Bpzc})&yآELRQ"q1DRY_"Bг"w14QMF~+H-C5.yuXDz,\~eQ`(m4Nq/yV}="_y40X>=, *7*lP-խ!,)~0_ܟZ% `X&Q;4YpP aD~h0b[4Gv%~o\n@4J&lrZ^N1}wW>ǫ i/OL@~j#>Gz<~> [ź&pħƂ5*jL"x7̝ O aToxCc@C05on?<P'zJ!92w`.E|jn!>H #@ L b&d߅N!^5y}C-`Érkϥ[9jbE$΀ٔ)"+tӯ:ފ„7o™v,s!NlA s6Tm^&tЎsG@H(z! c xK $:U1wV; ;KgA m!EKbAIUEaࠄw{5\vz|k&{~%:NXG2c˰ S -=:Cnbl3:t9*1cON+7ת4%VF3LC8q5B&?xee!t8|%Y,uasjmS & ^D@ivUqUCA A:"@'}n6k~6v)0q6oh E-ẀՃlǾ]^i "Np!kvi*_xD'y%cl犈+O<0 jP}$SX{RJ'%RJi S9$K񍋻QF!^9|q&aټSr h֬&?2XLq*CyQU5Ҁ *VpAjI3s~`Lߙf_*Bk-*K~t#5ʆ9*cl[xU]ҋjRO12J OroaI!W䁲JD \U ;#i;&#!%%#LpT1bI)nSBlUi)֨qfj~ōF37##:Ye?#D0W*=PM%ڕʴ!٦fjZc4odK>% y/D3\D4zÅNц&GSLPg|a^>od -O 8<~gbM:븽edHgLw4-4GdM* 8㛥>sKZ]d!Bϵ ĔNyތ8ugjZ.b);S.Tꨋƻ|^./SqnLMD nÇW\ UtْйO;ۺy[~#i"뀛"Ұ_ίy.>eH/[舗@ͨ3=W7q_ѲOB~5g7el%0p<{{}r"n, J]ä{@o$H'sj?ZeIy8j55^k犁p`ؠ\k%E+c4A+:5"Ǒn'&"s!VpFkY8oT.] |:}:!2Z ̟}ğehX1Ǡ ? c&f!Q!IupM_yFTgs9 j? T֢M¥};7'2I8Vf8<`~r(=؁SrGc-}nu0㊞K\VJR :]qQ/xLW2UD@;QƣeHѽxf.SsC\;$.ޠ,i`{:' S,FqN YTJJd ?w;asRA3/zp:yj³+< i;[G 3Csf6ق@X.DG5҅N TjB(laYkoG~u,v r! 70@c+BQ+5SѨD瑭|'}h^*xzE|C"oinq]EM:{Et?c[ $"`lVx[VK07{ǹK c~:W(S3)|UKhr[ߒ*N0.uf%yQi q/n?CO{1jBX@'޲R<9Q VpYYIq@8{r>'mhA}12YLxj@\'=7"{׌ gE4#3h;D2sXl5jo!uC "&,H@?TrV3ylMh-lN֊]!Gj܄&X'"R2Qr|4hΖ|׿{`ͯx4 gdPܐ}7k>Xصu ;4ȕF`_nWٜGP~~p{ׯ`dž Ep@>O}*t޲xjd+)6TZv xH}.>MuDcT+µȞWїC;fETO=`FU?1⫫@OX_0ה <^_BGpT- -VS?>Ra,1ƌ @#1PB!%0&u{ rMy)_P4R@t \a>k 2Ti3.DgwЍv[]JƧ =أIJVlL!*Ǟ'7uLædK3?gzsG&r+yy|E^qݩq0H A7&*H" 9jss-Jc*iI'O[ٶ㽏zw8(,O(\sW<L`Q6}䋱˶$8i%ѓ5`ъ'Lw7efFf%.ZmkWnHQg<["K(F=#su-+4Ʉ%r:@`̓uŮ\},H޳&]s e8]%@%pܳt-Oۅ񛨜jD8~ k9Rw(FOAWC-5vmVx͘{^*L*-iк. _hw\~id9o3)R676ؗK +*$%j?MHr6n;_8|9RTW1)MǿpY7!Nw:=/%P,` Mˑ> |!peCvKwNkeP@ D˔<ӤwV>^w8v %1t@,&ecT*|miD,OAa\5! X́fywV{>[7u"Դ5{hFuޒᑷksls`~Lqs68)KbD[LcitVed-nThW 6q'/YF HEe, ;?$[k'h) tBwSq5Rus -=t~;A fGS*Lzw|P<r9<~ Ro@maHE*m?<-= Ж7<7Y.>tvUC.Re WM챠 JU xZUB8ho!{C>,?w1&GX>k Uܬs^(GK0qj .|jKz'5OĎUVK8O|.=VKؗZ)a^78넱^2vhw@;)D , ˼E9'9Ra0XT2\EX̸Ww"uuU4`| o^Ut쐞+<[`C}G0 d"wbM\.(T?2^}s?y5zZK˰j|uo hi~}LYK:oZ/(wtLj|N 1xn707!}v}BWH+*E+Eܵ>`/*4S qL#-:5٧7Lǥj*L EbkVm%iBN>f9hRƲV]{i7fâ遲Z'5+Ym( O`eg8EVwf#yw&b.q:bP@#E5B,wo詖V :):3 l9s㥭S}wYQ ݠNQ>/;]%>2m@ @* ǧy"zD>i9W\6 -pMLkDHC ?Os-\vρF͛Fd2)ҔȻQfBm6)g.xlq%C &{BJxjK̥3O0gXBUE:3/#F`砡/c2JwLbKo<p!`x2]~+jkKʓICMe%n2q'JLjI KkYH U|st<Snjۈevp$iJIDqJ ᕕx_s^\mbz5pd"/(ȱP98Ǖ ہ€6I5hV7v}mi1Od0R6+d)ygv_U$nF<kZyϯN vlI60 =5W0-#rjÑ6i)[GLNQhA1bLF%Ws* Ht5at eHv.2hB%;CibkL~P5yK"kTDbA)uY(Đ>ۯslwƿE{_,:D!eqe+C\jEoG%FQV >7U}P?)uoZ DIH%ݓ+* DbY,b0Eu ./*֎ \xi/t6npVBѮ~߉ k,b01;lADS5$p Nk] + 5*)H7R1[zTyBϤ@Ƶ7;$}O Zύ4l?Z~a=< rU <)V@%A-W~w4ѢI.ЃMsvQråYEw$\-k!pnA=j\š|ږz`P,شR3c\fp].dP1Dԍ%)u!%,VAV+] xG*~=}*A* QCy3Џfbsk^ǗY>A8v246X0M3|p%"791VRS5Pr6Gɘp( #\-3p3uEQ{4vC=F }2:hTV0Aص6re"+/c%۷C dtWv%:,%4j&sǭ s=7͐~cѩ&D7 YE}v 'cTZ<3}rW 9Kެ|Ndt)c" ,Ò-b^)m%}zhU* `s.]5G1_2􀁟ڇCK4ZІ[  ۝rdgBRèHA,Wams MHOۗG㟖kz-v3dDveijFDBsN[, uDzfyE +`pM(xV#1C"n@K- aP.@ }M@|hzw^,($Џִ-6]%_"1Ƌ8Q)ExZJo_fվWY.0-X!EO Vyod͜|0WW|?L(AY [!anը'Q gpFz4PcxQ$YzhOo|KZIĿ&9xz_GrBȴ8@̼)(bH!|3KUuq_i\we:kY0t~A:w}Wl[yO$;*OEiVD(»>&KrG[CHyXךhbc X-[YڜTpQ\vBΠ$|˅Y|-|Kgf3s'#o.9KoX< _M>oľO MeKˍ溍Li0WMhx:c9}5 *ߓE#` V?0}A;@]yBk8"}a9`t+U^ߴ0xΐhӀ:R30jC JȣWxD2e< d(A+h+r'yD&k -¬zTGPss[[y !v˘VStĽ@:9EⱖiK?[x< pe~DLyi.Xv 9(i(O VVZNj%'@E d*qڽǝ,1Qigs߫tA+R:a^-nn~|wS>l9L:NZ.yC^n~Ӌƚ3}|mEXlMm'(jw:V25NnϨb$?vlHy;TxF*RiBI8XBGmFq _Un( o6ޤDzS+EmE6Osckmv2V'tD 8l$t/TnO $O܊(KbSr{֚Bgߋd)w|f8c1j)<Z &R7w=>.r,Dۮx?w@ihKW%8?d8DM$uɾ+mfơָEEn"2'4_˜"diο>iOi O*ӝ{H\tAL uy%,Z<,npk|?b?V-qfٽHLf\I$Y}. {˄M{,6ս}7+ Z },/MEǏj9eG8LށM+9]}_5O:Y~^٣~ְ*cfqI7.5debF:`53y:)W=<:,4:`mo7?V¡n*[ #`Ɵ'C E|F[i6;nxjCZyG|ފZC?@*OG/(Ԋ*ƶXW cn :MXKn:%A+TqYԴV5 m,irr[,Ȯ&#Bv:H6&'M#. )ng(|VA(sL?aꦛ*TR v[7\UcT=hpI3Sa¹Jړg nT]B ?(t5n)lO2)bhS*։;$|qF WɁl..m"_Y+s`ЌB꽸Һ+n 8:Żl2\8}Sbp2/q~ cnQA`[*Xfa9}N*L9jP\z '@t:‌72C;XԿ|„A}%'yc`GrGN60u \ֳ7ZDh HLc`h6@;J3s;׃ٗWD ΚeΎm=`|5dnYѲΊFC>a56x>+:jp3k`;r7 h`7djhpƏ KY=W^B"TLɄ+嶐=z,@ 2$q *ś4,lńyV}g4.7 mw&_u^ݥdYm_p?8ZI&ޚ8 BB3M?[=HtCPq32,`E _!ƃU q CBnۣLlyWkB%w;n&A%|u-M!ڂ(@]6e <Ш?7^PF F{p(./ Tbm#}o`Tk_W2ճչug"넑@%ů4S[Uژ[>@喯κ^wf^{L +渡u >7vu:^w]`$4}WW1ícT8<'J!O~vWUiQ%gfƵ.sr.Jp~22ɸJi1/1`qIrpiTX "FJ!&7H4mg2ZϛA N u^1:SRY?i(phGNy##q&B1F"z7F6Ȃ83NY)K+i-m|LRft{}rgJ `ZjВ.sk滎{P𖋥`*.c"J+lDя$|Wی ߳==d9=e+,dWSc !FqBFe+֌&鿌*&0_Uk[=ϼ%#XB tuYf͌БSѧLBB{6@os$Iz /osu%x5-ׯ8s`6%ɰ8/RrȎL : ҂Re,65A(N *`=QK~tc-v+z?:k_9,`FNY?T:N-L?MeЖL}){O-b7eu8u#'T(MUGk=$?R-Ɓ񻣴5i/9M y9+L"{KoC?kN-Ane$Q^ IcX'N{C5kANMR~F޽P.S1;K!*Rt.oȼRWܫr47xUY"iy| Bcl+Ӑs.X+1@ Ϝ@*CCAFO, ͵ Bzr'DM LƎvenm}F>M̕J|8M,ּSGY DR%&A3ӗ3\dd~9"!6ׁU.> Y6̧#}$fg\Y5 *,%PC]U݂7ejC_Ebޓ}k ~ Gɇbf]xRR?v)Sc8)s%ٺO-&V_edLE9_-N|>'}*hx#+t{;N&W3 L_PG}m: wS]vmPп@'@Z!(5cWsÏN֘8 4ۣᷞzsayWfQ+OK"y,upa_)UN4n qN~dx5hν-rcj4e~@é6Q맰Ns˂Q94ȟ!@ }#1%+R:(%s Va` Zٮ"i .tҲrc&Q!¯&x&!m#}g6FY_DWhSs JH{r mw5yЍj>A9KʣnkABGYҴXgM;?S=I_3mN3nJmDahZ"N8(sLi[L eUݦTt~xKbĘ?Z%+ܩgnd/B:7e6qeJRV h{wiRk7@Ot$ +cx%N?kض=ރV4/!RnZ"|L[X=Y܁Uצ:f.0Gkx`<uX󼕋ǁآQ <"x?,Sc=ɦܮRtljnsgQ3RUbK4@" eQfTK]zt&`D񞸒~̌tx!=JOmE)U;JU5HFkWkh]Nq=UuN"IPv#Lb*%AUmg@ Wz+yDw8%j2&&D+P_ (zSh3:mȐxiYl>WJޢ RC`x.YNM)db 2aR{1~鲾IsWe EN]ju5νtYw.9򌖾GCwf S.Eʗ=}?GtihD\pA$ ׼YvNj+j:~b( nus-0*R0[ rK5A3ldMY&J'G]Bɵ<0=@?]a e2;_RԊ7TMQA'3JTHbѱhQwFIH򬨲v%sɃz&kmN3?T}q &rz(CR;H,gPX'a4zkG@srah2`1ZzSw,Ki2uԛY7T=θ= nÓcx49OuAR“ngqr˿Vo!1qXUx~3x)DS~-S)m].19E'7L?pr^C fYLa>gTo5 ,F(>^AIzG6k ,/5yP/Zۦ*x(th -FS(#AB4o tK4UuX{akXT31;1{ HP5lz<2VM_tfr1̷Vk@cXւ|baƍ)"< BϲgxSM$͑*8y0Gk C!#@F @W5z1!p%#`|[}"U8Q0L[0ˬ)9[i("j{!9WDpsjg W _R o&IBx;M9G"p:XزQfWlW agBa+\(+v/)?A)ϨOՌ Ci)| t;f}nF]6N ` }*l?>7,FmUFBKƮf *u~mlМb"HϺ#x hay WX]9>71z?b#V]KAXIAF:zU Tœ9 Q lA$Z7:=/.C=zԑcW Ѝ%gzZk3#TE̋ka#&oȈWLJ4̺/*+Nб#?lu{St1,kϫ%Y)֜KIyf] "oydt{Ա~J!x>ȍHUӼ=G jk.%2сrMޞ›Հl*~~QAO&{;{SQ@295l xáZd΅RJO pmK<툍[KmR9Ίyrư=L7/7:x*R}4} qbNH=9>YwAbrw &P:+Vlne)qP|N(K7;<K@$(N@ͤN9;U1gq)+Vk DRzb(Гɘ-";z(qLf^ r;I(t<^:Ӆ"hh\S?mԪxD($ʯ4+|bInXYdF:~rݫCK^B'V͞.qUW_ihZ[AcM@A{-|2CMRt1I8CjsrAJ~k"P#!E wK/*PeN _ޣ#)$v<9$Ec}oAq!F8]Hܟ<st壘it$$G)LUW춤{lv*CREg&ȃ:]XݛKҨ!O!Η+blkهDVIIu`V8#tcc{H/5[g '_4Вk @Pc޲VFRoJZ։=qG 0t?]{>XxMfv:/J$JcW`ˮ9&46zH[|.cR |]Q1 U*^*,V-/P%p5Ao'"w4pX&n?TokMT*v~"wq3׃ a)4|j`iJRs^B/ɩ@|G|z #u"HpJqW9GYAݝ@&9͍| ̒l&(7.~oEIAMI=+)1nnHxVD1/n,.fy&" Jվ?kQ TRJ&'qK!w~1~&Zl"t{бd+Lÿ &sY_άB,A7:}>PQ^h^ڰ>ݒU/[| عz"q @t^N))Lch3P[a΃qAJ~wܟAz.W-`]"ina~-g毫2Q1 '5$7,7塱Jjԫnkk(mxdټʗp5t )y [v! ΘPb 7!7%JZ;ï ՠĉdwru>j1{~l}]ߺ3 FEm'9nsy3Ȅv*x8l0t1vղ]3u2_T۶hb>FΉn*97FMtAqH%1 .3sNJ_ɵ!"(dPMnj|ŏv^5jBøHjքޥPe^|Jh9liUPcaKvlkąesXt模WQc.!1we+>>̏ ĈpSWZ-(1l'x~{Akb>0ڽ%Yk٭Q>*]rM $F F-uB0}<. %}})[߅)Ksgo(BFhiMUkHkhm*Hƭ!UoKf(:O!-?Gd{ʴ8Suzm++\ad=LɪG 3a{-K0[hNqA%tjJ)3M/%IA$響Yzͽu(U/}jINDt ","@:%+ mEj"J)c:P !峢U6$ +Q/ uܖ*{@R$d_XNA}ji6ު3Tܘ9lzU_T{uq$qq5c4~r NeyVg@~mmQ?F>dЏb(pi]cNA~+Ĭ eb`$e-f 9ovՄ,ѩ7jh9[2˄!⊧`C%[^S|isN;xVMibVzCһͪ&KM!$ ]FK7vէ$! W\L =]\]NOf!\Jj`J2U0^ [Se,㸜21 (k!@$=26VEm 1uTnn7 .{N5,YKG1hJ6"jخR0WP`[|P5kO_wBXBL^ Ҥ(?Ǎ!a5 Ų l Κ)w8?;z"$o>ۻv }|k# [0![B2;$&1!-ZFKaEH{wdg,rKScM5 }>˖HWW#t*+ZT+KM4\Պ= t;ij&d7ɆC?%g{!+6\ A ӊ(={6Aoo8.MGH)b#J lF<:* jn&lY(0BYkuA4<UꀊQ-B|JnZt}B=ݴQ #LexMo3{lO뾻(^n7H6Ыp/I礏9t>b CA?qTt)g8'B -8ͦ C8"^J4msQ$dY! >#u D,ԥU_NO/HtU?FA5S.hx^qa"r?]%‰mm 0?AkƊhx;߀TDL+WEm-ک. jwMTmWBC5A.Cp PB ==hJntg^Fz#fqRz([E ??i. &k1H [y$QVH;b)Zhs,xq\F޷EQ,(.Pt8=ׁsWvCT\r:Fx:6'>ձV =_ `M?tƆ[ݡERgG'kGrP^*EG,w7\ ;%'*'5z`#Ֆ=.e!ru)y<>R)FvRUh/Vldaې4 t](ojc2TAWSVlC\`ia:HAA/cUPcuR7njT 2 gNك`{/P]l }l &'Q aR!}tۗ 0DZcC}wm> TNZC*Ӛ7뱊(yt-.kW ge.b?3ce{:F׆vfJDE{Zx`(ϓ=LY7uU>0 /nݓ݅ĥ䔘/aY!id(?\o1"u1~~dAP'kF& 2]gl_&:N:^ b#L [qc=pRvFpڻ=%^q:`Q~*/̺9:1'i"Q[tj4p["j07y0@i(7t(wؿPoxٱ_vS_ D 2;,YmuJΞCC4wzϿ-F&鷿>!Sr;+s l= v +M֘ʻ: |􂺬tد+Wڿѡ$;%}(ksZh+>Ʊ/l 7KkM`u"9$shBIl0RQZBy*, Zc>ՓE]wMm%X3݌|0n%qW`OkKtɽb}9M9H-N ThF[NxgVC%9$ osc<]0*UmU6g<ٚhU`{ \hcwb;:x hlU$q?gx=MA 95ghr_k~ 03QƛOVzAMFz5]j3\Cg BptSmį֑n*{MU罝BDGKC | e 3`/ėi&V.*p+K QǠ |ǒ3}\BӾ\ |3Z.`(ʘrS77TcgUGb:g\9y[Pp2qp )&VʗV9!tg=N{djkΜH;8ԩ2F܉<<}[[, bݽ]v󋪗qtET$wfb/maa hvgJ*5)+/=|5#_q~ޚTXapD?7T0KvX C(X3} .!P52B<POa,Tg|.=DGaP Ou-npHD<DsߎgZ`*A(n4[(mDR 4*a7R,.z^'/Dҫ RTFuREFR[ (HR G*zD10]һáGN _Y]cùPaLk!1Lݽ?7H}wI+BZf)MxOyYq'ZOH%h:>%B侧ܭT#?Zٗ%t#̵^˕o¹ֿ̾\arK\]p^2JʓJ]V|aȦSzb9GD "3xuW&=ձ4$]Z(<ouFeG\F@aaϜYK^ ~S}>C7|޻oY>3ǀ^]/^֝k@TkVKwWE*{B\&ղ~ \CH0 iKG3G@j`H_ Pk5E(u$zy}s[vE@nA<@8GxϭO#_ҝנ9Z/-E6tx3}X+3'sD<(j=h EV,ϊjakΊǚEgϞ :Jb%O&0W(2Q$m@OG+ h&[CnRV=$MA`YD4 3Vq}ZtQ8o)xj~"qPgȦ!frljȵ1f=xW_1m=;Usۙcd6rbÓ|gAe6]oni3mהE[UĐj-zfǩ,ӿ]v)Be ϗÝqv̼ n "rdgjl>̶Ui^rṇBq'fI]'XB5揭&&N:֜6TPU1^@l91e@S2h6j3: Aʕ޽FXDc㹐/s!13{[߮'$K_|V}eb_r+ճNZTIm05|h^# ʱ2HjLzQn$ 0"9iʼKqjf.#jcuΨR`3Ƣ0 gBw ֒BtyU\A&'V1ɭ:sZnm sd:AyׅE%.-"D9KYos:|/zNǻЩ|ܝCa3uB\c(O-ps b\ansy}?u^ 3ѽ)Cb/ұe;J`}43-im ڝJ0&y(A#,Ε@zcK5P9Mddv\,R=(ki|?ǽ9? fF>t`z%,ѝ A=M6Ud*3DYӉ Ѐ ;0qFDQ@ME:LdZ(<La㒕.Er}06$b{!P6TV21;v MusaT^eZxgk%uoh~ ۝ m] Af Sݚܰ@ rvÉ92:]ڴ< SB- &4A(a9I8gA1,n$6+T %5na)+OLSk5n7(Z̞+<ӧl!yJ($֑F9S Ui>ܚҜ;Q('=Alp.9Udky驯우rh,fh$T ~VA: < Y慓0 Ħ"ٌL2"Th|je85U.Xo5޹Syꧠ}ln6 Km(U9E+k>T7%@A;iZ=» J, Z6[u|WI6ՓpԿ$$7^nXڀ%н4Jd3%K>gfP2\p5*P" bBS' vn9гX;--~qg XWNg=vOF$*I.k6VXD\K/ܘuQMTf:Jh|Jc ݚ-2{UVg:3;@A]aHNYs|Be1 A\IzƚP-7ąT?%|Fi=ULv1&'Ǥx>QP'F8g6OCD[mA.4"tOgНo"ݑ *d@k^=l{Af쨏{CՋg+3fFFD{ d(\ o%=0,ΆlFN}&Wnr CPV~Ck & WZ8Ť܇SoE7C"4!Fr`K@¹T4qqVUĽy\ѱ6ҽOg;O*MO-Q_\T [ޓΝ ev-uZd#/ )vRIl֫=$%IE !Y/%M>i#D&S5ǫ)ׇ}Ja̜!`b7tE*d!sq?y t]>X.F!ϸ?4+ʥϤb\J DLr %ܓ gu a,oM*tY_+JP\QPH?i;`B(q8劻0̓izЧ2N.sQvB[hw3-c}W<R:HAs Z6 I$XscKLre(v|YvE=a#s%A8< T~W1 +erD\oK "T?/ʩbK0,8i.&pDo:ڙ}g+f?+?ڎe1ഭ^Ugya@CFݠ,MrϵOj T94|'kz5E${д|UBs"7mVr1 8sUQ g`$ρEITqkD2=u#՞3y=JGdufUP-m̓eύj .z S+Ma+Q&1Dsg5VqVýx@DsaqDOABzJ|/~DRH/B 1[ H) HOhqgCLQXvg̋ Ɋ)"Ɂ5_7,䯆$t˃-Aвhkѧ AJw]QFȄ2|UӤ֟d8!_%ό"cM]{3Nju/U*˦{' _rSZK~8981X 'QmAU5^O7Լ>\Rԑk(ф9Ud} /<ª=K$Z;?iE{t 孹Rֺ{BoC=B`[_z6mO yIM+bX!q@_S:7am$J8Sxl}lu;Cc:d$oe C`ER Yӡjɘ ƶyYG|]nPҞOzhbS_}1ihBLA ߞ!f(}W?tGD줦@.KhDm+,e&rǙU8mХ uڬ0ٮ>@ԑpx*nItA:i`oiW? HgKxnqޡ복|7Ԫsb' eC H`})YZ7j43ttн:1ǻvGޒ85 nW7<3؄ 6/!G2|)hJ.U- G)-TQ蚲$m3o>;ۡ54g?KznjJ~Sآ7Wp4c "-F?!>x%Ֆ rCIaZZU,%cuCp]w;҆éT}EͤϦJ7d'٩߫KY6t|`*%JE'X\/ HZQGvM[G!>t T'y2#A?V6!:#o[rOGrzm!9ۏy"dX+i7۠kἙ&p bspgo*2q&,X,heTċCR (,+D2< .!%=|eeED@>-[o :I:!b;9eC=ٓ:w 0>\Xnsp[EQr6VcQꂨZ31w+B;zOϛE @DWC]UDukSK~`N~*kD_KIK-Q%cxߘ3 LTq\BRqG5wR*g;TX%cM 1?D(f'aWRcYqI=jz1S#!l4/uVe}t*uq4hX$3fJ$϶ܸˉFp%G I,|]$i7J[@G&!?tvP7*ۘJ 9!mFp/Pf[ I#qG~rJ^(J$?Zpډ]jg}3 l!zQ#|5ݵ m Іa'·H!2-`"]Deq$\O'^n "pn!# ,bW[L%XR,uq9FLpdW=FKGѬA$#ћDMEZ35N ֍hޮJ.^9*zD'ԤNfP|xKx[]d ;)*cw`W.v' 1CPxdzLgWu|BMxJQ܃/\K[*A>^UYwHa/йz iNY`u*"n| +0&E~FPjk05Kqdq<%y0^]7TW@͊&#bu[i1K:6J=A 5̀`>oS>@(~ #.9S~jx)*VT=p{t>b -¾"4fN ?mYj|[CՅ3*p2sGѷ <{zrXCFMI lIsIXyao__ڷG '~Sx}]nݖZLwv. >S nJ|eߵ-O=>=r0 y Gf֔<;k!Y=4>%_ 54Qn=̙Sw9Q?y GO qq@]GBrI݉Y?1MoyDo'ߙZVd 8kG#f7 =Hor>tsQPh-iRb]37đCPͲ򊶃3$; +A|0A;Db:=1^Y_kXmKe@|z./S!:jsHd\~5H$ӅHcwt!T FF:}*w컾``N 'ޙplՇc+[u a[9 fIC(;Xn,&u4^)ȶԖt*&MY/ lh(šQʂ8$2q[n"q7 ֞ b|bh!M"HfnPù~È402]ȁy#z)optHV@qRH6$@>>p_1H 06qoP{M|[tU@=u?2/X3u'9$>w11.\hl=oZ?F,5DLyMS\]Qo^#ZH 8DZ0oiq@<,ZNt1[l{,FդKiI%N%.8$Ŷ/3m Tb/XL3s5ԢU;gt^ u%QDKtԽ9"ilOu (AqigrE>߆ܡ](tۊ3{9_t$.\^AF]ݫ[ⓒ VO' ۘC>Q7}4՘UM6L僣s<WFSy-7s S. .Oo*t ?aLk8H^BqU莏ʋ6̽f:d;P8bH[a,@ iɝKYujZv3 8}797 gkZau `USΆrS2N6}P͠|M15\bjf jֈ:RC) cU߱Rt:m JR4ꩃdC´ u }dV}4_rAѼ,P7bFʼcEսڛ𙱼`C7c{)G+7wpӤ;p 9F^(b?#i.beԣuCIG46^zgm0@g0Ke{ڋ{.evo|a϶ߣ3WOn%4vn|MhtI%H;Gru6>1. ցE0AŠx_jEx.n3_R dŭ)$E! Ҿy|rRwc`&78/?ݏF,;vkqQ:KV,f.AU9S1QxўRa&G51OXE\g l՘b6nP6#Cm WB8dS/>cCY6Ls 釵9Љ gj20K}C9$j5o"lZdCQ$QFhi818S_6䎛k0@Z/ٳK7ѓ =ʇ3kh?4kxllv, hR3[nuZ'`iHַ $AoV7:'V>|wO/, vWaݏ6) A%n  o-*QbZA Er~6SPZބݏS"^aGfl_mߵ E)֚i;C?]G܌8 R\)7:E%n!`YLFymر5:8xU8;ۿ  ۿb2EɆ,?l7S*w҃Y*V%54' F#5m uHO(oa8U]:(Ȅ!mxOQwkr>|Κ8z4JHV7`:KP])Մg}i8`C!_1{EA"Psu_[E~ VTtX1.Yֽý<>i O+J%\ݚyu_2lMq1EBL$ߛ>s<*\8#'=ܼPgU"[8=O!EH"WedGJf,h˜!iyxDNV+5yU6cuht<|ķ̑l,~e> VrEV1$b+Asl W׌,hi~GUqFA֔Ng^"DeG9l_سHKP0րN]GUxψY '@d% #N4z#aְ0H cX-Br'J$A:y\ hE|y_Ԥ/*#ӧ9/'iW0:.}^{RP_ȍ}W&rN@F;;-κ{=Z:g!gdBapt\(p]ҢHLkb=c$`p̗9l\=׍j|21o $ L$;I~2X_-xg۹zݮ${Jo*eӉs%p"ꞸM~^[ggz oZ7@ӥ5[\`$B#waA&EUɀLZ%z /-9|MѦmiLsn`i/ҼbR`|<4pISUu AKI2H,\7H\-3A-l-bĈ#DC0lb5r=6mC($T8?[>rgw :'}ʎhK.zV=i:dC<b>`k12ح˳p$]Xӕ&ym V/e ٛ睊@ FK:S ).FruD1E-yߥA~r;e^XܯT'$uT )/z]0qcD:aRUz!c 5P E ȯuutቕc M105-*ޘ)8ڮn&of V8W^S^ct>gM3E3{Ysš0Trk,M:|l;pϩF>N,FD3|28SAwlN %y`]%T0`&AWĞ(gJΪbJ_+XZHl᳎,qP|QN3f8naGYJ]YK5xҠ_b_]H^9өbZ;ǕT9 #9ayAd%7ԈH𦹙} ԟ;fdX"ZtkAQeϒ'Xnw#}#2;D<-wB>AAU,*5tkozMBH'ѵS'<,bɍ`%F%2W D>Q{;j ߤ+bJng:ؿUuA; ]i/ΡmRw󣋟ABPT_j&K&~-Rz, ^րvkH-q!DlAjzT@nUUȺUb>&s6z K)A\xr4!g<ݾ+.(SLpޥ /w[?d^|0/)~7$=~sTx9hn7k}zcVxiեY*5U"j!|*4T˟ndu0:E ÎN,ۗm-$M PH/1/P.җ6!ʘ-DVP5 Ǡ"JS;)MʼY\D3M픝ݺ2 r1(&1(hWn:Fbj.Fl آ~j#q bp|=%yZf^y{CDshnFxJ(|eYq:e7OXf)Kz a;xw=53 im 'n@*7wutAHsrxU9#0 ׷:c xS'Fqv9_ "#sXj0p9e0t[6R/OzET )QjV Q9m(2Y#UbP,W8Y!#?;Z0% gmdP'ٯ!ތX) 2Kagj 1}uQ, &1m?#r~ܙ~b("6B>QK]Щ~tvXXC;FީKO}mI )CCp79YZ2fy>GQi{13oUG)2XY򥥰jRNXۜ8SEWSb$L ̵&4Aq4BM!QIIr {qn-Y Zb;ƚ)GTeުqU-Ў>(A/(ʓF ?bMd-Ղdbd${M=9 EVԸ( p *-ޚL<tٚaI00]i* Ps{ЖRٶ³&4^} Q/K eD)B!zv؏>GJ ։nKB=԰lzq|RdGM!}R n )`|OojQ2ՏL&hb]gdOdqvbWPz+^ ×4dBaJ dC~rnՅEY6h87C s1հ g^U[HQD 8',HF=d oZ+OzuX!@lZއPz%\!_Tx,!9;Y̴48nx1>cXj"fө[" MF]PQFJ u.~ykaɷRSUR D,7"p%h2G_5xBܯo4-60 Esd-YOq\"RwZM>ܘI] P5 H+/; t)Ձc3 \n(EyKHgH9Vž;76uii9[Bo+~^勊{.wI x~ @V<}^%z|]~ºy=o1;Z$|=;x,B-䭊2O:z?UgǐKIsZP]O[˂㘄hv+Q-j8bAe}8r+:sFy{eJDp0A 9j=,dԥ,=j ]`!y79)H`4Ԙxu2$}zgFM-,8N)m[@Sldv  v3w>!d &Y..7G|nz"UeM5ƿb2%ɼgRJlLV$`+\T+h{i{ 8th_ʝdL0egQ_ vj8-K$qO,dZMB@8+u\"i `9cqOxx鱋(xWeM_h\W^˘9]QT1s~q cW 3e/9(Oc`GeU$R~<hd?[<"l B7W%bDXrsUD ˔f!\.P 45%{^P+&؜ݛg4T* DXp ݢɯc6Z/-~bMMH5B̶* L>H:=kZл+T#`{A71l\J DѕM^ Duzb1uU8]mx+ٚfMͽcm|b7jl o"uHϩY2 @BdJg5*02;\nn8|w2E݌Ɖ^($s8/mNRvn*eu ]p̣3~ T// sa5Pt2M' ՟X"Ƣ>1vKSWEY&9l9(rYтx|g iak~ld;(E6v"~0a@x5̻vuVAScf-]Y' V8*,J*ۿx#$E,b`P X_BOQ+K#}j ?J JA1gg̎r$#p' fLq6۩-#kZ%nSFK;@Q k+t$&ste){١XŽQ({<< P\X\FaW]o1xw;J4a@DOejF>L|" R|u6!=.1 3Eh((.K4HAAtfNV~3Z掝9Q y:]e(Et-&\V!u$ `&3ԛSfsHA@rMC~ӕAhPK;`Or[ )0!-iF3*.B<FlH<<0 3Sg%m𭯘7wR4qfd^u#V}wvove5b=Ki-&^ʓ¥dyTp)unE(yN T=v+1/O k?PwrJѠ5g"fI?_|G:.Q[P;,V?*!@iwA{pP}Vd sVĞi, iMK3~ZlaNn`f 'ٴb@Rc_ML|F7 %#*QRtT+Ƕ`{piPsB7|@e42uͳhk R쯚哟0`O9uԡ f 6B-!k6k+0} `Db8JI'që["[Z~ũh\QގZs?Gx*PmfKfϲG 7ճ1[\>jgvzVmjJCq}FH?(كp9GO0;:ғS 8yjZ1%v?n] ^h[nVr#XJ& 7۴:%viU3X;EA&M`m[erQlB*2 ށj3J/&( 4D[b d:>Ov/ ÒozpsDG{ wOx "g' N0j8?dwU-<⬔!E K PVQ#lqTDi[f6~[U6Hչ0jllJs7AX|X2ŋ`\ڙBD#;m6GK._74ѢTd_ONyNpO^ğ!| HzߥVkYв{*\6`+[ /%jYD&f`6V=C3Z%4c%mmSEsJOu]x[r4`}9!]9Qd>D I7qoq|@YF!̘Yy={:wI VXS(H (@]'?Rυ,)`Rb_ffL8Z~& oVc#u;i.oу[D,Awpu `5P/#艐V!7vYAxVݯJ@Z&:b%?-gˤt*>ͨA9 atl}$myaa'zN._c-ƃ nWXB)C\j@' v|S) ,.ʸ:]RoEqɭjʚ GL6YگaBdbJT;>I Y Zzh}K3%}d4XMn gK2 Օr&g 1g)U2{E#-r8 g6K24q! oVp䉤Lha†tlKnC%E (P.T=f'=۳ij8/GJmS,Fa #1Ypɒ ןTYCL9gQfz2O:q3ǖus$~M8 B!MTU W>թijl, e9OT@?F~yLl:|i}J_ᱳ 8E3uz\^ $,5F0 iO姺XqbɺyUpu>!GQ MT㦀BibK>龖T3{v0GB˙O`KpBBRAvU9\V8:+#gR*Z)ÿ&g$VzŭkwsѼǂĨU♜;VH7d-2M-m!uę߫6/A*R.UCD]ߵ!z[:w=n_]p kx]c)¦t{\qTPɭ'.ZzyB{pxA*UfiˋY"AjLAdFZyCp6 gbgQJ]7Q[`]hPΓ'z%|h)ܔ<֩"+ޓVR48+5B5{2]b}-tz/*~W7ɤ{YP:T*-=50fԅ@28bxBF6%-_9@e0|19һl:"mY_*l3!vYդ0S sjbפp$4_ZGx/m̴}Hg nTha7Ǝch`6IV6Y^r9jÑ[k,;^2C\?h}gW DL5=vW_H@dt֖O[Cn[@* j`_0D_q`D:z\B_ NQD)'؀KF`yca*BJE[3H]'>dy^|f0NfS -O)K6xY!_0}Kr5>ЧĚ JWu*i?$8Z_;UL;ZU}Wl(B Gvu88q c]X08'-CRty.b~.=)͚d)U.Qn?SRXİ};5k$E·bEd!W*ƕ7>vee@ (#rֲrbYWۛkiZ|hh3ps|ai^6-6Toq"qx>-JE}%yLAbNjWAc7FY5 ]7*Z*'h׵2${C{_ҮWf{$S1&|>UI}>o KZre6*pbx}s$%# F # dDX| kζ:M~A?rXR40V3T2zԗx0vr2j)JP0i^Ulc'Do=R/z2pC&Ė/wOZ2A_ _V3|< jĀ9 abB-'q-5 ;q  Ze{lN:1|* 1 ;9$LB-gwExH` oѥI*FN7eyz=+rௗP;s L!j'_]~YHm5*a hz9v34e$JS}t r7C7Ĉ?s<T]e$di(G3k(w/Opk!3X5OkvX{Ms1>>UGSq'v&W3ObdKb幚9I;QLeNqo dV~@'ˏ^c5Ə)'&o m8Ai-mB% dw`qUj3,f/8N'=ғúzǺJC%[|oIe h?#$u&qfs{fJ7T^C~SkEz GLM>qy(_0䕼DjDEqX~]eU1 i!WV3Ы[#W"%0" fpQFJ7E$Git d~\%YrYS"- vF%?3b_$wNɡB`y\rKE^gTzI`ȩ & Φ¯Tm"MsS F3ZƮgbL66\]!!D|W lW֐?yljB͡ #+Q#w{M'Ew[)YAY+ Mnu+7.{'maq]^t@N+]]ͶJQK\H?gFB &\mrs(#L2:16ꮒBc d> ^J3YBjK|56t1!J_ !YRUS zctϼ^ڮ-1(a =L2 ݍȯo%q6P٤_h¾}VXcop{KQ,vhL:d2E0`@9M/Bn@271B sl82BIq͔ʎ!H|h>|}蔏p56㋡A֩QQE&Mh|$wxk/F:.F^U !$Vk&@;wrEMU+A r3Ng׵sN~h$g^F@BcB|Rԓ>NJK[5iz3=ս 97r^QH?)A|ZALCM} cָ3UՋsQ˪EҴn-B?k0N\ Z؅Wd:xEn8'&”Tg )&.Y qDpaJGƓ  gF?ơJSZS:G6|̘\'K(j*BC`8RU=S`[`3I@Ԙ0*\rPTdۏA$U]^nqo잾L:9Btna~ғ6T;YR+MJwTQa2)LXݤ؛,$p)a^j$ր1;~m:͆^t&\`~Bor V,v8ZoqsXhlRCsa6_ЋWcȔݧx(VR(e08$<λkis R )^$n*cJ*G!o_R+=ռh$Z6:qKCAߨ .;t7!`\i %e'y@~,q#8P(*9-6)Tu"es.چqn+$N,%uOHB%t$(f_.EzhhSPC4S?yϾj;t]3 ^! G]؏;hx%#(*v#H%(N](+ eS@XE~FOI*,cBj'Cգ{)$ӄmw 1oYMch"=.\n;:)^!I{+Oi)w^E a67&>/yEg4sM+Ȧ%ܮHrGJse) (rzU扴kZtk)r4㛐WclkRjG6Rv۱.焏\>]Jf腤K9LQ1y,"nuVs\|  OBi>dǹA݃8LG*۴tQ,U|KDZNFkLdP~({QxӲp `>~ǀ)a"ƃ2l\k`0JlŁtoEk /29׾}@'[ [~9j!*2(`/oZA˂Z]H~M= +<歴[]H3HbກOI" { ((|ʺN9!( ll|b 73 aJ*c,Nьc!_}į9Sen%/q'u:s?guuZwf-S@^|9H1P|c>AQ:2C5,ߠBF#jyb HNG |"?y7,L1E,E(n"UX|єKD}&4meƮGj}'|>/^in^{^;DMq nxA* ܖ;Jz|a"͑LEྞם)ZI" q\G&VL sf ΂zB"LOʽ@[ 7`Z'әY.Eۅ8arfGاhQi'N*2NOz܂f_ g'`9nh+vbJq9kICbAVdm% !E0!hE[| |F柺+i  n*V ke%OuucrU u%e&a4̫,K1"x"@{g=C iA_~;PgO|C~^ʲ[5{s ا+tɍIF\ɍC^)REmtqox%3; + HCttܣweW>i}SmA iՅ ĵiCBk+E`H_\7 ^BW(x,=\Ua+)X 8G׉⫗My~Γ׏k,W'f䩘AzJ.k+/1ǭ~R\繭{ <6wGZ2 ]]K~/֝>JZw ;Rþ^NS/̿LVuORlBQ=`mũ\oӶؼT9Vd*!{AFlfL:Oa\ԍd1WWUO`B;)\_}Q>'S5nT ;wO,Xw\zG2/9H`+Y ^~£kE?CD^&VC馅QzZ\ffqXM]'#3ȬVݿL[R}tl  ; i/a @xioc} G%]>9{v۸0Z7mzbXDq ?f ҽB{ͱ3iWs~I88{(dJ)BAF`3>sH6%{Kjzc1,]hljyFt~GI"p$_ȖE#qe5A(?|6@3H ˱df%J \k+DdA4uxV1T:Y a7D-]p:j9\%fx{oVbšuMUa>>8y0aXpnr&ЃB&+`XJEhD"]tFPZ :~w?~M_;Y=WB:! (EJ+DtW8JSnv1D,)$xv,-Dc$9zӰ0e-t}4z+~τv'4/ ;.}8$#kȩE`uMqKR鴱4sFldX2]l$ċq=QRl̥\#;eJ8usC"tRэ&|$G(r}3 sZ[s!R'f#yݘ*TK37챼3l&,AdũY E7 .*hOi[esiޥ ( 3̝[:7Kf2UZa)o!!}$)嚕6,53UM 719oYrKGp9[$K</D{(Jd^bI[ JN=Z3Peۑo)TPKvihM`m0{io=jE2Uֿ iJe0=,Gyۀ;oQ9xUVUPMh*{xcx՞{1\Z[iwWBn])ҎM&MjxR^*W8^mÂbn0E||pYqo`8'#@M821^)1m7~\2Zڥ"bX9~dGۄe6\2!Z~==C/%嗐ڎZv! ~ӄ8`$>%὾n*;ZU?ڼ x`mۏ~h1ͱQOL:@ Ft$V9obZx%ҽ7;aI% ҍNDmldO/9+VxU}ɡw" kD|\W&ryhzM%~sD=LX5+]PiRwUߗK`] 4ݮ8ɛݭU~cB'LVЀPbiMӢeۭyDS*ZNF=J䃻5UR>. ؞ 3/sfmLix,; Ғ]䡥 :=QFLǙyeE$^bĹ9B1nߗǏGCDQaz|`}*7$Z@^{n˲l<+)L X8vߧk-X^&!˸VLP'7 =@Mޯ XF#J?uNZ ~~1JɇǚL1l Z"*( Ɗ0OwX=;|V^N8Cv4wU[vI!֠"vV``w`%z9Bp51{JcP"Nl7 v 98QQȧ`c[dv8}kG 1x .IGQC܆A w+`T!`M1VINk.p!lftP"o=@ *\7-gu.DO36F pj,k GEa*m=Ü![f>FC73;4dr?5?E,3E|GߡuĈ4͡anhxlVN 4jZ- T2c(;W\ԹK hDqugILI΢Սz!>#RB+:rHhk0~Zޓ"WH GiӗLV0b3:f*>,ʳ'D!@!x7n{\%Ja*x ۆ~Qkސݭf8+l!&TB2<^fh50)s)s<.S'(R=$# 50w?w)r9֖[Xf;P|<|/@6qDB9eq.k<>K!)} sbّ1|#]ԗK@q~0vǮ#31eQ%n \4qg!=#7n|YK=Zn2G+ߕ^$&WO(HЎ Qr¯,8Fa1m˩K~~ݎ_, 90ބ{9R1sܣB^:js.O4#8t6;Ap C!`#/rpy$.n Og}aͯ%^;rQ׼x(Dr!Eޒ}UY62\!7 5tqDv1kxˬvIBTl8vsN&VWvM@ciR 14 J׭b$'>z1̐TZ.7q'f!29n>ܯj3ĉCQ65*3DIvy8xE <0cRa1Xyol~e5@%EưM{#}[pX4l-'!#Z3n?J^q+[kZ:bRGa[*h5p4J}oxj3J'm ڲϝpBk{. [4;v'*Gg /|Nت]Nlq5\$4^=VG4'T2R@:k;8>-Lu֢%fTt@$3"ˤzSnLB64.N@*n LjaQo gA2'jwa6cG҈T0Ӻ\C6"]{u* 0f(6nAXưߖ'i 7# 6xM3j{QA/YQWM&!uw§NdJ:Aj &y3_Cnv0=sU]'NH[}CS(ص8))㴰deZȥX=BPYkLWl`J)#F?-)*k ..`aB8K 3$"ɢ`H ^׎)?<=HMp)7\wg團Nmo@4xS^ Ջ ^[0_'yppPc%;bYBʌ c`$%.:Eİ{jDK ,IbCP B&mlQ7ʹjm˛a/7⃏?/Az}?Ƿ#j)+-KR24N0 RUU5F{1 Ed.pMf4jD+AtU>/rs}19޿gMrUV&cOEP‚1k8rϰM(#)j`N9ZW o@糭E@YIj: h3}dQ%1 Wafqx2;DZSxEKHpQDnQ, H LtB:P>Ō2mPj ;Eg>]b%Z ٟW͔,-;+5KP`ၼRZ!huj̅CSбфh"\P0:LuđoBChq[Oqmm셹^Ihw8w̵4gߐ>Q;Xq|0n|WlO%v -(0UUyLZN~Оl#cA D` Of{D>'㦙jjG7Eo v(!jkFSŦ_eAu8ت1Y3Qĝ)Ub(` uo`vQ?JZ킣tVz;ëw\8nrv8cG"AӏI bWTZrRBjfGb%Ԓs˞}xP:=&Z,Qr([.S !)۾P:pqHGnJPIƭgxRj&$i*!J֦,aFRK%u [ऑyGbX)dheЂf(hz!h&m=yY9~YK|,6#~4dTA`:!%.qLRu퀆 -Gg^j}ZBr0a>RrBE߽ +o+i9K>SF>= Y%UJ"5<-au,>0L%+B&B'w00`T{"dZlȨ ;yM`i }թ5)銯Ұs>pLJҿEHfHN>Ub/Yqp+|}W:a R%!ՉCÔ&?W+u+u9,9_ Kx4y ߄{JL4[ !?DH .tC~zӄZ{c|{<)ZlPLwۗ(*|p(#]ZD(ԂHqާP`GkG:uubEjVb7䩿-]lxH9&!3 2AlHxaCt fudOS wO2̹ 2rWNlkq5j:;EGE|dLF£:McH: `/D:9:(B(Qz۟G&iV 0m:[OYU@~DEmK%C0Wox3B,7^U"v/mE_:hdZng3Z̼"-<8=o)L:Kwj0, xvy$滪G-i+;MfN?€oU(=&0"14/CWҔ?;5CX}.1 1auO@דú/Ai,"0rUƮg潸s!:ցR^Aw)3;(h(6PlG^xmbtXګ#khzm goVqϓ fUܷ%68fI \++yDFy%14/q F+yIvHw*bMn52=z`O2w/$7-{϶)O''ԽbX'(#:$e|`0) ]+WwIb@ƿƋ9}6L舀jWU[M[eF%X  #!YQ"f܃=IXnj`PhZ$y|ٚy1t/aVh?C$GXת$%DA04><P(̀ ݓ-(Wz6B7;u#hUcs ; Р#R!ݚTDMk캧4̨9ϥ3RQ>F+ 8doړ84ׇ,,o~;cd'ϟcQoE8cm,2UN~,H穈q:TxY,KCGԳ&~x'uXu3$#!>ˁ> oFqfKkG; QZBbDj{oȣLKTt삦,Nu߽<ڿΏNZMڵSG8`qW_v;%{(YyWgŎ4_(\/fjms2 @REu°]O6/)!]z8G@Գ)="hǠŹCx M89P}el=ݬ oj)܀Ҝ"]( cjB7E0jiD :~AƉZfu_:Yڴ-cрΙwoI_bcz*:^Trƭdj{ebœ S4]6~nN1 [){4bο.dAEsBDfhR)E΃~s'7Гp.#gWtVYPg!Mh\HI1Lg^]âd[L8hoD7b>^[v|GZ0[/Rsm#hpa56-K,IA$LiiZfq4rӻPuEMC50Ӕ!{IisKt1a-zc$R)\}ϑ5~huڃnCl/`8><%&<#fQߴ~v(|n 贷w8Te?U=*2P1]Fv!'J<\ʱe_LBܿ+#Į-=~50S_i#/Rُ3]hzvd,=/BiFKЯ%sw/n|<ބ̚P`zK1nܝgLzF]R+[96i*@V9v4bOӳhٻ+is3,@WSxu:+c%2XCճĀc+)K|Po%!hc(>z5\D\> GFptqܜNEL7V/t, ?/"r*k [ ܛdݪ'Na#i$L`)oY^}b0tnJ*[.+e' Juگ'by`3 5Nqw_1yl]Pa mNjgSxZiUhv1,Mh]k#ˈ (&wTDqrԜ [Q5=C:.F*f;cJKxh0DI~LQKD|(ʼn ngh6&IUN䁭/=qz;b?@]T |k§)˯rca9Ñgz.xb\RnbzYXL?A@ǒH.?Ϭ4gvY(aOY)B8o6FOtg| 4hƕᅧJzsB&[B??PMS ?Vk9meޗ#ōG(濢QlO&㤴z3~M*go+x!.ڻIs&P+ۭ"N#~+h: cFu].-k@ϝ9" #^B?Eh tzCLY֨,HQG~:ga"(e܌h|rS+CZ5UvR@On%";Pҫ&t-'AH [)+G!ʄZ,H广rmG _mbF &oc^1gb8Vd3hukrzVQ}Ͽ,ՎQ=/J=*8crJb=J^D{vPTZ |ΖD>9"g넀CXFcmgpK#ya.u)@ɗVǚLCڄ^jRbEl|6//+x[Ip)aɠr:O*0Dgbt\a r1Z$3(Iwb&BQjJuPM H\z}%]ŞT2tԂPqO'MKQ u`;Jz\Qj( ːA؝SrI-~DQ,#!9#m\4&G=/J9hlh4s}.)1usH肸#~&ˁ$@F~$X=r2OV͟e60_g b?dsiQmLLg$@ &>n,zBHj@Lkx-Š&Ø GCl %$e?F4׊+74!I0 5;Nexg{|:Op - i_AE5.HTQ@kc2քsn猞=X PTE2[qn.b\#c(CMBo1u;@3͠`I[M7^gb,gmz]B#N;d"|\E[؈yAU/jȘ*H8-<J{#~O҄b/ۀ.T%M]Z@@`ev,ƾS% ^TMn/àɫ@TdĒŇ%5ײZD!i%C&. 4Ssb>;v IFH=cTk d1xyrUs S#o}g\ x.SpuFxѩvʝD2'T3eOh<+ok-0acX=Ώ~Qx7^vWcD0 hͲ:>8K}}FeIIU[zĤGr,JsEQZ(' , 1S[?˰[QQ}" H?B#v"€NyEkbeH-'|){ϓ!qf6+8rt'2~ n&gaUSJ׼x>zR`P*@pQMVU)Osc.}A},>}*pZhkTL_7F`CZ>^UUpƙa`'ig-G"5"S}yUTw%yۭ2%]Qrՠ<؋ޡ1wU2q >xj]~|JG.FxER (7oCƗ}ܗ}9mˍ[\V,p!RrUm  *R5cώ?Z B7ZrT|KiCz"s}a2 d;ǶwR02Å$5;1fހAwNUz~Z1=)KBԬJ/uMBA<"LGZ<!I#*%xmaV4WXj8~$O(_.%^iu/<QJm+b1|_Wr's,"WfK!ݐL)WIXs.ZG#k \1,]ZeŲZ`HB x4f`}Bs6?D1";hYDz䒱*[SJpb!յρ@j%e Nesxށi^vr Ϟ؞Gp3_2~­UHV7]¾H+H:k^zU!Rs4"eCr+F[~n5YƮ5z^ ȎkK/AVT/ìFYV_If>NG%`HB0(|L)t'ag-֩yzLD߶?E~t1F@kQ=VȔSe$t@(Q$_|(ͺuQ*B9-=@0uM WFQ!Bxmoe+G_m}KyHT/gpAV?FB ;R!yѨᵹ?4ƍ֏TVr!͉.kf9/J[$4/l,8YHS<$91ƖӌrEpV=;B2%zmTҢ@B`G@~Q)Ф~CL~ӎ>cLp);Ɂ[x&FP2&[W2LqsΉR(q 뵬>*THg2ky3GP' d||g;@<3#w7^Z` aJnZ@ORZp:>_y⥀ EI|Ơ1 mv{aV{N%@`0z}!ǫUYޝӌ' p'HORcuAt.Ɔ_t%H)i.hEѴ?9kRwxxWSL!\|/G5wh5ʦa\FSK=aZ$7Ȏ]47G#ڞlYU{ݘb73;xv1{QqTP|!Յo tv/4is4;eH~80RaM{fI9rq"j 3?%[_v#cxٍ42ppI叆h$NjbT B,n1"L7o )Prq-{;vie8TF9oEOWF /+@b/ s#龍1e۪XR+~w̌o}׫%\-Ό^'uF<$hdP8-MɎ+ZXPyLGT\?e aNIjM8% .} 4Hev.Kd'=N?&i^,^?:P(-q>?94(,S^OELwjVs9#CC⫊7w~uߩYbO|1zMMȉܭZpT Owξܞ&:ݐ;3bf #a9a6q; m>UNǽXr_\ !(@n_"^pӔכ=-ֳՕ|( i~o5Y%@52"x1@RK/Mp~%iv=)%jZP9YWŻZ:T6O_C UHCG/u*9ȇ.F" Dԝ_$P< RF/%SıYPZj1/Wc$XyvIZv TJcBpϺV(8%'uE&CȧMo囈c^y.M|j"̟IߕpP U sE[x4m+C,F>FmǐlinXzf$4zIj7D'@Qku cmJfG|.%o+xaB .ǿ·_?ٳ|F/yOyANӑ&XV,Bm(t)⤆Ь .ҏ7TVL?ct:8,m~ދ6G:ҲA-ޢRãٺs4 @Hyԣԁu@MY+Ό-w & |l˺z@0|1 دϵ!W{#[ x/ʧB?r6oV7/*Pp͞q9ԻVAbӥeF;ȅnT2?21+"A -3q,@y"V"pR̻S}}yd}JMFZSCF+&[?*uipv b͠Lit)6=ƍ6~VNɡt'܏xP*aIa!e|Z鐄&_pUM\{Vc:/8K՞֑GQDoOTݸ!Z6Z5^%?K$*IC1`v@LZp#R(AKThl9xS\;.(ˉ6fK* VۙFëy?ܝ-Jw)&U|/Fi` 2R*Pki 2B [D梾}u:<,&X)zk}2A,FPeҟ,]c0jgĈw~(]LQՊUȄ,yp18=KHP7Ҥ"d#_Ԗ0E3Uϫg- O1Ӯ 5-E?l[Hmw?ZӼTͬ$I#&_6NlZh@=I[PĻIɥbP6 @ZZKk53Q%(iV+J!7@G>hyUH,kx&هa%Dm.kհHXʔ'&vFGrFU39ʄ{ڨ8i`PQw:?dYdA=±IjA{&|Th9A8Q!r`DpG4g*D3 A;Sz,m)®Km#;^;RؒT\OcAJ"NdW^vr6Z M~_˃XHGJ(PG$\wv'ivt˵pC`oG#6a$9h \F#/רsͩD1wb/:ttOtQ[  (,G$zo wMl/ A=LM1Q%r1S@<8Dw \xxUZ|'f{v1 !$;\{z9#ی,o.?6ѽTp80&߲sU/S#\?YU!,xv-[e/D<f=ͩ*&VNX,[r| xOI|;g~HM<>XzJLRRU:bq#N3ꗇ&>9X+ (-qSŖ4גˑk_i:ӢQ(i>v|Cs.d鉆&|{CUm(h+V,ԍ7M'tR6rQW7IW}8E;<z1륁 F- z$ne?'@̓9Sng2q xh\:3=a`Tʴ\ЦR{l(]'IJu63,۪={IXyĒzp Α#) ʐYO=$h FOГTz8Ds쟾e93SEi `kg=QgY?tD(#I>y 4mfN* 2{ՇQ$0s(K:B9Qۙrr19֪q{6-Î|'Z Tm?H#)1ė D[P\kQA"K%nI j%Brn=>|߭0] &p^yQ5NmBͶ;=URT~![ Žv.cbq [xXG($z-BU[q-05*Ki`wDxNxyMV# J7\-p4. 9kp}B tw:6S3$e %|cN4p+E4!crAݪo< E,Hqn H@M!فNaTrYxCʶ㖵Sw:ka-퉝*-.Y+$PH? %XR9} iLEK0!J.R};֫h;F@LE#HR1l78d SOUw&j\*~rEOd%тBr' :a.F_+u !R(,FJ &g)`oٍQɶt]~Ktu{ዽ뽱Rܔ|3=uK6ԟl2ڛ,ho~b2<ೌ!v& 7kAA[ 4O!blR랱=#'-D,APbcOnFƿpn&7oo}m z:i^K?f/]tc%X7@VL+b_79vp # @x  D)`{ g=hA!Z_ɋNu-ҬvXw.t&O6(rk8!N$6rm]DJZ}!<;!v}&*RZhGd8pzחvg(F*=6EFuV$s$P'ynVr(c藆 Cd^䙡^WjwJkJUUZj-T#\0JX,ObO_g*8V`]]46_!7.'6EP=10*B7g3+ZRDp̏Ē! I2bA','n8_4lŤjpS׿]<{}lw{L?& |QkRd|8 ?cBefKW8&+ ^ACمz\.< 08F4A1 Q|ױ-,qb.$"Dr'w|i+qfU!$nn*C\Z|NÍN2*x|KP]A=|~Vj1߸eS [νUQcˀ*@~?@:O{i3tz Sg|J0DP0[K&A*$ǵkH4EVKA3yZrFs52F>Bף1_[{ {(8zAݹjrrSzDk5L !d 1q t"JXNJey&6&Gێݯp@=qng/ne10*P;|JMn;ӠC:,19_Qcv$WMsvl06"/m28Sn<n Ѓ߬s{{g.ӭFDa$Վ-k2[LVP-Xnŀӕ7n,[?ϤSoDsجv@Hy"}ӯCIgL~ģL~֚˩b.dbS\*ga|`;45uiqk) -"ۨJ7I$Ρ22ۤoZj$4.VXeZ(PU/Ti*mʌ}"~_Q9j":فщ9i=w/6^|z lfS-3S#kIݼI~g裻hyc֗OVRZ(2[bQ/8\xe]('a -7Dw^]%CZY,ٱqjCfX03q)Y!HhNl0 $GR#Y'3Kϡ !!$=2y'ЕV%uth!l8qs +cBR'MR3Yظ7|MWF̎9l*FG]L8W{k_wB݅˦Az ^j>W2j+>9KK߫N#qB3q"@t>|nY~$i߫V 6R֪`"!Hp8wkBY3OU~\B%dT|RbbR|DW"!iOחamx5'ëhF!`)aikx<>I]]RˉG{ǴDڥg?wI${piIɲ€-n<"xO+pLD^FfoURA BE@h&͙ώ]*"&g+sD_Q;Uu0@_ 7Jҡ7L ̍9.AN}W&!eY*.fPsfZc*S姹I5~e,ZdP^QH՘JXA֎'-~7|F'm{rscYQp?@w6NǦ[J09vU{nӍ%bl?2 J Qvʅ?L>_Q:jc8V d}gڿ{L>oRE#U֯ T݁+r•&;/S2DLJ ]{PJ{݀{attWgC~\U(1ɱZ;"[VL󵚜J+kB(8Fb( IEacIIRDh~4|1Ï 1X]Tps,sI1C#uc(:"'<:q-WF$AT^ 'te؞"'xv5̛8^|rBuX H|YhؽɜƔpSQ@|4ac]2R{ȸva BKaFamK`. PI)|H z (@*Y;JrӀQH+9׻"Iv0z@=JH[h5D16qOR7ڶ+$aKOC;{\}A{SF)~h~ ɶv4, m.G@AÀVsKkMb:?- 3A!#cHSC,觹"^=ԮflDc/hv{ /:+ZwJLaw3ki?p띪@Ѱ.2"NO+=5:GVdZ5%z?=%Ή0 ^l#_Ak`u_09[W@+:p=b5O&Zj{ {?bC\&IjlӸVXSU[,qCj4u@N$h | 918 r}]()(6AG$ Ζ.RFf0@7Kײ Y;JBrd?Ɉ)5xB1 3o3$C*~n%خƯx<rAT{ant{,ds[Oºl},?.?Y(fBMs*p[|3z]^/I C~umR煸ФZI4x j0gzCIJ:7'7ڤ)P67l(^klvR2oYrg,?uVb;6t-I1Ba^'[vOvLU/F>.o2# ھ&=NAzxn9vPg1%}0C#W;Mg0ćDT: Op_/vO'ūaNs+ IˑP]9!a^{xKAgb?WTItYMRo!dzr]s/2Ѝȏx֜Mډ6HIVKgc^Jd5^>9z oB灝u\n^:5 Bh+!kBQiqifщZP2$P]<՞#QK[RK`ez;N%,l2q|3ڙ},EfhddGNU]y6_!T[ff6|[qՌfK a>AXַ. ,<uܘkDXwTg@Cp&㊝&Vbet7R4@ I>催I (itlvJw*T*D_{.+'Fȕ33FFm\9|LYfϜ, HPY̵_ayq*#joN Zcbfr~ ,1$}~8}993xN(BڵˌϷxw M̅qbrUd܉#zu:'g\j` A(qQ)7-nQ{(1.Z~^lpx C ;,HZ7?H0r\![7GOQT*{P݈#!ǢE8݆5۟0H)J2W ۞}|(:H0 <;ky;#0ι>cdt밉HbZs>AMjalG7s #]a^%Bt"*ޫ~oJ^R-,TiW Fb:=PrZjۋLIo㎚X\>;p&d"V֧_mlh|Ά_ڽ J,{%49yd0oFSҮ΋-DŎ %až[!lE"MMzI{M"F-\[6j[?MXO%L2\o.VhD)pth^4VA @Ĉ׃砠r€nR+sk~kv⛵-ɲߙ W@N\ V1G5JM@ĠSxhTT6xfLagaTDt̐UȄfV<]as#7֧s<oK:^rfI Q~͗}fBQ8pZ~[tEO<jľ/+q?!$F( u䩥1wD{XwQcƮFr' ԓo=ef<1[1K^|oW2*/"y?v13ޟ]p沶Q]{lD X fyRVwp 1k"z1?41.f"0>AJt95/wt~>4,À =u*,'*a6XHiq';?~HTZJA2jɥ 6sS'y5KhD; ׵6aäpN‟r8;ʤ=] )7rM+|$⸗G}2Zﺭ>O{EƂi()zZ6A P-(qE?>g|)m!8̣/H8O'M)vNs2i(*3pGZU8|N@r25ipI( _C"##->pzLCs6NIb744dYiH|cOR}gđJ#rFwEj_#3̹QLGd ~k\q%q=z?#T^Uh7gי \1[zr֌bxeC1`7RdJ%mT,T㎇n'&ú9@)s7 d:܅iix 9 ;wm2D;xwAL,jSa &>J>4\:ښhs"5Hp?u8ʺ [1LD^3.ϐ8 Iu쮙B$i?JcPmJL{d&2$^~VkϑYL.)O"?>%~uzfc KO]!q?ƽxVfIc,PF|nl#9+W(w-f/} lvd\}T`+,iϢ!Se: 9hq IYE=Cu9*=Ҁza5HNI't_lRXPb\|<S Kz>pXnj =t@ K`Oޭ,BJ[>OPoE+؎!=Yt^f px"Y’%3 }A \,Hmᚁ 8d̎D =Tʧe;"L_tYxwސB>D 0f+>pz]1e P^[լnZ-nй` !lҤ`|/>VGa%p[ $>39r&eKbkI,- ]P,M܊/%{H$pDEYhP>W>س@R_ Y"D0k8%Byi}3V( p X9uG WCS ;=?GZ%"ͥځDomEvR\5.s[/ߍ(aGS4BQnE4tAlZ'B/qT"vej])_AO»IynaR^l@`1fUNDYBgSt 0ԓ\@|J5Q7ŶJOT8SDل?97.ώCa}N<"J(8WIOw/NC5N C3&.S:؜l|yق`9@I)W7L?NƥV_ID/K#yP/V=)KN/DfZ?(%f_~;Hu1 zRF/J65c[|k(C4r$P&πDZzȭB(`.K :U% y 8G{T7mtgoY[hv޸} Nߕ =7Xת h%KB_"l\̛OsM F7 t"^[o[+.N*4 v}K @I G7qJ*a}#S/%7F"xdQ\]q\e;d|&/l:ON`[*e!58?.crt!awc^DXI!T௓$2 ΃ ev^ U z6ײ"$t39m%h5`gb5%ނAbIFkG`!9y*mB0d}CݍLS'uBKEћjuu 4S(qn$mbxw#"|Qje+w.ɮnubpC_5)}؀:B>>ϧʐpo{{!¡#a 3/(t]!(3b i yӳ49Js֔>LZ/{3_f\"7BIg&sv쫴idߦ#73%{\ҠLh>y3%Md@ygnsC N0/:uaI*H w{OvsISp踂#ďzjg! ެDDՒk,l)AJZ(Y\U}Y3;Vp^@GifD?_<XHHpth*ɹdEgdҮ7-qfFg#w¶8X.MaBR %*5h Qt‡xh6봑ii'[E?&nX->x ^~>.ׂPk͐*=8ş^ q14kP {hj3ӭw nǏ>H#"+ǃMy{jR"hYL3L^M6DMjhWVT`8 \k=3TZr#Y O\6`Pת:+bϬ%d'aI=(2dOx)kNv"5NQ)H\s 3*w$Y kl'D`=?[ps3fJ9433c ^sP͌ZA$9N#]|;$$UH {z /}SrmF͋P7bPDrySބ20݌#1|{&L]da8UI ,A/ Hg.&H->0"(ʏXm=JKïkl^\a0,\=!a_{vU5_umc-R.b.)񈳺*~aηy@ܶL)3Q6YdKw9kAhpjfbBo`$k}4 ȼEf|3Z౎ЦE7YHsnJ7V BK@гV*y2IТG ZgyS[8 B()sK;:-,7 B??OaDFIpC+>~PDBkllW9eY1ڥ#}eDq,n\dNnp>~ޕb(c7٭YMSɂ&'ed"_6pDQU&vU;`CpmF֤ZTAC1Ev9z |n`~q'/(GHKCx8"Qq{?\ \`jdn2'cz[5{ɶ를 ۴2` Ld IZnHv"@&pDN}eπ~ cйP4R[1JQ Ë$^wm߳ jPXyi"\p )l8 br/y_Uڐg?݈3#޿ca6ґwtVMhS{C AO_lKbW_vrΚ*y7&bOw^0OC-ULtYy4o09SB+:hutB}yA=x;8O-%Z!yȜLS#xwL5GFxݞ9(wWn뵠Q!/~UuC=^FU}mMAEM\ 7Y34!Dl?N%rQb,(JGOtW輱~(]G5*e U1xj6#I3)kDK _w =U(KKsNDWNWOZ]=n۬,T[b x{*N_ƱBhg*GF>cs[rVh3#lAi>>WzXvlu!v[S% ^i2[^ [&|T+?e瑖MC]*]ĥ}:*Locf u~49tSd)ra *-6$.*=5sLX$KEtv fX+FN0ҮkB@0G:ެ:7(\<6K4;Y9l9Ǚx"&pܩKPTPhE5 +)qR )aA=*2L0V^(i?)x&G: S6iwbe[sZ_L睪( m*)@#f +UOxR[O:M1 rˋ\eyc~RI71%coGٶ<^) >$f{mihw4ƺ1`sː(X_y=,DKnISY|/Z8u0=PykIa A"C-T iG6P-abY6rFL:}[|494 &"{ׯJFBcbG  =" jYi\~| [WQy#Aħʋdmc EGyWGh*J}X Y|8ELA偟q|zZg){sEwO|LDN݂٫<7ŋLZX5L?zC}<^F2c3LFFtiuU%+kPB2&E>b>^Vif!A mU|{2),[*E_3?ВYo$:0s &?͑x6 ZW>Nߔ>/p>jG `ISxdw<& WmjyZ2tRԵiX F/b4 #> T/9-5DUz.[Lf&ifac0$#3 өk pCY">R@FL̉fAŲ%J=`oP+VY3֧rq:Nvm>zULQLURC&<=@vΩ)nknyKKm,\@T>dU4gY|YP- 0I!)PuQ9`n,|#׾-DgrvP?J':0q}{{+ dL$ruag'l)ScL U)WUA㜟HKF6$&$g"yk׌p*f6sY&-Bt kz!"ju%LOmlkY_pvOS"{(%i27HHFq&f U|7.;|oJBW \`2]w% o@u,e*#FV=_qnAL6zz*9ʈ3gb;uaB0Q\͹9V=oXрTCrSC_9T]g#e2\Zv, 0n9\ i5bAVYpad΄N>V(ŜX|ػwCI2<x"2I [K|y,Hye!7@,v CO,bLz+B@^o=fR|V5~nM .2oPgԝ@FeuWkS͡yp "%BR;G~S~,A=.wKvyY.#CSh<ũ#M)Iʒĺy{H|ϳ†kކ&MfF`WG&%d#Ga:RyZ.qVf8&%׃87fn3BP$#YQ$絴_oݞ̼4,Z"pG\LK~ [$tuFh1#`80|1Q9B^lZt]XFRABA0[ʦ2>s]T*,Ң ,ugE+brzW@h|@ROda |Tp7ՖFڷQuO) hϵAZnGa5^āS@6bg7eSdQ_/4@b L4c|*/Y|94IW^ %TgŊBӸ^6 XOAlT޻{|DQtCyÑ+%dyi1O]Bjst>xhTw"2LGz!_6-kV&EmTF1:t>n+]ώHμh}K|KL,-{ȹdƃwE,Xt5̛!ÖX~X,M"*l /UBuFX[*w'bx4x7J=GX-ԏ)p::rQȡE1 "{ێC0\>Wd!u>N3dpD 5%D8X?spm+Y\{0ɒOxDGtӔf*|_#.?pb4v ݭł lIKq bd"q8:N,<6F o MZdX&/4+Q7 ʘ=;Aϔs^=Z´JS3VmP&^BHRG&2tyX7oj uIujY]9*kѾb K2U6=^V)IG/O\5~6{E%Fl#aH[ڜ<,'d]&~jј9hï8O%^y 2zsx;$ ͻWq"]5'GBݍdc>GrGpfl C(VfQߋdx^?5UEؼm@`#Sb(5N)e&OdJهai̳[qڻT3̧O=9Xۧ"V6#$&3wN(q.)mt7EI62PQ\EI Up<% p~{]-~ UȤ$Pzn9 ƨ![;2 _a"Ieq?0sT]找JY<EҎZ b Bf_ Z4vyɵ$Ɩ58'Vb֓ⷖ(y j{-ۉ}+u[AGjOӇLZQ *pbOӯ7pZ"}}IEk:<].G(xR'͉yRWJ S]\c lbe؅PxUٴ*{Z?TEKr_-+-3Ff2^AفqG !VY.q qy/@}с#n dYI6ȅxBAIr{vgT2R6$3k*bF*>2]~[xDp8BfJzEza+ˡ14&^:;m\).UI{𼄉H_>ԚYemx` Bv5-GjjO$AvD"0;9!X5͞%ףvvp?jElV7֛}T`*u+Aq6?D9IULfD1N/w5HJp\MS`dch5c,nRr1&mh(jBWfӺ[QD .Z畊^yhYF{) EGs<>Ƶ.(>a3KvO>/u s!9(i$ N)9 ʠ/UN3M2s ;ݐʧAH̉F:垦-XNAS7"U~\d-1/K}\ w펏q,ˆpf"%,k.RL<NOa1-IǤR[==ByS%241.*S|޸8-<_{!2m_qĄC|?ziN,q a 2Q(m}=I2a(?A\Ы}k J%+u0>R*۹F4T)d Â)'/RBL͍bX%/a@;9\* (^ML' H$b"qP@ƢSAzvbud|˫¯0Q:TWT_i3ѣ:{ kW]|?pnE9\$RStel1$. .DݩGZ;~{Y2+L05uї^0o4wud< gŇcaLPk#+?$7^d w&x506&S8Zi g'ߐt$ۿb?]r/n4-5tQ%ʱ~ PNp68Jߋ\I|`܍yEk`6Ii0Bfw|f2!9Gfn꿫\UܰsPs*Rm~4%ndE,%JQЂOMjR&kB-8*WS'Taüp(Yj0DMVzѢ*h9AᎤk!10L 5zpEx2g5Ն. v]ԴVJscbÇ<}<@o{m4V߁7K9^\BӹLr#M`xRZs>;tEDK|rfv?1 6(udLJZ N)9IiAY׶#Yyk$R(> i[}R,}&oR/ 0P󚩘E2hkDqe,l"+[.#&䆰4P`sy@*B/רu:bx.vOV7R@ ` La޺ S˿UQVJIfWL~ܪZ$1r5rr馞!lxpQϾ^51fB?<:#v*:7 6$"SmtO!Q+4|2g?,!L8ot ɍ^5ҹjx c#)-n:EOtw>žc:Ʀh7+Y{gӧ8@vo}Jտm=hIN #c p9mSaW@\u>B'!)G-zfJ;Nyf \IY3j.Th 3(i:vPR [~ɸXcYLpCX8he'qdQi B;J853` X*|4޿7TttϳTr͚˫A/h0S4ippUy<#CAj!$cs1U$Czm2T&?\H F]!#i[pG˨{OZRe pboeV rCUIed`eQNj [jUoX'I_h3cvAD+~9AbG7XV+gq"!t@1kSt螻$\>4QX9+"3`ٸ^:y C\[e7wA(l:)7D~qG3pBK vGry 9?^YUj spGGtN8 /iq!A,5eM[ޓ[PpI<ڭ" 7y6(3 h\l)W}50[wa=&Y4zJ_UeaZ(}D-j-v2l(XޓM[A1. E]z{,l,cRD+Ʈ_`=\W0yn)J g2v>1CphC!*̻*w c鲅ɞH94,w#gQk&7`, Y쳟 #@rʀ[;TBZ;%<5^9X sJ Ý;(=Ӄ$ ~0Rk¢}4 , ZrV+ן7{zqH_In.H@%4o`Nw 4ƹHms_dp;ӮC-krWW;Vr9(1Ve 7{Üc.:uC8NSՊֳr{9"yoI$qfV#|ݳ)'O~EOmG.yTؗMF'h&S"N{dLS׫$YCv\UEN_-Mzr#Ѱ\&R%eqP&%֐eMvkSxr{%SŒa9C6Za|jp62gyw&EZ j.c7'&`D:(Ԃ9AeGש"9`SGRqCRbB!E9,po_oibP+sJM9!',4aMoj/ԍSR}r&A޻1g qP=g qӪ9 |c,ypBe;0uSJ|O[d5b-W6պ;"ab{WvݴkDzā,3bܴc @_}2:k܂H_cr2WW(G1Y Z m'vp =]aZN#;ث$?iO@lϠ#Z>OFE~q[}HZ^A786퉸'{(Iξ`=GӶOhEjH "4 'i m8(MQ(&:cnɈPv=?f"͆Z*+h>mYZ7g(ޏ8&sٯ% WSbyq<Wmm뿁ɕ>1Y*ӵFv7'7j#`u.nZa^H\7I%ѴPey F$Oj_H)?liH [ǏYVDV4oG" y vLtUUkb0LC½4c A|?M i^<ܥEkB[ ߧ˂`VʜsǸĂ/[&j841X*eJ[F%|CBX #/=! WHG[ŸSA#'ot"=㦡^qu7%d^#W-c|?{*`\I ;+ogĞ=<]LӫK^HoIbC#lY'.,7R{)4ՁNnlbL`qUIg~bJOAвRLZ {pS[f\Zcf}7"8R57=VfRG^0ByAO"HTJE{yI$%p nv-1)gli27i3DaQ~%iL){zx=KYRdd@b^ l k+_& ih"U'tN$ qFGƵ*lGJ ?mVRNĩ0ZObϻ+XB!xERӘ? xp%qgqG1^2d1-k bZϢl beIeh_?D:h f;kE?jٓH;5:METbN@?;@7Tcm}Pk2] S+ȭlƤsX$t'?XX7HMc32b$aq#}j1.>)#4 12ׁijs^7huK2Ãk&ka1s8ms$M nYh8SevF]FaMO2k{N nx07!"ܦ9 OEW8WO6Ɖ(KueO> X%ȱa)E|r>/rTNԉ#p>;\ 8 EcVFw,I+$ / ?AfIRPR(n!ANi~U_2K&4Wi!8Y"D-N)K݉c'KdJk&: 4бљ_PbI4"+VKS4N#JaB@:Yt="|OFzHF,NJ5g1dG0F#րeO9ѨTc"xaRā;:]O|،b\v}{GmF /'-|-OyH>|2+ZWaq쳙 paؾ[_l( &0|b4n Sf\ǔ-5aUzYlzc\=IQt!` tO$[C1(}٣m6?3!S`'ppUbAf0:L1js8n!Xz+0̾<1?ewĮN~ VWy*E9<0HM,| ,mrp15H~CQ8@w;~fa1(.]]4=!c 5.ĒO RMT%u)+@}dhU d~p1t񣪰=h~RZ^tb(yIKRyZ?;;{0ʹ"Xx8z$b}{F7R÷oԆT&3N:"iGc|Y%<JոEcO.q3Ep%)x6"NLҨ׶S=G=,ŻM+ցrgLb22=X~b.n prl;pOV2YىձF r5e6 d)J=+BcydQY7C8".ӂ%K3k6s*`tS@ N,^ %k1dAAZ!/>WxfGԃu۝ōH#VH[u90B3U n(@MZg%s8e%̉/]gBȪ3yr `#Ǜ+Dة[qV$Ćk?&nXDŖf_lYJgsp`bCRI,HYVQ^Mڜ9Pu?&R5 !sͮqLn?Ps@xPJ.#K;^!9=hzԇCǸNLEt,<ƎBa8-]v )HBw(,?CN_ƽDN)`+*tICET^+7OԥqGcƭxqԭ6!<7p7Л_rq=t\AJyA% ?6G!m1 h/BtFąU1>'(p,cH+}!=MR 6Q+Y؛'xig{čQ :6AF2Z(WH#"W;&6aAѕ$m`ǒ?%#w9DuJlـșG :hv#/Mʛ2պ=t E%woSdv^Acɛs)B +=fa,9M)cI #1T1]j3LHL1VHC\z2ߖ>O7w!eWsSH bm49޺uD`CgiEj^K{*͹ttn8vSu>]n*aiފWOuM \'J8җ[OiMtF0td%:-6/..[oe9.i< y;^ī|8o2$%V{ձ|g~9(8;"0o9d|VwOWNGgc#Nam/{v&6 11<:MŠeqFOA4c+|ԓvFp5Ew3=2/SؗiڭG>7Ħ]r#},c9jS["[h2OӚz8g(j 4>)9CnBf= D4?yF?Vvυ}á p^pG6GFВծA#fyC@;'nM#~{qVaa=NvYfFwH?q^])& iZbǘh%u87@jy5B5=Ed#̒Jk(a2馞8Ya=if_pFYy7oe'mkp@;/뀵Zc4;I~b*q>0z@^K6 ֙U1PtPibMd\ U~L*}߭`,57W&s uZwwFbfA#2B3羒md78LTRP7@ٹl,:} y>̬;6ȸ.s/bڗAOBa0{诔``cW? 6s IKNmReOqg!xiF1 o cYN7aQ#<>s3Kl*KhccT~֝hRo+ .&"5ՒKL*3M@Oۥi #z  w&9WSC̷588Z9[PzvnjTvY`@9.mޓaU~$ E>f!E|_y-@lAP0l/BWӱ9d@j0cM@rH.{!Xa5RwMd!{3ҫ{z崞Zf7EB%w $"edg@y&m8T٪=ۢplTz V\ r,`Hà‘ފ@j"?5.cIA:h'箪LBzStW#(#9v0yh6j{7Ȱr@_CsV5G7|Ii7Թk[4]B){لYRXbbq=K|okMM1c)Y{*hy`TkZ8?THe6n"C/mP$NTl6ʿQZ}\A93o'L%SJό3h :iL[ QycVdàAW4؄{d㰠pE<=y Nx@r?;s(pdHOxnm0"wyla.ocv$MVs%l$ht-]P3H r{ +hImJ=7%T'ubX ЭRf滋1X>4yX Lst!Er\'6z,w4ksn3eX(~jFߕ'l{ .Nz FJY9X]'P&AB!FJ3r Y/of(SAwa!l0%egoq8Oy!(?w;ꞵp&QDd=&0ϫ~218uLw|(Dؚg>k 6Z6SȞKS8 j $eȔsگAL#1cwl6([~'_hkO?J >Uż'1<%:$4KM?L=%Oy M;I̷6ߔrYpCc}B8ID8+^ ͍*:WLH9{\u c`sJ!Ƙ^x=| 9S8)0 썝雧I&n߿cia~au@r-O Y=hC{"c`DVF k~5a=!"ۭK C"ˣi-v,MDjӾLF[<:·B+ @B%WWݽ[(O$t3zj6sb0G2P;&N0lLbYt ;#G=ri)`t&8^p4|8UnpIEҏU\thS>kإuwKM/V% l%JI*=p[ ܛH\ttnAf3pn2F@v~Q1@un춭7d>fo lWs ٲ1͏Lq{}|dRS _0Gv $ 0ζDCĴշ$Fj̭}-3pȡęN鲮I`%KG}mi:Ǒ@㎬zz.,\kr%$5(ao leX0f%ߗ}aA=ATL )zP;mDi{0rM/.qڱ,\m ҝILi JS_ȅ3o Gnt(?_7 myYhH<{Nwd= {jF6xߵ]Yi=Vk>=Scm*LpȌ@sh 듐*) eWߤtvVA!%6g S^t"A sFP=d/N<#壧6.ʑZX*V I+(Q~1vY kLcJJћ.Se"hD3̋}yos[DJ Wb\D1PCU#cH]礩Z3/ah`) a4z֕ԭ, Hsf]aq*8Gd 7H {z1߁!였K~ d-C^J!dd,rȃB\ J"axER&/̡xwȣU6.eϤם0`/=֋#1[h:t2}QCGe~(R`vC/"B A`<[ZEM<J^SLDDdpăH@SnajKLq-I%[b5IgĹmb9M"mc 7W`?nA.t(s`1mYUpI׭f?wzC?S9Vl!΢q8vޣ {*M{^!Kcf)Tl9Eb0p}lRCԟ6T$lF+XĞ=t~`_Y#8bk ua[P.^GI [$dM$AJ" >ygaF7g Cy Q'BeVۋHF)V.% NΩuE bg‚=|6b!'@\z^[x67RX{B62Sk ,}j4;7 gi >ZJIwӁ ;-cL 7yY3Zm2ռjj+8u&iCtFA<&ÔY +,wnZiE IFH$:m˅/T3?X敍hCR5/pTqQ}%iTG1CÈ#vʋWl&#IXJТ͌d)pp2Ie;"qMiJCHע9S FXxG(16bwvb0yvGlE2CMIIhp&I4# /5-s>v(.Juz[wWrOd =INdI(kt'"dcQׯ@ 8|2ç(1Due/Cx.ے4e"hf EJsH)WޜD2dI`w=#Xݦ d;ةfZFS]yK.E"eGRq{}uȯ#MOJ 7W%D%ڋ+ppL\~y|,.ˢE] d?5yL T]zd7բzj/. EG^<_ |zC1fQ֩8IbOt21ULפlF􁋡4 MY,-uM*JƢ.H1NhΜË&^=AhE0bۡrG^q9d`22[~u8 fcn~KtkcB9ͧYlY4MF0#Jzk ewX+pd4'|ysU?YYܔ2:x(`HzHQJrȿ}qLMÈ3(M3I"kyM4Jw@`RJa]HDB?,6(]"gZl9~q~.{saµh,Hg8NdѓЭmv/,S7Q YS,Ɍ^Fq ut(aHkUAYr)fN.κo>Okv'*FZo/zhP.3 uAQ1SPL&$q8zcrV0hy:N!ij7!3:$Hf-}Tm(G fj03PU-\> +h~Q+:tpsWRn'8S_h1uF3ZڒeԻsps? s Ibp̉Oe;*<$̞0mU55MV% #UJ{miZG.ss^@Jڂ>;Mn|%^f,!r @'o 4n`w((; zd9(C3Tr1gY?Gfdȓ9 s~|ɐqMV$ Wk]c[wPh#%C#DLNol[laTfE,;~!Ҡ7Jp-"uuqKmOfߜevzn#s#F sJ(-awAFrk %Yy>tx'dvnf`j++Zme8Х2JEP~0bwU,uꁹy9.s-qK.hP gQ9w'%z+<ixpZ)y醠n^YԙX3] q@TP$Qcbs;BT7I"pƓ#a :B[c]ո B9G'BFU:%n_RdeD=4%Ҁ*CzEWjIbSt(]ӥ+,'*W:Gw7tsn#^c䈩!zY*u$=kJBi15J G P~NDލ*aj uRR0%V\VcQߜ_&qkAE.dN RȅO,>Z֮p[Ʉ\I6.pB7Tϧ7 4|oo.=KZ6:~yK2Hml&F"=7nF Қ#'zmDDsܠc(x le&7M^iDHjr2x$1}Byz,(u*1_pNd P.P=gP/Ze6ٕnzNzS{1fw[i֠ &ٕm t)+9 55~ôO0+aq˗![]F紥 q=[XG F- ezW0\EN>;R0% |S}ID-R#ЋIw#߸Dtd]/qAOR} C/kq0V: Q"%2DO_H)3&JAi^e3|(HO9}db1i~{c8S!EGo[Ð2v9j>Y rw{q~wAٸf)ALkBjlNXUzW sܞzx & ӯ!W#iul/=By0<?7 BS)W xѼp"p8BӢ-&>doΈ[}ޮ*UkgpL}ʰ9M?0e\C-G7%lX;=vj.$ );C\uoqŠpcofyZf`5ݴޞnkYus+u P֥3 'A \؊_/$[ K+uBL2Rb{*:[RfUl5aP~ 8$+SvɺĀ\w^gm -Aez:['~#IJ 1rǗsǰ@2*.h>#?I@l$#T׃"?v]~ Jbvkί.s>V)F*ldHj7RM V.j?n&(22 L D8%:T&Z! nu6$c 8 OR! k Gg6T̜YXH; s (V>`:AOU묌fx`=q_[1(7y6v1ǧy \*lej#gmmC^La݅FԟlEˬ[\1N>J9|(I$Q6!|pP-ߢ#f흲og={Lao!\ g4 _͢|W^/^ P!u]=_zHnA¼+s =B3-}ykT}Wɀv67b, 1N_v%+5D Y-Aޏ&pb{[ic~V4?\+O2 GZ4_0{4_MTi+80А]oCmx|W\d2L-6$D]aso8flK^S/^$g:M'jĸ.xTCu-G4?"%{'%S{S|eEsle,D">R b<- 5$bܳ!͏y$fVs ĺ.ú!@|Gslk',N=d*>u"W. rNQF[CXex'j`>hfL1G?l#0Ű(^mV!/$4 PpUn0M0 )OPO*l-y|[H[m y]3ʃ¸ֽ?fCSVjkk)Ιc>*={:Q 'busܕ3g/0^~Wu`h]ԉt{3()qX,1EdS^+ kK QJw]cK;!;[ B0AkO\sQ ˊQ'_VP*jl;6Qh`;XUލdֈNɟ31W|qveٶ'2ˊqؑRQ=x^mH 7T_h"((+a=>{*^^Iڻm:?V=&Z+Z B@ĩɞb5ݹmp~%W [9I,QkH:KI6E+\_r_[-|fp0X}v|~* QaX}s7cZ 銋TJIBXealђ'e̻tЊ=3 k|q^?bS9c`$eG& Ez$WA{8K4rjba)blCY5Fosy8%\ύG<2U1НӺiR6D^z=m:Op)*@VW_2HW ZŁ.@ -Gz[ޓQQq "mR)n2^[Q, IW›,:~hu$,TgC$[5V~XĪhl7[;Cn˨EYڑ"1QO`r&h֩Y*/Qcz<Pu-&&]Yw_%8#yL^ģP0J`й;Lf툊k\S/O_,=UtW\ZX!}"Wwt]|> vwU[i6 0UuB#QSq{/kNL R'AbEi,;а3ۊ8i,rƹb;BС Ѡ,xr֞Ʊ}1ɭ$*1l|MVy"M,hIt9i hyY޹O<Wf[hNVrtѡV)K1H/[ѸQ#bgN&Y'}"3QЙ-S/)x.Q9 d#<4\%dGWﶄU[6Pp_0Ezh-u×z,Hu9fusFtKWc&_/cS578riWڏ !BTUsg.; 9I*ʶz$?$[Lb5A=ylCO;kHVU;D2؝ ƁKHjFPůУ'ܼv/ڡ!WG6 AȽW=<$P'THfv1$|k1m`۠™pԯLPNnǨ=M$h־;Rr #&7M+ʑ`jN" h3P"9fol{~hV&/N ; ÅYh3 xYP.I]JEUr͜7hg&j/!iTUn@uýܛƽ=WFPJhOn[/{.gr"P * ѧpɃ8-|3?;$5k\R.k1ZT'߳[V}B%м{#{LqDM^J$y!r3A5x̼^pmf/°(\|2i {b&F߁I\Mw[zb'^\i96mn+ºxS@l(y=G蚉FC&R:Z `n6ȵqI. 7apO01]rlgгa_gV)'.L#LA<$P--"$qD t5x/|٥յOe^ ~wP<ϙvU_:˙ 4r/{cIh2Bf|ݶZI mS hf1sS:7H\3 Z Wȍo?r$ qku(E- 寶\RLJ}zI9Fgg3*#z4HH.3@,ۇh/^*0s0tH\xwJ}/V: D"a ":g:($I=!dfJί P;бxXJظt'^3ĜjER=`pOj7Dхwq8ykTsRpoY$DDKbFX۫toH9lS) f/=zZYOʺmʚԣx\:N!| O; dH!~"t0¸`xsBhUbCwCcq7+g \I,@Py|%j࿚5"I/^*"(iFamFI) eˍԍƒw*K@!uS?b$ 51 m~Gd?N3eXb)fCrHiypvj8WcO^P ( wy8YB0LI(s$KGueszO/74I=[%dk>^vu6R3ۘ\졢|W ??D.-kY_Fe`x+{߹#}sFl/6Д& Rv-ZˁaFEE PÓ7 w|wb1 >Ta\N㿦ܥy"MnQHCnyȔ{>2 ELS4`>7m:򃜅s-'L0} >=댂 WE فl-HdK$x{NgeOj"=)f%`kإ&R2_4CD'BMxU)Pr@O%T˧,Qrd#p(T09z_8mT93#Kik0U\d v`v@يz5,;}"mu#NSQE|:M ͙\[Ts+Cﴡ5`!!7L ]DgǞ,{^ ~"m;ױ]0?6@o!uj%o9Fj؉E8q!m+ `isNt% [J] hgm~/2e,z N*d罳\ ww0`f)~H˾C3m+r)H"D띇ǧ͒)(#^BJh;Spn b@]"r P+ӿ{/sqE^s*&0uS=R_8zBKNyHVS{<z,kX"_x@\lORd.4KpZ6>(ۮ4͌loj.sG\uj}kkiW!P˥/O/K[fpcߓ}*4FK cs=Hekꗔ(r. a9}DF M`M "*)Ja'7՞+IR:0|!9g.M- +l sPM4oD~W H:`j9}qʯG8K-X7[fG^@=?@'Wv6*s鿐AЭDZ̻qm] )) |ÃI^LyKۢ@2ق#(;_۴Gb%)RA{ܖ9~mBU.7$BlU rn!I[dO(i _/~[ˣ_j ~EU}{OCzoyM6C6#ڇE%>LA /%. lN>@2XG9Soҷ|rr}-i힌Z 3¨D.܋A"pв# RrZ:̻.& uNPyL0r*Z| De)*D uzYᄂuӦ!7:FO>^w [fxbR: Tov$<@0ʘQ,:Ң `J?ss|Ћ!B[ y."Xt8YW"~rB~:NSB,Բw#1#Y'[s%", fEdֱ7pKaMɏ2*, •~$5eu2/Ŧ%û<-y@>w_҇䯓KGv ozip~W'KR쐑k k׌x16 'E&q@I(mxMLY-Tމ@G4Um+|eP &O)E|ӝs&`1# w͗ق{N1@6_inyƮVۯFl9S;hH?^%l?A*3lm7i(@9i (U9KDʴxm4neN3BnJ9Sg1Eix ͼkV_? ͻ8t. {as[AcwPzO^\LF8#j f"B*k%'g?(Q0=7p+*{* zk?u@OqXoc84R˔[vEf$]W'#`bC\5 K?-luyf\q-e喃4v}zpSSoNR5%=>}xKGw'g+g%&qިgxx;VB2ZNT~ڌLpm+uV.h$ Ilx.`9IFBe'`g,A{b%~`Vn43Jw 23ݯK@#Y~ u]>fxhmDo4ʱWθr:f,BjӃ)22El=J$dUeA2*2 i^G<8"ﵺD 㤽3H/L\W~:,AcGO`3qpz @[kC.==$`˟oU -my$0G_}:6eGX|#bHjx=^Id6snD0JJͨ/BYכ3"}mL,AU:>S 5:@HX.Ɩz^xZ+exb^t,Y}lМ ,whӘPDŽ,Wz]$C}Mʧ[ėKf%}J)5̳_n 5)P@!x6fٚ>O!7~^/[>#\UImP;|n}9C,-~QF\僖;A^;aTx`ejtѸa\f4O:D~X9_c^ i¾='+mfOW)()Žxodl=.^OAvj}rp2Ok'|oyhjj1C[F /GVE/79BB}D/B8+}|`1ETݦI3BYnE*\!{ *Vr-;]\nʙsUȂ ^˥wF$kz>w}-\/ lj!/d+d~sXALHbQmNPCJs])V זtYq|wFqw@壗SUCZȹi82E{u@"ݐ)>󕔀lXb;6eRj>ԂgpISH#;bAKD0ϩKSJpt^ZE#3*y=bƌr#)aqlL=1sK=FNX^Mv'R_Bw@'u_X5ꯖqv[]P%!a+VLm#d*&睨\z)Ilaĕŕ*aw*tmS2\ sV9783X]^P$ !~s/?g3BÉ병Gl{UyFV(^q|ﶟkeaTiG/P!H5| 1i!?12ZAxX"0dLY..e3_ubnG}W`hy-Ic?]t@lI Ggk=|58񩗭7+BrB.8^m; @#8NJ.nc:V_9@J*oOY^TV,Ԃ.9Y 5A[Rvyb4)Kpy7ޚOa7_&HV验%rBB"D][\/#J 6:~Ls~Jqղ$EJd4!lYοV#`w3Z[n퇎CtcE_L5 P-jJ>(  R-m_}syR r9y8xk,z ep[Tnh'h-<ş d;141nnZl;DGe&B]®8q,ǾX!a5B}X=jnwFHq}7dcT᪐:M`/vσ}Vթ`CZzP|foaaV',io`-cxy8,4}bj LH? GF2n:>xx ّC&2&Vru=loU y/s{}+DS>Ux +e)=rrb^@ĩkFOٙb{FS,K[{&3;2Q+(k, 2w5 we0M8#Ѿ]C|ȡְl-z#WُYF;._hKN, Me\[hNX(Hc=Ue` 1>?in9`.?bsPr/8si64feOO<"1q(Ǐ5ǢCݑ[ jc>nS+6 _ d 9~ѷ57`b<uX( l~ٽw1ݪ| J%kݺR`5=/M抆҆nQE2#z)>gd4<=3 S5s9!sǿЬ<:`Lp¢Zp( lge!I%e;8BS'_nE}P^=YʍfqmE5juP:RYF!H@$/Vu ,tJ& wrS:ک[H1fSBSⴗ|'4wUkݵ=a:OeR~h|T.@25PZm}9ÒwˆQi糮8kMԬjԟ*j=x]㨆koH-O|\v&] TjUGuφkw{CbZKŚ1h8%ױ Q[?Fbbl v0IFIFoJTDz6u*fR!Nf*TW9 pRbU^4(#LLbх$k>t[D"_7' b[ FJ3N˫ A!(s+ ?z^˅5xrk [6c]F ȱisޒ)cip=l8ڈT]FUC FZL0_Q$'ө}π68V^64P:-=biʺNa_82 /f["_4T,<# w5k"WUVIe[ k {N~@!3iY5+/܃]V4.9b._+}8띲KyὊ6(Cx{ =xxkh`3m4ƫ Ԇ9RPʤ8{[&l ȗ"m^nm>ڞ(;7q{iD0#ȃ5p_9c^\ΔK@NIE:~%,:o VJ7(88ՍC=Oc|)lzA+>/Qd@틍[}*q?t|:ElGƂ2yUP b+yA@By:;ݔR+E? R@u2~hR. u )pZUYV֙}.I%{Ec4dC\RvW=擒{!×E@!%K䨗g\ {VȈ!LSa鬅vs0|8jdREtCXY8UţB}{*)bs)_AFT¡~Yl=6.h@G5!^d0v.pt2?q9А펈ÐbgǺVBqNTD/+H9\Hgb VzPdp VI>Tު(~٘@ ?CۓH7뵾t 2 t xDb8ΛHD*χC˽*S[ E<˄׻\+rnʣ-'#ρ_aE2эz!j*/@͈݂1mhTM+"-N]3:+xBcUSﻂ-/V :OJױ zr̟ʕAGkaqF-EE!!M\bB:St`I.TPuڠ@J ~mj4n0)ͺ =tUrRx*-#dsL}& @n:6U={V{Ֆ׬b*"xd 1"]+4>>\fՐO&'(t$F&粬%v@Hm` R;{Q}3{()7dZ)͞bvL=갚J3ta^c;L!]iεS*;tEq躪5v)O"Qne:. `] :G=ƎV%PP *Xt·Ӑ}NńNN MՈ^>-$ANs*[,D $_xMӁU״|B=BK-)鷙;J81>uy;ކfz=fʦŕ@ܝSbbe*C0[$!'sXg[Ľ8UF^#:GP^vߌ@7>5#21 -Ew׊jT07 [\Fx^#H@)ʋk&\*y3oG87̥TrӕOݘrM_YV2SP&Uڡ!=/ ǣxވțfڅAH 2*֓g0WwzE)c#Bxܢ}CѺ9PQA~'/N)Q7eQsF eX&,YFʓ?<Nm54P&O*wߝCm5Sj$~sqZ.+wl?#gWJKYy[JNGk促}ΝWmܰ<0xzPt л$X,TԲaL:;#7}E.I{Ӕߘ"#΍HXY_jD׬C"hl=p[6Yn3|T Χ0JrlaDxHdaA3=%:rY`=CxZrU]][=Y_†0HEOduil3)$F~ s{]j}R+VNP3 &,CxEpE#3(rX cY#.Oց8?ʹyE3UYI9}\ﱈJ7×׈{:W"njYYGR!O^G'(Mr wcx#$/mJ~)9oҐ6qfZ{R< 'BӃ%r6,U;eu%U#EqD|ot< s ph@e,QˏVJIkj:kB=C@*d> >*]ټNU;t.V5Fۢ0͸mgosc  B6joƝH)ZЙ1nz`8= T1@|ܮS)o€:LmF]CЏnjic!B)duS[ d0[J.Y#5_>d`|%G&x !6Œs4s]B}92> ڄkoߡIxo-!>6k&T3JMy3&&UtДcMބ֩)HVͺeNDetH,RIexslivh2/oKakDC X2У8(i}"J- *@­ >=_F昝MlSTzt@S5!Vmbr¼P[hUK4 gt^'&kL`Ot\؞qe)K.5U cI>?$~RyT1\뎤iK2;ыi+|"#o:ILdlz2QIJ0ې~|g\@ ?&iXr9<1'yOG|&T47!a6WLƺUܴW Dvl,fn=#39;kĆ49e ~,osش`qECip?y[zpq ^ \+<`qNDG'/207zL a¡[. B)]uRAhhE7ۊI]z)U v2LTBuQ>6uqb{u5zDQLis3ap!Fi w&އ+7bV%?JGVx&?ݖԝc4;w',pP*Oi4YWFBmVS6/f+^"s0 ٵr0q@8C?N(֙Xؤ_yMmȃp_"wBـ=`W H mes-C?}뫅Q+Pp Ndek&F@•Մ+H,/n77Gq!鮖)AD|DH组56P2’I tU!$?>;Q [GIȦ&hozNGޱ!+bu^06FLLT:4mlQbM͢HfVxPQ*A`LL5njU(H5;%*I2N}Xe~C?E{?aX 4ʕyw!߼0Aza|eQH`Y]T*ZQY1fͶ!`Xdn mH"?TˍhkH[S}d^u2mG]y_볤?8vBiTc"M2vN|Bi | kR=9/AA’`y脐:D;[\-;,AʹVFōT9ͦ{ :MD11ޘ t3d`"1KC7n͗p' c ]!Fb[;ǺO@ypۏƈ{F' {{ AHW,|R\Y-]s«yqg%c-H]C4ysP]6\t J #[#A蠆amdDd_l4K j+9G\w >vEz^uqQe}5x;*Ă7klTѕfD\+FX #XQ!u5@>80[uʟ:Q%(7:S;+عv16qn&&Rlns|%LY]xؘ?#&NMlU_XB pxPq$P!ɸT5+~?۱mo5gXR:>i|$5fYd˺E5@E]e–e9UwK{֢g&5TN'xɭyF9^B"g`.!ѵ@`(Ms -1ep{՜}b 5T3!w`rϨV[yjZd cw<=ōq8U])LF]:~aZ2 5nPRRۡv0O;S{SHt+2tsKowga(3JS7A HY ?Q|5\*63@ /7&mڂ4?4wYu>K<3wj;u"_Z@ne*H tϥXE6?TEy+TѼ}}=5b$I#$lRBP,(bX iP~Wiw~s{ ,<`g8v${ x̠*%vlH7u4FfđQGK9e4}^̧![ZtEy^](Ab;o$?Y1W*[plMD8i"7Y{-2vdc'!jU>ygZٞtp(pP+!6Gas1 ^,ViSYà Fz c< V)a Ch ݸǂL3#*K6itX+$n@U)~yO-US]qmy IF녙gyDbf'?~t **^Cn.a=ѭh@6URt1sӾhw蛣c/!>3/I nAp1M.)nvq%Vdd G<8p1>. mgfn*~ Yڪ>? T1z3^jXL oyY,zK5Rg(zYY7f~@\ACax</i;%P(p^q[iييIHdVi}ax{]HɉZtrcH͇hБ䀈?V`^R6jލ"a4E!zhB/pB 6eFs^3.2?1J 1t\5A`R"fkѴZ]UObBߐRxRʀ>pZp:4yލlO _FVҴmNΒ 0_mP%@_w9=T|syHNy,/.-t $E/[ 7tTc&_h g#%+Q RΘϊ̎=y'GXO_d/ Im |IsM5`ׁ_]*2_yJ`$݂F%D*NѬњtI0;!,} gzSvyeiؚuQӧ35bLW 53%rK3EZ\HY 'gqоd垬LWوrhQQ%8;Yb!p$JGiR՞ECK(F݃P?kz=:­p3z@_|];Ww6EvKt$XN5Wi[ Zcvt+ZY Si:A:LCj"BPᇲF h YA^zg55ra(bu?Y6VB{Ww!Q7QS &|cTŽwM2U J1y\ÎVpF}[~-TD~Kmc#DB/k~ȖA@`eϨ845y[@r&a rsh z7Lt4 !?\ɦm;Ex. = Uw%!O?p͊N\wѡ Eѣ4"_& T18vg k*=0 gO<=1Hfo] 7+ql`aK#cz{2#Iɡ"fFe2(@kA;.R[pb16nK=_f\=eŢ'P] ϡiU fhF6``>~-[|qmM`HE֣4(O6vȳƓG$>Ǹ@^w÷$_iGܩ?ms) T2[g_-,D>ϐ'e3-_*+!#TN乙<&'Vʩv! Zo]1!2}`LrsYTT]eUoѬkmQ^&UlnTLQRs̜fwG'2 |dGѣmtVVI%P<:YAm )|ǩ7DR̹w cҹr 9k=2nrNS;,G3;0NhIuuzfK'l{M+Ha!Qߊ%m+RTOiL\) gK'V7WnyGJJ oA3>-U7\"tВA=~[@jI >>us{+mz!#hm47R: خcY^JG6F~j_Hݦۧ tWλ0ke8V9gx":`8!6˳KY/uŁs\=J[0G蠳?W7^CNE&-WqqdRw$)7! ~EaD,c4hI/u gyމ:l{UQOPw%goiG "I+wČı@^d*`(]D.?䓇f)%:(Qq*$jN͇sr&ޮU,sČW rW1jWXqMӕ])Ի(s_q_`9حcHc'R+$yyKMI!X*TI~1P7$]_YDx{EQ0S;3{9 5aL6~g[ Vց"Kٯdov!K\Պ?52ߞ6p=r,cOd=s >SC$sb!0 %-tgXj@lx&:dvDrJ_ԏGKCȨ[<֓ Mg7o!/ͨB@A N/=7d ;w- w?g'ϨvPhwfjr\[il ڿ, `CZĶ_y Gn,1~gBvuk>h5"Y^#C}13 yXӕiHL.{}(*%/-C!x*8mK0'VFmlB{jim.F0Y ҧ. aZY jԔ@+z/9˰!b ~GOedf פQao[*}NBH뿲Q7Ӕ<}S۱ ҕ+vfaV9[u;KMWhPr썥oe92`@ g `r7qvql;<: t (9~>ErԦT炴^ﶕ;8bE fAbW9Y`~wh1 Z*Ka ~!{ \Ry2v 38Ī 8fE`AO{v!'מ퇁V\ 5.%pTpnkX//V"!NS8o4TPW0}ǑHQOUf傐1TI1"FGVZ5J;x|{V82k _88t/u}L)X ]QzczS/ %MMA)`a Mك$Ortv&OC}Qn1q ' b5w#jA~ *ZSTP:n\Rue[6槎fNW)s_IykJ#F, ot4L^-V-| k "E| |h,_;pھP:w dK[@;}|]<+1=2 hq9@V# TȧQEJhj o7@^}t@(S$.p\VGgN9;x|=r"8׍{θi2KvAӪMR*S+$~|{CF^Ro, CȊX,N*5:,P?tW`cS_\66@z|VpAxoH-3)]11b|RMiIzlA 6LWjşdcxZnt{^n Y!NDn~RϞ8XnHF-+k3lt PQ MSF1ǼIBeڼ73Ol7\lhw&zC ߖ -,?|j0FŴ9ҎK#E\U#L|׌OtHu~eUvI?GR_#|uCvR,9jbhe/pS'I&3m^KI(:7/e?wxz-e}R)zKW.>%G Dhϟ"J?\vDInmܲ9+LCanuiE^e>j&QR!ƫ9^Ec gy@\M#_<գ/6-Q?(WV IfǴ{>fy e{NlDMFF݄mv qp69X|-ތMZ۲NTN{!T"*Pz\q;Ø =T͂o@)7ʒ7~OGwN!ѲauͧA\jТ!}9Vev z4gxYMc4!KkӛNɄ(XHSz!&,5'aH9i*..b /ݤc@'**x} ԕJf"{i%\gVŁBmR2j9 r9.ZMH;/ivAPPLN=S;ARN&$ZuFU!-K Z-~ ]R~0Ap =ge<r4 }E$$O s7K?(ʮ0w]1rݳ" hNN EYԸ)ܫ&ݸɐ DXg-S*  @pVsASٻ90Gb:Լ(koȴ#%&Dz!o {`c@4n}%\ ;ʩ\ᗄݸg_T]lO=k%f R^FVctVzܽF8&A_M=1@sUdOt05hn0']k}gdYrS9ZQ,t̫l}mS"`޽bdAY>RwbrJ5ihW>X8_ rN'>,r=,ƨj&w+FuחWv=Rl lodɘr bztϦdT#jA$,#@#JTQJ7?]kZ%[{P~Z~!Nm>olcm3Ѡbfun2 Xϕ",ydSjeL{;Sk B oE]Y ߘְ^Ru7.:f8IΜ%p;# K[)GԾ4ɻJxM1ݔ/G%k"xA \(P $ *vR_I')"3:k{+a//s85)w\6P^SG&;TspcNbdI`U`» fn/8wk {Vھ?U!ae_NSāiO*L 2'rOoѓ>&B>P) 4!5t4 8T:~Vd冦@tޚ@/.'Pey4=+X^#ݰoniL[4k(k& *Yw n[b> #d|V$CtԨ]c;_ߤl9Ag;Q7#?)g!@~v X7I5Hlrn!:&r8%EιiDPv݌cvwQ\:D0 :jOi*9xߒDj1XX`@i)̻Y9<u~ + lU_bWR|5|?j\$`;`l}616)sU; rwccTI9#~sˡ!:<(8n EޞOlfҍ+m/^!^!p;`KMpC dH[ 93 j|9)={VRׅg{6Mb}ƃ9djȧ6I85ۙc;*\ 1&DCJ m|%1k0FLp<$c)@lJZ@t[M7%D%m;_w8v,Ͻ `nr&ph0|Q1‡-0O8k럱`>(I4RSwKBFH sPxk!ɅU!e>7LNlPB Q<ݭ'' A8,-F}ٙvE@TmyTf(!mg3pt{Ff~+^9>Y~HzINi p{ *:3lwUZiri#lIfe/؏szO;2ilSWQU7ONl9px1lɩ92/UثtZ@$sooUM4àqR+ZsS%wHվ>m"k|v]}TP?CnoR]>dIf_"lix, }* 4v` h&4oMSɩ[޴熬Ub;Ѱ΍~n x:^}hQ &n<*ٷV-Rb t]}ED !xOߒ)lv=w Ф\PU.it6VˡPGZϖ2mA>0MAonE 2EF:1"3t'D1 %.KtN='_NgWϤ'ctjsM".]s1 S? oqToz5åd~!#P =wBMBF$A~ͯzN&;BbZ!FIQC'N8ϊp \Fȩ{i<30)XhR`﨣4B5,l/G&9 R_ ]/iC9&JI&9z2Nѓ*qYb>.+ enI4RbG|nW4]/iǺ.FPg ]gj坖qܚԸg&̔%zͧ@-o _#Fg/eY} Y?;z5 gbQs3C4/DGGY$ ^!y,Sj r;Nl7}[~6z-@ZXDt50J> ffeUUQJ8 Ȫxv89?JU W:ELj`Փtۆ7 ;,$`PTȧ~`\E`ܲUhsf#Aę5L n:7_HW֜=R(fMءhIb'yR"!Yl+ڂWJ]*kY^Oc(U޷y x a_d4t #_*,|IIKw:cpw=`ZMzo 48sgO _=NtXXMѳ@'wSLxIK}j$(3G||xaSZaǁ'|O&R%8Mu@Z'=$WicƕyETt0htFސG|]aR8WT [<;8JΩASŴ Ōۀy٦4m+*n>"5UT}BڠuFVK쎣AnAWÔލeXn"ƣcYCQ.Nt/,xiLE#\UcE:yU0$E$UA[oU.&5hVpSTWZܬL( {ĵ|D9^O s8P⻄!Q4>{~1,KU*pxv-m31걺H!'JM50'8m62|l˂ÀCI3{nFj@&SJ1J |HWHFFN-lS4.f<5 C;Hׄ^fo {j+ րp|E"Q>FJ :l[<|G@c=$y_ D@riq=,@')_CYe%frͥrҔO3= oh*d4z{j AN@qԴ!%oAb`PKGyVwmG1<ſoc}v.2bv+ JA7iU[q%3gI!Սk]Tω\07S, dRumMWkԟ.W,3.hy!`t9Fw6 DBޣkQn’P1k#՛HJ)SS2,q1&XG ďr 8b{6>6ykF4ɕ>KF)2,k5(K,1|$eLYoDĒCd'8kgY;ږخfxcN{ί1}_A&MW]tkX? uj)PR>+8?.@:>"e.PlANpPD_[![J0KTQ^+'"_U[e;iM)BNok{&p5K"Bp}ծ8W c+fg9Il%%(AfDZ%:',/Woj7祓ϼ w1P-K7@"S /7wAaSٴmAZ 4fFXf oiι3>(l(R=ƜkXHCnsڿiw>&羔V}}u' ԉh7@7 oLAh"4fz&) -1ȼ nH<{@WաNoY9čN<ɃN $]{'&9[;zߟ9쟍"TڄZ: >AspՍ0iB{B`KQTԕ$0X} `gMIZqCvEn}[1J˂g~K59QٙV۱:0; 1 ks)s@&ڷ-]i?}:%=,%bG<˼Y#Ml\ ) n\b {q9BNH]A~mVOyٖ,ԟ56&vfnm@&w (kY`ll :{fv Ak/eT(mՈJ 6YE[{\ipE{YFEWꭋ3nF ϊpk*cy Ho6NT$"*۴v"<̗_柈")/5@Mԏ%M|=܊K6KJ]-oi6@aG1_fUф%@aF4Z=S9YQħwTňitoNRC.z/_J?F :41NIoTU~$LPxݮ  *u_O0PsXKwSaaww:dvL<ஒ|rоU0v+LkWr?ޒG*Tn8Ԗ8L? ZŽjh܈N.?%{g&X8tFC`Ub?p#h Jxbs4O}../4Χ5\.,`AZMh:~ XH%1<ۑpz!*FBy{Hj?!RMiH+KfEKz`vXٽd7rԲͽith{W\$^>m1mq=_P7JYm,|W.֧wEiS 'ayU: HNM,/q+"eD2vV\BPqOi5_PPD1V%-~}ҥѼv'o4E37?0&dNO\ &M7c.ek\<أd[kMRgK5uh)]4́!HY +L S_%^A3Kn刴+#\&z#毛T)B%D6&9i~a/[0H󢧹9 ۝VHe]QFLїJ.)nc_I1Ǒ3ߒ6'Gf7$k!h= om`@Nk;؅G*s:L ?!cB))Uado%j9ۃ!%r7ijq7~<b}过0RrC#lLE`px&}pT] :IagSfa,~R2FL4.ߩrim6XfC4k]#[ko@鿪ab*Z2ӻ"/o~Z/'#.^#`\i+WL`)?ge|) XB7q5\#th~JLVzE MBKn #|C~\(x`6qLC̟}5?%3clWj?vB D?{w+ 乴2Oqfxo4 Ƥ_^W 24i`} H~ QL\tkFI+2Ecb|)݃԰:6a^φVVf/tZbxI9j("L4(/{k'B>l( 5]~#M(VP.Ҩn9D4:47s,U c$ңyWn.0 PNH-E-\M8KF~"YT^İQvPjТx# Nn$@VtXīK:[Z1|O\Rpwmis-!j_z}c)O=?YUKkV=l[矬# ͱ'~dVO#vz=ސ*)^A1[J[8f6&1s懻~> G a@&8-G-Y&ƿ/ANhƘG,a1 ]V1hvo Ps%p'*BF21 fRy3 t}\U }ʊ?bm`"ˬR#ܞiTG<@_#q4X( RVvWV\]Jy.&/pFoW<'TAdc~uOK-A%:D!欜 B ~/}Ӻ{.%^[|xW$֣WStv\yr@Np=ȷVք}l2&xedgM@ 85`o'hv2w~gQeZp@i~۶U+M^SOClMOѳr* J6f?L*Bf:Q-C3щǠmx]c~q&PzSiP@D0!RܽA>$>3.rۑPa0~Naרjvz},B\cbGdƁI1J:Wc18ŗQeaB[]IMg d/3 iZO!r{8#%GU1b{ᔺʶGs-e4ezϷ~ zUOT:✌5m#9BnTBs$:0-lwL%ћ{c;'_I'" GL#ON`}+"R`.KD;N;=3tPXWu7ױJ~K-=UTqOixϡ*oF(7abY::\~jS T+ /Fotri6xQ-K0 !Gfwϊ-~ E0Me$7OJ2bL>zD*@+ykO#KWANHqC,!Kx5MOtehӺᘏ$ uQ(\t:-arw'{{K%2.|HF(YsuMJH!|dEx@ GɹenPoW4$D~qoL+ݙ@<0D'r&aE Juy}_:5Mki}-|H>(E{vLu]['[ $lW@[Rm44ZXԡPzD>~7V 啘) qh xZyNHЦ&4K9PZ-6CV긁pk/~ӏ|Rm+)26*4>-H 2؄K)m`vJMX.|=T!Isp6#09/w56|f$f3%(A;@^"#8rnPbPĻAd+,F+B^1 Oƒ<UTb.~GBHYDguܨmu^[Ovqf2veKʨ!GO㸞\󳏥:>;-vGoU:ytQXAMKjZ_h =|/&w w &,kvw׷͂^~g|K< 9r? y(Ɂnr`/Vz6«r6X#QڛvUAooJ\Ar5.1pI86` 2/p;ݫf/81W7)A1ǀoDZ+ş+`;/F" HBTD)_Ѹֹ,0tZ$x +oYkfDr}9e xZI:\kyu{jDp+ጳz:ƛV6%l2,{EXĨ~VkD OO<>풵n_@9ɀ2-j1>Q#":+89*n#ik? A gEIGh_| l>7٢5wk+jSXsGHeC*⒣Dݫl[j3Ns@NLIlm!Xra2=wOoK ~DU3 .BOpU7l# {gfk)!V1>3@t>I9O/Z#܈n5:LBI25WxxLK>UZݻtҐt"MɇgTCӾ&VT{+ش0M%TG>w_-oKb ܾSku )07#["SO& .;c,hY2\lԗ≹^XS\OX>(!FVZ^'䶥*2CF:.`u+Цd$!&NX"ȳ6-+ T[STދ;$w!!h>bb2M*N!ގ~/1UJ)LU^,"m6VZT[6b&('[k-CNG%3@aKL9R6o6֞חږe/]nJyo/"MMPRZЋhPR0Z*D5/&rZtآ1e ea`[ZJGʌ@OiH4M#F=:%kjq,pT5/YQp \ (cpͬK7ƥ-<5k^@^rZx%JDz{M.;jE[F#WQe8rEWֹZ:gv^ ,/gŐd{o_>"!HH󹇻E6U]r@cBϡ&ʫ*lUi{_mlG%o}ժ~i Sx{ؔ5y-vL\3.ZF8^a@1(w"i )ƻC^Wxtn+-R5wivIJ+&/Ix$ߛН~F,4J1!Cf!QWLy.^PxXQgKmP{V /j@c kZi (v;ʷ$x$\x(BV(Javؼ'Oz~TBs<=Ǎ4] ӟ"oBHP!)9Moטb?3YHf3U hHY7cwn֒ҟp6-ַZj=jhBH'`V5ּVrFBd?[Rf$]?p 76,1ZvG`xGWd0y`o\t'5W`܋߬k #NךavT)6 `͚2;\:4$`T&xIxP\z " G͉:N@42XL 2^kW VQJ5E E;],ްumX +FW% P#Sƈt8=l2![Y7G0=Ĭg4Gr'on̍TAFpDc!%W+1:yO5%RVwb cVF5H-i 3"852bauoP\ps`zcvlNH`5~j%6`D M LPWyMIs6wZc  H"/?F0YorPص64N2A#pvƋI:{UnW[w!f^o)$7+dz5dj`+̳ZpQhNגʼJrmifq-vn,S|ME1ׂ$t@ +]Eގ9oxL&l}Q8H-E݈H}J K!1>08'kTuKr *.A_G\iU&{G8}ON},{nVh `@7 ,aΒj^01pATM)Ker1b*Ĩu5lf/tݚ<oP}HEjÑ5lfI)AntOɹ!^8>]:n*~}A-YWXu"e%pc,Am{ &EEh{5:^pqjJx0r07 Y2voc RS BBekϦ@gc4 P7TraxT/6&Tk|w+yt1Ŷ5 -T⤊E@r)\UBb@&äk%P|ƿYUC~ qƷ7\'/JB\QJ4QX.h(tz076NHo{Z J3k>MGɀYlcvA@^5:RC|{kտIbâqC16dYB]d&yR{gXaY8Z4aaP7Sb/*~!"+M0F<\M^lO@ n67$WfdF@أS<>(8eRUiωM3S3m( %}Hۧ5OG,JZy]B}?Ix#PƠ 9Ljq\MSzP>yZ+\PR&\ ew(#@I`DDxQ*nƘ S߇bWk-mNGV<8> 8RFm3=.nÏo||ͅ0FQ bTq%= iP%q-ܵ8ԩ ʮ.@#tBpʜ &bvps3硒)LqhY'{5 qқ5d忤ݤA{hD+dMkg 'l! #AKWƽBz\DL ? ޮd#Ugڵ\꟩~ 1&ʅu9v^w`fc Fj!Ki|c4@L2kn'*W:R0V5 T06Pdxi: ?t Ձ!YV*&+16yϔs jrdfq)q|:8>Mgc3R}uan2qPnY76`0,j/c#R.K@݆9ڤ"1q 2 A@hX铇LHئHmJ%R < 1?yL1j=M1%Hʬ@ {ܰ$%3$ĮzӤj~V `yɗ9aͨXQ,8t6T'We}P q^t8țq9oc}andyf$QMD0Ǵ(e:Bn&W 2[L(řJ@.gk9w<+bKwCS$NĘ:$ZTK;9m]%@!%`GQy7* gQlU@,þP90[Nrߥ2,ϐLnM/.'ԫNVy{K-FuhP5J'HCs͝(a 3,A#^%NYMB.66 #>qʭwҐ)ZrB>94>w.28m%vl",lK,Lý٥L/|rD6]E] wJd K9[ "\ 5*"YO 'UaS~Y3@`̐Z3z@]YVS q;2l)vfy#n {{!gak뿨;]y"voOY?]}k^d)ZOMoGP}]? BlΩe9QOc+с | V6O0n5UFxDg/mm["d1 Syn6yȼ|E]9ܠ>m 6Ç4usl/{UQpdËIW`+a-ʑۨA< kR@0'掳Oi[QO2e29xLw ̂ʖrIeF礸"8t)or환_ ^vpp֑\xJKɈ1!O0GfxĀ 04%N bV9΃p-Z8Jϰ ˧FT M=kW~ e &)io|l 1 $UkHSAWWz 9U/2+~jCED~veCn :+Lb-K񁦠()B#m<Ξ%x[`~A%~|ͷDۮ-eS{ lЌ2QI 1f[|pu0Akj̨$)5uj}>.PFXMLR;"gI Ene[FeUv usMV2)Og":aݘ ˔zETPN=G%;-d^%l)cbL?izv xn1 @ +`*9/ ow9WR veYSQ. ,/^)-r i㯣?w9GD;:nB߂a.9J=p#O Bp 6f뫩t\Όv+PN Ca.v@jЂwM'[.X1lg# op*N&n˷^jP8"ϩE<jt&eM_3* lz 2/;soK|tt j&!Sg{m]G'59qR\jG{aLJS@ *@,ռU̫ڜq#؅YOI&qJxOBȻۮhYJzZ6QO>)}<߽fǶPX,K4!DoݢM7?/e#>Fi \bw\zOR6$S'oZEW2y^B_?k;OuņD٢W'6[Ďct|/gU0,6P۝C-\O@`xG Qs a0i ;aݹy)K|[(VaܔiSq]ِBuvOipuP+!lIK3>'<5D)7D P+u^ͬ/֗ ZѢZ>&kgGĩueV=ғЗ*jT$=z܅,@?D\;V+zW,Bi?CKoĊ6b-: 6 _dIL!o!e_|>^/`@K(U@_aԥ,_% 3?~-eq!C~oٵ(>QX<%$-f‚A!AXiuNUqBT5Zu/9s`>J3Xbfm2.Xstv!Zܠv$52i{$&yD7ލy}8V./~=* +$,Era{JNj"Ym7 #p% ;4Z;p.]`c/]b"uBTr B:}c㠱v iDkSHr#FQ* ~͖CcoBdQP ZjABt*ekr(eE{-6#fl"ӎΜ &اc$&xcv6o΀c0aաJa ؛J}"=tݎ~BЇdWdRweRL^|Em 0ThFZR4]O5Sw2h]joL+E~nj:Lт-l 0 oj쵑(hG`&hB(@9z:a"N8%3ii) :Z"N$ ]7Pd1R^Cru͉m/ی7qtj C19F͊ =kVo)&Ysj'3dd9b*T=yQ,P59WQߑo#hg[5bYDDh1*$BGr+(e>EaCH'+F I"ʹ( l saU6ImUt]7RsҟıdtnZ" )Ź=o/p}EE}>wx1]ܿ"͙Ƃ"2者=fIImi>UlG4~8tN͎acllP-AW ޤBK+C5?ܾ%4ّ\VZ߭X0r2 4{"K[^Źl25 _ekU{kGaJpi5a daxV'Q{~(t0%)FѠ|z=%ZoUK:r8@'Y!Jbek沖G2ZUn«Nh|Fb)Fgznf s%nmRl p߅a[ ׁ\~WA2hݶ=-y.se,9m,m:AJ)fb(6q*' R%^Y3MVI;(p0RΆi0SG*o+CviIg;IݜM>Ƈ,p$:C'HSeK#uR{rh5gHh,VzZk[--x#@dd2ȍ:!΀|үj#OIN;b]gFpbc>2TC-VɿysH5e/?`hVgлʁ#o:BzUC.T4}}I8`TkED;urb%ڈ$@_@mg쏘3Mi z@k XF%dXp2K7 "}߬`F[gsEiz-nm1vT0tԄ ^ TQoo8ˋnbJRmEtĨTxƨ eBTQvMdYեk%B?X~-+ⲹTGQmC89'( |tw'A}ZgOISi-裌U@t7Sy;7Љ i 3g~=uOU@XyxpxtSD"# `h"ۇ~˂hb uWR?<4'z@s׿\|*QZ*hybhj+3(|6`ᾈB sr&m|?NӈE٨NId _uI+P!k%^3a.T. ˰P | k`䫚a5=) :Q 'VUM:U?s>l9vGtФ [:nz~Z!PA[V1aI V9rnF_;!} d+!̟O]=]%B 2n?B4BM$P2J#=\ntu{Ԑ'7jrimDuEws-2Tln!5w?Eee /%\<^Y~hg/'b1Q@Wysa7~Y2TTwl & t庙_ɖo˘5=ye)]-7z0FZ46Qj^[>-M4 j %(K^e+w>IHȚ(FE6 H1 :MoFM_K'O@'0i^M`sܺ#9~YNh(_Y)suW_V@s7ZBD&.UҖl 1KFlj͔3q'Sga֠:. $XNJ-O3B56.Hؓ9rp6:`ʈ'Tĸ`9X}LĨj/9J-Nu#8HSf\d&'vD=Rg&b6w^B.G9vΧF)ˣr j+ ds !MʰMr8Ti8-Fc+9G,9d?.) ? ͣG|ʾMd^̘.R˧Q3i 5k3mlɡ1-q'DQӋ@O՛FlofD^<#]pC+N2j+4LjY<t't 9"D*7"#rLJW;_"3Ҡ%=+f/UBpSlg-6N}}yfNa NL@I%ܫt- ,[(,ssvHA1ʅ8C@35:JH؝\EQpQ3+π;w= RBŐ-}h'E ˥1EGΫif*~V~@߮c .K;4b{o/ܮwA4 )NS mWat0a,~FVG:Â# WTԾٍj.͋O5B>呜EyJzXyNƈ cE&ѷY ,m? #k#ա@ sTW{IEr؆,xzDS{Lܜ$햺(EÇqOe\PNA~9Hu&ˢKCϼMnnd#, /[-&UO/}ybH j vZHX+h|@w&#b{G4qN>t0 \IO@>wU Aߡїp1a:6Qͺt(V$@UILN$q[2j$M82c"tbM8(b:H@WeN|1PB0?g)g즹œ7$֑!mn6*c A[QMShVF{iGxZKXuv0EYp]zK ?!+R佸2PZLʃucTZq)R?F˥!P^Td`ÏvpV/ QW'ڰ⻽UBxƳnrV#;eMl8ŝ^oS'44`xos+m^X;aˣrEhRfsϠMr]sʑdt=`o䤰"̱rIG5ċBfkh$ZS2;pppz*uGuݨۻ%?qN?#l8 IaRN\2hGT*ۆ2UgtnInj#t\hqZ<;{|.{&L$ C=çLuOshwK=LHѦ,WT2Q=.KSc-vґI,Ja(2:ppWi n@$D6tkḅRCed+)9&2"ܲwœ!c&= *LD%5XR$}i4`VJ7`!|=fFvH&C=rck_Q":.i0^VCGz OD7kH 0 ml QU"V"8$b?9'z kZHz) * GB E>|-0`X%X-#⹔#(L?)q }Cۓr#lV.֯bvǬ:H¸Z&7=Bs0d`{zC'8%l&쌜 Ϡ(!C4Pt5pgk _Po:=?v:, 2J64CUqS= 룗N4?V.Ukl׻?"9SSKaH}{sGCU8rܵ4)ur}'%P2"Nnal s6H7UIjȹ!kiͲ]ݓ=9xFRh]͎>CKvgP̾\ہq"OYxHXa/}4h[R6-KF71Q/I&75i0Cr?᜵~G:z ̡0~=~b :qQ"_A Měgl;(tC\"\,-RY~_Fӷ{>H a,%|d2nL<e;A z 23)6 R/]Tcżh˾]+sZ3ܗAnKYR,}0 ]I]c}%g\*&| TK  69aج+B'bVLl`R^*b".r5`)RMx7>f#:-R~cJP[ mao RWl ]BkJh!磶u hҸF5pr%+ 7'g3RCGӜL9AdWQ(b0[!7KcഠNOC̘~D~Su['td$!q/ to|`Zz7.YK]7Ph{c.]mԄ K{\腸gϰ) ;5M0* ThdG!0?N)tZUol/eQ&TV}FC6ɸd5Ғ-$[m-(|hΐ'T#R0!ř!Z > :\~{U( `OTۺ٘ӎGok-L+j`fzc˜t}H&ގwmf. - *x-Y.87zvNFpAghX~1@wUm1]P N] ["yv`,R[fG}0Yle! >τAHK4f60Vփ*I$bӥe(7'xX^iTPA3?3-sXw5¿ GXLczr[J4: 8JtO tj1jhK =NX64xrRxk:.x"IFǝwv٠ #'% }NL 1=7|ߙV;qÑx rbS !{Os) ܏DZ62Iy@;#2/;J:G4jk˺~ mO߄H 7Τؙ</|:9HUPgc3$7stޅD''BHCVI,ɃV_`ӒS޲Jw55J4bF%y"l &>~$ImNw)o~OoOWIPk,=Dd_(cAG*0*%j51>r{/EṕXI& n]G lUL$E&a|2#Txa gC!QLOi&,X.d0&>k<|H`?sxc%$JaR$jiG^c ^3o}[G8<[HaΑiה1?7vW;9Sr꼩d$f%È&ɧ~bE㲳}I(m [c'B[t:晔Sy^{LBMNQ1԰fbGCԑ"2`'/=D1 {`hLR{ Tz ^Lp j4%A^. BjPj<s!G8n^>܋'9̾[jy&xؤs}jL]Mi*+b[q idN ?9o-AAw*}\ w8׽C,ʑœ% "(bZHž*$(s 7<x_¬:å1dk~( eihS*hDpM|qM/+2X6.y&q͝8l P#f^߿c TjP`U]e7eP >@X! <EOy ^v#n<}xuŀ*_'f].7iPGS.emΞXyJ |[|~X=\HORT]HCMEͳz''dXf͉T, '״<>x}ceIY];u>$Gy!ԆbÆk"`zoe2FA+i1wyv͊h hOHO4+ogku6jlĭW tIT ױͨ&(i0b:#MK,W1h0G7 <A"k*AU(z[*MFl A S=8eIZz䨠 td.FXl⨢?RaXvbZ^QlaKu@%9T.&Ć#eW"Kj ~ЫCnêZQcVL藁FzWSQK~&e -پ/mM4PJFOO6yFr"N/ݯ<݊?s56'Y+ nm6|3E9kؖTgl *C#Nŝ^!x}]Dfs`(?m#GHltܓmAnQ~*]u@*# /}#q.R^}c{yvek!£(9;8GMySk;1',,0 '⬰oo;?*02t =/㘯R&cOí!˽ ad:Vq)j^-E-웥7V8 X}餀Li*+ؙv% Lc% Lq9,heO]vKҔ (Em%wj{• 9 n=)zkEI'"4 wl`F%;/,gebp$]h'u>zm-*P+H2ꏦWǿɞQ  QqW4iw7%&k2$Z28G~bd.b&M;7MMTȮY@#-sjn5K"jl~r b^{S[_.KZ3=[ȸsY"; XΜKIRXZ *n}z꼾m(LUW"O2.-vSxn%!;&h.OH.: ; T֓5WrgRJ0;<$>Fl Al`ޭcP ]֧"lX8l3Z D cE=[z04n8ϻ6wN~bZ3$)— u8 NbDgwu"&L Uy<&Oz oQ3,]enSFe+[hAD;kIEJ;^$"}lna8F2PSsCf@y=jZhy9Kx`p fK^F' ;˜]VB| iF;3Qv*TP>XS?`Նg`G' sbv#DT}P~ +O/$*3#E(# uM;@Ii,w9ݔ3@ZdMgďYkn^iC& RmXcv!3:Eߣ;rP\#]@4'\-fp4#iWaC⫼'i TW:oH'`8M8GGiL`1>?Cc'4 #:`mV@*>^M Pz8cje';G4Um#:_e>]hIvY ٹǑ8w7 }+LGF 譞D2L"T}MAj3OPYea(ZB75"͕IOx/>5GҪDw{,ƺ0_u+3Q-f\0,20Uw/8E|m zXySj'/+A9/j WIJϖV@&?!=ZgVk S8<\Aβ{)iAr?tҥykqgS#pEq۰jU)ͳlۑ& 4 ߙ^Yyn?KhSR8SEz1<]Oȹ f`r SrOղAak`ppjHJĭ,C3JHgeX UiL\(ȆNqHVIGB]~۲,wg?%PC1m3WAPd~4/=2^t^L 4kXR2&qtqU$JY129pŬkUz}ye'v]u&0O٠͠b҅~fKz˽q[P]ý8$whα@  i^oKސ̄ʖ|0;ߓ^X|)@İ>lAwZbdZ)q(dF5x"hE[t[oX+ L98WolehB9Pvڅ 5yü\aToa UW3?%F9!Q pvR#59naPN'{Ƈ@K[:B=+>PTgjP@[Ș[!"Q6{j:U_O?oh4ꆑE4G/R<:<2 jdGKFH[.ou⭘%iW%{wb :R&RE@dMeucwnlN9*Z<~D2ޛeCHDhy/t%@Y~_rWZW}gp!eg%]eG ֘Bu0DL!+=2 Uث-6eJd #ŽB%< C Eg3C&cT[70He~Q-.n //RV͍ͣ@08G3)$rcD/8y ,{Zsq_#-i*nuKe)W GTM] Ӛ.ӊY*' +kkjOZ" 3J:sM@vKH )h z[7dɟ|uh["v})x(t&}'ۄO}|ؙR@_m`[@zi:eUY>ٰeoZ)TV̎*=_=._fS`GbV갃}K:HmdzैTU*@&5֏-XAt|Qigx +W.Bl鳴FV_w)t U'}0554JxF+XS&f=VM3K`IBރat[l4P\%>l+vĦ[ir[->;~pL /:a׀:&`6&72RdK&Jau86vUc(i^N>YifH|`ӿ@m4^Yn&q!;VAE/pss۞:kxq)mkߣVdЙ VtVׅ9g)KTJuck4^`|2ΟMRR[K/q2i[U^/ 㺀$v1Vp e} WF|)JcPy|fiQ2`<GM_.B@hBXY-Rnp@6d rS7!^J##FzrqF釧ƥ x@rF )~ 1-6@-c+Ă*6oІaeCA&AT ! ߺ,0χ[8tjKp#@AySΓ"+3U8tĚQ/n|O(z1=ҘI!V/V?5oo/2>ND݇ҠĖOOjWkxO𪠣O}grL>'5nL$&qY#H=q!?~A{\xѣ|h,De'‰ Vi߈,9FsЃ&S_Ia`1` & )(xY L&C]\X#ju =_QZτʈt<i~r hB)X͋iC+:K"DCD/]#q`Byz I w}>ڱԗhڼ ]P=aRñ==_0z`H3o"^]DT@w e8Óaum; zvk{h@R126XX4hGU+'8Om?s?\Ռ:|w/g`6լH̡ymV_c{vUӹ`/s&a }kxH3@@jyU{;,W)aMEk楲 bpó"|WD E۷n~ke5\f3s*Lj"B ~aTo1Og[N2?FֿhyAIĩ9~F.`*mvᆻCƭ' i&)H_y$ֵAd!HO>Xwpل9M?juY1:\H}*VaiVmޅ6YIM%6lnM@QO]8ia ~tskNxy_ꇕ{E^4h$ pi.c aҺn؜@WF2.4ܡřHCѢ.lZ^g|@JNc;embڸe N5!jsp|RM6]n R(3]gn!{IS%0my`epm5kwjN>V]+1َy^҆ZOVߎkJ 7mۃl|M Vs<WpvN4Eahst!z,ϲ9jA< D̽;[Z3gSeeOJ5D9S<nY:Yp0ʚoqLӺ*Rt7E*z^^Y*foA~֕ m1x`aiz*@/d*Z35xЗTGZή_+7td ^u@'VMZhT&EβZW@Xܤ< QpǓlrMb-_Y9:xӚPb52j_|8T 6P&hqm'E?MCL.b!'ꍼqQ Aiwqedt~,xx7 ~G!8YM(\G@ib|F J˵j5k?.!!/E^! ] rH K;-#ж]͞L亲 d􂉍1`Œvo7~ ni褍pO pzꩻ1:%R ΑMb.t5@m(3fFYE:i#-N"|V RnR~~wVwhB*cS=`V$@<֔2b1𧺭α)mKMY~vZhP۟GoUtFY0Wn}[ɞWɭ͟ 0@Y…cjKFl[픍V8x^dl*N$7:) ^x]>(G&un\r76v0haI^FN}:X8.aq@'cv&R?W5ۚ'4Q ɧoLWF}MMfwF4zgc b^k?4P%H%7h84>]@Γ9;Iިk^CzȌq%U=6r/J3kHu[əCML]1ozU0'B^{IVB) :Z` b۰zBH]ԅe;IǷ?^r`8 9 %M'w}tTW8RQ E|i ~ajX-pMZ T ~_""!#9(jhm{wB/l6I'ya0I5:ʁgNbB.(=oVd B!nj3ȵH䙪q,:dwYxʞެgǒ&u}%/FJf~W2#(J١vokXw+i(G-ئ⑍y4Py~[szr oy fD'tOP/t~ ; G=G=< B)*uM~{M& x/%EFE֦|}F鎍Vb":u$UtlJϢjw'9D~%Z!=8ŹR.ݛA|٣Tʃo,+ *]rMff1k,x͊?2&@jJ-Q0In9H$l%B2VkJtS@kZ&n9?$\UI?U:'ZU;1n;ݟqw4~E#aw'tq1vk}%X]Ə삢I ,~RG5qAz6}){L(Alsxr ,g*Q;1rl4L%3 DzB4G1?B"(BW`C>]e^ʜ6_XKO~!տ:K^yj\gY) ljl!'L;a:X7$Q% 4u4{[ /9lbTs|> h(a-JvLPE}<E84>5arؾ]L8Hdc>D Tjt95R' R(k/B{ƅe;7$]aᎬlJ o)4;[q%P_0k*3CoĆf;KkKzYoU}`#vFm[h)@*E%ZW1pG 7&֕9(RE*G]: "Xde>L.jiOhlg] TR 6ηiߞ/5S9$L'I(y2k;m!Me^ QS>}"AA"hLql }FƙNkJo16~~"IE2`D7v$VM@M>Mӣ}V~,3?nmQAW[\[,ZzLZo:@GOw2Zæ'F6 L)~V?!%!6WtD7Vq@5؛Z#e qTZ8@!|E/\DžY9yP_KCGﯴ8,Ii,Niq>} ӡ(Vq}5?/ALzX?̅[ ,C+5䯸zO(kӋD<]  .GrKCXTmy}NyA?#30 |fvibp Vn[fC$X֫ɜ>@:Z\2hj/Lkzwn'[&™ggr !476C8?]CaiF`uVP׼:GMs'Ra Ehra (Q;fS!RhI qy,K_Ңf] f8 4m98~D_@|m@G5ǎ!g2$`S'+㶮C wꦹk-0KAɻzQ ބѿؽAAW(9itK^ckWLZUЍ5D?]% rA' "]M羀ZJ(g_&}{K"j:G?B9i `x\fΗT+=|7>uȶL^m23718NA`xm?`c*Tۿ5בRgj޷WkPk0jKYcizK@$0ӕ0D6=e32;H32F ~-`(Kt 'T'{6B,ehZ3"Lxm|`Hx b䍬~|oňԏRw:*:eQ^/ʨt,ExV/dz(7HU#aeHX3{P &~I4m}@ 0 界~anAx_ &kB:)Q|]wNV$Úco!TOR5!@ x 1l,tsGXBK/%IzX@yjϟՍ,'yfvwF_!A T~&`8Bk{lVm\(x%!&vk|k^l(oGuS|ȬТQFy[JTHAG_qD%IVypN\mW$96QK8ٟ&a2MǷ38@~2)KzPG-_͸pG{cd5V eA;8oq}""e).ɝ,=hL\'& ۝.Բ3ѮzJ+P;5[TjCt-\>i&OXLF/B*_2sENU~N#\" ^ԥ[3x}Cj1[}jG֭.8hniXG<򶆕ˢWj#BG)n5RԃǾjҾQ0;C-mt銏1.2OLOGӘ h-hZ̞-)$<'zDaʻ,DrF4oJrOgF]Si]OU֞;"KNʝՃԱ(6y-Ӊf\q4M} :-aE-WJm2z229<#Fmm_B,*eՒ Ӡ{ݶ7˫]E^l+L, O\z8?UbV$Ho3WWeشNo2=&F$sM,_}!>FmфvHƜ˅:F@~{X^&=.%Wbu# L"9 !jTqu vR}[]-u$%GՃMAIbm/SrtJASAa8gHTVI ]譓eXs8JOX?3^42% 'Cj4:bk?WQɞ Ya+XAKAȨGWtN _l|5YScޒ` 銾>T,TBNx8){|6`Ӑi>iiRY\skW A,{YE2: Q.=,BOnx&{\6K*iSou`h8hdrxc'~oV3l T8t֮t1GM\2Q|KyJR@A0dFTQˢGp1Xۊ&rx[c_Ĉד_9%0"6vp ,hA3*Z ?h7T 3(Gܪ,rE%d[LTƾ!6γLj( ^F_t:4,ukѡ-QiA<Ww)Cs!btF^oIO}thL}E';v-I_%ܖ 9oȑb]n62IY+l}6 @[4uS 9 $L5W~~kTAkԏl ϣ띣xh ?v"Sdr ٬1&}ɜ7V+zvY_ 5,Jq9DN?*? ~=CHZ`>DdM~Xܢd6 .xGc^pY{2ѶhUY xIY稗22hays,]8PDҒy@ ?,Wӥ7`>x 4%#{6A$DnKŰt37 jLcpd;=Н6 B~6FB;ط~w}a#_뮛 ziZ*R#ȥsw$YT?n3,&-+u}^P;jS#7o eN^r1CP~P5*jX{1 Oj)Lܙb$x5s.a&Ճ) 6p4,Z<99#GDP1}# '+TOj+r3 ԯeQ+dH(I wɫН?5юfk$'|?(<@Ք$CtK˻&d"`'1'V7LMpz{gW(3 >ڹivC +nP-tЊN#$;8tguGt sC𯫞q~Л n_uZ (,=dUJv ϐq":}5Ec|*,d+y7 U-^T}R>2f *?m(.I-NQޮkJ9TBf& J%M?U&#vm(wBMAg{(E>G-?ʜzTdOgC͏ğzhR iQT*̡%~ЪgWFG V 7lnR2޹ҋ~t2G8BՒ.P,[jH1'mbBb9*8Fv yCA89Tb Zsd`}e-؝~WBi;q=x:yulmz0N$Ǝ[֋SwV˅~fdpnUl^wX2ۢ\5Qu4_"h˝0=7&P7/hh{~/hR^UBI450kMy Hg'̱3Sqɪhf#yUaV&?6gpP_G]q{gP>f,H  V V躙W OZVA{ XVꝪhw{Gp$!'̸!i.7̎13۹A'AINdSOOGeCCW`j"m BGFQyV_oftÈ'RgVR nSd5K=[TaŮri?8~Lt?4k3~IN.5j0}{)rϽ7*E ήO/ll%u^v?ʟYkձ٠Z#qq<,~:>>nw@yƹ:ٍ, p|"҈P@IiG R"Ī/V,\[ haDŽ7n"- ё0B &fx3#?PWXQ{gٲ (U:P*6x,dXi,n+0K2rB*' ^Э A8bQʰѶ5jOXH  ?4 W"$ȦB;Ӳpвy 3S]Uw짒>Ʈ?"OE*DP?Fp9[s1bV5wK x@wB J| ,DH %넣[@AHZED&C!:EJ&3wbuA[6"rx>WV.Q+ܸz`}8z3E 8)%rkA1ʹ2´¼ CZ-;$~H1ln JKN+ HV ;Z7$!~LbÚG˓ef$WWf=ޫ'fr|+>Jא.:2l$9'/0Xpj xy.%DOJ\82SrYn_3xvMmzRhNwo 4mV`B :qgc -yEV+7[×/9[iNig30'G>xx٦ۿq`Y;EX>yxAMZ/3\_$~c5HەyuBUiFN#^IU_&%.t!%N:7HVtT)>J|Rkz{ha]|xf<~%70|?VV>Y>i3(tL8@\u%] }41fa,;{+iӸFÂaNg߿{8 bg}M==`Z8Y}BTQfJwT[rejDMSw9 vj>kQ}($r%<'=PsВ 3oƆk-{={/=da/wSޭ 55WʠDnyoU FHQ+ӄRs}- KZYi&Hiۚ8EİŐ?0WB2Ywǯ;06hJВDlHͳGsTqe ^o!B?_k 07)gidS(U_mBi XubM]R:ӵi;fv<%]V3w;(T{r- ڠ*Ӑ/v{)Do_װ!{E9ǔdMm:V0㘑Oz}E9 cM4k>64Fì)ou~^E3M?\#f"Y$9Eb6Sy]W)8.k'a}ۯ30A+1[hEGHk~r7DoAjHD4`8>"-fŒ ;ifzVQga}Z0ĊRs _e5T!{/laxQF@$ԙrQynjd",3K@x * $?La/ͫP6$׮4E ~p p3tb,7/T.c,=i!՘nX rRZ)Ts:ʪ9.w(.V| j<}*3tZq#[)NP}kʼ :DƍuxFGíi#!W j+rv΍ ^!9%4hI/"d؂T} ˭]` qr7:T;!x|{ ;̖ =i]47:HUxdUPRZ!8;@dUAdX[ 0Y_3VnZ&7JC  iJR|paH` owEI@+h-lR$`XILJؙV_&;$8oT ֧$מKRPc'[NKa>9VʫQI2 IC-h ,6+?r` K(OBӕ5TfT nvQٷĞ`QeEv$SCV *hC?[KMT "iV~sXa@'KLdKqo0soT2 %d!4qDdc YtYʖâNy.4uޥswHcf6cr@ژm7fLfeaW8-,nmP3Kuft!o+=Z u k_96@mBYtLX8kYkOeMmu8Ÿ)A|lG)#`<?Ͳи :M_Ax3N='yAf.ǍBJK90lz%WCxL7p1?cUǏIH%[*GO2-;j4bX6뺽>r1sY/U٪UQhcҝ QZ?EٖkLq_D9/e ʐ;Pܫ6jv=o .^-=m E]TV'7Ww.+Qxm7I?*rYobuG6*s 4PdꂄH<3nq;Ƈ0CE4w7W割QJz)G2B>q\iƵsDi oCxj1E`J3/|7˔=c7|; Cb 6!HEːم $vuS울؅Ou* THVD'rI{JJ!jl3w:GK4V WėRW\A8t*`?]XtLe&ƀ-S@eHp |-Cͬ"B\!Am%M?wuvճ/*7CfX=G5w MvVl46O*5.$]CN.dnJ谧/?snW٫]'mzd48z"9.YY)ܣ魩Eܚrjir㚾h[]lѣB%E~1L`K:8<:*OKEpaTw3AHHP0dEua4{m?;&_p!b#sRi_*BGmͦ(ƴf'bcqjJb%jxjQ9s{:Z6;AZ<}}|zP#]V6`UغccK襘ynVԈӤV5|jkZf* b}t']Bq;Hג_YUt;3m@~3id6="I>Hp 2ǛR0j\@G/7E+-{sbMuU~@_JP@ ^>/yz҇=)o .R-%b\vĎRVc+V+s?m4ۑV:EKڞN}NCdF{<4Oorru{M .%$,5|WT6Q6x^1{"v*c^s0FUqgH[J2 rC0''P̫oA!?[Owsj8j74*L9eUju֜^/|T.k~8H24FÌ׼GaTfU jiMTYHY}]u9u'w 2#'H: hňMfuk}c:,ou1]X Sھ+D晦ZSB@ʻ ȒwE;[ؾ_U3F,sN`"9g&@8oJYk}-jvJ`NP}~>no]h:#cg!U@->|moES!ݷ7vWRkHQ@L09;Hnt_R鯹yDSb=}y)4=9 Jґ)e9 n ,VjpF:a}b~I$.!z2D4Z#1X~R@>"f$Mr2GuVNNJ~ W-'eG5Oj۫@nݳ F5BBP"n QکB}}VE RfC+w02]}>bx_[-0DW8QhNa\|'>N7F?q؎6VξL4*A2dC?ȸɓJ00AwRѭ%IVNJ#Yֳ?B|wCIjt K=HPtpI3.\I*]EmqE}qvHeHQ6H-N ʷR|DD5Sx>Zۘ2v @$:_  9mddk;4"%)]6ID9eϽ )RAn=`e,4? =؎d7R,^x6HD| Ɍ$.mmNn! sTjʯ)s86qS|T*1}+cV.ld/CN9hlAQzmk/Z㒍qhDN51eJ_B0Og#|-|=?X ^ }I5h@D.=0x~[4Fc#QmK| ,?+fG]pco". kt;yaKc3lTCG;~ڃ9Lh0_2VQDRo@ u;!65ѩIc>NZ'sרYxϥ!x`^Bvu'R}B4Ez5ꇃm4:,Tf7I5D]"K"Q2Tkn:ѡxϙo<0Z3YtJD.HQ@);ԨCHvSf-R MHK#Ɠq?q|92Tmc+^QqclkVkBpד[$\{\M~՜g2̀TȪ%eM0μrMbىcۘ']avENh'uev)75"c$)vMpn/X)D5zeEWC˙;{2HثyaS:x96_%Rߊ= <#:ϏFYbT"P;&#k9kXW XJ,LY[JRdۢM)a?'f7\-dippܬ_=}[N;$6E|Q[;FMȄ%_QNXR/NLImoaj|y#mAO#hDĬC :5DMki.4Iwzt99ҽD@xjɪĉo]ʾm-$#)O.rjtYMe1M* TZ V5,<;tj8yrḯ&"zfz^BRn0&JjFr.0;J"q[! *1K]f*,} .~EC-M y@rr$},R4.xYvgD3 vگd|2Κc3ok MlbՅ:ӿ:ky`0V!3jߚ/126QynZFJY9+=Ê. n"c.ٸ73( _)#C1|L}4=]zx^ Yoș <,?^ɍ@1 i)U qO%~*Xȇ}4կ`W\T8L3VqIvʙI\^3t0s_b0r;U.;!W?P/Wnff]>L* `Z.S5a: RuY.W;lcb[p.֔#sf`_y؁ O#B֣$#R Klh@ijp/l1Ix >cj;/7F |YrM^sW#SXۛV3%W\g8eOt51FGbt ¹#@nAVjuF1$NgJ`&)O{bU] m(ps{RNŜ{%^SS@3*U4]!_Jym=Ӝ M<5u Nol_^/p5~|TiKIp,c*#5v#ȶ+4 zi Dn콻h&{DPI/O|P-3ver `"nfh6I >h(2{?UQuL< N-tVX1BwSRp=c&N{#?,lii]يOH(|,pB;^_R>$,bY,.*YQy. } uR[Sfi ~/Zm\xAtc튒FqaTߪIwsAq =]ٝ{Dr#ῳu 0u] rQ&-Bʃឋh1bG\X1e L"T?Qi]/pM>*7ڰ`{1ǨK[ۊeThޤi@45S !:nfmN{KЋ4a,OxS;IW~Z Lx&^)Lj?3j\9q>]] O7yº-F87*+uC7]$4|砪 PFXc~+nji2 bdCsO*SliѩZBk2fMO L\EdrѮ,K"i0gk䙈;nnu5?^2\x|$"dI)W%1p"B&Ur=9FZkxTܽX}ku-SlOIlCmĵhS!\<4pl](= pok49@k8 AHK3B}K)g9cC"X҅&rh:eR !K\/aGyF ߇rN%5`̃!uXrUg4aL3E@ܜlg2Y1ܖZy}ߡg_lk'e %5rq){MS!rqn@4{ @-wB-NxECRi~EЌEc~JX0;Rn3Jc8i߾W;Q*x!9[+$):(9×m_SP`XZct+]9Ww g~^NoCPVk'\S6qIps|k),InaogwUxlᷳqeC`oxfڂwfck&R,rYx󖍍0."@g9i" U-21p *2=&X*IyF(W1Wy2DvcӗT@q9oU-\G[7O"2ʦ>J^G{pZ[C`dp>/ϼ+o/ǼMɰDk1ocU1X-ecd? 1N?J,zL~r<ӊ_g31<؃׫<RoQN(ɲ&wq[X|u$+LYu|f1&OU1N0df"(eZnkkOȺM0;#/?.>fb^92dy3-(?&ek*LT78{dr XzH]O-'gQT>CTL>Ӗ.5xS72V qJ /t-yڨS -O dRQ&KX~,ַ\!1مFka˾G2Phif]nj&B* kQX$ ʏ Qf6J9V. _(=ҝFb_>91 ?׃Vƌehrqa {n'"C# SE@&[lH0i"3vq[L –"IjŰIeT7 RF]~ԾClүؖTX:gWBAM gyaL<*Cީ7S]yf\Ei Mu??mN|УiR8X4ᥭ~>_w`SYe pG?6,~Zx2K8@_'XOؚ*>W(XI|oI+FbQ=XRa ~BuFž"oX QCd*w˜сNZD,iL.*Y2g2SȾ!saKa;񘃏9/⻢_ln+"88j4|Cfč^q~Uh d f^4>y `h=wl?#qqܧ67`?M/>i!8i:mvIQ@f{Iu 4*r5o40M+&(G3jyZ@-gr%]a]y}4qo֨{F-OM2zS$I H窷-'+1N⃎ &S۾H&(Ivn4XN:D}sح:+i^Qo%6p yDc 2dMvDg/Y1+{b< >v2 ì84qEQ$ 1'n 8s5DLr^!-@OSJdփ\QIvV/7G`KfNDȣ.7_OQwh Go )BH @Tu%KWd@yR kKsf@nW0UAf6hشu 2XH3eULiE=]fdyqypta{uvv53\˚\A\3z7(̤P{ z{ R ;s[1BCɴ^[DijߒY}^HH&#XfyRYГېg#F:{=3+lVk-O.k.Y>ϰYfr\3|Ƕr)kE*}^ޟVvDLj.0!|W&X HUvss'4ay !+(Zr?LQ9ܙ6(Jba%a6*Px7Y=wTn'L+>DhBa_Jg+N%;N`2ʪIh|LvT[R1;]c՜LD)pk=WI{wA_5v B;y<::d`n$bN4;K5vޚ?2\>s-sI ǛM$[W]B .6?N?Wn)<הXzKD\1leD/C;c]%3 e]quxy_Y20~DxcTH4|g3(pTy9L?idfE-s<į"vknF*Otdfm( _NE)aGԮ^5'4> 쯉IOŭM$ug '0fiMUӪlmTPTק%hqg~t _* Z@ ݝOK;84+FT\0Ah\iکEHu,0Uv9Еfz=|B %}y j'ʆo#)BMz@G^4Ę.٢fo?s*:N셛j0 6m\`?ZK'iZ(t#LcgK|z)<޺K+ H$Y%eC6.aGG~hoU` F#|9vYH@nE:7fM^uc/4Q2x֠̄>xKH5i1 B3;,P tQt<یW+t:>mB̄wƱ'2!Yqȡq A  @jeͶ&;,tg\zZ BH;}=i{Xx& HJF`VF񚒕筒]kozHEʓ{BS4=^ZOMKtsJDУS}nXa$KX<5kJZOЊ^ۅ`=s8LL`iWx'gWSPJhFO *G4N Ϧ`­#Yւ3Q8.$ 1|%uT" z1pMqċ8S(Dȯ:dK1fPr*R:G:#JR(NO<O6DC{-yzoCz,RP|PVԂU v(ފefYV!MW$ryNrJn- ݻa"wiH̤ڳ \q؁HS1bs!DV9GDx)CI;Ak@+s"=h[Zj=eD]`ƥlds[kѾ$;"f_UZ.F&v^c jg˫APOQ_kTs-ce8|T'9u#u8B{Ѻ$hzɯBa#sJyBJVߕӕqwD/Ech)gM=Fi2 zhXāHV٩vĹ"|pL+8O,fmn]:ySl'}&du#E}/B'0k"-hc֕A9 ZI96L q{ׁgLɑÀx-ޗ|KWPOPgPO0 jy9!.P6`34M&e#t펀cdRZO1DV?O[[o2:Zn!c;iwyk{JnBݬd1<'2xXC'YYsYM" ,[~/6`ZjzsFeϥT)FeTJSN~R3}44hV/r)W+-zZ25QJZp`O -S 0V"ށZr*o-Yk29~M3EFvl/J3d/eϠ_!#2j&ԃ&T(b5<T^|i|?8б @e JQVڐ6!cR>[Bu(xJ@jmf$L멧,wbgK4DtJ\ڕ.ٌLjɏFt}-ɮOOgq5dLV%|`m*m3uVĕ/[@HjFN-']rg 񟠐ړRn9Ɲ!G뛄39W~k=xGhcO՟U1n7nhHxN\1mSCK~\e737DRpJlV5$yGt'`'a>TX e=S*Jz78U݈^K1vi҇~'w Ӭhe7_L>UCHZl!vW 4eYCmsF#DwVLW)uZPs!Pw!Y R&XJ!!f!0I"723l2 (&phϰncHxP} )hoj גU1;ͻE`yZB[yQT3o&ѡ%h{Ji=- 싛T!SL47Qd㈧ Oz@XMw@{jͲ~X(u~]]β߫7:'}yˡ':㈂nͣI BLw5yhHUZ:dr4 RGOn:m#!8I\_|Oml iYPDuo^,Of($Lu j[~'2۱@5ludPx99ݙ. []1p:+I?p9^ս,+a2\7J"RL1,4_R+W&epo֡ fڦ>qx| ou̘gTBl"!7Sn3w+]'k-!=1=?)^Vr\UrlA3OjlE "C`m$y60"/h ! A;ҮTE;qR P#mh5TY}9ڥ/B+c"R(ٙmR$qgVbfWݐ^e5c~h?u_3AGT[8s2|[Շ7vHᥐD9"sPC{pZ% ~% PW$ (U]id}8ѸL|o vv&1ޤ?Nz:eS߮+GvD&ǺG~# KR,YTqi8_YPsrP ʠ:H0[&D1BD/ agq=y>D] 4  soVQ]Hz^Ŧe{[+q+'o% >} xS֛Ie_=(*Ƨ0gl+}ÛkV/eFaQȕKKc|L)\cú Ũj?tܲ"Ř=e8"*QCJv)RyIѰeb쭍0C0c~УZ"5 F:5K8g+j >|8a~!Yֿvn 1ΕGePǴyvyb ѕw4a34 Qhjka@h"80)d;tQ^ƯWIu -CB!m=Do28ET ǘPЧCx7HV ْԽ $H`M$%8ok@LaØ!OX+y=!vŋ)\jyQJ΃xQTEn!WF=?:m2tOLyWλwIY&!mr `mܖZ[;4ŬU>Z2~Uߏ_*f;"{s!O2{)¿q@7 >ƾmvɫݥ R(>-z@Dl6pp牙ToP4- s"}itdXjonN*OVĥu2z:u'&^zŪ)rGZ5/"u?Xxr33 =I#AhYdlE䴑 s[h7 J 1-Zag>o! tKLgVI$>}HZ]ebl 8X K_L*:q܊doޡHŌE,M+w!_0"ʕ߀鷌;xCs ^^ļUn-۫A:W Qڇvns> Y뢄 ÐN%ƣ/:tM艚q IWCnS7\=e Y.|Q<!.T (3xu,X_[uR +g`,ӥ)T|-rC} $060PN.q/ybCqtș1+(aEzv$ݵy oK {'Qm4B :BQ\f8};XȵT|Wxkn' O5P4+5Yyh,V{C Q_hMMIi0=Ӥe|i>ejø&̜, iD %g: n%H}Q2x)r=Z:h5_amDow+55KOx^g6Y8`w/zxz@r|z%O ,c~3$ mҥ_{[ǙNW\g:#0*7M,lI T*.Y y-ܙ:H*H.Y^v>.bJS&k&h^|v;aToDI*uU!]:@U[$2v.(@?~SǼ~hvWl-h,MF8ъT$swN8T!..c˳TRLC~ ֻvZ}L~sdDYoayA<סYK{d+N;VC=gorNb~5Fb=)@Xe'mK46S k*%h6~s/[ۖ,@!mڪ *_ZWsFZ˦m@=hů9iWL%:FQ%, 4r*S ɿ4-$iewj7)˔ ;|΅kr p>\p[_=u"~W%;?l p/+sMKĹKi}j5PCn4(~_GJ,Ka\1|aݮ3T'z Obq}֩ѕo,p:@Sq֙2^ νe۩@8 B6R͚O&f]/hP2?FMQK[At~">(?%OA}aPGhKEO<ߟh[gKo5+EN%i}d1|ʱ"b:@zߞtgse`SB(u@ x0,oo^@R67P3Rs79"%^ J\cSIFDIE-E*oϠt>Xc_)Ɔ$m|c( y!#2?x d\8*i~o!2㭡jdQ=ôdYE~ɉY 9ЏԄ_ w)i΂Bۃ9 bo3cAtթ{2"~3ά@"5ny=ƦEǽ(OuLﳎN,=]6'N+vٞ]j|KnRA$y3gFю;QBA,Ómpk0#X+4+6we|t,z3B-q"˳*rwe9UOĺ~3ft[%O(8mI  r1H[p,H$x 3%0 o@i`>!J5+VeXyg!tZ͆wQd g%d&vQEB%Ow"c|onNk=(t`ԇݿٲ(^pOxG?;j{ Ço+:<_V䄎j@V`l׹Y1ui]K0ޘ4מKnX֏1k{L|Zs9XӴb vB|7)dS lֈl2#K(|u=~%3OC[GV;gW@0 ol.@\P XXaybl,ڤ},V.LGLX(sFlŹbfF`FjAf ;zZ/pe-R~`whϣiBXS}p;,N Uޘ&R|MCfU2}`aŕM2+abo3fFf`w iu[M{GG|NhRGNbdO;V!Ji6Uޤ_S[Y9*Cp ۖ߈_%Ƀ ܱ6DIt°l:*/|=ڦ6 UG,W] NLUJj le`07( ked09o_/IQè,V͆r* 4I![S v){$ -ֈHɠ6|Q _B]^3jiCbOw%p(>״WY #VTYPx HduEbpy4JglD XrZ 5ߨVc֏lZ/ONΪDXC%^_CF^ȧJ(뵕&iQQd z촿=|lX!ZyXqfK(p:ej͆WE{e944șXeHfgF\"1Q1WD_g;L{qυ˲0U܄[ġg<:qW6gVZ2~g ZN5.n{TLGQ>?͘UHB I$a)gY49竨_ǧ.\.?HH6Xv[UZuɱ1{r.[W'*EȪdrj)RD3=kq-U$w߆D1%iFݡ( 2ro46Rf<YmK.t pջ"9:D8~GSEi$sN;=8iL)62hqHW&iAj޿i*e@A<԰?2)ϰY6uVЬ4lW `c\#W+RKe׵kLdUIB TM5Hr ~?C V XK>{ f;9x}.ZY075HGl0=r@RPrEn;Z& PBjJ/uZ7zNvZ_:ayUEɘ'f0i˭n3#s> +$c%.@XC.YO[.?cMX9&H5p@t\ PjW^9{։Äg(Mj8,0*W 'nz`ɡU VùԚYmmmӵ;*L=m'Ka˕h ƒ0i^8tV( YXxEv=ȍ3=?>-O HͦOn~Y}1D툢=i UfQ)W=6F -}W^=Ԓ)@.=YMv z}|Ϲ?A꺔Ýq Э+{yv~E>z[&=_cuέeuY**L6x_) 3-<_<[&F32BtmSX ګ)kw`Vmniamйt={tM[+@ x4ߡ䴦  =*|tt\w2XSυa?9lbmlܓ}s:4"pԡT ZtRanF ZJ =ulkTE:jD+]J/gOBr-jd3z#bVޯ;:,&K2uQKg_sVzm*VZAz7 =1g˺:1T< )ٺae*2d2lCVh0 z"?*ZuzXtcMck"> 2Zča&;chƂFv^ Q]Iern>p/%7sE ?HΗXgb Axzkr\4w'Agj)`=' e(Su7Ar˶C ;b,zw@z"C4dX*[vV*ȍN^2S̄z%8xŨA`\;H=3<`;eqY p[V}oeozx-dA9^]jne? #YD \ TܽEV%6[0[Y9`;g/XE~w8D1\tI*ͯI[\"jTXP??ҖIIɛmy aQVFi.jspm~Cq gOfCk&kI6pPNB*\9ԚC8G\ ,Kr}AvE*:XI`=٢q2é3PIZE5២n; I W9rT> f67Z6`'ax N AlXC Po\}T`u%Xo`EiN\׌l ظݼ',>jڋ痐XQcl *925` aA+W ; 07pzanW&Tn7Bh &k־(`1Yc+?s<]LXi\O¯Fnwˡ\Ĉ ȓϓOGQPu#R ;mr{gkĄzHmgNBd)K&p 0#0A2^$a$o23 Kh/_[SNz0x}٪tn-]f!R3d(YaQkT=_᎟;|tѷ e:h(3RcTZܑIU=A}ڳ쪌V7ŗg*,K\U ~&tdueq: "'BU((6BZ- Yܱ_C+A߸̒h`CKZ-ެ^)nߞS0Sr\+[Ÿ@d, JZkO ?lVPU.zl +#si` @6xW)J{+뤙}(KgI52 sǘ2󁾻"{<7y+FG]Tlj'ls&5c|Au~fəlOAB ): )0Cۯ*&&FxS Y"C OokR z7Fw+{`hv~:B%1-}6?ާc4,7;&lSJb 2o <%lhK6%I|J2ZtӪFIҠ /1C0:e?"( Uq6 -L,2_|)Ms/+J5˝}3l1J-g݋y(M>W>u)gLJBaT0ˣH8u t$eYSr*-K+Ay㍤o鶢E}-Y\32?#s%F ԒR~Yw徟ѦmliXsxQ>sy1jNY'5n)}m!}uތ/>ڙ}c ʣ\!, =38'?sY1ái4gB{%A伉FfҾf=f^U}k&/f!˭gg'j:R#|-F?vok,$Mrx65<ݵ%iL344C`ͺ2ncU#k0Xd`/x%Eۈ݀3'p8ŞeC+*Hm0kaZ.} guXL aϪ=:Vsb^D:zCmg}k 䴖(y=&#.jq?i'XpDWv PŒy֍eu:eaU\lidYJjp_iGj yݣKƉгF7:Wqkۘ#kAeh1s* ~1&#O C?E2]SM_]NJ$o|zq9M=%r=9نe熎ok=/1K̔'3u pCٛ[Jh~VO)OArunk7Q ]kaCd>`'$t_I.O%P=Pq0Ng.? WF)tr`2̟[e8/&vI>x,1m̵%lqH :F{|T(&5>i!b$Ի5mt׀6v.D^;gGSNYa_KDa ~|Rb;!kEa UXpOl,pW( nuAdIܙu{f*a8PVKD4ꍺzÊ4Dٙn+bQ^.[)`[7zgx`;AN:=A /xC^"j-z (b7s>0jҤsȠT]G'L)J7A\X9*)B1UhxgFk~=argr\hAcgY|hX}nxu(x6a;緮EqmPJ51z= B/1Խ˲wztbɵ(KlcƤWe3&9`%GՄ& 0W~I$AGE6Ye3 Yzep(CD#M:4c~;KkV3 4W GD+T IS5&V{Єx}O`06"8o'Jj)P/MBw ,Kɓ乼8>M]_iJ#tֶHUJ&([XZ!ÈV/TB8k~@=ӄ<zyeMARM4`עQJ]6Ds 7fh!\B+d,OzRz >So@-d ǕccY^;}zet"mt+`z,sg`P5R,[^w9вLMڇs)RuF9!lŔPQHCC5|3oÄ?E!m KFwo/Mb ~{QZ`8t/>z$5ݍ9aš~έ4~!G@<X՘>a\C >wؖܽ3ZtWI!㮯 xq$O =)Pīj,>G|1`ft`:z+|Sr($x_[^7@ Kq bdXJVUj6r*p.D`tESdeZM=ysSd .TzKaGg_l &΅. i8!-me?wu rרpy_:4 XH2Fmxe`=]@e XK ^YIS<OƗJl^F>y 2+ZL&\X\# rk+jg0q7gvb&2ENwT^T!M9MVaHT.p?Õhe?5E?xDY8ny` i?byYO/K*a~y= N"%aԚǸz",=DƢWZ7W_(|ЎZ `4(36R 8'JAK>u zC[R<our8+NܳﭑKHEFf 5c iGt8ߐsx"Xz]&(2y] __yM >0Up?/gE'ɔz.=Z ][IcҨ#|juF4t3ݡQcMTZn(M7~"Ez#„VtʋN2s~gsC$-r̪k9&"7$E8_ Tt{bm;_[5-#{ 86z CWwI#W3wׄ>_Ğ`y;e3z'ԒF]&Jb?Ylxc@L[u| n J#!Mq(t9׳#"gsBGHdI,'e}x᭣3a A3J6 &/;o5㸼d*%k]gBj/}ttiOu`}} o{ IcԣKs6!Jh-Q<wHB`KbNϒS\* +[dV__UEz+*(b0c-84 JsPI,gGfGa~2e׾dN{q iMħUj{<+lO&>1 /]_ dԵ^b6Ч۞'Ǭ$ X̀]n ڳ6OAتJ]N+}zo+icDc@V*u){/t?/Vx#}^tf&_3~$ho~"kd oBͬ[Q 9{ RDuTe-({LaEFgcL5\I8PYB겐(JP-=tGoUE:&K[?^Zr[}&Σ˺ 6.5FvUK bR9(`gPe[qT_i?`XkH 'u1RsE*( 0V3.?7^^Mlw B$bdsc&攆Bč9(6)y/:p~n/H$fI`}]i<4:~I_ЪWg8$wG0׶f W;t ^] .ܐg(6+qHJJL(ki?.be`iˤ5RYuI JV'ިZ`Pg=i{^T٩,A;xZ -eY+rmC;ؑVwIm8jn8 o>2#Y@2`_i2ջ87_SI~8A ';<`uʑgj^A4kz:(abet 71q.j\>l3m Ȧ qrp6/+ydVEtdE j@#٭a;?/E)[}A34gI @):t>;`]0~:]ZzTXmE~ %9}d ɀO0 hoQ$tŷcG(УLjeiv`sw܎UjC%''}`kI.#My]hqևzSU^Ck~E3|;m&ljJBfYQx ?Ё)D4-ϳGt-(,(uʺsJN02G] $q0`t4@msֺdل!b@9(%{8)8v ;go5H2YmPJ{N {bY!!X(tິwmRUsݏ/r_p]G}^2Y 9|_dF^Tzŝb=JH&r zʫ8Ipu%vËf&i/ 66(HTR /w WP[RNYjh݅f/A$XSCi7<ҨiNs-7x[ԭ ψuنuPoTW)^DMJT!p@$cRS.iA 52dCvx=w%F šc*JGqdǵ< GgoROoLt?EIHt⩨ wxcB!m8[wЖqt 6sr9{ S) ٨>Uz -nϣ\f`Qy]G}6. 28GdraHXa`픑[%p*wY_^fY.eocܴFTU@Ys;͡h#R]ZF=\ 85ΟݷȄjc-.(jhN_cDp}QX]C@iNyݻE* -]\ڐcŎudtCx@4!0ɐL69tEN kɽԯIqW7qȊg0)PIԖ4Za_jΤifw)q-ʮ>4ƕ8]F Cr#bHBHOҢ tU̎.2>\x=HUzaF(O-m R魳jr/ҵAVօIݻ]]xoc.CE9wxԌSO ogKGP˓R iLl>Y}wl%;X-Df{ 8px+^N,CJ#Ks?3;zLg:QwfOj7|Jڊ0Yǻ*USnjG=PRJT: HC =ARwqB|Yp],L76kʍR׺UrfVhXC;;ҕi_HpcE*Ro35@VmyO{(k!z3HdDv#{(' U.뽨7h痄 nTޣy_zd M @$FL`0@u[8_Bw=ԡg|ZMP}Tݲ#1Km) 7.= 麃8oYb| vsRh()AճF碸w?nv926\,`ćO 'N7 xKvFҟv>D'z҆q8'adӂw\E.le98*'|I8PQl罢 "2 YQA1X[1@EmtlkoeѧW/nHT gjg7P<}?wu^ˣLЇ W^Wlݤ\. e܄_Lt F̑ʪ@!N U/^ D{<\F G4 ڶg{`9|ፃ-D˜׻.ө-%  D\suczU3nsB>tEaI"6/}"6`:}Z GD'μ+/%K784$6-z|I3EA:%te+7`~̆$Q-OcyGr?c3 x@@҃NKo6PBoyB'G a(G/Ũ_ܦ woEKxHeM͜ x+qJ/+ fA@s՜~iW̥L_Ԡ"4B˸IKUl%F@AH+Wz!?:hqP}[P~s)\Qm释+]ɱnx{Pabɭ{{*z.wNL!eN@ʹbIsdݾ0Z룪F=vnUU? IU hy\ iw&_/[ EBX@:0/ vUq+xai.j 'ߒS:(!(t/_&tYG:/^gi2׻<˟OfsĠBb%4zE[T,DRAt N>Q.fPEPw&֕RY*IӻWG]k\ѱ7!xqTZD?kOE[Ҙ|BN 1hŴ2{^^j䒈ډ 3R[FAm9_AP~ kTY?&`ǏL@vIL&n6A|Q%6 u"[W>{㈸p_$ .3Y (>^o$ n\P}pt"H +f9:ow5 1V** Ƚ ]9zf `d]e]:uUBUՙV)+u:'kE:w:毳l0BZD3a70C8WoJeR:_5&8P@9ڣxLJ^/fݝQQ> 8S6: waNZxgL[];{bt2?R~Y.>?'DC(G(2@B}"vM.(R!m DAfrX0ZfI_JLJXTztzI&=;b׫:;C;ؕC-*5Uqw@3k dnoHZ=b*әCXZiPKhnW $-  BՄ*&Nܣ+Q!3uc5Ò2>F˽D}`~jIQ.'UYrN CcNYE2 NBU25,:@4"#Kv3k!JCQi?]_Qk`9TCtL>]\Dot/[D*,G̱b1_:$,/;CiZQJ_Neo5iCDyn5I˭3bߛqQ Ds 8 Ft]Fj~bZ<*82|Fͨ0.a)(F¯4p!"D]yf8|u*L1:܉hd/)R)$:nwz/ܤ(/"Ⱦ C:`K0Ѣ-a3BL,K\"^7ckJkb)rWlɨr/5eVJC&zۂW\ 5 b'GȮdakN$/vy BuW# 6{:xgqK uv|%OlOgh,ǔ2}ra /*T:s Cq3lN0eƍ -!&|^DlE|d'bKӍA=BnzQ|.Ǻ2HQgbg(3ht? $N[`W]G N|c{KoNZMh$BB`ܮn4cԟTf4z%(g5f ?_g@Qm#Aٻ`鑵W>YLJ0;uH gGa{d>9ώ@{@yt*󑵲ʹf5*Yaov)U ћ*(;C[ |DÏ$_֯WV>$wdJhD\irl%(U+$o_竰4󖊿\aun2Sbgc,4KS&IRei6X/s!jT+`<i.Cp \@ .pU-U&~\HHB+͙~+]PȔk(~iaޤt9P l(_H!o}}B~k<-XsEnr^ $ eKvv ҐH6A`EHR}{x_cxV^3'<4UF{./2F&'楾ta}܎ \+ySgcT &a]B :Hkعіi9Z5b?%?[+kA8nEB"1$,0"Нzy@aWY ˘8 0=;S$;ʖԒ6hN+7.D P,(PU ZP2'=ENyHlPpWv]b"T867v9'aa1v)pcY=1$+ L؛܅];zolR^7% !t-2v/w2~vBel̆~p^vfo_3 3e:֠q};t$G JI~`:3*{olh7뻀5SxW62G>g,!ldf4Cy֙z%+#ghA֊(܉e^FWc"?6B{DhŠޫㇺFaꀔ91BbVM]57>z 3h b^&M2 &Fe`5z`|̵"N:&ưbʣ\!t %Db+&XaWk>7Q,V1lǬDVwpE5A,nM&6ܨ kVM2p'Y#}v"*,/27=@>:zq*S#׆eUrv/+S̈́חs,9\`Y5|6םqiC=lM*Hˮ*_oSH"@yRNڗ0I?yUGoe 2** _67gMx\X ZQt Sm& K '.eW͕ZoS YPlj^nX'!ԯǤ"w%h_ֆ5_ [$^z͝F! ϯ]}JE;_$4XNk}='7r4/An?.N\BxU]0 }NKt5ѭv( ﵳVFF2#% { -1~j\u$7?o^Ʃ݉c$l+sRǏ,8bډ`vR骠 ߮o~Kf#='|M" $#VW'‡p 2lj765zb9yMN'c>_!mxK( ˭;ϛn,c5dCo< zR3 wغ29^F) `4iPqG_"wTiO_=)ԶFjy7xy: R9r% It\fPvg#]aOYN},*n-nYW[b),~ {~X_9k-mx<ՂhµL?˱e˸@Pӫ#q#Oh)ĥd0^`>oL1~P[u04y\ |К |6X6wa+uB[tfXفt4JfDB6m#o|C׽&|VLަјY[pғپ1/We$97t~o*cZMKҐhkL]2ʟj>Co7 !Wl?y<H2^Dm*_!r=s%>UtU[##$da?K:>[04D8me?pІ?ΐyQ}7 (Ϧ$Ks?<[0OFX}NOt©4q"aSf!QɊ"!;d7inP kļɕc"IN~"|*ؑsDKnճgRyV$vOrl!qNia0pL\`cr+nd9^,ֵ=9{z{tGo ^qV0i @Uw&.cN[{ PⰄ$*q<:ujUʉף>2&>EEf%xY&k&c-aXyTdA@ۨ }(7X`6y_d8: A@mSܯ"3)&lnc-k5?M+D3Oot>X.^q#iuң臵^fYYgE)US1,ב[@ >9GLI:ӼmrW=4h3CpinnBM?Nd~=$})9Akf4 Znҋ Wq/=ofgX8.evNk|:$neRe߫5+X4= ODk})<-@#kC&Nm|ǁt_DA*`'MCoM̅Ƥ-$7Q v/p1쩉KŪoZطY^i0ok[UT5>o)^51lTYk6UY6#;  Z<8$HcI[Qͥ-bHjS_FvM V{R* wy|`o@-:J?!VYM{-Spk6N'x.N"{n\_A`#n Gܥs+[MЭʉ G@)*?< 髝ROfP5T3ϔyYM2 ?*:O2LyBĥGi挆:Ր.18rYL@ba;~kš3ntޕ&5($Urۙ ޭ&D UrmZY1%~}`Kj oJs'h!H7j'ԧ,]1ohTFT=#U`$tyx)"]_CxY''3֠ oq^~OJm׻ItתNx1;4},=߸5Ke "j(c=J3u)F&>/a0[[Iܬee6"`Sa{qX& Hiۢ97i@ݥJi>yn0[[dNWTLNN$y dWwy4Uyga4=)flo(;~+k5>0"Ό'BKq%,vQ;՜U,Ϣ( ';(m\zy-,nHP>F`t9{3lOY xWIveS4O1gld33(q ܢ=71Fa@GW}{y F:o 4 ap |fVΨ^* ƿhn1//c~S_δٞ3E%lr[qch}9ڿnѫwI.Aqȫ-1^;Ԑ>ă e/9\XA> uڻc8;sbjr\g 6ɥ!<nj1ʺ*i4<{!u?K%T:m]R8TG43.#f?Lxe POYWu\ G%j|Hw"~s.*a8b?jH'`!ktXG;ft]1k[ 1!W0_:wTDDyuuO!'Ȃ7Cq#?ux-]Ŧ//+4y\D =wVĜ\#購WrU9^hS]E",>\H .Qdp;d)/5 #t6ftf7smGFjx51!i&{8ar1.K;N vgz[9/%'@P>/ \~Վ\NxuYB{9 0n2fw#`XG%t95EAHg zbۂ>Au7Iŭg+t#ݱ)x%!togΉٗ@wg7XUT|Ya"|?6qߪB &b0*fO4mT&/&mJ3L3nf2{&^׼: BF^ ճ.'PqY6&&Vuى!v1/TaB,~.sFH"oirj١ʽA'l8Dk/sr}8:ԭ/3wn6p !! nѵyrKWXoI꫁C>,QtZJ(:O$V=yhGIg~ 5JAZQǤ5+}vM#k OZi"iOK?V?B+#?`1*nbv~EiOIYB+o^}pՐ~l3?Smw,sivIQ>}mPۼYˣapޱ&w<4?rln^IC2R>Ku*$<`X]6+eIa#w4촷r!sݛa9 .t4I&|}=qEv2CqbgBT]s?~nUL&;}YB"#р"9U芸ig{J jo?OHUPε~sVz|o$a8k9'2ߨ|Dv'~BU }w h(K<2YI)_ c?A#5}R#/ƸKuV / Ҵ,mpp) ȱ͵XM|Ox)4Kc6u!bG5-)'[r0Y駷,#N3ncڿJgz(1ae(kv}l)gYzTD'q!ph&0ʞթ@*9>~|V޴c6?"EC!TKf Zbino#0"0 :." W3X0gT뮪CJJ5uˁ2^am8'- ڲeWn=]rE&[0M G9za,=TrkLcLsX ª2RcaG QZ)fk|`s&VT3cfJ1ԁ&`78`1O5*`i r\ =D֭zu,GX[ŧ2I}6 eOz?|x*ĞA ÃITha=^x,e(+b_WĽ3hZRweչ~v F/Pdmjpomx},uQ\YcyC] *JOv[b+< ZZ?i~ ͹cl>o*~ l4O'r`NP3e+XI`x|ӧ̑Q\ڡf@f r0k>R>ח59[=D?oD*+/ wGS /ɭE7e2UqD`ЌTwrtJ"8'@*~_bh ,m2W: .%,Ό@M S)+x?ƫ: X\ex8bBg-0S@oc)ĉ2cyA:xb{q1S8u>p]>#P5w?dhRj-#ɒJ^%_"XXް1ZCaϐbE#mT\lP0*+LWs:24DP+ ytXܕu^{B<9{:CC AI4}ET՗o< pwFDEp{H߲f8䥟̣uNlLPyt ^ZN C̭ld)}?VM^_=$6.qzzKQLRf ,&xfu B .Z­+iB+u zDs+K*Hh\5IV;Uٸc9xQQjUGX@W'2k+4vp1C0PČ DlzØ7evWAvDscmƏᯃ40R@3r_3|:_ONT_Ycڵ-|Nn%Km "$,:H{ۤ@n?b"R*:zie=HzPŊZߗ8wR&MɟɂP"1dhDDKD"PW7$&)e @|gȂ"ޔ`Ea&UƓI MԶ^+=4T 8__G0KTws3l[UͿw'l׌CP cr /;'b)۠D=dߚIsWYJYEQ>g@ّ<㫵y Űlj@нXl-F(|?#Mr/}\7kZL־kID? 2 Qŀ'ءo/?v X.5^996ԬE``LMWP{"ޒDZO ?%\OD+,x%?Y4z'*)Ie+}`5!]1|̟g<º1 oZ3ڂӦx*D jUa)ZLjÚ^@[(r(e{/4lќ>8hٔqh|^ץm9%.j]`fU]-u&,՗|ح3L|O(\ nZ(XM5SOs-~">fД$[OfEїumAkK2ݿHcGxz- \RDΰ'-^١&*.qvsjZ:ҙai`/E6HfqUoaGEu^Y`YI٤&[oK9s=Qo &MRu-3„Ju+ׂx݃j>iW#ⱦvzpB~(4 lӺ#"XԊ)xuw&hGZawcM]ɽXбxR3^qb @,㹱ևt/hً\=J a*I j*[zh; cS0é+%g͎yA+W;>~cyO0IqΦ32Z? 4mϚ}-qI#)8ʄKaos{JS̙1<^u % 4=C ݿvk*|mr~DMJxl&mEb[(dk{;HY0 ; #i#%lo~~H\OVhԏӱZ宓\=WħvL٘d(KBgM%9 Q}*zKבcqm|nѦtk%8fϥy㉨ʼ6ˑM-S7j{4B1uLaʭKE8ߤC y)NbbA7y-x?X~ZP!#gU@G ,kӤ$Ex^O >>+5@ y%*µ)6o5G_QD#'LdsE{DP^k@9A*L&x=dPO{kڠ[~ф(aN>/ٰ# /Ƴ]9ߡ<>S;XtE{0 [ IO: xraZ镼r'׏˷_;Y:몳qIB/if ؋ _-K@L I׳ǝj/\H+T((qȸ%X ^v ^:8-:-r; ݔTg<8>'1=eFq6}7M.hɆAJQHf@btW+ HlH6t7"sP6d+!aBc,ۧBƂ \E.ŹtS+̪3d5B>} MyKD' 6N#Ѿ4pSW*h@pIswǕCm;2A: P05f]AϢ** @$4Q`$9@lbχ.Xcc+ayjP8Hj"N(i?V72}f|C0QἥTbf fp.?wp5:C=13?J|n `Oc%zҴݜFlG0 ?wg4zuV:;W9TR.LI}P Q|h,gTel&/[dD$4b 8-o1њJmcwθ}0lPީ*.^Se7܏0WFu3Ɇ1$ bUtV>^*?#\ .<3ͧW&`YM ɉiO(tl?M=<A?!"ОH9qs4&ȄR[i" 6WG<$n2pABc,˙` ҀK~pP״~7(ђ$ &/Q֢!~$BծQ[۔#bn`h #8phdíRd̮ 7stP|¨̢m r_K,,vjl锷$t}$ E~%6)k }:V-rNv]$Bjsd͵ 㪑ciBz!#Hwguy #F 1&JQK8j!Ƙ?I ~ p߸ ÌOz,,.0qV6Kvw*mgi^!45WaqF~&)Hxa5Iw6!Ԛ$Ƀ/ď9]"7h-7WKL0ATtC,}bA㷂s<_‘_u7mĈ{_Ew/ݛ$j~mAX VbgYfglA9nwc ˬ a_mP¬ZJ5SsPb=-3pgK2'cP~X+hxվcM 3LPe>}!n< ?2 ^^8z%_< ~c#{TjH1}Dz d>^˴JV+P:;=Ch(3w_cMŧTִصc!K&z#WA6Y?Bg4vkDdf0"?=Y/zQ0 c|q"nOq&R2f'K%>Ώ>H/)K$Xj8T- mb2m[Eraӿr,p\hB% ,܅sdp~[?Q@ g `NA.6U:y B$O6Ӧr ;S1ZZʭ";M-Ȉ\r*Оͭ z{~%6j1{Ij'|x-%2q|Zp#Z%d֩?/_`Um3V9wLHAҡ:nC9ﲈu͒\>*զkHOn{P~~p=qhG>MdоO H\rEZE@U1eȣ_L|+6 q|]UqKT d9-qPH)[jC\B9rO& ~(w'y^}UJIc]SB.oH{1,w5dMÜrtwvUyr6zMbمC & —|Oxf]:uI2(X&J(@ƄѶUcyA~5٢sK5kNI>LʿKcʠRUAS Ti{gם.} &eыž 4)"-*Fdp/o>OL+Պ$~,{RJ&H&4vzҥ~id/$ײ Z9">k۵.f-+"!}S^ Ғ&jCjEv,l;eyK^H.`pI1%ېt!^~JL,%s9Ύ3Y2!}±I⮃o&%\SHCv  !j?FXG3BĬXSF!c"`k_ʫ|tO 59AfriYX`{jъsMY<($Oa&yzة*lD\FUe;ƵANI3tX/|9u@"hJf fdMg6^(%RrA;DI넞2d*`!Ҭi_)r3ýE}_>w5H Wt(ڨm螖ed:7;a̒+_4h<H!#e]7g 䙠byJ>W ڿU. jDL"I\-14 dc _rR½^+^DķXO njĨhS+!c@'q]ؔ <Y&R ppqrVLwE| 7FQfIL$<O4#eG7B CƁV|'m%06aoͤda-zx TDl/2}o™aPW!Us/c-U0a%6v)E3Gu@[`>?[c,ڄjMy%uױ&U >?6\Q^ڕCJ/' ʏT8Řs6 5^!,sXA1/E6 GVlFQҲGW9UߚЩ pSތ yd@~bM ܫ5򦣴|ŗV~!k,Q)Sƥry>j,`wAf32!H "8qܥK5c$֋X$Whw4o|$.Ɲ4Haff7?g,9G;6inojeE0| a09Oq^5*{@Gd[el!]kA`b>bvӕs]>Q*V V./ʫQ'&"ä_B'nOzvzf n`G5w r0G-L-@w1ēj8ɒ)P6cKd݄wGNƠRhޕԺL|վ |Qq5nm]DeL6OPSڝcEA˚9nbggʶ<83Wh*\ ٻA_F&i N>8sv[r.)?qӔ7bnI6QKr&ѣX1/yFi8AŻυs0>v bvP!W4{ENQcao%D}0B/L)]nצ6:gf߿Gwzl9˵7b&.F(JT'T 9qVקB ^j](f/QK`Tb"C_x-uQzժ Xo\aWP3e_eMD"Gcd * .a3`&7aEwFTMT{5@lvvBK/8ۃ3<3SiEUYOHÚ\u1OU&xV HŘ8Il; uW $5,{&Υ LXКFF~*e{YW̌K\!)cV@G[gR6GR4m"3-5[߽s1-DBCrKx;CM+>m 4a'UJ4\pQ.4 e_Jih/5NELT |HZ9G=T1VF$lrwG,)R{ިӭ@bYoqoTEm>'Byܓ4%6[R*Q.L9l{n*7 9Tv_j+2T)t:me_nPkgŁLy?X48U.(4!i^Ur4Ҥ)y+WC:r9;SeB!DnFno*c!Yr}RZ3#`\j;v*h_y&5fu]*<ī4[:z74p%| Z9> :1z!ZЕ|J-qm!'DJ^adb?uN7ƺG~]ޕonh'm-fVmī3.D'E(SE#BD~|{1 鹖N&ˆҮLM$Tt-Oݶ$m&)k^bN_%Xw Ҥ3@Ă>.E-pGpB!'HC[q64 A53&q42L0$n=O|.d0&S.kRn?:pheh ΄lRZ_m!?SQ7IBK3_0C]UE 9]7-ĈΔLW#To470/ITpƥmA+28_kA҉dX ͯՂ1E9e:LwBAU|&A Xq⧣x=rOfqɠ"/pH@NڲT?.YtV&E!_&ܺjTb%/q)UiS(kMZ7b$^ !% ؁2~ZȌ]znkDؖ䊏//Ou&ֿ.Q(; |Gc%W>H^ @|:u ?ny2JO*KcCFnf$ύTw5z xsugeR]Atf}ź&=۠ҁ'®/c,}s:.fn( JX?6$סDcpDebN2(laxGIU<1 W`Me'mxϮ}4oW'RXquGK\sH443]WE>F QةIvңdU!hXu#H-[=m9+fDWۢvlĩ@cȹDRc/+CD7g˽TJې&,:vXr_e(ύ ڹJUfnP(CD-cGŝqTi|yOt~et# vwPisƯ_ !Md ,]SJyj Dz^/)*&^[H*e>Kg'e3[a.w%ڭ9rퟗ Gc"$IIlf@rH3 ЊvrfYOtǴad8\'tk{^+qF%@WjRQk[C9#bqDgOS@#rV/f)rjy=${{ztʪ0\m,ܨ1 W32)H?dϽ-;q 7BO-rdƬH249VU?dàlzuה AܝX1 \=<><|HR Ʈ!a O3Mq;@dßCeܪkK2Hx ,1aYW +^*}?ƒl q.1t$rfY\t)%:+9]~*->[-MA<}4c5M~A ƭ;T#"Dz-f+'Y(IfQPUJ̢Y$7:ޭ륂9OڿPIL e7Sq_j|P~Dž!"96TS6 3 !p}TzB &`qDL8 t&43;2v<}]^EE_ 'g%%3\G)(j&U(tl6 LvM ڱQl!θ$`tTLoo<**3w5/@d"jkk_A5 evQ\{)LdуfsM3Nj / 1/kܧ]zpaȝkDebԄ+OiZ:p9L%gmiEo(5ȑ ڽi[ ^2lj^TV|2"oX(aR>!G~|+ Y_ \7 1˼@CӱZZU+8TkRO jPW |=D> pa?9ەoԸ@TFB/S+9u^(:9"[1/ư-w{V>7<ӘM/:+2,q8XޑDޛ;ϔo-5@E% ֻ}4bDII4kV9 ޝ3;{3nT;I⢚^k sz"^MC.]St&K?M$N*/E).>kI;QA<}pXC>ձN״?Kx˚l @^6DN_H2c!M˔.%mtqjHh6S[EЎ&Y&^,A+Y( b>G?hFኔ>&2ʁ Z.B2[dajH e )aedPyDc;WrI-@ON0&S ky&D_o-톱f<fs|\Y. 8@fTѾ;D=SICs:0dQiMCXDSt)O|fO2 D#K[\ WXO4q=\.:L seyp83:kj xCueZ߱yDك;!%30Hy@$}$l鶥{ֱ~1Ql+s`! |'V͕D]X&/SIhB#EPӂF~ޡPԼܣ\`4K"M`➍"dCE  m]٦zN{Tuh :j a=1E%lcUdW>ȵ9>@q_3K# ghV9ߜݟ<ˤ}Ũw1 w!4 Jd&aL*SūF:V\A?` nDIѨY0H% t0id7+{5NFi@JvcyL Wlo{yZ2x*GvLP^@~)q҅$a;>5jv?,Mfy._B81\)ô{gdN{.ڽX &=l L(! Gݍhm`;1sh'<'sNl?b5O~~o.C6S/J ӀtXtH7isںc$N'F lI'eGL.v6`*.v@("!S!b-3pfHi0G~h)F=` <`,4K"~/?uz\r˨Q `-upyS0Ig>IB k+fp<$LL)Mnm􀰹^=D#1(\6zMѐ}s2"B0= dp2>RIIB MhrSsː&][J5R^ ك^G0"9ܷP!|;@'b1{X*|CY7I?i̸ގ~޵bxLSXF7`e*wcqs2kݫ8|"̂gLFΟxi0-AyyT}% /" uP^`2v1 ArW4n]phw=gٟkKKW_b/)0$2 Rf+7K su+.Kt&;W;?BWPHfVυ%S!&u*xC>wl|fdC5&83^0x[k ,5x9[U'A: qM$پ* ň,v di)r.@z8 $ fMjs mhɕ&Dq3b(Q͐:#[6"[rx! ^XLɫ_zц?Jq6G9ፘ-:zfSIlU*0lޙ~vFRJQWLulFJRM8(ƒ|`c,mOGBx -r)gӃDbl܅ `ֳ >A@DѠ]&;<4|܄}AUL-{C .z>.FjDŽt\v Y^|d_ȌLlu '|ADL$ XɖWt>U1M6R@t %qC$xKM "fRB+>*+)q" ) Xg?ŁHvZmjr#ji#{ɽvDň?h):5Z=/m7[7-6LJ(N.[\_onD72iOCQs'(}zkgcVnW Qws-)FGmS\MC#$tH5W1e 5'Z(rf~0[D|8DI⮈ 6Ҟ UUr4Se3~@QP钱MSIRMDr 74ZnV<iJq̛͇zmfB+71045%G$ѠIPĢcB9 YԨ3q)s*vH销@56j)v? 彌Q巎 :9!_V'_@=``3*5=!sS7lj4*h.޹CS&ѠR[S`Mpי%MR!3 uD RiA6ukimu 0w"I_pk&G kO!B*&X=-Yt̥”w@1ucu57gZJ265xVdz66WrLZ&rf ~6;FH  Y S0r?:cKZ(Wm\pM+@ U!jV4 ]7_Y۵S#|%SKS>-kxמk0OH}Ӱ¬ڜͼ؏1;ĺ~^0짪!m!RMjGf1,1 գmS>QGf8k@Ww<""U L"b'~G zu\IΧ/9W&5_lgjsꀨjܐ[pT_ T #.[yS vv? ?VHhpti?02 lj [h |ata?#2K !|5#zփVNq!RN}EZ; I?ҫGHaPomY#]ڏRfۢxN'=p E_ C,B`>4äZ5]\Y}5+ԵpoV~' {LedXkj#b;rpwc[jǟc^V@۩0i(lŧ#PZdc2D iLۋˠi<~tmDt)|!Cų_g=Nt/"DžH SEW; ْ82tcPp"(w&ߦ̛gZGwHQ8w֨@3ZIȫ`VKfm,pbVho {^D5ZoaNZk R^墤Zxu_py]ѥe=IUq!+PvcOo{VyB7Q!A(Y/ ?Vz$#a^5N­QvX䱷P1ĥ=BZ>.3mQd=π_PuӜ9g@t D"A4tKOńB~b|h FzR$yaK/s{eLM_Zjh"rW)ױDm![W;r[uNטm[ç.eshlEgpTS ;bk2Ŭ_3Nz)˺{D(|Q>e75"Vӫ}{#<&8SxKP7mfs? wLMMuHDH €X{0eo反WYrLxb8̂;zpc{Yl)}ٕ1{kFpgcBA.⊒o`,%Ą$EzT* l}1\ FbyPS>EJAIP%vj.f3(OzR;K8ٮ rǗ 6HuQdb7Τl-$IUiN;M\Im{UoD*MG@jM[oۍ>x^wcGy6=//fd>יʯ^!c(~>+Nw|t۵ؤ-!An^[1_YZ` &^䍏,FwcBw C yXQ+TVflԪv`wicUI1kTD\= Pjl||?E8 vswȯKyX.ˣP.'.4":{>şt7O R Ac2cuE0:oh\-;␍y2ԎCL\¼rvᐈ6FH2rbR[%iic^,2DRd0]qEM,ݕD֚DqVƤ1@W; S?5U`Q7K"[aFC藠gIFT&RhX>H!B hړB|%]MA ;YV`}՜<5G\o_rvK LNcEx~rk\ E:A%2}.D;24LZGgq_g{{-.'kJ }J:4LF<;Mq.izw9XHB~dRKTOqI(X~uJ pӢ(*I;'nOILŠ&aoѱ!z5tdtqP*#BPW% y^g2n~ sU[d˘ N>Kғ:} cio,# fcS)Jtܶ߳@^]Rb窭Z E$*B>k M3:Z֧6Tg ɘpd?'a: 4սrHjXŰu.cէH>Vԋ\^K\P^&k1`ҏ LIS#XD{t&a* J j`Ȫk=^n~gZqh Nq:Fs$࿕ }% Ȳ ;n7YQ0g2`c;3ZẂzz)X:yRENmTW 2[`zgST𨼄yA͠Z~\| {`ȁBt f'^Db-9vI i?nvЏV F౾"KhFGYʪ!66|Vi:8Eo@>Ol!] S#-voPv4ɡTޮ-Ffg8.狃WO$9l*Ikzf$2ںhB}JVCqw!?=ヂnA=K~;M]L^kpC/ULK\p i~C2M<%E朙_!aJ+,%!7-˺{I&) D#Wߴd?iX -:G9$i 9hJfgp'd { j5걚0N>μ*ˡ\MuazP> o03` 4?/Va?&*5tz l`ZhBZeӁ"Z9Q`J? /PQ㌓R\qRpczzl:[Pqcn`{|mL!!,U\5crqa2M@"6fَG /"wF|s~2ۻ4l_Q Z'. B՟&밌k"-] X_2"tA[q72ng&fRp%9Y?Sg)s[Do`(բk0ުzh,YFYc,4E^/ Y[{0!a|O˫V\>:KU.Hli={8Q2H`]SR,4Ƚ 0P__y$zQ -?‗AF:w,@^ɳ qˀ"M['$SZ^AFwz(?\O'EFANe9ٵYIƕN7^|.hcl[A#L!_#ߠ:䗓VUÁM4͛!Ci ː~8ʙuXU>v@jO+J58J1`q梟SMr fY.3ftoS<V&=ds2ȞcUlbf\$@[!s r{6Mi:PqWjJ~.6Pj(P,[T=<;XRB;ԉ}5n%Gx" pMi'BQiv_:WP!KA>*P>tnhIH29Q3!) FcTU.&PWxO|GCrd-ݱǃ7:k _J/λӷq&r‰0#t;,_͟WOٰ"a fTTddP77ԫIu'u]0_km~bfcxd5Ci. 84Wh~G&|2o:pvW]0!H@`~Ps%䙿eZu=i%ռMfә2?ʹRv_oQx̃' ݫOēO66ۊ(AΙdȴ(wh}[9澃ņR,֊eN9}"7lBtBy#Km۹Jۭ bj.)%yJ6_MXϰ;:oߑ@ }MwcdϥӖbDB?lC>~ޝE>o#ml9I?YI]tW!_PvwNpDSf4r J>OiVvrMzh`WͰɵ +FI%s 8\Ynrl HH9ro%VY;$%si D`H4I-G2yN/7ԩoςBM &28oإ ebd`5GoZ9˯ |R:po<45 lOZvMWQHkKbAw8 nQRm~ u?-ȵ#ĂPmG@0#J 9b{ο5fRȽ 2osXgl>'DP-u'wx[bz#uI/K[mNWYKcƻ7HNLOBN&ݩTdJ4*RCҧ@D|[1Ù/GiZ-MlDp1Wd;"Ӈ>cOwt ~S+x?ᅹ3Ў$Z@8ڏ`wӷL{3>fƉ9~C@~SLKb"<3%.>T<h /ʞr5NHoJqz؝Ƕ5C%FwSN$JAi]u1"RCUer =hTM<1I/W!/S1>0Kgu'X6,]'X3GF/yutiKNu91mw-.IaMV%froҭ9Ox׏ni %V7բ" j7Hq}1 ,#qҲd`UtXZ=pwI?NWv *ilaUyFnu9އ:T$ )q ]%jă`6⏆g[i R3.G w[ R6t""s}gQ೬2S-dD+u G~//>f=% .PRخ|G@츚D"H1_woڂp'q4 X `5!0߹e[ mdu Txn'J?vcS-_ϸ̭ ~^ ՀaBFQ_֊|~JGf~ JW1 D`k6 a{=xcygO8#emyHZ7/(RŠvWf!;Ћ/"k_Youhr]f;_6I~:9'/lZҳc_*kF'b~$eD5㓑8E-*o"R Z?9BR>}1O%xg H Ȍ9g%%SOm(jêH:3if1y5Dq!A~®'⫱:IfLA܃_mIǡ)@Ep 0ܺVthx);653äo Dm=A,vMEFMN@Q}L^ؾ!r`:]JMH U@ !#V'd&^k;rbPFA7j$?]dɆ0.13 }p}jJ&6'#`/M ~7g C"t DoLO 99_yQnЗq6ޅ U G.Uhܗz2n}N ǀ~x7XtL`ᙽёij~*gDOMN4f?@ 'fj̨lƫ^k2u (q/ ¡Bnc &ӿeհE"zvlϡA&_!#wf:dY`2&Y W7G o]dJW᲋B"14 nN-Y WoPCmXLHtAVhFx"S,މ-aI9^??P!O {D5l \Az"BvW7d㍵#H:0s(>&}IMoYr4'$5cy+TvuDbkTx&S<ڱ;<?:A15/U([$O.qT@C;Z&";+ .zXu.^oL;!Fš)c%1>@]BMcKIzL:ͱ@q/+!2;"Y8!P`N!X1Sc |/ bߊGJؤ?ᐌ+}XezEz39l_i@PZ1:'}=4Ɲwm'v;xCZSgKZ #xV۴z$evH 21UO;l$a&[jy_S4a3T͝n%@ J!QCWSԺ*T<՜>˜$f\=\ąȝ}m"gBLaBRBg ,.V1?͹w8Ǐ?ţMbҞ /;e^L (p7ҿ[wZ# %6p,`OX_+[O.bP@A8mMIUWJ [Qc.+Of.<%p0j!"@J&Y.#y-5k4ojk[+/ˡ-~5'v:?ִbR\D>f;̱`qְ o*%qdB=|bdC f-|n(\*-%j#B<ئ=+hc}Ƒ;ku.Z} 6cG/(}QÁ*'*CMSsbCuF1/}~pā8h`x`gIT{XzMj xӎ"3jG=˘pG%$n,AQ4P LN 4(HQGMSG)`n~E: z ,Q5RJR JRq9^ǔ0zSps30:xh 5hf| EO8fL-WU^&mU{@@1@niBLu1 kT3/m .GCDEg  ĝ \wrnwN32S` bJU*8TfKw'[ 5T#~ׅ8V! + tr`(ވ+R/çaObԅ+ zlH:v T2V4.mwɢ4gf;* 6?uzІ1pVxG(8Qm %Dn/G 1:X"^Q0XHMrwjoubJu3ը/odH؉uU.7@6uUVיO :\r͙ @`!"lt:T XNdw%*S n8H;cD0ך#MNkw]n B[6mC,]֬zp)II+#('LLz7IA[wsV}DN+^4"RhB>LrMx>Kta? Es^ /F)%G'T,i@9%y` 4*Cj2#Ruf&5ajoHb_@\e9wD!<<杛$ê q cBld'_(F'5J4I7xz5' B48-x* PđL⬫HUK6ws߲0Էc\С&VPQ }q’#aK,1 +MacPwuLƿȢw5(pxzh۳($.Te۰ȅG\6}:X;ȧ=6SJګҊyoq*["Q-]TnNvAa72 ~A8THH3M|$hA|/3CNx12Ex[AqY,!"WiL#91iA‡Jm9 8L',^-Rr"pF$`hדzz]>m1~!Os9t$DZk'. AuJn,7mn7ABgZy{~t>hJIv '\"TD0^adRۣqG.2 VQ+p5S+0L ?GuuQ˷\"lldޑⅯ\7ih~؁}"j𹩟txS{l~ յJ@+, 䅭,w,j (]كx/heד:y>0^wj&3<ysgZsQE[A"~.ۋ9q6-JuӴ!!MК8$z1$nY92iϵbK k9N]yftɌ:AJQP8ozGZITVUJmkAVt833yX$Z N H8ĿCT2K~#1>956?v#Tg+4ih[pkmIofWX7ϿKiO'4OZL2lY| ڶ;IC'|#%"{<c+ehcQF>ZTQv[@Zdե|4/^xv]w 4Fni ]!{F]y\u'Bz|O 6/3䆵Lxkm( [%,kR̊uI̙9@9PV f'vlITbXtS=|%s jཋ9%=p*"Yn ? +*UNŇ<;ٮ)ȁ!E0 ;LAeYMfg)2r { a(ƙ;Ea{[b6l_s-͓;1UdⵦsE-}RPPMXkwq_yT^<}obsKMVwM&86} jI " LF35tfR6>>lД3ZV"٧2̾|&nۚk{DDz硹Qϳ62߃p1n}F 3(عN3բkmnA_ +22:e,{?"AS^C#dǿ|ӼVDڌ&)SlxLI^.6z8vA^O;b[BFg)srFǔ-@8Kv ǶbO{Wuٜf׳\ q :I2rw(T ;I~D қ9+ƥ!':\"ܷl1T0enD u߇n_]d䋏omᓷ%e+YP}-" Dyq50~:|Dn;xmTԗbvJ;gG+ *Z7L @/w`4pߒ`dvJcoB.-T,Rܵ-36b;/G\ĚC .5iNï,GT9ݸCFʞXzU^5 /¡8Uu6 Vi,\Z<:1 y4_R9םdoPk⃪;G$Iq%:Mk,h~GLFPN{ 7sOIO>⁴<2r~w3` ׍H; 86.*;-4ƐXrf'1jH>kl#~\]K3JX46cߐ4{$@4(<6:Lw|8F/qo~SwR'LV,bqe[ 2 j vLu|m ¹s 9"ls蟧JjE`Z fU>>׍'DvLI01[s"6_}o¤c`E 8Ϭ1]R2)܂ )ME)"-5,#T?Ȑ<{^56'2taI&ĀB#G?$Fک~+Y2ў*i6j~ZrMhƅjT4a߰uMGh} év t/Q ̩Gvmx%ԧX~  "ӖFqCkܟdL"PvנGXQuT\!TX-<asMܸ+D>|41j X%V&LȤ| aP(/ʒ^R.ܐR-ZS;Җ:h*MfLnDO^k_Sv5?܄Wi{Lm+#R%@A/^͔Qg(τugd[n15zq $g<@-gdxUL?(6IX\Yx|ms#R!ͣمb҇0]T"BG h\- sFrnCFd1kb\H#Jm@RR 㬖ӔwѴ*}&xA,! +P]>6zЃO~wE[2&6 ]r(YG4đE22m5/YZ lv~> * [*ݸa(ϸ94b9\|X|Ȏ%,^byJ}EPoG(A*d^KA/&g#3sBTa~SBUijmRg7%^!waj+ e)t!R[eC p[iLJ& w$wCDDiuTنSE757' M.} #D:Z\tpKYrY)SrڨaqGzn\≠Pѵ71tȰpr@E+_7AO&x@dd[8G0. &v^̷C|+j|gkt Ƀ{2!oH&]qTch0hH1A8fp?_^'ge )NbQ/|$(^Z ݮwT8;Ln]0F{l(5)CߣL@[I\{,A{G 963l~RB _,D`/QSG`IqUZ D5=L᳡] /j|oo/b-N3-弥SwӔe=h1JDnÓ+-)Ha{^5v]/JgE𘯽 y/ /HI| )}o|߉bo~?* t+M>_ W"W'~ rp,MSTQ\oE&)r)ĄQ;7YN^ @D.p(+ZB} 㼊T }%)9}g˱G7C|c{ĭWp@֖IiDk`z_`˺R})&xC:e#(h $ժ$ ٠%,1xLJ.zm&]qBO]iTt e/2+up]-/aɗюԛb[,8#\!}ڱ+My3~$K7\g[gO`* ޠB'Tay&;< uCMsFW^pʏ ȹLk=$zjl69F%!\e;\E&= Rp΍01ǐ/It3]zsӬNpd(ޢ?x8)o_rLA[k26zkC&G BU耇7Jum$vAe$Haw(Ć@i Vn$~(چ˺ n]i %ۧT٭ei3k@Ac<$ H=S|7|{M!y`tҖyn%2l7A/04=07 cHpð դk!XJ nTYF2T R+k"kt&+0eo)9x"BYm )7Zsn`unXtR^J+/昕\8ײ*2RAOGh;,0% G^{g.FN݁HnO5jNL$բ[J'VybzLn7ڃʒ?/G^'&!n\C5 ?6k>n`'}Ѵsť ?,r ]cĵ}2,*3X2^O&Vomw /0^OA5sJ.uVoZD$0~I+@5}0$Uoh ֕E /}5w`&K]b^FXeI@J:X_`y0s{.-9 È௹vųsLRb.)&_٭ò%CbsPʌ-;,:eDG@罷8+†*&y{o>L՜$ <[tMp_C((^-Qmg}9\% u>87N^Nj3g>ÚlC8vUJ>MK6/3=dnrTZ{Ҭ!pz Ӈ4bFR!ݚ}a0"'"yћLeE52>sSὐl؝/ZW`@uI ,Ts|Ui,c m2]~NZs;k^*+1qsĺ%W(T/RB]NԒN?ģ*߼ӁvwLr{YE>F' w^1U 1/Wr:WX znг슟xt=qQ3^ _*G t[<>)Ԛ"ϊ2/-ݕ' Q F]ҍǴ`k* W U'֒ T>sJ=0s4itZCC5N)?$3N$ɷ-/G;fu|iaT +aٮG"d=g'<#n7HeV^A LEzZ$0a >[͕ 8[ژ$O[K.ɶ%!Y@7=>5 ǒ&1kg~.n&{ѾS@:ұ]Mܲ(ǟq]:g4+TK㳭c@%~ pF"4$ T#NwAE@Aq5 e*1H}^sJ|J矊. @481bJ^ uFȇjQeLj%L*`Gx|)8k.1%lEv N釨RZq=Nr.jd#%֮3@33"ꫴȰ⯈dt#VeOO@ՙv@ 6ccSi)Q| >qj`J՚-]Wq~=+VY"1΂ }^wWgYy#D4rZAx4\n`h[r2ʄtrNfOBQBꞌ=W zuǯl:=S6T9\!i79mzM p 9Yff^`߀ƝK7~%Je)=U؃>? uw5ޠ$wǎ=Y؇s$Nؠ? Ӹ K2G +V-5х Cvs2j.iKtxƫP#[쭓\BZ=|V3:!w"Ĵ>\1`z +6nˈЏOh\?c?^Ðrq$Xs` 5k [8TW3 2 'Dވ.פ^caRZ?, w|YP쒝)x)@/HPS|<}/C쎗 :n20-b4I*bZ 'P+>%2DxkLqZ*/_ 3&Ȍ~bE m0 B!z-n@d4-y<(2㫠nVw4_G,Kܯ6TU$Ho쩆Q;1 +J(22a-PHȺ}n VH;h Ϩ@Rҍ@M 6^~:sʑǯlFXk)ǘ ,[Bjno˙BH:MYT\lD%8 SxTVb~ +K3PB^?Q`8J/h6#@av߀?af۲M@>ώֶ~45Dsǣ4E!֡5fH[čY,TLGkN{ƶfYF<]Y '(h?jDp$*d-X%SJF]Da.bc[ jfD8x&L2zѐyIG}n<"x갧[?Ay>k50&@n3AdwGEM_]?Cn.uu8?b $TSL'n1cg n7Zx#ZBNQrϙHU+e-fN۟b6mgǠU=G5C/V2`W<*8F'3Ucģ4IĊlfOC)7=8VZJVۄG1wd'p&u#"`ÞHdY 'SZi:c>$8&D[\6۔͔Txh=,b>5(1곴>&bh!B3'L%Y @$y)aߠv;@yU3:eF> [ݰN O^,6A5+܅ 2mN>V;2GbŠut8(7sz}AQY1D٨+bB%G [i[dz[o#M~5cD%)G9WDMQl]`gChJ=j[~V&<̵pBjˉ|sz =,|'fr#)WB}ɁFKMBci%w5GnZW/9ߴ)tXakL2"uϔFsc+'zrP۲D*XbDx5lN~7\¬'mVsAV?,Qit_O:PTHq_غpg]#X(&AynK %4SFa3ѢaDSSesSAC麵%T7B>F(2r+'- ɈRi#+uR#jfjiakbqCo3 |ņ/snM\WN߈`Q #%1K|+vG3v]Q_uۙ>jT$;ER[wm0$QtQ;^,QÅUNz5OIf(;he& Tv|An* w:lEQ:T3'>wVOxό9wN;.5"֢[{\|k+G ߏx;.(7WSk=2]QInd?FcA <V710pҷ3:0".ʲ5= ieH%Է˒?~W]0WNDJ d }x/m"Z q<fTDz%Zs}GXʩ 8_aO4 (̔*WDGiifPnHh 0-2kؿȶ3pI GN +R^762j1MxSLT4)~N账gK'JF!r,ِ՟tp4mYNܒπNM =zςњCgA]ͱwwX@Dq5WG͍~,g_(;H TQGRzB;M/\X^dP8 Xa~v;/{>Sw1 #jq8.}‡}`- snW2sP%A9v;aE:wa#A.\$tJ8!{8O)Q?:-S1>G8}e\1Ô%rTV3~;ޚPg O?O 1ɲ\RW7ЕQ )OhdP։l72_Էh J6B}pr$ؑDk݌W8(=TS,^;_Wq٦R$i3/!RH= ߦ EZ@*IV{aۄv'έOO=eZ}9j)qb| 7AgPNfqN'PpOoC>ƱρpT99ji T%tYx)U6i|Lpkza&F< 7u1*ޙxoV |N+O8`~iR53ƒ|`B}Brn<"V9w99ѳcp uR~=K@S$<`0u2#k̊;x+xlmN<׏{&3jpv.kxPweQ^?2\sCa:xUO gP;ʬr"$Ȧ ]W/?5 Wtr,:Gy_l(v#^kA*8'iɈKwDŨWzosfV؈C3zwbRvXV#\/B9- {iv >pjv5d9^߷2ͅP UmAѪ \<=DTkNߦ&W ͎aQLע5۞Aa6'q< &J PSiMTw%ql06+,,:}FIЬY.+9sd\fRxs dN&7ۏ%G4R-sM7a U jGز"B.!e015L6ZQS`/أ|z)cS /TէgXSPe.qSCq q*ɋ;/gSns&ךPHz1) $ 5νcL&^"ӎH<^!|?h%YA!Ntxu?鹛ϔMJJ %Ū%ӀY!:LMqX/#A=dcAEpŌqt3Ē`ٵHL De-ę·l*3 Dn$^l?`Ց9)!Q0S$[!|a_-ҸꅆmLۮ9qa-;_T`h_aΌhH#H\JZ.M`'#s^xJ Ţ~HC zSQgY0O.Ptr C4g4f{XjV|".>\')pg9|]a2x^۠9ֺjQx}NKz|:YGF|}?JFrr:qw+G>}aws@tGv^Ze\ +:szĽmKDT'c8'vwce YWs,:M >-9Dx m"z+>?FSy&6 }{I{"@o|ya K,AѣK ݚG5ԶU ̻e['xSU2pd=Wc@Jz= \p p.ujmQ텕Iy~Z9H9I]UE&a;M+zOTY]KorrI L>c k mpn޻”g@Hի~HGqIW:d=_"&էBx*p pJBܜqLTU˖Avu6:vhЭq6_q@gN)fA?9EX<2})2q:D?Ӻps&4u0(Chw; ه$ʆIB -Mu82\ 3P {3Vо@{hQ3Bizݥnue[]͛HUmB {-jwk5Ϥ}fd81=ۼGh|% ?'gV<}϶r$9*}O0?J ,H=HaR Hbg{D`#93%F,>հaqqyų~Gt/\{aə 7ɞ85 BdǜrSHkwmԸwR׍Q+4iB&KnM6m7tRu3㦺B/QBϹ؄q|P.w:oQ my¹~wӶIfTNqz8Z}A *Rt oz -*4_TΌ觾i#  /|#h$ƻu%{9.B+;1RUA?M7pF $}Is/D@ H{mh_X>̔~ a#59#‚-"#P%PcLw,3yk+R˶ ܝWl95>?^>Rs;2UGf]1#Yjkq^DLؘIfb8O(W /G 94dckoEL")?uVGtqE>nH& D))y(/}-8:b~P1$I_WZ9Cm $ŕxln ƨ?%w6i ?3Wkk(b=6Vn)m%V^#E'P ;3J8xGib +48&770 ث ո}1>xܼ<-ͫ< {,rqqx6[ {@mT#cړUvZ,'o,RW-PeAdmz\@[&kwCQגT…<Y|J=U@)쀞QbU(*5"s4BJA8Ɲ2ttAAx7wWVq~7 (0J^t.cܐF'gE2r#4 abQ^Ck)p +v*PYDU;gn*cM;tz$:7FMc!B٩~>{ <ۄ#Tt.S_zi/7}'Hк <O0Q(FJlڬY% BňiCkϝF|b+GY΍V`@TC>Xgf I*,@?1ߎh!]ʌ-S=HZ}Uâ~!;US0CԿ< 7*»X8Jm83jٞ6V_K

/>gC-cآnEWYaׁI*!xt1%t4fNq.5րU F_vâi2Q k10|9JpxKpؾWb̺5pCܟ.T'ଵ$S *g KqD Kz}Ͷ-f_HǸ#A8OUX|0yM)L5B xbF#1 w'XYN6 ~k`Bwڨ8vqBY{{A,Do8HiSj 67HM& JO|{G*zs8O$/f *+A.nC8#vJ:{1v:$) Bj#-xN :gO-z̤KFa&&" [q/9*uDgD_*^cx.I^\Ê߻uUiaAfO_3%ԲpS߿T&ܡї l/i4eSMpoƸuU` - MsODmRɾl` .")0^i]/2FKXDc׊,f';J+躐R6pa(KĴi \ĺAPlM]We<Cƻ PLŵ1T#tT.}zE{W0@488N'&5lLxh{ϗO ^[e l4&M3-@6LTw⿃=w H~ipna췴afycED٘'b.bҏHOK=/Ai,rAzN$*&^Ѷ"x~qF-llV=J`]DO>VRJ O7[Lrѷ .#}oG?* l8:[jΗXk49-ZHsfNMgޠVj!D&Cq Iu1k$cJBF59_o6 r,yNvP+T '`c0йW qN˳XlPdjR 0k]j4GZ$ Nr&%98<4\B&hgr%M5]kzOsHڍ+aݜ5:nc; ʚ|o3i~8P#Њ<["8䜑'#pIuiozd]mR*O i4WL, e>kv5"2C# >obj so_9q Dk*=ԫe5z*5W>>7f G?%CIB'RUGC= d2rDdiK#a7rEc;h8J@mнXyP KaO$r`5 ajP/S B>DQGlJ? Ȯ?>z?t f{̋ԁj9 0/B";aHr&W58hf]npuYD5[LwO UeVw+ޥB+U݈i\tIxrjdVrB/?k$t6XNR@g?[eF<К$SC?WM(eI1 ]yHWgkWHq_0& }gMS[f;\]ۥ% Be:愚 4":6bs? h8LrG9+^+R˯FwB[[&#q1p& 8V}]yGb &VTuX.>phRڱ|t!A|V7:wBKh\ `fkq4J~f9z%9U&gëNpځn~ Id!n|)@i[Lks㟚N)]ONzI[qvn}J)̃| \:MF!i+ޏEMIЇCYЄ T,`k?M=g< @9)ݮl ) =/lĿ`^B݈vWQV ^sf ~Af X$ºN4>ڿ`(:{-F(κIf0x y)u]mt˥ 9N7ixQ^E_uݙ~*ʽ"2],wLѳmP}|8-6]kҗ}" 4 ǚQ6'}%yzr+i {i5mn7.!U%ZLщJ?gDeC2 [5t0h)TJn,lEl̀Γp7N* I.gQN%BF *mDpv)}2mǦ})9ߟ袉0s,48Fxq?6|)rWZMl Nɢ@> EE)쬖S:$I_Иn% Yh֖zR7* ꛢ:)e29r|2 Or 0i/ꉖ?.zv!;˂H1RQ}Ǹ[)Y!ρ,13ҩin Jpjc$\!B Ju!U;̣pEq LKdHMwp 7Hpc zeauG@Lڏ( )S yqYe]gw\%uN^ۧf xC$z \ L|\ǔ(wsUNEIST.D]>ƢCϚ sn:Dd˖xiؼt ~*J]NZcؘ;ieR8:[#Lg*X Qfc.3Qh71BnݜgcVɓ8"?#jubx zVH9x%j'%v7Ɯ `(  .Or@Z1kmɶqU@:b|3]ަn:M-NXZ\a\ZOnRn-ߩ %!,Hov$aWbѿ#`؆*V`o1Ϧ>}IAyAm$=a 궿/ ! ?@F4Ho xL.ɾ }iq-ef sOQuK1LFEc5S Bv$rlq6GPa:y\2]:܄Te"c 1a"^/\ub%̺VZ+%1= ˹TlRx* 3HPRrx "@hU =BYMQ`%Uc0 H5W1V\4\)GR*imQ=$h._=l&r满YsT4.,$Z'M/R$E߈"}FjKFUiAX'gZB {#>UU@zF_WjamY4XѝSdpx\.Pp2UD4/FIi%]q.?Ű2.U 7y|_!hIn>Pʜt`$r;g|tٔz14OsNϳR$CD-ng0G2bDjn rzN,DG#Üq7RKIB57H'Ve m.xKƑ2NKkk}(V17>+Q6pELlAV 4E`R2÷yKBX`+wisw7 Ud|Vo .e{k~>ØnTF x^C9jMBIAtZDt|w^ԁ& pg&Ȳ=:MQ6g -8OXchc_NuXqM4=&Y^l`54_`g4Qa Aʿpb*#oZlÍ cSΑQ'tj'=cLQ4DgmܩIj/r!v gϩY2bzB3! \]8 w}5#!% #A{hL\.YkEX+^ nʹHZd[!jY zU&K YRcI#gܒLN5=߬kr.?͝@}Hi$Rfm lH2 AVD| gs1P1`E3dVWDpyEeB$\Q [,vsu=iD[+Dz0}`N)d'4 eK7R~ղTi`+O&rkƀda֎ԇ0AYmeZb3:V\mJ5sղ/!$I#ƌSRBnA~7Ur˟ f-PAHђj`Q)kBBu:grHsܗ)><&' CV?n%=R">%7QKvTO _rO.9׭jQ"%"EwHvGa.k |:N|$AKXԴӢzb^fr- U֢YR| I:ٮeeX2NVra&QC"d+3j_ ?: `kko*O4:/Śh1UUh ;M퍪 ?Zͬ79#-N6+uZumTk3=Zƈ@n X'X]tZy5%; l@QB$59 0al.8LJ!ءn#Q9J;1a| G[,ZI )7ڮm[ύ2<5h&-< 3 /MZ!MAnp_ō|>aUuQ % K\M}`-).dUEk5]ob}}yѡؕtsE5- e@ôנ\fGLf|o {G%; ?0wZ}ExYe^s,XTDnnc08)1T듿ȒUor-QJ筟Ppai;^ GQCP1^V.vj3NYne*dfqycKEr4`NwBlr@ȿޏI'*F=2ɞNP_qMcMc ||,8!A(p>P|.6<) ,Tj/)以.OX U?5szfGgh@^]9#֛ȼG_#)"T)ۋT:A3T8' <muOT8n jY-ƒE~6>[&vͺ4&yc-f:˫6S66c畎,_W,9FJY5}Ǯ Ŀzx* zOʽ\CA`Mo@$p?5:7rU`)+t[I4+n]hx[Q-wE󋜼+꠰S° gSSDkFFA|>3τS/b/9^1#: @lSoc3n^9N@?,v1H=l^TAA r#bdyAg.jR"?qJz!ۦ#j-k/ {;P.\\VuǼFzɷQez"Cpb{+:0PFtad;cX0d7\=Z~q㻐eQ?󧡱b{%25-M`[^xyC] *CmM(~FzCWb Fa%ʭ:ԐБP]2e$TM5F/- *5n8P-,"vo `E˿c6͐п-H:̛E?k,&l. ".;&SDd ߻%p͗-PQ(TwDi-_Е5E~_ӶĖ\rU 쌒-Rh\[C`JۇZj{Oy1?#dG$'w£JԬT=$Fx&ò<.feU` I΃:3G'PyXEn1AѣDj1f[`G_o2gI2;NT2D?uS`kn^n~V%ݦI0zLm %4'q߆-?V%Bx/mc`u: p-ABa_oG邆1oSuZS칆>q^v% bh ݸ\‚g;`VZLaVٽ'deB#Eh{S_\kG91[Z^n*?x҂1;HE[5)˺}\x1=(m̰;ѹbF%@!)\ ow.@JW.6fՉ)Stvhᛩá= a-=[%u3[Q{Gq颮xYwÊ$]l4zE^wol]X|Xa6\d+8^M{Ueg UGS ˽ά;vnzacpt47O>* BC4Vm37mxa3!epLnRJ%=KǛ 'aPEX{ #>ݖ\P4y`(dQ_4Y"#suegH[My9bm6~dk<˝8UBQ[:]&&z{Oܰ4Tv#>˘0 L:[OOf; mhr+. _VRogwI &笲r'ƹu)nХEqTNsyt#[ t{YdBPfZ@~V`;ܯArȚO(\Π'R .>*SkS)W륄$SѱQ vEee]Q2_P z bpZ ʖEp)~ sT˫:7d= -(ה) .PYf,t[«UtYDF◨:6jKsw+J(a$XQV~#jY07&kk3@ܰ.0bUF] O<Y^ |/9VcGV$@"&߾*0W҅R^s) 5/aV{<' ]+/ک-qs0˩{v$]QHEO#WTԅCyOWk< {`YK)DdNÿ0E\ b9 pDo|w},*y6~{0'Lv}X8>gV8%cY|k #޳fb$5vYh.?+9_HQA'M2t>JA\߈s61YW/a-fm=r15`>[l2FҘM>dH0ķS LF҄(g9Ҷ8(Sf&Y 4Tr`bS53y6j)GŽ)*5EHs&2N2p"̯GehmaQlfzl ?&+b;OOah]l-0m@p*tLcU&!Z>κ/{]Y/0|}%%bn@LîPn<ȀIj Xי*َHO)q\uX|W(an _ aC.&Ғ؂r)6&IFxg0B$vfjWkx4,lo#Lj4$~cyQ ;V6%&.+?AT}|ԆʗA1@B;@WϺz^VD-!d=g3`~)1-|ɹ_glXN0S8ND\kTr6&b,DXr_ \V&\|j HØSqkϢzBmj2I[DO{|XIDR)"mJ*R,zBAbZOdlmI[TEȆUqE÷ `MJaA0xݎ3VgS8jcI?7HئVzKb06㏠&CMJke|HL_)@e2jAj{ȅ0:7ߢ[^& ˼61 S;46Kba.^Hlw2.I=:wo tHVC bB3c{cD, y|48 7C"~}!y)rco Rs_vNlMݡyAiR\j8n2(.mճ_s*+TႰ=*ґl 1|'گD3fW'. O"w1ȢE3~~2JQ|Bd'y0/h]s! ^Y sԾvxRFȩg j%!Ȥbs=%rHiYu8bk\|F혿vdī(ťR>KߪE2nGA \܎)ov/{acK!xVsh)M2%UX2nP9'+HfSsϪ}j^̟r؂T)ۭfcisr]> TxpJrĊ#}Kx#e( \Gc'_ɍ4eӒTR(Y))_e:5,/4{y*e $ڐ~RkQ?+ <3#/hIīwh_noe}qB6Ј?\B@e /o#bLh"͖?@hN8UW hģů^pUV˄hTPNeY{% t hVXh 9+Ԯ*bL _҇s@`:YO!xmFlyUJlrU-[śFgbHo'tW)4@$-N}[QC E KbWt Ƥm'gVM"HK2DRɹΦy}cѨ"'( &YYZ7a|@-H36[Ԏ)I<&A|QsᖔAP~ݖ$}R9 z]pLLOc\KVT|:LIN >_t7eFebҝ7A݆=O~.&zaGMa$G£(KqŒ\S_4)r6?v"%"(Pc~l 9y:;Cco" =5~*BA@&KN$eG)X u2EkzVOnbHxmH%37/|Pz\dM[YC): ^~vJ4%>B~1}L<\9V ?аo=[Wpc/={` rއuo`9}pX 6 iW~XF(nU[<.VfllUJtB V# XKNcmQ!Rn@Gώަ`dhE6y2UizO*m?:3K[4((.:,d}B k Ŝww߃5`ɭx+ɪU] 'zH젬%)VdwP$lQZ3_ b+NEd<G(]֤Ffw#jp#JƒRu aMv:Fhw[7<!fMCET7D8Mο,IJJh6 1m M5kSԣaV)# }!ud^޵ vxh}Jհ__yeor}27ew2†#Xlypic^k6uo8PrKCV, mw|W".M0ע/ˏRfѪ4ܦ}WH2+9^C@mVhg6G{#JUm¬Z.w{XNm+/vH:@ȧ^l{w ~˟CᡫDaX DW7M7QBK؄ ^vV CTҚ[b&&zn.k~CP P$*(@՝"؂ְ$u@qS+oe!-(`gAlgĥ>EYezC~.MZ%!O#@ jw7*uOۧ@`' ̎یA< rsd#^cBd|3 fs\VPvԞeP1';ZϬϋ6I  eR-)FFJyPp4ݩN&KKz0o-#_OVKK"yx#xCp ج z%mA2N^P b+E?Pa$IB_Z f Hxhmx:SgV^T-,#W`L=񦍪 NEA+}.uoy 4 ~g]w3˄VS-=:B3)4$;ԥ ~(_a®quƕ0y1=ZTn]H2;9ן9$>6iK :Z;A[24]=NBpU9]T^Mi('}]$~c~B- @ *ɴ*?^mW?ӖJ]|Lz2N]bW+fB%?Wv9qA}@JÄZ}"__`ƅ&hi\:L,ccdzB0@ PubN+S(DBS 'U)`>ʤ-Z-+}50r1EˌvY%ɉ&OKSp[nSzvR&R?V V9v۾E=rx~]݆ UB} qtreC[r>aHtH9M.K@Kh;< DzXQ3تly {r@{rwm~; .wVHHW}|bjA2ϋSSސ]^+Ai&3WtW'Z4#̆"$ĤVU*6L+JSٕ?F8Ov5R__+ndHf}Ite@4R74Hݑ`iHU06<$,ϑ0r 0H5LB>&n=5zeQ 1юnSVnjL3#7ۦHŝ;@Ft m 3 6;jhJ9+ OVOd oF5+B^TF%WRn[;9RSZ_)pTioFD<2[K'd{TМ+0tL1\FY Js3h|ckwH.qBߥX{x*5e/y;wߙsGz=(ϋ`Κ>(Ȳ}H$Y7KŲǯ) tHS+Qp䲟[ 6 1q:,Pԥ"1} esnГOi24ϛwwۦ&`j !6$9:/6{?TND5+~ir [z3OtH'B! R"@yf3dK/ӧѭ P|Op2Ed7 m<x÷E?+ uJ`1)i[Բpθ?H(Gvv? l?T L72U2} JI]_6zYwNf@vQ1R+&|BiSyLmox;|&w#[ B$K@cgEe5b <YLZx' 63ۊ1NapwV e2L='lg:u0=kfk7؝ꔃ2Z PXN͊!ǒQƬokt"MЁKogޝ[`\5N*cX+& dꬒ~Tjm/p -q'=^ 8 ͢Uoa?\DMT600S)-oڌ~?eǞTBGt%lBLQb5EgCI Oމ%i/lǽY7Q~L_XLR?(+0>ZV?^*'J{ AbZxHYу҆~C=~I.'' V^S=42)9^\EJm=KBE>)ٷ5 y؛v/[b-kR",|[V8)ݱZ~8{7#Thp]#]QiUhg޸Ը='瀴꡴pLr`(?^$Iz(󒟀 B??;3]4 O 6 M(up~=57^i*,OļWl"խs&טVhavZc£_( _D?oޓ?7|Xcvlhs# 0j` RCRq1(UFeo-ƭH;\e3᪆}iT\:FR?ƒq(/ׂGMA. sV rFxxV-i|hH*w|ںta% )_4Q5YEl2ճ\ڼ[۝٪$7H4:J,͊XWM+:° M|wmC/I7qݙ?Z"LCW<:$v9ܘ{[SSVg,DA(RM3!ⳇPh uqZF <+c*<`a;Z1S҇4q KEw倴F8@%9&l<~X`]{^#:H~p;UP9HE|F43h Z&ڍ*J`1e# (зԬVt&&M`8' Mjfn,xFiަ O!m(O{m,iI`? 0X} Ҏpue*xC9+ <Wu1ð;3\W͢u>Dޓ`K/V ;KS)?GPj@6Lo " {z!p !,x& L(wb߽$7G`>V6g_7ːX-qFUk5vdt|;*n~V,.Tm޾qg)u`Ͷ-i= M-xw9<;v~Y_8av!~PQ-SL5F.HO|,otnA׻/w 1x(Z4u)-̄\R&W^aY.\Ojnkf ZElwI[c`V0.6B$Uv&cV7HRzM :]n/%ކaţض:Z88O/-Th19Q,G.KM xS'!P}w:( mcM2xGUfwQ8Vn2(_0q=J'{j!&Fr ' /Sb-<҄ -4nzge6fvL'r1ɝ~yl*],˯ fS*tѶ23U+{o$X:jj86j9j{y9lprBQE g(qAGcn[X#O7p`r|$֍QCI]oUwCMOr8JNH_{֬>Em$ULCo~^QY/ɝ/shNQ̈́331Ns(5ZI`a!_Ȑm O,3vk!"'ՋFpbu^/M Tr~8cf"PYVH:-C|LM2Ż߮8[&LEZF}g1ɚaOÎ:Džju:'/H )ߐ9$| &VHڒ}u¥nT7 Ḳq ޟ'-.UbCU9ޛ իD5']\^ e.d0POV8A{$I#2 T4U(j$ȷ0>-Շ0>XaO~&Bl9?Q';%ޏ:4r@SDmyZW]B*-0)DW,5B]$e3 yq'-xBC^e4 j}Bvk-fw$0rܙ)6s+W9/K0jy=s[dwu5OY@uF++jAZO ?CͭɊ jjdmpdΘxjn=q]tdzKMhiyy \#4h$$^i~o%eҞWr QVJq;KF;!^1Ba|D]CM7&2BZ:Xgt 2O}d "7D"wUsHch¨fUsEO֞%m~g=X0Gt(= ["Xt8cjLDIT݈TG^d&PǴ́AEẽw0o +tګ5fq)i;%?$-ԣcIЛd f3FkzSO\ U!@C ZlT > $R6A@QBFLѾmjIe`Z#Lj@"y/{ƴ&qHAUc[KM1|/S}72ɷLm9Z 7|aR{r.d$1 `@*Ky*B+tVn=h:mbE໤8vh莉Tx ϤC *SzY`]HlƘg60gCj(?€M_g̩uBPuv@@N[)*|?|Y&~ >9Yae_3%<i)DЫ; -&모G6yfBeAs0V⇟'Z"REۊ-G Lo-HИ]W N4kՏjyl :56#kMIK/q^O#o;|J)}SߦqڦDǘ FxXj wM*#E;L{yzx按 V8 Ə#/ ]Y/;&ں"*D4DCƻm{KtQ#qWO"A;7bUtI j i LЊќ9Jj\jȰr `pVJy3T9c3D :alv]aWjh .-^֭9ߞ}5^^]} %/ 4գEzY/X7~=N!J!'![^ o*͞-%ly︽HL9Iifd=GQY>bm ;Z9 TLsCXEW" $$4O:Z6 )+iNJ2L*1 a(7Jz&#Qbut`wrW#uWy{Kc'!݇ȠNrʹ1]뼅}Ϸ;f ~۪;ARٔn,r4V5IF '8@73!YjFp%Wnu.NKX l \ZU>Ks5,|b*w^M++i6EcV&qrm?b*wh0-sba&G<"k*ڿY)TВn2n=+'? 2T1u䩙(Ab%8gfU95&ס"k/ɥ14Nme~~Y(ZQ/ߥukhO6ї|;KG B_1F6z_.FHcocn6@o2*f>rq>WsFQeqf,ľaܤ8v%)p,(Ri \'KP7ܝcU~鍡p嗞'Q C#()>0Z8Okۺ8wTPb+4Ƿޞl%r`Wo /oZti%r\]Z|zt[AƬfv`2~)σɸ }i*9Ym=׊?,R%[t6@])R݊"29n4\tC %IiM ǾCxW?Noz"OPySߍ7RM{F@qH/7W)xє0d/,OqH#!j (+Cbjm2ZW)-JhC΄7TR$@og WTdx;X\t*B~W_$sT~,dYL]Ɔ!`F%|HI[h6}LumXc'J]baW[nfFmUTYµDB,Fwt}7+݅bt <õpMgI$p!Y{ zK -:<2JE&71D՟ 3 #$@!j)+;38&G#"թmccvD49_Cߌ/O\B,3L%Hn#d]Ec"!c8\'*r1G)ᗢJno:/bLlM Vx(}ﻻw׷V۾w|}_wt۝vw/[e;ݽWyyk]ݝr}m=η;{v*L{=={e;yﻧ{5]_>ϥ|۫Wi/[ww{}}>*}hs5kw|[ﻳ^|>ϼ^_8urn뾾\ϻ@&u{׵{}{K{sog}Q律|Wt={wܯ[ |j޾ϻu9fzn{}jnso{7W]}hvlwz=wkH={[S;ϧۯx|}{j{ۨ}}g|w}/-{m;޾}nw{}ٷwmw;w׹vW{lV+彜޹Mw{kkuo=|}>sG7{n}m>m9{׾Z˷wm-6}w.>׻{snFavvm}nz}SOw>ݛ__eϾ罾^}w/|_owsӷv޷g}}=[ﹻS=z|^{[ܣJ޷ywv/n}{۾իO}n}oݞ۾>|ޗ}{W|wWs^}Nz;}Οtws[v[w=+ZǻGo{}ֵysw}{n|V;޺ϲgv{7}[{ޘ}}wk^ۯo>m\}ﶻ5[+}{k}Uk[Zvkgw7xϳoS`z>oyۮMkռ5n_syo]=/ϟ{t:kwo= |v*.wn{[}w{{Fm_@v]s}ϝw]kף/[m}|}y˼}_}w}^}wQoqZyyW}o}ͽöwo>$nw^_wۺ7֭{owso}w@>>u{wqy{C{w}wYw}[}aEz}޷w^||}z홝_=͸\۫ݧwwm{5^y'^v˾ӷtumMg/>if7yA]yew׫uw={}{ނkm_^eu>۸v6^zp7n]<}wb{w[\wV׭ݞ{o}Oyv{z}JoK;;rorgk}mVݾ}2{ԼfO6ޯw{uG{VOywu+mk{V=ݮϭqYϾ}/Y\>uu[{{}vy}w:`qMWAϽno]+un}o>ogvW^=Ϧ껻{oznwK{ŵݟO7>357n͞\o}޺y|yõ;=w}>v{λu>{;}eO/tu>_og'/_k}yz+i{ot(o[^뾛ˎZS޻uur۾ֽܻcѾ.OuooZ={uy^գ|[lu۹{O꺤mj}m;On{{;նz}_[mj}wcwݽۭ>W{/Uu{v=m\ۋ%moKo}@9'ޟmc{˹ow׹͂z^m=yF}{Mխ{;Wj}[{}r_]羞`}^Y:}zw;mwǍX]O}r٪>}mwz{uc Ͻ7{ϻU]a{Ͻ=}iIe* w^>y̽}|v5}u{z}o{}w׾v}so={jwwyzk񮾽{ﵹmv;뷞u_,[tϤ]}ﷷy޾n5}֏rnu{mzƳS-W_=٧{o{Oo9Ä{7u}t.Keu{}{s7};w{>(}^Zm>m]!{V׾_[;:nl=|wu _}H}뽷wz}'U{־׏;cg__O`o^}>}پm_;ww}{qs^=nWv{{xwS׽wV}}۞ޯoqOzwE}WFgw|>}ܣ֨W۸Nv90oN}_v{zr맷wk}nm7>;ۈ{k||=>'}}lÎwշ_Tݑy{マ}=Mswy{ks}{Y޻>_}ןzϽ$)+N渱z+vcnjyێ}h+׮WmY{w{>{צu5ڻo{w׺޾wݧ>}{s罯_}ܓ}6޺|7{vo;{o/k]׹un;V}o}2s{x{twUƝUOZe_u;S{,nw۾ճ|[ݻͽ_{ݾU׬[nۻ}ﹽݞ{^:ۻݾ溜uoOkw|ێݾoa7sۇ{|^ׯ]szW_|{{}ײ|Ͼx}'s{r}_|ۛ_kw_k>u}]_w/|_>޳n{U͛>;^Uw|vk{޵no{ދ{׽e׻qOzw{Ϯy}zk{_{M;v-[5c}u;uZϯew}ؤ>ݽw=}[e^w=}޼j.mۺ;_vi[;|{ko'q{sσN>glf3rĞ=u^zvUwZw׽ƽ}}.v}6{{jXKGݪW:yv׵zx[w>};ٮww7ww_q_oOcoziݵVԚy__nz޻3e:*o^}Wۻ^wmow_'s޾_j5yϹϳ}v=>ϺmM].}k/ӽ;{m>>}=w_}zo{ģ{vzۻѽ4wXn<}R{}o}n[n3y;+o3z^oo{_nwv{mw1[{cy>}oK}T{i{5)=mOkO}>|[>[zۻ-[ӳ>]n<϶v[}oagslky}㯻[ޞ|ǽܴwx޽o{׵[ck[nӽ7gw_mo(K2m{k|.5:6iսvx{ׯ=@Wl }w|wxS>wmo>uv޴o{yֽ׻}jf,{ww}'uԽd֭;ﶽ|m_f^;jzkl|{z}]sUwoz}{[noZo}zvo{ﳞ}N:]ۭ;7־W:^ۻ=nl}.װ짮㞽Fl}s}δ}w띮XݽϦy^ݫ϶|\S:]=Fr7w-yLwx{]_Jk3]{W=oi)޽.{y./}kݻWl}z_oz{;|n}}ݾn{{w]nͰ޽ڶޟNܽ^9w=8nW﹧J{ޞo^^oݘvHݔ ]﫽oK۞ݮכ׺g_Vlw76[{wmsz3گ۵6v|{ϭo|_}oݻkgFZzO9ޛo{>}{ޛֽ|yHOݵήz{o6޺zW}뷜z{㚽su뭭ݝ뼳}.ۯwyݹ;wn4 {SϻVv^{yzw=y={{^6{-w{鹻^%m}mz=Wʛ={oxne6۽6Wo{_X}{ӽ9ޭپ׻ۣ۷zk{:|)wzϾv9}owo[;Ƿk_G{=}T5wη^[Ϟº|Ӽ}u^=u{Cӵ>;ݦ-^ݸ=\us=u=m}ovonotNu=>dۚIoo^;. o^ޫOMןOOo\o^zjW}钺}{޽wzϾuﯾgwNc:oNs{v}|^Q][{vg4o{W;rx}w}}׾[}wݚP羻vܻ7w{^{}emw7e_|wunW{}v]n{=Sw}}7;w{ouuoחzW[M=mog}7eK۶ݕǾu;;ݻW޾ڽNluޥogozۻݺ^}뾓ޯޱ,֍]:˾wޮWn}m}>ۓW5>گMkw݅{w:}n½ǫou5kݻ:{}zkumhv}iv}/|뽝{y}}5_{o^{wϼN}g瞽֯wyov֟n}mz]طvtn׮׾ͻ}z{읻]/nǭko{voo_sU}oZ{qO{vͽ{skw/پg^wWo[{{=wvowv點Cӽg{<^3ev}]zy3Ӷv:oni=zݯNۤEܝ}gwBv}}tnz]=4]L7;{okszfϺےr5W˯;=ofR}iׯfs>or{=zxST`F@  xU?xJT4 <``)OT:4@hd&L LO`LFD40& ɑ0&LFi 2ddL48xJI 5LR2@8[r`$W^e19(۪zF82UdTD0S3&l3*,}~Mi+>Mڝ|Aמ6\%%ނP Q'Z9 ! 5Rn(@Q؟>FLt8K, y19lޟUէwrPLƤJ %F)Mډm\jgr W,+nNVg :1>1@n q-:$/ܛO-}F>Aρs-訒%]mR;iM,c_0% `&e G}g27*47Ap ;\ֆ,9ډbP 2B]1 y}|5͵s(pk:aHQ#! p 0tˇ2bB?*'RLF9YDW.I L^wYJYZ1s sx@wiInG0/&U ~)WMFjO~sJkIsm!ɱ69I˜q4"˷JX +U4Dk7yJ͖a֟[Lpi$:vHv)]$;#68iKGy򄲃0UD7uwKEqaTA4[ v1at&fC7W /^S %^gQ? iPiP)2 MNB% ƪ)Bňz?*KùqfW# ,70s;uS\'c [%D:낗BV4atJӦ  u{? .DZVe/4= (ԕITLNfe!YMP>*`VmL^76`1=pIha$YiC$W=Z=&n)0G=fZz]WKbCq//6ՉO]Te3# *?f PНhO!L0 *;=ҶБ=hÑ'N] |*sSIl@ BNc WދZSoK6XVσX85b`ͪI%X"i/yMS@mY!&E)VhRjo$<]*% D=B"$ \R z'upNAZ< 4AGtCl 8*e ڈ3{W)lS.QrgZF%;(3a`fRt7Ln$QTȷ"ҍ38GmJ¯[5/[X]\[ xxпiRw>b^C_\xxVB!~jyzȫz.yv&ϋ N!L4e*?6gɣד5?bW 5s+[Htz쇸.u=>Hs}g-0MܾFgaLÐS2<#6f[>ό`v\x~_h+Hw>]GqsڢU$A8er[vU\# Vm*b:XiߠLcyF)B&wZxZNV.WT9 z *6=V\;cì1khGquh~561=v.UFaVFO-$/NF qWcNmڻq`^>}nt3fmqrBd~+vO^,7X^O-&eb)K%tT+&J bJLP 讫:)w b_;eYᄐz5Ln-9Og-igOb`<1$!)7x@),W:j;NS%BW`FlR!֣_F2K @dd?<Xñ ְ3GgBԀ >#Qޣ246- 4^H/NF2iM$ E0oQknDt D&G1flc09sCe9v@=N2/̃M'*?Im& CzPej3[>Hnc@ ;xY[tNdpG2K3`LXZ6}TX74rej xFدf@̵߫cB9VV5S H7 gPs4C$I2E֯_Y=d.L_]D 3UJ{ O/ad7CQO=|Ixym[@ƞNMYa*% 7:3ʡE65к+;RpQ/1B-Ircn?FԣiDCQ ,/^_8[P^3>s@8_I%Xs-_Vt٪ { /fTV(j!w`V]Bh##; s舍hTJo&X=΃pX)7mLg[--bX$'6MA=du.4@xp`4_ 0m|&ҁm5X+Pj~:FS>^T6PiG*^P \)g}p$ 1ΚDKOVbFN=ָ9J =Iu7v갏WR<Ȋm{W;0Xrn( nj_{\I.=Zk%qJanv3#P=Ex@zfkcSܮ|6Ydzf*AOxKЊ`t2_rZCM5@!vٴy_ r,X)(^!M'6Ez8s Upj*t Xgj'VE-. #?wق6{np~i_'TE랕 FlJ+ʙ,d,v %绯GJU{~*4C}A#,nLNcd"{ gDul=U_Lf>Xt.>޳Գ^|FtwQpZܪRnFZ5T/z?CҤFUg.?Bo,ݢbSVO.uyhPE+U?ƒx/wUs%{[f{g˨uo4IAh<,WRcmP YB/ `ZqAA6{, K8l= #e>c0;|g2(I_A@_Q!2Kn W;D;w,Vt@;6ONHwna ^V{KӵA=QoG*nQT&s&eIY`b!£U6 W E;](ѐ|DPQr՜% K9֋F=f*'Z6mOlp9(TyRE8!DƨRjCo.S^bMD{GC\0l5|(O)"mNIO,!U ֳ3C}".`nKB|[䉆6(*. ߙŖ.}Jұnxnj|ZaoQɾmK}S)BIҲ4QJDAu݋5s'y3\{-9F:K9n9 =/"@V䀾:GΤRA% Ob &+1GRPp"XvޙpOY{,̓R(7`Mk$|͘euZ9sy܇~;L$Q,ZaS+n>@/j ^IpӉ_z0ĒikboI~C RSBÌ 2ѕpPKՉNQm0W.L.Ƥ>7hF9.I6~ GOU/TBw`@kaK+2bN:v%(a.å?v=߂9-X?im?> d՛ZjFp _+͉6>$Jޓ̎<Ӆ8X ĆQkMY"9^hDʙV2O&Uc/39lBۆ#DMo硽j }ۨhGf[6ԌF\RhGR>m]ND]Zu1 =M0BQQlTUϕz/PyP5UJM<AI܋ 56ڱqjapwS8!")8y@t1گBUΉ3QJ?`:@yC[s'6.YkZfHw!\H5PNB?&6 jumٕ-+C?v $套خ(n:י{19E!QN@"z':6(C r )E}Mw5O Y Y#ǩU=%CE CsVIV\LB Ig/IӀ hLN+ap<6Lv O yԒ7ǻlJՀw{ ~͵ :ab&ɄEe6@@UXD8AªD6G/v X60[>^WꊟRR8O'dd kuOi{zzʠh̥_l\7Q}m$V Eh۹^k;4 u=r-FfzTtqBcPqX4R +5iDU&f[\jjU!l[0n3#1A=`c{A% 4)Xm!9 pN$yO5t[vΠ4\Kd0oKY `ZmkOmҭw'kqAvM͜RyIdbh)##y̪ 9jKeI?rvk{5ȗlC=r6=(e)J(RLGb1Zxr\&+a ΤB-olaX>(6%hOWuV+m52DKzO>&T{%e^ۗ\)fjFjr)@Ss0o Jkt$q].6 ȂYjpw].Iӥ&Nni?Ȓ" n:o H2¦8 T2̆20Y%f_E+d @j9S ]vn)[JYk3hl0s:ʇELu%1"'moPfOl^;ra׬16,|mZawޜo5Ls%g-iGY#)= ՟.B"_iL.yOw>n=)M=( ){/}=2Jٱ2qb?>T Ŏ =516A'@zIӓ~{FGpc59y GC2`z IEe86mG<|ț$_@mW_hcmKl O*He$7-ZHz,Sq`qc 1 ؗl@"Țm;q[t7X _m&O")Q`~0&?pаi3AG&u^-E|Pbmw !zB 48TWk+QM=h~3֨o$& k*sefMj G J%r+Y`$80MV{ 6 Sܹ~%m?xA\n YE$z(l,=5p+4Zf[01'?Rj=ᠳgĻ; ,@=MKa9/ń ~?^rR.s }'_MoX${">\P-^NJp̎Z jy M-VCg}#k$4-FIx UQ(08'LIn HHk5J5J)`5ۈf&̿EYMbLXbV>ZH5τ'>v FlnnzIwO0]^']Ԃ@d#p<:O\G$`i&ѺUnc$־FDaZu6GEi^JI_$ )TTXgsnP.]"geS 8H8pMQ6) b@&WYȭa0DndְWjkaci]oMpFDrGl]LYJvOo8I$^kPc2oS$LeNln #&€ݨiV)~gQv]Zzf5}MZ#4Ų9rIuOp]K5KF) h566|eiv[wJ;bd/&CNN T6 6w7G\8QaeHHeۋj|mSO[y;Λ߰>гo~)n~[1d) ]A7p^[#>cC!eeLt25 zd~HGS3Uh-7?НnȽd:*ldW;m˰,+;"aM3"iĀ;x8雘a rb)ѩtiIw% ˛JsEiƉzFX /勵RTW1y< PBVe{DvU#+L\25P(`>}E}kۖs@K )s^1$_"Z ౷hn0=<*zw 9Of? Cd;7p奂^;e2 GTNgϨsw5 H Bݯ 6ϯLN';4& &e($y>Akn7yXdGeby@xjFRǝ@"ҞpVW?\o> RK$xfx"V`}+[J,j3 OP:K`zp?aR{/3TWSctE] wLL;;žamJ=Fx6LVRkˠ\ÄcKBøKc0B (e@>st)=e?+/h"-Mx&e A@!a>{;T#D~_iR\KN7J{u>~0pyYR>qx5M2%R'hn j7B|}3mvHG-;[,,b8k#Q,'`??AL}ucLT(y vɒpN@lV;_wU.GJGB~we L(iJmQ@~Qo.jhjK1˒9h396̖>b:ncݐ:֣J(& BAĞxb3euEVNBB5b#[)*jxU*ɽg"SJb\O+=FX`qLhT3 r.Db+)1M=O:u@TVZњY0||^BWYy4[vyFtvd褍{rI@xЀ )& :e)sEE[3('>/+ Fp+%aЀ[yeqݫbFtOގcG}0jѣ_NV)עt wET][g"Yϛ=ujzmA\"XӑMB č}QOxTv /WdƗXH?R{+m=b9z zba%DsȅWt(cYlK~ V=b).Aǭ`JLR onpNFHy/>) X:i"R+hY,A =l׽7r⺊]Di>7K.> v9$1+a;w{8Q*Źe[`ra#g8\P(>DEaw,(>`?K  @JdXN:Es7`ZOC}X`ϛMdF%[Dm`R}b>Lty{|cTE9 I¥J vWd{sbDxqF{.V7 %dUH7PŀKּ?M `8!xI.]KP@Oܛq ]WFx^=c8E c>)[ARiJmmϬ~xfIោxwtTXtG6F DAA^M~Xbڀ+͢EX?8OX|yF-: ,rKr m~׫JI!fm$82 p5& {D&MH&V N(h8UB]JCw=Z-(ӋiuxK&avSG+ >F6xS_xlc b!{pfhF+#V$C:h4梏@h`!Ac_1L}a:B/ڜosX5 6" ΁3 <֥n )uw&+B([,@P &Fgx;ȒX:,_CaCefB!mo8kY|Iǥfk7AOR熟N6P,dzh]w R&u.|Ks8R()5v̻;5ƩyDѴEWSj#SUP~6)mz>8~IHsx(g%V%= hAj`CPΟ}sCLQ%-ǜTB}J:ʳn:b998dzw)UEO[Ņ]9 ^J!# ~rIrJ?7AJ!e_w2U6ĎWlJ.=OG,LB 2V%3 2%8bxXj7W{gs*˔`9OqT*◣Es axgV!!]6EMwxj|y?Q5rlr6}bEQR];2cMÙ԰g7l$* 4離sW43]/OT5&ʮD]9~:˂H?"7(]@RKXщ!b㚗 :UNDN50Rҋ"Qm9M 5u*"(Glt;@RćIrCA''Tm塽>em7Z[Gmxenߏ'oNck-Jt+K@܊^>alH>⬄SnT/lECjD4{1^`xl7Iy,bJQx,{{@i;SKG+ ?{Xt; ҝRS 3J' B9iQ^)16v{VNO1[%2@E}=ꈘ9o8nB-(\Wъ U0i@wU"`B!̦9Ә3乭$5@&6pή, 8g(nU]JF.WzbU0uw 㠟h￳*({%[& q_w]AVO:wP2;,1`0+r/Rj d .]CA`Qe R 5=Ǽ~ǻ W^*Ykm۸y@'^K)lI"?%(ȠDx?w1sc=]#֕^wupБߊ ~m>/Cf!XBOKv> ,IěHb?Aԏnj6u`/SWvl :3 )g 慃#]]Ǽ[4& vXϧU>֝e|1e~/]'#O}-Ka*i{"ww2 dߑREza.EPA$!azcƮPcǞn{GWXYf&T%LPX*^fi4_G/sRl mqVjV@woQA0 ϵ⾹e?Kh,(}rK1e%rQ/7W^B gdN>.E hEykv?NzBBV]^-7\ B:c tw$(r1 h'IPm`B_D0=Ij䆼3)R}7!P衴hQh"n8C77tp9B@ ͚~g!=cM5ԩFτyX3`Wp( bZ`+Rs:vB}Cɭ3vV?eR}#b6l)C\1xBϫKx׃[}})Ps@(31DH򾅉 _iQbޅ&n$ri{Xc[|m{3hh <:qW%DN&i] $pښ͙U"8=Iu!*v5pu\w6EiO@wDdWDJ/VR -Xzҩv3ND *,Jl(?"FvI+Q pNdPdnaZ&%t;43-%_{Ua\*tS܎ȉ^:s,լԙP%+KN@$gE1 D7QCXW '%TdU3VP)阼-q~"Pס$7 t>JHeCѫ+8QDOOdCIIwa(,;ˎ g'σM=@GXR;NMO./wrz[%t R~`n/^Ӎ: {[!9.pPO ETMd_~+z]%M |90~&`dޭ셎CQB*w*pM >TL>m4w+f:}AI0zQ }9S!r;iy1V#IYKh<&(TM.P{@s60G@ mCVjs Wfv{E~-u&ݦ6YϮ$t/|%lCXk%gtߏ֋ Z/ްa}k,I[.ט@6Bx@Hf[IU9x2bE!nf:'- kst9.'!<4ҥIv3:4X&e_v@=b)DO~4^L:[28hS==Ro2$# ݷ9pz?4C9g-`ɾfC!BX%ͱ͚S}#.4ի?6-UbbP&="o.jð Qlfr>[틋K#@ISѝ ~ti6o~,+A"ݠuHR\#.AE>X(~{jN.9hHokKuNSL`cn lgKdQ,p%S̀s݊߰;łvۚc)XdA-ZEVjict~)0$ ښz=]D4Mmyl~U٠ ,fQYPzt(V;&Q5}>5"59pSɧE:+7MѽXt;-riEk.5|d-h5%Y&7aFCΓKl'_ 6|qNKi xiIV- pi #αK>@hu>\Lpj`_XkTEnRAWh-~x,\JVf&|(|›*bl",GK}h1BmH]UjP|}X,+hiꬊ?9̨O) -[Xi{Ʒ#P0xnBNx\ ΁Sh1i~:EISt1_/HJ8^3OZ05;&E_V%W7/X:\VL/tg[([HV ?"6Z{)ʨIP s"ptwwb;z6-gUp7N]S9m2_7]C Nko}֬#]'sds^oJxPuz'c+o?Z)Ɯr{p|:dޑ+i+>NqP vwaz/܁srޗ~OHnѫҊ}{7@ q_"5ptz07%d3eh摴kX-$i}=feLt VdB:BʴwKRxS% q:H@ҋ.44d ^{`11]#;qUs|v>d#SR83Lb&Đ>f_a>yQ4kգtm6k Qe<tEFQ9 }ȇ:aFɗ˼݂?&}#'^aƭSdS! –z0>TydDŽ;Zx͢fvBgϏ٬{20 I՚=* Y4kzW"-w{E@γt: ZGe-87c*rs# e>3 P/"] ƛbFno g442W a m)xW9Ἳ.±n@u&Z۽?UFbו}NN} akia$pZ'G+(2X#ϙ\|3DJ% e%&QhN= L6cuS ; ML3tɁzH6WN m䷷YdeYddԾAZ}x ߙnv`dn\4p":OT{(juYWmڟ7kZ QwvX>l|3b\Dbsb@5T6n'tqioFtd\ld ,|x{9||cemhž:߿-֚5gb 왈 Si߮Uȃ9%EKc|vL_?*X82{&P/8!<0[X & =lN /l_z,ZCHkWĆ&bOߌFyi;g)H W ilxw>zFzLjOC0 ~5V0O퉑 fK!뎃Lc 5Ng9+Opna~^B_rHDYz\ s\(꺄=ci-G) .ĢB͑.ȂLm69}>馰hyvVjo-E< ygFFQ㊀3pYH㵐ţGj8~0(1ޟ'ʛ,3 5y(Z<Ӈub4.EB?*b68E(񴀬;}]|OtpT%.K*͠kkFl;PYCg7ϦkCԓ^^:z,lȒ]0ϏoYv|+`HtCc>[8e м ;qw(E 73! x 1}a VR4*ƾKp%UdSǝ*W HC!_].dSdvK6,40t 1 mA̸EgzY *\[7E!N_\ > Ox;7߉D6ǼxnPX(| v9Zk[7QBFcSv \W0,o'Ofsn%&|RyV Xhғ0Jh]~az`vJk)X^"~qfuf~*筪Y|>(dz 4鞃PP@]rnsxsk^ŪuHJǝYN !H>^/̕YG:E$Ϧʥ o=Ǜ0XUХfWo|7 IyYRz}dwln^މo|:~P#ulGt%%@&KMfq9DJb}64vmK/X(v0,4 %bVnLyH6iɰ5WITxf %\X_E6~?Bѐm- s7F tRF֠X`P]Q^Lv[W*\Tr E֝UjG;mMXӋG7M:zlŦ 13>qAv7tE~~P}5w ~pQR0qH8Vv`?`ʾ |J໢"$א hwb’jMm;&j,9Z[{HP]t3cne1>T{{ϡ\ǧ4ϐF=|P,Jsj<" *j8 e>zO3*LqD /ZCh bi̥BJr*\ewO%=Kc&cx߲z*%huKoVw'Oag7?쑜<'#NˁMOL2;Xz'S.p<Ö_b6[(~S`Oyo:?kilICE3pw*,qdm8s꓌S xĐ~ eH Up- gnL + ~?U}GZGy\͵{egM6SP1}Re|AI3bd }v!$~P^N_\).=dV1J sxGE~J.4y:ܟ_K~TeDkqνpǔQحiW/SS9͝a9$]2.2&ѹFɱ9m g4֝ >2n05uOރJQ2qNfJTȲ,c?dca5'W-‚5O41v0}Y;B0/&=AMRn/n}UੌvhFHU=+ }R;#>g/h.+yX8h,F'$b4z$ɤ_cS=ĞXF3ݐhin["u9 akٞ5]ɚ^;=M @a gp/rwQҙ\DX)+=]lnK+g3Q~_ |Ν#g GA~(f\ُ3p6VJPxC\WYkdl*\@fhzfW3 \ɨp.1oC'y71o|noKttS@aiAIk$ DXt識.Oha1Fˏ-.i*!c2-4'Ѧ]KHk?(Yi%o!0šdՕ,ĨQ 4-lV@Nroȗr8BٖMcFow3yϏo?NV @Z?f5V>k'{|pltoʏ%]l7MU{Rh:})|\R,ٳԷE3 uA\I~͚eJ~3Ղ"Ϯ1PS8DZY Td\=Ym@v]YօBg !\klWsA!SkU3 2R[@ѳ ӤƄ;AXEL"vIpJ(† m/3`8qCyMU"$3=lieE hE!F*y\G|5=Z?GBRScP2༇)++^` QGZe=tt*zu_7m5zxl-9mJHE_U(e@R'3[= 7PvuWIbtMƝԥ_O[59R$o_savE?%j87ݖ ]¢<@ 0!>;ȭ}TʼN2l[vKuG#p\KƢ(}쇟Npa@g\vC_LRt4z٨fiÛ%dƫҗx+V#zEvюLcjU"R&ڊ!QnI!kd<_+ec0Vm?`=wbq0M~imO~27x_ah%I+<:zUY|i=56X=;-CY1I]àLS:|+":tSLՂa+heMAI1_0)DZ'ǎN-XR09d  ]T@4d1pT9o׫8U'P W44?[Z{XSHEj\ ld D7d5|K -ZG;6ҘNo%y fpVxG4 rNaFi2Vs4qؽy| sdJ3|*Gv8EjuY^/Y^Iyxd L =6T@οîoiOK>:w:6GKY`yʋ[&9N)B|I=T=| 0ezP?'~Y/֓Jk"xfX*C_9xb_]++44AZ(0H rE9E`N SGk:\:/;FPw?]ɝˉA9ہ[JWo?ܱQ7}pބبO밽 ĵ[(y>N1y=w\ cs弝t.C"Mr9̳rؿĦH"+AA r3AE0yigęz >ⰍzJG,ɵ]ehҨB1A,ܯ^0H̱o ZN?Q!Rxb$ݒ̦b1`W|)^pzs( ݙ߹xLfNQY}#;.A_02t \*y/QL'E\Ju;&9[Τ?(wl ybcJJ k xCD'/Q(@&_@^!- qQgϊ:6eΦNSL+Nm|f}UwVVHsQ~yhU%'HwM)Tt{GU C zDd$Fݢ}zWVlƹXٶM2<$QrwMFf ieMٯ ohc]6boB."ee t9_:Ud\$K3ȴ=ˬ}@d-*ٽ)?c zl¯U>_#~v]үu)"û2!H~#읔܍Ei` 5}TFp+ʍ]g:CfbG*9zTBDaJ٦@ohe<hSW1 /:C%}yFJIjEIb޺lfxR"j5~CGr5c?MίT>#80Tg Wcq`k3un:ߣ, ǀy2~Nփu kCl5zQϡdPs)+M, cY巉p;uRa{M5 ~ T#(Va7{n>,3o?vq;X1kD֙ޕMΛV/K1%?q8E^bƈnA܂D}Xu暑S `P +ݙVFaM}6+!Lyζ5X{0_>v!ZtylseW|kNks2yK2a<W,qtnA<ʝ/_%$ػ&hEm} "o8oR!>0˺G"mE8]%Rs%}ԝSQ_QVd|/=̜o{Xf!eܾi_Q;ִQXB)A )iE*ּ0F$ L|ܜH]I1T.L'Z Ġ5d+pRn!o`]TaV:Y&. >s_CuQV֔yt %@m4|PvŠqߓ(6@[cGKxnQH2RJ26.SS uEE;$n9e#LPA"ˆ^\#{)g*H2k.BX~ 4 bq"4 ψ+ϝ6 )k,/eXzTWUH]Yol qǼVsaq5id|ΪaW#PD5`_x,ssh# X)9IJRiQ!R$rMnPc\ºee.uQ_d+DtwMAT[ bBF>_Dw潂(.TL iYE9c8zUwI6Dx9Pic'{|f +ƻ q|A^o (+0T#.]jeϏQ0<"/3!yl qd fVajGDN*d/1?6=*Qb\:Xmŏ8_ @> *MI5SJc2iߌujHKkAx*G 2N163^9!yl\A*>af)۞vW|*ce_!`)^J.FP7o|b80ϞOzEƂ{#ͦmzޤe5mДaf }ZAukeh=bO z') -fkSAy2sq}ʝST(JbߛqaH(A48݌0MgRZX8FkQq0d[^:eЌiSN%^4=yif1l\Q\+. X!=:)uDբN,?czd/Pzeqޒ_ dꢻ:'s_1g-lX9IP_ҽmӵ.O1, o$-=$h+3':er摔a0FHʯz7 3^Ε`RAD)I'h^"z`)y#Hhf( a*7A%w6LB(1ٳ;[EzGf/W g(4Y6`R3|0_9|09e!ˍu@8f"9)DmzEĩ5>;ipZ ؒf%VlD~#Uqs~կRi@h{D7Eo}M]AM_F6+ZR=Vs7xKRv#l] #4>,l4B."C-w繎 "W÷! SI|+OSq_.IR,-jXgfKe8@Ͼ&Gf`C$t%U__tɸȄ! WDZ r%C{y!IHˏ-yoآ}r:&.EPa0͚464;dpr5pW^a?xﺸ绉a^H_{vfdxdMSkї7P)`Lvz 6{V‘I^NNѝz$mEHrMoty]&J)I$1L"}]4+DB\ȹk08!)4/(,H_ZMBUQ4:Z@k0WUu=9+F_ Q߈ qK!o$z_Y͘]'5οaaGwO8R 8ݴ>6C.z`%}TfP~/es 'q01QaJRH4ӽMAzQW]Qi.b_D!Xhr"e Eޣh:X-3A鷬N-j?bcи_e8p1$ +X) 5g4~`]pwCjg !aSK A)xMH4j&S ]ʖ?t!HKBi ܶO;~O_V` I+#9,l4V JTu츾ѲE 1=FIm,)IPs2n[o-s]Đ2C?9o_o"53pS#NO5f5" yr,HO W;盛Y0CЈ1'4 7į~HDl)>]>F(U :E઴#<ֆDP뒎E T*P+(Deyz1VcC9%RqYfj7_zҾK 'lt?I- dlPi!4(aK"|Hֳ %R` ; +ٸkxs"όQg^_H]eK'Α hhl5i ߬=uF*śQ[Fפe㕶iK-Tk"'EPXNW"krF5KCA`6}IѤ'g< ^)zFN6?7~J 5[p]U ށL8AiK̤ɾw@ͦj5k12O.@Z>\u>$bS5qWy}YVϹǸW0 J&*=0i|G|̺شGJsbڧHe`Nujo;Һ9ZJ> >.ho_j:+&VIv`Y Oj:/4GdNpkF-ʨ>>ef"L0'%7{9Ί3r3I"J*8()Ps!5e@Ŷ,}<_~} #2tw /#+"e JxhtռVsk{,DѦJ ; iy7I B'_Gl(P,-<꥿[*(di=yoL='rsLȲ2K_Lݢz"ǹAwK:_t[iv& WLU(vd'vIfwQ_. u4MciAZ1ͤ Œ&'> gb- zEFld[ 6X EWW\ro]ŭzЕUl=Rg>ur9ΙɀH?(k&?VOg܄tAh>a=G4@P&s. P(pWl.$,dʉmjCϮE2sL@c<3lEMhUuMqG.+iQ=])2![ IڢZ_N$;ʲ2Euv̆`<ʀS/y :2m>gke; h]4õ*O _+EeaŔ:i0SIqSt$g-Su_xD jGJ5/Sڽ"dbeZG%UN)}֜*j@G*O=4*{;1C$k0;qڽh'VB* 2AsD?5*:ux>LM~h{E7@S("i:=W"Kzw DBn*'$3ʞ ^ê?R2<ai/(d:oBe=+wNDIT 8WYs#`Uٕr\rm T<&A Y3BU-xc)A $r~. h܅Z&DSl%ğX`ꔄS1wzfl'QMo"rT.k@nT6aqcm p?1+˒xn #zdݝ$urtorYSU1o/Aܵfnw|Gpy2WI8[M[y ="KRzRN.~ݣM̜Ts= W͑Ձ ZPW#\‹+,[v9Jrm$-XQ7ߏQҿpc\'d,KGICu`)bP;3l~)9ieÛT{xnD5x*#%pفgvT\ʋ#?һSˆ=A#5f rVb2Ā/ &I <'z4G&EK~@'kM1{$X N\vBSڼYE*eem/NenG&-܅''h@ɚw3'MlYU ? 1q"̏ Bbt6s}38P[W#ƣ:g FL7H `3 Js.6q2>Fa_K$w1Rs;WTxGaLMݸ4OFMҊւ% }?T9bZ 1U|]t˥}c/¡3scQuö%ڪJ9u x@A j6LR[Z mLDUoYn bp.})uFf.`!?0'ԁt4ͱSz0-,;)nĥ;umhJ1LIjo+Pވ۞uڕIPy T`gco(QaԊcl v<}dtϛqn.PԔ=h): a -(!=f! d-Sa{Ck;Ʃ"K|(bG'g۩1V;;}ќC܃YK $'x ;vum|œBTcc_t//EǃS_W%t_9(_ޯ-,,dLԯ8:E:6bpGQ#PӔ AWh!M}J[qxF/[gR3=UK]|Huy? ;cK UYӻvx#rA? vNsR)loOݯ[.CNd2Ȳ뽇{AG_څoԶ: 1 3U&5Q Tp'P)ꦀ2P:x~汊y{(ςx?O2h_gXϽ.**5*(21-\E7<$^B^/ i=BL^_NA NFKJl;ϵ-ГP.z]'E1c斄JoNS-?Dɀ8{#H:4;O<4 x*yD~yӹQQ~rvD̘_f2x"'pՏ,6V%_W*CV7 u2nDVYlq!>wKoȬu-tӎr[w..)3D6KTA /9P"GNs\t+zl_mhݤDʨ;3iȭhF29.BM987;i×kN $I͟XYE.N*]= <$@h"4:>"K/?O2Ձm5Id0yMlijN@;zC ]j`]V Bc% |%`{#@f111O\kr{RW9hKnXI5g^&맽)I;YZl:H]"d?WSfuA-̝`ΤU,c:08Eqn(ceG.FnByTnMDm#pS@9sivԧY%?h[߿4GC(vaɇ+,hi0BTXJH04ؔ"^oA#Eg0ai \KxbI <rCm+jhrBcǩ6g1ΏZxXR$ʸWKt-DnK18!>#a9 % ʙx݂U<@]i6 63 # ]<"  O,BStU uZۓ +hZ @tꄢԼy/792SrS\ƩYNB8"jzKG?L:dCn(^4| )5z!{|[a0rJ]2Q˲b^. #ePMZQƵ~" gX]H],Ԍ?.) u%Ѡghڲ~vR0QzE$2UGYڳ;_ ⊑0(rúrw^ ݸYpH%ܥ儹rUNNS|-^Oڸ<>`F4>(lb1{䤐`<f;Kx7o= f(]x=إw ˰kqhtɪ {E&_18zywQͼdc"k>Y5tȹؘoڱ~i8Yc;G0 BATp`nT̴s_:IqL&~|hk+>m`ׇf\9ră@;:ltpQ('=7iBYa,3-͏tL yo/Zw^̉v{!7{׷c`+8"xY$kkʷѮ&X|R"3er#rRajB rKE3"6'([=W[o55k#&q+ۉS%Q,(LLo'Q 1 sLrᮘY$͝ nC!19=-2뱝FJEw[a Q^mItx wP=]$HAl.vtiZq%q2[04~'k2 d&<W|6,% F]M&ptbOTeZs uX@Si[ҹ{ s4X`Jn;=sp=%?H( 56Z@~:BvɅd׿x|o뻑4-2:JR%6F⤕88vTQ0b$W}`nĤB ]=C"ߠ擂 @zMx[o@)o 1Mn8$eteA,\u1]=t[h > f4 ~R0=3Q砑%+.&eZ>MLKn@,H><<$HFsF; ̺?}<9cd8"Gk;B-"M|]s-2攐z۸B~"7Z1Oǝ;2lDՈ" 'WjuG,ődք@,x;T;{5>s2ٴ{ XY9ǰ `A%sgJel#ňFޑ~h }">D<H" 'Q0:D;@W7kc."4oY-k4-|=⸲&m7b}~MSǹ zrZ Snqu0PÎ>Y{H}Üydz`VHlKY6BLvD+6!Yc([?T?'aj *@Fl GЦhHwoX#r0s!\ ѣM3 _[kAsSB Sԧ C9ªϳ &@<`Tw@`8E aH"N0 3(#`T9+@s/ڲ԰q'yF֡ tLU 7ۨLOfTh>xcG̛ 8p *+ܻ,h+E"{tϙ ߁1:ӁE]|" 4 e{.^RZK/_qFUkr|۹W/l@ (LWG  )$M.~K1*m0)3U DL@v>'@zɭy'cQ ?T؎FJ 9ALh9p%NRҪ%15qFGO[Wс & $w RSq l5XBDмͽ b@]̧ :0FkzW#Ղ q֍Wo9DHz T5, W#A夥q:w~3ݣqľ67 ""ĈftU 1'aW?E> vOy6@ȵ/Rx[XRX2}8 Nr`dL+;6/uB&3k⭺HAA>V"* -.eMLz1ɲ3K6dXR?}yIzIzO@GPB2sz#Zi"Wyl6qdχ >͈'˔kCC$:r] y^yP> Ѷ'6?n޺{}lU#06Dpp+0 _ *c5}0t);ώc.5F_I|^3e)180L<㪬A`AɴFH4.1:%O#9X6`nD 405[1Ū*IykmB:;=,*玚ͽ8_vڄS_$.wTg4e~3kXE7:g >'ϟ u߰{j pS C;'ix& *E /ő7 hq阮xrU!cWw> z+ؼl\tW;Vی5z]P3.&uZx]cLS/䜷U-lWŽqx9}?XR|H15A 2-OH:P* D*]V$_ux"eH*_364:(ZT3OXQ5]\'9 z3ъ*:òS/}]E. q֣Q?$%G='-WQ zNx]1KrL SiPvXv[#PaH` v%Oa4EIrD[~ 3}،e8 q $)3~aC& [%aPduj^OHV]>]9Tv!yx]hoALok"Asj/G(Ws !u gec5;2gCJ > i A|L}x:l]hB1}V]҇SK[ S9aY9/GG!_"gmٱ͈/_G,O3cӯS`2Ǡˇ˙qBL4oN֗s.gJl-1)*5 X[<>>K~tś-E5Gˑ'[51Z|)m VQ-0Lʉ-qqwiFd,!XgGs@^WGҷ,Y9RB W~m_H,WuCzAf_4 6ګ@^!0M9ae\UE aX}V:2FǟQoHmDU'/{Af+ʆjwN#Vbx"` +ߦE__ne\+`!{29's`Ŧ'rhյװ5lP7xiXu]Vx~_A(fi{j~$,,F0R^ #/c9-לwT+Y۰Th`hԾrox-t_@ni-} =K|NaZ#4ZQ8^, m*XmLm{"r5*>n_u<<ҚUꗙ >&PFH_yԇEgl~=̌9+v L.C+Rz*H@ݗGc*ߋ cmeD_`N FŢ]+O0 JBSo|DG~g A>m[A{B)NQzeM7iDcTti^bF|}*6fojp# %:ʝC'J~i'=N|)ꧫ,}eͰwNs LnHn]\l9=U;z~m` pѨVfґt@R 6AÄwd%OLP#hh'bͫ0W(4% *ZfPu!-؁o,P7=6NF SǞ}Kmؽ:歷 fۖ-*n(p2 @}=M%=.B '~Zz;x]ѫnRA+"F`z8m*LVWMU9`3\$"6G/>򾦑;&^t3zox㛠n5gbjpy 7iSAzS&,f=QO?d/=:{6K/)DAcqѩDi4=qY# )mzD Tcz**0$Dy* 71A}TٙrB0T'pT9(?A෗7j`MgҜ}"Ҽ/VD-xk\ )9Cp}Q^b;$yHO_ UVߡ!YdH+(a%9su~:^bMz=@S};/dbiwC{isdOTȰө )_8u^#-)Tk#$mLO,uS=3e7_WSP;&*}5~V'[JmZpt,t540E4y6ء j,'lUdz'9HE>knL6_K<Nq9;wW$@ca'B0प>z+4A* PwVaMo ~ͳۃZc89>Te2__9o*m:>Ftkǚ@? ;w+>8]TQͶ ׺l}fͬ((H)8(,mڌuRSwlg[grX=Mp=,2El{nױ#=Gy9^de\["ȍ -LTRy cMjCuVU@i)YdvE?fe˲%fkߘHr;UDerEgKP3xRwHڹ@1{tK dP0/> C{/1u\b3/7*,Q] r^8#4\uhE)i %+eeu]POjZwZ 41sbtLU򸴮ѵtmԴ mMl9@1va ~7 aLX⛌i?(2REv>GWi \vz:8S2*.߻b"_ƅO*󁆛n&6%iOcuC& ⫨9E2t15**M/1W}p8^=4Z%^k%`gxP_$!KT9u_i/0GzKwX|n'd,ɡipTƥf6`vtVN?AsB"l#<4&=xد€OF.?9ʤANOsp5E*L깳15|-n3Jeo/XGLC("0Ż9&6AsL|=V7 MkB2'[^~=-08nc~v]|+^8#ާyIqN2Ѩ?I&#qIsAaOKy0`$%v_!TeUeLD\dُ6pI ~I.^Ѭk {k +Ю8U6x~ԦlFKм;)pe0}@Ea|Й}.}#:9lɮ|! .oJ OR31 8ם뒮ZSa`@B g= qҀ58(8'~ k?T繸RAC V*|:[0 c+ ;Sw(BvϠҕto4bXu,,[5u2䐦@悼48 % zpޚZ qB"v\&2HO~4|?3@p;Ҧ֋5 XE`nkgP˖MYԲR(|)0XUXp9uaWKE7\V.þ!{^ ѱ,o"MR0.} ^9NxbP2s;miʭd)IwG ovx8Xw(bLߐĺKĽ,]7wy} C'rυa< S| zcưPUU :N( idYLC ?'Txi*]A=_Ԯ) Tg0>U򟉄?B'JYW5Pw|_0 .ELg.>R%+Iժ8+ F5#s|U6<2xjx7J^G^>u9>4~–j\nAQwDDbpB =ȯDH5|Udq&bD;gr!8tEJFlڛiR˶jhPb_â2N ĸ8S1m~4],(q[,dj}-a-Frdմ1KA!gis e.IEP~2?1@MSOAw7ҝ XmN_zFTnc2"7:lc&1WH#5y3-7ƂX#2Sm%}TflܹN ȍ"-}'IAg6֍Q,5÷JR=lGVs}ˮ,/ s b00yvo|" c7„JSe 摝V`rW5 K/%ۀ`UB_[$}5bj{KY _eiv,pQӌia.@viu: kvci<?}TYDU|_`:O DNmpqw8E )-6atҧ_ؕK<)-~'.ĵ~LE=`-[+^W1y(4m1H-X}:1g/ F#qZ1.o'-awY+MY4u9L]&'1װ jM Ê  $&i6Y)m&aAme!o$ oӖ]O%JD:[Ttey.RKXr˜0IG U"{p(x̤ o!t GM&S|-WR;'#rkW~2U\]#U,Bm=y{({#^XٲnjDS 2JT{-J156F(ϥ!OL8ªDbWӰCƑii%Z]վipXK6܁Y|V֍k<,OP٫|D@wzK O=J ™bo%AZF(%eTNn!l)w|M5Žw}.!0f',O|^mhCz'[5RxL8Zz#N"QOɖ\+)Mo}9e=YOji-lڻ㌫Mbmݺ~9)>x| Pf#'ޓn:菸- W_>0mQgՐ\Ὡ_K^"FշzZn Mőg5IcgK FU>riV]pm|A umxp/ z6Շ@ܮ֋m%uWe`( 6_I@HE*v̀RI!Fu]@I_T>_, Vdcg5qE'6l C*U;9> M7;c}?>zuUS'겢Wf< l\Tf݅0gh.Fks`{k:"9Ǫ.WA%RkZ] S K}1M5ߧ} 4jK@CӜ -:Z_9f Zfyn;Ѭ^AP{g9#uzgEVR.1(t]OS}-wD= F}ܘ+{Fva41t0`uPe#wP|Wّfǽ"c"_Hu-f*äl;M&ڇrk7L(eMvZL5ZO#O怲\ʧU E;aY/:]!oWե _T?^5R'j:[dT#l{}]iH4 55iQ :  .w~v^m[&텽虞ƛ\~Ipʂmk!v%0Q]O1LmG̙tD#,,&$JIHv<ڂj d㫵4ׂ[Sq_|M{&@hw.HT~Sܧ40E o8qgFpcevOa12<񩇖u J|RMF=##aI``FkMV dթx'Q?Ágv4 +FA;WV,OJTj 4vSN ("*F|8 ԓ+ UgdQ#;tַ_љv\)dߙ>z960 Ka-^UJ/ cq.`8w8{}TbǓ >MѮ]H"V-!K%9厹l><&;NѾsu6^S[wG'LE6 '`V)}޾2"q P'ur*baWM**A`'5v%kb=Qޭ~ Y3I5НODB"} t;#)6`n0Ce$Jp"p]3?4]T,G3s h-ߊ ࢤ\ } `Ü1sG{OZ[f=0D~D&)m`Y?j z0H[9z"vrcj[ARŖ8B: \EM9P{3j\2M !^t0hG{]ֻj!d_7H@*aLd!1a0*ȣ\\Vg 'h`-;&:0M*p [u6Jʁ#aCW8 ypИs2Lv˓C+\mdѾbRZlN X(Wܞչ]*\DUL |&@ _EvI}7͖yNg_N2QRA`0IQpXp, niozU8Kw`ͬ(/UQgWB`6zF1 am<i}>&Ao`HKC)yRh-FliQ23WgH)/t&1=*6J:=sO4MR5A1SYL;:G5J:8J4=Fg#5ۻ j4ӟq A+އ]6g0X6XWuB #'ڹ"{HeEg@ "qY~  s#nߟpZ5`/NC1 z^󁕝cz9@v°^RqNуgVF@| f)%{"հ7Df2>~ߝ ~5D3D{q")LL2߳VI4t-I )ʀic(Km Dj} Z>(}$;bkC$r9ݡp&q V)d Y{0FvbVvCn]_2QIF&P-+u*Y(d5#rcb}:RǾs9J$Qv\S^C,0)$ozK*p::VoQ)la̽;0͉'_Ni}V Q.uJk4|vpa7/cectM&gYO 2W{ ? {>i:㲜Uɺ!aTsl5{kŦ""l ~&S_}G3q%o˒7YM~.VE\G'cOѴ*@><:+62dOTgL8F*=,(bMU!DEZtn(MaSEOhml) TajAM7KxQeUsGX.ý*~ ުuRӴ%Bh‰N%B#mh8.3[(u;V>18~cz_a\6 i ֠gJUXνGtQ9#,p`oqNU3ŷi &Kml׼VJ+=z#HGv᠀_o1aw1TMoA~|tQI qb a @5KQ25xW`5Oډ,k(2G*OI/1-yI>D)Y =-n_,Sycde2S8).PybFdK]=g rF-EoM _iIs% B27~G9B_z#YR0GZ썇D< uHGMS%~5y%l8L0b,(oNr9ѝӡ6J{(|dBsGըs/YZTɺsE0fLn2^+)"^ϱ5Unx,0Zt49І3݀_OD&J?;6yI lCaʽݘTTe|d"il]fj'ܚt @섗8юJm &sBFFIi)kh$uP-Zoh=;:wQ5*=SifDD`*+zp~qiy?NPu>azb/|cBetcIe?+NT8J]3Ej.cx9ë9yYѼpiY|% p?Ѩcx21 X &K }]Poqѥ'cWm2"{'Ag;h]S> Ҁ]Q,Db7oZJEH+'Aw!8CvJ*U itw$o)J-{߬͘ /8ȳY!;.&(t@3TJ^(KU!>d /vAU%}%jRʚ?Gp#++d\>0MY`6 U2_eql]q&yp.iu/`B(ƒJ<,6A6AK 0`/|F7p%mhZ2g P˓B(R,r¦C  1`1^D6p20x(ж7*V&'_FBU.UjoŤp &c-iȢY'|)On͹Uwf3uVVIk-}^~vor0!}0 BhuEDDZN=:$XFIQ ^K1{YR6UaJ~-@""𖘜!$ "(&|ND9MNV0귊"#n jt>:V صd>Qt){5Ze2.7Ym yogyj|m EW# na6I;Bv{[BU.)KIe-ΒyU3@xq/G./?THwK7f??jLg"Gi3EjˢSp_XӣAG&B{8-ji]lCbL(كGv@(."&I 8O62xH L6-$L!~2. %3)kI}诱MZ!|q *18K)zUP#r׮H`^?R%%_mA֢ B&lei'fQJndE.0Ae#W$ncղ"~ѰO*%M #9 ]su) & _,7`}m6j؉(bu+5wuw9(?J2*qCRD&.E{J@bjT6\e>1C1 P漧j(y] ~ .^xt?A"vGJA 2p>)9ZGiK_xA\UΨ({jƂ% ( o>kbp$z$Nq|-aR&ֲ3TmI@P?6YJSٍҵmy%]R EQɎ%.Б.za~MZ?s]6)nnЅ#"[꣈z ǒ?0km+ܮm Ԗ pb)AӫԀ6odK,6z7 BiK V1tĈ}e #{T^I>5`l! rgc?')@'G?B) aΚzV.91oy 8۽Kq spckpI]8φ7X[z1t b^%1Uh/uՁIyM+nI &UKx96Z57eoCfcMQ:"x$:K_\0Y/~ MY'W[ޖȪD7cܡE@J8=}nkoMp-mi($%…v,z;~$yRTnn}d:v֢,؄02xsLe>r^v}P=~jC] .K[-aS˿Z~J_OT|dFmԱgm?8l466amt&!Ӣ)8yiYv>J49GV\ikg"MHBp<›_kt< 8J5%ꓙ8bd}, FUQ=P#1oR,]cE/Eh>*P؏k<2oG}8|JgdUmo=8i'KەL\2Xx"H w|~lc4!? ]x`D`@"h0k.y va`:'ba8G c:,ɺ"e!:$R"}3~۩£:OsԲűU@&<[FAP!Rvv!\<-aP ?тO-u TyI)m)2W#3H6oJwza[ܟ%Fq0AagU1#71+lMW"Բq+t@AEݥ;/s 6XHz띮A ͙g\Q;}?Fd\q(g<-_GP۟/ޗ3h/BzqA,`eZӪ 9=xkGX޸%ߝ0ȥ,AAym˓ƖnTi+rPK\b PoN A3QS?}Pi7 pMzĵbQ9N]j.(U)Vă~Jՙ $sRBʵe_zkS5he&A5]F5*ɛhĈtˆ j',؟wJi]ɞU"~@,G_@( IW7o <:p'meg81e-uja!*&Ο1G!Ƚk}o'Uܗi+: h4U3q@8q+5!Vg_;7)^0"Pn;:c˼9R熧PydbBA)"Y_%+YPg!QBJhT'ŝ*tSf7ԧaAm9(/2D#XD] J84S$Ȭ__-duM[ [%u푧nBɋ!O؜%pG?JQL^6^^.饍^8 LOhnN㸊۴hC #GH2[*W|M;C;)BBF Cd^< JbJo@ 栻YhWv2'- 1Ryք8n>3a&8|bGw4OC9l =j<qQܞPa YɭLH=11gkIBd4bNDiG G[~)8 =;ۨm)QXnipD ʼnˣ|zt~t؁oA[yVZ5F>i |C+3 $0yI{a[&z-Ǧ.݇=Aќe|8l1⦌^`dԑb"^{ړcfFA`:$7 YS,m9& r'oARRn>hYUei-:ēx's75v*ۡOX?-0ݵr!n3fs{ E1Jؘlg;0z誈v!LiX0l ?V_g(t]@#w% 4eUEZ I$C*h$CAC9ە <yȹ?RbYZvZe Hz .+9[oGh~.瑾5H4~ Yh>Q Ŀù7'`L3,iBOsu =zĮ\uAo]%/3cq)fIQ[90h̖%H&|eEbp pqqbubU8OP&Bf 0u"`iq=@nc*ZFT]Vp7hb.KԂ+ۅ mpsNI 0Y4 7_(1*B 4 ;muud> C!ƝFy r4JV(^fdJԺZ5q=b* h v9hGׯfqx^"[I95&@Gx TSQMHݥ#e!&j]/% D dd4wZ>pr,J-v'zi+gH1ca4J2`_ne0DJ,&;WC) R }%6RX7|w6w9rpDb*Pөg1Mٷv(zToüK"OBAݺ=vm#p;#1v i >(#d YNr>=X>.vۥAn:R2e^&\Z2ힷ%sh.)2Mk:88֊NJvאps; Q 0qʇ/i[|? en*GdLG$vZ ]E(<9fX } )"]\:g3ڹ%ۊ#rrihʮa g|ܤUn>!Sޮ^{ "-y7W98I9'X&=Y8 2O?L":tfpv4d/k%,2{ k͋׽;=_jCHpCo}3Zv%6ZoE؆̹;?-iKpRlîD̨jĹ-vȟonZEBfwuhU+qAnE)^KdRfN9P7&QM/(%I&F2v2HUuAX'oQUt`2Hy USs|;r%;&ܼkjL{ȎW(ҶdR7%6H`Wqۚo L4dG>зCf˹ [. DL(řU2&"cnL[G턔`Cz tPp1P/Ͼ'PJY'/%M62"|bд?W:P  cfhay 8#ԋ*+P?.}njCc;s$L^' Lz5$#(g$ sjuo{$ȯb5^v6DJZWOp ʩeDy^D#{M9_$ 8l mb &/oд\]+I?mFRiLhxM0g {BZocŘ'|ρQgzG&_戴^䃎5Y1 O]#Efs3g<Daaɝ̠#%pb.ljYT>&CwW.$@ءϼ^kWVɞyI)X"~ID?BU:}WnF?|' 6\PҔ0yu:.CBc=8|%i x^]KAHJ=4?CFq$BB'-|KbXFvߪUKHZx;H+0ʠYuޖswX_)hICMq3y{~Das RrE;眪&kNj=Fl-fh)[hz,Jß ea:Mx=ﳼտ0̉VRɭVI+]_'!7`| ! m4H~7Rܣ@pSCCkzgjˮTq׶u iHbetLߩ7(.DϬByP 2bۙ ۞voGB~FLlʐnR5wua]V-{+[U4}^ aQ?65.B6!>\|!xpm xGSFf9y)%xIꯒ|:T+:ÕJh)iG\f4_窒əH*9U.X`^F~fqI$nMܐ[v-G'糼fxk{O:B(1|qzx~Y;)TI r@a ȹL%5\j1o7֣FΡJM.'|jrP\],N[]ΰ9&DOꢵbX1 4Xu%]IZӲ;ƽO`ʾ'{,X<~(U_J 74 LH]9y]&P@ѣ6s).*M*1g7jz=OE XH5m.9p BFǕGhۭc8K)io4nVwgA<\b3 MSm1ծGcDmI_x&ů)}?;wD P4YZ.oQ94#@#*6>j~q1]<@mL-43MD}H1!<|K" \U14+ 2#V #\8Ì~^\?Z/B$A)pEL^|fV|^/.flGV">O6Mϒ]%b)oj4敄AxW~]08 r ViqGC8;5d{ XPd>YuiGhɓoCTd("ə`R0hbz['(T86j~/0,NwB} <ݻvuR$Zw.aV(I:YAzfjFt8^7jv;4)a4 uĺ3716i1j,g6+'9,8`!ND=&{]0z9g;F߳9>GP L_~K_-Ӈx";h@Ψ~LCOȖH4]Ta2cWo|QСwfX3≨AO!sJ,EFYoGWe#Udy苌d7rm*aZ/j%0G 6^UQwh79H/R}%$VہDK SqS 4wsLvQySS¯NOREfga8~eIL.P4Ii;JTc^Q҃F'A`YY)5ރ+aհPoU| ;j!:~3q1Xߤy_F- CtuNԵ:3pPE"ZipV0hy&lZN,m ?xya`7`Tj%2Toםa9ܧ9=%0SUcZbLǟm]CCI_<N&;[(db݌ݪ``6~2Bh>)͢"a3N3`V0xbc[U9TtbYS?ԓLVWB; @::[k 7F<)f6fKp6܇ZhNz9xn=/Oc)׉ ˘Q:>!De #ꖣC?ouZeKzdnsOb鳾[ $0ՎCa;!]:XL&*6x䤤2c.HʒI_h*,phCj2m3xr:.!o܁T %ȋ5#FgkSvB@ ^Rԭ4brc~O&ָ]:OqE,>U@Y'@+ Z-V2ҡw AK+n$Qc C`(Ddʰ="uݕ?\![+H%/c)Q{*:0=Hk7LpE=J7,Hxd;ki֛q#&-C؎́m2],Lc 3u䙐 ӔX|*S*1 kۃ!ө-/-z"ѿUӎ~io׎//CMX>ٚBc$r.KY_geM0qJeMHq^t>Ͱzn5-C빩:pZV|f7KmanO|uzh"r%$;â?Q3sɂ#:beB12Le3 Hm055M_& OikQ͆X@@jCk2,EWe xep02DO#7m{vw_ @[ElN u>}<9P.q.7,@WVؒ(<%;tN9+-*2ޞg| 8k)p8X#n!IL#Oٙ~UDh1ʿ: )=;ewFBޠrҌ6skҀƒ%!p4Mdc׽2׈(gnon[w:"#Vwh8ghFhk oD Mx=e/%SylUN:?'js,Mr0.\zWKVwTF |A ⼫Mu-⶗۴s'a@IK3t-wǣeɛhfa5D/,~kׇAX}v!Bq9G*(? 汫Fkq+?~Z_-JkrqT%b7<_[:/ӨaD @$B ͖Ty801!d"ЈejS=~d * p7zm#9e;JoIc9%''Nm_fY GcZ(f~ cwj&z+DDF+#,вmS76B{Կ(|i$iow_CB ی5(ACoUh?PSOXVgcw~b/tZq[,&%A^{ znġ*AE/ gl$//4~*8@|NxoWw㴋`^:8+!م.mv.KF<2oEL[~D05gOEFֺ>c 90!l $}XfO'`̊ÚMxB9& 2(-y5oM.CP<{],w0 !ͽ|Jc_g%܊P) M/?&2ބϑ`ŜN5r/\:#&QLt0٦@+ /\W'&rtl|mY z;eBH)I ERÈ0`ȹb(Af{!7٥aRƢoDjw7k-&jcmgĹP妆OD$`95!QsHMc6ZC]itT3,": ᳒ Yd?^x "~S /z("xg< kBN7@#,7:5Ķ G i .k~@""G#zJ5VI_Q-^ߊQ4&#( ة"WƸdV2tՌq3SwVT%G;\eihԖE^S"jOE*1oOp_t0 w\(t缸s8iv8Dekvc~ƛ<)G1̤njλ: Zz8A ]f0gA|"[ vPG/^=5^&>Ěu1xzi d[}\ٚƂJ:]Kz8]ۺ[}>W9Ѯ6!=J%;qڛh+tmrb&twnQd'$39! )ZqrոNun]~ٵK;X``vP0[ztCI #-07x7+o4uip Bb"XſiuQ C5i@}W/bj<<{&oMdxhiH?c2ē5?wX A>7K;=0S)h ?uV(xی7d(h@yJ1x wDx)H$2ymoJ$bM $Ǡ(9 ˀ:e2@ g ;Gec=)@s KqqM:J|6";4g05Mv_fG xlkt~%`eޒɵ`;ghkdTys_Vk'TalM4K1b$ %Ih|8,Slc֟sL1$0k$2%r'g(hþ9.3o̠QVܕ!M, 7e-tzRUG\a>'TQzI)a5M[v߈Py( t|K-oD"&}{N ʸ웡@I;/7V3:[+pL]҃9]DB,%?~.b~g#^Zјǩڮ/  a+0>~a{:)m5(L&j8i'd1r(гT<9Du+ ")C` dWeg)}>a~C }6rZyJFڮ)Ol,ʖ `4{z*)I>TvABD#_;H)}@Ԫ"5;86G5?5˹t: f}O I Db5}@\)S I8n䆽Bv.)[@*fN*HLHb1"){? EHu,?8}_+u!EzuۗM*5_is9tE7vFrɜ#վ,x%˫FZ#gGۄ,)A{kS+ bUeE_\ά:oO, "^5F U4FV9-bMkc/%C_P㱔,xRt1뱱 [| ]u_5`:{0| o @{FQ7BY77Q Yָ_w.xFh;6Bnҏ zǚFj\=6;3zN@Sv\ǶID.ׁ*'O;*`XMUT^x4ƻ)5TǣG޼ >Xu~{κz:wqAU 'Z;ʍv)|.I>BͲflC}LMswo0u_t|:>5=msHa`V lV@[c"tƂ(nCFrjї  Ujdc;蘗HVCr `^=Q5Zl .SU[-)*qF&p q?{E~njIkH3G;tL fl~NTכITq61H,aARcj qޙEm89l3; :RFj%uWȌ( OF!YτXuR'#~4Nk9">yY1 "C IxyXy}dt7e-(ؓqEئvo*84h50UoHyJ, €ٗV؅m2hI'X6+.a T?,G:V[k3MXDŽ`ȐR Ȏe3^~}>#5KQ 3P"s9FH{˩*`;F I#85/gSe!ΈX,t/tU/Q} X%AhXfZD^"hP Ep47 //sCRaSO Xw ` 9JIa MyKI`ߚqTŵBTd)]<4C ,|oV.y7@[H(S.a |]Ig(l?c Vti> ԠRI7?-T"k.;]?>+D:l>REHlf\I"-"kwjm"!} ʤ5*96aŜ$42[:ͳB=m}Z Ah ?Q47VmU'g|0 #g6\0|247FYNQct]܂0sDy8f6-۲]%G$? ?r>DPLafmtL!CpײbЊ%xqzb;1I[> 0~0qǼ,p]p-LjGW[v' 7a|P5*u3>}zC?NP7pxaF gh3 t̡:{֪yPVae\ż,]r;8qħP(_Z(]`ťp8q:UN)V9dEHى,#;]7X6jQ$A~VfC U"̽ VT5C)~a;picqqxV$GdX@[U{w+~|t-{ ;(UapOÇB9H -N\-U\~Uh~h ej"Ed-{Oi_r6^b-B09p2L:<Ը[őG/IlHT'[fbNDp"}X׺ًzQ?y`]l&4)*Wea݄G+X@~m뮠Oi(~1Ega^- H$n=9 C*YQޣ)جb`,QFeRrG>O uR؈iމ`MPR*LQm +UhUdtTJGUJ r>FW ПYWT|_Pp @|<_6+@ MOT2)>r3eV;-`c`!h?ҬLGѫ"(}OG[WGKFѫ״<[d-'Aa#rN)x y?)_N=д"ZG"]_,p =&"[pp{+$Gt9$C%L+N:j9Qe?nF@ k cTxz)>mәiy JcF)ad!Jh(T\`H%RILBS'5Q`$ClskU[TէU6ϰ-=w>|gs9<|]#U?xwo:WT@tU)f"hL5 QU Yv0ܕh@k`J'i(b4x0bɶutmn6$SQRN 9v%~q\9DKW1Buk;LSȄDq4:CmR5FR IBV \c(AU*.kvi?PU4g2`ǀfXi?Nx\hzRE*PtJR|`koT3?䩁S~G=OnY3_+s.ŭ,/ߺ|!F&2vϊk=qA(X / aD(~SlBVWխXP "QcÜ^?V9H~k~5V#L ?TJyCYкUY z:8"fi"Itԫ][AHVVF|ab27; zn++e=0YݦuU9@T<,cnrQaK8(REVs^*$ aCdyP ?ۓmRc*O$CuC5ޑ!\XƝ^a2LA1g4)T2I\G0u"E">A}KC8?>WWZ"Cg>Lu52wyC 9#v`k3e/n7SLdhu f MlJަ^)/ ~ ylCaR8,e"cRnmݔ1#+.9%)`BqJLvE.1ű)Y1臺@P-zAcl#Y@Y&aiW!xshMD)U}Ԙȕ0$nњIW:gXʹ Zߞ^O2}$|Lz,uNY={ V&N.-]~$bG 74- #%p[y/JCωХ3(ko:,}@>+A2<ƬZI xQA,u@5[{ԠBxd$c/> k/!99>Ta+^cPH*=sQxE|R56["ŋm/\p-b] e“u"Zz%8@?o֋4<2"@ҬJ P:+ |/›#h9hЇ芚$ K˪Ef7gaqB :A>W;>.}<]@㔙}n{/yE,xVw,̃e"IDųlͱLC,\cOesƠ!`YG`>v~fF+zf-\su?B#K#L"zB|-GPf(M? *]#s[MIME4~҃s_ *׫WR7Y ,Vpg^_,$UDO?fo@WU`Vv%J-k֠9tZfw)-/T&ZMʻ z4ll,ϞJM 2.oў =GӟKQBPdN:/r.k0WA8tJƾUDiq?B6 bew;/BxbTKj)3~ļ>VxM8[}J>,15wNbDB fw=T.E{{Y, TYK~^Wrv |ջ}Ea\_.fգ d>"4o-VQ|"´|ߊ`5@i`d;S?f底-!nicsp&-T:>41]Pi9v A壯M\mϰƷUT"}~o侫<ɓl rN/8CU;Nк+,q_4tTS+QY" #,PrF^tt<ܙԸVJ "$BmSE*.O"NumpE2xAep'T4zTЫ{B(:|(Qum3j EƬ=?B>z1iJH\E2Ĵ<Rt#RH>Q:ӊNx΢%N6N@m%-rfb e i+ ׭@d!]X[!68y-`z-tQȬ!/;(/| cm!PxZPю_ ~-Ǫ?oh|8]*%U4AVC˹)GUO ^e'tJ>n:H6Pd(sHǃ]y%t!X NU tHfrK*<*qq ]!P;jL1 JD\z>$b :ׁϢ, H 3˲qh$%{ZyX9o0U03r!LnssiJ6!w;@42 zL\~~D&3f:ĎeTęQ6{I c=otGd,@2f$hF XB{^#[2l&ǂ:]@b/DH 6U YGDP|pFO'EWe;snM"-thmugwK VSs[,w:YV/1ALXI-IM*ᑊ4E 7Y7xlz*Xc7o/@4B*sVBBZi, ;iŰZK[DE %PUE ^X$eγ+U:.mp AEr Vǣ@q4D`|`?BVmMNXWEp6HG"&5h(8rT$kI[ȂkxmkX R {}|G/ZŒ $ͺ~ZiWx<j(f;qK; Sb$ߕP.Q~?\2!Jt 1*yRof$,c90xRߘT j*$4_tLzmR> 鿭,Hц:QGoGs쳀WP8 0gψ8}t7}j7$.BWڎܮz6!"";Lfmʷ5bc=OPݙAbFk"&VP e,OH M u =BO@}6wؘՙ#-s>zk j9TZN.KcE?.gUN͟:ea%k/aބV#ҚSd$ÊR;vi ͈,?瓙zKםj(Lz$ C3}$4Q@!%д6̐ 'Gq8sqJ~՘ãjԲgQWA.{H L b89n=x?lnXQlTj~5uDve89H%;G;u*Gd[80 i cn 6#sl?_OJ]Wt@!pO[V "+Cƕߙ 5{]($+bauŚ_"XppN?ƪe()4.v8]blw9< :#o7)=GHFm)^ƮE%+j9(M03Z(VxVX%QAQ|/oq Y(ɽ clgx = ei ZLc؏q<$񶹘㩸4 H'ͰJ[⃪_ӪcԼ25u,h_3H).^59@5},;&lol(H6Y1 >:'Y^L[So P^|&ЊfЂcC8aS eidUtt3~VYZ$g=g4R'RJ&@7Vz~OU%Gbc8Ԡ9q#YVW&(obB$ O5r}.Q™_^ 6׼ Qc.DIP>İ!Ji9e 6i܉}>ؤpk7GɋXmYQ1]"iʇд0dJHtj>b!݊"2!OK] 9ASCoaL-m-5BPҊ<."Rd>X4'u~T4Y}l͎Ě]GNzX6p-_d!n*B v!e k3Yɰ]BujM,94oTfy]`=%e~̳7&2vL? R j7C4G0%^;76QL7.Rqx9 9Oܱ4k39sS39$/S TR,vja-Sޒħ3hbFTG,}zAo{Ut`|9!Ftő(}x̂)dK1GNG :ο=Qg(\KDzSnӊ3mU7Sqy̻W{VPT6ar ;_ ϒn`pgMZg9|`*qpd6]![2@៿ .d^f'wj7dtGgiT_!y<ۅyvpRQgecQfrTJ? +^+ַS㷡N<0d\x~25ō'6 $oAH7lM7ָ͙+%;WC͓\xMy ˆYAj!Ӵs(RCN^^g(>a'V~- QMc?YЬ: dUDyR!p!Yc]x a~Qi%ܘy;Ч-f"Dժl"v[ϫzI'N+#|T{Y[/b>0Hh:q5Z4$OAs^@h;h<ϔ\ܔW+c!SzI<z7d0 YFT[]8~~5=B sRwz6"eB C0c2>=U) IPi-~a7va!H!Iت l@2FBZN"*m?no&tA)}fd"F?zbNׁè 5=4 pj[pT]!=Gٽ~{eK: SN[ ð7Crs6>fuH$H RVr~zŊ9.+kX|YOk(/ӊZdR }/NahD&ؘā|VAAf+ށ3(_)zA)|YX^Kĭf!={Ֆ-^Ň+5aX /۴j[0g윖6 b0`~ T2$e9EwIzzʀdt֮ %nCe*w %"КV^vL ?B֝tؖQj>Xl_2tG襹Û-K&Dd"IIi>t;l)fe-0bg1!$,J| kU~\;V2h,KJ`aGL[s ; ڒT7nYZEjwTB `P_Lw=~:XM+VP$3Z5 Oay+l3h<_:@wbbt"~!CQF'_vA$z޶'9lgZ݁ʀ7[.qfGx$y|ejuiojoKyX geI㻲w).  wlW'x+w44N+YO2=Z19v hEh]fGۺW|^o $5j6؄o &re V;[!C(<>ժH;t rN>C9w!FK2&ͬ90Ɯɻvy,dksM\YS;"?v=L~p{ IQJg҈[)`'4KP4!3 EsŅΌHhbKaP"ڌtͳ9s۠D| :&,eKo~e8FZwZLeTֲq|&)™0C;ɉ:a`?SvA*;fΖzQiBXPM(-:)o>00EoC(fZh7}QP}BC}}vTcmnFfW [xĎCr"nzW'8 $#foցTii:j;@chiE7^tM;Y,1\dM ysu {Χx0gat@Y68):(faj$9n㻧FPيTvj)9z9ێSwh 2~%WjW0΄緀E"%i1xF\osȤ5r&"HO០ 2atSMْ?%#TKS{%Gݳu%?1}&"MExhO8ahj5:xmD6C%D헶?rĕĵH h!| wه+&7&c"2:AKw8ǿ wݻƴe l;288*>z  WJw YD qeN!n+$\߷=Lw/ E,O(j$)^^ob_ (kPR웏xX!R- 9X!^L(yf؊M`mhq5RY;i|S7K~B ^|?PSPee \tIɲ9U-k G4 ad18yH3Y52,ƽ A͖3}I2uNoUqWʓOav$]/4nȧY6*9v#^%e` "͝D^?X;hB᭳nGGZJ"PhlՊVp ?P q~9,ut4 U>ð4`8>"^LG\h:s~|6ol%Vs5+Beݴ,l˷[ҏƪ:-YyW~4gѺp v˒P/N_&1xS<»FW}Pvo>p+0-v C4B{Į9zzv 1CJK*:{,n+7G6 +ynTPF;UAQ%= yH7mlm6ՌK뚠S'<؍0o{w^+2_/pq#v@K{[(]atNum4 Kt>`5@/Xe~-[=%uzՉ@mqGEJBH+Ϯ)Sdv#mUgWևD5DvQ%'B gsQ4$IQ8 K84x7.ڥz: X2aXRVC!==E ^SWe9.ۂt%?W|G \+^2MV‰%{8,qًDa\x|v{nb:9DR99-9֢GDb@Ms̪ hV֡dvj55OƠov4+6dMew#(RoTy|hsH[; 3)\?w{v'R{|M;P=ZF׳>7! %e{gӼ6BG Wd&줔W 4D!޹vcPj 0>=p0T:q r:' 'o ,+'-+cg!7瑃|N"N}NqmrZk&%W,bSq1Xj ZשʩPMQ\ D&}*پ?F| jzȢHi0H^"Xsc 7V#SgF¡z8h1aҬ'NԘAB|+G:9:@M.TsB]6~?ȗo !/G.ğYB-B*:(=kFYh\T,B(mOV~z1 pU=kfxSu{~g?D6܆\ k d0O6!}Uk[N<9eT^46YD27BMnuD@)ĭ~qBDۯ:ؘZզHh$6w49|7w M3A+m(rReRac @͚[4:Jg +f&qd P*}C`a~Mԟ#?P @o-i-֓H?Y&r5] >wdl ̔7swqWbs7T62H- %ΏeVnDb_tJ50֐ӣD@PHL- .) `v5'9xŧʉ͹̃l)fb<&i10?إL@5|q/䲛UOv:ll1j0Sve8jU IBw}Mc[o` G_V) VK.<0Y Ә 9NO-Q `]oyZAn^}Wbк+] [xf\O(o[WG(@t5dbM$ܩXmpMZ1DncQi:g*m##HoN~NF{%slZK\fߣFꄬS\kaaJV/ a*34m ZwʓLho?V.w݅(y_cGv͕W^k bxEҸ9S!꘹dlq PyH@7x6K5]_b^nn a@3ZgB^哤{"ǘuRT( |"$L<1Zt՗Ah1N KU)80pMƮ>qmCӭ|$z=-1et!=e%0+FˠAzy ( Bz.Oѷ [*" 8({!no^<\( *l&RrBӡa WJh #P(..W0ٜxM4U^k:#&%42|)mxPVE$xSZ ?KbSUٔ0/gV ^bDjDEa#ڔ2,m6n1.6`-11TNv)77X}#Z3|'swhgfgi%7Onk`bs#(I'U(}-:U?#o>.Ml<ǖ2?uu>߭ɪzMDvy~O}x8B`VY󭪉1RrŨ""'}2Hu*z'c0rX[ `Zs@oDlջw߬%rL&QHK'~[zARk1n#/_]DAy?HB"*T.y"2 8O>;:p6~z yT@K$䈇B2NjhˈKYZ7TGȸp3$Eܠӛ3g0; X_J0lAʲe)|+\GAaPkZqiU\Dgfv ;JLfWdræT:hS*5P]CGH{$wĹc@9M/~10Uӫ"/ A0:\H(}/_E|Dc1}ipgFlՃ& Bjg :E1a*/-ծYXvm~郚ÓG[Zz}5P(cnFgݣʾd Nυx-c>}Q޺,HPZ]ԕAeSg 횕f>99]z-1,udV)A:DsW>(CLDm7P8 ;Iyd7i,|0e,H(ll2LӅuƔeC4贋MFRN|q]-R{Cp՛uI p0@7䂌W4 R*4 B&11*+^R堷|NT~$f w/RуΥ4mbǟ.#o+Ta^#nfV{@4f:L@ cX0gC-}Y <xۯ͈8"z,: $ܡp2Iwyfr+q$冡4ŗJO h3h&KdWSSw!CEnG{[AюkdRPVxX$8 tdgIgW[񺩈iM2\&'0/ 7QSڗNk+.ʒ;pZԿJ}F:B/Ip3@)'WkSdQq3*i\C6q ]+y0ٵk1dFMB/HLf0Q`h̳Lb ,~LMZ^Z Y`H~ mI hV%lew[ pA^\/%"p?rxw5\ [dR\B? sRX!h`GX/ /UMYzPfЈX T]Q}Z ˧à4&3 ouCfWsF٬{f$ 9%",oj, _?3װ5<(t/1`S֟H7|_E;.%։kNJY V8hM"C.%GO,}h^A)& ġ`R `DjOhn%ܘS#ˈ{a~L!#sfSW :!I=< ; sPe DK_T'RWY DSq'랤(Oo/I2ڱ^іSQO# ߐl2ٌqdAH! v h}3HGg{!SȀ4hӛHZx^1޸c!ӋKܶVF ~tߙ}ΟVjIS˞'?]Z;Qg4tH̦(2+Gx$iNzи !*Xo48V$-J>\'>I2El֭>s2KWǐgξ<\־ь C/1 '0U4=͗7^GVXn.HwԢW\9 i TH#;+: eOC'J&U!LM^Ȃ2Vl͔yQ&f)J`-wN_xps2 C0X“Lus-7o qc=J1kƬZnݩˆgq{r @֤:Ab箔K6dUn| g&Ǹݡ_ U6ͣ *[NQ0^T16NݘZ,ODkkrm>ҦĢYh]/񮟠#DOQyRrطNt&Anlyae `1@K:f:ޜ?#Q~H~_w B mQ $T܉Wq{ 7g@=#EopP}1dj8I`]cXgMϼx2`IRԳNeqݤKS%ufܩ͞ܚ+7grWj`@8@BT峨)Q)$$IDl/9UrB&M2<u$]}ݹV:4PNI`K{=rR;s8A-@R'o3øX-| @SK[_Hк QQA@/o(xU! [+ڿ;r~ʾ._fI֛aՐ[l_%W3&9xJ׮ǿuss Θ:'%:J $CR;aF&H Nqn`j…Gߓ'K2 r3^Xג=k'Bv5$]fM1^m3B1=7G>ӂ~Awec-/S†m*,rM<M]uǺz orӺSo`-e4DʶVD6N/u{Ya §crs>mn)GrW̠ln RgzG4=Pk1!Ă*Nk~+MA{5}9+xIaʫjNuԩON<0\^ /%2x(.>Z> qCXjN5. STᅡҡ|~W>􏄭{w7bV(\J [piH0#h3ބV473\>|=5pXpt9 NVMWJLV0A BSĔ-@swe,a.FOa]_bN2EzcmDU} V̰G֟BɸEm@DuRfo 7lTjY͚~΀o})} WlkD^4􃶜ۧpS7%=wz/(bIQ[c9SF3eIӛ?0(o4kjZZ}@$>zg;).,8dzHOΧ qL5u_1+5`/c.Zݠn8rA!A$Ix=|PT6,o>4OW 3S-7BO p+h!}$~ሼ ^Z@SMA <$tr\˹5򈸠Z"z=$Y75 [AƪgO+'R+WHlǩOxPDϡ"/NWNAm1^lvHߊ,N`*"tKZN65ϙhc%=s?ZyX[sX߯$"T tF -,C,hԹ6U}`"$#K':ʿ|aV]p? <$YʫIg8cR?d*NIH+Hm)eZ B-[X+J2/n2ѧ\<~Ic-uS)wōaݳs dؑVS7S%s]f0m?4HƋZuD#xuKam's?,uXH4V?F rK.T?u]w]@N9|j{&{2#y0e3"Ջ#Sufs1Kua)h);e;܉fiRzsO?ϕ1$ hT %AG2 )N{:}[zfYh^ =Di]  FYt㷊+ 4CojuqO)ƨbT830K-KrNsk{"j_j%xTȄ !Kjm_X J/c)߶ 㵽G``jK蕇yd(sc{ 5 3yĞ4ڵDavq~jx$2<&g'(->J`\fJVT U%=:?]Wy `BJ5BmSv!S/ %cydẇc E*>EgN˚ |#;<٘-`]QAv0_2K>:+ Gs͏Sc>5A`/'q:RW85FfcRTf_Y.Ġ\~_@w{lVϗ@e^$n;glcu1gS +4xJB͝+mMhfbgI<!vsfNw]8|kr:ŸjซNG Uy˺b|!ICLOGe$fΚ>m~Zq:W&9Qd-#l:`W ) `OcAJ9OBI&:\bJ3Rsǭ+G@)%,\̌#Zx6%To,yo!O;y򖢮>Zui LEWѳQ -Fv F> SoA7XC3DıQ(;N6AOݷ=&k dYIO==2IuUF/Ν kpG214Qm-pPeלoOD6"ft>0cs#'L:xMr='?ajQjxG+gFT[^h`>I/j4FӬ (iq*.3@m||R‡ǐE/h(ĨwNoEʟlhУ/$7^Iv(ܸB}*wX5,)0޲E&`-Od̈́BvZ2 e|P^dŧu#ptpf#oq(8Z|zLh5D"vFHǵ6Mcn/͊IJ".@_ tК$mOM_e݊ڭ!XU Cȳ|B\^QhKjGc.ч{܍@ ^V]c BJ_OFnٰzjl2aԒ;ћ!.rCsQ!A"zAT2dzapO 8>Nd+Rh,\?}wd2 ʑyغq>SYsA/ګa#?Z f-$ Wzm^ 78`ڮm$GVFз#0a?>L:X\&fvpcFˉFJYE\bkw =۲gvY*yL.Gz+d0kēgiθJ:C3UbgeP#m:70E5y MOHU,&H 09'JX hTW﷎8v/L moJ ,\ujk:D_avZ40e|sk2Zہ?ҭ!(؍Uʋp-*5i5alrñuy(5KD潥<BFWb%L-8{x zo|e# 2rGRt@#`rFeIqGZ38E|X_Qc b{ BÛ^8 A"* v-~ut+ >JA9,#V^n-&0Nk[Yd0ve[-w8tSjjB㽠.'Cp%]Z! >n:ؓIɱb tYRMk5_+<mI/`0_G w/ussZIB @9Bm{\IHH5@'n7ņnY+c[]4ۋV4[4sVHyid!zlX/NrUN:Gz {FO_pܚbbnԸqpWAև2YO&%h؄٠*BT$ ?<^#gH"kHflU(-g֦fۗXxi x9ԥeG=fG>+S#C  ԺϤzQme*`;Lw2'c.xKr͘*%o*RKF_0emR:.ڀuP1ifj~d^Nw tV€{k.gd(i F}NM*lWRa"ܓ1ofϭM6Bea3>ĵÉu:,4mi۠royb4H4-u^ +OESxNw37MsqHRjWpu,cIOL/jdNOf+ AkuRo2fG,]1FHGȞ[|#hf8KMmCtrJ&lJD15j Dzɤ#5pWA*=L`/:oi"\ƢrBZ(Lu oYגwP(F[Żgx8Q%'`;Kh ~w>Nf*TzE:Vzg6,]r`[ȩ; fi_gLsP'c tR;ʩA~.'n:BX0f!8-sl vԐSO IHIH:xmR5J.:]=usFWv qݷS]aءjdF/x0 <ՔߞQ!"$739(Vp-nEsw ('Q f+HtOJ w7N/nHU 0\_|*8(9@ F pc"ޏx'XљoWFy0,A"Ma-J?RN6{zLw8PNZηݙ7&r"3xA2O`A>+oMEJ Er7^Y/Y[ez fm9n2Esa(QfvřPn J!`HK(z-bT\g<D(&3xB3!|s}b^(-bm:JJUyVyMu={K\TKDTM[%(z[ r^`T@o-,xݱԏ52֘gϚ0(?p1vo gWh#eAԥM)ZIP=Z27Ꝥ-,֢OLQ7ӚvD@"L!0?hAqF3P ?C׌-0W7czO ls6#JPif0ۚ% x^$]Z ma'AH34Ї6Ruy ?^5%4IqlwHq}Ļ,eSn&/O(P-S| }`n1f LiZ xd>D#@ m-" N<2Q.Ŋ5lFĘOpJ7MQ l>j!]n%hIЛ,’ؾ<VEc@ Ϩ8d+֖&XsJմ?|.ǀ&3ۻXssx2p9x& k MǶɁJV-c3q}yY;+6SO() z f}IH$-ҏx͍QOOtʑ鬠bt=! OnZK)>;t疯 ~vh2:0dB<3K<X"~5HP\Bo2dX8jfvXs,rJw.Ο\'K ;Z'm.6dۦmz ;Z{߭68+SS!NS}tF<}rݚ! ,;07RRzS4p`"JSٗ'NbR;JI# q*3n2=δ5dmT\ģ頁YDp[TCG clKMdhniփ9 7E#eɁ%xT^t.lG|>{j:ijzdYO}RaB?,lw}WH%7$ХH@ShT1CĪ7R4P~} r͞d&u 6G8 'M%(e@4{ Q#Sg2iqh<0hfSWװYjiS> #y/V#ϕl䐡Ƨ-Y;0Ưg3:E3n>|I[Lj}9%E/}›uЌ?uA>4Xy%Y1%׎K#Kޡ _xMك@̊;*Cu5ɡx79|.\~1)g \U T>"x/uQ:Lpkne7Zw:[ٝ[\\!uv;Gv=#e~[" K`@&N۾T@|唃&ͯݭ  bB@ רm&Ʀ6#\v\O[8L!S 瑪SHQ+ no]Ɲ(U7gpkHFN SSJ;)2; ^fVo Ƒ,?&Ty\a; 0VQw$`}OݰןKS}A˶4)$LX}xET:A~ge췕r\E0U|g^vB1auTI|mUϰ5]s CD!^pQX8~!MٕrE5}erH s$B)C7:<=[w(n3PIJ _GE\Aʻ\{CfdDW:V ^r&5 H+VsHPz==#vnJ"Mptz]vhNmmٽj=J29(l/7,=^K YUm%څ$JJw)'E9CPiID]b#;XVK#DZ z^RO:Nn"|Az~p~1~L _py5\g &Tֳe2AՁZ1F}z]Dg ce&!x: `*# >ںD(_$)k3-R lCݚkP)srCIaZ͠|V)RGE?i f jTHMy8[t vhқK#8LA\ N' \* 4ʴު@a¥c{VP.ꄓ 'rn1MX~&:DgW>#z%`1bTޅp(טؑ,En@JmwŰt`Du ӁTWi{,a]PL@ grmKI 벁⪎Qe#)U%f {֕g\W>RyZ8H'1]yw `&QzIּHQ}۴(Ҩn%0zԱ ˶O*l~vms[kFK ӷJ9V6m~.J{jzDY})8G_#ݺUf}td."~!8*cY m _,Ué%FoZiI)*E-ZAuF?l = rJCK l~FcwKm})DfpiBʷ;HASd2\ 䤕}EYpL]ɰ1>fN)k)m'e=B&4 kTC~bn``Ք#햍U:*Q lBzXqscMYj7R +eEgydF:>(q tm%6EQ|[E,.WɷhgddtFx&bhRu]*%\ @͸g|} 5s1}tA|,dSp1h2Ϡ9Iх.>e&撛aQ&dHqj\JEQ` >o fNl>H#$\8ȕhB{ ;9hZGE)%x_|n$fI-Bs8_L7)mZD43V/95]0afaDh"\&i|Ax{2Vqm>Z@5|7A@yF0 Zs`.7kzV^1K8{0\# l9RNEݚ޶% 7M'ˌz#B0E1CH}4̆iǯyN (X4Ӝ]A[ԽEβ㹔2|R0SP *Lgiq-#?8|hLt8 4@K \Jaa1+i`se z?-`x.>I@X?Zy~X\w&Ll=jtC9gXR_B@e.EX P Xi -}]t0ģya~QIG3Ked%v6]pHhV ^Km<]1@Tp:Hu5]*wkO_ۄ헔sM7o1dO.-fB}Ay#i%E=ә6=2PUv;Ŏ1,RSز<(Ck48uG&|]ԨBr"鬋mMt-@3.?>u:fv)K(/ҭ]UIj"(wԻckڠbK%zP:2v@NːSH^OGz} I3.߸HG0GI_J2]RIbW %O ;4!G)|$%X]xwlWXhIZ9X7  11`8[|t~Rk̃pcmeCO.GeӇ_}ouz]h-bs9s(᫉t"4! /A/o^T/%*0-0&qL]e41 iwRXǺunY,K*a{=tHw99KH+Dx4\/wXҕ~!muε­&I0(=jDG s}DgpJ yNDd]ؠ։I̾M7Ih:D;L(3I st<{HZwSSrH |抪|m" JKk [Q\^dƘٿQC-Xɋ%3MZ5zZϞOlJg=sD@0uՊ} Ț`5ȒB4:0x5(Luoд&n({YT|!)?6ҹT3t &|#H8D{J0 ?ybWHA9I5R /MսѢTr }!x<q7j7?M fCEZ5#oTaB>Q~3b2x΀T_ndm|F{MgQ8s}9f$ǫ3edvGSnkAY t m+J\a1AːVy.$֑@x-a q^*2GzqzMpFJ{8f́0rYe}r9&xY&5Yc7K:O%X"zdy0eE}'bj<%ҿ?a(;/ xлˤ_QM2^mHŜI7P:!{F[ _kD /0(%t|#2W[^[V^ߐ+o=a\ 𡋖_j2$bҴI5Ž_y+Ǫ/x>wbT1U. 4҈˸]y-Puco%a0ۙKd_飼}>Im*~{^}]T^^||pMZ6uFph';Rf23 "JK#7FZg?~"ڽ?@]58,2l UfȒJ%L9\6IPܠNztvĤ3|0lb' C9)4C[ђ%FSvILn) jv*yz =pwVy+g s;$B]z 滝8Dc4{CcOٲ(-3|BXI<)EXr^1i븆BGcΓ0=qkffWn6: by#RP!qMBZh-vaYl8ꍐ%,Ll?:Nr 5TOU'"MЦZc}; ŸFB\\|_P֕H\Nٝ9bY}۟vcUMJ=Dj=Z:ph=q_ow-:腉,cvgaHj=J9PfCԪU8!J1O :CH=x =_П~9 v;lꗞalڍqĪX}5].0Fa 8S%1s @zTxx@}ŧg-[>6.[U{^ CO2.vHQ$hm(%`gz!ڄ{^H#Պj&.0C0zZ,]94!1I}v{ U(XO_I})jyxRQ r\>gݺԁv )Z(X#/Sj̰|r&z7GAFƔY-c_2+T?nyU!l0sK2mSXIeiڧ\YXa,i ԯL'qaQ@ɟfM)?*ߖ;Ⱥ)*l$?ը\9<)>-: 5 ="ZQ}^ 0'O#f͜Eޤpv _5{T(ԮgXD>U#eи*Fan]&P`K=/]65wrS e&c"Z&׌ST͝MϤ~dmA2~箱wepniR`6݆ޡKCjk F\Io$ ̄ XGAԹZP)j\ JKæq^W\֠jtR1\ GDLeol6DSYkG;خSJ&(Cs޻ޢLz-=?+@ `E-{?i~roLd~*jx4ƿ/l8g~UN0lu=CzSiq?sB'8Mqyd{cs9 k( unΌu陣tK`%vff,_!Z[VW%l 1!G0H"Z6vQ4>a-aK"MZ'ǭKfo(VɮT~-{ 8YfZ N9%ke gqN0LzLb)]APm{9 ( rTux%ꀜmë;ߎi4'CN0q#[hMu2M([jXunW-k꺢T_é`&h1T*#>:^IVlcZo*M\wll賦ӯe4"S;4XKڻoT Xg`fHf7XU+tĕAƙq8A}hqfxFr#whb HOжHYdEIԣ>(+oUO0JI2Π8F"@eQb%]@sȳr%_}13|(Vz r Eퟂ`9+k>2.ԦSԞ ~ʽaa0GND`@>|Y%(޶ >цIAÐ*\2oA;[﵅~ -#kzpv5k7jS%Esv:l=}J1 " nnPK a"E(j{`Az"fA2jqSl+if{zVV@$vGJɓ+%=ZhH!DYqOڨarܹd+EIt,~ǠQkkdmAٰı9- ?Șp!z"a|P| ߕns x f[ ;9؄l$ڼts 4Y[&gWYMH1ѹ1Yh-$g * @U  9Han V#ŤV~j5z0=2jI&%KsQ/cTEl @Xz8viW{"8z#~rj ~=v,.:C^E5{Ypy:c)Nq=)F%7/M7.2okߊԁ 4V=+mcuqպVJ8kEXk]Ρ@Dj k{ˆJ{9ɅhZs?؉ޟ5`7p:v9o9NPvq@#nK tgZU{먴iJU,h# vA?  mwxy\{cCuۡg_':e$dUc:|>d|#Z΁m-vpŽFm&ēeӠ#\"' O D̳d>r-.MLuz;! ?긔o ڰ0a&-!cȏ 0vUgw~NE5̋5W'ݪdm]@eE# +Ɇiv? 5ҝ|>"1'/`N)<͑,1؂n[6 ^wNl-y% q\źG6J P]{TގG]7 K}HP2%6:Ci?I4]_y {Hd͸g27rb0c;J1ao+H(,eSNֵ]իb\RH*ɱbε?`qn"mCp~oYw[@''NSK6dD\( W1$4  T3$#z,UIp5e^a<̫J9\=GcPVaAM@C3q^N&B}Y(A >'REbM:OBDFLS=~xOKW#yo9PrR^;a7w ?=#n9L Y6(1eװ,(9m6!+ W:ya )ιpL3U2|U}n@`ي,խlD" u\ɝ(xxɆ9 Tno_ G?:ڶA [p;6fjmg,jB ͒ktP< ʼ!zaİ@L%kU8]Џ쯥fW, 0Dp3^IQax4(0+= Iz,Es^${⯩yˆ1X43Zm.6MLh<هW8Ɯl*FMC}"l}#Bsv;SMzL% j3n;~qYWMS8RuWETj>˱B9h#5i(btӕ,DUQM;GWn~e@;Oh?AL 6$jO#g m\N<}hGL;% J:A8 WTB5BQ2n lU{0N7EBr1.\M%}x )\[ta(YOY}xU<8F`yJ}W s_/3@ J ʩ=D?Ⱦ.|zLeߦlpaKG=G `:+/3#\C YZ.I>}>Z*Igɞ̶u Ew^SA!@Ll$R^YӖ ]UgX>j޵3ҷ!!%*#kPgPز#xvq2 xhq8|ڔ|Ӗd#[Yj!~bw89McvԈ1 Z$`ɎЧn`fR?PAnb!gcugPa)N9].><3_;SGc='=Y1 Tvϣ?ò缕^5eBC;I[u] 4qZMOV ”AԌ%sP~ȃ[^+,JkZa"Jos}N%l oYRNo"8Jfxj-wʓa']m&k uCN4$FᷕH=WFIR5X[Tۯ͚lwZ}/?$ð -SbuU| =^_83Ww7C͈Y}=tσ@*Yr?{6;-4z<^vBJI=) 9ih'c+kz6lOX;GJs][Ɍ*W<&_<&FtÿN]Mjٽ':&$ hDŽ0RKC(p"4 &'pw9O kN`K7 ))v. bSeX@ɜupO(IKm^T@Zu)tnZ LME!)Ā3./J5ǝ#W hv9!&9;`zQ֎9$?U){VTl6MYبl0m@n12EB#19zbwIE̍GTfХ⎾$0gJ˯0D.rhcKO:|[(}LkA<)(]>%p_<41SpF{+IUw P9.aEmea>ny+I 7zU-2H($N "Fz,$ONv\RMV-Vf3~έ2q! c1L62iqnh;r\ke\-i2"gk;M+l;p=h1n}~iۥGEB'rXb(cxh;T5"9Cq_sAfеH_ͭ;  DIz/dTuL{GT AhbFKKطn+ hڣ7ݝ7"^%џQ7_n_ 7Z/)hbr:6bW&ݻVi3 vISP0'3lԁl0W2_ʂ[Kϋ0^ L3w:9 Os?Y%*>g6 sҁj%t-'U&[b-ϡxQ92ڡ֌ڄn徚;jΆ$ĖH(lízdK ̔p`al~eܻ'Ρ6Pÿ*w3P<->HA{[ : [>nWvㅦyҙV3oTQlgmu0e1i55k\+`/ FW"NU[qpbd@[=Y%hGǝ K3\.,9BX_Kj1I^;1}a'Ոo3"<WAtѦèb;^}feTN Ƴw6kE7aBdcT31(WO:.Ze4%=N?pQ?.iqUn^x[.Hm[6ش/s;>I BS4n *g:[>u;?aN4p┢l}r>P Kټjp@߻[q`nZ1H|6e1]-/Լ2Vv'qјuX Y+0317~wR2PAƺ53׿q zGIJܰgϏS3A?P| AsR Pm9%%CAO{<&&jp˄b6Ѓx7qV*\-5x_q*8WJN[ qNstcr73#pNpx0)&cf@lGv痐nu77~t+:R RgApt9]⹂.q@D.PY?.x.y xB -{F;qH+fVЕ8## %D-qÙO!KndI='f[j,8סڷF$|XV\1cno =UjuqH`^d(7W=Dy`ƈpWٽϷ&aJ6~L˅yK[vl\6xr"{K_xS9>7V[f/doxb~_%n؆oVhl+(WwG<Y!%B2r>S l-[h?*lj C>>4B>D=!ߐ|^߻y]#HęeB= Cn_3:ިy:n4Xjd`7>r^3K7~0jMѻ;vxIC5`ƈ 6MJ:.#Ffd d)E5_+غ$y؞y)9Ď#ȡ#P.VS36d$Ïت+4r-DžmkN&\[.&`)iH,CEbe~7)'8Qv_n\1O+ŢhF/ 8vF5}wJ}ɒ{f5m&25OlRQ-HYs^;VV!MJB? x|nh=*9Jߥv;IȨ0Ul>kI=ŪH<qgȔѣvvKRYI(!M2V*sZ+\tu;2Nn=;Q:/BR@*B\Bu|4B-[ZpTi*F(]1dUPS~wC@+iZ+L$[C#)iTom~%#T8+'K4(A b/|̌,%&Ӣxg'Bu}p/8P᧖⩒uLKy@z|CsXmt#3\~%g*ȥ 9_DD2"eK2³-o<#w͑t/ УP4WtT )۩5O$]ՔW - 4Yעqiz(cdN7nEk5iVBn$l#ݎ;tY.Wep҂f!hU5hRH.H4:C6 )duzg|:s AD6pd+;{ko`G[Gu+G59w<YyhL߷ٓM3H'qRӣNv*jaL"NMWipZAFy5-U~^oSS{,Ah  ߗ9b3U|)d?cǤGͮA&9}zH^S5ItOJw݃(VNmUybe9Ŋi7ДQ%M/G,)eC ) 9##s=Th4UdC;p,Ci{M[\/PBe?OBKi~]Qjz wy9|2›E:I(PpU?/{쪍UAU$gXH 6 ¼Yuzva{ Op); :bɰ&ib:[D}0AՑzh`}4fJT'QeddSiV0^fJw]r30˧ A9POԄ,7Wu!YeyݾĻ"P֎t:R[i`|{ 40B_1.ۂr4a1>52EiX Z!x ++/RS7asx'ԼsV?E-{jgxDn,uꎷnɲm[qt+E0ppPU-~ EjKsC c T5\ `  S5DFݶڅ \fwXEn}pr1MP.ۢ_1*^~`sbqDXy}vŠj371K'Ȇw, {WQrg O¤~T1̆&&^ fE+[ɹºݪ.1lҲXJI(0fcR8Ie10EX$DBv3` dT/"Ʌl ;WIsD,ܒez]Q%XTm\Sy3:tmMߋ\j Yl[@`yXyr"HuK =٥\ʉ]XR2B56qa8~BЖ;&5EpXM驋dO4աY1jT RAF3_u+u_Вkbu6o&>ٟظX6YP=Ln\=LZWߙ10S4`F`kSDXoov[w ={Um*&rM/>@ߺfv{2qE@.?3*ʨ p&v jv;9t/CESQVㅙ>cKANy<h?he8@W$j#q2EugkemTɴ-误F+- 2#$K"NCjX)@_b L\ '^RVC>A/y[˨fgYѮaT>K ,%1{ x!\!iKˁcuݓ~]dC !^0h7pҴ$PGMY=?a{HhI,yV!TqX1K2&ʔonṾ?^2EFgX3|ij0x?Ye@VdxPkAD1SKK,CJX>io^rJs3Q[FS/6EɭaO_-Ղ [ً>nI/;GzǾBUT:^gep*;cH^0}9(%f~΅? b{}\c'TaHg̊mP9)-.kTE`RHXz"mPy"`$ wa5GyHPmO'2e $F};ĭsHdT4ork߅p2-.^"3^YmBɋFϼ5qWѣFP13(Q'e5oяR=6Jh5^nyv'{,BSvE'#t95>ƃsB7q-u"7VqnnJWELLktۼbe:2sh{찍_EwN7Dtᅯ%dBeߍfL$0~'@N gb% a2!i]jcUb v+H:yžp!ueKGԍnYg;BwwY@, gՐXˣB񨉒kE8> [VeUZPЎ;C*Rr/."j'ٖ0~5*Ho< f4!^ 9pi^řc3h OT#70&w"LMvNlg޹wd(ҩLC_Ӳ;MZﲪXjϟަC S ߊđ1-lcw$ 4G Ƕ *`},M  P߽,My8EE.yV9RkEPzi o$[$1=g0k4:YkW1=X}+|Tɤ/r Hv]Nz466ٚI0R3s5 Vf3/rP'8PU(m<=8G%QAuz7e15GT^ aXʘjBsL'+vP?qc1*6b/p *q|9ve]Uĸ9Xˑ 6JGp/H'4 Td{s,=4Y`K^E[3e53wb>J$ uZό>Q'uXGz †TicCSι [s=U1:+9U /WR,u(WW6o,֙$KLXfkfI ӭ Rp !,eGug'=vxLy6Fb}}+P|mJ@1j#nE -/cUjJLI)*BA' 5i4pq}'6^XT1UO8up|8*j߄̯w:9[NgtD~_1 /:K0:fA@-nQRUw"UZVJ\ UpZn^V$[B"A& ;ʔE?'Z$[YH_CfPR\jv/qd"K81;-'eS3rPx #ݷGU85(l0w !&x\f&z~Efh[΃N5jdIЬ,|pbRg, 9RB~/KHNخw1%ɞTVֹB:$O'c:!w u z!deG UACj].E1 ^G`%g=V=SI(9Ƶޅ&8 r9q0s !ֱ.ohAFAE!C m<寡8Id5= Bl_g,y 716h(QT__L=:L@<ӳu]6j_$^XM, JB;={$6%(NS clוJ%.ހ&pN& crj gj+ "W\#W5C@0 5CvdY*6%_v0A!e75hi7ܧŮxvHw{VX +4RŌ 9 mZ@rc%Bᦌ㶌L_4fnǏ{(ыk$'g\Imc+=blWę+:',* 0 `X{u f%"<RTb#kOL+,?S-ʋŝ1YasBI4%f彩fJxօ}lHNF=,@Ea88Q&HCc; 6W_Lz<#œ,f5gx2  /O2TL%^ڂOgЮ goJ6NJ6I=,8 knkve_~'VBicrn`PTU}?0נAd\֣xLDv}>66yո,}l;[ԯD/!j?R]%ʽ=ϲ|]n̼NhIҡA {o_M[/ۂoߣFґ\6jtl;rl̾:#CIf*4wI/H^IQbeԏr^ƁA(OLaLnhCT0R<0 X[`E_PD~ [ڞDo숅+=R5ɆB0b.$iZVCU '}Iᇩ|<5_3@GACR7n 4k/ OɸfgOce45w&mqN/35~ U``a. RsA h}_lRE'2߀1_:(*-YVYmń!`.]com1[zbwl@3:fsz;\bC.A~Jyz+s@j2>1äzķǢt]#W: V؄OpS0&rg=y8h$Y.$f!Z]ycs}+Փ7$ɸ%gw:O5rp,Q}:͍_ a3 (k[)EM\c$&g\'A5qJ,s^xYM'릚n9Tm9r8Bxs)@=sQ %^GyI)dZxvڃ@tmI<+c W{$ tYrqSgV{ +9Q86+T 5$S|yb&m}Oy|9e,I8‚Iqz5>7Dn5 HѡZeO pi1b-(M8i'iQ?9LM^4JN׿B/rzS ZqI:xQN\2]c>5IS3g1X"a&i7:/޳$ ~lnv`D̃rIϏS #"j<;1WP@Mah 8XpV?pX ljZ]ww%dM?kɚ/2ucnda߲[ ,/[MJjs#BfO\2G33HR3AEE;n(ts'byCD]c $^!gQJvlDb,D:w P=)=+FSZMpagZ|!lb}t·T%J0C|Jh&R^eGCe%a ;.,# .\! Ӱwc|5ގ̇VM;u3 čnć( p69K,S녯lL~ӣ{KG*n&BW/ۿԬLCNîI +hwgDW.gq5+#y-.y Dn1m{Ց( SEZ\Y*iz^n 7ҡ,:3<-AR=Ċ/ 3'+ nՕU@wxw9B~ObI!ԏ_-s=qF$1D"HBs}8[es??: H]{Z]i͠V窊_xkS"(2E'M D,P}!Qŕ;Ec}PhO1s`4X̔ic>gߥ36>ԜO3W$nbRSQr=ORG26 v/E%D|).j64~[ *7j%"rvrhiPWMwJ}2oH',/i J"[b|2FUzn0iR[&lY?KVžQËa~s6^MۏA>TNd 3xa63eC6vSf7sf>id(x1`?4pB/y]ZU6IA%kVRC3N4HeL!R2 b->x@р f[UFm,0}|:ZQ{q <&aڭyl!grΣ_P(=*Mm.Ju-$-n:Lz[_)Ys.cI7s;{t>E:M ْsѤpZ '`scRr)~*D,|ܞ؜_}S@HPC~.a>ջրg1:S<ƒ 1x>]mP>ϓ/PݯT܏f VJ"vwWU{[yo }nqHǺRIZ9nT-Z~}߼q_%KVYꅋUN,Un p.`؎Q[V), 7x;8{%I~^SQ{cMwif4çg:'vM]!9A!VK 5 `D&lڹf-) _tʱa x^ݜ}^DW\rk و"qw 6 T7x4Dn@t$Am~ nTם$%Yg--[BӋp[R ;ɾ ^/ٹ(Rxw Di|8[AlŁ`$\%yEFVLD1@ ޵Iy5&19QsNo'^j;%˓ f"8Q+pvX7TCxG)G1;02w3STJV`Q1em 0vW umХd.u# vPZ9UeJ0N|FN UBܟbCSYu9b~JN.? +d 6:ګ:~5/..nJ%SYȋ6Ϯ⌵?_Y4DkIlpiȚѤrw&eLKa%- sW,?&[bYd~N{~1 ]xޓ.Oëk)% c2l 8r̪OkL4„ ل}_pƶ𩅢q3;Q,_e1tSTmM:eB[*=sȕ w׹2-W7rt4ϊ Fe:z |6=ٵndG-+>)MEB b1~s'zc㨊@6/F‘1Q$0DŽp 391S㠼RZ{b<.x*To{fnb /xi3phչ + uE,ā}͈Э4bp sU:'iJⴙWlr 0afv/Be_6b91z<*,)6 M^.WKX&s\L@r ^R)汶uX67|ݻe3YK 9[<ɣK) H{4tT3R&,Yc %+mil|ũ%1 >M~ƠH fu(ׁD{hL֌cf4-^(!di%]~<8BYM9u|fìRR׉?9I:>; m]#p9"v&$ ?FtF's %a1?sJ+K AcYa%sWx! w<"_Y;Ou*C wAYҋlrW}dݖ}ltͼX-࿛RuB|a9Xfa I>(Ɯê1@A|ak$PߐcOVW9)=eK8OrIRXvP?>Oo UeQf ;!hnS {^| gI!bjE```#:dKq M i!aō+@v{5eRh"X$Y*0g17"`/zvԂ5/+)G9Zh>}B~sk[g\<\o,! GF l-``teCJJ-jm4AZ%J`fE1}s)Y*ʃ{E-(VISZu2~濐.Z-LkhA3-[ N"2oS~җ}Z붨5LȦ;DEQu@i*:˔|1M֖D}fM-!I\ϊ~@xkѣ x L^]WU4=۽J+# 4=%NicCrr¦~8Ө˩XAXB.\h d/h}:q鰁iiq_@.i/P\eF_v ,aC=g]qt1Ⱥ7| '^*c]0/$e9N=g}.50Me6G w {g3{?_dŵÙ&vKDF7ɖ%p#kr-e&Q+ ez`#{B)m%Tm}_3Gwer2)l1K0ն!fsp`l-zzQ+!BL׏P-g*At6kNjd^7>WQhRW`f\0v6R&lC8SS'pM鯰N2zê]])!c/f9%a>WS_5ߐ(<FԨ̹Y9 dׯ ň(z:T171\ǴU{\%`33"FLyF*"~ƛԑxa"D@֊lZBX$BO -grZ <+su0V;O7R5hLSxN I2)11bҚ*!ֆTR֡@s%ܼ%z7*1 0Jiχ3-` _P߄+Eݟ8;ULaJ)*R#yFb3o%A+I;as5/L8/g[17~!q S̮e!>#Y.3&Y2,~\:]/{3T nW>>*kIW*Է~p-S>JrV7fZO#l\ƍC$s̵&8u*2pYZݹ]mag$6+{_z'D$~f,mjGmkVOo /]}^+XvU*lz.(_(- ғFў잠͏_oH mnxM9;NFf`/ xMdYB-iG?^Ϝ7Zۻ5s% U8.(̞"j*N8|_ĦF5j/அE[$BiDL`t:řTtvtú{4#.F ^sː\~n]#<̣cj>DG {ksaB[2~)kDi)"8Jݎɠ!sLCt{g1)nL9~i\bIUXB|;ÆX S%M沿P֋f=soL]EsG9<,@fJbbu`T^ٛЂQ ,- (ypI/h DDEOi'+KkjZ_c >ωihfct@gL3c'4nEӯNH6Z $يhJGP1Kg]q'4}aY+#Фwy{DbM:,j?hXZ#:4|=_dyq_oxɅKOU+ G Ie:01it ?MԘ`9wvhKvUɩh/#ޙ0,k(4RT Z ǻ!ܾ],ɯ9&jp-&Q9p ؾwIcL!=PD?H8>p@X!:wQ0nttٍwv=qG(+  0܆1@  {n,C8[pRM<_J,KS>u6WWxw:D*WVQTr~#[|T$ s+̮wΛbӉˎ{c{M>]\,Dz(`لtq6_wuI|jhcwJ_ae}0> +Eǰ:sc4pBOJkhgmGDx{Ghݿ.㮃(@F"͟> P2E%u84 {z ?wKohE=O:Ñ2?"՟W-qnml zpڗj6؃`l.b=29#U s =йtݳQ6 tK1Zrspx,? 0-/9[$<ƞjq8R@UE-)<4>/ӗ*d,fo.1#'ϭ ?>Ձ^ W2W/k/8&FYZc1R0^}ʉː]^cAktJ¹qR~`qK7A?j\ػ|HR8R(/9lCL .!hL:/}gR3Y* i_0(/K $mP2r$C (dLC&ҟLStahd ~՞` 'Cvnnj9M3)M1T\9fP\BMpI^q iGBJa5GOp" NJ A3m͋gϲ[<`G爖y``@`\5ɲ64׻7KYkbl{vJp3Xv+VJz14_7ӕ VUxQ e*Ü,y`T5:+rT77~:h+X'+𰮹8 'b -n^E-o_ڄ5$NPtTnei-!a! P{UpȑӼp>~<,hU"Kgva1޾?ܡ@ih\&>Zu K(csxcw!p#B& ѧćm.L״Wjd'ХAK" y^&營JM'PfTZN`TTi޷b7bj)z&>'w-je%Pu@d`}+s=- (n)c3:YK5Vh;)3@[ @Qju%yzw,k1IK7t16<@?s4u<3xp26gEzeYYkƄ2l[ ;S.Qt! ђ]mAS1ςɨ~)nѧ_gV.΀LfuKvTڌI,!cﲏ~#vD?4iCzB˓Y54uzqkO4iFT@YGjcL$dB(LnUIoX2]aĆd7x`zYI~Y+즾vGt.hѧ)~~cFJpGTΪנ+JәPw;!.mD:8] iWl*d ң3nSB%G~"_aI%P-J#j6fdlA*K$ $P,|{~!fa׷UV5N@ZھӐ>]N0LhȜ΃.oi'0z̀d99'lxH8K>are-}yһp67grTȈ7g}=KtɈu.jfy8#B5/a$Xmbmڒ97W=.!n_̘bIt:9Htuܲ ='}%`bi9ظJLThx#yI{`p?b~wVZx㈚K_C $IhL [TmkƂwE=J(ՔZ)d4 [utŨz=,-[3Tw;W(r[,$e|r4Hџd_rhE硼g?XwtLEf`Hhx'Mwi (O7_ZF)N#3t!jk=T2k}O>nԌƖH)~˔n[rLҞV?C'jRt+ц…?g5c~Xѫ_ClXs]fb침I R3rerxU{3 gKr^{v)r6Yʍ#g84N|d189Lud4D P@ nB-hB٨&}qΣuݵ^ ,u O9 I*0YbTvfxx`rnDB&ɤ+ԩHKb5%՞,N YBSk ]/{~j|e^8R/ܞ8p_"Ϥ~M7Z@ʯ`P+%`*h; HJY(_kܰ=3Y+k!It =%ƴ=X,-2F s "<g= %3oT7`\ k*fd~ccDkQBB_xug3Vk>ԣMbSʪfY _/zpEU*] q HPH"j*9 KE@`_ '| yF$$ R_>Bﲙly>t. P]~❙p :ѪIf(q;M;4:R.Nxv%q}i8itZ]b/mc",/'-R]1 K GF3.ua@:LUg#X?t^ܓ׀$]G'D*y5+!VMv>QpᓳDai~V!}Q=$@>Y}FF'62և3gʖKUCV쐆LUzq8|@^u.?DǾ͈|$ `+? #@Dg̮4HmčKD\KiyVSu)dĘ {}XZi U7FC=Bn[7VYܦoX Dz/>Qqu Ap# -MNATlJxlZ,ݍm"@b'df6lL]mj7:Oړ#zei:(5 MfyA#:NoL( %.OMWA?Q^ۦO1u])4_/iP*orx:bO[p)*jݺz\n3eBWCނ3tjD %c$>==0W܅;_4dTNVje࠮, E3鐿(͗ysٺ8B,mW*=sdXɰ*YH7K!ЫJ~6#i3RT69\)]=CN.F&PYJ]{A)<>*'u/cka:B+ lushtM$.LT"ਅěSj_7r$8`ql݁~=Q6;K$@ y4 oCVQ qڮ[:_mE(4mek4r/߽QϸS4e@׭!2QǍN[@@FbGJTJ#[e|gI4>ySɾ=xx~(t-PrC09iQ(0xltxJ~ Jj&V eblW)eetP;CGx6Qu$O ,bK$, {ŔRFE"?`JV;_XGuIJod@~á*ze&-T<2*[3O%"afEUY>DKnAa[C:tj ;SG["  I 0 9mPiɜ,L?n僷 @_nwYܤVdeL6Ɖ1u|isN~ ᤦj3w4p7Gg`Q搕8>kڄ o_\@Э@ V/pk )uxF( W{*VPW#gy2zth?v[ۀIvEVϋNrT@o!݂e'n1^#}́mݎjw2ʓ >{HKoܛe5pt2~S]<})=5oӎufց|HG\K7;鶌 3Gb-- AV,sRkp-ZYIPzjjUFkkWC^t #C/t!"k[K{ .uGV37q2.R*jwd H.rG®021.(|Sm3&C# HaL%0Qu;Ogd>.&xwVB.gz%6@Ոt4%#!2%mr*Zhs2f*}yre76 4 VOz]~JI>@x&T%XS {H!Y96,rV'n~Ӊ4DŽX,T_h#?}"~;am?gg) Pہ޴/QG50iT)4]=g\%+$X*1>N{}6(|)N|\c?O+5nـLѪ}T~L+g/p*0?#9-,||bQ-$N+- n{џ AϧQߓ=(N1=cw>Q!4Ͽ+E3vLi[d9:gurz+CmO\b%v^>ڸڜQ/ bܞ poaAw^7L'S{^J"\FbrJ 1TgC(&awSɬw^)+CL1p-ijT)Os㭠dE%>uglGZV!X"&Ϭ@& ; N#@t۝oC\d71)Ñ]y7MqyuhshJ4r]))!5ߛ}c*}B`K-y={IJERxT?N͔قT&ݹIPEgYw#UQZGxYXh0or^V{*H{luyd_.cҸwX ͪ~G @K9{0՚?q(RQ7.ZoǬe2yZ[:>_.{]>B(^rYUdF@eCܬ r uT)ڗ$=gE@ TqkO眏@]E&BEWJHSN/gy7솹%@nVvT=:udzH w6O`[f- Axceu ӻ^}CǸI!jȰbG60~1OW5>*jկOkPl> T0ڂ!n):*mեnzi;U/'LzF eMlx&Y#$ ;gFqQ0)"3I,+J Wpr8ዮJX9eVڹ܊.̤.t'w|&?xŶch1HP-vyG ,acCxpN!܃MX&?&#s4-#NkeM nf E$7ʺ!|h IQt^+};R2F*ފGA5%12}rz#!wv#tR_"I1>yjPx.J0kqE}vۜН|byYA!*~:Tw X ~Yࢁߩ"'hi7C =F1xw(Mf~leypa)YBuT`nml$j.n wTTn鱂8ӄ3b:.OQYI:]bOPuE %쌀UIs()+z<9j(1Qb69{:{z B{ 0M`" 7U0_z@""J#Y!RlƜ"D^Xފpm %CtJmSTLv}XC!pEPV9&nu/msG;LJUe `6r?VyJVQ$I4*HWZS9lYG>PVBFEݷs0UƸ/ܪt;:"R$P+*DL-2UPπSB@0۟ԐO%~^&_Պ|))P'7cVPC-0NwcZ?b~p~odt·[#+3|bExv!M1Z/v@ }5V ăDe2nK^v`Z1}!n^tIuciT3~̸!7id?{ -Ouk qM(g‡ L&?24kjx#-.+`&B,`?9]27D`a8^ \S_L~vvmdXr⥔7XST!ӆxU]:@{ZIDJ~9V%n؅9#wL8sb(Ϟ2>KRx[7)A%p A\`ptxTX-ݔ ׀B..2@HbuLE)U#БU8΁k?-IV)I٪Z P~(L4nenMC&J#>v9^x"Q#M]O/P>i[K+)Jyo )Z˵ֿ9 dn'0HeO&NL ϛŢFU6dj ~|rO}&HQNs&}؆W0 W`zV4 ,yb]`MB_)Z>޺f#]w^}0{qv'[~>jrHA5:FZPmb=68|L=Txcɶp~WSۗ8(0h=g%{ޝq9|lđ|qz!*&;T>fH)~ ,BCE3KHjncE^(%w2;:rAX.qT/XQh+xBǪE}*m,_ds|1,O]8t(gPN:؀ 4fH>0¬64di6+zCA;W̼&iR^~XP'{΅鞅Edq܊5gYs28@b4A[>FӠe`iF̢يm#{P;LcB{1R:b| yAcR1s@`oIf`k[~Op g2r "h]eto\ #i\MFot ߰FԿ亮="PL|#jO`R,Ɋ ^SB(Zt*7":z̄~> }o%9qlCa4(yv8~JE4JT4UlQr;};<(o@S]J ,.q+Ґ8vJcJ\Q 89Ǫh^ަnO(dxg"RPrCLcXn0ա1,YҘ|E CsKı@@;II/4f㻉8T-)Cƴ_Jw;J;6Lj a-(hR$cѕ j}lshmf~'$OؿfЏm0\0~֪ 5mKŕ*KcAͿ%@U$cټ}"ux +_:d+SK,qLޭBrAX%KMqغ(|$J\2I4yu}'DcU kIKYp1NFܳ RЍ/ݔS 6qBw`l\!RdYY1r"S/!&ڃJ/*\[ A9k0m'yV8/JM` f \ſ{ZV-`8]2#LT /Ylx! az3n5h.#Xh']2t<#/;Xwa(:5<( x'IB,#&]yU'`x&DN7qb {CӨB!G/K>\^rX)- S+x&(S[Kq qaXČc=d}ZYTĂ5s\]wխ\oG'_@%'  S^;[ܔ~,l!-"-M@{} zL7)B9d}41liI>_X|1F+)jVxk|sn>0L@b)Sր|ENZk${XA=lG nǝ}gZ.w3ǘkEY-ް~N/+Ŋw;QqV`S]AVPf,\gO_#>v5 `_d3[b3SOsڬ@WX}wlq(·$ihTl̝k*ĠۺU -%3#O6[~DrbXDN>KJPM`uU3uv~f#3a[IR!"O?*y Pxn ]̏$J[ɵ1 ~Hp=zrdTFGPSRNg.5Ǘ]FyXUi0OfR!% M ׮mFgtka5X/C8I\# ;mۭ D:j?@MZ[xBD"I906rc£ :G^|koJ& AzB#ˁ'e  j'z޻\'8JcJP | >nj9L : ZO-P0iNUn Vys!=nU;boHDְ1ee2t=O,Uxl{E~d*!~qoe3p.'(K{T_+(B+`3XIaz^.m*C c,H43k?ޝ(h4QE绡g.E^+plU=T =_ Q,FX!C^|r1suq/Edy/wos3$d& p E\ŝDw=(ܝ]q~zjb;+$5>/LWϐ!ai}ڦCzM y7W Rho5Ћ+6ޮ# ao%|ΡK1Q$3e[JgX/%{i [$zwi~ؗDt !P9a<5c@nCdWר<`9U<$po90Mݔ=:V ޠR(`/u'#!<ݧ0*Z=fvEuΖڄ-mNG}9 z$Z%Q/N er9Q}qozD`U1!u uh`(d7Ѣ.W4 k o? JBzs姖%0g 81Nb0". Ś~T+=_+].ӆʅ`_="9|p*JouĶ,n%Թ녠htaꚰ(DKD oYDk_xn@3OIرD6o.uV|?c`!y)!u|xZ&3$+ Zr݅Q|@2㘮nl)QśP_E+o,œ3"6G7c`lBY{})wKs~+S ACO(ξ>OG eEyTtatŗz+/zU!@dlPx鿢;g|0i1RVME(~]A)}7\,^}?.Q|r\ *31Ο"T4Bv"MdG\Qn jmB$_k/dT~ʦ|kQ*M骨U;ukolAwսf"]O~ 7Ł G}'-Lp2\ZǞJP`d.8#@K/wQx SlV[h6=@66|yY9wB vzk=͞v;89bC^z9h 1@ T14yqAAT_Mji0LX8|C1*W%ukTaPyc&pLBuSI ׁǥAx))BL!jYt `( PǂmW>YZ,ɲ$|. =Q@#):9xBf r014vVJQt h|dE+cpa~m(G&v7{a }_Lht7Z7 ozp/l`$Agv!j[oOmBGR 5x@$䎢?8NW1'2 gR]u!G$kXJtM쐕WH$.w.$"hdH EY5.zJC,P Qd~X"<<>WɖLa5xVxz8&3QCX\ư&R"DFTenDZ0\v]YH3v +(mi,8O]]|32᫺|{Eᘍ"Mp }Io;gx=q{1?RrM/L l_BT`Q@gVp 53gQ.cKH%Q__6&7фW?'ȹe 6l] K` * r3,e/@nhz$)9 JhHkz^Vh~;0L FCSXfm'j@,o»]fdIB6 ^AE7X9Tպ J W7Kd[ʑ)^l'`Vh{ a7ASQ<~]0Ґ*Uw Dj=`x8iDʂD;1P~#P}ԋ¹VQnbM ?&jhdW"Q;Cփ"ʻCtAZb(4V*x`TEТt!lHIÕd5nI=n*t.\mQ\GiiS8kPG3@2># 쒹ܯzcг0H- mW)ֱN3l3mh0Qy7 *5i_?YԢ[0̪]krå1K^>*vVvULGa΄ۥ߻ &_bΤ+7o"eJkRڷú4GXU,O=M+쬄Z .n53U_ Imh[ _ oGL*SYR}Ιb(a)Zb/ba2]:H0tnI+R݅cJ% @fP(s|,o$LK^Eh4T h˦X􁵟 FyZUCHhXXycn|+Ym!õbo+to陌W\ؠ3{. G¢2=@fB1UfgaCZa&zT:-pUۯOLm8Ⱥ3DGxA\0?lȩʖ]^z^FO>QҤPW훃ėEWtu Xex|,q`{)VeP\XYD N|z=i)Ob)1ז.[w%2"oK$8YoX7E-'?P0e/Α׳ҋ&%K`0TN*DDk$c,(T:-*%.o:gĠ Ȧ)%vR"̭{2nBE"4H@SnzUMo.3TslS^Ù7`$Dd7LL a(*il3o!K)*gRbdհ*oSPm^{L=Y zezWy0y- {:W5OPUIH::$h3#7EMbtRM6 ̸ 03L}xhZHj$ƣbӐ(u~SA"w'H%"8ef3N^ʏ2~AQ+jǴh:jb$@/|bMLzȇmjVtp7n əX\U!J}E(ބU=O}Q,~I VǔN~ր/'I*̵*oXڬȂ4;Ŕ[bIIЍ2 ~]G¿)Qz-(I8g,;<{*BV!Zϣt$ 3h ֵ[[qп lDCZu[Z.] '' ]CCRz. 7)^2@RZa -.|lOi^(o&Xy@"r@I<b&SވQ"NU|P -A2+b4,r߇Eɕϫ8fC\y0$EmGԇvA^5e4/U WO=( SyNm_Yiu$s̳#ݙX<r3T[XjƄEMnm}|jlrc%gaWem=!ʌNBr!iu$vU>oqKmy&roZaҲ[Fzg]ךX+%Ab% f=^[ ʯѩ=bEKkPUqÈPE9{c{|_-};olϞtU x2!{ٜ^Ry sa偡0N.Z"N aM.*E&j_?eLumAz7 sAH_!O88-8AG..5Glǒzy>Ԑ_\s.WIO^ڿ}n#~_{m{iacӢmLf@U49`x`2`'i FHD^:$v Yq~g+mj/ b/Աr@2Roucg~pɻe15fCu"2>zns DXg:l f`Vʽx(oDPaj5&^P Hd@I3㵐8ᯂ)̬K>XF9o[/BI pʂݐXu&7TϘ䲽 #4t+Z_z ?k,4U}j O[A7dJc3%u&n:~Js^U:pY3$E+EDzFDCa4CK (\>rqK{u$joB?^V.س1HS]Tj`? Ma]O 6wX^E7KOX_v̤i}E7ڐUINH*Gܒ=`rxd2"6J6Y@Ck䆳BR,*%l>ۓ{d9S^A:=8JA )!q5<.xU#dd yk?a.-0+=F)e@pS r]Lňf`ElцtR$t^{c{yO;B4?S1Ϡ+D-=n}|S>b+:'GDs!1"Eo0Ij!9`r)glCv &@Prro3^g qh]zI$J05>qQ~^pO\JBA 'c?$]X1.F MƘ e9V.{-foBq\AK2'Bv/0q搞aua;_Y L@+)Q _-%QUin H$g|fJ^& (T#yAYfKNP6 UEvg XcD Է7BKDa>Gtiݶt9m?8WMc{(bf4E,»#أI`nÔj+h60i }/S1eq u>~zAfBW lВB퓒L82xfv8 @ڕ+ )`/jK` (0 }g,G "a=@,ˏ!|j|X\xQ.$EGinF ;Of2oQ1(^tD (71%AX5޷Xgf5',%;JlzM}f֓']c\JAhهJR,/\BpAeF9!+~(,¡R~HWt[֎o9/b?Ζ8$rzF u[ǷmCcY&$%rx" N'Mۏi?LxlRQ8^|`3͎`UW$'I `c ev+[xc{<_ᖉDK^5cvCIV7*On?Rxu@yjͳB*8m_,D[v4`n.*:,H_K#-^X6]w!הT6^ S1.& ,{R0avB|"UsQODpB yV-<]`F%^S`K 2E[J|?l+'tZ wx㲦d,Z(IOxgA)_*S") E5P@y6$jU0{bt1K51bv$G09w.WP_[Q(Ǩ+k%0zBZ|>S)LБe=)!Vꔷr%f(v˸Ⴓ~j 8sLq4ܑGSNDw^W!0 K{b<ިf}?Z@` ]3io2:r[a@ oK@V- P/wF̈́ mQlyge` 0#Òw`cА:hn;U+5Sa8춣V@Y3>&ٜ۷{xBF`gZK5lȂ{$/$7*M,r5miP  suJNCCOt0QWC =v`.5㳝ǁOёGX9v7g5‰ţ)=0&vI+-iԨ|PW. ^nj V, z7N5)";܍ޝ2 Ѽ2}U yeP}dvR@)7|#G'w^}#VyBL6r1fJo("2w0D]}em65,颳+ch21jnGR}{)HHyigڳ\ nID5780|ӋzRCstF2(S+;؄b u',`FxQئ=Vvyl3HFx?&"&~ހgȹE³ǖ!yy;fh&j٥اoі<5ogJ]\Ĝiȓ^ZYybm?Ū | 09&pk&5 8}f& ֊wzQ-1qCB-'VN[o߿v>ņ͊2'H=M.GD|gZt̲=|2\z`|M<ϸ98鴀bve,l`8SZ @-}NOdXn"F`%MR CItgy71N!cSr)< ,OY$+rv[!݆#՘h SP0mx]O[G f{b% ntSOww~[!Ɠ5j,5]m[Wl.asZl8szP._m^:cr`:3[P[K[ VQo"T:2] K8g552'@i#|DPtuJcwK賘H g#aǘ?P+0׼ M ok 0+l)"6NV؄ʺ+3󜴌Y&7Ȇxþ_ e"Ȱg*a ϕff4hR7U^!*_]$is|{M(Z:=|5emSF`_ݳ6Fpᩧ``!2{NbL7ZT]B *M$-pAlS?'ҫu-~vx @D=[0unT( 8eon\uQ+쓹cJDP^C@˦Jh;`HiQQ_[aEpWڇPW?\묫388QP8h,gY7_'>IP~ O-fFsh:)t7*S.l9KէalK'bүF? BQA%j!*ؽH Jl]m`D,Zv%U{m2>͜` (Aج6x-<筓p<ԍ$,!M,ׅL7X^.?J42⃻N4֠.w_ASsA*W `G֙T a{r8O+6Wzp´ʹ'4SZփV4AE5hm7 z\ 'Jjubґ!PRmaF [t0g|n#DX$u ѨKt\yp|y({ —U8瓝q[n@Q>`ޡ<(4ϪXyI&W"jF4|dga@@D^|`_dHՁ78\?/l_sqAmz[#6)Fph- n> inX4v+WqVGJ1 S%Lϯ`*`=gz$/WX~L~ -2I%09ȿ ^׏mԉYd<1}Rm'R^0 G湎G?f`'e][ x6VB ܍!.Ւ~kM%幤FE5T]:y4nv,s.Q)l"ף=R(ot0ߧ'ފTHi5QN9Cmj k7E|-RufvM lO_"tD;wp گ8J/)\)(C@.kƍjӎ'g{Axk3Ƀ%QM_|P+OFZ$դ挫Ċj-ճ \ƿ5tq]H!^r!3e)d/A(, u~GQe3'{$;AYD5:sf7P 5)ZmFlGu~I=ooӞjj[9v(3NrC/*OW2qDܠpn5hb{unrVw|4R]e"_gI)I}QLZYr~6$SW9~.VQh\&/r5 Y`4- 3P:C:ZRzeEfOb%+ eu<"E>iRNVtq\$F;b = rHJ3-*l{\  YGqIZmSP(glD]eIEʼn6=J"PN9UZiMZZɅE7DQaO3iZlk4Rq%C :Sft(>g@CCT4_34i8c@`2C:w:J]{_Xt,a?eWaz} o`,]i?J]|Ť86[-og:4bWɃI+Z} [eV@fTptT_\BLb,waYfjFz쎖&' @~Z0K3OWQD;v8ZyW|&dCdck1 `G1̂e.fo1kw 5=}{kC YGnotLiaNY# #pIt>P<>d^P3&"z*j#uB5b-Bxaf6?9˃W2MQeWDyY,:&*ౚ~ѩ]&uY!1 KHmKnpJY\X/6d"Ccz>`L43 Nu=o&[QM3!TyvkW? T6]J<}d;X0a;Pv3͍4 S͖F͂)n/q5B4?kAwְxݝ .7{ݯ9*k\j&EC]@U Ăҳ|۾A@lL"YO'34?%8Mi:Su%OLO?E 4bH~}!+C5c0O\bV 4ocWP |g-bk'D9ŝ]y˦5FDKw;6!or4Culk_c;F7?X}#W ;#yJ M(;nB}xVrSR4G!ey:vXl%G[Jlb7xIb#݀Ȑes'S'ׯ͂4UPm"GffL꙱]<N M:FS6t)0U\Tw>K6rgH:\Vdz{;&qװ=vTlj'%.٣av`t䕀J't諪i`2Y.컡|iACz\ 7Z[ؘKcF`췵v_<ʂ%~p gSeVY|T6}]kkshhGRv᭒ۏK>8 u_6x%Yza-ڥG9lv_av@O3@AZh{"܍e>3чݛhW׈oZk(Vr?5L7ag]C2o=)^<#\df H!'ui>.(IzKr'|E &Bkz.LrK#ILJq>?(ic(5D8c ?bqOWB kϧn7:]<IM3UoMw62 QuYZ6Cu"h}ڐ\xQ<K-yы 5sGQ ٬gY`)EB& {YifF"ѫGDcًpcA`g,u-hfղ_Qx]ٰi4K]pJ cФߕ&<ǝY'SY.{+l|JLwwSAaٚT8|(@]<_GBYvvQOqu0]o_s}̨GR2}(GjMx Tiðs3bBl9J)/9#dmtQcKI1TT ,͜3WTƦ)wo 9J g³g^;$V] 23>HhjKl nj,YgөpݧkꛪBϺ*lamfA22Cx7-<|jYsTE*3 [vj;6QW#`iը>TA:}% Ӌuf;{(KٟCwweMZ s:f:ݼ)޹wCN_>7lQrkb Hۿ?Q,ih+K`ߧeȸ:hVY8~vH2=XprI/bC| =x}&}h~[w=N(?!~^S 㒙yHrV69OhVAe`p|`H`+"х lmƏR$%h/h`e{r &)kNÉei0 eiuD@K 1Od[6jz!LAG=)&uᅶaL̀ 9=(-~XtznAϤFK`R4+ aX2QNKXjGO|!YqRH-bN#?O ;Mp A2EBIo6q#t&0oKh-2!ToPp!rM/QwnI?DroZB47_#9^3aIDG8wX J|RÃ&}f $<N7QMKPH(hs#cm(~G)eZX~QN#n=oy/~38OW)^B nJ=.TlqӃzh(̨º9xˡlro R }Gscd)#lrgwN``oV 8_L0Y6RXۛqJS J~;#K at{SQR={ YcQw=hFs)hhsN,0ei-@rlciuY /p`W HuvTNL?//HEtЭ:Bdh?GJkZcw%gH7ϽZ+i5Uh:ĵ)..n"uuJ?|cY4ԓ~Dɒ3hyDVZzv&aK kTasm~&ͨ\hJ$$VXjY+Gs0V,nSUK;z4x`ijx{ } h7xɈTd\⤪3ԲU#?e[ _Gq\:{Y48uՎDgTtX^s~6 'DqijJ7gwoÈSx:;oCT^N/3md;6&ԺOw܇oP“8t('#P:h[ wXO 8iĒq(P]?לi dZϘցho Uy`RH~w ~I\jb;;KnZ:] k-t1b)`WWmy6/O;+U複ivnX.R]ͨ}FR..8m0sh0֫v&9e)-A I[81X:>?1,4Y3t$i0si} z LEFDZV~ >ڔF>D8ѫQ JHL+ [RL]`nS'Ȃup[+Abcڹ/f#a31~:.wKǔl](7 .,*BF+`X4&Nm#7exp֖~' obB/dw:\a^ϙEQ8EǬÎ,!lC7 ;ZeRzJjB c(%5a7t՞H=2I =w <h{؇gUͲ1_֮weQ3N+:@{@Ğ$ŅX6ɟ:)(n)R<_=RGy+͔n77M=ٸ]0Z%L"t ! }0CV\h%?U{\QPdvu0Q4zqlϬ XkI4DkߡpRhM1X@ bBBȧ؏?V4ġWSܔk5d*R",-;-*ٛAyzfcK !;w W"15S~5ADM;%¦ȹ!!~:NeW /$_}DVgK?)U8w(ڽVƟl,"Mh[$mR^m0Ze# ;Mlx b۷/iMA=>eX ($wx'ySɓXHpmvyMO޳b|,s!#ZBij8JG0 z/:' '#&wvC6 v 4;ku:k3<0UU8NL'<@T7q-,iX]@6"-\fWKLhk{e6Ubggݿ _wQ+M, @ݺ) 7i~˦>BɪH!ި+z9!h1x_6}yK/ۃB}~$έ҄-þva?_;e3S&V"RBȋsk=:Te;۰/>ԽZ[(u x#Yy芻9NjHINRУ!E܂uVL0Vq Ifw8I#pZ;eDIMF߄a UOCe(!?l3ES{FԢ9nZ^3+@2zaF+ah$=$m3u ;}[-, XtFvSKauIk>݊[m nh}]g2?ڊ s54ȣ k p#%q/w[^hgվX{y8,\aۀ gfs|)!lH>?V}b.Z cOĭ&zh>Nؠi>m`NZ4 XM]|\7T\:%>loщ.S9F4{cG6;ʫ3O^%F1ON57ʿ&룭Td 47N23zJ um ٌ8>"C;d,BW,ADOc ̱h#vY~yHo2/ŽԘxMIG e0<~j{_`h~1uAZxi`ޞKw0Fb7M]⌄AC"?ʻyZ{G٩1-y<|a39KHӤ#K\lSPEO9kԉ`5Wc;A scT 9pzŅ5 avV\a͖Uo2T` n&̊C+NtxtVX#',ἊF)/ʂ+?A,HN6ʜؾM0 !2tɐcE^t!ZQR–,qP.@zf<# (M5Afz0_4 fr.2L ef*N\.z Ez? ɍ xH 5SEYn 0 nQEȢz;+[&NomD;EYrbtu%"7\D94x(Dqy@sȴӱyH ,߿ ir> Xzݤ7b-gp$,K0*m)%,n/ ގ;5[ OX"YN+i&@ 7Tܪaa)kU"V0rAqB@lF߷P~(-9̖omJd/@ <!{Zv2~x8PE܁ æpoGzd;NsTx% +FHO2e*r2FF@^c W hdyJ$ +/}1P+7;,Y ^0wo |ꖑUݥLJq-gjoצPx$6Fbe ~[JEXHYa^EU.u H`3ZPCŤ{Lw頮3[q 1`ߛPrx _HP" "m"go*T+"Ok@J&ST;͈GgW%(PIJdq1KH\?YOfaj- i69 <~(ڸx.E{%ՙ%"EleTgx噿Uۡw;sb, С(L&*h~ [UjoI%K5$ѴyR0]$& .Pcq- 0, Ʌk(ޯCb2c@ҍt"Ygΰ#^ó+NhLS*oN`1*4 :[qI!qtqF?6nD Gz%.Mqoᑇ7\+.d|!Wjp@ a_@9%WLQ1j-Sn aikH )AE֦MEj^U?]:}n(RɎ"%+'8iM<]HXh~п%v6] 9~Wrp5\]&E~ON7{#2*JTS~E4$d)vh7=Rq2 a)+F)oDTz~Er|% ak9f]dKɄX6z: oʄ nǑIJ>fX94!U=Mh#x.c-] < ʾh$%Dp}%[ō]õѧ".mn!,Nm?$zk{I0i<:j~MCU[즨NPP,enZVH;v6 щ,iv,42j~85: t3Azba_'CZ6Zם vg 'OY rRăHI]JLiY}~ a@ ׳#*4O˪H#jM$:qיsި~&9EUo(Q7 }cߪs Z(p,C9p#R6Tiv,t3&&c[DW*6CAm4VqKyW !'~ -Tb'2@ٲf5 ⃄k_UɌB+ćW.ȿjto5T$I%ѿ&҉FtteViwaz}<[O![J<Og)_=)zz4J[Z400̋N~W&{V}c_-G|6u'e6~޸K:bdU`][-Ie<\J^j*# Y4:w8e(1j#X*]n cWp!:) {RoN{L5wux+L't9ȨQ Fނ|; e) ^WAVIC _l?+B(","6#$eEdv qrmU-PGiC*ݍ+"c \e|-`ź`ZyCnE1Ѷ8@E7jQN_'xC&v١η(BXñ> OG$s7)8=eoӲW-kJ6Ғ(|_p<ԽG9ŻY-m]v,S;<1nPCVkf w]ޜ`Sj>E#/lRzD9Re~^?k [#X(S8wm&rD2H ԛL%@"ByǧLu!tlS0~I\0~b@mnp'['rփ8+(?J%R eph,H)i4V. X-s+F f=?F247} a9!9/wbD^J$.pMZ!r{"@~r7oI-:]~6: i7^YWzjMf"g.5:,7$}[ jrkVAH[HU 8/,@: .s(i#KhGe '"Cgn.déIڔqg#./t | 5SH6'`gzYT#6}j9Y Ň }4G O}+`)s' ׬@1ωzX@Jq~3z@m*FR-()R.F@C/ɨ0 lMZ ]X$ }ݮ[$Z\hǭ$` =]#HF=@>]20}N܂Qxvu]FD^ 77+)yRgH7㠥A$n(n;rK@@ :hk3XC W%Pia zΕ7@vQ~d%8!u8gqzFJEn~̑b֜LԒy8` `Dm~;ӏ?G:S) >#`ncU( FiQ!W&KXp`q1!J iKYqMRn>ģ:jSU8=;eH_E 5Pqoxu^ K@cJ8 APaH!Uf 1]i+aqh^mHH"ݣ -+u^bsY, z}3/dAo]9U[U=\թa5)+?U Im7QdBz0`vJ'V*f=BZ ,- _"3d3 ^*u{Bq0Q48 8_,~W%+2ɾPɍ&ʐ,K"IȢ΢LKN9_VW-{v v\'jTXC2}zTɁ!:W{~+:?~ΟUrY1]g =^UM.>";I[ j7$‡FR0s82`" LZ):(вeRcbJ+~pU)tᜫ:LiVZ?o(r'P}ޝWV#7=p Ov[5s I>I#?hS+&n"R1 ?YX1wְ6BoGG{ZbPI^n 1@]V,^+z|Cb oaUX*Bp\/N9/5VvW# Zt^Ǖ |0Ew#g=D,*Z>5w& @ > 䬦Pbp Gnp5K_Vz#KՑ:Ds3~ʜ"s` |i6*J*!w<1܍+5S DFJUJ*bpk"3B4.gW _PCv-EMۆ+[ $:ASCvEQ6e]kPJʹ›tH_s =LoϒkK/4Bd}; M)%,1S:&g i Q߿PܚB>JZ9,Mqχ/ha-s# HC}DF,L?#4ٲW2}p|" }/]t*_6t t4hJ7дC!' {&؝x[e1f:ݎkig:>:YT"Kלj)JGF^o3uت\U~3e{8+*Fs 7 ^Qx9a\Ui+%u磬#.kO ^.~J=OdD"DaLgPe{ty2kMśpNaOVM(!]d7iJ'8,oYJïi B:_%Fs W:0#2y$»<ӄ)"Ssy@s>Eڮׇ?a8'mND7ww||S3#n36,XP@ar웿QtF<囓ͳan@km?'!}NКM? G mzω$Ӝr g XI馠=f~P6J4Ǐb|J buY2FfF{T]хJ,|Q>:ګoqXHQ^ 78F )64 B*b6(i[~`u*QF;JpA, B(֮߫EאP.L$;i/<!s1؈Fm{ az(s碮dTZ _J:m]*~sGufee.YpYmrRG 9iRrGDoiT0ȵ֋aTꔯ2t"6g(Yt%#ZgޮG2S[`8بOfܕL}3AtLLv*(y #?lDq< $ChlAAړvm@\AGHѳو( ?u3͘Jgûm^pFp:!C:l6uHƟ{vCxS̰{$@{f #t _pU [W|7 yTwA>ɧE5dT.[V957@(ϓ?1T\ *~u 4Xp[ "ς:XB;(9V'qxX{y4"u.8C+!n=ĥ2Xg1xFT\Ji^ xJDžl2tGNI3yg<ԅtNhW/`r8*WV53t'89Ͳocdv0^B~\`/T@:yqT1Td<|rb6Ux+UeaP":u+NDzL}i+Api)5n)UR)qLT~NᐪL׎"'c*<}WB4I]"h=!O짖Hc–aV:ԜC Kt/ V=}xe 6AL{F|ɅU3^Fy ~x%<ȊY!W$fl*z`3:%*8QȼĄ!xh|:En6u{*csb ŜLTV ;pe,n#(?px"cWal i.偧ڤQ'o)CDwhaH_B8mSϱRHyBP U[{TT@%  0:<9划ZCBX~v|꘾(kƂR! Cfj $>lgkn=!/_c_ >_aЋvĄwm3rpaCG0w5=A IiKz +웿ݫ~p 81,hG3۬)Hn,w)PR =w6]/a͠ -Ǽ[‚XmRqHƸ;Il T5F`zT ]r}G3kuxE]1pߵ7] w_^x6 3IRUݰ9E0)+NP<ҧQAifo9Ŷ`R/`&gZccl1&8oQa)dg;~6 c@9bk krMIIr$1%t'kP5]gavǭn3ΚBҀ*PȖ~IJٲߝ!i3{ 7 DVGv=Pa[?ʆ˪" Im}}L !{v҄CIoމqµzGx0 ہUZS8r*-viBzPDNOJ|wv?'C&נQGD>.G L:=Au'׼nC_d2Ђ7u˄7FO.it($eHNAk6GHPK%G}djhaz)xނz.ǭ:Wm}U;-ώ SD,^R/nUkxWKwr`ِ9ƨpY"YL27)S5!c OB>'\sεԑ<_ ٽ;Ŕ `eOג_a;?{~ OSτidM$ $smРyh ~'TЗߦ:?ݲWڦjmΞ]A.eCnH#p=4WaVOqZ }ԟO2xFr3:#˔F`^9DZ$؞ Qu*V7Xoe$ԥQPexPΡj*2[` ڢMtq;LLD=Gh<8'y7׹"GᾼoT!Q_B>h~VY!zzҏ"zv$_ԙ2>1llC(hg  Vp"tv2},SDWN#Yly& zϙ &A6ڈA)m@W<伇~ֆ~20-B9@PVAŻkȞD&(ŗ~6xBR)ڡWc$,% djb,/sY'!7KʦMՔ:|ϲ0)nHf% jQ6K*?.BfI\@ [|k^k{Xse"q"%v͡K$o-E>g}snFp7:Cj!V;VW.>X'I |O57(@jZB ?qsAZ2BpsA~`).~oElAS,AW]12hw zX5JZˌZjɛJ^H{/'65l{F: LhSJkv6T}{"&72} 1,5nm*cu^Lݍ%#C$qմ̠LUMҷmnI|˂a;m1"IqU.MA W, ˄IɺOXq&_2O+YTFI典5Ɨf.} h6(L=r6ꬋ\6{ 1"Vt2It3ݴ% EmdKGca1¬Ż@9%R@ٚ#[|ƶ  y߁@:jak_21VkHtBa;N͘QWKrspJ2!B%MR%pcc7aM"M5%}jn$c:>i!GCdzڢ I{Rf變_2^<훟+줗8(!`#e~ƟOE!pdpB:mG}K  |vݑci`N|#"@%ITo3.b`^5=9R-qZy 3w6]pn&G΄#0@:&6s\`#D_:*MjNP)6"r_vY,qVeQxNss6D'~fRkZM~2ќi0<_[ ~baNmw5<"Jl}5ܦE79pidԹt ڔ,&(~V223y}:rQ.7v֔_y询No]˨ҝc&?>Z&G?)U . iPT KȁtAp2)!>%8S7\*K d8\qp{ބ#@lDְwK]HHc(j= ĈgYA~,"&]dy46כz BJPyv)ȋ~h­&3hiTYp)~_7XKZ La# SL\^Gz!DgB< xS)$uD!Ѧ'{Ics3H;ZD:*ݘ O]0qX oޜ 0}2F6g%v^*@v\h՛ïyؐC هlq53D"K-<|=IiRb&lwlst؞)}*!5ss{WSSŻ GgI~7%jxb' nk0 6WXҳxXwL}FrpXZ? 6DE; a-ܿ /(MYb!, t9gFWoa+cW!wx GaU- 7;h}Y'¶G jdi?A Z;Wc~ՒX/;z|u̳,ͩ{là"q)Rۼ'|#H@o@ tp,$R'jFHm&`*{mus7eϟZǐ?܀ϕN?dXΕ@j2|P5|$ҸUAwkzSdB#L*LANtp8{C /rvx JN Ub6hIK)!~W[Vkd؃qO!-dq.%D[u[2-ɀ̚}_$(45s"!ܗ#)\aH)b TʔHк<,["2 MŜX>˫L<~l5~JgwsHQ55϶tIc"4 a}O)  ~#10Ra=S Te#/QvMTz9 A?Rz/|++NEYxOyA5iKďk.NN"ˉYr|j ;P:BZ`+ԧLSHQTd7l9F;\H?VLIimQF-uH{A aY֍4 (%ңB!\UaX<?ioN?ZS̓z iWR"wMgr?1}i0PoVq^~H#q[e:-NlhFLsv(]:$3 {&gVA$!ڻ)xw15>/ R~D1g ֖?^J[?O(]0W7wV|ZqČnV )5b<>:t{*!-J@OlCTߋz}_%UPh M?GKcK?EV\)*߹#qpPXp)oQT!NQuiL9Dëa@?4>{tMSd련7QRCd]>Al{M2*:-۱ DK'C1 aBV}ń,oI,&,ke7]߉u]PPdZg4>a\s`'dkTw P(BC~!$lmb=g9Ы,,ԃ a(\ފ?ԅ-Y#f}/j @ߢ$P5ri ts4R>[/=l5ԝg52G9)#njSƙQ#QF(&m6gvPx*&weWZxyG{Pwm3tN;6yNNаix7 3&IH=vZyCCIDdQ"8,W:*l 4>Yxe;#uh='D=}Y Z Av&jd + Џ 5lrm~%t^XFD`TL7g>lI+4Hg'NםLxz2T4hXI{|UrG]'hъo'aNS:G?%0ӗ:2˝~h>=dߙXJzY:o[-Ѐ%f`N:m3:NEAΧ&`?֨I\aPi0" Yma4UfC udm ˜iSt1MԮLAXF-lt ͊Na&l>D{OF37qߍ<) 3g8딖=Z}\`;SۅW3V7 {Ĝ?ΐ:9:ydi>wf9iGJ}Ub  !tM\>V}#f^Aګ6A!mAV< _ nKxtY_0P/pQ7v& |.soG"y3Csp\OyEowUjzٰFuٲ/ưTXu-v3&s[ ЗUm3؍i/G{.+~f] &"/3I>[)>&>L#nd oV$E\Y'ωL#G*>o ׭5k:*gd;l":WEHDNJ[xGkΌ'Ҩ,$J%:-C"Av,({ \#4ϮK?/ _޼=!tiʈYEt\bDϥ6۠̕r:R; .}.=\WrȞ*ߒqguZA E,`Ba%ͪdڹ; xQp3[h! 6r /5iHPa24EN0Mb ոM۪%̳e g0 >? D8FfGR䜁nZ9n)Q]g< ح,#]D)Q'@0t> , QU#"kf J~l-{b t :ޝaQ뛛"0O1lROi؛SxM?@GS"XG|˕z!K+ cW%1@,OE`-vPۘ᫦Of)#CB`ƞϢ5p?d4$k'ňIjOST295s ˭5 ,wĒ<0+ֹ﫺zJ(L\ 4`ne*ag:"V'蕍ʣꛯGuy }8n\:`y~R:tP-RvaH@+Yd,4hE Tn|Ā}]W,y(ƭ(KCo-n<-AMbrK (w Xz^>|Ea\yvl!İ T螻o!haAS T1t5zdS֢swCI! '$'1!ʟ*D"81V //Q$ o Zlzސemuʼnd(z <^6AjA./sqRؕ9H:Z_݄[UxZ,ZWw=@[uFtISH4{j6g\:[Жz/E, ~3.I U'f%>#5QiOP)1 sZ;ϋr}al@&zVJ:*Nb+,5TܝBإj3?qA9Fmlt|[kzex,jv:D󼃎k@W)n!~37̧iy`^!hx}u[ MIyw4@!+T T 2O[L׿G9xtX2Mk/ƩVgd43p@ @TkAOZ{0d jV\VCv`!/\jDҘ fB?$`|R83HMoFx ƇY~Bfesv8;ib?CJź[B%B][+1':;,`Of"AsjD4Em3,'GhJoӘ߫D|yqtilYs;G’`4.v2Zʟz3Aiff[քAȈHR<~;}MNa*_9cM*InBGs@ NZ@$W&ue1.Cn"rdv \˓uFQ ~y@9uѪ㕷Οڤp79 @,ņRl-ԥoPX3[] 2lIqh*=iJpȪ0(W}Y#CWxMX\ A3^H[VFqQ(/( Ȝ4IKZfF{{34{jf#p`"OD}{~QWmE> Kj)B%ʶ|pys6 h+_yXj Z`֟ʺ}bM1QyO)pO3j:u$_h~W{rm> $2c(ЏYI{0w4F$J73#l^Շ-9xeH>v 5,|VoE^!zd7'%em /-?mޠ\JK!)|Q 'Dey\Hhʿ}e hNٚ|үFxOPl Ff*U{{<,͇_Xnj"U[E\tעBʝٸv# (ӧB B!fOQ!տXm=4HyM]J::;L [jI,hpn/B,wJ_ /-k$?.b_8Ǽ@ah&ͮAn*Dlȑׅc)0Tl3;1w#n OZyFL#dOmѿ4%t(E'LY&HU~uoRK=|v'ݨdw]6RK!q;):ucz=)+B(psܴ(bX՘cEsc|0V}J|H" Dm7`mh?R'ڻ*1VwXv+vÄhL{WbW!`~7zi:,><>nu=;~YFnz?D9ayB()(wVuN+a''O>o$aCBΝ{<_ cLK1*t(?\WbS_Vkz?Pzc4 2LSmu F#1ƨ!ʼ7<]5#h>q˴ŖϹn_D 6!XqCœ>yAI\g9_LOQ>2j &s$ ]}=R8yV-ݙiT!T@F$Yj \!+ϲcӮ=ksH9nFPV/_L-Ǣ?`_4b\XВD8rEj-<{%^^P9(.V1rxd8qͼ)RtebHwnoh 7WFHFI,jq*.`h~LYB=,ۅ`JQ6=eNi+':e~X, (mENDSZZ4ɫX[¿dyO󧤐@!_O/N!ܗ`ނq8Wש{w^ݑ+`WdM3K D?'&32 } uHSIƩ؄炋竵 P Tx,8>RͰzΠnbfi6v%nzC~I)9@\\Uk@#{ xQq}ײe(D2r-?Bx}Eܛ4h\X.6]| R!q@dg᪂p@Ba;;*+k>/۪r k۾<Ѳ 2|PpX7r31ZS˭͵dTC( 0(܄ +;/9ƅjsefψ] uBД0|ȩ2~ꃌolQ@Oj :( f#* ^t`5KPT(q$`Q2hUM- p|GhO>.uBm_/ٌht!m( qzpm ̎_]?pV7muQ]uwIE>ytxiRryZg44"`cR${3rڋI2I ^[Z%]K_jJ ˞/5'(m+ŧxAaQ75)s-Fz8"3&(mfE~E49 N%lK k+"7LDTҚUN=-v%4tϻ.c X3`? )&7CFjҽ rmѝ&$8f{NkGОc*|1YZ,5͓* 4,K]!AQ @[fçǩ;XZVלv`G!N2W,kv= t2%\pO$Cz{#eo<¤ FDz$g'ſ۬9lոN5F3GXJΓ+&QkJH[l ,I$RFcH/[u_^E`uNſ2F/s ijهImbYx"Y6J cHdCԮX{fc'd֚7Ќ[Cm(J^5 bby&}#e2%z%*1;Dᴫe$I̘tEM@;AncIJI5/>BT\|Y=/cNʠS"u@759%sQVh<^b&m+{Rd̗ORt@ s@ #I : A@+a9ЉѾ홓u'[f(V,Xxؼ/A`?am]"Qص;wB,-ihTv4޼>`%u/9_!?}KWlR/ RD٦) ?ʁC MNEs vWD{$"--vZoMBb72ܮ!WεߴPJ^ ؗ.=ZҚ`(+٪ӭi݀2|d1P)֏qZ~zS04x:1:R[+@n -EG m-,ʘI Q`KRU饖R()_|dHwcyH$ea"*OB|g`*!~`$}0gNEr"`>4nd "5##ey*jo*4Û3Y~Х]nuQ'N297LҸi.ճ4@=كRMk^ޚw|29 ~7SM&^Ru"OđUpe]*K7L2ks1J\vx9V^㧱>-:_Ӧ YL]Pdͬw.C.;>7[v[DaNRJ?p!gVރOd "Ъ0ͤYDgڠzUQ+YFWg_LEx4,*O1]y~ z~Q(0 v@[p_Ư]hlHٗ:R@Yw4 zLhf*Ge'# KPٽVGUɷ $€)VZ Gsku~"-fmhX}[Ir+мy`$  䡶B`Yߋ`X% t]Ϲ!X D)5>]r̊Ή0PC3FwcOMyE jԕS#o} * m&JL] '+%J&`?ȓuU棵90mi=Rcs~ =i&aimʆicH S?[]!}#uN@J[f7f_&!}@@{6%KT菴"˹ިR{ƀJOfMO:!&3Ve$ 5NSXF¥s_50YZ0=kLSg^ӯ530F^O>qb5se_ɝjm-?\:M.ib1 Խr_z>eRޠ%z$\{|YZ58+XѤ2 gWAQQqlmSb#Ad"M.uGnى#$CYԘP7'Ұ.k-V2 91Fܶs:L$ LBNϚk@r?/g1~^fGxjWS;vXsݍ;zT0qk f5-E{\,8-U nKweatiGLN=Nnõm 6ZQ3 &ڂǍu͓p?韍 Nd4UF<][!,ߛՑ%hDۃF sFv!^2r".ĀIO\J,b !t^W~h;[\4hgC8Ʌ;.ƤdNQ.A9fJ4By $JE']2 S)KH 3NJW|PeT3tu/KeF}>k+]bES 2#Jz"$Y'\P*hZV,iC =y(i)?,6ȠUx!KN*!SI>ŕh49>WléPb<*F0od PTeH)m:0jhJ'4$${FOdQ(BIz~BTZo[yׯ#P :(eu4Mk;OpV~O;V7ѡZswl錂^>H4v+n<1A ƴz(tkW vԨ2uW$z3IADРYUd 7h994i^xÄ?R¯Nh^أSz80h/w1I7,ί!<'BK Gb}brztDh3ib'̽|-`)`V: LT'/M Sӽ0`/Eݖ|>wUC :2uj(ѹUgvFϭV30$M4ZHQ5ap eX+H HgKq(i=gF{P}ם0AߟNST#; .J5I=Vw/OR*g:VjaH-i81AUk<`> [" wPᖰz,nu蠑O@D(EeCO$ᓇU$خ+q T3X =%ujYh'e_W"5g`@}e){SH=yаr{ZRjxKJ?eb6RC#$hz`" &o  X`{Z4aWm-(m=1^ D{ j"ߓa:`PBSz^E!_ d>TZ'0#DT_4X@$P ={tBtoWi7 %Yl}ʺ;c\C8{`h^Ûm!O굓gY. zF<`P;Nvcˋ]"ԆT ̫ޔB߼(n֮nᭆ?WzAs2.Z];zC/|ԭ,Ob?䂻s{С  ҋ57jZ׍&J!2XܶqT>Dnr#+]L^ﯤIݟGD]!ݜ?K{1I5h2ıcrs9a-Ȕ| է1S'Iy3NvfzOvw; |NtU@w&17?FQ 7X[ pt+$q~X X 7lU$5.BӞ5;2*āzf?>qM >?ڲ#I>ލT- ?DnA6+?gDHL79Y+tCpن~dq*kﯼn4eU%C#O>O{\!1};ޥBlePFNRu?Lmt0!U@ͺBR@&JD9! K 34oz0yYiM0AV/B=TdXMI_Ǣy :^YfNd؈W")o=}μFB_ d!<iXFLG3IG;((/Ul&LeFӽC)w蔯ÓCHG/Kp<,c1AaU{K)0ˋvF1z:KLפּh|l+"]SƝtQͩ *cZdd/k8ثDhg+{NW9sajkn|gsI#fI* }}廪5:|N/;zX$XKʨ:|Fv\Vxpf?c=sf@+a:nkA3hQ0ӱ>78ovy*N(2~3Fk M4E rvÇhMU%A8+5k;wZ0ڡe! @Uv]7g8[ 'S [4oJem%h l_n 4O'4Dji̇r ؔtJ44uSڝ7䉣Ys,F{ySl>}`3.6ػMKx͋ED<+Jg$}d=="f)S%61;¨Ob`4( 4P6&nL*`ޛ.lء,ٶcKB>6Oҏ&êtVya< :TL J ΄+zT3KH&]0uKS&򜏧55.|Q{DQb؝H/_0 0I8^|\MK!k:`gpUk9HK7pnDS&N2E-{Mq@w໎ުW; ols _.d^!V"dGS`WBtfvfsTF}=IrraѠB}{Hו^ JG%BUv.k)6 R?HrM[tD!`@4[,i=yN2tpߋ/:xɹ])09#hO3@8jzxzIRW=.}I;=Q N۶Ծ_ܼ+Q݌`:cmLoaZ):9*4*»/eFHhXc5R{sIe:! 1n6ABҒÙdA O CŶJ{;J<%qI޷V\P)Op˟`.F"Ɨ ,1rsW=i&Hv.|zӫLv: 0gC1' {x*,- 5ܤ?ϸgz ;4mJprҠ̈b6]B?-Co(^y8v%X.ieLkS[mBd, rz =LzS z ]m*faI5s7'h~Nho_Yά$k>081H!dRp"[g3ײ|7 jdI&얕2p€XՒbʱwn l5x/):{ΐ0k,3FW 5ňD╫Ai?NxD"|⍅eWLߩT!DK-~ 3ƑwoSFR{zzg %A((J>G6:T)ƃthxBj9EA`pKozqok iywP54St$;B^#PA iҔ eȝʌ\`!B}qaZ=TL4h Hd(IUڏIob-5cY`5g]:GiILaRkRjo92*8'SjI!XzH%L]Jp lwMJ)=AEA)Ex+F>҅ss.Wdv*|RRR'6{I &>¸u/H /4z[yb>][FLcpW}I #A,4MY|/*G(\eqiG2)SҾ㍎-/>j+w(H:M|gQirPNҤ-I6c@\q:G<`݈޿rw్(&t= (x$Lsi,!a&᜞).zk<4{]6߀k:z @%lhJ&XwԶD`iځ$OtKo}Ql[ZJ۠`yEwTyNXech38yS4e\ʆO'2' Ɣ+zjqӬYP-HC+Zs٦QW5'YN n21, yjIF]J#YF$-=Em2.4MfxG9AGM/ b(dZBwh,[ 1b<:+xc|K!oc9z G-ByrBL2U/[][ReϪo";1 Tl']g3by/ZOάR(3_7o@ L[n%c"pq<2N =0s$/dMoS)'/'Ӊ 0K̀]q* Η{ŋc 56䢂g" p0AP}D_~aqO3|^u\9爄u\֠Ψln6i @VA )X_C'k ADYk$on@eOeb]BFы,qnV"׬$3 ӛV* \{r 6^`,7P2;+`<]OfyoV.x#W-b= ^{|){'ݞT Te#`+˃8AV'MP,wSAs߃`r(؟$~Z=6*-, l4޶*#7I3@垙| A{ Vp\ىg+pX3_|Cj JC @K:giGE;MΎEx;0#>P\v`Vi1@WÕO5[bMҼSX{[KI9iZEFGS'x|;;-QdlSvu=ݬ]&:EW6t!2~tt%JuWN-yg!3`VkiG6w4H*}+FVx+rf ;iD]=L(pAQzMwJ%Z'.xn`¾.6)ԅZ6us- ^l e׈tgOT}QNrHlk6JB=x•NAc]q-u#t-4nO>] <)Oj(iD.q. \Slz2Z- I*:+O͛J,0cBp!["F6S\[;[ [za苪'ZyH-`,[_[oUKEZ)SKP3"sa|Ռ;x7jNz&zŋ^MqSci/vb3Av%7'.kZ:q춡wӉ8<0wQ-KgV.P;FwPRC/Sm蚄$d'+gJ/)E "3L߁ˈ5vͬ_D-GYd^pO1 *GsND3}e_ԗ\Aj8`˳"e~B/.78lblSA9`ra`X9MQ|~5ky7}q[{g_^'zysRL`K[l)jl``ݵuNȋRo` 2\7T>8+J'H?R DwlRެ|r+&qvHѾv+=¿S]"fVhiG~WbϘ_[6BC}K?۱{p_Z&l.KC%&umDg:_I%qol}S5oN on qn@?Wט[`4nN]Mt|si#I٪0ag-t4"."5EgGtX'b I+˘A;QPƪ(||7YZ7w֠&Ab 'Uk5('('dM+gЎ}יz+]=A}[J4tT;S}AM)4 ti8nI,\=P\4y >%l[!l7.I Gn>2 ft$šֳ5q9xHJSLSP(ɕ~7kU C Ls|Jбk>iRQ|%Ӯv'W;qD7qr9tQ2ݘ1Eʹ!P$˝֣D,{u  Ėz谿nZR 2.-7iͨYFأ$t (0`~J!ZAqj]~K< qEҋʺl0B`1)fW!D%߅ ;Y(^zI䭸qքCEnASW#I~_0Xٽ+Nqz vP|jK9l6e(8@{š4dxOjA%r \*HPgPX!c@@Q؋VFz=nҰAy* V*~>}ky֌] y1*!):b:7<9q2'Yb"Mv˭"0JTn4Ρ!ws5SDY̸,Q|<`[BCcc•gHߟG:msHb DEЏ7CmGvƂi&bГcJXÿ`C\>VI3rOZGC/W2u#a%dkX)OS0&F;KC2ٞDEv51Ui;iՅϕ}=0QQy G>%5ՏqQ_ ? ,\E#c I{SUVBzv-z)=UDZpDASvX#ό:]ē9_>YVۛM~|FYh}wrLq{<)W,Ds-!fv~CQ:e 0 6)$*UТ]vqXZ/"ƀXٺvG` !YΉq(7'{"N;k ^{p'K &0|)<nVtHt& H5O&10L􀟓 QbO^!gx[]|+KLyzR}je '-'+~A*<8ʞDLNKs|{ak4:wrJѸһ 5/q8Fu*)0"4U.IQ?fkS<ϒT)ZD'Z;̌z!@W iNtЋ13F9o Ƿ@aiw/p8˷atiPj'<0cx$Fr ́^'B["bHtﺘ*$LsIYc^_II~V~inN 4X/|&9+I*=Jũ#~e.#jђWM K4)'IXF8)&Uz/RD RlQMu?_X]a/vgW?o.Rh:8*mRkmGjKZxtJ3%ָ#Iiud(>аS2scQȔ9L@Fb]m>~%cUJݾkI-Ф U 8nP W'm2K|F]ioxbΖ0ubz!Sz@f:4_4h}`6SƂ_-^0Y}TpQmƑ?Vx$ͨ%yfU#K]V@ġq ]_@GR9tQ?%dش K>* laZ!uZ1bka{! OKS‡\fbn9P.g)A,}F6*?uU>A׏P#C=`ޫCP[Ay [ZafeZRAgV§'ݰ@ZS)9eMdR\;3PD2u^Tgs-,]#f <ħ@v2c6J܅ e@h-uLeq d'f;fo蕔 YMk{CH&i@]lMi"'qJ8QB)SAL oQs˾7wO3[(PH6Wvd F#ԅOB `j>Fǡ㮰Pw="ލjS!ǐnҘrOsoO uR&:OBPLJHuC}yP NMr LY@q"=0.ae\hb7䕐8<|߹ oҷ'!]f 1p1׾_ =:HB+$lbo䵳8e/zZsA/o<0l< WL><K?JnkI(ֳ3̘STy:,̯F~&$~0ri/,Y<#} ? D#/ Z\(߼mc2znQ?M0. Iρ=XHF%jmjc f&tNTXH8ԧ;,7*yZvXдcbqN>:kBάA4^s9q\`RfeUQS(Uk` bǠ^%DmwNFAE"C,P|<׸иDoРX5":@g1}e#Ty0T?/%["ɝvzW6fd<0'syL&7t<OWH?yoE~m :gL |b)O1VM)b9̃Ǘꊩ7̎T' 9h7nu@e4]<-3&wfkOm^ 5Jk"s6)?v: L@.yŚ|mp!zyz=}DJgtvw^J^r ]M%b:rsb|ipHv`G.X_ wt]O{Myˉ4}{˷p&k)ZJ.@y T0:}"-( Uf ?E8`/9rg*O6b*t,&tr/._"R)W`] w;;InvଞoͫJAl}@@"P%Cpx`( G], nGW=KawNSӨ41CX-gzKuA22;ȝ|m,`l:+2&L;oPC)Hŭ9Te/LȄ raP X tZ#Rjংp6 Fp@?VQz@!d';dܻq$(Qei~[ !hª׋׷65g>Gj 2f3bV }Ds+B__VH`l女=M&#k>W޶X!Q ~ 5;rSJYLsSw+7w_-_"h@_n˕_UNjd m4WN T1d00ƽ{P 6Ed`N?@;ژaB˖p͢wژXD^\ì"PYH&Y HP6>>Q |x1Z9JY\,2SrQo}E?GS%D8ph+[V\$-R3_=\v D;fkiIB8.=IPjPp9ucam'vNL[[ \qiDZ$*b\ NS3:ˀLټū(N_"dQ>9߈fub*Œǰ`%iVBn/C8KL}?C%FF=b1`9Rv&) C_'~f+pJOF8׼3[*Z4ѡ(ǐ._!~g<{-h%hArxK.Jc Shy\ \iiaY_3SS}b[H」5U$#̺:66t4[Y1j%`=rDY1ACU2r( *Hg!Tp8~(G>rcD}@'w gXTWz eX k~oPP*P(Ao>Yb Q2kX|mA{Z\@kXt1{"9j5q* /gzIE$Frb$%mT)6[ [F HmZKVf8-s/U)X}cNb~]1ѹѓAp2k,:W.+M/3CI:᭓%T#a8OEQw &3Zأ}Z܈c80J_">ci Ly(&T+ヅ*:t(Mh%{DD:K#s^n 'n36T/jowɂ1sOhJR#^3$kGfoۭY2W59/\ Jս+;PcDege@+` ,bY/GJ\B So<2J?mOr$mBXl;*$oȿx v̉9Ӟt *=mt[{B̥u7z'.x օ=d2Z+Ye6YumtFYtڛCdNrE]Yib's.9aN仮F⾁׺d2(q݈Ƴ +^F{Ua@-J}Lmnkj0ט?EXW2vbEV@XMP6keK_jQMܬ:K,q] D.6aiQ?<UD0ͱ8#3] &01?YՂfĉFo8VZQ50[ y lMx424QG2%}P -w0~HNEbJr"rD'c@'V)632ֿqU`Jф'@<M\3~,F1iWAhW]Rqg3{#$C(Q Wݭ9L gGʘH(Hvj5q&Г {OyȕC0@Y '?Mr:  kgy>êLW=a!43 #3Kqf44(њȼ[?9D8j i%Aݳ0V??ؕbz 0EC޿x 0l5|273yP"X©A*SJ!ʢ6 3_Zmɫ5Gdsj&KZ2"ԥQFP[3`]*pٮ3% oBFdw~}M<ޣrj flz?rTxHD=cH9Z\1\87ߴXq"EهIIbY{ "<)O@֋&uSN7h7eGk~<au"xfz{Y!R zN?'BpGwO֊.Hsl\o _"dCPľ3 :yW'RQ_ wO5A?SokMtT4o tx2M!Y6rtj"`\~հI)se B_ jNzO>`k}5*J*!QDik1*NpkB@toDQX!g ^UtrB]7ZX,;Ƹխ%tu2k:$Tm$GS02(2LŌQ^kGl&~ߤK`B,%-p.怳JӠaqx=ul~+Yo%՚: (#{n+q/ԍ0KYtP0A –_hci<9x{4 ,#fd,`xZ ZGn^vp;)]_ };^ovLEZ}~ 8DC/u¤ncud9L$@| rּ~âb$ٛ'j(l6T4'g;$qCY:e?:?nj}1) V+x0= uFXLm =Jj0uђ_ϵq-otB 3Fl@sEc^' uB)M!P~,׸3P`psˀ}{HDRn]_дoNDs5( dR֪PSgjU>YЭĴ[DXO?Tlmλj8Ǯ ڱx,ʼuD]Y*$eߢW.N4lB&S_FƜ ݵUs3i3NgO mr߁vTtg:gmDI\ 9ʱˋ57񽄫pς,P;U1O)b_yKE+I5rM/ۯX=?Q B7rwAbr޹vo-dEtmb̸S2e 8umL&Q}h$)9I*k` U)7 RW~Uv/vǞbV8*_;ELrgY vm`G{ `3v ׂOշrя ͖L[V'kч$$H& ,\3(:#wK#޴z2ň/!=6 "߸RD"Y[IX _+?ê({lR`d [Mx&òd~)gѦJ}γW4ɼ~Eq`^(Rl,0~mή1#pYag%N]Zs=kQB{*b7%NJv򋷔.r\hc8f-6bX (zK u]c\ďmrWܽ>"~"E n\T`u(bkb5`@mxvN TF;m>c([+= ̡_~dz;A4E&ZFQGC47b/!m3Bv|_%#m'I y|O7Hc:&l-&ao~y ">W$ГPMj0J[~ba# Q Gh55wmՕ8{JLXV?L)R,\FWrxnuƴ6]'%0!,|zZUBo!gD. !(A$3}U) ʔ)Jx8.p(h,>/S_Vws,C9Q J)hD~WtK'_ՕIǮ-a²{EP}%kT8PPKtxv ؔ2(עnW@[&ݥyÌqCg..{ִFZVjsPAlV-y蠦(*jX_MXeCχ[e"Kz6Of7q_Dmx]( ȃ@"M,x/H^/ ^FӘ~2Ԥ0Еevkσ  4\GɇHr &HLFzd x[!^rQlAaI-: ӤTGVY쯿c`e=h!-: oPV{#-e_3ZPU{-]%Gc6|=2nrOлkau.6ʆm=uKpyZAEpȷna{Ȍv`c&T;5$M>orgVIi?& HLh['.;8 >T 'a @LBx⼺B`?:[ n- E_]U>O$Qc>{_!{}m&i{*=GqsQ ěo wlXi^M3OP@¶| )I X}=/",w%׼\W'9Yv+}2I̍yeo eW#`Hg/GC$&- .Kx|M̧͋lg}jxh٠A-p"7g)`|hFS2PZz%iyVT0Z_#Pvm}}=_,U5G!r3[f+xmT(ǽxCϽ` ?du7h9dW{7d .OEH0AfRpLgvEq-,[ed`Hml-Kg@|}u;-g[phOKf yTab :Ir2x%HFQib^ <秊k[~>8JQϴk)vyG?(Pf{{v9[jHjvv|t|g T io;Cs#W>r0=?Q=ۧEp6 !]rÅ1S+~qW &vh|% .Y 0-w-xF֘UypKX"6ŀC4PA9e $?N0H G!; &~ mt"ԜS{Xt&K"`ÏK{/Wi)[lYy7PA\b'3zPT}NVSp[s}y dH|YPcefm%pEoRzR- -kUD1üs~~tŭ6G d]mC$n|ډ>bEQydՒK ;,=? J{&CaMKLntBuV] L^'l:.GFƄ+y(1 /y#i1*6n%˅RO9'p-{<C3Du@bsGNLRCmCgjaI} ֻ-<,0WC~CO<ŀ?'Ax#{(iahVl0Z'cɜP<䑾 seFӏ ͠='jڼsWtbJ1"w a@Cf"A“3 9њڎ^^FvXyr$=Kژp`1An.[]˼^Ԇ$ nH7硷Ut%9tw#]o z]vKqNXt"Wn6)q| XtXa)&4wV}5h 7>GZ$1@^$V!?2ވaeQ yځ]dO\ vȿKa*nfYM6o\{4 .pW>E>0V4pQn+?p~^t2.3kE+tSKP qǏMJm0cq#eC$h(@w ^ټV,Ez% h؍kr?n'ezwŒrToR~ٿ1U.V[=z^ OqunmPq< .ẅĎ8OF's5Z`c%qzp 9٭ݝziBZ?QpB10 C yӺJs?/5QvawnnmvnT\#+CyM> $owYω;:^ X*.cӞ ur>|9E$9>X1cb4&"hc=-й81rg”-ҩ"7ƽ5ݿWBi=7ݰѨI"^[+A1QMsbj&|t܄UR{BU`6.YA~H&L?+*_DAWОe.N*a3xefX Xgz+(sFw(o,ob >c%ie<7XNij Ex?g+H&iU~^ŨFid@ Rrw*՜(AvG/,SAB#,ڮIj~<ůأڕ ^;MWJX[&@0  ΁VbL 0m&٭@,C-VصTVxTvːe9slRLƤ*QTشͱ)-GĪxk͙(i&%N}!\7G~˿XX0v&NHKpN$4NV+% ++ٰ5W]3\GG} ?wSRБwʵ^Xng7:qh/@ mvEm'RRq"[uxD s{!PQN%YE !p +JWп#UZx 'MH|7cU?,ʤRj1\H P^@c,O8ű֏}G'9o\ 6Nʱ>)5Gi^ !%kyFs;*^2Ln޼f>׫^zĆZYX*,ˁ漃2ey5L|Ȥꈯ2d|,w0ھm䝿5Q z"_R>ߥd7Ra/fͰ"٢vm`Q̼01#9Ÿ.vFXg蟞_K=nbCxXf;MMk[9DSjL=JZܞ1@sm\{m+^[|zA>HWteY(β,'_}_WòPβݢѥ{MMv:ľ]-0쌉/P1MNe]ŏ:U@6K"ЈC| (oα 43H7eSYKik4[4 _@dDz]HN^ٍ.o"fyxjᯆ-Sa,7m=FCsVl r21*7 *:0t0u;5^St߻Fzl|XMd1ɍazn~J3fN殽DZQ6/.D@5z{ƽK4Vl(9Bzz*pyQbOX.d V ,ٌ<45)rߺp:PJ",IFC!lXJsF&D)dSQˬoC3ކ5Hj1G W\~Y5(.SK  PLuA(ἱ"hsKύۃHTKԘ@s4Mȓ}WO_CYcvT?$Y11[P,bB.^?`u.^9CaojH̏ɰ'^I_]`UpVkUy-*Zzɜi< Ghm^]6 8d`lO<܈Jiq ޹eѤ ]s2.z%V@Ƥzw`qZkIDB6鞖2,`xܡ=Zp2GhbK)0?4յщo>fd! ;n4X݌1dԬxz.1ٵ6QwVc6 ԧܭ'Q/ h{3EAѓ <*WX[ds :K JN):KyǥT"6+Moc3">PȘ iLTa7kC7uKјUZVqʩE%'Z(8ʤYoisVb pa^RA9^.؈#YK)k'1;AAJ!'iE$Pe!>t{փWq}# ho6?GxDzwPޛ)o%Fo[$ }La/}':EC(h_ 8'vod^e}!gqOXX(OJHlsGJAǦ%@ 41A3@ͧ-) (+y̧-lcœH_z\jzX(RGG_^{s=U[b@wN m'fjQ Ǎz*W {gxpKThtwٰͫ=]oVHXg])"a9ۀ*}_. ^y.,p%nH!MFEՇ4U0MgҔ0j(&jꄾRj 5r7h˵e+^V!޺9v@(e3ڽ:h1՛l"A*siܗIY{uRW+\-Pp+&jdz pG6 vnȜJi&-WZK#* ]P0)f[2`(g'幦GuX >/urfG}՞ڝ'dkC|PEF]>+'k[ rVI3^;GTZPϘЀ0"g9q@hl ѤI$nSc~F=lVЃWCpfj+q_VO7͘Jn* -j auOmc! l5ԧqꬖ##jmV2H>оwȇ`0q=8˲.zy .z3N7S]:\Z) V? HÈh`A|r2ɋH~@3/W~l ڢqHTi#ˈ]t6c'Mfub%aӖ&K, B+0\X"VY)ZMr~, $Z_OgfZ\ )N^ݭw} ʪ 6 =dp|\DL ̐?uJD!\J?;oejYF>9;ޅ?hL~jI?*7 vgn`J )O$0]zʿ)M1v,bs_o9-`A*ZQT*>n[D!H2_A陔B;?esSkE=k{³I ! J3BIr&[םcVM5濉(ER{=W% I2|e} o]8~5(dcզ?hT~w\S,Xܫ5GQu鬀3Kz{BЗ28\6ua7&8iB*I<[f*K2rWmT>3B/?e2؝rt[OGHkZCg~pAI(@f)Vy{K3c4  J87x/i!?P-"@v@DfW0і²i1mOG[VAڿ;HZiIҐ 934$s ĪD`Z)d2vR`[ |2)mUJ00nNia!an&r|hخ%y2^5,`)@}2xϟ/i_ՁHrCM ԖIΧ2|Fsv|0ɕ'("oB8՜Y1UҪNS*&dG1ZdoË:&&dat"(zQNk|Z{|y=?S?M"lcxfD/ @goytVB*6@**=d4PPo}l9q.QǑf|'g480l\3P婢ZZ^3G+n+ZJ,9em9ۃ̬ρ ekꃵGt[\&bJc;չ;TE1#u/8"YV_Ll<D{wsS= B42X N|r#a[nntXs²haX?7ĭ0}WQ=BIvZCvE(!s1gt,S1o[ 7SEC;\?bU :cKGg+4Av86w֢}f^1Q±-)oA OCkk׭ k,7/R&Lg"t*b)LEdeH+Uva%뾪:p,l``mXfPIfw4hdM#93]ģr\^;Ms<tZpҷ"@~CCr"yk-2?mt#ȩA-W|q_ruR(@~Ff= P]V YQV-B2*Ϲ7IZ>g_[S<ԂFFh0?妩VW_0 $eo%A07yctPEq@ d9Y+ƛҵ"*}%m]3Cyg{đXru?2C\O2x,C$!E ;NJkYhS0EywSM!*`EAi&*VU1AjXXV%~CGzpb|T>m=XӘ`X TIE"o4\rwS?SrȵcQ ,Žu&Y5a,M!>dC$9'J_>D6 nQm46N~ 8cl*i w D5Ght K ;K Jڻ!o!Xu1:fI3yD .%w?lSJ 2ЙsƠ 4 T2 2=Vq"F^%!=!}gY#GW[1XOjتmbPcuϲcYJw#^i&cqm;9=FbDrpc?bh  ^r8;&(FsW]Džގ灩qG6@I XRg0_ y{08*-JhM8! Hhbˡz&T8{07WA sv/ZdP[_V~?'&n!mXRm/ZNlz"w{2^ !߅Ƨ#FD2Pb-Aa㼕Ts:f5W7@-T/|P/eiŤ|u.5#U~W4Mt}RA_$i x29.420_ _*cd=E!Z qǼ4_nS Z*p]LArLK m{)՘{rOPV7 \''> BZ y|@N"?ʹcI$}rR҈_T8 T{WVK}gm8%q"f\憅]wGh ۍB7D8c2!1> z'(]#zSM|)RoI CrQ:q]qRm(>q*WƎ:܏&RLK'+b}z-/ODMR?6lv7Ůx?%\vPJ#Q𢜱 h9!a8A1 Q4?[ɘv %[([~]otYF\1<$+w1Om;2SZܱ-a5XՠyPWn(e('sW݌_TOA 8n/T]32$y;-T>MDRx YoVn#LAZ7JBt4sy}f FA.o"@(RkofE` Eg {4IGj~w⪁=ZĥS{Xofse'gH䘝Rh:+beW^ $0a3^y $8W&eZg#,}%wt7ff#Q &?a,e/ hQ4;\>|(;AZŶ" yg$t(g_0 ZQ[|eiMo}<υÇLeêTAM_y!P蟦*`<5t2V"R0nzUF (A9R&m@2ٔJ -T;޾$G* +vfڷ ^o:Aȟ4=Q1+>A`Ox4!1< rb P&~`O0mZ|EOïRҋ `]k5 `*0DrMScqҐp.D_l0 `8xPR]g 2OC0iZ~ K 9?wQ3iLd,(*?$n+>dzYf) ,/o!Bz}hMLe\Yh9NuP8Ic6+HIWfȸ,!OG_/Iym>kJ6nS>]oAx^@3e6ˣS@*k*rD u.o@_50  'HZSx2q>8xgJ@rcSaڳ&6svgrVqm=q WxV%Ҿ.^͡-|a=olQ~G{QZ<@CʃIF_nDe&f2Pi2JjiUe%Le%P1O4, bpA?{a;cg/@ژhpE@'v%!}_. ^4H߬WlZr) 0ǔu58m2/ȏĤP !l┯гxr&޹Ҹ%˘*Bqq.j `5EUrFs`!Vn{X]?_ff@fjz=F&(!Ow&IU>ޗ9;Ohsj[p#~#UD[Oe)0mQl[J/zKev9":LJ'qKjeP7?0 l}#R[ a!N3lRB& ̀0|{o`dJbSn(?v庀svUe ydYqD!BU~o#8XO)cp;16cs)20tUoIfVD8T346$/ZՔ^JHjvEUAt9FlFM΍ͪ[ ?Ce2| &cy|UӸx9K(h%UZL"pF ބrW`$߯TÚƶیi; ̪'[3٘}<>MhRBE sY 1P.yhqkT1LMtĸ7dΥoyK7fɊp D)0 m!+n͏5uɣ?7Vɉ aDQUWne%s^1DR3}~Q1/~_>[H7a@IW{ey_-(y$.O# 5+m^BT4_tS 0/kR"@l}/DU谿gx H& 7g~:_F6&C*$^8u|W3"Za:["ӨXMGm ,)t6;~ѐML{0@\?*֍ሗDiR؉\H|xrlL1nLLBbow-_Z}υG6b1zngoˆ BjN#8kzb49=nD@Rsb/)Ǹ>щ{e"smcYևȕ>0Y06!yMHIߏ(L%q^]˂cؗrEH Y-㺂.EP_d s#@6Qiy3f-Z[d>U:ͦh `9%Q.X'x()gG +o>_rłj7 i$~w&QOM:N/{4FuWiuaEk"SE8.ީȖeuwGc|כ+' 9I7775[95mܔJZDUsN.^m5e{g|#˥3#eR̵P?>2T p% J>/#SIHBAZzWxQ]ts^9I@l1O!R"M2u\EE9eU S.;ޣNyFXuҗGJd~F&%S1s;싯QIUAwWz}R4m6<`\_)2⩊rDtF$6C`͸$qt6Fh3?P~|fΙW?lCrоXmra遹oHoxO#Cp5nXvoIT턦C ~)=ibE;l?o. 5i ǡ8Vc5XeDӹaZ?z9(s[ǞSoA/q8睛\ Χ%FHCODL|y2˥`;JRO .nuw*qEzcF!»= 3*|o*37akƷo*C/EFaLf'7D9_ .6]l|9&X"cJ)?_NG2­C ۹f]rt!}aUֱo>nTMaK?/~uK7OيsV<}3X)Z߹=hND 9QKyX( & 2֥yHD0_E㲦TeۏTiUvjIW4Qv3'q~py\BZ!Q" mNyMc^sVgƒ@{f7)KaL &2lG!R)C16a1삫3+=6&`k?53e*E׮}j&iV=7v58_+MH|.9JT]YI||TWQ#EPˆNV3+PٰHyo/ T$]);"OOE.|5ER]p#[:6BiQ ( ߨeKŞ&M8:x~ NJו[5Pǎ 7;tJ7rXQ\ktM 6FH"j+#`) S Գpc=*QN%oOϗ܄϶ݽohn cyWFˠ~BN^PA'"!2!hntB]~~o5` a9hST<05ÔJDJ~cKPu5d E"j;qhLC0`_&\O37+?'dCR@ o?z($h=>1} VduD 5 (gV]|#G92] tzltH1R)Gb Slisϼe俍1)ɖppI Sq|Ā ZZQpl$0B&鿹ŸАTAx]yU˭±\ nv8Y[@}*[1^VA+G ;@V(LN=3eϖvvYwB|Q1~ t;} P}Jսkze{|#6aA0ixT̋4p"MB]5@udLTa:sZc:F]1:5 Iu'IP=_;+fV3k PzoL3쬑N;[o$Jkt{7b mѵgڳ 饡2dTb-^#5sÑ^G,52~0kjV ~56g&-6Z|)"j]!rD ':t>+~`ۯ(]&Z)[ 1bGoh4q=qw Lé/A."h!.?iן12pTKmw_ږoI5u'b`; 1e:CP[@K@a3Q݌A{kEXE#χu.̓|$:q]Sa0g =3ďTԑiJ5!bdt OPI"{8#Q|+ccT-E_o ŹA{28 n="0pr.Qs fF,zG8I9sJMZ{ga2GXψvJ$>F8Rؖɪwa `qlj̹>wmC2 Sp} K"(:c~9|QBNԮk^ D/ZATi}5+hK:4D[P Y/aX}oB޲yXOu=%fK -%y m[/a>8>@q kLʹA7p͋z+:ط'_c SCF`jŢ YF8ݯ2qrR M-)-$SLq?=G $xF=if>[@Z @,Ѩ&+E?h6/oG,)VUGmco ve'y~DpUJQ(z]x!_6@͛ C9&&j‹ǛqڨhZayl7|Ԭl%rʞ,N!-\ⷠyߓ.X8#V ǺΖȿ3gwbw=3dR/ȰPoȂE#فw(_F7j5D h3<HܜȦ\cI~&HP)_Qn#~ؔP]xzIl.tH]aQ-e&_7:b6 该/a/fg7R#ZZW>ǫF4z#޺qEnC':EOcT"Jql}ƀAȳǿrBxq|wx[Z :I d@$i^Q~e8{9@\#R{hԐ"(D0]{=*&P&Xqi?`LHEj56~1]Rz?\L^vTdUmIdw*rc_%rr/}g2=on:^-}ۺper+3uL& ЗLH2^t %# 5ίDt'(iR4wv% )`jYܹ6xAW>LroZ0{Qڑg%Z°sUl;s&V~ؗ[tI Y1T}lUZ󎂣Y!ϣ*[L`wّSH+"dHn}Smm orԎ~hFAt%X4 #WԓϤCG8C:A^)w=x@r@ X1~=}*\oބx5S *D=0` pYXЧu΀.Y;O/)4JOk64a.׃n=>=hHY"uՐD.TDƇ53_> nAɐdP|F4jG8uVt-8U¥(sͷj4b]eޠ]7%~J`6vTbڤݹ  hKotщDQpA&4}eXT*x1Qљ8Ky r_zb{R UfU)! yqIu`ea^/)] қBҧq6֍;&`"xe Wߖhټu”qwB_U&H=X5V2vC3r)ts,_O&8c!9a6$t>3hE63݌_V®Hxމ%+`lr^ث̄@@N_!3)"GyNW3{gAO,gsC'<-h0O%.o\#zzrc -Sh.P8'pk~ ȐD0#\j UW&? Ÿ  YU&$h(#]Enlz ;vz" /[/Jn4[R8I:aq{}"0z]U ;)¿f (8i>/T/t JFgHag%;? &=*3/G=e˥WCe,MWPdVhftId^ijUnucw:9.0 KqN& O"qf g t\5߯`5͛Xޠ&HUV4~KvpiIsTn&ά4 }e@G_A1$RrEZ4B^Ƹ#9Hiϸ g:P_X RpT(j8Pз˻ MwA;4 jArs3d۵ g]kPu$"y MeMklHw=7`0 i8]8e}^ 5ԉ'2)&8Ve>jd{G.w5;"7f ۤdA1FbU,^o K4leg/L]OA1- =%ǧߵJ w;9V 5C{nk^Ovݣ,B1ӡ`4ep}[J^4?V]׈273o5'Ctn/&LySL!݇sҒWil IML*jFߣH Ej>~06m jt 1X ػȖ( tGQTv?T+t>Sӓ:n\NĎ\ ,^u:Sǃk #7f n1/zNZl !P<_϶mmS.٩!0Z7=P ?ĭ {q0byCimd3>С|mӒԼqv}vFOb;v4 8'kCudpc \R [UT'1;?i՚sg;ˣB'Ba I@BXƵf-D$_!1 hD@Pw$ vy}jl׶"ǁHmढ़,DA2Ҍh}h̛XЀ9^ͷ}4Hwi1m,\8º*ҏ)tpbg"؇i eOt$mWaѽ!1sBf5!U!Äw#HL_mQ A# ~MZ|mXĢ2CXS|)e..:1PHb+?{N|ez 죢@5:@ zeo34}U> ^N,(LC,:L]Z^FoiD3pB#ZPzlbxD{3i#u>zUtj񏥴x{kd`&$S(9 ٥W]o8=3ީ[1YpU 6f5m,3zaR D%(uc5Vzok8 oX2F/zPB.)ĦȬJUE_@BUAnQ,*=05}uْ^ޥ:Ջ&+5h'^ΨC[ˣF`]˂2$z~SϏ*5O|8TɟžZbdA 1ٺOG~xQ=8m}sE~6YWx%WIjeJlT1?ָc :R؎"0Sil9ugyטe3(IG*/ Ve$T !@" .Ӎw%y+y"W&y B[ܣQ=aG١#ZWLFSԫGZtWNoSsb0eUc~9Ek%h*]a. cNz!7  9fD8(eW?ZcAt)a.7n\Z@_1ڇ㝷iN>=<8#mڔ=.7CaeŠF˖P~Z 36ˌ{?XI_4)<8Mt`[+HGDM8ĠF!, ou9O=I*5̦3Sg05˶@ q@7#kq{N:(Qr)Bc B"6sM;4lq^(fiP?Nbzb%|kϻՀY}ޔo`ܯ],Fex#n8[@QN&""E]CMgOʃqU>ϓ3qNƋw9CW+aEVTE^d=C!4.sh%TItt4$6ef5Tcx9F [nk,M=y&oN-sjq(eOx! #"@lWz3 Eklfm67ƒ$[`;MQtjJB/sV S8-YDD-31At;;xDv~9Uu@y/F0=)GZ Hr'pgV$p,Ч|:-G* ͪuN"y18Ȃn^ v G19*:w"@-:DgʏRc{L=_^3]ڗ&DHp\A f#Ycwe/^J*!9kE2G"!lR Сإ .@YA{erboO`Lė/h=+/`ֺud1t eL>Ʀ7iebR)99ԘIiw |hEZc7Y-4't _G h^cѫ8%,=t~0ͻZ&,?!-Ϧ2+om^EN;@4Lh͛+/Oxk$74Yz ķB 4xA%?vڔutRbY;/nR Jslzuqc!b2Z1?&:{/|MaQ=(GajJmERs%{P$RT2Q9 ތ؝U1xOsp EeaaJw,"vvXsB #⿶ԭxAM]OΙ>[YFȦ>ݬ?AfK?tLuz'bZ+ o yAUx#60*xtpĐ._ gPeH=s{H?>` ITV徃۞u D\Pw|`7W<dD@w47+/ײ'<{g%EheG]>#]@Z\K5p s׃ twq 6֝=Xc*=ƢhƉXMܮǙ%='vcl+PTלЪpq16* }&_f Sq(Sb?N$GhCnGB?|3.}ԡaf=_&6\PHW"Idʢ|tk6ҍJaeCQ±oˎT =}Sᢙ:y{ĒI/_[6YCqakjܧB*@ ʑ [N&!lEVǰ^ЁX`޿OaK$Jy#IUƤ/flEkTV NI[g\j>D${ּ( dv!ZO(~Т lBSBc"&$I{+X<++>KWS!Giצma"x r((/~CYQמ߈ _4bi/.0\IVǪPꡦĸa\GC2Cd#gܸ_m%yW邀^9Rü|j1*PDaJmcSPdKiqޚeGsnH:TY[w"(66E]< K#)(Z}>P41O޵3Nm*<8m?:騷Xԇʼn"\~}6_lf'ir13@Si{hvק|tj3|K+oؗׯ-m®C' ځiFȗǏd3lPi~ʵ@9W?t,04ixF0&hO *c2W4Oʈ"np  ~? ![ޭoEI,g7sZa\ /̜UA}s_ y=] v=+XһϘ9QRVzCM@gX)EvPE@YF`@#ԩ+/BVgXE_-^үd?OI ,Sկn 7Y賊fz WimCnosW΍nF+\.݋K#|A}MRZUVcrZnOd0 B{}s+_  f -i bUb19qQa ^P/6Q?_C>B!2xEС(4+3S)Zmi)(dravf? /-Hy3Ys6%J1s`SSoP?^K_A:3Q&GN f[ ;*s2ocRD}k> j8&ݟ Mv?-P։wxLYJ> d۞K&X,Ć.d􏢩ؑ㋢j,N0ݚe^0(Rdz'7%bPiv/9A#w#o|{c:z 㷔^&SP;fIؕiVemg1b Y憯ϜI68{<63\P UQ1ڣ7;lD5L#u]?>u6;ދ,RؚSOSKD[`;v;cw@³g^ НhmmhC4#s<E *rSy(h2'X KMbqYr݇> -tlmѬZ I9E+gZle]|v-vTYy6jwi`Cy]} $9(U4 wܯ刺U-l1  HǤ9GkV*un@ӼFqUDaNxi Yƿ>2bL7 Ơ&1\{7Y9*aC8N|7G;)UQTوm&Da%x t-LUtV#[LIh'U?ZdkV#3%Pԩ~LK.cEH] g ,<(Z<]䰤'/=wx`TjݤeoGWPq+㱢B̨Bȥ]vBdw$P7vYQ;VI9鸁/&eR^oLmHʼn63іVB9zTLj3mdzf&ԞuJVcP:j4ڷ;,W ^mĉqzox#n*odj,z`dSYdÚJ DT&qiS1b7 pVl#zMƞudX'i=FAy ҵѣk!~xtz> B>KCS#&{3pY)zW-DŽb ^8bAj]w4VE RGXdxХ +FyYKj4^H^| q#pqfXrS.AN=s}s#lҀ+kTz<`20 H.m9l16ɟ9TĹOwZty?|ҶE D;c$|rqXC]3AgCז#4 SK{I#oR,nSM;t?O 5YwiLupF˲k[!V:#`,F-V.nT.,(R],ڠ0d[[X佉v aɚUv{A.g61vڕ-dŽfBQ~ g]gI6UKC T4wc(`ef|,춐O\S ?XG$v {:ouI\: r`;a~-qj&ʕ)zy nA˻*0&]+qbt^w*=`Wݍ&$3 !R2 9[6k6⏝B**&J>DFTqUPm0{Hi6i45*?w 1Z"΢"1Pi0~?^|c֚u-`nJⓘٹxe~="R?>bn12캴#w6@T\pW((4'B75Ku\ݥ kkAdZT"g6u|= :.I0VVVڪliyQ4UJuS&I]oJNi/ُ 4d2Fjwp0 0TAkտO,H ׸5ԌaJ<;ZYDyM#:b6VȣfY(Չޅd-rn,bkz֝W_g>h -~,fla|I6t!CY ɵG 82>͐eG @DB51!+Dž}/$e"R z)EOS۹.Crv94h7g,(FfeNO@-tZI,5q/N4cc^;"CVem4Ro˫+)yy5@$VMI5AïF=~%^:ٟg^HFp@- xbk:v Gw4Oxݟ1ABG!=Iyn%4eg! f_MnhR{D ̄9s>P `.ȇzPwRCxS!zo-%01qψ'2 YWڣ`G&,OLu1es! ЎX,ʠd"Uki_mieÛP ?{sCXh~B20%ײKk\H.Q'NL-UDživP!\עNw‰G A]YWD|Lsg6i Ё_ y&[6 ~IBTY'/2G8q0d@n.)f ƼI<J#qvFuN}&%/5xѠʢȐ"nSZj@E ½Pfj Q ‰2Gċֺu̫DbE[ǿpn8Ht} ~\`StGD`+^[枃Z% GTNKG(g6a3vk2&(7ULW"Ŵ87`y!r ?G[nrg)$^|_,ℇ'Ji6qe{]A[wY/=XzݧXu:FQ3H)p|؂X}ݝA9+0~?`3.E~ )vCx1N˕fE-P Y_Dow"[Q6٬}oHAN0\3יek2HGS$EERQz~JOk%]@7:>MLLmzb l}/3ILF8פᩁ2p"8"F ǔXf'wN90+ Vn 6 s{Y'\LIWB(`fD~ .d.|n8ӄ( J?JPpY'z{5vRДB848g{3Tyn'8OxA)0%>F*"]c'/Eq,O{0j-oƺ( :#7L](pU'Jh- ì[7/׾2t͒.<!|e*8oF!!XbV t l͐_vFZ2e]xN,tn5ԟ|ۚo2:%ij/IIҥJ$bB3 p G}ue"e`Dyp&AW. ]ix3)%=+&I(Ӧ/;(L`okM(A7Zdn"@' ҋJwۦoi #~[B"&*H@X0ƾ7d?2yZ9/Gu.m NPlµS(v.4NOG(+ Nf<=xF-_xyb}ٰ;ڸ߲o{RD...RoFu'=Iw3( {IW腼Uo .kaIa3XפN-6PXR(rrj E t,ak},C׍B%*/G0*x/ Dn#4B b^ $qY#!@R'7%ktN`  bܜQR}hVxVZ/&2Q97IF7pKf huL%4i;zU8i`P!{AFSbPQ9[DyɱX ۭEp3673/Z zd{TtP* kC*h,&9ڢŀD/wSs; e L?M?ά0[@#FC22N 69#^s-Mƅ6/ދ9qG +X 5APe@}Nx0-`#;YчAZ5|yW7t>i ewHOɥSoz}fYVCMN)<4D" < `Z;NY?~辆RtlH{;'k1xExyn Թ cȢ < =R#&[JB/{RwvS^wELZauh 5m0wie9G ]kHS >D+QqATƓ x5*q_gF4v]L/_ج 3'f-ԩXst^84W05= 'Z|mOՒ?(w)1^P@/)JEI T}6]?BܸuB89/)LWyߛw1T/]ݤa&IRսdp-$$3& c^- oاQs[oZughR{Z8RƹYTHȫvCWcr4fޠΣ R8~(o E2{DGPɁ1j.fHT1%B O\n6NgJvPeYKQE0$`do e*Kxd6Qk/䧂%C?N\ۛ%~>|K֐"x"UrD)Z\.E/{"P16\{Ил!^ :c?V?Np| D SLR6#T DpXQsx,vk]fSbCN< P9Xђ%^wX/!H-EXt}}jSphOW K\^%к cuœJho `Ml+qdZϾt6b!K̝p"}Ȟ>K>B8,K/xeQDjn4 YFM>Q˚ڨg7<Ut a]F%!48.G[g)}h{Ju Һ *1@jܒLJ&3d_Z kSuc8\Wۢ*=f,ˆ\^#kسEtaΉqxM,,ȜYvJ_/uJ'.atf_\a5AToXQ8RIlf-`PW8| v΃8m;O,PDpX!lLgĺ'.^քb)NjuPn'r-P2Vwg-5Aʠ@8^ g{}89ɥk> ǂx2?b. e#|:Ț˱6F}/ta;}jKyPL|!_!h0M5ƻZn.ՋX)"0&D d9/<@[K4i !ÕfaƷOB?Jq!R"WӖi,ٙa7R3;vz=̏gׅsкQ~`0el:y)D* OS4/ 9FR1ԼPT7L}B+\FESܺ 8g#"ZW?7"c;1$>hA=o8g!v"ۯA?NT]'- M;MbY6~yM@L` /6M%XXhݭnJt᝗`) dcYxD+S!w] +;Ҭ9pkH憝,毄E[F;o项<JeQ=z.XLE8gt{ͰI%%% h[0GR=(P_b8,}|OaCHhM>P&|ЖqYp\!4>*v}⾶VVmgT-o(!4YU'خ*~k[pV (<:\.^s.=Ɍ+D;eST?DxK%:q\/(e%8ja$ж=lLT $#;l(@л걮Έt@fFca\>\)bi1H,O牗[zp ZmgА_?DPE#3ÃR,RVx}Cm FWD^皛  ,*\\6i4y tylj e3034тjڏ%['g'w{V1Y:@=ZݳJS4a.$ &qb*Pw/BZH>SqBL%`xhτcH/|y?kw[+)$-TLcg"9]qZ%L wu?Q]{2/)NmB|bqˏ'2|a]-G1Sq0d#ޙ*! }rx+υ-QY 1}F:[7uM0Os)%Xv)j`qX.Y;\;9 ioz6~c4|3u+@H]J0~ \xsq8pBz o>OʚcjE5+{p bq +d*N1sjUC= Ū٩mX^NR^@Q\_`vlV~[})YdW ?r+~(hl@aK.|یuizzUuMMz/v+*IŔ-EG9$f  J_L-D}"J>Y#,'aDgF}8}͔Wߝ;"zq(N3tm/_xUoK$+~-d~I$)iw!LF8R  wD?¼܎Vf_A3lDJt Χta2ívdk"NYҼW؛5n*Cx /A:um0$=y pe m XZ>…>i XkhTAd,.,D)ef?P1VIAKB_8OHg6/Rb<a$Ф DS&%˫9+{P`b,3$O4 OGTzp iPhTUBg ̀ 3>#&i}eoTt+ =/v3u9#HWC|_7O|Fܮ: 3Ip5)`9 g=0CryX ⁜9"i.W(TxT'<252~ܛ;}&KkL)+(^1mE `,-:,-_C*}EU[r.vۃuY: w7"DM7|܎R'/)ARߞSvs7 GhC3,VA[$:rʎy(Dѹ>vAt' 6`5B`83ɏSn/=GCCCu.Gψ#@9 a%wwB"aU{O6=|~< k/k,JXȑ_-N h-rB, a@?䙪t[ڥIyQ1gu%3 D ^X|%--O"} bi󐐰ICx')F A {AjH nyE$R +wv! SH3n7 vא64-P" 8*&ĺ"0ДĖ xf%_hnY| '/d ӧmS"…vzRei廼,C~%vjbĥÚ0k[=2QE $)!/g/j \è=  Rfް^qtsg^!5- hЊ勄Idԭ^]'10Y8 ɮWZñ}Ԍ/H$HHQPkIW,[ *Ǔ1% !4%EuNL-oA 'Uc-:H{qVf~7ic տaҧC 4t6-I~ N~ѐdly)%ˍjo."$פ;@h7u?k#PC^T8fU:Z4&{nX\] VОmSZQ@b.TU8e ٮB(|ݏX@^Ts1 8~~B6B6 7fo ػGB]?Um8<N}G7oi = ]ko8i&ͼk|Q`jcTtĕxp],giYɘV.?><(8MvEe ggWt=;0}=:,3DvƝ ]P>w9O.Dt7*m0xAlK,(y~O5 [j-B6FGPZju:}IzߐHp!* h/l6ꬶ0`13tӲu B7T4cz$8*!v{ő. H䂪cAuy*>:dFgڿ{;iS)|)*A ͷR /˸֣KD0g.)P`ES[HoYRLj}{ _0AvLS"Iv-D`xIF[ҁEIhVX;&@<4-aU_dڿtW$I<*2PrM ƨ-q|Tm 9͚LO6y ~/&q Dk3Aa'i{HG__z?pLJdÿ@Z3YeViPvn v'tJa&J頝RĂĿ>QYm)>; )˙Voɻ,cNt!yQ3HE8B/fϏ(@sNwϏrn^7Se^\zA0-Hu}`]RrD$<_oWՠp.Wp~ݜ2!Z t[oo݅:, O't3neF} = ?; #%b^QU(DBr܈rWCԍ|0:+'/3ڝP9#q͠RNV|AL.J̟|-J}uL$t3AZ1" vW)ǶC K@ Ըa3JӊF>0^$q@o`\Y2ۧ< y<vJ=מ6h^B]Le7ڛ56ZeFLMNЗ(-\xQ*Pw6~cj P踥ly.}i m(^y)дC{TU%'S&SLqLٔ! }εQ{F{ [0+d3I/"_ g^#\4xIL vYxOa[s\$3jOQ;&H jK,ކ. Pc %>tW=ROs EqDl9Gv+"aoriwwí8+)$ʗ D>`1|D[k!=e-LALFW}wUDDydh+A6PzkbxbA?b@~] @T=(zKR˅:ɧrY/ئQȍ"[D4zB%v{pUJZuv9Cwfͣ Gh&>cVKRVza _jyAӺJnݽ%L54Vp<3-X6+%#U?m9,sTκj2kyL@1)VߘPF*=.DOhl]f7WڎU^7t# X[?/G+j 2zzֳ&f ք>A6*uaE^z fկVR7`%cIyxGO*߸^V+A_)K7[춎ijLϏ @3j{~|5Qb-8M, '-Q=*Um G&(j7<^ bQtҖNjK؁n Wڅ2"}XcX$p ,eJ.@?)S>EN'ĨsX](#_b<_!my0]k30aۦAz6,nW>1>H,Fme>kBQ%3hb֋QKKEqg]*;;gKmkjYHb Gyxq X*j~6+eZ|mp☫dL껌*Ȅ=7l Rl\yȏD7IV,{{.C%|뒲*F[VuzB4]? Kꀹe,LjgpNzlzHC~-|!tbd F ,N+9+g(s3:9¿l6!.y.+m:HjKҽ A|Sg[dK)D[Jv$|0f:x dwM㥁F h\wEM%gpOr! :C#HݲlvW L,#!LJzc5;M$#٘Q;nTyk>w0F4^*L7./^j$ۚ'*`RJZ#z]z87 kb.38 LGMOOVE3߉S^kqCBW0Sb~(~r'ی <>}UY +ɮ쭥3\ދ5){ҢDKwipf4Q5KK"XHo\Oʪcͣ[aP#SQqHy.5L*=hЅWZ`4~luI95a^{TѰ?c𔟩4/Bf'YV}{8 PYǶ7v }\U nWs9U3?]%aq0@w'Ī[g^ܩgn,}LkB0XHd6Ff_Jg6M趜?ox-jR^ּFo Ӳoyk_Gu%T 3%WK(FO͛}w&ADF[AW ] CZlO#XqwE~"8)př=t;r;M7 j9 M%=I>H1\p YoA I6l=}m5_;luc7%ɳ2LAxwaCjmA#c{y5El\80RH3x@ 7?~e8A&+X+&T*¯M[;[8J(byr8oSr~|OX ʇj>bnoԸMȍ0+: a~OύrܶF ̔g* zMI"idi$.gUr#mUOkBSPq,s[j^NMa㡕bG)-^yuKyl[;N4 %%)yFѲiMqjyEŤ>OHWv@OFB.Huɧq.QcEY;,s.((KXD8 o ?O٧m,܂WMFO4EFQ^F0$[-C:N/VG$%DZHE=ބlЈ_2An)y>mq hXqQ<ͅֆB&n[C_6= (q,.utF oK^1*p` ȴ 0QpJ O`w玂@Isa#MGŔx$Yd+9ؿҰ&lςЌ Vd-ߘ`|XX v7(g>,u1PGY?,5{k!*%֞y jz+P-Yno.EZAkAS1ܖ4V2}h3?aIj o aȋ':ݼ'(?UG#߶y. ?$`H5l"I+W)Uo+\?*!FV}1_To,a}2ꏲ7p}Nz(9g`iFcY7LY U;C*_i"8'dS2l Aq~["5BD2t7|kŭ|+i Hb @;~<ם ܆dzWq8u!uOcyGh]Jj ZORa^iI-0 >+f0WM>Ԭ$Y Í5D߉DFۃq ˎ3,r{W+蒹^|.be#t "l>H- >_[ևmz' ȯʰH(BcQ I^oE?Ǒ04b+bg]57zPBnߐfJ \4l`)n d'W˄ɿ`|<5H6&M^b9F{k?[X[\ώ h SS|A9U{~(Р{Y Fn^hԍ;SXg:c,"bV>+?PUi^vg +j~w_8{ڦ1"um a%Fҡ?X&z~?v9TVN3$%!p*ќd) 0|~ u(GskdQs,mk炒adbtԞ >tnyɓ}6P˪z(@oy/v~Z]oL3_bLOĠ܇ׯFN6TB~8Wx!QQ(nD,;&dOoV|^F/M` >y"(؛7W7,A_,oSQbOCϭ>{Ӫѩ/z T tdpw< AlwSh# h4(QZ^"Y dHr2#" S*dqoAbβGr"30l޼Mhei ˼rH֫no24@8H%*W[CDʮ4eo 57 $;3>Ie^q\[rsتZM']gr$Ƙ{]&Pd,(eTЫ-\$! &V0VK4[%ӳĐ#bMj#P7#ݺpoae;HJÖ\ Q|p$Τw+ .W:G7aaA7@yzTQN:9٠UA(._\^(: n~nX].h PjZ깦|+14gpܐ \{4yXz6j؆aʂ$Ϥ(ƺ6ă]؀bnXpLR;^x[ Sa/ Sš 39DZOۏ1Y&#'E?oMMH$i2X3(DG ~-VUOad6&g9MAXz~B_>!!g%aSn[7mT+/"%+I? ҸHROd~jY8r`w^N "/ h5@NvDվ`*- 4Nd) T!4}V^ Wkoਹ<$!{F'Z`V+vI4,_ P6nc<>zn#>a-9sկɨ x@0Ӄʈ p'3{{71q|\qѱp*ZS1'!גpr9 --@ u`%Nbσ*GXk3"_;xof"'ĕ,7Ι^tF=i"M`G|f $wT]VI8%[F-I5tp ,}&pX8/ NL oz`~4T mT >%z%5hDLޢ?kq*Uj~5'"l3)uWpc;fT)"dM'zW(?qe^>QlwEOa0pW۴!tBf5 &=R5m>ɤOHޓJKzƒv!{f{l9#0Z++IP'y'A+cdn;D&qwO4YS0209RO}#c kl/:4j]Vk@aꍞU|j#-Ia*_yM̞%J;'؈;ԑЫeMOW@P8#Md廫 n۲av2):`3W5ê$ti,P ~9Pmb6\jR>O3:xs֕G-8Dihܳ`<7'sʨ?:<2ª2htke7'$-ˮ볾#Lx|>'|Gk $10iOK[cbL#..o5NZ|%;l_!C^d&91wyqhx 05&gs$n4 Sx=;%{8cj;-"XoC-!-^Vu+V<K^y7(.](i?j`qCpL<>%S˹ ?(+j 'Jj4\.)G~(_A3|5+u^1&d k-\)p.~?-~0,Mx0VBO4D\AwBM3>*O޹0`.z7dʻ8-8=js\}N aв\"^ocCQKOZ\KDz&|k/I31ĂU$u7X;@q7m\qJi=B"^zij9?!dϕ(݋ UrY<_Q3g'quWS&tԋZsܕ^"CיBO^z/ILU5R'-:X{bvLܾ+*sUBaC؅QLӅe?>r-?LfyQ18h7_RAh|E,fm:ĉ@sWbo%OHlAD+Uf?)JY4OK4ssNtp(.ڒF?"|ŒXu7'XQ('jg<:̽3/@=C@Dg%^hyfqI91LRgYi %:gq+A>$oM&.k/^ӓlHHx ! ̅4=N2r 9Ԃ*$#Y+0*,c'+3C^eUZcmjXӺzq1A l J=dz79D m](ED6& !ZDZw %`C8=:uWcO-cm~fW''򾉷~ B`MI!֛KϐIccH'fr%Z߀Xhܯi%ѪF44LklxxqWfsj Jelrѳƽfi.aLDOY(*:&NN 8_ VcjM/`MlcN6M m|h8}b)AjXX$ɾ 3r%kĊx4+cnK?#wE4 +1o䒜z巊,e薴 l|JFD"}րc(+MITxJkw{YEgec23gˬ*rLm)2R9YR N { Y<J&+_zm|g#l?:0uI}~NZno<>U ,QJwFE78^̀ݒd0s+s{mxX[5:x.c#MM v7Y)Lr?KF`k70C*5=\}VpwԗoQZi =H gGvSOu:s#1b #΁ʻMqU ">|dizTbΝFɻ<=}τ[ԕ/3p(T6ξt$xuˑf6y  y pnL)jmShYF1ƣQ#+ 3|6wJǗpIĠ)<;-N3GxkYæܪős8Is_W#MK>GO:tɖD :NW.H4#ޝ$dиlk.AZڌqs}L I9'T5BV,rc9T7(A}g唻h¥Sߪ !Y.EXJ<\9#/_CEXnŽA49 m~MlIҗ5KoQ-*^y_R RJ5Ϧ뜳6àP܇-P>Aa񕧴7yƋpvaHz#/Zda}gQw7Y{eX3)مv^Ek>nWҮ7,^iT%D a7XbJ;hWT$%D+= ީA+]NjUP+(g1ʀs_4,cjkev .^Y*f$e u:n6 K{m#Tj oc@6Z*6  !ikl _om$gf O_P~bDBfi R6xaFBэ ^: ҤNzG[ch(B[gpj |T1ʼ ݏE]03p9(~o"'-D>r`H V)˴AMe=΅u]h9GkCpgLn OY` uXw}{` 7.aCs t%`| jMGz [J2f@u"1 t/{Ǚ;Kfq/I?Աp4y&։cJEXUN$kokfCV8m?]:bjRPeZPin?3]c̢ȗ5>зk6Wp.Ô9D4cj}o !$4X^Kbp6܅Ҟ UԼԪ!lHe/ Z!U6i0S+EdN:X,pΏl\lShHz-/ Cs պcd]n)&*PͥtIwIjX-|4Eߖ,li Vh#볂% NdY/q_)8{kR&sd)fI2+a} Dxj&dP̮"T;L!RCi2KQ ^e*u!tʊ z9zStylйs 'GABئ]:'%:MR%YpA1fjYJ c۠%"u4~ְHmxIDw~>Ag%hU!>|ljY%bʉ}QA53&6PaAۣf[N]+Ks#57Cq I~,`NLimnOA Eȿl80SߋGAe|ܑ>/>Pk,_/ >6F[F}y{ }djz5p&ݿN1}fbv,.gxs?]FT +ojHs sD4jJR.gUk1uS EGv?xyO)g̸$˦}Stܷ5$}F:}>rPmOj"$ƆP>ЪWib/6uYt܇@n[/pQ)_#a' A_ZJ`ٌkܬ׋g#D0'Lٖ:Ճ 6OA݊%4ie"d꒜H3`f'5El]5LZMǐص `qr~VS.&qڟ@V ,< SDP?CHW Ƞ)eD8kC:?&φ4UMuSx^C{ݦ 8J _;Cӫu26"!~4I t CwAyc«^ydj9r68֊_bWAH5X A]U6k6bJV eL9q> [UЄq[raTR鏍no Ss(r',]4N$H*{GTRu:kto)0c/XgA@ waDenѾf`;H6`}m=@Ni`G֥ E&< aE^O@58n{#a+y* 7)%z||jA\d dn$*f*t8gsN(!)|("OV1kj0hH7h 0G_LTl٫ nG.ŚAEE4Sq0Amڱ( ;tMc]Hi8^Rt$~⪓uɑV-.E;>H}y 9d"EfL[a$Pwa3JtYxTQV>[^@LP /ъ+=d رWH b2NbnQ(֣>vRcVv^ljN^K#nUpW)mM-wBO#߿t^\{ sJÚ MR{}ߧ#%96?z}1ʈ"\:T[A~jG68[Q>1NVoRы4/dƼ$wBE}3q42Aݷ l(&kq 4 G]La&A 9CϸoNGGVEt߇{Ƿ`X)2]nCGdS~'#(k(6 qFj,F;\|Tr{20‡Pߢ|)ļ'but2(%_i5nz4E=,E'h㗤:HM9bjƫ̯n,)zȞ`P7۾OmͺpJ Pqm2_m)$|Ac TvƍNOP+e!KՌ/sC>W|3܋؃.VociKُouX#ovo1"|Y .@D^NzsYdmo{}Ά=8.QV# u븎?(eq*26#jWK9n0n-#AfQ pRWS'""һF?yRyq 8S1B qkT4_PX(TU }>Zy7A.Juw@^ #&jUZوxFW\S1)}ATcy&B?>2VtV婪<`\2NrFa9<+I:%z 7;G7-`ȄC0Mn[Bc;GG(qo_Ѳgfe .\#N4kWm']s9:t~7A>XxK8LVygŃ^+h% r{NqKqM^Ww~:/Xb4' fLxBҬN*w?.lO"b!;a-ؘ,UfE;ֺyω]ɨ s.ZGQ0umFPkOV60ayg/MEʺwT59S^ucFs ǵ4DS-{nj{fiwBHѮ:r#2Puh>gxg=4Nq@w&p򆮕gpy*tEe/ i5qxurQ"d_rǂKA?!At\Хێ D a%hYp5J;xpfnVȑ`{5/]yo B®q u|cHZmCWD8lxX,߉?[oK/,DXΙԽ=VXGMG-hR17(ّ+FaxӠP)^jp\BN!dҥ.v!Ңs >?C?AZ':>;j١2wʔƩ$9 '؜c(j'9ӡ3;~tZe å8>> {5I5_[x2 8qӳKux4D.Sې| pe oχ~pAzRh?nGBI/a-a3Ab{^W>hǓJUn6U]j`npq=-Qm\Kw8j\) ?l=6XOXh Zvd3$m2zU*3mGh9A%G(޳mk_:UoeM63Z)+~L>7j[}1!fŒn`7T[}n{>y\㒥OV;KԲx:B* DP'*ձ~vT&8bv$|Rr!z$agO3(* &}UYX>*` 9Ttw81pO?iXWjV򱟚`H.T,mT@]!wל9 s%9j͇PBl=p$OTtfiǞ !6dq]X˿1Qej7{(W:tcQ noGh $Topl_q'U䝙?. }IŪj,p'R4N '}51|&/Z_[20!t?G{W$ZLl_]S䣝=񨊫9֛Zz[n}NL>" ֻ[Ӈ.WwƺW 9;;_Q#+ @?7WbViA!GgEHؠ DN,+X*s&e#.Vg25Ba vMW:0F@_!5T3,р X 6PJ>US%Ǧ~I0(4(([w# IϠ炃)ut 9ô0׳T#>M51u=[qYHĕ~T`,, QK ؄zLwh996bi!^/25?@x|Ibi^$NEr L)#8|לP Tg/t(+K|^^ŸQGNPpeǭUWt3j4撸jϣzdq96.@Jf@YG׵?n:* )J\dr{:&lyJ0U5#`PwAتXx`X ;; n:Ƕ\iqbF -Ih)R([W`i8P3xq s<=|71&2_=uXDax#zol8Li=Cކ`EH1= 1H[p3fTu vOŨ#Q#& _ Cbs=X"!l[D gdt8-іdo7E\vr5VZ##<~:S`kB8M6OUQs! yQu ?"D)H屐qǯ@Gj1b$QtQHdgA<%E}0&HBox bXBA=Y05izVr eY޻IN/P9F1,6)f6˘$kI_j6dh!ÅW kl#3"y3]ulF/ pstxJc,˴OꪎԹ7(*SN>I/etHducņYc58iiAϡ櫾7wm%Xn f ;*Z|@ڼE *j(g ڨ Ӓo+!Y% s Y)?˶ KNlWf{Q-^1c.nR9@%}IJPKfH!j_a 7qJ[sD!eb[n;Kɭ.ɕh, ӻ t7 )Y%s{}:D:*LHG?s%AS rm])_=#&f€ *5H~k ]]4J8G[L#Q߮rUsE >=t'C072!NnTxhMy3%Xs`ڊbK8USȀ@=2c4{|Ptp)i1k/Ym#MbHOSuttazd>{, "D푅zmc4qF&vKV @*_ǜ3_ qq$x넴cb'@ Dtn9``BZ߃"i*.FAa:씒uְl4k|K= h2~ CA#:;W7yM*3*~}2{?W JՆ~dPHbUEٜ<=.5 u0%o*dMQ#wݥ T]~BhLtBWjY*7ǒb<؇,ZQPt=)=w.pD!9݇%dk2> Iq@j\qs_Rq"Nbb\I"iS}8ZE!e!&@щezBW~ >f"=<jsJ1'p.Ku>1֠$n[]Fs%ZE/yf}\SRWqp(jүs 7 qi1l*Μ ͚vYf7yT.Gvf=UL#4Y_.E;H@>ydy]/ rvGrU"(Jf=5G]Nh:D%PO!?R:>% .?,cv'єHs'!EdE4QE:B6:zsL#vX ISUcOWm~h9,7-E%ØYӭd\ߏH31 :*g#2ȵ\5ljZm_Y եOk./Vu4!¢mi{ 5aK%P/ #Q8d B~4':X" %KXbzR\9g;SiWON#nu^ {gU1qf Ʈ|SX$Dq嗺#@%fgw6JVp=m&FK])ӳ!ATIr$MS'P(kJ?'Jl^mJ8 {12*U*,^FCGh61DZi%>Tuj>ņ*;STbŐIRs"el D H%6*- ~3S%@~w!t>NKh\6˙+ͳ giRn.p*OcFuKIdmRVP=ٽb&9zn` ]͞_M{a,gM;4P_WE>mijhua葦+tv㟏.&~z6#(嗑у<97Yx=K^e'nSJ{'¡7g7N4`ULCJFS}Z׉r!./Rjy-3 +DeHwA[Ggaep2wI֎!ZA'PDڛeIxf>=+-{oS75.s%ОgZ)եP>ט(@\3ШBu=0S /&U_[[ǣr .FQ  &p9F?db+fq΢m4%<`҂r֐pSQ<`o|ID`6fwN2/yZ<C*\<5gLS̥ /F[d_:TV jUhZ_fB?Ǟ@ۜOم@F"~zC\ ۥ Nșo\82,t-UuK4ߢ'lԞ#k+iz!FkfX(}U9 Qp=C4UTq*@g1o_4?FYŚo:ރ <#qa&?֦!`jI{Ύ\-1eDZ]h2NznJ?j39p_e:{fOGݽܰab@Ô$i?57FV$O9~X{g&Hxz!tz.q4@x!lLCkjXס- V ‘QZv6~C!|4.FiŴ"2.*EO5oҗw) %0yA{/~"0۷ON,|xzx;'/뜢U4.qbjX=:uхm+JbLnfw/v'v ҷ%G3uQ%N0)e T]kZ-6V'KIf┟LۧOȉЂgOW:p0m,11<`JWDU*@J uAQLϪXhe/v B.nSڪD{SvO^UmPf!3љzbbVaAz[Yγ2EuYk/.egCQs3BW0 5QoyF!n62+$oZ44ٸob}im:~+QA(cvqDJ=謯 h:4pU06S"xR*Π)QS`Yƀu=fv'QE}_Q^k=Z5GW02HCyǡ%&b Z8Bwm:W^7ͅX+W"͊̊2 ]V;"p$&\H6;Pu(Es`_ay n5CTp$)JV(Ͼz_|Z[ l *X4 +6C3jVS^Y'UW+oǚDN^ x̮X d-DKESb=mآJy#V S1J*㱔~NȔ 0H5aCWV{{< w0_^F&5@,.3?Vګh=Tz ~$95`?C|1tQ"_VMMBIYa uMXDvj mRbU*[j[m5<*Ie9 T˺::O߭֍2^uܜ aT;~d9W ZH&_ '܄dgw5mTֿ'E>ʆ/Dj\'bHz_0@-YhB{_e^41Ycpn<*y 0dHvޠ:A-r$4Hv#-;m w!i`Xه.nK }o<!dcS _~^:AԿ'R e}, xz8yI2Wz1ˏKeR8 {nP7]; 6bwR2w35+;g@˓ +e!~Sy#$ӯ}\sa#*dWMELRBhV@fI2 e25z<逹iWM4 9 gd/ZQ+JA{ECt:BCM)IH;إ3jb =Pu>o1n笥1 'NJ gڵu5PjIGn 2;'/";cpY/oCxқ e0Q4XCЧK*l}#WDڨ*Gz}fȫ̏x">O/pvVӷ?ny3NϨa1Fa #A6\3CGl4E9Mh]W x ,&SNqI|4bν f"IjZ.L1gDC v #x#n"}uܟ߽?\tiCbQK:xm;te|6guE\DXQ dB(]eM_7[`PLNC,#c.~ `o3v%f+~ҦNz,~o,cb1 a[CLl*$6w:jO[!4H@)8*"syD1k牵=~v <(;|7Frɰc4n?_}.tQ*lNJ͚9dP=׽ӖGCoD12J&KtUm_(і"G' lE-|@_>r-~9_']i#N-5{C@+9E<AY FxyRc]4 7{xSmT܏a$ky_4³)b2Juڗ@i *w~^pZUF{ '4OddAs01|9t p'jh|l&23b}uoL#ai૷ͤY4Os fw1-aڐ`<53R8ƃP]?0Ual~vԧ~Take]} z8z4~X:B)h+KF$MRF|{lh$%ny·O XX:zg_ ,`s{Cb`b̼6_e6^ b6NMJOT247/tqT% <FXE`i!`cAV_hkǸ?dtcaf7o~mxUO^W [Sazh?Ξ)[-!_hgDfL}dzW+{|>ꅀ3\t|vj+#N~keX! /ȭD^nߕ.ꏫ?*`Rh7RNJH!%/6mAk-aRGpAuVlQӾ`dK(1$}adM5=ne(% ꍱYHtҊ0gէI+#rBZ]-k]$ X6/LWV.PR=@Uw;*{J#5aW-l$uWbU2qv-5\jɐ#krJA? 1K y3b]]eV)zrKCE=[C \\Uan.kʿ@/4Xjm[Mhu~5aw kIB\[k-p&H)O"QD.y3^ NUڎf'RLKw 8&M@瑬>Ψ^z*u{i'Svk~ye8AǍLk\}.[e>Rhژle-XTsHMZXcnc};դDΙ}B_^ض:Ǣ= #ũl9t4W\(F X'eh0#{3'%:`wUo~o[hS(~/?2>iOЍݨ$')A5f|_!bV8qEn?,R~瘝 Af5>iVq*3*Qe9 Z,ѓ-ΛIaPeA%[@%[re~'(<~|LqM:zew#g DZi[^ ܝw;@MG_> zjA!F(xG@X(87'L@%;Iv{P[l`G2A ?3;'ٚff.0\`[b߫)4ǶaWtaϱڸ0 fCmw3Mf&G~yd%dݐ̮MU8Q!cݘ6dom滀Û^Y+GK& @*kA~魺c صV#h}VW(\R"uh~m ҵ;W?MD m#s)0RBIy}"kZU1msX {s~r*Dj 螭 ڠ+ uz6yç[OQZLç n%/FzsW!9\ 1|Vt( Vbk5]9T|Agnx7E@lgEo>uӂvh@O44MŚ3 nl loh`dq3f07'˩~?s_(b:\B awGN$͕ ^r[-VKe4.ŧj*׃`,G5k_E<\-S Lu_]B)K΋gdmy4 lʯ'^#tb*W-VC;dxjdE="Z5TTA:+@g|Yj;2u* n `<~ &!:w2^*ޥb˩k0/͙|x wJx݃/ibgwsPmɝ,{p{+2,~uVuP`yÈa31h%=65Ӗo[l16K7;9sM^/ ӷI:KKp|H֙0] Lʵ\*qOܟy>N:EES*1-2PF/TԪR.(0TqOg! ,FtgH~Om$BBcl"GC}+98ݯՂʂ}{ZZ]x"QP+dWEs.F96Gַ6)ncPebq/o ʬt63S mCq`x9ҵҞ6vwFYXァQpoIf (P+NU$}-w|i-s I=-Q($jޏc(&)7fR }m<3X\4-+WCGlA!EI|֗8Z)``QM ;#us`JB&ǣo*&]x-&a/C8i!OSxC)\02!i/*D}U3U"VZ?A!)74Sn \pĝa,1)0p@U3yR۔WE#Pć ҳEwQ>xUʤ55V i5|GSۄդ2-V_$?/EIu,1>3/Z+Oaވ]{C<ҖZ #~2~ü{w'ԨXZjqd|̶8P2t 6_⢁&TeE2* G]_.p'AoԌx!1_$OT%f%B" `fOi|}n):p8 lE]NfS]A}9-`@ޢ^e#*CQ| EUeucY:S<{Iѻ~WsX7XQcTȥï4/K1C#Z&EUE.l .%CR;1=Or^X"}2nQ]ݲ ZҤY=C4qB$&.m*](OR(&6EE1Ώm=pWʩ:3FhH^ALEZHib}6HpJR3܄.y}>fZY,Ievщ;tS}$Oz04o aqVH\Uxr(8-+8iSӶw_CQK&⑙]{Y:.Q8|0TSq'zjq[`B}F@(ƀG#BVOmLWHO%M)L o ;G^~KXAJ`Y*΢T5ATZhk{ Vf_:N`Mfm18ȉjV?n1F@nA~o #XmO5B͐=~9sOւ!MCOW[6 Ċu J~&`3 ^zI-wqi`X $SxE6vY<#tl҆V$Nbf(xjn 'F4uı،ܕ(iKV3dÙ]0#"f@Z\Fu_Z&T`!! M7GjnJ!Ὼ8N-I ة 6GAB4lFUleDim"k b=?d:,@RU8R@Qjˬ,"񰱈AMK<=1H!)π 5nR_=>x׆mU<")Ɯ"6?cX ϗ͹xqЯXiPCn)y eB|мr\ܼh-|~慚"_nFf~Uh ~R Ͻ@g߼1CIvSyj)Z|γ?RY(l :x;1YۤV OhAO eZxc^W~@I{^ٟ@tAǶez:tÎ}NbQ|n|(qv)S)3T2ԝZ$8;1`D:w" y]6rOtҶ3kSoxD(Bُ\C;\E .i6oM>JZaՈlll +-*{G>X*)\͌k ]µ巂4W4U\jr矰Jiї f{_cұljrIy=:EAQzٳl%m`J8dL[l6˶ mlP%._hzlrAt6k,u㺣SHt\?^y0ֈnWc5ia0:hx}׿&J«KQ(0W%;B!T@+hhԔ0lz*Aϔa_ UCvv,nOV$|5M6{OF8Nی|}"o/+V^w_R\JrzYرRץP ްyBV0|V)o,uRE<;_΄4]& .J&Ү|;?k}߉u~!T- ȉ̿bc̷ywFԖ{6O܅fY(UB~Dk 䁜4"21:C`QcֶRZE~5z~NeT &?pd;LNQ?:g'^3E j?2V9xfFd3T|_ X6Fˇ`~z0>`8]u$`/'@_%X=G<*gz./N (un= <ؑWGK O@@`9prok$/4>{)ËzNAqL̏x$gv[dk2*rgЄm,&@2yƜB^WgON#1>8H^5$Gث JgDs b ەͶG?nDy18R$Q\R[Rs6ZlHϯyW@M,=:iI5Z;fY2zj#Rے}lQC=}grM@?uQJ;VkIo2AJ_R{!Y 0@WRg9Dc汳48a6\g>fCQÓ*2D* cU=2'=BczP{:l ntkN4X^̻lt+hY&b6ch6u]sOZ7e]?:i̶tEV[KiT|!'t\_m0ŏ(Qf^uهǕ5GAu (1r']?w  &AG9S{^ dúeC؍T*$ﭲX:qI<LSFN{/OE`E£w4[^Ӷ_=7Ѩ<x]قcu 1N.!-("#1>OA_pGwZ(ЗԪ 53Ze4H KfW_^/dԴΚF끦ٿ Y pMGt&t 5^I^-*+&!wValh4.︸I4R hiiu?Quu!ȀȬnϝVD--\QFBqDyIˁ,Dg^DŽz+Z8|#y%E̓*VyuoN__k y#תj`e1%<-'N '&~FKxr?#³ g$wޞ[+/]K5Ʌ -7JL}O]va_Nѱ9J8DRVǺܟwU=OvoӪAo&KfTJ l秩*.4or/Li"Q۵odiFp5Y"rkƮ~mkイ3Icb2W<n5""ʶUKBaprmMz oe($Sr_>ucxZ'z>MX))/3k"Zv_#5 ہ|3cW:%9#Y!Ѥy 5~}`3ѫ98#H˞␤[-z{e&xd+g#<~J{IE斤rC\dlz+<_GpkW{!{")'yPlP.GO;wn6nZb>l9mXnnAGR%+/YSٚ- $!ë82YlaՃ_TS=xEA#jlj蘺Dф8ʼnPOY={ H*o$ F%X(!׶ S@A|1,~dgV4\M $K FxMg㋳EvJr@pGxT [@sC5><A+4\CUV?*?9f~+9)u;GGZgKGroR h cW7B]fz=Ea\BM'|miO*5)yaܴ'bl4I_ۇI@;/sDBar(`J&L(CIYm)F)QRf,aQ>57mjE}6=0j<2;^2v{YpAB+{nE4鈺O_?. ,q.)_Y:>|:}\={_QWYWΝ%ٞސ5+uV O UZ<nJ兏[ӭ@ՓއV 9J$yϦ xB:$#FV7!yiA-Enk4|HэkfnO]ȣu$قȗsBo?+pIHI9>Su"A66 ܊~p84ZI"~Ml V,8Ew >6 (1'fQd{rRQOI`-0k*‡lQ}~q vRRg/LX+d؍})MPvKx981Û>PWcZT,GE u"n7+<Dy:O6Fqk2hNEg hZɒ4<T|nyKfЅ8Ug߽d2XV') ` Lx;f۵a%HOh~-˜\h$,y|Ov~FǨ݋#Pß-i0Au6/W-Ph\7S΅j["'jǏΦ&]]4<6v7ӿpP8͢k1Fӭ "$3J]:{/4> u!E&6R/3~{E:rgO|r#k<\uqr9< UTg@.W0` ~d,^`]Dհ3JL:IO{o̧Yu7@<ʢFr`k l5hfx.eD!g]uC8|w>D_S_Wa3C j-4S+BQkNfZm\[hAEg{U:0JgTU2C1^g9pM6;"4f9 e+D ۰7Go Z(^PO2yf>2ٶ<Or`W+1C7 Jemv2G։r),#8oXt>/~En]H)zN)SPg24PcdZ`vSoI' /I,G;c esW/ͩǴ{ 'lE QAV[HXXe I`J([0M" h {\Wxhe|g9T] wWg%ֶDvb)DHȓVHaAAUzo{iY}  sk@wPM.Dy-h$_7|puLUhL@pk<͕61{8 UeFŨlQhAl ,`mI枻"P &i5cŤ;Z}^tH\Ob/hgx Zq5+nH&Kh#]2 ]h}ׂUEԮ:eW${_q 98<=vwv>{~ll(wphw1k0-ODRa:fnJe҉LۏĐːBy~`[ѣP&뒻TfdBkbrQuyCIi3{~0Ȣ'7wp'_D:m:Jis>KPK$:*n,{qZ$BU෥;4|~DI̩֖$suxYx3%= ߅>:}Dcz||Io]l )/ޢ8{sozhO6>B[!HGA+6:aư`;>zv8vz=\#)GЦhDXƋrS* tqlOp*u}NC zFXI1;?څfq`H. v(I,X7z,E=~&1hTr^z63&H)MϓiaZ4k:ߝNP)͵}E3 ~< $SrUmғZLh@8DLG4#DlGb;DWkn o*W4kͤF[y!r#cJ si'Ȩ#Xel9?β Au%!9y:!`nI ZHA `qC>ER6o@HֻffX<;CL)dnI',Ul@o+zӸ ceל졳d]}?z .cY}qjiM%ce#qYn"VtB2xKIs Xq0iAYg4ׁ쎹ݣDVNadsL0h6h2L(koPwGTv4Նozrk1j F*ʽ@s] n}AhG+IAʊF DCs~.xmqFK GhInU"'y %ױYq3L.&iSؔ T);JW4usKQG|<+ 0Sע0`i@%|ԣϻucǠ'JA#@e_NIA3qV_ΗpQER{&m3sF(yVB)lFM+U]6}MUf+dHBb6b"yY_jm=4gv-4j opx5.4 S <19'O0k'j0ynK䬩mmk+֥6;T^s~GW+<į>Ӧmc1`N}*D*}M!)x0S}A>X6PBL5Yw]+21FkbNWv9t]š>ՠጔ)EU?,},>q O[B|CfB[v =S΢^-`7)%16FAB+k ;IJ3,N/,Uwg։f4՞Y3n F1 1gήee 5g'x|IiXuµ4Pi-ty爮&\[h7PIg@BcN4HKŽ9bWm#R>7$)4X_ƸS轷IKNm\эŮo>8M V[c:,Z<|)8c^6H׿MH)Q~<{ȀGgGcCɨ˒EN?XAp_3Nw( tj&x^^CKɊf7B<1dϮy'9jEc7qA~ysJF ps'kf ZmTS:rM31_wJ g*nob<,u h?ɞ5']܋ߖ%\ȁb%(QL*~v?}9  o,\**^_H\"WJSe&/ %?ÿՏzQzXpx`e_ H _obO+{b2fP S&-TtS$MEGG|K87S ȭW'l/G;w;0-FtJxQZ;Uʅw]zRdgm &>: 5:q~=g"hĖN3kP:!'׋eUM(NzQI )͓*.00{U3%VSb4' N5/a9q,; /ȏs"tR/s]/܄z]A˝ynX%'(b6vEHb2XJ.a/9*={q9l>:Yl Ne=}(iE!;AeluE0ɪ>ڷ3 2ȅtL FNߵͪܙD% )]r MIUӃPb?=W`__,Q~,`v9v\7r[/ItE>˖WIN]kàXi)>s( 93@ |o"VD"*s L"tHSHᘩ1mFY( ^Į/m羥.!sFڰ {Akzg uD5aEX'"Yq@1;/# " s?bwʫ-s2Tb<:nD7?@LI<=.u704px*} Y[)(ƹ4I!];Ii (T"jRwRV \h>*䡸N^ը\s>0{#$RPLf,ը@h膖V $+wiJ2_OUG\Fٗ|Α$Lks)* H7\ϬH_k~9{5۫a>A.;:aq|/ K2H ܢ-Y~LeFT@FrX6gkY9\Eק]~@+7_ X JO.3j1&iA]k@Qɳ3wEٍct<6xY!ds3De"2x= *胁y"?Mus ]_k$0Ւ4@dir@ʌ6_7EN;4zV-{Fõc?uDoN貭Uսr|g o{Lij&Kx& 2Jr-hc vEFVhbGm\^KmE O޶[6U`!|6'| 8K9 ɔzYs,n}-7d8(jA?bܻD6X F+ 0r(eWe.08b^=ao:zFnit`@CkQZQ' | |´1jnS R>8`yE/w( A`6\qn eyyDvRY/]K6+=Qe]= &/)яd&(45"|o.*U5ɉmEQR/ot8[ޙYnMtKxj!ɣr 0YRCy%$H [jV"J˩WWRq|AB␩`96M5n##T{YrEWGַN<3x/b٧ݍs(`0!xmEMn{q+#జ)ŏ.}mx]q k51ͽXhTaMW&IĎE PȇKծ]]%F~~Pn ~Ta GA `vʊ4>Z3jd@cDCw#Ա̰/ ʃɇE'{m^-YX[%*Hɽd)}M(&OWmUgՆH[ן >WS#5XUr6OHBl3O u~h #  *r\e.uY1m^X/=FzO~dL4_blm>ex;6WkG!a&nkzȹxb%E Ag3ĥ3m$@F<┩8'pYqT8H*k*i4|ЌE9..x @asa9I63t"OR6~J.dīTϒ[yY>ZHvJ_A~5ɪ=it@!B"#=arQSLqV<fLeiޗy޼Du pi{Ef}fyBRAN~[u+EB"|:FaFy'O\pQEINb*޹/C,zg:d]Us;\ITVCVA6UkEVM4[1b|Kai"K&|hO^uJLe]5#])u`3ՠϛDKK@_'IȔ|bYz؝`~ͧۀdϪl`1VEǔC 藋uG@E*[Аt5V.X/( yy*%GZ,6Qi2j6ʗ.0J8 Ebߗ*M/NlKl%.ל;Ւ6Z֨kaG ^.%FM>olI^ml/]h5A7AعJ |{~q,o>$glj1ڒz˘1ZQEo9<:}x5( -@פ) XGr SĽORH}H 5T.'Ԭ`LoWVV$ Fc_jOw#Wฉz}F.AatA *Z9BV˩(LBߛ\A0/J"b6zҍy{k[, i^ dC<# h/}+7E\ion>Ϗ|k} %` i??~ CZ"loܓ'ȉHkKHfvͼpe;JI06PHpSP q[#WTC絼}v"O%pwh$T`a_KbPA^b^1 (#4t- ٳStI{7~S->a sx˦>{JGC$^eY%- g0p,mP0% wLK|'}qv!*>]q(qBD* ^B'U!,ե͏<{ g7t$T<k}ʽe-.o8P²蕷`K2*;j= 96xT'Z=܆-$hP_f߾ևK2xwX='2O±&@T(,eo_b RDnlXF+~1\UBЋ[ƚ%J0g.W[h'0mob8$ʭT *~9;f#҆.nrM9&m .a"0_ARn //Q}|'*eA̛6!T\](*piY:3.)v[{l\DQ^(9 %19ɩYgq|AMJ8Ap 4 fu\\@NϔJ#=%#&l!װW[@ϸ&orCPWeο4:<. / UUS2z=fG7ehȼ;uY~_ ~R sB2p )i,f lxJ9LRihx)t}}4f]_ o  koVSϊpMrSῷ:WHHĢ/}v<7A6GNrpIᣤߵbGZqw^g+}Aħy4o˛k:a*E9@=n * ITq+ k GLixM)NATEo3|&~墵wA hy㚋PEb#T+~Lw1Qh~ ?O)YBG4j(t"xܕ<&y}jn!ɾT*by# yTsSRFqٖu+m'(Vqgr^CװF B$${=A OxS׽?[4x IA$94PGB~Cf:?4=ώM^ [lJq؏8p+t q/}yebB Y(`|Y!Ag9huyܳ&~QќAqFE_:]8{+QTQ)]nCm ݒ3'9MMB^e21PMʀ&_|!:%{1Lcxuy(\MKBb'0$OR/4O!g*[xvLFuԒؓ@;OGAZ;}I#BQ-$; zI_x#q9ەUFhPʡy39'J'ލ D=t5.fkgKs1͙0ã̞#X#C̑T/֊߿ھO7_x#q7.QK4*;k?G#*А z˴x*xOo=%ׂ͍x!xڌKlK&ymtK1b5y[qrZka7K|MT@Z=Mfl JyiLhbͯ*,y7kT{_NB6%ߊ l:ugXv&.czT ܴu`Bsi vEE:>$&k.i$tFI Xx2=!faņ `,~*P phV93q;t̀|{iе\Uz֙H` v7cflק͖1n(IZ{^hL-)-NXJ:tP&?d%w(-ĸe+^%ؿ~jJ:,_|)mhra &A GpҮ|0/^Qs-aH]YiV$#B]ՁΤaRTK/ 6ʏ\T?glZ)yU(8$i9~7sZM9tW×Tzn_N.aIbr(`IY32 L->PwH{%IoXmcנM?>R}LiD^gѓ5){eEL噢\U$HujkBWi.#2- GvE1\(_1߭y˟ցP [`&dŲPA@AkFy#xsQg"C9Bؓҫ#jzu-@B,LW Wl-1+W EYT<npd+4pkT6"nn茗{S4A53 a7Z+OvpP~ Ko"O˥F2{= SQ~qżZ :%Kϳ( \m}*}8_>KYʔ6]4RZS6_u̗9v95_LP9G\I6i h} L}"&K.1d.X ٠IXE,ey)G Φ)U$N}ّoi[ӗך:(nw=pBf?dD&wH dϿ?O!ιdžr{-ډSnJWp1Ň > u:ȼ-T Wx"?9T ڣ?Ołze;H ԏsU#I) EWEFEjysFJ}dy=0s/}!!H)0M(ʍ'Yq@( 4AU@q{@B =.hq%!X=Tm?O0`T C,Ү78"  \Lt\i(g8RxP]~ {ZzRGO!rjL= x" ڙnjQA>eF O@p}]b꺲ͱfozȍ1t!Hw{ObЭ6*߆^yH@54`q|~)?]Ҭs}<:8IH !": cS0cMz}yvR4Y`.Z^%!NnƐ$'8) 2RA=__^ct+tm\ ~!^D^ۉ6Zr ε)i'_MjiXA@R*DŽUY:/#?F]0?" +[PN=c}3"ْ( 5@x? ++  QuVM?6{ MFS*NZ9ᑾ8Xm +S ?yF$] mb{<e:9D)y\U3gš 풀-ȚVBHmhjT9ߟd4{fd1T8cK0Bz,jY4HItrxLhʃT֨`jIzn/GFľDP ^x~?*6%g޸Ako^*3/*O_IoݺG\b,sP8SkwvaԎ-1iEUWWJi{ø#jI]m[CTo~3E\GBp@K_c6Ax))T%Lӆhl^ƬHգLw{,l t'Ì$gx X;'^1ӹ/XpQ%+T-)vX ´tū;#a%zB 6!\<і"ATIEP`m1-QQ0DZZXGqe nxC2u|$ SE( ':;!gL^[7 ?+ʪW<S)$ EO(E3N:oK M`ٯ0?NPNq;><{t_}M]fٖ#Rq.L Qp{W@H~ةLM$yT$tG$P0h;e0[{$5;G9=&S'[ O'|ʄ`tj]6HWjiHdTbI`>2f~>6Ӹ u2yJSN>f;a06dO_ iݔ> +Il>Mb f^%c HO7A؞x(#f \'!MۜFL3hr_ON|_8C$#N4׍}^ 0/c&styd0Vz{DIu> 3^ί1w$sև;Ò?o~unz9=0{8hm_·H| IHV."۱,Wv[[ߡ *41~9L-A_$GlzC4|=$7:to´X)K) }#qi!}4WxYIANO}T)ស$@iKax O :9=Sl ZAn5v "U跄B86hݦHh9XC6!yw4!;`7w}hatGn-8^wi5\N˜ /ocGu4[եje Ӌ0a #p_+! +LhĶGMvf.!;/ܰmU+d;' T%u ^IF4a\ëEjDQ -|KR*8zOe([|v8 ycmWwxh |Dcm8ц,w]DiɼR>{ODL 쵮hn-aa[sHvR}S :KaLO_YD'9 B[d`2{%;}S^l P ჶ%#Nޥ \W`@Xl42w~bf7u>tB+􄫅,k6r˩4>Pd=vs^KT/U*KJ\S2Wc 6Zf~ 9Pk9W\Un7Jmk$MvDuS9h^c=-n&/3HUJ @W ͕A$V`AYcn\ Mǹ.&sɅTH3:-{Q3bcEqUgsU.rݲmeC*QJJrIv 2K3RKo GCqqEWzǭ>.j׻Nl|_q90y29k'L7NPLt;üƆf9x?b9 UHGF^YL扡\3"g̺HVO4}̢\cC'ĕCpO YUE Z0^NH):+Jh^a[@oROԏ~Av<ס&p22;Ǚ~"#]̙E`y#|m];$y@A"XqJUE U_ 0a8@߼}X8x@̑yMMJF6Ļj.('c8}B1R!s-& P^QG*0 }GkE+\V?-ı^##&cC1*(d MxH2yi;0U$?F "C4?ŭJ n1fC>>(q4$r,WC?@+^vHRH2]&lU^C$)jY;؊_;"]yf*AM49c6Ύ\[qJěkTZV%S%kToAWLޑg>[&#'&r7D]FEVWgZRoUxتrS7Q1C^!]st@g@K{pMX WbF3*3vP\6JlfԔF-ǥ!2# f/A(~P{#r NZMwAo׭<o1n9l6KQЎv֔;9{hN#ͣ? V輦{}P'vmY{'!5kZ8LmKѿE`_VEl鎈Eh^ p1 I&j&30ӵ|;c ȾiXt9dmQhMrC^0 }Anhy }j l,g@_%/nCiOQ<-2ho>֢6Lf"n FG~,^JεB³j2!"Y*؂4z2k (yd `>f'M!6GR`VPc$rED}WKȥm1л]wYgW^>oM.5.{]Pinafsti2Fyvt JWV0vu7?dPr$ZȑWy6EnCJ K]Wܤ({;\ |ihfq3i Ey ʢdu೉Q[0Nc^ 2I5Q RXgş21^涬!oI5q]3J20cTgv; ƈqPxQNbtE?q B%yzCC-"*URAI_լX*؈jrG?a/՝YBy ~O^uP&ikՓk)h`u?Ōr[kR;F@ѼpKTE x,{M@@΃5z׬WHPc+w&zd ])Sdn4:|O h4@Vx|+/t GE a(jo4w-g1i 0ӝ2EA +p^UJ۰k9'GW!:;+f2(Y"MhJb.uG&ɫI{^ח*o@=PY$>Cq.$;i (q5CяpI {&p0[( K+*!Wڍ25Dxp V]'ykzEq_87VR"`0 b5?ϔ6x;MA"|qZmzL [xr@a)#.OѧByl#N!{6<:$eOzqHhoiZl[d]}|ɝb[< [m mefß}ᩮ+Ŭ~Ē#[x|w_` y"~C`, +kG#F"rrq7Pff$Gj)'A]>(#Nqtp'@efhwF{V5ZR^ǔi]kO贔HQu,!͍\4aM<`ć#v/"SrE6֑VER8V]#Wb~h zn-ҡ7<0qw dLjxOԘE<ݰ rYWS.%BJ}vΚʺ(2*FI/-#Spsg{I/3pބ~@)?157||4ע=Kg(AOk3ugѪR!b@6||G} w" ƒi;Nd  9z͹qB5J:SHfϟ,>6-;FskR? Zf. %Ն{Ur*)79fD D?,K@Y4v±u"qz;A:V;CMmF9!u݋}ZL7%dV0Hswڇ{i1!S @(!n@8( @z{`q٣#m{΀E.`'xU4M; ߿Ф~떾d}_F!z/[|Kxp#`~II"X:?|u1_9Nc;T{eHpk&gf.ab}rG|,UckՉPFK NJxcUm#h W%9o0|l)oCY);RA7 Ռ4h8_?~YZBv&ծ?;֋g Z+U?-54J6iG]++ BF;*bDI= Uj RO:T Vswȉ]mځQKnu<'JLr|;MJTxnkjn)S?WFGqhw[ֶlΏ&ioVwu\@Ԫj-?;;ugb8`I}͸xǣ/xNz>iaan*>>ǰ=7@m*ۧϨ]L@#Fe|ꡰq@;r\@ Kh˱PѸ,,m B+NߵɄe GSҘG2*1Pok;OкyMnnNF׻*1GF 0D^ءX2_5uL]5׸76pX^T&2Ui.bWd{R_b"Hn6"0GơOjxM Q-_ ҈cFPmgߪQl>TJ[?G vGHDݮC\gHR<<#B[spJlvC(Ps]Q}b4x9C>d٘y1{?N@$ e,?gRLܦ+x5n,+dmnl *ӡ!.vК 5@H{`EUI߽ݬ9/uJ' %;zC( aA@yPfDǫ>kv Fh=ٲWfm` ;,FpkS|%|">qٚV-g,p`x\ϣ?" tu#ݣaP4DHtI@{SL,[آ(g*š B"&Q<-!tmϤiplu{DGX >fOlW.w iA?_e`ZSP5Iv}hE6P (7Yݱ\OVQ)G%?2HHqBs98&I5&UQA4F+[w$ɨ#d;%ÈH7C[ 1{B?`F7s!zۆ,܅. Zb0q`m&;W@d!2=8{CZgIūΦ f{>±8 嬍 $}"ZHxlz*uB@;).2@RS(b.Jv.@5qIy` 0 17z,6Tv@(KGS 8g!I(h x! !j\fnZ\v^n|1* Ib@!Y:h=: IDlte9RR 9.v!WUtc⌫d蓤8UANW}:/ɶ]v둧 yGgzVL3"ww(KFIV{XxaZ1"_!-GEKюhY vQ3x'I^ ,.@cɲ@Q,2Y8W/)Z@|pSu:YrdaLVF}TA ^lQZD^B p݁6+vX_^[i% r&s-CL59;dR pI @xJn`_uubh>ydݗOG4{TT@e{V]2s]$TY#a:pJy U]pAl>SoiR؍.rQ˲7p.iY/*!Z]ʺl#҂0@9H9Xh[( 3}a;rDI+Ufbnp0d3n ӥ$9Z69$ +?-)Xvvs@pupZ4h@hbn!(̐8Zq%S+>.HբBy+xm.k8E1:!OO:~le'7Q~Q74Pҩ+L+]ۆd[`{[`:(VC4$(%SS;P] t)W;&%X.i'okA Wj 8ve-[@hw/!\spϩ2 F%\զ&!ni茀{bW*u="="s&S\k 5ԟ\pFYR~aolv?}&T0$\ghOwzZϿ:݃n ZMHykb>P2˽X}owe" fA^).TkCU`+@5kZG=jkBü q4 5i9:2y&*u&T!t pNR;bJ>0?%{~7{0_XGܓ-Tlm>/ 5E8T9oE;P8;dEcڨ}{*" ˂vi}ak̅Z qKݤilim ^bhmU>c*HXPAy/ <ø7 F^Wd?=pz2T=uG2 ]1/u!0X0D~4&|e@jSSS/*j`U/ًYll \F~U]Jrm s|)F_/6`>CӅ~q/Ɂ _ZbUdy:dj+kԵZB/.9kt*|h߄ebYXۨ TIOSD1ë|9/?oF0>9ɘʗ}1n2 Sܗn>?l1 X\t|&;}HPEE\Fމ  E$=ڃZ[$=z 2s"VcYuz ?G\ƷqEД=>~t5a1>H͏#r gx RJ V?Lw{wG/HJoSzhϗ(iӽ y}$3AЪu!ϒ$w"7n]%q$>q1ܨ8~_3gWBe5$phժUsVâqE&5a%Av[B4Z&E,NVڒP54,B.wfb eCC^OAN*MDZ6 տL=?٤ByuՔGiGlOtwZ @:v"UBLSLb9Oj|Y9+b#%.6Q b4d︰pj ֈR;gpLt1{2fQM i/~CCuB|Sb, ׇ*ŒXdA77 +Tf-O- &|x&Qcg,oɫ" MoUyx6R"8-2=R+9@Cf5]9 g6ѫ˘$ Qc!h#zY'VQf;ϨB!%ÿoh=YXi=韣mTǑe#NR==~@ %T`#EF]bc_Y%hc4P2Nr߰;Vge8ȳ þVZ2ۖEhj/Kj.)v1[A',;GbJ,MVbVm2("btN!tׇU)Aq'N:(bwBЪ_}_nf4[j.C$pb'` x"UܒbEe6i?M`d)eBI[=&n=rFBV3IY& ׯ-%wzZ;ϛ/ۭ)]hf^"˰W?K2\>xOVR!he𿅷gd9:__=|2c'L*~ 2K7O K [,lB̓[\TU7Nqo-'YΎډ3M[,#5.V5׻Q|+)MSc&#]% W/]s2"%l;Ѷ(;W8b ilGo>3w'ۑXji؅NN *lgz1nHtq&0K~1doy=YuOa~+8Ƭh%9mP[S{K|l8 e\ЬQ$X. u @> A4pR>Fաs]ִd;#[(vQߌRyd?i ªΟSLpvU+FPMg J9 ~KH\|j%'qCcW/>'XU s}W0h YУl-Vtfl[[)Mjq|rтWc#ќ#.qsUQ hh\)/~W{-2/ɑNiZv`ړ*"^%J18H;ȪIBHEIM1X^v,h(,AsEx݋2& ͻaҁΚkfϣ\W#r#tQ B&%D2%]z-c+4 6Ʊ2ŽS Vodo`TA-.q)FpZji ^_~h9stḡuZ+fS6`wH%AnKp=ouIE>3Z5&?z1 ǫ پ?7t@Gڕ Q8U8*fMdD|3{h^dߒڝdQUrפG9`c\r.K_";C-Ϭ-H30nr<96匠زRayO_>r'-(zI\^x  3󖺔V9EMR'u]ߣZ')TagXx 3(7f9 ÆGX`LgG&|eE*{/Kk+"?ى7K:?ue%nNGB#5 a,Gf2v,9rs{᏿}Q`KjND¤6DĥtSj:8%8 cvwI7)T+ s[һ(xzM7-A)ǾIm E-F]atXz3BzrT@ỏD{ݵmqS\YJ bus`ߩ+3:ꊒ4E+YCikG'J6QiYЊx܍فcc$Cz~⤤;Ƥ~ T=O2*"eYXԎB&t]d23sAژ-ΛuY8>: ͹Nyp>DWGяX4pP'qY j羃"U,5)-a]]PJ1Cn/1Iĭj09Kuu:j/~ 7;\¬D(|ɱHtrV,*3Z"kVXQAqi`:` 6Y몿|7n^,&4"dey|万  [хLV !#tByc@Pwb]NAҷl~Ќb1j̣n_EWmCaI@ͼuʲ/ϝbz)RÊ?ܧF乛ΫgAD+3cN}bv=GnjCiB4 PYZGa+Nncpr{!M<ӳiB&4Bd[h' E]r%C[qKj[UZT) J VE¶z<+f)MZ4Jo~.IDEPW鰷ƋtAjjyyAz㨀prby !`P2brTK;Ykd(>_DРpXQi~$ƈQA :)=;N$Ye0O0݆7ϱ5suA 1.wim)|')S87!g [Χk\ÒUu17.9$#! iSlRZ[7\+ط)+a 6!aEW<a|U5|H՞HO1?h$={5pPTmrwUQDD(FuE.Z%fxE]B'SɌI5'=Tg5A#FU8@%\!>Z*U䃳ȜaȘ>,TuAzRt<:*Wʽ]ǘ*e8;Y/QЦJ#ʣ&N,#'G™Mz͸Zr0y`" 4sޚg^I&3~a &򎶀WG΍8\ S9OְyM BϋqvtlIz^yGy;HC!D݂B9شCB0w*ŐՆvhLI(IȎQO[#DȞͺ~f̞+ YX^˾tW@PX#|7'<Ʉ*šo؋T4ũݱJO6\~Q=/ٹɮJF/VYOLP4v-A<|[t&dɸY | 8^u`V!V S7g{qLX7p}%(-/>;"!tX\_lRoEԝCόzrfn _f'_֪\U^U"XCT) ˟ zrj8i񽋤 ZmJiI=06O)YV< 9w%UD6긿6  u2`ǖpNWg61mtko8ط& K=.tV#+ijZ΋FNWTR z^>ūr9^ƣ5lVcmݣ'8{Ks^ \i@xBl~3ZhŔBj%(0Cv4Eq[WL6!$w8ԮgrbWՑ^n]|tDԋ_7*D~bA R.g 4-[:_>g/[Xy Ζ;~]nBSX5S q kG(@bSyJIY6,"ös1`s4J!+0 }i>P~Tr~ džB=VB}uz22Ugޟ)T1v Sc5an%:vxn]ȓQBov d#! ~pSVrWm8ɉxd>S*m")*y(yyND 䣂}RkY?ݛH]695ֱZY25g/rXa!4C\b-o,i`-jfEwfVmhT:X,53X|>-YM262G\̺EB'> Qhɟ1DwgQUPi|;JJ2wVৎT{4bϻz`y }/q9nSUȚDsx^bq8{A=\Yh=;0s,!mC K<d'3zC=SO\Z*v~p Gj˓'c7n@]_tWt| {DJ^4E,GKks2 p݁I=|ρl+gp+*6xm)Y[F1 j%iJqDJ<m }Ụp9G8zaB68Ovt_&X5Cj#F֡`Tc*cӲُ[R§Hr1! e0fEcT$ &rO߂@ay%^a O&3KSꍧD3;:±/-F@tU[:a]VcFJ@dS+քԱRjH: PSTܹI[ ӌRblJ  R>YX)3YSQMځ W7'8uҀzHJܚ[ٸ4"Wῠ؁H&<'g jw)ic^؏/~GW5iT5ϧ=.3c5SH @ɛW u gUqciY'N3P[^K}﷙jQ CK+GTDݡ=$0|ZƦQLqF}: $Mb|P||:5n AI&3$B8C+`I1\HT~0L_XhvpM'.B5Zã]bt_BܤRsз{}Q6*Dq4u(p" ;"Y´eSv8:d';~i.gPr~˭Bx)+ ADFy&R>v-^u*owƲX(PHӝR-许cnƵ,5snY E`amE?m|vaoWZ($̩#{m0E|G0=t~>R{u1؞Xce?:!de?4j^fbN@p\7s1=#齻S(b-?bxvF~l)1Xz2%,D{tƈakS9ɴYQq:̵W;dzQV%#6GCe,fPO^31 %} lu=݂XkF+s#<7ƣg dOV/D!YAdu*/'vn"ba# yhMiV(쿬2sOCb uH ~"oqHD`:_雝:H%Q#Kd ۧbz9 }U_ 21٣K@(7|r3v9%Ɂmã@1+X""&(jظI׬cF^XY9cV./ /0% t]#np9yiifT2 7J42#Wlh}(5 ;딷zވ5=@SJ5m.;c7Z3p[BMZ3`RF@W]oi糥vM h2%9`d2qO\uzfYU${Ļ^Lph@vS Ә YC/pnAG+ro[0aEb@fJ5:VZ<> mI`HC1{QI{Aj,Xyy~#_vF\ ‚yZAn2Ύ0/K!8l`]wIWb)Ÿ{;Rphl5 ʅ{`f\zd,T ̞[hkt(wz[zZس^Mas950DCə+M[wBFJC Nl{ύ(8zcʄ>*bVg|]k{x?HjzWV.19]Y| 8Yu"QDhKk&wjq>l5,8L04Wd1hb 6K #0F(/[C||Bc ; _Kc*E"m2] q;/>+帷6,k_}Z~gszXٺtn) B! trN$_XtX=9-cCf|$jk$cf@7cB岳`,NW_qW|@HLrJ- M1TA G4$ߴ<^ 2}@щ\oWmm/dA[ro? 0@,Ȯ0A# 6:PD p|T%Tl6d[ +`4ZV[|UhC𖓓~RJth!Ӣ&^$̄*ĵ|{''ސԈTz' }06}xNuM D$ c%}vã͸D ,BG>g~vѵ?8288C.4Sƒ=f_Դ<$颧.Wl9:YMinC\jIt~Lp2jڞ3_.U{[Q]Ĥ@6S lm<4c\\b*(Kf7C y3]ê''Z +JZY"$^&= \'ʎ&=ai(\Z)L6%qCꆤ7OJï#]qj=2">P"^f( ޓ? p=Z^?ۮ]# $I;Tҕ)<^Ɂ|T:I[yq8vƼb/Fƹ$3V\ |v2 x{ݐpPrC520ȥBY;b?Ź)|JQ[ӎܱf[ o3.լX1d~|-QjC?̶}D (at_L@kKc鰡Atm(< ˜I(Ȁ[޶2^S K(v4|9 1NXxY3pCVln`̴Y9FNЍd1q z"2~wlT*p(w6_okL5oV9_(.K!&Xlu Xk;+1xW5ci}Zk>N]8k,QpJ\96u,.>Lϸ XLM$DM{XPBY@dBUph%VڞN ' WF PyzSi??Ȫv3cR+06b꾱Cc _\ JAWW5I$Ce 48(=N-5XɈLثzY0 qd0Ʉ k r#..XtH=%O%FEV#33^v9{C_Z-+2|ObNx'"G@~JAaln/Z,Nr0鶇. ] "c6 Ҿi_.:Yx=1#"B!mQ=a0 0CG"nA4:^H PVk)*Luۭ8QW]SaVh /Qd%e6Bq0 {DkN5S%EG Lc @\){}@bwv$3+ȏ #$NSNR-7fhGֹz+&w ,\s7HZ|9X5P{W䤇Q[w[f oQfm-Z‘z(tQ\ 4iԳ9\+yUczduihv3Z8TƳgxZ%:[Y#*4%L)3bԥƐ؝#%em,^*&33T֐5>eU>z{A(,͌e f@xWT/OѨ]0EAj|WQ^=75֚!#& /'Ow,p/ۊ$EAjxsAzK*KHДwswc-}kgL/9JЃ?\ݝy#g\0 %7p=?m;qv]|5sD$ڪ:5M+ZIUb= RgL<ޡ!N`c@gëAGqsc彑C, no.~ |b*7o/%osW2`W9 !90@^rm  "2[&W[9"hwL ;tټ,X;\ IŗDwK ExV-ݢP.Ir%ER~bXnN*+$KУ|t$L!*ʈXsCJh8VSވy}lc|',8oSouM!ިiX&,`aviai]=IHѦT!{srK̓=irfZ, ppb!`q'PY!Q84|ؙns"/)d[7i*x &s6MaHwltlr<ӑ+9;5:LUI[QI^m>]P#K<"v<+ r\ÇrQ0v0VpO[%ذN_*7๨9$X4zLW ɥX3c"v@J#Y6 y0>`_ -M ,уoQV/W >/:T&u5_Yd#l2&hEpysxXI=fHz0馆 y.c9j|j { O3s鎄 #ncsTJz ,po'&(oP䵧˜GJ^ܛ -?IhwȪ-l2"}དྷ9_O;dif"{F]<%+!t %̀WF^%`p2kPy.D[OFԌaz^JOW[ ؉Ԇ+wh6e!Tލ 1,J(SȎ'eV'JPK{i<G@cN_є̵EjѼ=߃5۟-1V ߱Z7%[[\,υ-h*w 2>{A-r$D;Ȝf-%%XkCoyi_;䆍ˡXf\M"zr DVΜs~Io PδEr7'{XT4nd J2 q`43}7 !+(tz6몞 b(l]IT߅5 Q6^A1 k[~e`.©JCFHT&f)aOaqXAy\''`%8#ksG44 &{!v:1F!Z:.Z!vR[7yBaQ`eĭϝJ+(7y "58Jk)/$[;.A4aD#z YW^'sW')УA h%W'妱ၲ|FT ~9ol6+Ȑ%;YRv 45&Pg_Anj|f6c!N]7]c)RYSy2ٹgs +(3qf)]*= |d e.@/nKILO.Ɍ7=9#@fXj j76}wyo foᥬ Kj#(U;x$$#:v PUXYg+Ju+2Zux  0,EnlU/A -dO$\K؄CYtxϖ>nme>]%{fA}$dzut}pk.qO7Q;8:> |+sE~2tԑvQ曦ۤ__-8&NHEG\uB F<|c׶pGc;B$")|(_P1Ԗit*|ν{ }Ah3BemN9O/bUU̓ 8;eWTҧbY1v,zH`+HQN)uJ>ɗ9W`Fx(sGmք鰿_@=I%*z@+Ÿۢ z$ i:B)6ؙOz3]5v;7aDh_cMY|, wT(*jMgtj3-zE,5ة!{Y]Ч&kںNSV&HP3MfWUȷ(MTΨ Ɛf> 7{0$n0_\ iմفv:+585zDzOT 4p~W3jiiee)̱t$9Z["ʪF RP=<.,ǗHE-jn?14xr<ݜ2midz+f_I.@a jm^P.3Iy RL5rx5*0.fWsv^ P'rYq h|%3(ОyaɐV1Ԗp1qQ-~OZsr)4 Odj0I`cC iu@B=K_ys )\0epJV>}ʛ4])t w 8N(h-4S>\8 @F5QG\^ 0!q+,̑g 9ar@g8fZ~A: Vq'|,@ hk4*-^p`ؘ+\I~<Ѣo踺TcG*V(ƵN^Z;{gc01O:iE(VS!),hM0!W~ko8Y\]5;j^8k"槟\鎓_RuY Φv3FoI2:f*DDZ5HAADARa2E`,"m'Bε g6̨oҲ[qJёg! l#p0JԌs,¦c(Q' 2rnb`]p"ÏO(؍ۥ33PRnUeA)r]]VRLS|e\}Gq3t>`9i^6"M. Fgx>)qnmdafTΟ`B~b}A3ʱ4JpՖ W9Eu[# "$:ɨ{eK+;(svv1^Ia+ }ƯАR8a4J90m8sѶ4ã,N,)(:a4}@̇N49 }X;׼Nw1%-!Wƀa,]YdE?-YM$eB}Re%V,K,QBٕ(瑍F-P?ڟ\K,@B; d;"f4|-vZA5#j"|=H 0JVy ȗU|P,)C>t-Z, X7 8Nh ,.{mbcB&}[Ź\&X21Y% MnZ&wg'nW|C +=ު.n'QV"IZ%rfy54Sa~l$r<>aK m\Ӎ孺o`)?Lo[>ʱʝ "&[E3$wn人75y?PL(W͗ی Z?fʻ: >}S1.L_fA)Oӈ`4&ag>U} t9j\Y@jûx4ha CPT<4<$ 3&D!wСTog,.F0D6GSO5ZޛSܭaJr|ˆ2.qp'FC⍥*WÀ6Q`XR΄^sݭ5Y%z2Ary*܆5Ge\߄fPKt 2b{BًV3l0|NJ}ia7cthG{EO ׂG=Ś`YVgJl4ҁNv R<1)R?w܄\e.&ŋ9黒 Į4q..IKx$iƅ$;)} d0uA& J %(NN՘b3|Məwe~(L#wN^{b#-|g8* m c%q1Wыm 9`1 5x,Ϳ}-b m4gE"]4$<]7I֟?>@{{d`?ivr =]?]ﲨgwd]4?nc~ u .&<X31ӂASDk_a0'j @pHyo?++DT+=y7otIl>V #9 8F8iVO8uLi!y$f>撩ONJs'q*fZԣ%%/N9M9ӡQBo\24NRzKBas)8j[u_ԥkcUDU95SP`)LkPC24ӕ}UXMzSɤye&mN {+k.ASe2,&/'C,(ȇ%N^ -Cw^*3:@4Ӹ7cwWL4бcnKVYxL,IC@@wa{\iP@xwYҰD^c -5ˆ8؝_f^%lN>ArҤwbBt U蔙+)嚪sDIЯh;48dDFrG{.ߩ8Nt5@_L\8kYmyz)chLζb~j`oS،{0b_W?G }U%14a)ͰR蕙u^(ac,+HI*xQ0ݧF.?ղв>FH܄{H/ENBgmOJ=3巓bTn_*JzL2[O)foiŤA0wZyeKRǻ,&Zst9K wn@ͅzCj \E4a#d@$! 4mG.'SLŧbU\2\>Ʀv5߇F~/=lf$Mf2l-jU/{m&X S?q6͐L Ë9猙hv,[o8Iy[U bfu?Q4=lg˕ZOo\tR,X⓹=Ʃ,(/.y ͝GKֈQ]]_͇'BW E7fw4 \zZ;݌!ConɒgHs{ٛ^.[ KX++(K`zXe_ը ulk2_S;Sd0g ѿ/͵q)rǙa8=2Su70{壥H{Qgo,C/m>(3f(NC)(ljj ĥݶh#q3OQ |;R}8>wiFOq F>f˼⺚I?zyj쇥2jKmGSOUO©,68`4 ^no)," Pȃx\75!9>ZLL/pixBT)PxOBć$o 8+NC+$7N/cw@`H9rX^k/Hi^8A>ٴ$&Bou#eipC.kc}smeo/pJ w [Iq< 7̓Io^CtCj^ɓP&b:H zyP@kc ,BYwN6Dt'FPq@ viWZ ~)oցĚkPbrlǝ%ƝH4tƴYj)ÞegZȚ> >v1篔t[n2~d$JlHow߉l L۾V/{fM~w=ԈSH),'PMhbGcMݲ<}ϲb6V|aJfZ1QQ*9H +^ŶbV.[H&.)@}.u-'sԔE5|Ң{p;28靅Ife@)IXC̤rbEX;~^hֻ/;%u>4!K|Y48,)7tT mdg h t&[ 9-9|b 5W>eɏxçA**RUPʪfUi>TKNb/^Bu4 {wBuܠ6ַg}DUzd5A<&QυXX9;EsP0$6k3%- 썵igTvZ@Nz"p~vuF^^犖xdPp(h'y&?^z{@4niDtSQ^Yf .> k~d~rc54Ӭ$tlsu9hp\/ ρ8 d$뱊Ixg$LgG1A.vyUVIX F}{0ժ9FN;#UXC|EK!8.EC`FdGoz(by#2QZsZ ?"/@wKʼnoT5R j?6 $JE"/ѥ:ilUSd^'@Z3gDN\n,5ɍlQo$Zȗ#2jCs "QFꛆCP +KI?At01KxvYYy)i}]ɵ(L8ewEU|L"P7/0x#I f^Fΐؖ]`~B;9 J@A-U$$B AD #Dg|@jA}%8Kq~YH|xZe=p_7bRrTUM^ c{WN>/<( =8޲tp$_A%FfǍ(xI^9%рNJ@XRDŽXMbM9QN!Eݒ-bsr2f)CBy_nL+Fp}V?[w7BLLuϢ/ȂLCy_Q"HbF|ASFzkX|6Z:|?_L Esd>Q{P,,y?&#^rp9#3\T6pwg+B"^Wi_eI A8VrEfLj#qY^H;OT<%t!r;QUiE? OVh4U k.P&VE-K hmkΣ[gi mnKQ3S#IO$ L>؀8bwxП)YCY,3*:w=W3*85.RRiNA-k V[xCW7sw_p[Y mNXS͟l -+HJ8DЫF *v3C/Չz1 uw\ `>OU`xr TgHH E[A?|cT%ɬ?7gTz˵a.m|]喖wW;03XMWWqミ΂} A#y){0zKecKL CZx$AV!";SpΓ!lL͕gx!yc>(V,x+(vm ^Rbwp ~ΐe;U.`C (]#E2gޡ a<^?^NH(ԱMs;OvZX ܳ#P VcXȴ4k$|֫|y1d&ҵBD-mƖmu͇CH%l FEښ,p&bGBfw^bGpџG{55PjF`J2?\۷@ׅǹApDH ų#.kM^*(Pqˍ}{U(a-opz(^v)2A/zoe"7dpU݉RA[5ʃ OK)`kmJm^nasx64?L|!es7T^Gk-,Ŷ HoH3܈̀I-Ԧg#[L7VVk&Œh#X3kI]<#qDhIIr@T6J?{_9M=HzoTL8c_forFC/`RqzKvt_*wvu |U!T;}A(UaNp~5lgG |LddM!/́TMtXPJS[JbR>dm7f!8ʈW UBߚQe SP>Ȟ"$sNV=6̊0T #C/ wO (4PIy$Bf6Kq ? H%E9OحB^&󁵅 7x.a6m(F) /$-ڣ3Cz5'@\K@!o;et.BH~6˫6mJ`x$Ի>س\rXc0Xm]> NxsW΂ (ܣ 41W$ Ќ'/;,P pe>yV{eOxc0+h?<WYw}R ;] ; "\|@`^=ɟ0[֯[py}x +9v?tH@؃[>De]!#w])y5S%y"Y)_ʄ[Ǻs%H>GnS*PvT){_:?DɳJNN&cP#c{FK1 =#My6Ôf`Saߡ D'Ǧeq%Oi\_Kg&7C8z-s=t3I͐bUMl#e*4fh*U7s;\Ypȇdžvgc)/t5p' *J "Mj+BVN^p@溧ʅ آ6dn⥰%.JC+D!Ynl$pVe 8k!$in+@ǬgbIx2]]2f=;\V,v,KD,J~Hu~/kE'ldLM?~Ha-Él_<}B}HڸȒXWLuDS3/$E6v5E۱ 2 ÐC9S&*U:_G>,>*~i%}ukgxXasdz<ݫM8qtz"#On.fZTH)1؋0: b%MC b7%M9&k'ʚ=F|p}zr+m(ϗۃ઎O[ɶ<3 ۍyېwq["JV0)i04xt ǥT9hfS_w4MVd3$wٳ@L.e]У8Dm5Sѻ&?I:/0U>Wznfv؇U}XZWۏ́Xgk7N@KMV}LW58'YiCel~KҤ&1Vwpi+CNQ~uqdD+-8~dMjrr1>R|jM}Hr2EӃzV^Oʞj,]ô5(cɨ28}wϐA/C혙"~Q%1UP\9_5%9U?}H['--!=AMYIO-o!MTZ"٧{=7S/(hB,CRWN";z)r'º1t_z3|ttHv}31q#+㱓{_oi%D"] qzn3ÂxȦKJAg0}7 e#/Wn{ZkhK*]rް]/uY md}{p;)8v!"d[`wM.ǸjiNfѡSWvQ;RQ>̍샌P9+.n$kn`E%Z_Nx/ƻ{N:;ؒ>`UtCc -[y(^&wR?HyhRwn .7{TX;*2@8XY2_/sa*Kt1^I]yÎJFqRؑ)jo55cE5H(ߺ5 13zIn ٔ֡Bg"eg*'ᇳ3a=~^PdpGѴ>E'*-JL7[sg*wONZWF/ƷNR~5*d94;Ǔ]a~Z X%p#P$aŮ*5ob(Lg4 0q8;s8 KcCQpW^ٶ[޸m [gZr.=SծB:&!,L 'Ls'ܼLF9 ]JćxhR:*!7(m$D%aEfVS}hBQl郮^dp_ZP{j`6>lr sMlu>iܝO&%a-h$ {ɤ $a:ЯbnIQ_+E1_Xǀg97.Akp{h6,A zqT((G 1ώ4bTcX)滷8(/.E7 'H;mZ4aVt'cg{L%/Af@!ѣ7τZ/+L!GuLN|uWHR)XnhUBj0\v=\h` 1 9 T}S}ۍWXl#џJO V7}4ﯙHT9(J6|`K)2DeYW\Ik3AW[}7pڂNRΤvJu3 gq*Sfc&;,)i//v̈YɓC?G–:gEՃN*RSЦ{Bx)9VgAh-Gb`9O?-CNœDxsQ23Ӗzuڳ3O:C5gC)JloZS϶Rɉ^q"R:&~YۿQuor˾(őGH9g3gbB t|OHKgOۢF`'K?C8%~Z~ yC OVe7<6{Pk Tq8@aS6˛ KAUܰ w*m^U:4pHNL$t!4Z8-^Jt\1MEw{Pl.z b|*Ԩ7¸kF, c{Xy@zR*clh Gw(\!?XAsc\Oug][˷˧&T :઻n' B$axbj;20Q >hc.M6oSٴV?rX ՚N0ԝ=/ElE[X -")]<;WeDʣ8绕 ՀcHH 4Pzpfp =w81W"izHs76O5j.C-Qgح4`kb {{+yIKK- bKR BBmu5?s&*aSm^Wdd+wm}Yϭ|Ʈc\; 85hґtAH.cHo/DžрVVJh~cI9Q/E ;1 >S׻&SU(XD7P(i؅π,1JoX6CGc=bhZZQ:9y但%^X2l׈Ɣb|S"L apbBITGpJU2+3~XNNDY~p&sj6a˖!)MF(nO*=:Z'A>RX nU^P_!;U K'hx &|ӽْf%Ӿ}ڒԥOl&pa Q}\L]fďnNղ6s.!/z!d0E;/= 6|N5n7,Ps( p>M6ƥQuI2fYBc)#j "0Ңrd*ȷVa}Y16:kD!"y#iVXFPT'DR $lާl4[HJb '0 w*S]tv5n7 0ʕbYzAw?+0A@X F9(%#&,Ox? :Ehn`E*)n/jdJi\'.;f($!_A8Mý)X2MA:uC]PrǵiwNyfK0[Xi7XmWyi0 ٚ1%U":ES$Xu6s-dIXe%S.Ozf"1O!ˇ. ! b DXm]P掽666:4W$SmemϕĆ8Db(G !fsp:QI-$43}6nR& eReBIxNLfETC-¹Ng3PbEigm5Ouh3dI.;-P5r `K0y75*ǩb?sJ:4dݭ* ' P);I):)0{:_O} PUiTdtV/oa#j4P]/zNyLhE} iƟ|YA5~ NO.^k좫A?F"{!'a)[CbӢ 0%8gx7 m9 rʬN='vFp"2@̝xKpV?6 ?*XKktۨ|TifbS.ЄpdCj{x5rLֈ*R?RIptIuC=\bv%9ӂhZ,meYh? 95ml-]/ohO=-X -=gfL73aR#t7oDƁt /̆D3XǷ3U(FBJ V`œ[ 'q2B QdEQ`DZ,[z?nq](ݑ` = 5UGYAҟTCM6L/%)d7fCQ׉9ĉG!LΜEŜ@ڑ7W.<w*Sy}jEkf7%oiN+$A1es)4߿BSXr4 &F$^N&&24j )kuH+k5f8g/xkDyBE#~Iغ(IIkS*U;ta߈4=:^c- W,PVLQ80,$^{C4_G%%AdXANQnvBSZC<}긝|,}Rk* I3>a.dp@!;0! T oJlzG;jڍT 9&}uiYjZmh]GJ4)GħeERu ,i|3j25* 3I^| @ Ԩ]tH/`)&|oEAQl%MkLpisdIpSTh2(soaXF- x:k> @mMA/} ]78uozlB~/YO3iU1٣,]c G4R/X%vԝX #JVǤp+6,Jj$TtJM3P,!}6zVaqUxm?-7U&@e؝V!{`Jm#|(pxlr?)$ê /cU$)kG! ~lmPb) VbVd1AFuM!=[=90 ZΪ&V:z7 y]1UBk}. MKRL| 3Feof8 BR;销aU5mר[uv0eVJ*Cdwu2+%3b+'?NU\jFMG> 2z qt #\E>f"uQhۏ4`|HUn\T0Ē?w;SjJwC5jȊp1[dhlzhAI o=F>v/&:#|x0x2 .é %uGbW).nJ ͙oC,dT/Mƿ/Mu5?ۜw iMA"DVs+2grr!f&׉TbsrQ3̇itݞ ^/XUpfSmueM>VR >kZiŊ7 T5!=MV[K:"֢;>]Øjǫ7-\GDDj\`M\6pkZ]'DšG)Ԙl~+3^CƬdƱN^j7rõ?&:6r={{6 8J."_DXKf  )UxȅSxnZZ1oIi;Q[7Op)"sOfL_70^J4^򏢩IFY5W'!Uʃ(_JWa`F>G.$dN?_:2VˤBY6\95[@'lXD0.KA:s9z|&ү1ǰN[&lD2C9m#܅$5~<=zvr;+ lxB/U۹b쐜DfD 3[ˢ" ް2`Y-Ib^n sָW0\Pڍ87T|g7*OSD*^{ZxvZ?C!pYz^Ͱ' qD~=<^h VrT=6 d|ZzMveˈyKGy<ābAB\ UCQτ2d@l~W pд\C^`tg|!d46/󇻘3'h@XtPzMʴEq!,F~"uk[%vldk;[ 6SCwD@bJlbeSg~9 @MdJ7:D h^YӉˆڂB~H)GO#/b"mTuQA.p0˺=敢!%1B,CSK}Hf#j޻vS(JV(yV'  ';N /[HsFGx䁛Qƻ9V]~Z)M1p SthG\2@u]E%Zåj%q^ Xɽ2V" 0lq_k%GK9qՊ[7fS \x:.(wQr'' M)o )~S)LkNr.k$ 220A3ZU ؕ~ a1lR H ^g+ytːzxhڏ-}R/XTx(I%(A `*м+W6IfVMŅZ^y*掄LW&Mth;b|b'PeV6Yid̗#jxk4ru󞬟{6@ Smz#V1s^/D;%pO_ rD]fP>(e}+ҬddO֧ڤ6Q(9_ݼu nϺ8!Hi6IbGW cR[]D{HY":WTD@DBbf#-0T|M= h*"Tݘ^^"h3'a&0x@``{ 9S%­3A|wCGzb\/pq09Ͳ'3m#)sqZ0(j{5RүFA?Ͳ{>_V3/}b-'8`Q4i\7$? Gomz)K3ߡ`Xo"owr,S`ܷPC .QIw:A÷ BR)'EY%iSi>>U]~\A@] G7XKǃ.(Yk(gTH/C&V5`(}v9+2VS2Q9I ` P*{P̡l$]ldƒd]b?SK2}h^z[}\fRadWnU˳:̵)^vYUҠ@PT% &5,>dOh"{$qncz#vqAܫ9M0uZ>FWu8P!QP4 3cЬ2@sMeGL|ͦ'+ʫΤn)`MԣxVyuk9}{=J5/)GLy$] W$7N֗H`N1JX2N8s šlsW.b >[2`UK}jĪ0vlCLLD/gx|c35tX9.U VhP(DF7C7m[1jIKYYƿ\HDIjBOQĤoCC.pK=j6+}z6C!djԐSG&ǩ"_-lَW^Gk>սD"7 }6L%Pc )av%kMj[?š)KИsU~ҙb%[XZFsVUYHJOV;rI7}m޹,+jKDg5f׳NNRusM l0Ij5p-PO:^ S3BkfwHooŠqc/po'ʟx"5vܾS!uX--;ű 07olޯԳ'\;.454u e~0 5U,ȧ{B&O~QwҼOehQR -NAqx oLkk:?^Q趞r-=v" {pQ7_kpq) _6. *&rcۙPDglj}~CX3*,fz/|Q_JW`͖Hmē),F}Qb9Q q@|(HGؙy'7^խwFlsHUiJ^:WDmVlN-G@DQ$:ǃo{rHB$LŅ=s#jE:U)q$Egp{bcNI[Q)eJѠl8?C- Ktu$)k̝W!ғ _uZ$SԆbXFytDv\mV̋ SM)5x"yF;~_cc&"J!b'3P%G[O9 e?,\\2&@1o٥iosš5PEcEDs63JV}q@E|3PĮa \ZWGu*΢8;d5ݛ|cc[ ֘TT4+CKvK> W.ߟBHQ@_pi&HbTt ˠp֣իܪޔqW#G W& {(BU6wHZ҃|:a7qoALvMDYL!w*b|s.]d >l;f^Y>ኅMWhb brMw뙂W *0kz @y$|~!WxUR] :R4_ϔWke{yĆ#@s~ 3'8+E>O]/;!)[-N >Q[y{ϙs=0g +REU,~g@x xD$9U$ @F $Wq#j.QQ|N-uasVunTu!2#{XPYRanb oLfdžQsg\Tz&9?Hm~L8.[ ) |j.Ȋi=5z#+}G(O1#/swmp,v"Pav![O.cp.jkc  uIz9"CP+@P@ PnNa)߻NQz%uqXy?}W4|̞ķ)4ɹ,P4Zi롣D/i w%!}f6MO?9YW@MCH) B~3aB[F5'2 .4JY=+d4Uƽ G ܻ~qZdY+Ac2^ {"&f8I\DY8~GId7)ۊPYa+ێz7r*qJh 2Uc 2AT m@;W:9PN\ݷa 31?)gR mCo40Ai]0U. ^-XNA5`dl|5 Ty} zCHsݧM*db5]@Z-b! 9[W45\.!46:+9v81<1L&QsYqͼ8XH YtOT?_,;hf-_Pxn`ӺfwI;!f-tfq * i~Ob[ׁ-f [:^H%-UpWlQDuL1ZDYF] ְ^o |4ؼ)}XF{ =vbǧ 6ZR+!~\ltrD6/*pch@w9|fA޻|;7Z2vs#akݯHNOĴa2kbRErTI킒*@x e7Ous9"}"\VcZ;Y}MLx=X;ӿ9 1{A e̓UCnw. K?S V}9n^"! ;xEeY6T59" Ǻ0teH0˘y\\ :_|)PaKWQP%ˊvtGfpmU/[gK;_[HJ{2B֌7]sIX@uV4)UY(`\APS>G8*L/s&l;QYchA=%zB3l̛>\!3;E0&74H=D ʍn%^T:,8P{i" =)dZ[@8T\MfeJ'D=u]Cx,mɯR%(&6c}"Sh ig]AߙzߴLkYE1$>H2 jF8تk{FĿ-;|Å"Zɐr9LjQ~i%A+&Ǒ-mck`Y6&$Y>kBQp0EޛZM#܃".)?~W|DP61K biq g2m5X3v^stA ~Mit \ /POll9(u6J}K\]fBIJhK JAH 9Od/d"SZ{nF" wPSJM7LaZi%v½3؉PnVϓ_PPPDGBn-F"$En* ';Wo6frEmZjYuA1_>g,Ndd#-QJ;cfลUۜ6͎b٠4ӳ~ Ȳ`4t!g6! @QȐHZGDO`ad?'hrRcW3b(Swe^]/0X9٪q?TOCH½5-`N5?Ajo ȞxKBH|3Zg|w(E^,IoҺ BAC0`!!gqxz!?&8=K$5<_pIC(&8θg,qb11Y.0,%E Pi"M/8f370| 2rc9Gzii ]9r e +$X֘В#=15cE[vH}bl)D/mr%FKazM7MM,_ö܌hH lITUaC0"F(48+ӓ3z%~V/2XO348뷘/-"RP^-m\@+̛ GvRN:*T;(VT<85v-yX̮EЯxF CcN#gu` w;h2fh{?vKZ/$?E(b4عnya<Ax  z,i,Ni>܏H@W1!,^Ů*9W1NdΘ/m cCjF֯?[m@UvoTnd|(aR@qL}hޡƄdžgk~:ХU%** %7d}@jxmjҵ8 jI]``>ȽԎơ0 !3^x"A!Wڰ;vWa DrEQC3/:b'?bso6-hh!: ]Rx \^sL]%m(W1Q>S5)A6^Qj-Qd8_K=M%&ni,", a/ 9s2F*niN:x޻݅4a33i*em3&u4Q|"Yxb AiP;(][ 0` 1U][%bS<9M%zk&FD}Z^*n똧h> X孨jW&OUFnL,xA1kBcR-uK I<lՁqgu_KŸ巣?DD{TG c $Vqxq -JYeNXWԖj{U:!'ʜLԿ51곙ȓ8h47}03ZI$2$9Tb~iC!8AC0^$;yof|dba*"ޝǹDQ9 ȶWQ7MR]EMUvo!?ZXEޕ: ņܬ"QيΘOkGs6Sƴ6lF VJS0ϿQs#<0hj6!T[M[Cc?:O !Q/va=iW,W}gj VŰklslNH2z*:p N O]M+k ,3;HЅ}0'?a%=F$)דoL<|Жb3癣 $,6vyn"I vXl~6-L0מMƖnׇ`k4c =)6ֿnJClBx8޿";mC5Ÿyˡ]bаpIֹFG3|B$>eb1CE*1 H`EBU3LAO*)=ɓpY:ԽAVX邡(-[Y_) .]yB|lxܖ.)Ub-'-7f75nB0;lƈ1b`qW;~{8ְ8Bi,Zl-vP>nWeXHk?1"gErGH)7G00!YHvFJUU['P馯V?Z<3#ۓ' %! l@3GL,׎7. |kzGŠLDŌ{RZUޙ:=ɞH^3ܞnv9P̛yݲ.[ #98)}i!y+t+)G@5]+΃dOt-0K2vUMJ%,\`V ccǛ*TҨ 7{B`ݎ / 2$Ƈ7J/yW06n XM.utVgQAD,Uap*殅h^ST|id=4R/TP!7\|MxQy@Rǚn/-ƫJJka -N =/, e8 &@"CM,l "zfOGHJR+]VEoS2w.,YKY$zo BvĜ$)+VV&(sی`lhR AK60 3AWƳj>œA0_4tA(5[+'yI[cQ(c>?-{m;|*>դn  /+|$ecg23i ]XJ60#Q[P .f܎W!}jكK |>?*JkjISmo m纔skR/L^'՗kis BYR@b@2 ȼJ8yRx辶wNxdya};!5.0"4!"tٺ"p)QnT4,κO8=thexNMf1준`\bMm;.?iiX_y: ,Bp( dS8^۩VΆV H ;O3R"d[ J3,9`dl )gxU&#Q>Ɩ:. |(uc)q1(G%斘fcgm7c_? :Kk߅%Q=A$R?jCD#b|D` y,Ua#&K$&GR{@3 ݖbu ^ٍj T]W+b$NL ' ?N/JgD@=!&r7rH 55W[}E੃<3K z%\a%,'`2'g >ێ{4լ4ld,>3aHbwx6n+=6hXycwo~L=VU1/f]a"IJ_zщ檩zSK,Eh]#dkE(ѡ"ht~ s*$C9mzSCIj9.~fPA\f<8ĕf@AgִW^.Ր۶ vN~smpdH@rC«×zPsW'0>ԺJ5T7Pw}$C,}"pj \M?? @䠠k BGՀ }y! z.c(Zk v`M;8&*:mGNEw 2P}<o/ );X=mAɴ'3_i<B}op=) aEԮvW2}Ht&4 kw ZNb3 1 Y-& ^e5 jN朌[fuĶx]8'Dl(^ *NY^{4 hT)AKoNwAg۟t  cy&XXk_r7_v[! 4DCKb..FH:ں.n 5JKӰHvSY=(RaL4B֛guLUZhup/, o  B9 E#9mTxIJ1^,k%"MH4Pp )g#x6bh5bK[i*:Go ȃb~;GQ3 .zCz?t-PQz {\5(3i7"z3٦Qi` &VL_)\j| :;SPJZI̧!c`MFT5cgV C􃢊.rgo3DE7Y zWXc3gjzc,ͭ[kzϗ\ d$T d*I'@|(_ < VLsđ[Y"20]L\SpsCxטj/Eg98TrS uN L*C3 K;I*KM԰:L7ZKH1W>9-3EKR=+bȤQS"U̚_?ZZiijA@?>iʣ{A<1gZ+ ca)"qGKևj) hG' 41T~++Fx =BgIVj{VwOݠAT82!I!OVyKw(AicKSHN:2%vGA=b#:xW6kaZ>k 8d37@.:42W#b5ORFNZ35IpWUhTrtm7t鄤(/0K3Zw0xTX) &Ftx,džPհRs:@ Echm$uAF9 0h缤B]e<&'n5= 쎮f@-H|E>ILzfzW}šԘid<V98m4lxMQ(W}-3)bYSX[~muc Ţ1ҝhs쵅Ԉ0`07dQe IHaӠWdc~*%g؋S#]"xo:ޝ#PzYIR؍U+w,_.4x'񣦴_m~N+=T}\-J(q=B8w[-o)^ N}YPGOXI6ǒMlJYdlYyc/;xX:$@_rvb%6Ri\F 9]rViuy93DL\L2OQuܣ&oO&Uٻ.?_I9ߦCDbʇhGLccf `ٹPӥzOM$IzFn*_nȇf\;rihIIWWᩦ dNQ)^lF_YI"'^)5˜Cb%)^",ϘZvtwCS+Hr [nY/Ft݋8k^:*LîUuz$g"q"DRyh0|%\.E0b4j Pzq"J`/P<#Dž+pPi8<|ǂCrkxaS}iCzf6<Ma2o%M f&`CrfcJuIS-r-H_?h'y$DK #rfeث_M;+۪ڒU{;[%|=re&ixwW٠bz{$W?JP1qMhUUw<\rQuM9[-=FȽ=ԭoLW3fEpwlp!W:Tx8\YT8;ղ?3~VҍRz+& nhרCk_~vc!QV$7,2}X=lW[#p}1i`V[fe೛1ͥY0SDVV&U٦oKjA7A¨*|C>TrGps"Ur0:Ȼ(el k0'4Џ@VyAV3E@"tm0c@&y fBa vOy".Q..zѽ àR8WddDn+.<:U\|xOhFQ*ӝ]l ʃ7οtYq<,K.F+Ì[B[ݭfi{Ti`Xe)]g-Px&!bԕ HqKޮ65Q nؕ mYÊ;sUJM-N G*ԬhzeֳJvMZ@0E0M2vt.heu/[loTG?maPل[V_5t%2j(I Oj}] &J9 y5c$0TrUS8G`s 5>X% }|Q4G jH\jT'2p6+E +07+XBy݂kC^PN`9`|duSLDIolXJ7pwS<]bM+3: q/WwH7큦^ُj -$ǯo@YxJt` h(b;hi<0|U}7#Rx&e.w.?w&em&ݔ%0= FɤobL t:p4ƠOUE07AjCGNR DOX.W o92+"ue(unȋP+n%Bf8c`|bTlzϢIz?eMg o Tb{+ ۇk 6umQYG/-C’G[l/aIrɴċPD/E"Ґ#1]erX~0.$ 588yI dd't, 'ss0췑۳[byʵHOKOs'V2D}XS4gWQB?}t~£_ >KX5 ) 8\ژOadigp K֏Y;l>H7ݑz]-̣HQZQAL$K?crMYY^p%_ƵSRNf6m\5dֳK-O"y ((΋ K k AZFtm/ LyW A}Di\:{g[=e4P7rjix^ο|f 0mOV;eG$S %b-f|-~3O>DCKƅ`,cГ?C_ bqe#AɵjFMR1(_ RIGdSɶuA*QȮΝMwaVJ8x+D,8\ > !as|rWB'/`cˡyZcrcV3llVx79]sz}Xp FUW7m䫂NSlOwLs"(h-/*)FD?d\-.wq eI Uc}gNh"ʢ-b R٢@fb }1f%Cvnx߾mvc(}kJ;QdjeX,6x5χy֞b %URRBUpl{3ԋ/S[Q $`(tDcAޑ!gǽi~`ƚ,-ALHm³jqX 'N% .R7 8FPa~ykWP!^nu*HdA簽QiCI=s_<R*􀴹%EE(`m)eCðϵgF)Y:[n;ia2IfS쨽,A .ONT8SD(YR,k#8d%v_QtEĭ iJ=x+O!n/J?Fmzu{W' ;8o(po\ЕF/dQgt"eIГ)+r4,kG&5 'T)ewAgk4g̚1=-pf9I, c,R]OûE*B/  p2MB(;2 m!ؤĽ(AuX1p$R3iv`$ O ,ZnF%\>dBU`](*-""~huwFT8owP [+S [N\U=mG8P:B^O u5inO|jy1o*|vF̴l̚0=#,x6ʅ")X$[@Id/ jb#H%XD&(|]R A1zGAg<\LRτ0`㠍HɍD# Dع"# )52c|ēwy*+_gKި^Z?EPh@G"GdNLQ_I}DB4 sfsM9.p\]$j fxJJUOap-} n@E=8$,jߧS;x<ESCHқkIɐ_OAS0קOQMi/ݎl$~Y-v+4jY4a]׹r}N|z _=+5YN(J?F<Z}EaO|f<,Z{$lNÚ߫@8$C%l@X1@%R~vC9Y]c1`|lG%(ę;燐 -[m$6I/6vn&c5XST-nCَ؝^g/?C&- &2o '9w'?ƽRVתV'ȧpEK. tK"s;N-tӀ~BK ^?h?XU]ĩ hTsrd0qm&8֡2ނK>~qfm߭)w%)R8XeH4q\M\c CA'yi \U xVWK?YWy&GsZVj"@xsLJZ] 4nm~%wNl(nň @h2㤅/f;_Wr;'Znbl)f%=7fdv)+-}u{5ԈOY۫]k)sD&ku,@PĊFg8*C+?ȄOFz`=m'/af"\QB "שVD*3w+65R A7ƪ4÷UB,d"?}z]FMg=#0-ExLc:)g/)C mfng+ 4 =򀀪mM(J@yQ-ATdm)3Tnl8V4%:l9QiUw\˧P(e!=keiD1"RAbû"xSO )W6?.;zå̀G, R[  V_[܄HnVZW!W"Ab@tj %NlHOj"Tm\xj8m3|3A"qc8 K#Mt.L4[ۢuHtjkQk{Hzq8q  X{,ocʣIwQHgLK K"<D')Ts%vy7- ">q F 06?Y]4H6~xz $J:)T*?Qi?-˷Îh x 9݄eH_ۛzJ3И>Z E &Tb#&}J"BZt'JYXLfxM--m}ک$8?TD5#`FN˔FigJiC`8ZkS2!f_>?6{'wJ1]9ZxmPMLPeL@$F{Ccs'SPAämθԙ:a/HqϝC"f:+۳ÿr)%Tp ,hlŔl6>LL"zLtV R&4mJؓmʚHu%gg%+ػ<|cpMaDl`cE4RR?[e2Цc 0vScW+s`٣TEK۟蚟&tifCzw0/))(Qy_>){wP7'&10qmY0|°OERsח|8 z]’OrОBhZ{%7 ťF]Fm=i,;-!MIZؼu3U!a 54}R񚦸Ģ` HՓd:w)I-Xjqq$a@#ZՌU`*ͺȁ%Zs3~Yy m})A-cċ>Yz/#ڣRMMuv$*jѻ@Ddsjr"הѭ}m4lz9lr+_ $J˄sRcm7r[G=]ǡ`u? 5~ Ʊ!0/饙4EHǛɦB5:$l<) -UWu(z8[lXc||7,ZhkiAcAA zg7;/mr} g.hEU1o|iK%]9yS+Tp™|Aaau&HqK`DjC?IE nSt>u!.~p2ȮP=+?^]]We3[TUU*98~s-0&UUQV%D / *Gĸm.F qȲ UQXc\2 p5ٌ=Д"ѯIӚ.P-cSbvFBi#94OSȢ"vTƤeR㭘԰|u^k2"%M;iB&0 3]LJTS4F}pA5Y./1hk|`g@wv%phz\nN6u440v\D`d)0z j&)πpm`iyUڒ8Na:i u!f@ۺDEp1ɟ#x ۻmBm suQuʭ>F\b>asNi}gH^@cZ^`Г͵M<)j])^#OϷj#8?8j>&:p2RJA^Ce$Gbpfugϒ v7ؒ$#o;E$ Oʖ. q[HR?$tJ^^Ky^ک㘭;!LlXfF)A hbb.ڭN\"~\ѷy'_#}kӳNj7Бֵ;RRu^]ߑD_Q3 ?rY_Zq}bjr5ܪ|N; CrE$"@}̨.Z 3.2z-=z5NנPuu5lAS…;1'r{a,WOVFTyX:ƙ= .X;_J> yPEy8REdh͚||qccܻW+rv)~1+{/̍FH3ĂW?Eթ"W2 ,dTD:,(<Լ=lo{<6Wu1ɦ$oe| .ƨ3Zjge `԰ԥG@0: ~Qn~jKc G Id --esiTZw ܕq[D(%WAPKмީWabN^U1 I,I'8h%S2xu^W6|wN}GՑ a w0pe\}K0V1,>DHV>`{:YqĖl窇<3fK4>bZw,e˸}zx=Nlth/լ E98\iz6Sk \멄/ 꾌|or?du 'YHŏ5WqoLʆ9`EcPBƱ@/arL MV5トևP8d+*VPc4Js??RnD#RRjE3{f( J{֟?NN̩n˔h[9 e|pp9$Ba EF7Rb~j>4/vFݜOO[\3y_ux 3}O( +h[_uQ5@-Օ]U{ 9^:@%;Jc4igܡ;<cƯ#`D)aU LA`!ះ$.S# 8릙:>~dx7RmPIgg 3R0-#> (L# ;΢lK_F[W~ANM\%qRH]K2NI敿[aCn+YÛǨ~ɸk~uBF(/fK2Z-&깱<~񮌦uh:Ūs^iR _ UKs3EvlN5-12' t:+ВΒP/H 蟗{[¾i0%>R3^%qyg,4n% rQMenwIC*ha={]gʸ6bVB橄\=MxIQ5OùaIE9sq Yٵ t\3wڒe Yr뭋Pт oӤOM>ZM}F25{/eʝ$Jaj&^CdRo'ؿR;݋ tv ;D)[XxLүՊ(ߊ, ~ӵT1Q gPLHi ~@)_#}j8p'3Rkط&)OaN, dAҴgٸ&-(o3ݯD(u]{\{ d+ uuA77x5yl j~K\)4XQ*O M! ^Qy'J^kdlZMMqmOH1pZ89m|-B237 j=H[?F F+U` NHAlo:vC$X뽋p,k2w퀆J5XquyQg&r–t83*dR8F vw|iC)6U2h8IlO7-7[e71vIc%\&eGzpss0bJIsrTXT? _6,.䡧ZwZMb:o;3Yּ=&cujDT{=-d8Yc5o9m둃d] zFGxȮ2o C.~o}gZD"Lt:Mfpd+ϦPS[W$SZlu{1$L/Չy6hbK D ԡCj0)n*$m_͵pU( -Gb$F:ƭwS 6K%RE٩_2*Ԩ@;t&~ne @~b?Utmxy `w@~\8nO`Rp_44%+) `U;)+tSguO:'-DjEnS>#)#0z{]ƿ G~ ~ȋFF-sҨ{ӭ/| Uww4(nGK؈&:bZ245"Gmw x,(]PKֆ 27`d"(ˬ_*XFANH-}h _1`"I5@ `"(~D_>O/*BCb:SvGmrjK;(:2?Jd;p]AFmQ,7Qv"U(rf#n E@(7|SDɆ/ʣ+,50Ow=  ޿^}/#Yg Wq<觠~ +NbAlN{`^$C?-Q-qxGɫKVeBSȊu5D'-zGsq,͂h_HI(r_d]M/ONxƟS/PY_סxfOT/.Mꌽl 9$.#̹Y7l/$b"RD.DC5GU0鄖q/CQk=05 vaVWB(,j,2R[3+4E%nزqm)/%i Q#wgwVWV0CPc QVYroe35*9,ⱎ!OM $٦b6ƪ3YDIVbXQ+^}@VHV kw2|hʈ&+ٶp[pһ)= p`Zק1, ٗ,!{%#Wz1Ia>6`Ot<=}-sx$ L!!}6hbTIqAK7gZ3Rit!IUՅ&y\CPܗO#:װU02{?=s$X= :LJf4;\ 0v%SPbW^h40.Fx]XdktNHZi넅҅KyEeBh=b&U{ >/*VXNdGy8ĂPvǠҐ( \ݹ`*٢Uk1i4S;+"d*!ăD 1&v83H}1/A}rhequ&.T_JdxB* k(Y1LdCv˄\,xf( œm")  'iR[Հ#WݨJ zu}U^2V7} Y/ ھ}iq99}D{uT#;`RٛA0-%/UXSi.7e98J ߦ;s$y}O"uc꾽z)gW퇘ˆ[IM+Bo/%K 櫳)S?)3JEkҶ4[6alIm27[ƾ x`K+(> tw+g# `Cy 9ZL5AF8Ġ߆;VZFMr$tZmVz7 g񭭖pu5ό%mHsT NRc'L_@f]kkdGҊ;Gy+ # &ӈa/}חPnLSr_}vУ-0|]M.cYKqN1/z wmY-)Nǹ"nvD/ 6g250WSdM&n ɥʹ '+{B0A/_Q쯝?uq^)xvjVpUuv E3 _2QsdoTvp$sNGD9OcQ~8;s,qhSienie&v3+x 藐|аzB\m*խg1j]CNQ"]o1\X]=0c)%V5]QTt*Q8&Oy <3E_a85ԮvNə [;^ƣD9/JkYьy%<{~Y ~JbQN F/O7k9\j#j@e1!a%wJ^^ܐLJs1{V-r'a=6&L̅$3l]a \dW%&2fЇ #ˉ2=&ܚ5V gG] X^QkƟQpS-r.O`YdP^SZ + !|>JoL0Й 5iUO?\ٻ,B6Xܐ}StNacĘh(9(Z\` EWRD)GIlJV{nfAvJ),:mjdyoD-PuSY߫ݯ 13=X{z`?+Zf&Z K4ImfѼ46Uy&bezJ[,W~ b9l N&} ޞ ]eR|Hčh1mc͛u[? V2>HqE#qEsB4ӉkuCo#cKn& ݱ"FL> 䪳v`lĀ $EMBw|TfU[hLz$ʂ2tݣb5py:_@KuOLM#k-6}nj?;gAJ7O랴P!"b_{ нBzh(QT)+Gy@g,ba7ڱfn7xE&FIJW"ފ]Ĉ9e;bbXȃXDMbջ鑷ܨapr%f0UV>0ޱ{_H8wZ 2S'UdDͶL~)i(9:T/+QZ%P1wP +&/bp6ؘ`4<<6Rz@8lUAZfI杝?.X|^o[3:[BDIN#0H@Khz tėI''NG\~>DsacS}jF܈G|±:#Y3 c4بN>a$2}ؘ,uTŠS@68D3#!ܘCtEf6 "#k{&plHR@8PzWJ*g7Xo}2ƴWFRR5g}.^q6 =A)wNza’!e=l:9}L5|P|E }+? _HQ_PN?fw̖Ѫ9Sɱu{9ם[tvO}3p-s!Po}r1A؜?:O9F tc-ITf%0 %oV?*tN #ߥs)!22FJ{HFO1ݮPN1ƾ-sO77ֹ`"Ϸ%cE/Y#PS|v$u&3LWeOrHD]R Z-SN٪P5fni&aѥpGA}+"}`T%"NYj?v5mV iE8C](Q; CI0A1dž-ȽOv踣>v2O@SBۗi4z](D9[$"Mu:D{q {FXnc;mv-/+m7+g^vpn+$EO7͒iﲲibO 63z@kccmR;.ƒCt6Pj )_< h!Y˞` $ukp@)N@^648\g[r/sׁqI'cqr9#\.O:G#Pha|*1?MaM 6gK^ͨ\8>A {&a>I;fӢ=+J2ut LC^B?GVFIa/:R Azqiu6f)}] |DX^2vxM`XF}}z BrB8 \lkIV{e=fP2&}ׁ Pk;&+!fzV_dq yrwxtH:dൌ*C9S>]`yη']xP%;ηe>(_4+;ӴQCi]P,E$=8\^ *ȓ"įצ)A -NB=bHsJԆtÔT$쎊m;Ӳ )~zU$WIV ,W*DŽ-x' M Ԣ )6;u]roᒷIͅ0}ThhjP dzj&Kj]rDeEDxu+P&./(%X :[J U$b;F)HF|/8u o r!, IJK>=?+7${دEՎ{"T]ƫ5M[vJS+A5(]VFh0zBJ~_>ea;R~)9L424 "^Пq\My4BF̯S}9YJVN`bC[]ar࿤H/?^l(Ii-n 7iȦS-~KB7&/ NoE9llzb\7|=s)Q\u-=tYcp\eś! 80H+MDv\ʙZ`('5PNʐG'Q7ᥣD@G`y&o! r05;-/s(aۡ'jŶ(-XN|x*˹b_Kcg3s75zs Ӵ\ 4.:l\U14QڶxƢn"`oE`w8Dҫ徼H+bX1Jflk0<ysØߛ[ eVCۣ:)NOHQhk#\ C~d(’%FL30}V}zOs< !.!LO~v(nO*lu(uԼ.|溟4%枱RQb#'~"w̩)6cLW'Ův-eO>J zDɐLԬciWk?X(c">CslAxUÕ 4|,T G"bG_hmXv&R*QnIp 0Iu60 a:S@HYk*2/)ssu hC12GY3M†}_ Ttl.[r[ 9rxkU3H0`4FCѰn`]ێyg IT M{{Ag80 n?.E.GNLc|>uE;D-f0lE% %P,iUNS;}׹EŴ4![O|\/mqdO4X9 e] Ǻ{'0b tnF)}M%t%s]6G]yp7pMt\hJvj?_-ku%VJ^m_ \hZU|`F!d'l5cQNI2I BH3=$d\]bHN*kYN[y(b*;!*$#wȬ^@ohvB1[f1 hz9gqE\uׅk(@׳IgE4.v>+CǑDlCN6c;븾Xi٬R鏠lάmDPOml4+"9/H8̐ ig}Fݛ̂f&{ DDtʮ H+z{Z8l{o6M1`皘U0JmH;&.x6ע:cOo"=҆M>=L4J1.6 P=N6VEyz^ V9K￝ 1퉏Fs5sR֛Qz}}?g$8ˤL-]ʪb@9A-K4/1|ݝ굏d io,2x_o@JHn9I^NJpX03lS:럵ʥ]L5YO9ƒܤ]B"XÐjڮ>},JZI=w4#Sl!*DlkGQ=|Sv&%&+Kp֗k5Υq|E/$raQAaٱqؽpgqp?.ʝvϥP/P@vz85&@~ R]JY'G0)M-( P>7ͭ_VO+Vv,ctXD. TKxU 40uP+R=TA|pQavײu KP<$%K=18kry>/#-q6ʀ.d&RzoL.]MJzVzwe;!dUa!ZX(VJn N.U|`# \K!T6Q#֛e872qu:U IFOIB/wԼ%r-GG;]KS Nouµ˽ 7 2uqxwȈwB{(=BK)5A455ѩ⬑TDt !Fd0Tф#+yD#=z7_r9 4 r4&f®i/do绻89%3 )'$j[Jp=Ap*I;̴I3/t0Éto5pD.GB1dʥ‹ l>d`$JD5ΏuN #h2 9m ݟG|z惊SB64\P[գ)D`FW';n?2Yn-}Dz)P5~~JXx7rKE+m}!C߼0[lPqm =eH;@e/+ (D|J-4'i%9ܯ}t -rEN;#BP_Z4f*M>^1ӚmɆ>5 -r8^Qezt+V 9/tQ[NB'kK]lĕH7Ywj(= |w|خN|&h[?| H j^#Ld@J$A*-&ԹQ䬇GBy@-;Doeg#' H~ RCz>Y5<)a;8sbZ: ..ėl M })&4n/ ]}5qSG/zn;x~b{+J T\W' e_ف<tupl9-%<~oS =DR%WI߰,MmJKJB'GPع ,)A/9bNӌ+;:]{]bK6M!咕?' tˌ>Qex]s?ӠZa= {저I0F|8rAǓC7RIt\$m2(ʻ*@ RjcZwx 8 ƳLHujv7 _&N̢PrD֌T[1+((K:־|E<f&:KFGBJL<.skF!撮+Ll=|ڟȟMPSPmKW?Bp] <>mu nwg$N2xucj`i/%? C=)p,LH{8g;X@FMpKd TAzc?O.3im_L(u2'2H`)9\f./3QMm5TJ5f'K69Í,#COɠ\Ր(Y)K17zUգ&h&~ @?4|1 $q6lZgHzI!qn1QSo}j.;O?TiQ\h3e! ;;W7"qX c$OBu;@Oi RqveTU&/7ʚ` ZȚQ z 1VoNҩZ6(dXI;7Ҍ;ُ9:% 0Yc)(`NI vl"n+|?߾4¨U8LZ7i2 8'i8{yVOL]E tw'a{ǡƨm`&lruDH4sqIw0ː_6LvmeRjADq Yfl:rS WtiX%#TMŪT޴0 v-u2cI1: ۓF.;ߡ1"}ҩ[[dw<̴~N,wZa5gbwѓT`r1".vBNColW)4tMkIh?Pa"n,Ų9xgax2^nb N] ʊq]'7T2ΩGlQNL!l X nvo}MQ_;5K"t7#Ca!FӝP ҧ2){r窚WW=QLRC]dnU@W :2.ݲG ɳʲB9?$ =t3=I:Ow~bbNpuW ~C  ;; rŋ~+_: 7 ]y꘸tXO2Ҙ%LJ``a\"1ڂkh NL&!֣`)Pb ^'+=k+D:QڻvHM~ѽ%/lx|e*xRqUa4Yq|,Iq6~9  x0R>a_)@U _V \׬?:FE]'HDx 6p6GYޑL$^+UW7ZR/`$le50BX)۹QѼ${J.\D:XvVЮ$00z,hxt9CϺ'5UTI`;~=_5e.`(g㰎9J:򸅄"d@Օ4sb,f۞tHsqțC[]5@>m‘9nw~q%=2MBvwF{' A \ٴ&TSz͸L^aW!0ט 4ޛI4;,3V{;E魦 OU @X<*$cIYo9vv@Xfj[m །A7Kofp`(fW5<Wj ^84uKwsX4Yٶ>w*JC{e]Oxh 2P Cf¼8mI3D bAMMD1ƻ(ca-O=oZekW $A2en=a_jţ"5h5YI>%WnPZQdct%]ٵ̛XsH>7ʼ=/(ahcτ`RD즚޵*"sT_7 aM[!6K< ;WYV/M>9rSo}t%1vP26Q 6BvB;T/~)/pT>^`讣(e2j{0']WR1Z GZVd1f\Ss<| Ir9G71gQݎ'e4uDL,H'Chj N>962sYmӼ,pOO;.ZuPɨqf@|-H=8L,535zywMx@`2,J(r?~ة鸵oz$s)I'<X\\(, <"ۮ؆!U!7FS9& :Χ4ԿvR g"kחtU-?!}܈wIc~]i^|9Eb+ bTV[D@:2؁zd'*kPԵ݁Η4B~{0dZK .V]˨mo_L1\}*vi P3Uq޹wCX?8 |p43Zoϙn9YT&rk09dHQZ[NQ1N0q_]_17]B{-b-dfgŘ5mo!fꪞ+F _TS٫՘2X`g`* YW~,gHZݤO:LTp;TOviN0?@z! >PK.s6s.$=&>1+1,Iz |)`W~̩ҨhˋYJJ-%Fo\9+o8N ?{xKQosu |? +Zj"#aD;K7Nv"/Ȋ@hsG+/)/R&L8 D!]wVyOwSiL`CyQk> r|MJ8NUuΜ*r'Pt1:OJ3갃;Aa,RF.wrJE"!M!ZD=ہ8=_YXUOdDSw]q h\,_Jzc^?q] $)oq'CzSxi Hm~fM*0'Ysy^]Jɂ̞rQ@Ws} %KS~F! , OrOj:/c>}Ryu4?z]iC˃$Z44ik[z>(S9c)5_Gwz&V<",b 0C'Rg2fŐϩT:7 :c {ϚLV؆0uKܾ%?+rorsDVϭRpgv(ʊ9AÉm|㓽۵5LpXғvX0?a1r(8s[lըu$ң18g,C$䖆[!+.#3G۸l&M6Ft  m*ЏjE}7vB_ПxrJ8ܞ.!܌<^s],OnaVX[/j*\)C7r*&Z[|%tˏo3iчiZ" , I0~X C ~+ޏ3`-O]R6'*?Hl'!rHM@ۊ IAW7p4;AY-eXJ0-5vW$a',jY&,B(NA*y}vDإTR;8,]Ah$I`x7?ҬL 1OQc}6v5¨Y*3>,\E-%բIKc g9\>5Tznq2ʸP~P<" =H[}F3.?ejb_}[WyGe*.${dF4T=h gW{7U- 슩ɜ D_,K>7&/AK P>5kO_/c FM%S2w5a/ ^kPL8d{oo{J9'C"W[֟FW#D Huj6*CnyoT*QC!#X/jD zw%T )UѶ>&VC*  -; eKB8Z~ׂSީ/v?'f5Q+2>s=$'5:h= W+hzfD-6#.__GځdlDMش/=t&\b}%xVH7phҤG0Ec(KD1VE-j.-DVȂgn#cL@ ^ &f8'tL7⓱lQ{Ћhn<9=$X pcˤaCsFw6/QH_R܃&;8,*5@Ksl7.b?aľDqT&a>YF%z 2A񮡕d6FJax~Aܗ4Y 44X9ce4˲PbQP2 %yAC1o59KH/ӣ} l •I Q(b7#97Y)bt Kߍe'HYUvZ~:⃂ݲVjA?gA)LI[P%*,at{b(G>}! gQ nD.L(vGȷ7tOUIz<΁f4@;"D϶5Юֺ O[V7=L@k؞Emѭ]b;┇Zj^USoE~iG-b/lc[e{bM'pfθւc.-DlQzI@#{lxX6.TM96*"-:o]^4K^OL0+@egsrC(` z*@|pr*}q||b w7o>k],vO9YW :n̞_'jHyC-eY ` F]+Wd0wk9(&cJ?Fw3L&-vV*Ѥ@`4vq/V#]ӑ2 ZD _@"WKaa=,B.7't6?@Uc$MiB'ڛT?Rx%mI4dlGe Kr}v!V=>s.Z])ͨ(nsqj6jgQCþM@ⴭb"`|*?PB`XNeV3y]ߠ8 ЯB!Jx&pxgxbÙy68ZAҢYmbaCt֜}Q 4=<'u*B}ZmЀ^JtDۘ+yf4ZSY.ZtH#hъ'ՉꀅTz(&*n&/djqFul`태|R݊5##xC-yqՑ=|"cH2MJLR/'kVnypZ~S \M/NsR Z)cv^#,5˪M5|zTOKQ T6hLj𰄝$2.^~3a#76p?ʉ?e.l.NqIm 8 ClCWķIgsZj_J*ΪY`}:M!r>$Xր\=:[`o vҐZ ISue0 _4aI`{KS7&$4hBn9[d_Ը'fpFA-Xpx?>භJF*3$sL`ab_pKԬ<-uVZdna[IƑQ!ݚ,*o760"┗N~U^V/ v{e FЪ *HaZ";\|b=Vcx[+`WA֚'bۖ@LWv]#]?Dݥ S`Cc^6>/]/dиT`x-^s(+64KdT8)k]sgn2._ Bk/_!TOTg]g&UZWn{J`t#wҡE}I:';]-`MmԐJ+BX#Ej x5Zukq :Zy<>jvy_1WǠ@W_Ur;St4U1\FՇ)SZ^mL2{5Fj*$ "j0`<Ś,I{‘Q uN*3"K3Nbˋ3qb96)WPiХjv|2#YD)dhNLgRu:#ڜ/g0UdizM,X&T3g Hcm!R0<#]P%T l] &_hZg]< =˒T#3bХ8W\lʎ\R>`6/_hb;d&Cm)od&dpwzۚNEjDQC_丳8*Jv *߳;5l]3ƣU4{> L/Cx Mw<x 3d ~܇8nnLvycm'P` } ))F#D 8޵R&pZ _Eo ߘd·v*JxGԱ~KX̕ĚZP*FKknIS Jv Nk]/ P4aVy\GKH`d.4;PM+|%7 f&(ic;.p ʰLu3C)/Abi3С~E$n1AԌ̘X񆞞ÝwWMeQe 12KW\Z̀୻5=Sbn9h˃8ֵlIRּgFzmX:5n0rtU\~h n0؍g&ib餒KyJ(hZe! s+"9zΙ@'PL/[T ҠÊ74v*P(Tb3"_.1oǏ"~1-t *Z+B .*u0U$xrMi3Q~JR`JSe7\u.`lqYZiOgqVASꤴ Dj#<趟31CW`0L5rQ`gdCFk_>3wANU\0(9J>u'kOT!Jg֢6גtΘ;-]W/T/:]PMg%2J畻"t,xwe3c1slv2!7ءլ@'.䉛ŞqTꮣw%% |2K+ě}W*i1=)V6 B|JF|dCdg"6uo얙~Vw{tesE Je%W_}' Di7yIm!OpE vq((u?ӿo0SUٽ``mj JW٤ Mn4nTiTs8緽Y ; + xD18>DV9Sp ӥMEf !@]տ`,S eSr6_hBA `qa1["! #<>Q  CvvK﷞kyI buҶ>IGVLPo`VJOj/@OY:IMsDr 6^(Go<>la.oIu@9tBp' S) A$NUI-`kK8JډYwNPc[ #rjM/LXC @n]tIśEkSNʍ~]P w"Δ+!19$GYvE9})/;z3Hsm55WLljcfMIz m8Qp6f; wÐ7^x6Z6p+ &U&z,d#4#"4z=c m| }^Nf'w& Eƛo:=h%dzZ(& )ԄU `5B@Aܓ0.p>#yq_CHD'b>8~7/ RH"oqx]pV0P4)Tzt0L`MEa JuA~bz#S*:2th:{@LdXy !_&X!Cq'e͎x[3z'䞖PBztS|8@MuLPGYh+^R, ,,iL:^3[(/ UP3IY,.eO mi]r˛Ə4Ls0}fE7'{A煻ZGr܉L4Z)~V7L׷bHFi լcC}sWe@5eib:>?x4 l_Xi+Ǫ Lѕw۪;&XCi<8߂OtQiۅwTZ#GxEKrR|$jY\B'ϣVp[{?}2ӼI\DިmQ҂, +A?y ؛(ܢt8iF - Zb.' )ϡ:i%9PFG^jP*iĠLF%,[VE\a/Vύ8MG;M1=vՓ#Q̣'Tlǰ%R -oD~9b9*JI^j{ B0O ޾l/р)FNG "FP\%i$pyӠh+SZX "F 8?^bgJ4"? 4pӢQs܄ 6o[/PS;M7w3Ӆ#[9'匬yMb^h<0hj:P ovxف ՗nܭٴ1U++~kЌ*|EVVoQXPB1>PAK@|V6O=CL(BnZ~1^%͗Af["nS m>a"g~le2iDA%Z.-6Pg/ML[%0L7YY㱪-'$] ԝ=/my-RoD,D 5z8 XixyY1j&߁p*0/>K~;.^&խ]{s|s*9=ɏ[(,@XͻI{t+x(WA ^yPlM.&J61g#O&О :eele_{vxdRa2;bj迣˕%:wN=jմƣѯ*F;\hO%8ґ/dNح Ę=FoTw&uB''W9UQ1U-BUl_ȲpU<ك [k7W#bP2jjҢ Y!beRvdž^c nR!\ӹkj5"![ *Iyyo[ŝQ mYnZw(t+_O3鉲`2\MOylF_FwƒI[>J<"MǠpG:8c/+~||k'Z\5ԃ\[&]KH10&LA`$L8_ %S9!2O#om|6_ڼ-Ml>K.*ɩ_ĐO!%d%O 6v^#|}9^>Uto0A>#=55*}ɿIS{`Sq p By.:F9>*aʺ\eU6m[~[ 5Oy#TUG4ڝ;}z`brfe oAНuׅ ͼQ O95 n\cyρCU -,|-mٹbI E&7ɼi(3Oa끹hĮ.#sٻej%4<~MqDȩl<d8S/[T]4|l{_ E~65]*֣h ~j3̸k-)~(2P6 $Boұ{әGcLlGnM;I01؉|O7{!,'t5/^;zZH A)`qͲƅ''3CŒ8ϲĀBBOVQT˧+mߠn K4+RbcQYFn_zw ]S6+[X=gI+*1ekBTG0 }FdA ;Ez3F Lȿ960^FÀTU5x(KO캁'go5yƦOaG=)˘%2b OAE%ߣ0K^3X{FX# ʼnG'Y^ε֌fz&`[h}]Js{1eR\iƆpy%86㞲{SPYr&Jً Fs4 SL?D3r=]L o źXA? ;cn6O"7o>}i1*;ӎr]̽ 6]jw.2}hd@:fob)W"W guelYDK;h/l γwr" b!hJ5uaT=\[*h(}#C(PoU7. 9Ft[_j1L'*OתJkzZ_d'V\NlA+;0l$#j9STcj zsq)31ی=[*\/|s- S[ZR37!^a *pEek} իk+Ney!f ˜LrDJ;cDԑ2 0dI뗽R f[F!QgG]:yKE<(9mzH/,C$7HGy^-nd, WKFmduWM[?sUr~j#$EDٮX^icUd&QO-_(]CY0 ׄZ)R Խ@ix\eCKhzC%^j1sj{EVKo|a._c=gti@PD畸AJ|Bد¯!oꃞj4TFN R9[.rDK v7j.xW<ל;R|F* m; ֺzDglnYu 7j -Vg",6+:7% PHXMu$N>gn EWaxq\|QGQFy$iSЮxװ ڼQ%ZB,%%(aX5b@M%=Y?]/X*BqzX%<,w73ük6k6z>W >lTKSĹ=&"4xb%5hB\e)䑤ic 4y"=,b/,\IGg-@/~&BYx#رy4*ZD[$RfX=boh^*$eFvp.8ʄ v)r C]r#tzJRVdD ؝g,W!/|>_ 1px6 W_ "-XXqpfYF9 )uD7F[& xR(/gᄷ6z|d.>Ss!f|d&t;Do62PtJ(P[_Gki,\a?z7PbۢJ@<<'i[tc"уXɎ%+S\v!n,!!"#κRSp}súnp|JϙGzglz?RGSNB*}#pmc=h7q4^hmM^z`?0Z[,v=\#0E%nE$BJBѮQv*1GB\C o;ɞ.  ~<+ 0gn`dt˨DfVv4 jsR[U\lZT8Kylc?'sk+K32Qe6@toU/)8rKh$|8>DJH6>9r5hisyonwDm}_r7HZd`iK>d`s() u%D -L{ ,&bjSyLLYAJVQ/p)`cMm2U?7pa{ST^ ZLsIJVm67< =9qézf! 6(=\t|)WAԭwiDNI.zO(S9y;Po K&9ߊTIr)R[dα-#ؓ7&40S.Vdò5Z;ؒ6 BtA+7C[Jy+V=%Q.#5okzjMw /zRn65,:?=2n>%$+V-9PsmYm!LRדt7bu6AgG}r{xC>fdϒdure锫*QfT40x)[imj?naޛP'K ,\S,mAXvM+Ց\LWQ.F+L)y*˟ 1kq 1W<o9NcUWzXȱ}|=X#18d17&}_e Q_6|c;}-t K+װ;z Mz(Z0CO,)Lt~˪n%QLm<Ks0%Dw >XdHbw,Rf08$) xx0Ӽ915Ϙ-Ӽǖi+252%S"I}U8i#U>a]o`aj4fUnF(nF!&#tŵ2u\.h XPXۦ.@+N2Au V1PƤN-$o/ b~q~x^ /=}?/m-2Yۆ>TVwv+NƳ9z:0rA:z'wr7JPϣe86/`)]4lǐГ-A([Ob](:, B _M0*J jcte,S"?=>8RƓwX173u9#,A'7F`Ah/lC @.VPs ]^1CM):KoF q@jEߠ;TJu~ o:_ڍ$ux"R*R X|+YAb.fC*޸#Wc1A{J~DA SacD>~5 vKqzl) LhI, ) ޫϺּ_|?=wL¥sG qB75=xQ5!>iDxC@XL3UN+ }hYjovП"Rb.ԟT^EmHPbܒdƱR {?ISKw38d7AO\ZB*\4x w|@QKri`';3q560eg,6s7V:ͻBSsUiK8*l[sR(}wZB[2JM`dY 7LY<9]2|Pi9^muvRW3 [LmƜL'D^m_b 8f{[ފa\~pMu0g_ڑXVSkըJ9)M]MW&cj<4G9Mt[d)=⌊OsUBMIŪ^VU6w=D' *CS f1ǁwVm1\Y]21q[m6ݪBULqqy 4oͽDmCWd1xN4$"j:c$+˧+mxɜ\AqYv4ĿO>Q8b{0[(|<^;|0(O^d(A-Kl%R 1a |ZM:*Z޽ a:9^?d[ԙ|+gm _: bֿ JryL@]B$]pN ȣ̔B>`zM5or=7NTL9}Qgnm2H5G*3.gd.K6 d"i{IK_e%nG,+B=?n.#.0_X+- ) ;gy]TU]7*ǰ/J_A`Y.>O? fvc:aa JүI9o  Rϣe*K^wjå)37)\?LH{K(\P~zFt 1oQ&D^9 Z8/ojA]&2|P#'P4i4 $W$DHf]bt^5&K˭d |nf{T'̒"Y\yF~_hEcwv닼FfNչ`dkF9S!]9UunG"*䬃'X.d5a^EWKjc1?7ClH߇ +k-@ 'YA.sk7:cWcHL!l ;=7oE/+;\b~SbH$,dd4]T6;f&oTUg6IaD["3cP܉qk XNէ_x1o`9aUp";gvhv'r):j3D~v|l~jICl~s*k{uS5d QHXɅy~h 5&q[|BL{SʵҢr 5ZB0|?O+u9ۯ!KYUvV8>rX}0^S2X!+8<]= }sxT(RPDcFdR&^)Q9p%CIE9&B=Ӹ3k!6o \3iyOt <m- vNS$˭JȌ B țl .oc6ż ļ~9( >~Cf`;F3z^TQs1ie^&%d:m%kt]S3RvJ`wl<6aY]0GPFx]* DueGcKw[í,R sN`Sxx<}4}Jm=}5)߰[U+QΎᘩ=%L@XH!~`Jz$ " ֜ V6lBAIg :=6IUX%J¤j2u3i\6R65kOT k`QR|j=7*q4@qqȟUYircl DX2 ]l? I3-uт.l V4[-_]D[([oMPyY8R.nX<уBN,B&XV&Pa3C e>o)|1D ~s4Uo\#+`xJ9f+[]࿱LOػ#Tc.'E'e ߭/# --ޭZ4r(-/RNaxgw&'mXp3'<+SeCn"nձȭcom(<H*5q KFR:I[Y59g优z} e}ZRP)-?&S]%g&_kͤ{T/֝EG\e m+;V!*8c^HjSj:DFX9ajGgSxT6+62,lf^ar*X-s )@bM~F=zrQӫi8RKI4n_ ,7\OoZ{$ݕ邶)?mz74Zf',O :̘<>m(w2" /Qx^$Ziކr1]@e"c>~Jq=gF0 Mjv$Rז@dZE Hg" cGmPb:rzpϿ^U6[΋n[ƈvv WH:B!BZB ;3_B{j Tmً ָвx(҆Ôb TCL{38DhOls"$ɢT} VucC4f 6?b&Sj"<|DDkF}G{q*pِ eyq|h'Љns}ؠo-,g&%\Uoy4-LzWh{Nve x _RWFfdXft}\eeK$˙1dHO8H9S"=їE˂Gq?Ue$GkZr 3XB߃2/$&Tw.D dBqqxIFt7z)T}`kl~qu-ϘON%6A´ ;MB_Kǥ:H,3ݻ[LIF H|>*%F]t3M#k$=ql܅jw8~m@4B :`04s_Eݑ*7,G~|?;2:Ei*L[=֗z9/֋C^(0~'ק CE= ޯ{"Ţ)87/|bH;C<Ѷoz Ll+⚵QJqfv$LCy`<5A+H>I1 م>qF>V  ~<>4(:B Zj(! k r6{ waKьF9́tJjiҫ}svٴdf/8P-쐜4BDv !5˰6h艌eM^ا褹pݤ}odcS:5O[سwT] ٛښ9b Z'8]RWYsa ff[GòTSY֤;V D?*"5eJTwsG[[@,ViH?XDlrvH%fQhoS.?#-E&wG:yd8$ >LQ!5 zJ4PdX LuBGCꓪ˺h[zmśH1[HHC5j'46"nnJg(|^:C\!IwMĶWho_AGT\i 9jb[~ #{aJNw?~;(砘t;щ*)YDuUCƏ!`_HsoCo9u 8^ S^}`U[> q-b +_".jV_F\ZL np<{]Q,i XKe=_=F?tvݟ~+" dDAb Xfi x`0U_k{)9Dn-&(F iHr(Ac)?ߤTF5z$e&[G(cm c!a{#5^<ם[:t#Qp@2fgi`C(ǣ+aݵs#=>ʼX_>2_"O&j#pR|ZgQК&D@?>w *Ô  -kavs.lj[1_$O<-̑Z;\xQeD沪#@w)?xCWY!kK<'.%z] %e(2bMvM9e HeHc仙/T.6E܋-1o"ڝ> &8*m!׀bz0Gs@OI@/-YnK >.in.l1t#\ʎ߿e|ņaVALfesEìbH[ `6r u!K|\Ol F4Cϋ*[$i;+2/'e9ho|d#."RSE[JXKcN"~F1mbɓɢQ͊ w4Fv^^A)\Z-h6x<ˑS==ڱ=噦v0360W%AK*Zxdq3dHc-U7/k@]Ҧ30!J \JZUD b^n;@clPtfTb:i% ƣ^*U1]%\7**|}䧾VmQy|㛺JI:N"RV^T+ NC?hRդ%Wn=5gez+|pGD")0r4Ґ!C/#fQe,PHR.s`S ۈB^qr+8v4ƃR ;n3O3P֜yYV&:d@eQnH\NeiiNkr }>^v!pKB$) 8DVro%Wz6|m.?p(7C#ɚZ2Ӳ\Am@}Q jcvAmLz)wx!s܁aw-Cǟ4 ?/lam狉x]P]@0OK ^jt1NwzAHk̰ԞAp,#YUБ@~R}G>#?,rJxU!"$"iQmFj>21+ſJ\ MnY.LbJNضk×LSJ7_t8E#pY r|͎ u nEDvSm29xo%fD=mqGz!6r\ 38A<xs2:D&4dբ3X gDjSJgZ%)cϔ|y#Mm.LG\c%%]ei!j Atr["qY?zT;v ɽ !4xAb"mb_"o 6?AIoŻ_3¥>+5d$H'߲*bZJfdns.f - DAx郟Ns95T`&yhK?7A0q㐓̅eF,! `!u/E]2ڹv߼6!hT6}Au #Mg+HB~jFu6T''^p(@3iR_u!F,>~O"x uFFԷpd;QH14X(_LdF<ȭξH-a;A]D+iiSAӺާRp B@v;a?@59lO$W۷?>}0aOv<\/?T%X*ӨN*+ ˎV uּu'4D+LGђN~Xi|k8_ICPЪz&IWn޵C&I1z'0σ_>I>N?SQx y8Zvn=ǡX̟)ӅAu+4Ӧa B8SxU??؄yCΨ 5&`񵎤> |G7a\(nrJo~Z. lH8}+0 @J @wzS=т#{ݹ,h Ƅ§'iP9I^y/B,"3NJEl7JH6s2"]hv˕q.x݅P;3vh;ShmePprM=90>JGVWN^HM 'Ezh0'5#N6U]iO*a5@Jd ihxI٩<]|\ /[KoBHgewb=B]yڙ LͻžYa g] }E1Q.8H`-ߐxdKj<"6GRլ&Эm60ᾹhL-=%2K9XptNJ+90qCdɥ:b)œ ǥXD-YPH`b0u1t?4F r\zU|iO2R gyT-d$Ke#n$E3[6l-VgiqXm#/7?˹E8к"Y#0)[kV:.d TMa Aꕐ-uT|j~TJ:|$] b@3K=Gjtc/xQA<#IRk`[*yh2:C1hyI(#W:X K>K7> PD<c]Gf)*ë?%_ͳ|pU~'45mC6fh8 J{+J= #owlTZ(|{̄yl68#E>7gDŽsbژ`wHJQylv rmrktZA\ܵ-VHYu6RmHs*pbzU%vVL=N.Hbz9<ݐٝ vU^HoKeJfOK53E V,:Zp=wK*EM#ĎHil# "}%ڥNTLf'9&%P('D}(8  }:z~:![,Q9{jyM_)EM.^9Vu-.z.ŷjBxV!hbln^=yUXUB"$pu!%^mLsWv E뱘֩6rEz7| CJ@@jHB,8I› VT˵EտN\l6q߬x& Wl?)'~Nb&5V~C /L  5Ps:) )a+ zK3NEHEͯ Z x}X|ƐwTB6X_gJtIAĆ[^Ӗ S''z"sjppп%ĹV= DS(d&E\V~2*vSҿzPEyXg' Jv OuV^s^+V1D@p粗!  |t7%JGfHZ7;1$R,]3 ݅ezbwBU@Z^z+9#d/W.6mDك,ʸO:d{[s 飠 d6!쓖E8[8yVcR}5t̛0H^qC;V1Z/c$ɻ*-#:,b[E:^|o XbC!C?*{uX@*.|^xBTJcT)/o3ܔ[G?`V -deyC ERXmtb+۵ߕ .*!L>) `?P#Ѹ}研-k)1 %P⚠&s01͓WL!#8T;5UmE߀8dzИ\W L*2*˿X m@W 79{TVR#l/DUIn}̴&kkL;}ƝQ+M.NWN_HB?:;]u@=QJ[]c\5fÀeY_K [_rFXU \χpdi@)~5'WFJ F I)fKb'{M lrRN ⡆aѓu eSL$"ֹ_U"½$}z3 6Ǧ9+DuvOCz:­G%C K 9J&gdf̩}F&y.eT}0pOxBM@R{}>a-+ |k,4@*nc& m1KUyl^xhz&tڞ@eT,ozBMsP1>Wf0Q1>3^)\=:*com`ve%$~LYGʶ'$c!'9gQ>Z~97#y=c_,fDja)6틝bk'PO2p-d w}i<@י֍_w'[k^ 0/Ip3a&7qFfq^[RA/Z%h@HcA8ǘQUϨ:,1/L2;܄#?Xg\Fړ,z)fPAtlG\rt-D2ITd\C5B;':P1VeBrx.ꗬT(!."9ceb׋S8c[5e3A鮒o脼eT~;Ĺg޳A&Ҙs?lϋ!z]nU؊lt_{#ˈ1Fˢ{w ueҭnN^T!NCĈ "87A]yq<"]z=IC]7F}6 @hm`-/Q7FE56ՑBreС,E#|ӽBE*HvT ۂ݌ߓ%j{a["Wf[x=jJl*OԤh lb"ձDT=nX<”5R><㳧J8>a_Gω21Y */B󃋞]-&Vh1-qS,W, q栃rҥYŵ/>\6*rܗ/R'a]C$\So@Cd~՗hpax㥎 6 9ceM|>p&oא !J!7/Z#rpḲl3@**Mdkp'.5\WH%NjXti7Isƃa׼o|-iq* .a><,WH›[]z3P+T-;+Xm:WڕiY(y~'c^!)wcrpV hg֎Onz1GTӥmRd>$ U?9zAl`B!ؔ-{߈z}5Qc烛cXDn6#R;"Q/9=>߫'?2TG  _˒D'%dٽ5VdPE*R^'*p[x;WN/yKI0g6ȑޖSFC q:8/xN['e_a^1ńcM|߳`3x촢tG:#k4T~y2Kv&ZGA<KgmO:>iw~Tf\??eƥZ>ZeL u c[:NHnAsx)Z햓Zho(a&Fȝ^8vJ/ jdNR42DlE&0i%M(${V!>4Yhf ,xhv爲2,ˆ>oŽd]K|N4I0ۥR]&ަ+7sWO!/e+ 1;R[g2 \SB )W6Q?79TF!IjI9:EބJnVQR+l@7=ԌH\9pϪ_Dn) ?_|U8Q6Z7!y* ؙٻ?Fe Z&kwѯ DyD]'B tr<@G\*㲫<ԪJbb*@YLb)8RgZ2Z?zD^]FԗH-Όra3=45mN nTbjR\P1sM.$&}?e%gVL0y(֠h?C(ɐL qmki|XH)g]cy1E s*aՇby?D[bY?[˄OXKQ'\+8 -/P}kn|ô ?0=ΊR[j?RQӷrv`vI:.@pOO1mOƙP ? @]3X_A;-Τ5݂/yXM ~&ӻ߭\Ɉt*%Qdw[̍P1Mٓ i)E4XL$ך#= ԑnLvѴH _WhF*R05ĕQ.ʄ-Z]l2qiguʍ>46qϙ_HpVS xϞ"v&f@^g$Wp b欳d:h z^-m{o[$]Kq/ɦmkBOhu?pQe$C2/|܋mQ*3uO"\N DRg$Չ;Y9 e]@*e&8pХ8QmUJsEJ4Wǁ!N`U: muX '(Tzc!C¨Q0g, 68}l: xe2?jnR٦(q)د;n!kY-\`~ܚL^j#{z$Aюp18U.3u(:}Tlg5#[42?Fܩ#@*ȕLJbR~)8ϛ肅da u t-J8GKJKVXʹη/D؛z/ Ї$F`qVN.~7Nj}j>0dF]l.JͿ(͹R1g4*%@A PgՓ(ƚV3HV̓MiqžO\Ш@n^Am<_s+q 5qo]jjov7c $[Ũ" ˜t *":Cp} ro{- |vEJƂM>zdlPlJ˺nXx}T?R's#MHO_\OL9c9otcg\ч ya ll\yjI[^cFˆ:!=GKo9WSmNz5ydqI?IF@hFKn mVvf#ޙ~gj/_>ȭ5cWDg7Ri( $,52?=.%N?u 1xX<)"{A3d7֕T@@-Pe0WN-ޅ.fvƈ(JtDUo"ww+tgp>Kжn>WׄPSIKgD x(3 aHRsr+uI#{.aNye&=أ3SJLY TXĪD ͧ ucӛS%A~9L!訵V 42O+:,imB~Xy5 zZ@ot.^/kB^gh|yͦBqlG3^jll-tbw!#ڛ&]{|uxؑ 0;`Q^g$Wop i ҳhnd埝](L񤝫BœOBKWS\=yN^0Lm0U\/E12R:4hRT-:|҅*wxN@ _h ߪN=ZDE~dtvlǢQqہAGt}~Ն\dW"l Oxp oDiH{TC$՞\k.GRƦFanM;?"MoWFwP2H[;}5~PzyXfݓ>*}*℩qM(79]ECl m"C_soW}$|k*{= wBk89n)8P unEܳ/&hbvSU- dyn}Pi#2薴osi^ӵg O`/X͎pͰa;w9^2)Hk X-A ¯k:Ktxe5̗H>k{)䨵}ERt}lHW`= _-))+*=%u@aLCA%ZR5-+[O`!bpD9jvQelq*[)Q'R0&hV;7Td!lTw2:dy9@c\ANGSv{>xU∩w?)ҫ\舃`a>'# IbuNIC|KdL?o1F >j#Cm@FU|i(UUxQKgU4cP՟k7:jMh#ak / ;^nX!3s0@r 6/?YVS"VߧIՀ^9 >@;!*Sr93ysc_ 923`]{3롑tݹֹ"`ZU8q\i꯰ *܃`+B_6Zb7(DЯFƑ[r_RR =b%eDrvH'7(ٙ,"^C~|"P!! <;,~b"4C]9/=~¯HȘ _?CeyN2`/C8|eKz.F DoXHV`P[V@=qO  x (.MГ=x]R'F*,hH9mژ]>rvPLBc B 4a ;bDtü8l`_ݪb䴉W-\a×sW}K:ЗLٟjҨeN$ePSXOz+VK@ouy5s~2G7 neHA5K|î br8bzyb5+8"g +rbk>gLѬ)i[K )6g?7BwP*]}:ΞKмsh916$)\_ "CkEBRײ>g[Nܠ3f%1;j'Ql3{dqi㍅8 < ![pio7;::؋~2oK0df)T60:-d &Ө' " *7^zIX#_Pr^q\i]ڙ !]آuu{рIЍ)m|3ٜoaָ?B`éNXтX fM4hk vQ3jFQNmvX.;=@JS&0nz1pˍAPkiϘ0^@zmCJ59᱿)b)GM*-g[< 4c7âcdr= T jKLe?B| 脬sس.wv 4 WоH4G¥ D_wGPyu: YW+fD4⚹G$}{2؋䮭ḇ'~UrDXʱf9%l.j'ͳDn٭6>~6[f0~(ӿW}:󫋚FZjnPn5S ,`tpmq2x ²dz^&D c3Z$ s"U. JθT]gsoG ¤]DAJ1*FKa֝FsЂX~4, Se A^7S^wWB '|Hl!y4u!᝶( N {HAE4}tQ eM$dΰ^>}0*1%M2h 2`1 O?`RuQQg&wiցIjPʻOdzݺ0,Qv`?0sayu4ߡzg<&ަQHX!SްU@}ڿ\b[TF7%Wm馐w+2Enɖ]c\zP꒝4&QScAOU13J&" z:_Zce=aFQjm4*OyO:- #<_OQrWskՍo/t{?; 2Ȳ^>B[$F盥j>*oЫ,>\\ƺ!XQѯ5d&c%SE-ؚ!h@6s\^WϷ͵?f[$k@ֳNS٥ޑGϥÉcwŽirg#b)SSM$/c7FVf2Y.:Ƹ4 Xc Rx1/~DC>9pBly9Csj*oVF"8P+Vh+VL Ĕ}R1qTSMXIM;τrY6j|ºF|A|?CLgU35 .7M&@<1>c+] a90X|| MFܙ&$=ٗgM!}!/'0Z^"ѧ3,h4 0AzgOHZ`&A*<'OGH.j/".H6[>Gaz>p'4%~+nZn G!|n)my{r qRf>l}RE'?\doIRU࿣Goa,&VU.%SdCX) !,I(A ǒy̮NzlzgeƁJF5}g)LQ18(vN ՘$ z Tׯ?G6M4ST-3#{ϰUc~ںҐhg`G5EmmiI0Ǒ$R8 끤EbUa\VfN)Gʃ\~"D^O? * íp`󑧥/=u3Yꡂ^T(zTSiZpGo;NJ&ǯif(`xj4޽$M~YCl]:z_b7NIGUR.ӺcoygӤ;{>b%,1/w-LhQtݲ\^ÈA<3!e*(e1+G>tz{%E`ȕ.H7Y #Sc78 {*q1ۈ@CU܃rSzTl84\JlR c$bOjDrr 52SCh QSHڨyey>|>FVI2~C,HCT#'w<݄u8" 8LQyJia|a I=2ub`iB$F/*(Ch;5 +:cHbo fa?$fj <ǜ 1R4KR͡)?ReTSr*wMҔK;5=QqDvzC66kT.\[^пg]TNA&(d'AM[Ru^m-" nwMy'g$L "f_hVi vu-bt3Uk )9"(Cw%_ZE}K-wA;e(t"VPFwH1> (4ͬ[k9,zKHnu(_/5.ʍqw-=_D~MhMm{uq?`kQkr`aM(?z+κ3z \6xYfGց>\IdÔZ:ټVg¿Q诏pGft"<[a[N͌{ .n͚N:B2Z*ۛ^9r AhdtÚ,ZbҠm tlxN\-*- #Pb@PvN '*F(m:S{fbF%łg!d@ivq:ӆ_|%R9BZOa Hz{ 9!\=i6lJg ZUfm8%A݁*f|)k(Tq~X,"߂f> 8_2 eSh,@G#MAHV8v?odXD*͢}0Oǐ[TZ#D&zzΡ5z-obnuz>E:q/[?=,lt`I,R8 ž#=Y$4}QF--lo $8ڗXdBn["V=kUHs5ąel :+,"$rb K/=f;r[u$c%Ŋ96-Ғ)i= +؜40bPO޻L!®jEQuL:FaE&rr[qsmc)Cu?k%גHVoQhQp1Xj,̔&%hŎ02_ 6AдL0홖t^m[ * *}cSg 8L%ڪV 0ȵVaU\K&8^S b9 CH9}`Z#;Gt).1z1Ȏ`53RJN!`]G`F]@[Ȧ_/!^g{qlJPg=si 6u_0\Qs>k stϹ 1i9=$OLd0 @[)`Ll;(1dUYcD~ 9h S$z19hHĨ)N~ GhF~wGM`2en=|vN[oWXO<×㳅H3UB1ֲ6Wۯ]P[[ K,ZT^,#}ZZRMu u,x$Kaϗ@Ƿ8&&u[sAZz^zK+^xmѭRIj3  `)82jq6NqnDˉ]z!)ܡ8n@A筀y,'E):suk[K^A-*j<-sq\1C:[̙ucF0'.u`=~Yo^l/{:ٚ5*r nT \->E/g{^ 蟵YtJZrL$*j)@qg$j<Q_qy,F41&z@:4ok0fnVՂuZiV2*jƠ-Ke۬E]W5+6HQ(w!Wl-K|EGO7gDs5"/OIcۻ>HK#FC/eftTBTCITUXP%,#3*w7Y9I[.ˬ[IhSz)mc06_F$;*Vl Zl9di&A^f-z=>Pjv0{0K]sqr^/H WѪ%,4&o !oiR@ aNN`^ר8t>i ?{tIT-_^J6ۦ(WΖS78G/nv\J>r~7(ieXY.h/Lq iJ t%y9x_ɒ[Q!KVea"֓Ȋaz:eWjViKeufbrAG |ɈEӐзIǓOj׼.@Y-HaFp7Yޕ,vC/N .fL B5Q E=zQSxEJĻ/g0-?Kf඘ZXףHoU}tzF IU?SI Jo5_6ɳ(:4|aw`s "r.ܴ+By`d\K,Kk895/?{D64*$# JvuHFt(-\t6f{G²l iƈH9|VvQJJ28k_&79`I9φ6=d \#2#%)NԄ`ǖ _C?o\5#8TwE&"JX4<ćEI;/yK%&FHr(w_Ŝd A^_%rfi~l|giHd*F=^K;K { hY!'x~ ~c(c3"N ŮڂF _#Pל+ru-AO3 +QD<\ɇ߭xP.DBU60$ 0 Jryt`7tt M_ckfrε3S1Fd➙7 ĝ 13EQIT5[yD26OR{nr0S2k&SGgi2(M0Y@.b_ Bj}h3VҨGGhJZ,(9VR_&?sq{}O#61Jx.Jt&~ c!@lCbi:Vc3HY6AߧXӇp\&1wDwor j8"RC}r6k'0ӵTlQ:w/_r2BV2]Gф}CS LThW >}dvbe̜NLV-4aԂU5* P1TErFPIZ.+<U3u%%ܼrw -&N!& 9Kz->ܕ &\]4H@;:~Ocy7m"ťP/vE?᫼R̦֜8yf"xr ~[gT'UbDyiP 7-UyZESy\N|L c8jK} c27V3Φۜ /?f_'8d"{Ï&;Wi# 5d,Vwz0cCuhR^Kjt9 5]FIȄ'u\)^ŝj:F{#taJ fz =EH,cROO}

O={q[rSFo8QJ_4%Ai[DvPtr7S^VRpa'vEW|o䴠WͶ2=CeT@v(aAʈVm4E1nr&;袚TQF'; cũسY2TS]Whol`!GDp1qBoU߶g62IME˃Y:#ؽ}Lc$hߏC10"G-Z` pZQFHl33% xH2Y0e/nKrӽbC ~ej_.T-]VI$OB QBLVEPahF6m4RTN+컘\xF.Fm~q#/|h@DfQ*_Z,Lu܉5 _j>"uʁqcՅM%c?!!f<^ ?~!m)-ɉw D!EJ6ٖSgsjDŽ fP(&1$pw^T޺F""r%`dΰ_9#ڶu,~0HDMl߃8 :2yo"kcD ܗP 6$awߤ٩Gb"m&5 X8d];$|2SHقTYvlRj9 95)=PTvI_GSʯ'qhhBP6%fL/4" v%(Zbq0_:f04_)c&=Pv 9AC\ R2.rq&0VhAO\*؍pyG%p/KHrѸ2EvV1XbN-,[ CQo- DhAi\O*d%DS0*!G(iJqOovIIǫ*n-Cs&+o`HJ#[Cv^Q,g>PٯuS,dm -%A%gz}u= vPb҉(4tB~%oI-OeSyך˒ODfnLG K{eS?`sȍ5V SN4Q9g>y?{c*qga1@tIT mT]/KBy|eh]EMQLNl}-3 ^Z 5b.ZR8&⒬4/>.ߞ=9#`-~k ~+U'3ޤkQ5O' 6݆=0̃A#5}Am=9Q]P$WdLƒDH Lq-ׄӶE 1apqnn$fPh/Ͳ Zh+:7෣:%Q##5JkFvhgi ώ ͂U>\I-f3p=.nDv9d_ؑ>)M!LL6kY6QNKKq8eV RhXl=Qys|#왤38z{Z׎7`ój2@E"tsJ(/vI1HIn!йBpD{B1ӈ&t,<@zm27]_;#"31suhRGص붳Cg&tmX#"l| .(Ma}" y33"F<_ NZi]$>[%,_bUftP9d 3' Blr`$nX$N ^p\41HG~@=Ê篠Ǯ,u9A'PCw==ま$Qn3(,^ 6[ sY|jq ~IöPh@i9Z(7zh|ŕfPm:oT];Ƚ'5G8a-Edq$]׻5A*("D茎oIze)z m8GQ7^‡Wx)Ko%gboM<nhx0?&*10+1 nElˀJ݃4vS ҢW/Zh6\#SIK ~viWf@ .[bwU)ahL f/jzAݢlᑮ9z,К 0o;voI>a84 ߞ*q".o۞ٳBl#]ITqa >P ZKU†}j){),A AweUO&]6 گM9V,)n6:<<ʾM\J`sNUHP/comikD!P<< ;H`([Ձƌ3 ¾8: ?뵤=x=޼մA,kZXb[o78Ba#9\lb6p($+vu7o,̘)YWՄxk\/lwL4MHiUJ g/cBvd{v*5ZSҐכ0vzrB!%siZ^uO`y.J0!z|L;˽FF2?ǣq q_~h3G Уj/i LA;J`XQI5!)42+9#x齗#6aFvzfJU'˗)Dzo1 (}ط.e]Wf2ڬX `y͖|fX@s KU*j5E ][n8Fzgj-]U!%1mx%Nݤ-, FS&ƉX#|p8a-$"gx|-Ӻ.]H3bU/s"qLsm /f.\"'Qzd:{HC|81ܟhQ׆vKXvJ pI^_چuJ(vMYhFVPlqJfL . (nEq*{XK>9X}P&& H5k >?duU3@o OwlǿЄhyDY:M!rey55^?CApI?oʯl'3Ƕzszg0l>C:2gJk2\=eNq؉Br ZW>Rc4v:.Ps A Bx.5xь~U`e f^c6Ɨ!C^t[g wS%%قIFWdMO&^2?ڙXr78wYj;z<J5W#PO]Y Hk EWCƨXym,Fm ĤS$M*9|sސ(]D!Xd&c: ɬUj0yTljwJv׹((<8N΢cX .a 7:+W Xb4غ9Il^ssbR '>D٣ g$2+g!"/ŏs_f0k,Vvr.$g,Bpr=plPg;}eQy/7?>>﹜ 3צ]AqAQk0\çU[Zk_BXohb j܄vr |$^-` e#q醌hME ᶅ{5M 41UL.NyVwuxES<"ʽCbâIMc -TKgQ#$MӛF#~tB7cM]z°H2r>DـRN4x}ſ+BsuyH1~߯+0fO!F?!k7aR&m*;qkdTÀ^@b!DZ-4P.qל.E6ý{v'eS2! cTBm- jG%H=Ǯq9kzc!C"LcնU*Bu,N|D_m}n!?9c=zy= brO㪩wB+n0ohXu]ղB_7)R^õdŇsml{qtH^EJ8{S"djQދ-ݺwp|PPqz@' 2hMY"M3ofӛD%UEPTtһ.%}eQR0ծ'5,'Ge vj;n $KV]ZM.N5+h~[ 'VzYT߈=!Nj:lw ضn 'Mq*n´2! Qy t-h*ȩn6;RGh!8#*D<)EzMqi SV{j{">4,bzN hh| ܛ%fFdm7r7[D+ U$2D\+M?Ed 5yC׃7ujRᶿLჹxU. KFe{?Y{>oQ.@n~-G9 e`?Y'Ōi^jMg|O<CבtY7 J&WE@ AO  *0}4Vc@EzA(,eC>v.-/-vt=8KIfm9,]*i@}@إ+@b܃jxow I'lo}k5~j L@Ґ) ŭQqN78{:$ɴ!T.Pylx- -a`B 6V =,D/_!xh Y{٣̷>TH87aAȈv+BwzrNU*Yf#ϲMlN",T,E~KRъ{! f*m򭻘#vH8d p1> _?+A=tNbO{~ءQMba~ȵ&\mF}y%XIoɋ~TFLxx=.'|_ pBQc-'E י7=im$C@ 6aʸ3>ۘv Gl{u]l9?\@/Okx^ ϧQ׾Rb},=n/w]< QfOcꔽ%!'IkppvY#-5)2Huv K>;Yht$jC>B~rP?3*]ZLsixhچqx2lKᝫၱ4٬F*od0D")blFZ8?(NrTP8 ,e&BV2%&=>G51擢yduap7VYOQ֡lȔ0knwb^XJr;XYNQ9&=%4Z1ͫ?IØZ0! I p$qot6]G ɏsYWеs##Vx؛>iX`/,6|HEEg[ڴ s.(|cle۾,΋[GJkO @? e@liz%N"IzR,I"MᑕKKI5j{E$є9Tϡ C<,; Usqش }2*:!cw1+ *6&; jfR_[ Tv WBSJXnkɶS;09'ԫ`vzM'doUDjm{8"=V$`,DI xz)sN, QZZcwmoeVՒ,2S&ѯ?%brE=?nG)7f%k$mqӎfŨ,x}%|ѡZRߪRH:G˧N=%\x߶w7=\s;nNN -x0EEꩈtأUo x\-gYSXJA Nנڭ#}D=*\J@HrH5Ǵ8Gd*3FѰRQx)$4d4Z,l t8mxg"y!rymy;4γ(vo"qc6^O&9*a%eo?W=Vj!?)SJ9X:jqsGK`fMh)] CX.tLU ϧixtU&|_*2Ҫd[+)=[Vq isy!^ƹH+y0}nŅ8Wfё[dRTĢRh6_ڈM2 T םU1Eד:J* 51JI[x"3XvU=>>nϽdK6vbnWwi`c{HeOFi+1Pi]]:R*Z*{bwo bVjGa_@x='$pAYɒ5i2Tw발}Q#?G)t&$l%ЛϷת>;nlRTF?M&)=zI7ilx >4PH%>\2vX&yd͞1ʌ`v?1KJqss+Y_O) &2]C [!d?w,(+ *nçW%ʸ(<,4N #>qΒ5*vȴkjBFK)7?mt ~7~>"t)L^iQ=j:ʣR 5~jT#,皲('t ֓0\H%u.﷠¯JXHfT^Z4O@ #y ^w]@>9 N+k0_\by(9KE'Şq@ x32de9Z4H5X&R&h S^Zº] ;Zb~r5dǚ~¦7 7jl"IbB~8\`@20ÃICf;uT ^Muu ?杜m+0bkD}Bk.8){JF sI/zA!A8{gKz33ܞYT<`7Z@ w_bPOҮb,oye`DYMЖ=xd8J.6CePxK s^6Xx ՔvetIƒC/`!A}T}q|[cf&K@߶ cz+䍖?g ]{\i@ebR|װTA=hL{j\z1mFV?a3&}53hjd5,R`THOۊIO1Rp?W8L`y{>c-xRPw7ԑ?E z$;ؘWy/LPN#O_MT3{35=.٢՟V|SxS>`йխ꼡)p s`x3b0$ *p@RǵO6YHS%x~ Gt?E>/- Y@|FE۴WjݓFA'+(w2w FDr |mxAVl5C_]ёj&XO(vlٰYaR|4jIЧ쯩 ,W(ʾXyؿB!s yvJERE=K&Gi{4od{>WrUWA'ɾNR2$OP?+9T t[C SRq㌨;$qV}1#(5VdZc/UjPR \ _8:b%)b(m)瘋nQb\aqa'k\$tP|r(Hנe'fq*+dp/W + 2qMǏUOQ$9-4-TK/ی\A3I6ƕ > '0g .}TQ)`0\#t'sjz2FM@Ow4*A#0 LA4ͺ>BU U[ HǤ#eAeJ 8:Am 9&=, zri{<}ȰTB+3A7wWlqϰ$Hҷ y*M`ΪBȱiIq'=z'/<׸|H58,:")y׊f촉-?>7 ۏd2X0[+#pW/11G(ZDC$`WgLhh /OɳQ/^F6^(kː ĹxO}**u63*5k>l&VF|;eed_sdr_dHQ4 !Z])lDzd; 4dՀHZvbQbyMUi|2?5bdUȱ Zqrr/ =.z?H6eэhK. B|i]v߼3X:[+x[WP(OmuK|*֫>Jr~g0i}9-Z;\-}umU?Ҋ~<\nA:sI18Xl"`FLô#̿HS^,i i:8=2tb${=XHK'&/D|i=,Ĭĺ& s Ys/ [Iv+܋mC9t绲dCu HN9- o]Û24Gi Ț̫AIRE=^q *L2^N"p2<0h`^JfZ<|:9Qx=큾Ow+1+~0ҋӝ!mGy3/KȤ.6/Usj|<rc(9OK^S9T~7;ˋC)i =נ c&zyie{2H+Bnq1& VzTݟy] 5sܤoVy5B 2w?8wgcyN@n؋KTOc;ڻ88h@RX-"]a醪AƑZֱgoD0 ͎Ua@) ||c1ŝ oEН9ۆEG=rH'#ߦ60ݶޘ I+}>!? >+q+C_R'7ׂv=T⒡@J!?Z#ӧP @$4<:)2Gx8wx  <~w)tKzc`\<)r4} 4MTF,=ط5nrceMhkڝ QХ &z~ i2^4\?s g]73k[S8'OϘ[q:{]]VB>*?")F}b6?jEthL)aU7q3/d eoZZ?\$WM^Ҿ9q!Iψƍd\8mB3LތM]~W梋 AG+!5k;ƨ$Hm\ ,Ւ*4|b hз d78-1Tvr*uK["@$^!tViО୒^VRm^LP0رZj7S`'xG ?^hE/ˉ/*ؽp6lԹ2xͽty~: c4c.b"3G`{)kA!;s7T]-z` nŦ[V@x,AnՍ'q`{h#XA&R|jOU-Mʏ3O2LD"#pX0Jox?F%k*J#ja?k{4x!᢫yLG-~I'NHEni`s7(G! H^#O]}>ߡ~Z܊SТ5npS^"Zܠ:HGfWm[\B;n޳ndxP#PX `HT!cb@ۄNCL? ,tӞVӕ . ,w[BF/s)'FWI_5Mپ\$%F^+lYzspYa4NrAk9Lh$Ķ5>.@Ӧ`^#C1Tk-hWEaؤHdyŐNv1 &YMozkWK"rVk<~T ,X!>٨ H"=cP!n- Uܤ=*lp[ G6A)tnP_ZyDFysKn~y@ |KL/I/)g;H`ʱ<L."N,4J'?WE'NC;=4% yU3NBW#-8SqHn`(7TjVʅb3R*S+AJj#n,I+|F qLc{NKvv7ýֺO`I6*7;c]|tq9$k-9Pg[:zT2ۊhюy$E !rnAJr]J2*,S_FW+iqc(|Tzwdw73>u׽feEMJ[@-o\œK͵e\_ 1z1G(:dpZ>C(?OwH0jpN[u䨙c@j$4y\Q6jfX Ӏ׷Z쪈G„uGMTI]H˜Pi]oǃ|hNrğ/>?,V>s 1z(kЉAHjIO$LYWI=Rr( 8=i^W_:'h~m)j$ʸtnӡ]ke'_=+@sdj6זT:>S?ݳͣQwW `c9"k #Mzt'w]c6"6@K HoEn0heq|68gLrZc ||m,(Wڀtl&xýGc\E6maUE ԍV`.<7gD7~Q{G|zH;+]jfյ842yبۇI9Xy.jKmxłYnRt8ȋ ƍeJn/لq,H 3(ݐbmX&E^iaeyjQ Aܒ̘r|>؏8^du}Gwh+!c|kUPeVT(aRk9[3`{#7 1{lu:;+6GߡF! Ŕ2C<o=TG2 *E^~Zv{{^:pa `o窛v%ݸTb{eXFݍ꾶DRR:SeU\uB/2rEO\OR86 cM7\k* @xLԃ|OGaY2Qţu<8iqPSPG"{jY9ƿ-A0X:m%WDr%cTNz3 ̥ҶnJI/48i5P/c\aь? v(i"V,!Yb'{2nk!('F ?)[B/\2ڃtSI3t^JTnLKl. 2@GnX2fGeQm0:71 l89IvK)O T), d;CJ|J"><@&1U SVp|_>?%Ur=G&U?TP彩< c 7^CPuXPc_] /jUǻ: Ml0:Mt42ZZQO;l2l[vYؐUƗIjV{ae-UJ2HE0r v#aK g;[n_e#;ݪDqxLC6!,2]`wʏ! 7S?WgZvi ["Wn&72cc`Qmt@ ";$% Zd~/ ft~¼Xe>oӴrӻIe;犫 K ) ³ r* =Nr)Oz4R^~:??fhk}l1o|,x2$1l?DeM9WN DsFNXNTe|Ņym?ە-6}]LD,l:1wH8ٔ#Ir oV:{^ "&UbX9Ovw0L&}u jc#~AV7fIC2U r'9!ԖBNM':$|}w 0.&w7h˽ h@Y3/C᫔>^OMl;Vc$B|:υG'#Fҷ0ήͶt,Ĥu _3<Ǟa-|E|Ba NvNW^E^΍3Jc_Ks8@Hn82?$A^9NBC1srX{3QH>FÝ[lV1b,s27\äK^I8k nݹ|PjT6`xKk}B*:Xt)pGx]d7<>+>=XtC=͟|-,)yRs<:v5oeCМ;F$[8 b"R3OKח^-)g#?e`#:xxIẁ罭[#Pϫ6 IO7i[,4Ii[eP/\Ǚ#{H1*&`b7d2fXd!;p4?;8ڂ<ҹF(}C@ٱ#sl4"w<ЊAQ@TI'&;1Z%Y9bga;#ď< g/uO/Xs[ f]~ASZ\b;b (H!{fN>#$CF 2]RMR[h(W:$(ֺ [+7U:#5<ёsɋAYclx~ۓ䎫ʊszyYxjrˠpQDvU}X ʺEf /X̩?)3QOi9 |ԉ"f~0"홹"ƀ-wӄ~sr]ϏsJSc)пm Z &cL|US{f,75- iN9ajgQYo*:)|i郥:S/4KBŭ>䓍%3O9\;܎!BaQG.aCT,O[]k07< l&ɢ2'K/TK:XҀvLb9Xh삋0ŸY&]ng)ȿF'<,".:+97C JKEoI-Xf%wT ME(I . (V}{"5fׇ_#vVޟ S=:MRDh(:zh0-!!n8!9wD¸ }PնV ♇( xs9KHq=Fu2 '+ć,+;up;b$HwW.9Ri 1J'S/;Ժ? C3Bȍ!B벜.>&@z4 G=/iVp="Xri6\6/ Q 9gJDw*;ԉ~0.zɈEkkr-A3MM}MUzڣS]Hd[g4 4*Mg<^k/O'J\0yFʧwwdby<n(PC<(\'lX^ݦXu;6~QV+uVTrTZݗ-~.elWo}LID'mbob {)` XI"uŸN חv,!2[+]w}-5+L{0*WѳhGjħs=4+&a@5 ^Ocvd8_cJ]?P6[U;Pn\(^ \tDCtq Z7}h-ߧu,M\-ڏo=1Q ncՌY^F`b|uN{ӖQW.i94g됖C:oQ&_ qQ6.dę508'JHx|c%Œx`G*[x y˶=+zړqGР跡 Ӟ2 H卓y.bQ UJ fdTctk(b)kЩ6ij97p*>vY.V~;@iIŀDePNQ`ڛ. SaMVp'KI4]zHv~E<$At,ِ]sOrZՀx?l{\5[M=QqyiB=J60Qc/W^C[^=fpgx"|42>dt3tXt88Ϥ%s.ɏ#v,)EZjL yVHv~H6ܮg ѦY7nZ<63A޲(qJǬlFX} jhmɫQ,-ʪb5{qc1cғ"AK%ZaCC;0',و nТq#wd8F8(C! k1ׅBُloUaVQjv>;QJ?ZD{Wm'QC-!ھfI@(82B4Õga8}tۈnf%}bÁ3}[K FrVD1?`ڡo@?=BU6/K&'#Q lBѢDCŸJ$+DzQ[YD6 ,"냿ű![좿hR0s<=>Nr8"2L]Be;CfQ̤YsY*+X.6:y{tOiQGA=^bE:zb<0xBs戺҇ICo#7A%JԱɅ=#t˜ k; .-vmӰZ/E{l7u"U 9Oclêhos8aj$XN59GG,q>:dsOC!`UÚe w*(#M*NbEO8q|uRa .]DHˉ?=<+;/؟יִ.F ̖L5   ~Hai178Lzf\+Ү)TԶZ2pPg=;1v}v_WfMD~ؖҬQW;uWRpVS*U|$p|OMˣV=dD-]q<%:ouPA借6o>pXRz9_"i7tG9Ԃatԥ|ÎҚK%K賲 8ߜ ;,YqƌR 5ubnz栣K]0-Vtca]q|3R@R}IΟvTKq*?ކ >hW(ֳS9s՛%yAdK?QMȦ%֖,HfoWYF0 5Pp%*vy^d\l!nJv1Zg)0P̮-,z\4[&D5 X;/V7 x.L*Xbۘ djXweJ[mFqw qh##$o4.;^ÕyE:kk|GV# io?e;%3̅2 yI;4=޵:Et1cc]E*D@8njfzz,8~t6BIj "vz%"߳kG02jd&X$u;J7/aAy*LPOR>e?/aМc!)Z`Im@ͮ1gԎ=TUrBv*FgME5ڝVZfG;Lug ̇Km T; oU3\, ?B4+q?+q9X&?rWwwL2",lX:P@dS+P6}o&oa!C'.mgL*xFIMoFUr@((}1}Iz SjËA|+k Kc=35pDs(XH2CڤiOMva=zk&_"//Z'ƄMt%YڔFAȩvN.`Z(9VU~~윜IļWBmVMƯ$|W{Y[}v}Ȗk-z'+bS"]Py-tƠ-#=x1,xW17+s%ts|,[Qsx.2\sm1S0l9!uJ˧HO>).LnW^Z갃E/m ]rV̒YVu`0Oۿ;1+'>;XFl";;UVRm 8r+pD0nPzP (ob q'}zp)LV}|I$c &-j$ uOଈ`}".l!Ehy\E'Ron& E]msV׏vBF}w%۽gY/p8=#+0I^N{c1L%z4=* R7I7eEe ֠40=M,/r;ȨM"7iiu3tSpq5K "x ܒ5-'Ox^wt=NmG~Xܛ2|"+dMhdتLD_!^D.\A`Pn~MKpq[4%HTþLhЉU2mQYeCٴE@ # F[,̞lo mzs1y =}xϦ [O]e0_=q\R@H%Q"O/)o:p<61KYE\`*>/bth;nZ8$J!kZU b>G8n^ ʺͦ<ߺJ0tp_j9urK*YY~4ϙY 9@<й&K{} (js0JD?J#_<ay MWu(f}S?E2'-P&@0TEۥ wE%_X1MP./KMfl}Iܦ6R] PexNG$.I007̱3i~$n|IM5ܶ$951uw k:JwLIgn,Z_dovD7SA>\G,J i*">ay2t4'Z7ђ2hB,8c9t<^m1q lBC5F6GxnU;M's:HTlӪ5 ¾ӧ Z&j)DH4Xe(Dd+؆C:8[5;P}&H%̼t{Ļkpcz/_R$U*b}`:`!g A7|w'ᘩHV42p<њR=^9rˈӆo$+=>~`rn=Zl q~ح.xX[GxFHY/HuqbGFZv"f>O[2zG4δU J]:$$D|e DgSD Y])+Y^5T`a-Lz7ML^!2&m μh5tqyᓱ"J Fك&'uGEGH '2 bO ΀LS^JN]+dNaSRCxK]ƟO qŦ2PC0|&Xrm7aV^8mwL2vޭJvop1*ml_~]9c.fhp.+Vg|7GҜiOk"U mSSlj1NjrMբ3@ XV oO .nCђ/8oƴlN R15O^w;\O5oe,&-߆g+9eK!%TlPM,T5KuzULf*e}ЁE@VWU`Hʿ5ef-Ev؅BSbΌvD/!tC ق7V$ w6z9IJDn] [Ic(-\e+$c^6dƪA6 PrUak![koT6_֎- FK"J+gU L_UӃfwfǶ+?bHwn/5ȿ9{6xsWl\K z>Jxe67=?4D{P)U6HgX4]2X1шjљF` c/hmtjt !5>p@{{>CHX:&v̨ŋS%YGvjUA՘4sB[`_]T%@PBJ cӅg0D=\O8)W0>vN\p.9"yȜi .`/"{iCYE(Vşꗯn!ѫZ]TέuHfUvMw2K:D]x-xxaZ9,U#?L6K:M;d%\S"|TlxL_ Y&-33%}#[#&]& .nd:5z#L"Gl WD~Wr:h.U(<ۯ:ʠQ^ 3^MWdP)WZ[jBEl"GC%BLN`uI ex7i҅ϩ`KBIl?,or"YYœR x.r {Pv֊U$@$XΨ(j3g Lgȩ=yތmAњR,&NjŎpP jzs1 :$pwgjo* 9Q_3ه~Q"УEK"y@| YO.o;s:;9TEvs~ #ȑY6;˼on!|w\oεK<||Gh.Kt 2\!$latT?JTfZ1bz (*G-APe|> c^cgYXO^[ⷦ ?c5QگVmnn3cɸ~)Āk|PNwn~pVzՋm";І|ފUܭAVtwe+&5,> ;Р"%.xU:-:JlzQ3"\}GWwCkpu1/T D`ЫS;`4Aޕ`ЋYſ=EqEǠ~HVVP pN8Y>~cHh"+腀B =I=y/F zSie /:i5F* |WȏMD@,ӊ -1[fPbI?nF @C3eRw@0FG~T?,ZW3/}RzH:*#&@ t߮|K(ɬwC4'nJn@/E58)L^cM|@ǐ;Dmncr<"u;Klob"e^ԃiiX-, /,(;urW[5^z,WYux$YS+`QFg\6^dB>;yٺi1e]{ϩjwr ^/&nd}'TbI 6@e:hvsUC^[K)SM TĨ"Tv55]?s6gmLP#jw &:者y-sw蟨-X=bt%MAZe~euA1{oOSJQisP)`]sh9xQcߑ JhN"Ѡ(ЅHRGU)~=KR+Rhs!CzZz"x$tD4nv?c y b5pr9P)^7充k'% 1cT;vX֊DBfӫE)I*+܆8ٽipR!fu.`Ώ\:ϗ)t*5i,8~Sm!W%g/~Rƒt@>,do5!ѫ13Ba]-R1(@W+;/ 3@j F u~T1=@ro; Tq1 }Or4?(tN6CveʫFz`f۠LRE.Gm#nJ\qR̛v O;Ŵ(c&"yNgQꈀtڣS@|/=gǐ@=U [8 wJʻh>EeH - .?5`" ),{pxN @aY^ݡ`gqr󈵲 -ӹ|yNlQ;X=aePZyNM".뵼Xm:lt AAsqLaI Hs=Lwdg5j(EBێ+sW\0 C׮O9L/?EzI3U~iˏed h)}4>;L{{.2ķbU }70[g+42MbgJ}npN+a!S['@ C 'oGD=)‚]f߶QgD]0x W˫O3H@m-$El\ͅ".g 2x3Fbj3\{s'MBSHEҟ ,'3wFjJĊ>#H4PS;s n7Bb+$=Ĩse99f{hW۞yu l9Tb\j2H4A&rKԿ7>H9G!kTd m@ ӝƬ >}[::[=b3,R>`'~)7Dg\-MLkdL̼ؑ.7]bu&,E]Q,v DߪD?;/?oWMռc [? BEAW7$)/&5(TK ,ڑa 'J 08-`L jBXRqt @9$Hk ;Ƥ'WӜB̾iBjm>==ωj1x`耓6oOV;XxxJbw,:+dFq凙@ؐԉG}}^H$=ZG`"*ʁ̈́e;8va~4Rnxn:ڧ:B28>KG@xk{"|v@57LDkWʲ035 fw],TP3 yǺ;2Jq/޻$swg0і9 vWnT&?6TIk0`I 籫-j;BNCV;7K50|mbh'z1&2WdTPe6A,z̒(=pdDeDD}<9? .Hrld~yF5al9Fgs͡$ Bq@IgGɭtWۮ+ݽM R؅zi5yK\h F|Ijަ`E֛pP,K~ P`kv\Zy0f&@'\=vNC%|;N\gRa`bH63E9C"Q{ ᬹ5_rbϠ߸C'*x,^Ih),wkvq OZ;mLŧA'|{Y FPݙ{M{p>{1£+(P1(7wS> 4 WWI˩HFJrzNA'[u ǣm8|6樢J&/HN6[ 0!z~. ~QgHa"ʪT#'\{ṓ{-Yh*خbM TEM1V🁓0E{QɌmtq{սEUT_@UKzqa"mE$䊗?X"Tx [ڔA^ji.ׯ>l#Mh{<4M ^~PIl@*tbf'Z-SVjhy _&v [qGH7,qDb"Fqt+GΠ)) F:X&s#X87YT :~NW^-ٺ}}EaHzفB[7LR'EQ40'$w/89I"QёTҍ&I}%,kwrU0+~&jQ|3I!.K9f+r:/fQ84Z2( V(Zύ/A_ט.+'{ͥ ^x ث0ȐUrˤ+|K3%lSO7v uzumIJ֡{-jtx2kk M=+̐(;It9IH:fH Cr4Bx:F_ OMQX\ck,J@$JgZSz9uBJtLjb(!rzƫՏ+79x u}9T'`KdlhՋS罗j)8ZVs:VQ/dT-CG+`Rs\aoǖz[y~WqGѼa5;ƻ\CdW Yk8ަ5lHtz;8Zt{Is_` k۴ h,IV#CF5yԌfTJɌvd&+Ƙ E 6t9,q/:/|&\$ɉ +X@G_ⲂHnB|f0`7J>{9zvcwmLjGD,|rq$ 2=2h޺[%h6~~5wo{:kp@}#?Diǒ3%{n$kܖ">ueX Ö n5x,P  x/ E*p pkǹzS AZ>)/' rcog-RPs&Cp=WyR)QySd8t?K¢5 WI)M17PU)jzH/dFFcZYTX᱁t ۹`W~LK'|xb3o94'sNCKcc Ge`.9f [%%xW ԱM#̊*[hϣ9uՈ?yvrQJQd$_u '5u9Mo";0TM&NeWQ/(Vzs)Ď5lTV/2hM'\u?~9l1 ,qlO:/XVMez=9i+iM xI<ƋM/KPe)nD_EgOZAKZL> U_,cZ"a>/hylf$ &?oqh[V_D1$Y3,~t ``LQI,FTnyQbOQ,3y0*l/)&YY"`},9"6f1 KR֤朿cG?Va+>h!W;W$TbW DٿWf-s=k6ؙZը ,J}vb(JiU+1;G}b4xڡ}Wgt[4py4)VU{CcQ* M[]X]ͽvMo.ک8FxF"=(3LҊvz?[e?3-,{H 68W`x)뫼[a;qU/}$z#Cg&,KB? : ѻ"nQN"Ō΄sXSe[= y\c{lep!IXC}Y{ ciahɁ-oft2< uvW{Nb]k5=Pzde~^f*>EE{굥u(9x+M^3ͬݨ'yrmJ&_tG6FM"Dڥ3k^H NW+hNp̴mi :3_LJ\yBtTFpGQh&ISS7>0 hVlYwHDr 6ҨRjԙp)fuDեijs_V@QNy4H 8ޔӽl8ǍvnEk(ǸbQd< 0[04aq{-V#%e%H ^2l6lPF 0V Hࣇf=y䒅)%W 疅V"^{?W+UB r՘ nQ*Uk@(OZ_d$o ]kҢsWXw >jJ'E^O,̘[ !xƣƒ9)-f ޵l7oS1Pa͋< )x)FD31l ֩ 6Q'r@uQ%j+0<4%bx awt+$#噽'Pm&/M4"hȜk$@50.4ՈsH?Z90+]Ǵ_>t&Ph aYtuMd߬#և)i gRG;9e$"6рSLY3W`4e7=k$ ,%dw:c  h; KOS'w ԍ;u Ai H $1Ewm=kԺ: S { b W>YfkR" h}|u"2O7wR H(0Ivu]O<6blZ":^S \ {9w 5JBh1ю#aJl Ny ٩Mv4 zloFO B(Ċ]lһ#2ځ4`zn԰517騨™L >K=^eoclU%,>Z ,@"&Z% 0ı~gVcbee*!J(6S;:pYMx('ZJZDGakx-~t~Exsg: \{ "8 \ |:p`Dxw0j rWrxg@;ςݻYpbJ~辤)ǏiJ~Bg<9t/8vX sߴ\I"FYDbJrlhBcÄA X/~l@p(ԭڲg2ߏ`^AQh[J'X5=i@\ϓ=M"JSdMrȃ)oqNCy"72%QX]M?`͐:/lΫ sN9oM\0YуB3bO7k!_y~:fǟgr_|;:7sG 0v2&vAJs>ꈸ5R tbXF̐m߃Lԏ+cXgĸu9:&uX+!P,3Ѫ*!D Cs`)D.թ',Ҿ3,az>G0ٸfWQ^!4ʏ%n&KPYs껮Va2&esva'/I.Ve#;\ݮ]"5^|_24V9FzC<[X$hnxe;6/?#yJfL~[j*uv7k@|=<[ !m1ơJ`#l~bd׻q0T"ni}ݖ5(N qA xP;4gD%iCBhLl6 bLp2bn=[_ĝ3w5ݓQvLK 8%N^7[)Fk l:6!ɯ~xE"&ɮeVx."hHF+:OGf߇ I* Ȥ~tLjj|NK%{L,aVчbǢ_fvoc#گ@<Ew6dwK)zT<0!!IkYs 4A'.lib7E31Pi Ynd<7І8z 0t&97l@?4=*`8MU6\`)GXr _5NKT-Hn tL>m%SPYœ3ɺ0lE5ICĢBBDOJLHF^z1Ę`@B¦FMOY Z-m;΋}c~$0(tRm.H7gBiRgXȣ&-lک4I_biU5֎o]4kvthb_ws3ko3eC.ܝ9`Kc\:\J߶%>guzTXJ4qc%6j]A&"|׸pGtC}yӲɴ^RBKй'A&dYՕ׷>vJ)Sq8,?f;R G=Wᾋ0]WtjhRqԪ@| 34,~دHFiO>8a6ь_0B[SᰋŊ Zs#s6UW ^ JmOE-yewz}u3?I;9h;4AYztC&㘞B,ls=S Mg+~o$uh n& `T.Ci٭LNd4N*A![#V? m٬Y5owl8Gh&ALLstLZ,(!?=tHhMG8< fZ@Ӝ>Z65ڱlA-*!1//㍫ẼoA9-!H wZ q.t#ʎ5TI1YXBI_XUjXF_:M}zɹ2 v܈@*!11J"\[A"NC*nb)fY5NZpwC O'X% 4V鸿Nܣ4%e[xg4^o5VL9~X ,5i|9~uv,1>>\ɛuϭg@E2d#ឤ_ 0jV6 >f'v sy(Q rqtu;h2h(GvI%*Xg}ӠՆvV+dWM8wMa?_AmÞ4`>RQ.Gy5b+S{w+vYf\ (EY)qQZ!\*M h\'5SSp }vR%tzLd!)Ġ'0=6לv,ye]T&&eq~--/22j6MJ2hoySׁg{bp#JmyPkzQ7n,1NpsE.]IgF` .m08JQR|۸wmb!%V7:G݁u(v>'b1fRI#е>[l(5ڥ+0 gAmd(5&+ɞtz+r%$Ϳ8ڻf,byuCQc%s2k؄%AQ)t*\AC0Xahzl2O1k{l ؊ӗwX%TSu96}pYr!m5 Uc *C%f;hb~C4ك]rGRFպWjtk"YO(ZjdxNqJ|yPߊ"y: 77t65u&g/H7kD>+wl\ ڲ.)C33Jߵ̘~ Gqt)g[㺹Z+jݱm\JDL3)s"7Qˣdȣ-_<׼ҧl܏O6>Xy0?rk̬Ag . %ͲhMcU~)4K'$s ؖ٠1!`)n{Q#3P9(c3[bjSrb1@\)j} T7W2IUpE$aҵL `r[&]iU#V`W45gr5әqwB׼QkE^aR|o'JkTSWkiAu8^-F|N/DG[dX^]P>Qޘcy(KG\ ƶM "A19&bǡ˞?S wܨR!^`߹4%+e:JqDh8 ,7Cޤ>*xXP D}dV @!;&RURhɜχ Fhg¾[+Ok VX=(+H}ltL0;P$*gr+i04; B"sLC$Jd!q8)5N) ;4q;5Bj$m0Rbrj~?HP}6=Ƹ1kKkPhtt6Mif71 xSw9 Z=Io8N֜eBPDlaX0V`X()Qq|VmIaծANGxlG:j66t~r1a#:tv P jnz*TGQ'}qx3Jk 9;̾{uVm5("G$Lп'CPNu Iy:^!!xo/g.HouiWL# aZ2_649rؽ #= @\qMOڽa dێKg7 TqZ%2x+ׂ#9M!!&PsjԂEMw<sMȿR5+X WnYpU[-HDE7J́F3[ʙ ؓ[Cvrߝ +|(eDU4:r!N:iU =ǚ0diH@7BMu8bY }#H_dϞyuIŞ,ɏl5$+5pFS0ď]WWQaw97{ס5*8m|ϼ꣹Qi>>!6ሔDyDvS>#\ gኹf@3|M,qp01{vcZ#xԀx0g{^#n\89dFYyFAZUSkȿHbw1)v W;RL<6/ lp R뗾bd-Abg,32]Dl=Ȯm8< x3XL2#z?gg" ݢW? ۾G3؄VȶXeöb붪Ԕ) EҬ%EH Y?Fm<$du3Q8BP iZ2o0f-$*P.0LgB\|֢3Q`SZ&lzDܧA(ˍ}N'@ uAhƉxPγf:C](<:HzIjӝ!F?S bƴ'6xrW_"I1_+$d0VB=݈oV&L9IRo0q~'mOTH 8Ȭ^%cJOf\^$x`n(.?IJ' E/bᕱ̛|N}ex$|u/J+O@9^ a{|Y,X%_ ޠ,xQQ-g{#oJk3ND^M cEFo-7#E'N!XRf#5M.[.^[#]$kWl.UY;ŁLzoFjK iogGt"|>^hbU{5|¾"^zȮ|*h)y\f~s(twYEͥPx^8z۲42e5=]P LR&2(@{6 u:/. \Aa^5usi@0{c %OS#VtVڇ0BoEA&Uscb֒s)@; j!:/y'O6QQ(X0:AUtgzM;{"Tki+|9$?d(i (p@8Oa~-V'V0+Jot®1+?~@.9Xѩ.*[sg_֘8KD. fиRvW6]Wfȑ ئ&~ㆽ#! rv?Q!s»RnYZFe;!IkQ-{h:3DV$*>x#*>eyAE| zE>wzx,G8_ uEάanǻmFz6İJL\tvT{wue6Ŭ-ur^q?xIzZ^8txF-32S7U^o)Ř1X=4#6ѣH`Ytܴ1) Yl', &Wh`)t!HSy01ZYМsJHQ&.^S16vh;X_߹i/ ߝ<QS.]`|Iѽ}K|ENBجTjGXhwI` 9r.RK%?%NTܦ;V{XcqMDCϏmSX\B7WBw}ϤɔcpXmA3`ք,=ӱmOs2@J7+WT]'y|vRVΨhc \+QU8, [VVሄNns пpvxWVɄR)KK>_kC7?v+By(<{`#m/ wPu9%py\o[$ߟKBيSC?rxÜ1˓W%T9;J)/̧|н!JDXajo+E'[!N:ocU 5Uf`]9je]^uIbxԗ6٥ )$:3AxCVqL ԩJg}͈HJCp6?F3OHe]_ к>&WXQ{a#LR,,xM*@2o/VV ;1lC3 H2|+Qbw#-C8܅a*RVhAgLNG̹MQ:"B@#=~Y6q v 3|tAL3l$FO7c2^Q)^ {<( Vّ~BpQ5#l,9p't^}qWFmD~j0 dz^B*8-bTvizTf>V_<܎XJ>va/);?eWJ3V嵘u"F"(:]]՟**,Lbzi4Ec莺o}r4CT#72A|reZX*4C>~=a_-L`0HД?G{;V*<[1~ܣĻhn#PHVJB^.ͰScDT;d.^tN{=~TpPgQ݃VZǮ-˻ZlMgDmV6+Hy,SȨ;z_mXrmCN]4{VoYz̥@ja}^NSdjx-V"}S%x U9sΝBԈXy*%+Y88jg)X䛘a6~cÚqh)e?ublH_퟈4\ybrw4Y~$M'X#H(O$ `!y=.^x›番[k`̎xj6q`^~P\ ^[jBOaK:kc*Vֿ;|lY{476?&'ʥG%pQVrH ḭ ͩ^"}engw7q>{B|{gUq+@=bjYI`zg5^\u^+p.hu^ag$!q` >M2-:ua?C9 S.;wP${)y*r^uZS13ɯ>ȷѶEėtg[+qC;J LaOQ0*캟 eO'+2ML|\漪?if:"%S2<)e$?T? :Ǚ+G8o6-%E Q~2R]&˔I@/ynxhɞׅ|ل hL,R"yOpU!@Y9RRZv; ^{h+=?f*#BGc# fӡm k1lmjˏ!KN!\076U}! JbZ9{\qCCq%~.x%v G@F KWtK盨dNԬBAa[ X6.gk@XY ˫+_:+$ӻ4CH_EhA NW/"#(. {LAP;Z{l7=J3o!^田]f^R!3 >Me$n4EĔ+@vgyHDB)H΁>Y} @>l]b7-z9 w[ON2LʲR`7lzuhcT&o7x?PfLuPd6'ds\2l⋾cM/ȯĭ&OJLO()(2Rn~j2~Fڊ&9=-8q}om2qPwWӻxLi݌ 'BnC4 fceh}3z%+UbEhK!sE {1C(z!:`viL@`@wxyE`fJxNѕ<ͷ؇l ؙl&ruER^0)Ha­&$9XxE9ڍ owS.Z/,+9AX8R{t:yβO_;:/~ziŀNKodڕgu9%`iεEj=aDk;g/qIe; Z"ѠIA@gQŒѹXss ڈ8)L~`8^l3LNUu8IBi[jz]gg;ΐgRLtdޡʎ^ķR[8DZfs& vs-h`r2.bs1M)cEޑ녍̔J T3NFj]KcxAoG?ћؑݵ])+r 1L Aw?RjSU*]H@GRNE}Hv)r1L> kѦ,?ixW5 r\sԀR*YhOÔȲ|3'^/p ECx wS2#aT2|'66?PrοuG@?J^ƄMgH'*_T4npqq' L}k z]ɟRGkS?3I68C{@K~KZNK%eܳ^U#]==ĸ CкYV&֟DAF @2mK?&O#-qR;vոL] nvf=lyqNtlB,Tbb-2_XKL)tHsyщ\.{(E91(>B*3ı8@ÍT/Gk# ^:c}Ʋ@ZgPb(7ܚR@,"4)A&Ȕ' =pRWhZҌ7D`O[B!H⿋P!>22!oKzXWW014zHiD(pPx F/;vQ=ςhȤ}i9[Yq GT-eڕ:ʕ.S+ Q 2Zn&BP@3ة " (4.H$KIw&G oО>oIߎO\$Ͽ~W;wk;)3m5-'L a*"\BI$Wxs`bȞ+ EǾTa `Wv^*|F%"Źb!>uK{p6QΔL"E{A[rb^Be{O5_o=clRBBFdJ>S/"Sl~LqY*Xu!ͰM-81Jl.$Ģ\d*6jzK48N2VEӶYn'߭Y:S2l;7HvE'@Dс)?}SEjC$u\&,7sLqu}׿.[;'0 TI(t׋C߮רv 7R&65Sx*`JŒ̔#x7+<:mFpz9<)0Uf4gFZۆ'xKʂυK8tA}*[ knh3&k`$ȫem!a$hµ#{WB{_~py7x /8?o2_X`p5_ʇu:Bu.G\ 20,?O8 v}=@IC;4g}~c!_ssK1%.S+Jk/գ町o$~c!9f|o  iI?>,[H7 ײ/dxv^W󊍵x/ k-y,dD) jKVO|*`DyI0 s eTudّVg\W@<fh7&<`;ǁl>)MVaͳ0])EmW T61 ҄eω>0%OCI3(PC ;×%aGS8.˶"WkW6tTsXu_O,S82 ic:` _g5sy*5֠[N)Pe29k@k4},1Y\ƙT{ ëQgab8*zZ)@0%r'or' Vݏ lm;+\dK7W=i[]mGИ#Fh4Lm2!!&9:GqGM"ei앐Xm?|aQ'ZF"L .D Rؙa9#[VX| ;Ax!A͊32cDwvO5/c"5Y5͘QvirM|9U ֠/R|pȷOV!hW_tA{m }!ZUJ窼tP$1~>۩JgCS1ͤS\w>bf&c:0h,W-E>՞륞Q.zY!|0[W+]E3{,F>#e([CBPd!nܕnдK`N4 C6B=JNjq)/3@ %qMKwMG`s?HXM<#{ c>zH)x fw / *kёNS`I^Ϸ->(oZ !Z#*t}>n"y8CO Xků?\bp 1}Fa(JG=~|,5HԬo#- cr=AJg7 zPz&E Mߍޅ|2|b",KzK5!čQo\$799@$!kbxt&9NlHpӮj2tQ>u( e88v, 擛~۲4 9qH6[eSGLa&wA*hIWOUB0X'ct P&@MhQ&s{(AByMAF%ac~?QپEX&9 /ꆴ+*WJ xS9&](+=m+˘Qp!Ȑ ט,x.c/J 冒3 z#jekSεh vB%èiZMPG8WqjP_Sa K[X,#.I.L\7j4x~ǣaQ2ҹQz~{Kr9Hi~3 Bmkq±b; ٙKYAh!}>! Ab5C3A\}13.͒&jp6(Kʀ" sYTz8mqee%P3K9OUp1r-"@ 0,*8\?h0*q* Ome+qr, wxq4(Yhv֦bHh6y741%fݘOw~=/ùN$m^Yv!, %lg YZcnKAC0ߝVϕQi8P~;KW`KHt(Į"+!%]&R4du'OG@|h7H_r~KHf4"D 1`wqG{Έrs;ol)oPDtPNҬ0tw PB(qڠu9/A~ N[ନ" WPC_Kiekr#G.Oy^5)­ő * Xm+nz*-= 6}ꭱ%CxTIgh=@f0yC^NBbS'B5+,d|IUh0T0qwUp*ZtTEsA $ _T5 3tSoNa5G@PPQY9vמ!v7@i;ct,L?/>4>?tOox 7Eo,c?M+ ?ɛmf\qZj(k0(&uT!f?6:,Q!&h&6d+:{=W!2y<:*5!g@l„ݱ5"|hY>(WrodY! TY935^1cx I=0WcN}q/-hZOfXӥ9].2>M)AWᗉ7e`0c ^_:'u3FݒѦջ7y {MlhF>:4$+UBfc%I=Cy'B jѲ[9j.~ f/F}J~(KnVϥ&UtZdU "b.^&#ʛ}aS'd E}jocN!=\9<\b`I:e9nO}_6 /,U5%zDRx]!XDOnuq12^xt:2d>?y#;Px%(pd66!2`*Lf8aܘ*NŸ!uKCXcfPWQ/Xn9bА@*GKKt4tuG|x"F.tLdQx`OZcROgt= ^CK>XpHGɜ5aӕ5f' KT!mUj0bv+QEwA9~~#Y8g4l&%ȨzPүICJ=/BS󼓌J8[l'etyOp.>؇9ƒ7g>?^o _(yg ȖSa\jm8vtz8kAeRvIwR6X/S؀o0y=^3pÖ=1,AA{¼ZW.2>Bvb*c=Lݹ :j`Vq}wYӍDW#L:K`|1[ipgq(ж½Y=O0lO!?hno-+-}چb+C$deoT<*.Id_l<[TZ.Z?Βr^q^H'!_󫜀)D%_0חFkw<9;Lr٤RD1|0 VPL~>%&KҺ,1~&N**8"ϮcͪJY[="]R=`Ʀ^@ET#OD^6A+NjOSڦv Q,zFYe5YJ/8p>XYs>A^` RhX@uM1"^\- o'#;p|Ѧ"67G9y#. {*Irª%'(;m Ţઞ2Qf ,&mӆ̅\)tu%ܭ[2*T5V;H$!mt! 0?esLTh 8n+⟥[I%} 5*zM(>@ihv^Hi)yPV w$wJEydDzr8)iS0f;xE{g=9;{^s9?ID5. *fuV3 Tg.A;a*^"W-[{Mδ N%?ZR0X/"ͶTW)rY&&R}6Gn`m"/Q?_=?/O[CBCUx}V#FAoYXX}l2ӛ[M6{Ľtgq<Q?e k0&@*DCn h3i~Wvdy?$LЧ* N +>X Mwa3&\*fEmK|)3,.TD2XJR#JAu&6wSöJͲ7i |P٘ mښ\\ȹ)i(Na;Vw&pd]XI2A8)A s#4¾ ^<rƧJYI|h‡z[^mﵡZa|3Zq{Ќ~NPֹN@7:{0cx_0Uib!=؞_sE }8^v.7[- b%0!H~Wʽ$fHj:Ffyw 7b\B}t$͗܃].'0w hqFA]\j?*~L+8Cl'CM!Y&C'3 *V.DG$,4R_6w"J[/'yITYAO P~ɵ٣\.[Ra a`d USV,KNEt"RmmR2Ѱ8sz tjiox\"3Cn aC_r/X,=`f{ (P_"yޮj= )=#~`[ܡivk5uc^U6xsr+A!e鲘>|8A4㡔?fB?f =7Ά!,Em]I}HtxɀDg,03%fN{ t_T9 YWwi_7[Zبpji^uKvyeDW"2T)fً"fx>4[۶x:>^aav9nMJD)7<(yȊWL\ x6FIٸJ4#I}kobW0OE=Zlڋ{z D԰m۝%J!p㬀VwcMX@rbO0l\;*$[izg&g-.evDݕ ftvABG3.Vl! @|7~ EM!#mpo2}/a `ij/Y°@uhA6--w<OA؞S%(H)=V7j*yY*gPrզqTڻT(\;KGuX7D1x-|>-&  69y=/s[rNKmbf tڂeaF|TJf|AxB+(˃>;+@qPA|5?L+'j`Uҿ.4I'_k7Z6>t;qD)qvHc@/ jaӤEW=}D${+bGL(~ KqZǴ73HJGAa@N5x(be:9s#2?^ n]l.6F#{}h1LAh{?!PVM<*nF~'٭I'5D"IVpzWB%Ks7N֩x>2Q(sD,}@_w)}fE 癫"ՆL-i݈_E>1rl+/`̕7S &޾1V P1@.C <`ŲСF՗zĪ@# z)P'';qD-*yAxc\ATbiw=:AA,X1 Ίg:ei**pMm&a< [oǒ+D`z;Gq?'kmrpT4R݇ (d7 K|RLcnbԎ`υ4Qvn9%ƑOc:Q` 4gsre`ETR]<3YYJ ]`?L`Nyh0@fDÃk[谲`6< ?$!sD跱WX#u,KrAWMOIa(*Y#bCP`: imGE.T6Y[1?TfķG! `F* xŝHM3Z=gQm0֎ 1̎AP#,"NXR+m̌L ]mmcb ~M$ Ǒ7)gf ܎/ƶ:n}1Xuo_;*r,={(a،>UCQ@ 0`p>n Tͦ[$،.Q%oHOA[t!rJkW͈YhMF#rх Џb´_ U^'\&څNmꭠ뀞 lFo$ KU5.a:&ͳ0c! :ۭGeT`3ԌM}+3rySGrUسU#ܩyFI>DLBU5!}pyc9Ǿ!v"[wɻْY2.cXY쵌p)%!osX7ѓ`m/M(S g88:fKWVf9u]>4L4XN7nn \sj2N=V3chw3D/'X|󥴇h5C !w5X|߯1>֣Ěg%i$אxgPB{D>]gcXUTC劖8̸BB.)Rc8`a5X]T2|oT>64R3s"W/c 7cv!VΦZy aY߫K"L5cG7ʟ}SPl-2tI <]E40LN B4A}#` ד},eZndN{ C=wu t@cIuq;BPùtDR++HD׈K #'Ҩ޷(&y)56K*;?׽{ͲT|(F(.9_Fj%.<8Btwݚovhlj{pj wZ l&^wޏ6\_a[er?ȇS%88F+oUsU|-NzkʛK 19Ia76<7~?ϧ&PP+i ~_-1G|(Qܳ3SNưuh' ͨ$D($sj#iUwiyA /-{8] Cݼ%>pg{ C܈@g6߀#x z.=I8|J.Z|F0N?Bv430opC/*V&`y煞1fJpjv֭"Y:mm[a <''#/%1߅|H/ 1Ǻ@HQwXs@+ЗjT0~ :-`'!`~s1g˒b{O ȏ:Q۶iSMځc|6{qI%8ISKd5g!eM*iۀp@V?d; zLF|OK J%(Gp$NBJ/a?`#\qwZΑ^eƭ*Ri,cD7&mQIQ8'% us+ɇ^,-h0#x!C?Y\}b +ME z!09%Mxk?[+Y_.W4wko /i:gXL[[n?uaA~5ӥ]օOT IyGOl8R\M?7ˑ]`'F3whQގ\0F'Ωٿs#"n%{Y11qƤeU-v %1fKj(IN#?^O³ZIگ%Bxr.tŵ )y WC&("m@p#R$ uJ&DzBZ7^Vꊐ}=fd(類= =sQ`t9śqn0@֯44J8aIe$"F>qq@Fڳj9,9?󃜀L# ,FD֕M}KщO~鿑nZ&3R KBB"sXh; *DԁW)7 d7Y[9K L2zΐ@ T?4PΪA-J dm\h,ϕf7!DPD-*'&w; *?~?)f#Bhf܋\$Q:hI4%tBѷew䣥&9:hг/Nʣ7,>E-oͧx;^[BːS\iǢtUߣa-B_6eBd'[!1F)5<>-uȝD+Y܍]49Fj+DGHI7򤡣A@@C(ϝ%D]a@$B y-h@ XaBߺO/1H%n;=_u' ssUwjppbܯl6B8Ti:5P)آ\3-kW\C(0<`M@iU 4]y8͛6N :JrDe$S]77Q+=y[QJz1eT@GIBa!A0L_ő%S; %M҄P8UT.o C`vߎ馓)!H>Ap*<4l)hgAEbLbd0=k~3ִ2 ps/](sR=dŷArc(=ŷBdQlb  6nubWPJY(߹; '#; 2! /;dL<&Ffg*ou`LQpOXX֠K Om5޾e#q;6C' L79 t%TV46 -Iob- څ=u TY2{ 8`z {1frvZ%=Yoچ6[>RpTą`5|ʗӕ[!r+Cu~b—$ΟB,c.~եs6|lwt/+bpu}&bso'(kh3oI=?:N=lVR_j}4b+̽]d(F7x gF๦*IO3DQ1?x?"FAiĀWT>K(O9=tnF/L`۞AhMΊBBT,2 ?}"^d* -a3LnHv5sP.ĬChdLQ%%FhC ں!*[|e7 :=.~rr'd;֜c% \od ߋ"0&Dм(qu0m,8fZsdȽ𬞤Ȃn i v$s 2#Kme8js 9$Ǵ,o V`ysi5I :n؅vx˱8^2^#^D?p '9!CJmٴ2њUӜp3n&-rK;Pbt ,qS,C[ )h{"n7t;39 b>l\ v% ]*2N@ǃsdZYUoct,9PhkaDF6lкI<'8ɟ>BEejи V-A퇓zĞv5!=#͆3s423 ofxJ(~nlB~Z\oxJ|Iۅ,G팒{W 8V;C$e;o iƻ,4109NeʈX`F^^xP/43Ԓ. 忱lC)6@w^qšſ!vtM`ѻyԺ1}l<&DTuѲo~9:bG7HP߱ T&>qݨ'uUԳ=#5P#ՋQ<#!J./̩k3e`bGϢDV`bVB.Ci4M PM\bs o72xOzRN [8Nœd%%/%9sQ!=Xð8{Ӣ 5ƱV¡c}q$|Θ-^skwQk{Eh 8_[Rᛅlpa.i*|.9W'S3%t>sCBeY24AQr;to:1XEĒ`'P0AŦN?MdO)72EkP#yq`{PxV:/*?{2:voV6{tsȶqXϕܝgۜ,[ғ6̩ϔT=Xb2'qʫ bbI%G\ݓ'8 R5q%n%Y\ûh(szc,:qY7)squH--Fu#)ۦocA%u.ߪ]8 f)Lm΃$\w70D3ht1& ,x7s^wZ0Ν~} 吞Km V/7ԉ*֮uԡ[9K؍)#vvPHZ'8TʊWW$^"dTpOf+ ,DEݖOfl~bOD_b@.`_zO$r`S~.ܨG<`4#:#Q$ĝ@3ۼҙdK2b!_:s^&|Z-P+~\Yt᎔}RЋPx{z,!NiKbte0dZ q8Z*H #@'Pzſ/yxYujR-,u u#N'GAJP f[}Aby䱽 A83 Tm!+6gzU`?`A5m.ֹ3J16SZxQNFr>Q)շ/'n$GT8dIiWg. N\% +=o>mAx_tv?i}{-kSZIbJseV{\~v}&Rʎߞ-ݼd bB;FƘ=N~([vcjSi{M1v9֤:N~73z*g2pӇ; V'oݔ';$Ae'^Et>DʅmBvQDFPl[N sdSi2К>žPvNp0:c?k/e $~Β(}hùɳ0̍L DѹԥPY(@`1x8fӬ[.(`~(jϪ0U0q6w&BSS/s%uZze\=r̓@mdL7$x's[|xҎ{!>Q#⭎lQ2PGD' *>L֖ HMEpTƽ WsK,CMZxd)DkD\{@7gAKgthɔ=bEgZ@QQ"0_F$R ʕ-8/{#pw{Ogi~WΫS[_)6ey 3zp~l >Z>I](~a>$;rMtQ]؆ceH^/{^'دD @Z{Br |]w/ '^I Lg`ҋ›h*ȱ$9rSZk ػ2fcUC/-Bn汏[LN$"kF?7n#Ao w ~TaS^v=} ϰ>˧W |z~z B5H$++tM!tfh!D>7,HTڷ5Ai=1 ,;a3RZ}Xr$2,ނg*| "WXa~[AYzN[mB%t旫y"D%FPܛ}by7k7拜{XDi'\s OhVv Wu 7@ [:kϧ|Y1^Cd@5i `(V},umʷvS`FnC]}Bm.0ChkɕZ‰AHSY>S*fۗ;oƱ<ʛQ`a&If!TDM8`>,N8ha+](bNztϞ4br-p?]͐._/g;IeT( o%ZBBE6Vy̩q^7} ҦZ<6 =iZ9 d¡4qLqDž _2s"rYϵ gXn}AtO[)}oQptWl=af^jeoMǣ°\6_P~+tֶ]̢l:̍]gxß#8,`h|ωwqO+,WagXٵ El|_|T8?BlEa k> --謤(m.ṡ/^)̯:j; U-{1".~_ۙ2gg*̻VFS>X1B?cT2ơe |69}ō{bW;P/.اQdSȕ,-e7ǧR"AN`mLdja*_Gnr 9c &TKo/=|ogpdjĈT v,gV)XI(06L~08D IEniaե[ QT&hvwvnwD4pWawRUgOk ֮9|d劁 (dARu_8i`vB3OK)_] kTbc8ob:xJ]i\PBb^P^t&j+N}.2d4DKm* ϸ4kSZ'Y /l,(ZXHan_#\E,HxҨdRzg+~Jn_۪vV&RHu_AV.%/~> ;PSUngJAT9U@Tw=!M]4R|hc_풕ʼn@B6}&MPSC ^f/4 AY%6ƛz!0NUKLAiu[NC+ǒj 4hc qE6RUHW`yΩ۝ [1=#*͍Ε˺:DE,ڑIEO:Z SZNyۆi- :u)1=='~P-,%VR1&&C2T8Wj-=K  g#O|bRnZT:ccwVS2>TlD[?~8TCFLEdVL aK&H۪l2pَr['rӂIy|X9=2[j ;,9(jw1< JM*TIc`Sa15)y0< Sa|MV )zgöB;ʜ\ _NmͶG[W? `~Tފ瀍X滜>oIK-;}Mo@ ՃPJB얲/ʡ,t3(x,$G9|m,qvР>r[ -:ﮒ3\eT:?IN!@h& Fs5ZhP ;0>x?LSt )8 ۸ެsZEe85m(IEh$|ñ,{np:DGlzR PN}.͸JF1'Hne{92Zڕ#%""[.Mm]A#Xo_[/£:h}|am>>B4s.*$,1( LHq5mL;D(wq%IS[$۝pds`/L( gFc  2"QEд;tSU9-: %i} Ŧ̴G[xfr*x] ɷW}'ݏCN*@O;T|Is=Y[ ;MQ:5tNe Wsmw9n8n>0-P~dK 9vc!WjlԨes{CvGa2Z-k"S(iB{ O+\Yar[i}:93MԘi$=7҄ Ȭϻkq{6hNWw!Fl|SS퓍~O`] )QA.vdhkku|Z4ξXOغӄ m5S{D Η_*)*$i$p ¾$ cN!-AN|+&"Ƥ-/˜u @m 'hJrNi.4JD;L|Doyw4cP+$/"zBHIҒWd@+cb@ e@] gD G_'gF=F8R=_ F$,/1'RD4s^w@aRejA4O>MB1iVF4Cw9K+w-k Us'AGw-PR1 kܜrzAoc^7η1 G d)d֨be2>-4쐕/䦳{ K+lK@~wȾ_(LY"ps6NvTc>pm,PU9sfNLSNj+G"|F$_rf>$jcULs="y"Qh=0hwƜ,<+ ӻvjuKhZ38cў?RҨSS_2\A"9/ *k(jhUE/?j*xԃ3j~rIeQNwgLA4lnnը**$=OzJU֟9fGXݳZ|XIRй &Po9Bn[ aN^Nۆ+#;N$SbJ#Q Nal) Ļ4Ƥ:tiW5E BNVqWk6(nƞð-*Ŝ&nNȯ9vE׷4ܾ5NG0z]lVFc@ 5\@X9RJhe)mDdٍ<<జEpQz+3 El|ͽXLSVp,sQoLV]As\cF_5`i/OU*C%"qK+wdUǼ>++i_.ATfD~ Ɏz~dCΟ%HSZ!`$XkW(w&ƴu>j&iu}/T\4!E4՗&PdiHJD^r~h{h0#z" ϼ-JWw:6:jb ڳ#3jY'~J׸<ѧV„P}jy +F)Y؞z5 c~f ,NA3QU! ՙ&}7JBy:o}2UPl&qjo,3bhOd{:cRǩ~V>O(c3DT-І '<V`$\3`9(&E+cWr<DT J:A.@sLdL?آ~=-N bjʖGâ݄"[ f`pVz+F8Fcz<ćjkCLF |"O{c$"+$J'3pZWѝ A@>Q*`q%x?.&r&OQmiS8cj=A<Te|TCC9'alr?"?xhy+D&Uβ韤Xx-0Y<_Cdm>CI,oMG+At٠h*-z0^+Ȥ"-A 8(;:#W?fOЦ(m 0QhMvg>wPgLOBRؽ?7/L_N I;xh 81y-A+$@5 GwQ՝PsCJ]0ŌKA(CfsjMn4)iV?Yֽ Zzј+u flv \'$Q >q0 4f?!震\+\k1nauC>Z~jmI8lBr0Gz 2*2}lo7T7Ub\NͰk3eZ[pOGFص\+eP0#EEA0YU,* Df'>/I~T=4I4)ہ0ڊWNrQphlq٣^G*^.c?i0ad/ >"UoBkw!rfve8>^ 6`sm)]"NIsvL+]|6etGc-kHi* QrX$&gH|,Cؕ+zs0x<,5+`&)L|=XX-#ނWEzEx&~C=1AyO:q>"{aNL1/`v!cb^y,%Svx#@"Mv}#oj^h.nQ#F[?PIk>%APio4js~F~GM&_B 7M'W>e+'s3!nU+$# (Z9ƌa-`1XBW5~hC^y=vЌ܋txzAWjZ :F1-y;Q֓SwێmE8 vw)nS2X'-`;%wIg59H^RBEaaU3,.1 ᱂= .tl)!Doٲ dXtbl8I0d$$$!7!\&V jq T,6"q|tZ`ָPB'uvx]A ė1M<6,me/`dv޸">iv=('W<:ߦ8[@s\zdXV[4kC$P1c HvpF]P%2y\Ag,pk}xfmre7` 6S/: XÇ\#FE5\ݞykS9Z1 G$Fu3Qc㥳R乔 7QW'cT !.?Oe!׎ 5#J~&XADj.EB"C)F>S ={וzv|]Ȫņ]e8nG~^ڂbVfa\,vK\yXݶ裲x/ G0{Vtl,L@kP`KjpfQ-?H M[gX Ӓ(܏QmCc?X=^s3<iC`E &uS}e/~Kbb(C,W#)d'"v_?\_[Bȶ{NOCg\8w4 ΰaO봼(!<⍃"#yl)H1-Y>6$UDl&폄 G|HEgpNvK.a: [bD_q0{qd$d RhpQ~TǾ߮"ֳqIqB'X0U[SA{sG5gMLÑ߭^K`Y&i5=վ4-_qQoއa-% Lwo-U:$.r,|2_O$Hf sU^E̋z;tW7Id?m5i7-6^bIQrE:kf$ ^_m#Z0`S7`=o3SN\G;mlUqkeJIմ{ ]o9CVP,$ &j>lUl|=I緣H(}2P_f G&;(3C_FZ=L}"Pl8 ecb>Rmd*{O.u  dk*m$% Dyd "XvVhrGuv!u9] w$h+ <@}Π>I CtG/D)jiˡFPڍB:ْ2ҍZ4ɆgiI8leb]$/ED|* ىèox (0%jet%ԸLƥxe؁L%tE(4=˛KmNKV'r>C G6ϊ[ꑉ-rSJ6|~n%7 f =4DM,t7yJÉiegv.?/v 's@N0$: 1WS Op%WRrd` ZPoL b3eA#g:q,ROb^Ãe|pzg\98_7o*e9CLI8! "c6f_7]i tyL'[0@3ܖo 'q=iՇQn\."3SO9GpHI.bZ|[(4y$W%I<ꊰ~ieRd!ȿ<=ȿʁ`q#iƞvjEt|E&\MQ=A[f̒*D EH^2KkbKfBlz8aq6"4-P-_ۍ.c$=yu&ah֒9=LZDpO"I ih-]z ٛΤOz\̛=x{º]jIv'jiNԻbn;K1m`m)[#lH8O}1q2u/V<""_.ꔚjpMŶ\[^T=8l\,x&DŽ=ӳ][o9/@k)\3pCNU,~ga DR\:~]=O-q |U,4٤OT?N#rCUb +ċ+Sxj1NiMRIHJ\7&!rMMLH[źNb^L/GkE/v6c19CBEr+cNoQ{S7&29j%?qr`ͺFZEÝC:"8;PL8y,I؎-``G=^WhQ3Q v%~nF<>1{hFͬG@PvI!qiuJ7:n''yL! g}5@!}*>1p,W*.q˅\G:"(d caK 9I$"KKEB3ʞRUֆ3΃&`0T\:w4OW_tp, ᜗My73F,%?)>(lHI`(6cAN 'lG2%%]m=0jh?opYeu&͏rtqmF9 tV]k >|]Eu^j#:~1;Jw~'swT=ix׊너}J# dz"[Gj>?^2L1P]4҅ 8)@F>9Nc)"i= x rwCCL$z)ۊt^*|fߜB`zO~\PY 4(] \\ wO!͠_xu-"fhgS[_Y:dlI4Cb*x6JX cj!!'+D y='vG)Er~En[VEtUG5x,Z~T}Jb~H-By 1]{#͊NHK\Y{Ng90C$C y١3 wkٱ' p*fRA_BsQ /` caφ#g ΍&~T4%_&:oZۙNa=xmV@ar.n&@ɚ}8#Ǫ:u5ޱ0de5g3Da r:oV<7K4}h+S3mؖ`9eZHY[sSCgk9zo-Ķ`+NAf۪eg;D0]Ȕ~%hRH <"B[Ƨ #;Y<.G~;!QQ/|+J^vJ8欜ͷrN:wJuoHM3aGSLnH9I,L L[ʧ2N4V!7Ҡ\ ':'}taoXDף@q}1}&6)C@&Iyzk%T"80w3Ƕbxw*7.t+ec^\fqc)7S"Dj]վ&/.qrr/efIӀw *˛AP@4ʦR)j(W7xd W".> F*$ hd@Ss*Rz9T#G,7,mtY6ԉA,J5ZY}+Y/Uw 6kCSZ\З8VXUUoYA;fzN %*H!]glF ف'5xD0ou6$o8[jv8 NFYϵۍ0𔴩3N}xO"T3xqp}?uIszcv+QgDꮈ#-" MaT1UD51W1~n^xT׶!f/3׏AhS kYlA+'Q=&)d `lDhN}#$)$0U8w# Ap"Em@DvGGٜ^z߭"0CAxmqҭ86",.Τ WY:,7-TylFGrgo<@V`̧99_^-ܧ+hנqm135F8Kc+D a%3Y$̘Ye tbD ~5$D#Gy"VR ͠ى.;fFo {G {4=A}څVqTZ 椡wfX?m TT+d~x?b#N_P`_=\wpX|'q?`d3Y2=Qlc7 D`}9^mS<2(2NiS9f.Z_wAm▸Bq1zίrvbMQ ~[hrZF15Eb9aiUp(6 3 %fQ0oƚz<{Ό+*'괔f\D:ҨFTjDÃV }ٛzD5ޤZM\׹ W#z͚^0 @sqZ*CYYmayo=F@ߔƞ0M:UYЌ~G-i܋]':MA'HCTc tI5q&kIMTQq T2|ËRITWSijH~vQPdQ&ي=sڠC MZM.u"w?qII]%mBX1g*ƜaUǣ9晰Kh{`Ux? woǣ`ƅ?`NæL';7I.0OuZN,w(!)NvaW{O*Yy(PweӨX \8YW4?C@|UƷJIY`|TO` E:Y5$R98%$zQ^3BsPJ 1ݴB87\ EtԬpt/0VG qdPyT$e7rCjYԖo )~y5Ih~P &1bvߛm3!MxQv@V JޱxaqFG{#d0b4耞VQYkQ?/^]`O0l Rcn [%w yA31 ʂc޵-ir"w=^gy`žCw1$}{AOop"hJݑLmBj o0 &cJքXiMNܲcr◂ץ[m>`i?߻qHS?]eI3J=lq3\_Nbz^QdyooҧL̇s7?1jSwۢK;lJ!;FB<2} m]׏,;a.qp 0I>9G3):_&Y^392ɨ>q*$./C/W:f?S!nc9"k"AeB! D,h;!Z} njUōY;PU+ $Hi50W숋_^82{ --x<,*w%SFk,D% OnpۮBB7W7=_k"@= ~b$ 2ȾyF3aKœ噮ӷg;yKjx񕪾?6c\A1BH)UV՗s;ĊL yTP^]ZJ͂XY刻%Ȥ}C؛sT3U_LlB͡::sSi6 eYy%\A~MC3Cpoaq$O9ȝTcLu `$09]CeԎMs((iGg0豰Q; jx(Rrj˜ VӉUB0I Pix'}oIOhomz9w?5o{M 88v{EngDހP:!{߸5$*.>kAI΂Sa=2(;^,J"z,2Pn[v'k8>:./6QQce\oujfwFÖ>.R3TIA|J{$Q3ݍD^ی?NA>@ b{瀤2=PX{IT|OK'^l<㝡͞UvR"hhVchV ߜjuf]nXvoɧG^C8z|Mkkn~$V_|62:F\HN^wiX/U7 1kg= .nP+>mnȟ̒%!x%&cX-t:?lq >Ÿ*[vOI֏eKzlMz|ln d0^]KL ^Nd/bBLw+ 9qqU3`h̍ڼdоGGu*DEDW \9@DJRJznQlV,w, ZPF#|O.;}gz"kToe qZ& !{S 8{ DNmkL\FFo7O8F"ʛJ| "@+/Av-UNTbÕ'l*ݱXsS+(]l)!-%^ve9 1̸|^ZBO$#ds)1<꘠}h=u /LWalD G Zͦ&+Q4\ކC? _WpெR.ckW1FYzdXukM ) s$"J8#6(FNF!1ّg 8U.mM,iN~Z3{>zX@pГᩃu ם-Bcex%} bu/ ^_џ33I|1CR/+e`) ,e"[ǾTo6w\H*i# 7 ቄWL㴑^s=eruhЂڢߤzzK{)8!εPa:RY8%ta&ҮE6RlDVxIU&MSMmsVQ,fxgvAXR ̬"23ZÎ:ےO\livrS cT,Vմj_x:)g)3X{]mg [cY ρbsmCL3n dAuE/2`)gAvɻ{,!Wd?G%p,KAU=0ίzԷ-pu\ XU|qۛ jtJ!JP4e>K":׿鑷wFWp%82t<1 y2$hb;j?3)eQLsA|ʌ`x 2 M'\Nh/EI_K56CyUfntʊ4,vNJ KI:֏F+(OvꤿW:VQ/ߟUR^\l08eQ$y -Y;:nF:UrcT]o* gB+#d i,MgAe{'褡U Ev|HTE7M[bb4t!Xj#@}zމ +tn .)[<Da_prL#CKx`t@% z/9[ـEL+e(zI0yr ǼFg$j1ށ䓓dP?@=;rJhmI yQ8FEx ;Et"Lʼec"Me lΥȁ"R# gףME G C}2B%N"(grE&!MpuZB2,DtX*팏<ǔmeNDbDe8eKh(Y,dx~⛿c0|9(w$mݙAg˳=ELM1qκ~#AhUCϜ$ܸ_HdX3E=$o"RaivT_Xmd$ {GiD:CwfA!bBD%n0lʲ6pdH[ Fb>mpejF{@YsV* ࣮ υ=oDfu̫? ٘M=Б"!+bwȜES<_NsFokV}ǁ[f^?+nkd,I 0bkq C<,&2; 4#{Z]l.78 NA/ 13ՙf^z`B0%r_I%ºzKx>!=j\x.SQ~%u_mܦ*ChD ^r{I8nm~= S= X:!Vr8G> { $ ڼ#'bǘp ( Q K@ ,)uunQah6+b1lMۜ ]EآֿKf=+Nj_F3ZdB3;X*?7aNz6TP&VU[LKͫ~E2i!3Qf33jMMv̍v]"牘:矒f5@6mgTӵ4 u+aŕr>=gadHB'Dsh=nqC.чu W5zO ʾ4]\c5k06BE-l1EfjpnM9G230F޲U=DK"bI۪H$CDP1P}Frb#: '!wN@Bcb Vi0@08}07Cjqq2@dvQ?Ю~Fs%['uͷ3) Vž7Bg 3w|Z8Lr ]|0߈=r.\*\ gᨄbȢ05ԘbH6z]d\/(Ki)#l *`g<=[@ ._12Df3ӮR-*R; d .!srɕtty& x %>)%ʟ=kHz>/SE1ʙB&j3jgH"{П4d(ɖ}7Ds ~Z~=08|gWg|a0`<脎?tĵ ?aF hlBn7 MOuNJ#YQÛ$b[Ѭ4> e(+lI/b]; n9hs%^GaɒɀXHdzQ']ۅ0RPDǠ8n"  ~,^ԳVs~qj4e<'dJʙIHnrz?m-](o"[ ? zP7׵ Z{'H3*_NobGPH93y œ]&#I7KgͣCh¾oT&y{Q4\ġzmpEsȊPЏKȏ|0z{ÝhМA@ODr*BT2I /}oi'%ӹ`G|dFya=F"O-NS1_"_kv\aNέilGqie3oHShVj^jޚVI5r<(BC}r3 A 7jLǹSEWF kc./z醅U!5:fB6G0Ϩ?Wwqt_3C]B(7SL'aoRfi4$F?Tef'Ȑg1R%?ҔB{郓Om3\!=I]b]7 XGXjMb! BZ)s/g |zRi")|\lM<ת8*9 W)fM՞y E$ª>'kUAJ "5 %҅Ä_ 𦽖,u"xiU%s0vcRx>wyCR0tnWϭ u_r)?-_\ja{b5INam; F>2 $1,(+9}J-L(*">DpSMbu2 06lrF66QrMHEv^H5Kd6ib"4ZN}^ <~Ƽ"ct&ҥ #BzWEhYXQЬ7^lxs ?e/_foe@JȒث|uifrItsH.]fDG<&4[!ë'm~ +ǑJA*nZg7ϴo3g?<2ȭ03N;!Cy yJUWg&yTE 'yl>ARآ}MKFKh\zS~o#M$Z1^Ӭ,R/g=HԼPw`Ir_uO,̊l1])!.EåR7mF;b;۶jHY>4_:_7;Չ4=:Uy&w ,/Ą/gb客O* 7֚N:wSX[b6?cYqɄHj8e3/ٺQyQ^Ekp,Mc?Z^OJ jh`gmV/4TjgĻuL F5(*eA UeRn #gSz) :*+U +ؑUSeJV8'p_֒%°2aA)0M:#yO Nmb^FRA/R ZR|fCNIHeoXimضS F=xvxmi8Rb(,px@^Ɓ32j oJ';ɭ-Z/Ԉ"tD_L Dȶy-tق{"EY9oSn}ڊɏ$R {v$422j`9"{V<0g6;Eo 5"mtXsvk6^ X6ۓw pd||0~nѩֲF, r( '3\"ي}uPw9t&Rdw]ҹ^m@?^RNQd~8y2~ 4Yop/[MD(e6eDNԛ^8'"hc^ ^xSu?ׯM,/1\SV#[a$ٰ8LN]1Uޥ7Ac9bun@Gʼnz9Z؏&YAzf_m#i!u.)`O ͖L%ac[V[wTLk7rw*̀v _igFGm~.j]!e2ӯ(r¡G^G`]"2@!pb a*hcUVM%zӜ~n E]܁k_qjoqoJxtqO+s՟]SX^Q ;#3٩ ЖoVOG KVb߅pwW`M:fG -V&ϟ |:X}%?K3\ZI4^"}l@{ҁHβ/Ƥ~uûPy$ܹiẺ:9Q]0tkK=^  ZE$aN"?:x){E \* !c`lbfAұt/b~H3vRM)!lGG,ǔsVPA;j柕ksbČ`fM, nkeT {$`šƙ=󥱗B"a)\( J?YmK<},^##~݇DNqS6QU`pXXQ&,u3{$ȬkZ`[L3W PfM၌{xǞ ݉zC\޵DyV}ݙ7w yX㔜2YP㉯U׆V$e7&1S׃|W(9۝SD{0RLh[MX+WW9SZefY|:P>  >"i'QHS.hh['q]PnuЏ~YSg3h,HuښZe)d4 MJ|3 Yo̒ \St9iSW ۅ>ߠb"Ռxf66͚K٘]g5)= V`zNl?%HD*,lbFl)b_ uQ<6~^&#ָ t126RY"ҴQHZak!,V+.n} _2-LH 93Ev 4gOT8n9l\wQ:]f-ʹ6W +DDZ ;dR~eLm$rEE&e i8Ȳ\`yV7ת O룈g-ydP3QT6y|Di_(Jʣ-ŭl+0M82pq<K+Z|{1E+P{6@ f."$І#V;Azt,+ūOAeXU"JH) q i`=+SQnkU-!DsM q}sF4)=,YwM)M&F}[K&w ~ DEGآ0W'Caf7oN=IK~^=eS^ q.KBA7#j&o0&7RL$3}_KRD(v7@Tarv= a|C^ʬ)_Cq/wzN~?T4.SK+6 N,cP Uړ卣/]Y ^OozPV89N]1Q.}AڴÙJaai"ؐ姇LuEM,ż4G.yXTԵ &h_p#RsɄ?+8DDG3V ۶pK߂Deכ)Եtqyɚa=^X=l-6洋ߊHrrNWO4N1g!__%}F1>7g,Y8?׺Vƍ֗F$NQ.L wor3னzMLc9~?3G;ƶbuj p@X@]7z=Binm_% nP}!tԙ@barLI$aj 'j,F9n$">q0۬Oe5ҪhoYvk-=!FdŞC7Y^fAO jm=Y T~~Xb ԀD(L?`CL&pu)>Nm>8Re ]ʠůnٙ :m),mFwFVg7qߥWs z{pR-֏ 7`5e'5fɁHO?[ ulu4h ij8oFsjDYֹIR|`9gV})9&cK xUr9ϺB^i`qj}q1 ^;U#wtP|\= A`9Nz16Xys| +1XBNQKaHtREQ=bbM%-U*8ۑ3*/ LzUU3<(VI)4Z!^-ڋYӿ?#x)Â? JOoǣ%%;Su]]X^v4Y8ɇh  u]FGH;}>pi &IZI@>\H>y*3r _C(Β-It׻ ŹM90:RPLɺg3tٳy<" m&g..{yrJ Ƃ5͔ѷ9'yWy$N f4{eH]R)ttq4TOvBJ㭊%kF2& ݒڅa_$-]g!.7τm1Lx_O}4)'ŇDs-sͭ7ɭP`!е!Y;h?!Q HGKD>5=JoRD`J *lAvN~#۪7(Z =%߉nfD|j4ri h\Hз-Ȫ oۛ& >P y(9 reSZ&#^EUXU'Oaq@%LՠXj*rj{'mZN2\D]ae9jKLo,zw"&h(\y32j)EY|W8c%T*8̏4ˣ(|4REpW _N iezsk΍ьq ",fn ajr\bT:L 3L V@P@,r2^F]0k$oN$?K+v ywgO+zuR)AjLr,4%Ep(jYǽx,, Q;gd%f> ?LM{uKN)L3bGelh\5?;>Nծk'&[pi4%-Exrȱ6J}B.JgPRE:'Z(˭: Fbȟow:wb׬[\O~͠?)d-x+96˱} ŷ@L7RY6wp^'zlxVBMgSAJa h#ݲð˩h h2$v=:JVϖ`DqeqP!> Pع!}9o##Vu9Z9}?-*evū 4OMKO>j |n J( .Qq1i6L4Ry A6oa/_ 0ǣzuվGVGZth]s Jtr91lg`>"1_g(7iǹ)t (yŸ7= k[uGUB@mʍP S"eH>5_SӭldmUHڧN:Ejl7VCI%pIr\5@G(K'" a.՚Ϛ6}qddb1vZU-$`K@"z?k}b9w.bN]qv<͎> W8@2M7p҅d_ފhAc{WⴈW=-xht /AL)41-mP=Ԟdמ,`;e$d7~~)T߃돈N!4JΙ!ȶUf>u}@vpa^ԬV'{4bpĶD~s Jmj0x+XNdˠӧLPwH۩>յ(qǛc VK`H>Cl?c^da%CV˿Q:V(e(vkK "+hkF]dH:>+ZkYֻ$;m6 Y_w@3y򔛟VbcwC!u?@v2S뵀d&~h)X ~G|vyYSchL 9U<ůPΑ 7#Ҭa)ӜmʹT:P$2 U1ע3%(Kb¨D0%îiEtirHD2!A QH6M`,}Sbq҉wۆ;%y/֙۩\u{ 9mF r(-9*:[mF[zRܡ2C[ft+JTN"iu(r$:@HHTE ,l@h'$$G<*SptD$W E\ J*$E70HK1bbMThuZת?&eb? ڑ'*+,E#4΢'rQt>A滄^O=%U pӞ5!GՕ1j" kmFmw e,a[L@Z}nz]ut̰c āv[23!#ɽ>#M+v:2j'ǔ2N)TW,v&~r-6n쁠-k9GEwgPұSnbpktp7>," eRrZYv#) ɶZXqN,}z&b9땇bG+0>`,GVƊ'n*zgS ;kCxgf^!թ5ev`I9(o\UmDΧLO08.lK8Dp5ʻ!Bظm?Upf:LEq)7.'szvq/ uU쾜s3wot|՗%SCSkNiPPEdWfyeN  Д>F~V9猊Y"PLf`jW:6"Zpxj7l>Weh:ߓ/ >ZN}p06R|N6~2#f=7QG $֡U\E Ja :|UM%GxC ͍s; eLS󔈤RͥP7\uidi,N5 /{gJI"0):-ɱӄF{靾3~X5rS00;zi\MDOH:W'7'2yV>[Bz+sqχmxS7#PdqW,Oޅ_;0şрyWx\Ki92/j?-~%/L,ԗ,AXVd7 hN>+O`L3ڙQQ6xIʠ~ad]Ky鄲(󫾛ϰkU\) !A0q!@(),.;Dlաp{X"g m0ݳ̈́B`7hЙ\WǦm ^,91V9 vIW|e{SwͼԌ %15urښDLĠ3) @[^crg?O^~0ަ@=L mټsJYJO[7rɕa7NSʼy@ۨZ: < fE)K]; iGa_84?&~D}T$-YmoSSeqyH$iIC,(uO$ Y_0ĕW2ր,Q^eN*MLi,Ap>-/E)_[^h? XPx7E+/c܈`yс]g^Ht`8^ WƟjC^3VV qV"Ebd05R*GrBiX#1ﱪ'R8.Ɣ͒`'DDK:qPv$002ڱrcb Y84 vw<iT1=tC,+؄ fd]оHi)w:nsϱh!J}n {MN廹t]W^L, MGS!M>"_RY 2cP5FvGt7uPń{"߮h[ ,ÝpG#e3OΑ~zZj)ӟ]U9Ԕ.MUpjԽ*=Z2i#Q(UoXo0R3%r7aD;[%b!w!tw ]C諴ra}*%Lk2 `E%qUng8eQ {<+;u?>VI)M[f3sjUqs~ˍYbҠOA$o՞2ͱ}e{Ng;7d0n۫'Q0u> e(&ղhwDW³|JggQEG`~<K0Q?ǔ'=%V1HzA-eEtAiಪ*[[O~JŻ-G==-0Q\Ē&a乹R P_$BuGVʯF" IPOR6kps0[9+橶᩸qRƭOEv{+ hFXy>BU#'Բ-Zn5X3P0JϾ6A h|E[;XA3 w o:`*v#9:m4-|"u |Q>=DŎ^QV#VexkYAg7 A E!ƭ'M ;تt+Ke:ӌd _ؕaI%&x=qE9wMZ8ŁI )Cvck$K /77}+ ~Ɓ8<܉G=)47BxW%1"DH5 Cx. 9Ry+D]$M%Rʈ)GAŶ⫪`;bѼ"@=7"X8HgO+f-hQN !/@ :.OAxD ȌAla;9Hn^pvjCj}vfxF3 Ge_Ҽ@EGxjIX)`J+6p(_s6wZ?66NUO1zcѾMS & Za{zn{ 1@l1cb_ۙ͏F霽6E\AА7~cݦ pGEŤCi^gCe-Sb}³ɦ'گc\\Taer.X^ |wؗ; `.#ɩiVT(.ύ`0.AQxj` P˓^g]d}w-%MB.UW!)zHOѿҺIleU+]MEI{oX{d1L-EnvbۃyG"%# yHɘr !ʷV߲=,Qhh8c([瘫5,iz' jvr"{Uv-fc \@2!.kd w))hHzfuT/J 4^X}Ka#doOsS&ϸ͊ )˸bjJ1u-t4dU%/,ih#X#9lϚn#M ݙhrC3a pyN;`% {/W19 㮝D ѥNv@4Zg٦n{fn]ylZ Ch͒FJzяU+ǍT#}m<}J~>cu 411  ،bK2Xz&p8}6RyHFnUTYV(ة}gc$$V/äkB/jMۊ zB'Zqh7DVV=ɩQLTNu"eyD6*ň&^鲌ep>HDb>>υCe(AEҢ',+YTe K"U6AOtxԂ\1!ݎh\hX] ? $5qzeq hg/ʌÔj#ϗ -*/M)t #JYgCVC}QGىo;}Ag̈>tO.Bܢs,_z/n@@NF4 ';G*Lz9\M0!ᶾO`HX9GT<DZDՉP ^/b5*q&Q96Ɔe w6m/!&ZפʜrYU7<1ŔKNO*j5~[vU] ?£mݶUzl|`R P"qݐħCʺc5&q2|QERu K}o+w!6>(eLQ8!%S ҿj2`IKR<RtRBUcTmĀ2KzĩSp3VZ8ر@-skH?-AYg*ZoO7<#r3w4nޙH>vd<:A}hp}&ٰip/m,4hWV l{~q1PykΧN>-6 d ,oC})eAQ>)XT`,GTN ~s7cnM*j|*k/+)I@F࿒QwvV\Z] Tm;,3Mxahi Ҭq$wIݰ>rJbWjPAƻj"~ =V |S ^ZxS0e"+^qv0#}d:}Y 9 AGDQY[{;F$`=>R,3 ifhL:G&/,.iKn=Ҍ$p{ E~JH-Xi"]45ߖ)F". D΃sLX7"nvSҏr@}f m1 7KpƗ9?hU:'H#ε놲\h]|9GB9sKL=P:ZSRJM|Uߥc`AhwWhM9xͺhԿTmaSvLZCƙ9 N?7siO3Ն82h7a|Aw鴯L+$cȖJ_w'Y ߾̀u W1u{5m?u•U86ў5A~6i!Cr1 1 EeFv@g?Pg 8PX{,/ib}qWu(ۖ6{h@d]JS_q+r柚➿]{J ob1Yvx"kZ܅TUˡ#M `0h58K0 T<ҷyff]SnGhk$a]'mj7g].I߃]]г@qԙUab2 -ė>S&ڥr>LbzOOŬ :|[8 ׸nJylΘ?ux$†ߋy >\̇p)'X! `TٯQ6%!s4FQ=z gˁr3ea @Zi$]|;8C €N*˒PmCk}5w?$NJkhDX.AGae(4vU°Chj#BMg=:kNJ[ lBCn6YCD_A%A?#\gM2Tns6REJ̛W'U~XEoI刓8:lq)D?K҇j M#6wciyg5,Dj1(paP>WIzg-.p j;;s +BbrK:fjW;8z3z |a;H 1ez,= g֌LAgJzgeUL&v\օ)?MR$oYJ;}SL7 X9񟨶vf^sKJg*?"pc%GF~}3)W|aj`uF ߳O@xhf'wt a(_Z?2YsqH sKC;l7co8F}+9,cChC.,eBC@|5|` s!e T!WY{5AOt>Jڹ~JY2.w_j7_]˭yH`p{ _ԁ6 5(_⤆ɔT PeJ1vCLə?$%e>`DEo'i602УOWѝjAK"׻cì%ԂOhzUA76~d|J4v fw^?XIݠ]DT-R,}|˸|P IU[i'3~kh1cDyiٞ` 6|T=ٞ"еDN_ DCgck tf)ՙ5=yTKÑye%Pb0w_>IStKT_-$A!wƞ3.8LdIt]@H*l>P.Rk%/کuiIAV)$U&&ul^4nP. p۱hYK9⍝Ml]йË?uy<(<75o4ˈ[iۄ\ϡkO/]Y,Zҡ)6YcH?%eNu*/ <"rndl$k;d62"7}+~${1#ٞK| Zϵ __Y7æL]@tnJe LP1M7 z7Cn8HV}`-Cfa[|K[Y[y= ]tGNvϒ9h'X}d=u9d^MhM3uk2X"GNh&zsO] *BPp ];̥.Km+py}mzX+Dڝĵi_5k榃0(ۚ :Aj&SqKgS)`5 `Њn.=͹Gn,H&Mgݢ0kρ>xtD(Bڤ蘮ǔ Yn񅲦w  STZpFhT:wфP_Zt|<ĪON{NQ7sA+WS ~yR20;)^6N7^.qQAN8To C0q׋U&; bY-w\?r9kV/2j=yL6$JRvb-<wx&W`M8Q'(1T 㕖Aq%˔'(fB~{!=6 R&L7Pܬ:ʦN1.aG-Ӆ\Fm0׉ktb!"ho\p<\aw~U^t 3` #Zzzsr"w)Y}c&tJ[Zisv"U7pQdqeNf%Ey܇ =e,,1Oxe]Kԑs,}t oq1R#rԉe 9Ώ4%F*$:d0=n҄/ȲQ3cѱo7BRXAY\hFR<9eЉ5(r``5},CO Z9G|~.e Ǟ]4r?e2y2XFZd\T볳RjYjZtGn+ӗldck$$ZMϔ7`L׶5l*BdSj@Jwʼn[v4*#nGau8}"ľiA+6rmNrZ(] =)F:$GLߨsO:y/]U#zkئC*u{: Z00?bdVȢcz% 9bZ^)"=6{*#˭ sIqrS`|v&%!T9{٨&גuKϟ [ qFGEᝤVʀ- x;G8<69W6p%iPGI ¯k$aR/R_p btF8H_)'}3@7?lFo8YIg>;|UJ[iӔa:HTHϚ!m/gyS _je"׭W-;Xj4SLȊ?ń hh A_&aPykl亜^%f`_M˱3kvl& *%vE&߄gƀ[6f++]AiS,ȭQ wEy$m >a{8X|!ImX iNRe4+f`AMGP3s'd1@5wOQ F=S`6c3NQZ-j^wZ.ƒ)e"S;ꦋU 4[i]9J~9i-(SO*Λ׮x#گDOql^w\y SfFC`ghpW4թ/|WEt#;>H?FP/b}oP\vm+VXn(atjӡqP92:(B.T.$N%Zwa\P̗weiQBUJ ː"yddōa-Q%^y|CSoC%! 6uj C_RKdd ſ:81+\G6J#+Rb z;1zC[ =LHѬҧ&}` Kc!>Rlzbo&%VT6ܯZ@ёk7[q;6*E?TPQ Rtvω:/ ͥ_X( LÞ9 YgXokuJ=ś1-6X YR1@ ?zX{(k<4GrcC,3w GRo]Xb>Mvz~PDTݘ +@lX^JW˲ .t3O}#SWQI3p6j2 XW @JU-' 94zam,DG-UVBo[=o. huK4߱ A|"*ars7Lϟ*NӐVrsPW!lbO쾟RO&2]1 5 KOa_zm@gpգt"1c1v٘HWYMG!!Ot?dcEŽESo7,[X SZg)Pc;IΠ?b +̗pe[K gܟN)yCe\<:d0RǞ:usRzxx*e:T+)$ML yݥK@@p4Gxǭ~w%3&C(63wrUdNZ;b7xsVu{f '+36&oD/ v|uF,._\T]E<##\RyGGVkʰU6KאrHA閸&Btf0!mYOgSʁ{!|W{p6M1vnV>_?L ay B9Lݹ>v@w[ehas:=*䛬֙lBUmrW>7PM\KLbߗ0 e$[f^;_VU#uփRb 0xHidhԹ-<#0nnk4Ve8S ;^gy^'GZ(RCAؚtCTUKluA6Iv˽Z`0=/S+`aWu'2q7oX86Ru"r("{CNvKuBE|i5f0ȩ "bScA .HLQQ~JomH_OO^Ye3M8tk(8UZWOBHoIu+Wׯه/);Ju1;oӻ[{:Dbtq|*H0M(/C:eAdnCYGɳ68@xdaf3X߁/EZ}5\NtAkUTk# ˓zW,YKBӗbHEC`rlUޡ>܀$mlX ZGʝ#iv!SǰjMu[.K˾_93N_ֿ|T(ȸaӚ7~ Hࣁ[pjI2-; ~=n,\n[$Yڡnon(Yu6`4ƭI%()4O1O0@#w|fsj_$. %AbTazoPm_2K::yx*UaMl) ո"Ix"PR> }}>5e_y$t8LQN>s+(),斺^YΟq7:s|Z_›[Nߣ]%%-Q+` Q8;O $Ǥ(1Iɿs=@x%{B#8,a!jN`v{xI?sFR+v۪m)J1֟}kd)1];eêx}s{odtho(qg4t?rhܦBUn47=r$SYl!VM^洑p:5tR`dP?k0JH2(oAiV:eL%vS6Tk]I}%蠟:e"j-jg2v+ 6LXTIKn'f/ 袻8-+]ܡ`H_u1!P\gA7":Oh9,2U}G_TX;ؘZw)x='k"S6 eR%`AWd:[LnlBWAMU‹r*`72Egn*%'Ėm8jq_>F^; 7/[? E >jRYbٹ-x@ҁx|v;'!`^N)UڱݤKN^@ 5)UAy[0DNBtJ_nP32!8;K#zGEc~=,ӄ#=4?܈Ǡ[v>~5Jp6ZЙ:j,&mƁw(% |nłbY'yubz`qp"ľ~"qn[g_҄ y{v*(C6fŁf~mSazX̚f${M.>DTİOhJ5{iQBr RЖUrVg,EDUrW,\Ni91{P!B4.WEŗ9Z1;lRg\;[,0c41w[c M#lTЄu՞Qmj;]`9dDb/$҉6͐ÆL)1 Y`zlU ؛\/3qLےy|6G z{JezI?+~x6_2JE=;,[Og&ѪT_h*5ѥc#qzz[?_9 H,F 5 @&LgOVoWB4*ȼ/mӨ@Sf]QIDg̋zajQ/M H:.sEYUX.'"PaI9Kc?i)Q>[J !΢e[aa)HyypwSU~ SԛzS59c3swXg#;w /d{n!Ձ=)"De?W"9, 5<+iNjy9mf:RdGiD-q!;ts~Q#&)u-$B$&yɵJP6s8 i۠/kwckBYf@"~i>$f Z⸾:R uhApB,#(ȶ[2Ac 輔/)T誋Ƴ5")( o[-P*f7m1`3) IBk΄ ]A‡3yډ.Df QA?nؽd^Eی2W"YrYAQc&W3H*yvYё";[͍ϲkV7^Pk|ZENEc=8M`fV~2J ,uYMi V[<k}\ހ>]*e8Ft){ ;RLPߧV@r~_ IQ˄fw( ]+ajmO>1@JT'&{26LL$I.i6xGR*X{n4k$j"[`2;޼hVq{ʉNB#F&s(#|?] YߜZϺ`pQ%ZX-3Z%pYɔ'wyqEMcP? -|.UXH3ss^w9¥1\sg  (n;FPEë|6!KD\ DE"}ϸ!֜)3nJ\u{z4E3SOΛ*U\*8m.͇yY ʗo)Yd)4yNXOSk#b+ƌӿ=< ^ky'jMy:L,<<8%61ږ>%T]7A}G'Yfi }:4]Z0_NWDJ?Eq>aQ\2j9)8~i+x=74]j쇌Wu Z:}2Z`T+Pʞ|4BhҬ~AA 4 :](ŜZ?Y3!4\~5A.4̹t :aҚ֋FNͅHɥ'c~d&sqM\:EBw8hvathjLL3Y5d wr͔L&z KYI*(TdB9QȬ59BZe%u(N} >{՟6R2oH,9}c-5:gNp`n\ɬsX~^wulIwFPCQҔQr-ڠ4Ljj[ @D8__qAtcIÎD1B~EBnhSk]iqvun<%4ΔM*m; Ez9 Oa, IE*(S6)qhh6N!o/yJX$l.DžRXօxYRd:֭1Jf*F]mޔ[*M-.8~6Jkޥ0M_"rÆm(4g t6q(cɥ73XWORq5c}tdckMJ !ۡG7Z~V?Ug9(mq^iaq rT*ϷC=6c>Ƹ B}b%EOZ1/E"N1w `!K&gi][#(,Y9X17'^e֪) XC 5ĤyRdO xELSo'%CGBূnJLhuTw-EFoH˓y;КB,[~0/LmfI颀1ձT>]~# 2\EK{/]6hz.D0m OLȏ F~NVpTg޲՝DiT2/f1c˟ 2;~^ Okwބ('zWz=C<ǯ}ATs ^>#IE)`50xy 2PU ix~ uց k I/3=*Id炦,iPm ;D0tJ.?ytB1|-lF=mEy CA;~S0jE-^oa~@V(JzMN+-U" P/m}[Ő%Q 7.BElaM3čU뱫 <4WxqoV+tQv"· > Lr,wU{Bg[OS[4AmyMG:2-kRafXƹLٞP?^Hyzo̽7V(la[؊ã#imWԄAm2}&w[X q\E$ iX*[r=,p=ύAŶtg|V. Y"9 OnS# uՁr#yRvȨ׍޻(#Ƈ^B`= Ub\Mn:m(@ /cAafBH1VqsU`҇[r|jDŽ-[>maņYG@qa93/mQ&:`o,P#Kqbm /1H*Ol]w&]ߥi8rpNÊncl;%Rkl$"V\{;oPg\ymRh-]y5;IDb$t^木loE|($0rNT_g؁k~BW-h2|;N]}qL(K]Ƭ 7gdtX(^.S!̅NyվA.rt@b.֩Q;&Sԭ]B $ PlғݼBP#k^9si>'+@F٬ֵ;ݼӨΕC]J v ^gd>ZSPd;D=-?;cnqzl{"f*P |~X?u7c::",K\3cw78=w,4OClo]obGܺ581.b=I*SsVmB3! XiS:*0:a`ؒ(w0 31լ@eE <)CΉ*}Ww !PiZŴ[lI{-/9{F'}.;kVEu# 0-Nq@HQ!^}S=y`~akW%}c[D_@;KGN 55ʄM=pyb+xw3uzu2&.!dݮTWٙ ,̪5һ.+#wӱ .o`KKy {3p+OMm 'OS,+xҒԘr|b_#Av?<Ѣ8Kf=A#`n{¦鿅YoG[GRd DBzk?Ck.%F䘰 j%ҋҡCH`,+㯎hx(0EUSХ޲1]= feJ̚z` $?65+>^W"fGTYpeGg~Z"iɅˆ+1S3-e}An<֜n,heb4_39E)AF~W [X&=;qˆcAsҧ .$,ZԞ(Ve{.SD8;Ea 򌋱 ~^T5sB Ө4)uc!ؖw;徙{(×jL"dlF:qmv e8nn+xG(L:g6q3KYa7Y!| +'^  AO9٘:=&³ e\qPiDkjp/[Vo&D2{Td X6jgҳF-V|K&UF߀cNp Z\GvxC<=8R0~ LKC?@!;?уZ?[rwAoh6÷RK g4= ƍBqnqšvC>^抳Gi}59ȓ zp/PȝOEP\6'b7 RM%rJ$(pƫ?OK ~ Kowm8LvxI^tV[3"PlWޡÈ ddL2mЉ7>Ss\ʃKyMs#Ƨ\qd""E@#:DKes[_@sba8_դb. Cchf<|eqr{+دag3s7Ex3>T&~;CB,U2Z-`~q?h92We.@R8F?T5Τip[ٓ-,>'0ن)!I5CY)̝"׽Ps> 쓭&#@*sBgBs 4GMU_Vu< 봳SLӘ(u# ,2w9SRIb 8i. =bH켳B}56S'Jdܦ~V v.cbbPj"RzՃ#5ޗ&S uUq t"K!wliUGbxN%ulz*![Dʪ c~aÑBTz+&)xRNa:f oEE3Vy疈"^>")}ZbqR0ZHF`BuxAk9n=X~-чl;ڥ'CiD>e~-i?%M}WzDF1&d(?Z͡4灭ll4,SGx`}cr2̻]2'zS.IP@,_x~Ę(k0NLuEsWͥ[pDJŹ|+6Ŗ)C4ZRɰ[x׶q>yxO,]RXV1b>S_[2{ꆉmk4X7ǺLWu qT*z&ZvuiOO^z97/%<{uQV>~e&7atjsލhNzYς^`o0ȇ9q}㈆@j!'`o?s R<]&F 5x)˖~SqB*x \d &~cy1²Nwڊ' l2@x"L+ axV[Xy;H޲ty@޶PE؊OɆDL[,EE|% Jyd~W ٸk??Ah/.eD qxf?<1lV[ҏM#P'K@W4"# TD@v_Ϧ9LR+vaJ1fhоAs1Ét a +Ptр bJoGDVLswNSpj;9Ŭn2-^!hiqQ*U6R Ի+suC0rb* Ŭ&ѥM| XI.1X EbSn Ep|o^1=E'.}$3A8/t23JX,9g@XߋId6P,cDnKg[ov` -QxI:;A w/ͷ=b8 )rb"{ 3RHt>MN0g-zuf |`ݗYJǽ=u~pԗ3C9Z"An&ߍ.AZ@8(1 + }f]'V^3~NYhWɚ{s\>QNS/!2S~r2#CI5%__?g+}-Q҂՟a޿2ݩtH7>o'y׎f").kK|ڠtw'S|ʩֳvAM#t1Hv/ӟdȥtک+ m#J%n(?w =2Gg}4 ᎊ[rQf[tDzQxlG?p O]RYOpd3AApR=gsU–^smc&D)i¹2R>I;^e"t?Nj.lj2׭Kjed!ZecM]6WcmiёPdJ&f^>VGeXq巌{񷵳}bhu>ҘO?t$W鋲 9,7BdP-&\V =Zq*nKuNqwt<~\@)C*H>ˍs?9QF;:Fe1hES˧66;{P)?)m)DwlO3{5o?9-p&U UXZȓ8a P^X( Uش"l' a38l`a&_amXrCf5槽i&{R [u'Aָ@kXL 6i^ѼڝUz.ٽ0  QX,<ڹ*8,~!.h`EU 3,oϩV7R$֯j)7K~X$v9jkg!=eJ`$׸x7KV "<%|5tT[V\er RWFB?x}dC9I/(J@}8E:Q 8 ^$|4pWȠڕ9CbMMz*q0U>d3`r9,QVoX(Æ*Lzpr h~UfT6,M" "yGgӟ~)dϒe:PeBҫF3;(K>d{W(@5%cĘzp_C*m2RYKC7@k٨^ QZqZ,D;!Q͌z*fI+U &g;J~ha}2#0/}Y^%˦>Xl%UJ娊`MDϔ_&.18rlۼ zZ@_"#ΝJTM,l_5"Um`v]M2t"x"6%"an3a.x/Dʮ0;[fs̀Ň"3n$1j*6ϛ.I\1vT Ž]d#"SKV}й,%T*4n//)o㣂DB\gM_|g;׎؇fZ!5M4!ݱKFa&ѦHf8ϖ( Γqu-5E4aoj#0aitn٭$g$qwhxb4KWϟ}KXu.B,+nْm8#c u).vHI3"/-'qoT%^נ_/ZvPB՛))=ygyMk/ (,\ڬbiO$% (S$p!d R^B2~;OxkK(WBc B_!Dk``JUrk4Mg:GKnhO[bc Ɩn \0iγKd.V! en O igrk]+xMoM@켕%AaH#wp&sM,x9(y9R]^ \ټ0;ֱ7bdV[߷طAYuȇF +ߖBÁ/Pq\?@Wlqlq?-~U'u5n]`+.]6?rc$a=2觩Y?_J?@41:#Ԡ#熔#&JN ,tWt¹XX2 vpԆ5˖^C*lD5X6`[xHP^*~9?[f(xM͗:KVAF@ 㬾5GTPe>m Ұ ~q$_$VZ`ig r[ (b,Y`,\0Gp}ۛAk[6Yg[,eu,V,$ppce\}i#V>Le"EB촫ʆPǮ\ݷ]4P1l:Ԑ_l$F#EqJ:3ɖ\AQ-gb z2uoνNU+؋+e@RSӶ nQ H=/ 4CuA}k_p>4e]j43`?7CIb;5"<Vے;$GX* Є`_ߩC#/|c QUz+,b| _k4㟿C4 #W\%1Ϲ||;Imh5"b_. ?mN}o]MCRG$hp۞ʅlG;@sψ0R+N5rJOfѱ`{`*+P ?ȳST ˪=1b j]@{$~@: `r"B a2ƄV+BV1D.eYpqNTmYevNZlXe]Mt[PDԽ`iDC8=CL7oM2YEc#OkQs 3Y] 4QuaC F( ՘kˎYaZ8$AٳhM!pMb5 8Kj^V BnZxT@I8*M2~.8;/ !oƢtySbޚ d/5<0`(y2T:͊"QCYXaœ9ΏEQPL4ӍUԬЙpo'Bog0n*t}LL{e i퓐qu^b Ocd< #Eou7xLr/ c~~͕zFK1Cb$s>)[Ǯ[eưk]bʷzx>/48iO !1y5'l?ww0S_I ED4riu5~D'Z\ w7 7__@]BS3G1H@ m%r[_"4\ i(+?{WY{A$ 3A @  ZwC+ ` .F&\nIDݡAD9/f аb -Ho|mn摞h9[b-!lepwnO`k`CX8~9خ7٣%+-o: P=R=NEbxDb.,S ~ X hH>Whv'yI#Dxrϗꇞ)/X;ڜxVXK+=߽emTQE+ صOO| 5xE@.I2LRcWا6 &1"NHa= 3q@. W&8-X!w(Ð] 2^1>>Yz=~2yVRf79yz6~=6ڎ,OeWH,5!nj*830go%C KgfiBʣJKv;@$`/O#s+v`}&SbXF&"Zt^$IWؖq_M>"25Co,<*%˄ԟ]r%[=SN9/Z65S!KQ0Hj zX(:̲[f\5G:a'frz6W~"([:ݘ2Osw+k[>EaSȀZtjjƘgb y]`z&5`I/l p6'4ՃD|nwٓg>Cת"T5)m.E꽠 ;yNd`^7CRE2; yQ >M@n? G 9aJ@V]ۤdsN\`<&U@F#NL943 Zx;m6DW 3NeM&׮C׃,23í3Vy9gr-ܼWѧYd7"CM mS2lHAY!6`k.1;fM+U)L@sAXYjF/[?{p~nanx/"#uHKL') 1^wqeMYĆ_%ŷq+Bp׏H$E:w][͋bӒv!l7R[Thk>xq/rRPyҋbl-tpZة'vuUF #?:c LY]7L؅ FmJݔz"U$2CE< ǵ6^ T -3Z#%)E91_{)QEZ[&/К׹#A ?F%Ѷ+bTDsP$j$h}<:T{#i2Kc M%|UB/ven$4~)Q.Ify6$kR[1zF,mM40NU(()U@ 5w5Х6ݧ+PZ* }v5q gV#Req/^s@L+gy#%JE\,jˍe]P&=M.P?fLqKvZcl) P# ЁIȅч/0קW[E3ەn#ї$sf@tϧ`A!Sn*ZcZOlv̤vXwcG,iOhjۿAdƞژ=! lG.aD_떟XJt+hBMtͨxg?r뺛QU)TRnA*.˦8lj'UҪ蓮3V]=/V俋t ljn_+(tUxT4)>*Nʀ< 4hzQt8GNx1/+7oa[ '#ʲ%,،<vW:>/Y%g tOgw/9ySMJnLKpY =EŠ q$vbj_D/ty%sW:dq\TK]T:o3kV2)o;RC:Us7H)&8h`8_9hj4hަia9 6h.k'w"m=-OҶ5qk!,X坉H6ja,eVk4R۾׏&S~JUC׭"!,(`)rtؗc#LfaWV3.*: 8CzTWm,=¸CWV"2YGisEv?&1pR*9}>7m/қB߄ѺfK%rҚ}f7ī}S:Vk?w^_{H iP%D=zE )%°fGO"5ZW!ju,k!9j \A""<"X(3%6[vDxHl> ./;<XiG"pč.qx-"2T d|5S:d/@꿗#l$f3zV%Gd Cl.K)(۾|UXag Òis Qo[Qɧ@/QsL)ABte k}Q4\4ZѦO!%tL 9[#76Xժrx7=C/:[4Onvϗ + y -ߋۋg҆}a'{Wj(Q%O gL\4{]#Cv*UKA\'0#|ZIyuZ5, Wy-5A/`1 &Dm0+@ cAL?w?NJʀA`4 H7|B+)T B]}oElR=$Q\s|"-#Z#}ͥ%%d!g.S1tK×v 7JqHs \?G5ؒaVN負bmaza!=Go|Eؘ]}B"@ff#3,rhYuᛑf?T&>wm;j`,Y#_$h*\McB51βѡD_ۓ8 pcky :" WD>QvI ߪa;IV@P6qq9!B`|kh4C>|*-}6^mN.j>xGh9&"0Ң&C} 2%#߬KW;Py8J 6YʴgӧQ5H=宛D`vԟä6'oϋ0|}&p7gm%\j: |frz=a^B-N'!/::^y%= wބ\:\Q hQi@4 Z见f;T0/>d4ITLwM0+Q )ʱ!x _q 7!? 4hsh*5%/)'cRF-t,$.rnqrlwpk}~7o o:ֆ/RtTC3)EȵBݘ|oǐ8z!Ae -_uYS@uu+yN)8"T᧨*LioUf8 K2\~s0v)]DF(.by}+EĖ 3rGfFTYӰ\U4bNWb@Y|?m1ZJk8wX}Zw6VY7~^N/է_fƓV\iu|ؑmBL4ށNLE' Jȡ|&[5H"zBik@d F6- c<}^! ״;(˸-SXFTO+qyS탃s|/_"{;ʬnbƟ+Wzo2U>m,f?^kIK}2ᥱ -$MefPIޣK,gZ|Lq۾.Le^{21[hNؓw*4p7'PN2ah`YFCWQ#{}MSif'/#!?h6fJ LhF׽Kk3s@ MviNn؉R*M~9ʡUTקOU:O 쟖=J=gPzp\!qQMqQs. 6?X=NX?, '_K_\vdƓ\5@tWw3s@ ҔiHٳje0^4+JgWzNZPٷPx/fnRI ; J}[˶0욤k.b'+p$7&5t s9xzJ0%j" !X7^IA.Mη+$EER%) ^zb.h oAuMJ,}>7ۤ=1爷LgEJ+AnڀjMXCcH{d.iwZ_"N8cx'ˆ>U8JIr>kH@aQ 8j"4(녖a"X#2M|<%5mTئ ;I'g.1S#ETYP׿YHKyc;w!8\b_MzvYy_{iXR Éu/pvR35IBl0pg<>ql;`g65ɢOW޴)jnY) =^Z݅&Ha}؅<#JhD`0H;G5/ *\AAx&J zL|.dOzgd5H.PCW ?,n?%QyCKuZ I&$6,p{fV<*.w-ccH``6t75s/ i)d6e5J:`ۏ?H%\oF+s֎@5LZlW>;Eʫ^f)9&q!c=?G|^@n;#Mb>GBtٝ %m߶},2FklMnJFY4炄PGv4ٓeRvevcˢs _' n&E D$pr.(u !@Km|p)_E7Q׊fnauؘҏb,sMގ%{uG^lhX ~6sK`8޻G|Kﵿƨ/"qKmiLm 57QnV&I&LsI2akxWmm/(G9O1$|WW;bOjxT&lο 1ӷ|G7 KGIzҳEa4˵Qh*JJp%-G(׮.3|V-e +y%ɓ$UlG8e{ xQnI7޸pG`ݎU7^:y, YUi*W',D*[)-n6J/~9F?k,QA=h<9:+΁*=h`Ԝ ݽ3 @:_E:d6o2#{p=j%RA]Z$h^`Hbhn1F0G mTB>)JzD]]VRS4zt HΥnO& :sxrOr5b:9WP{$ː; kݫX`?0 J>A~X@f#}poNTk5)XRΥEF +,ݸLbQR"dvh_ $7TmՎ ]Cz+pf.,fm;QSnf?5F'aT(I9&"Y::TN)?1[3D0z_>^TD!V\M JHjdZG&SqEUƷ̐::/'pVCk?m@0-^UyK@!Fk;J; /xh8;ZhfX)mk燰):Y!R_j48]-Wqo>.ù =<} cF[{D.5vk|Y7g}2Se|O.u}vKך5 J>T0IK h dm?q"A%-z@LSU6H7 G3אyS6}OlȊOs[ CCc`b]F迆p?~"P<֓XN wrqᓤ 't1 9 35Dc ~4~N97Z{_|uBv6I/p7'}c!|UV)%r/% Yy\;;:Ogf23}N:{wFkZJ"٘@չCy"Iu$*=8oro?H,ȒRY\L0U>Y{9F9@m%O礼DKNm>szK\Z}Gl ULo$ikY{HEThkZpr57Zf~!K悆d(4,sv=X~Qh;d~J7ιj"~*GU:YyR4ķ5^q$90x/\6eT$=‚tb\M YQ?Cv gsN>Ѡ:bk}qr?/bs-;L.^7VSe*gm]vLWJ$Wzˆ°뢹:[@1`eyYR&D+KTg!%Z>GG_ P С2$fp[4YZ;D'jI`Ӣb0hIYh ɵ=ZbJnN$K.U Rb\]y39yq\ s`qgs(H[u~eyɀ$Á&rFGg,^+x틴kU-|LK80dYj{5}TN*o(fpAxZO/)š!]CR+I5f0-#ȷHwTC02=։`'(V#ue,1[}C1@Yiy!4y+\>hz m W:s?bz๡&OQ3gsuf\D'+=|h&ǒF4r9ܝ]O(zm¢ dy2/C0ϷPwV=hȊ;DG`B? (oN՟8:k+oYB)B'ff QFErĤZ XSvnFBjU ~|>1WjK?2rg T1[j) oMS~C:i&Xfe[yA3dkdJn% /"\<;IUoIE0\,ٵkEd$SX# xhaE?hs{[oWm7iض8$ҙ_c-JȩjA,"}yk$†/g2VX` ᘦe>"~kOuEQx|*1Y޹2"]%KPw!ɳO>|6f Uy_JDf v'͂Q%/ְZ=moC6^=f81.oY/:,D;;$~;0sOQ'MهΉ6r%{\r'F#.p!Ln+coȢ40ALZNM#5ӓ8.3kض&hK.LC*ӊr'9zegE/d62nC7)XۋhT:b<<\ɣeI.G>g_:ǘҊB,+\B:{m J!BK{񋔻oJM#.e<=zSG*g,MӲ{x:&cVkū,"%G_K'RLzKU.gG@o)`>|Rg]t0} l>zj eVoi׏*([q>\4MS]ɉN:g|ҚHԈ156E˝Rwg3rup"<_;C6z9£}?z:Np+iB.K6 rh#M* lNp ̊KP;C!p#!~ ]ŚH7w+8JtgqbniDtMݘԺaj>QB 4$C[ք uԛO@K8[΋AC!ЅCC ye~χ9O;N{ȳ>'9~~Of*  GI-xLDhspAJ$;oz/X 9Hxl~cVƗlOnwES}F),Pm(T(rV>9v/KL,'J)Myʄ ouL r'`D ݪ`ZœR"/=b1;T^3ր7{HR]a{[ iQ7|0]߃p|]wx`,x)mȕtzEzEpȫQGi7zzuOYA,@ yWR i$"lbb} U"?s6*Cw%1CwKT `V|>5DYZ׶]N֊b5M> z'_yW7{xLq;`@5FA^ '[#uvh ,"{ֺ~Q{|ZUo]M kt@vR%佚ٯcȿF,c ORmTG5R4LE.\M|iP+SR }gIz-(5CmR,)!iX(0ّ%}f.Ua$ x$݁-!nԄ[Y+'d>V@I4?e"F_7j6LGᓣF #pfDy-XpQugX1GuQnUj槥R9[[n"T9l'8L XQ_:GHN]ri6!]߻dk:ѷ &OD(FXL%uxnr []83GkͿ=oIhnsU!`SYUEIlqLI,c rphaQJ-K <Gz+$W$Y\b'wB^δw(9T14Na 0ȎSf.gHzwƑ?[%Tv|Al^δ7 FִBb|W1?̡^ou;Nx'AAPv8\N?A;(Y֡v!G;Xor*PgչGG-sȩa6TNDk`Ul\?p0?l,/בuX^g1`xYL=8M3 /d"x9m~6z ڸMh;$;tR:jhj@Ԕ"[~VJ.^'Ksv^~`B58xl Dz:Y#pPkR.,M +(Ȭ^Dq.YRyԵS="G O*C|_ dzR{&H4N 22Qº9AD2e} ^>%=% BiWe'0-aX&J^P5y;\y0=3n$ W.xE}"UTlh-T$GEFƱaLQJnG͡47=x Xێ,)IYkRτ3SrOt]m+{sÓn6ڙu!Rs 4J~ż PUR@ _N&ZKji笠\C¨Kq!VgXUR_uY< ş3樮(nO=`&%lW`o4|exIH1=Jp@ ЧB4,3((qJIP uFJ.9dXQ{ɉbaaD]g?ɡ.*/ Y+vZj Uʍ$'7l.w76l=v̞ s;y3W]Ml!2";ZbB ݚ)Bmc8HTTz8qt Qr~ #>Tnv_@ Y/{&bk7qgw:Tzjݚ&lJ<â}g;+PLR8rmGz,Zq*Ó.̸\Un4z` 7K5e @ dO-ܿ $=Ծ $АyP;KHoe7]ȟiҗ{Yjcs PNqw]^!̘~Z,q̝`)>蕊f2 rs谜]|E*^ DRyFU?|-\"5D~6F0B[!/v}g~[暒o@;X@gTT@ `3e` 6)m3~ڡ/ Wh;Z 8-qn{^)Uo-;w* _1i>,Z'8a+u(9 wE@v9N9w(ɾ?$CI_TY@JהPi͊:J͐Ie-ׄz!itEP*Jvu2(P {%䞀aJ+:D,TԠLD}E*ftAGkGl[͝lŖEh~ˀ3r%, ) meWtOV09VSZ7߹B? (b:jA c9uaK CēQDh*}" {Y(n^.v(ltd0Je͘A;8=ڧH vJZ\:89֢ 1Hag!=q-!&Om87 t~n}n0}qKa2|v5J% L-! N&[=Iukgt>tY>#Âwn;Cx`g`,dB$Tub}y1a~}U*L|Wa٣V6c+ {> GVx)U8&Ӑj- |DHg/N*"nK$|{I/JBTG.};2oyyp\,2ie nDA7qa D>\y6qa<EN{ҷ2pmp_(B{-=@EmΠg b]-~#Ns߀9V, ǩ6V3c۔,?=X~Z|_,`>%[,WgL;0XA"Zh#6=ʨ{=#ٺx.gN%|͑{y3O]U̞ `g2pUl{|qA@Mh13=fjK 9-v6Ys:2p&xe&|au9˲1<3"M>ؾ]gt -_do(X 7c{ asDž+)%?|*Tmmm1-/'y?y/#E򞵙L ^)PK2auPMh'EVG;d96XcSVik ykȐrV_k|]<-%6}00 r1,e$ou'KmP%BOD qi5SĢ;|ݠ *\EL3 [:11 Q$Lj=.y*';rMdg9C}62oxRr{g)TJ~׫UP슎6.{ "tMHm]~(l,|p5&!rXhy 2gC)ì/ F' >|$^QT\Al{I~ P>xYE }btF= m@m*l i4& ak*kOeHo{:f+R9L@;a/WTʳ>>Ac2X^7zdRz~?tt+BGipOM1WD!B[ƙkc-~i{'JqúzrxAFzAhD;눔ߘz(ُ(:%cNLp/} :6L9z1N+9$Z+Vv6!j$ C*cY:2פf]wX4݋1eGIKm̀kVnN_MOà^(.")>paO;i]JKRhul|6eaDO JCNLC HM3 ⃤>ae.F* `(1B 49>c{N>7ES"؞BÚeTܚkߒU {4R 1SM'5RL'~jc>CB]аE{%n2?|mo>[^ B/N,ӡV颩L yG׀aD&JJ u~WHbX1:9VJwZR>;J*\S3Pî,w']@}9 ^" YpA``3o LsMN/pM,SRH3 "To*. a;cxzREH<׹?>[ Fya#/XS~qwpB̝6x4QI?\2|OK_1Ź@I&XzA9mȢNZ'U݂ǭ=$dzV3/߆Zy8tz 5Mis C .m5ivM~g%[ƜlDO$:Cڍʃvx{^{!Ƕl$*<Zc.xXd Ò!l%һ[,2SwA p6DrcuetO1hwZjo>ѣ7~6}m3/C|'oU ^bm ^Н'%H~DBqK{ap:NSCa  6zi{ O fVxP4EtMvFmeCm[C?Xl֊uSS5{͆O-(OǙ³gkb)폲(H[\Ez8oWDmr{V?s%晋vRwUe-ߓ A>NX"Jşz#Seߠ<1pϐ.,Am8kO"Y_Й;?DL"1ٝc[7Rrtgrre|=:Sv}N2jҌ++OgV3r2n0yPqLG"CCj-װkIu{= *0)mWV|Q9kF/4Vima y)T Ht'c89ĎտRW"9Zgav%B mѸЍ%{GyI5( j훥I .a-Oԉۈwlw4hvFMFS7^0WRvqzBVt6~zKxfΊ 9ޖ-sm83P;?\SZaߊf]osSmǢL_JXs~wbH# XyN~gQK㢑t2{FZ>jܘlUS%>}-Zb]a51_|-<ǥ=#Qf)v6_ ,_&5ؘWui~` >We݇rA $v9'Uh0\S}ch@0pSeޑcሪs>h̦a Չ^$>y Y^gЛ66i,,Ո!$ޡqȲ4뇕^R儜ݼ,fӵA:Ա{h@U$Ϫ9H0KڷP)=Hso_ E]`n 0G Z:f*cUxi܀]1ks__{(]L\ȴL`Uk1af]f=4 Ȳێ`i| Azc;g~k`:޵;)A6^q߈L] ~Jès=~M&ʷQ'$Q8p|Ř7#(F?FH`$wj/2oU͠RT/c]F{wީߓ2~\fi͌t!MB$4H_Ell V qlsuޯ`0n%~57ߓu\ 8nfDgCXPl/;wͅF"YJr s4}MdCGӻԑR! zA׾I)8VQnql>vj6GSGN$`7 XVDzǚ?HVRKMٷz ~<+\Z+e ~2Q"@U 83o#3-e!;,3Xc*/1 lU7ɸ雟WU"m3n~k_JGb'nz>LZrܞY]1ib(%ǘH̋Z=(dVx77B qu>O5 C ]Ķ=vU1 D| @Rc63S8pb^HM$ A\9j*l6=&bD,F&Sa =GM=GH{?~qTܼPFk 5L*CcG9z)8f!PN7y֒Bc$ ?HTVdن(%ޣ_0:Z#&h:Jr}^ې8ً^Gcve8-*V(TLjԊ`]^)SA_*2bbB3+ΊB O!HPΤ,ЏZȱ]̩k$|Á8/%HM. ȿA³ƿ^CYz+^ܱM`3<΀<(/E&4m1 އx%ۣFbJbKq:tn]䏋t'"\107bzFLTF(j {ب c?"Ly2.\Z qșSu$ڻq-8ZsgʴW[>:eۨp hgF}lC xx9 j5K L[ 긆^ǜ`#98'^Bœip)BLRMJ%pD xW~,DZ |*cۿ^!%o{HVqF/͈,Qe> v3U~dKlPfbTL,f8TA뛈RxȊ<­ )DwB)ߠX>h̺iJ=5*_|Jz?A z i U<E!sݏBʡd_VJUdz)יgIBd #$؊|އw@9fb就b!/,Ѥ_ZA"_ЄLW5fMv Mss> AތEgbҼҽQB†sY[xWY”ׇ OQh .X4o|%)y]р(f%7Mu#C=m>e|%[WJ݅8h5`+pS T%?_2grSx쭽URF@z]-3$Tcqol /J%gv[BZmF ՘73v$/m3~-k>Y6}Wfo4ۂXKPDeXh6V ۃUlV3;q.yebVlÒ:g_ WHX^tW3RAǨ$L@*6K#T(͚{l ĉmoէ6C-zsGBeYf׃}4q6fֿ/lbAaôFs m^/L1E=ߌ5\gm!;o,6dbQ;^=l$β~e IOo_v ¦f@ J($f |ͯoJ9R$ D] ϭn ^棫w%{QO1s~|~#뉵G:h:||CDIoFcM }J.Jk]4)!.g3vJQm1bsh=+at'?+IOՆv=ͧ%ANΐo2\1w[?zҁHp`6MlWwi6H>eNꑒiǟ%8~xr$Z!gM dɬEPPo}O`+F~TӭC5ގ19R$$I-Xz8W&{p'>L62 Z+8<|O@s/άZf@kU:1:)fdt`j"㏅ cy@M3ך懌ljT]QrPAB$ew}2KI_C 6Ŝr};-nPwLTw̓ΤZ/yF!<'AOA(}/*.6218%˺y78DKD6@Mm,6$*&&CUeX,c>ZcmTEXAjwpCĽEE 7FXZѮ MЫV ޼I'ǬLJhY&qdp:ymNWݖ $Ma?(c$-1s%fxt4C6u`߿\fԊ؉38ҋ]!$mbS&+oս-1T@EBF؀ŃBRD˟O y,.\sn]Ix{EP;M:n*"a\v- RSֲb6aU&Jŝr3i;΃>|Vs_x׿ls0}-D$:10rؒHg1#E'Q}M*y˛> 3Lj/=sIt_`02YbgяvϨp׽c&9rQu'aϧ`.(ՀMǡ]&41ɤLM'Kk$Ŕ@ _ƅHYidq.oqyZ|,HuQO6ȅn1:~u<#.f\&U&[Iđn1nj^*nx}CZٛ5'\n泽4v'ydU tFNݳ&5ah_Lz,[jOw)`Ew|> "$C4Etȋ2o* @wB7cz鳮.hwȚD @ZΫJEpm cSP_F@0pxnK 0bjy7{l.F^@u;꧞)g \^@@@MI3*VThe rYXԗ"e!\sG'*'B+G-FqV6v`rFɫDaFX#w@#,!'/=oUtE72[sBo1STmS!R8r]E\ iSX7 Fx[f4޹!'>8OhY͝BkdׁgLg+"OVe]NctR`1Sh {8wWlq]Pj&}= c{ %0&?d/$l -e,Wf R ''bVB޺Ǐ 8CiH-'g Ufy'G֬v,i@xt)I/068`JXQecT(g3ep 7:L1rDKc:o^&7)kȮ9_hIt1̨!GUL\.2hL\QQԧ0XGzu54@vd&p 5fl5f>ތZ.ZXvyyZ&O~?ꑔRK>EW»miF^].ʣ+.:AQ*\Fvj󎢿"U6,w?n5n +zDMJKd؜;֎L( @#_}`/' qL ψ<vyqt6'=ZIX4T@5Ӛ/ רHs@&VQWpdR(2}S+g7Pf}DZuf ;~7͑G.SvQSBQ}Ü5J3->7@}@k+ѐPdD!<@WZi ќ$*y^^iGH-q?>hb3UOEds6#}'|/ 8}12<ߺwi9޶0C.asFD'QpNzBk(2m)R,\AH;H܅lB&Dj Rmoɹm, n,bWnH{ _}q+-~ ^I&XBYdE:{]Gd _;OrD/3r6tu/h6 Cd%e=>AJ52/}5kv4֮lu+5{ Q=kDSoc t:j'BmYi)vA5B!AgJ\ 8Or=V) Ud wD" 55(7׃l \%mξ-*NF#Hu]RMpg?P2vi{PYa)UP-\.sX8EVHp-qx$JswJt4W99,I HsHǡwU GÇV_@~"c}J1p63 (l&DGM_?pd$:)(W ]wZItQ Ʌ@ A(\#(n-1%Q}Sɏ~˳%4vL,|=#ԕj&"g̦xy9eVX3j:krQWiCj q5:Q %@b% 6@Ch{5R=@[}թ „p#Bap(׌T@AIxh88I1U=hCc6:s%u'|U|vVKWk-Ud׭?,XN<7\xFfz viHčrlj-dK_0L7 `4 dBtpQR|S9ʾ_XE/3waVUQ_.#Hp> y\R7= Q!|fx|WR6T-ͧ$ì^Q^23~hP, ^Jcmrw | h.;nO'L=7O WĔ.y?JZeg6M^4kE\3.!0w6 ($.Aw:Ȇo9|_t.R{#$KGͯ@{]/ӥwnpC,R\wi[DRԐS=l=n ۬LRԛZE Qa,i݋y6hi%aw0󎎗PKQynʼtneExWΉCo)CĹ27&yd{v a w?K'Ly -뢑U\ى~ ub=; Hqr=aZL}VτiLd&mc$(Fm/n1m%򏜂/_+h#k@V"R#mr~#PDhk#"-PC e@ԍ韢6($lA@sKp@"U &j(5%D TU 8c>%fXjJXDeC^SZ4iy"uk}+>kԟn[/k}{Emu'EDžK\Fe<@/-?%Z[8Rmp5IG׵%YVdpџMJjCv_>e;H]F#07K3YGAKP4\PqQg{T˖x^ʦ)'@Ya0'+yP/|Å<l.rJJiΥ){19&q$b ZGHa9H8S~'4oN`l|M !vQP9߶ħ.ADgءK{͵ATBctZSce&9,^::vK?'gԭ-/"ك17ȰSE@zHDg[˸BbfD"K3`Kt`(}$_SۭŇ}caLHLiBリ1Ydma0h@n#"8-9[JU8ɹ7k̰xw 9 2@c^ԺR5ud9LlSJwX x7'DI5UyW\姭crjiy9_eoFl.<~;Ns i,OW9oîINYM%bnaq]n{f ;rIh}&ğ+%gTV߼UekAT+ƺ$^#)Mo&+"S$(ED:vf.m>wk[1yLj g8J+V}7OCJ?cNT=9.d(X?f"dzmuoNP[pH/~~ytV+rL;6 4 2#Q~LVc}wڊ%I#5pbD$>I^y eo?j!WՂAC 2$a%jzSG_FwFj\7YфU͋2"$@53%X~(Dad#BdXc<(hqarZ1#8jI!c-K4]b炽nLZ]"&)᥄Vde ~*0> $Kk*m @PE*#T0o"+@@H!”f$iH]rN9`@=נ#3j=fNYN'RMĿ7/whjb zO[jjSX489J]0R8EX~DXxlౙNT5"}{ƒz?Lo^ܲ} ) F9FNl.# <,G,1/w1 -γ%Q;4g#Gj ULt|[2LN_T*0vXW2۝wdC^)T/dPx37D"5yy{K)'9B⁵NF#Π]X?մ[BAmswݸʒ:W=m47wE jq4q>+=DC5zQ4O|ϯ?4@>d F]? j=.֤my-):tDܻr ,+ӈtr6)ٺ4m9ɏ{<{19)SO'NFN}FsHĖ vK1p|@ʶmuKΌ w:ƓH%LX1yWR O%F#R/a}u2abk }V-KeO` :S&27ߊF'@漝vV=mDFvw8,!PHYvRH 9F j#GP$Po:: z]c;vzvJ+PE;<~_a6J˪-YD j-Cb6^xE~7?-=F2 =qxdOW, ]NZ,쵻g֘wز/YRߒY I-0oxw5"Ht <22o+*`IVF05&$Gљ"PLuus4] y./V,S\|ub< oEԉ2 =FX2lfk(ݨ:ro'pzY~U6~K0'a5,'5}[CeiZDKdnM]*;%'fE}mDb$чWgWt^Rwpїd%6km~Mu iq& ?I`h18S6ڷI|FM mی:%aRZ饫:1GO3{K#:rk o PΣ7 &.^$'=5cx1IGsve;+%Q:[NAI2Rr!L)AI GGh?[FnB醨U}ʶH\aԤP*eri%Iûr.YFۚLͅ(#X{,Nh EjbS%d|tdYfŒZ#TEw]r-13^)N?MPB[K E] (чECL*byGMZOEM0(*મ 1m/u4! *N苶N*Q {eڮ:j|:Q7==߸F5 %x+le 3RRM<в,Uo r\'`2S-Oo؋d- Rv3֬qh8i^De@>nsBK?1q(Gޜ%`A,-mr#HF0Li_]LQ~q(1ʯ0]־Hz]*}ȩ'Bt3 5^JF{ 133 ں"XJ@ηgĬU@*D#v*5,%s6;>4m5[ȁy$D6CrTuA34""~0Cxm@z搜m{V3R9;392r[l٢4YA ԧ(\T]=L0wHm]ѿ@rV> _]P叜EArm>A`vSډ=D~شĮDx*,Bgj]ˎ_iXbuyCC.(e"ǾB>3ewB*т}_-$*0<( Fak/$"Aa~O7&x]VN> cxr$̳DZ(WƆ@mA<(RSU$\²՛h~5'r)Zmq! 7'7(]F̉ӓ}ky76p/M+FɄx&h6C)hIm)Kk=|r^ &$7H)_ћ7dHo!鈡Ħ.O\ijo-a dyf%TrCBE\e?oNoPƅg!wxPK7D:c)1y&"] Ҝ|+B;Dw_.x0y?yNj6dACq8{֖]I#fy3@K%yDZtj/qwGAmi \epO': Xh|iIouVyq2nhrEP1EVfdLnwlNY ]"pJw(:#z.&!pF0/%y&TGcb Qo qSPyA|+ V!IF H#8ebl; `UV"Jj4E"5Z`G))Hi60Yn(nf#)t&l@Q;7 Sg wY%2־`CNa9Kk8u@tTByՀ[R}-Ҳ MC4S Ϭey:7cDϗ&ȿEei:"|2ܩOI#Tk[ ƒjpm ǻi@M}Q lbEh>JNfY4 2R͍-O0$H]YmkIaqw3 n֊hT Q x/No% CxW\HB,o=xjjX%o8Wucp&F~F'(ݺۀ; 03'JW~ n^f$26~nxAi`ry(2jBOfjTf\h}v[.f$Iu..&譜3{9(\ ,q3[LqϫVؗC4pYx'ffi\BO4d1E?[ %NtV%Sgޮ4:nvCFǬBG_84Ϡ6ë Z oZ>JNlwcud nc^ 5$*[/藍a?ή?QԽoVsYF,|wpzo`Xᐂ+QbƊUzr>al#2pf,Ǧc@)83 K:eV,|!#P="=&ƝptG8%QQ'xO~qڨ/-<_wg'&]-Qpﱽ-Nm}q NnL,TnHš+l }1/O!r覲[ؠ ݺUR䴾ߕOtc-siٗ: W7E$ʖ C82i'/y.5nnGo=n*ἙTӅX>WDoŕ9RjCDsԨ׈e­X.k"Otr@a ~i߻ Xj.,2!4`F. s"eͷbJJ4\qa]N.#xOnBZih)e籈U1cݎ e~{Yx.a|0cJOyP H8% A.n\LOsXE?d/2$mN;-s0P>w,8{ݲ2"WrG?bh3T<wn/ {E; Ѿf1}}k`V8 Kay}'EԖQI;g^os.qaHYQ@@X4a__2HpF ,?9c4ncԅfIEhK:VnDۨESbFmV6;ѽMDrORD"@LJe b$' h:)VO0 :F ,edN{x$H_p}\{1ILc5r[t%0(9EOz{aSl>K]#G]^E mbʈ}aJd%=X1lL)>U #/pn Y}q >ˆK42@dBJl IeYzwfYtЖ'E%ye[ }CPkȻH*Sq$Dg!|OzdV85>Cmy1':~`H`獇u;FRY)cWEEw2A3ʹ"74ƙΕ!ӝXwKQg1&<wmxnk aNv@[nU'&d#$#N;:Tȶ"^)$(CvJxEj fEA+!xB| !@J+OY/pe18;.+^d%I''6*9ڙ xk 7';% Δf[3but$* ghp˾J#.RĠ q'X4hEA=9im% Zt9y`ckΦ&ln05-+%ʔyhL[b291kXx5ῗ31LW?o:ƎK @ͫrt *NFݓu*H+͂w?uF/&<Bo -a(!7!D!syޏbIewű]Ӥf ME G*}xW0FAv-@6L{+| Ʊ8ˑqߏyH~zK1#u߸䫬c) A<[6+ S]o0'r6r?ܛa}_LB֎c=wD}:u㦯a$#L1jW (LSz*H+Y`X<#U~'Ӌ$N.a Π,Ha6:VWSߏsZҌ5AB㾞"#T3V*O|{/Ӧ¤0#s߽Oz'VjFS)cNtmPu:~/%jWGb֧6mdMu2UY(Ö^|B8@Z+\%pQRccqx= U2ܛlEoձ*D_v馵ypJ .:,>9箦jD-(d݇CPj-fᕘ=3iPIb}l .,+BVѸޮ3L0{9BwOĀb(=)/џuLJ*I5J3!vgIᑈ(3}u\l{jhmَ\?2qONzʜ';6Pmxd~QL^ ||dYx x=flb:RȣNgv<7P9dlNe/ ^Vqzml]m-\;5 H'&heg] {CĺP3_C;b  \3xdfD!qkAo :`8dm=9t4no7:Veo頶*aybRX%YT"afk"gHځ*[Â&AH('-v")!:(!Ki?%s_ ȱP;MM(}ŧĻFIs%y\ dte~tj'+eUy4+qj~'a.4m3j2*Y;g4oRdG}%T Fz듏NE6ӵ`X~7}]L0r71:~=n5lJLgXAb(s5pOB%=I#U;QfAϪyr R^/$ .pJ8{YPyQ¾%x(71۰GA3tӐNDD)$nXIPtZX/(@z0.[MnSWH=Qp#P0g;UIg8ۥlyct+[*$łI04E/cv\>"wmk&N.atJ URL-HT#p2 /^K:܉;- -#+e{"&AIfi2Ř@Ņ5܄Mf6MaHFFpc:PW,#]Uw"\Z3SEpIV.H~/[9pY)"Hqrku\(@s23rJ N6VDql ;;# r]^"aX>\bRp7اaVdYO&æsYVB_<hJ r7ܫ:L>ɓ+(/?zT&TN"5 efryd {N@oY5OKde )2ޙ" 3jfp`Ifͷ+As4ך-n]ZqYD!c‹8pIDSz9,aκ =tPFnҝmOA:#J0(o Q i3 nxgh ʹO(Df*vF-.hl $$ MeeQjcchʪ A^45ݾҧlv6yFHa􊁚e cxo3x&9,9>y# /* g1YEJ;ĞFLJi9#9S6^OCYr`x3Xح,Cip"͙VÚ 9ͤ{+޹pU.$21SQOciērΣΪP$]Œ,Tƪ~=pp#,Ls<D?O8xC*Hd[5i"߮HQ=%*FaY GNEm\=P@T{i㊶>fׁ7$Sneá6Eƥ;ý4'Z\Xt{e@sO[0}8'SAE|VV'a@]sCԵRA&_.5[f t ]P(G\UiRj+ FƇ(,qV6À9ETǠ{Z-V&:AvprO" Sm^AR;í.,juB"e'8"> ЋA(2s^z',]WG7tMVuv2p.\H~RaƎ¤UДI?cNaAx sAAt7_&}#C6[C3u:B՞Xk"/ H>M`:}\ )~3~0x;RGk.WT0,O*Fb8S\A7W|TF(V%Gf|&Ox2MeJʳ Ц/pTc',/Q qw!B@=d9$E%ކ>^D~/;}vspۋGQK{ K5:zgO d^lq3}:/5|Jg D'*G 2ښX.譹0E/ F(!1@AN# LQvD{وZڅ0 YbugUqr|.٩:ar]6ޕ+NO׿ܽ`ujY N2]4ʗ ,z߃F Ga2G͉"N`\ kdٚQF&nyvDžEm|;jm{U@ O nկN|J7Qב%2 jΝ>~ "d:ȻêڃbgT7|Oq=^= ZSʼdO6xeXѫd D|czNlwp|4,IpD&vfdk\NmPUS'A53=KnAioerT@& Zf7>^vxzdܷy8X_@ =*&]pz}cqsa6ǜC>q&;sPds^8Ց)4%u{[fǨ}f-.wj;ٺӚ\>yOx 6)^䷧u2m&w=ج'[JeJ>tA eI %.k JSz}9hXi.dGkC+ IPLYt}CG)^8%Z4R]22|x/3qL?F/| N~ JBgL!33E0ZA hT JOU #"4߄IO0@b&>`6V>x1K;a"M!|]b ݁ATI;-Ƃb8 cbv#ɇZag*㯚.ͪc EI45`=Adls'~{. 7?oEt0ɟ^XWDzEdG,ވ63yG VL}lBjݣCW ۢe [sFf{Id6cۃzpg<d(T(iEÕljR%ĩC7'e[rtģۆ&-J̀<.%a IDم^R|!K ܂HA`D<7To{'c@;t-,'0dD3XCp/a޲!e {Isʊ0;1nL¦ Ta_ kT G4 L_\E揈>OJ|{!I.fLKgex> ;MHGELFl 1R} D31ej(`SWXiM1bvw.>Y1:_m~Cǀp!QHl3<3n0Mmy0.؄QLaRhmܫisTւBmz4uRTRVE$hXS#W,(HpQt7hL38Tz&['ڈ9Haƴ5w )}mfpԲk=ɊB$zfy.gb|Ս "Hp.6b]R1'C"J;/bO!,))5 +zB4NΙbq&H!KlJMXs[$2B0,G>5~4X vL)kF&a y/;.}5Mg(o,g-(m7P:{Cz1dϊ4YimNX?diǸ֨J G]:ηSf %lz^7A.\DXC77aJI AZȁvQf|*v:!:/"=y J^^[[{x51H-)rvqhO,X- שD[=)yO&ѺR9n\H:klU}ԶW4T84Z*+7;@jJ0 jRGQ% *fAehVΜvܔ>D͉0-eb䃞רZ' J$#<*R3Xq{TT9^gcr)ǀrv>:q .F:Ox`]cʮv0s1=j:U7>X$נ>dP!MT} ˫R˽rͼu6t:[ /e̷"-95=(_C]#\B ;/w{لAGoA8ti9zK 8,X 28xp7!e@ar{wu"M!"-<ěE)8~vDU.#ß~M5ΘO􃷻$ӎAXK޺k/'zRԵNM+Jx]'raPHYJQ`ͷ<"LWx_wcۀxy~& ߘoٯ >NffFVyZ+0}#+JzsuQIkf1^+=/u_O`4/j]PRESo/5%|wU=DgE*TQߖܯx[ekg :A9I<){ v;5JsEB_``ɨbԤmE=d5`?ʤZНEa+Z ^E OBwY6Έl2*CvC?X, a|Od;̀Eve֮Y_qpaRZObNbzUz/vޡC7ġJ;Ui$).nSr/xh5@A8s&U`L7`mKLAg5齅A_W*6..9]NJq56'7~. A&%)YD!@'e Ik?X[<9ػkV`y Է9()qadB^΃B 5dJfbc9&R^۠O_or>1&(cf+mu3/a%e$:9fq-f5+~uj xt +uX5vyTPS=:sJw? 'yiEyz'b9 &Rm[ֈ8Q非$zQQ%Ծm"Kg;Iz"fw?cL2rޤv)pgy{ (ң~`P{Cq 9["Ѐc,1KH15~@m< \KcdECd\=}< kGZІ3Ġ퓉5,dՋ)ٵӘ^~X^^4d"~yܾ-jCjp:]Y1OtПbdb"Mgj+.bRdž~=€3dJAbr/ܸ_{J$k :`]tn1y4'e}kEpAC9DW\S=}AM;$MaBn! OxbY]$AG51kb\{GP"tv;Na^ AY46fEE{;V HWSG. rU RI!E [KYvq}oW/6Q`p8g[tq+/Mc*2$ts|뵲i <-6ߎ32Oy![ηA I hc yHDxEJy+ ׻N[8lp5LN%(&D#w42^ @"TM|3^boċRUI1eJHcꋐՍ1Swvbk\?> *%(8J)!%\e%#]ٌ1+IY+&>`zPP= e3P]iŰTm5w6CDgڙ# Jn&; e]tSVMo?h]dAb1r5la"d^wlj(#Ɏu{ZRDžDI!G5)%O9ta=E- 7uId!ܫd+4dr{$N#k'`9N31i̥VnҌ ,Ub _:֘2zWPܯןran5oNA? +))'f FCPLNhV-]Ojk}F Dv `nJYwPA vʖ`Q\:%Y^DO1C\;Gb@z] h3M=s`b9YR(dzlp/䦖`-/̢GOH#(6/YJmqoQ0$.7΢P;|RyεZ7UDFd#_WdK&g)Ʋ2)3:XUDYpMVϤ׵+vI~Vm |; 9e,ѻ]sv_s?,;AcP, gVWPHi]W7hK{83~#T_W;b%v?ᓯtc[ư@E0ޮot!wm'pNlﶜo/<FPCf z8?Ff&+ˤA=MO RCVq %ԹЧ(GP1,@ ř zwZ V;Q`>OME &y"h3RiD)i3% " գKK߿ JwBWi5F)"f do G]iU7<`BBر&^D)1D'=Cn,wCͥ/F%RY CV7I* 2D&L/_ $@XȨn8`5i7끥7WrGr>q3Ȩ%g5œzꥢZ.".EpcubcƸx|JS~(w C6οHRI~6ߋS;q?ӽCk׆-u3( BR6̶ } 06/D(l9kw=]Gj lJk ltRVsJ7mE5}OP̓g>01bw7v 4>dYFCCF?f+$.0QblYM3TUjҿ;5ń!̺j\K UMy/v+E S-(GxBŃ "G""aBv#|=ۯ891Ġj=R1m@8?70+VYZQuز.YM$[h eai` B=Og!]kEΑcLxt)C~~-:K ؖLOaVY`)Dק0޸ & J]߹hJ&|S|Y^#zR,[<4mb6!x+o*g!BwnHWFbz n%7!uA\к(?`Na'QY~C6EMp6O>fFbP kvI590k.w".IْKA},TP9JMq}ah$;5l|uMܨZm=8 m{NRnMZESRuB$ٖ:1R֪s6r6O:& ۶N%X؟g$YK׸qI"]XEyCV~+qgZ( DjvEʴc{r=M#@t"~AvEQw;L8^}lGw=4SUӬ#9pRT.zRR;pśJ۬;]X>;>WyjfYiׄ#m٩$4؞=,2( EyI%0iU@d&^zOJϳ#YDJ/KE!a_!i\ 0Bw1ϫwqA3ϬfNd .L$HOCъ> >7yFLIvl1~h/ԯ2w?CՑ~"Z7dVN)'Cdi KZp"*@{R}CtjVDl5hRWluLaԵK EB V>;yfE'1SClVyx &ЊY;L53JatfW2ԬZ0Fu ÂxZrlǀ}f+EK6Phʁ9>Sa# +b?ƽ?_Aq{처,QEٷD.Qed esZF <*EiֽU($n8MNEYFg}^8w N=(b,w''O*D J-#Q>lҒKo\5ΈT~uMEc~YzօӲIqcx)OSU` Nw0z5pGnj,qdb7ĶT/gm.ǩ7I1+)KK NIxQwb lq =~b;&mlJ|~TtH5wUu~% 2f4iֻg .lLP7kA$S}JRʄbћEfdԻ6LI t*u AԍE:i",VT fn퀨tK=ʯٳ jm%6CnXz#awf1KR+Ջ;F`Q &HIeku*+ \, -+SWC+ >e|=[2a_v?s>2cPyMaWjҌ|}$/jMcSp.x U(37FcY8(4lFTta$;fAK˞,Oc *T_Ymی;?W8 INJ=jQ+?k*ss9sXA;ܨLx:Mҭ uD94 A-ʫhMXLA*vkRZzQ,zk!?5yu,0L}2 ݪbZU&ՙ.k xorMxP||!K3(60@. @DÖzh]5^n)%18SKM]]WeǸ1 W?瑃v'S.'X otl yycqO[| M2sؤjAio±3B!@I `9زWqׂ=s?l@H!{=<f^m#MeAA.+..*O}Q7Ds9a/)KuU mwX7=#Swe4( KS(ENa_PcjEL4_mj#sI*Rb2>qP(gC0[, <,[4XA8vr@kk#Au9)5rhURJI-ZJ/'+wQ=X>*ku5)s4o8' Grslݶ?]WzYŲKAВoZPRQs]:VوYKzO87|ҹ̤ wt= 2h*yB ڞe#*t{}9K9Џ_ϙ Ȓ!s| P^:+oiB(*' /WKy/j`sd }SH, #gF:7Co2 [1 V7AD46;^|OŠ~x.@ 4q` PM/"-@X2 !lPzudcBtr3*_ئ1op{(?S[;!{<-9RHbP@oOk*?gД. @l0ꀕ9Z^i+mJ̴'Z'ZLJP .TyƢKH)qb˜v<ҨrǺy(5Xcr,f­qmߵm6ǂe4*ڍ+,l b<{YzPMAbZp#cyŕW/7k3ͱ+5t63˞\QWBc9G SSLM5*pe(V=>O"5JYTPТhkCԬV^dgҙͧ`j#8aXi`E݊I.iqnEB:V~LcjM= ^iz'- g8 | x%s@XIٛH8U<:JBn{TU ^4/J73!÷.^<){/SJ+kr?k 5cDq06]תh(GyAɢN9=LTqL_ZJ!޷]$~xy g>#Fܟ,s`$ @vLN}Gf3lOVpŴeЄ3XcD}iN?g%oY l!pw${ /bfG0ofN29bk#t3SYf 8XT2b)_Tum{u4МZыVl+@J;p見*N=$6*cq@ %uН0S&K^yCsypf('iwݴVޙiI<7@ET^R|mwͣ|r \ 꾬"Zh.MNzȱq*p` ["Lҵ5v`_ckuĵg磲O/;@Yf0=#JA]VasQ÷2/MfGdܯ Γ\>K%.8d{mS<"fB9+.ՂTfYnjl^5znkǏ*.T8=!΅{*u|69vrI,9TЂdT9aIcures¡hçk؂Xbe !"v"xSDe[@`AI ;-'MhEI3""e5X}u( ;U`-: ОRrka,$6%*\%,Uov'[ X`wrbJ>gC?c$&TdYwD;;[W:hhoRUǹ {C ف|lp2m ye !t; u;[oKAn_,[<7ggh8^M|b%sڷ &fC`es'Au`\g4{PBڣVd%\  *0nANGfvQnh@=b 0ai)ڥ2Ł6+ykE؊TV7 ugqRI<3O NO Qz,lv~`)yOX?Y;x*qg0B:([yt Y2ЀYp]]BeS`]6 ab'ZXt/'tMݠ_uCa_".ܑV5_Êjm9yN}-e&=Rz&[OFё(Jz _;}y(4߀ hzPZ 'z"s1ܚ=uߙu~sbEM@ žښ8͇ L]>YaVG ֚_i "w']̬ AR<00td0S'suyg-sQPkݷRȶh""A>$D\5R^lBjH 4:2}Nb8\prZzB+:Sjx=(r{"Z"c)S' y]JX,`mBD.B7KN&4LX%T$Dq1c+dUX ǧB 9;wY.vMU| -ʮc%pF(P\ tj^ZQǂnSi2UGUPyDY1Y[[B;w]w)hfwc{ۢM6•FVMd,R7{D٠Ӎ:Ŝ-;와3$+169KXN8iI&@Ej81EOL#+1f {&RfL!0h**#K%m=(M=]g^FF|~̓2FU o(Q-/X1T-'І!ZBͣD;邴1˓fMչB?}߳[hm;׫Ӈny/ҮOU*/w#3]ndYe/gGHL M^Zt]YǓ4SbGZ*ߟ} +y[YB~y % l:I d6@~6kElv ,d `Gx-_gn~ݸFTN;}H@v! v /I֒{ MiqZOfaXq͡=dug_*^ؠ#Eq >s:ZC<.ZMn]m7~ .ջ`#yrHQQ|.r3afIڧGHxPɥcӈ=@$̎2ͼghUS:J#9Gm3RػW fsmQ/q"#L1'ΈW<')V( |xjw7xk^V:Ynm=48B]6ml]=Id] "ÜVڽzG& qVwU|f obT=ǡ|=,#?{zqd[5gį@;+@Nr W}C<-Bj9=ixҦ:~\)N_acG߰g#90w9ƪD:oԖOvi,34vny0ݛw'G.b%y§#V;%WBX5NtzT/+d~D}קq_T4:>&+E6ɤX"dFL?aA.qf2GuPU2J@h&O(hK^3\lŬ88m[$ܟh]^\6Wߞd,7Oc@4!"B˚їlpJ{h(TS.omB쫭ITQCu<ߩ7=QCUHKL> ¸FU <)>4Uc KҬ%:t鑂d0!ڒZEk`UǍW5Vυ7tF[-{ +e!UeD=\NX|o{źQx`s@@8V2Yn&p( H_ 2wE]%yۉ+jAq6*Ib5ظ?Z} Vlغ#~˲/EU4`e5^ .0OVaԴˉѬqI,$D!fMq]̛RSԀݐ;rL][SgIgf^x{T¶U9$k! RN qP$V:ly" &/G=D69zDrVCLnLSMwh%?wӥjvqa)}`*0P܈ |NGx|>z, <䲔6emr]ޞ]G/QOymB_yQx یz&"aYӳy$) "Xph3 Vw`H&!79Ku )BP_s2S Tȏ ^fnȀcJ+ 36׼+}WCR_}rgZsPXDM1C8#+nao;z"$ttI4̓PMP6QC'U')OM9Kh" XS3K-cgETwYUP\$=n#<qs8SX0` 4Ys9z@4mr0bQ!ʉo+9Pql] kq0t> }57jLɁ|(? e0&3㵱s=*Usv[57 niU/:[NNBޥ  :uɑE,o1Y.kiT?aZ; $%VwQ0W;QI*373KZFlߨݷt*мI^  F\ e>>z 8ӹJL顤s nG H=؜0'ྦWRtBIV rr<8͡^»pO}ʺ" 6#YL HEޛfcaA.\!ĶxVh Ai-ͷ0H:J޾8D%Vj;i@:caG\~hʠ#$#Y=xVC$5"SR_sz Kڿ͖M.Ud;(a+2͔ v8~Re5`5ezҦ\{Xv"[һS'léD~x\wVup])Q #X4"彨m$&'Q)S(&);=|.9sKdO8%ëe'o7p4L~̉5euB1 8Iy,s#ykJMݹEfWB8?udM"mmRx7gاBV~c3:!Fvi).5V(6aQr}y'^I}]ku`B73>#}w͞ /,Ԝi 9^~ fC| EΖJU!ppqJV"w d{uF3w%pQC#3x@XkeX~h 9ȕ sL@l/WJ*(){'~44o2s vP"C(e*mH+Le55DO

ug./'V;boہ1.5p6R5vl`^A+鑂2TFMb#n nq^,8አ!֭G{&BvUm"1f ,\ IO]@bAmg뼔j09e_Ւ+L\eP΂s ֙jlU07þԗAZ O aCiӼ[&UN1bɏ9؃+'Ae:U2<a\K5RtLWs!NLʡ& A.&sS 4RFw17B^KwhmB;04- ǡ=BQaR; -g#I\w̘^-8 [1T^^A^W0y!;a9-|,5sE+t~/PSTQ/5sw)kҺ$) ə:g:2u:*Ģo崾h*ݞ &j[ocH#Ua( {K*n\=r >B4r34tj*%E'~7g, ie4}#|Ew__cf[V$ł% BkŽq}l{n,UK qW̢oe((1%_cpFjO 0?S~)HGvh%~aW/g[3q|P~ % C0c慀!|xXt"\6 7=UNJ0^џ2Uq\ zcIʤّm ZKr j!n||-{9vPw79{ɀ|%]AkLu"N y/;~yS_ʮid-ABjtt8IF ]fH H«Ya\-z:L.ԠЌ~tw G^x4bޔ#"!yKB2E$hTc6'z83~u'G_9vq5E_!*J(#KlhK}~`?6}ѡ;~BM B`Vv/O q +`\Lߛ@!p_[CKV^f?1QA5Bb̚K; 웎<1DxP0f2jŝF-W^7bL ?lSY/6?HNo1R0l>JRJ/,N %Zb06@s Vϳb}+ BԃyKI6 _nr" ]$ 誡bp/y;GsdpG_􈑶N>"s=mEC{~>A`M?@' M]=fs6DWnyOK]m/җN3,i'BܩmyL1\dDScӐ,X#mC ISt+Ӽm1 !LP c /U|mA{hklbΓ{MB%A fYIJɣ{” Ϧm !)L5Z-3md j.|t;+v֯ewGȍQNwX` x[ZVYyX*A#ʎHX`-R[&Ȗԫ!I!f{,TvHe:^HY皃 .g]Sbf)|]޼7L@J?ct6.r]8#D^LٞD?Npx,r;'M׺B4O`0p'yf;(㚋\ +*_Bdͷ} …(/qbü50m߹M Q 4Xzg[7[h &a52GՇyZS▥J]E%k2gu ,./}xHeBK.%ThU[%lDm! R糹vD0K][<۠Tbx{?t2bJ>Msd6A8pô9$bʨ`R*Q{a!63ߦ{wd5D hVUmRT#UH-!G' |K 'k6x`џ'gεWvĥodUo1ow =PƿK 5)D`:Y)NtՒRҕt6 E:MMٚ(6ax].Zsu水߬7vß(9UuT/N\\gDXqn3gr!2UوUx57\mt)gc4J;csz$1M'$(1#͙Ʌ!1F3Ge\o ezxM.DNc8s" [;~ ! ,pzq8$R"HA^D3b3  d"nc \{Qw/s3 ?!jOʱ]w'ȹ C-2zPzŵW;DEljI  `e' }s-,C7w ް-4bn> |Hi+q9)m+0><*&`"'1-R/Y"5w2+ˣMUhݺb*jEΪJK/O oʵ|xk +lCwZf5E$M&#=u}꒯|!9"GLp!tY6yz-yyi4}3|fsP$=XBXLcWu%O_8ܠG#U׬F^M(h@-8$=R[{ Ȁ&иǩLB!yh1]{I*~oGp0RH&T˕1{ۡ.S RsB512fj+"ͭrWڒ"Vs7Iy-fD15>R M6ǔbv=U%s R_ucP#]RyQ޹EHekWbA GcϪygpԛ#+Zk)s$zƦq6F`IH|@PJT~$2Wvze*ּAX֔:im;;&"<.#{0n,?LQWE \s?tdWDWs ^V#ӏb ## ܲ;!Tjě;DJ~f@z+Tmag*J[գbݤiZXy4fƗGbl-H=uLXufg)ZItN [@ ɶE^^uL {*ǭa1FG'WSȤ܋tv߭ X$hȬ;I}Awgs#mRVi'@L ӞQH| N5m'gAzqfiKHyk LQ4\d 䱭wu&T~k#fjPN`9x*M9:6,J3R*:͝$]?}3m | d$0Y2h5L"ޭ+F[n1|sB^a];s#ƺ_T1l!c3Ѽ+YFQ>>'QmO\iwB"k"` ,X]fVhy*<,3hh8R 4)\1 &`:n~a7ĽI# T5Vێv[xo n,δUm2[ Y~*0QsO>oCuUl0 My``y,H H8.`s\Z0H*(EIi@&s-ns6pqb(Гr nq敯eQ$IƱ5а`J;dE4 !g0Df޶0WЙET:w3A~SLv</%aKU@osPL^Ц `#?oaTj˙Z&jJW!ih~#㞴~gxdD.| ?ѷDW6#[D[:C \o4~?֔7#<%G_ нנTWzjeC^R@$X/oN/p_AZ搓PAC)1h?RpvVuhFPI2*6`wf@L5f.Ê2C,Q`?.n{SVUb`Ա^[5̂QO*k , jH alt:*%Y_p3WD+K `b3jI@AYV0/ơ >p)qIU[$c:|miCb1h+i.~&)M]w\ Yce^RNB!Tڑ_˜5; ܀JUAo`Oc /H@/|OmY@fͧ0Y{9n*.csXFdLfR#-6J[+LorjiNa dV ]LJT $+ʑv%HlDbT<лS }paA ]*u(Q4)w(*dD12W [\8\FH$êS_#e٩GA7?!`Mئ u5~&W;ʻ4#xijfS@}_ZŋxU%4mN^]XtJVlV*%Y-Ɠ$2; ΃[)PyFf$TpwWR}!x@B5]Ŷ-|fMbM-gC80A^6^DpNHJM.>' H07YeUМZGiMYtJP_jѮZ8pb'm`*6\4NXNSޙP^#(>:^*̮h 1\3 *Ӏ}N,衹AZ-.A8I2>w:ʄmGM̏El<7m9aR*JMY\g3O9q$;P-m9U,lF[|s/"!=+|dW\h *[O<ցƮ`I|jx`1챿8DkS 226MYgI߉Bp#U\G26E[S6"6UN˞vlalyR՛7uȧg_.{cԫZN[7GȋQg/S T~ kI*xw|,/h~Jn@jZRD ҶsH@΅\G+|ZSI_=2lLS<a:$-gToWyˇD2[0tč9hh PdgH}Qxk=@ ֹ4_[!ٮeU)h&Gd+iQkKsQz|}I мM1"dBiZ^y#Eh\ݡY#]v0y j2XaHq]GUŦev#u? _5C}A/8>M@S3; "fk3 Z tM>G0u!p?<LT8ث%y2gli!=RV` 3q i|g諎K9,I޹G|jQlukKϺoTtsN4<&?\ܳtwEVI%/Eݿ2;O)2{Vy A*d"{*.R UJ>Tn jģ>rz &ś˵ȏjwu9.kF[3?v.7ÏL{B/ A`|OEZ(](~ iL5*rxtX7m4՝8<)2@Rqjho3:K^g[ZYa38S}\&8FJEvA _IzXGB'Y?Qnj~E)݈{W`7 wsŬij,<.Kw.sqb fF;|^`]&r#d,sI@JP&#xW=FSujOD"FL2%`J?@H%B# H s) / 5S Eض{+AԓYޥᰠn}  g}@тmpS@ +kMDUcJ<-Ty>by/䍒VwIRKyGChhrU"`mh gN.AtJٗ9jP1|@Uwͅ-˃W3`G;MC|k4^)hi*>[upqְˍi5h7G >-_G%[;.e~37g*cNëaڣ>.wd}: 9yhb)o:΃Z˫l ^n]%q톘uC-{F6*?/ AH5͐ݭu k8+D}=:l$fDy$β+QkF[,{_Fj].ͤINNn0cɶ2AKЋjw>J5gM$$6 [W>ӟ.pq:h>G)"AA?6U`% TEs1&M6Ew'&(#8^w)WDWr9V6jWvUh xӰ*M'7pьq]whT*Ỹ~)ИjMQ?)IXQg,׼5`տӾhvPW9A/%9-vG[nB|DyGOPWY[ /luKi`P_{KXnކ vV$6;EƉF$| V,= /rxַ ue[o9>}d>> hײeҲj}DU`}C)'~א/\ 9ڈ L{_Mic f־n>x&׌H䘁5h4n5a8١/}J^#f&{y.>- 7 Ԣ ;w[%G Vsc nE5?@ۉg n>!5,OmŢt~( &RCg$ge'KxGۇ3POU HI7?g&v#p>Ly_d,/(D{5GZ|I5vx_i_I b?:tY},_>({d *? 4)]czYUd }= &D1mE?p]-`(FUi:/tZ7۔J55Z}/QSwƱǵ@3t)V ]@.RwMWebmN[#~o6=n=0Kb@N Cr TIvG^vg{B1MJ:I{9X@-2Li9 ypHl`cG'YTxӦd8|b)Y-K2y#[cuG-)r%3;t܈H0 ]!yC@魑دgt{j D#xiv|e`>"Uw{k/ذQ o9!$Cdn& |=eR5Wef|bÅh(c= 3WɎQc8sG]~NXF翇7f@/3( Wy|CzpÈs.V5899{Ytqd8qo*fT`4Z F~&GeӚ FIjن< s@o=$Vg9SsBBlCZ*box'&$ђS*4gfDY{qBSXc3zqS&-CӨƾ&Rԉ/yS3^ $p73 JT4C;rg*<:iךC.5^LU>VҊ2 S= .5O\ۛX3)~@ai]}#~2Y OJFڠa@Z \ "\$xً>*{ P} ?/ѻ@ q- x5JkkͣuQ..JlDo4d~alYj`pT 2?jJ4QP:_iZ1PTݛh܄b)Np4-\WK9^hz-+gv-X+j_vnP.\謙ۥklT$HXw5鍆Q9?Qj(WShe>Gñ<@Uؗ,zo;FSo#X`J?Df)ǕB3;;*8}q'ZԳxy-Ou*X N[~ XQٮj1,x/l14tK]jn;02YB).aRu*%;G |` k* : cA0yulW$(gEЊžRv(N7)J".儐"C 0T私%s;q{ǸzG}3sYeW!j".bp2&B೵_!0H+՗.Ip*آ@ }`o֛ "W>;"A'`k± M?t'Ն_Bl-I˱r1Tk- 5v!,VTm/vvi5VBHƉ* *; `p!CDd5AqYq7Wi74y9pxCw0 (%} :n>" ڙkRzr9|9J`-~O>+V"2z=lLv[\>u\XŶ9htJşg=5 x#yl=CT$r|l/>k-R %Gɜ9ը:u2( 3:5Ƹ8 `HȿqLYEa)?\:qجwIrw)#/5J:B92j7.jl-JuO//a"tNZXdPǞ`*!+QNCo" ?k4BU0:eXׁd͸rk^a0h==پi> Hyd%`F<[%ܫ7ԩJ* /Hh4&ξʟm)8>U_8"є+,{H !:TJ4dd8nX*.^(1jڏM_B5jU[qPյ 6+tX2;{?Gj3>mݨ9C~G]S05|tTQ Ր=z DvӸ#R2<⌙!WL܃FuxwnG_<<즅Y,Jy#O -۶8E/ Z`2ZoF ?V9+/)(! m:Nq.qQvU+o@K&G #rߊ(wi7ߪFxM(HzvS"0.I2+_^.i7%iG#u-fbh`4*^]*U-x&S/RXs:P%4AqFI$meta; 'eG2) 3Tm&ΟÆCvU?ďiߦ ` ;uS; o["α1L  ^teh٘J~)&k4YEgٯхwzځʉl=bUڛ" +z4XwB$= FG/DͶt1?^aAe.?Rfs SoMJhfKxol՜ԍF{umUhp0ʭ`^e#M.ck^5V'wi~P'TuF9sȋ,?B5B?3|.92YE,m}#l 3_$PYSi>,ckսܢDaYi?dёŢq}RGDt{yd|38 Bc`l,_[U޴_ffS>K[g0AybBua7cj`5v*x|/<t25:̟g?1" Fx^ I؏T-/-{QQOYK‚I ?;x?؊tF䢝rzL1U" ;ͦeYP|I7h?_gt@tu6hJۦW "{٨AE2DO74XuD]Ɉθ~.=rlD W14O$n(Ys(R!/֩N4k_og>$/?eoBiK?CHȭ`BR`w6D#e "ooVO{I#!eBeqxa xQ.=voCJ}js "jn=d`2a-@HKHGNf>}K1YNӍ}zGH݇C=8Xc6҉,NBRy=((6hMYa1ZVVvh7q-hvBD> auXw+Ú9?6Tb>I(cޫ"wD%\ki#lzα #kڟBѷx ~pDQekѓkOFdBGOl)/! =.;=JCOw<4F.= ػq#[/E"ZWh2Oi1P˘X(".Vl夯3+觽Ÿj ??9֯KfFH \%C;2ۍεr)2<]t89R+F/yLFfe#$]˿(ؠ\u-QܡM8 h| `s+ػ+HTk7 VZbc#놅~|oB/mj6E_bkWJTT>j# -;eI۸~GNy?o ;4^놛}O E HFUW[s *lq\eB&bC4_8:V;?4,#7iă ҴN.Yb5찑)`CH!U_//㖡'q[08Ho#yoV 'pg[%ϬRӪ^`-1^. qXbx@qzFw <(*@t,TNq:7j*"E\cޯN~CDmc͌Zإc42ceM -,TD}1}KG 7xܢF0h#1Z{JMA] RV'r9 ,|r BT^e?kL%ħBV^($L8:*9 9M~n+h!*:_Y,aQc,4r?;zvܮ0\;oelhÖv"] ?9?C "tO4!n"">n+L_7g}bȰ&Tٝ\D,SC2l 0h] Ih2pV*8J%$H p?+۷fk]Fp[Ũ# ]z l0Ny A3D[˳yLm}yDBsxgfb^b1d9:W#ɩL.%L/0S2%r3d :\;YJvB@ DRQ9"!n(qw$dFhοJlJ4Ijmu۰kQkIBIXjWԕMVq{סW$ޙ#oI.~@T WSG9nqMGRL(GZG'q&,@,z\V,Wmfճ 諟yn;xK/&ei!OW2ߵ}TTnfkîGFʢ&5<d/l4i1J2.^X[egD\"F2)&7!^ &wZjt+>"Հ)-u\"ǧvj?| 3 X̳iGܢjY#kK21ԔQmxw5:69)U51ze0tSċ0rI&u^)zzغ!!< (,;xml|o6B <;OYW#{Z}#*%̾TX|o"9|qDT=oD]VkSG~Z9W͞FVn]l"kNGJ~y򲴯5I9dyr)ԧ KqftlKhzfC_" 3z E^߷JmJpI <x -/dooycz?_ >z/bg;sJ.mԎ YgW *V| ̶olc^ȳU dFqW[ 8A#db`tbZlܘ5.eꑪ1Zq"07Dm(BH5L¿`gOXArX.M|5%n`_EEbr.8qlTD-SY(p/ۀ׍huEO/esKvu {{Blw;E?kEL>ڣS=U3K,EdU..3<[ZF`wBL &”I!w[[O\Gbƛ.ݒ1 ;¦B%p /^ u! vucz*T4['@ ߧ] Yq>3ޯozǶx k9bY*;m7+!nfL>#[j6t˪GѲ*KܨZ+yfD putR'tAO>m%o;h0]pUmZP&7y=hh^PWO 8!lR9zAdNC EyŸ\ pp5uujzz7Q9Ailwӭ^(va[͝{jIk4{bl> >Z7a msκ<M:m_W_[oV0%$pRFDY !LmWnV-+婸 j*ywʬ~2ħ+gJxtX tt_ !"\EUa+^$-qd6㐨 JܬSj ,?'k@WA:J$Ѥi(iYφXO^!52E[{} -m1х뜁a9kםhdI X {Yb}Slfy9*UžV[st5!m"#*ZؓI+PI+a.aBp#pX-F XYkYYP.8xi&O aBEyUB Z b~hg!U>C CR7mm07-o!ɇ_S,5zX SHs&p2 ]dݫm$^+lyc:(9u#xFD᥍X:v Y 7Ԇ$$ Z$R6lZJ$KhA_%Ó ѭ .Qh16JS}$UDZ3Ms֔D.6Op\Jn\9Ѷ#ƤFTй2eA1!+\$VHH{W)}ٖłXICV.Tv ǚH]Q"O->XƉ{_.[).  )l|c~c1~8#6MgSf-&S}WL2d9!msN(S[j(ơ# A,%&(]w{ #@;ojK|[V6(0[.2K5]# Q! >YV^r(e#O9:rv3\qfPeG 0:tv^N)1 tiCc^(HBQ ;f9Ҧ]CJ;ϔ#)Q1 %na'Njr"-C| dC)9ĕe?3^Јµ?Rۄ>fL4. D 6 t[ e=^qKM]<{T˭CkÉF7n Y6C{вLI&}5&'ŹP/gP#rY^l*Īed=Ku= '1rn֜$ ҚyjnT[UTyx+\d#20, [}(ZzU޼z -ٞb!l Ӳm^BlhvV}|k˒:BNY3*רw;g|f`zH5Q_<܂1 hF qw&^|iFb- "jkjL=Ua.]ja4|i+'N!P⫮j#C_AUI/2^nI}$ic/d 0CEĪ 4{ܒqT%0wJ,N˻δ+;o<<1<6Ri.Jd)غaC kG6 E 3tAC-v9e%m>>s [T"iE=QARc殑3ЌAU*maib[6!&=WN-P A9#&f$Q={$s '\!1"g{6[^ReZCyZ޾lds3b|.fTb24{GR#z8PRԷwz3-Ȝ)5*8 7ҪYNJ~1 "5$T".j9S#)N4J/ >0Fʬ|&q^'H5>=}y u Q`i}:ILWbRR3W]M:rSըJ\hfDUPؖ$?XׄGIѲd"g(h4^堝O3ݎqvyҨ2s&wc`,¬Cm{DDG:iA51h1)X_-BQ|jTbq3gƭ"o{^`HqK/1= EG~ߦh b/9~܏Thٍ }1o 2KK fi(Y/|;9V_^e!&g`eΪk]Pd9 ڔ!bUפ8x1_.D,#ui"R0Fd:{e"`o4)BG']u[|MHt]1Z~vENtdHWkNZ7;QӾ]iwC#Ci}>\4_Dʛ7P_ݲ"7R Wq(YfKbK Kg(R)I3%Qin:H(xcl`ƚ6$!IEYʀq hȼVORh`e 폓vk4 ,`2#7 'E:^Cz̡^* dC\v2aF z݄ӄZ.U^l6ӣKA^ v/ 0mZ^JmL6gUvyWfe"**V9'WjO[c< QWj2m`A!+lr$\PImrĐd<8Bɞm5'b2(830>tRsa#ֳ#DyqΏMJ׷.^}Qhl; *V>,9ol$#u.m[+(p@TQM_`>UZsJx,nz?ѮUK i@C^;yMg sp> ?*h(INKж/jSLɎ0x/ %7_4! 3j: ↙ C4 1!j6<񢼢~rQ*+"s[\*_#bSh K)ƞZ#!eMWབJq޳1~\0=i@=9>ؗ5뱠fWckBǍng`!Ki?Y:Sj˜3VGI vty]_2n%1C=D{yBcKۡaql+V-j{k.:NDy!NֲÇ`)cbS"oS!`kH=6ԎvYta)Uu p& *$(g(̄X{)\WSn7vr9:F -B@%q "pbH[Li`Ll}&.U/#AHb Zt4*FD),Sx~'_6}0%YNpq|nxCL`X$,M#sD ś9y+º49VD'?dz?܆ 'l3 uׯQhfMpmN\lCҀ-+֜eޗABW~@,ZJo׀`ܢBoJ@_/ ~o%ls>Z!RL[|g; MZ4 $ Cctd.eB\>/w]=fuðFv3IY{d9 Ke^}^*Eڹo~df3^:sꪌL: `c4JЄ S6]~FYGwW͊cҤ?qI8ZE3f2<,>dhS_A #^u([MZw< 5 (ƮٽlD˭;3t5/1TC4!:2|#M3 0k&|H~/sE LqxlCL>7i|Erą,.+MO&ȝ); |:V/@DjUHchF! 5Q=A M&,6JSpQ0Dn ^: KnI,5uVgNbȖˌPQF8XsaSKDKbXbjDd*l~|;[cae_b^[(Kβq~+Rfvs æNx[PZ*E1Ҽ鸷:xmsWTKZ9\&4/(dڹw#G B@-аOSi7(ftyrU3sTp {PށJ6jM0H $31~ T)9V < np{)yacpd۫ '΅WuΌdjT,nu%T_S>.1\A){1XR']> f 8 PқD%!.!=)ua`(ZCic/ FIƷ?1@"TTNVT*1bbCpyg9-.`nrc.R,- 1:w ?buHѣg[-x `o6;7_olhZl+[>l7KxƳMC>9VNjʠHFk0nhhCJ`蠹O Loo@ hphL6JrOAqT@(9 E"ʋwg0pH_5P^.g9oyu׺Ptʝ3MATxƨ qf6 V' dFppU;wmk "pCX"+;HM w[bNxa6y2@t ]a!]>(qc!!0P١@-:b;ֈ-#0DMNh7OaAތ;P5*8[yީL4#*׼pä7< sDvU6:dCZZjuhOLFxnNC:efPpN_WK'd-Fa NSC(EE᳃aG'WQ╉.书p QTLqr8^U&Ak3r;:Z"ܛ )ጊgNy{8]&F6BhFYmȮKc z췜2ܵip)ɐ"}C̆P! my%{_k}cLjn93 /197ڝ " 7qH,][Ĭ&C,D;2U>(ԭ5+K[w;K؟z }ìah:5vҧ$0 rmJ*Вh3ㅿWRd5(V6."u@O҆kUc~&o›a*HqV +u?Rc#f3Ak򗗲j,gLިn Zg-(vξQ~q6戃0D h)`1 d9y""0_nQjbuE%nFVE &8eh*դZ}k:8Ẉ~}H/pF$&"x b(:S,΄o1@/ +.e"nJܞ2ff 6' &j"KG\)zc@-` .!3x,"Κ#3U%[~MDsUN ؎!hx43"&ԩA&Og0!"ú)%KN_!zA,^bH+[^~4x~e+ȷ]p]pݫ)?u1ncLBJ=BI]an,BVY4}ԃyfe13dy50Of;v"١YKU6IJ2sIĆ"m<юwU' 驜Bn$[!I*D~k,_4Kl.UnAFAk) ,ݣ*+wU⿭ Sd}T^1;T[gr%2a&)!2\bekA2iEͤVކu[)vi6NF貃lӜe`$4gCAr/5pFg4H~G ->dpi+\)ILc&}vDV% ֺȰ'5Q2!@bSk5YEMhDS:M t}5ݿ;{f+|6 b\"6~nnLU.9B)!&ffIJ:VW<0>'睭Sf2 `\kI*ڎ ) 7Ԁ'GRhPky]vٜ^4qӃ@+,>q&pc%"# C֑1wZ" MWiU:@3,g^L_w̗(:u+<)ǃ! cڴά5|vŽ 3*e"Wim1ǞŻ  n,6!S .2I e-pq,\M7FD8m>ŪFqD%tݘ򎮎| 4VU02p)#4E,b2i~8>Dso15oM, ^)Ymy*KKظ!?Jm6\I{#Mt=$WPl>!M0$LKfǜzq[&l\ՐsԚ@:A oXJPL z{k^.,ןߙZG=g>lLM7%PvЦ4l^({>Xb7>Ɇ롚*Rիc'vCt%]Gλ1{N∌A㟌n+- .>vYX9[MMbޑqH[ jט)oHfΛDǖ%H0ͽ8`3ȸ6txI q wʽ)G,O 5c]@ s:ID:W*ȝ봦;K\!0F?#x9oq!,F@ 绻ثɄ 0H }k؆&,o>U7i} }Uq^tZ})2/BM;qabL2XNdHgu*ıJڀBNL E, ʣsAi2NU {q׀j!?wm,#!)2z }(V>Z!kӉq@G";)_oZ23Q.fJXmS`֯<],vro)8~畡ՉNQ ݚtS@:,g|ʨsjfҺF䪲 /S.mʱ"nBWu3:{3{Y%d& ryGI !X:GPݱ_g[*L~R6z_M QT'PQZ_bR_C1s5Q//񤦄lt}hQd]plc(1OBn+S ]4_"aTYAQ.:(֦[= to{wJ͉!מ\ /rm-+nL4IK`5 R`ʲ-g(iZ m,4K */˔&0* g27kFѹxʀW?M'*?cjЌnSdMzUx5^({֩6/T՚9RP2^;|{ 4흸2bvϒ!8tgJn@˪F_ĕ^N6& # / >ic\S,N^T锆 kɮ 5!jJJ`rr)iLԁ7e{=20(Z]CE\®5ý{mޤhkv]lMV,_b=,%`f]辎XֆEdRʪ }~J\rW+gXenxU7Ȕ ѣi5޶8:|7rZ!'caMD]uOdD<&#Eƛ >Eb[ Ö3IA#,%]Ugq_!w|$`LT4"ߕ78\V@Q' T$(ʃ[)|tQVz K,E.!n1z€/h( Psbuv2cG4LPB<:ЍͯPAM,3;xևmW=֟aĘ)+q {?L9gE:[@ " au4oA*aZƷz]ϗZIGwf7iY:*HaBw=Q CAK3+!LNVHWZ/F%3W,kg+{kdJof\#EqO)W&'fR(vPJG8pؿAS&l2/MkVQycHqBy̓xM8#SmN|]P6?ogEU]n̑6U5kIKM8;kժN<= N)Q|_Ut]_$Y5k(R2+zS r-ۢ Z!Y쭍 kCqX:ިʰXS@n2E}92?,r8mcf Ua{k{E$:}[⠀JLcH7 LVD;jc2Ap@BX2k+x9.ϟqM\VLOȬi85T1k4|Mdy1*qusLɊdgnME/YJd9xBh,q E,f&fMFr@{Fp+#vc_`2>ՒXL`'+7O]nSC\(W 4~5EsQlPFpvL }*ۮq8!`  )O1wE\~ ;2e_EO85m$;t&X+=ǧ|W0,LF(1K~H,ٰ AI>hpCUXvz#vzN%"{ ƽr Q)1`K%"lDbo{ՑtJЦ cM_ a`Z-6‚gq~  ;_NW֏Qq!5 b4*h& ð2OTMCPh="0o Vg-z`$`G<sOI? o={oS0Gsa { ˮЃ%h8 Û&&(Gy!l2Nʔx4 ^Egc']qa\eYaDrZPk ,vJcvxy7χX@/ {2Q͟yamj@@O6;鿹;|Z=05R 0!@5I 9|}$N2P{Sβ@_6}Jt-<(*ڼ%aOK*P4AA(ݰ̍H)N8՚  ,!sd[󠏻o7u*_#2Pt!̩. &]>Աu4,"%"q=0! ㍏$H]}L8gNu//˹&O8!J/@sJ3u)k|vK:""j!$bK΄Wy\X5p"e5g,jvm~<0n[/֯IJers ]1CfPw[I^Izğ=H2i!>_-xlriwb~qexrٰĄهm(7-%Ɨ+6rTvNyjrK>@L0'BIE SPYiр~@aZ];JL1w;6V]pc-Mt R2V&o&zWdoh4d~ ip/=HtPB';\܁m9 \!X#ޙ?ct=l?&BHJx6 4\~:OJUQɖUJZy} <̪rHi?d9ؚ,T+ÇWwSA-1n7l{HwHMf,]_I['Y OweJ =ᆘ]#k*Ss°]z+Ю QWK`\Sw:_/[qZӆ8'ڤ|o 8R՗5F|xU 6{>1B;e"⃩‚}+"fPBiK,7 RLډ"]UviWi 9 U݇{nvQ%u2m!`7?$E JOC5@#9Ny is8 +Ac >zב D*F6ch>gEfMҭ\@=^;(h@C&.YkROKZW\AZ04Uiu3F#M6MOdكែ?S"Їm ]~|EQ$֩+J`4EHIl+0 ż6Y׉ OU` ۤ;^"≱GK5}i[k|`l9t?zީPݰQ?+CA^zʰM~DVwwUV`gRrA=(DdjIH h&^ZfCpu h%f+at3y^FJ=|%V볎x7Z+%_lÜIU 6R}7V:l >݁!!{/ОM"\Ay|j^L>8kB_0ߔTаA~V`_=PPs^A6q\B߽;<))FZy3xǯ~KwQ $rp1_%~8Zؤ^"]vU^dh$=~B1.Υ{Nk^Z`dhM y/7Ti|eS oTū8}D{5eBTj@GwIX8V u/WX*^I*gnabU UWdMY3p6x\gfRޓĕQ[=&@8ǻ.<䑷5h,Pi&D3?Sz/ >7t&Ka4&5bvLǽXיz?<y<18]j!΀# pe]buҔ?}ouN"5Lt?Ґ_Nܜ7wT2ՂN?Upa0lI^ /{SD *wvw,IK[pULftsRE,tXSlí#D3DsVA1#&r,Rrn(I;ib"^lcG"0Bt Xe l{e0ԩ䤅cv"_וܶ o׸*'pր/N316R4φ0ܘ.C88DFxkzLhsѱJ W?,fuʍevSo\_7N^>8D}0%;j+5c]c5 &tl䬶6sZ,O`H@ax0Lv Z^|^z!kjmNSbWPo}j JZٴՄ O CxcJRm{k @e/H-!0XE'cu/z,F{=]._T٤AO_aNi̘:bAH[qCHzh<]שiWEO3el<n ]m2*rvG] OpmHf9\S)_'mJ}kw0I})Y)рe50 Wq l"9Y^a s,^à iΗY81e^&+/}n Es΅x3*@5@kmu6L🏜M ƀi=SI=(Cf\HXhh>Uɿ!G612n"QNrܜŔ_4V"1F]CéeOT2-cZd_|.xBAV_z}IJ. Pȵ}F[9rh #YIviȧpb:t~wP跟Six 7uG/V,o)VL3 @,f-kdžDȐg'Gz^ lvWfVs# `$ۋ'wS' Czq {Tv!E~ u$X2: S|$(u+nNl* uj6 RĽj:&?3·g &0(@Fimd6vL] >ez(c`-Q^,dt )x#$ȖGlN`\?pOas|#Q2^ZP+X%tiTV_SЈ/n*mJHЍ”Vu҅q%znmwQC!ug&o}5p{&#Z:аWǿuBgjbH%x= UB P4uGZC7LI ^'wͷ0!1G&<>$VݵWH}E8h+rf۟ QU x ;)]CyL(M-Uʚ4|=hZo{"ƒ^.n3I$ k\ Iŗ,vAbG1R)"nL Hmg1a,wuSޤhKuMj.Z6 UF*qS.mn4_ dxz [\=X4 Y4fP 6{7@LjNM2C?@Mk A.O7^OزNl%6ܒeGnk8 Ty'pC? &=^mĭ~ ;E'cͼ - lA ?+{i1OB/#: R&N2{"r1^~5wan g߰-3ͶԡlkdU-8p;ӯP;Q byJvyMtW.@xYܗ 8.I)o.X)IhVY{@_?gӫ0Lyaڧ LۊW 7X<"0 1@p;`lz=xdb?/x e2*PUكO0?1:''k>D"CR{N}BgPz݉J|dƫ4팇 Okb|4/M哖bV{R+qSJGkACjn'"*fJ*(\7YL̥4Wr% nc T!A8@>ebum5{1&eZNSէ4 h/HL;.dHgtxkл,?y ƄiXc8y.jG*I4ok>N/uP  )u2)oWD~X8pНO5"ORSʙέ?XV"Պ#W՗$:yH(-aQ5P\gX+ł:B 5Jl,_z [cٕ(}m_e>T&z +Y>:dCRWl/tʯ/ͲkN"Y8FzH1)!^;-; ' BڄK~j~^\򬙼fF&ٻ䋌 ubB_NP2m*y/{/a $:~8 D2ZA54w&85@X Tk2ԎhڲQe//wsW" i'Ƴ#(< 0BvozLV+\ok{@\ B!W^G.@Ji뒋( ]?1XIJ١!jZDO") c4E0C{l_KBo=B6N0>*@9B4i~΅#<4`E"LH;Beh;RVNq7K[INNd@jidƯ Nj*}LٽW*(Z1ZPaSW<1vљ]+xc5@EʼnNP`wOx(.ϕ66'1@)lP؏HZC|Ls@):cNܝW@B~(rEE-fBPqe( NUѠqy"#;3UoQ`\ A1ZY49WJzdP@HY:9#*QE\ddvP{4u/HНUO9/_TL7Vw2Ol0/lHYeK"8Iup<40j{ӄxs i5t;zūw- f̴Ҁ{U&k:KA5w 6ʚ 1.p;2Щ@UG^[uZ0X:Puqy̡I# H1^ 6mDZ>ZxYۋ! ni$&"m'ZOIT^ha# iZIdlS8>4n8j\!ĢhD"9\+E4L&:C '̧)4P[U2IsbϠo"ͯT[|9.#Zϥ6 y 3v&nPUnq#k ';.& qU(/oXY :2Wõ8_zڹfUj8F R0] i~K!rLT% 81֕7ަ[%>;sm{qYʘ -ѣ>=E :bmOe9e 0/ou49ɞEYAbs)i1Sz?.&C)@N$~ B$"o.TQ5-Uuu~Xxls=JU);vv9ʼϕE6J)e Qsd˥@޳QNjPgI63Yv XNk찏u`k~'|#Qu_ab!=--g[dTe}[n+O%n^s=*a8^ɉ| c}Z. UCXW\ kDa3:NfQUZy* ,OW=Pf`Ri5dLG~Y]9b0㖺9z2[|(𼀳qb+DtfRw"_'WW'9 8˥rj{fi\.qL5s?X+0ξ[Ico<+ӭΘENhH>=>_Y~VAQ`GJUt>MZ 5?]9`2SOTJE{ap#0_꿂\^UB JT \T*Q(sDMȪ9:DuɎUAQOs菴l?K  x{Flh 8I:k >xCL(E'`;BXj%+@^r= F6wUlX gʽe(}m,$f7wm+QTmۻ< ?&O[3 Tx|!U:w2|hto&8#5` 6ZavAI{Ey>:QF~@q)q5+Kx`ۛ%}n+d@=vW z &J~X|2TaCV&-GE͇'Ao EDغ3kZvl76ݏ_?uG] 6m?beQթ3<ΰkʰȏg{ډ:mw?up|U[ivc r-6SD åJy+A|aXrWrf4;ϙ kM+rZ-'WR>HC[4BԵ^;zЌ0Z43R4ɍ@UeaYH|gH`4k3oߩX-9GQ +_kGH,-n:'i81UZ2y ] 3 }ñQ/a1HB'/;Ciù3Jɠ8߼OH8q_ݍst/A |䔽J˓t VU {N1+08 Z֧vA_ҫV-Z kR] {<L.~ʷ2)T`4!Iqemysb%ߺĺ$0@އ.5c=W<>l 2]L5.s90^ZD ӝBی Kol BLUK~3f:,pې0πM @Oj8Pz5멸[̐WJS,G\ !"wzd6h2[ʤ7愦 uluovH5R"uu#1O1Mc-*~Yy+GcZ-P}0faVk b gPzɉ%}t}o,jOT}<,Py), a%DWW" z\+[^,[.P=]qײWgx͕iI Ћɤ6& T)VLBt4A*~F%wf1J/~Rഹ|/uc&1!Za& 0;Eg8Ih~/8Lr֦J z-mTQ4:ͪ?RxnܖqbӢWY_7OG8w'YY=-LׯNJt]O@xIɍ"lKӊh}99fZyFksA3 ʗrQz%EfIY%D,C1LO'{ 8kw8›!gdžNkc¼x_9No|sCr!PM.zJ +`[+RxBj$YM">.1xf`uSH;N4Æج<#zg߰>vC)4ZR5G-!Ǔv)#j]} ¥nc()(=O;ƧIG&%]Zcsb V\Bx]8` * EA$a];bƿ4]!,Do軹Oa;` ց~JaYS_YԹI@x)Y(@ؒ& nX@ [y/[F5S؀B@ 㿮LPed:eOqF>rFE~oƶ]$0d᪄kfp=9[zȉϞI9Öߪyyy # ;z!X‚Ҵn{Bl[煩¯g$Hü@ǵʼnV_ 0h! `i:rPaoLYLa8>lA, 7|V+?غ;c\d =h7PqT}gpK֬+0W])J*\OEZlVyKC)M΍%ScS'M@(K ;3owq#$$G"IqCZ@om0CK[cR#+Bdqz|k‡Y:^$tdq^J^픪>P?ˠaHS=zR|}3f_Q>L`bCnl\;IӸ-TĐ%nfeNR?u R4`xDO  GV=A)?` iX+?l:2ãR? W9rjH$"ldifUC-ZjIGzB|E U1{kv7s81R}EB+nB^B 3ħI="t#|VxMLz  sz8OY %F$RW#cM@j86uťI)m΋pEX.nSܒ L ,xZOiTJVxB*/_[yZȰ!)$&/Mi1?;M;-ܖ -.L6Jrm:A _f%7%?{.0t)u5)3@njK_mv|@QZMq(ҥd ~Z:E.-!/Au"@'8Z 9{@4 pJy"qz䮋Ϟ6RՉB+^Xll ̷9â| -HnQrPhXiTc4&FKJ_dxQi@GRFOG3.a3*/S*3odP<ɓjpf#(_}=O@[ϵ;$Ƽ~^4(Z|c!t%MurOn`aB o/hhаFc Ģ&^5W=8lW;'r~QDN:zyɎ]Bg*lskʏ)|/\g==ճj>uZ ٨(6v_`1H'^cC$/=Q\@ Gr$ 㼳%/;`s#1*vЫtGܪ9LFG14IHA /j_ @Bhy$ ?|^D4:nX1|kj2떍O/}Mrrf<02qtDzh<W@P)]Ǟ$o L&f%2s UoDX!4 -F[,Ǻ{ ,M8"50Sbi+c;6S/Ȫ6?EIa_RÕM8ReQzuX?-1hmȐ)l[adsP7 4L ~?=mf/:DU ]-kfe걇Ԯ\u3&.pڡN‹P(rL}焞YG9l޼+i-',V"Rwq3߽|î;SA%OeJifKȺ%:Dǚ%J6ϗWpϠ,ܗpXΌr=5}u#h6x)ƭWD-Jul*Z(Iԭ>w 7O~h7f喵& x<2؁Rl"" m ƾ`r1+ZJLJ8x RӚ􈆟qW4+) Ę&Xۣ͹X6\HD%/)lL^%'v>!z21bhi@&>_;:tUw0K"LA٥UKUZ fn7޳/T;.M!Nh`B$cV՝E%6?e,2k`+V~=[&UiFBsbӇGdۓb5՛xhu{HO헊HT#B%m8˨JSZ~jgԐ^:Kc4#tkYdxaI PєUkP}K v$!zr\=Ȉpg_A|W ۷IiN&'Tв'ю4|_[ Sod@Ms>m3zFpR7T/+}WZ[ lwU7`v,C}K3kQ][?d)꼡֞dlU {߾ukEXr66U~82 /RiZUBN.qQs8/^& kYtǟQR$0Jw`JjbFĀ:1.&DI+ʙhQ o`{{M~WE'TQX):GF.]{kb1B'Iaz!G4y1='[u%Evv_9׵d[YCFלNeT2rE)Z#1'HF~p[S#qNC"!׿ڛt.n| 09& {lՎ λD QB]4sL{);^y],'2u#^VD+:oG.(:C %q2&ҫIvī '<(O땽eGǴ ^`^A5ץKrO&Hb";"B~N~2Oo[Kw-9q7ou${\m/6v{Ӵyy7WZ],Gfy#@ViG3`,P%558{fIK',Za,y )h)4[_P.D,|_p5r'E2]x0T 'Ո5`--KۜPZFj8.A ښ;'GiNxQ ;pWG(% rQ@>9gۘN%(?W;L%r,sťAL_3lB"oOs, 9U*T Bd(ii\F:+"gD3k5b6CEžP Vpx_Y8;3 {GƟg[سO9zs8לj}}=d_M88ILE}eJ `p@~l -:!%~%WJLXtNyÍқp 9zcI'rdYrDI _ųMrUu}z PeH? 5XY+-tQnHXĀŧIXDc̣`AyT&/{H<w󾼳'81bV'(wՙ=BN$^N[勺̻ўL):PX(^6*3eS7mjԅ€N U$ ugy gCUԆc^ 3bA؄OtAx>ɵs*$~sEH@ƈOK-$Z)W?7!XT=c%%S6_,e6) y:L856}?ɕWL {n~#C`y ܨ*ˊ֒;}uZpϞH`6v~ӰJJ?}*ƫAh~ yŹ!6j (NO ulKRl+5{‘ 9 .,*֪eG(M1x8XAәBuަ0-)-RAި"m}yr{vh:\j(S>p:Lq}wiQ9n<-Ei+L9?=jw:WgX0␆qH* ]DCz| 27Tj5fG`)4sJٗ,fEk-l dtxnL<%' I\8ъ~/G$1n=DS5Ñ`[c!> m.j5Yn8eU#{6]BK${>2s:'FFD;CҬ,#I&H `5|mEB3[zlXٷڣJqƠ!gϓ0>ARxՙ)[XT+p|4!; .G}ʃi+|<ā?C<9+ǰIZX{XmhìROO(SyP"vp\MqtB.V-6a~>M@s(b%rr[7~UIs9o[SQ].3 LxrMIs8 ⯊k`o15e*Bwڴ0آ^i42$!=Cz)9ʹ3˹ژQ3Pr\I.La~)A<DI ѯe#?<ȍA>1T)\ZXOz; h7gq;y&v!E+!SrhhmӟWZ[,D xڞV7*^5 \/_E+{바[s袤rKJ_B!]AyC[0ѵkйIe Iql\VycpV^m}{,/*>`yLaXpd3\?'vд4!1_!<\"uKbR7?(saf+{ }빁S8.ԿK[bR_a?P& (\7i|DK r3u ebqVg[j |7Ҝp+ R%`7C|BoZ>L ?O fuIFT&6O.Oe5%4{cka&燏1gNrچ8u}dy${ȾHnt M!]6 (Y_Ժs\zJqd40G`#%!6, V; %rh*&F0cYMz MQI>%rm^ MEi$S_jt̀/`QP_) wy ͌Ck~.L dA^BAc]ƾ$ @Dxm:nvcVxe:̍W3@pޡ,u⛩Y,e""6YBYqH 7p)6n3rS Z^x"FPh3]V-,9!^o[nF!1EttW{Kn`Ɗ9J+C! p8QL |1~T 8ർ)@ 7w~=*N0ޡN3m&{Sx_>Dz^H:K6y U.Sns8J,k%#cB:U$&+>fQڢ//+Xy/dD-1.?2vV5dKIϬ\%/\ac XHXC`{ q[c@N8h/%2ہIuE iԑ*7B#:ېg^Hq.Ն}?=9~f]"i8ÎA R4dbCzإ8.nŚ{ 19 6mmJ= !Lpu`<|Mܿdekh+f(kCEfcܠAC;)Rg vPS^^5F}{g7>\:Q\wx7inѱlnk|&jSL3"m'(`n1F?/fU^Pla9v#,^T%rV˃s=S0vB-swaʘdz$ȩJ">= <[nwLT5W%*;p hn)XU Z-ꠓ]G4.,ML6_:Q&BH0%` wDD Mo( J;3:;u%yM\D!vMKKm.3!~SKg IA/ B;5xSe3(iaз!"(g̑P֣ʺⱹ0}z5d q)7X"-} h3d 3Sp"MmC e IC#9Q[bb%ۧ7&+\'_Y"x2tUA7 .Ö0ԼQa7;8_Ʃ!.=0(ƶ硵x -58)&ܛcdHŸ%Rke0̀5M㆛l3zZ.3 0-v'T)$LTF.bq"PeP))|0^C DGˀb;B>*iW!r҄"2d/\8z |3rڊXչ6gF%9+i5K+D!2 S B2ѭIX! ]=!_q~go>pjidTh> ) yȈ6CUҗ<>0V-:/ޙVv8_ߑ5/oX1d-\lŠ5o\eU GZ k? cM`RC*]S2}ۘ0jMUS.Ɣ>3 Ѿ֌UQoOe?m`x: ş! zNL;p »D]h,X=Qz?6hG !U>/?5W78n~IԐOb\`GE3ָ3J9͈py}Ӑ)u"3{@+z = Т|pu}љ&\ 3花7h/1D[?EvbцY~ΥǛM,jxBў PFM'*s–Nӊ癇'ww]@gV#`>5jnB@z*BAQԬ y,` #HzZKQ`^45=NJVba񄫵wNqU0џxc} xX!TW+Q /c' )<$ձUӮ8q(Ą@9a*9{pAD)IoqRfcjdEf,L wb#ӥmE@;G:LT ŚQ)4Ei4opR)& 4,xU3*8-r+VuRXPko2zyV/!<)}bz`섰 **dyl? V8!aۼMN4ːJlc䢚l]7f/Q@z6-;_T e3_ X(T_= Rjmi~@-E4DPw֦y²M | _;ìҷO y0W x!5^gR iæaǿI$-, kBEߛ3ҹEh='Ôg4t8}Jftl̵6#v>U/B!<۝C&a#Mq!לB'+B9SxP8¡+u@3H(2MM2mA8Hzvu]o$el Sx= t2wʜإTHN!W#@|v"WKQxX\D&'aVA.);jf_#!`+UsC`"cޓ z4cޒ,f3%jK? QP&dXkc|5aGK q.R>/%C^{]͢l 0m3[⎮g)qiDOj| E_9WY|҅ܤEѭ?w%? ߢc$ %Fu}\G( i,T9e#w/Ok/cȉқUؑq{R6U?/aBJu<{#jۈ@h}`p:]q% f<<(k> ^쒓 _%*œ #78׹CḤBs& i整̮RkXq S~kJz6q?/ϛcTo,_0N"+E0,*ͼd6 ֥o pפUzmH_sV e"71[AEH-Șzdt1LG+j',R%ځpKjҲ^܎RwzHA&>!|܅mK|DWh?p \`9=] |aVn09M/=$$/fP`g^B<ҕ/lgAD!NG ]BefPYCO`JG E< h2LlFˎ O l2N GFCVwA#|4%dXoAYqU{Cq:7e!+UFo3Tc{Zp-Sr)w+IY4}%wé7aN%@ɬJzw>fk]o@Tc{J"6r&)!5nψ.}ՇeP/,FYM`8+XK#ߥ'>m #܊N(ג4ncȞ.|2,riCOVl 5t"P1PNY *w%j՛6E@jǝ.BU,OLV \$.OiG)T kQS-7GD[+iN9vjCWMw4Xʔa8f &(Cz ΅oyI%/Kҿdp8y4z4w'`i 25#i<` vq=!Et8/G=!dJ78wO0j&:Z1awke-gi [eea"d5 ߙ)FoY@nubʨW0CeI œ4F"`PG`'vO(/2PW 3vucca+O5 4}.uжdܯ7ԭe+T6ŚP޼|DikiNUZ@VO! <?]-)|'($68ˇ4U6C[9cZp{{a0Q=? zq6Ynɜ+U #&`8C9 e/Ww_ܫϰ8J1cYXЅ* }BR еdFN]Q֐vXk<JKzYC~Ki p~ad l GN5l,oH5+@<n`Al (O)JԃvD/>XT5iYNˀitD)=G•U#[o0SlI`';.M$am5YXi<Y*䙀a u?RI48AmG擷%9$s\ mZ[UI"It$0 ZAQd %Z s@$b3)BOrLtf׊Qu, Og–)F$ϤgbOW9 4; MG3FࢍГK;4GQ߽ NQıC}HW` r{ Hq",l1TLR I2f V3 s 0SnO3)[Em pY^Vyn9/d?QN0|(u*NTL,1 UCpN3?#u^vwdշ|<.jYԣ{[e%.rI6#g']UBܪg8K7Cf fnջ*kV6) ۽'6G膀 ~LXwaMg+ YO^RǰFZhQ7eY늦+9NB:=65Xt04ͬ:1jyʾm_م~d%qYecMuL">9[IXSޗ}x#ߒ[+9&*j9PI 0dMӏ gomdRV_ҽʐȂc ?*tQ@Z©Z)B*W'BV0Xasik %O[mZru']q/ȅ%*.\U&ڒ;lm+Fd>p׸Sc[ϋ~[c!TdB=OjFiz圉XkDx*"/XJWG^fד9l*Ģ-M!dH&;t/$|>z od+H݅$L: `ΌBQnG\)%,yD蜪^g}! e,^\g.9듘@{Wo站<&A] Q{ǎN2"5, ۮ~ZHߧ11T6_iϋL"QVvhf)ks0J|v9 4X8ͦ%"'pF7 N{8eLIc߫l4Ѓ&'EXKg#}ZY 5C tp*tK6 t  *YT\wm?K4_96ʚ++2X,"lLYhͷyX aLa;ᜁ? !fnDő' ˆjT/0X)wi8ORpR<ՙSS/Ѓk %00E3\sܧ:ˆ6@iB4||3"v1s6k!$xܩ\"~̈́^_N[ʀB2jM-įMLnC=_u1h_-r?\(a3es u6c RcDwn t =e`X򩃽3P&5ˁ|V }n߶(V:O[4Ц$-hG&>$ zҤ_t˼i[j'[$G:t*9kfg{&FT)T_G0Rw}N0ynX ,QK i2^d=p~U$VQӁ/hPkmp` 3\D7i`/TqP:߫ ,NXx ĞpXo*M)kC ˢ#@'=T>lqqmRO)j$=*^Igtɳ=hP_)Mi袐@s#{ݼZ$m >*s/߫e7 'E̋΋,5Zdc"~蒢Tp9!K}eSQ'R Og6515)LW201סu H!+R?2+QR҃iq=TN!7؟X)h'y̒e=;ɵĸXs%ìSo9{```D"+\0!HqkQ [ЪOQ/{89;{&mWzfj"7M&r73E D*SDe-;͖qۖ-E 1h:l3"Y> . kTPVѹAYۋ6%DIfLAA|$Mڤ%TjcFH*!_A[[ 44j60ܟ믨6FIE՜->0 njf|KpK2Am :Xŋq7"񀀢Yif[ Ļп{Ĕ؆,›N+T#-dP*,ІĒ }Ԛ`q?_1ĕHJm9t!.W> Z?[V"W}as_qޛ&}Ɛ5C{$ aDW_F$-n c9&0P `ނ|55z7-}A?!N[^Oƈx7{;j~iSI]h:n Z f]$ݑ‹;@9S%B0GhYV K%]/`hF`Yȝ =}@NMoB8UvE1#m#t?Fh. T`OZ|/xUOg;1RLe]_ ή/x/8Ó1xX"Z.Cgz\%xD Tl d(3 Ej2ߠ\ώ." Oݰ뺖ѐuK Fˀa)4wOtiiӜ K6vk8 ͘ gTfojl2Եt`-pă4Hk_21҈؏i 3:e^wɣ%tdOQgx K47`SC{/M{nNLc]sE-ou@TAOY1Z*7JvZiV9c>\?<f< v e6<+"X*1Ta~*fwnSta7.2>]le]#5yT'iFf35V?6 @VQ5n ,uj5D+ lr]xͩw` ~DfUni㲻WeDk!=k,#ZL QY 9 ٫U8tόGm_?njs9EMX4!ohG{_H:bIȚ >7Z#Kתx P A16^T^oDuJ&8;JuBs\/"1:,JLjw$}G]~b_Rb,iNwIϧ+1M?[kd+90fU"yw|o/Ik1v3#PeߐOdu}1Bu)3Г{~ KHWna$%wEðgiX&H+۴$~O27_1y;u]/#{{nm.[$RSX5}]sEM@O"u4iDTܘ]Գt |~hNi]WѺ޵.1Qs r #E\>(PȾYĺ3FcHY56pP.$9+tR |49(vչ+ObNZo{)2jRUU<}uB|p!Ow䊺+'L 5IAvlR9O]2]rcZx i3D.xI*~ߝ~/:d̅^'yQ& Zԯ2­1F ɗP!h][YX[%nW6sLhev1V 碱!d(K0#Bj}o/aZӫn5A=z Qߚ_xLXБx~-Ek3Z#LD& fXd?>jGI@ oIJ/rs>-[I\OTXc wP_M!i!x޿܇6BakGxC.^J ^b^B1n~HRH3/m~zi @]iqbgqfnGCvq+BT ^u8(r|- Ÿo>ЋţVQZ3 )! "tOme7satP8)4Pǧ 8ٲ=@+yI_̥@Y<71[+_:VvX:NTzQ>9rN&̰/neRS~37] hF+3SF mZE[ZaktqDvvPs"*BIVv( Pυ%WLch5ޞqAf#obʽkE.4b=Zd3'\H(K-EF>E)A}EWdp1L[Q3N5-v.NXbC'1mDSṢy59iݏZd(p"oə=*!\ 405Ư]8 y3Sp A߃Fp;[^Bؠ7VI}:ߡf^hΆ_/_k-MNEi@Y1wzp%zN7UjQ dK^I*"t8!٘BU Zp: $2uբRD ⿫lp%)hH$wg>r_^X7-DxRFc5:wɵ/o?;¿-Ufr~:eRdI**:j|mF K# T*¾8|b08 7oi6uCf Ey(EB0΋a "a5 ,G?"䜮L7Gt)WF֫^7L~mBE q剚Q{V761Q3'F$*J* տ} sqTq׮KbqL25Ye8qke6wovI7Vx]XE67E5`4*}&(O]Ѳ:"`Yŗ@Ā6zS) 򶅉,&xWraL[>c\FpKGMQD[o1iOж{qQ]w00z6q!;v0b%!,N8 ug.5Pbh·GSe6O ?jH{z88 NIdr\X=.ԫ9aFjhoİ{usvT0IGUeAqw&F1 {2_n[x3?3#>Y!k@-:C;N-[ΣY&C0v< j;٣F @Yu.]==9m񲢄/P$gl-o2O+_iGSwIvVwa&)팹qCC;"R͵\hk+PQxzQ@r$+[#)Q4/L\͔:n¿Ҷt2Uj@%tW>G0p7=U.)uNWȄ2 /a98]ַ`p L,玛Pib\J^8p2lϡ 4bS< _@ޭf$"G{wPhUP  Y A Vftnp("(AFf}wrc̆`BOȃ")rL£n޲Ƅ.M&87Fm0kK4WpJd )\ @a"9N,%k 4R_ufs6s\4VLHXU.٢7? !M%DEEL\GLE\;i*Ξp]hֱdqjba+!ЫLBlcآz|s( >j\qݪ̄u?#(. -f;+Ͼt> vn_=V!Ū3Q?߱ e^ p'tZi)SrGLj:xǤcRxQkH Vav؃>.rqbn*S;N:'v?fIyg7h2qDY~\YsI b OAb zu*lEGb%RZ!{!s1UgΕ=g:㞐]@j$ٳ%ϱqTApdOI M^sل6y|O6[G/=7qc]M·nq(erwQ5ΜڹDɐ? 9qߣnj]iV|aߢX摝HB^)J;' mfMsWܖ-6Tg@) O h8i jgrg2c#Pae)aQؒƭx='/H|6k-X*1jmb@X4itTgs ( 3E{#y+ gӃ_*xʭ]C_SҙKbnpvF/Ӓ0D[H׉M;$_4zi*mt6T%V}# umʿZ:5Jg5_$2AMc#gԍ_?JWʿd޺J5_uiJ$K60eaB/ h"jBJCwh,+@IQjf;)h[j*zs0u%V6i){+$.2EG.bL3唿fKYg7pFi(6,B7¸ЇšM~dGD,ؖ}4D<QH̉}Ym p_)[YK5SnK!].ś@I ,$5"S "$62u;+ *.6̜;60QTXMv\h>pcؖmSNr {ԛ2bĤ4pxLPR3dz+nSx%"y>#X}6߅-NgVCaC49xVj[PMb EԨjIgqK@Qa\'#Cy0g0^ FznTՌoP_1?=-@wB3$g3:SݳU~j\L/T= YFLcoҙ8X?yjza>LB6>N}luS,tTP*~ ryU K|ū# z-"|#ZxO1Lsn3̍M{\UbL#2ݥiSr7ǭ4qNPҗw0߭: \ʟ=pybR10 N(|Eѿ[)@gb8m\>X3z*].9v_vr"7cROKQS<' }HiDZ ] Zÿ@Uvьz3]r-hr>7 \t"װq ir2uK[`q*L&[q×3)Rkp#&Tjm!/|TJX#a+BA=>D*(jԒFO+!̷J[}vy _-ȆG^Pc[ޱ &2q-yK\vnso,NZmJРlń aEلj&.M-~]k7tG)g /qKĶ΍mCJ^oBRtMygᔵa^mqx[_.>U]8C(ßIj$r߫bWR6k/ɕ~qDkD^~ͫObA" kaߠկ]Eh&f&NIMϷc70ht\-A &˓_E09d7@{nDfC h >L^+bOo)xֺ0W>rBb|Im>sb'W'o32Nw&=Vozc[!;5vw)-iJAFbeԢ|=6 1eZ\1l3KeɠN;ٓ'\J29u!3)fgwˤYzlD9W7]DeMSBasHQ,"[# ր z\48&u~(vju^D\ZL]~ yOAEyk }:WEaG8=%`- Ҫ ؟qW?F8I|C^gLXؗ׉` 8MwmӪ8W,bkc<7 u~0@1in hVI{w%;~#MQߟ9.E{"`P%(oV!+U[l"R_ `{J7\w;>~ D\TK'=68*^5&3 b|؁th?pZ@꘧MĨu !VP-:[FgjYhZE'XFf"޽/&9K(D)^7lEm6+R">ѿNj|;VyG/tAJ#kr CXF0ہӥb x<~u/ͽ`x9M]m){7MX dFL,g,rʠdx%'X l _ÃoZ~. .ڱ*u2RMs4%fTh* Vl֝^sDaPZ&9YF9Ļ >qי'„1l-mB/q>D~y`egӔ;a_Ki p&VU87ewg2T2 Y= RHpA=&Ğk;t]OIOl``dQ5E $_[Xq 8a7pSd’2R1rc7wF"԰iF;}yh=֍Gb^(U!Jg|o/0paS4F)&x*)fj/ )Me"6 Hd?U@W-RgR2bˠ69G􄐟܃ӺW*nmw-]h峭m>p<'W}?,=Cew<)2!pS"aȸhOhtxfO>#by!uJ oC nKJPU#~;2>'XmB`5u4V,[Z_s!ȞGĝV$ OF%`l'`A|Zxz<^e{~geVўvȥ}q?&u}!8FA/H@sGQ1bBla q;__ljCG =77X cFezHu{gh 9ʕ;6OؐP He>ճFA6sMUr4H&Gv솏ϙGIZ5aUu9ۉ|nznQ| h:FnR/vo{=vd:(&ڙ 1gݸ@ߝb2g1h::o5MD7o(>zi\Pw_ڎ_M-ni.ޙ}_T (SrY rΡ[s7d0ny00E|sJ/i;YkTfS ?⅊G~ T!sR 2gc+8Cal[ѧWI"oxrNoV思ea#6gߚbLTdlV0AG7> itl$=2)i ++:ᢓ!MG[`_U"f4/bjBs-dɞCj5V`Wq.fVz>H`ɩgJ0@h4j2Nvaj#j8UlX i30 73? ah\ˋq.Fؼ?v%l2 H-k,dRk*=]|EahHK'?a(W]V5nثHCeޫ.ǧMtQL '0?"[r8 2echS G]%Ȯ@-Ov+ϩ|mfbYPPn%.!frcyE{.C؊;^{fJ6%5!_~QٳDi='3Zz$#JLinJS_i4ULeOwP%3wgm Y,,m;(K a| b5p|B=V3qՉOoDT &g&ᚶI'3a1/S۝sr%r=z¬J28Ou!>SgwP~JDsQ ߘo$u`oAb CWqk8g#b6 rnß(u-6>'ɳN+~}.םDqN=Odz+楉Xџ$l2#0ZJ2[ŭ fF۹Yt֯pFqL?vr=&.W`9n9q=z$݋Aݪs@9u2Y6`I]F|yEIJBHÎ}Ygg Em ̬j_Zmwֵi%BffQZwd( SO|)9Ejm_6zŲ 5/wy;8uVTPsvZ7Es]az-,_4\3noLxi er H)"jhyi!wuVzNEPy.o{R7b^oΓ|ݏ`R c\k[N~+t\OBS W3`aM#“qY_Ύ\-,EC٭N/LCRdK:/ j}TN+q!sLJ/Xd_6Ii1Ho([.0J4R$5 i"*[&4r/а5-ʲ.nʚBaN [3 ̓j/_gci+n!>!OMqi;U Gl y➃K C*)~!w4E"^8z `2*Rvg)HIQ@ 0Y(_Jd}K$0DZwyyiԘ\GkM=yƃ,;0l`^HZoO}u3GȏH~c3H,nx[q̴]ᶰ97dIݚ~zN$k\Dc$+oܢ)Err ||OZ4wn`j;\#J)JI[JfEvmѐLu(ԛ=:ul"NW%7&Spg? fp9ܒ~[O+r]ф"eyrFȦ О~K.`)u=)}Ӌ(w7ۿ`$4;y1-vc!/QӔ$] j轇`T<G.";$X*~{`]dݺUh. 1bܖsc2qJ3 VF:K;ϱuX$`PW"~@cɷ~25e'Ю!f:8B_{UvYhUJÊ=(Ĺj鷮$%Ѥ.IVSՠQQo(?K#'fBeZG} ȽkIJIO18hZn椮b4JarwMcp-*80"d/ǛDrXdu#ͬ:[L6?Wg6-e#sb)<oS|?mz:ӋC` F̉̄< d.}`XGɗA> ou:lC/bQX&+LaI3oZzRo/#kQ¡~fja)K3+mS{ ݕ?vcSjz73Sʫc@ 8^mci n.|11r,u7hЪ}QaSpZ's*̳JG49E6'R?=1p$O43U2q*DKklޙh=u;&t)g9vΙNl3\l֤=͊.(&BN1Jt vv 6D|SK(wZgLhRY`آrn7Y?m2g:*Ht{4w~6{rev8x]ړ\4?Z#Mj> i?q\cfȺB"Z%$^R!XWEyGӤO( }!v!K):euћPG+RA@.LC'@ 2m{^W\o-u$;[I2>20i#[0#dGT =\]@ٓ캞+` J&82?]ٰ߁3K+)dl֌Ҏ&Sж*4Ϡa+A'M]R;|V2aS:6jo`W*܂LȓBk yK^jN*EcT^߉XWxmPJAKo-}@wk Crt%TXӕYʼÌA ٍ>7D3UQFiF\ͽzH0X 3^ῥ\!`L9pmBJ7G0rsG[ t$S_jW#=Lg[nP9*ȂY&/>8ŜT>e> ;}5(% '.?]' 0.G*CxT")٪s4xear6q_QraǣHRp\Y kf8OD=<\WL$!!o$LEPOR?k"0U1)pV-禬EK|V)ghR{P;4)a&PTEm6czZ#L)?_ `l:gK>ˢ"Ж p-hbhW7q|1W٢zFvI=6r@߷7Q/s\ lA\`r0$,5aAYmte 5w[5›2Iǯ(pu >,*Q&x }ll{țŞӶ /xs˯n:c9$dg>8hczj֨E4\}L1*`R #yyfz=+6eֽ͎<`*,K(H-K!$#*00hgJz^EP| <ǗvW!kV]Zy /n~Ӊdzlr*kN>\I.+^+}PO5kn0oKU LwN칇s6ICop@DhC<#vr7“< &WSV$iA6 {XnW, 8V9 ei(U]6eE9 @<0+´ȰvRo!$]kJ&cx][~oX/ThFg…K4Oվ*hf2b&Hv&9@d0bCvf9B|\Qm^DXdUՁ(ctfʚtARqI1A=X!?D=4pX|"H!O[氧3)!:iV] _^*}~tƄИ:HUf9 |oGRޮ:Y09%%{÷H+c1Ȱxk<=@+(x($?Ҙ`Qtzӳ!ܕoy_ܖ.nгR SgʠAΒ Z{x, ĘK:K xK$lF' 9XzoќDl3d#6d8G<#yKXA`4΄+7*27 bL3(x41XgJXRAQZz=#wE%aZ(d,uRfH,: I @k1UuFqp]阽 0>*^k~H,2"l]gЙe*m} !,=퇄@YUza7A) lo |&:/Kq=‹J5g0+OJ}|.'J:wIgtU!")UV4PPUX8N^Xx؇@F @iH˧")y /'}jrQwB=|E9_u/6lޙ K7q7Ϝ?\䴩ڊs!98 9 Dd*ނ<;Gc$Ӻ$¯/3ۚ>+߄r-4n+)DÅ0q~6٫Ju姀_5.s/ŪmT5(IDDǫ~)]Qz,1eW~3yO|#Rf͋dMYT.,01 4M(4(yj^;́[kWzxVH=ָ -kl7|g&PLgc%:G'$jW>YKô}  y< }&{xY4elsJt}4%U8\xc*ܺ?PUUI^pޅZjZ;u*۽&o-=hbf^5 3 AJw=0"֙G+}ѫ}])}o۰bf/yzYC IWIDo Y}(nxWfUrmV^ra&xbOQs#jDku()tX3cu::ΩQ0>鵩yx!._2i f)"Sqo(J~( nJiEe0u@hMƗeM: Qh0+;yy:J+? " mݽ#FX>fO-6뎧sGh~JwlJ$ (v9.N_gбO*n%eP^] ͅyД-Nq@x~h~+BɿOr񄉝hL Dc(esxiǒW + PnpfCwk”|:əf*Xm Щd.fjțc#/, zEbf%Kw}slB C?buaXPvotP9"~\Jm[C06>T+z[odLk )SG`/Qm>U5GČ +L8#T}4ܱc ȍLi8d*@Zdy믣ӵ i=; Fg2cxs634JeX6LF<fXPҊ+v5*f.!&xo-䚞31 Pck^2waQmLWmӍ\Qw%s`~Te?g[SGuKi2x֑dg>WNcݮ׿t fw~,pL9uNٺk$Ɖ PQl ';P W 0o:0ӕyFfr}Sۦvd(v!K:>cXN:*ߜ Yi9WŰcC4\3V-!,v @"( ׭- OGu-WXtqXwT;c2psSG7{r0=q/bIGN6=}"/mJ DOq*8YN؆݌X o2BehT13P%Be@Cxm9h0l:o!/D-n>ଛk}$o0]}*oر_PܳT {1Lq5?AX11ςd/ZsE(P;WPs&0mpD+ @v u?6zNA9_A *OYiM ؤ[`mR}z ?RN>u3RV+R𛪀^lŝH^ha<̥{7y3/p%Y%c[2(Y Eg!éPFMf#fEd9V:,H)WffRAz 8R%v3ڣE "!Vv݇bQY)wFa  #bGW5 ݭ:^פK"O~ZnmBG §5 ] #]nu~ꕮI79i 9M\Uz|zb}N=ctHc'},\dH J$Ka|ձQ4߁PVQe&w\0_!.5vb2Gȅ2 q?;>ٚZdsY>̫d^6MKU(6H.**Z8ٔ{F*=hћ2>M>*H3hDz=pV鉷W /1zVy1IyJ .|#'9%-kX~GJJPu`zoqP9n8i'[4G @~DcQ=d\-zPMt)GD2 GSĿe2tHB.QYg6k NN?m}+Ƞ\qcE$m@mjy4ԻBCN0Yz'FN9^G63 k,%&15%Mj*m}be&5E:[ yOq,uOy*s>=8S^/O8. W+& ȃ8UE%ɉ c,aw@KOk>Cш䑁墘V%V1:(+;vђx+Y` O0NT|#!%Gf!Vbja3!=QNkU ׳s҈u>GӏvdxdTZ\-aa7Zo՗5ĺX= jdo#R"ĸJAJQѐ4yc;,*p;'z ݄{⭴': yH^GmbeT vs2F{l_H|*zf4/x!c(4nZ1cƒ,::"+r{-"0FJ$n >v]C?x[#^B(uYdզN5KA4G:@ VvAs!'Ƥ%|:rCFn !>4_G!s@F F8/h 5ݥP9u e5g.ڇt*'!<4xyڨ?ilя?AEBߚCa5rlj_ߔٖ$,9]Eu)WQZS2-WD?1z|J=5bF~ gԞ QF#q|=^5qAOO.Ɉe:DJp]9|OU1܏-.lNLɒ3i{emC#dHe K?] iCy'}OW6dzFAɞ’qQy]+ge@t9F\9YttlOJ$/%$͐>xVS }6)?;c'jǙCucuMSY>6vaBGEDHQ~ ]x lK,\qfL/XDXhr>YN[#>)8l+9B&?8T?=%_߀ɭ8?lf*B֗r"T -: 2>̀;6 'f̞E6EX0I*wrn6!FeRDfBZ*c('H<R0u*T%DYDS6F1QRd!TZ]Sx U-yݚbJ lo~ކq/ӇHڛ~_r"'}-JM##M.lI֦lObM;.@yDž*&) .XS=[܇6 PD/G@#,z3kimÚ43D)HU&4xjsك)D<&Tgruz#emcq`AnۨTb#ߎ'eFE{`}dz_bH v}83:eBПIT/Q}-*h|[ri!;e{V+kFQR_ɘ0I2oJ)Co<=BvkM׾bkƣWп3wCVT1ؙebg ;`GLy3e 2R] ]lrV/KQ"ESPuE4 `o %-N-=;_/CA#؇u N`Ƃ[&9dnr; 1pXzN9*K>|R6HeecS1}]2LrEff4D:۵aWs4^2dyJFMRW0;A}I_(.n,J*{ъj~b}Nma}GPv:4Ř^ ~⊽d0 +m B~Û Iě&!t1]N D-zyJ_#h='||f`TX3a" ' >ߘy%/^EHDE`&2FR-z ׯ<j1`ڃjJFYx0oy)D ȃ!F17_ t0ULDO֖;LA}esq@G9n2$[!F\_G(% 3YcB HI2i \nT2IcT:%{ To<;K:i. 4kß1 ^Ğb,r9T 1fTm(3 Z<؀'Z3NXr3n&x]UdJ2Ve_ˤb+*2G;avcRsN[2KUgbhLP$Bz9!rB1_qU\2*mB^"mY:|"q#U Ria$ s4T N%{}jXUǨLwĔ[iN.)R33e@3i% (*E`(}k2:`D2;m}yyz$`$2Pj`@:>ڂ.Bo:Z]]Σ#l@lKxhl,(?zD:DDC:J wEFεIQuoI0-Rn2C{oQ& \i(t dJ/qp[xaYcI;q‹:|!4fU'Jla8[@}v5+-R6ML\#6uYKJ&8ȓ!jlKw'\zQ/iH x۪dy@tȰ*taƃ_I&~Ae2WNc '1$"R(]پNbd,csZ-8}a|WExc !9=dCYI^bd}\$~ܑ__d>֤s 3ar4ג(M8 B@(/V\h[5Z6Ajfo +X`.-Q̋c(ĀF{?Gl*O _ G,J.Nq*d~rg>(4:5 ލ6lc‰(`:nI$m86R/.g#cBNF+ [\Ki9v`|5l?b S\F;$;Yӷj<) ,'/3ZFC|V2ti6sXSDͳLҝ '9&o7mEDE}7͞O뚊IbqPjrCc9`E&(,)qp 1ZQ(%Uץg_>68%5m`WcouΈz\<ړIמC*eȯqK6dd7rcf'@,Z f` Y)@ 2$ђvƖMfTG98OՌ %'$\۩GZ/A]ىKG CO *)`B˒L{מ `2MɕUv3I@4fUp-GF5s8B,H9[8$'؆SL 3}}Z ~Sp{7R`ZWϨY_]WsTH WR|bFxWnc)VeQNخR2 cjcñx k%rx/9[iq}ygҾJT \S.I5;AUM?`p%DM`zNH$uXkak_ uj(z24OzZx|w{z5ToH ,0Iԣos]1lnC/O1T<ԧa5=~V`x+ڏO"0x> HwVhz,Br}^>/+UhwE#PmDR$֑'Q#jL,OLw[ʸ(wiZ/Ci{GȰݴ1.N  L:"d5$X-t5#]>=n&HFft~"+Q/HQޘ!\>!$?2)~]M&H6[ dJ#dN Vð0Cz7 7WX:Oϩ:y0wz tw;?Yn)^516툁-~x8r Tv찜#A+[`wTx*Ʈ.7[ ٮao怉D5EgHŽ`\A Da.R咩hx]8 $Ivi(f+wh ,|B5%hcNW`Xdda!=J7e0A}!!p%SA_9m$V}P&~87;PtMxSW[(A\?j78ŷ:# PVT]T޼a[YTNqJcwun3:@0.Pinvѯ:'+y}4<y6NK|qz)!=*`ƢUvI CB勑 `^]%eEITPoT8KLG(qJ߹: ,PE0T͢meo* j>`Ž= 2߭=(=H4xGL|ԗƭL0Z輇"q7c#`}j|EB21'H4uɚ,Zɡ"!&ݝsb쳍SB{Rֹk:4IFRf82+})aty7C߿[}I~7+-y.)WG*蛵cy|~UKMREjGur> }{ELѹUǷl.D- z{n$|]W- -p_d9}U|GwBy̌ʋ{lK)P#.ȳaHثeksشS9BeqhT&? LTSӑ}sCyy̬kdcvC!k}1WLiWm(HۛJͮ@ BG/]6_!^߆ %#2% ţ4@9ta\:.KRI{VS7T30r^6=> |瓀I$Qqkn~HקX_tlݟF~2fJ0{[Be Z}\`RV[܂YG'dIF9Wq cBt`ρHuCBr?0{hQQ@0Y]+[%Hr"V%ۙ?eN7 `XF~t`d#} % b| _MokYhW4!p ddpv95ñ%:k}y81WqƉ^RNVat}o#M ˺\,?O( X7eQ)4Azhc3bKi54wTٹ !{liUr?1V 4\u:$ BF{,9*ΉOm]$3Xi/խqsmv/z=dE<ݟ|]7/F+Z"@`8>~!`2vq_4 3vtk1; L9yΣ߰yrxQ꣋edX;i% ai8@$d=g8Y.;|wMm-#ѼSuY',eN丨9F>q)8jt(Y" 2s|$I%!Qђw9t3 Fa:܆ {r:i!YH9s{RD bn!˭&fJ7g"%$0.\0,.M#1IQ Vi-'۲¹LU Ʊ/9zwsh4D+T,6ΛZ1uϑ:rhvjU-J@aETV99]8Yל_* vLjg%] Vug*@UD;Cjn`IN|T\q|N>'O p* X*EP^5ovJN|P{ϡgMKB WNو kj;B>6{& ƏxEKnnfC(PoU?¼&z; &<ٹr!$8@%GˎQׂläڃ,'$ r&ךɂ,pyFsY+~)kifl:)Lr ]?H.:Fi 4T%  +QO*k[ $E9J: Nlnc?J0sVt,0CBM҄tϲ>x``$#][bҹH0q6 yXd0+WCLb=t |[8,C7=*0O[qx@f< gX#`VpBhIu42A1Jy_T]OCWG}`%&Ppj Pg]vlVnx8(Nd ]81vYh@I>- 1uAHkYb R|E ] E(pLNww ˪"ZqV6zv:?Yaw#JUTR3dߦto[Y?g(&!z|R5e$K;g"e"ēXkB xS9UK~a5ձai@ oB,YR@;H6)rY#oӪdѾ>b4._7@zM.o*T o4sƐ5ʞ(X QADGa<g6z8>j CZNkȀ1hDl1IXn:R_o # 7}wTe |c|9"rVDat^Ə;,sbe$qMV5n 's}}%/KsA ŏ zqӅ\Lj /S_Z>YEj}w I  Hi"É>tH #jww&.5ҝu>&xQ11g$ PuL{%[IaZ*d3{?[+'vA!9"kOf#L" ;P*Ɂ`>pn<\W|B.㸱! lg6l\|oTRU~% egVM~+HcNk",DhzG}a\]1 ; tx *XxW8WxW6!IW3QYQh(+&Jp#e\M<~(+",܉d&f,ބoKJ ,I u랓xY4VqH'_97+`,uzr0O֞s|fdr.042IM('l%2T/ڽMAߵ}HK)>-fQlNI4 _xG#@M ?G*:hʨ]ڴlT8扤uGJn2۸+P~LR;!Ǧٹ|g T`̀f OtlW#9R8Ok'.Z}k[T.T<`5:Smz@HA TUQ+sr-s޸'/:T*o-pA~?tM8/ب?lwUa5'ޚ-D@zs[7F58DKm,Sq0N!7L ˙5?1U0o%S'{Fȩ)eV' ~a RR5k_D/sl{(g ٳ Fy;|1)uH`%_cA>Zr3l3)S,imWa3 Ř>Y樲et34VC'ỳ:0_]-@UCⅻM& :;W(7 Q.ѓ~]bzϮ4.`1DEV>2|]- =$=9'ӏ*3{8쇺$JĦy4٭ftCdo7G03,. #^UrԴWs¶W(>j A1(4O0qSQe#xfɝiT}ga:]7 D EՉcM[` i`%3vq`U_c#/} %T[`RϼhalZ F3?نR,'`u=0k7 _!c.7pd~E#;Np)*A_sQ ~W$vy{UO2lZݛTMM@Ot'f?,>A`>IέOkA\D~' m$u*&KXKi(Ue~l>vo}vb`W-1ܿkx5ªq NYK0tinoȁ#wDnr'z EŽ C8OVNА ֝~Z0}6o X]!&\1qOl+2 ;U/z,xKh2>.Cq?"r;ςV顕{%]Ц7uF;[\q1h_NY`$XTYtkDǭ=&؇fSv>/[*~338/8SM.0u5D o_@d?fkJFammWNX_ #1 %aV\||2̩RAP|G hS,v^nqZ Crf?nXECaǍs{Z4]M~#;tU9S}K8^,WwJWx=ڢUiBqyc孜}ZOǎQS؇KPTH`>H"y^e2Q'$BY/ԅR7 ыg¯%ZBU ՎMBD(H";/)er,JרvxAǭ7py$Rh<ힱ݁Nl1&\}`Vc,#Ȯ@+:A߷InsJ+d!ddT7<=; N8 iʔ5;WA&a ֪MTF-3ѯ_Θ+pFm%P΃+x^Z) ;U0\L?e(Fu.T7ȕcw.'j`t<U8R@CZhbdrZ?gi9|G$UT,eWЏ 1>5d|p0Jbr*hiEtesMÛ_AOR8bH]Ep&jiY9'l]f碍)G,h(^,tZ*aLǭ1XI-f#slW(y&weXttW;a * f>f DZ"`VB^hvR;8*b=~~W3e}Be o&FjUQ-xY{Fٜfeľ?)2pDDD j.[^6d`_vGAfxJ( 1)|Ј*yVVrݒNT@NȉfqŭO tj6Dl_GK.1VzV[JW$=R7Uu$YOtkl(_n Cdڈf՚'h#xG#IQ;@v@g4h'.x}Vajc<sA~R桄V"&sV<]7GUt,:`O]Qw~6dOO 9pc1 A\4wOޝ %VUqkrz $2PN/S@p#O'kt/Fp>$ z;]QN¦R5v +>069[_D--ABgn&<~qU(dU$+ ͐60_Z,s(+g"`Bf.DDSEgh?حhOP@ 2d.QyߨkV#QC½TShchwc9ntl9߁ݾaNekrKCtӴRCf^pK~W'>ȴq['yxY`940U9V}Da "D~-L7i۪Ul_ʪJt6/ܯA6TN y%E꣚R̹u!&Хя'Qh4n,Ju#fN%Qxb% A:XuŲ'x_WܧzpyJ:.lUz9J-);|gijbX?Hj'UKw?%聮\$*QE݉/ߘqtN ȾK}*Yd(PL-ՊyiKPn'V@0s8Y C)Y%i]K8:)xYnuSh@}L/b+4WW ,xN*2Cn4i ȩrxˋ:;^o[%\p5PO d4ፕ+}Y΃rjnA.Icu4BDK5UޱH LpTػU#3% wGyҡiFJ?Uvf*Ԛ^))Jߒ3_?LL$4 .\|i:oˁOAcؖ'>|HbǼwnp+!^EwF-U̮ 42do3 " jv_9K%00`wbio[M*'1~]q)S2aC]@#z >/;]7[D+R:JL']UxFL*,>1_@dy6*Y&'{;bj/eP 2{iLF0=-IW9H v0SO9ls:`veDwV]EcղɲLښU_TH&D5(<1!9&5VUY 9M:ӮU!ǜbw7hk'Ni҅/vjKN(y)Bʻ>x~u Q s'2O:CgDrRBT6X`ϒFgK),؃U1ץiB !t'y}y,ɭ#6L;PPmKC|tnٱ,[e @E QNX5~W`L֬U[\<~˷j ք^6 x׆'+?iR:D|ëVWN+@Х ʇD^S5Õa45 ѼIp#"(&aVY4oHHzF[ai|0wXEG;7VJ㖞nh#j$-2剬e"]mgdxOTE\3Rv\AqcTO_wvb;*@aj0Nxl4C?jPVU]1#Ci~>*vFM+, ݜy0άAL`ɋD\ q>/8D9=:N1YvoVO92P poN?G" 3^J쀍wWܙ{@=ImpiY!#T&BrXN1+2%;31ehs3Q@?XW#H(0țGBV736.2PɿN=ӌLCL"ג 1MLa4 aaFEY`_ ֜C3Ag,*m4E-VfF {a,J-7WyuY/b`}hM2 =} Zъ&%[8? #f$͵;~ 4QyZBV*1d9,< zYkSzA OT  /H/C#wUҰ^: .Tt3TY'/@Li8.f;Oho\kNMYuɄ\ V5FMK q]seJA]E&??É c]9EܑK_3ɫb>[F3`rGȖH7 mC !)VUT4ZL%ckaf(LRP ۫8(HdHC"31b=AM ĺ#=%xlO4\ñ~K4i) |*#V'.K [zǝZgUw T<] /˜*i Sp|X#Me^;+Pk:Xt\R+AOVY;m"[خeN{{s%+SmwO2Ac3S>8L}u]6WvkW !JYMqa:AesCǦ1&OM_nI/+(T;*x1HIfHkҺz?=n) ;;%wƅ|ֿKBZ-x!kc 2Y@~KQ~覛8S_>t z(om%}Rd2-6Bܥ6}×Iv/~@Id[w$njyV輢_F bF&D ! Z$U6e?꺍˞3sw󍤆98HwkzXi}H"BOmpC C?eș(֞64y&&N1CD`ɺ1ȃ,PHLc&7)I#t): >#ad*Ή,0 Lv~,逾MTϪ\Ss)IQgHsA{7?YsI}vc|  Wy|*Q(Hn+AJ@̓ iw{>O;PxȣxT6DvP]h'E{3ltd*RmkHI59!RђdC|qp$L e Ů9ˆ!*)ۈ~VcJ^%""w :m)}|[aځ>IE 鯉qYotrZ)1 u͂*$>O] "d@GRb:]Jiz?/,B"ߕ$(Z6KW0L-;E+ENQU<Vy597^?\W&tG:J7YpBS' "{|C/`KD(/ichy. t,ci/:!EV 'Ԇ75pyOǐ1V_(/ݯEש3_[OlQ( Ԙ2wtlYLJ#yk<DFC2fc2ඏIH )ߧ['a fI-ajTzs h/ R*eǽ+pvh4ќDԘpB !qG?8}$Gƀ:X;&Þ|ٛO)C|SI:k8i};:f 0*T:Ԟ"L\ s׿V`avV(:?nwf&1_\1XiZAYVWbRE1t]GSA9]H2.+ *?մ+YHwxT&Z N=~Sǐ+¯>9Qin5P惱x6 Ym>71zlLA?BWDA1ƥG}6Ai:g6+P BH:AoZK։ tQ{ph/<3 Ռ郧<T>k=>´)fً*JGЏV8& 7_ ԣmԩ.I8ޏ7%$ڜ e)%~liZR9.2~c{'7H. M,2~1F##e \YCxg0;B(qs {7s/ fm~ j$ Mu7>OUwR#AR8$Gݥlߌ6qC{kQ'}1"o J·gh{1V Ā~W~?s3Җ%&;P~64 0_!{J."L[ZE aq6;B'Q k;4e3L=^]b]pܥ~g= Rs C}9^ƆA ŀDGp?;ݥbF9w8la0(e=P:$,r<[;;u75| g/#ؕj ndEr]D3W JkUH|%jҶ|DGͨ$eC|f&c!Fn (W\YqM 8m4aL/y1rnaYD`<7Oţ9δ@gA.!f, =<[Io~ӱEGL,dh ˀp,+󟘞"ֈfO^SƎ-'3#q,,qױ,1saL=OGb/y !Ʌ2(3N~L"^-A&gJrEȂi]">;rX~uN !c=\8C L՟pgf>nLP GP)梿b<$=F4l ^DZ$#UE;Vc$^F4~TҵDrkpHB;h U .* w#XfVsJd<Ӝh4)/K)F%VYP1J;3Kfzc31F7MbјIJsy1P+(cyRC/hb9JbO&GwA/PAxA?]dE/!U^O!K'Ar˦4wUxSMlU!Հ esrBOXV{3qdR^seAx-Ii>Q&kzׯ+}焆1Cj$mSΊL&>y*̟{R&ƀ]v<^;]G+EALɿ!"_ VB:6Q_ om|Rg[M |dm,v@_g"y^bHf0yN12Vt%\Ky6~T A/ؘY"r8+8e>%e! $)Թ!|.BI4a|8LUGjUG Ufkt2%?)]PTۂo=Mv˺![a͎ORǐ3(;c+*l3@hi[cz"]mD,Z! >V 2r6GqW+W Lq9,#a3VV00Edr3ɽDvru`;+xnQ.;[^bK^YI@%i=F:?Mx"{IAdANnju8ZJYD &# (c+pּ݃iȍ S@{Eci E#8?p%*ʓYJϧ8Z!с79zh0I9bc34{/R+"9dr }&<u=;Yu5M+ KY}M69 :@ĥ 3q%'[6,]~IM Ƥ$Diם֕[uMC" ;$f nqJG! {6blzؠU`ƊkJHrnOG@"?&YdpO2 @+*'VH8 $}F935Xxx]rޢ(#rfU5AAY`x+맭: Ht\{DfSuaSҞE݀lqF 74qdߌM%X3$@u_fEn cax`CS!cꜺ\ER1sOqz0^zA7:갽UOo~X ZS{<ȉzݳ bTDW  =뿎6!adsCJ@ͦzXh{}}\H]-ԉc5-}XYnyAlov!XH~F/ 2Tf>I冦|d1\%=fаu\ĜriV3n oJbZ]B} p4F[ by0r+dptҕJ^4M2cVf|ӱO"rFKWj'V5!Zr!ԓ):B\e=4Rhִe6bA=AT=V {bq)D;raX|BN0zŲ`@W/fءehU($ d8 &V [-q(HZ6i_A4" heQQ!i'b0LCڔ2SK3SZm_M5~3Za!wpOfd83G g2 )S @†"IuɞF3 Bx~/ugى:ۊ?!͚BK"B#lqqoWJ! Ǹ<0a"[ghwhfL֤&wصĩ,Ӥu: Qc}gacI-D.0hd>.Cck%buB/&357/C'rFe! 8B{g ~8>Qؘz WbRN^]K<F|D q|+0!\'@BLsI'g3(&K<#!MmȅT>SUyBC1!gg*(ސ]o+TA )'g/= E I$ fvL1sB!oi?oRDEβqi)s27Ir1Ɂ=]_׏H+aRR^񆻈ݫQr0ӗ.ƈսmPWGjCb]Rl3>0,U*ׄ[BgC|oOf_IgSi P.S13F?w((;`_B1?ȑb&$A{=&WbiaUUR/~U>5=ZQZܴASnDp1jvc)T!VM )t?olw8#GAX}íͰH1/kΥ˅B*f-u gT5*Єɯx)Nd&V>`)m giO/&[)<؀z&ȁ0A&28KW܊\-̭WgV8\ Q7_HKEP n7n,O|7tfNjBR?u7e%kIXr)k=W(KFm3PdBco} `l 9 je1ԥ`Yv \pR F XxE. 52Pi~HƗvx=7J9(Ɩ?h9$?׽G+:}2X[~d01ou44fvpg C$A`NxxT4q:%ˆӍأm]t2E3,virEʅeeSV5+.n B@n"L_;:W3́8/l 's9yXOH|MBO]TyAuʼ̎~Տ3,av I**|2 !Jt%v%CBw:&8<ӯ-x QꇀX{n3vޔ$ zhtJ\Z6|.ztdxmKK bH8B1_^j-=bPvcX!IBڣNqhIޢǛԏ-&P<;]8Z'mWRVgJR3̃4ըV L]*&>ވޔ^Hѧzv0>/Mjw68T>LMDwܶ-q/J)\?NCKL_"ZZDL5Qd87w$1Lw˨ a]oױ0irg?T־_YЏwN?:ㇻsځZ7XPs )J[M*s#(=%k/Rbh{$`kɍW0pCI~ǔEAM#YAǝQJ1:hVzHgq V|VԯKG%vmV5Ѱc`{Ana"xe~wK( !kf^ I!{aJ#{ZxyN9&xx M4 ;]J[+'gѢzYڧI~Sl]R(R^KS4}Ხ;ǹq-`qpe\mN+,< UP{enI(2ղLSu lq\gi0*F|IuUp4)#=aK?i"jH̉B8+k~ NJFt& H- R޾Vد5k0#SN8@h7@@bgI\쓢oY~&<#ZƁre?OM'K-MOl%|f,= iZ@) 3e^Fx*34_!]y2HSGy;&l T !vAb  'R-|{e!6Аis U_+lxFL/2sxm*$(Hfbk!2*[DJh y Ab!`Rڇا: rȐC(qSCߺp@T,g:-2Cѻ6[D!,=+sAƒ6JA9{9~7tA}rt;Rl:6)jAIMW|OF\츾>VhyL?1b`Ѵ.tUY"O1*-~{!~RhAJ־DrsRF"M##kDl:{Ea<͢,^O*T3Ӝ0icF]\f~PL]t`-P5y:*$^Ok\^G@ t:06 7Fej(y9gGGVS9F;=KCXń#{+A-ÒzSR"}$4٬F-G" DLٱ7:b:QE֎} 5iGP3$ѿnඤGx[w /8d=!+4~r-GnWk,ٌ`4Z- {LqLzP.h_/Qmbw捻8]µ۵֜Q _6t㏻%d.#d:ю.e 8t{{P%3y$c>&ޥq hp mlxU}-nJLNgZ.k`RvoErA ^g.:ԗyi-kָx8ɸ+;Iő d|/(J2 0ŃG79be)`hT<.ѩ/m!0^w^jݿ3N]HGM@ECpQ۽ 坫l[h)Xʡ^M>Š p*}zƍ>mk)=+lǔ63b`xl9D٣#!x).-[;Gf6)l{\e>l>ȊdhS3kFnڵdC[Bs aՠ&q%%WKAnVT:Ek'bH˜hjJIW-!ҍDfiwd +|ӝ8rsb1zvҲXj|ӗ> 6̴bK mށ_J[V-n|m AFSd@^0m0FlPSz-(ϙ#6Ddy,`/, :T&A p')ZETK%m&b?b M uun|;=\AoI* q<ʾM*QXɦQd ă)ɭ `\Q1=T5 ruw^B&0z[wt.wQNEY$U$IgEKTtI fBόlYXPX{{=!^n_YH2\9vKR+!II7 J1<ȵl6 G6VKڰR4YDC߲um9`,&JM A!syg60 uH^U}*`~ lJk@o}~^9 '6%p|q9E-PVFŞ-Rq {@cOΛG_(uV`'xVe^!lad7Ul]StU-љP0ȥzIpw²=(mc9dQ >E'jgw(w8\}8]Df䳢x#rf v@cu=u0+ΐWPB|.%M,эr“wk9\qYredzQ<;_Ednk1#2O ‾r5!qw0 <]^*_W2Z8ǺIlG@n0q Gt;8gL¾ɃWM+IRug5#tdJkjFYEXqF̵7 |x^ROđ܍$ r}$ZI0|\}3Ki.4)>G}R=4ի@#@2;VYwOY1_hHW0X]&_fo'ubu~BvO4Ӫ>.%WBSPzzbsͼ2پ25[\" |_KOQhB9"z}ҷxׅ-j_6ɸ|% qJ: R]+iOYOZ(i#30`:ҢYkQA&AЩ.,Lۮ]9j3$'g-~ҡ^C|Y[W*6({ :Ϋ}9EK4$A,r*{,[zMW ȣO?aͅ9^xPVf+0sv犚٘S}KѷϨL=} Ѷ=!#1}Ckނ/W1^7T^ ya`ƹZ0ƚ|0]3aMUiH{NΨI={@ৌ DhpvFcגL|$.ι7 v9r7|dc4bHUCЛO1iDZM16$FN)&B|\b\G\q\X!<]hk:v G5ϤZ]<[<'֟3^!/ [-"Yz#wM,{bn ޓa6naTKJuCS#5HUSm!]Nh8(-_Mra|9[AG_NY$Ԧ۹|5>fr$*NDDZ ~R5Ph CE%X$q/ˆQ'UƂ4F [du!'*ԈAI笝 A0g@A Gev}-Lz%w0<0iHTjګR+Mt0F΅>{ۚvOOu6Wz88x K&tm6H1f +22oQ#U/E]B{;}"lpmmO;D^FYgU(U!JUC0&}n |$L[< 8{6W9siVQ|l 3AC5\?zwx #5faSݟzqIjo2j0{0Z7YW ^}Ŗg2rxT_) %~ |1h`* A`EN6p8:,g+Xn_.;#g~IҡqD>}?a$f іɏ{/n 3,¨Ԣn:20{b =2o?RskKWUh@l "^(&} &VlLRkirOxQ݃rnC2\M2*Pu j z f?DOE2j2B 9H nvBui[swT.bɄR0|_*IoO@7tYsݺ/e-f30 Ca$I~IuĵYI} {]b FR8a#'# = fFd{&u쇋#)~ϗHQ rkzV9`PRj 4k.THpkbes)Aŝ3k콳MX#4TUzEPHGhe{@oq.Qwb 0~DOH([;,Q`OieD[q jyZY/)+e:zlo@T?QfA,0JA͚,Z*皅t%}l(2cCX[ۨbi~L/;qױGj0js]WWO-QR̞&^@ J6CmYL'8 ^ &ґU킣T$o@Q(RZۏ \EuTϧ F`T;ؾ3MDtklKkYT=} ҐdeEHpw*&MnyM@2k\{ q> CWWK-UȫA2Ry°X끒uO/(YSse{ Cw E58/&a0Z"/_A6aտKf<(؄ǍWHݝx2)5"'ݔ*舫` ֆ{J(b`a`jHڵUizUؚ2T5ic6P3m`Stlcf5&n3iD vb0@IQ0! kC$b 82<3 'b^*o׈yV0te7 Cþ4ZhP3\8DDM#ڨppN3$ ;*D KC.`Ѷcx,o]$'HMd4jf>|>-:р7{~c6XfAS)<(@ 7FVSXGe %t/UG!L|;T`3p?@Sm^atU:+w6%\<rҤ1.ꨒg8!wPmAerCnP4U?i:WP7$RXoJ$0 u,_тF8mCN<2إ 35 ܇UYso_VÊCwl\7RYaUe;psp0SysB8?TW~xOsoDy SFe9F~5Lyˑ] Y[@f"m=!.9i>PPeÿ$0oAƲ3D[Gvru~ʫ]:UCnILBʲNLF]-~wStVg*HD-9. &†mJ瑉c [du,;^W/InޗZwẽlvxMx.Ɨ v &4T(UWYeW?{ʖ; 4 -n4QpjLqv;Ų#9-bUJmwA$<*띱M$ -E4a7I; dZo*$0Xe&GRU7~ ) Ea f+b53(q47&^hzӔKl8"6{N'Ǘ^o Tw<B _"8x_U,R 8)ϟS2&{OE;Y[J2n+1')gm41v jOE̚a%1PDsφjkWW'߱\c[DŔ{O˧Uƭ9roJ_>\y 1y'C)(h^WFh^ۄ:z,HMBP[ჩrL- fh97Vl#d(4%KF\R3&wfI۟k2{`f4߂s d4!X0=7DeRjv3< )+ "= 3#_;U{d*[b:;է6|i%U1~&z\y9;c|Aָ0)C&V_4BzV*-uBXηVNd{<yZpq!)xFfѨgr_BV;Lj߂O7@s`Jګ_\z~XBi;KL{D$,Hz-t'qsiWp|"MfJS)cC‚0@GޅqRmFU;Buޓ; 6fTpjNL]4@rev{y7=b;mAAs@vO5ʭ֔fH=e: ?BЫ ZHBidʸ9|Q+_0$uޕxd_4l .1~3z7nɦ0=|OL[XxY7GwThZBViCnc"Zƈ+z [Q(<$kA`s`/K*R9 N s_Y7ZӦ6~r(J`LZa3ܣ{dTb+cpp/əP-(GcXDDk*|Q(W)ٵ z`zDK}'Y%j)'P3 n8wF0|JY cd5lHs_D- $9A D)o,W<'q%&-cab5A0 ήg=9DκVm~Q?6K%RK#ކW& ᝻0 g>Wh>״chr4nT/ْnOl=P<#>wdxdđ.X;hMѥ^ :5~Ve:q _puԗz6@Y@}y ݃~M)SJ=8蘌P>+)?6T!j{Y&ջo h+q#"ҋHfW'˖HT&0Ec>qCFqW@W=B?镆AnŒu EVsUG4<+DAuNdzux"J+kT ^n$az%Xklw(b@8ն 5Rv~;g¹* ' '+7#dAH;]#`EaldpbU%XxGeU5 ◨yŪnL~\g39c9䬝qhPF\Zb_  [unOΥ^Hs`T T#lT8D#xyrf^`EhH}tӾMLN^8e[_cOxIlNpB!.σz})ȅDOa'ىtsٌSxP̺͖ؒ4q5]0OAGNvn;b0S9m0_ۿ@7wv^)8;5IJ5*NW}MX^UV- JQ5i.;ݭeV±؋ 4%Hw&hCE"$;먲x+s6ta2ʜx5srpz5ͼ7Ne3wjt,~wj{5t| zTT'IF PKTaI)岠k {D{ %]o ;a֮cƃ5޳L,F.n@L]Ivkz-탇zB5w%ş|sfs%Y3ǐ`g@ijKw4*H;J]{s'NH,ƻ;u旭ͭ`w t=$^=q0Z!!%i݅g&YiwZM'II'dҵS< \=`mpTB+ ^X#O]0hҬs?\TH+w*$w}IcʂABݤo^!)Ör4W _`MT--#Ab4C c\ (sSN޽o9 )VΑBz"dIZ٠,d ͓){6 ~^pCwY8²T*dߑcUgBEPe'f!X)J4dm*t+_ w#qQ"8P:ILT6ա&nګg!Nf*LJIvoX2ˤ5HHY_u~!Qk1FF |! lƒo财|@v=zޒ+WDԏ6a?ëP_qs{qŊ7αylg ߃tF/KO=3rTp )J板IK>֯|7xS+|9y!zvQ=a.H @@̄ mÞӛT :M8`F$lܳ^3mݬ$g J? |faxUİL!A5LWⷽ1~R'/{=S'rWyaĻמ$,5ʰ%މBAJz^ޭGQ>Qi@w~k|r 4aqv;F2m *49c< ,٪QWR}-g/넯jm`bnӒ"L3M#d"¸\D 0%:FyqQ/.+ɛGNX"` jnܪ}5H0%!eDNFk6)bQWFq5͇ٔ&76ū$C$c]>.1[ /Aˢ1Z7.z!xnkCw:vΙ>o@ƣS@nA߫O~%kv#{E Iマ+}c Ul}f/e0WiǜkK*kQSc>xҿ""<_s,oxݤ Zά -y/8C k2DB^G)^.X^8my(JjnF_ET ƭ1]_?2`e?WXa@V;Q!:m)4LX-(k4R,[^L=EAv7ZQ>s5Q `sQyDV SRv_jlMo QiLze3/dgk(z[?Rg $)X64c~:@-Fyt&^Jܐ߱SQSb 0Ce*YIC==N|+b48aNq&i{N\ˉh˺bo5 a-mZ^G4 p2Ϲ^%SQ=U8}w>dpK#藲g^h'x˹3s1_a[('[ٯhޟUٳsS%I|+o}LBz^K#KZ4.ޏ?#rH]e:@qaQԩ^59odeA)|сe!?^HƳAz%EĐy|5awuБ$fKkM̆^7LGƙ~agy͇xhp`Jj7, B`r$EШil=XY뫚G[ r.Lm#Vn E`HEj5k3.jǠ]Th"7~FR ꪊ02VNh7mHJbh0r#Ruf0ULd'sژ{OC^S=RU{Κ0F&b`K_})EDj)gqZeסc~w'raUUBGe5L /z^ԯMΡI'Ksc Jaʈvg4,_M_M7#F0w|FX9l'sYwH 9ZִԻdTd6~QfIe4iS.;cU5x+*MsM!!naYb2,dj%☀yAa!Ff$d$ -l (A:ob>$ wu:ZRy T>sqi"đ=-qH+'wZHbW٧7ĩ?P>QB1{ba6to#ʒuq=5lG)NݑNώk % -ztRJYDol~q,ތeO'cvVQ{DEӨ_羚䉬q?EZ!9{K\% ޞ 5 W2:d3ȟt79Rʚm!Ax^AuhpnPUW|9}gw#PAϮo;"bUX:jm!Ԛ=|'L oƦDϨi@Lj zOj >8S<0&ʹvש&}8]/m#&LL{RF7H\u$$y I 2cMC %z *Q~/YQkyh,v%&^w "ڋ1BP3dTplL.b K2v)/@91"&#u⧢<Am'< u-WexD>9fjf\Cﲟҫd7j͠ԫ͝#XLL Za <1J@+bp:1BDaY&i=gz{]\Û/owB蝷$c'+dL I~ Pj {\);$Z^CbIvg[Puq)wy7r@__aڜ6/kCeVoWvNX0oWbE}r3 H;A'Kp'9߿]PTS1V̻]P((]8dvڠ^i ZkU1{CBB#T_cO̍H_';?VheۑȢj,)|{%.Dr`xъ-Gn#,jÙ%Sj:Jg.ň#3&>qM+PR+%3#;O7Հ $0zPeҝ=i7B㎥b`Js;,[G^qt=K/Q";zhWܳm;&\L 19 Տ7~`~Zp>ߔ4=P,)G7.rU>+|CƉ UY,Y)T- I 9kUq≯ .;uFl|f!u-hiĉ0l'ڃUqXmơ)KsaTRAȋpLpUKgRe7A0PQU1擬p5urwy%b x6" vGOy<c/ɃY\~hsot!'}R/؎ Uk8YLMJFi#=JtjzC]_|ghƻƶ69  :TU5Sƥ~x ցzbGkqVnc͕GvpO@W4lxO/:Ĩq=]gc> Y-/?dYf^qP-tU;5|+Q^ bZzj =8˸lI͠kANV91j~Y,xAkW!7V<;rKClԂ7qƩM V@>S "`ΎM- ]tFhM);7atjI%RG|$8pX{kzYi`v Ʉis" N, gi> dY/YMꥤ< ~r0`k"Sqk`IJ["VGZ K[vڝ lH{؈2"w<+guDwBgdoyl߃?s5BhW22oz0M%,e<# :7f 9av*PD9-s!?#(_۳i|Ž?aD󦐬{zfOkZX5LX 3ó0z}i*ub[}9boo0ƴneT9wO'ZOFx|]J+HXO]oa;&G m~=S$* _#KO[DV| Q6;5mH; MB//@&#%|v+,$nT#Wo:gg@Rpy/>5[/ˑ{JN͎]47J=^9L)&WIZ4i,oK]z@Z7$E$iDh 6Aj;BhVVLJ\-N Cm6d.Ei`'MH9KMa9wԚ"Khq-=&>tkJ WY ^?>`QS@"ݦLiTzNm="7D6 O4S:o"f4s7sO֝<Ļ`[ݒi[ǗPgYɔR`#07PۋE2 >/2^'Q]y(C:,ܘFy': gcCŸ U!m&OKiHkyѢL8.]hV>et.zCqkou&4^ggx?}p8NL?f#V =KmLMܾu)Uݯ\2|ݤ^>xxH\d# P6?#*tO%| yCx-+2/1 /v$4Smyp A=KJqe+ȪK~SB]K$Sf r<:l0NӹNpU0Sq@I7<[ M^P%~SDx }ٮA~ȃn}OUdKB8EChTB*&AR2,?qB^}yU_)+9/M:X[?VX늙`=¹vXvGQ'Uxrʥ5eBD^žW'<u;1JbjFJe1$FW8Ti[J5YQ]ڢU -m"Ԭ,lzGoJHa9aH>. t\R̓xHt?;8M7RK"[߇`0=ܗ4pVN2H.Ӕ>E~ f]zj+Xgn!.)_wx$f$mqC9KO8,ˋ~-@<Pts_:QjF-Yp9XӄC?Ov~^-q['frQL:7oFm'XmD N{'rs z% eTM5+.JJaΰ̨ThSJBڒl/B@6&6 ǎ_ˋшM#Y f$qFUUh ,kF/P~ ^/q#ԕ *˲gf$3>( lkf[0d],YXB߉L!!ԛ<~}H;9F9gHfÙki S7uq!=ic&"y,G*= gwO^K)_W>OYM-軂&H~,4#":+$2+!`|X IH_-GDRccX<*KZ*I@I7mB2ޚJNrAX~N.IvpK9 -;FD2[}U!ui}K;WyFF%YmͿ̀Cpp s +^Lr'l'Dj;tS)uQk9Sct.lj"ȝlt%#q)$NIꁭb.O U$k?2ZLY`7^_DQ5HĶjB/?lj29qIqFK9ufuD˳%wYRԛ(MsDfOޚC-c O Cg e}\ I!t]_ ^O܅ O^~ D}̔惜#^e _b]mpyt p%J~rD@y\f^}>a񙺬 F֮/Q$CŖ7s1=yv(* :ujy)bB#Rm_ёB| ?t%!x*F eam u|j_Ά{ S݆jDGq.YuM夃|XSinҰGt_}ۀ˫ ISh_{-|2vDpE^m-!d-i$]i>ֻOBU(?݁ :Y{zgp.e6gQ"KeR;Cޖj.fR5BZj2YRD!DD>.;t@ȏ3zP5u*=Д<ƒt^8IccO}涌i0<ŒjpxsmXU`cB/v7YTa&FU"л& ;*7. K 'AIWJA&SۮtF XK~ czo{yB| I+YD*<׋cUrs9!0ÇvEfZN˟^1[P1t 9FnZƨܕ?ĕM N.# =i+1Et$h^<#EAt.}p̬F8vvγMCf+i{I~~0>\[>1O)>V-uc& ) ڙFaq 4@N;sl5 r+| zʘe۴ifɜ5~2yKvصBrQIU1߯^D,һIJEr9̛ʳ$#K*Nl5$Ä%If,Qw9ŀ_ppZlmGB_!J0POo`xr+WF{e݁fm"w7RwM^eo=?hcւYM![|0P}θ3kdZb2?jݢҳ[), 7Ʊ5 m#E Sl䓯L+C@AY:ڸO 6o]rViBA0l~b O"u!T=ͯ`yNhRmrݣ*<Y*I#D彁&DƢYYX`;Z~c(mS=*M=]/zp%±kA9dߤy>kP8mZaox.%y5IQ3HQ C߳e/v׎\hƑ@SgܞJ^6>4~ M)Eg\Z Vw>lBzqQdC2|Q30sq u⇃$y?v!N5@9>?PZ00NxQlhfixh0kLLB6H#Q5c[V:`(a-v/͢e0zto*؇Zix;n-^vC;wEzZInĈAO xSD_${"|8(BαOZOTOg{/[pShq unsLԗ+I*#YPi'n/ P?\)Z&/i%;i.;w86(g w<<t|D)[cBv9/557붤-U*,Z yN;c_Ecϱhֵ@|l(#Z+Yk{ϩn$x˂q}S|_yIS~] ܽB}[aF#xm7ƤyH1xJ$e/vE2q@FǤcź8׎^bq&6dc>MBHUXJHJT_:.2qEsnA"ΨPOƒ6BR'sko  -8*V>P`pn> K)Nཅ`^7x>`&LK_G[- -ֆmͭ2@x .hPInG'SOLʎ4s<]Ͽ ,1!QH~M[Z/ yeUF4k[ NH_Y[njy-䃁X1=Ymn쉡,E@/qpKCfj/[cj]-< ҥ%fF)fƄ'tjHhO[;'RE^ٮoS[+|u0RDXIlzIP(x\Fsb>S fk'hDjTqVR|'?*)~aj Lg2}"kfYr#ES+W,wG"ʧ:->EYwD_͂DC[1W/m)RF;lv&X# @3u6 BO֐]S#mU$>u K=VGcX X4fXn*rs9[~Xf&Z}D|'- ߄}6R, ^=l U#yH7(Ɉv7;W.hwD Ih!& '+0zP*9ּٛkQ#/$}D|NeeRdlKR(`-ޙegEv x<0'ӂ2PVh09&s;rVְmK8ƁϮ&fLi1r]7*Q~ );%Ee]E{(a ;ųE4I<îPPU:MS)B88;bJJ4Je=U*J!e_.Ʌ˟N.a=Zst*@Aj_;HfYo;H`vrݸvvZv‘ P!G0VX>ZǑX?K˴u1yA^Yc6j7+L7 S5bùLBLzt&V]E،yt ӝiJJEXEHoۆ1Moj} *!ZCY'D\9I/l1{)ȮG[ M^zuA7Ntϵz.jbcGkjv]GOPjNZ-Voa e{gPa业(˅+ j|zwԄ" 68{ae}"Y-<u-\Y9im˿@_(?4#ʽ@ϳ|[RpIv6 fB"**LXPDm90,j  R~(A&|@wݵ(umfjA`?1 '6o(. +l af'}J]VQ\1(iG0K(^"1IN Zoy'ٰEܚ3E iip6P:ᖰKw 'Ǯ(INhٵ3]tvcT0Gycv~;) *@1:!Wl,zCUKU%BH&#r/hUD`gX #jƌu=20~H5K2';>Or '|c[B n¡oT}$A=$LZ<ݢXASa?mv݆xô;W'7' ZUu["E}P\ՙR[; x?d|T e2ÍdѦ-\<Ԃ`X˖㟹2@썶7&"Jg/jȀ2 }r'~ z~LӜns!')?"D$ Yb @2&XVM=nSMjDv }sl,{/w]3h\?"Mjtj!Fu}0+i\X ǭ..JMJK9” c Yn5;*3F^ȸc{_XhZ m3we_<7 6`4p .|{|s_;ʾltҟP3X*qdu?-*`i^]=X#/IEjɦz?a>Mhm;ڮabcJ(4q)z_׾wp+^;{#f}b |2ĮthG6ju :$vqTzx6EM):$@;M_qŠr9{7 M4!h3x\+J`&e[q3Ŝc|p ҳ@jad'Yp, v)M+HpA:2Gx݉jtb/' \K85R4l8c^—$dѬwzr~M_c,z*K`0,@P ]G* ^D0xU5*K.\UE6H&ioi[B<"!ם#R7 0'hSg y;Minx b {DKv.Nz8_[U^_s?'UЃWrBRzBF^K$!m>"a~|ݠ]q--]~%RGWr{b" .",D?L`<2x׷z<(\!>`\YT%o|tD9gWiGk]U:Qo<ք"B,QQ.سEYOgbx1BѢQauX-Fl]ݠp|LtcclJ+z=IQb ϋz@gz V oJa*c }Ȝ")^'a:#!y; -TDe.!R_leg=a9.ɫ0@~id`l-{Cz~k DR \ɠ̯V>IjdPEm\3o-~ʾl]o՚zOF#Z+%=5̛d>(9$ı)%ԺS*s HQ{p=dR.ŝiD̳o00Q2ST7aݶj#@ƍ@?'*U؁bϠ u&^!~Gdj'~v3 N^=Dlfur8)I/_aP @ œCMFc.vXS7) A8,qd2SFOzYMHr"r:WRoVnwhSܧ<ʼ6)f3(]0r86u/2^< xEPNi G I)tzr9'C걍i]G cg %XrM{(QK)xO;K?1!~@6{'E|lU"Y8t3;`ȴߠ1^w2&Aaץ=gg8FY̎c'y4%k5i\6iݾ?;p)η|ZF'9!t2,.JJj%u, ?UIK ;z+<, h?JV#Oμ44QT>cBPg1P'5֎7ai`]g,iٌJ#B~͏bԐh9و4U{{nC٦ǔܹ's$Tm~–8V= ]řX}*),b񳳭 u I#V RM*8$_GiKC%|qPuK_<2*qhS O!qYg'n*=8QV,Dش90{!'fnX^ua^ll ޸1`ܺv͞^h8òCψ*BY+Q7ypOO$jhdٯ'%sS6y`Ez~Pz ṃ=!˶ąiZޗ%l1c5vb!;sÞ2f٦m~la\ĵ|R򏬎ΝtO%'2gk6ՈKXش[@ŇX,BT 1.KO!\!Nyxĥa~d$RO?&>#ؕpLi8*${9)Mu$<hDsǠsiFmq8kЗOT^y?f/nYR2 iϩ #ma}#cC^M۹)ݱ/39 iT8=.sod,N}QWZK$x#iAx%~N ,_TZf}թ@M){lT ?HoI6ϫVO3jzM[iۓ? ֔vb\?óTmTo$I6z_<5a06-4?+.7US;o- o9xIyI)77vTM먉Oi._{.A԰{m-~ta?_>a}Sh^%[#oj !w"a֮CoD~ѨaT^:P=2aY4N r xmu8|"fH5֮Jzjn &»?CO8ɝNYf"lr{+d{㲕!I4PQW2+W]i`Hܼ2T׬r Rۛ'KRiEWS8: d&. {Nl;UeC _uզ<$q5. c99w -~_] )APCmҧ\ (`J"ХI 1+Zg^&PB&ؿw {AyV;d lKuV  e֥# Lc kj&^m=T D7lkؐ91"X%tiKU}|:EAx,Ms c\~Tt=ĆPUt͆or!u*[Ui&dx< L~XĂ aNmCQ5A vmեV`-nTϢ.JjSL;}Pun5/ ܸz`gU3)N,ZJewB>ϑtW|9LzFUY 9S7aOy0Hc"a ,OtQ}ޑ\z\LP)Tn?Pҙ2uaS,6Bч.!tL12   ZqVPruEG|n0C~q/~1*WTrhAhA#NpACHI)yD<]I7Dc;É.uvu'ɲIKxa|0LܐbH oVSFhj1mjDGZ{#{!+4UG882;U ֦YBDʅU PvNT@FW/$akDݺVc~SԄK^Y=jߴ .=a,e82?[#Jˠ=`/>FXq:U/$iS XmBoc̵&p'ch[$J(rgcXL'0c7Jt pt&^yC{4y>\{{mQűPfXE~AyD{m _J#}OqZC&r1?ijIK;7(ϛR墄Ͷ sxLPLC(WqK@[G(r#*ȥ$ap|M L Rk$H> bc1JJG͸s곣T|HE~R߿HGYI*G}gP|88OT=ܳްFu zLDQJYi)KQ(Mxq]'9e*/y.r1Eh  SA3 Z:}S%_B(Xg֟G2KK_W 牯ɂtT8ʖBRjzL o&\@sㆤcE(Nwil_Wa@Mt4{Xȣ3bf0wU/EfĆ$qGz6riqa_M({Dy/o-O*m^ܦXscLghXKc $S/|+K6e-5kG'|ӉwpUi%d-PM,<48 QM37?>=X@TV*-nAt=NU] ): LoH%gcP*e# -l8Otp-h%︹=`5©>ny6ܹb/(IH==Xt=Ԁ f2^ؿ\<Ǽ5Ҹ׎:B%I3idR9 ~;S}ze "Z >JTRFEm'jp21ì򕭦[fF:"g&C)l r͠;pa!Tvp sc0o^a1V 0O@N9M4Q.1ߐ2Æd Gq L$ dte9^2 b%>yc7`7A `VxmDy FG濢a0*;lιSd=G,U7L]T(OJ1JBgZi2E'ʼV @}5T@['׆* H%oEXlh}jnO”tpdќ)eeMLrDd1kF'J?;7, Ɣ4mt6ӡiDaW,yWEHw8صpWc~ ǹL(yS^!!+ij:HױAGx0$AیcHǗ=2YpG׫#}z˸'%@Qboճ;>SoDIO_aHµ.o'.EG+T;no')\-ҕf1c" EoM-LYHh℀UB+!W''94-a@vdŋm!l6⪤F8+Zܦpe3/@?]EJ#UZ/fM;.~{ܡB2[ X~J7xwRS]0@'KX7c>>?#9,NUd=p\V{|k>~rl6Z?9IN_Fe]ЧRZ |C־|u~)ߔ#B5Fk-((E$t߫-n|KrFz!gٿ6'{{I> ;!̷@ `hXQjEiMR7׬W8$IWd"tC^v9mf)Q[۠t3YUIb;'nƏ.ؓE OĚ VLAd3:a'pژPY~AQhR$hʀ_rZ],TtO^h c1U@v5I`}}rp=.N3/Ţz;CL-ѤjPEX~̗6ՁE/C05K,dGm,.ZҤpѳW^}l`ڙUUN+n }s]h4Xfmz`Q07kT{,?i3;KVԋwxwrʫm@NexhGU&9} Ug76(`ïf=`g: ɤ=0.q ?_cqsD>0'V,nVK3PvXBN]#R#Gnq$#a2sk S_|D ܜ7BIc84Bc;h SiNDqkv`[V&nbe=A0:Y2WJ#4],h0p mzx|Eang^ႌVR'ƢǦWoKأwfE mY~?F ?WZ$aPM sVDjljy'aǯR_~}]K.C-o0rCV8#:LioV/mvu--'8r'8hBpy`k8aJIQ6s ,nd2&4%R6LHICѯ ˔; 4?^+1t18R)Ii+hC;0͌Bi"\1 KI7A蹾bA8,F-jfu[8BfYDkfa\aJW)ʸDzyr 쪦dWO2.1d&2XVTh=W~y}y1Nʙn_O߫T!>-!KkPu`"rE{\^Q]L*l [icx((+ڷ,bE*II(](3 9٩tBYm6]V8-'ܗh&i#?pVq^Y!VPIe,e A/|SmtJe@+!po|)pr8gEt 4S&@#fZ;jWKfjLb=U@kϼ 8پYk0}@ XPB&m\E]7 cO6.)6dv!dy2'dh}D ѸӪCGg|mJ 2ˮ`Ie9TRpAOYbUcL+%t\nO@R)NY-Kzl Y<wtۻhıL[YȂ̱]8,+Tw.mkд0Bq߻WuM:pK)WE:/-Ce-O) Ǚ{YG7M#*ۀI3vyɇjdZfҬf+6FBc}"_'CY"AfۤV`|9UsHt*JǫhEX/*7;[L)\u P͎vЪ<G ^zQ=BFc<c5돓|uUC&/Vl-[d`cj)[ʄHHaEvLI&qHQB#4wX`hQ7z&+>>ER,9Pڃʝ1qgoJwrdKX=FqE7^ HŽ*SXTD?_ B9Gl@aDc>Z0Fsq3?8LKlߔ+Vq C=w ̆$=,C$L#ٻdm_}rli؛H|R"}aDr;Kڜy,u: \%]T@T)pVo̯,"ˎ3r ;k"}bo_*OLr2V!sS$4v]uQ_QK6NϹ旫O#;Feu]3s͵iPV^qU8[2C5(F46?'SJH` 8i| mﭴIR~cf &L\GGEӈa F7F-bM oXagj6 /spY⋒ܢnıw" oPI'W{L=I[{T4M&MbNoq{𺼿VP7WvlCS?RSo 0C Ww>#WZ $@|y@ kFIQQzMesOLAl݋Ƀ6bVcٓPMB[Hg 1-.浊qEiے]yr2<Fs:$~ֱ{h%w:4mlIpg_T]O`Xad Bunպ6۱ɓL$3 ` kε/Pqc"c fXj5t?˂d2ڝԂv4P#ƀ{hXV`mp=mL9ԣ0_Y2X%O0k8Ehg@ZF'ҹkT CV)NUv[Xy",5=?4r_E,}EDJÂ58R2}8fիc!MKӏ<"vqd,me:-h`ي 3kj<7J9J}p;QE9c mф6czHu`ZL6au^4IX免 &`kIl6kT4]S(CX.;z\-)$'muEvR!-(X$ds⑃AO !; W%K [=p ~#J/MHHnpntBY׉˛ٸ`#2 :\?9EW| DsOG 3T ۳+ ÜVw4džq֟N&[OE]B*T#_9[i}>rVp5q!*2 kya}yC گH3a" I/TCO)3Q: W"Ah5R%jʻuꩉ-!S_'vƹ L;쎖 to`M)QLsgX۪]wQJqŪV'"JϞ +;o#0-Pg-;)۬'}ovo32FȬbT&WJd hN9Q#,pfaTG}Գ[^W4 k"Z|p , $vvqIEƁA]ns+jd7:M7kvm/xn?򅓊i^090jL`">vBQy\#fyy y'.XhЪN*aosw+3i%\+F/FdPu-`ɵ E&)zI^*~Dųp ([|F_qA۱ lAÏiAy{)C6r?JxF;=L_e ^k7ߨtAKjuIE'LoSAF:L [Մj9LYpc~U-.{܌S!u9RSl/|"jlX'Ŭ5;+_8 E}{Aa!~+ĢSs6g]h<>f ? &zm X';nVXGZBC_ϖg5qLBa!2EV PL^sҪ# DžGFJB2t9URRHf|:&؃%6+1pˈF5I)Sx;ydee}ތ9o]2ff\D`)g&{22$c%<Q#.FļVܐXg]VTx'E Gj4L! G˥5WB!mQ$d X.  Ž& axtXn&]wHfv@GlL(_9Ok_254dMF]=zSoMi+$HtpM) @Vǎ]"sb Ob_+Rų|~ϡM6s!RQ#PzQ́QFJ +}H5ڀlwN8?0FZ4 ҃8h/ @4eJX/IN.0ī1S8C| 7;KA~80sd}2eh £pAЋ_91TFYL%WߌNqJ5cfҫ/ۛ7*/Dhl}˖ 1DͅU`D r:;Z}6nw5ME-\0br&YWdfVa; fd8E#lv\FMQ @WA]Uq7"DKS6š%žu술s s׆<dž; d1rKJtUu@هZl@OE ̩yAMAc.*dkڍ&}d¶6{#O9PUi3N>9rTe1x:;}d*|VK$-q"Jkw4GIO uKZfxg3Wk!=V^F<'ʿL&<ݗ.i%FzCu;y:Y f ʏ Wij@I/ς>\[ T0BIyѧj@4.SG*ۏ<Ir]ONØhJGSrnol db~2QVetTkuYe]{񓡈2 צ^6tp ؃6>xfx9Wq}mzsyu@7Q!`gʊ(MUc!mb SЃI~H.XP}:OGձ{7'vu&:_ȏjrWvlm־W\ډIkX:& *7y.}.ӝ-D}z #C~w Q,@i~PaEc^{lVW۠ybi4hf~[p`47շU!=CWVopLDN.>&Rvl#S||\h`,9bl}1{>4?ܚLLAN1c,je bbwvxWC8cnOO3ߓ-l"4HJF vn%MEP!;IEuog޹2PFOptqϕUe+U)KZӣY Jkm$}fhDg UQnϾ<4%0ɖ—E#b!e 0Nͷ9ny*lGDܗZsCݲ5kRλw@C }kࣲ6At-l'" f1x֮O~΃{l Q\@tWs")4Y4}hOwRzǯto|C@.a$׹ȁUT4p|靥_T3t!p)P'0L/;fKR d>@mb9Z-bq O{l@GD2s ?J'ۓAPU~#FǺ#ӝt4Λ' rL`f{6LJq.r؀]b訽*ܾS1T"t'#td߄3sOvn> Ĉٵs!XK51!}ъgFj%Cik%Lk\q#Lv wCJ݇X ci6J wig}6* Vꐆ Qo*^S~sF$<)'y4rŪ_Ez 77 yTW k5O uؕf)8S9{&݋,tsw^" rA,.ۘl)bqn3NC)t6/BYS;g-<CixfN}6t]''Y<}"nAzL=M."2O1^1B\ Zkk_?e5cfdi> PڌSb2MD[IO֛`vwEmO%5Zm>s퀲oG 1hߔBQΛPHqߴCrtU%ohAp2!OYN+9O,qsߴ9Z ~c *yl[9=~޷n 窴 Ҽj e/ p4ߺׄ@:Vk.%WP,;paKd$WԽI9zCHݷo|zJIF!f9, zNU7靇$%ty^)=,, I ElgCz@ @QC?nҟa4ՅE7'xo3g mY:R^S o4*"*KK^~[c:ZЬ~3VQidrwLDFie\OFG&{aB#/<ߠCuqL,A<\j^U۬N+{A0J؍?L6FyšǛu<K;v Rp_d\BrhK,EjL%FKwƉVXhԺzVt|FZwv4Ry}32fXL3=N݃8$^ f~!Xe+Q8HPSwXSYzrK>V\έ0Z)rSޖI`&|ΩJZ,ϲPΈf7uK8WS zC+FdCȤ-u7HDVKz=y ϕI SMۚ(Ѥ]4qz OHAu!X _d>2cҎ3 K˃NttT᷄W.hQ/ kzê7\5WMr~gN`Z0o r!aZROy 4kyU[.=9'GTlSDN*'U+0٨-A)/^@ΒU5KahFYh`CB, "ϯm\Mi!/˺MDů.Zʹ7 #6YX{,Xabe)BK)ů;=i]:ұZӁU8򈱶}*j|Q;ry >L -L/ӊ*Y[v\tFPzV[0io9v6C;0Kj.]PL Hч8.j" SL8:Q~:ʪ`²үz*6dV?_gR# 0KcT*ĔmNQ xFMv-SZ4ӚvlD.1i +b"FP#xVj҃=ЂqZYT|jU +"Xd]d%Q~E.١:0AǏ(^c`83HQҟԙ3b`~w_DxW-&S D<(>1ضB1 ^sﭰÂ#'왫-[yǾ^Zw;i`LT\EJmG3q bщ!\@ އ 0l".̒\'#b{lWجx'ROWfsد)!JY=–`&sMOH՝1 5VC6m5*ɋ/#W0v57PJXC]I\`௒Q+Ey;nߒSa<aW^w5:0`n9o4^BB-`vU*s~ m`ȀND]m)&Ś8C 9iO9G'FRn)E5t P2[e*)*FȴQ.dv@ KLU BAI,Iux\eqf4nk">2yܧV세Sb}.}U6CF f~TdA\z |<+RV>&JO pe5h04re=JVPm}X[ii)N+rN-o2 Yi톖j8ie6R'$ @uCQDgl>P}qʯ>|;r߽qM'a.x qK3jV?AKh|fb1B@Hg j^<If⬮T !^j=PsX|)z)`E9]vڲuOUm?! q&[}Ͻ <Qއ ڝ,C0B44P#ǡAp/4-Ԩ_xƏ>f"=] 7a}f;81iRdn۹q;#0M9b2Mo~8`!4$X.[xM-Z#]'r > {ߗcNwX-RFQp'i1MRF@*LL66Lrv%LQ|ٔGS~{և{o@v%yxv} eh.7J1 ;2_5Gl=YR מ|RױM7ako k]et|YK^n\.^rţn,*Tt Ԣj-8#ܨGNᓫ4#] k]޵()=oOf_6f< -Kv.PǮomw+ jYCrc2f]>&Pos<;3SgySwlEy =2iJyvt${@`yY5AMݱ:x=|}0ɉ4BS7/C6QߓUeoP٤ { |&G- o"SMg8x45}WPQ[DD>3~- +;-+H#(QVGב>]xUZLf.0ɋg *կ1Q-Ue'\#yK;{cyjMw+h הMdRߒWIn156-uȄCH TYPa:nOd 1< $ϛÁdXFmM&_=GY,ǵTD(<^dȉv9m0},!_54__]piBa)ׅvj\D3_tQKLM=$Mx*)Oe#[A,S9sЄepP4\3mԷil]~=r\m5کeWci)(AWRvͫ ͝Sl'y67$FzcW( 8 7 X'rHv1S":aiXE>&N߸J<ˁ\Rn= j閴@rΜwopoWR㎐|8aT#Y5!Ƕ}5x,n70[l}/pxE<`1"9 Zx.#O xl˿3E H:]Ñ[4qGl< [1LޤEjX9&YU ٢[pk?~3=Vͼ0ފX^٪Qd0<$킉E|K}g>y# Mmv`Pr ;stxC_kNn#~ MrU~^R\=W\8[*O/a[,ɯsh1"O)D#E(9{3Bs]na:C9(Ks6i7}#֛ן)X<ZHIX 3{ ŶɫF S~IV@[hޟ>c$Sy"Wĕx&d?.~k/Hڒ%>,vOƸZ&^QQ2 mS;0lh3]F{OͨD/7[7Եp3XsD<:z=ѸL6]BޭXQǟ2g"J/յC+)[`\vRPPɝ@ y$p=Й k& %h;лπ{^ Ix K#'q>E}[߸!&EY*lqK5dg:fp6txUɮʬ*@9o>4 ֋ [71pD}%@ZWLMVMc\,#~CV&EMP1.UJv#PBg0Å;Eo#f ]t5ZXe^l,Y/xI 4+8^ĎVdѷg׆320̵^yڸnsr+9t6%2ȉHpCyGhė4ȷf ShPR%9BOz T8Ưb [ŶyqGRڹ8y'AGJQ3F㕫e,K_B!ĭL$حi]*=ek=w[DY%ʒQDDۃk_SBR[UeՁp yfQF0M{Jn: K1$ht3~l(_q*^f )V~.d=FrQR~+},k[0(e`x5Bŀ.'> 2}~)' S:Tů|N9u"?Ɖ!%/f(2vlw6 TmfI">p8!~FvQӘUPM *_Ј98p  Uުκ=V^!{?d'_}b&&^(`{5cUJR*3D S"%+˾aeb-YW>̈]WI ^:6]RFA|WOQjԾx29 H[bpu1($x~pG-fcw] @DL9Q5X pF Y&kǧ4Նq2(K DQ'AizB&֬d4u~'cL#%<$8g9tR6zi[ m1FN]B#]RS_gYa/ I=l* [E*#/IZ_&9s+ֵӾy' YxN>䕕ăV<R7۫s[:ܫ &ʵ+xJǀpKW 96qkb o] ?e)0ȅ) `CڝJROUP9deȔMe.!đ+ұpYafDIsg,]k4u Cno ܁I{OQ!3b"UX[;$e bTa+Mj$6vϢ\7Mg8#C(^H=OlF ?gޤcRUxs_2 x,-֚HaU(+>\A\q?hG?}hvb K)V3PGenn0;2W/(~O3+7Th /LۡK}bN<]PyWVB ka⟺٠*F )ן'YDu4v2Ǭv_ zr\dAf#,Z۲0Z"Ǧq+mJZOzfV ]:csBG;7`(r3] ΰWH2J{t"/F9,ʵ}[Am zWrU@s҃.`nIONYon#'f&6z/tq Md?=Qf- ?J& y֍{6pD#ĄLԱKK^lM'n΃ ̈́ Xg\~ ?c*:0)z;Z?PˏqH^p`׃{ ZXZgq&gAַmq K7.ǯa|@F^"E֟o=>6o&+D&Z,Ȥwu/UX>󷣆MP8qc,՞7ꏳ}  }p6U(-A7]T;A#s>516 IoaXx *!M_~&E6]W66(= hӊmN+LXPfA(S.T@ydt-ŌV5@B,:yq{z3q`dTJf'J>ZGH "{K$)'. 5OlZf1/ +{ڲi\|U,=xpzesٻ.O\o^N_#R*iGnn!x4IOcbyXw7;L{S+TL"#{>Ra"9M_aWg lU?̩2沧ܼ/c|T,byz3%Dw3M~WiKxw#!čZ!#ȿI%cA#(_*җ~j_]ur#_`.,*lh_\/y}jHED-7j޵Ru ,MAL of77˘ߘBn@y ,={roF顭1OT!l$04M}  zhSBYJ7 .aV|%6p`;_c%᪷U[^$[$K {BED^7˭;^zX2 'B`:rݸCN+ho|%T9_:'%~I`)iGJ]٭f5*^k-]!HIW>Cb2I dUnv^ìO{٩dްR" &-$|IID@ E3Cksz#\ >xaeLB3uW5NSUx݆_DR7%S p+.bOw{ϒ"B7CL*B\ 2]1aV%=8O+9iI!/_㔘 2snϱښdQsG}F)*/;/ m/ r\žTJ=H 騗fpmb;[[Ǎ'"{+B$:݇{E'j,rGp{gg\8iF*/.07[K]rrBͽaپʍ2$r?PvV}İIh*1!>f˺FY6`xu[ -7y{5^6<:{W;F)ϜvIvuϲoBXv9.e?XD+_+H0A4h> "wCis'ed"nʨVe6j 8XiNLuϲy=L!jTI83 g*lPK vri?Uv檙s489rL}75pp)ZdTJl- NOhq: Q$B鏼5yi|19[X hE8b=G\.kAzgm׈N h(¸'@D:T#Ղ2B/'e*wҤit^GĎ*4tgpJA<޿y GI؇.9,U|pl{Y5RgT%٪Xԡ^Rw0ZBD5Wo0>B+Y~@ 9, 9_:r.VTiZ!.(H"lĤZ^d Ks-!%tDZ_7 2Z+4J~ڪY%+[1=QxjwkCB}< JQ~J߽l#}m"+5紱QQ~<=6Z[ p;z X ?(6Ш*"']9OE1IpsU]–HUsv[N@njHOW,0}\D*:U`H"6PXbm_,SJG|#W}jɕ%ԈoG'Rs[%H0ƊS à F@`+Ɍ۔L$|ęƤxsaHD.T{r/Tݩ'PŻ-0ַ.b`h9_ W-56Bq` b,g7` ꎻک ' Τ<'V `|fexD-SvѷJځA$0C=Ll:f{T};*(/' %y,Y'NXULȅD䅧)˼6"dgy\|@!95q#dnFo%]H4i-dg?q`?TB>`r~C AM#t]>%]a1 1JзSc]2R]7`z0BoHȻC%#5/ߝ RJ'- *w=rn%1I4})e+w%wPʹI6i؄ ,̦$cjE q/]cT F(e&5D# ]⾥.k<:A3'lqς>mNI*9k&w$҄a9qH9ԮRW Oz6%gзR q)1tgW9+.dfuA_f9j@.2#.Inz71-ip|uCM]Z PG93+of^de4W{#vP x?)Xm=ϪlΑO`lJ1p]r[XFwG-kB^ ҪÁmwxeT_cO* ӄ3KHсDKbm=-%8.c/qP s52 Uє;Ӆ7ͥml[]VՀ勫xF(%T%}j[p Ȫ&kgm~|dk`"l໒NRcchbF7Dgq*]G$N'x%q)c`B9/˲5*'/_:lՒ<n#0\ΛRE_}䍌sbCڟVD.?tw r!H&yDߐ'cbӃvΧSl3ּYEJpC2Vyœyˋ a^SQmZGvbU.J)깑@ b􎹐:c%)`]7#qDַQ qV ĮfCZqa*Yi?G_ -ִGDcۃ w(v0T!ߺj>Y.S}hH]>*LB|ӽ{Pķć1 u.j¦SP,f3$ rG^@n V!g>.nF@qh3 g^۽/P1 pFr$ 2=r݆f l bes/-;4vL{q2RY j 2\OKXciӼmQ;yh[T ]<5s}! ^ uedmrW׬KWݲsvΝisAQ̵Ȼڲ9_+* ׅ7҅?@f`nAsƼhF& /&LE'=H?1QxT"{sRkDP*3j t{*i!dY8q:~8$ tĉ!`r̶`@uyBbdA iMˤQ=2~E>޷~ğ{qD[s=}tO5RMP PƇG-H RD.W=m{e3_.F'&,>Ӧa.q$`vehO2Nr_viCX@utQP ɧ(x}S%]wР̰J}@d]gA ;lC> 1:凟_No;⵱^տJ niqRE:۹&>l6 h# ,9|0' eۑ'ks+n07%p$K_llDzbaNOF\[DKKkmLM Jd։]..L;wFP4U Qhk@C# =pXc$}) WJ`cpQm>"{K։ ,-}6%j' ͟/ p+]Ӟj&BO̪+<ܫzѻZkELρ|B0m68pBS~}J`[kbdD yXDz%ViD- t1gAC8F,x{ֻ3k/^y5Oub[͜p"V4FL,^*@ d ǁxP<0}G.z0z[*a܅BڔjfbE%JC9o 9|^8RCڒݞQ%yW%JIͳ8o/|4fxFU$/@ |cvޭvGZBIhЙ-h7P+a(}&#xhV:eFw}5bmy"t> }-w$ [F9VbcAC'*H_Yx|I;0&mU Z[<>L޿hJHk1nh*ViGh* !KK .O4(?i?@ {ZfY&ஐ/d+Ti ss6IuuHS`A;[%e+['' d\A&'is*+>F^SRC[]`u|A\,/<&wy#rnp^:;4Ep'c"RS_ jr'jb?aYD4C_ܮe}JEzI1U &L]^&;E&?+NRS(8^|aү&EV׈kQ,76 Umj|gE"zԌm33%:*d.i>d&ᦒmT|m;=EXy2Щg;>¾ueIsȢGoH"RK ^#\|e[>fndV_Q3RqNچ~bˣǶl)&%YC T0(^[#zXkpy!8}ύzL6beҺ憹!/3,L!eH7@ DLC}rmYJ fp5n|ODqH!fְv+2 SkYU @})`8J;C}_2N4F›awk*'C$EOqD(t\lō/*Ii;#,-ߋ[]ݭUW>Cj )`xlrhtbKǬTЎ)IF`.R+bn#rif'j)N1L;C@{ SP(`-(bS 2g]g6\tD U(4$,NzwSm-y-@t,EglQ~Yprńd#Β%uv^Zqj+.OhydwZ k!!c' {"d^Gz`4|3٤ǕQ| -8{)0fKjU%dThwPJ $A$:{ A:ЩofnP^z `ܥL| {bJM,=挴' ¥S)֡" G lqcUL1LJ -`^Qdv/.$?JADQjOQƕҀB90baHA١N 璬Wy,чl}#/[c spDMC0lnC&M?a ,bB"#NKD`7.M_c%{ <]8°bICq㯑)iVBT`/G% dݐكaפ~ZK+|4UԒǷsa-+uuZڊc n #Bn&=]UkcЩFuUXWqi DOK̢zM>DJ[[UDŽ򘥉<`z sy%Y(#uXOR=#nT9 5g_6KY`1hHߨ^zRSjGxD|-S꾘)P"gcBgH-[U[9L2sƚ8ttn T" |Q\ 8Ptx9̎W` :3>V:+<x5c(>"F|fvl]i4s6sD8#`r8Qr0IFI!F "M*׿Kc`|&asf3J6o(ˆBwG(t۵33bb֫c-U_VU-DG='\-{/JXIѰ!,q e 5䡣GZŁ)$lC uUBe=O2Q1uL2[Š" A~ӝt:ݠ1ar;#B4}g.84ˁ04;cWLmf8QӑWl ]ٶTaK=sLcj1kUS3(^>iz9x #5r#Fw.$ԡ5>*\3T(v5j]ük RKį7I,j&p5/V̅`M՜o'^8EjhJ;+>+arm/ jlvx]hM~EAR.%%|c<9IJ5}Q$RѴEG0S7f/o(=!ݖMEkE`|$zP"~!"5tTo{srOC^t,.C(D/cCkLOK5 $xtwZl =%3$vEôhӔ`T/8渚KԨpOj PYldwh$s S|pN#ŹBF/ >-K!_Ax\?IM<ߖؑn^Y*xOGH *0{\|f鿝 u%c=,{S}M0݁k2j='b@B쥪oZCb4\"}ϡxn m|K%A sJ w"ߧU8i M> 54䀝.oWl/Q`N ̨ˣBuI+cU;acɁ7C8a|k5kϯ;(}Ȼ1a0i-"Veɔ~1ޭŸ;;Ā/1iB]n|x"j=~=i:w3. tz- -';~%NfcNzu0x|96_+{0"Cވނ,CfEc1WťRr6.& NytIK0 o(Dy nc;MgxT3BfN*`ȫF9ǭJY)B!)6c:MZh7?ސ7TNo;ǰYjm4@ҾVz;{+|yGD("եY.%{HwX'%tN۟J]4d)[Zw% m@B._ix{sVus nd0nsqT\)G8wWNrX4T.". =9;x=y{'_}[BAUWHf_DPyX#u~j2E\}_Wl{ʖl6u9N>Y>" ֗1{%%MtAl~Q_^x}- NeQ-@No/H*` s͔HϟtPa E3(T5]c #bŪE} YDR,B1BqR@%u3.?٪Z341'm͇="ZTTqSfdSs@e09ܑKg.K-YU/84z'붯2ޮEB=27,A3 2gۓA_;z[ W8!}@Cu>7(*9lsmVXcX[dcqф2qM{ӡ&eq"^W6N7AQ_{^ȹx/??z O9 9geD%[ig \ko3癒r:aܕhN.#gBYs6ibC<"f}C6&3%NCũ>  ӛϸӢҕ`NS^@`OId4m|`_Sai Pvi&6plKw0#_LJeΨYhDŮ=b{]㺚#L>E뢨m) p?9x"0W;`]C( /'qǮ0g-{JUV [vM<>l@dbgjRБ/rnom]$wL;AT\7MQu&fD`79wjllNI!xX/oh&QFAϥ9n(a?Ѵ徭ԇ zdij[p d+T~+-vlUՅ9 mA’*@nꀛM7پ{S(=/\QbUǨ^']8ΰNmU Qk0$f5l }l`ʉ{>f bxtڇݏt^YSjt>tv&Whć-5/+aVc4E~r: 6Zaf1ژ7u}K@ŗ6l;?K-Z3/ɎFC\^եcnykstzE'ہ  9c0nE+)zO+ҁ^\ [xlniO=eYC =tnWt.djb!Ex Qj4'},uжA7GF{(bRgwqj'kqhqu7֣q<> X,1rqԶ4%â"qqNLp$;*I#)_YdXGȺh/~53 &u ( +&k" O~طB:Մ ~L{0g/+dLX34Oz_DJg\6'D\aM0F_ovK j;fr}F"tԢOvf+0nv%APAu\* 4FU͡v 78dΨݽ|#Uf0o+al)oZ~!ñ'# G^CLbL9A1.!ioI4DgO:_/*jp,s GP?W=F|&Ue Sɀq Qth%Y̨NΞ)~f@/ܤgX<\Qg.q5ޤ+ vپ/09ڭB֛PLNjw3d.:-p> 2և ‘M Y*/ƅb[vcGP3L *$!Y]3nwZ},ܲӷH|> DQ =$ϕ9.$!Ixz;f:KP:p`ƥGV6VT![Fb p*S |S $󂃼e #IyXۡi zy 4q2WxRJ3ZǴaN@#nk{%~s2w_sO!CdQ&AIJusɞA%M!K m8s}rzG?0]&%jދJ";Xi+ ^u慄4ef>9k1Ƨl~`Y#?͜(ON&[h㑞؊Ȓbץ}r`>m2e4ѸooJ]lN#EG:䤇o…m23Z(Hx!kUޥ8xmthag$>6q^ =Tx3%$|ǧڮwo^L ^t*+G.emgMv 8-:|?c}M6h0jwA)"dB;!oVY e.7Q>æ$sW{ZexdT[dcWgMk.؎$ʕY^6pGf?U*S"_rH1uޭ10Μ5?s(hTShIWQXzSJ#LPWB ɑi.`:;~sdM s+1+A` !C&Z 5J)?0yX Rs@g0?MȿF3٘M rpk]K?n#_$ѓ|f:B 8u:OQG7뮉,}.bR -CZ׿Antsk\X"{O ^&oû;P`~p٬{DOCtwWL 5\|{1%%Otu>ɾ<_C?(_^e~2n0B2u!ຐ߰G4Ə *!UA!99!C'm"hRndU0'֎<~v5\hbWfxn'< XbØ3;Gf:AԎpA RpOgj-*sC6E"2V/݄җ%/eAgołNmUr~"盵5U Iɚ7>Z3oPy]U/:{mOtc$y# GϢbXbU* U{ax'y]Kn&tH%(9HQkjr.~b--;vxO.ȸ0>1"L&( a{;_8zݩ†b)%4fNq`"7j-#hۥ]^X(ƬRhco򴒩H܆֪&hX˺|=OQCLPO{&̌詚 ăXnyE$6쉣3C-c_RV TMQ[1ɻ:A{Nc? 4mlqI(C[y"2,RYdp:kKzr0FX8XȤ TlA8 iNM&H9Q 48@SҁVq ax%ll$p|tF\~s}0oDx!VĦ1 ݙ xJ%!c@pWm#Qb0P*2zKe陥#\pUHZ T3'x AfPZum< tLȎm;P %Eآ>T}Fuvh䭒S)jtKh&*qO(g2Xv>_ 5t I_l׮f1B7֬ᱤ~ÊY=YQ4Ω7 dB c+AFYx ="AANl苕#Oy~H#,b`e.`@`]+5Q@t^E^x3^kwlHC,?yޤ~ͯrݴmaIU;]؎ %LqY9W&_1)^S{uI tF (XOF\>y `'klr_b&!kOhE\XǦ=0&NJabkV 5vi$F4&"ӔT|'S~-AbN{؊ oO䔤0x18_J+4Z j(ūx18Fc\(V~}(N yA{w|%8{t:̯305s}dn*;P;Vf8YRPf&tInǠKhģM0lܯA+PK+[ߋbAhJ^tӖhkWBʗj7Khzu]pe=n>Ih(352P;9"J=e.K$Q̇bVqL[}7/wB$dQD ^3kyҢjq7A,"iaj%'>Edh ПzU-4 %^'F3AF.`^_iO2]޷̍\J}ѪSއ W6u-?! D% *:5,QPXt_[AN;:,ij"Sq]ߙXWS8[)V0z!V&U&R!M)x@g6_92yEI[8Z'5ph7l1jd5b]ʃ%F" hpuӺhmM/4u(x&8{硵ؔie8ft@{u0HdQBnc!yr-[s"U K ^@J_t%)LCEڀFN'˶) KFa:/N6ϠVӵə~H9gBEJ֊* -UH|L@3rHэ jܢyP~^7)LKO& 4V(]ZzS%`Vqr$X!rNĩk{ĖAŎhIJa/lSb25tm;9X@똊urłH5EDzLkqMqoGB5'۲\J5JJE嘨^+8Y `NPYհ4V.zX2m8@K@$Y[G'%? \T,#Y¥h!>$X-easpj%[s^z_1d9I8hbq,[ >Cbz\<&#<:D*הPĂr 2\O:Et`HALW\5xJ \!iFfbbZxKhF}B%!~@u6i0rlRO;S8^b(Dut$}as*CpɟҐg;Q' zg,:2st5Jen6XEW>!moW@Dg;xD ߍV_@~+?D2`7@@c aԦ$Nh-Z7QXwA 16}/ "֔CzF;} 'ꝣZC)FW[EV2<4/^plP4tQ(88GG#vPrG9}pK֜!7/R@P]NQ/-z4Ϙy5h,$=a3_\]Oii~SzUY?EB,R&@`ϐך'?Nyo?kICQ%MD̀&eala(@^$?Vɱme8b& qos_APeG|@5 aZG"`fϖ1XދK)nЂ{$L?q$^+1=#5Ni"Շ'͔JNlseqG9I ӆ0 xQoXpdZ4x%ղS|aXÍh9fMy/}h 1H lQ'S\Mv\+7J|[U` UT5?{o\gP}h;pv씤ЧݎH:E9UiF([+.y-YPt$;Qѯ| WD*?9hPJ$;fwm3xڤ0da:Oe5-];e~F;XZ)ݲ1E`r. tṻDߝ7,A%oԠeepy4cH2Ҥl(Raꑴ@7?ZժwB3UY^\(PՖP^/ժ^#fQ6!<X8GB8IN% ڄRu:h*<]$0_x_ ݋ }ۑt`%钳;M{%9a VQh5,Ԧ]ʼyRdHݝUԵ{:*HXy[+"Rw0u O՝ ,S)VV452RX#S59?65^K0dU3¥Lwr]/HsNYa;nT k}Ӎ]6=$* uLi"!+t< (VM|u{47;+؄%i G%SOQCg&.ѱ7 Dൈx%/v{sR#s<2|#Ɨsy6>5׫vM#/K)&|hܿ.9П=C9|Pdx b@MJr,Y$gzwNjXV1q4,ΉOB /=5ԛ =e4C0VK?.LJ @\C^n u0䢄2v.rTX.[|~]Ot~{\t謆(/&-UqQ` w9tR:m[0FW)QTNњ05fPzhHR0JB27Q\ f `)|-֣j\/f& Q1J[$#`%&oJqpACC4sf:HAqDٔiR؇$NΚYq7αD3@ؾnoͳ!ϭ.$\JZ.PaZlV[ERj\gJ85zED41YnIƒǦ.DZʍ^N>JX`qr F%ˤҲPtO z˿gD䆜]iUrҫ^Vh?y0~XJkA_0)zޥQwdC`ouu]gU=$ٙIȵ;<fx?)r2F/xyD @ysa-U{xz'.qINUAUZi> ˤGu7E'Gux$̫jOp7TxCAɓ9 @Vt9,qV5cl ԏ$X1vM G4q#L:c괡UMdimZj=*l7AY[x_ޅ{GWAj,sa٩ۺ{qLc^J[T| _${<7W[lYV xPK !Ft/xq]ayzk'%r]+w&-TX!f_OÒ-UHT5%>|IP6 #$@vPt*MinB0GTKD2lFاOtRvmEPͲ/t~>f0.Ql a!W],V-ȩC8@,jul Xa;:0AVWePw)1:#fJ h*T:_$|eiCāP1X8>M5{yˎ|‰ Kw^0S[-XP 裹7H:NQMioHSf<3)%d탣!*Qw].F{`7C=j(FQM˩5ބD{SҔ4.+ ! ZXl/Jqe~!FYPɪk(=n4\3|8XX )t?l_Z`# +8n뎤 0S1K^}.5O^ bS7Q"v1ãgܯ_Ef!8f݄02XߵKz%4Do-"XcឭBX\Y/|\ 1<>^Y`n?S\C8fX.exz/,d;}O"@R!l~1ǽPklD:]ufXfv@l^Hbc;y䮖 @s_ׯhHYX@* kv ` ÿݓ}s^jh N(roOSPQ@G{ec1]hU ,ёSn6Q̄g;d~qncJ2n_6JuSxɺ]B=c߉B;[NsIiK`,܊ۡcmni@C%v^Jn CX,`@s9ƽyWܵ Ssэxmws,r*꫓08w 6νK' Nrg}ݸE#ȍ\8nmVcJ+9A7-5g{l4œߞX*nj)@*)p?8mQ:3^c-N*rCR8(ߧ,a/pb&D}^,g{I{W]X34NKx'Eqƅ褤F>GR?4 ȳw7o_XtJ̇HER XC:׶iQ3OAHn"y%%ҢV>z@[vG2YVUԽ7ӤBk*2y;%u Ln>)~> hM%&u d8ByO1X3cG&D%-BX{_z%@a [nI߷V@V*}itGkF!k&U 4򁦗1lJ[M' qR$g8"r/ύֳxwN׾| SȽ7XncU^Յc!+9;*D\bz| 嫇p .DՇҏr0&>S疲/ared~)PBף0 (q* -c/ z)o]#tjp-ZomYW ĭ}U7ތvܪYA-W(u{i!aB(Y3HyɹC1Ʋ_oE"g=$;W0^}x%3')3$diLMR7뢾&Qx'bjH)x1´YtЎ#ΗAO; &q0\7zx@0,rlJ$q3E@(#C6IN?#=㉵K+q+tڻ Zx*INC{#/VmPZ*M0 JGF1> I =cQWp=rQZUPsrA <:UF"Ӂ*%eIDeV", 0f*<;:p6%!Zn2CRXG!P<' xٍ_*Ծ'~Eg r?:g\>OG>FD |}M}e% 3l脰n1i+na9+vʭ0GxĞQ/(M6-#7йƜ10mKq`U>|͑4d߸* $Hm7`o*i\C}UJI*Lִ?z%ra4],\. kc:VT?U-M$ּFk7xL筯"<3)%,W!?ya!Rss$`% k*~b6(3s;iJc.螤K0~>|̎lUŊ_p“goWӮVGy$?*|V?ƒ`Ҥ ԴnS@-)F(֨ER,7P9+ 6x{`'[2;9@^{^">ظ,Gi95Ǜn ̍۳` rV~c}7%fe}fH~MPd)3V\8.@ٺ<ϱuYdQ7bbw.)C<(eVwu>:3.8Lj{{ZUG#Z(Q$X4+\}j/b?6.`,>Bvi_D?uE=0@C͔P?0ݕ,We5ɾ]flUń=Di=yTEG5z]$ߚ&x೵7i%9ڙ^>2IqL}ϜQ(nbްm 5ysLL-%,Q(?߭L47DN|84||ӇNY/C.o<C;|~3. -J 5@~ !m_k͘HqI<|;fY:*!&q ܽx^3+A_ OXe2M*YOczmBkybIN,zG;R6]c-Y$RA1u*C[L(́aߋJ}͛u~6Ly&C 5"a !QusJSΥW m1Gs_ЈWR$3I_bxs̕&ov[~*vRЃ9Jӳi4|pf#j]M)x̛#k>0B>w?oEk̵ )4yz?m] ꢩjvoɲ^f3L2? y3mHDn*t @6@$.4;BeTK,%q(pO'9 ©{ yy}PnW]5AF4MbݤyQ/}bw:A/ \W;9)lwl_ulGMDmwK{xPAE&r+B yvx=,/={^k"ocF'bv, o{hjv3$d{k˲ +n'7Oυ96Zf#-E/u2K@XIbØ6.-0Q/FSIw L"gؑ7=ݹZ&xǫ2mO$wie kkjHfɆT*.:U)ԉ /eWCi[!Mmݤ]L SF0 ـ'߬/x0`yĸk';Nfsi&Hit u<3/nG= !c14<$I7:~$awĬ c D7t#rG %iipb9Zdk& 6;_^u=fRSleaz1 aג6-i/5@u4&5:NR,~Դv솮8 h Ah2*n,Hoo" q5 +TBÆt L$D< L?0kB3#9(ԷsͤG)FTIL?kCǯkGe!^-{Lj>7kh|pXz?^y w=P<a *ϵ<cJ%"F%r)qS]0AxJkLZ$`^{_.yֻNC{ֿd8o FNߤaKgJb;J+;<*suLFgMb#Ib\Q:/ B"mpDLJh:]D\b͓q죂,Q`μB*-Js{Ol"mz`/[_]V'XEΨѬj/炕ng*߄{bĥ1*Roio.6H'%I \c UwHe+1 ?*BH &(n)4 |Dž)U5HV5Rmϳ^&d\oqon]Y9^ :.Llqٌ>uWs|7~V/H zo!pG!$jIBŸ 4L(NlŢu`!FqR6)8ppWxı0S Z`,dJ|7Z7Xޝ:59@iHAP$Mn[hqW& o)rMVJ5XpɘKT޶LK1&ϳ[˨FzxBHnWI֘m_knk P1J̈Y_ĥ~ U*ogR +XDKz5Z!v=5~hγ"]kjM4A,):RsE&3O{\ @l)SC4z+40^_Efc>6RIȣ9Yokѧ0 J )RgK1霜JYx*\0Vn*Ge,"8 Es$؜ eJ!+e)k(A oހ}JxļAW ހ[No^AEr竪wv|/Ph,2\ Q[ÃD3`mlx賭]~+HaM; wyQlyCZnC*ᩊ>L荀K_R%HA/ƇEV!t ^n9R>x1*O=> <8/P#>ҿ2 _iN옣ACSIMA6Cpߞ9Qmzrȿ{VW^EY-&4wLFKb!{R1}X% >`ET:~o{Qg{>V:]n݋;k2X+ +Lui% BN &"pPcb;U1'(h?O;֐9 CTR9^ 祚$ tnk\ց6-2o/pNc8Zf[&N 3uQ+x5x)UzS'-έm'0l=ޕxky`Mhb>6hzn!-]7d/C$zZC77}ueźf"{FeWNOռOlJ(p$'tZRpȗ-"nvHZ ,V=ivrlCSB}wRGuɧjJfեޓCw1w8Tm[*ktYw%] *^L<yvQ^^D}LP!֏y*b٢=pW֏}xY,3g4rf/ 19z fFʲ|z--;|;9 VG|?O:t`RWF6RnqI)X:BNHtZIې^w WsQ.ٗDG?.(,5FO6{b XUC5cCL.r[gn.B/傻;Sqc{+!y[nzb`3AQxetnZBL@[C N)wiO[e[5Pa;UO>`+cʲ͏ɔKc{Me}׆I[=gCC *R4*jdL^cr>2 4lG"?1oGtT}&9WԅҌ{" ݱVSӧ x8 u!޸:ш6kJ֯ɚ{_Hafr4zQ7eV?.?؜hI W~SoRI7r[JnˆTvn_b}E%ܥY!4T5΀fS[uȍƋS;_ uXνjd\P4:aΏ乇@%ey$ 笂@+ >fa k*X_ dѲfz&T^ !HX?mZsoU5[T 4⹕1:FXz~1l[=mh8q+x49,Ype6áty;Q= _,`h?NiU#'Rk#QaG+iNZ VK{m{1CfoTmdaPn9H .Ņ|,ɳjt ~oۭ^ @qNpb %=|ZtJN$ ~mVY⑺UpEIBza3ּ5tZa+F^NDQUf>"4,bGvZ^ txճJhY~uI@NX2RkPf/X@!(8TUW7b4Zu ҡ&_ KEϲ2S\(#'mOlOM}/\'w2Z K\P䚉4n(.us^:txUh+wslA"V>92߀'R8M'x[ESB#3'ڋk E ^}0<\V+[,j&,* R<,gZ ` nU}1 .:kOcL ;VLB`AԢxrWX8H7Jr(=_]4m;j8B,nCЯ0b;:Y xsr~j.~(C^] zQmTwPG5n -^@ kJ"&ÞP tbbAJ1XM}.m,Ϻ+$I^ѱw`\}s邬N ͉cW\pެ=yA0" YCmԝXEV7N7CKa4 c]dFy*_ Yl3~mE*4l+v=>[7=Lڷͣ u]]k֑m }PUEh֗:BBD} <㹲"2 uLF6D0B(V8 Q;dR j,oSQ.C"t9ťBݗn0K,Y{KC(Nj' PF ^*= ">j Q 29or!>ߪ1a(~og tD Gדiuo)V^*!iS[b_fOFZR0?)3܆tq2g K0YXԛˁЅ:FOpnR*IUP_`h.93Ty2 [@iA~9VX3VmKRt|os'4KPmfe />D~ QϽ\+~av9jyp|CÜ1*˩#{;7Bݏ A)CVoZnHDD8KT)()ٙJޠ1i\e?qeʼw?$1znVf9̅9pAPk%| d~C3ڥ[L> ğ]!`D| @գA!R}I%$tB[rs -өm}v:0LI:>T &Yʻ oL5wa}˽b nLR F#W_팲GDBUNU=oOpO L 'Xo?>Y:E%TJCPIK7\S=KK ֶE2R`el3rQ~AޒºQjOBi:oݙ 9WM23RHIq((6&.CG,xC!>"4b3E^ͭ]tI_NڝAvkVX|T:w6:[*P{k|@yA2^l*UZc "rHKUci]ŵS؟MQ1 D-UJ?\W]4ۨE p 0fx"Ɂ@(@5G_{{bZ mkc !JmPG6xɱD$lyG¼ޖV{Unvz+(W]aMh.M0:\M̝_"vza3p;Bܻ-HM*PY[ Tf;' F.Pay)I˘&KL8$Jl&ȭ NvObF#hAEb!,>i~ J)P+A Wpe69SxP([Jw؆Q+s{pE̟d\RL۶y0>H~ʠOzϽupICO:~":d&Z&o#1[Ft0Q߲Nv jrP^7ݗb[Qf P>lE{='\{hЬͼWaq0> s8bDaNq4n[};daMGeI,sB*q$]P$8~eQO6;#G$H0Irw}t+ H'Lq{"`zHemE(WH.*!(!B8/U7NWOGojGluL1-Y#x6+Ic:,Wcxl j0 X}dc)TTCձ [ir)WkQf(NҝaBYyPc 䏲G9*ѱx;72dPog$l0~߆jPq.:?ƒ@SPbQuÆ)WDZFrܱq#@2.g :a%jO'Rf)c~igjX-M.h2be0W< a\#?B˼F䏉CN<ޯ[- %s"Ё /~̔}žObpVU6. IM@[3AXҿ0̓Ew$삄(U[s*?s334:ZeKϛn:m:|3L;cZ'L,Bi! a^\f)/-p|#*8^{ek̺m :g`5WD6 |^vNX?$GS5Qam ;3+٬"^}ڏ8Au|B B.h/Р)-lQRR+0n#}\9:v:  AK1$"H(F|ڳ뾆=i'j lM"b|r8q"_4;tm SQe=F`kxI~0ֹㆋPQc#7zsЏeF};ydFνO --uQN Ie^1c gB0+t1 =M"Nt#_5[ ?*MI8EШ*c !CM0  *ĶZGW Җ*e\ol e$W:i˓Tՠ[]gAr"̲. оC.R ҰU+Q+W11),C?!GGяa}FBcO^R PXXO3Y^WYڪxӠFl\I#g\$QgPJ.x>>d(^n6Mu l I}DIA|/LK&FC,L=[d^~-ep5L~QFTm]0!خC8FYČi#XS5DrNR%jEz4$U 0ckp)Q/@ 5 Ұ-?rhW>Lj0ȺBVER/#)/N.1NU; qhNlB!Lm@v]׺M2N~:c}^5ƛ(J^^FQ21M&Ǩ_C^@P >i‘tDRl}.mXICZHRvʼn_|b S`2z?z!i`IIje‡.S6|cv*V*'*Q R1F_nA"&^GOzڂT&#vZ>"@WOOo3')dqa Sso8qq`xD_k햯̡4|6yd]PO/yrR_K{x@}0<[5iQjKyj-)׈V-p]YQM@MP(6pO-8o{1ZભQVSS-T5+%B i%zJ63\ ѷ\Rz9|vfOYUHHSlLd _ \,K\:C-!3 ;VPsm hO1t'?s4'M/}+ HX| 8/lAN`Ds|layhY/c賶7DWAg",zE-8Z*K+iN}8Hzŧ? Od?݃ OSS1/o7A nnh}]s[lLCgZ*r@~'>冸*$=l*x*S'4!z%bT lȶbG@Dx[qI5WMf>Ҩ#sVE48}=m*$lWEujWd~3$L9IEpPx\e}h~JHƲJgV[PDBcW 5N"$[\ վ6 H dܾV- Iny 6B8H0~"E>^PjEFc01%>uɺR>aQiI*JG3y&E\4d| US1r_,)Mp.o:~B\zR X?Nz\4K1krXPU{QF@]8o[j'W0OO[Q'YvC[jn?R ږ:2)ȗ:ôoPzIzҲrwY[ Np%Pַ02Λ} o6h:[-!F\d"'9nYki(I[8{ {)A+yyC཰J"ƃS!hfG<Φz`M+Kw7oEA竆ԃAni5& Ijyc9ip^~N f#AFd䑪2w*fEA7Hek3d2;M K5A uifx #sdC9)Đ;Ήez2YRuf. (2)ӭI0|MVWpռqzW>"zWMJς!zu%SjU,3`"KRAJ_/| مZ 2'B]Cˉ`=wtw`Ґ!A_Ye';fNʇ,LL_=؍H͟E3H&V  J}]}FXDK3kǩɠ߶oퟴ&T*=(^ e?^˲O~54[/6"Pk <_ $rBzԣdBLiU2lAA#`6،_Pm=wdWjJcnhradߎԈpIep79;߻.kt,1wP9c g…f 皡xvDxZx?.?ݞF3 Lxk'yO)0IFnp^Wc։%]8߬zD ICc)sgzK:mZ]]gKޠw@HC/#2JH '+s f[UTb@=#qtsW N >xo-|.U|`WE3ZW.K)]|P+M|&!7IBk5IyOdl]o!jFd:Ɲg&.àҾ Ku4]ȷUbܣsj{f|,sE K2~zB8 mI&=+BӺ7OQa.Jw>;Fc~@\F{Ayv,Ojn1ZI25 ۰-faRhl. D'dt_QN}ǞOH/Qgi21dca5郦10=ߍy/ًM-[DA $)XZ7#; N'hmJ_kr<~ *[x>_6δEK3=N}/ P|iM4(`;z7tEFXJG0ů` }>Mv+nڊi\U6Qh\#^ˇZu6.+~'=&N*z7@.Bu]L t`-.s_z&8nQpNy86#{wG=  +(t]TWr<ѱz6[iמaP6A= *%h)*bXI-pTF|N B%'5o:iHc 5:M V l=Ne aaA>Lj>\9QiJ ,GL$(]JF (e֭Mu)Pn(EG.>l&)^M\:xVnN,p,)nz|@=F_> 'ځ_Zj`ʚ;ut~*Wb êξu](['{NtSV'Qu6>Ъ *@4K%L/b 2(ҡ5$=0_{dT<-x3wSq"\:2U%-9[fq\GT}^'u3#Ap57/3YEuo<%Ӛ-PD(`Zu~;%0_8"O?D4 *6iO/ pv*_WGOa{i /vv7S+)1TV.|1ґI.| 52n0􅓱'GJ Cu]NMka8/t&aC72]M2aA̓jWLe5;]4wFct$ta4 d2D*MB5OQY*0LP {ۦa\s(zZ1&Q(P\${RekG-.ggwR@7C5B +P]3j`Vݕql0q纗#!S7K.g5f g̎Kf!֔+nHw}`3YS*JRt`74s\3\;L+L_+NJG\-rQ04I9ҽ]"h(OHao(iT3w֦H`.^Ηϰd< r@HVUR[H6~$ʹiعp&=&q'B@:Zz 5fnj񷚕RGc~ ͐rm]st;6~ {#i7 >"YFUYJ$ E+0JE6k<$}"S~gڈ|Y?HQ1\w][?Xb&+614`7G*-$N0CmA0;^IsE䗀|*S V+5K%QuCڿ%E<&rƉ 5,%&ͱSYPks8,vTon.xX$MI*#drGk'`=x icI0O͐OTH>X +tļx5DV H{9E+3nB}ȡg,Mn[:g٦xW`Ą+ . `zeZ@!(;7rу54| +dz2k1qrVrbBM8{#% 񘤶*z0n2őa|oHHdgP!Sd>-Xu( w 'bBF iSHspr_"TZ; eI ,~*RH տxǰFjz`!E{XarKy&r(27 %Z.{|W~-ޣlXh_"?/|.MV0oG=Ȱb) TU=eF}*7 @f'koӐPOI`Yٕv:ԻlƸbgJ)mD@,rO4}$9.̘j/ 0X#"+& Y0M.Vҍd*+]%l48' r}qޟ|h'I@ lI~ MxX^yCqy#7ݯ Zy @hz ;G4|zZ agn 7k-kVy(;smlxRWW*b3ev'a[p$Ger`G̍BoLK0R!D*K14Uʰ̑X#:9Ih,r= (bxbŗ}0V[hh~\:Ό e0lPzh^vgdc0K xt*QV OsA=wMwѳ 2QI<`Wn$Ѕw1^ME~L!U,lMOq)-%އک ]OwNn K̦U}c9"UT55X}Maees2{?RF6bY^.LMj` _/2G"Vd+ZRD)6}(i@ӷqW~잤q]K!J|2M֐A~|./wveVp=i d RbXF&?c+tJSDɁ3/m-w.oQ!cȻJ8¿.CeㄛP$>s{bt.B'9Ph;_ԍ|pd@:/N%LC~[c!(̤ ˅X&)3ZSN'r;9&g{O+s/@}]Aoem( Q:\4! [j_*qVRT!Esm:2܋Lc+ty}; <ƌ \J_j:د`TT^Rb:ӭe'a{CqE]HΎİjC T}⦿?d?P~ALHӯe$"@kƲ;.yn0qDA xauPT5&罯" `˯TC E/I CƆk -JD{Po2^k$wfP_ JhY{h߂>nX]#MgOCixb*wqjU4WZx!.-7up|MAY9!0Ċ5rդ]1Lj8㈸n {ʥhP}T> \|).G*Ցإ.9n>Q4Mqf4~U>EL`J| bɑp Փ{Y6cZYTT/1FU'X[' pEh_8zOLWV.+40Pl[ ⱺx:# =yx95A:C"btB7hI]Gr~0kf|VXBc٣E*M~7/#.1]̛dEoqu4` UL*k"qb ٙM#s;Zt zz"'#AuA$Ur<5`mckWbkK7um֙uEddmq7R\I{H简ƀ*=.k$]@Po0QjS#a{YPBi"5b.K /Be1iȷǴ>v'"19^~Xdi//HI U{& .w#6|MZza O|+)gG~(J}"s؇SkIX7Zo<9,4gpM. {9)JO64[J9I̭bs~PZw dXwqѨ|xo&pƑ3Y P* `vV0 У~d_r!h=6I0I(y296 Р檇i=m4$` qs5"EiP0l.9qq5& FHKePHAc)P6{+*Q%!clgX^28Չ:w݄NM#0O B~h~ц 9証QrGyL: t@3qK8#}p$b1SD6 L):B$ 7X$`,>$lr#{Y .Q Y(>w;TPVI8)3Ɛ%߭mzK"D(,$WA| xi5@lʳqA{jr|FV+`[o8N9[lpɎ#Bd|=;_ *&:Bgh\ç/z:f eIh),HZ E9ycWY5O8LzCكJi+9ʎ.Ge_`#=$aC qYמ5Bto}V1dCQ%ͩ-7Rؙ tbҢSj'sVZwծݝ` AZ(>Ӓ[y@OᕼKq}jWSWQyS3 b&Ap)嫘Rrco[Tը @w\#:J\υѳKE>+QFW䐿w}Q24Uz#(hO K[ ?@S[O4*E~T vb!$̩DM³k_voS#'󥱟"::k}ϻ?S: j0\.Fb##8d*+eQPsEBp 7P bni`A#tWsyid{3xh61X7lnK+3noW)ax=5n+Zk@b-X.Nr臅 R' tY@s㗁v^tv:KQe_ZDeC})E I9+~j}%mޖAT!isfXt懬#{(JT[6-3Ҵg[>&,O 9YA0,+q=+R!MEw B!O4WoAۏB-&rLHפx, BDN@j"JRwJkK$4A|oⵒBP)\` v?9a$!/$ h!Mc B> ]=4Mn1QvG_ Q&ոx6^|AZ#vz&Qdޕ9 `1ߏ"Rc؂xujBVՆatgnNOBa0F-eCWQ;!,CcjIx_vBJok\) \.Wdށ$SI,} SwĄ꾆UHUSE09w*j]+/ x^EmzFLټМބ4 H t263?]OyYfdaC/R[8̒c.xhlԔs#DQYbOQ bJt4y ﷖lO}mﭲH}ߞq[5pD4q#ֈJgX*mc 5*x:>'6=|K]j'&٘b?ڬeIHU}aH JT p=Rp]{nXOmrq/z%ALq,I읎 n{zsK˧qj*ڽ,N?M{DbgTR*O!4WSd Q*_C2:Ehy_u=ne=mHnM (/FMcY|9ein0^o9!RvLT=CA~Y h?G140UӾaeME&}* Λ>!#B㡊L.vϫ%&ay*pNEǬ{aǝ3KCwd_9}ω(C]p",1}ӘcBZ^:f0lՎej9,h%UX!ZF~'L9o)MfOSYҶ9,rD[j3+Fd14)\!tl1 $,`N5+ o6C 6sգ_(ҺwPEy XHđ|##ϾUg>Z)+ΊWۃ*y%d1xg.I`bnr\<[:9ԄBg@ne;0j Y!2F nՏR?~iifnh әQyΉtzWpe'W_@gI ") 2) }m$U#T@8.K54+ml!A}"0ZR gփe`a0z4!Q?'[M&*dӀ6 ߲M̲yήE=_7Bm}pxx_G+6AL7lzFIp0D*(coaC5qe{yr]#1:bA=YsMXVfWzC*.O-|Mw/hKRqdlTǗsFtxp[k`"L.bU?-:O<ΫmHfEڗxL8k%Uska9:~}L=Է}|1Om'ȔM )a޸남båe·敎 (]z'98a|9|}fc"|c.;~p_CN|\*}[|h.,`+ҫ5_ F9Y3HqLLw|> {hcPD\cZ֑?\b\VhZgp1c6g9MybGmnU/5(N][ջ@ҾE|h'沚BMgƗoLw Xa2[[(xC@X18VzOVei$45%dd̈75[_t9%+xlE?4UA`##mc2C5^,ЅS쮭NIL2EؠrbrkFHJ̷M=_-qd>mO*3݉{X7-0x.# pR-6x* ltL!+6˼Va /4r0`9=W#d-J 诖jd!aJy7 f,Z/$Yᆼnw^ 4.audNirq֨~I1*%'&_SD#p&spq=bg 5? 8SGeF9B=wv3SJ0Ajb?4xPumKiZ w<{ 5"oMfx25@W2r7SG3TH)AG9PJH}Z} dћa&d<>PqxZ>4r_Wd= *MXlϹ>9FY /8 >~" 2貧T5\DXOi[4:^c h : ~"ħNS<.TZxy7XٛCjDQ/Z/t=[BdAh*RE0$gT)Y{+t+Zp[aJ-tI%cgjZ?L^bE}HFz=nM p nc0+FRG|;U0VTLlީY9)9 2kdaa{g|sYjڤp۬%:UxK#o+Dy h- ]˵8ܛ##|]ǁCjC reO:!M!xzgaZ8N V+,YVD!g9ITQlq'L\A  w\/\S탿YP?qlG#jj{a*e1-/{5e.[)sGꆙ=(@+F+޸|? B/դOI)V;P&k;eY$_(e1/ڔZgYeZDY?joXɴ8WN1eh|i XÊHuFNxQ2j&c 䎗)t?Xdj{@]TaۆڬYZQ0!*4 yi=+HkS1_4 i34Fa݄b{$D&q(af_*^ _␺%Bo0QV$ekM.ӣK="8ݺCCeH\3D5f*+]CNͩ`<؋@<$%1=},[|f ՖpSIdCJ56\A~Nڞ`[۴2+w(at Kd` ]Oy>b`WI"'rf ,#kDx 7vELå%F5eaX^% k$-`~R%\é()(W(3 #^0oṫeN)b~xx FNdf"di]9(@ )]p )J= ZHu2tBa.a=WC 72P4zn7OdP Ȕ5t5p_NFI17EМ_<,G<Nߡ} 0&ON1L'FG# QHd=i+*M w#_?tT^B?dJ:(]D%RZ,c_$H{$\P %Wy<"N#)K?:kCd-OpBNˉ{T=7+dg.zZZKz k[>J5?,D5A$fH+pt0 wTVm]aZBo uKLz䈄K-(<(ru,O% +0*i6W|7&&bFyK5ozhh %H`q9dj Q|J2~OCf3/Hޓۮ-Qu6`:^ixMpXrJv 9Ac.T*.A\ֻ윷_UD=$%b$m)z =;?3(~8徐e8C'm+8$x]iOx2rA8%Hn4 a/of&tα`^_ u觚955F7K`S2: >#ISDW27f[{oTaU9ɗ qCφyBP\}fnE #9'{]v$ΟYϊ 'O ջ?}spn8fR6r;B,zq9ݩ%,7J]^A.g9D7/jM[ggEq]*c?\V'3W 6nI~`2xnBO.=#yÚޮ8YOɊ|w[. (llQ!,!ÞF3Nͱ%״zA\L UZz@"M@"V0a{ϰ̧Zݐ3Se^ +ai+ʑOPWyKęIJKq7@)`önN'>(2[6?Hl4Nޢ߷uWVI26R~Y"m*EVwD~,^qZ7>V y!㛥yh'dɔ }g_AFpniu+10Sq+{iG7Ym{,9; ;zwb.+}о!qy y|k)3G g5\iUxm4bu_(p "W5I1>L{"5.B!? Oa).i?pQL=}cvSdDtxzr*2?:# 2(Gz+-15J\a?@i7ʎ hb.ɨ\ գ>+"AqĎ?@+Eg=.@DKPBЇ}-V(f~[ iƹs (!澖E[ȳ%|J,ۇÃNUU^ [!x(Y.Ll4Oi^pHHUA4jAٞZ6vM< 5#Wjmy;{<$Y|F88;Qp"/Mou-fOxgkghrbw^-5Ɛp]<5᩽M۩;ݍ_ÒL(d=luސ)URϺշs@f* W- cwVAlL4lВ! ǢQR% b7܁*>^J0Th~֢ΡCAKTsƕa9hkOeQ P<3aΡ7, kT%t%Z_Ch^v1簃EҢtBF拌Jڱf*}v. =˦@Yn*ҖZ$}vR鞥 N#-DN-ݥUc!4G\\lIaUYaXZ4' )J*D|^I#6ڍY5tz3Vo@lW6Y2I9%3/m#b`F<11 ;"[F2 ;ݽ"|l|Bzb.ϑ7F7F }1ˊ)b)i"oSQ酮4:@'=3U6vǽJn6 HB Rޙ*c"" ý?dEHu[ kϬe_U2SB{)ڟ=֕'"6ؼL㻠>btNVgX.\rN=4c"iُt4#&#4n>\ u!/ ݧz\Ju`6-ƜU( m?xq@qfoQe87 [yI.nupYc{_Rߧ"0={˸Q\e%c;ҏ4谈Ε(p3o)S͚(4KsN-A6d3KYv9/)q'pJ7ΉT|˷X2`=>m2YJ5%#0g |f%>=Lkpқf-;T  ~‘g1: _:CKcUĤ vj|0[>Ƀjʱ6L<T.4ZGX~AI*=G+I:٣u2Jj~v oYS <XUrP7HϭK8 0_,8?A nU(8}rPvCƩI*ĢVY?IH,ՆCF6<}%" k~2) Y:!(iNpJ:TLx 8.j1g$F9w/e+V)PpP<t+&@ 5jP 'BD-`A̗x6zY6`9T9Aۥ R7vKTgS 8Z)J/=x+(wymBVj>f4>lO.ьN 9[uj//>p$R71D3.yfuKw-tWm@T([;M6$KU6w#2]~]Qjղ߃*g R;#Qwq4+8 3?/e//E*r-\su@p OCDIi]$`"߳2?ޫA-6zF<h݌wO5Ւё+ź-7 ld$1%Q8kX;c?)+.ip@Gԇ&YgWs4$a/I2Hd)mXHwrm3Ѷq?)|n٨%a.CDv7 駫 "r:*`F}LaGZyә III. x/*E\^ܯmMCW8LܭĚAN\IA) RAeMpDd^5 Ǒ.j8pnz [=&Vk&&mC ǎg0X&os"ǹ}3 ^d$6\z-pQ  C~Nun'Y\4' *S6{i%V ,=?-g~q 6jm TݧnmzܚJզg}X!/\B>4b9Y1yUW)`ĒLpuYS;<-^%>nRwuի/ uP$!~=gp y"&x )H$PzP3B6oG5v-m5n$5^QNxbtV+Fc8fKʵY_|%$/yv=e5]hq}[&xޛ_K0POAGNt K5Ӛ_A%A:p*axBټW! 6Zn$ƺ)f?jq;z֖mUTE?xYjáAړwa(j-s02,u|[8͙D<@QdNކc-`U!\mJ^El&^fk & 0J;zO~p~00w LNǷf~o]~%GZRerrEqT+ur ثD;NuLjF˥wS$ժ*1֑ʒ'W1ʬ7e*K#b<ĸDZGJcZzJ!V3YᬘJPVf=A(e&o9V(K!'DY-D8z+S?Li];9V1oLy)qǜ*$d" ]ͭ}v֞|E&P?x*s*J|#͌KWws'3&s O܎8-Ds_zW'aW-#yY*̳R$"г~: r6Z6))81X4v͚csMin;Sӂ8 y$RyUrT .' 'xl-ÓCVXU;㼹 l聇zZ},2ˆQX MB?3<ҋ k8˩۴t2/&rm"u"P*ͬ"'3?w6267 \-IR/KqXs(dBFB#w)Eatx G"s_*R^: # Z:pdZ5oxǼ<]@bԟ +?̞# -m ~N~}=69ƛMu.-r ֝eN IW sb-~A<xڱt583ɯo#Zo,u$ T) >BMP^ {*gkĥUv[6g;禤L󽷛Rׄqf}J5 ]^cOSȳqĽ.Uyז*uZ-Ja;U,Y{Sؓ=*\nZcouq`F+h龡K?:ro9vQD8v j0ۏ/en,TltPi7AC$cmr~/o/ٻkb o դL3? 0B%:_R:q%Bٙ,ڑ CCq|45zNH< ð@;}ɍh2hp ]b| B<ylҞ33{ߊ0+OMr .]QӻZ&Hb T F5b s1É${ڬp`!P(o'SS + so͢kGjIl z[ӹ|KDߞmoQ3 y%!L^n÷ynA ;8/}J̩,aFD&zff|'.YLny5l664{28m""ݐlû5)z lQjńP@d\I;'jц &Kyl]2?PT-53rq~ĖҲ!Iَelr kЕQ /53i(Nul 1䝺P&sXH5óQ?K^7Sr QJk:! 0NA9b5똤]F;k1rMٟv ᰂSRMsJ?4AaiRR _ml"zd;ڕ0MR:G%JHٱ xPg=Q:*C;Њt1Q|1;v>/0mSZE:E_N KvU8e" AvB0#Hٷ!Ki!1-Tzd>VkQ$st,LFخNP+\]_n;=8F^pz,˺>nhm&*l1iz3 #7u0Rbm71dO?3M`6,Ȩe2$\ o,Hk㝫/~:&:]KΧc_;X[U9U3MQ|f%1ʙ aR(O 8ΊePٚ|{[e&pת}0i|^8!S5*b޳k2晆TX~ JW]к~M|`C;tN6 9m^gKk7F&CZW}P(`K") nF.$G|/Y\P_e16ΔyǫU'8VuۈD:#Nם PĢ;)tJhao$Ke߈N)ȝa.``W1*oNƕBޡp\>MEI8hkg"W X6bx|ze7eQloKzyzye纤vDH 3-Iж!=)&q@7- )~I:a&CҢv#.-Z^AO pxD?U*-CR 0)oOb7/qjqY^Ktzh\.Oəl\v>!g_ƛRĮ*-a1{f _o̠=mW=1)1 s}^eFʥu]D 0mCMbQ4I.40׆'Fg5>*<ٓA-Omw*9a{!PX+}=hs5,px"qvtG 6{O vb|⯇.KpK|߁Ehb*翈ZYw"ҫoV݄es9+QXsU Ռ&zvAp?M BlJ/iv5OV*>9%Qs#%ZUsS;$9je/@#Iʗ@['{AN/zQ@XyGr6 >UtcZGeJezмtĽw1vM1|RhMp$nLfL}BUu98 T"~)𚋖;uGx5 RY!J6v$tNBdd /n %OZ:juGߓM"Kپ~ l`\68CIͪJcp0`jƳ1=Yo;z\Β)y՚W,kGa~3Fw RN`P1GTWӶWQhPOLT1l'CA 3ŸS~cUE PS'@|^t*W]xɬmU(t6b R򟫙(Ji9۶)4 @p\TYvhɢ 2VEPe$W!z9lKX_[@ն4Tex&%vB'̜7J6٢,4nFwj)UW*'U#E'"*L]ɽo&j'ms) fs]F82۰ Q23OG?S*8Wx#m-iwWy_hR(Yl( S=H6Q%5gC&9ա| ThN`/]+w4; b<ep#;Q΃Wf|)*CkQO:Is~p2Ķ ar^Oͧ 䑽gd@ v{[Xga4 i*QpAL0MSv, 977B+5mkQGG:ʁa'U?XsZv SSYވ٘zag_lqE ƠSMyt{Nʦ7ZBiC@\iij*YMC\|5!n҈.0]=X򗌅Qhs0$q">إBݎ{܃.և/|KF-|ꍶ/gZwŒ"3+ 4's|*x!?}Ncl59t1%p+<Tqbqؒ]0CSjm<U\`N<LJtfRP03.b-  T:iv _bvK\4*gfiRX#7STr 0.cg,NSkB.bqI{+g6~!=t ("n3{bfZ ai'foG67FL=ъIsa7R}`f?|gWtFc- y G%f|(~Zf!ƕi@9A\?s iO{_f*xJ*=ZXr`{wm^c{91fid?RfecGkچ Utl xAv)*|+sfR:dKY| mP^tXpL򢈉c8x8d:9^4rBn̅L);))6+%8(GkxF]5JNx T,oAP 9w{cHޛXăȌ9oG6 ȑYč/>wٯW]>hg饈JsIY:^#j9Gr|SLE!iGRJU@'Ѕ爓RGV_N=Cӵs}qg0 ~d Nc/ockXc_pAWTI64ꌍ&!XA-T.+8Lc"V]BpLQwB1ЃӪEG| Ib~>$A_3 = iMcV2;Fh{Hjh;V8Xj\~^v$ XFI 7:s: c#ӯSЧ\8D )LufTG.T}Ȝ@#drEGӸoas*9^䑚-"1]!dvaG9濫Si"-˄#p{*w fz/ O/@ IxG#9oBr ܗ0*&W/9Op@nRվD7ZG@{sf gE/rw;/kzJ>0'7HIĥ'=Q=53rnFc!=O@D= n˃MlCI4X 178 rp{\?̼LcҬ/t]D$yOwt ܐk+պ e)S O+@HBLRfFOcƇp7J_C KH`2P]kM{ TO" 1gOMB}@ĈIxF^@C[d("4c(:jS5 \Lz,*GJ}s?GG%ʯfq>81vAu K\ӊu6I΃V~#&/xfI R)%Mњ俏fsЁu \7^%N#Κwf_ylJWb'=" NX/8gg/ W2>z ^* v@+G\wC"24$s63BG=¬el:S /.D6lşbT'PT炋#eWmQQӊ_q!>#xR'Jk;4j 8LNߧ6Uu1|_ Y##/*Yu wxpϞ!\]v'vYLP|^RAѳ8Ϝ,Yz'_YC{S0ot9Ƶj~de`E|ZM[ [$.V/@'+Va mB5Nwn󟫭ktI.&3w$B՛ǵq3PkrT24CaIQmo̻H⩀lj~wv80a2gh+ SXȁ*7prT8`M J1 }3_Nw* ^K9)>x\A(ޣvLK$B#P{(∿_Iˏ^h1ŗ ћԲz(Yį2=Z}rUH㢛di*2PIr{x|w9(no $l8|]) hbD[;+{c1Eγ =n}ڞ;mŁ`ux{` YDo1EyPQ}`ȊWr;%?Q >rCɴ*9~rTx閺n*ҺōKx$ȋ*.޽evr}vq9ye:c#瀫6'~Rs6Kc$ӫ,g3eO+GT%8 $I: C 袻X?\|7K{TJPηƩ&`5(((dٝvR"{qjL`ҷHxjhT>&zj(2+cOEt4;c{&!or}cH P/ 62I-$ʇ.jV01Yܫ~^tMF}@!3#V W8ߧ H^$FOAEO.Y>ocDފd[$V|>绺GIF}>j9ZϽ؞ 4j1_`“qc$~>/YN~5z51j?M pŕl;gF$ Clt,lm8X.*'MsǣxEIe}&0(lsZU!w1 ['*ro1W+veth=/e~ d$mXg_͉l[&%8xaȫ6䐧3<3kuI7 ;YE[4M+Vos߭C&L4xFaGu,{LMn, zYl ZAcLSP? {Hxjiù)EtZԩZLɪM7Jr;|=/^ >'o=7%|L/<šF>,[]\&(r,øO,f"Ǎژ Jl3J75dDKwd@\]hs`>=~'~ '5p66l&;쑤L6骺-֙\Y:wn+{`IԔM)_! iدWX\ yTR$*?yTD%NW<4s䎡^.>.!Af˸ ғMyX$fmJ烤V. r֏{.N(=uGB'F Q I]=-$oΑSn*Tr w Y %Wmʕ%ڄakΉUHGhNc |,G.4yc*tO5j9?*ǯQv'tMlt{O(7&>aĔ⑁U0äbX7QQ*~\~ӱjQ5*%R$I Uói7Ys-$"D/͍o'pO5Z:BNRsA( O -.e;eUzK 9Q 2V!рCEl_۞=g/bmL;2:M5̡ ~7}p< n𒱦-U=y 2`R/;wrF0M9x̫-#:;ۯy6ĈM6 &i> ZK}v&bӮƀEBPpo/933Mfv`yt%ԑ7pu *ԲܛIzVI g"=/hzc"bm0|*k籙^(X$c2#ke<12ɢei`&oIg)i"kRS;RZ^/<|3&aszڸRMmыZM]+|llI3lbӐi:#r^RoY7adm4r}|:B~,#}h#℈.@wo#-z[SsBڊ_\|zoNgoQu(biգ:nYBA7؏9Sw~cw+/YE@chEp\9|*iQcأjr18<ӫ-q#*šE콸1iq1EF#y0gRZB721ϙvk4B(jOGL5`2ƕPC8m"|WzG[ ˅4 ׳;nq^JoE]Nu5>QϺh6a~(Rox`n^/ 3KݕJCqY:zJU,C?>*zlI?4O$z PY-]xx׆FgA]\ʯ) ?n߻n>{Vo|k־U{^l}xz=}ݞo>wٛor^}^{uџXk¾ϬkOz7}znl˻{ݶo};-m]u{׳+ݻ6׭٭:|;}o{g랶ww{١ۧwy{[s0}˵TI{_57xͫ}|roUmU[;]׮ݽy뾽whs뎽msug^}u޷w=uovJ}}yVxo};}uϾmw([No ޷|WI=÷[l}=\tc۾w{7o{;|Rﯟ|^;vm_no};sǾcݪl/뽾{WxVg{w-X}}mʽ}[{׽z˯]{v[;vvzzZr=}fw:ǻs[ v }>ޫNe9מ}}/n}v;k}_}ލ۝6Dw|>=}_[w<{{{{wyqwz|k{y_kZnw}ӵͷww*ת}{SR^kYw}f}-w}Wu}z6inn^3=o=M5WMwϡ}{kǽvX}ֽۯm7b|}wrox>}7sy>|޾{s8;k[{#}=՘vo{];Ǿ^o|y{oW^;zvs]۞}lݫy^|s{|}۵筯{w,w;=ײ϶{];;{{L^Sn\wz[л{Cl}^v|w\Ͼ׽{۹v]Wn>zxlӽ6޷b}w_us[|}<﫼n{O׎{{.ʾ]_no7ٺ|}zy˴w)_z%O}ؗ>@}q{]9Ͻvjݍzyz}qnuo]֏J٦g{vwvn3/]0mew;{zN!{:.׆vnydn[wnyW}筻wvW}ҳw}Vs^}.z۞ۻ'}u}۽ny{su{xԝ*d}Xzm=qo{t{wy׺{|m}پW{}[:ۺoWi{ԯn3ѯ}ټ|{_:z.u^W]e6wʯ:Ǘ}Ӟs;ϨwK^U7vK{{tzǷu;>%uw=g_ﶻ<ݭ{w:{==۶nۻxn6n}ώ'c׷{\g}{ۖOT[5<|T{'Zj޽{y}{y׫ͥzco;/׸uy͵nqn_==>]sx[zw|o/}ս{Oz5݆{6}|}mcn|׷޴lhүju_-ƶշ6%w.{}^;) :yuڼn7!v]=6|\}7]wi{m{w#}||zo{w|}뜽vy;{}ެygTz޷!{twֻsnvtv&}cYwkWVϗw}ww7|z}na{]owq{>eUov.n޼ݛ3nEZh;Ǿ>}k]{{5۾v}>7ee}_}}zwYn7ͺcn=mwizܫlvn={vs}}u6=U5;ﭶ|wݞ}NE[w^7nKM{yt=:Wlu{[^qmn8<ϯwzwk}]>C}={7\wv{νݷ9{r톽h_w\=[o{{6wffl}yu׮-^}9/鞰kElvc}{|뻻_>wg1}6{}}n}{mϷsYk宊^V^׽>}y]Uv]Aumyv՝s{ͽvNwt+׻m}N[=jw#w<;^籦{ {{ݔy|to]{;׶Kiuޯ^}ꯃh׷^L^Vѩ*}y-.{۾v{_]+G׼z_2Hp<# x2aH>^wߺ08"T~LY_!:uͲ-uskhGǔ lN܄%>C}М] ِ Oih )Q$WJeyXչѬ%c: ;z o:>ɯx6/$i/k`7^AR׽rp?&ϯW;@*ǥsӜK\OPg-jY$%˫)1::dVEFnF%æd"Mҁy'%;9pq(SA>Eґ ?D cO+t?!=ǩ3NɺKR v_^!]fi.bӴ |0vocs?w4#{K`9KqQK8/՗[~6/4h 6 fUNcu_JlA.Qʁ3-I8hqdGIPQAMX%NJaCgw@AW3saô{QZ5ݷnX]@ml[(欄/}ϋ -dl7ՀP [2S}ziE=VMHyr(CRvkۂwb,`@O0! bH TLd'(?CU&XMa7s6خ;W>W/;~ L@;L_.b.$5 ^@k9~,}ysN&wn\ٺ]qeP<-.4<ԅFLN 2C< "彎PF5ƼE\{sͲlp`բqAVIG`‰a.Qr(Rd#~poS#Livp# ,I SR׵QyXe"G;Ut}bT_o+pSJ_:M]A" D!,lZ-Nx7roM4@x&+>Y\w]k֎27\ʋe,`#b>j&̆W;^3j5ŬRWP6i1:/@w-xM}VEܮs #_cξ6=8%kHc\c<@3&{iC˺`Cm'f.~-,&я1p#_yN%'N1bS>[IH6j Fq/C񙹽{-񡕯 TfQ*ǭ0%8&#x\go 0 W p-/y)RZ;Ǎj1͇FDZ~1m;aZm5ӻЈ98 JAK%QY9}qZ|ۛ* h3|,O4?Z:i@2[P\N8$;BC:k%zTwM[CrTEb D??ӅPq98))ycGAҳҾ]c,~c<0bH/D|[IߥwJ,f(3ڣr0vĽϪHK:Vc2&}zqP|L)}(ThtyC |׹.Lʮ!DKL8uX$l@nunqfC Kzx+fUAluU+2,%ŒS%:m={^3 iȐuVUǎڱl8^ JV0=(@ ⛏(5Ұ,#jE GV0Bm<AZ^ZՃcӜ]XBd Z [z]P0lVswj* t?r{?V^8!yP/A[(Y#ؔ¥BmZ(W + sNyn@;u (+h+-V\zƾ|qr][ꩊ1p3" #Kk~>1.אT!t"H;ք;MOnL>&-$_*9VӞ3JqL~qQ8QkP5^>^NӛbhWxt5q&("#ϗpv?tW`JȤE>Y΍F*JDF%gH"ҔE+Z9iA %7*O2  y>^G8K3n4.T(외!:0s:DH#秠aZ ,@o ^{SҮ69Zl/)UX=6f[A[-V庰iPx'=ެ!47ZW wzc8ZYϐywd1QQyM5 LޯN3Vvc''HiؓOX%'sk1jAg~Lm;Fr DNw#Bk|b{%'5(''?yip{y\ iF =~*5ŚOat[l} CX և(CxR7NPθ=/R;t -4$/qjKHSrCMh΢1R&Hmݐ;LZYL07=1jei L*?G06~g}2O-T  _Z| tSirGH9cCH}[,>e2/}o&Q5z9p5P&.*f rc6>ƃ3.P&qq%î-\=^˹^pgk&@@*9|@%4y9(w@6T"pĠʚ`Uĥr\е564G5$])FGY} !FC3:5 l,3|L=UCM[3T ńYod1Wݿ^'v|"AvBRDa&]gg|Dl^',0y.ۆS+Dɰ[JE{ ʃHY2lZqוH]Icz H\֑:H:m6Ԙ6Gkcs6Xg`1<0ykF`8E^թsOG`(S+D 4üDjV+Zȡ 32Dd$3i{m ;{-QWm0X[qN&+1~}RB{z}=rr*Wb$[9^J Y81Ka2fwz҆#r+Q{tZzbS+kk!1nU3|)۟9NWX+"=NK߲#VF]&TZ@TV%i|7]oOXٕf"|Ȳ8͐[@nÚy@|U }YuLÈBFViݩ w9xT+8ljK+ľ|t)1~ph0ŃJ,0XǖhUj@9W22b ,:7VV].J휺Emw~&H sCs㫠- _ut/yPj-IyˋfvJӰyUr4ҍ׷[rRǤx4;&3G "͙L) 6O .,C>p4TWqdf:ҁ\%YXe@+ŝ$NUU r3;E\q>v2W: T4Ote=2`hy WPe0P_WZt6 #P{etS+,kJ 7;>]{IR-|`Pa CÕ C').ݫʐv7'3Y9k>HWq-5NbbLwC M)8'8EDTE9-`Ľsa)SN^ilb j5[Ǯ/S.->*;PZO0KékʣdZ^<;`(6U 1*oLHBSb@C>eкjO·o7ԊO& u+#|'v%a$LlEMFwHɶa6FŔ~ B#kl[Cgi֓T11dJLjz8=I[Kos [L Zhja BX$-,hIIm}0&{W c>bF[eyro`Ӗ|*nA$,@aAk)4h.$q@8$ȦGL ve&xm5U MPjEۀeqϽfgMWĺ5ȘJ&jὡ#EI NZVˎmnm[Ca|J#6kt?k/Ovzԥ?PK:QEյ743;ŭ;-ASQYim#*[շܬtxk^/aowZ>-D e% .ߔ`%`ޖf_v[OИk /&2 !8ҋ5!o9vX)A0ɭj8cDJ{?8M|ᬀv*}3 %7PNeXV jI ǣJhͨah]@7fۼ#9` BS. Pv>1ՃR{UU' a ٫(٦ *tk^d?p7$Py FȰ +>FQcB=paoS?vnm)s=c}V}`mJ &#l2/ MeqX!Țӊ,7K 8}1K^"ףʐq)dh#8[t~@qj,В!kӉ)`p9ɂyc 1f_ ϓ'a cӂv')+n^a$Z"jm<ŤQ)uek Ôph |IK mPza< ˢ2 (ZݴAv\:0"91s8XoB%=P@ ':OMj!ˁ/}B%wbD!(!Hݾ :ʆ 9g7#\3.⯫ oI9,"l!IpH;WG NLV㚃C:jjU#\hOcVritst >[@ . WceݵR8wv(VJ&fߑm˴ ?>`GY@Sbm y`rM&1ЖBvV>uCa'm`Q ͑ gMn.^^5e\Gɧ>~$5d9vvK~^a.e{\/܈بqy UB,(t m̀6`T@abpo 9^c _3Cq)8128j-g5]RzGL0N$"5L#.(v~m3wv"ѷ<k};"gX&>jT[$,,O?}}k?tD>gvR4/獣爏7j(ȫ ф!\Q&CgPpN}GȽ NὙ…> dKid%*+-,K7 5;f}/$!컨kֲmLeWR(#pT]p5zxaNt˪9YfmU[+ֆсY֟||ؔN0S1xY)9G$uE'vR@f=Lpς{R.? x` G TSqG7@yuetnz6XC-a vu̵VZoJltύ9ߕz(wJ#&tHۄľ G„/%?^ mcPH3९qivt4I Q6۳#wW@K,dc vߴBTNvZGs}QR`sбWI pY_rDvze@+{*yġv_Zkc\k2I0)_YTz+Y9?Q`vp6X>_ jQH6 x0V&5w -$fAt}%h T%uKH2h lvyonDH̀t %J->{-͵9YS- >v6[p~>iutPNEITMzȦ;݆*ގoa<+n k}BefIC+旋dOxXͤ C'5Y14[E2hk#m {o~nVe6Q 觉W9_jA\4Pf{Ϻ}/Ӣu"[Lo'Z4:̧ VЌ+f=>{`$D(,MoMBuzGp(ZSDIهb R猪,*"l/Xmc`dVp|.Mtx׋Z?]vCS2BbϷhwp?g:QP \*o h>u"v9Id;ģ o;nIr"9 4>O+2볃,0 甗& ,A/+#󡶃Fyhd ݝ>ԍd\)(X$~L'>!ţot?QEROe;_ mmS%vNm¬s0 3`#Rumb\M;>" mRt\Cu{Jʍ.74 V!>\ EEAM析&` JA(?k-gag)-EvY2!8!b *FF>59ǃnym1c:LR{?5M*t&RnSqUC/GwͷNˈMQzcɢ :H$翅b3r.fV--)U .DGDAp{%|kreҩ}n?͔M#@B =ji;i,  bq:⮻4v|$(r`H@-XP'Zs1i0gyQc6L-(c[C8u^;9~M uth~S&|=yR;s4-Z-t( ȨTߟM`YEGR):|+Pc{*1zXL۷'QXKHNqS@Rwb&t3'u bܞNTl j<XTґ\6 UX%-H)yԬɅtGv#kx/W'hy)w&¦rۮ>TAFC4Ҵ9p#*:YiB3fYvCIAdu< )P8I!By|2#&t}m]zG'$ d*ATR׻u0*cv Oa_KL.rgjqmVؓ߶3Ȟh B] p*' Ծpc&˓M)V JtF; λʕ׺R&řShM0>,E@i.9Nt|kGp0x6)jFֺϵ=uW/ O3_jɂu6DUT-9T-lYn^ Ϝ=t$TqG>"wQ $y(+JՓ;7~h]2 4Kb C&i*8Ӌ8fcdTH^N.* XjjN#Q>FLǷVzo9w X2nMdI7uEb BeI򆙧 X01>}y( @q[S1V^$6N X6A_^p =Y|U#&986ǷHF拵]:$@!I__mPz[S2oIrNTepDPN pA&qwc Xw`<3%::Xqz}Jw)o2PVa\RhҪKZ%Op&-R6!A#%;¶-.k>qE24/*P;T#dsCtgIOCyzdSʔ~V(~{?<, @Gve+&*]a,w:МUPn c=/Z(OCֲZ$7b;F6o,͌BdԶdW:[`Y$/_ se5WS#x 1J>{ }y "Tҩn8=DZ!v˒6x2HTw=k~9oXk9@*4_jvדk pp/R$ މ^d7iDd"U&$&{I,B w `a!F%Qy_yy#D' @\p,/jZ7qvsV?8_*6چ[_ =,Ё`̶68Ч9Mu[Tm-Y},s Eam2HR+X]SCU2Ҳj:^=obV,ZǾ7&.9vrd*ZW3Yw왤2i"mIop)1 zҁ8>Ǭy Ĵp).#f#kRb!wVj}7 C MIf.<%nΧ)./R [ۂbl(㯼 8|Q;&֕n}YIUcsĞU}h8 O*t ,)KeҜ ?K;vg&삝6S$h91-"” tg0QWG@jBƷ# (>\fb=;ͮT≉s=kQKc[V#@WqczdLaoek E%P @~\ION_ʺ$l8|jaQa5f71pmO\ YeۑYk_tgvؘzz¤/KT6HUmI,E 5PS)=M tÔ9Z|Qjxv&5"[?JAM*PB͖jlW3YnS$]Fa{Ii'Ȼ6.OX"q,wU0ޫ* 9^tr7]xDH~ S'Ӓ/cnj=}?rc@4#Ass-,RWg qL[Ȯfl\퀪3n~T:WE+ëz.32[($T}[Q,n(Tt_:ј9B}qmju?}w@X1(˨h# ZA\i2Տ["ƕOݬXƫ#_TVh'6\^biݠr|. TY}̔/4]UnN:VR8Nd/}ޯ}`XGYr:@RțK| ykM0I7ӡNG/ bӸ!>^Ue NO칛DQWo?y44VBW(BR6vE8WLӪPzDO`dLD%s:[(; ]J`˟=א/#.T%pW,wНtνQ(U~ǭr9o "Z-\FުL94heg%q%vTpv{dT Mȁ@N$b+Y?nStjN.]9|?]u:eOf-=IjߩjAA >{2tX4⪛&8J(F[=UrZcR|_|wIcv ^FL n%D7-^~gҮ1/Ab1sQU#۳BYzBr_r@mQwty!>p w 'RDl0FDy4BǯV|HhWt.DzGEBR,$uLp>] ߭$~^OblwK WC5}]!e ✽ߋE_6ӓ"Ƚct&-,95e&]}e k r'- =sv}/5eFGBay:5]. OK*'Pvľ&*n؈m7]ٟa0@PWuה3?6߭Z"B+bRu|].@0g %wC 1||xf=BBo~Vu \۟˱b!C2Pi531Eċ-6AX}Pf_ѩSaUt/NȀ[fbYHȘ ˃ 3JݤGRecIR0߭uP\{9`̿U| !f,O0~k9l9K`ַ=ۄaΖ8dWeHC0@!(c[i0iu פA{? ۅɴY3*HWVI̥ Iz.dxdPF}!W,`0/ȃ=#kxd iά!30]#ބ1ݞVk 4w܄gJ8.Ԓ+P| ntJY ks SlP = K ּukH\PѴ/v+IN@93fۗmdxUXr$u(rlo T9 Ė?k1bgewn5k'jH4,bfnSZns<%{ ;\D]a^Ch8@9WuT=D$X,b+l޹EA[y+L..օ)%S.nT^6H5><=>2p q 184gG[!\vX0-VۖXݽ6L(?)8Ɇ 7U&Mz/\;ާx <5I,S#:!` +% B]|xM}(@:fW{tyVI4Z3> Ce*\ sN2B}A:xсG{btƢZq@'^ZIt~ab /},{JJ[ɛCqţX#Jv 9dÎ~>Cٵvtv_cY9=d2vL9̰ϚNUBJ O |s`E0/@yZU泷r/FC1w<܉p4J rO~Կ∑k^qK6lL$<{Uom½-|9- ]U~M{yG!U#S^:?0M.uoe[F _4Vz"AiOPv=  ?{l٤ WXc4 CaGru1tGV/-]KY8 וClKr4243y~S?,5w3l\SmF FO1ƨg| qkֻehl I=_X#ՙ ;#dcv$ZP)=r;eXrH'6-F\@t$'B}EUx4yMYtm ?FT" } dUsw(%rkAlϐ2zUYw gw9PRyו\vy|~M$ P溎:( &ӲKFxf$VX&PSNC:L/UH d~.yQ1nNb4nPvEțX/7slRR2|#PNquq ("O8~:6[Q+/`Bb⻄ޕ _@G((Ul|'ĹdW2ju@2FǕJNYf)-_H~#WS. bK*|tXq'A\S[JBDKQ-WRXpAb  -%8ҸB9!% 8HcAtUtMWՋ:8hv/d0$+ Ԃ#NKǣ";ulL`"HfiIlM?XҳpSkca@֧>:Q644Yģ uBT`¸2e,TAP ;ޙb^$bI|Ϛ^|FxvNl+7bL|'" whJ@{O~ySSG*s<̵1k|kBCI<]6]n{Dbi.yAw+ ơKhS2 ='{V u6wCE*hvcV;`69֭к5owVUԆcBo=nԤ ddFf@3 1eu3LMqT r_4$8X>: ǻ /2G?:VjݻazߣJժ'm~Ǫ+Olўa~ك&.Jr^pDI4J~iD~ f$K.Ga *$EA"y?ޫǾYlՕuz\8Py )oQg]9FcYRK5|sC,"|*5h kbp^NT yz_zC$A OHSIIG4K‘/GFؖ&=TN{M7'maN7\6EU%l<'UD  G-?p:gI{IQKClrGfJxeӗ^9G//?_+@&R 7-. ߆.L'ДCc\ZO6;Tr))V5!l.)nMj0Yk,fa >hևL :NȊ-ؕSӈ;mCxY}+^b `<Gnl{ۀ YIț#N&z4 %/dvF$@ڀn]3ϗu<2wZљ|~*8">bCQ0P#ʲ;uq/bם ?rD r}(V;912X!T뵌-"m$("ս3e"zPD;%4^ꥑ mo 6+PLJ>JJxaDy ̎&α3w%m 4@m\'#n,|*ٽSJ"1qSB]]l'@ÇS~ɉw[&]P;<~#4)_iXݱ*;x]x l{#78,#J>`~Iڸ| $ sdn[%%1UZ!di9#p"aw~vˊfLzPbu j$$ +94x*H9pWc@ >4a* $L쾤:y?`` ؟lE@X2?̎^ޕ N&^]5"iNv5HtJgGբ18~X} ]{j֩S׮a:Ñ},j0@ 5ΈfV)ؐhBػ+0Se]-n0}OAo$9++a2{v3w [Y/̓[T~}N9# ?A$lҴ ʑeSo]Sj  &W](:T}  p{GɆ5AoGb|\mWUL&w70k })pOi̓~5j:+rŭ+nE2-RԢ7׎d+ <]o=+p|{Ye_ݸ~|x"YjG(ԨsDSm;:>#Lɮh׉5kAm]_dV[8wpii')$'!D|+Qu7e1Ƚ^$iHG} ,?b'I~L=}k::viuga.0D^\c&>Hncʯ8P`sx1 cyR5Swiy^zMԈsƲJ]gћЮ z&EU%:)II܍;-v5?vѹ$ FpM7ҿhǪcIOu,rg]&[:,/rgIaE" 8g sZPF]iV0Zc"֮E =fy@`-LTէ\uI{Nf;o'.~}WUu[R3ЂH+s}0@-aO&XHzퟆ-2-doAWLGAɟ x9^?({&_! d^r*NciJNJJ0ǜl+X=޲oBJmkWo]r+QIS^<2 $-&"ۿa8-kn*PեUЯ 9 k6:kh€ԁR!#X>ƞG#L#p6-HF|,y0=d9L`DIgZ?仴9$ѷaEJXt nVFx"/7f{aM*2xxM>ln=ON,DZtLG*@46cDShqnMyn<.91S8OadT 3؊]ZUhDk!n&]Y,~<̙1C\Y"0Őʌt/ozY R?0T?2aɼ/&ed&s< B;x D\$i\*@]]o4l)]-l2v|}I4ODv -qmOx5O 6/[-EȖc4 iѸĺSA]qK-XCvb%;>ف]CY%mv9|9[Ck`J.O*ruS =J|@-U2zVl$ɼ Jg%pVܖR>l_ L\H~jz[ժ)[Jed%^3ִg*:HE%+P6_Ix6i|ee{=~E^Xʮ8J5hV$QȬ7ZAcW!XuxTR ݞR}.hkkl)-Kh^k/PFl A-߁'%3XK4BOkMHb TP+7mlv'z8ATURHJ1"C;&S!h:H2; B*H9\~y =ó,V^$^3k Gwo:xRt5:fc6ǰ 7#SeS561J)YCӯmژ, ReNUbZDTȣKw %&f3LEH0>/C/80I% sv Z5&M&D^`| 8PI1"Gr!{=ۤ= D[7. 8},jSAWm߁ƭt'mCe}""r\؇ uڼ9!ډȴߓZL2id|: zx{.^u‡0F@ff^SK ydpNj= Nz`&mlX/=UC#j)4DQ4V*)mZP0-N=*Ә-Y5äNg0kL>jwHXc=Jn |nR06IBqf 7 Gχ)&Cc?f8^Ho#aHeGx-B ԍ}|[;~H oH;q@]ѓzS _>Am'\MW"&{_h[:.OӈwRw!S )^Df~ĩnA^َN/.wyX$XәkSgdB<o4 F$ހY*^&"ARLAW /X]vlb/~3ךc=] GV?㨡t3R~LW䆾9ϢE .nXvrb63?g𒇆7 ["wlݨ='n|UHMZBo O P^ tAwڱa?w]wڼ42'?et]O[+5({~~z.`>ըu |g|-JzN^SOVЩ^3QA13ږ5k$#k~4/jIz3Z0nQǏ?6 ;%~22 /e3Lߧ{$z0 HR#= @2C_  逕p`ÅY ljLKb I %B4uYNDٔum<_L?I)a> h8a:z\gmmWViB4z`2& 8A.Sڋ)c } N/%P8"q]\HY]X޹7o vFhG&-N_{|1((\m5!n2f`Zn1m j6`961@$޳($$emYʊ"GMˢ,Js=JROΣLtFB[%i[ye@mB8޽`B00vtX}=gc18=}9?L,lVBZy#)Z_vA@A`t=4}'y5:\mt0N*q4PKgO"wД$:8Z1 Dz0PJm>â~ێT`vq+RɊH`6m?p/5N t/ϘV */g GL;1Mkl q)elW5Dv+ 9_!L^x7d03罹I3;iCSj|Lڒ0No"$GmD a`{4*˛J- en$np;(t"וa4t;gi62Nn6',<)Ͻ*_ Qa֞7]]|)ԖۜXkvfڌk^5YyLsAK(\OXȃo͉4 ][Zx)qhǞdWTseF{㤓Jx1TݰD4u " TBkPN8{p~p̂)P5:慲%|%Cj{{^լ q9#5mㆄ$}YWm0#}}m."4 `D4:pS4"$Ua a)ҡa\鏽>q8N˜cIgixL߰2w_B}@?("s -]fTj1}Bj\6Hl뭖ꘉ&iIn/ԏhEREv~ 5@<±N$6 ZdU[h _# hYBB7rv(usI AaC em~>ein/\"|r k[:j0!ʳ W@g '= vJ~ñP)PN]$^tGbϯC&].VNԽsh`V0Uճ LKE!FoG<vV }zKƾiݿ9+[__o$9eK-X0a|HwKoλ7wNzb Q s_:KZZ^ ! |TA;R++*ldE>KS'[,~+ӞYqL<"NzZT ;45ev︴m2bBWqP{?l۴ {?j Ӛ2 M%=!u>*VJAYp9Y<1v]}߻fmg'|G2aF) J%H! b"|!t1&c^Z\9wx$#7IRjRNJk,KɷBxK.=X#;fKfد/4P==A[JX Jy&-k):4Bh2AaƷt7XCOozjYF[)vzy;kG-)ҷ3OۜGP]#UbjQץG ?Tp0/{k4: c JQm^<#mv+a|JMP(&\lwoM)r?9CJ3aEu)=&lIhbLVgRK9RWyB^}o=ʁpᮤ5Q*(HK6'W~w K Bԗ܈;Lr$zCLAƦ.cw9>1}NXZFaͨRThi,ZGt$o\>l! U_ "3}eA Ό|h :ɍT9ѢP]wRxK^fL %w,5y<fiJcT\[hhl7_>3&9D|[xw7Ǫ?[6ۗ#Q=? 6s9fxa#L-)^<(͈zIa T_AG~Nb,;Ĩme0`˯c Ej~,VښfŴ߷7XfJZw?4c7oqGD tSS0'&ViCkHڒ5f@qC:1DHYZ1w5+K[yPORwZ(iwy4TΚoSUU#w nBJT 3٣7\%CZOQML~UA0G^cNK5{]&9R~0ED@Pn\ݞKYY@ 8H886'}L7o1Lfo\]\@8nό.AG(KYҮ >e9lV= F(Ֆ:uZ &6{zc_BL69B-ReyfhfCGa>-[jr5q 0w}n3<s,%ưc$N#XGuby <ۛ͵%x|{.pzy-őzG{BfdskH):u:goE$7_Wx/0ONng ?*Ñ^Qz|'z;H bp-ڋ@a7O`o%tyBTQk.UL3ZʾWqhD tvȤ#Քh}{Q@lP%x;leXOIIBw=5Qԗ/m"]_KsH\uS1/0⮵lA64mϖԣ *AgՃfgZ|*u}Ņi#rDPjXp\'q}ḻl(x,h]Ay)Ӫ:@IM}J U ՃGߝq?4HM2uѱ;OuCc#!F:2\jygL.kUW`j)pP6J&ׯ|z'S ףK6,O $  Nz/ͼǿC0x!Iӈ!RB8M)5I0)#2X@Ab}:IKQ|'S@S/",m=?AS{_E{VKWA%Ax6'Vh}KD,&?_&7r}*eƠ6k #1921 @]-_0 c D a^.V)VjZb {E;>!޿ڈ_ʼn!=V$YL=P։{+z :>@#bZK.Lŕo ou7vkp )pe%Y@\(Ñfx_6N{MIP+>^[bf3n$!5t@؟)%zE+_hVWS;]ⵏ ;:/> 4G&]ϯ"RnKx+!,"ׁVxM=ꭙAq<=r}ix9Qaj؈(V(n}Lc p$Z|5M`GmxQ#:z E ~>mp䐭Ir@bnJkV<7eW6}#&g<iN\ֲ㝯 P<.MUs6Z| "&F<+WI x$[8Eo8R`zaHdKUDN 6({bW\ӻj"l}?l'ә({/l,s?$#P'/PɇxwfI GiLPKа|fȧB+~5з`Ɗ$A%fB!}푂b;^"3jM0fN@Z!2H)TƐZ69ke}K+G,.Ih=J!y䯳x+՛$A$ {s>3A%nhu{}iոo85IzliPFr\#k!O6b@Ȟ؛CAZ!ɡЌP;R'^IT4[3K5ζ=gCTt$+:ӂp$t>w1;Dmt vP 4{1XU?$Uw+c鍻bL+#Ngn*Z{ ji٢Q>V[֔ ̸&3m`w~ 6! x.=Gzc.Wd^ L2ْ+ wdk sk>cLdj 4.<.2"!R*`êш~ 1zq!ZKHX[~8GRÈ+)@J|F) C u?$=UeAVPk]I5'c8=26:&=ށ+L<0:mDSՊ0W%(.YsfL$(~:UB%HQ'ڈ—q(k.'2tFBH}Y M\I0U,^ovd%) ,6ĂΑc8qEfk5nְU aeQSPRgF9ݻq kN)x}u_O]h󃦯jbgE隼6@)< >`D]6ir'6Vgq#-J! cj`wAÜO.Q+υR>ɛTtz1<9MSL3w< `5Oc `13#O|a\9vs93x=&G iQy q%~oU<Ƀ[fL9QFưtd2P&ܰ٤## i;fOȏP 5?B3|oL5{~D]LMLSY|m-aCxIw瑲jt[,Pis;|@\qI0>\Rp,m Qb@Q..!ӣamѝs$󮐫zt%jV*? RrYg Fh2&DǺ Nr,u6Rc&+&Fߒ̆qsKP:Dͤ= [.R-ijH}e&Jb_Ы86+J5\JPxޮZѷ ;ڷz@wȑ$%X 05 (pA ̀>o눪T_%5%h쵅J1(->L/xFI=6򁃍9{V'ԙi M\' T^l'tIhMDއ~ˇ-2x:1Kd(r1Ľұێős%h?˯२oGEa&׊b~كgè}_061,ve.&us.SVi{ hN5Wa.rM7;ʜT|¡O›݀0oa|]",:gtxc|5= .q]9f/RIIa >Nt n;ZKht!"扤}Xt}M݋ZR S(pjLcv;fXMli/H" }SN<Iycj@|d.OQ[2(昐.cG0~(̕t-j09a(L*#.D x4{GS#8cI.i,a~[3ri+AO&i4 +]KN"T@;ty}їo"+P9C,}D_Ѣ3Xs>$; ) 7E}[cW >ʿ Q Q{}^/c5o%El .f+3Tr 6ii*a˽UtSa_~h.su8~^hۆ&BLpɲ«|Mtf't(TkR2C!(' \+RJ:;_sdN7V _|dk?'4W!J(J'xBt\f\[,PctcMoM*H.@GP2⇀ <6g=-tZ4!5zb㸫p7:HqA@]qp[j,r;ĄTSq'j!=I/26$uU&ub^S&F6k拣-eӉ62wpzjxPtvTi>\nP뻇L@ba]T"I^a ^D[嬯 `1cndQ.9?cv|)_4 c^wrq1J473P h!_tN}+`w;A8Jp;o4ܾM*Ob-)7or#_sOL;oݟՉQV[/F%adqx!]%JiAS?eHh mC>ڴ'd@zy,RR;fF1&TB)$0?+=/۳|ta o-(d&̬zB!@_[ 5w|?Mhg[;bV֎#JwvKmj}=K;n$'ڞXՓp5ǵ@m@=jJR瘷F^gۭzT}-H;`FFw .]j_č ͱxn&?/$s+W?CcF,kWP;|1B8峾Dߍ0PɅE =4X Q2">m1;r8\8V+-D/[Y-q&\UuuboA֐R(ҠP7IQߒL+O VK[^ّ50,W|]j/fn~OS uh(x JE^e6 4u/'^TSOq90nYm,- GUn #gx)b`<\|46ċLJN8F u{9~XMvٌc۱ch4ms@w~ ESMُrKSNg$-tVPs)a_noʽF )b&\ֿߔYf)=d?s#CAjTl `$ \J8F@0;~1{C S,2ݘUdHezd/p9 մ7`S$sbJ3H;pN1km\Mĝ] m+hWU&ܙh c/UgnIzj-(PP6/>ƋUCuNeZd?H Tsy[ O؝qF>zӛ|$pTD ]EgorPvF K\s6};k\f<5KCx?!O5bxvxK>>yU +~"Al [P0 LITۈy!ɈeH‡Eh/.!bVS;]8|}YlL|{RI'}=62ֻAWFm4k4?RfHiT<O٘m!w[!&|lCSu ܱ6^Y\BReDcʁ*6w7L@Mbː&m]=МY>>輽$! %3ĂsQqԬ)ABMQ"U%ܿF?f=Re_5K=W:[q&L 1y $tRP{qާi _wƘGH{/2еu0{|,/Hj#TI&9٤@ u2덄@Eߟ'HX~+0c[I2eeQo8,Z_|>[ش`8?%Df%V4:tAAk`vVMtAat}m36@4 ʛmvƯK/(_Ll0^o0*V{AO6WYEa& V+x%J5qHPlϓ5$("1TL8ҁ4-1b?Ǯw6 tJGΟzb}U< qT&ʐۄsآOQ-.Q?'ΏíYh)h~ӆfSba9>4'CӨFҴ/1;_8gѤ7]8?l,u:.bPMD1\WQcpG4.(IIޮ& 3A+.&5ZgԦ֔ ?_kl_U_? ~w~ǻxTnȠ)"\7 j+"l Wzr C bpʵ-L;I\ a Ș3`֔s5R q~/uH)+6Ģ1BL_g^S"(f!iѼ@\KBwv9er.^E.1ћ2R8nLkмٶVaDPsƊe.1? Fg Zq8d;y-+sKaWdEMKxܯK፧>biR?}[Rی` rGWaˇJ:'Tu!}lj矩CM立YWg7`WSGg}O!.5WSO -Ӯoޑ-,J[//ul>HCQ 0Rk(4pcݼe΍$UTLFw*^f_^CBp9BkJG|bL}]ҾŎ5ZrU&A ?.,Z*12x̡2Twv%p 3M(N<><]$J+]}|xl 19LY`76-0i&1+me%'>g6uI-7JKKc\sR̔5 Jsjw^c~Da'*1R' y5/'"/ksDh՗ E:.bOM;/"܉/yyÊ`Eg(u4ݘ& 5Ys)З ؋Nkp=L5PI=W]H1*65,L\"GYB v.޺GdfOk* '*]ɡצHBo s{0 #("[q<< a]]qܒ4ӑ^<Ԩ# _ X8N׾nN kVIg&&ßZ0_Kd,-nH `xԐ¢/2Px(~J ,p*I,O.]̱B ZEωTeD{ERY;)qI.۔,Pe#N)h`}:eo.W+W)ԅ 6 i 9qze9Js͊9{}jpJ Qawqg c~ !ϸv(Z~IJbafD}m^\?#KhЙę ߶h<B3w?MCdED> "9 {UPB &*Jo Ͽl+{=7,_PW/DbħNt˜Ts D6L/M> |`Ǖۑ'%yYuLg[jNUYCǂ7uCFa>x[piS߶'R>nz#l4><jik,4("kv@lEtǟcͥ`ѬPApp}r\5c|uMmv$)l֞YZc 7R?_82vW뀪 FY g.Eӷu ~/DX(ӫ){3e2j2xHgz+lO ὎jhl{?+:VĦٗ(J=@1@g…>IQ.q~1c`Wie))oX.}þa~:E % & xn@IUL/E\Pog2 5%N!1bIZaǓ<Őt"6YϳD~q}/1C3FIUX1G(yJN[x"d)NzXr7(*}j ݽ4!ks[Am > i/,V:~ژ &TLZ%7$iS̨O5;k; s24a#]R<79-3WOFcJƘZCZwdd[F{cİ@<]uQUILQ&swIզxg[;rzRKw'YaWep+^Cx%38Tle M;5@Z;q@T)|\1)v$^{g3d).gb&8C$_ɇB*x;ȬD6uSQK5kz(BҩH0ŜRBp7pHAhID}Ya{;@vWA8n~YHDwUJYl|qVhto^۶0_ylI[ݎ2[J@8+RƠ+YIdKUNs3_%DwgBg!'ſd .Dm O:q7!t2pl6d.$T:lX1KJSM(l j'V}뤜!2hn+B .]UķÊ?vD Pqr*T.8?^{E''ύ)XM>xMxux7:HBL ݪT&kģxRvB>RP~hrIAhNEL||ὧXH0)f.6vLP0vx?*=_n2qҒgd]ł1 :ɁӍ8lE$@ߎy#µVX)D x >]W7pEnW˚]ފ}1<© [o|f1L9\q9D8v88J.*4$8>\h~4BCtS*s򚴰2lW}x]A2yI&S]S:`|AXg\kԟGJ "]PB7Y̏yn[vsտ1:YX[#kVPfA ׮}6c/|g52 :ѸVlⲊIZ{ gxmaO6Afr|9_kO~ a[-#}{%@?i( i+R j*sy ȂejMXB|} ̍)ďeNj78Ղ|hnmꊉ,O\ ~5xUxy>X43Z:> OׯwBnv"w̕R=z O}$F+T>>u26T(0|t\5ji-^n`?>sqLnYj!Igx^ډ"^~bwN|G;5*+@+o>F2EӁkPL@>IqA$v^=9wJ0j.qMwȦHyz *f4Vyߢ-ߍeQȷś}!p)TFgR:JgJ9Ɲ"7q'8R}+erKpIRYl~4@\ˌRP40`*-TI"[[\<]|'M ї C/qEIl 7K!̞ LP%a~\_rz>Pt<;+zDI;]'~2"]hvFqVʺ3 2 >jжV)QTMh#$;yDWfmwL>(| _D#)m4LM-*]RF!S8 :%(:aJ0V9$_C<rjB)8#@M^4y DNͭgA$ 7=)V%&w7Wnߖjaު?TUjj7:a𝱮7ȑ殦oAesƇ5+rg}ҩ~w8]subY@B_9G4K~+26qO=!Н5u=;͘Y^t8|"%WT3UdȓoԪsoq5)ã`SrJ ǥjyZw@D6jo͔~I)E8L zK37z@YQomJ"*W^@\coXkm]` c4p592 DO A`Fp O ȧiIHP)+$a;&3CSܼ`K!IPQ3>$̻A sF%~qnu\prPz(L ҳ1D) Hh'$e}'p*q9Ae+ۿ_y7:U_aa:hz*Ml"Qo{Iq^E,?7g=Ro`By'"ec_yQ/|6xS^|W?bXuSI\1|Ų5so ͕B=#yZgJԜPsra8"- 7!2J7/m=dH7}*X\ͭMe8 ax gr*.ayU j-2Ul-Bu(wӫ9± NY稰ƒn)t*E'AW< 4ݧVb'aފ:>C * DX~z'/'5hYMBN9̷֋6 xnnG8vk?rk^= o*J9)4fKێa}UhWv6z,5 0#R(=Sjjǘ"1VvJlzȀ;]n!:G{ӠVJ8kUV,!;ˤ_(nG"0F+q";hR2WRmTQr0Vg W>xQ<#T-18DTh"m\RИ),c^ lig2ˀAM9V0ܻiY0|I1|> PMLjaL>F躝v:[aa7ҊCMffQ/r{*o_roR[].El-9;# {1izW;c@zʕ5z1 fP_9B ^(ʹ+Zf$!@m;뻜 xJYy_l@XS;W089J㾿f2Ohiho. #'.&wy 9Aw>&KP 9W[~z@cW[dxF!_b/GbsGa7Ĕ3oa[ɗsؒҧ_>ULNҳjoL_$s8d#){&9~&ޟ~;#įʴLM"(TNL"V<q+9N5z 5EU 9^Ґ*h3~`vG4%n U$0qtm[_o\co =d`AɳS+`B-U Su4ֽש}W` ~N-`R":U)DBҗx ?ܾԦg; tb_~,˖\z,GDW4_ ìO/c>;P_e7iOǢ$Cn@yX $f Tf/ $Fq\~Z fj ȔYmhW^ckk ~1 M?T#=LC\-z5,{N^0:*7W@^F D( $/\`Յ(rck\ 7řzzF9rE]._qoS E2V=z פJf4㞫_vo (Nx)\͔A?0g_E ,^=R!ϰ…pBk=X4E"-mDVKĉ]\H(|bŮ/Bf*A d JW0ZL"TI۬4 !IP# $)469ӛ#94L>" =v44c>1JS&o7X#kE]o{+{&hx'Z15@_|UNQZr2RJ:h .os#=0K {MMOىH8/vSef vEbyZ3&J#FH-\ ҉&֜>DŽ>k~Pz3!;kV=k3y53geaj!VbhUIW1ynfbhZO$bqD [L(|{i fww5M߅Z,/YuT`E0Ј3 ]|nqPpp!lSa0#xO͈gg){/o&N,C:MпmCG3DOnnl͖AƪTc5W-a$6vlY$'HlQ Ѿ<}Go"g Tjq ʸ q3+u%}\1YY_qfL.UB\0Kt$ΒW#U.QQ$ i2̦ J}G+\E5bˋfa0*BV(O#C/KcAN!cF .? Q#B- 2 D*^V )Mu-{ c 9 # LT +UzU&!=[`Tk,W~[)V+ZP >>lzՁrUb m;Q$`Tx-@ݺDǃ0tL xiWi6\\pXy6vp2IkIT{W[(=H CS(HsE@&q(]U!Q'eud,7: t'A5S74!G q.7(0 CN+þ4/Jj3,{oɍS 2`*'G ܍F@(D8^70΀&Y?kr t<3=J^1}ȞS;9#Bs K7E'Gjn % I{]IezEڈ>gOo9Z>AB]Sa{.NJxSyX蝮 `ȃ$RRF1fHU$%yG.%p7+ujJV3\Q*lȼ Oܧ] $m~ͫ|1w=3l?)]hhH67PCFZm0geRby 9sK(mq[5/-Wqß+@Ѕ:p`nh 7f:PmԾ&O[ftG++5ųY0ӱ+UnYG3 grRX@ُ5| Q#<@ [> ff$0eם%yVٝI.ײ7lQ(Bf}u k t2aI'h Vˠ cɆlؔ>Le&}m!?b&|_$K&Vq38*F1eŢ9Ƕ պm~,JI嘆bP&>K50'"z=ɯoi61zA. Hb MFɼ04L55p|q|(Xp:zE,d{ !:DzԂC,&qMK"/@Lc;rWr+nʫi7u3ijS- cZ`5k"ꪞ>me hG?R5r&XB<X9:є7?Zm.̶>۱(AohJ>ַ|Ny5 #V7tmN^F^͸֯= U?B4b8m[ b @:IxK=o"'4pvǰۿ[3> Ă oZ2l%H\  r?{r0j?vhiY v`޽ǻlCl_UT5/R񓿩M-ί A71V *ZmT^DV9@|q`lukmPyA$Lng,yy%ICKSeXR+\cUޅ]̦L=Y|2\*$֙b[[@4tdAG!JU~e ^ ,?S^K2V339<+ MU}u0`HLY14BӀ θbDq{r# NtΔv[+EkzpV QFtMߓn"J*rZ:/D%[R"{x'˘lN 8қv o'R2n$,)MuA(GJA .O 0,{^x-B#UGPQ 6wuϠ9n Y'l/~^8&>HnDA(NuWsD'ke,wd[E{]DdeEZzTwڒ6J%Qyֵ/M}8r'4vZ~$p$u:K~ ]nyyDQqތY6[tl-0g{jO-`a6jw;'ڌWoT7behla|fŇ=[a~y?l'=P]`F@ u)(-7l> E1cMy#w%kPa\W=ݬ3_}}؈PI$/+ͮOrA;qꮾGq=hXjhU8yz$lIU`n^"m|rfZ/e=sm^p}3)Qj,F@kbr߀I*qqxޥSZà.YW7Rw K'FqQ1(4r瀘hl]XgG@4|0m3!{F_-˺QgFyc}:S6136/Rb5&(ST"Ino0\[HnNe ~1{04VdF'׽aT _ݵ,A16шp`. NajM@C8Yi`lDd ,Uv4/5қ!`bWcʋe)g7w63;S A<}?:G٬7XB#l65$dР!ןoRof^kߨߦE % ~~=UEY#QN'ARn-C\*l_<@H~c_=I ʪ My321z3eBC8Cھ9B[ `aÜҒE; G=\=Fьj%??Dҳ0t6z[g$M-+ү܌~pFZ b9,2pCuet* 2VbK=|XEO(obQ-ӳ Su@FoCw~NqViR5U~.{.($eX2P˞nG0G-N CUڗT-*ɪˁ-l~it[98+|{% @V?\ݞtsVaUޤe/)K&IJHʰp+Z擪jKﰃuOۧțsq< gc!p.#>>e._:OVLPq*6مFK8p@ $k4QNmYJXO$hNQS,d3HO0/xdɚaYv-#P|qF٤'س4pqeD6RN|(ۻ=px;Itt|t!/)¬^9yYֿ(qc c )4ۡKm "CH±PF`%`Z?hlR@i[5L0$0'= Jn a*OYihe>0C,j?F],nlK9Ѹ"=Z]WH`oW_%jJľ10c>rk TVs`7s2O~Ž[ljT)=p3T*=/&h ޤO9!,]>Z):GaLҌ%O )̋gb\j1u|OvsW#TPƙUw >h潶5=`OXf޹]0^$h?`P/k%,_6GGnC립n?/D Mi`$؆Y Pϸrvm*۞J`!;ilcI„MǟxnM.]J|qr^ ΟL[ʿmڪG]Zh| wm{3HHP 7"33t3%j*gUs2S#hX@ҖEWq&K糫ukǻn!u|ia&qV4D(UzǐjΕVH}y25%*j/]^4-,EL[Uc¢Ʃ"_,nKQ rĩw4g!)A̭P< Km'B;x D:Nެ;!Y毵NszMS/v @һǜx׫_0aIJ}3ݪۊ6¯Bl3"܂_?k~qo?s Cx%?Bf"9Cdel6W[ᨷgф~{gKǏCFJ;nZZdfkϔN`#n SwyU96E((FR_8w GEY[qetIxIt`8>㉢76MN<ٔTnr_QS2"|YwIs#ΝU9Nt='3Ybae,7NZo>>IC,HI)C )tx9Y=g. ɃQVc9W<-*ea)1ˤ .IPu3q<{s̏SLe@rTr+hk]^|y]sI\Y#~MZ,0vqTnwc6 Urp \%-%y?G;{ݝm^0<_p@Kk'FKUOhsc8yL~@% ^9]T*NoE?pɝ @yx_O9ij)眶0)4_q?Q!,bۂ6m)=$m%4ucVuzFBou^Ԯg5ŷw{{Mj1:ԖrTꭱ2X>ql~%̓#FZ{ aDBƧn H!Ã턗)~H9&'!!^UCS?Bi'iQRz#Goh՗_G #5y)~֐jXNl9mܳ ټT8?FǟTR)ܗ;X]&v~k@ZO.x>4|KAO%s+5h2꫒2muN8Or^ *=u_3F!nkf`p(ܹ;eaygNj/3~ AW])|q#گwՌAMe4Jh.>ߡȟk˺?ޠwZOtz C6:W H>vFv<]Ra+Ho?}& _Fs !IT͒|Ś1Ұ&1ǧ?#*}A#[/n 4ZcV`w2 c0ƽ֙YqK2ɖqt R?2Hs*U9UDH9{:X7USx_~5!3.*#iCpa3x7fo,q qΊJ಩K [ƱAM#% q JpKiCB g1uHЁ*D76$>P=C$@TM S$9+ͬ#LGb[^6kQe^:opYѮ C>R9젆3`~.ۻE^ yȕjD٧Nn#}rGix Q<~t,%0e gĉ:>婴VX%R/}m] X"*[7n=B{UBQ(/5Pmo@䷾~ksgeيW'Zq8K[BM$zfpu@0 ;qC[RI;(_n? @g E,9:Ёs쮳}d.tyq|!5&GNwRb,+3pSoU4r8W,ǼI##+amJYKʸu"x &Qg\?UljƕadkW2MmwP2wjJ!(cg uOgժD l繤PA@G,+AkϨ6{[' E|XA\3=V>FfXGxD)BnO=jfpbշ<ϑr4 (!`S0/&iư@.,`ܵt%qA/2'jeqfSL[R&$?1+v^0b2'(޲1'.^T(Sƭ%- 4+'Lr5njm9S>¬Ѡ–ˁ9iu@!x(/}]poۈv}zL|YG qck\jD8Ȅy?S 'PStI\6ȑ"EjMXс.vP`zWyU$~fbɧ< yUOR edzY|YC(4)ۥ@y=aI'5+XQdn1RzG}3$F!.}q5pM6_\\'6 c4ek1uPpVcA¥+C,&zb(JX<{G[m90б"uX𬞦T*:=pAЦVvAIΠIȄɡ:KIcN%sqL;t]fӧh>]z/řP &j 2&^^{X6zgIs5i^"U]pa4` '03Wb%%ŝS{Y-u@HԝnbL0mO, sAb*8`9(^`͡CF5 :doӱhGY߫?ԇdlE%2+.da/5w0鍜4 :2Lc[ӉQHVn2ʋ2 "2} >siSW:nhra{թS]h1"[ʉ ,G3j3XҷoQ`{:f5:>&]8_*837%xmvц㥰ŝo>_]a"u8]ِ/$he󽡠sL6ߒ~#\9kwkvtJhoܲ5J= BsJy)DȞ$jzD;VB(K@P:Re<*q2w06" 2~3{a<p怞'I!ˍ|1j0l-[STl*Rm_kp"-W#ʂtf԰]]R_^ ƀdyQ𒇾=;DBU>k|ʇh@0//p*|6x_Hy3ڷƇ͑m3/'k jw \!ZTl WM$PzY7 +z[Qܻ\ደ&0[<@ٌRU0M߀˻ DUE?jÿaĸ_P"<)6x0NxS xEf&sEf=x 'nn'@9ѸRЃ!3ڍTQ79fB? @8ebf ̃-Gf<=*cR8эJUC܅uS/p;) I:SHjK"֢ ^z &<aײ^'{7,m׺?Be|!FH鉽l.;3x 0R;ѺWh Rߴvb!D0Qu3o$/mADiUX#QPl-a! 9c7}#èc`Aľ0]tof."ڊ+nA>8蕒2*:v!bG-=&Fr(eoF- "N#r :XK[4ȑ6BԸ<5dC1|-5:5%;6b|x~d sawv}oj CғZnI3I  :^\695M٣9i*/rIЍb*V#dю$  )={bUvffn| asm:KtW½K2lTJ' `#TJ =Tk->X1-q+AdQo11Ad9dWEv<[^'&L;Y{9@ʫ_$^i+1 <@,ʍҰumtPKm1>%h4EEiwjN@6:mjmn)oCIslE̞Me!o|8x"hr'[w& ůMȟ4#_RO;bіt\FYn-`4'SS='spXgw$5.]#Ż}hbrinyjƮ鵍"x}hQ؎Z=!A瘄ch!NbZ |o1Y?(| y˕-8R?Rh<(g45pcx>ҵZUi,waghvPMv؉Iә[E72i)Dse˷v4 SW먰*dP>xL垗j~kʳz xga#ݲP; : P呌岢1c|"v9,z;7A3/%C.%@-v4 <Y"uv\;s_FS#/곺!.T6H_8Y<ӭ 2qAo\sGp> 6kQ(a|^+*y!D) ҚX+_&DW 2DD*"pN{lxxY</yH+PD#] 1>-Y1Lp*}E(i}{ʈo01._5S[JRK$zWK `6&/&ūe5WUdjq ւM"sPK7y1?)+kOcU/_-@X`'ޝ&EsL?P~"iDV3sUL6CyogQ>i~Ybi.Nb١>UƋJڮ.5t~qDC~voZH(XB[c*A\I@=3e™ r Iw%AA83Réēр:iBV/@ #:R0{jʺaϹi弮8=h&(?f&[th;l4:}:dv]ӿry6ɶK'zj_a^ 캹f9prAlqBoy NREjeޣwHԜ(ju5]0NKB/$y"}UXrcrkj+}^:"^m8NzH*Qzts3i mvOUBv[]|Si&y#L(G;MNrpg>}W=kG ._Q,۔Q\nyٜ͈ gV,mmvc2Wb*ɔU5?I kr%;SJ iy Sûrǡ&4vv[8Vql5' }sI8kf!헙 x]u8m'4Կ4Kݧ]bun7Xe)$C&0B.ƒ{Aa++%_ PH8,"@Wu3r\23C\8e<|W"ގ--Skj-v \NI[ FV&5c%6n~ˍUR)Z?m|u@ wH^LSN#(f?XWmM>6%y=`YVq@o!Nq(n~S쾞%X}%t=?U,k{qQ7s33jD Cu(*V}ȹA,Nz*S镖2H*EVe%kFuw}AGD/U l"3l!倝]4g=NS[zXjȸ|se[0UZb)0h}O:~+h'⻄huR!e"a-QtWKnxLv>l=RT@NN|GO*ﲒzAd-+*\M!)4GmzCTbU!G-`6fZ CvpahZ q \ P~ǩyna'/px9~*`;݇ g7N%{3C&p$G%=O+eI}w]5) 229Ʊ!P;HGE.?b2|dT3 &(.gɘ@vs|stLڰ5\Ŀ*JW&펳A#]<>u Wm#RXeȚgNqzHYx+V2Fqzen`lѴ Z \kb~&88d.[+yf Eϋsn9wF=m+aJ9Juke@55nv_ ܻV[@%dzk5;Y`>m! E 8JGwkuG2Ke|>}[yy+]ig1H^)?|M@j s/.4V}/jA߀p*]-P2L4YAI _$Vޱo?*/z"#*vz0$|m=\z9cZ)ҟ+)vg 1=XD,Lu Wщ_Yf%-6FYX]@hT§ c6t4O~K>2(r_>aD7wE CBK/j83n)lQ̛ĴijsẏC]hO8 pwE[?MV?k ^8NBkb*R| "T[ KL)[nFu eeQ>IAj_=ϖXľnL{z<Ȇ7 d:Fc/nh~i|*a0QԀ[=e/{*G 5b4~Byts~U|`QSqI.!$0x$Khd߄{׍ٽ:E3zJg)c\Z.Z`2dt|ᄚJѹ3Gq7Wk}in>:~ #5ZP 9V$L3 4)S6O_ t I*ljjΪR͋a$t||^ ̶$<>ַ(A(?>Ć.2lKRsxTL4LE},(=Ȑz ^sFc\b/(MΠ([pTB)vU5`n~ZBol4 ީ#ĕmQL,v ƃ,v)%C\j ( p9$+ձliz9Ey@w@#{8$\@fg:iZ )Ӱmc^@s &[ཊь2^km"k }:tZv67f [vAD-Y&- >eB Evr.K!<%zl:}%3r<74Ԇm<*)-~t!0Ïipf.?{7e6V.+lx1i1eeK{If[ K"rCRVf㞊O\N>gmS.mWeMaa~#Nrx n]0ղ:$p&.N5'A Zoj0bJq;-)a3c)<64Ά pvJG9Su.j&lŢB٣M;3 6s}I6!~D u "zGܪt9 d <3Z΅^X:NϾ:S3,yVK5f 0y3\SBa HyI&5{/- ۞s-=0;`.1/ͤɌKqQlj*,kyp6UcSU82(u,xk:vsvE!`0]U}i@;,xAl#zT H*Qe;i[fGDGo<`}M]Axxd va0hpA7Ө=p=?Q纅DRKZ(p`' ]);oYV$J!U91|[紀 ?`],Wvq?Aa0nžLH`%ּ ڮwҟypue+:mqܪTv %ΣA\(lhp%l*hb2(Ye]F>.>r7ApS*&lLi+W#7?wx{Ά/Y `nf9h5ީWM95ϏqQG#zʖ͹ۮ)cY/P'0*058c `BVr6̼bEߌmHd5ʬ9VQfvɔF{r= Sca(on;:|Z)20ЦmDJ?&2qd~TvDd91DܐV+ Ignc G8~L/yXJ;z\ [қQeؠѢ$8tgW"yWY"^{h>:> _'< dK5/?16ˈc0 b)W4 Yj&%ÂAWJ5,]檆h6:f++FW/͎ Ԭz={0+xe2ɶE!'ZSu17zUJ,ЃۯQZv rveߠ{=-auS"bvtk|kQ=yw`+.].M.n١l{,.;im'_叇?sju>(RU} ҡ["pNKOɦ!E,SmDCoȎJ`%UYIPLE$=&;I*)dMjZz1dAl8 M؏H X[BQe!oEizk23Ɏ~Ofn.9鴊 L@P4wa@?/le^ƴ1)J{eα`Yx͛XDOՀ e]pe8dֱ3&>k/V(bRJSlV㼧Wm|/ wM,V~p4Bq%NqL?f,)P+nERar|{+*DEs%S: MXfzb,T3 ̤*b |1IE8 ֳdd="q)׌Ɂ>,x+1&"P}ڠavv ãnĄ7Ke R$@5-mm}u53osQ Q4<ܐdl^}&Lm/Fm;&8HdkJ}c/ӃB浲#Uq@0a9up%[Y[u>\BHq MC :o3ffR9 'iUog^-bAioe1N )e褐DWHc)MzoW{'`!f2O83ytwapV dl1u2p %!U(GOA97;8Z#aL( |# T9˸@n ϗ7E$1sGY$7QDq/~'~)m+j~˟;vxJZ)t2U''4tk32I@L^<}3f`d @!Tzn*/dANޗzfE$ʺ4?|bUDn?Uo[a*E.w MM mf_Gn9Ӵ"\Fdwd1CU+oU2ns,2Pe<00XM}M s`ఖk4X>\g 1!3RqFo2HDáog8$~P&TG%nQz$;(j͚>0ߝ]1/zBkp# Q@"W MTr[J9" BQcOnI c<=enrQ# uiv24`~ʐWtQs+!< O:_ V !#ח<.R]o9洕&cKMq%= nUaoQ81﷈;*V8p9CG6`ŮQAD/H RĜ8/yPCls=mWPlwVAK. Yb8'pVpwQ`cӱ/v)ݘJ3nnj W $xGu):$sↂ"Bә*&uu^'[kXg&+X}FU\u&-WC Ii@c~``P(0  r9|66A4{f$=3fGMl=KYK'hAA''/#nxgBPyv҉勭 9a2̮4ѕSOˉ@t:}}Aj^ A6swġNc54%Զ^#+wN:э CpK)jVyM(!SX2G8-`)2#ỸKϯ ׭q{`=~W-8;WU%hc4c e"):8 ) &n mX_ӦT,!H1b aݦ99\ы0` B8K:f T;Ѱ9~,拻 U,\e֕щi_J>AZE?) yr^F  yhŗzӧ?ĕ"?L,Td7;ww2 \N #m<¿Da<sCOMC" I;)1>c 8gvlnc&J NC'MAj ZBG8VAhg_e _MP2*dt?suk0~&/ZDf"l3IWb.iJ[[I?G{JhLnj~7 zwA7H^1nzve1co0)6ϟZhRy4(?>A2rm3ps5tKE iM p]f:$.(bj ~h2W26 h jxk<]rwQXg\d`/RL@lYBD@DT ʽ6?[m_Ti *V Sݢ^¿'EAp'R97 ُA0UA̓t#y.,ϪtHB#+eu|$LT$+*zrh|%$Ym.ExwlȘhA@։GenļQӦpZx'ŚBHjG(zQ1eY+Hۥ+6HMu=Fneqx ]WGwRCjɚZaDHr+s" T>e*d(UݨK" H>sKJ\CuBeZl4짍*\~6mI.n脜~~(G@3A4h[6|mh;}?d'>M8h_kME淥`~ojĤEWV n0 ?76—ykśI%4<0X.$^x{txg nq'2zbE]2n;e`rA& AU )Ra04$C(m=C^yjAp#".0=X_lxWJ._]Q&zNݝoWUªZ8Jz{Nd@)\*Õlm,Lƨ$Lewj >R4Ň D*K둆Em(fH[mGsn$m]վk"2Wy^[q^MNFY=VP!ԅ,X \Dbze J/ @ftTpO"*c w2l)"c|lE!.e3tABEk65 E KK(bdV=?#)i`ޙ3|/[J[SDFiB2gY'J M4gxkĩv7$DA0kmGH]|˱G7TPy,f9``G*"a= r}r}K$ѓ"/QBlE7{ڻ^IKG-2ndc5}[‘#8hB;:/]ˉjvD5@y6fYmsMV|]FIADO1_]@*HV׀s{P!q:,/l+x`-Aib*rЬc^V.)B"l@Jv<ŅyqY&YV.ȍ865E-mpfSY}ua? Rl9'b?Dʰ \|8I7!ڍJP~z*O&O`uxRԔ"0|&; D䢭sU,9?i)M)h@{`v΄{ͷ1Rۣ>ܺҬ@2nt2#17(pOXeFVpҗ{xخi3Fmf3ӍK$Dk]P75xЬSS# bNl}øxp9/x GVq-eQ,M_k+ NDZ+#@a6]YV=}(GFg؊lĬmf ^8 _i8SMT,fjPXq{aT$ar*Wcx;3p^ {XXsTZY*tl~"ᾃjA&z&`F6TݼaȒ?]rħ;}XEjYx)^&c!…i#q; g_.)|T0 mfal'5-©B,4]^u^iG&%=r~p0laaX|4Nup.l**ڙ7rZ2cBJ M9/Rr3{0j{n´]Tr P䝺2 G(RY~b(M7p e ߦ'QX\e˵΍* g}ͪSt)8&kĊEX$-W>K'p0{wSO8"N K"1w_/>@s43)ĝ[1U]DtjtȬZrQBc"apN23~\+ƣV21m ~Qr0zrOmr#NX!!Zfa}æ;mrET38P̟D|eH Lө;ER`,j/xOBXDۣЀdbjGVA2,ꃁ'^Z{O"=ce@՝s9ܔ cS#`S/.rAH޻}/j# 71Crγ3nD7 :9VrYe~̣a)Ryz+A464;ckڬ<\U,F& ᡦdVO Υ,o7dxx3(yS Y KGYo"ZpoXZE~h:fy`&uFRVOI~wg2N2v7@㽀giWyQ['2D|=v`"X#c\]#} )s ;~ 3T_ZJ=֠-d2y eS$jF'٘ό6&id7=T=BX;uE=yoąKҢ1cYp3ݛGsSӐ}8br˼ݓ7{f!0'ܑjXFgw6Yf_nRuK.V ԟ&l'84*pRL¹c )PLm \KA^V_j鏤W3U\12ֆ/j;H7Ph%)LDB9+NlTiDA媻hf $(2ce7(2CNS!?+r =OHgr^!`72)k[ #Jd{Y:y$ALn;x~ϧ5|*>⪹xU@Jxa8dlu9b_av M섍>A=nњ0gc/ó= ܷJ >FPWgaQ y^snE`l)RF}Pfp^cUs\U_%e| BjVZ..ȏ4=֫\UA%Dn-2Yc$R46ܫFTi[$cE(w2:,+eG&;17S8? ¿gam+]Lj6YTެ ,fWٵG7MՓ0Oׯ9 JZ,IZ+w{s7HA w(LI .j \ Z+g KU fN.2|%P~÷k"|(~m[{-+cSHWswz'!YL ؋۴#)us0]LNn ܶ6ʐ~Dt:'Cl E@`Ԅ* u&X%v#vM$390NR!cO3+LFQ Uz|W&x^.'Ӯ?6~$)I#ЈKÞ pA@#"GX-nevh 'Q&atu4~' qTe% `ǻeRsmNtN{J|pַ~E+V˭R RQfm˂[}R{nX!2J:zf_;>wuKoqt D$)>XBYk΃n ZJ}yqHg춲r z@ mACukŝ&\jH)Ġw]wҹL>PP[cmC#qSgJo{gEk ׿]u|'Lu(eAP+EGՁbUZ Q6!D R0z~ MɁU͏R䂧Hr@DH7AK9FAsCGtq_3}6D [ BnFP'AnJ|xrWBg94N8n= {iiH7NjٛԆ{s,E,2ѝWyl_B` )bv)ޏH;p|YU=P8?1_801шUbZh#hċ?YA5 SOp%y ⌘!~;tp|fZ!rM~EŞ@w(613o#xs7:o:eFjM vܼOo^LdžwHo ¨嵜gtXgB#7F0(2vTPp˺#\#ndRb.-F`騀e|دX3좢^'=wPzU:!ߦtt<`8I͛Bʘ?PrC_rZ-=QZC!%3VW5˛hꗥK8InRoW5AYb,Zb7fĘ*ns)˃`sK|e x%HeAr'VMh *&J;@gLk!rKz܉qXs-]}ZTJb-Ӂ(}IPhPM SծAͷw"kvwJv^B\ O`Doζ/#a:Takmh[4w: j8 :֍M_v+w_|,$Mw>LY"`V7:h4V-|6g}M;THd[,j;lӦoUoj6.o80;$Pd?a`?W}nY)LCq;uHл!r3D#fj"#5m%S?)IJWZCҐGCPүmb(U涪VCf^d!>^ A<@Ll%_\zq f61|6kOLGy [s9 jsx= Op& _) -q]'9|<㶂ڬs!z'*G/9dV81vn48lU|ށZoGY) W]B%iz|F-+, @l 1 g&KՉ?(d`KtzxZ;I5ןO*B\q[B .D[wjj\3<ߥo8Oܯ5'2-r &@+zb' lIoyAej&rVMlp0U6+L]322t'qZir%l )ڳwh6Vn'J5B-i->vc̷::v;窣j>g4p9.X !k\:2۪v.Wܐcv僄(a |cpc|cbп$ m?JBE7E1d*`*7tBHѝC_lF|}za$MW?yn0(J>=RQR8$) /g@X>H?kpHC|^B'Kcf}.qٲM%~-v*>i鏛M!A O7]срcO><͊󆟯;cʂҝl4:~^8|>p F"yz[g ?-m`;\)B$Q'~eSo2nE5؅> @x9d}'md>R.%]H7Tv1)%8T)Fp_ NkN q"xAh7brI\J l2d*s,~?I] A1 Ey9،,) M.b.%M*CM{bhsV[ ʖA_d7q?Q蛞`{}S;5a㾄'{VWa>.~B2NZ/E ) S5uK ioD|f5<8L>) I.+FӼDgw[<(k@4zlA qzmr}ZHބWilX㆞tbZ{K3-r*oB:~Ƃr$h{nd̠ ^^ê;yځ/p4J+.Hz`)M_dVǒ(Hz_1)&Ӱz`{=bǽg-7"jM[36IEI)u$K)HzWU1Jc3.Ȫc˂ ,v1-s8JX2<_IM_eŴ(\1lW\}0lFY_vl-k- cJ%~k_;r&nW.d,OPy7j1(?'ud(kNsbJ 2Uˉ ac%C?2FwTf6>,,2 &-*LGiڜ5-.D|YOxLN޺67w_ns\r')&u)˓u~m߆NR~~K(>~uz˺Y,CRIP>-j<&Zz_q[{E1*W UԜK lZl+hIiU sp^0NcƊiL2WDBH%p~e]nҁ\l< qN*>NuNn S| 6{T/ep @[Wl$Ed--a}X=D*v`ٴC-v'}S\Nh рrMK=(`3?Cʜ dݸ?On06: _oSo4j$pV Kqij%O^Ɏ_nivfuFqQ%%:iK -5?g.]y/&CaVt_dIGRA~fG=hrFA@e!ގZbAy> (DkN-6rY1R"+$$/*$I4n ΫpyaְO̝h$+oL /_ݯ ~@n\oChFwNP4b' $D<ï '?f' 'H+i| N9.Vr.B16=LpZ$hj˳zG`բ?/&>;/ڨk0BBc^. {s #xDW7)׌#4:+781 tI@~$y.~҂E^?]˥<5"R`6i?-ҫ͊z^g c JvRY팺ƒufy2*ap ! :} v?y 0ww>)#04P|1SM4=#Hz-NmA?~ B[?Ib3uz&TE'7j*-LLDxzWX`)}F8UާwP(6, d9 -Ȳɑ5o\Pf}E=,>s_DKtu\&i0:YǰdWP o ݌IHe`x9˟DB$| .֠qiT=\@)i a39!ܾT'c_5t5%mPRuRbߐ?e#~ !>#fHAZy@޿vo8O[ʷ}MZS,5codB%ԇNz0k+܅Daw|ͬPMF-+:(`xS Nߢb9oҡB?n9hIRd #*y/-2)R~2PaM\yC S.CSzO*U_˛#,@ch#j Ѐ?OrKٴ;)Odd5$!{kǚ˪Yqf+g^+n;G(VI?6tTl_.;J_^Hlu+Ș]=B)/GI63RlhP`0cR4&2Ǵ&K t#D u=fr^/E8^YIq۪JMO,a,_*/^GG gQ`WW*_hzkE8?j!%֐A6g$g$?Ur'B [V?8-Rӕn{xrHR dy[!𗎷6a Qw]Սg:aEU HeEaՈrOXkWj RbNf,rMbJrI&\m9 jtDNC@n) nޙ&?< Wau.lgIb5[dŖ`L{(Mvv%>kшg͚`ob-k$p3 6;^.iٗ.Q*NVdAI+gL 9Ş?-a5d9cJ Y2HZ\ZO$$\}rr24F,ըbR3UAIoGTx[vT=нRYHưh/cx Wz[ q1aA:+ մ./)wu-J/1TNrCl IeMGh:p8 ].sI?XtG%rUe kmOJŒh\de7[\i"?J62B>B%oL  T?A$,RcV$Gѳ6f4] FH[Hx9nO7 iCEJa}cwW;K;:mI+W:Ppetx/Ӷ"pn˕mg=GKOndv{zOxH}=4OGbjI[KԳݰʗ]q)IW>o, N]- DdKTVsY+^\'[!7F@"Fnh.G{}vFS~^g \'>KG GbG:YMUkl@O[3H ō^>h2&֐Ữ&@r/?f+5)Qz;{nYؘ(7HpFY?uB O-.|n$[CY'-oЧQ#F_灦%-9ֹNpO%M>R֫*'nNw)s{U\h$:i#`,K#M,!܋o&xJ=)(s3~> ޾ G>y_l-s  {;-{3]C+a~t(,h w.T9MBhCCfk_Gg3UZ ﹂47 Mj!8/'V.`檄 mHE!_.H磍 zai[C֦nG^BU*og%Anj&lsaZΐRb 7, Yԍ4b4a){f2ߏ7&Z†IgeFWeI# G"jWuHwr4u8ovͯ[| d! `e6zj"yDTC=X:*f@FU)(P U@ڧ$V6GZO+0nBڪ\ +ǞBFH {:bwk6{[}8}DܜM8j8 \*%$X=,V|gwc"ُ$h*%%taݩN9^ܐ9HSXLOv~t3g}C3- :REǽ-rIQaJ=U,xZwh#w۩zC#lO1fʘç'>ӶwU2JXw1 .=7lFMYHd.V(R8 ?Ƹ8k`4f Xğ?a* A 4kr1𨝾%Vq/7T?LwGv<JV̼3 v%;_9MtQ1 I$Pa oyj\fU_lXMi<@͏B1j5j"geeJ'!?N Cg䧌o~)5]j#py[ȳ'J 65e;F%@3 5^LIZk]o--eo@U)۾"qU&||\*}YqR0Pfb.@C BʰDaֳ !J,?` w'DHVݸ?p[qh$&H\˰1ۂQC@s?6} ?4XnZ`G$1;+a-m+nlُxՀ0*)lf ^MLFj1>jR"s7 ^?&76c. $]~Jn. TҬ{}ȟ@5o#>'u}7ώE4jxx_i-nZ+]Sói4Qq}0r$hU{}jf}p[š-QjcE(Ⱦ,ݖDlA%~ 2}a=8٘ED Cq5_،Uj=%l{xj͛qp, ȩYG&WKXH/G$@6 ݌6V$ǭ,c+,ƥ]NjNNKU2~Pv$[g,S0F=cV>V $ֿ%h>M#*'P*[˻HH`=ז(-* a.niګqM.tPJ$Mnj 8F/sc6կoVJ +~-◐aNHzsݏdϞzDUGDPSB]$~h{9ӣ /wV*(h Z%RW 4GUkX$EcN%S-<ktILfQ+&m@gATVFIOD P™7G<0ZNH.d´JŒ z41{eT4m/nvZ%0~'=+ɞ}Ҹ$KeZ~螜2`V_r[00 Qc9ȢdiҧI2*'ңdZy:4[{48b.Ea`ed.z:YMi>\kZ9N'`bS VP;!iH;($϶"A405S6%#*xʊ#l+z*q=:tiɄ ~~ :2?Bv5MjSM%.]K'O1z[@{0)9׹FʰV3ח ֪Q5]Fƻ岧bᴹ͸Ftg⠦o-3`)e_<'b@"zjrO9v?jΘ])loJ'` +쿿M#Á=BvYRZR~u*8qZ>1 P^i [5s1 r[u݁"QجP-m<ǥZ@fB`Cr+<%/e3:ԧ$VC'h|[HsٳuD+WC]WiG9s7fZw%4r PBw( ,VhȚ*zpKltfղ5ʖC~ё/_UfWvSNw;Z`xd ;\}TeqTJDwA/tN jN A T6> %yq@;Eb=?,G:w61qbfuPR$PgmUypp>ضZq,\ f0iyV ;+yeo^BsOyդl.S֎Ar;{ rC@} Q̧=.j@ 9,SRZ%9rNH|Wǝ4ݫ?Cb,Gn[m\ ˾&@N~Ǭ>Nޞ?|vD$Xd Gfl[3rdtwյ&2F2^s3@ ]7d׼[qjv?^l%~!J9-/d4C΃-4@ _/Pk#!M-v{wX@DUvܬ}p1K r_iD} i ܢ`Frw0AHRmd/CBWVtExCx3{xԹ;g_eo7[qުxRc2NC *-O BT]0Bp0{iRrW^+; jT2up`wT(ZSUyyTZa0 :*T2L̆KRɰTSrn,ttNz(J.9"Pc1B=6PnyPRLinYRCfVG:+R75R_V3|\J4U -?Y-|Lк%Ўatc]W}9-( ězy.lx5C kۿgº}& ҹ؀a4ɀXO"(6[GsdJ֜P"nIg~Df WrkO[<6D0$rvu@0*`N6/ 6xK}1$.^D&.. PZ4 L %{._Q>Cp<91jYff[EbʑkVl*:G>_ߤ]X4} c hU]emt_C3;u{zxS=Ią1yOhZA%\Rㆠ`֍Xz(=6W:lʥv"=l\Wf z>[YEWnXh:mA5TEJ"iR[ɋ 2+uסCM` G/PDHR[/D˧ & +w cT%p8mbɩ`|/7xx!O[uDr23D9A )1 {%ҼBc$ZxIH,k1;A>] su9QpkWR+E9mKvX7Jz@>^ˁS% 9*g#Dž~FBё?נ6uN (x쀕 cc@&0& I.NvM3it _%>gcǔʻ?[c?_T"5^-yj A\oPz˾ ϙo=N8 N;]Q5ZY=BFBd %1s,q")&zjnhҾ x^'T6[itm/}6Fwm$˚G1@s( %iHA 0vAxKF\i"s@9m:dVgJ7TC_ _Kb|R\V}ALǰn/q׈_ TViسvUDuk|A &nFރeALi])fB=yQ]:țT#g{w/>FeJlPq8XC)BFiOB:h-1֗7} hmH~m4C*tlsd&(R$yG=Ľ]qDG:2=mGXMNYNF ½wDVtu<}ƶ(u2zF\r$`'g`1@Mt<.UqbW KaadwQ՛N5tR#.Gdj1*se$f1 ;F,q<"ń/)c0ZH0T᠘qyP,dp4q(KcrR>6?zU<_l:^6N"&B! br Y+?G(传!nُ,Z Y-#/=w*݊iTS\#t>ݰBGWuD9r|ZdGCbluh)jMs-jz ?]%=&53c*I]ꋉ+!M$f; F #BJxya7,+ E^͇O.eJJ!EPr +zTs:`+,tpALcG 쟣zqI 4wd_14S824$@@߱x*X_ =`.P$$2@ƖBfATVz-rBOy㰵O{4&uҵt5GzfpPŤ?2)[5i:k-iy[ÐCgŹ쌪JI{PqOIFDr@{)>^F@Y::$3eN41rQ%i6[?J5nݼsؚ<*n,Ӽ}©(%!*fnG&{9E)4 "E'?+JMݟ>`Ax 4hr_0Ca(4vBU8%s.D-#Z>N6RYi2CV:v#/SKqr{0E;AF^@'z:ɑQэ\r[oghn\Y*FLӘpE' gj>y˲D_)1;g@p(<{}w_eyw6PN3PQ6(iI=fcV4~#1} V~3!#ni>ctLk:=%k:_N"A`lK1֩v/m W"ZJ5V#0x^ cיW:fDУhq rޡb <))ye\C"7mTT|$B"=5eɥO 86)rY=7ALpy}'FsȮ>?3^%픽@@CV_ Uo$[lj1WN&[ %n80;<ؠ}Z<9a龏'h_Z[Yf05k@WUȷN$ujplLCJRNt)s ##ҬUnf83ZSAV_D9/>Me[Pa( Q#IC7*%h׃AszL; GyFt<8g42*l6~3i,㲀[+$⣏|Bgh"thJn%pnP$5 svCgAZp3<\Qza,H!1$Z|۰_[bd3+ʑoلwFX0T_x} bfұ],C^Fh!q>OԎHYAUJМӜߙ*_`}+ΓznTk^΍6.*k)h;6go^oz0ӋS|nkA#A9l3zY>ҏl#q5B5iq.ZP6h!햬}"U%on,,5jU+Sցo>ٴ|щBظC`xA5}$V,K$kt+ǭ%6e{_wsWLI;s$UO,AN4a UGܱj:+U;V,$x}_AW䜈ڃC{ җ1M>a±vEvETa&"/;lI8ӷѽt(4ⲅ7lsG)j g;G2:L yIߤ^TsI*@?ƅc4|) )A=2Ž1\@|IVזas$c\*~d#d&YX 2_GugU"?j†A-?ԗt@$A%ꣁC,/Rv8F[a쎌ɦl߁RoCGY޽b](J!n`w;B}nc;4* 2Vi1y\_3<{0 @b@"aAFQ$)Ȓ*)?o C 7~=:'pȰX%4;X`n}>nT n1]2coܚ.|p+•槙 [/cBTvn5EaE^HĥcywϘC=IH.E+*[IXV_ylɪ-uq<1 /Z$ a +'=A Bk8n7Y=l+e J~i͵rt(>f妐'OzF=?ቇrei.NEV W4pI_CG@JXqCF%bͬϔezL.OBHczMD:D* &yAbdx얝VI,3>Zq]/HtG Diш;<1C'٥)fjт2A[2퍢1mMD'9/> 3ywh¥h f൭n2[M}^r{i-<ϴ$J|G:P1DbkM\̦a猵f6FnČu,+ o{YCXEص0H^퀫\6sTe9|Smbn W*n 7ؽB :&?Z?)+N&UzU,Y+0CƨSGz6#E| u'! aDw8EgZudY<k4l?/1z֊)`;0{sDQ֘W(R.\VD*͢F͟_exKAj3 (sJ׫|/\lwr( u6 {&i$]^L^ݢ#skҜxE;},q.Ð7. 0X(ƧBYS]kWyڎ[ʳ! 0۫X5s8sxXbM!}NZ~"N>qNR[_uL%u)SaEȨsZu x%^$$7BMPoprb'&O  WЦv{3NjT"1'=bٜ fJꀾSQ\k! ErxP5 Ƒi-^la}\=1X:LF8&һfܷa; W8 ›ٷg$XBDtԨOe:lTnȤF! PWu/W{Z[Ҳߗ[ym D{i4R `)^̠.NiZcp}ӱ I|Ro>߾n7c%%,U3rQܠR0r R-bgJ8ּr8J -ӲކcfuPIF7B+ #`t?*dV:GBW2NTG/hzeEmlqGmi>uE`Cn?L pE4`a [1{["K @e%[¡}r/v ;c|IP Pc_afo:9xrsa-rQS9XuSù!'У$4j:;g3IDU&a+Ћ& eWv8,k9'wbdywY±VT[z4KP;4bTd&~k"zN5KLB:[Dfvr䧺R\iWtFܰl754}#@4NDC2n (ST(KyS Otk)7rT'h5Fkbѱ *Y૗r4;(oyCpIE@d\I~{#o Zt 2WAҽĊh"1^Ys]w2ڣ=~pOHO{7hMZgzMOd%EY }h%x6ePܓxES"+F8 鞌H[qlra#PSbf'b1XZ~d0΄l-ۅ$Ba;zvgUoCw[mV=]ރhXMѾmBsE{UVN3Kx]Mޯ*D&ߦ9<ǎvڒ QJNkXnPP_{k4jOZ/tg]u/7f%J- H'u $istή`QYc2r^'x1dVn- mBqZ5asOSIZX.$W /TQ:, |64V[uY;+:ò2'cSSKx+k&}1{^_H_B>J%GK*s(r}Ld LCoh X,C釵Q1<+Pb[ٌE ^NC nuԠb~9&\2sA8x%$$2>Z 'ao1$7*!^H+ 8%x]20XdB#i믈H(ˈH! bI@$1╘^dmv>5ij{Lf& :6{.*Tl]r݀DJiBy{U*0TUz֜eP`T&Uo͵᧳'bEavkX $!%FNbN۬Hv=~Ȯ1tT~_km꽨8SP/ u^c ێSxgB$LYsN[}E:.0a<#QZ3醸Qq}'I7N 'pQ~RO8%i$s>դ,浕S%u 7z@oMTIZ)_|S/P.C%OFk&>n>V|}4dD\S-#kݛYd 9=wMå,2ĒbMg{eBg% PF3VDzLu)rnkH&l>cNZ}_ aڪk' |M|ǹQdhx:ߟB$uԠR]m Gg}Rv4F+NV⮽O~X3 Ea]=Go/hRmsvZ=|*^ wU41[Ow{:_DrZV/~Ȧݣ1}2cCZN{v?/u,O?X)S’a=2euF?]Ϝs^]!X!ՁΜcEԱf^z(Q?>ZsA0hgُP%\'hD,y7ģ!Y F/4/%PP1UMi1M)O)ۅ﬐gګíGBoyڙK"pSBD"SפJChD>IcCZ-*1w!|_A3Vݳ,3hҷt".b0@]$ALu TJm<ĉ&`9]]ۼ%-Zɚ7P$u\FVFGͬOqFp6m>TnY8WPu\D].FsIv;ީzmyy1RmśK8DQ5lEmcK'sWbpO20A֐٥' l6xʊPt X0w T;w&%YsY/=qg^;nz\ZJIB/~GV$j[\˦+e9Nۓ(vO I %/ѣ jՌ+ BNf&z'E~!@@ ^w0Q&gZɳf5yY!눆32$7+qg8,[˧Fj<7yr4Em]@4u$NCoS0/pA88|7 (9غ9m" *_2FY;C=\-J47ہHXՔX6ݶ#+R61T,5<K=XLf+˘"bGu1f銰k/7L~X=//# ZQV;.HjBS&1EljuT5pF,b_^[XSCa?B! Ea> <z : mom‚PB&@/߳[h(~WR,dNªف|f2ۀU<4BV6WӶ vhQuIګ~긷蟁icB8TNXr2m(3{ ;#R7ь PT9E:#dW(`S&EdB;\ $Qx\ s!{=H:b3taUd\{MaH5F4.ܥ -bDӅH\\dyYF$ekwruNEpӧu+, .Yx@Oy4z,4w07SSv{6F.8A̪D7iYLe' ԗjE*ut_az+R&Zy#Gw%ڼ1&:My*/!ˈr 1>;HQRiEF<䆐+)e45UqBSBzq9Z~۔t]N8} "U:r5^FŶ1ICoLݙ^V"'#9*V%W({55x92:6آʘzv (qN. Zp;~JMEZwM{yneˈr̭ ƲA\~l{OO .Ɣ P}7pѰ =/ۃ/h謌 b>od̳M7!a Y+?cIΊ f-KnXG=|nw_5imԺAȉ^32TJf zGN@h!hV:\$"9kҥa .<~#>}~_†C;6-0;{Z#1(RRI㽫bc"k+;~bDyUfG [8 SXؠ"t*t}?jDPp<CP@lzW}lytn !eHpA QMdqs`4|*hHf,8tp͔GSqՖ %,%]11]^忻(2jX%Vw1x,̩]Jܑ<ů E.A] (6o[1(opu>!W}Q( r0Tc5&aaԐd̋׉S]vO|ϋ3PSzSW5/=8ʶᾗZu3} }T_)]e4N"&ШP6iԞ!u;gcm=$ [_FG ՉF`42D J"eJTr}BtyHp e&6v2aXz% !LQ#$5:FI #K /bʷL=b!WjExwzlZ4̔S* Bԩ/9n:?r02N[@f ދh>!-ϕaZmaQQcU& 6D'z ;tgm~+5o <)&[]O@YxE# gH/ij 謁w!f5Tbo`GqjsK?)4{ۇuDgR6NnWӺ!6W5bG100/?\wz2 I8(!z_thꔡ hzZݛuDC S9GPW^ZmYX*j";}BLyGW*wdP040$mU1S׋>]R3lDކ@т(q@OteeHhЋNV6}[-ASuX־EZn}4,^U-+)I.jUXzy'tq"Qgu1=B2'1q0tԣ10| bCW_ē ̟/6Ґ6ǨkA >6w.*\y[54圶..zǶ{O߂$ԆIP m5#sMfIˤ>"ʋ%zM`u7%:vK(_\JfZ5nNGȉnnfXz eK.y^\Nfxd:VtNP>|:Klm=〾d8To p~ vY^b |Ay6~o2RX˃NvM#^G-eGcAc'${>YzGcQm+!c5<қHz5%S~Kw.;EmXg.J%{ߙ/%t1(]xu\"MC*A XMtE]Yt>9 \DBRC=lQA (wۀa?#sجlZ"〲s)>a~0!eh9}?r)V.ϣKM1%jkUp>;idŮ͝(;!b鯅ao*72K9h !zԼw=O@\c+!^e1»} 0d(n +*Mŧҍ{WYM)tRv=]Kċaîb)ϔDEZo j-I8ӄ7ü=ݧQ{)w +dtN36MB &2ËT++7"̙ % f2:£sV?scv~%.sKxB~t$md;<\_2;9jQ'1FgQJ]jE`拙rFHNo^s\Ш-5@[F-EJRrE!}*78OyF`Ņ|3x^ཋ$%T2 !;$.4 ~6lGhV4&| Z#q'(e5+݂X!<4Nby%J̡'e 9/N6ܱ{m,$BiW$48>v>\Jї݃"wo_ƤD{8 Ο7+ve fQw]7?p9{Z?e|WرZk!lr%jg)[hgܧ&Biήл0IckkD<{hh_廬X,FYZ{X;Eó-k2EW2We_zT:㦇یJԞ,Ϯl<$2xϥ73iuέ?Jų,1 2v(3F(IxXbvvOAS-F[襾::%!YDBhr0Uadqچ՛XKj~^4#^`IR1qX_h9BK#~n7QOgߪU>)nik++;b Y(W>؇@&DU">Y/vmNũrӖojtX֌!!2ʆQ靨pCHR7!-,*Ji1.hwqLrz*P^GdnPT)]\YzF]a%uLGI_۹d╷cV v~/UcJx:FgKZD INz<5)@Ax$^gOT u|_&T7PBZ)M]FUza{ĕy.Bd(_^+<b._. q9_RIuǏ*!M^GR鎸]֋bgc劻]#(FL?] gZhf`{zoZzFj2;^AT#hsD ʂ)L=ck톤DY/93Ӝu,,.nᐋ |:4v#I0ꐠ>ۡT*C]w$1A4o0f.@Nj*Ea2Ť+|! CpK z qaa, I'jJ"8yDe `@ި7M8M6ƏӲ9N@a>Zp"p ~hD4Ќ"!@Ho_M^PíꘀLN# 99.`67i-M(_vՈ><$j@,%$mz!w]Y"`>/ ,CD lS ܗ%/w!Yqe$Fr!KuI 0|Kю}KyXSX҅^Fŵ|L<ܑw^ad=zZxd؍Z}\$}&t5UqHXi+`JHS2>g,~og4\gP;1h~ZX9q8>{Dt93' &|O ֎ `8C1)\_i5(/Yr?Zo໯*ZSUկrB@&xaF"Yz3PU;}6rP>ܻ>TOB_zl%|Qu]皩у'[݊2+G?vO9G[)qpXl->nȇ8} #fMb/韵?N?#%0rpK6{keͅu}+`kEd&œէn_ܪ[f>`EMï{$ M@$Q ʀ!6F3gʌ@Ó xr_7*aORtVn|o$5..]Bm"" 8+n DRG'P mPCukq$ˊ>q@kˌ-ڌG&sdD_#,Y+h=Ź$pc|NuD҄('![WH_u w=>-[FH$[KTgd!6qq[`SNJTIՊw|ɍDK8ؓرjkCFjTYE UZRn)2 >7#*ՆfbR5gBf L&3Fn9 lo4 g̓szͿcn0WMTXoڣAl9"KrLа4t<݈- cڑ6ÈZF gĐ MafY0y':>5!w*>Y~MRUpw:x.NH&_sIG+^vΚ ":K{'$il<,9і̨p@rn)cBsw֥戮n4kID} ~A#7b zr3} DM2]9k2'!RQIx_ooJ|Y4k_LUdgoks ]NZwVUc [8;Z젓`\O!s"`Zk[UeuTQ[ ^p^rFz#EKˆ~1m͑~ NʫylK|hm45C ^S|#*享FU zx@,.AcW ג礵 rEUؓ7큚ӱz3OQxhzxx1z_4gv`Bn# ҧ{X"|߀x8{ʢYg&dG`eY2ѿt%'wHo|vEB<&~zG_lR~$ DZJhΨ+\YԽF[-<^A3S7);!fT͹*H/fD=,ټ/aM[K;b))ߋYu:t@,ŝiX@xA ~(]q&Pf~}0-4:-1UI֓=WůO`@o@H f7A$,E$wjB|3Gmm*PpX8++T9{훋Qn:wW6]Isƺ}|zŨK&ZaGƦB2u$FQ0C9^r$ӭhsCf3D]b&;.&IРu#-(axi~Ƌ ]F,UPRMLSˍMzVKk?98(&j Gn-`_B>YH3Ħps:8G xx ZS-@C My~A)5.ֆrj؜3Xtjr;cȜs)A!h-2r0Uc( 1}ğ?W Tx\T4Ȳx㟏 %9:#QՍkD\P&&}d>L [5Q5 MQUOhRMiKcÑ$ŃoU|~b5b\|Y.j] ҧS ynI )5PcP5 &3x(E~O1]pyTN<+ `QSkwJ>BnשR쵗 xЅ:<Y撱R T!IY8s]_IQ0a<3&(Zo3|/lR: ?$dtcDX|gȑS߰[}ffm4HHKlѲW,0!f0pf~Rq ÂT 7`-5orCw4-U e'<6:ŷ,m^+V\a?v'Dҽ$\ҭWm~zxT-}W@À@w7BL 1)}:AVSxܓBblm;W-Vc2TWlWDDrޥ0H?hM-l~HK"\S/|Pi% z?oHK˘y,pRXM7TqjxF7bHP\_G){0壤&Zqʍg诖|û;f%̋5J5(]BKtXC߮([``|ܤ#]S,,z}6 u3z0N z,!lyn̪a1"Nk#/Yf2 =TVWUϹ)#g<"GBU(t !66Y(UY̿;yq9 N+ؑ$mk$顝5(H O[%6u X(EY5i!6@$Al8~v8zJ\AprUu" ojLS$AbAQs\4߷+s)ѭ/T+@t:jq'Q|j-RwB2'*Mq%%:Uenݛ "B1Hm<˓NHbXhp3XjOj=53@6ǣ]{#恌ʟK-d y4zQшZПT戦]Ќ'we&zYJ ayY )A {Wn5>#5M0>@T`iȒs  MFW* uq[9˔|b`QɒVUa5g"gC} C`~K >'M=vr$'' lUfg; "&7K$9zbuxsr $X@m[zd 1B%bFs@k~$ܞ~C6}opLO >@ߝ AP $7Ä94 dvһv]R4Ou av3i#?[}i@P}GJMhio0wV״te0yz𪰽H(2lj q[Ql(H'"vhnmveZЈ r &pѪL&4`I SgDmjRN<O*WyH~dspרt[Zq\˺jhHĸl)QEjh]% M.0vZbgx֏9hDVfE`wpG*]_G\Ayq1(%5kbu`0TDQ+!I`Y_:lisׂd7P[Wi<!q72tE S`xh4&dIؗPg!I(C' eڟ kvA=ҹ6J/i-?:ֱ9ZVleiz $"@#(&+!_ȄJoU&32"82/ڀmB݆_5`'8(7*4ȇ/4\k)@a@ff bv˭O1f}y֟Dj/ABY~$/OJ3]Q= 22ASz}H$inZۡ'=s`^G 6F>{Rr C L+j;`04Ӟ}<}h6CK8r?HD!\tQMS|1LhMͱI_v#MZ/m3R.7RD,ڱ,aqq8h~qAS*PD)CCOz5?'JBmv5*)=JTR XNFG%'SPk"DW]5S%9_4KY99b|8vK#6wC}abͿƿN {#(nbpּheC&dgvJmfpT>Tqtd߬Wx{!TJOL@m3\I\*zDh<;\ $xBO\^@:#/llǻ+cdE_0aqTkT̆1}*0̜͊ŞG:rcߋT ބƃ$Fϡnfis$`pJS3)}t _P@]&zY}9.llL'bGC>(Lb44;*2xZ%VٷJ FۦCffito-Q`{Zq@=z0&?u[kx|왣E+໊^){6C]6jTr!D`1lf_}{iGFl5|aa a;($^1DO>G̘|FXp$?ޞ(޳#|&7_(!\ =@#594Or0ջ]6<7^ qKSPQجl]:%Œ- Cn*d-Ś@Z BH'V nۘ {zǑ~K#Xf2ِڴN }8+~QiQ~U ЛQ=%Ӥ֟sU^BH%R:v֧Nm*.c⺸DcӡY{-FW4qawZXmY{h;-h $If0ԣrR ط?`H_A|4ױÎ%?\ߧw Ȗāi #a X ronw Q} ufnN`^[5YdoFآY4 U8Gxaqg%tķVUw":4 9H~mz ԼGlHPf2}U@|ZGukŌvM&a>FTA@<{ͯSh+agž> 5 xܭ;\ˀ"_!Y D(WefC&^oo,ԛ0lV+?RtVjG2OGu5v [*1KmW ?=uV#ڶn[SaHxNWsC| { ڵ]D;f"0!0ot%. GsD=8V㿭!=п극FDXG :7-H Ÿ4`ۢLS͡.tb҅9HO][eO* h2A-e­;:?/Ws~cJ;!k7FUx]073 ţ@V.U(i@B6 /{Y㰼s?q1=jqXm'}pzІL8*l|Ȗq™XW:%+%R=>KwUqus ,o*$4FK=|[=*G>ɕ/fjR 8jt9*4S7cvxM3Kw1Evb=(zUj8yhp^)*V`dU;Ԑhr_C. i ?PD_ZXO+l=46ǫo^=U\{>M8fAI?ijpHU!UQV!ތf~[P4:.#YZUʊد+2-M(R ԹqELJGX́)Ӻb<Quãf#)@-^rVNp&_|v#L-r-9afd[1 ?RcT~JhbY<8U}Q7RD=Ψ0m&ʚn?r+ql9dc0҆w˨ѭiE~iQ2HN?$n ϭgy;FE1(_K`w t 2I'l;ќ0]3 l \fX5hWf-[qnLɯ,]IǝNRZ")i )wuKj?aV:WRwzj18TheW ʷez[͟_lh93>--hRJ91>@&oCx@z83\l |nK.;"/k+6듪ض5/ДݎKq7Їj!lyL^>۱vYr9|oQFL0$faZ|}Z)kvYa#qX8+ݚ[nº*SgY lY?GEfL ~-WJyw]G(잾o5P1$e*0^yҸ]SԾ@KtW'mFxV<^g?<Q dC1$,H'2-$3JFu>jSIrT+5qUD[lkw!zLAl/Mfcg7އ}T\Ak-ʥL[WAQP3aqԿMϕ8#D8旟MfRwpN̑?} 6MaK ݖ0+PH(\pNm.(j16AA$T)ư=TqQK!(iВB}s,ʄœJٙ +{E 5PU"fBd@ l:e~Et=>d:ɖ޽Jt#5~և({ǙA&%R&]̳]swA)9ulUϮ^ԏ,!4N'>Irhf=G"S o\q̒HeNMd!Ƕ>>PwrӞT *1 mȂEz!ސL2{JIo6{F½f)-ihwR@.c-&֥mpV$O. `1=JG kXqpl+%WU7ġH^n7 s~/CIb ʛIR"*o Y)iIa CtsYZ G"3<(sр0 Xڜb* AZ7v:nd#C{M4gE\;z )Bq dc-+銿+(|?SF 5{I6f3%bxJm.t;C]ӢpS3) R+-U,n F~*jTAg]qCuXo,ǔźբf\?n@ߛ!a<-seITs|{bq'/daa|JiDA!4bS߹#߁# aP;VmT%䖵4E51'.˙``Vʋd xBxy 1ȏk:ER2u =Z2xT t8$SHtbA91*x[ t5V۴7ĥ5d:{Ij':if[=6=B;*; l27{?i*~JzQa{]uRMz-B0ϐ-$OCbWs-(]fR (;98n@tR 4`rJ<"xh!^eЌo!8=EqskcvC W\tM?3L6}!i.Ƭ]CMk^}Fmj>!0{%'j#^=3)@TG1ZrS |s.XXf{1J*P?0Z/lV>0QlIpjk;25yD ?(ΛJ˫ _VTvx#+DTణGa:4zr&:Jv\Ebenmrּ(슞^\{[d23jqW ٕ]卍Q}F SSx_\%إvD.4}\j𠘡\  m k%V'ϫ(m-,ðnȄQmm<%*ϕ OpĊ)l;#p3E*lS&.FYRѝPȃBJ{CKnۮӢ8XOFkvJ b=}Eu)#ZSnI}`rP#@m;3TZO*W0֕%FtRV';h~zY&˩s6ԗǼD}i9JF_ *@vT2f`6,qU9r1*Sm7m+Tc0P+L xq? !#ly یÐԲLUWŶPiK6kc[_+9b^^:L[Nh?)ɡvFyww?+-V̗G{2=~v9| ոrs$óuqtt.46H.V].cy8y(ϹK6k_rt8>Q[V50e#ޛ7S7rxv}X鷌ŭ#3 sPxUc$KE:Kۚe.H@/)6d ]cB_/bV KU>9<&:N!A1˂5VtAxb->]NQ~*%(e$'XY6BΩDS|25rguM"j|[|y\T^)=;-4+BH5rN#:g.. EydUkF'!o\~/Fy4ϗj+Z]<|™;XM5ٍ a#YkM!A& ܋g(_B dZ~i3(\\64k%6d%nFƏC<". XpuY_}@=^+fE:M݆@|WcvXȑߋ:ChA=f=./|増@5+GY)xEȠ=(ތ!P=GWί.}xŤ" nHz‘.xaEpa 9]d6KMi nLsP esq&,"P=d}+|b0ssGCj bJ~b F7Pk P۽SA"jscl~ Q \Nt6Nw+[ڐ3X!v"`]L*?PuA G/PUo>]{0G;3 H7Z;PT^, wv`gLz$@.Eḑ;82[mG"}kr,~nNPU 8Q/ ?UXo]@Vq6i,@!f/Dz^=GWъXu-_ϑZaQ4XNjS2+N4ESPܽQ΁T%Aޓnw΂I2YK9 Hba|~ BZY{YVs>3}$ Æ ~ccFTےirBn5J7Sz}1`C` ӧo#@62Ve} ma\2< ZJ6 l% ũ+n,5}{JOKiaɪ9jZֹϜ&v/ȺDD6I3ڞ+^=eF%L)mnjdmEjKܴsf2 ?"mUg@ګ[>_w53Aq1mgrt=pa' 0 GU E?a6]It(ӼTj=qW:^jRY#f 6`d\j3/D bFoB٥'#jr|Ӡ5:/Ϩb {.oI+[0 0ÒHUy<}L K (J|Y+o Q; ydh?fS1W6PKD)щ;eoSd(J-oʧZ2cɵZ4`,ZS@H/❄5Bl<c ԅg'[@GjǶrX$iž NGR x3u=ΏM[z񼘪;leO{.>֤"[qܚsw>S(#aA'‡륰hؼOǼ!SJʂvB/$P :.:3k;N{"bԕĜ ĥ~n# #wk+L @SwH2_I5x1}Iƃ]4 )5o\_⯉]&0 ڥڷrx<~wZ6:BwR7Db #ZUV:Tg Φ!9;ׄ1*-M'㏇ wĤj#3 t]ⳑQu)u芠ygMTI֜㟨=ֱ۬!{^FPI_CqmswY))D?`!_Z~ng!.5s\z^GV&F^J[ ?Vd5 [M\anLRCJ(i-aMXw{Y<_Nc?ݰɝGBsO*/ͼ 1P KAC+x=K< ts;fJZдQal W-PE,;EѾuqϭpBŦ')p i_0M. We["AR3,yz$FjV&<-Zs2Ah ZDTÀdjlbE pS90J9f?`CP4QbJ_(dydl]EҌ|<]< ?p}+SbE Y5< (Q*Jmb'J NMxO`}#G w|z~*2 Bll/b)PtNeIUoQ 鯀uG~;9a)=i{"k%&W bil={_^+X46bL.[n].Dh~HV5!m!1gbC m ,&9zBCe$7(X7#d ny_Č{0f]K_5AJpP}Ȣ5O'z: HlQWsɲKE 'YV}q`zm(]esMx>"z=包^ &Q/:x̀ /X X2q)o$sY>W#>.B}.e' {* ^dJ #_ uq,4FyFvz/=.V%XF&A[.mCMUA tG2gsӪbR Ri xlIi+Gq^yd&~'DϯG-gAKʙsv0^_PP(BlaynZ[8=V,2}H\ڹyj3,IBQiݙFe[*,ϨǁV@lqBo#jIdȶ:xϗ!_ld7'+^6d Z*A 嘑I^jnMaaMaN0adTvT^aыJP=eـ׸Pc= (a5Ie55ݥ2{PT=T5F2{߽~X KC|hH:R0e\ϺNyx\K͗ҾZj$SFn&IJ Zycإ-obO?Oxhv&|;=r$B[n䰑t!+s_@cpzlhxnq56>EWY3I=DuhvZLp>= 9Mxr{o<478K^oNrα5k y$lf-#19]n`EBNvj-xֆ FOG$ϕRq-Q{ cr" k}t`+ݣtQ^L/y{ջπ͚WNynh,+j^: ΂嵈7*i 7HE쁁f. )Qr v2e$+!%tOFx7js}N+evw෺":j9A֍}"u٠#UzM+gRdK2W^lEtM`מ P%~dA =[8,_dH"=m˘1mLݾ tguG6.I(1Y] &۴4i*U^[\}6i{@C l@YV){M_''d@B8'ۄ8 vGiĴsa$p C0j0] H-b9zWݘH>Ǧ@TQM~\`D ElnH"wΖ /fd[Ȓf_ gk:p"-dX_D=2YDž7N& 3a$m~Qru5'.(5 U=4* ?7Qv=rF jZuݳ;iަj?L~ J*OP={ ͮw/mJrxs@8P:(dfF,״F'7sE\,fU 'òkqL & ! /pw}Z}֭!aw8!sOuqRfSi~.:V#%l-Y5<4%6$%N2k_CWRMYC17v(Az"^ e-o`t.wmF;]qMZ輂\) m2]^,8± 6wY;-Qpȡis/Y/ٸǯLך_Ω)·u^>{=?!'yz6]<{=Nr Z!|ea0'/> Lj^ Oe#P-%Shx9_Dod/dV' e- "7e:ZB)[?->d4,.y]TA#2R:0֐r~ﰆ\* IAO3 1$2owʼn/ЩAtbmmy L<.GxhX8o1+[/BFCt-_+@ yX6: Uz{es)t#΅ůtyƿ_mqA0^_m7`18@W8]sȼ:g@po|/DZZw<_Ĭ!|c^iV,dqH^RwkŽY EE$ެR a|Ξ@B%fI"@nF[OPMtx2?YJ➿T:h_< `'!У9ş(.x HSvXGW[3`dbïmwLW˳%Vx7pȥ} ̱Gw Yb||Rcm.Pp s{9V3(c*PvؗBF=ٶHM F8]Ͷ=醽#ѥ rQת{r:eQ` pOж~]14 G:ǭVW0 xy]Lw(1#9.1K[2VoJF8ɧJj5Z~AV;1&>{˗72Ym}I #Fd #zF@ou)|b@ EF| t?0m]!.MyBʃeؠRhWkG0A-q} j-VU0XZc6N/ӂWtm#Ї Ȋi5Qn6PΠcI޵؍b|<9N] (ȦkǙ_=bqUn LגrZZh$['`8%O 侞k#O4 Dm[ ȕw%ra/:w(A.U5쏞$jW#ʻ4wog=K{WN=]OϤA~!}ػ8ܾز\ڌ.#9xORTs2 /yܠGNd ~m' &֍qJ̃ǽ}E2xȉg"n(9ӂv[lsV"{y80h){~Ki >8 3O]OYOHǝj, 5X'pah2WU;$E8|~m[[]R^bnPIF/xk&&g`қ+c,LށSV"? jqlSr$D?=Υ_:z'&^,| IHmd#oѶq?YSbvPUE ѿ{͘0;r2`hac Cr\WVL 9jʫ ?]p> _ማǥ8}3=iPC͸U=ڳ=?ztO@0/eAXAy(qYݼ?LjlPh w]<0&kip㖾E1=_ݛ)ýDo5߂ Or}1?q׵ގ=2#"%[YIw -faic{kXHj:ALHTKͭZ麭RoIW ꅶMF:Ͼ`JI4lo"P@"31 |o . t V7s u[՜==z52fZ&8$ |/憞[@ܥ"L1(>>Q4tؘi~vq*{č mK!JMhzY/(Ҳ nXN(]3H*7C7ΰITw`mpGZ'Zp9jRw0 Voh{4RG 7YEBS9,&X6n޿.+gzvˍسuəT ) ovuv~ \*'бA mD?yXЖSBnj4>UGрcǓ![#6TDPhl1I@YTGyd@>=*T6ar7,E4 ʻkD]8 n LR 9 A!!K€{ dҺ4.k𫢑X82REz]Un<:-@]M}|sЊ M"e aE!Z1ybu4bHqpXic=/}t~px,V Y/+S"&ڬF]$" (Op2,mh؆d-ME .{U3g"̈́NY` @'#"*SfaaZ#NhK>ɭ\oy$AhAìf ؖɦGYm0Lg xpٓǩw+"Rqڿ`|#  @p  %8gL}er7[Zc+Z2IAJqS_Aqp[2e \^P*WB;** >~;GW a6F䫨QEST\@;~-G=' &4Tҋ*d6g_ CX06{\ӷ1VW*p ELPY$a 0%-$ժ^q{Vlr*rS} $jYaG. #t)Ils=AbF7$KQ*Cl!tMs^].l=}|j Ha+ h?#,Yhפ|g`w 7 Lnkt&c+X0[1x44+M:1*$6| CfeW5r*ʏy:L8=>rE$cLrV:G(I=.[9;J0XLzYZ`W)CիN)"Hsg9nN[{u)M }&vUݗrfPʇQAp3 cC5),3HXW$Csĥc-Zj8)+p{+VY☳Ɯy9CB`CUf7^;˒_ z.4 OrGCQ"ڟҭ;@b 'Զbc<^[ ڟx-kk QfB?Fj^";bPק2er+fs} Y+Wߊ语@\MQ\cmsgb @2a|uy2.>Pl.l4I];\iBm7HZ؃;ȭe8PM`5oS{fR YE]А?dk yKzS_Xɫ4HByF6a.g@bfqP0[M;Bx/Y J)fsӅ$c9 %{gRRxqf'|\OOѱf]sV |: e+D%a1qz'E0ݟe• )"5k>w1܎!ղ8.**"ܑgh7Kz/-~]nc*LVehX %h jPjJ՟vں,@a ⦚\WI8UnB*pr|cPM1tlvec#5$()0Z~.C%Q#EW=ę &[|.dd>"yF14 &$Je UЫSK6DLIv&H|u47z 7I0*<6Fԥ=b`ڝ6$}Q^1}X@QmSt6 ŷ2wlbf$h6h>N 5#dx;/V%U 9"-e3ڜ b#%9$~3QBD )#=| iM!p;d8z5@S$;Rw p VL]}}B>Za^QaO!aF#oG02t3r9zR?c `NwQP@@I0%gFgpwhU*|iϥ;)%vґM!<`ʿC8NZoT1Ywi_hiZ)046b@m#Fc@ۣTT_-FHiޣPe!!T9J4a-}!tX "<' F5Ɛ3'6&W}dk_f? 9l:dg;xMՔ"X58g db;8a;5X'.kcew\fH 2sۛbOE\ fEco^$Hn['nKf7Y,T1lg&5omYYL۶vy[zSDʁvm绰sIt.* #c%3&E_ƄA7K,q~4 A;}` KDǐh-F@ow.ik(T`EIsePV8*m=>A0>: ǣ;g.k 5T#+@>W/iYV&)N}O]6UB?S$VhzsOUcWBJ;5V%ga4Wc-#שOt? QlńUCVNnB^|Ń~%AdOT'Q!F kĚs'\ Bㅞ)N [1r;(oGL&wU+4~R8%:VqO{&/ Qool)~E $Smuol|K'9`XjkD0>Y=YF;}0O6VL#8[`V;9t^v1h[o9 nEpqMVIÞJȄamW\ɑ R 7L}Qȧ%?KiN&hߥc֍T;a&pcKe7]PVިb欸N:0ߩ892Y˝+ lՠfo708 n- l\lb ^6)"8}~;!ݞ;lF`0D$ eUƻm`=VZ|p"E=Ij4;Jx.Zw'l}lʷO۲$ǰQN^=d&HݟUj}2'WLKl ?ۄ)OrInpGQ$E 19MoEV]׆9$S S[ROk,yم *sdP@j ]P= hh,C>S\LvcfX}v]1\JuY:ioqrUMǒi.@1 CE&_Fo%9]wɦ_8 3#d)(Z=âA0{%g~"LYMj7:{ZqyD eY q(frZWN L'$THO o_ȞZ'T>sN1^Hk*UʹR}EW7НiwN:=qPGCpuoN2MO#cwSL_.q(K,nA" \{qro%{{0lJ?L!\,_#AaPI .At;!=[#M2( 0SJhPrfI oj 3vD+v@>W-4jh%1&V%{`wz \): / 'A(o0i%Ox8R!*lŝWB}a\-D /x#lk@C: e%:Ҕ2Wd J7bBHO^?r{tӧSҏVy ʱ5@u8cFB8cU䆹0Bfgh?&O[Y\<>|Z)+)/=j疱-u>$ ~{SKχx~ 37'% ŌЯٓj9:y_:4Wʢ[PQn BF?'7nVU 8 1~'F(Q8ɕuiJQST>uН3;Vm]x Hb@Hܬ$}YǹTݕg(ȝTQ?!+$z"-w"۰%0US26i"Kύ."8PƢu;@ɈvSs_n Wmgd Ѿ04:L htF[\(xmV{DG6Βh3F g)t#xP#E7~ޣ6 }Kir` ԽFa*ˏ*; 5;y>φk!@rLXiB~hoUd.ofQX|"5*mild~8^`B9D8xpքz uQ%jc8AB!=R;!|PZ"Do'rއ/V^\*:F$w-Xk)|Yܷ4>~sZC+YKe_C5_05ƒR`9i#y=״;Smh9:ikv9I}w*=,t3Eq,&(jnUY*ٷ;.j'TKxԜwJn7^ȇ]D$}]_c(>0N8':% FI[5mR5=Y È/wzE_ _@s{;pXKkz`oE&P)"{8"o=n62A9Qh?jřV;汀.ȥ>O*H,,L(oю/p#L 0\H=aDQnǝ 4me!]liB_'c&84׃,FCeCtb\A+0Lӵ3f %Ԟ2X)]R2Q1fLXǽ(ʭRW[vq"x~ ~'`9ˠzCף4cÓ޾1Do 62kwg?zܙķ"bj;r]/O2 3.1WH$vZhD!;3=K^o1=k-HP_E`ţU "G_@?Ȥ@L㘆0څ_|*`izX'0t?(99=I8 jL%BjxEjW|@Y=m_ʜG;wgdi/u#R7ĎuƃVZmax}iCAGO4z8T46o=uңDGūAI~*AUr1LLֆe$gXEzsPnװMLڪcYbFU0D)}?F|m6[,nCcZW$q'[*3%qb w臃 X @'f2 SvZث5&^P:޾f-RcIGq^_@_eQ!cl1҂ܗYj'a,@\u׽u3w);'L$9IIVLص"aB9ܩx+(^s|]QXm "|'ql ]J'g9mb:.W);{I5SE%]~`b0/;&WH!:"DsT%Ki'yQBMР j:gJݏK8c-fd X]yn|]Rrh䢛WX?Ӂ' 4e Q$Foxw;tg~DֽC/;]y)B{F)]Kp۵d:lP$rz )cХ˱7rr֪eu?t례ҡ\K{()SS!Aac'Jζ$%u'w2u6v`6\"z`f?hI"8w%?Ƀ毪SK7/]#"bqdr.ܶ1웯#7Q=PZC$Q]+F7!';rB1ԅ'`Ahitvl27@@Fӻ&;hEH-{y ckl)LxnAOwMm"EYidu lYK{Nw8]EC"ӦFjEJ5,uddj2T] D@o ?`!Y/A9-|rO|zŒ##KS10-k(lJ~fۥ^ӯj9;\ OZ)+0ԙ j6 ^#\gИҷ%%D 1\?{:a@2m۴_%cN2q(#+8H$vKV%KB0 %$@IB,(t1~Z 'Tq@t]<믶NԈ'*1H Dc!c V^ c<#3zZƵ`èUt(zCFXC^q$h?2qtbxzBsoCzӳ dpDI[s)^gvys#񩳘+(sy4Dp%)E' Tp']ˁ' *J |Y> k]xu4z>ߪqֵ`PO|RN`A@*3vS/' [' LX7ViY~;U @؞"1n&67e^uq\+% Z:Lnn(̈́:ͭ/`ݼS4$dK># %ݝ̔%C$+؏HhZ653aY(ZLϞ_Rrz_42)[gkM:3Nn:n^%}Lv=|AT}aķn^MPߑΑJ%Eu 7"&^k.R^@\nһ=|zM:>J୿ҕ&]Z|h~;Eh!΢j˪':M*4J0uIv; 3D `Q*1rIPFHK5 ]cy ]B ¥x9Ԅc[K?ׁME k5sӱs2z9fB)(SڭC8$8=aeD >ۃg#P#ZQaD5*5ACKʷeY(e|׽ ܀mŎa+0R0UL0`&Z˦!_ G$\f@TN]9ᮛd &`4މ5{ :OĸiͶ :M7!Ԉ3=.2Y=GRX$43URQ``@˰Ѡt"nhTDY;s]LnѲc 7fSsbd= 6Fut~hP&btBXǼ M x{fk6U+[Ն5"M@/\Y=cFpv3Q[oR;,"&UqPfZ&[ͲvORPf,l؂2(߰,0Tr+{A+7/(~\-140>5#b攱5l}LR%SbE[ZYH[jFب|DWbѨe)q/"`ItiW>>§^*Gx ^ vkBb8miH,y`2(yQX + AϨir=E6<M YL<1˛[}gA|4NF>o#OkAIqzh)N_M90josRȖbgǘ{6vXY袴j"f(RF{luV25ٺ +$e93c:C r"C(+y D8OjR0:dN߶'PL1.ފU%¿SpuLQ"8_ڢ [*=5I(Ti&)p^w;sl$3åх`` ф J:'zG}P0D{] c<9D1 7Lrwh!Ix +A@B v'B.; )˞jV]MY߸o}\+8ik-w7ٌSŸʌ j)ƸWKOpg$Zv7{-?V4$ EY2dnOc'_oqdG$otʠwUMa܄ ^ۜ-6nr$>E5l-`@x~G˹ᣐވ4s@lEWnTBz-wn{T0[U 27O`%hD5qnC mkwrܹ6zGJhR,]!pxhU9nst_*X.O> ״u#Xj6ٯdb]_})UR`[_[GӾh<$q͇|wⴠ *ϑ=_?oVE_xQCq]E3&[ƣ^a$FyjLW heU֥T_#le્`[GVV[+λ[X Q.s"rn=ic4겥7vh{lZU\M(ڭpX~$73ӌ,ʑ-J`gہδI+QF :[Y)QEoDeeKu[qc]J'{HAu/,#vX-־D1@hzssKSyXp_?.@XfS$ AAzZ DP 94߽gZmƼW=ǭ6B8w.4Cp0ytZ "0?X]&SݦS:xpxo(._ SR=?=C5Bg~*}kJ6YQY*wqvK6|H%Xl@R I.{̴ ,L<xH⨜b7 A0́(]g>uy^9ys1O 5yr)dI$ia^*oeu/ pb˜x36i'r򈐥m:J|5D-2tzo]}wJa<%K<*`)HæV2Z ]ȝs"\ \IZ) ԾFCHe]Q8F$eɮ}37iLJx$1s11hV91Ú՞ ?: u k5FZp ?s~2>mOKkͨ.$RkS7]ڡ Ya(#=]#,SUW RFD_<9(hv)}(͙{|F"Ms৫XXfF=d"}12Y}yDޠyKWbSė}N*k}$#{ XXTN:lb;Ӣ!v7XZ. y-[φls?ɇ5޴q>86c;"q}Sd$ `#kY{KJ@ A*T({|և~P.[3R_6 vdk6=K˙٢E+n2!LcD3BDmڿ_S$fo+L T@% #K]_;f0eda\cїEa[+>։ri,o4 ~ SH|HEm-.cGиXܔJHS<(=: KԐj]#~ي?}s:ltd;K~.sL4;ϧδMsaG(`;RUqiKM#sm*K˦0LD{&x-PRZG9 !!?CJ}NK"'mQ:cz\<  vdѮcRG@6l6@nc0}aPATO16ݖӭH0N%yչix5jP@.VaIp_UC@=wD,5Jjr76P%-`sp"Lv;1Єba)LCT(=z\TY%C'<JW#8QF@tB8[ `x`"ru=nm)'  X( .bN9/ j?,HiE@>Jctq ):P)ѱIC&# (н,:81=3'W4c7*pc_:"w-L;>h:ɿe=0+wtK}ը$P!&ES.uŢac~Ib)x)pG|u;g)iYqFkFaGgg}9+#]LMZ$,kAX&i"DQ7mo?첃֤~Þ0XPG٘0d9,|IfRۿ'9 =X3Eqtwi|C&GN; ʆn5tnNq›M^klpHj$4SЖ%C} ro1?W6-e]8b6llG+&);aVݪ{` űjQHiw>ĦK\@UMulKc_@͆sB*D&btaPEk$4V+YٍzVT"t _4T1hb)"n^ -BVҹz|q^HLĭuS?Yi REm)-zl2fia׺ـRMįUO{@C"j?S~z1PVDQRn_(T ulbDу=m 16/am\QϵD G~<#氆4 g\ygnh0Hdu rAˬ<ק !t>dfYW^j n!"O, -US_6KΔۥ 46Gm>(~nAO jeubMC% @R?GJ4ޣr /xHB˗("U+ASkx`[\)ׯjl0ł0_d^ٍ[soMʉ+ Tk|hǑZbqF^eӅu΁\+4OA = @gɎ|W]kR7”9hϏpcjxВ@|^Acz (v q>me4WcQ?;Er㞳{wpwq6`N.H[|wOh.ZRk8fmp ۓڈ|CVk|A4[ǺC9)~ [#?,f :0qk/|4v~~r\Oڛt/> vr@ੌgw>Z-g#,GنNsw9q)9<>(7f)#Rd{my-2PN gu{_Ah_"wtǤX=l,^,@D[@K97 }e+6+z5Fji e1Cg?dFMڍ3E-gBz^;֛Tsel'"%L7 +]K9)x |oUR<,#֩I[' A %Z#^ATZy[c i|%/-c џy-h%#l$ qdk'"àW/VxH1ψݮLwp +6#sq]}5<&m,/\.R?\Δ{siLH^-&|oAs5}qzdf~|72Ą<_\!+,ݗRtj'JF2cXf/C>~'We#I) _g27r)Z_VT4ՃBut0_Z&?)^yY$Wc)R!g_VJP㵌Rg"Z`ҡK}p2?s;ǟ € . doK=\YXM~It@;H/(܇&_g & hߟhqZR\@ ,=:uXf'~1A}Rn'qC7 VyStQ +M& ͞h;%\iYH@dT3)X|\ŞWsJŵ7/ \w:K/Qu< YFZmPu|1㮳?Xz1JdԹjPIpS. oU8m,, 8_qr#F2F{ķe+(pnv*OpP/M5h+&V(>A1uYhk#tؽ?>e.q#ot%UO31Sr[pMO=  ܄?LA*]V#{"XR­7yͺaGopRy1hTP pd/u^}'֤Өc *,1󀥼0/+'zp'[ʳmf3m=o q6f IڌUN8 RXܠњ^J$/Mn0A+񾓧޺3 :~bD, |Zi^ M7ʔ5+@Aیq/Q IBo5!1 u_ں|x$&9:^~Er ߗQ@"/l&y84dBc)`C̰,▏]Z[D ZPނ'9/_OS;`b,7BJC. i_,M|,Df6813pC<ݩBM'A1TZmih8tkSn'x9+bVB)w8CQkaf@Θ+ITDpdvry[\*-+dP ɞ[2Ǣ}Df$e2 \xՌ#?k,;U ?H}m c  WL`.,LlIwsi 120@E50v%޹"C'>x jz- F_\Ӹwϝ#ݧ9.tt{q8t'^HVS̫- $ .F$H!lh< (t℀o=0AZ9K\֮ps?׌B kN,¢i]<B$9%(32LR߼ (ySǁfp2|4ƛ?D>p _ -V4(;"'R +A-(9/>1xYQ/ M€5CXl+ 2m xʑYzu <;Zcoym@"qR\g-/`ga. vLrݺȵ_t$G=eQ} nhꇮcj0u0>5IMH>xf|rJcN½u~rʅR7y .YzvaPzn~kIH8cfKSg0'H bN%Nu[*2'[#bx:"q礼4ytw \뤔9]&Pק\"FRv*sQbAXX"CZ;j㬓W:H9Z,Y\84R5ygQKoAc +Ր9}GhHDyt2@Ur[,ўZOt(m uK6F&(ørm{H_qrp=:.΢7$\(0x6_\ZE *%xW:4VV"lP"7oVBH>n㓻CܳPQ!Lq́#2:nDiR |qst2&rr]Eom"C6Zy8V֜}1n:}<xHX'Yn#V7؜=oD%wOL=|< O^1yV1[6 ^h 07Q2#{cPzי-2%#4ҥyűHuBAPZ(a4g/ pv D3N۲%^r{eD8$xpUXJd }#ojDy vaz0 In;5.W~^7W~Xn5ڣX_?<ZL?=U5>+!Qyw'<4X49HFkK&6gTͫMKUЮZYEU}5ɜ(t&jʒTYesShmz]ء6${ 3};>Jfr#.n.ߓzitV~`*0"xIWqF/QȺq4i~ǛQg#00ڞZ9s]U|_BwoMoCfAf*4rc weNr*<0țu*nۅۣK`PȘ譙{7M{^[ZHHi (8}W`"U>iE. nъ w܁Ni>*b5J:e,EGӹa;_lK)MP!,. ~."oMedRzl$NbBY] ]fd>2$BP̤sTdXjܜQcb,߶FQ+2W15.Şjŝ2>>hd豟`\#/c̨X.ǁaŞ_/[4T\╁{Ԏ et;AՉ]m"P1^aWp+]*`▰A31qXȈwX.&!3K [|S)K8rlR)i_BbzDٔ_;}o5j{_6@~}Bgvg2-'6B?r:z0^ݯaR g=A <Ȼ椝6 b0v'F^Hk6iR]NgOksCt:tx,U538 Ě Ɨp/WL/sM-omyvG!lg#&]Tԗ|Wz Â#S+N:n*&:xI&ZĭBLHcS`IF6c_P(i{q9]qnTYg|ޖmѺ"#fFtC+$ Q0.L{-NZ[0nhnsRxKG '4PWs7Y@6ѨF|qE&\ i F zNtK︭'zz.#.Z/$w$b3;!W0KV̨bO-)sÂk6-OA2&Gv7B0DA0c'8|L Ψ)&*}?'uA`.m#t0 >Eˤa^Ɍ`0$}]/$w:FUXv30_# ` (($LDһz-TE䖝>AMW53Ω:A9PLf!#"4xZ5\m TbC8תZ@K "n 1`-7O 򱟓=\r<_qz(ukqqK ;z~va1l]I${27)t"?UMĕC QGY 9O7}Qyؾ8LyB>~KbNr:FiS7F|졍?|-ls "bv#04gr:ݐ 78ƿ*X3jZp_\pY,<0׊J#'OM\"66䛈7%7[W/'X޸cv2#U(,5[ h )hOL įnegbZk*ʐ.ՍRU'1&4Xȗ[sf"fM99{`F,$ܬ}"i([XZF;afҕcQ(>L{+La#r1/COeO XZ |jYJs{k=QE{{lnQ0^Q咗%q ŁtgBh)Uk!Q㯿;Qf!.{T$bQ 0k7,S c`O'd`SHHB33!H=И"vjބ\1bo!>+,3;k\5d1L$2 պw7<ڟ&O9m׫U{hAHFLnN{5Alyq~kJk4czMabAc8\ͼ"hz1_WweER6{*pBUZ?}[$bz^dd;9,<%U ΅g>xK^U]ydǸi/& )>.&+)dޓr\ȣBk h5VgS}1/|YZ_*|3e}.Fk}D"ǒ(}>GњAJX>nF<ʌk6WgGWbPt1+-^( s >4얤}F$xKgk%kO%hJd,Eml(>*s{N "m E}6?iOq4Y/?5Zp@&T:uw8AF& 8u e2t+8U`fT( Wk92uL;R \rT9N iJݔr)wP1 N/gT.Vj{wWZLxq?"܇vĦl]aVsnczNL!ڥq/qrq`ע:D0qxz?z~Y:݄>HȚv`f:G]f_.0y%F+CEEdz/&󰠕M3ԢٟѪ9sFQ_&1WEw>VѦ0°hr=lnٚQK(Xmy* 0."#LKwZdkצi ~le| C,<^ϣGM<3@h`_:[g2Qz1 #'eƏF r= 9PhD}lIK×8jc컃ѪG}/&ޡ['3:ȕ#cQCK9p",7't;'*lLڍ:c|{(X5B|wqV, "In-nzQJoOP H<6b@}0x$BmͿo.v|qia'd΋ hʜdco^~wWEyiY |r6UJ !hí1)dZӽDfZJR}Y\a#ZG.18zS/*}\ä0E|]VS|Hɻ;mvsbdNDˎD~ڤLʐ=:\7Ն \VϬ0>#B{ H̷־:{0^d2:Aeԕ 1 ܌ߐM>L ^y6z{bgٴ{K~k$6<4 tn"8Nj_@qq 3l7/]N:i6c} 24l͡^Ӷ"6*Ďϭ~ (%@vPZCLb'y۳sXOw{׺3'h5~f O36sDDIR˛䔗{é3CXt?gcL[gD{:9cp* $4]SQ7̂*9‡zu_L΍1 eLF'.{g69|ekR-less1ܿI=>KJsE޳l1 v ڶ/g%3CA49qFJxÒj*e\+ T|0yk0]b|_P̒4|Oe:yӥQYe [B+l vN4FѤN#JiK<蘜ߙam:Xftʲw{,i8<>"|=WOU!<&g31&kOgCSC5@vL(Y^ςm͆xJA#}zhTŕmwB]TXL}ISQ3bAt`ZUEs9-2,QNtMV!wh;DXR ̣F<;PCҌDS( #DR[Oo]H4yUѠ]xRt#$unDfˁ:|oUPꇭ)0\v\+oj9? 4.|9S AAJsXi[$L /稜$ߖ,I^#?7Or 6>,`R L$ 3 :aPsvtȄZ= B֫BJTBcɖGMְ,1N-RyfHQV) K%^JQXı·!﷠C3gޓ1mʨ3y~RQVNķ`1lY+^Z6ĀE8hnE n)`-ӫ~ySJOVwN%y=!J3, !U܁re蓻Ԅ3T~#^0~D&da6&ЀHzF.QvK5CwBK}4\ұ7YO4u ^B2P+@cK,3'zuNֿK^(nML:uSgyINz|ׁ!Ci/!!P[ 8_Bp^IFerB`cteV2oCi"x'J&iqg7.v7]ԟTxW.sdYuaդ!dVɚ]F#l(ġWG;x}WTSvKS#r#c쁇DC-MhC'L9vvҔ3>뻭[C/|IM]VFZ3b7bQ*95@RSvb·M6މ-JIbpQçuy~R rF-Ѩ)b\nW\Bu3VH@ _)|w<VKv׉=?-%P9`R630 ,2bQ R+ dfU KfϖP\>%!@=tqKqC4=oIUy>N6{vi+&nV@Q1 Kg5zNL]{S:+}NS z eزPn 3 D^x#D. 5~[ɡ!-F vmy [K|ެ04Ιk=oM"8+C,Ӝx ^!˝=]5b)j Mҷ2K?Wg =6jwYWԋbUTț>'W&\2"zAŇVeI0a8?" %Hf҅)kIbNe.1Hlȟ^Vf''- \S>[jqC8x'jŀa( =EvcZ} &=~+ڇAiZmq'sJ6#SѶ7"n]rsPYx 4 Ywȓİ37J%)juPjKĔJȲ\Ox߿t :š1zgFJdB$$I'`r]R/f"|({xur6V]2"L,v"/\E0N/Niʭj!۟8"/o ^8O-Fk.G_2һѹ9Hsj>s$@]9$noeF)MbB >'~v q[ū]Xhʝ}xxҐzd ̕aƓU,ԛPAGD7߂թܱBr:":mNd,أð٭[ 쭰 f2߼RBgUc; Gs#e CC.8˸+"9 )X9o>! &R].|BBHjq)*>xS nMis v6;쪹g%Q3Wt{D~.<䉵1]Л; >3..zb M1WdlTr 8{L(;Ca!u=m\Z^@.8P8P1Phhe|gsrt}NR1xغZKf|$=L mOG5\{lHs'KŒs`FmɈ47*D{(e6}`b1ܴBXm) .5n/j *V , L9CCe:k[Ւ)Pri 2Wfr 5zpnsSMLydA>.S҇>6D6_tSL!g|%"q MTy\7 K"U3վ@J趶6 I=q4[G9"~[_$h(6Iu1:h7YKrҶ! ϊoG3{~Rd|qOopOSܠ)zORaPXVj,c3%TJ h<@A{2Xy_i޷v:&D͜47[> ʮ5&rw-s a8JD Xbe>Lx 44^f׹./P,{'.`UK%/:^L|Ryhȉ6,i8 "4Ɨ&f_mxSǜhYzpQU6$åM|48AKSlhjEiI E..`fkq+s8?ACf%ndѮٛbx("|W fT/< B9?D(4Q_ \_uiV~9C HRbAˆk%!p>PU}s]ov=;l^B $pvK&$HN1)<>(C;KB>0M%_eA0~N`M#-!),QfVnU?I,2aSTw :)g4cA9wO 1[A~/qft&badׇƏV~jQi\bO LLHgJxc 9!1oj^x- /Ψ9B:YZJuMa1BͪML͔/sgj ]'A("w[kfॗCZ%}F\_;NN^$ב _KS eZoڣ1poM (b#0٪y}U!Umb̲'W뉠u(aO*tw98uZ_ DM&GH ,U&<$:4h':FB>c\OvGnJ]2gɁ)ϣ9:ʵ?,~{ފՎ;pqt hn&n/3+fTcYH+F`rV K`0Ο bк@Y(g/bs0'&CϣF:˳9٣ EO8X4@)8m^swCQ:ANǟW"JȘ]R\g`?TiPRwlꂅH_ ;90̝y#c>wJlĐMj\!M J#c(#7r=EoJ`- AAJYot5ݴ+D'$iIU򢈆+a9|3#iuKN++[fʦ=OcMqCs'TC `}_2FuhqlPNjY8%_ ~% ci*9;}wE7 >2k?%*:3lgSTf*s@6$ޱaQT@abdNe$< "O卅 K8H( .`|ՋY U3+!9 ϚZF'PK\9yi=!/roR(]p`7^ 5k3iO6"͋SbA>b|5Vkx"^7y}:=K+$E~ͱ~ {G{4ҢCO>:9iÓdi]unNzagq#% :o'S䡘f6Dv5d0 Qj2]CN1a.zM|;PcC#0N%Z"9gl2ٜgیrl+Ok!sIlVG:(6O2)1W:3ɍ MU B/YTC#B.ŔgSN9}X-lFΚyyV}g>qCv.ɫUgD4p5O2"H#~sр?ku3Lւ [\Is:/,1h(` DZ",dny8W>nϼI4#n0swQ@2$,OZr`t{ݼ'a@@l%ki =; ݢL)Pd{Q/Ek%}_2y~>3i.X5Ǎ6θr:3\.`<ȻtFP3m@}``;FжE5jϿ 9yYۥ*1S/=._Sd8G Ó>y{uԶO;Lr=r+=_Uǿ&3cY4q3B8GDY[QPTV[w_F[C:::E#}ZɨÄFyտ"oHA~eqhJi;S4߈Ԥ ԯXgt|ZH>3ݿE42h\U;|g{[TF#FjY#TU +wVr-84OIÏ&fV TuWh3X>nܼ}9U>1sx,wY8[~4Jvb Q]VF=̶+c0 s Q߹,Rέ[ \r̥ ؂`1y#xBk(P1] L92X.b Hbh8ފ;%?ғTXÁ_$|C靽6e"uv<򫏓Vz*erk uga]it,}o|H.K g[Pbx ud d7.߈D ^vŅߍɈ@uXt*}YSPD]c~zomv 2E51)WsNBMfHO="u˸3xXE0p4#J*72G@Zy~#'(f}ye &1H<2Rv@@bL '(Ǻbӿzwd׈_P0=yY?G{Nj e&3|M igK9QM&"-nAw;]"wiL6#3j J*SLT^}2B65=59{rj[ߠ b^UH^%mL\rYoo5@m]Nœ^&?) *!5iot3̈;(1y]c !Q2wۑ-&# ` Dn9RvUzSl/2e=9螞MYԉ dϰ$H$ f3*TBѨչ!g*pAH[w6uoiYMޛүӵ(lOWghrwm 6.h_[!Ջ뱔#6SDv$8>Ov#2ġZEΰ-Fv|yW*]OA>"۳bҪ{CWhӇ<ͫJpW #e%S !%scty8r>8p=ӑč"41EAa`eqztkFY0mf{^EflMl8t|u:>@Z nG%:cnQ5c2~lwF3܌.3SAJW}A c~!55ޥqnxk-_??7Clf(,$8V@eEF0?—!9ez {<P6ktjanCr<|T> ٝ;U*d7R_m@-Tرae5?|ywWg>r۰caح4P m-̈́[ai¶룎} JKWtSJ,#IZE̢`HR0ϩFkq8@KnsSy0x*zҕ ! 1gT3x5yi(6^kD%ԦU6tg>5~7\O)l':`ҭ".N4܍ AGΗS@ ԍ e8i 3 P]*ʟJǒѻb2?y+Sy~͙5@)mhbS`J|F{)~MEٶ%|ɐ{Ɲ/؇)r[Cl) %.܀ U XvV{C\b/0㰽Hx@YTA7*M&|A>?WL&;1a1VJi%˩PaĤF-B%A'\G-p9(riyֿ/ASݢXH{ UIc-FpT:M<q:`"s^`g֬@3BR4gu8- =@<ґ3nA) ki;rl "kX°Ζ'lc $tJ,+MtpxlS?b@' 1SX#6z(C8A?-l ݇bZ.rp*IQOfPm6fe9xIBLXn֓yI;}+ze#Bsk7܀J;:ࢱ?ηRK.qICs '3vIK46d].+͢6ktc1 ßT { /~8.\D4@u9IҁR/Šd {;9XX2WUr.vK\,$Ϋ7bR\kGfZ2}1^DT0a0(1Jd+<+\ [=h? AY!.hŬ״>}.~'UUb}Ʋ 9H7l+o+j+R.fz_l;AO-JQKcH`]@l$kK:9xϩ?uCSu^J ,t};lJo皻ƽH" -m}R'΂yFmqjBGЮY(T-J=YlvXޏs$h,dcnuD4NWETOrvRΛ!wEJ(elA?`/׭]c 8KRF(,ҵxRJ?wM\i9beW' H%i a3XctXI"29"$YF'ЎjQV/x 6w(;GnRwx]Zk2 2Ms~ `ˠ(4z{5J"}# >MXM{Dr?xœo{mإλ`_7=IPw7̓ȇ[f{+m `<8†~J.dVթgBIVL#hRo J~#=-##5g #_DfLP2|Gz%pR° Ƽ20,–klis 3H xW ~B+\dw- Hlӄ;s S֩ D(eXچnm-a0(wz[UHC:9S>Sg.c32tI& ;whNq0z" u Sz? j٣L1;#cQ< xp G_?4GSF%wY%Uֺ7bIVgM p%.,K֖ sKuzh"^Y1'cuFIQAoϛ9"xBC#.V  RMgEҡ?CIe_VuU?'G|n5M'J ;wݰ[$CYvVwqz$zr=BlyPH& H;8مNBG^ƉEZ11ØO7p@,"R&mmM;BL/k!%z0S/x 0VqO#DsС$#w%I7R}@|cr(~c7LZtW+nh<0~|WKܦ苭9؂v5Rȋ? &ELD4ehM3P$ՠ6OB857ݒ:I]9r vh$zsPe,Ul8` ElwpƦi3l\cd5+qoFߕ>iٜ3|%b=@'{^j˄eғt?aȄjkml4+ᘳuL:%PtB00p.oLSqR^WV=m| /gw,?stw"A":N ^/E;P="x "b#+ᶤ|7^ӚڨٌY s= Q&L2Vr "Ȓ̑7j] PTvpPr7Fp-Kg&&)|[#.xvFDM,XRXvZ̨͡rT~^Y!xEv&NsZ6L.-U)mַ%NG26/tK g#B)=  BORǖ[-'ThUSAv+.~)tػ(M2 rpژ`=(\*'^wx.eMUzm4}PY]ΞJ^}W(G⫟\ C'UTon^kdߟf"0ňhUE)%N"Z]##&.pAX_(052:59cZ[ bN onj_BVVx4=?xpoALJ8@ZER}ޝg,Q[ NĔ 388ڒ tyݩ}H|YRvUt 5tFM4|scgbFrui]SEC[D1ru8ͽZ^ }3K~EA(_B*W0ۣx8BM}4sy8۞@AcS`RHt!{G81BTɋl!9N{PS6iE.A\_&lmN_|P٩L#)3[KmaWק(#U?DDmc"r3&f{(^v?~ϟ4iׅz*Rs^""F| q7&r<8C. @:w0K ?~:@N`r X>sݯj9܌ RoΎ2fM(MBCL/^)@@S[6(TaFw;p eSe*&޸c2 ބOy(:xt'&}TdԢGSbh( u~L9k_IZ99~랷$qS \ʜ84@ ɴʢMMyҞ, \!vj=bt|żvÓ3q4㦳PN l-g R6_~C'6' ok#02 wU߻L2v3Ro+XE&]if5;1uOGk[2rpm~YA<~̐oo,L&(LI46/s;i}Օ;@-*w-kٷo޳s%) y qbqXAfTF,D7%pr4V'GwNwe9 y- p $QF#FBeIDϱQMd LAqx!5q9?1KVj~KfW&ʉr MZ' R{Yqʬؘ2N2\(1 &F;2fwG# K}]Tzn'W@әxd>c_/7* o/]0Zj0[E=;!ǬR"ޕ`SHnw6~|&cKjC˵;_sMu>-Du;!vtպ|)c$RJ4n)[ *m4 MX58n-Bc'#ܮS ѣ$ga)ҷvYtɢL$jJBh+.@QEX$@a6qd71f Uvؽ>Nuei+WXRzC,_YW rSpߍ7H,WT[UGJx\EEXjW?Yʑ,ŒW-QCfe:٬:]E|9SYMHy rH(v{+m`H9֣Җ_UB/3h'N*]HaX+(FѺI\ݖi" F..VA!?;Iv\϶3x1M3_~%.r$he1Cօ3[<^2H,T`mZJ#bޞ\ztZ.L`[I|Lr{FWu2O+!.tQ /Fp!o/刔*6%9_` .plOpǷyq9SFaZFG145 boy?۫j$S %&b- q"8 &C*LA0D,FP*zv)?`'AAa,> ֟SZ;%+|eO$6kE2ղW6`)J5-' ntGSZQQe GXL _bM:7l_kbY f7Qx|:'%:D.{3ZѺ{!3Xa1=h"Jg8|87" *X^NkwPH0L [>p)6Οj kK38 klS zfvnc>L=24=s{0S-K/J՜7q PStbg sb1;DBGtĠ,|[^eB1J08dG#Ǟd!fQqoˈ:(zkj$kCA ,18ij@C-<S,Y+ng</cQ-|i~VE'i:U!YC1*k!5{Q.Pab 2{j^w,L tcV#n2yhLӞo{IA'b4ɧj!EIJ^W'~geS:SOGylq?zq7JuC:GTL }b8;6cÉ'D/D:H#Q`2o]7u#E#@!" ~ѕ~TKĕ ?+F֞ˑM aHT>^@3s|zo̿3uC?%bu5\1ci6( cR(J>6PDB \kYN@fghvʵ w5m7EYRu??K=k|_I ?r+m\U lqkNrT2Q\y, ,DAst9XHpdxpyX%mR3Γ7҉ֺȱHfm4ك5]j+N(E'ٽ/{>%FXQ'[:a0JV:zQ6jz4 4gE; v%  22B(zK ,#N*J92bф?k S9 rpᙀXpL9Z8Rg|[pZd;EDbQ9y~U c }JR9L[gϾ6j^9 Uz1ĵ0 ZqE5SI=:t4DA0ĒpOqe" $M p`JmkrªL _¥=]f2_3ghmI`ʱ$#'Di!fg+O]ArUVR3ZK$wh M#MVHbGH KӺoǰzSď9V$͟ "[A*QQӟf&ݢ(}FIeT y㵡ةᢾl`2b1E`RnC{O*׏ $If *׊z@xr<#$%ؑa^Zk/ׇbp+N|85m NtJ{@n{6q>64޸\eE @V@%d= gkƗ(q-= gmi7Ri #7oI@r]#[]bAG"T;I`JXFӵgܲwM}0\s =Ezi>ar;3,C&M8qruOQyHmM:Q4Ri )d=e.OYAȨQ,ZRLEJd“|+ ߄;^wr% "Lk=XԪ1FP<#qI+南za=VYxEdJ^vUP]F]\4Go:~u9 ϸ.7__- D9$Dɷ?Jo&U/9c^)ڰ2:AT!H3SݯP7B .=$d{a@#.Wlr*ބz{L v$2o}YC [l bu [5O#GI 02sYǪnMcfjBA&RqD5I\]_N2wМ࠷)] |}+fLSLXZ|yU b%ʰ |hNpjhy WL'Y95ߢEfÏbd yaЫ!`"*f3P!Ye2 #8*Br2AD#o\`ڗN#{E>sgV4'ˑ:iĜV C¤ -l6б1!w*2vm<9 2vM2Á"A6*C^ Ʃm[wEՠCn 7ŁЧnJE&G3{9)N8UTM=2O$ĂFL"iE)&SeN/l<O4P7Mv7:͂8ڝ aNK.QYQiťMnL~ДepH[&k0޵b,:aF4_J(!Ӥ؏a6?|u86 LW`N=ka©rFzct4KxMGpaדc3mۃp~l}f+c!o}j6놛W07vE4!!k"> ?ld?ӣoAe[>b%z7@`G^>TJit{;eRU kW= g%AdW+d9J WPugTx]@WX`r(e9%~rTSSɟGZep蛢,yWdK{M:_ s@d22[ !26f3=o4'sǹ8V>*.vٍ˝ŽpV;?&}SGC.`l7 xo{ٓH  x06QY|(7/ U}P̔G_39XmCC} 9@j-:;oӱA 'j#k6U-?CA>~e8zpЄ*IV&{i1+ExoXOijٍ`|c&3AN_]͔z(򹍔 5}3A^As|IJC{?Bl`˰f4]HƘ_\eMZ;Hh^`'fp4~G|[L%5=yAi QbyFGnk{47ƷqS Hݺ 򨛽2lYjP[n y7߬_@]C ]> @#\[ĚNz)-ڛsTlnʸ\a-t- TMV! 7EN'w"{i}}(t4?)ØU׷mCF#@4e6;nb8iBi&3yW=y9o1YCݔ~Z3_B]j=*DN@GNzI{԰dPuL4&]||t2G߂dzd4B@ Q ,xL&;ACZ1 NTzA+e Rb?c"UEx:S{L_-Eo9u!#0Ľ<6dhH3 CB%jdoޠX@9nlwlaUԻfGw[TO;& dq4}DqS]W}U>~ ٪:W„9Te#ʇ͊a8@$QnJ W2j[A6SD|E4BKeGLQdUeCTWҁ!~/Oy3=&YR[S1v&c+pZp@@h`WÀDq/VeI7$b}Hۡ^;3Iф HHjg+87󑿚" Z>d97\cb_{_T&N\ɃV[d?_?= mu}Q},@zf)/u3uS:~G1"?NsPRlA#L?)"]Ao*" Y,܏8+JL?=BY& ?nDvtivD(+44\_DuWj/>B#{jb9C=92cЕ,p͋l/kpS_ ]çhϰټ*#/\$-М .2("\gaFԃ!K)->*ҝ?b-[}t,,Z)y+1w .>1} *\үp]q{ sQD$I؝ ˌ(CNjI>Bw/ZLL`d W/Ҷl:jxsDs>=h7cJ o$MP7|di,B&[gu%8PAw֪p'ƹ .XH;1wt|cryL 8 NڹUܧc%s90 D.!FY9ytNscill3;uuЇE]ΑW2-4Nx&{9Ω^P`r\0ŷXA%. h[ ͕݄*M $14>۸ƒ2Db,!.o\liN3^6+4Ro?31 ct?[O ٛDKȮVt~1>?_ e W$ *\}CO+flfe+$/t4\ݻԊ`^!{>ӢpodE><"ֆbs p#ٿXڙf O\v>=3 JM;͒N]}G$#+1)@i]si.8 PyV-8悁]C ԧWS@#{'i3o+ZlˎKg(//-xikJɔKdA{w0yA&o ,Qp"\.A:w`d.ڿdbCZkUc?W*wh?t|wH2|!\8fyzT IbM&6'S>h~?됿^v0i. ܩb&"Z% A 4ql EĞ>*IQbwavƋLG#A1G];* ,TF^uj5SRFze!|ҫ&L؜qSu5j/KkS$dI&W{˭C Zo mUy{7D@ܡ{FKlժJ J:K;q-՝ACd :lJr=dkHs:uA+"Fņ1rnc2ՄL:5)[E|<$&^8%i̽ܰpJzh(Yf^4|y l\r3ه!/&LI"ua"Ms j5}ռ4)X`&w2k$C m 7yԻgi* &V+9Է&%euxųD;%6nSjK|KZps=ʅZѿt.:$R['(tøPYN 5S7 gaDjqSKSIgH6#N$4ò.uh ?j{_fM+f}lW •0FLݾb&g?iZbq0KpT 8H|dr0 _ZbNjc"rxb*A4dgLX놰^ ->g!9E_v$0¨EJ(߽?NŰy QXY4(uj)AӀ1hEPA0)+T=PYoٙ+K\ht@ɗjv>9_9XGso0E* 5bˀJsào.&+dlaTN`(QgK9[)fWs.#5f[+ݬ IZ;T>N AEJ5 nz',: 5\}SAVr+;/EO,(IAI4n,:u4.QƁKZnV$y{t18Aa@bP!V񿞲Í|ߡI GNOop(.0T ,fn)}"`7'm)",fۖp2tPՊ5WD g_: .oFFRߺDա*X)\t֨_F*lWV_Q27epifpSpBBԬ+{"f ;*jg%VΘ_LxBN7۳|TY̒6l79[~[U1Dfq%| lKb!ZIŵ4N[U:}CO 6~vH2/B +Nϫ񾢣<  B~12 -6IV#n>Gd%qvڱ EO ]H?(ט2^5 X@!{)JwA62jfpwNSI(aO~fWh}_^+rU\?lǏ?J&]sTң$i#z ي1؏Hz}Xw:di`=rh?^￵$©5RˆX:ʌ$ oj**Cپ)n9|cd |x֎9\3cro0C?A숚(N<)wLWx qY3CY  1쏺}^A~ˆ(v%rC$}%?fCz|lz-`"^9y OˆU o@# }2G{*-s_2ۀC5մ~yBts'v a+VYͧ@-_$x}y-619:e ]mx!h8?-[.&2_'[37|ƻ7Z u4>&拻fd=x_P=9ImpuD_}n͌\;֣q|F-dћGD_@GD"hV{ ΰ} i4V D;&jZ>VkCJE,+(HtH4uFQͶx aD Pf Ǽ4XhÓےJdXE%E%"#k)Q9A.~aE\)ٰ]#TO d | h]Iu$& PʂRK{SHXlC~*4]fc2]rDO[rbR&F:JOJRtnT)vڨh QUYIH, ĕ5 Zy*MPiɺ͐Ra=a)oέbwaB[)>aOgAV@yܐ A׳c-D0/} 1J/.[FR^%A{6Z N_x 3绦OC D&n "W9ѝgDNmt5j`+MhSrKS'lQA7awF)6,%t΀g{8#G<1wƓq1)(/l=*"n3@bD FE0bzm _[,(tigsb$Q:ZLϴ4Vn.=u^;(_lB2$}lVaՖz!lFd7HTI{><' `@n+B> Zh #{c \e⮤dIޟ#$ Qr+mW?F Ѯǹ)ly,'lwfYF#Ϝ> ;k-?K"`L)sjRG=r]צ̒& B^{I<=ZC_.d(`,0si_SnyҨ]J UVف?-@;?ݍ }6Y@p@#! |!C^iv5,7S_BߺJE{h%M9i̱7@n u)DtYeBfJp>鞽G5ЭyWD=#h< )'4{HU*th]i^4?tMo7ĉZت̲-2;ۊzDn%S:6Z_ v1a uC=r~:6J>qvG0zI)B*A~οS:vrm?;iW"ubM`YC)ڄP`NJf]/Ϥ!Dݴf-ȹXVE49ř4=pjl_K\Tr%b M2WnZ$*@ȐH c!@o`ZkB.מY%CԿ4$.ݜpMCcSֳju _Q6١jv@GCée/!ʙ3gxUD"b>lOnP2,@܅'.kiida%y Rhї:r+?貴 c>E7*l686RY ktǗIkP^&.#lzXJ6nM5b(%bH^qz!(V#5vxKcFeI6<ضKG!:JGe+\gw )ovoa>ʌoPP$ aaE #^gX B߼ͨWD?[Ѿ@庥o_/\5D4j"LvHuǮ$/7?3ٍu2QR6%LZcHԞNݕcW*fDȧBHM,.`ȑ͠SkQpt6CjEQTUŔ+2ڄIԚJ6z 42^62fhf+T ?p?ڂ Cs ɟ9x"z"á# ۚu@{lZ1ՠ!`kFdy>3so΂ˊddJ ?pSvc{7 APGJ7U]iò- ]-[- 2(ʶ=;:WO86 '9 *IaΨ];'" xC铏D]Ri.{4#gf8cGfSo5jY|ӮmN%p v!~x' D\iiU2eӪ{ 2IԈg#OYk10PB;=CCA }u񅐙!|gr͘3߮8O^+TwA*=b ~q ;2f~rιS|o6((_; 4Tq0 zxS._n&<aҟ+\!Ϗbp>{Jdczrc Tmr]&^iVy"66+K @{{WUƙc*[}iEjbCUըxdke-؉<߲Qھ7gxfvVrJ0|keCv ~V}j^{e~,03H̫:pC۴c ?5 t)8Y )υȗH+XNj=9q>$Vv ɣB_ ~’T՚I~=3[&[ f8{d#F0kJ91D=>{(nΩǨ= uմU @?8`QFWK]f֖9НEfGgt`~p@$¾n'LJ@Y8ҳt-*:DK:Rmvw 2jǐh:_DtP / {={[RA(x9eG;^~XbA٫QhII͒~מBف=#iGxoM0eNzmi}2C+bzk,tmq!_kbb؟8d/\~ZUj/ZEjd=qƔvRpxm38Yx>6Ƨ 7ZCxq%ea>X(KI)2= 9hLPB)DwF)AuFj.xSgpCbx\bC)j+t9G}6USR[Dh `?a.g. F)3ᝓkE? E gq( j`[G?ySd Y-0;Ysb%(֢\B!TM88C}T#]{j'yBA~r/.oy =7^8mκE:v|;W(D}Q\:{.,%)BꚮW7|2@P!eRV5NB5p"TJxc퐿O>̃Q+>DnMK9=n?ިH?dI`v$~]&wk^0WHM r$9'RL J6&v'^+_1r>+O{;gfk]r A`أ7.Q?AjV6RЖCxXj&F<` gA\mB\Ӫ%@򄔜g\7M2\J^bjzG&B vـXNbR]uo5(rBx,:q8_RPggCt^T= ԯOK%RW _'3ªlq֎T2W|,VԴL+R~X(XlR2#|A 5hrp ]ϐ"x cMo-vZ̹^ =T/t{0G}19 whʻ9>M` |5u:;(]V*R9sX"EB ?qEx\` 'ĺMՠxPɟB>Ns}wG$;6*~kW0rWd3`zثt0/n0pay_0oF[ [턊?I ;w.pyH#H/SH?->}NĻ23.{016Ο~b=Gx oW d*+@BK%ے5q_Nk)>GX{MoJGݭm]=ݤW; cYqk'2%>MK6!>4,2*FVpvM ,7Rr:#'YV&EtO8#dLޝ?ki@XgYֻ~Ѝ3HJB ͱOqRBNEuDv̝R~vVK~ =a2f\A*K I"jUKMzzY*c[=LjҤ9Qi>Ԯ2 *BL\4j53)Avf5r S1؁ZrReg/~!nہ]-޺Zh&# qP[s@za-˲+ޯ 70g sm%h-tEz |e9[J >@A0ԘE;A%Ta=O-ܥȆy *=W"a]Byꒁ u6"U}ӓ"8S.'aK~qjY%bD,^YnÏHOÀT>ĊÆ&A UODf%o'v:H}EaE Y@/43'dqD(o*K׎$'e$]HFD'dvcmɵc-uKEl c4[lM*C,27.pok A!uZ 2(P8/4A@>9t}hĦN1+RHIA`U :U 9+%|_7H<ةnT%U_c30(HDVI d3<6m&\4\i(ݛ|tKyBZnG{8wtՐW&kJ'Y D2E;A/Er0o -h5ߑ)'Ӳ%KW }֩Ƶ.A~]Hdr|*H"#Iey&$I۶ЀJ28O"L 1˙~>'4=O l$_U_@'br{EF$N|;ʖF89Gnlׇ"5'=cj;VMMۓ پ-w sSRRǜ4&h!, ?NW~a'j՝o=fm&ܸQf. 3a:dm?jFUugb,wD6c\q.saېv\cgUSQsmyYZ:3cR=NnDzP4; .wx[8mN59F?qA2Q0RM@Kkb_VbY,q'h7'L'e|1wNa!W{z"c"{Ksc Y\1F YcW>dqӀ n̘Jn 1n3lr* jrHV{ WY1C*ፗ2tw }:mgs2Z-aAgQ}sXL4M1Iwyd*u,^]QLJFjNaz~h<R~4*9%PùeP~+mwXJg4!id8gџUT zQ[\ˊ|+Pt:p*:?Ghr:*d_ &sQ{ƵrF(~R$wb 6+ wV6ycVvz*82'DGYM)0tbu3OoCȥwWz2D#!?&aLˉyF>}'OM&HWf$h5Wh˷%4A0RSprp"7'Uql dږ`Ănk A;48XíãraYQ6j:4K*~W5!i6PĶ n"c'&1U(xU1=]ψ ,|:zo\t_HU.?AضgR+ϕ x Sd !?#?5FY$݃R=#i(?ܚWBAxGo3CMeFQ.Do0}yN ~;XdNO͹4^e}rVX̌.0h[%Pq _!y3hBwjWM/BMd[pvŊ mwD\KrM6nՇnE|;>4S!j +ٜ̔GƂ %ATaq2.C?qa {`"Xie 0qH#x@վbVzǰC#S23 x5`֛.g[=SjzÉK!Ŷ6g>v1ΏޝTxgA9|yݍQa~}Dz8_1)X+;ƒyvt2dtp$`񚲨 @\:] 1L?40VJŷ*]uNۨ C Z<Ӆ߁"R -?QبQ_K=f[ى}tEPP9~΃- 8%Z='\EYM ^.X䙊HA1ƯU1PcDUuZK\QshE֍8/nqEV|8[tI) q;!綒0ktl$; h{?w)E XAiHA~diA eJ}Vjǡ5./חZPTamx\NWCwJ&!c.i1\6m5! ^ ?X2B?oՎ+V2sTRyl܂ӗ:(uca2XW+gNhG Hn}R\cd?J55JD'xv"[ fVlJ>{J_}هikgh'jjwMԜb05{gVNADqx[mg*16sxx2+/kgfXՉ˖ZyȵÐ  /zUFHoA|)~?v<;ND |9%“ИQ/{RnմSqϣ=RuC޾DjBct H!U;n +Ǩ^L* &ooJ2In+;M跎whI/s| +^vҝf+RH3^c @_n.{qcZWRXN=`R|ёi: lFd0~WDCقWD崅DfŃE£U'\˪^"FؼZG@i= tw >FfH'.] <(Ԓ6*g@< ds_YdQ̡b2*7`el_jϬ R-P3wĂhb< Dq}Z%?|8~ZXhWuTa)#n[ZtOƂq:g.켽tu"UywQFGpEiLo&Vo}Ӓ D%7Ș02> CQbi21 oF;O>v!~+:B# -!pk^Rl*DC= C]E^)%2-5R8Cֲ5DG9j98sQTf! %죣H.j,"\M~x죍Ggayeo~I!W2L{[4tz 1ƌo ΁6*mZZftE#k" 1-=ʵkAr/W O3Iv|ƌ05Csv6j'&a k޷TTdzyf<^'j$)ܨ8zf`,`[ű("L~ql8sm4NТ׭MˆDkv9E4;jb@U{kܰ/ZGNb@ uSCI;1rTL-P؜Qfe6t4RwWn$c9-g5o6 d;|sE(0d "!N@os g-em34|yΡ,)hT 8?MQ׭1%>4.>Y~lU=5X0~Ϻd2Q7 O{LU&70+Og&#*ٞ1ܛKHy"kl`wq,[0veO!::0js|_c,6X Kl! sH̽5Ʉ=btC`B m KiCWl`VfKC4%_J$dc_fƕ41+BjFx<]sM~W'AfAeOYL5,5<M\__(kl?UA!c 0&$4Ĉ0QܵF Z #A#ʇ/i>d @?5J"3Mct$P`[%%O~Y<d2]EYv UG\@GJ;2\ihۼLr.S.ae-`]>NI^$V  !Wߖl! sHQ\gу&$"I@izU|ջWvd,CRȢ} l>-[MIfd}gڐ_L#Y.gz Nr:ȅ93+nyP9YTIY\dPݫϲ? y~G i|_)閾f@[kUmPsiUƉ^&'9Rȓ `mMgP ?b=S޳Lb?5?;[ݲ2!S$R+ V]ynMx(; +#c,1Nqw=Ňܞ׌?]9iƅ Y3ЀHy;9&/mA<}Nkg* ,}?N ֨-6P(Z50$dqR>@܀16AfKٳ@ѸvvK6;zUٚ|`I-k 7V?! L>weɰ%TZ?LooXyP$-z$b8Zce:Uh[7~`6H; V0kc*Fe5ک u% GcUQqմ\}ꖢ~,X ]2Yr Q57?{ i)|%&'/Z i򷃵Gfcl$NTCϥm/43_)OC98MTi3ƒ)唋ZM=г;Ee^>*jLPx3GTcc̷k0(,h@"SKUKUIپNDV¬Eը'@\o+gIR)߬Y< |R'p nOl֎}:XT?O S &hd]6bzJ}8q]Mu 1_` wȓ%P)jyabRB8W 9Sp+Gj- 9_ VDGQs/eUʋ*+bz$Ez}#-+0x B z*ZfՀԑy9)T~@&M0@:,PCŚ %EIUx1)V7i9n_HYܨL.s h7jqd ~n0iw/K*y2IHU8Rpi9"5{Fm3~ndFޓ شtP4+]KӰ!(])tP44Qb92 8貄W9 T᱒N:Ƕd# RSm}@ Fsܸns)X٦t$"+tDRH,VħL2x?ahPm#AVN~S%?_BF,<3:f.H>x ͝wS7M(Iq(hH ZZ@oe ]s'Ղi,GEb#r [- 'hMnnVUfiEhinIyBJʣaRh\o>k e=r_J7,.$c JHIo$!T#TLd^d=VM$#|BҶyv5ꏄVtu^Xt1oz,]nmvj32#)b7 u½|C d (MrJ @w:tf*MgC<_mBZmǟ#('THO9>YǬ$u*Cks 头r=z̭eכ,er~74i/܍? mVﴔBӶ%oY[ە[`<ɔۢ䱭$&@g8y.UъUX%_И}3F K5BQ_CObT9io X_Rvkvw"yzDխgbYRD@>䶞|KKA J 66H J>1~803P L1yeUŔՃ"X o{{DU-^]KT/y4ae8X(]rhl|;S.^ьLLoPUpe9ނCKVOjA_Ȁ>8ĥa"%ʆmExCwFĉKn *:.d`&ܳ lqhdϟ+kY%avOHێ wux^'׶$aD?Ǿ1vLRv[GxgJgzρĶm ?[9'0p d5EpW`tbƒ`ZҘE)uSbJܹAlC7Oz\,|\Y?#p2"6W*'@}_<n~o7%5J @!4ms. MDHtIULe6Ea8Ҝ~Sc#FLѢUayAHO+d:x .IV>_ͯb5yVhjuJ`o*7J#UMp.mb_m+oudyH YU:t[z6 : RʑB2 5dROFiX@=PrtrUKnDA5ⶐ&x:n˝8Ovs`0.%Eemo|=i| ZU9Ǹ<hFarKEb?lM|Mn(9<B~PAL4,ZR*[g ^qPP{Wr ajo)m$źNn8q(L4x;>JV~Pg7/=LodMm[Nv+=h@%nV/hP!`G+05z{knGќO˰SƻɱH6rk`Uk>~֑s@]uJM<@㱵V'>BHdW#җBIÿpl4+떾@pdx0CE/. TڝhԋMz;!y%UGQopd>X f(^Ux3hpy`}ׄ[)@_ٌsHCxETFk*C;qD3x]6*C ` ;SK#[V5}-i4{QޭM) p.nBa=wОONu6eÛjFex,Tt#b'MQGvy~h Z2`buSYKcM81EkABً_7({%^UMl=5sR "L6mQcJd%1=c. iNUw]IIцh}]zIr_ RDP &әu^2|3,H̎)A6idrZQ/FR<ʼnл ވֆռw6 Oc!c$黔* q68fYKă"yV=_`՞ 0̈́h+Ɣw͊)_ނaeҹ)P(o ҁ ^קEu<tޞ6?B]JŐg>m.lVBy_}$ 6T@?QKO=v7mʚg&o@r7aa0{ۃ:D |Q XK^$K,v9Qx) k=oM\F&YŖpd3У+gy$D0ciCkZjR+s 4kP\Th`y|]P!u~* 2J$i ),x_`'޳eڱݿI| *sm0[W==4K6ѲXlHjs ]E iyɘbO48^9 .K׻xffJә%0Ϛi4O0GѪ|XV\, ]j%|2Ѳ ^&KH&J]K/f-^b ]f%8b6aE-ZCҎ * .M`S.; Zͣ.M` 5D^qҹ;RνKtv #V"oV'PxKW{ૺ@[؟o)r}EWXOcRow_As[s%E6&aPN:+C=~*CQ߽ڍ۷g5:9*@ZH-yT ZQU ݩ5r!ekF\h$yl,hWliƬx#\y o9M 8gwݘvg-:)ޏvfXv2vQ ߇5]N rOxG}\͛vQ{@{@٨|-?l4W}~ڕiax⨈S7ʾ$5)^Xq!Gp1Pj;)[r꘹+e|%\8ȴ؈Ld˄a*4љRA1يMtS̐E6Yif=]cA;|^F6i/2:Y1Yy+W5[&V,X8"q&Lߵi2 IW!x S[L5mQրLF08 }yl3qmGn`{*G. s!^<R ]}u/A  M{Y Zl`r\Yft`n (Jn<Ľ.R0n~u[)dSDA+u#I"47/T׎DH UpGCS{SB t ՝brrw)½lرs2b;ۚ\%(89 D^vH:Q˱"1|_ߤ&(Xc "XV)~؟7RR"._Q>r'7 ImRq-8> \4+-o!7'82J3޵re.iWiq/p`ǫE4$-HJɖ.9̖jMXEcyc-]>{( &@䇓lѡ~חWqxLgky}1?Tɂأ:ĀK,ϫ!|"AxW+}:4Z[@gHzD%!6x`Ïf Ԡ*/@x-VgSz 諲ÃKfuů(3Bf$OЦ7{)ڨ ɣrlR"0 Ѿ`0UmmXǶ(Sh7uY|ړiN3sЧn~'9jHqֽRrQև@tfj .ZTo$I/<^IOBȈНogk[OC[3xwGz z})SbDQJbfeaΫbL-;u&J[s?7r-/-Me%ʓhl&F Q$Rb6ּk&'C<$ L#k>IrTs4n[B!MdlK)Zit:cc xq3(xUry`$Ɵ^ֽl4isز3Hy$@ *v֪܇p P{%]2h ܡ"P[o!52yN6h8E{e.82 F#C1$s W7 (ZV}s'(w'1 H2]&#V>aR^)曀7TPT޴_GGy#kk|ҤgJq ,܎ ;m %`,؆V.&ۚٝztRq1ؚJkxDst:à9?^ Q +fՅj8atS&jMhN*-8Nh7`Ʋsy;V"!FRG^J;UOE*Z#U[-u7\}bb %OF@wrJ}\O+J&j9PH ~a]tF{/)~Z*UI2Np*5'-$Gl=bL5╈ȤCᦛD#_sgGF e룡,{"S!5C*"WT?.cD!P :{- "c^7&-ʟSe.#z1,4VU{6d7Q5qYԪ =E$ 2JЙV2^ؤI_oTzޭzƬ<ɏڗ>#Q[r r7 o R2Jl& e-xל/cvwG7Ok,X|τ&cꢌ 'O̥#) =x#SZеi͠UX; Ԛsm*+3c;>, [3MdOgM8]C1Ġ機cܠ:hhuyΔsSBb}9PK8gn2(-\ aލsCqtRɀJ y͒DJhA.Msb[gvP}R2m:5Qd_trxp\S'˸>C{o Mfӄ&0Fue)埌!3ud%`olf1Dy;4A/6w2q`:a>5igyReT '0̶bCzfp6o:~!s̆wKP=E=5guЬ S$6~ @*A7I 7 50k;Rz7M3Zo͠y%;Ѯ/1Xk\H\IL'1V G$6d~&*8njaSs⤝hYw6"9.]蕰m􇻱.OxziǓ¼MJ7O1%moIEe{ҵ:=,}7,uvQlEwj`_h" g}5 49T ُ3iY7'$*x ħ@ +ԳU>&nu{^}}50 qGWQ;^BX#bf?9$b.mU( $!G4<7'}! /@<[gQНQ{?zuLS[mơ$&[OtSkښؒ5ųUֶd( q(/P|\6hh3 IБDmY,d;ބ~Kq׼gC}hO i9e[z^*r//c;~FY䖫1)P\MH>{sT* $05FyB4"˓\ost MsXSIxD   }7ĿERϬ;/%++l|IEg 3'j&+q')f+FE?Ҭ̉#MtYϠY^4y VJdž-Ed3 9oPK؍OrHFȖ%BPY=%)/4%4E}Bfp#X Cְ,ovQx/2Pj: 1ɆJs4,m&m:ΣbIr^kjЏ6F) l2Q߭!_{9Ufd6NF6_0zf| BˑkfiPdJ|G)Ο2EEUJP&hͮ2\N. RUla8$ ӊG4IXs#)GT:X>/a tv݅8UĴoAm5ĵ{ib7ztL?yP%s:+=g<Jړ'I||14u+m3pEl(xvSGkӈngVқ>d꿔lAf$HFΔϷP%ĺ'0GTmbiF'ֈdzZ,8"4+Cru!*H PJ0`]^a 6诹EG# bSrQ){B{*Q+C|Vurq 9iA)Y% : OTq ~m?Xܡ}i<娓Q(+cWPPrcFB~GDƇN C~yk|FGEGKWY\6w%ƖBq{%%bwqra (sqKʃPz&3c, eN'v I,ǚ^ej51'dxOW\0[v`z#/kkqjYUbe=[p;-K sN>mB9VmUIEO O8${ ϔ_^Te.KG Xdo!3m ޼hJhwLL"FMLxH}/NرO1q>kz;nc)e|܈y>:N4mE {2o?٥2`O}1&7 qk==*B'm?}ir0[ar0e]ꋞfAy~lj& H+;MS Y%1XRч}7PҬ}P픸4.7:lվcQC/(EJwZ?U t9H 6yb|BBA3"!9P׊ ޞ־Ň'롑 kOo(ZG[,_y%0" ̦V}2-# D&DaX ;zjw뵲*%#F[/ k%}<@{Ug %eO KqHjJF6q8w]Jrh̆ RɊj3/ 5Pj 6!AJDZ2/c;վ0#z ~cLeF/T+#4p2C+Ee7dQ6&4Κ41-399)rFMRGJ&8CX̓''Sd#nDa…j_Nμu캲P50$=9 :~|Bh"V-S#uT6<ڃ8oRHIS3sPy[%dJh:cU$sT>8qѬ={}mv5'::)Tr> c?Ro) j a_\%GOٞ1Y -="q}@G˧T4k)#U3JЦmCXLخ%>(siA^=OYh Ԃ,EH05k/eBtMw @tbt`-Ot  C6 s87@xKD#^T8ƟdZ{~=< @LEp)/# @LKuru!V^EL,'<|7yw?dyp/lT4iTOʑtkj {#I9^afGrg~f|v}!L}g> ^̑x^Ȋqho`RSjbR?sI7 W}.`~ KAFh1We(0l;A.i"[qy&SWsׂ%u1?([ ll+I= L@:gꫳ)"(Kh'w֑}[++Gd6gĐ r Ȟg~I'tuEkv^C7ׇWަو ]\~2Ԓ&[81)\y fDE | v GNj%X;*k᛿A\7YQB8"g/&!,rԃV_yԷ~]~ఢdҖm2x-.<ѥ^@N]6 k>p74$! wٜ;cR .c CWE Np(-Ȉv=,wA ?dƠA wWLWqNQ*e:CG(Z887k{;0u^eҀvmP"ֻDL6xɳ93t%L). m0#B9DYh ߯\RDO:Oe&eGV^Ir8)u@rn_*bLN,B c]FtUߕ> O`C!}^'{vפᔴ¬6}G&7έ oPLUӺ"zN`]هh@EʙΊ R_ UvȐݵi$?맘U3M݃FbCLєe,cBSNъPש>}[_AŁG5tHՄuP4 D)tNXûwGifCiH F0 &1 +#?]E@ ä®{+f-oX&Q " R փh} jdku6ft0S%1 [ؐ.dJhH֯6|AsloaIanQ5}\>81+ ;:XA汌gV^ZT :j6読UTنPڏ("cz"t++^NVB,\{Q+|59g攈Jg2.׏;W GߔC˅^۳WWIO GPy0X4 qeHc`{v1X#G hY .1{ݼb h~L$#>I^T,fExEG9nT |r3XgISaʿ=#`-/8*ii~AA1wCZP*|"5t/R ~%{UM6*%saGRكc~/d3~&H>#N֎Fuʸw0|n#@y-a "#]bx}$/d˭7iP6-:ɬL'Sy>Iz (9JC8W w(8B6WwŬ$M{2K~TZG׌ h5?Zek+RJmu/4f$)X(yLB(xˌ \QD`]It*Xs:ò"'hLjXMj9m0 iKGhK-c}3T\}QrcʚE9wlD/?kvsvVB9 |pK7b{kCqȟgYf"*'hs(lXGlw=D̔ZW*]2HTDy'ZBiT@[2+Qy7e)$B NH+ (!92"B{z.Nڠ;\UNqwepހc9-Ɉ\3ڻ@(VP8}DoUtfć$+_a |Gtyv6bX-mО枱Jd0r#L{0Ez"= y[[oďǴ=:x-mtݭN=Io;HnSuUmBm =Qy?NyRTe Vm?p_Úp`8$S(縷n.Ně) 4Nzlϫ/C47jobs wU&䧞<3>"mud5u?q&'%v}zKI}mI$$~] SXwW(l9BјDYGg_RԔ߂lw' ʨ,LBӾeN!Z8? M7gUb@М7![5]N.틢 3 u1K@y\sC\ lkON/!aǕ9;#K?^rS/Rr0S9'Ժ2΍pHr=s0ț:'d?[?n꬟KUP}>6؃p< _E"X-/oz\~HDKY*-զl7QpsQr lׅ.7wUrǚ#BK6y*0ELm{p L*m"аGSvwa"Rμ y{j$]$"pPltDQb2Ukw3H nTc/臩%/_ox$IV8Mƈ>;UX|bj.| MT&emyr N },%j2<_4YлҚ*udYɌ$98>~:; %Buz iŚX2>bZ Ql#ժAp0)[D%O-ٳ~J-~?op [%.rZ{ʽ̪lg?enւFA3Zyչ=)]M  Tn WDr=7e}yN_$[YΜGz $̵g#et~>f\eK(=n&|۵ nN ASj'Hul<S!V7~[xC wUX]}~Q t v̢^rإoa/. $W ݝ'j=ubV?-}ki5ׯ1N.o)B3k5ϒuA0y⦾x+y.m BRl f}_vS5@H]zX\b}GIh;'t̍e}K>/o yq'^ U$"挅|Wd1D cS;E„dnȨ*Ѕ*~wM;&"0,8*%1Es]<7J2 r}}s!"t`jQDx R\(^ j+d]Q #zFt lĆy3#Uha:rcG9R&(ok`& ~&#eE2 S QXڍW嫾#V(!Ot7ɫӋwI*_ ћ9VJV_?eN2S0 BE}iOꢜ; DfL6@ + -KvZ_-(B +L)_s~K_=ؤf/*$hHbe+Je /OmGjdq'a'yaO/^jDB}E9sУd-uGo&@i 절 W=ç Vvh.FqfZ$ݡ90)QۻI8S.p8uC$㏞AD#劉 *vgk ]IѢu Ron :L„QG\'RR/}5uv3w՛r!U`q RJ'g@"b+@=ҝB~y A5Jy p m$F04>ዧ?fѼ{ƎZ5urE+kAKY$B=Zt Bž~CsA L0 wc8(0s9r|K>]99mZB'`m4/mHWd93 _%*]P!:Ց5Ȝwս nـ[|.7yg }q?O= `(敵ZW@DI2;u ZS`/d|_a?~MA`/o8t?,{Wʩb}B%崪 wv_FFU#DhEo wY) ˸T*as"tKx\T@g]dgǟ*Pz Z΄u-9t#˞J祧5N'?V ޢK6{$9*(K n}vr3N;m.¢2s 6ASOo> ?d]ǪQl#]z n L^~=43N?|,ACQ |t_"i,4F48H/> FDP'X3Xyqۀ^oo2I8^KZJ/I;(RM6Ԑp|<|Ԛ_VB\S/^>{fq a*})HL<5;'؇dC֫._ZKA˜61-~=o",W:v KAd }VAxk%d|&B{LO$n]-}q>ۏ4 37 S@YN!am;W扠glaq"qOfeCd5f?GDVUd-&AiTl͂b(7qI N̲Ahzcsa~?Mq쌒@n.={WY%iValTs$v$ 6:kSSn{I=e -U&I98P1Yie`.[_Lg$AftR$fOp:,܋ۑJf?7h{, B>LXSꚾIT)8u_MPAJlQkpwyеD‚`*Ө-&1NG_jLHz o{!i˙Ǡ_Uo6өn+'4v! ,7MAePiԴ%oҺ*N ,C{@^;57ՁS>?p3ʀƷS-LL z@SGB}zRhǜēx 2Q=©G??5s4WYX*{+XT?9:1i#񥶣D_£#&q^Ih [͛zc'Ww4>&?tGd^N&CYXA%4KE -6b B=q(>3RvQƓЁGu_D7aB-Ltl-j 栫-q YJ7"cM?OY{ʳ;v=rK$Q莉d*/р@8eYe lWLJaA{ z^xoڪ8*<\о1*FrRDIiIỆ-] %+CCR `3^3\7%/r]f cn" h@)MoGߙwggODK-!%Ŕ@evRT3GVI:7z <\ODrQ&Pam~Iʪ (2 ~Nǐ,9҅@lD6L|7Ppw忝e5n.Dr k:EP߄ӡa0/vg%vˮ>*l1FɋAƁ|}DWg TSys4UkysDxQt71IZ `lM V~2DBrv ޹>_#YqwN;1dUWpZ2ӝ-vƏ\ ^3oGaELfCu#5&*2:AH*f߹g捼c2ʹ}GСB/whx +ق be{-?xJ<a~ !`(!ؔoNY%_e$[I<PGpu0'ViRGEˆ 渭Х-7VCLRTzgJEA/]}Jdmb.b#F bLvA ;mƘu'宅Qc?HF%DNCeR.){יtd Iq#"~PlܝN~5K ]CݽX| K0m5w+g}S@(?be\"SuibqOl94Es/-4.>}.6Oκ @$J??ZT_o-7>Uz;.I筱SV(`(nE+N ]D|Tn?Re $w\cߎ8uL6AqUǷ0$ZIiOdQ~{Cl7k۰Dv!ɑb*=` n_@>_0Ht{Ze+%[to? 7.`\ewiLnҝHRH[xtsJS fu7EU0DJu.0nSÈwZC!/p0Dž ,=IWvG q56[[ԥ7ST,'Nr̽8ڗcvݸBldcsto9ϝ/{Q:jѵKٍOlDg+LQzZ"*Oғq!5\Boo8*QSҠtRVzExDa֌:!` ZiSئ":9@G*a~KrNDk. # 3߈aM /c,JxK4hwh b4-Vܢ\bbS:՟(V>ͺLs`R lYcKGb]ߏlV0~jLAv\bGg[`ޜ[8MwR-pnzI"#Az Pn6p&&POq10sT1w4r:,Txa|2M0rb<߯K>m"Rt Or[m@ēx!b8AbIa`1Rr2P$Їk/I;k yhkr#YW]I΃-^iF3[D]h_&?K6f3pJ0!!^|7F8+[gLHᏱ0tfɠu"R B~ :9 ٤~#kBoA4S*6_.z2cs;%BaPeLK#PGPϬS|[ q/WC1Tw/³}װ{ <,Q)@ݐ#5$L=v!'@&0S81aUjcྦs<!mDƕZǙP}z3tOQϱP遃d)٪ 26x ^O- tv/A4"-WTbD'v~|0A&o^=h>hYr JWEIZK3+VuJv_`K$+ 59䶁tw _>Kt;_tD4&4٪yVF=eսӱVg#ə"Zc\"56zIdA:1XMhX/}0x3ܡ# I|:CL1ai&¬\h_¿,hk*j\N⤅ʓuÎf'eHӿYul}b*A. "y͂b\X_A^P J{{ӧV:Hp!鈍F2 Vpxu>+\_Fl?]ѓmI4X 4j{vnkFtO~'19u~}C ,*چHar"tʪ &j}Hlk~T &J 3X<.@ GӚ< tO3-ɾs%u'H@k &tA@t 'eI%{RD}DKPaժԞ"6=} :;'z6 pT%h{{iqw-_u.ޤPC.zGExnᅙA_e+½CfS?:5_p_r_vT?E.sXI?QtM9Ӈ\0KpnH9V؋I&(ۑvݑX,zDY+5Jp^ƥfGvZcF"q5rJy35'-q젩5zؽ}NvIã0b[iv0IbaTA.U]%!U4J1\=cCRNi䘕`{Ѳ:>LT:ԏsiIi;oGLA32V DaZhc<`LA+aX%z'`Oj6di ؘv M^Kp 0]5rϚ%3! fOB{j@/% ʄGw+2yT BhU-^qh$諱<5SA2^<:!=AѨHz#Puj枼@-<҄ {9H_-YX78={*b{i>=?sȾr_J`6Qnm$JqMTb[}遚R naVa!4ktЊamW(!`H[h4fٖ3|e|L*(I*6`7ۜ  U='(>@$""+K$8a%# ̌{*Tsrj0pu md:'cNGQsPI@Eւ6AN*?,BɞJ)1ǴABW@1|Wzt\89P_$~ bD́;ٸ;kamy>Y"b L& )wW_3T49tXkƟIll t;gi7 14 ԧM;FѧJ3)!$B%ѧkraMJӭN5&ø_1MG"+%`uNNc d9\qqNjÖo3IԎzr(xА~ygE y/]Os(nrÎ]ϣъSQ Fn_ +!;Gu V:@p`!0np1ug ~w ѿΔMcp0!:[j{X |T;Ä/=j tdwLk-PђtyMXMjdW( +3HAAL%^Ia.clJ}'lxZEHC@ Ayf,fKxᘞK3/D1,E]=0; 4(]՚m `~Q-בd67t4UG1- m|%HW329ւ'}喹NX;03cgJoj+$'̓W0^, |w._G%&DB&8=-@<hDA8L#nMGm+ג{8 kWtwP]O7L:U#/pLUhLH^Hpꎵb4ңO'a+@ T"68R/dZ"0LG؊ƙ>PU$$篹-dAq1L?}+X[hY.zcSs'NR5e! .|*UJi@_~~?W\?=d v8yb!{|aMݒ1гՠB2>+Z1mh׎y6XxP{Q&s*9S$Opx- ^)ʄWiRßd4+|USdaT^uHG>-S%o7f`5.[_UF}DQ -4C~mҭWu~4`ď%AM7D]ғ9$tCw?r4lЏ*21rs`wE&&~CpG~̿_ƑQwTg:(7ݥAʇgp 5Vu]6% `}E훜;0H.cݭ? a\Ù¤pu@NR dU¨ZjF%9jZ3P^r9GĜsb9.ܶ" ӸGKXc}AiЙ5 ™D_@6Ia7ߩ=Yq$뻵jO[gDۥ^x)}\7<`EB;"T4M4hj`R1/8;|D 1)I=z%2Q[.RRnM(\C6u:ӛ~3ο 8%J!$J;D zK{P)Y$hV8ĒS/ajP󨨩ٽq(d}$Rn5}WSXKfqݏPPc`)Fw |!cj&_MtXKYUőϬdf`m3]&pr)D6Ɂ(OW=}[2M!8r.p ͊y?`.6lN,zM_$\ޱ)z)3ߛkAu"$~+GfFL#j}n2?0\ݽg^rޑ2DqNZU7yNXEjmj)N|S ?xqEEi-[ &g׶%5l R&#Fjb#[_>ɘr{Ͻ|7?UNsU7R3߉/hmaUҬ& \,v,G1BSbN Lrє]5CvJ[[Y IȘM3 ԯ I;&ř`{:;qN@;rs Q6f&C0ij2uqz69 |Pw}>"~_~:I{-wz8Z}C] }xWKS$\AP$1|2$CX#RFS( RU"=zك̎+vlUWpK8Ԋ䔼ԯUO"$5=n6 "#kPtDMF5))C@y>}RYTUeKe>KiK}J)/-cfu淿Pɢ \]%o VJ̤LAmloTI/v'6*t&`@_ S24@X幢?<",Wd`h\m~SI& dceP凜.y|Eb6=9V.#0!ew JpTT4r]I5Wa*Iz̦L"-:Tl'Vr@Nga]ۦ,q/)vSRב$3ۧcjov0N"/c =Iݯ)P?PJ\%ig be4|UKdOF2A"$+DuJs"!?trzuI w/n<$*tdfiA1Q8 [ WJ[N|50m3~7.*E>Z][C(&)CW׵2fnq_%9UFQ#@wWfo~]g(}:gQo3oN_dw.;@p^) 䒂i-M0&ipYb/n:F*{.vKQҏ1tCBte5x[]gFY*DH|FRlqH[F[Cm᛽54ms#imˉ-_aPM~T?q͝yMZu}4PԂE`)ƣ0];_j$?e5B5(}Gl#jn35!Ɲ!J ̵vUCx)9lc>P7"d`v۱gղR@n;ƝWI̴ f(1uqu4Qsup EVod4lQrlqQ{S޸[ߠ!a`lpB3wwѥB[Of{hL1Pt {> E9NɌK,7Dx7-6o`=3"*1c =[ DS:˸cq^c63*| u6+65jۙqûAP6;䢰26eE)+\6sC%.Rp .snא6s_-ъMkwz uE-(S^kXB4!%[ϷHz"Hgϧ41-Րļ77ٍ="5EjrT 6 }NP^u١jT2367a7z_q&5KOwէSQlmJzWC Q x@N!,NBi HcG KL,@wNoԖd&›.'̼{-t-~iDC%B@dc?a6㬯5,w?,|쿅}Iꑙp3 B?+S8 jfYAjhd\ẕڎY>QGJɤ!&F.-,$'SnK>ؖ.}2-ӀmIXOj~e |+==yAϩZ,SDā:F5Evg#ȂtFrG2q:ߟӨ#GjC1+"X-p셿2Ѿf_>yP(p(V)MBMAoXY<@\! ޼ND6tC)Uo㘿/xԥା;' FuS86Rn2?#('riX*:?'^;z8/~AE-IQM, SxSCUl0l.+5*rTE#9qu$E bs|nCS.1@~/͡! y85\hEԓVNwpQ>QB m[),dЇ| .0L6e`50K>fч =ЖjRԉ "N ֌N)Ǡy( kLB@1pbC58+ӑaIVOXahJiOsP %ymaE99'_TT$0?.p|_}d`=u.bENtM ݯ(#<{@c>Pb}?vwldMn1ܙNY@h݌0x \Զb_Ծ&1黬|/jF8_^x(LlC>-l?DZs0PkF.RsG<M - Ɖd iv,{DjbPlYS؍;SlWRh96`kM9lu2gۈHIOXzݨ#i`o$9>N6ޏswҠ'*_qb Jg~f$ ֤kp-ր*Dҳ3uyѠ7}B/ m-ou'7+fأfزc#ɣ\k_iJUX/pE-+o:.*|r1UtaBV%B3'"*(l \UF42 $m{?A*A4_~c5oLB(j;8#FJͨﲼZH!8籱Ԉfnjqϴ ' ¶ '-WLd/_Ctf6rv]ٮ4;!r:L"3`K!X/ w ]# NaH*/zh(ɾ!/nY{GE@$,w[sP?r4VT_$udH5fb/01ZUCq&1?il|!B84e&(wE;HVAw|nQ͗ $N@!~+<p?RQ $ֲ("x8jn OBB*'S|X_jO.bʃ}E[`ׄ3.jA S/nN'tpoVV UldOzȠ )40t}0`[g|=י}9{Ç1*QixFʹ!9VMmuͦXK.2"\ӌΚ8y*184 QA`梸6+ƷW}OpNrw~=g$7[^j|.uhki8* IċG?$T]X ̠?4!:DHl)['afTNK*Vd?+8f{懥7!M>shT!${ ˕iQ]VYwh[7q?:Ucnܚ!ik"֡ń'uG_bqMUd -+ӗ5PzN=N40SM؝A=pQG@癤&l*+ĺ,knI8N݁m빉z.xj9 m؃#1F<{1y.g?B$+5I5f#nU9l+`(91vZj3*, E?%pSԌg٩;W8W>hK7^&^ :5͸lNf+5Ep&qE&6z`Q5:1h\;jc 3ewʘOeyG]Km? UA˳G_B)*:}sX5jAdzd.>7{9<$ f**SZplR3|ՁEg @Y*AΨtL.OҐ bHM$\yDwx%C_/hE0+}[:Pz's1xr6'LKNB 3)nc\e21@Y9 bB6_#-[KTفI-j Ż )5co}Ju8-)eDEvtq-KQGLFE i m?@e $+RG;:V7dڣˠsqJHe tALmFCCTMk]:M&; $`>k)A'|\ k eUfi'8&D4V!]c %iM>!?Vቪّ6W x%fGd0h,ÿ<^8фLV7:4qr0ᮞ\#0곌X6ڟq`$1^ƃ;"%Rc*uzpvP7ᤈOBS|[Gcꦒyh` ;Sa" 81=B]VUeXІ0>|r Fbd/C#:lB)9=C|FM l}<)TV4m=3#&-/S6D2 yv8HR=eަ=PM߯≺DtO6\cs 4.u?6-]BŸh@4:zEEǜ'f k]̑rȒR/im{՝I; JLo$T N:QGmEWyТ&` %AG+c"e5{23 &IA-%bCāňXҤ,\S [fƵ R^$p!ː7,bԢgQ7DtȏQi'B .z' #'{~MvH0Vݍwʼ?Loi[Vm8%;YρlnNI*K϶#UUXīs)0xߞ*t$ټR25QN'fskgGq'w_t仐N3 kKD< cT /$][\KHԬ^%A4K9ST l`aBiq >Aui<qY|N,wȸ HFTɀJw;I0̯6`izU w@ze]^0w)0$w).|'qu^8A]i,I/z7o[ 76TA uׅu~Y&f4)V[1D@^2D k-Jܶ!~4Z܍NiiS H/RK:!L] "Ka$KoW1^)|thꭥ`UTS|+3_B?<;?ڨ^HG &!z ~Y+,9 l0MWԉZmJbkTjYAeb(T F$+WXpkTLÎ.4ZjrE\4q%\Yl8cmS@f yc[ӘWoqQn{ Bt6Onذ)@L?_+Y; `l( 搹 k8;"񖹬xR[jUѺcU_d![ďV uO e(TlV:f_|a5 ŅXO'MaOHГB7:JRIk8=a))ϰr6׳P d/8Tn]KkdtwJ-85)7y=b_ࢀuKp Hk[jO<̌( p-IZm;i-Ȋ$bOf=TMvQ1Nw}< [ju6;ԉN~ 'oeR- un-ZXo{Q x RS\oYTf[ rV{'a헝2F<\VO}cQ?){7hz0Zo:3v%u}mh;B6:ú !B jp<#2Af }nʚp_m%n >`:l!؉XkǢ_HD0 Һo_cPG<9~shl J6|ziM)d}KoXЪ}/eq̐߃jA.%$rV.w9rOaM ;,LkT.[#o/zRXBEE.oO>nxxPJBu0tFu8 2K^`8|bwbp=n~3W|?X"VC=^ zF4+S~QH={'K #Y-to2!|L?ݪ~Wu79i>4"j,S5:['ER!P)BÉPJ3WQqwCK%dR 엚.wVʴy )Nڎ|zl6FKmVij|йt}p T6Dt1؊ՐkQG,g̒hF)Djk 3/etբWiȳqoy0)5g`ok6(8:7,wǧ Lcl޷cLY,uAqM5tB2rOrh]| 'q-$\"zXu|4\$d6,UXgeiק?W E8=y!EcuF;i0j7çj-بٌ9kQؐ#9 F-wϻxh,쿤 %Qy8|Jf1|ˏY^soݼlcJZDK.+U#eow"%ykFF PsT7"qH}v۬׬c|(Np1!V@3Q1J[`7 R`m[kxajN){\'&OO q{i,[1^8+ؓAru1B}$5Ԇ ^-6E=90c[sěf;i8'hU 2q;dBa;5q8z:p:L.,"',ϱɠo 4G`&}E![ z.Cj~-,\&u4wU0C jz¤J4`{_eO|P Py.2[7?1^fJ hIˁSEyti}|0q-j_Vc| Q!切`NDP0t)2g״g'?0%9%*? P?o\ Q'1+jU_x ow?(LXB}آiX7rix0 'IkG3yfi PpYsוkK&-yu ەmf&w^Hym,}so:t\_ Ngbf/͊5/V[Jr]?x$9H 36Rem4T2s1vccR<|®k/lOͧg>a^gہL<F+ښ cd_mǿ 1C- ._21aWu,Sޜdoy1o IDy #š_"2%a`V fw:FPQA̪1%Og͂QK :yfؿQxrjYEFl,MMp8~H_r\`#IsI57+gAǗ2d֌ ==o>T6:3mW"wdl}-F~_ֈuUK%6 Ȁp|("(M1hj )#IWj \L5s\򠗵6˶X_A@J7;ICV[ݑ!$^2Tց5{gr4aJf!Gm[L. MhbYLJ;mbI4Q%;'ߋB?c)V?8gլqlFB-6@+裔bnwf[a];>Ii<{t7BS2w^ <'~&|Ɠ?c'`+RMngr^v8q/,#?>x`KPƝ| s+ |L }AZ'^#Nphb_xGdX 1P.Y ,+ @ 54>w,`!0Lgk`Fj~dKteW,=Ēs+)Ʊ\ <3rv Fm&Iy0BZ4' Eko+>wWlvZNߍl!42dEջ>UX,%DS&I"\cbo&Eq,T]W)N~H2ohB [^Gj!^JUԌ|U2>(=!6 hĈz:p]gn4`)R =zaȒlCQ:M0O0lu Q0%G7xrfAHWyS -Az~s{ERz. ("(7o)Â&ɍ0`OkT/ `Kl_c> KTJf"*'8l {ĢZ:wLR؄)MxR(T| nlg\I AYbLwւdQX%5 {)Քqsg'A΍k 3x2ׁ1i}şf#98%-AU2;܆\#Л 1^]0J̔`sJ9;1 j ,PjQ,j}LM;I Pki"[2xa<UFjϜH5* 6@ { l9AcX]'~A?t')ɏRԜ>}yFK%v؀3ɫ쎚CM7g|.F&lJZ W9y]˘s0vufvD\C5#EC t;<Jva遛;8vtPʳ%\Ȳ W a@g(Sͽ(O9!x +vju,naУeHd]k>8G=L{G[@ ݦvm9pt/<*P]EμsSO:ϣ 6 vT\)mL߷6t\vuėnҸlc,fdOd<@k%Զ&%&Ŭ`hRuqB ?D5 ǥP*gۖI.ـ2Y CTK^⍶$D2HdG3/#x3j9iZ4B> Q#+f)Bc˷Lbxe Q*TPʵX+:WU/A uUqz!ܕH2a8Y9cW\0ۻ =ZH:>[QBg~IU$e&R W [Uz MNŒbQbMȱk&'dY\r3܈!nb ~n\ SpcJ XdӘ&e҈u|h#)-FCqhx$lYQUQ~ &+QU9jxi`2Je@XA x8NO-የ1P~ dym>6+=H1U{  E{ Oj^wT HT`Y[0#nFO=TfI./h (Bh&O3l1M4})VX-7%rv/v.w^* n%Ek&(`D'N$1mSRljJJΣYs5򐱔SM\ΕG6!X6 Ϟ-W8ik-" Eç-p$E- 0萾S Nge@ƙjtsarδ J㱲[ĆJZ %IUwO^6%q]d(;ϸO$mHP%cVw c(N6n_ږq ;k I'2?n˲׀l OٖհQM)g+48 DkyzM,u*;]&1ZL,Btz}t#V%ϿT*Ԇ'w9UFR.\ $`J:ޚ4@}Ad Kͬeok5TWu8FQZlVWXW8%Ího-#3V>ݻG쓂 m0)UM$M6y0d݁dYjvJ{m 9GJoy_*+?wKP^nRHՂd{z#WZ;xIĭұK6SJ6$Yno=tڥhIVxD l+KWXlt[/iF~o\Zc(&=4h &z*j G2&NA沗P+ER%'mZῧ3ןlO c yᧆ'zB?[硖E0W*lZ,%33gw{-ЩuQʂ;1*H;6 P頉&kQ9JK@E~a9؅0䛊<y/8Vt@(q(dI^$5BVoZORU+M^F/aDsǹ|)Xs4 ̖MzCRX-"I\h-hAFFξ:5H^Qg4]BEDQ.dIFDMc4,I犠:z#X|moboX(8eщ`=m\>ZFtKs?եTvE<ʠizX{ft ]So7MGloD> `6zqܖ6Z. Aҹ ' TIO 8C*#]A-*1"ƒ8f 5, B}DRD"k l>[B+BjfpAFR$B,T`,)(,ΪH57Anæ@H$j0Q{/":I6uNG`B726TI_%&%<( Q7B}x2}=$}!T/!+ al˼>,tPvoϐ)ۜn9*D0zYōARy\`lSMEIÀЅӡ|[N+:ݧmS |}/bԠ H`(#M- 'M d:i<_V_[4gbB!9}“c) &gl:y=MHQR^z &:P4kĮEU/`E0ɒhnCYΏyu PT /t9"d7&C>Rxub;I;n#eFR)3-}C=}h QP`8}Qk ƻd_K?N"%>^M8p2g#dlHJ<9~v{-0GژČR k%)h# tRL.k7?Htp'dA kY |Mʈ2T?uF s[IaE7~CP4Qͷx6aRކ8{݆MV٠kŝIiQT*f=S*㼳 crR[:hcWȰˮ1IP*]aGg9#RNTI0V. m&[`*+E9Zu2)/(Ar5uqA" 5YAW)7'LhazdB4 CK Ώs/UO ,o%UB ׸5dJˊD,$uׁߍض=LiSÌj>b=KiyJPKY ,Nxt,lv8ZKg̻rssS ُf|JFM3t:N.wEr"0^(̀Ƚ4*j3ٵ\>:hiHޘ}rϥ!x}BqB,&p\#'٫ԯ?Z+Bihsb$(nWHfW {' CZ>:8Xrԧ[ڜ|QWעf @v>bog[2ظ 5WUԻ]ݟG^IT%eb7#~$z.Q/Wb¡mUw?mQ]]mg.#oG~'wDiϵoNJ)ۢ8"lE`b1@u,; O9F }mOv+w ݽ$+@ ((ؐ "#}>Ѣ=AX&klҁvũ-#]өFp5]ѻpPP3tvR"2\)F&m$I8SK-[ȁ WUS(n81g=Tvʅ+XPp`mX%ڼYꕋZ~q`4F@>53RXD_*+G:p!IJ--OJمEC|=uס~uuRBʸ&oԮ捷ٌ2V oʊM#y>#ua4h+p.@ld?S̥~vKrӾ!icy; vcX:!XrJO=f&)弼yԀ5Gl)O\ԕ,d V_ö0Po(,tqET"?=q|ѭk5֝PLJxmaHK9pNK5xiuIœwXfrdG(< fpMR?զJ3.1R\DoriQo-:$З%ֻsSҦPuX[)USP@WP%.fm;;b8{xb=Jƃ~;VK2fc|K"]07۬:0ʊQe@ 8.UH+븢 emP(^g-yR`ti>jwM2Sђ2Ymu|Xm?:'gexO4^7ƢE_y]PZ}n;& _hXp.cɀk5 kږp^dgP{<֠^.eWeFXK_J|2HwPD[~~} myy^gv;ZtHcasIUX:r(׿rL@Z*5CgथJ]+jdޒil3PQ1? cES#F<w\ݥvo|$B$~ۅ_2*)NN2yNOI\Q38$gnY"`>Q2m1+U*䩎:P0F kv5SB3]K3[1 _ ɞ@|'wFV_kWy6Ex>:ʗB1Y׫q(Yzmnh-129@g_sPuѱM ;YOr$AƑMd^þSDB{ oErְiCߵ_LQ7=&!1# 4Q./O2D/뤜fxƣX3Hc$ص CUBn-T/sr?3&LP7EԹ+.onu/ l6Äi# B@fճ惥4*}boe8 k-`(}(<״6wi3xtOe4I\2zt/af %Պ1Xq=VaCg[&E - S_3(_\GB$lB^t,-\8/īe>8)!6'K]'?Eyz?i׫D2XW\?u'Tci~L?LD:WѻtOh?:==ꤺ]v̖G+)p},V6dU=J/fC{dfd4Q'8݌~ ϶U7N֡z]g…r{%SO)xʥ j?4&H(@Y W`$9s bB9uU qM|ۤrq_f#T%j>> P(_o:"}\陖F-5Zv5KsαgxU~ZC:ډhaN& H0ZT0h@MW&̈M<D[2ٖ&}=HK0$ͻ㡮/0%dTG _(oe1$2|9t]X|ܖgCHDx?n=w+ſ]Z0=T *rc_z{=NDruwBoތd>5Ypؠ,(Pƀ 'X[-cy>%4+h+(,tfh1?[xM(Qs iE0)i`$Sh0jUhWs0ɗԮYݬ PP* ^'0nƥfhnQL%2jI ,C׊%Q'-H;TJ7r6`68SF#wƳ:A'QN 9J3qEO2P5&-z U3k&˼hHOI(Vm]e"L{׏` b4$La0 &&#ڌ [;}@FuUZ zrIm?7T%PQg"bbދ** GPi\N槓˨MMSϜOu& | DͭB:\z jUL>$)I?D[c]WFfwS)cӿ޲5|'n8"F !"q¯zv}e}"{&t:q˟_OA{AX]2ܸh@h"S  ҐT98ب6G_7c3'&:vdå~x" VOȝ'kw?:uτNE\o:6)e~RqNfmk-i&p0p!5Ix%P*JlUH]0v& |7o>TT'9QULfӊAcGB6%B`s8$S{]:h)g99~пXg_BR:d9zv0`R1d[lw/HBybaak`(=8҅&)+F~}3F|QSwt@ݜc8,`8|Au G(&?(nnLXP n&ZkEcg0y#O?;ٕ_ Wؿ>WԤyٮPax4qKoCxP|&9L7fI9cu}$3,[Woyb9/ )Ʉ0f[9L'GQfFlZNO4l2+7WT;;9Tߟ4?`s ['; 6;LMo;h'7rbK'Ϲ|(PQwxJu֜}]=LAt (Lk%O l{&Ks V΁SW:-0Jx\5,*XnPߝ]ES@Hы&*'"?g̰7*ejprهs/_ 1Hkm "x@Q&%mmsx^!ڦ{;WCd#zq*ZQr CW aQL&Eֽ^[KI*fdqe3 R75xhK}wYbP/L*bܖ/s`h -`.QZs0ZA)%u/j!n` dԍ^!z^.k9JD'r aC) pۿ1hE/IuUIfOy" 0a6SHQ|ϊ(=[{]ww;D^v/smȩePdho`*^|RY=۔Y2I@K#9eN=xbr7f|C Gw I/pgC#/2캢klmL8r{wx2#W //ôaH~oESbԮf~vxy9VI`T ۷WimTGF%^5go&m=}␕Nw&^Xکha:=Y˵(X[sy}e!~^@7 |pjd؄VR^[OMt =ി% r<Ϝt˼gX=5444hˆ),4W֯OӔwS +R*%z fGav~ /-CHWxF Q[R[9zL')הs)L.#3nmdi[2;Ka啫=MNB16y*y>G@wnZFk[NG, WWqэ ē2`ocXYmf{ ꯆm9 PbD5STg⨒7KzN<@ ;] $̽TEuc2 lǷ8.P",q; i6JMk7vv%§ِ̀'r/3W4UA7~vz'p|:nh*%A)b><(N߽ٝ<#crGg9Qw"oN=yYME`kg3K#|=~'鿌Ɲ"|8U) $Ɩc>< dgX?VD\6%Hpbl H*4% YŢ2TqQGZNa lwp)}'dt8gcӃ҉s3OR٘Х;J xc9{C4J\T5Ured$<1m,3"̘AvFHG#(<4-2HX(BF 6Y15 - o4:a ҆EF"fp|6_Ҙ?T"QB[Dm}xĸz}Gf&>\lDSh! I`,ϝ' YO4R`O{Yl h A=!W4 "BXoy "4:y+V>\Y=N= ÓVfFV~L6tpZM}qѲ$&B8d$hqu2ս+fa-^2mNSfc}iF`cӈ7i2`jK[`ِ*-x]KMh4R_3$ cKJ[,KC(-f K{ժvcn\R7-_?Fa#0Dvjȝ!˚h3^2Q Ś$Ә% P?U{[5>7xtleKNJbnm{^FjǦyF8E! :XSjΔWiLRWkE𔂖0(i纡e=1@M϶Nf8-Ng_.IVWyJ&L1]M,aŋ,A]̯5}PyJ_k!Vʘ@G|>@Dzs}@*G?ۥ|6VF!*i؞1h1Le; XrF\:Z3]ɹGo|ɒJtgwU sZ:UcnF >?I@7w1r;Q2~k_Oҥ3W[(3x6"Gz4^'*D  d@0ׄye=%wg)0`y,==Oh:%Otg"ag>N:a&]c FwɝpiYm^*-~FYԹ!uQ Kk i-FYA^-]ЃH;=>Z3 f[D,]ڱX*[9 J{{ Y |AgmK"~lF<X'"IP yCLIH!rʬi*!#oA7eϲ6'aΚC5?C1A1m,b?"LZ2ǀf8y]@7t[{7[ksEHnۤ-1`cs:߃ćP7e=VZ-k g.MʠlS4;>1=µ oeZ6Ǡ;jڏy}0]K1f"6pdqC&ju{).Km8J):^Qҧ?5O.qwڇ'#Α4I=sb·| ?@D{0sYx;U6N3X)G;'}Dff⑱*StTyHnofVItWxH3{ B<G0uF@/2 5\Wp=k 矢P[8#7oUhG(n olp^q:QdH"0 I!xGt\ /3c^<1] .qr ׫1|*Y2`gkUzZj A;U:Q4OgL(ɶd*r5hg:%DʹߺEI8 2SȈ\pꁡoHKVcaZwt,HnCDVX4+\iRw ]v{,%O?1͞lҊ/ G}8CTOVfYJ7O/b i"m/z) ;ty [QKĮ`03s>餽h:FqˎdqE;]dcX̣7=9( l L+ppKaWt&h;,/.U_p1Sky!gS_Byث6rӘWHd J6/ń} .<< AG,=$*:m4DQ>8': iHe X]X$9,__TB>2,O:X[ND5":Lf*lx{@\iJ;{@VUf!f/XiOb}9avMO "ivZ!v?yRSʲi#qNLP;|޳П+T?2^r&%TB4c=DSzP .t;34KH9Osji6_iBdՠ 7~'?iS`ZO{{Uu)m5v)F.{Y }L?N%n*U%Y]HcVĦB9Rֱ ^Qh#MNg!@9%\m |\ IPb3 ؂تl(o\"W>Q!Ԫ#8vd%k3DΎT_I)fmJUX-˳ЖӨK%DΧq-Ds|wsRڭ$A-[6x8QǺc{ =T'7©e,ϖj$nK_]_4>#SNU/? UCfXE,a,Y/mAPVg˴?-<%5`W<5%֠&||spc-t>vpgNā."M˼$qG9Szr 8fk@6=ח{ym(Kd 3gЖ{O XA%SY]4C'z)$w:zMD-5 5Y^(d\|t56+D9d҂=.B< fF߸eCN'ԄHN2TcJ@?߰< h lbZ<O(:Ey@ ~S$O5Wt'd_۽N2?D<W V!0j-hlb% h%PMDmKgZ1y5 9"g|ON]ORm^Z!PiD 6p4ڍ`ޭH+0> cby{OТhTtTABR>f+R:1vc"nd,Dw9Q3+vb iaW02mME;-b<U&˦h)%,p0`ׄ\qۋ}L* Jc_,;uȓ)s_ V9[Yv%ުV 05Q9 Ԇ3FXߊ'dM)JMuB#|d|S5>F=sݚ&DbPUxaB,IrBuca8&N ^n] O+*E2,"6op߰;:X&cgռE>f,u"ikX,i]؞jZslndq_Eߓ"K,X6Pڑ]_k}5,Of#^b}4ӆo3()Ynu^ya` ' j IM%k^5崰!Y'EyV%ܡ ̰sKjN@DJ3ӨɌ-e}#(5|() PxCxn+hW愯b,"49~L6)=#e }et5SoOYM e i-шC5*s ӗ)aS1Ku$\n71.`g]Fk]}e+PNuϘ84 4 q"XM^ڊj1Y3 N~ DcXa+#+x$B[}(_vb TxvWCjg%ܙ`kjl=۪-s27n0$NH :$#~ B䷉) Z%r_95:`U&ʞ9=_Z5Nz\zp# 4qGn2 ^FOZD! PtL4͟*NC9 \ƬAڠ'<[p1@?ο1` BG xJ$lc*Y<8sJ%]-tk щdl؛IĵYk|);WҖב MfHt2XOuVb@]˂!RY(>v}D0\vؙ=>%L:QݳUoJw&#oYtF&jkg؏V g*5m//bUž`A&ۛ<e6 ս(I!2Y;IgU@'OYTAhWjSD+n@(hqV0m89 Н|#KKh cV_NܳD0{O.nx'];c"F1i (9Ht7. RJDL+\1yn5mS]d9aw?gމSwoZIm5gGh֟B *] uJW'QiZa2chbI3F<&q_2"ąxцfm,ui59*:q5!27Iz ?~%ps7O|6q4^l "uW.!E[뒴'N΄ T"5m- Y n3*txŲs=yMݥܑ(yNTJ;y1#:$.t7axF`\EN *2|u [/:}wOLQPٕ32P{)ݦuÕR+"5:ˆ)v'/X(Qc*']ly}\J rK =LN#>R-OjIB8](\Ҥ1-Y&!sn[\I]LFfY^FpިWK(՝\@Gtpզȝ̷Zzb %0WaTF dX0I0S2KHd>P%cRhQ6 ҠlM>4_(LpIR#M_`97vP4di }T_msi6AޜQ"C$t55pk `hgSK`52s[|*BpjmVA{>\zV]ș"j7f?fA ; > ~Y~'{8GT?|3ℝހ9DŽ H |gB~ۉCQ[gwzo)ŜIʝ̂7v|y`op(H>[]O\Jf_vڒ@>eQpڔ3-SJ c 2 $G٪,r'Hd`<55ic",Q_| M2ۍW3JY&-0w a{ &?@(Š_T)OJ{rLjcKV6 W0rٶ@ӝK UrZȻ׃ѼLA5Hs!V@+GC]|3I{2"Wxgm04nI#Yl0EGޡ)st}Z]OBgKe17sE ]xtp>jxچ#2i}{?g+=`щ#Dn܃=lÔvH YFw~Aσc"P>E0`[<1+CF>˟bmҁō0:wL^ɑhlpvRA5?҈bIb@ ׅEz8҅# 5urCwsc nsɎ9zk R{Z?Q| ͜M݈R5?ܣzΆmsDضf}0ƂA=mEѐ'ɮ߃Q4̐b~&l?M4 [8V x$BZro*`F֌ل;{@Uھv A"'J| p\^a;v,YtmjI$S%^`'4k4 "};ڔ< eJ?1 f[62[Wh@X\9*(dt5ԧv6ܦ%`% )._oV+`qvst~xdg)`ԍImSJCy.vѲU_5ؠh ϟ665s۪A/kd9HL=W̪H3KO JZ uŘ$cmڙ*̑IpVm\PB_٠P/ Tf7bCIgR$feMט`Gh=6?CRgcJP'{ܗZ 4LlMڄ#i:MnuZ_nYH+dzpQ35Po o*g/v8nx `XR8\5/ = :0Ygiiu߸&0` N`ZB,W+km3EHy\Zo//Ę.9i-(CV]![Mc⛦ ۙfFH͑%pV psC0 ''9"l#w F= >I[-HL#N %VFfZ+ l2j_ yJe5|,ذ",&ݠVq2X?Շ,2. "1݆F$]"& 5ʀ8QG>h#hUid3H,c-Lbj;қgVؔb{7%&W;ǴCd(RjA1,:>X0c͓~!]_HCcys- *~IkVxFQD֕QT=["B3bP@:M<%QtJnp-)"y0(՘Ĕ/>6.m[2[(i"oT0Cŭ@IH} bI$eo-ZSzLR09$%/*Ƒ{*4 |%vډѡK䓱 "!tE$Vux"7_ӫҗAAaL եG0k{'6wy$u,,Bgu[HAn^4Mh ){ړN5lv4Fl<0̦A$6xw>.jP_go)Qy:S"8 "3M}r HXS~PV:T:)6UЗ? ˘Hбˌ'y'UBͶek٠c\a;ja "]rK-/ݎIA?:! _iy`nEe6X0#y?T QX&d;$Ӎǖa{aL C`1e ARۛJ>&Olӹ/UktU6'o!ډ)' -!DW'2*5=]V1M9cO;AGb+ϪŬ؍C«H&`ߔ1Lb^w E[7"$Zs%k*~tߗCA3wUt¾r>&d_{ڢhQu0Jʧ2 ˥ l瘷3+؁lSnkx^y,h{*Dч*v;ǿ^hrI"L2P9`c'#?T(Vh|pZ9 OGA,6|hFvH :IF3e}{ՠ>5dLͬ]O4r쵗 IѰG28|t= 3%AtQP1f(ƟJ]?h!2 [%Y>2혇 +?p/E|cDvpqjlO[,'P蒱lq!±Ɋ7h6w!5+EBl4ʀ+ +}ܑ̄J<8[OD8ؖx̛J.w5+iؘBڦ$AaR=a{oez}/C1yY )s%]~,@ou/O0̑&bVI$:`Ro[0N(=daҦFa)Qݻ $a8\g.vb_<L25?kx@Q+2㈏,x" 3)Xh#J+V?-A h~e: £r ԯ l'n-|\kdr0- -Х'?狲Ԉ~# ݫڬc_JOQ'Iy⏬g2czgO74RYi}7vއKM of'ՃcX^ve yܟ8G[}wT2qb5簽WHen,uS5Oq|Jw%j͠/qQoy[ƃ䷛z~{tF P'jM\a$}s"O\SỤ:Rc j ]n2<ɝ7jpG8ö $gXncraJ>lP+Quw7ZV^'İcfYMGqX3l#rp[#ÚI^}CZ8Eja" Vtuiͥ)il8UB ,zr% vGB;8xS[v{&QpEWut8JuuK%[>S6ׅ^çu[ɑ*': SLZͤp~˖:нbȒFV? :1E_GayՄa͓Ĩǫ2͢ xk,8~Xܛ|wFC]o-r0')9'/;:izz^ʕe:E>D#q{,*ҥ]=vhwzh,q"]{PYXG:|8}k 7䩯W(?k 098~:Z]h2Iqr+K^oie1Q?B[ Nx`ٻM̴/FlcDa$r|1V~Pg(oS>C*'к )\>m3b}%W Wa X? 2( ]gaH-iɾ2K#_܍݄3v5ؚ!yM3.rywB냱ӡ?+TE {3坛d]Dn}Әºh Rz|6ƍ>Nh$[ y3L`Gp$Hh/ɹ4]"NXp$ͪnpL/krL'Zr3]af17vtxqĻ>Nr9G(:ã?;#!~CĿ^񠳡{7 :ܳ*A1YBڮ!(((Y?IW&Hc¿zbφzCadqQd懡*N%#tm&;MrQlo!h&qj bX -w[+xK]S8OS0<^(r{qh/SE.`(kY21ɨW?feM^lz)ht~?Eu:dӅ?q V3Ns ̨2$U)S)@lΐYp\4-ǰ&;xe5]3Tڃ~W; uCD{H˘r)7`BpR_i Ǹ 3pmt^ؙ?t&C<m|{d φԁZ)Yqmyhί9y%c1C xRO= rȚ0MxuѬ @KoZ1]wAs5;*q+ȱ4Xy?ᇌC07P,m0R >oI`K,fo\"*U):jWVcY}1F9ݣI5oP%Wҙ,K$/t<쌒|L9*75M|Dϵ8(%Ȝv5ߋ=V !%7a'L n]7,=e7j. zA_P`? J t2R;FZᦊyZ;@Zrir>I|a-tSutaܥGm jmCL]I kl:q,쉖7uJg)0_~41i>hk7=D [I3RϻL qFlZ^tSkYwTbÓ:6z:6z폅ҋΙHP\ NdBzs%M-wEP Yuy#k ঐbAd?If0t~S(T'd V͏CR0 ΁Nw+>D1(niRs:c !iv )Z@)Ka]?1Ftp ;{4NLeI as<y$XRGa#RE9Ƹ }WrVU eǒF2F@TҽLB>xisl, &30a!)lyz t1_"kVqj'`a.,#;0g.Ң$w!ϊҸ({9Ψ bC|r_-/eC22")# &kf|'xލ@boa w2f )XE>%IbeP wV'B:T6?PDRYDm\Z< F;Xxr?xPB(_op=$Ed{9NӅ Wʠy(%EBU ZmI^ T)bG1 Lևrpݿ//+ nͤyU*7M%{N݈?BH|elIo~D)`HĚX1X`嵴T' vC-0|#1~:YH˼n)ZD r$+A 4 &IA8QlҷC K*3eDuidFdW?8TGӛcVZaDGbpB͠iޖ:h>|Nl4(z.ar~ezTƌ']!*IíO$*pA }ۈp_D"*{ +7 b[M,J}̇ )\}Y}6˵>_*M Xԑ*Ųq[*8mh j|| oHT٤eejS \[]`M&xa{gu_ں7h5{mVtBɫ [qW{n+dMC}B1V$(~WN m7O w>Uak)"0Ar? ~.n#o" ~ ةE"6P \);[&q@iqZq{٠rjn:96>tET* Q  ~ع -|-5u^f9y)P @oH[zchi*U+ݐdx,,F¢Kkxcx؀qKs]x( @a9mURPDcd?;Lj6x!giBg2yP2-𞧧xc +'A)er? fյt)}p'V9G_ /u1cIkr/q:"i N XmZhutr(M K߈9@t'٠'ZĉB 4L+TƮbs-Du>տZ<7#E}N52øvq؅kPGeKykͭ۹!<}YC |):#ψ 읱"f/fBsĈ 4!=7~-̥ tB ʀ@BHWrV̘ ?ߝ.v7A$ *Ӻ Xvd -VO!>Uݱz!% iF,T6lzqR53^ K*&xs?ɑpK,Mpk.բS`xZم9OxdJdF+ sKqRl)d!c+3͍Aœ i0j[ 5F'q ʑ<*{ ]ww9>:14%*x/ݾS> g·"N#9,PUd4DS_[Aǡs'=$sZoΏS_"Z\ e%qaH{PNO %Cv.ӱ@Wde)!osKi~ O/@/(KuOl,y6An\~lFnG\'s|3Oq67n8m*KdAX5==OCD޴) pek$Z)ON5&#VS\ܬ>3K>.KCu606v8_{0نײ^ +:'jP|d~AsϞoSࢾѢK4FHL7] L!neA7]Xm,.nۃō! k[,FQbPE^b3pM1>Qvcf HQw5$̳kb8ޞ#q+3g,l+q8~8ILS?'?[+F}U&es$BB{4zXqa4|lsEs^D݂(f7L寻: M $Y/ /:}vA 5vFMc _FۏFJ=ٷ7e`C(y P ԏN#0ɹav\y{IUqD xdL-(vRC 4^bV#^S`~#ʛFD8V0OadVx$W9t`sޑ]qV f|(\8(,tȻ̮ Fc70-d'/q%0Ŵrn" ݗQ)/wsOf6lц ui渿o1qQZ*EnJ4|sUt|xP$SMعfLiyI:~ԈY[nJAas=X3 @Eڧ18'b/δ椃WWKiiP}j.fp-V>4sJzZVO[+rj.c}ArH|YUSn[n^TYVv F00+ZVlk4UZuٝ5q6J78E`K_pSЙ?)sއ(fsA˖^Įs9os$"@e$%l/xKjsn[ -xN_b4{_W%Lɋ%>3`TR}9~U3qшZY=ʷ\H lM7-jQL 1&M@BiÕټb ܰ2R+t\b!e 8w*d@b_ lq(-깡]sr2 斸@޲ ^(2cDoA7q|5'qIs(>+'4[6cUx 0qOL_y!cAn:TZԵ*Jlp.q{o%m̤2O@'M@Q[bpw fe|^_!{ַjMxNs3+[)c [pWn%yџ4n>xlSλ]<\ TbKr', NSop.0%oI@8%vc>{Q {,5 ZLxcB.1s&>.Dp|=Ţ{$RtJu*{,*) kg>xK7kۛmwuɜ?)@o ']YmE{ds49&@$|HNI诎8|&MK\8GR8hf ){&~`O` R߭.ha0`Kdv!e{}2iE[n_Ȝ?(O W^A-C93L_]S#:Q'5{+iZ^.f23wU,(M'Dj(YGۓz )gef'\Nx3N%/W%d6w/j`;,p>7pum3 Lj6_I+[:\:l$ cb d'Y{?8EmV`S^C0(>_!0DoG0\ C!ǡ3h΢GP$ujDb0 /_bEeQ@ i4L=%;~v! GJÌ)}(s^1n0. U)]ۻOEAi(CQL_N;TxF=0 ~|s(2Gߟ4Ej~te"To${y/KܛUl"$̽_0Xu9--YY444N0WrBqt9S=ȭudjkX ^JǓl4ޱ󵪿ml? 54w ;"#MMwtJUBx1RRF((akP/ϱmE7-'q*yYXX 3Xf'ؿHHF v ? %)daNJ]%L|<X94~Y6O0oXjv;[KB.VGs ;;P35N%I4Ʈ3?~D9颪f/&=fpgn+fINV y/$ȼ7:85 ԨȲG"{{|Xb8nVYPQa]lSC4tHS. ҪX.RJ;Kԗ4d$Caa6kOd,m~: ;NAAjvfZ( H['x38ĶGOg#BS:,5KQl.p-eip:~L"@Hxޜ;tImV~= IA;"L2 .Sv>o4($|83d`=Z`>wLׁ!LpΫk*U~K6I fH^53,&h@aa2k– .g}^ D2댲Hg JO2\2c{^{0/H==ĝ[jۉ^9_Wzb 9d? 7M#*Ln}JX&OxXVuxw/ZךLIss,]!z<5{&l 㙧;4!LʶhiN$ { F|'#,_ka h60Nyg*}6?y;R dkҨT}۠+8?̗tJ.zJZy㭈=^v-ѓvW*Ap)%פqm rn1G yY(?)Y)8$>TV>3^ʥԟDaHS}o˧~ZL>Ig`w6~m,YGLcq t2n?U!QZ*~R`o҅ޘKV)p%/ٿ\1SVU 3YϷR{UӜ&lsêh3++.CtI-/N52g4GAq k;2Y^Y 9VIⓏЅOj=IMFSd IT|2.8^C^"yhE7.%IVK÷!qRgv%3}'dbݤf|Va=gߎeIEpV"_/.##"KZz}1gцD0O ,eIbRoߑt4o@/Pb$J@uX}EY篃̬[d@@9ua 6RgS4fvԎଅ\J P>k۟t3 %QPw Ko^Y7"8^R4^&0bd.Խ:͞֏A|:&K3FUKݙχ EkqE5뢷[ [niqT̀><$ s>ȘڪUllY)͓*qY2 M T~~_,9 F3-ȃYsGwƸ3~goЇ%q6,z|@-É%f>xүS0jD^ EFzG L b= bX2/y&_S[==zt"Dz8^;O 9(˥/]  V3vZy_m!iN?șƝ'H !}Y@<=zX(u Uإ<7Z>Vzs&xnjWIxl0cڧvF3*njFOm+CEc,Bv05gKy@6E10xћi޸?&# k(i``c(enu%m\2//#)xkza9[%M5"Iu31܎)Ժ?}TCաۮ6({ a"g#$ @sk^xxb-XasҬt1e!J'J) _[_J-&0o'>º,.vT#R^zt _hspvRz05lKdtX~s^FUZGL+N֕_.Xu ďf31^#P6`תG\t)UU#;Jok >MNlJA#ù7d׳e_+"<Q~I1d'2,g ~F`Vב$<S0G:)c-!}jq2Y-F<" \azo\߳$c ֙űRwI+.T-r6F X\!04 ϫ[SriFya.4"9#@-36.->(hֱ)9DW,> r=-pV1ߴO}ma 7|nRlC/P8^$%#']CXEtu%w_nwy8ít~o-~:0uĀdCrկ1L|(  b F6DcAg e)MCtg(ٞ]YZhd*2]Ux $zEX\[Ae#9 P ;}U~wjL3x(Ca&`rFbo;..nRޮWƞ#toܕNɂ'?\qG2.cփ"4Td E8ItfNC) g1ܶ[ysZUA4]m_]c-nuJ+Eks5Wc5nD`HQ t:-eb̺@`?a7rGB!6i;WΥZ3ivHWX 9+ܟKUIg1sɓYiŅϕ6,no<2As0gmy21Xq@PrF&!Z3f`Y^VCկh䒁gR&%ʭY+jkKZXC8a=ziV`=A#a-<X9¶@hw?Ⱦ,M֞ +PU]$>҂FT/*ܑo߈J1FO ,|2A"@K,>%֌5߅O~Iw5.;]>#}~Hs߲hG Q~NkQ@ .l` 7Ę[:F^'K[[f03N + 0>s_Ky1rbR0yx4=]F3*2{s;o&9KSډQX#9 ^K38\pQapۇlJ]C o;Myk݋0?Q㫰s,Xe`!/9زFWϬb䱕dp1%zt<_Vۻ {p}Y}-T~+<}p ?\Sw~hUc,c^W4@URf"Vu͖fPnpW;S s mB~#ΈJabfR:ԥx*2g'*v$IQSHp@ɨپGEݻ1@ XsCvگivx{u[:92R;=AC2B' 4fɭޑLvEOkĭ>sFȰT4iB,2: _:jYeBދLvi$E**GGZ\shKGG~lx qATQSaq1Wq^ @J6SL'ők[!>82-t Ud'[ߖpG)[2a:6bG\˗z[䤷<(\Z J%\EX62_{>QI[_m-AtRwIqkO>%Q 0 탒x!KAg?#ԅ; lO!h*>='{Kvrӂ OZfwQx4 dEFI*'H_Z`cz^a#r<`Yd#:zcr,:k\"1r7[-(!<$ 'QO fmBw q,0+N9fHI$Q\TLA`6ci<ٜSm#lͽu?9#>ٌ8n3Wvf׏πq甕de?`ͦH(Ȝ;\u׬<6xAaxbj 3>~xz⟮pV[pGUsyl$m-0مkaOZ[ҲC39קȑքZo&vg4U@o*QX,S;yOTл<鏑mcZ SIAϧ_{dO`F , P: u'ѵw}8 7z!K/0>zAk U=u($xIi͗)e[gv zzvGYPSS,5nʐPL辋}l3(~%x$1^o+1ƽIqi(#AgطuU˚QN`t 4UuΎB"v[)q垢 #\J`r#U^̧6Uub&[ȏ+Vn᧯"D2_P3O l irD p6h!jhewrL2h(ً.EgXwL[Բ΃Jŷ@{M 2FJQ[桾ƴ]/s]ΨB݄=$z0oMX${9՟0_H5 SN@KEK酯*1a,9L~V 3£f^<֩^ @wa =) W!vV>dqC4j(rҝrTJY`mVr}wVtv^JÉrKZF-O|4 蹨'c#HO MM9 -l ?j_羽(]qc _zn RB "_{gi-1)`VUؑ ^#0]d#wvPYeBK8W<(4zW1KSh~.U ĉ^NR$M9ْb$&q0\hDgc:|p%b83IJ$ŃVRwaIr8:"OQC {<16' z:rQpflBf& 0jυe򤳛ZJ2I[:w@]=~) A ReXxX]ƚ"v|䠕톿3 ϥ"B[]Ou,4>,滼s_Bhbsk=/VG¿(;󟳹Fq!b*~('l= HLq Z+[!xo4|Fϧ㒺|L6-󪫇G8ի?vu%rg>wGT&>>*QEAث5׆3xBX#ujt"ҹwq %wnW;'lnnEeJudhO[q&!MY% bбȆ4Wo!9j>NCx&L;FE < ss6wBdJkjq̀ L w5M.YP)'W5jb^8#eܢ D;tT F# Z3SΌLW/i@DpeȤ1)*$7ĵ\qQR; }ՙ1u│46-?s[=g$](AHâ1r՞-Q3 #,r|zɶJ;rF@ˌ\:&V],ҹT59.DFޢ{IN(NBEy^Z^I 铩e)RXfVIfD_gwX.Z Ew; AΙ?Fkmcb02VB7yeD ź&)cF<M\u`r <ۊ&(xL>4rf>] #GeQuo4;+r̆8D#F&?# KuX2t UDfL#Y]8W7H_G8ڵȂ"]/v@z.& )Jf$%SҋLxu|bWZ(,HD)VtiJJu4+n w^w$DW{2;ma~y6vЇUQ%Խ`53'd%\1%XǗ gdoXT9K?yBk?M?t$$#%xQ?j9Po~k\vI&iiei-ze 9 deGdX(@~ puQDDD{يc",MŅF> nYKISq $[^ ա{~ . ki6fTmpt꼰XA\ (CŬ}t6Lv];D^*& UTBD@đvt ?5EƼ@ R t$1J-7=A"Qr3হe\AJh\Z ˎyht݁7ԖoKOϳI8O @#OE]{`٪*=vy/cŨEc5^cՈZn]#neGs 6L5>'d^{"M B'l4Љn( |bR⟶ӓ~@W-o-N-4JW=/'m1?\Z񸔬')dYɉ @- %e+o4H%Ax@phÕðʜ\4¬u[y-žyA6mۋ'H_Cޤry \sG(9cF  `T1/A{P83Od~ 1bԵMލI6BzV 4@{ΖEs\R C$aA[E 4Z_^N+n~P}npS>$2X)gy*oHe*';- h^8؁]4+[u#a{iÈ33́wFѕ"4})0dJ9hxH+Wn/p,qNk%}n \du = Lw(5~@M þSZ?_Op5jw?%, \kNWr!Ke1P,2/?(!x|;"(B)ٶZC৫l$MzFusL;|9rfãD.ߊek " xHpMKX'dQ+nVϿ%%h,(nAR6Vjb``֧ۯ> u͸'u#uWƢ>m8{VQV^AaZ0F(D_ g;` o$ٲ_z٧)}~Qj2E~} 3[d =! R M=k`uˌ mp#3FeIǹ>bYk,O?u&rj*YBu RevqE-q8g;q=8y^8_!BŸ#Nlqղ`MI{elk8|1!GUsS)Ws [qj-=mxUDX]gMEQY@- {`|q:2":4)ky+BQ]M [d 7kJ]s*n*ΎEc)nO]o C.ĦfgnԓY_jɥ.IyZ ~"_HcּB #auwh#v '?ftJQ+<[!C8FG9~۔6KmT8=9]R[ |u jX/ zAM⦡~5'Ju"Yʣcx:ܶv Ft̄#j[Hq 0AԽӧobľHq) rG,S;[fo P(g^NYۘ'9"\fN/zF;N{ eژ-SQ4Kg_[FSSb0^2K6+*)->{N{2|n杭DxIa<9ـ^iEs_+l;XFfGz gj'Rw.Bt-?5qd&|ƯOo BJOp?{ɡ @ߚy ܏=\ц\£5C"%KvP@3;dԃ=:tAqZ#NXjͧiDKa2j dsM%<_AG!n"Eju+ lǩY p.&juIcnScJMY@D#ŭdl=gwwy R Oa:VDQߐ3|gzSl)MCkILg 68dH~14Itc=?\2(cf đojSK@]ib+D@" i,95u-rrfEQՁ )`J %GIQ1h}|(N|fo QƆD ׎qBA -u8{AUJdN@ɵqA_&;Ug廑4f+iϻdiV ]U pP:/ОMdáqB'RT$఑41(j6RB%{O B!)}6]#*Q0x@RBֺ)2V/ҿQWv.!('<ؼ nI\鮦C"j4f>ϾNѽˏ\YL &5/k8l E5b1OY~. ;]#(NP KNZ]܏kz*vg Ҁ6u# uΩ'~jۂ*K#~GEW*Q_}kdv45rpkTmv^9/:0;1S^qPoOE$`TNw橿ԅ_&O­mAR?Tڬ]2b\}mG6!t6#wZbHAsokv$ GȘ tb.(3 Eg;ܡ lqq clUپ\H1}"Rm?t7R\B7mqqu D:@ :KU'O)Xܻ8EWCdCB@v-KW6cD5$wu֨ФbI(|nbDOQJرm l8%!\IƅZqyOeu˛vsX gၣ<A}qnKD}@ۀ c <lk}lݍ@ pHyWש$&1.aaS/.#3W NP%%6ʄtś8>hk{Ȗi]}_N@Aj[^T:|:k1Ktd1>~_VGEG/jC k~i"Xng,/8$Ct: a!zƝT~" j\??墆VQW/T-o^B(@e>Y ],nsIC􏝍lH!c &Pwf>?3S@֠|5;@@P8> vcGclfXZbޤxR2~ߚU#v`=AHgiwXo]CvVPb2s^f4nߺ\;!`-IuFc-HuX_ZUO,.8YW "Β 0j2UxW<0;(sHpA@^5L# $LV͍?Z`_Gݲwq`$t, m4"H}YfD*OFvhJ;֭uc?"7 G!3/c>&lѾ5;)7x$mV4I3t1N$^W/zNq8޼( AuAġغq 6cI2 ]ٴ ͥ=DdQ.Sm7"}hFʝ|A /,·KL:z.[ʹM᳗1ꟜnLdhpzgǚcsJ]Ol 触bu)7BP?u 9P/mBy+X^XYɄʸyXwIQWGYoVƽ3 P_:Tƅٶku·m)dHR8~Pf߿kx}_xِKqdVQ!\Ey}7)vyN >t@bReA4c=qKǂ^&Lꌳlϒ䩽Q7{! ߕ2 &\٢T._ܡl5I X%f!}_$&'~yxp^ iKS0Il=%9Vd5`aZ۔ZkJfw v&jBHSzxY̸Kf'^ ;&J0|qdH˯b6HYZGX*8Rs%\DJxrɫuJȎb7h`gV2?,5WvuÒ͒txJ(}4*@W4`(BYKdvv!Lj@'+txv%KJ)  zyGFfew7ԹB-I<@h ;ų֡9Ît9}8f$!xj"1fY|(ۅ(6F0l0l!=Xk:ܬZf//l>vjVv+,O3\V%[;3?'{c^xCk2] $R|$$q8 ri9$јN$:ur 0J={7+5*`M)F'9:~`VDr坏t:1̂r>lciqГgvO= AI!Lb( =p^ r%0E~`G(B}'z[PcU TW9Zh@@R˓23u0_ bYOvՖ2$yNKNlnN4ΝײRꋞȟ:G TEWI갼zx&I"oW  W>ɷȾ\",-VRͪXYjB~-R_~"k;%YTPU^lX޴!xYZ7߼""mҡc!.n1)cΨz5 q.&\/٣Az3]7~E[Q}97 [4z~P4^]#tDEHs풠 7D;?!ofV"M6s><_>S.[F%IvS+3i_8 0VQYGVz<駹C[ƾF`~m2lo6q)eqZӌR_[`p*uN)G?I2kG 4ɩddkS@[FA`Q…6V0~K]Ip_yx5 ?4۶=؍зph2T)ZyY iι[Wv][({7J7T'9q^rU:f 2mRېa)HHO8pe(J!)$ DK}e* ܬd!];V!\(= :ZǨq=-_@b 1^&jC$Bqqxg{ݟQB3nWrC>Kr&'&Vpp=bF4 JN7(-tyVoޞ\7ONnLa4Z)m@H ~c n4?1|M==$- 9S ml(X~YIsq+qQ6hmӺNW_묨1NҾtudR 79YN lLuy0>ghX}*x6py1M7oF '<0Z^nҷ/`xlƷdNO%Gn~!li8{y|}ny ۮZ$< e㎥BÇVhm_!+_CMpAO#G6@] ^S7+Ku5᪬I(Z>#3QW Bf) Bجƕ`cl)JL,BK 7KaDaH>1C-OfwѬ|]֛󚿁E'ojQs2>L+ۄg&W\n:9aSPЦC-8FtSCiOې;egɯɱlT~EBZqMCsi|AlEY cFC mKh=* flz0BɣI?h_O3\$*7q ) 7c&WtZ!^ySHDif> N~ $ZS81{Tc&ix r NvhEz_/XvCIl>HV%9F>6<޿5_?;o.!(/6:rI(FeQ\0blf1pG!9ZzHq"yQ PlD;|_$ULq di{YϒTw-fEb#H,ٚEP*RQכDD?d4Z|Ki5]dyAgǼBERnCEY - \t$Diaχ,$':-<Ϻ% %ƍdIE>+kOBU%ے߳ B? ]unjH=V0=;BK!c=RA <=8 LhS'8ĿV DyC8 d:|  MA沀뺫Þ0Ĭ*AojlrKVFOR?2cr U?7Dı 'ш\(2u~[G,EI 'B67R5Ȉbbs<$z1ʞ۰$va?={߄ f[74臠ݹ# )~#4c77NejG/z.Qlv[ՖۅYdqlm&Amb3Rg5 ̽&zI<b,%qV`h{= k6pxb"h E3EлoBCm|1ع6Gr!6ĩFҐc$0Y^}/ZN`l&{PC5PY#xJy@n(PgUi=v*.!׾B&8vkkw=B@WM^?h)5x6!쉪lՂaʁwHzO}J?* Ql1yҌyE\՞pT *C1RTv1܄#M.hcZPs1J XBU!g#K~oxTڂ. z915E q:W)ȥgYpCa髮C<+}r<*es~@y>$c~ki2<#15,vGdXtĺz߽+#yrowS7S`f2ޞ@t㲎yt9VJuwX|##i#%7yqb4ZAXFzaߖBP>ѥB'$T*.Pͦ Vl\/& ݶSwRVJ;OU@,vs6f0b0cG:x50>㰾Ҿ>c@wrJ!:'&?rytPR9]) n墿\Z&+"܃pQMVY.qg9mb]F+Dq'.OF?sd$ᘪxF>0!Y! M$ΞQs^A~X ބFKzxt񏜂wfPG5d(ۛ83.ڲZխegcL)*6 c 7w!OJHn]|Iф]S& CKAg1|Wyn>9TTlhw% tKD?H_Q;O@,ps=O+ b8eF g1µhI~Sv6-ozQtz5U៧^^) 4*9=M FAFܙ1$O#=w{yа[EٓH6NbK%VFB Wqe|r *2Êۀ޽:Ӊ}t)GH NJxǼ0˄6K,=ZYᚂ6-r)WjQ $V#it ¥ 8̇zǼ,kLhd2CSgc|ztהd숋:w0r9ĞW# K$xf >*7H,|bw|"h;R;3>²mB;"0.)mugqhwh{ZYf̊:/Nɞ\[*\J,BH4ǎjqjxpP- o89BC<@Yo9bY847J>[Ȱ~;pa >~s0LK~`]t_ 9 M $No? M&iʅt* }bv۽OPݼrs]/nˆ%X*py%*R iqN jD@~ nH2K{U XMIL\u% fNs~sz&z@c0J¢j.G/I\n>`}+R Yy=+ƪE""XV>W~(]K;"5!l2»+4EqeIkFQ eu.ϴ @S7Ն~zAh E W|?_b5ȩڪςj8I̧OoPS{# Xa ir&VFPp+P]O C3&Q7xPs:Gٟd!Ekjk)!X?k|QżjȠ:\6$P7-ylۯ(`B=8`84pk[D/cVVm|3U:TҠn?o8A 0"QOz?\k~YQ֜˱SEe6hwx_姨<'S]6oЀ;]~ tp>@ ~X^^P& duKdbR Ra-l=W6m%ZDQJOʟ5U2 XϾKZh]z;R"PX[]B2t4 \z;yƗ ј4W%&8*h[F. !%41x%> gEWؿ 큭7Z6RzG-m?{-}!tlP~L$~B]FO=e.DNC95CG(4z0$1g+g )D?8\} ;u,į%VTxnAΚOaODzBlbhq ôTuYSbo2{u >`)qKr}cyMc{FkC\d i~Ĉ OL ..n.Dx#*,64ܱR(g%_e+$4>lՏLD׻o)TA%;B~Xh&)3W-3FO讠[XaWR>ajAR&g Ѱ~#&RDf潂eN_鑈0^k 2CDy(%g7oVv&aѩR/"Lz.o5~Hf!P u$&r*3.uaf-cj[ȄO6>jMav} {EͿzJ!6-c} 3`Йym~dO"͙O^; ?FE U%B0DC.ܾ$g$"Ir9q/Z,2Ydߚo?liV*2ԷDenn֥;vʗ\"&Û.yO0Ihqڸ`(%GpX{g>cI^U-.WGt"l5ZGҸ;Jέ0-7q[ ϝ8b>ȝ׾Ar{bp8]SZNJZFDO4{%m0|4RuEFCUx %'m.Yʤ53!GRPE%#N!3b/F"t*3l7쩏LMj\DSŽ' XǧG '0W"ʐJRxE愓TJ߄ # Ww`O8|Y%h<,а"b P Rݦ$b~E=˔xaDH%œsӘS؊SkFƜ\%UKvCiXMNR@{u|j\l>Tg0ᲶU:NI '~j#>ShtT"hܧl$Irnž V&C5Nuha3\y.~p_#NsIgV$9a螘PoQwF!Tp-;SiQ3rOs#@ظwZ~Q6".xyX.OiwIE]C5h'$/uJPwlב%1ǿjHX4v j~4\.M0̤r͇ZEQOU[$.z?G@W(PPLZòkG,uL9 gJSemOCb޸E n#o?xڡ |8$ٍ@ZOM&c8DB+JEqX`ro3C贰0}\w?LeadM{0xm2Xj:_h/^>Gp7q7eﭿ1z#R 0۸֊]m=V:a+Z'&&*}'tא:_p~J+Uͩ$ڕD7*-;W${Oco³6Ksx0;Sҳʭ\z[q"u@P(3'^ #cqA 9u=܀5DSL&`׸f,W=s ab%Ϩ[q=iÀ_&w݂2'ȑ-f1`>EHNm^m'jN.8LyQcтzΚU i`TKh1E)@ $J EQKc{-6у(RE /lunt2 dK;Yݡ#y#xv3| gA "X?vHe/e,,Bő94)#N2X̚d ?]N('Jg_y+8>W8^}52bxJe_%q! ?zSoI>xEnϭx>TOjʇAYxA#7OD2\&j.4g3觗0E)NE4E֯ k) ^iqМ 8~@ 2uCY<Բ{.c (i:$m~Pɏ\k)a-{̭\`q6B>Lnǜ{xr٪=%6Rk1"mR1>I j5ǣI:i l!BUR&G1 V|>;+9C0/pD)^f$$Xm,i3NTrV48[ ֯IbP1D7ad4LEs0WjKiJg̨l+"w4i]Ω 1DRi.V_ IP)*wWUGJ[XRx 2F8pI.+Nywhmg|& `oM1@D3 *A^cr.; YZv .)mKz Z5@Gb3[^cJAΉ,tuM"bCƯH_6o$ z^dט fPX~-n+#|ˢ=W*TEX՛.C*XItf欫^ !Կ!QQGiHT ILǟ϶:Z|ppyMAC)H]M]p2cY=6N ˑ{}ä8zh?t1KUT(BIO[OjFj}~K8,V Ɔכh`gu 32o3ۥTfrO,0dßSiX^ːΛsWو x)E{~1GkQ(M|EC0]qОC9hjCڂE-Ǔ]Kٜded6 բdNEIl] +E[&:!izߦqBA VYKiA|LtWj )ZL*%\T8C &~+0Ѵ`KPhĿ %/ۼXcZ`t0ߢĘL CF % vo2qީ-F)AI8}BkC"t/kmWaZ83p4cO]dE imq$O&/v;WCϕ7cdy3Oü/7& =X%KjjTzeɬp(qFb|3zG|uoS민L̘= tzsAy}ªF*jH_|*1Ξ~Aa7(^ȎZajts'`7 TK7^8RQ /Ռp,~Mc0Qn=]<uT S|w+> ~7Ҫ SY|Ս&Wx/IF',;G) ~s1 $YoQfz@Ź/=_{:n$ҬOoo>4t @ECQ[aBп@yt*#a-NUQM^ȼ6L5?#rEJk侹VSKv{ yIx%] ̻uBOdPF::!!OBG$f[c.x&Y5ls\rr\K98_E@0z} -oOj1+9a/+'VLԋ١4qX U}4C+>emwb(eWJ4xΐUmX۰w/R/qSj*7M?Ux llZ|@]'؀D.8Q*|=S8&E$]1n|Ff&l4[ W o@2ׇ -_1èJe僖.|8F]v75jRC%3;UW{&B5@8̖MNIlBPc;눯֥ll ?'>!6[D69֕tijDnFYʴ_PR#@==3H=qm߬x`fMHd䦠 t.#*-xRg|Yu>C"L9Ru90v)D=,'ŚqeDO1Q$ROiv\зZq*C8*Oc9O̾/Dj 'd?--!'GXT6P88hr2>dnagÁf䭥h@ HK_=]XgRP ϚE b*6:֞S,i~涬w/W_0aĞ: ]-ۥXk[jH}:Zp$04rsh&V4NQLP/ nEuK2DS UvgOTiKOJyHCMcK`A^8f^' T+KOBQC'sd;L{Kp׾0sIg, wDL0J5l; Xos_l,<8 D.C%wN&Xl/c{9I-U5: W\> Ydds`jL(i<C]'`D9F~WlcW}6Njqn_rjAa,5!3p5d4A"}c^.æ[28Z2ۃ)8G-9XRӼEXߏ 4ڪp([&VF)~qj˝3V]ח&`"#_ΦKFK {)]ef/Nºp#)'Y,kpgXq/vA{KFߣۻEX5 wŸ#x/GȺ!C9 嫭%ƅmmp 0ٍq;oswV;̭x\6fX* Ӡqʨ} bD*z}ԆYT&W(=y BhpRWH&z1_ұ~96+jyhs1I] 璃CXU&]܀ I/ k _3o37wb'J= *z8L'N7P4Ub:a;^ag(X/m?$@L\iخZ~MBT \RxXkg4WаfqYc53Jjfi/|-]DKXT"<~C6zu#jn7'əQQb.2F6/uJRK_¹Y9ư-h(a1/ ԣƋpA,!T)0R_`N5F(L.$yfUv̽/ mޠM-8( 1@sm 0a \oͻi}b!d]U#rCnH UЩ c+轝̼G0JJɔMq5nSReX"m!ݕ/9H M4kQ;0-Vjr9;AdREcFf~  uy7>KB^M \bɡtå]|Mwn"/+ڨjW6Oh=U6;9ejPwm-:TIڊ Tfot8T _h_ 겈}@y@тx+°NOPAR֊ yu%N^| ެ DT4O4C4X{[$<ff=dS1'9X")(YY7(!QWxg~HCo9bញ}Y&U_} o; q 0kUc֎"k3Pyy{TХG?D! 0̓ݷgөCңTX''M&+ҭIRQ} e0V˛m%86y!j1ٵhV~.KP65P~͕zg&VfXk y\BYĜ`44 C&-N[UINBO$64؀҃0XD2" -:r YႠ&WTLO T3WV]_je6aHe:ݵ Q6rFn:#uBbvˑ<+˘oOe%JG ZK\!j_.lk2a3&4QV. %qM`#^rS¬bue;m5d0NeŨ*S9EEeb!SAiIg[ի538RHM|O,52 ~x@X$=E;[m6~#[gI)&zɑJqwbLB\S*w\Z N/x EMՖ$n%BPa:ߣH;ǩ.Wj.7QVz133ZWw 2S-]'|PqBޟF4tK nZ MmB#h=$)pAz:}β\^d]슪tMu?1s(_ `b4  NtD!ys|j'.;TN EiwТ_$f u"d3rŽ CiMU4B:n(: YY>E 7hd_&]Y9)|7-TO=SVŭW#(af _](l%tO.( -J;p+R0W+)R2B.,!tv8u>NU9%'2:S+]ȁ L .̍bEF+I,&%x;j([N"JTsy-t **)nD wXtA, d;}Z`>uZHdy_enۢlϩZANH:ңUt-vϢr/Dk†p>Okі~d~8M4bgQi vܖZݸH!kՒ7cEsm㸴c_k3 izLc&rz6/4|$2Tbvf5(2G'҃^|ܤ:w攪1ɔWZX@AT6!١_ Ag$iԘܥ|CBal= }>=I@˲|`&^)۷)@~"Maiwi^y+I%K{^IOJ|mCs9wM(0 pxu1K l(K&)xr}rJEƍgt]Ŧ_F uv'*Ѳ`I캻t]Oכ9)@.n+l+;?>] z}asX+270Xj~oڙGF|N#U0൅72⢳ \6UuaE ẗ䊐2рG6uMfZhD#J|@HCcLSf4n)B-TR8P˔O?MU;wm:15y?  ;Xjq.:8!TiױSM!5|qUFT盪vu?~xK8ǥGۖCPlwUi.žmKKN:ܝ{MYpV҂A{qJҾss&+۰nyly4iW7\T %=`%h\ FNPi`wy}Pb  L'n\ax6ӉA*;CdցgܣGa a&DC?OF zC\{r$ϡk.tY%2YS)VGy)DHa+I|. t foOC!ڞ)iake?6򾋡=>mXvmQ@z' ]ijO1ޟ93jFI9K:,T&̙oS< =E۪~s5ReVb؁O62Dp>)TBz,MV#]ׁ UhU> f{4pHXK.>b{!ؚPhR i8W-f/۫'Қ`73T/{Rƒ! %: rPe+u- y47 Vfύ)L2|2"}f>֛%XM6 d ^w;bKo8ڝ~kj2e֯ ^_dn2s;B:zOI}p_7.ܝpۊ\yztɟ/lj_JdѓebAYSw&/'qH3\!HXs\VHYC*?+ĞBp''GT|7cUsS;KO-pʼUm_˅k/Zp,u Ǻ|$%˩\ S6mK ҈ݞf֛j"qױc&M=<5n褢EދEc\m@֕ѩ!pκ>s4I>-;復yN^$7St@)[<fѮQjXٝ̒I U_줖˄I8+nmq#Ǝ懶( 6fDmpцګrSZqm,egl#-Ш0y xXT2'Z+s Ta%%Q gTƗIansс]ye ZEi^o9,Fd|7[ GR j7p?lg36" 7dk31]]Gso0H <Q6 I~.0.5㝹U(*'4|rR+HYie?rMv<&c,o#2htڼbCL*t)MB s"R#t/CZr;(؞Jq!.,w~F_u_P >t/ݲzٷ־F#8C %85eCT%MBsM3̡qR; eػuJ~F,zU Gp^#* 20 d<&5 he-.o גA!7@ant$h]rdc&eQ4Ey]:?`&|@l:~q\׾ϭNo/,3w\<8Nb{,wÂK┒^TrZI Aŀ#2dVer;5Tu] X'uւkv{޿_nkgz֦Y>ΊZ2w%Yڶ&aPŇd5bϚCgOQT\M{ִU1X=] p OyRQUp.bȲN~>n"ӭEg7! `vڙ1g>!Ns WDQ MuK#+BgT4\|S)wgRcCb Tf̈Knu ?> mWJ^)#(2dv?8U[v㙳^߄!rW%OE9Ým*M7];&Ny d)؝-(I {]Hj>m<*0}c* m7Er%:f %#S©dK9\ ϥy5Ýoao.=2fdS2VOuS:O4E3P cˉ}Z3i‘Uⸯ=2G$x< /m,:Id=8w<\T}m7(P: %x5^p_"Ayrq KpWAe _iHye36`2.1U8j}K-B'dL* `->g͞Q{fVT}9d)sٹLdbk˰?QE޹s3'LN.P̌]L& *txxrX4=#9]э&4#L =$mV@vJޠ8\*95 dƮ{rzbKdP.$3lZ]+b1  ,|˴G\ydID`B lI1[})`mDd)kS3(|KB1+Q9aU~3$°kg'8` bϾ@~Yo+-CŒ<Uhl q<^|IM팡c/16*%K]8ck;T[9ʁ$q'ΔVǩ˱aݳ1Wmяq@8M9[wO媰40mϯ<+7YEBQL?>-4x ,A Bvc,t* ʌfʪH`'9"`B4p ǕB=@ԑ5I&teDqۼP)| !#_<~ƢJh~(/{CN-`6e!@Z;.ɄFdޔ(ȅݜ8I\V pq^ Dxh7!e֠u}L^Afcnu(>lĬȯfBQȽ}x-tǭjHĤ* D17xϼ9 f|l049G|v6?ެj8.UO'0ay@3֓>icw%o}(\ZՒi!jk=]!WZP%x+ёņ2v6؊.s%y(Nv<|t/q(ͨREӝH9EK܉&!J3*І%8ͣGP8q(lcL3Z%g<.WC s)bk)m[J%|>c}F]9-NehK+Z%v07d ͭ+~gnfJ ,v@;$4]&>52E`$& ]ps:ZnygM-=gͲ_prKנpGp{ə^lC~}8D1H|ء[9d!@T U"@q.Z# mc"t85,˄6>&oA$/WOm`vUNRQHjUq$ZZ09vn))UnP@R23jll{WZ)MHQq'zUʥ I_Jΐ$x749#R iP$ՉϊEm֊+Vx]zZr% '8L+ϾB8/mG_;J&A>zf{A7I|R'}uⱶ [{qO`r%ꔦ96EvO6)YJi*3=?B}@,BDV3T"Ô[V糨a7J#s\;+|֞8$ Ny18W sCCE5f47^:qKC cCD楉|Pc{VX0ٓJʀb>!pQ / ×_yh(_ހ^ZQXCM!6`q*N3s.?ނ ^cdK=Dgegf 8iQp[QRfg榟؆Ւ_OdBzY3ke VYDN %ŭg@v͞?qh:^5[I.y)VX?$@S)\q˃˟$1p#@uUZ{9P@8ۿ6 |fr:Ԏv`qX)J@>ح2bla#t>0p,H@@ybA\(Gy tE<}/:׽2qp=nB1tjS4jrnd?DJ5|^1.ʕz$qhnnV3[ix` B h3K{5FLz)4= wjW>O2 턻 4Iɿ4*1֑LH܆}p!jLqW5>Hx}+{eR# ),M_0jci&sF 3HcI1yC}ʕ, U#nD7A;oGɘp+ɡ^rKWGgУ;遗![bJbK}T6-1ozAMKvFsu:5% [ɺ 2D\@!YRa׾& }vx\JO'!z ;9*p΀afj} iŌ :ضr ,n:u{̃FQGh*M8ϻh7Qإߴg ð8&F(uJ~!Ta6sHa49;ߧ fPؿٛp"'JbTݸZMp'O[R!$fn- 38͐ m'3^g;}8&Y?d6x s#mKNS\c^ e?1sR'ݥOY+^\+~WX0끖?>БЧxɐâ=w(`RXs >](UiLRL< A+U._^ļ|0k;Uv dI# d`+՝|K`<s$ZU^a+ 3 $? ?oz+"T*ReIq?1)X9( dL Ό$`S6^-b=8?jNU7XXƠ3O/NQ94|l4=R [Bm{z_-##N=$ <es`/)<(S ݌,yxU%^`xp&(M6g\]DvUZ}$ E[rխef*Ĕca3)rgn#")|{n<] q,0m 1'sYJ0Kni$]=ª>-HNH:>E)KV*64 Q.?,-h;3@@ y^uJތͮM*_{*ش>>f5^䩈@ *l=hzqb b0}$Iޔ]ф}am T0@o]g @~C/ž%.Aa`myӻ{[bsߩ#c#0g(·a3p%-Xyv8HfPZ[ƝMX]$"DMNZnV,jXq%B?/No||R WBȠuKEx7ӕlC{ #)zď;o3AdzڈJq-۳޼‹ĮtB>#.?xCSOW;jHU쵌aˆl}'VBNa5 $Ғ%`O 6$kd1pONj3h;ewajb8~ы#x_T HeNTރ" mFohz%gi-ql)]m mh4ZZ}7!P|<<|e?%6z :Q[X9`Y8Lj!zGǷmBZ9٪϶GN="N<I+^xN3BAQc \"t\(PŔELtqLVm(LD|!ȇr(vd';iB QMW˙lQX&w-pyŢmB`uEP$Bt`1Xכduhnk <=#MJLb.8mY&S );/fZ8//>FTVe~3BFVGpTDzO75=G+،$VY-}+78ȄIx7#ؑM8@9xh]Xq :nW3dtQ:J6Q䌐[F%9̆ pbK9*5."31~ u2Y h]9ySJ[kLb6Z)!pYB"~G=B+<q{IBB$J$Ofπ6A4֮ԣgNj^n+5NO=%|~(t2a<3(7RZL]} VbBڌ^ڝ Ei(K\ "B-~9 2 5#Z}UcsSyԍ}X$,ZOi13Љ9•hS`jH{DZ]AyE+K9?f5S(zTⶐ>f^!ADye'泹Ӟtsd! )yXtV(=j9O0SF ף\d[LT43YIQsmp`4-bQAJ3=T_8sdOy)FKxȤj~H^<ƃ̈4.V!\_Bg@ ᚇ<` 0N:Bo3i/|M[H;1بfo>4+fYv@)تf,s4X~GD^u~Pph`ٕaWl!{D[kߐ` cilA Bp-ZTм}Myt=^z5IVM H;[Jy-6ڈdvY)ek=~]TEymN0l?EsꑮlF+nd8T[|_vF/I% +\I 6)TTFxrz8 FJk˯d*QJD!2`s*١2-8sT(n\[~GΣ ݂l;.ڱֶQ8 ZPR31t 6(@e[xM|#ECD:.D8P&sAc qޤI{l(exۯ"LP;lMB^-5'K ?+muB ̳xڠ>JZi`eK>uƏHSM]#̎7 "yB\9$CgPSثj3yO{t79Eψu57ʬ-q7xYWF)fz c}&3rED7 CM֫0&,ߙeNK8=6A&}:m *v2;/$/CuUC!>2}K!O9PRXn=$,ft%,7DwF4Xаˀ8;:X-..HT"#:dxJ]'35-j:L0r1|ɿoujWW0/ >C`Y3b`m.jKjQ)nGmmw>n^ D PW+Ph)$Tڳn&~lV./a7Ή~.!n!;5N/ճdl(&a#:Mfax}&>~Y[ h0&1kYt?R˟[PcD]kc9v1[!;uٟTZ?o$X gBʃ&d%&FvpO n ߰˹NRVsOЍ/ ç+i]]5Ӥd^P/[йB\XEi;!II_ږP!aїDanowD=z~{:giU{'D#"Oe)k,"A"(ME+:Cobgo;(;m {`+gq/I8K .I &'8(}EњpXHzl҆.̫^&s)C<oh6LǺu_b9m Y6q'#yhneBc/>+^Cw!ϰi%bdG|!^NJ L8 6 yw?e@\:}6źf{uA^zK8b(nV|ŀL'ȯ`"S{j }XL xQq?ӽgt+!;=i\Cw44`L bOzJR;pu ut'Z篦UKݐ2.A.0{Q̅L_d"aphEO5 =/hlk*&deD*{);Z&򷡺ZT+ c /rp'47ä~4<*3Pci68p8&X&ERu-wa%(0gv9)R5$0ߤY+2TuO^W[GQT"T,ҽ$HqxB5R=_YKV O@_S? ɷ;$w>ԝwJv5A|2825ZYF7gǫ'G9P/z`>6|*4z!kd =}:}ȹ0,J|u;lTcŤPz]FcX[wi`?+qWaYB"&%UڔU_O!=Vφș$:y6[;:]MY&v≗|Fߴ,Z !W{^˥a 'LƸytOSN2$k͡ULbOqY0F!Bo}F iXhuMswuFy\|z8Bp)3~e/Ο UnuQC&\GQ(?~/77|Q3}z>B@. <%L+Ts>Ą3i{ϲ3jE;P4}{t?&@(ʘzz* ‚,lچ iUo D8^~i Fw}o5[L!U/(<5Jzc`Y?TW -JZ8T N* PdyKuhqIt=G"*q$ϿY_=SXK$(=e)9];%&]1wEy*Ddc6\H"@:eޖ=%XQ~EdQČ 軔|p8ug5TV}:}WZ/k 36=}^dXXe4ƱO#it}KRE:wN}Ϗyv@S-g#\ br?,ݓt)e̱DOg"B2ک톷v=AlYAgv:,AJe=[FABFߚo6Me՘/Zf]8;yvC2B{"F>f_Sp|o.E-9wtǗ$'pi;zF^8D. T8ph(ߥ_z_,ҋVkWqz-6 8c9"EB{S?isƂ""m`/׾E+!  KBqBS$$qL[3)+<̤NSB}"rMJΎASGΏ׬_#B/C]jYŌTC,y6m6`G#υFW/ȗ a̤ykJE_d:L쬄,L gNǫnE@t1_euKgppCK@qdq]I@NA^r= !i=kS<˄ۆ%SWh"i' 8oU2J*TkG TɩM"D^eC- ZcE4Wcش#ܨ xo<=lv7Ơeܰr=eYrzmPMv9jg~{&!v{rAsz& *QI}y" &7tx 'o6fYIp(g2h5?yd6+E|kwRL-%Փɨ_mѬ:K2fKÈPq,͛Q[-uSRDA_\9OڽI 4^QJFjI9_ 0\O b05.b>CZZXr Ik4(H? 2%(,f6&_Q-Ƅ$GVh3j$]FBA@5 -HP_%,֑KSE"C7`A4_rd T/n|R!\ ` AmdlLn]ܕBpːZܶ(d''a~{O) Se^iܔ'lM_5F:FҪtfJ/:>3 =3%uw=Mn{MB^Rޑn$_tΩ.FِRy92 XBnM 2R]ֆ [qJ#z?(>?`cǗm|. ;lCm}b5iZ6վ!z&{n]_%ϛR͝i\SXSk8p1`mc>kf.8CԠ4^KF15#*RDZR>>Ϭn;P-8o{T_B2*_E;V04뗶Y(>kc?Z{D0OlÚ#y+Ő.!ME WOR&yoE@mM7gXnMYTu꺣o񦦵.kAQU5{ 2@@6CHtۈnK`_AM ށ#P+ )#OYu);Vd;G( WOfZ9nGυak?V$],ni!_)63ToNp2Jzӧ7+ۦ{UMެE.,R:$CCKzxvC䰸XRþ@朓6|x{"YG ͳj'pUϔ[|tT>vAE}ܓB%O7~O*I"0E8Wϭ:SqZǦ%]\(ԯ#ز*q.fXky :͂x1گnnZ?(#zƖTڗ`/ p<'&o."/Wޞxet-:V>Iu"F·s` ' DqWFjjli1 -vBFVMX9xTeOMࡢy)iE(b& ˹7B9Aa{!WL /G:]t<gHkUM} yw Fy` \؀D.f.Zg1_rdo|l+IU=}D߰^zundosXvNmR$,ߦ<r>k!܁IgīH*{CヾF]0m$a?euXE:;Znә.)0iҦ]:o }@d$% dt["qn+$w 3DմT[Z/ddW~+!,;ȧM?Rc[a?\d L߮0!>µIc?aZ!wJZ¡v xlyu].=]ob:6Z8Gvo!0I'' Es8e%,^jdN-DHJPJE2鱜N2 )#6(9;cY'`j ƩEGw(YTޠ\Ţ7jN,yCs&ݣMH .L|c ㎱O-i|jHb06Ҷ(DG#sHڌs#b2\M ruLrOcABYY |/WN8`2_bk3з< W W]ZpBohW~ooIG7y2(6 UD:zw]Yąb{1z󤔐3EwqrvbCȚ(i8'|yO07 aT,_:s> w@Y$Fl_TB3s6uG; _)^<̕., fG8eswA-![kmxaOsi[ǜܗLG h=-/ ss%rͿ4TJlϣm%VaOAW!LaH>ʥ^1+<*r)fcxyrV 5D >XH'Vr 8t9L?4xP34Z )HvUvszOqF@4`*PS HixklnLb/lq4jFr]trZ)mބ>TD su%%#sIaSz+CO6G}YFrJ@R#!v$W|j>A4qQS䟟7c>|"(no u1䯉%ud ʝ#_ Ez_7~\.altdZ@DՄ׼3_Ni/\4Y"8"xbO9d61+'H>{Z.?2 a+w2T@s^47t'o\~J@KUB%φEl4VʿD2udAWd%򤍎,J󎎕k;]ĈNvњ~ha~/sV.p9W;[;% }ok# ]].sp 4O3 'A Dtr8 6;{1Ҍc^U)`Ն؁Es:Sғv,:{ 1wIbP5IFIP[g/HsW.u>mͩ1pح'@m_WxxPfZ@87a# qHTe04vMu}N/^u ޒIVq)0 %]҂1)6s!AKGߧ%F4x_T&Љ{6__B I>:A+֧@q5Ms[M[[&!pvC!7LtR>PH!eˏ0+fOنQ,̨ Xoq|9@΋H0 jiZ*yT^1ltu|N{ Lbɛjr7pWph)/C/:\S|NPo3zsTA5ovp= f3碤&q iZoUkÎu|[lu,î+,i-5Cp+e 8R1 n!> F؏^b{U3DnK@m<)|J qPq+b;R]@1jXŽ}O[]ۄ{] nqnn.if *1qo$?`7M~`8u'Is(v" @mr{q2=A)Q|b9߸!!XlԴzwTpu1\] (1oExuv6IА9 \fQaFMH|H)ec͞κsC 1r"mȏr;sWF(_o#4"N'{XlcN KwҎ3jD<>6Fbhxe?O: A+bn>$#hdY Ǐ}Pݞ5G̭ [WH_~/= Q؆ũL3-P©ɏ_iZ2z(օT'ڸ^܋+U#I,g>t`L蹐?nP~[͞r8WYT!3D&.|ljZUEY.kG}hi7݀SAA{ˉ?j~"ՠPMD=`UqEOHW6֙Px~@eYz$Zȥ|rړZmyI^FE;nh> #oo)o&5~ t@DXŚpMO?.Pg)pXkϩ"H(d !Ubޒoa~aq {䇽H0fJlK P+c@p>WO$pYJ79 9nV[hI\vAozQ@n r" Eթ)$RVZ! UxYoVm#@0Ž܏23H0B5o(?5D>oknBɢ[xV\m'L5:|gmjٹ6Z.(jf9 / o*#w0s@aFq+5lsH,Io|u9#,Η"+v~6A<^2Z4~ JEh>4¢=7ɧc4Rl'5\[C!p)DŽe~ɛJ.r 6ZJ!۠ U-ZԩΆX>)n8pM5=%+t- j%@E*xceQoYl-ִZڎhBh$QLeַ`H\fyE p3:#q.x[G76u!xyURL.LcA4g4߿!'b`]..c>pBnbN]ƭ?T6b6\*BpDwtZMc2,ZaN 5 !GP]ʔ[Mg*0yv@Gg&t ~Xeԡs ,}b+zT;#uCBMB/\^LSy Dy!A}'^꾉5m([W>L!!I1L~IE0qHKwT#/t"j`yT_] K,ֳY ݫ(IA&cKܣd~\n=m>c`!{&0:Ǩ7k*o#b鄇L9@!8IM%esBn/lϯuql& ?IN6RcI;sI T$ "t`r?Hշ^rj gh'H@Ha+( t;D>,g~Ҭ8VU_]kͲCZ:=nOqN)$KTG6lUt^__#`v!@a؂A"prS!"<_Ef%êi&`_TDpѼ_ J](LH!ksT9rڇREqg(dT%keEtv ]ŷh F2ʚp/°n7h8=j- 8wtUGQ0o+d}^" lmϤ\~,FGR`? |a+:C%:1h@~EQ^ltL{-Jn#f 7Ƕ|E&K>7 p>CT>$Ck#."Sy )r(4Qbxݤ#k6?*ɴBbvN ǜ jxD-q\c@M}H2)%e]W2@y&/QkkNJ܄;,Y=si^1MNoQLMo@ܱ* h(vgMb vzٌE,CPa<5D{/Li Vcp1pM?|B^B 冏tHqU7ǽomfjyb\!M~Ƥ(릮m^O4sc*;,Xi սFiiQSBxL怤Y7?[JRwN că#߻ڥ_'/4\mRw $# epl1Yǩ|ڦ4Fi_D>K7`B=(|)x&RI"+c!Yw!!tr|o{Dh&LW;1$m %@r}M 9xe)F -ܰh<ב;ٕjBd /j0/\Y,n[T*gp[y1b D4~a ͧIԄ?U-=\S (yl}=aWdWKQN6el*e 2ܸ$H~jV3 D \|]G1Y+'P&=e5+nr^忕㦔Ւ*Vg 엳T&[mۏf^JjKmh.t587 r\xD x?X}?a@$fMmZ#R[;=s,P B[U`ƄAO]t;X,t @h = ߁A8sMB*rC)@žo[irǀp6Q)55v6KځT }Mt{jʛDCP}oXwIxqc}0} :iшӧo'%Z+5 1Q#/hEo\'$D:{z4 2C&Qq˸Uq􁐇L!wu^Ai\Y_^~OQ ~H :vxyl~B\2L"d5n%0:ʅ"(bWw}Gv+RS($gH͖jv2b;0$.3~G!́E כ,섲$feD;e$l ϖ8}]*5Ֆ;q["8D,(vSD(S3؉F_' q&UE@Ҝ.i-i'kGsf6}ܾB8C{T|2 >%򕲵դt7W>鋐Kf# ,/ Xv=u.-FK&I8}/b?lrToPqGNL)IY-O kykdmD^=dϓ J? 'W>mփW[vGUjN=Η2:n&TW [~ B5kD8f ssx0BK1JH9~@ݓ1^vC A?ۍc8]XCA@nqTEsXJ:wTfŢag1OPLJ3X5etl5"Af3zy a%Թ[@awmьL l{vps /Ո}!%.33SU4~6#I.rh F J~ŏ(iG?gϭԟwI#QS";<̊`5S)aF/3 ziR2\Mt5h8/i5/// ̷8B09Q&: ?IeXG-H6꜌.6nv ̎uo\ KM- /F%]z%qlx97/Q}V#2: t\ǟLeLĉ|/HZ%0E șC%6G(|s8J OG}%st$4) Z/G4~WQjf'v#Rp94'Hh~55Iz&EC=8`'`[Tca!ƿiG.KK5Wg:m ܶ[+|ԃ 3.>E^602Ip6~0 tz5If coj7nNd2u0SCVm8Uhme3p?X>p]6{ y8.=W{?~57wQB7#4P1V='h,+5Oz|h5c)L1qwd"[h#2bY'|9C >@2goS>}>ϘfҘ,q < ?WAtC@(ADW k'U&Du n v2OWAŌ:<[Z/L/ 4ݭvP^VV/R jte0M,rj *P@1^J {-=ί?UN6{Ccli2ѵ@Dn{~HK5nE5#$CC: ~ߦ03(ebK/)Vt#7#D~rPiFQ QQEA,7A:@.1s|E8NRkfkP 'Ʋ{6%[$h V$A2*ܙ+ 7)ộu >|8b%D#|i[fػ{FAêf ~-7J@$riLZպL# ByW{۾yq>WuY3_G [ Bq#ʐ`qw&mA`hu#v ~ P弘&uPXE(nNZ 1,f4P.4)2ᑬtΡз * $ՎK4)jO qѬvTuVb}s;\L.Q&ҽ"8yΥw}iKGP"󳜮*҃"cૄK|ӨYƤlsvwk3 WpMf9|?N>~)JG coT|v;$ol豼601?vT*;$ b$\fj؄:ĺotطfc1^ @L^!"b/?ּL.?1SwCbҀ'7Kï_3 m?򟭮dHҼZl g{ ;q%Zt~GC9)0a ]Aܿx샑_*?bb6U~^kW_Wy)R>'yzI63Ŗ;tݽ;KN&\iRcj ],4Ǣm<){VufRTD(8tD ky'%ݺPXʹYR*DGj D.9řL9tsUx;JEpFvrB)NGzM%an br?8W0MyѨD&dr%\34W*iO=z5*?6 Wȿ˜wĄi?SY XZaFZ:*"CE0u71Oܩ05=Wܹ=~=ZUͬ^Qzpco0W2B5OŁDv~T7;L{*^PvU3fїicaA̠ dAoP0}ƞǦDЛK9#DJ-]\?Fy^ü#S{? @%)Jv \*?2;= ?JIdν9nX^5~yl1tlTSA Q^^ )_<ҋ-K|(…?]wOnah b@2+-8FnZo!# 'qs8m=w  dGдǤZt'M*cmG7vG’H9fH,7tr*Hei\x}>~ޫzV᪙ A; a&\Bdo@2T>'P )OLwNyΌ &!9ݝ 7 gf&V|8幯ۇ~8@`/HOXyבV6 r au"?_3*T؆i$I7 ( {VF;RE"x'o N C#Z#Q$#k[UkkznDy (I)@b4g6Ȕ7g$y$J4;}V^hxוw%E#- m Kٟv)$gJc'5(WFפktG]UԮ_ɛ\gϥ8|-!%th%# N)h p`wHCt'c$`op/` 0OD(ck!Qqe2~,Y Shwh+ p#};8>HW8 (Aԇn1lE.|74:1~%ᆨ|i|߿L] ~Ͽ.WFupJ)BoF&wbS:@A @:SFVs@kP*)G6SؖJӓ^Ƀh_cU_y ǣv>ʇ0#҈)~? DvTwfKA#s^ p^ΉI!ۯ$g$YMBOJW ہpϯBp7U\tnAOq, (հ̬GЎg8SHysrR@*|dEk,_8Wٖ1[iDFMC}!h>WErHEH;Sڰdޫ5;1v!Wܪj?߇{u ~y>ICE9;&[~̭cOrET7Z{#EA6M(@3R4<9 eWh(XD؝_ sɥM#`wjc"d7sUbq/c |*,T0bPdcM~ֲ$0eΦ&ncyBY7BS[z!)zO/qeJwеSӺa=tD]]|ev LPwQX87p?<\gRM<1~Yud3\+NN jsTҏ \ens0!Tۻݓ_>=GuLzr Ec C)9[alk?x"tm_:kaz8-E䧼+\N΋Ӿh(A`lHlta3G_V.5朦DǛ <ӂ|ؘ?a%䚗ZJGE$̘P". G*&T:&8Os~8_86F巐WyN(r߂vTebY7ڈWgͩ_L%DĜ G7ل!g g,t-%mVo`Dti08u9Cm9,eO%dfLNP~‚@fE:.`W[ 3G>K 0$PESa7FM p+$퐢þ{-ݹ(o߅C q&1pU*Xuh/q|C?4/* %%GH*=C0"/zT97V&.^8ԣ$>ZVq~!*J JhOչ9[H0"<'689~E@1HIm/SKp}tLL :d;<93j ^&yO&X꧟W;B<ħCzd@{C4&v!OuT>='7=fEJL[o3[9Xu/Ws/x r/Ƴ&PAMѾ|P[T`ek؎ ̺;<]C^k35Gvr$K o%X*Xp'I52+F-WV(X^&ymSل2Ȋ]\.wp!opQׇ] 31X ̀&PaM 7)ˑIFS-{U* nHڊٖG#u{ZL\&-h=N>eͨ=*V ʡQk)йB_RfaCHחϰ?X Git@NosL-MAt0<D(v iZ_cEQԺ&%d3E8iv=mP (ZTGlK3)W+mqXb_8LĵT=~)7j?Jꕑ4rBSR׉Er,-;3Pr7˽ޓy9mjsEƭ^4Y+1.Fk)6x(66NDG >սOu8w3]npce⒗\d,}* e 7%zcY>w~2He3E5l/+nZ]Å6+(߷dI;hYZA<%{?OS? Mqjz6&8@Fi?iWVAnݮdބ]>iZg Wf#lc  _cD4 K-uP>@-ZMT6$}n>gz(>4e&M HQaͤ*`a?lBVΆ(#؍1yw̱ 4~Qv]{XgIԗS Mj"IIe:wsP1D$J[?!KBo~".7;'܆L]Aqw&*dvKx 7[Wb/!v_7j^Am1ũp@{/NXHaVB 2ؑiH"!WGcC"cHK|2 X}{s􆔤Ytu+u1[¥%Ӣv|#`lIE8AsfGpm\F=k-pKOi$QRTK߉*oj획h&fQ=P&GEQ٥_}i4 :3vlA=d%gnЋrU$<"(Қ_30~g?$I^WnI1|e6!y A-.wY9ͱpЗ,Hڪ&c>7='[DO9ի\gCjX%5I]V$ꓧYy,8[7+hSPp+1FM[Bzj.,(wy r^ =žXGIO3 v}Z7t쐛NNpyR]upfN|7F{)QYJMV}+|< xm#ctO0x̞1n-VI|- @->&޾Rl&0e Nk"E\:>f>8{ _8 ip#-Qgd/7qN%~n 膑weLy31t*cYoi Vֵp{. Ol*\.w_>(iY"rqhgw8OC䔛' A~w} (eE{iDZ-?Mɨ۰C}ҷfW"Oֽ$##oelbic;#޺[{48M2g Kp/jֵGZnJ:9!Tu΃?/VSki4ܯۗy)y|9ye{X%ob=˝5灙ѭ#aV2)dYձwɸZ/;s䫎:u][< |\e*-Oz$c|KFe;_%}R$]-AR񧻪Ɉh"ZˬX{2bXs؉l@5;}%&&Y;Y]̊."/ 2VI>Ybš%ʆTEeBG!Xy1{|DT>+aE &` !I$a@%V(/WRvN{0fBd[/dEӻN,#;C=FVǑ}tj}3}0hmdwBx{]飋exܝ.|% AdEm[S9w|Lqf|IVmlʿXM, J%θvQKʬoJM^E+o/dbIF/ah-L&U)W8[dx" CRI!"hTJ<'wwԂ#uW2P5` rEl2˘X7X68K_uϘDT"OO&2a(hwYp{e5L\EI E VSeR 5ԅ@qH5? Iu$gPn!V(,m[hlam @ԙ<-{Br^] Vذc?Mg.&%"K&6<_ZkI.tUqsOkJ Jse` f X> |vjjAP@]QJpHbt%MقYV5Ѷd}Pd_J'U3*#:NIb *@JR)6j2yb!>b-S2G0%18n@3(,A+0s}s D_TCA!/NB[$ҰEO!0 Impwh*'cB#.:ݽ.Q)>ʘ; y&,,֑H0sH;@jIh`} &лɝLcr/C_Da|j`jX4sLT-E ӗEnO-ÛڛZtL"cm60DO)ք@y``t^87vlEY4wh)Jv!n~,M9}ގ3J͓ĀBżRwyB%PKݙ8K/&2];dGyp: k/~޷/, Fr4(pJBa1@-H78tVcR̭r)} |l_}ѵFWD>+5?)TK:ߞ*y }h!,{PI~zDHTyyq$(W2-,}pk!w .gz_:w&_!b,5^"ilG^"c@]6>MBky4FlP5jRJMgVfkr9w7T3:'+LVg;㣛 7Cq̡VOxՖ%`\5ǭ@E4߶ (Յebf{;bK!9µGy;wp߶?R܍6}[Wi𩦫Di[f ,i8wWtdx5 v!'jKK§":K1>U-B|v\ :THݖ[ހ+5R1 %ѨЃRawF f=/$d>Z{ ~8Ӈ }âpzf2/Y.smMNB" n*LgjCl1r!quY\ Nٙ"~)0> CYYM_:3K-rq|8Nj@8=w][k,6GFegѲu3,1=:+B/b!G&{ݥTv(Mg6R vp5V7x~Z+(b//ؑuF:wƀq^FԲSq/RLZmLJ*e):$ #Xi\sD~9O_idh/{ Fy}3L)+ݷ)iڞ Uj3_;-Y6.!Xlؾ[gcS7Nz&hq^1~3)I1\,^f*APW%}< w3'd1FoE vYX _n` AՋ{/K h ~ۨGpOI\_Y{PdX _+2lTAZLOK+hByq!z4KYS?bj,/ [W9KK+9y..X@zb]'V׿.~(?P"৘u)-+jz5K.s!G!J q͇_[hefߏΞ>d8SJSi^ [H mfEFJKPGMo`(c_>mTa>XHd>SrE(gkE[v#r` Z۪E6jw8m{NQq&3̧Z״_<-HY*J⚛B%'\o'+NlOU7}]w\-y^+/_KbyDC  eZ2ja@!#ya`-F}raiC$ tþj n 5͗TقEzPh th2` g#w]lV9Ax"7IYN_'6xV;gPq$xwEl MO#A_|W9&" fŮN7,3ܒ`Nsrs=2A"LœeKsy(5S*rq5h )-q:"!_= YzqŬh_LQ0r}ҝ"'",#"#nN/.W%ܻ[D8JI&\!L 4]?;,Ύ Y90K+cb 㭰1ƾʈ 7e;*Pv~Р:|۲@a>M(F ,1c&^]zvxRܛiX{K?/F7AzٳfݖA +cZ}^d {D<pEWL$ܽ&g9֗LMTO~ݟ%vNr#p[ߤPjeLk$gfoبa݂1?kYG(q8Sryڵs$MGBt{\G6~ןGVq;GAf)"\QPxRj j|ʢ[J#ZE jU¦zf?`+#M&QvbǷ[=ߝ@c4~]˗2Z_0iQQ[T1b3W +*Ud㓿«]jcpúެ՟fCvGO  IX .iBR/#|=*Bo___Qp =KN0Ű˅h*k x{/eA^+Jz9lO,_s=N*`F[?IaY?H\ҋm1qtd2Y+a!*4 $3v(v Ηݝt N&4# s>mO iϧ v ~sݺ%]xa>Z>$CI৵e֒ly¼͵Mdy+>uZ|eD 6fS/i,NLz=q\yWl lc-Qd9m_kbn •NƄkzD{< b@#2kIMpH}4*c*v0jſ$+D<#(ܒ"i~GW6; _{pU zzlZߒ:4H#K&;:RO٠-| f~!]Щqa=7[o§?Ă{`1`r{ zcpJ8ț3& pF"H@:S[p2oV! ]tm]&EXC$dT ;_dԣ7rxX*l-/qaMrI _i:WB>@eրm'x|Pu}ls>*Xsp{qNCql!fyIb5N/L։@3XcRnG}FX a,7Y2|b2'a|\86&BoQj6U> ,gXbϑy?nC i#Y:ي;*ѿ$(ǹ+rւ4"'eg pJqW4%fARBS#3ǘݍ7l7mA@`xSZJwLt\Ws#Tg-O E>=+.ߞtňȥ!fx$^ 4_3.صl|pB3_j =`iWf$Xh(C P9rG $ 61p?yHN%ZV{3!ZұXئJot[Ya UL]Q|j!GG*lY0}ϋM[6o΍y^Tk5bC}k3Y9%ǧ@XeAQ&i`Q^}yj[k`1d7k(eY,,B뉽idΈ΁JQ TH:>sN#lyqGLYfr-k ;;0 IAP Ytf{hKK$2>/N0IA6:'~Y䮛uKex\ܧ?OCsF-h:UYyt[匥jѧfd)Iox7CǺ:dy× ٞQhr2I,~9:Y^_'+D=ѹR3j~/fЪ:NlOΕH&A+ih\|nD9 LHIJgzv k5/%m՟)Vbms, +\NaIu}yA K{s(rW"!o@;1NΪgJ}}U7L.BxA~͛jx:ɼBF Mۭ͠2嵿넼K,8R#!~n_칋߯-SC.s<vpk׮ďSnltbef=FX&V&ѝzSF"&j I7Z9~Az){l{%7&u-+ G=B%=*eJOV.`gl_mtQ߃X_pڭ !wkxG&486!(z<|;9;>=N4PWaI7m?ci>\gD_y2[Z n5eȕлSͻV숕\bY=Z\쾔H 7#|2)-gϿ SKPj rG#Wvr_'dθ؋5^1HcLWER"B#ӳBne}=[FIVU;CHn"R%UE`w0ie!)݃"FOMi05 ̎?*4To$7!Ytrt Fě_\G(cĝ|#dII')5=>qGoACDjIF2/L} _ 6hy˙aYxn0FuоzI"nt%r%ՌmUN!Ytҧ\< 7ҏyUώ٭* 7'AQ"oHQ_5m8򬦧 qeWxK.]ZdIf-ϴhbժ':QId@Ж,= 0r )+襭z2IuN ЪR85cc7FѦ<=n_RB=o|˖ɿ~T@j#cs.WOsj{o=&Q_67p ԋ9FMW&b<Ť%lGp$Q1Qm1E-n}|e?ߠ2ښhsk \l'2ě$Ξ" ҃?~x:wI<ظFVC)ԆgxLBMEQQCgBnmMUTybԟ7Y(I<0^r>uu8>%j$V]jΝ/Zyr[o$ukj\B _1pp6*X@Em>6=%Dˆ%~sj?Po3~x~D#$-.o &^(s-^ yHx+#lE# e"XXtpĈv)rRm8αvc*eLQ!ɺ0MTKժ* OUBd(hŋ[HT!?rtV */;Vyh])|Vgj 1.Ax熄 4OAÖfcH]p d?БM a֊{ 9dFtN(赇X5y'ԾO0gI6Ph{%Zv*XB"f&h(FZ "Q}&|O~D"=J$mZ P#a;́NEV&G;$RϤݑX?Xe p4 R_83O7HP3y(SPd#e>S|b-$gv\HHdB%g_wP [Y%i;u"֙'NT-? fIJ1L"#'+^7 =&'YA6n_yJ#[SKgo̧q:bPxcU :U7-cW4MEK.$"ܦ< rh`Fm-#iԝ|!Ao7$_0$ j͡7B'هx=>d4ssѺNL?'x-N=zQ>$k=}j1wH//㨥@5tBaeo#ˈY [qsuf>l>Zi Fvm1[_ΘyGa܂Lb0s37riJ$g1?/$nB9X <N5}6GP= RLxG]ӗfpcGuu֤jfaV'{_uke~%ńF3Yhl7mÀ;7J{% |񈈴Ԩ9b =Yk@{Уm}E%aoݛE/S;VUJK`jv<ѹ2ڍW M.Q!YBfb_mqGM:!ʕD33煜I'jp` <׉Ùi]҅"i4p*9Gqk !(Ca.$` AS V};K?s[a1-sL$ _gdrZwmmqSBqĘwz>JqIQt8`7=$N^ X}ekK9 ֙ڿVCA~W֜j2vʬ bn3nuu]D'R<]EWt(+{jS-cL_< *L c <ԕ,BN yMC2$GSHo]~s?@h`Pv<-lxI,uv00.k @[=\q:X9gʓ8[#"Eϩ_#aë._wgD6؟$v}- ȯs;|7- {&5/X ;ٵjuنX$".,3*2W9-Wf ɼiޖ&"/&ed 6!9`^Ǎ#fWl1{ Dz,;4p0DE>:.Z8#B(  ϾC~⨼K^0OkyER :8e<J38VQGɓYD+ &tZ=()ȏkeXCגK!9VF8PvXχ VN|N)q;ziA/-OM14\ná;{9і:Ocխ/b8p0 8;rوBbm(XOCHVtBFr"pu'B #"6NN*eI\~Sǁͧ}MXKʟل$RB=ưy4T aCB?2L'>0~iO{Lei.B6G jo8*'×8DӥHy  Zےz=Z dF[tڦcžx -J9--:0^.7 P^!f\ǝtt99sKLH@T0 u5n bd7h\uCreSma'p]9r%82ZyR3aw `??;PJAؓuR(wY[c5&4 ն8οi$h_ķBM*WJc'ыcxeOΞOvs}}U@\Nb7S}VMvɸÂl\5h`X}\ 佔nJOYWvw-<=][Ȏy0f%!đ[u%4;`+e7 ys4_[+R)y~e>b30ȫ5zPtbtU E f6[GXz3ݝyOpݪP4ġvMps71_id ej`hwAwĎQ=/Dm6 j[#vfJ5sy r2hS3(dh >p4R;}Rlc5Cj<%\_~%XJMd.{k jJQe1Cwen0IK{R”WmQԭG]Mavdy9b3g$;$-jŖ,EQ[*"qA |x'#EᤒbY}!q\*w7](pO4Mܡ):YIlʉCDG]lܱg7ko^Vx!]E dt祱wa#ìʐ$-FY/kzߜ;ih.NaD|1'tDF 24qW6fx/2ؠ=f?Q/ buBC >2cr> m`;՛#Rju8t~tiF. wCbVa] 멺X02<^O1?!pҏ}A aϾFqH@T;UQ]74=泮>E*ݿG!򷒴 X&.v8ݒ qAح=S- O/W$ i+ԓXr8Z;ڃߚ'vl8U2:Eb ay2IM U+@âKE 2v]m whn5ܛ<^)t *E7j8!7U')NFk.YiAP>L2#"؍dr/9U:wlytbnE(6\qU 9hxкG}1=7at'V`ؕTqo0oQdHT^pkQ,4~6yF1Νt(s8 nʇ˕G3]XPvZsJ$L6x=xU42CXdhna KpdQy؀ܠw=nʢ!"t>,)V\AmǢNn:$j~JlDPCO1%$/h8TAjr)RMl(j!8@iV<a;6ЃVAR_Ŭ3!_'5ɏI;./I0`!)mR\ٍͧJǰX&k@92μ~) <=֟a<\fr/+E'/*O1=؎5CDIl,eW־9#<7_駖j$'[~~3\`=?1F` X{9{K? Rl(Z`*Q3! E|'G9ym?+3'?ujQ9TM ^ m%780{1IbiL(~qNc3-Lc ՋnMzS6ph&=☚. ("kE Y56CU.P:.#Fr܉J',<醲hr)lk(le)y(6˭(wbv6E7BMD6-a$)0۔cup>nYr|u|z#,-7R򪹻xf'Dl>~R%Ta9^Ҩ'-A9|^;|Uq< BTAW:-t;|a̚OY yg;S&꭛s!ǃҰޏ] }#i 6SE .\p_Ͱ_ݞzZf`wy/0&~>p|*s됆c Ocvi 8 ;z7Vнl%B,DWCe }˭h8me:~U巷ͫعݗFN?hoȂ^w&MZwVWFfa~ntہTӺ?[ Sh-JIĥJ!dlo^EG %jRW[o ~y7<Fî:xЊ' .9bi'.Lj;nt+SKQ-(%Y<=#d24!/M\h"Q,9j7(Ԣ [,1P:W!JZw㵽l9[A~t5MAJ5/~}T6No.#pwu ʁzzyWk8$h͊{!H.(fُ)k XL??!֦ޡLc"T?pM'JvoJzt]IsH4gzVrЌ*p5'>IGmCZ%hvw2(gFށL (En:}/GtՑtSi@)yM9 eHJ&e65'ƶ#<#ʛ ^/ Q#}\|1<5nf77r 3XBUWz`1|[1z‡HS9vO?4L# /Psr|+q@ BGm7C含 i>#/{5DŽDo\"M;Qރrdm=bb ^{,2qL~Ya%Z4أ/r3oFyrI`Dv7$6<C<52h=I(T{wL;k? tgfL~; 'Ʊ(].Ei8dמvuOi7NҚ~EV> z3S3y,omxSb6M];WJ7/˹j{gD~`Sh| [rHY4Ga_x$Esu :xHlfGWTI?^;4rif#łKge|`8!ćZ,*Gͯy׾ĆeOh5x$f1濔_G"#[鬝^a0ܴ''3pf:کiZmYe№$%;11יBf?G)lvp U-`^SVPy6}䂢YrTrW*2=>Tǣ`܇v<;~ Y D.`s=tu#!['ܐ_Wtj}/.fmȑ[@Œ#oB@x6PO+MRa%T;|R}!l44@3 bCg[ۢtf*#mSM`Y~%SQI濔[jo1 o9)*+BRF.1ѥL>E\ c!g>mPOv&4:@HTB1H6fk> ϻ \/ ,JA{Turх&+]D3h;}L(gu굗y`̿!aߒ@'^$ך/,byș3HPe?֕aIcAZC<ݽ]9·I(߷~bQlKѬ0mGb4ǣ]ANm݀p'g6 `uq#9EZ|\b?*#GC:=3ƻ%-nU(ߐFrֶo{q [XLg߆`"CU ߯XͫN#^nqTЭ$C8[}[s2XL$߿0וsd;(!s_Q&|<'7j i'Jgٱ1s,:L93nv 3+TKiNz& Kȼls]c;j |i2C mߍ<է\&m-yIH%-zmφIЖ` r)y9R "5fzzFaΟM%ΈYNW]C,R7G7h3C1l@VZ3~P̈^(9!_e.hH gju=Ors Q#H8I0f/o &=]="%>E1OqOwXy./ 5+܌ G 䰄2]R+"Xt\HSvoTBI"5p^ԛZEG952otQgpź(AG4tJ,7K+X&7r䋾*8VſMȽλ=FJ%0@ 5 5b^HSȆ#SF=vc[ky^C_ XVX>% -{f/<9]j%rȂ'ZOi+j9 '=W&USaWb{ 6]feb7숧e<"s"J@8 &3QFJ@@ |!ĽhB5R)pS*Q[i:[9:xrB'1 [v{oJɄqd ]G6I,u+gZCUM=Ui@;Gi.ءMb˴ -ӓc}tИ/L*IU4ᾙ.#=.2p"ehcWAϸ"mңqw;|=|D@5{6T6STY#) }LW1D?Gət9I ,z26\%hyo":Iek`Ҏm"HVV PS7$jv9oO' 07]yDOpv'$kE'F[*?:͛#?x&7e,]UW>] K)ƅ$Osw%0pS scrIn銴C\(!`? oµb`,7`=XJ4j0TJJT{D*"IƮJ>Aw Z*òNyS5OΛSp '>^ǧ&0-# B=ɝki5_l{UAђNDSՠ XW߻T7tgvQ˶gP@@ ]r jm$+:uaqwx*'sR;F]Y%д-}IϔQQu;,A/;{GOw*ߋ=8(P,23Cg Oۆ湯txkN)ڄwr#*O}b50'.13;u=Ht%d-(2i9_h`?]ݞ?(dˌ}F^P!Sh}DgKUy( >ȡ"6%33nDi/;Hڝ# ghGʸ1iA1=JރDyN*va%@<|׈RK?(\ a_2.~{%GY[z:%j̵VM[vF7_ 9"`M 8h$~lG )|&mX޸gX?rh%5Rаn ?ґ^|mEs[ND)83X9Evt~umn 8Pr D-I/58oX'Ȼ =iQexl/L7H/.7q( 4BM8WvPEy _3[w2Q1ԯɆƨ+S}W-U9bS)w(-Qέ&1<1yLLV$:i f@}׉6OzJх?@l>!lf #ݭЖe' ˇ0l"EV5}U>"In#_>Á!)|b80nOTtr2$P}ww1MLv:K~d9c $JQq"kHМ]$&WH)V0ekJ\2$?ލGb~ Mig2vӄm9XN%p-)hwWBaS1<>9b>,pY@Lrc^N_TayB{uP׉NxuR+SELWPYvK}=*jzT_qnU"!8;v|C QzPZpSaCNXXvJ) HOgK``XCƑ- A1kSEΘl'XN"V1 eL(ni)D'3=jq~f>jOG:`nq"~U/OzT84:u/Z@Gd5?k1?`@`V%H;vC.L &/Q$zVU$QqrnmbH] 6X¦8[z- pW/իwDĚ\p#C<+-h{DN3:sO,'X]gݗvĆá'zܢpd6&4PZP3d _p(+{0\3EOc= 07ok㛷2v-BNS lFe!x(36xZgɔ$Z'6"cM> D]uVW/Zp'>( G῰&@cۙ\lJe yDCL 8qS^+!Q/kol[qE9]$ΪsPH:q\PnAIBÙ% Z ibOl^6smc;&S3s3 ,tņcrU|m|3CIn߉C^[~Cl=y%N|sRat#Ǖ ђ?Wo=7a1Ӏ'mbۥ/Fw+rUڼꆹ;Aw]ʢ}fvnš Zh3)8[uM>S`%MZ!QxAC)!ng.< pg pE,^S(ZIz<*nC<xUop2߿ }l||e͹fa4$S.[Ѱ`HDOnDcrTgvٔgͻ1[BqO% *Ju؎ |=S&\=ĺBٵ+J*@6#ǭYa`]VW(kW=`Po11b24aQȬO/ uB;I Ϊ >OFdOIDŃ+,{'urpaKw&tI8ҭ"-8n0bSOB#/AlPvc#Lem)ߌnu} Z쳠6ON?%^,/Dd+ 'X%Jg`NUHS=Oœ!7Fc58H0py@E 5lAt,L(mW1ڿJC+k@9] bI:'$o6;oH8r+yB;jK.^Љ̗_75]XU$m'u~xP9ayeElj2 {ć0Si=hY==pL*S5P hi{97D(kť‡XG55Eo[0)y5u8*j4rC'=:|'BS'3lr2w~ifw.LH#-2r"%ScyB"P^?Rd1()(&ԅ0[Ks6hvUIS H`3`F Cqr^ꅬ`qR&P ^Wu༿o eF_kFb"J !F<ej3 bpzVv8"}fi CD9PTcG_12.-³Ot]8(H-- r Il:胲fNA_eʧD. eX/z?fPCT5rG6P8wC7vSyD D$D~f:٭}jx9>^1΀i fji0dDW.Ss+7[^Ҥ8 w䤕 =!H(h&ۥj8?j1i^u8<5.ab1ZKLJQ#EЛD) t\ I,WU{1_m}T 2spo{w|xBajk;Z.Kw=?-#A댶'DYԸ@OJc )Dz?v$oTp!]ł~R%vo/-M򽼒!MV@`8ܡ;o>>ϡwtl$!9 V3YؙÜ"ۑ,8ðbps(K!e]򃒊+þ|ߍן Gw&O!6K}<*7Uςh:゜\Pl&2IL9ff~? KXjR!< JCJeں{|/Y^L*4,HmO`4D9 \'J*E ,̹6X%n 30!]5<L_ߝ$X1>Q bW@էtt]̅>24W& ']A 2GX7 ,> 7)?5DMB7eUg~*JJI 4,k:[4hv(&\"o (}JKk3GP%⽨Kxڱi!(x$> v !$ijU3Upغ4D‰dv!L)MJm+ҽ  uk= 6$mzN(v \F8͜y47ۇG- y=[-9kז4+yh/F6̆j4J`,0pOC"v'ָ_s>!AjSrGVqKu'0m,W09OrwKnnWHCםM=[;0NFTeRp}Dn6W `}.ld_FU1HDjXm>!z,qc>A'b.G*:I ,T ^OoT§l,EBymr) QqaH{]Ttc ufZ/",J+5E/rvʖʃci2c ZaGs  }E]~wlh}9Va^o7Yo773[c/ us)(Ј!!萑)=w5n \mլċٯY=>?980|m[ uvdsCÄ@(\9E,ݧvT3u]bcV=kiQN|"q[3]:eQ+nQLF>c"4I2zS] |_Í:Y;/i DSn4L-tgBдyT9"@M`Ow LMlܣҠ*z%61>kSӃm؛~l컝z6}ވՃ~e5vE"GR༼K_MдӖx!deSc<=%uW4(#tHf\H}iMM: FKix )MNSi" OFxD7dU46կ[]FД ; 0bO?sd!”z؄'OH8jxЖNY] eIܶC;aIQ7XGgSc+x]1g}rw ;z$R 4\=TNh;n$-j^ؑq5֨g*'Zj%I$ZiyB# EdEE#e}J,`#'9^@*> vr[3/+z@qWuL8_w) ΄;#`^g6``F4y@_OmB o\c&G0=S5;?O|X-!&C/ š2>f>V tƕ4da%[6څCm~)-pw/[l nRpNjVlE~}#[BذY,(#XX-)Ƞ Z!䫃9:ƈ#hik̓P3L%#ؕ_:1,v&"3BVE܂jsRk @b\~x!*Fhc3Dmۂ:\*r ^Lp4i^tN3R-@8LQbqų/:=zޖdzw;@:k kPM蓵KdvX, L|j(Vy`6Gv:^rʻD䥙}''<x4 6=3y~`=%{&U4YoQ(gxjCADmho&ڙ]p*G&}U3+k~[d?)"[.K6k Y V`8[N '낔.5#@2JTro HP%Bf/14|B!Y>]uޮs xrt)Ϳ *MA%#@,Q~=F1w"tL>S/7q#o ?`gl"Dr7,~T 'aZ/s@/7 j cͳ8|v- 9/PP6@.mL")H5[% c]N-|FI©ݞ-! | 1H% b|"M 6MZ:JV Ng}Crp4EFn.SmyӘbI'Ggv&XU6)P%(arC$hb^;λE aY$8b֌ؒA/Bt1SK:!A]ZSe@E_Uk Kc̙J `} 1@Q3 NTPя_}Wnچ0QǤx+.q}. `[EFړMbd>\x|=jIIۦ&u706!@3=M?}\m x;>ZqO (6iEﻍ|kEC&!,iߑkXC߈M&{,1#Ro U57 `-X2NT;%h f$"=7{md~lZ>nE_E&~RGE p/,qk9u6<5RdIR'NxcB67ΛMp{{qXEiԛ|-XSNS낶9}F~4e'DOtNM<G/ohbM9A݌mh-9=(y]SbgHfKc ]Gӏ1X΂?̗\>?9ca`Ŋ?ģvMzA׶ c^+2Nn~rf_w6ۀj kYa\˃{{0ö+^Wn;D$Lۉ0͑o(xLݩ -lܱ ]`~^_Q G?*'"nNlChq8ӵ?mpy0 TK=j4G:l/]z$D hs.(Xf?Tљx bB{=$Dr0 O(X*=šg|" v{YjBd 9aPn7BCpOt`5ʠ֘m* cnN U wTtRw.y5B%BZ>ӌ*Ux=[A?#y"ȑ%\` ,u?ѩi)a/vm6(EҾ ZuW 1&rVщ'W \1$q/hJLk^_5&u4R%8al-Uo| HHœ]َɑd`R5b/_:fkOCq϶q,Jlb ט(5/R$|uiԴ-C=Ҏ'Ŋ7"izU~YIЭ ,yl"={slWZ0laʕQ.sW[Gnlz/"s°;Y+΁%\/W0{rvj$8s5kŃQ'fN?/2߻@5MbN Lp($Zd ɉnpH~^}N0]>~$4u l.3urcI ն  GQ8MF|vtG*^:t`b~$i'[}dΰԺG)[8tE9n".N LBӶRYtF(-n3, #6cTJn9 W,KT(䮍\(H%JoR8 Y%J= +P嘿xv@?J]f&Jc0G6z O-Vvfs7u؎RRi)(ݘX|<+DJ5ɜL4ȝо{ U:|5~2R°<iv.[BC=p)>Ͳ mRz8Q׉&m\MovT4Z.Da-\ R>- Oʄcg~mt7xP™Ko:4fN+1'gWk!-RCjkL -\TTI7r_,eoE@q*F?`OeۻXM䜷<ùsIzmaMyR{s,3iwG=} _hůؖOxةkI-ޔ#Ml Hj:>_ /QƗa_ SYv jbäTvC,gz.~zvJ)a`pkڍ2-Y΀., 7t%8EohI^*:M|rV~ed*6*ˌ6 z|}qa:$Xwjb!,b>H >cSX8]ְ<7:3~*C 40 'cڛr wx,#m+-+P`yicVb}"%]c}r#y}Ѯ66n4' <Ρ✯"Sp(sCϑjŀtRWr18X;\W?G "t(7#Pg(uza>z#T`f>8#aTIFm*T냣+/yB\>._Y4yb@oI1:I?|džGlW+3 q'FyV.M S=:L*V#j$/>H$Z^[7h6kDG1[?~~QxʇݎM Qf"RsRk"OV޲jEd̽67L2eSse'抜r9'| ).Q!tz[Vn"P}V@un*zaڍpW:E`'m'690Ь1 AiWBwhs9Nk9V!TqETxDTz1@mݮnARTDH V9t?=VJdN͞}ljrfv:s&mʷ1dK7U1,(+x[Q6~f| 2L2 j˂JX$-Vii?<wxgW ##%_z7o웲C E 37%)w #GTm|&A@.\v2?Z@(J5GPn1NM ԈzNf{jz笻@WVM7M {1Vsq/Ud6PĎ5F[Ufyo7ގbH]T,mkpanƗa5s-\5)ZpÔ ;m$[BcR|DR_FkJfقR(6comV/k7,K:0-r=P.}"0,\4nj dud{qTkƼ_CYL5Y+k MvU`y[?+HЉ1Lq@[=4 qnݨ;_V g$Pyҫ>z]1Eą5&N< BD6 fρQLZ?(]_ޏ ǃ{M֌>?ճ2x@1xO!3z{͙Dnmj竑Bhc?Ϗ|}U(zQr4Ǯ? 4 ͜9?g!3ZE5 R=-$5Á/ѺQ. tN[YC)Ӗ?9}Y1;HJjW"+%tB*^ ;$"'^p8+CNI# Ggp R^7eX x/2Nq c=d**鰞) 4Iiq|MƁ-z T ڼOf:aor_"~bC #'00N [H@ 2%" ܜӎ&XǮgMÐnGk.[paʔA\=2ؕRP[(XBҴQ^J̋.HA^9f Iel`4-{BqY!2P~^NX_*+ Fq}WL @FUn a0+/r$i m!LN3di}= 4oiqc-o1z,xʵɬL npm-8 q€)*&m!Y%PB wx+'m׊IA3)X Ix~ƿ̢NUmD!ꭔƁ}mrҝd3,#??D=aBm!'N;cGdsBA˺y 5܍hGS ѫ[c*1BeKyTbP /QW#]@5L.~ p/Ie7JeƠϧ/Sw7EU?̉ueX$d:@[x XU0\^c*'5ӭ<`aAT3wo-Cd\ v*k۵ܟ剈YEs۾sO ]N5X~j A#n%.Z$  s?v][phzz)l[uEzto7z :u (\Q#5=A}=̶y#6m{.Mhh|Lf`ʬfcbOUc9M˫Lj$+AH~~ɲ)@Uh;i%͆תbtf^z< 9 P׷ y1>H!e3/"VHa}PTUR?ۆXAgg;ΎW%@ ;G ;UFQ ÀIpl}#nNZݢFXٽzV/<)yQb k>@Ql t+ՔN&;HP^bz$a؍т|&l˨OXq’*d71^^DBYfpڟc[v=qHlz~GQ2ѺiPR^Cl՘lyЛE й7&5<񍜨' W%-(h@ګeiK%CtbAW3swF$zri Zj=6vog? חO0#TFY'E4 hcGIo~SjozDolr,GάJY4XrkwF$ŢHi\DnK,{zHQb1~zZSzmq8=&Q<fX8 h;Es:ӍW4;&Tu,˟kL7鏗-QYP PxsT:2CĔ+վtfܴ>ݶV]^ٝ,4 «`Xjĩ8:OT.@/5pt{GR5QiP h)#ρz8ZIrRmJMydoW-54!Le0C)ZV B 3)>O'H xg|RKeߌ -/).~8 iMOtӶ2J3Is Ÿ́HC3kMQ|O$lRܝ{cߊ^"1 E9d{ѡBm g\eZosA*䙹R$yOq ^0-rbv-~GѤn~/k{W ŕ>w/%1*|,٦Ȑ+& C4s"1ۑA~qV١m/H (ɚ2ހL PLkoҖEGΣ] c 0/~Q$?a3/0Kel?{f"%3Q_ю0axXű<,; @ L$GʞM4͎=tWb^KFL9 O:쒑q$*Yg#,#mfp~Łc .*ygPvIu^[:G^@Zg}e}= ;7wҞ3s R6!(g%zJ( t;w!UR[u=%`d 芉9A+Iy: bw 65  (p,2Ω~ּMe^l9 5:m,ר r2XnY(m;h#D'^Iw&w4߁?ĸhK)s[N!ĥebװhΚkӭx*M ]6rɆrzISOM@ӄg.ܫ/ت+Q*H&Bc_e_a8832n*TWAuƶ"杧/墙}=Z1x5LJ6('\@BySKZ6F:aH66E/5'5k%ؼ?BJl8ms x3> H -ۅw CR>xp I4w+gѣ@rlA$M9mv}IZL`fq0TlyAņKsh8kҠRIoá]h Jd<>iţՌtvd{Rgu+ r;J[2&5"ur ,5 ׺JUcθ66iVo͈aQ˦e%HEH P0^r%x Ty ([AЊ,[Ȼm1& zQstsBq$UB]p{_nfsMh毨ih|J5BLpOABm!{p>ņ2㕧D>L@"vioٞumt[LW+J0#iXmֽaAݪ_i;>*H)c9(\Um6g!aiCEO;6(#ھ(zT`sBtf*80{2.W'=6M۱rU͞(A !uJ ~[T8"!$ק.ŵd SekX={LHU΅QL@ej^R/O⢠ܧۿܑS#l("MPPj}TDIw#ٝ`辛xO+ Ǖ%Pi^"Ҁ #!_YBԠR1)vU@0Қ3MJt ̈/w u?tMYO#~Z/ryz a~P` ['q)k⚻ؔ2S6ա0H) j>WC yE+'`)-$etӓZPCCܐ#C6H'2d[K (a]\a]<)1<Ӛ *SB}+ovmP_j à Gt ˊ5ms߳YP/+(WYt~*fa7WR_pɹB^{4:?V!j\cP9-U7 / [YYk˼ybg+s,>WrBU2 : 7qutRn ' xhrN2`Dr^|{psN0iO/NˀrmaPYJUHy#=jڪbyR ߶cN;2L2qDׁ3A7TM(ܘI6R26Ěj^qɏaK|ZQgoLT4UժVW;wU 3#'#ˋL؍S :eJR%1rP76>Wس@AJMH?r7Q^u~ m@|oɳ-|t&q/WJd‡i '@vҵHQd,^&#]Έ Wa<用|ܴJ Иowf[Et(JFF(Iq!$S7e5s!JHr <"Q#Nrгjm#!*وEg>iq*w,56~N\1KqըB~,Q2lmޟUR)pRHyI4pj`x "\c#S:n][lnĂ$"J5CUIi's 5n@ S@8g]t8MDo< 0MڷP9 CkVֱQUI'*V< ?&qt '!y5hʩaq[%+tnƾDȻN_|Lk*҈GӅ-`$z4bJc0j7˾Kb퀃6WHW==!qKU-/) kx~G SWpڷY h0Og!tMtC͛ `(%zƅskwزPtH|;atzw4E?YC\7 ??}yG8ط)hW5d)k=ϔD.(:hcDh +|f+-~*ŵ=D} d%sВOIҎQx`I.j eC6w7|+H<12O%jJ@6,O8^ ==Ds7>_x:ܠ9rNW5GGۇ?{xa& =18L`Q!/aVr2\Rȃh8 ;1e#ucw13._O:z#-qj.NUX"{}Kݢ.hmfw/q_ .;&<3yk&UK_-֧,y m/>CΔQ$X&ܥA]B*Jidžﰱe$V( ++'&lγcCRZx8ʬ3;}H[[ECQ1FAQv-HЋcV;(]#<3@BEH [Q h1皼=i\D T+T/QmƔ4ʘ!v,AQPST_>yȌ$Z9kzgp֠c𞥺rxTcCdg93+D1ARh7 I#u婃-6^L s8<'VBKs}0oݸ#j*ieN7zޣF@dƬ|d 9/RLKQLmtaUtč%4f8OU\2z%SzojBՅ|hxeR1 '?,wX-RFA\;HG5{Vs_^P2 C Nzl,+$O#;QC`*$A͌jn_ʰҹ0Mq hȪFցK!T}d^0BXL`MKBc_,*&WP,@pbε ;6TVKHA!⯃]JxQw~7e7pWٵ}"^R$t N@G2a] ꩬXduo]ԔV x85eQb6!/PÐ'BHcW8 KCb*)gDXzVU{ `gIXN.#Ry!O4’fa/);ʗӃeӲEgY]-&b ( sY İu-@_ faɛhZ+Aj__ lA `DĝxJ=wR]A7:&wjTp'fBA )0e#G٦_ &ȿiPLJpQꘙޙd$g~f̾lipեw>0TӶՔi"GRޖg|% 99$*ZկH̐B7$WK=3h2(XNqiX0d`Lkw؟ڦJ`!QVXy=WsH.}2|p%b7!_" {`ύ躐|:BTm@lh1HۃѱHe{/cB~];B%^MFu~ (Ҟ/7wR-PBK:xcEz"P>Cg*xL7*KUfÊpfڟ:NʦTd x;>Hh xta)DG?f^sa)0mnƟss T?ԭa߶,_#03;nK89ZyҶ)kDieREa\k@tD=Qђ$7Sq!A}?3g90p@NdOg02l}q}NKZ $I>ImDŷ˛R4ZђS:>DL>w$K c%ԼOU g~b^ a}' ~ mOKDw{g~)[9D{{RѪA?9Vl3܉"㛝77yq6,uDb' 0,bo"jK)om$]\!}oWAi^[`s@h ý>@|"|R/+MEh~&vDshsJ-].9P0u]R*Žf>Bi@ʱ %5JbW/#D<Ϣ'(>Oˎ}]N/;v;nCb@_q+aV^ePR0~-v4qQQ%5ՑdNKP;C c7=WDp"Ib\ .LnQDLr}JU]W\loD2;TOE rTm< ՞-d8")2W}}("11{hF@>"Cv4[l&clB;="W\rZX ־?{*%gS3w\u+^OKD)D=A(Qlr*[k__uJl@32Զ*zR@?5JRIQn}iƒJCNi=ȂH&!B^QY3`"CeUuqo-, KџpqA1aB#b'2(#s1DW5o%H|:4^3౅S~[-oFk0~W*n3h-܃Qh^0(˦˭dW `e'y1dg>i-1O*oyi#WO2x3z\U~18u i>6ڰT\dsL;OLex&4sx'bY8V6)`DGS|aՌ]R/~ءR5cNI:p f +0^Vt&Anĕ"?+y2DFVb4àJT̽[S%ϴ8ZP( bl: ~o Q[(ItN,j3d;D$gz =PT$'ʑ>Ujd?I.缍"4^춍UDV+lJu_ԡr2,ߍ8jvP&hkE(=Di±z0E0M,DJ1ͣq柵ajcKqTMZS7v̪TsnKba(1 g-a¦hP7iȩku{TErE-|<}^) N?+݈AƶO F-'s ɇ^{fh3$ZpVtbYGsLH7 jQDZ3q9kXrYu'|ATAݗ :| Y˖ÛΫg_Zڼoq6!nlT޶=dV3 T^YP$}y͚}?=]=sfjawRMO.N+@2}&+E,a񍖬~ a{=  v<=g,eeƍLݼɯu/mWY0kի[aB9MG\+; \4]ENa:RDJd/a>7k WNI*JuήV[vi> x,4`!{+X3"p7䣰"y* [pЯrJEAY*ڞ"ko@+W:%e%ZB XMs:u6_Υ64jF5 p冼>8uDNIb&|߽7JD &+wcP/d^#-R[g~WQ͗%/dx{|mZ eIUeDM%+)m}Urr4}/ExSJqp5w¡5oWbE.D7jE l!Sq wք7lרQ zH k1:rV-;7j\CH0 =U\IZd_1T(U?!V91o-W8@P'^xX]gB8zTM=3q뙀EI_ Mm5+^A ϷKjx讉y *p![%[U_)[ƖfMfv#Jh)`yQ|SO ۧgj˵:O+%SK612'9[s||߾m@~=%5>o:YEJh @DxcOGK@8ˋA 972z?e] ߸eIh ̐b9oG>³E&ra=ȱD琜6ZD= 7$v+ ډV`+tةJ'et֨ev5S{͜seޥTAfr~ag+ߦKK, l ,&=C<)=s&eO MYSݱvm}$yS&@mrnqԕ+ݼ(158`+Sٗ./gһ5]ڎ!w^ vΊJVs\Mkh4R1]neŞGP?a4\ݤiԨ /pIjtuBy?\ ?= r )32hRI~()޵6gg"8fAGb6tBEFd#74'Ó9yK]YX燺z.::+/fOC_\dafgn4ٕ`"wW6Ս8F+9\u>G ?|F_tE߼ or`m67Mղ`-`}N~xDTΟTǗ; y/*ꢜSW){,fFO5>Ћ @M^;ʝ_9T#K' Bk49!w"`qfpv-̴k%JxA^ ^;+N UΏ6ǹܭ1eFpՍid!հ+QQqVWOʮޖCh'j~*SEA{+%}hD0djwR5q*#zX, WGY iT>@$3h~ǂO$EYIXDõJ攺Q^Fͥc eb9܁0F g5ai_`_\oVs<.:l)@ C-HiCEʽ'^+/ \̷݄W7|Gw|;o(#$|z`&~N@jmb ysγ4k1ibBԖpR-vXhi5FTEXU|6i@>m}7.+@WK'OA L]DvSZoJ -EMZ?v ) &OM^AtY܅F'ۣ#rQ-yM.{<-0hm{Hh)qZ)l•^')X R}/xDO߈@q,xՖdmN]"[\aV8µbgzS{VNEմ੩ LW$=& Aq}BMB`1УD2]c^H@.UcucfOɟхx@N\,1g48MDE]jc;W'Odb& BH/5oˏ傝bcD] Q9,m vA^#KJ7nv}pS~Yz`IT|(K媗F\*lAz@Gg9ӄJDa-/i]+rFGIq6Z* q(KB-0 A.dBŋ0)'yȧ,b_NYO$GVmD} st|/"ƑN` ~!\7K^fbդ@Ex83 Lja~RQZ7zM6L~&9K_=1̑ fξW نe~o.(xq |boaͪ&JR4*k=eCp`KAa'MgT=?K#qH0tx tTqs_wGH"WZ$B7 m I%m?AeAXG#ʅ`!DlpNZEb+¾]oGRCj&rQ]Y2"ڄE btX. `b3sUW$ujCc#0b:6;zk_p*oXAlbq9_LEˆa@X|m(Ђb >qKD,_Gę*߯3%0wEXqaUnJ=еG7PμeÅNm4z2`i {N&]9[`/_i#܋ki'<7n_,l覽]37U߬L.G,qtOK"G(^/W9-bGû_-+9 8Яs%=nEo͵OL0:iY ݪ -y{g%YbXs%Ģ/KK['WeXgMC1Ơی#-]7!谁_K˜x”fȑgUۻg  jR_2sG%3E#O5KZ8~GV"Gj}xoh^X8{PHO\ؑB} GGr *.[6ˆEM(-,58"y>T#sy4)( cw%*Uk֍ʮy2}\[JEw)Dy4d'G ?a^D?.Z6;\B6eŘc慼;4MT^۝A0OgJ?kֻj&f!VmQjQyΐ&R\t^a]9a[@o [sV Y>D_\@R 1@-sδG,7wBvf)g$џo0ڝbf HE5vmxr!DӔw„~WrcΚq;;*MYU(._tItׇӃ0Y۝"RJN!OJt쓏)LU-DFǴU(N h6!!+$G;U?* 2N I,ئCI:3Ç,*al4bNɊ**&S4r/j9j(S1A u^E8~zKG۽IIS|,1mN(+ 8-kQr2;\{hAIXrǙ ,>˼=| QGFH6y.P fjaPaVBN1¿)ltϲTG~,O z{&ôzN'Y:}O*xޔ5/mG"y]d?M KAG˶c\uL%C(!A0ikě_^ %,~GXYA:mS`wG-+~;acRx!ޭ n9* E3t"ؖt2.d-u-p#TMfD̡DWuG$R߆,INz|%̊a}=걬aJ܇\v9{FǮ0ah XEb"\T&80O|:{My3[p~IJF1* 3j0} 7 } , g=#U"Ԓw/?5:>~(q|t<܇;g ֭eXXHu{4wI*^!w9c0j-VND'H SbIq3m'RbGË蔭,pS*@,QeboǠ~UHNi݌X^}p[eu߂Qc!nsFƙJ*gO}vC]t:5Yxt|E q, -EKy~kUٌN+^n,s-rZN]Jn*9װU,whV\?Hc⻖Yr94Uɵ?Orar8PYh^͟HVQ}--M.&ЄZ2kd5:,%0LqC?"eaS&F=z+}1)uŁG''g3R!K:TS@޵M׀3Kb K.tp'}e5ݽǞHry9}ˍ*٨(PulXZo!7pݼnuޝ2>,eʙ YfJ&m:9*EFg@NKgݩ*lxK|,}(^I.5N7cΰ,V)D &EW^FZ%TrA [ڀZJyqkY5`+)rB\\DT~#Zq *"#IP4WZAIEAPUugwm|8)눴!Ў] k )'c'U4'#ˌ˴hz \Fd-T;,Cb*Od}lHA߻g{PbFo=g_Qͩ)=I3Zౕg>[̍KV֋Qk S EQg5 l&Q ]iDLݴ}!D[~pZcb̉R #6@irꈟ4Z=\{ U9o\JS56@\M2pT4΃tU5Rg;7-.YueQn1n]Q%Q@P4([/Ii0_.&'^FBEydIˣ1Zw㿛HPi=^D(#)TO!ʬw N }| ^gl(SUIh:]&>:X@m_}ګhoU#gM?k/CEtXi%2r=H G. _; W;(`܄,ZbMV_qof1ysx|J~GAK#{Pa֒s7ص u6̒].v}DzC!%PW3t9c6W.$I]`n)ov5>C3k.l{Y"YO9ID!҃;>T1=v(>W4)Xdz{~)5+f~ju WgQx d!3:/O&N}6S5b x>'aZZj ki ܤڠj\yX;z8t~0ZeeQ2A0'Ee. ɹ/caYuFbQ9bIy%\)^[gj}}oeƗG \E2.:,:^6 {.%,\84̆7Aj?-=X|:5ܤO/*浉sp1l=MyQ[{&;zľQ}@E!'dP,*Y\~e&dqm*9d b,={mjJp(jcQC9ҙ<֯ZZd9RGB(>D^;)7af~xQxbZ*A\=ƶ\Fy&Dv^"10y)@=#49mVm(\N*4:} %VݯKib}mOo{A5wT\ټ {:gf$кXU}a?.6|{V1 &ٍ- 5 BI܀'9py\e7Heλin#Kvv<,^#ž+O+G#?ajo\ws N;aC:f͔(@*W?i$5d.a 7td';{(ጉ|/}P12ZI]7ZD2*糉S5IxO})$wVF')ptt&9U Rn%OT?.[K % 'KAGBʈ$c ~gOH!a0.&AAL,מ'Jx;\+RFZkX-C\c8=kO$k>a _!Z[)c% mTpBVV'ʵ5P6qO2fodGMl0z@2-.X{w\'Ɔq@TA(]aM=Ҝ闎.sce4gZ!v7|.\B9Y?G'KEsZ7j4>|ed_5I vFm= ~-"%DL3hJ{ncnxUi!>fPwĴ:g7&`d;p@0΋@--pZ8hJ(adm TP6t Xj]r2&.b˙ȂrN͉+qR{c$~WPf7ۃhrBr E#ZQl#bRhv:]i1WXs3^+TP`ET v ِI%1Z#;Tn! % Cm9y@ `?TH A 1b:  +#~\(_'\0!?Ν6>V.՘=Z ub E}O]e$o]жe<凲漀8I .b[] j lh>XD:zC%N!Ρ u]Y%mqaI{1px<6M^;8$t,Z-&6ӥټ AʥgQbow*SJ+Tq|<6 ۠`ǐX☬g/c.n0BYQEC.ҋ˗5NњIu/iDlI Fހ2FDL7 9qx&-w.y`uك0@AĚ kUfv+ؗ;.Y3Ęgix\> &{=k@51yͨI݃ӟmg2ȣ2DMZ!pj NqV_"NbH %I3C9%~f4ʼnX]),oBޫvu^^5tq,cߗlL{ZiQS VZN'Y>vv$dl$r(&mJ)&1<&Y1s=ƥ?M맩.re3a׍_ݐTKGniaY:g ^V ;[ |^YdSgD`@[D^'4ރgK,CՅ-37 A(xQEq]iCh W_BVW*ʻ3JdR9 23ڌp+r) }DaR(m a?9¦nE 8[;k,K11Ty-Y_gB5٨]BZez>C,|odeV#mi 4X"jQS·SWk8"kaJu&P·ZKjc (:ž3|cBwP|3L ǐ{,oiޱ~ -%.k ʤ5AaC$u@f߶SVսY.hh.C&wxbe]^J1X:L1V[v@$L9Y e>*҅FOJ/.D˟͹rdxP`m1\8D&=iJpmɂ!V| Ah} O,&{}5ci}v7iS9:ѮGsn*sX&Y22@E^k VZQ] Ovgi^j.`tf`.v6Gp݇Χ1q:V 6w. Eo)Eu(dHւ946KHέFD:lƝ YS)8H$nTQl:ڠ©H J#i]aM,#%mQxġ8e{Ƞ*b\<;J>u:PM[jYs%e,h%bVlϨ$|Hž؁1EtORr':EQI<85BlGNԑ3{dˁk82!6xW-;b/i}sQ4 |b@brsxxPZUE2^\^J+ )ݸyӡYq,doQ+*S!}Я$ ܟXEn7a)5f?p%ZEϵ4#_Z}}޲ili5V(PQ~7< ,דG< P|-^*2n=QWzfꆟⰩh}p\ e7leYs1i?ڌ[xTnr) 5.QQ^x3FOE-LaP`r;y~pZ =vMZk 3D}!O8ۅN@ фɬwMrS~.Қ25{8UH*ZE|=N Ԯ_3OJW?gok,6%ɞn-,cEzK'[QTs5G}j}˅N2Pԥ&71WL j`6%oDRB2m\ IߠZ/O_}ai6N#֐S񯢦وi>rϟ8;Q~?,pREwD&9+ 8[" b._a9l[7֫)( bqۯcPO>N)m1˕"Ca+bġyy%iH{,X)3:Ơ-+8N.']w0BtJ'%Nk-4,0UR&'9Fɦ,[5k=?YMmW]Z{ y]s@@ZA fw^TwWuu*,MLQ"1:2e ZE^倣x.72C~~U8\[-I QmnJT%_r[F\/(zRe.Yf*l5qP| `#AtfAJ -1 d}N˗$$Ib8I횭obCDߵG !x@Iâd1Cm}=ބ̳%kg'vc\``:<Or%EK2Ny'r;(zet0Y}֙T7P3enEdӂEWV-*Y]$T`|}MN>\T|u@*S}+Y rIa~I3 P$ iX1}~ir>Q1?Z)_\~]t7h8Qd9+IB"a鉼x4\6i'Aو] ʗ掗O"3z+:%il=*mPgPI؅D-͊l}Zf{~q̟qN4T5QLHZQ'QZEgcNP6YtY-QLc88 Sl"Nd6ǡ浰* < F Y{߄eR6reZ&/ޓIrmiqL)6_@Hғ#xUc.o=$`C;f׸9o۔NvUzf ~}(cþHGQldѫՏ&8'3)`H6Эz+6N_H'>GRΦ lJ?d[^`d2Hέ~;tN`f٢X /%i2K >Yf iHJ^r$Pڌk[E^Krq ~dR9KxFk7YXB'׺ *+~.L]Zͧ 0H>nsxp t\t b3cv=BVKiY K^ ~ 3ɺEW H(DzaaWR alsagOEnA\)uvCHA=ephb5n6_&\N.1G#9xpЏN6 7-M6fs2"ˣ9@yFŭӞF[rNzIM2_Jw\xO1 UwCyH:ԛm0MO\+SmBReXuZ'>Th~n/pNk|%{O+:鰁h- z +x~wNiǽEijo$}ס^%o҈؊iuݔJ*f߱e(ѭ s%ū0۵B]eSG$>H)y1 |Z6s&q-%/J{Vb_$#m}E<7Dhǜ{(#x kЀe8z^%G!2)8,t[Mcs{|i% Og m[O]7ÿLm,~ǜvM;o_E?xX sG,EAmCy1( GrI\#7 lkJ824Jl,<=c w)'ڙjyɀs̄T\p~[+.|dĖ]Ҿ."{ޠ6.2`ܽ駨.Oh*9G:i9_䪁Nmy$=9۽G*K-uS ϡlwƱ)R{*ct TaD`aa*l1԰jZ:"@aCþ)C{SukXSꍏ;VH4k 64:h_^x,C aZW!\}'Pߙ-`IhC|>$a9Zdi.֫3 ՚W;;Ueaqɟk&-[p H m}IT KW/ZM2v5 M~lȦ{! F\obq(1gM?ZU좨\]ve[<<[N {lgnu%<2qQ\ȩy߭S` 9NlA9bzx!1(hDʬJ2.l E @Ih_k 0OBߛ٬ Li7x=#Kv0 =)Hs#92wU!o.eqI6/&&.>Y wy ,_>ˤ }r;e|1O?Zeg=i-|/5'PdTمi)%J˾agZȧ_\RR"xԄ(gyxq+.Vӷy`h*^>WB[y)+\ 35YAp(дJ47HPۻpC ^46R&K8*6Pə?ѩVl/[Y&eTw? ϙn 2w=dLdb0ߦХxrjm[};;of#5oCCǁIPҪݨX}"°A8>!H3IUi[b1f3(X. hCˍ;3+;6aL{=p-3I 7EL9WpJJdtrz$+)2g*|"0[t Oi螈\`k@7:72geI_;$ډR5rpK<);ON  Iӻ &\%s>B0ʳRw~_ QVP∪>DjchGY5%~7{ܹKJ$4Mȑ%/o;. Hߥf4j%O}.N|o׬inM|/`Y #6. ʘU KV`oea0u3T<`Ң^|{@~(R4߄]n+7 }swMu w M|:"^Iz8r '{V̅uRf,h82%(v 8d}Umu$D%h`u$Lc;ʛSUEL$_^-ÔUg29wܡ~^^4x0y#Rgl jd۪NfI& ڙ|kyfAm RxW %+1yAus;X>Xk@5yQ^M0?3Vr\T')y@d쥎EYP FñզMQV'ĬwBP")2~`(IKzd; L}p{6N^3xGlBAweQ Q(bk:fdl=初hZHfzbݪџ 5?N|Ҁ Tˁ@At( w!H7lz&.<\%kW8BheW'"׻.(1!eʬ=>a\$C(i!ĺdGA-2>RgH<8PZsA,y'N둘;%Q 0e?SꓡyHEH?EKV"XϕR#f4F 0UH*#?=`mVlMp@At|3D!F +95eCv;u1Swٙ]a*u0]Xow~5I{c7bٯFlץ-S IAW):F-̸?Qr,+f4lWj+j'7Mka}Xl0MsP:\zS݂\+`u?aGOOM5yG!hR0u₦ֺ#GTJ SXr?-VTuװ <9$0տ xʣ4z78Vŝ~#bϺ7H%eT}i ,39"+d`3gCd&{iD$Yt}CY&P1#]. 3+m@ ےs5:fu'*]/`'yi+ޫH2 4 lU~aP~,Co,׉Up/p$<SJh!3s*(7ur""6Զ'v%@=/]ыrοmm-)' _5Z8n?6SVNg=1by˫յVK'"7XoLIjI=#@/jzw"9~3=e86-Ys#Ipw`n ׊kf*S~Ÿ`~H+=\'Ԣ _p#{wFl֪#x+%0v8Bh9Y6l\)c#!#K+*S)*"M*.=;/ &rhHDK BFޢ:ıO+"iƕ )Ti]4KIcR/^C&D<Gr!\úJ#j y`ܴMkؤLesL"6џ)#E)5@)pgUc簫FLU5Uie qw3,%{n-({c!F_>bqm7J0XZq&@%0-6PRLs.6BqJ 1݇ DLp%eM>V ==QmM\ƀO1)_AB`lF NjKDZ&(4Zh\skS0)f(3:X;w tB?qW iW/qhI{Sq{,(:3ރU;tAK͵]ێypNj݆ίB<~l0+az۞D3PLa2UuXχ`3l~;dgϛfI ]x?a\k˒Rk7~q4*4259,]y<0bOeɿ6j{+{6SE·."OF^R1v^e4ƅ(}V%@BϠqfj(X!{+ۈ>u^ϙ¬+򴕪 qN٥ Nb_TС2`G}"z̚49"IV9t ##Aݞߧq9RߟabeY(Ynʎ5 Kn[^T1yt&py|{Mu=uz0 fyJ: {Ep'7_ \5Ȩ2f^#iw|ި=* UӎH$~fg2R;o+xP!^>-W;")܉y /"QN:jc,GN>ҁ["xD<*Y ;\,(B6=}_ Ҙ]{gXQ)d BfJOذOP߷7"E";F:+ʙ3Zi,[Z 좋󱮸*<\8shs6Bc,,<;22E֘ 35 $w2U"AK5ħaA, ]0~n~ʦ5)Z\JDpf"s"RJzl~R%.lM kwcRa<؂ˊU$O#/nյQ@-W *q\x}#us4bX%;[*g.$auwy}SYjY ZT T'wQP!{=U;\ ϊiܿĀ6=tOE;Zy0"]|\tm2y"#ç1[U!ʆNPH}Moc*V=އ9j;Ê/ٰ B+D91{Fϔ3,1Bo.c5^vERPo]+ O"XPrO-oZ+ 2ip~~pX2}W?f!'տ5]|eH O2c@x5 T5!1Vˤd ]`4A;M%] ՍGC/7 6R/- \8w !LG Ӆ0MCtX\+qj\]Q s@&G'Cf$PAY.GV(YS[4>_8MŠۃNNBI0?o*[6Q-ЉhK;v2ѝ>=Q8ZʓA(qR@#C .7' G]˶[O筭{LqT-v(pCج` DODDΥt1i!|;]@-R*OSÈX|8"WsE>f z!rQɓgva2]]sؾ9áĎf'p|$1cT?q^FF0.7ERmɅ =%T#:Ƿ*_b*J_LQ%QA{Yfx}ol[K9 KF7,=))+s,le"̽XB'_Pf23BIau˩+uǣJa(í6df+0ra Hpu+%Vqu rgjooJ7s&׼=2)i\UO_/1r4n>3 Cs*M}M@O 8r@(]-WU񟬣gI̙2we즊V(=ҳ@Ypd|5y(A@b0= ξ2}^jJ0v[M|"g*XϩB-9@0%  xNl1 Gsb>X"I)=0h0&WP8>_';Ŋ=@Gib(XQBtq;o1MbXn>^D#.D)%ߔm3]L5sJ'KZ%=WJCcWvbkFׯn?ld.4@6-`J]kR=c3OLz%+Pa)Oc_6M3KAj_bgU;HVG^z0RXBE/={1DSǯCo2 >6RHn,Ӈ5dׅ.ֱKwu;GN+L}-hUR>"yuVAs5\x%5aCۉh Od^)ѹ6~p ͯ|7\!W]I`b+H0vR| VM}Ùp?@_"/;+Ja1' -/?\b+c;Ͻ |ͲCS2)4WIo3CG hL{!!Ű }M7Xi}'*k{+P)L>?ʼi8$dQ1(4r:փCJ6~dTP:-%;k-CÍ {j6/t0H=Ft K=4~oGyjgz({~FF*[wKG1kд( @<$j&ubTìH5fIقB=Cj`$8ۘNj Y1 iPTXi;v-zbI7Xqrtf8}|mo|.<]05H%/|RmҰa]Pեѹij>nEhfFb>wDRqJ7IN7t _Gw3Z(ڬٗ I[| }g WiYPw.J 츜  g>dLjo@؝CмG ʎ{k,mL)>$ȾTSO쪘/`^cեJPIݸ]O,"KGNWZO+IgMݣ*6"-:kăQTV߲ F\{qHU6׍: RO;SHA6YQ0,.l$'Ce\~ɐoSnӽX+hf39-QR d3r+QyA4j%01W7/* V_λ߭U4 K0Jt9ъ&`-v}3MYJ*&ǘ͎m[&Ř'wJ(})ӁԿA5ĻI6 >nΉcN#ZM?y%yDug~Y L0 A@asN\yZhA_zvׄrf3sFEKDaB] bN]Sa>濹 &A4 PN;%ޔDFϢtjc4~y4.\F# !BZPl r7dOa oʗ:rʹ U2ΏWE&TeVQ Ԕ_` C+^8g}'= l ?;UŚB)f;!T-PH\z#E 5 ǬDrdpkD$c(x'`=(U)Z*ym8DVʦ5B ۑG-mCD,eHU6y'e&X᠜/vvF/D0Bw}]߇hq-H45aYs?geW:`;̷#e;<]+f.(hƈ}=7.Tmp2+/kƗmsVA6m9|ހIlЎeFx.:tCnF4]ŚY}`WX:D_[8Z=cx aL>(׈oZ`z} R')3Ђb2ӊ"=Ck.>QjmD.[WU_.DKJ$r1fQq.1Zoβpך3cˏDf?R1;҇~fˊɆ 6C6N39a4|πٞeXV~ua{.$|7 " gmDd}8$&{gh' lyOW=4Vk46}.|ǯ2 O\Hu[ӥk:a|G yjZLtT .62]+ i|YQS~[T^#ͲAӫ VCz us>{>=Js914!^*i )x|&M <,*<(^Zh2g-D ]tQhtj+xot[[hdWnz *9Ȋs {A׬Ն%x?= 'CWf$Iw}L|m,g"+`,*9 TY|Iޢ,c bh h P<7v@@O|sh0 EZjZBOÞM N.FzL)[=,#_gհ|yL rYJd8׼H)W)xHY#?˯f'[Pz s׭gV+](ME.;FFLF%ǖ(\oTiթx)Β);[ոAӽseAMDW+v?9K`5Ƅ*2f%AI(|h+ ex3pFg]eW9o|S) 6n{a-ڨ8$ %ڻnɟfPDW;YOӝ'h!`ԕ8ne B I>;]ftUUCk` RZj[rJkr*:U;4Q){X%[5)XʼnVAfD.bgUe4/ u>ުa>_LmbRK%>#a (n8ث?6JKivO25ɝydкsc!r;;jA^RS3u`pSˣn6 !`h匱͢/|: <`v\zqFLwݓ xP;b:tw'cM֍1ȍ7,z"cA7k<#|cwk]!7qZ2="n(nRlowfѴpe xdd斔8+_tcq'1"\ي}E(cE#Q'Թ.he~ۉ ONj&oLq1%tLϦ~via͆IQk'rOح5CGv8O)^O4@Z4 qɯi-]!ni59ac(:;lz*6- EfXZԩp^ֽEgiL=]z 8VXRe\RҮk 0 &Hdԥ/vB)+ ڊQ/| V;pY_O Yq)MYN*$Z2##wq 0lEЈ|N.{JnV<ୟ8KHRa;H.%Bi Ñp%_d)@.Z!]ZHHS'wDb]thop$dٿ*ؠQt(#(⢨|[Sm \ 1:MidΞHxtD$?nAy5+*çB%,-1C3d+#1"B4u+bR;/?U4s59wvEGÞ eGڢƗa[B>@B^ӞcֹƵݾ] PK^=9.ϓETKqq(=8baDtZqhX5L[jd'Asgr`0OJ]B ]kK?hB*\MkoD! xp lm3KR!ý$% ۈEAΆ=WS(D2sFP؋bȾOmyH(uJ)\T;]Ƹ14-ܷŐ-i{R=>o:ho|Ү>Y]WFEhLGPT,(Rwx0p^ i[nK7b\ Hmj40pCț8Z`2?F X <=0P@`U<VѪ ^j%YJo*#)oEXطKA/}_pVӡ+sH3v:ewsJ(]M[RSo$ľj_BluJ>6g!N>kFE9{63v}BA<'ڨA4B&gb@9ev:\o~O6 )Fi+\46~ZԨe?šW!n;5*ЦL׷P(8h~GzsuعkH|(˅TAעgb2%mַ7HXpDpll_v2K_8"$_W>?F& k 3k d5NQ4U){+eMt9J#xoQ?neO`WM5w}!u4T4F;aBLΫ/gSyRfRu"c#qґ4ʜuΟbpGA::WvэM=n=2@6S9iӭL$B iO c C˒XtT]Q]$+"Q@Q,Zha[42>9%zUֹ=@VR^^O't"lTvox}  1CD3Ȣ6ZYg~u4磵N祽6 6c0(Ay3#+%e8@+e_"!UD50b6iZކF榢,E.~b92Ng@yÃ-<&+ϵaRB뭤.@[e܏: اޖǹ_oEX(b ߊTPkeCZqk獌nA@hMj-p~#!Тv=N&14y&2̂ĴۦDު͐APbK`Y,䘵InEi iS ,E }e{ Y TRXޔ]6 t?*Gr4#F]ٮ**+QD`[](<_npC I\n `\uSK ]F,S@mʗ-ƿ> u)!̋ ʼ~k&P"LuyD3`Tt՛[%Fp[d0Lګx;nZ\DB+a<:S%R0x +f^ \*sF=U=:U)# '=BVA[! :fvKSZFєSuD93.N=Jq\!ď `s'F5 pHv(nJ_~}*YYV6UMB `?{R7!bܳv FW ݳ!M0OUljre示As\vLai<ESfi\OֶW;oV/xmt0&ܥYUUd՜ƃAB*'w(4OWL=EL7W/3n4]{1}T,q~"͂~/?81m\MW5W+Aٰ '7lPtV18JsHdy;+`~K;"ۨT{…+]Ъ0/Htq^S"t_bB+32o.XٹV;#lb>zBHgUՍ1/aUtC%8kߊ6w5,RE=؞ SvSPL ][8qaLIB&A].oUD5l9ǦqqZdEq/IվL/& ݞh5~݉ow'_S% #wBoNj|GvC`U,jZSC.N̺F6ښAtA<:2/'g7%cKLuT{|XK)%/lH tYV>+A)c 3[Pnզ94zsXDmIw2r)E$(qp M*27x{h7=uVR,3QCd3νFV"LB}T5]8M `GQ#y'2|1y[3ܞҀ [< <M,/BK- <@^/<.7]Hsh!K;wI\>S0y-G]iŎGg $A41!;!>ݰL{)GI>hYwwd"үybme3ccF]9|tqi9)ET@ks03L+ _$ђAYǫx`:p;R0 Dz*}T ^B23_uDȞ)'w(!0 f`uKzwvS>H2+=z΄'8YwQ)r4#Hc2%$gcњZ_2| 1߹w#@llM^o^w,>('|>@5S]FtgQ.$֬U-K xODžrMaq`k"J{'ZN@`<L}/89Rx\ÍOdJdh ˺}ʗ؜@̇6'@eeo*&mt}kl:VQ6%[g{hEVs9e%▵ QhCd G9Xpn4 .ς=ux3NWOgRtf@Э8 *h9K,֩Ok akn 'c t=LRƃOHM.>똨Nm PV)Ơ =t5Q DzX÷IO8gBFn`Hh Swd8Scr||oC~~ɇֆYU/R `2b,`#'0ߏc uaEem*'hyRmLt(@'X'<=Ɛ5GHDǘ;od vskZVv.@"nQ,rC JfjѤKTG>٘e9t(r/2: *lCen?,i=_^XΒE3R[v~ɇHk/1]" -$#cHUERiYG/b b~y 1`ͥ'-aWRK떬sڕd S.gy8ϧj$s#~ЍTÞ ҷKtć l\"v⚟ @z Gm V>WUHJIr2ǂb$YL%򲍅Z4h Ad FJ;, (܋UMa-K%SPqX nxL=ˇ,cDEgr"1oQ^dU-s=}1zj9@bH7aM\P\;Sٽ(X%#!jmIiv~mΏ5:6xi+.`AZŪ jׇC;ۍMu(LCҭ^pX[C3p8pFnuCxyg Ώ匣*[0A84ٽ$'Ϝ [T1l_(/6YŹẺ|X6^6mG\R뱱0~RvBnژuI :}w9m=whI5z>ph)C%rcKb< /[e"- O`dsax:G7G+;+o3 F}|+D/V[ɂ8 -iӡS;!dB/ABԥ\wb[DQexlev]{y]WeȊJc]lQ1'Tڗl[xy'sBMLlˍwet'm^+} tS $4{>nME†MSEZTTTƫt_|D?:xwt!3+N t7pO39F2zv1'S9oC1 x]~;l KE`XW|\ /lŇnsi%aQrڇ-75QN'w=pID47 %45h\I5_RNC2Rh ܗXcH?Ai;TG<eM ,}-l?ѭ* ηcyy2DG}Ի~>qb[ZiGaϾ9*I@l@DѼԌάh<8y4,#{ۙ+Yè8|L P#$ ;b0nFجQ;Z-%qA-L|0 (՛;^c=%k?ckn6T^g|t:kmMړ ?C;oUڧN®Tiܹ7զSF>koÖU߰G("w Amaf BQଙcPmxȦ;>Iwh}1x'" "r@~߷/Z簀}+?f1 ( }lZM,QsLa69ɟm B=qLb1u #IWNVɏNTɘ.`=&^blVQ_P#l4|L+I)-nrQ`2+ш%BY^ӢծL8 xoF.U%o G mb}lPyNF_!4 om&jل9 ]C`hwfڍ>lzJ~G[{<:4`".fAVGQN HTs h00auMK8Z6";*R@Z0{_fG,w,뇻'B+q6&Z"OhہLBc)NI>)_BC˘j^Ð,0Q|d,Sux X$ЫD*8`\+uL:8hC @4t!u'IJ4*.!KA}i{pɣ<mMKds>.GSq++IW`Pjj4/s6I#@Ub63^lP琯PߠVTJ]\BR8dv9N58nT xzTR!,B wUf2~:8(vn8*e!༅ c%v' XЦe=#MR& }%"m6fZpoRmaZ슆TėԚj{\‰Rm蝴E@ tUÚ.\inx/,=G:&UP&vlɝBǸ C/|J#[G F^Ѳb {v`%^g) Rr#e,Ew ɷ):bIQ4P_+QO8rM҆ha.vz[Wލɫ`T3`'7wLLp!)$DPkEO|TsxgܴC -sDZʤ{>Jcl˱$`OyBU>oa>T9sPdFI~;{Dpf]V|^W(Ĺd Éw7u^%f$,0)<*?<\X? u]u?_Ҋ/]@J~j> Qޢ֬DEd(i&1X'-yAR9G|yP`l*&c)J8 %8%k9?sM߀ .h4 zxyr]AkZ6qUue9"#1em+=Le.(]Jrac4`lM:p.>0JJuṝx]y7˔ kw!qi<٨5PQ`X;l؜AnD' S|z=Jc^pm+zX'L4@Spxⶤj+dIO]Ӭ.tCU? p*!{aN#V4ع\V ٙ!v|Tă\i{ә鴆:6Gq؝[NCJ6+|0ֵCɎTBȪF_Ӆ<ǶQ-4t1tU}PSlT6Q(ӧdÙzgCi,ʿ:g?՚n]2%}f,DS=&]0^K/eu_aw ! .2*G9bOy#4Д]NF2ġ?>]gO}6[G0B|+ A[*JOg8[4KKH4DI]~acSkw45 WܒwbRlVIQ*?"}EN;~89W\d'eӾ_/[}ZqS4mY\P |/A]6}|e*mC,Q/q: LHtp( 4d HjW7\q0tnF++5Y07ij]q\nY8DT_&ɟ^?z0L2/]e(mش 馉#]ضP:xL4%"Q}%K>UpqT4M|vaoj?{NLPxu\pSF3U :X)KdjYzm܉5n31-Mk b{!]^lhBhYIAȃhDMYKx9tt\ ``rdy[#H9w^anQ&ߣnsӄ]O:C%|v8/-S! pr%)pgf)DI֌PI=-9qp=TYaF$0c9umv9}5*^~Yդm\{ג-^Л4=O 6eeNBb ;*!#g^7iiF^?}C(_XH8| OrTnM[-"S</uF^^lf2SwU9`\lHmjˏҰL55y:`C p;/'?շQ#P@ R-y}MM}__zoUh*n$")xX&hA Ҵvr'[CBO,$#L~uֈ>l јM *a̶9^6fY^S42NL`kwˏʩ m`U:Ӫ>q8.< ~DL|>ډMxPEO@l1xoeA9ST <s+ HC< m,"༆>$+{LX#L1|s*ʆŅОcԩ hZ-.d1@ td< L!'zjm(HJއKZK#DaDN(q x(oM*Oz0hhm_`L:eO*@,䢴p\4#= xJo:4f.FFmꈏM {slQ'+JLJhGVk<1;¡ꎊZ0nBM Ij+ T$bADK^߼I'97b}J4|bR:MTJY@Y:Z2yM]z FKˆ8zt'J+O$ `G)(԰4VL ͠-6&eVea!H!dGa [ !R&0Ζ}dQQ6v!m ֌JM0C)m"|"&#=T6{]l%6-1_.5\#yB4؉˻q=anBiUaW'lBdœL-jRXNN wՎfMvc![yT2ߛajBJr#DC?@p>JXVsdt&O֟ s32&e01Ϧw!=;Di $y4h,7R5WO\KLf>$ՄOQT8͡X",5 p'^aU+ ` 6d#FUI^ 2NI"s)fxD[ܬ:߳HvC >ˇ&S|8h&H@Z\If6nR >"ro=T#daxԋ?Q6+9j bȣ$7?8s` P8#a<'AM[\9*kisU108Hbr YoYc/ƽ.;[CU>BQ^#wr[+)x>b*M&մwKX ~Xg6yC\.7tUc.@c X_oAD- nƞ(lوf'10&wϠkBms|1n?m~sr/ X+$=)~"e2/ x79 5;k:3WJMkF=LAEc v a+FdpfQ3RF&w< Zչ#$UnRzs<`0ѫ7?>u`Ƅ,UkJe3iA^QP?u k Zps/(ev|1ɿ6Ҵt%^1x(?a`t!ttxH 㾇G-nm xFҌB6$7"y|C.EZ-]Y mQ?>ڇGG%d2St.Y]LNW~@{.:V`70-"R]37Y%"O gQ@Pq}1CuHG \.'2T7k\v41bkN"9(JCӶԮP!H! k=L t6!-(vtm&T2J)RS/Xe*ds\Wd4@BwyAv*(X-S2OD0\ ~2F=sf lw9Lբ6W^OU;4k4U͗ȼ3«T\*{_aChc,F,fTڜ.ZIu9_Bd!C 4{,vޡoc VqΆhj gyh6w^+j:W{N ,/9|zD:6|+SB]{tI4ֽ`lD,13輟9ߊ-"=%Rz$0&0s:>F-C ճ; _c)sˀ?vH *>/!Z I򺐎73Hs*Co-w+5r~!mfBH=@QQ*0JB囗TOL1V&z\r4, J@ePZ l˅%U_ ajydJ@a>(r+̕B#涉U1 YkjhB!m}ܽ צ)(Sa8K\xG{g08ͽؘFf%b\]?7hu[}BxY4v!6<%=ifPGn6]$`/y%@Oz߲04U&ȁ1k1y0iIXN )/\ S23nϋe29"/Fpabi-/rZLLVWiiom _e&lǩhϩPa 1>*Y[ 2AuD}.uJ{G(רq]WA/E}i}>қc:L#o I5`yLItEgnuUxAR{FhGG[M+U>`{"{ -yy;&krSQWCR0sDžF .ݶEuH;- IZ*T!̩K;ﱫW7W,#zl,yگ}Wv) Y>{ކ!+Ο}M:5] <30ڧo'tRd<6Ӆ 2N Zs{x/Wx gxn"0 cRܕ~)B[Y95c:5$ 18i/B UgoX(NPsJϮ 4;SLa!p?(Cr;R oW(0x3FqlJbalKl& 3!j~lHE9t DžO:G9>\b5m/GX^a' @z5s?EB KP9)hk€l@0b!GRD}R Q>]WV.0 FdS̗ՅFTzUye& Tf+ʱ'G {DW9dcIcUR,An* Th5o3NYX0ܡ//p/pCBF}C醪1^̰ɖbb+w__ȇl+׈ 4T %J"8/nF=m_i\hP9}8+ޤ,#@ssp[~"_.0n w2 { ;4f"I6 y}Yp"T@jLц1AߒU*MG!p4uнK(aT<>N&^H"ZwP6īO8P{XG&_78[|r k+-m뮋T;0QZ3~V59 J77UQ|D}/s#f#dQGL < ҅^1DFSU~լG.ܠ3֨".\=?ilG)NNSʳ* ;[)d -U&Q{cb"o81w9ܧhr e4GxHk= ;_0K٧H/^]x v8N=/._dO2A5W>of+6'D?4dk0ц΄x9LM[ =j/u)KP}~"Z?x@DM٭a@v)4kXVjjVեnq&s"ɐ6Vv Q@DkFFn< i_L,ũ&2n2Wm z#Ni ɠd.oԕҕWCV]Bd "y  ojtYLM,68뼸z Q{'`t{?H[,X̸\jq+{ *2øO?P~pVxC= X +oW̪mPB|EҏySw3bgZ)8CE;w]!oYh%=zظ?0VmHq-GOZ!>T֮+pӖG"eq%MX>DD Eթ'^PY%B8Jv=WxAJ%'$ C#2tw'K>b_{C?RbJfЌ7JSroMy19j,#b'Fƿ,oP3cQQ9o`C#V|Z$teƴ 4"2}zs&x^I5w籲"R9jGTOLȸ ( 6ܐ~hg Ĩ~)hRt_Ïo?4 SDA k x.Pn&QX'u36V{|Yq(4Mw yaɈ7viUaqֲ_f/|`u I;Q)# `,l ۖ ~ӬEwW.ܰ0{BүQ.Gغ6:%P١ 8uo/^SG!oFtx~ `S!83q49˸7DD$$Ѩ'sP:tx0 #E7M"P\3Oř?IDw5@-뀧9٫]Ƥw{F C`MH,RW2w@FhSpx xdf' #07:&eO ȀK~B8qDƖ֫2FĔF} >d(=:$*7J^.TLoU c僒볒:bz|tPrQOk V|u" sēonHP٦wqy&$:Doh4?kІ*Fg`^xpצĶ*C'uPh‘%'1p6|IC7c\pn#Br" s*2/#1ULnPNwF=pσҟҧPG8txz SNI]U7;ڿo~f-*5G 2 S[;2zxl9<_ApM?U;Y[I_ 3r gsB|MMq zbK4_dBZ-5 )bq{t{ldpQVqyV"^<{L9rEԽ^\۔G( son4.s{#<96͐'lyĞ+'M΋2rrE޺H}T,?PN,-B#҈ᑅ Kro߷&Q@2*wdr+ #قYx4O†T K (lYO(yscX Bŧ.[4aYyB煗`aV emndrLƵ1|ማ AW5=;U<{U)4O cp}UqQ@_QeZ!ϢuoD^*| O'tq!RJ8U0u2R7|oYt*o;r7[*ٳGSʥwu ?oGFau|Yrn&P,8?OT} 'idT鈭j/D!׺oAhn+CbMĨmYVFw7F}__arwk5=-!KPXD԰&&R|A!I@+Hq a]y&Gj]nAyP$NUz$qϣ%s&e@>% mHxm6z!Vf)A`i$u?nSZMWĉdLH$INbޮBuގִTrz7zr6]n e +g{5FD|-4xY '-[`ofӎi^@m' #ij3âԄwO u:%G{ɦvVQ0]u:5VM9 $/ f}fIS$0.xc%g8@T`T ,ͯ[OUsjd@Tb3KEG2(.#bpMhWn7~E {(v¤Z Zw#{'2cĦ}5\Qxn@1Ɍ za".*[y~HP^8COAb(siqR#>lIn$jJ|>:I౵~acU =̲M8M!; H/ PeHWA{8U7ܮl;5$)=BxUԚ=0U ІSBq ˂/U`\3вM{;κ]>2@}p@}Ѫv  JdtQLUC:9_[ϜnDg(M?aY.}/x X+ʀİB^P^zGR ̎/E:1ub9:.̇=%TIU:?M"fȓ^.d bB|j+6>P56hV rߗ%JQD^S4E#'c_:H .ϋ9'נ]Se:ZoܳȂzWUH'i v-NEfbt1+p/!z9!kռ P^bulٻ{+tökQZωNl@Ce UM!h0i~M gx4VD3幄jlcj*[/5%2{'*< W,ؓuЎ8A5F5z g`X-I2;Rjԣ:)6gsP`OwnP@;os^:^CYYoXljˇ,[- Q[)Y#^wޑNKF:`M.%ƋE! c7wK|f $u2t4;&#l/d}̲&_S%zm}x: N-N4'ɸ<&HqhSf-׀J:ހ4LKɚ^R$;E!TXNle$_}_ɍ]S[\Er釯m0%]BxԀ)aS 2֡: q[D[Z^2"sf 3 eAnǭYwX׬ ))U0U xa^Р5ñWI\i0;!1ڣȣ:lPPi[S=r$O -ػS 2>f@ik_\y|; l eߊXXV&&}"YhvPa=nv f*0f/ZkTn5aClBZqWK<J1DZ0i įbR ?e&^!jw)O7f. jJC^qz O( si;8^C#*Q%:h<ɤ,/Jc'Iݟ?'pO9Ar'\qli5:XzSr!1CXGϬ RHɒ3c&D o1_eVkGE=0zog\lW-x_BV39WǠ_˜IBTfᅟ_*ˌG:ߣ\JlEJ"۟Q;&*3!H!f0V 1=wvEx]A< ".c_?; #3V!<&GìG>dr&X 7o ?Q%`e>BYg'16'o"@E,B`ơbs`ߛCvjV*(Q65ߚat!By%2}]"1OJzC!]xIoNa9rS<#o4-*}F) #l ]5[sb|!Z~HSV;܈hF1ҡ'I뜔J߯rF>Vɦ;X.O'=>(M/E fIscE[1hvsEW~vȌ-JeyײﮦDD}2zUü(z4iӝ M bɜ` t~F\xC35\VSGl beT0ؼ@FD@*tb:/0sYߊ,5RHMOqPE4d޲ַ;"M;ll^x!in~n_D xHtE$9/,Y͡xU-"#6{ZT*u^RD6Uo+%3} Kl06M xHm!B/Hl+Or4/JQ9nR3j!EMo$ ]dVzqY$D 9h?.PJ|;ޱ0EvnR!xhM BRO/5B8+w3w J̔{>/"ـFǐ'Egנ줕1^ aũoN4,wȫn|߿kr a on 7;C^eD !~ҕڹ0k 23h>㽙[s*@8qֳ-2&;:>@T֤$3= {joE c-"T2˖3ׂڭueE)8/3B'ZhR/soݕA^uvG4|(nڳFJp$ióuAu/IZOY,wb6?6WN~-7[?^726 6]˘IH0_?4,ɿСy1L55]z,<~"`"K<"wVPi[J 9ѿ+Ўl-0 '5|?|bXMhD厲"ݷǕ9Zml6RPp{T9W?#١dHhgi!q@>D{] @rTTmۈAWoX#bH_Ds"??t'aK}ύbrY`ͦ`^d0 ,1L&2{4cP7a#>vְ4m&x>I/*O1x:|f桀hRsQNp=WbIԛ\RZ,,<HiucٳO-q~(L ԑD{d sLo񣝮P ebe 9^Vt3zQ" cj(ls+掯n4R70ǂE=.huU{t%EQoLڃQ2_Vaݱ?[zJ(XؙVK+^jE/> M?,Rif@bk Ӽg!LW C\qb[P读Jg&oX('P!~ Rszf^~@В{A`ӷ·"p+KL^ S{^@!]jPM왼h)$/g1Tz{AUd.)֗SM.\ =DS!eKy1|?ӣ88jٲ{48TRJe=Bd[ij9p2'I_ kzA'ߚt۳a2>hIGOzYb\MEI6tx_MY>'SKu>q|MC%Q3/+v εM[x܊D mWFϏH SEN!ф^7TQ*hlGOB+[֤eT%9sx#!ɵl:wߦcGh:'wծ_>4˨`u7NB/XXCGiȎXl3P9SF8iabW$Wo*^۬^<̒'T1{ZI~%BEW?ۤhUjQq7.ZoVlPXSE8񩂐0_ F!%ջO]bcs޲ioY@>5.`R4+$uEh) ;Z)GvZ,jp3<ȠylU Q|8Οmm8bp?cs~/v=d@jTn1m0MuaE6ٴ=A^Wi~h_`+}HuD*1h4}e{7"#i-Kk V/ᐟsY.\}z:VC~Զbqx">|pVirPB((8u^1Zz"cע$ *2$kk7GQnK)-ƮpJ9 (MG߶zYN3~UdVr?ǑVٍ#**l*"^ί ŻeEesӕYm;-+gXGʣ%,oڴyRD =x*嫧^sXHR;Pm[6Ωٰ|&XXJ9Cmn~VkP3ڴ,N4+=u9|]ht=x3G9qb ~k ;%]K ?4{0KH]kU |d%g% ~9ޞ4DfTݕ;">쌮Ӓݯu7!AۡRB8FtwgRBHQ/)?AE^f( :,mY0}\Cbx '=[5y tb A}\5,G;`iHR~e}m*ƴ(`gvZ˪;'G cȊf!mQ-ī+DM [|7gUΨ>?s7^^~UKܕgֳ^ Ą׼dq. Ì;EyVX%]mf`"ߘ닺ZGmO ѥe_3.o AhsB\{y1Xm5Z;;t3|هM6tu1M!#y/Z027ǵ*"FsIL}C2X=F@N%C0п [vhyTcѠ=0tBJY؆E2Ѫ-L;^Lêd5֐Ge?I }; lzs#3'aRՈ<{x×|كgYw,"T^`+0{K`rH 'iZ^\0/,{i\|Ǵb%T6I6[gLZq[r{ ^K qI o1JӢc\z?fAr6#!|Fbqc ǿd,KC]-cϽMCй4Q:TEPb ]R;̛3>h%n3S#&\U )'b*@.Α\B?p٥Np^2*(f [~ [HFS!{h-$r~?8~ g:[ _7Lfbzrb餟W8Wkjwq< 8h-_Nx: ;>fFX#Z7*GyWx``AV~ݦt<}],>}4*'o6V=ɇ? ocpzx'JT=_ٷ%\.Nh9.64CiLm`nȝp^1 ^x|WOꦍ{.s4d4/]:>=ݾ3Nm=!BOmassQ,@`H| `|w)I{+'9 O"O],v፾4Jecjzo!|!{bLRxIﰲ1Mx 糬4}so 2:Ciѡ{x@as}wD!D_5cHI[(oG>!kRj+y6rX0RTuyZ%۩vX::~7o3^A;H=v;z:G B0 QPP Nv!V,J X"% UC9Փ˪r)vN[!]6/^u;~KozUB1UGVFfΊ;6A2b!;IrrZΟjxRhdF?OBb.q0-NWa~3Q a?f󦪥0&x,*2izE7闏¥Z 9~7 f6cZF99ch9ldnd,\˘u$3$I`Bo$V~t EH:t{$P4WNuٸD3@SF\ 3S Z!=;ݾNط+)Гdd98n-J5LQL'X?WʲznkS&K= F5Vu ǒ4yƷOf~1UkuH]jAO(H5D߁ e3(mW|e9Gs{E6ުӌ7уeo_Դ/Eoéɐ?L7ZZ善놆9 =@U]]@-t0l%.q"b1|w a;Jϳ󠯒AzRTdn;Sn( @1r * ArY%aq=Wj3">4M/ [v!2o}="#E 7釲'1rQ]qdۅȇ#Ҵ.ոN 呀9ĻѨO+M: sHN! Lsj_Mڦ8&$|'M6cxd][PD.b \mބ'W1Aƙլ%Re"PdZ貳WRL1!ޗE04Gm֬9LH sm ff ~$nbL+@YA2°# 166ٗae a m]_X#n)4)PDOi H¤ ;Uv5H$Frz]6(!5UiuܶwY2LVN9U:#stQ,+ 7v5n:܌#?(Eu)@q_ !4,To6$b򸚦yX5V,̓,Sc@DUEsڿaI[nJxOkl,s|oUuz 8`L .`Ս&ߴxSl<2FzlطYFh'J 紺:Xli!.MX 3 4;5V~ʩП]  [)e"̅ej$NY'ݦܣijJ~؝Ƀ*{ư-̭alu\d&RwX*O*X GvÇe{F}Tfj?ƼnI.mL^cYjDGN&ޜ~{QR+R wkR' Vv׾dY`4~0~[D" a.76rY~hD2E܉HDti8 ,<a\Bs̓(&s5;y@,lq{뎗67\a#^4E~>-ַq0 w.,lDhpϜEc"UҘ;Z~z~$l{p!.Gz6|R,E HVC%8'zu(Wz ~>N6v?KdT7Ak;P ~)N3>'>HNgoҁr=!2Q+R2":;M++MzzVsu[W J dqXhmL4!@0dWq ccH6CclwHH*EFRե3\/~?< 3l.2r%"b_t9՗l[ ʰa'P)Pݝ[?|i ?\MJ2z1X_gXS5 u ̙$&d4B |눫i3[?OTnlڵLͯZ$ϸ$NM)NM ˹;p+V=OhmqqE6|Y.׆W6I!=81OS=ޱ͖`d9)Ccc"b?j-}i5)B$9D:γDRV(+akXn)Xob˺WT(+?p$@jamȣFLK;io֓@/B5^{KLKKjF׾&uîaHxNT_ue)-3QJP2e^UeabD}zC]?h6gk>!%~Bp@vݯplS2m]xds|v*ITї3;VSGG@ -*:o j,~t*9oc>旝٘R`?w~;CU_p{] ''w1'zc2mXNIIc:,Yx 8sѦ}M]ϣͫ^aAb/X5>҃7ʘRJLPeA3GDJ[p(lv{ ݘX|9%Cf(BvDv0b=:d` Ba.u}Vm&W$g<.vA҇ߢ }ŨgY=lsbN|𖛰\TjOkwOk(Ӕwk0^ه,'iCb\?Cwp `*1|SY@!k_/z-R. mr1֢ XCV)䟺24^АvQ@zKkDFm̀#KrWi2/k6ئ+ɛV ]^-VI.H3o V}-1W!aҼ4N+]@oɰvYx84__E>4Hϧ%}_ y)# 2rV9vĤKA9U,;LO=DpZcE\é_bӓLXJ :T}KQ=kܪϦ$ZPn V0TSy36?6Qt8o@)Nj3HQ6b.@F3.dԋ/q* Wsn).%\OPN't< T=Pۺ;:]AN(Fq +oV pT\Fyçs1}4-wsl` o׀(ڠ#4/i]+fVWhbm܉&v>6*m5*Xެ?@7G83,IrJDr]x~#,SΦ481{U תghbVx_ AUJ5-36 "DA>{K=+.?8pVRe([=dBKK9^ub6$E$so m[+* \ lZ4ިH8FJS+p@JV=jQTJFXFbܳn qDm G(H|CmH+Xg ^X&NTupA?֤: >ud_`"Ԣ=20dWL)^G56>XKyhLŅ,vN"J{Aj4Qc) e2p4R^I'FBږhlKq"@<hMBdzoL`*0čӀeuo@߶cxpREVͽyk~F U\ֺLFA7IQzHԢr׼^r]_N e_<_Dz׼g<54M3&zk>]ΎAsVx9zĦ=Gl_7wpEG}!WXַ0e6>gb,_5`}i`,˂rL``"$?gG>MB55(k4MJwқfպ*@as%C>њ+jr'F1TB-YD E ~8r3l&?Vo9̍FP9D?@Z<Qrte]~0fH2 77C9c̿v*cDC.DpO]z:JKbT;Xc= 3یpSc61禓B v1 5E(FV-i+F,C,6g#e[I|.bc*Zd]o;!j\D۽MMJBad^%Qi$. d*h"P>Ϥٞ_M\oeT摀ɽu[OiTl*[MlJVA~ft~ d,(sc(x/O1F(wjhV |H"K EА*~rQGp1Mjpy?s mpǍv!YE=pp=}%i횇(5hƤiRP_:梤G8\A !g9O|ׯAWR~Cw:g(p{;wX JtL:*nZ8B1̤YGo4_Y锋.,IY:ա1+čUWW7%t@x34p8gJH!;$k$Pbl0+?%w~cw{(z`w |uXYDyQ K(E_Ӛ6X3%8 ֓2nЮqa4Nkf]ǜ(S8Rkni;Xʝcz3ԓ[#C"R‚lëOuwA]Qa|Әmxjm 1QiQ/7ۥ Mퟅ% 5 .t_՛g4a}qÀsI6XTڸ9&~b.EK:":]ʗ"\$ sdZ#e쒿˗>⪸7^'̵f@=߭ª-$ qz {wW?SoK NcdlB9O q|9Q7v(e 'B1\b?j~<2n$,%/<]UoZ˨C+#TܖI:9; `ye}ɧ+o0tqsxKofCN{_wdtu {|b/}ŷ* IXn$Ӣ53O( ܂CTɪؙsEbꑽ!NO  J:\"HCV@kzMp>/z28U!871:bQ(YA)$4BH?XB@CΖxaL(<$O[JΕelhd QLI,eSWGY00QĢ gא3`w>ݨ$n rH0ZM8Zv JZPBEƒI;9NUgɟI)-J]IR"^ՒsLi Bu)64gLI^OgT%ATVp9CtfHlW?(& 4[s擢 qgcXQN:Ø~}{@xaP-(r9G7'jl2j#>/{z\.)d#&:&M"kENa.߉  WJ(dׄE 湐p7:tD❮&8첷Ę kQ纩d2ad $ӵOU(5-$ "MT߿obu;٤s+:tEzaX ۅu#iԂxN[-5Y06nL2LzȂKw=р A6-a6t"Ip_)Fe'0D!YŽ~_Ɋqnr4d2 `y) z7HH{5=<gTlQGi ./,jj2L$V.<=$jV=R cJj͐'(Io΢aQG̤,Sǹ\!v2 N@stm<ɉ΢#FMuE0 Z%4w|7~y<^`@瘦=Xw"}+_?b9z^0#ϯ^Cr["98,d+w]UӢO]7g6&xJ k] b^⎹+Aߣk@s\.>3L,ԑ&Uof'O=rjehE^LxoyZ@1e=bZ%_|r( ;S\C䣣n^5)6Y%zB'&8gZv?f䣂{qs+,46ݡ 2RCڞD@ز]Иi'(l8FΛe>ڲF0|C*=HIug6Ւ$ ,SRN;4gLQ^R<֭X ܐP,+Tլr5ѰJ*xgbD[c&ޖY#rPuC27J8Ph | :G)LU1]yx9]uKtdtwUո uSt_m%gYPVTH;]/W*߫oh%z4%xgFW:fn 'b|fFXȦc+SɪUM82^jFo7NnO`4s\r·X:ۺ -"F0KU{IiEƸJq BNOs(CvS4D %-9"B_ʈgE|tPID7/L#h: Iۤmp2/y"[db"Ey7p{D;FR,qPmO`;(L3}c#A6lwK?gGg-` 5K2ޒQi;6fJlNƣV&2C#'PB ֛dv]u{X6Vk`8iD@㇀ U@h= 7Qs8!Fd/x 0>vⳊ?ՆokbQEe2IO.PhHGL++`Qv漬>vf8F;/# U:Y_>c_s^V 0 8@@9>֠6.6lz% f/lQ n1Ks׉9Sm@b4XdZ&c?NKEIi0-\0(]ANJ(zjj*UBw+A/`V$DRF]Ov0 (wB0v _p~,xjrx|6iu!Ls9cS:B݆( ]'WS*/KO"z]S`{4ts2DL pI A$kr@ >®G824_h((l&.vco,ӰE} ,Qj::kŝ `ۏ_G~iVP2,|ʊkqPALHD>@Le|h;hAlZqZfʒtaNܟ {tߎD\c+Cߩ1=v a֮v>'$e4Ae|- b;hIcrx=drBreԼʎ]`N+jsA!9'6ZQ`[aT:ɽ,{Ƙ,W2io0Zv+UG%e|toBO7EۊW.4aISZ^n$9fRX2i<(Kt+3'e 1UHW >ugUUWt|mDoxl*_A) (J5A(f 3M`: ܧ)iwhFmV;{ˀ ,/Ȳ]$hIiJ/˨Ԩ&GNR g gWZtR-]Vg]/kڈֵ_A9HUPwv4pkuң~AFZG:5Wq: `$V׀Mֆ޴K|4щpPSM^l_K4uʼ6.?Zآn.+#ILЄ鑼Mx㱱/}J;GYZ,O!ҥ䟮hJ5f$)3}d˒rH99؛A^qotB V]QP?ˋ}≪t/kϤp/IBJ"ܓ EaB !PQb%ʦ\s~i ( mCc35KՎʥʸ8NyB]E:OI 84q-XQ|FbH 5@tؖGS̽f~94q5M4[]wdԲA}|9v4qj<:E案c gD&7K8} O֤Zrpr=dO$k\LWz\siAq @5OC|Bqʛ:D #3@,5z$AbHpA"z5&dz_؏%™+P\%Z",֫ƻ#>ǬWhLLi୆o!ncd7XiUĴU"G̝;O{ˇNb|d.ML/$XڡT R|TCI(俤tɖUIɜܓ9mUX{:JƋ6UxeCሒ JrxRF^ex+uzΜlR 'T鹶bQ֪Nl\O|(-ʪWZE%H? 8!FVAEoȮ>1TѹVW9c)YS(\/ͨ8(֓ɭ?!& fSz15+Yx p^߶zYMC-q6R|ٳk'ct H@)@_o 1G2{¯)mNI>y,3~}ccՔG\a!?sk-P 0 NBaVќ,R|@ΈGLd:/ǎHjy]OjuXebwFokenu/)#xKgǃ̊Iخ q.>#냏\:ƝQ` r:oWZkwrpwk5§|rnj&Ta.wߋ4k*AZ.։sMp?P<E86CiV^(dn2$3c-yd t:G9( (dxto y {XJԪi S<))T,3E?#+&UƢ=] wny$D:}`C(@ 'mHJk%[,W/`l`;dm굠 8ddoHW&<>@dMy~TxϿa~i1+l~τOŦ+;(t%%ç@=SGWF9g2]좟<1~_u]J;n F^}͠0r k &Sf^A6)g~H  jr]+Q*6]=["668^8LFL/%b$n (YDK[6phDpl' Cji7{(/D$GDئ*ӟ؎u"k ۙG@n +NH̬plq2jh32ĢV3LaUPʦ\#Ul b*r4 >Z>k eJnᶷ`:H`Et<`SPMy=㸂D^Ϥ+/#2 2h5u[OSomggE kٴtb%78 +~JCC y֧aNts8߂[K/c2p߯5I=4` +SXGNZ6!@1{?vYչ+Dlu{zfyO6dZsKj7RرO\H!WL1=l85^A8@ʴ%9d Yݕ+-Y;,_ e?j\lQa* %#! *zLJ 䴘 Ecx,-b/ܞI0r"|Ry(\aye4h3D%_S_ؘN|:i Geݡó`ke͢xMwz A'\6~gp.Et@pH݆Q}x1maK $BAc`kW@rD-k%M5k7s\o|e/$`u̕Ƒ* %J-ͨ/ΤU[T|?c8C=ղz;#%1" l;X,# Ա_">% oZb_U v)Aqp A?G|f4QFi_-Y;+3SC şovb9uYްǎpYMkʝq >ԑД/:[sg|ۏ, Z?ǻlbӱ_ OBD04)[b?8F`ZD.z+?ArM@J!qڙ4Kh"8'f6Yڲ -Lr1_"rd7:!ZdQHJrr@玀/*OM 5Xb(ja]ugIaoRUN5ͼ=B|Lxe`wآ{[Uwfȩ"Bۣqud0쓗h77(N'@]k [Ad]ydyIBjd@J|B?M 4+aTiz5riS~Lh=+vIَn(PǸs@K '6h(B3 #sd7_WS}OPF kB@d Ou7+ӛ|ZT-*f}w8oToghh.vjM?cVzGӖ;s&/~JA/C1| 5BTW2Fғ8͢\Q]EHr$B/CR;27^ٿ{!7m{@`_ B?W E5ɜPP$,9H# _y )8uᖯ`+*dwC<|'$J@xYhdD)&-+|ԻCы)@ ˢr #AIA׭ Nn9"g0~&k;0+32;T^XӂR;ק&CPB3~ќ)*6"/zƦ_9։kt>\FC̾-O'7 ]a2B zGt1=NA;&fCm2@C:u`Aufg.]F8:.QT*/i6dtVYa7"F욪vaL N2-Ye=c:$4Qޱ=Gչ o8.e ְ9y^.p>k1{ep%ZDf%3 V&B7̹TƟ}y Bө|pһ;ۓf!PQc# k+HxZIbh"b4m>7=Q|]3fRF\SX#LK"Q俟?iy#ZRCVܟF2k;e4/}SmŠ9l.U6:7 01veMqnt!KrnqrvlPJV| ɽqq>4W\e.>(T;`4/!8GDC0HFxy-Wk7sצ:@UG^yYs @{XxW|#Վ4l `]#BOΙ>pzU%i:"0*@[We AzyW1hfG 5?ư^DlUظuJ\`ycW> Hr@\,IǍ1NgէkL^(hpRn>/Nڟ41Թ {&' ^=dZM~+jOPGךƴ[W oӂ2n^̗a'M=8BÃu.%rZ(& qs͊UKv7}u(FbFB z=e/|kt$E@e (ovm%w Ysdn VfTvjyvvJB-'?ŝ  C)߹+*,J  9>ClZJ#)B:J~ ȈGttTI9!=¼O[ǘv?:,˺LI|XU6=Y`R֌A52R6 fML1|a^oZv=ބ5dȏ>]u^ydmSm"^+5Z~bUTQdJaSQJ_z5JC>ŏ"vt{S^a,B g[w-iXG\OIlE佴W`C:\M81Z8Bw `I*Q3t_͒l8W 8zPX+!FȂur*{ü'ۓuNLѵ:Δ̘0J?7.xZ@;(h$[pj1=HH]}' #xL/<|ޒD̒/Pc=M5g zVxWVW<5R֎.Y![1HqW4wy e 9ٴm_g#݉ .f\Hih h(Ȉ|Ӝʐ)M:h?0:LO:T,m3'qiGҿ]X2҈V6 FG|6Lt*@H:^/:*<̢/7 2[NmP6r$_:\*M}h Μz7400h@SmϢ/?r߿kQMoQ wlb OW(ؔs@]K#ch;%Np91_e ,Y3)62-[2uewv5Y\=n`6\ng2+yhVX2 3 43#M9`yDI|RRW؋h%E痏n_Sw2M)(w94K$%5/:F }d^>%ļG?2YmDT?8GKZUƗh FlJdB[N]ȾCi;jҕWxt4c, fb[7+4hfDYNC}c87'zVfdEt7x~D p2gv+K8<22sT!U'@M\$w<?)sp$KaF(XM\+~PQlD/t"syXQ6H" %7'@hT'l_E)pj:VUb7ڈNBoRU$vnw YU^O`_yĨ欼vGVh02tPZZpch9OzKIcGG(bt?53hԝz%\\zP_%0H{$G[7#ݖ(r $|?ܫĝ~#,XЦu§pMEfih7ˉpB$&b ^Zp^$[&dKy#:]/Fi%OĢ Q T 2͖+GE'x_++d́gՍUj!w!V~rgBF aQrya\D'14q7yrmuTo+VE&VUt'aVAx0U̾ AcÓGs7}u5ySU`qBA# BUG*s#v`ʯR N $t{x%7fqB@]қ09N^(aol& Qi1.1̂ n{M GjM:ENJVF RWTk"=)D%FePߥ{ҥ'gHGhbX\)"F 6; F\)o gEV;2s@=2^Aq -Ɲa[0юw蝄P-ÉІ꧱KЬaw'+?l ?6K%Q0:KУó^:KT(R 1ښ3K70nV* ƚm+#Ġ"{࢒ִM{sIqrp.`2U4Nϳ}-Aڧd|50Bߐ3 M.XTó\ tFC/5Ġ$R]Y?P ФRߐVp(lQ|ҨɵxU:kY_~^1/!il4%2p1;/XjٱAJtG qX\9)Tk ?zQ8,*X_q^p!& }acXe:TJ,C2K M  (M(P^7 W'ݳBցovpx,W8]{JpO`KfoZ?|. 'x΄^ R!Z4~W Ivhgy0b*?Ьf*HX+2TvNvXBh^*U'9Z1_EEAJB'i'ű ? bh8/'mpU񯬽g-$'LЦexWyzX,\59VULMLW''yWzu*뛲"lnIwgU&t?]Hat:NM|İh[b67{mm0kP!3&Mgxkp&! c?x}&g;sҩYda3i,8 繑wCX/6M *5l_[eV *O?^sk"wB)(ĐPWH_'֪]zHͪY(< d%FvM]8 &we9>᧒S u9[v\WXڭ8Xpa?Lڨ/j턏'p [)Oj-Uo ck1oukk#=)PO\,0:F-'YX&[܃؛y7󠾕Gr⣊)B7eN̒2WDցd zMfc[u ø@p-^7eIhC/#1ɰ}QbOg5k4WJ94e"ndJsÆB[Ke=Zk9꒦LF=|RDcW5f7i0N 8˧Q=Y"v>ȯNRqܐu[KEa3 a=-ު\?99\#jS3腄7XQG z1hh 9v-32H9/$mdA8CnύvgėQEM>͵Qrpa;7~ -.aZ_' Nv~֭˝5t?uQ\mHF.dQq"|K P|o Tl%S(= Zp= EMd!1bjGv̻҈L'JiyM'BbE]l2^ վ9yE3͞`[B im3$ihxm}* *srI+i- Je -0` CJx W?EU^/5gyhYG,fXxo&){KgLkddKW,T L`k5-|!]USx6;O,1(>Z0q$|}QxW]Vr嚧/=zvY.FxM3@#f WTniEXnò,JaiNbe[13rlf8 ғmk݆!-SZM+X:`qk8T_L2ԝ}@@zvI@K\#- ,>l?Pvj-;V_X}p]$>i;|1HK3&gf'y+a*X#acL*jBfeQjؔH~!࿁> ia6sz{A#cDaXt! ?hx\<+0"!79yκ [6ZD[Y͑zųr4MCR3(0ꅃ·<&;A igA;}?3H)UfOk\>{ʣ7 Rj-O/tMQnEGKgd¬}}{-4 u\=IgVFƢs|z%[͕w8 u6ws?%O=sLM9oYpat*YjTjwL؇oD[ՄΌtm}_΁(ejR+~Irp_Ƃ+S`۹P\ay7ߤP5GUc|』.,e /U}ɡ,Q|lNw,nH2O{C@#@/sp OFOqʽkCwIE6T5w<CUhbyS|[8@)_̦w#gf2)U,#eol`hH^ߌ5/5#s@P-3]&ҫA5g8==먳4̪'v鉦鯘xj-GC[]a!؍)LVyQ* >K}/Lw&mMQDVQia-Б{`u]ߔ?ȹk8+6j^ۅZ 8ϊ\2'C@$ <_+oqd\VJČ_ VuPzS'<45 ?d4N0xd?|+<7; +lINo FWpaj8j]dV=r1sYg5H'QA6"117ZVݺPv ^r mS\. dQAiPAR)t\,/mh8K( fdNWONF~^n`v \ s9LҒ=; S.K zv# $[.)0dke`e99CKj!_kA8^ DS3&m\ppFR hrNI2[ 2cGβ"'Sn'6ki"\B[YZ^._n!6[;%ӹ.q{ eb R ~ J6KnSkE!oPS<ܞ,F1MF̯\KUʬ.]D+&V4:Yjd6/}&܏ A9^dNmQ"S~_\/^Noh)nn`@~Lp$r=-~ŞՂ?S V9XW7vɿJzAkc 9Gh#oC"i(TIOr,xBȼԸOaW˽u*HAu`!gtU[DP[cD7z R@!o~Pzh؅yߋY=pZY p._J 3+݈p},0Gi>іa'iǢ:8]lx\ a1+Cƨԍi/>>vUmMʈ? `67to/*L0Q*ܕdz>NCԘ.7<2\Z~M z!z|SZ£2Hfct5(pXћ1AX2\<ǵmF42JVf*Mk@!gc]h,'ܪVZ9ii;7*_ E)yȣ 8E{BqhkB-hOh0&i/y4bU}[l)CY)h Dj|S8'ʻ|%Oj+sx).휮jR_:2kL?@X\6Ej]O:Y.TUBD7{%tZؙJVf46ʌIR d5qS8bܦtYاbkX3I.px\RNJ\O!w &-~3>R4ZP% Z+nFG=N󵏅RUL0P%W+\ism ;Oi6 F0#o*:tLO+{8Q-{;0J[n<RƐ{쎨?\ȿotܝؖ:m2#Raotj,0?˵e^Aabi/N9TD㘨WΊ+,R%ǵ~hãsK߯D ^) ޟhU6y}쫤Dpݦ]oܢݓ)J$`&I& TFD#Ϟ"\ѿ̜by ~MG3pe3캆H p !+|FJUiߴЎzGD |\(_&SQe~Hܕ)ҐSoOun^S6Vl1,F4vo%O(x COgS\-g#2ۉ!&*>NyԐh$|SCǮAU^Xނ0m` 6KBqIeeh[JsjKi{Ts%(UjW(h9~|}m]U;RkHCHeglS*YSAPݬ0^hq\;)EgD)?D*4˥̛y7dXhDZ\0Nv\)uY"j]F  x;}E>׻@ooA|a!P> 4ˠDN|,PCFwr2΁ 6>gbvq8}x mpo (dŴ 'ueh4 ʥY\]0-~%ӱ] Sk;Vj6pD.ܟs@+„BT0cPOe't +/cɍ#}9yY"](@pZ)a55%]¡ɳ}m=sSZUUHhVȹ2P>t9Ijrsd<)# Ouue1_qO]ZYv'^8W  (T[)Qfhmu!w`D{N?ú9Ks"I!jUaܞ.)7pM +fmG\| isnl f̭v|"-.rSzһ:ԛ==_* Kr\5 Sd0+Yx%\(IKX}ސ<:r?#n 4.HE_ߵGXġλ{#} ^05S0#_e}~PAZm uq> s}$xKmBA2[? (SػUH{?cazV7Br&4fa8f,_1k*ypEpc|ud}c .bU]ZE'ҐddseF' gF]ó{GY7b~nk&pMoOt1OVϠ3LsPW.qL: H|l? R79ѡuj ^`f^KK/*e–&o׎gBe>Hg=>DN=6CN{BZyb*J(` E6A}M6wK5c|[>$d!/c0 IGъ eC=/yUC9!ukh@l ƍMt[Eߊda4 &'u_K:xӾQ\CjLՂ8UvgqEaϖ={+- x? [C`!Xh̦A͚Op1aiG%ntIhM[Q&y`dTywZ : IO,3M8aVt|Zҳ 6Cks{+1LbCBLҿ~g>K|Fwa96Y3c\éh#3 X~D=pkY<6a,Dk1I- 58|.B"1_@6z"GgVemʮ7(v>ؓÅZMVlv-\O]cW]sNoU}yqXv̴P6I_2v^  /x+=?}侟f1.1 A/']ҪFreo[%L C :\Ӄ Qe/QL+%ឩ6fX 9U v۶#ԛq\jM*y|&p+oeV,K[ܟjy胜qmAlV; {8YzQ`Os;.>ƵS9_>SROHy@] #ZBPm^z6?o'g~#r]HOA"S_K¾LK67rCIc^}m1VIާ.U#L?_]ZoC+4yrRuO&$0?$dO=KG6iJC iO:J[Z\qR_UJuI8ģk ޵>g qm~01FYdN;naB9u11ٱ$cVk>\zφ 9+8_L5o8B|sUBΛ[~yܱz[qh'Rfltc^7-AV2_"L>+Sڨ< b_`MTs WD_P%ĜoV8?~0#=Sbg5m:JZ+D9tqB̐%^iPvQF㫘m+w#!&ƶN,;upoq1<%0=ɟ"thU2 b"b_95| h]X3 S}Sce׿3Fxuai*l,Z3z0䟛oE`;zK n_GQt%M_)Ib_Bi%CEB5c v -~&]%|~*? S$"˻zU.݂/>DFXUrz6uB/^ҵHFH[9ne\$nfوRwYܵ-39Tϰl/ˉuhy3QBϗ ô96. XOH=y(j/O30 N+GVk-@yL2U*ϼXC\~\wxt6;?D@:&H7 `(|%yMdް$ {G-֨%e]=;:V*uP.Li^FVKp>~!XM\*v)gf˖'_M!#rb ѱQ)zPMbi[ gCKhYt`CWj/ڧIɄ ^M {0B65`Ew?1V_,hZG)@ h$F S'N7 u -\\D,nzXoc,mm>Ym.SQi?a3h)@~ixl9Z}F۽׎593I `3Un寢{]]> [;,o0],W)RmVFLb[J2[kJou"oQd6[ 6Fs$4Wv3/xN#)0aI}2sZФPrBέzZj90M0< a9$J 7 LbIP}p]FV7j.È%"bHxLSʨ$= si,{J!@~bE|TRvt#ZD"hz"m0ȝJBSt4.V4bhp^̤"A֚w%] +`{rdom"dEf?,>~8k bKFWr/\y'м*Nu$3t`>[d-blbp91i9H@ϥ2aG' n. 8[,GtƍjsPpi=Ԡ ef?n!]6j'G~Q9%8qh#wȇوVΫI1 ]8Hh-@jF]C v&X\[rޱ|ߓ;%uS$(|L)gPWLET"5Qe(M&Гֻ  u:i9Ľk&k<"qnC#Q~\EHe +Jgۭvܵ͝udIOyYZ&p)ƉG/N:)"Q Kǯ]J*eg)۞pߜ5pob[!8~]:IF6oHY Q=xHek_pW>frf;"*D-擔+^q'" XD^CՅO=7*@Cu ߢBR qt̍?Ջ:f\!8O=y܀r#2S@YTPȰ2 ENZ_ll^ a'ghJ" 3 2%=,yu3]Y;"ΒNcLxg}%d CPwѠn8c˄6lVV1@}yIu*.ƷR08i`ltv5XW60!r۩b#2D\N Je;S8(ϪR|4p(>[r&A|9"/u]΅t~}?˗f# R[8,\{nm p9UKuw׈yb.4*6( ϔ>j*(1N#w9jg.5B[:nM]/V0xbQLxncosǽ?'!v>T0IӬAA;_1Ek\{/bnr ̸6歇vȨL, sl"gNC@`-&Ud[y"sPr eH y ExbSm'^skU7r1|ʧ6Y]p*!nL _B{羠w1M\t6/ ;xl8QR8#dƏɵ},67\ZnC`0k VW ;f <$~/(֮^ξ!hT(ڐ0r"4 ҟocL:d_ 4/z@ NqdYVK=Jȟ2e93>FSGfbR06ZT92BpL}pj<@hӾ]G$=4']5CKQMy-MSeȇRY-;@bxiמ"jG j&a4|49 ?RZS _Oqt;* L 8nаnNdIo4CkJj5'1wSp^Z0B-%Wwm.buxRλ*UF EnuTa@+u])ui?Ī@).WJ`Kͅ}^5+9I|F(B{(AtIH6%~Z_4n:-Lo!V>jl30Jӕ/E>hЊuV»ۣ_yQt;rrBQN#*u@sPṱ41|B-0+E]B_^B5v4e2s.V'Q&Z.lmpi3uQjݸ7N#JY,L6;Ĺըa=$9 vۓz[PQ2b?Ӏ@]OZ4=[Mw˜8BIn/5)|Ǩ|12B ȁehP3*٤b7䀠K甝.9OF-WX@ꥏ9ي +_ᭋB_y?7,#VʞJE>:ʏ—uh)06K DC)%3#cF-wH~AT>qW̤a5mƞ&?:0VțLg[WWM% ܟ+bq L@$n_#Z (ڟ_kOs=`$ӠQN58V}z߳Uxy{e&^ Jh .՟CA4 k}r'Pb¶8>[%ſhH;T 쳽qDP3̖1s %Tlr,nf:^g߆tdL?yk`MgL0;q^#GFx2CIudPV:~g}_T\9 'Suԙ4Of;ѿesuh"RRƦݓNH -7{`O G?@9yA2,$LЈV?hʹg|mϋ/u/S2q0CnM'ɘW=+`;VJ8phsrMd`8-y|mfE @oahV_8OuDv bz$R?:k -VVZKUu#9JX6Rv?0Fԝ>f9'..6?'ђPtmdƔ1X/UvܲK-A֖U)4K@ cQ凎0('rKg螔alWH8O+ϐG8ƚ8ekQ^M.XcI 6VF oP%Ymo+Z#?.i57365fRH=dڵ"GLL<x$^sNH0JtʟC9V- xnl@'gaJ0"vPc8+2:t¢NYm>deuc֕㌯E47yS%.Mn",_+Lg>-~v/4E@G@,,0²gM߬)MM g scpdW|L.2#_{'MF18D0ٜtޜ* 'fqNi\h8ZhD" ܚ|Vԍ4 L&wyfUkEE@_TL E眀آ7D>.&bDNPۈloMDX.hې*_)?$Z~`7m.#ߗ\N'1֒FخI5k]@ŸARL?sڗu8r``iYst/ Mr_2O*gb"j'Q W]TLVVҠ:\}ʽ"'Oo\J7*ܿZ{E!\yYsMZ>{E\zQv/ce23KT[CeU[E%v,ͽڜO46Ÿ|/Ӱn^ϦP1@e,ˉDRM >}~<ߺ"n{t._Jv 9LY-t8di,|&MSuz@ N( 9xH?cG5rC?$j>y^tDB;EW5„{a}{Q\nY' ̎ڲl=87!=밽g"v!,*x*->D-˪"=8ys;BMխ+Y&uÉgS"(H'