bash-x86-4.1-20.35.1e>UAю2Eզmw?T&,$jpdz8(a0l'yœ:Q'}>53?3d   2  FLQ`l r x   d(8090:0>2 G2H2 I2,X20Y28\2P]2\^2hb2c3d3e3f3l3Cbash-x864.120.35.1The GNU Bourne-Again ShellBash is an sh-compatible command interpreter that executes commands read from standard input or from a file. Bash incorporates useful features from the Korn and C shells (ksh and csh). Bash is intended to be a conformant implementation of the IEEE Posix Shell and Tools specification (IEEE Working Group 1003.2). Authors: -------- Brian Fox Chet Ramey T&,build32 4XopenSUSE 11.4openSUSEGPL-2.0+http://bugs.opensuse.orgSystem/Shellshttp://www.gnu.org/software/bash/bash.htmllinuxia64/sbin/ldconfig 4XAT&,T&,T&,27cee15f191684ded05cd630f2ec9849bashrootrootrootrootrootrootbash-4.1-20.35.1.src.rpmbash-x86bash-x86(x86-32)  @@@@@@@@@@@@@ ia32el/bin/shrpmlib(PayloadFilesHavePrefix)rpmlib(CompressedFileNames)libc.so.6libc.so.6(GLIBC_2.0)libc.so.6(GLIBC_2.1)libc.so.6(GLIBC_2.11)libc.so.6(GLIBC_2.2)libc.so.6(GLIBC_2.3)libc.so.6(GLIBC_2.3.4)libc.so.6(GLIBC_2.4)libdl.so.2libdl.so.2(GLIBC_2.0)libdl.so.2(GLIBC_2.1)libncurses.so.5libreadline.so.6rpmlib(PayloadIsLzma)4.0-13.0.4-14.4.6-14.8.0T&T"@OjMgM] L6LL@Li(@Le3LQm@LD>@LA@L#HL#HKK @K"@K8@KKK}+Ky7@K(K#KJJH@JJJ#Jn@JL@J.NJ&eJ@J@I@I@I@IzIܑI?@I@IV@Im@Im@Im@draht@suse.dedraht@suse.dewerner@suse.dewerner@suse.decoolo@novell.comjslaby@suse.dewerner@suse.decristian.rodriguez@opensuse.orgwerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.decristian.rodriguez@opensuse.orgwerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dero@suse.dewerner@suse.dewerner@suse.dewerner@suse.dejengelh@medozas.dejengelh@medozas.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.decoolo@novell.comwerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerne@suse.dewerne@suse.dewerne@suse.dewerne@suse.dewerne@suse.dewerne@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.dewerner@suse.de- bash-4.1-function_disable.patch: disable environment-imported function definitions generally, on a compile-time basis. This extends the effect of the last patch bash-4.1-function_definition.patch to the degree that parsing the untrusted and potentially harmful environment won't happen any more. Breakage is possible with this patch, but inherited function definitions in shell scripts are rare (none know to me). [bnc#896776]- bash-4.1-function_definition.patch: prevent the execution of commands after a function definition when parsing the environment. This addresses CVE-2014-6271 [bnc#896776]- Avoid possible buffer overflow when expanding the /dev/fd prefix with e.g. the test builtin (bnc#770795)- Add patch bash41-010- having a bash man page is recommended (bnc#672528)- fix czech message- Update bash 4.1 to patch level 9 * When declaring an associative array and implicitly assigning a value to element "0", bash does not correctly allocate memory, leading to a segmentation violation when that element or the array itself is unset. * An arriving SIGCHLD will interrupt `slow' system calls such as write(2) to or read(2) from a terminal. This results in an error message and truncated input or output.- builtin "man2html"generates html manual with a timestamp that causes the package to be published over and over again.- A modified version of the pipe patch which should handle the PIPESTATUS array- Disable the pipe patch from Thu Jun 24 10:40:09 CEST 2010 as this resets the PIPESTATUS array to the status of the forground process only- Add fix from mailing list to avoid crash- Comment out recommendation of bash-completion, as I'd like no to see the bugs of bash-completion in my bugzilla- Do not package static libraries - Fix Recommends/Suggests- Add fix from upstream: restore the parser state over changing readline editing mode otherwise e.g. set alias before the change are lost.- Avoid running the last member of a pipe command sequence to run in its own subshell, this makes know lines like the simple echo 1 2 | read a b; echo $a $b work as expected by the users- Update bash 4.1 to patch level 7 * Bash did not correctly print/reproduce here documents attached to commands inside compound commands such as for and while. * A typo caused bash to not honor a precision specification in a printf format.- Add fix for memory double free in array handling- Update bash 4.1 to patch level 5 (related to bnc#522351) * If command completion is attempted on a word with a quoted globbing character (e.g., `*' or `?'), bash can reference a NULL pointer and dump core. * When running in Posix mode and executing a shell function without local variables, bash will not propagate a variable in a special builtin's temporary environment to have global scope. * When the `read' builtin times out after the timeout specified with -t is exceeded, it does not reset the flags that tell signal handlers to process signals immediately instead of deferring their handling. This can result in unsafe functions being called from signal handlers, which can cause bash to hang or dump core.- Add patch from bash-bug list to avoid crahs on some strange TAB completions- fix warning no return statement in function returning non-void to fix build (in bashline.c)- Avoid hang due malloc()/free() within signal handler (bnc#522351)- Add patch to reflect the usage of /etc/bash.bashrc (bnc#577221)- Update bash 4.1 to patch level 2 * Here-documents within $(...) command substitutions may once more be delimited by the closing right paren, instead of requiring a newline. * Bash's file status checks (executable, readable, etc.) now take file system ACLs into account on file systems that support them. * Bash now passes environment variables with names that are not valid shell variable names through into the environment passed to child processes. * The `execute-unix-command' readline function now attempts to clear and reuse the current line rather than move to a new one after the command executes. * `printf -v' can now assign values to array indices. * New `complete -E' and `compopt -E' options that work on the "empty" completion: completion attempted on an empty command line. * New complete/compgen/compopt -D option to define a `default' completion: a completion to be invoked on command for which no completion has been defined. If this function returns 124, programmable completion is attempted again, allowing a user to dynamically build a set of completions as completion is attempted by having the default completion function install individual completion functions each time it is invoked. * When displaying associative arrays, subscripts are now quoted. * Changes to dabbrev-expand to make it more `emacs-like': no space appended after matches, completions are not sorted, and most recent history entries are presented first. * The [[ and (( commands are now subject to the setting of `set -e' and the ERR trap. * The source/. builtin now removes NUL bytes from the file before attempting to parse commands. * There is a new configuration option (in config-top.h) that forces bash to forward all history entries to syslog. * A new variable $BASHOPTS to export shell options settable using `shopt' to child processes. * There is a new confgure option that forces the extglob option to be enabled by default. * New variable $BASH_XTRACEFD; when set to an integer bash will write xtrace output to that file descriptor. * If the optional left-hand-side of a redirection is of the form {var}, the shell assigns the file descriptor used to $var or uses $var as the file descriptor to move or close, depending on the redirection operator. * The < and > operators to the [[ conditional command now do string comparison according to the current locale if the compatibility level is greater than 40. * Programmable completion now uses the completion for `b' instead of `a' when completion is attempted on a line like: a $(b c. * Force extglob on temporarily when parsing the pattern argument to the == and != operators to the [[ command, for compatibility. * Changed the behavior of interrupting the wait builtin when a SIGCHLD is received and a trap on SIGCHLD is set to be Posix-mode only. * The read builtin has a new `-N nchars' option, which reads exactly NCHARS characters, ignoring delimiters like newline. * The mapfile/readarray builtin no longer stores the commands it invokes via callbacks in the history list. * There is a new `compat40' shopt option. - Update readline 6.1 to patch level 1 * New bindable function: menu-complete-backward. * In the vi insertion keymap, C-n is now bound to menu-complete by default, and C-p to menu-complete-backward. * When in vi command mode, repeatedly hitting ESC now does nothing, even when ESC introduces a bound key sequence. This is closer to how historical vi behaves. * New bindable function: skip-csi-sequence. Can be used as a default to consume key sequences generated by keys like Home and End without having to bind all keys. * New application-settable function: rl_filename_rewrite_hook. Can be used to rewite or modify filenames read from the file system before they are compared to the word to be completed. * New bindable variable: skip-completed-text, active when completing in the middle of a word. If enabled, it means that characters in the completion that match characters in the remainder of the word are "skipped" rather than inserted into the line. * The pre-readline-6.0 version of menu completion is available as "old-menu-complete" for users who do not like the readline-6.0 version. * New bindable variable: echo-control-characters. If enabled, and the tty ECHOCTL bit is set, controls the echoing of characters corresponding to keyboard-generated signals. * New bindable variable: enable-meta-key. Controls whether or not readline sends the smm/rmm sequences if the terminal indicates it has a meta key that enables eight-bit characters.- package documentation as noarch- add baselibs.conf as a source- Fix bug in bash-4.0-security.patch (bnc#559877)- Update to newest patch level 35 * bash incorrectly interprets wildcarded path components between a **/ and the last / * bash incorrectly treated single and double quotes as delimiters rather than introducing quoted strings when splitting the line into words for programmable completion functions- Make _rl_enable_meta configurable by the users (bnc#541379)- Do not change tty owner group twice by child and parent (bnc#523667)- Update to newest patch level 33 * Includes one of our own patches- rediff patches to avoid fuzz- Update to newest patch level 28- Add fix from bash maintainer for closing memory leak in read builtin (bnc#510288)- Branch off some sub packages: * bash-lang to include localization * bash-loadables for installing the loadable runtime builtins * bash-devel to install headers for developing loadable builtins- Enforce the usage of euidaccess(3) instead of stat(2) for testing permissions for a file (bnc#509105)- Update to newest patch level 24: * include last few patches - Add patches from mailing list for globstar expansion- Increase size of hash table for runtime linker a lot- Add patches from mailing list: * fix problem with invisible characters in prompt * make dir*/** work- Do not crash on forbidden subdirectories with globstar extension- Add fix to be able to clear to eol in readline library- Add fix for timing issue in readline SIGWINCH handling- Add patches from bug-bash@gnu.org to avoid eg. segmentation fault- Add patches from bug-bash@gnu.org to avoid eg. segmentation fault- Add patch from bug-bash@gnu.org to enable |& not only for builtins and shell functions but for all commands.- Switch to official patches, now we are on patch level 10- Use patches from bug-bash@gnu.org to make it work- Patch for bnc#481817 does not work in any case- My last patch for bnc#470548 send to bug-bash@gnu.org was not fully applied and this had caused a memory corruption on tab completion. - Enable the parser to find closing parenthesis at the end of an argument of a command even if backslash is used (bnc#481817) - Correct link of shared libraries of devel readline package/bin/sh`ab4.1-20.35.14.1-20.35.1binbashsh/emul/ia32-linux//emul/ia32-linux/bin/-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:321/openSUSE_Evergreen_11.4/b3180f06f8f78a1467c886cc282c9078-bash.openSUSE_Evergreen_11.4drpmlzma5ia64-suse-linux?]"k%]K g81P2wq&TίLbq ;9R!HA]%:1ĊQa'ދ<IQ YnԇW@1 aYrih #3zqth\P[*,k;I`T@hlnsFTd`4|f 9bd䙷ζ+Sagv*u6%^ /x$ig|B Ur'OιQOIp &(<-1A-5!YM0`N0s+e@]x )aV38 /̃O0 ss,ר(}0 Z\jSֳ|34hwߦę`x Te2ÇDg;̩.)+TD֞,QlA,su`| N5Ul͓ WN |EYzg2hj@aCi29KLBk#EDs#.I\D7^\dr*( ".d' P|UPQ+!Nk$)wAW^i>bWqm8padV^ Iv?`c=,c+k# c-9Ԙ߱#+|J *CpUcGeY%}O(dw+.)g5 _KĈ6c$ޝ‚@ xrZ=[I^$[!hDYx_mynj pgDC# fqR7?`baQ.l[n ]qEM6&3z(Jx1H[ǩMg] `RV &< C^Ԡ|Y ZRz㙊?+PޓHFՒub 49Ju3Q Z *6zZd+Fbn;xuu)ds"k&s$"rP?ަUV.9#[Y *Z7>MPB|Qm|LvuMg~sW׸sh?ױUta N DdJ=U_lOܨd eD#<'l)T6p l7M!\T(/J8[w^uô].P|A:/lr5~#wpM̅ueD<2VH #5)cP!*G%"s)x?D0w%~II %&-atR^&Ĉe p=]ή ڝ;d$LLd|v~p7 CִYС(B'L.z A3bu AF2 #Wwz?/#O- wGt1 حB87u)P.?l Wl 7nȁ߾vCD[2.N&7{of(˺==C4"M?[LK8M;#6q'doso+:&0RV0-t~DzLZwYU{StՂhM-=V懎c5lX_sFGO6a;Oh%?&<ќYZ5\WFL3)hМ"U 6W7º!A %ZcV% FL!KuK&"xrBe-0@TV#]a>}gz4ϑ9z ҤԲ|xFk^]~¸P7r E{hdb\C.A5s$!.A FtiintуP@XܲVنpG^2A/BX>$d1£r`DAn';yN%|a# AO?-;Pw솱gobǚyZE|wJu]*BE:{nǼ飚al2E4I:YE?b[V?A $MiU GRy0G6:Y2Ki8_ fb1QVeaBt?!&Z=<@Ce@hSo%(6Q#[ V<*xsT>%Z ʊ؊hnng2fg/{ 9b4t'< {$?L}R#@k/a.#(h=C8P˭XfʳPίU >TcX{)XYc7ibv(H7e E4Y"d߷NWb!1ưӀ J*G$?@tc< }i9?_稨%t?pbL mZifp%\Hu~ } I7 xUz C"m*E>^ǵ^GW>'t"崎N43h[`V+;DӘ"0FGT_><+lؘORN tJmuRsAō(M+<`ee;P1$]b7S;DlǩȗW a 2ǹ`'{SaɭET6W6_BtlYmw$%d;G2_)4>&IKQվXSt傦ao܍r!=}/8%(~&k(B?bR3ca;,Zr"S^1LQ*7.DJ3GsIigݥG"mF <Kè HHbQYT%|i,hgx"ruN!M,R#tJk8]Jꤘмts[ (WB*yN?n M =gq&{_v6PԹ֝jK' IuRsO s8%%FPZʏ_@`\.n37Y6!:JGԳcS+cPw'Vg6DFLX.Ҟz}욽OX_xr΢ǫb -gyXuHrE\OxmͯY館5/^ BۇmAVO_=dHg 4Ac:Y%ÖiCE!zsǢK{ڛFi2^5zg-r >W7o;taiMb뢫=]1j WFkC&\k4H\4"|I^Z=_NIS'ۍL%Yܯ#jW פtFn3p.f Vlaqtyjo] 9VyV*Rc H||[7KVw9"2;vY@D0|~k('$)O 9glG}P*QE3)`"TN1~5hpP/Ʌ\L ad%-œ!΁jhC9ޱy<ι>ɏ}dTh)w*|ȼF&ːga<,DFڑgZje1@KrxA~iQR~=NqJ 4|#1h $ӆϭn%lǽzYXj߳S=u7 *@{!/5e %7=]DZ0ݞ>CSBgy(,U/K @b ^4nKPέt9$y曣T>%څˋMĶw8 iӾ1_e1Snb3$[2D5{$p(#wH$> !7H ( \^55!cᚗ 9_rkĴ:OyIPyR3<,DP 0 l1*5@|J2p3 +zTCot'cU\5cNG6bftLu!<%3v*c'>]7;<:{Ch0> lۮfXN!Xaq>n{DQc9P"ZY(c 0vJ eŬgde/O&24tٶ*bC׉uFό|]Sav7#*]{pL3?e{ xԁaJEoInuK PQM`݅unO !ry4ZkoMfh9IO+HnS;mT) K)$j* z]Ʉ]!JGF I5 dkslsTfз&ste|{,eW5+4<3O@D7T8'a[,bs/;q$ܞ^*jՁәt ֶ M@h@ۅҎ IgƘс%i8 \3&2 |HRNE1ao٩Gu猜9g-qʻ ix GAu2K#.>]9PJ2 r#lM=;ةtGXᦎцH"̌LVɪGiA+)%_D7wXՏמmrL,^I< =e{m,nGȷ.մRR|FAc)F[zM9`VTfh!vhdOv'N=&jIAWmڤW<-?_$ @ FJr, #eDWc$_*4oP0x⼑i%_aD0{Rvڳ?ggϵrqv+!(=)X EnUԤ1s Gcgӆ-Lcgasr'0+F9Ta@]' ȃF2Q|}#j ɾEk:[߮bz3?B!_Ц`:0}ZXBw2;Cidc$0!QQ]VH% ;kqFȧ#_96ik0DJP} XΛ}$P{L3uN%̧ڹGKHub NX=v:w=\w sv ,X)6[ *bQ\g\xPȍkeal62 6:xHVeC|N!g݊{I)̏_bՕڝ خI.S앢ْ|PѬ1V *T4Ϥ;֔Ar6#s>7Ig}畗TUmZk9@'2 oZʊ'?cbQ3?ḽl6s: ~uͣ=2I]Pzl޻3<֖n_irQp\fN+׎쑈7T*jtNVLQHqy"Z$ ]/n~>FϭN\=|QA|tyLH/> MH2(sj׀-K2[ƙ02f$juyc!n$?0,@k;/Z bY՘\F,KSH ɐ(GC Zë UT6"1ҵT ꨍ̃fUZXhRpzIuuU{7׋BI*h!JMh/H`k9`E{ g#`B`o #1*p! QYNu #LQmiJ JK7[h=hEP L!Pz=h]pIy(F,rN|[&G޷M[=u/`5LG0jn#w1ghh,hqQ'r4߹?u6b+ g8?T(J8;^rh^Jx?8k|%z&Q ף,MߌUav9Ow~ fO-̲a^~ (U*.و{] +᪑ff 􁬟bj}ٽV#"+=Fa)1 odew%}ͮoZQx|e\b(9sxKoR|\G19M$%]ȭ/1q{|}fדlPO4ԑ@A|G_}d.}N/UH,8Ƕ/OϬPpa&g!4Uj2AU3Na W5@fIFg-yFZB"Y/wU\Y_:PCZи]g2iC>g@҄RsE C< .',O^ d'GG˽x$b4a%:8ǖk { Ns[ Ei}* J~Ƒ0+/Ļ5iuӪCXwBJ볮nZ1/+atOo>:u.~#-d;A*L †o F}CT{ [~Y^䜵.x$?]78к4:>=x8a4Q!6[a]jS2-sg0@%8H&v}6ʳ 1 Q6wn W=G47^k#.\ QNLCB#ʞh^E?7\.rYĨ3Lzp I3-ΆHtM\[ٌ\g*ɠ 6lݘi` PNuT[;3pY:8Ǩ㿬1-Rm[ga@|!j bzs]i5f}=]2dle٧x衴N*Q7td>5:ća^'-d;QmIh*f#dkgI IŇjRĔ bu"B UHl yuL%bx?AVaBcPhˆ^D8Ԝ-ᗂT`W:3K=>.I&dU.)#sYa>T5mVCMs󼩨9o-NBur?@k.ndZwL{g}s ޽LqZZkn9}~i'?\Ȧ[4CsֵazO gy*oieJw+4ggI!W'ejj\ɅCi^lVR#Tn=}巚{CoaVaɫ`~89MP ,uz__V&Ss|T8BxŴ|wvz>=!9B+>o-//o Dne3IکgXټ<ám>zhN 5@p7X ]sۻ_D:*6@z"y䝲k :ӑ@2(?M[[=?td'WV?Gv>vD+RTkop2!y̰/ZbT^sV6evjEa/;aA3Qa@&gꐹ Ō G&>P*u8Y.%vhP8bH+dFHvZ7Ԇ đa}SZs 'IH6굷fuφdU|z%^2k]ܶ8$K uEFXF[ T5@Phޘ;<ӑc AxUx.FY[?0GQR_IYq8q@g^riCJ~ĞwBm 1gS}hph!3Tz3baORCT7-cg d! )y!IpٶLZ/UZkQ!׶qB#FO u \ke,sxR!Q( dt\˸rNRsIf<`G~wELz6S`.R@sX>J[JaIgwa vL67n;%L҆<Πdc!##|Tw`ueG|+ o#7Xݔ7B]BT08q<=t Ewl}żt' JJXndbaG[!.ݭ:<CwD򙄚Qql½hh^j0P[bi>(d\2n@`mGoQoTr'E5e 0^eOaZG7>WfA?T&$Ohǵ+8?=mCG{2ᄅCbա$!rU=n%#+$V XN8: y?=={Ϊ}~KhLXG{ɾFB릷{E2[QW3u預k ?C+?o%g0}L(;TcnN>q@U bC Jt gDJ`w; xb{jN|qq侻Ɩߩ|3,_˼o@aƝ;xߦgjܒo32IM K0JP;GBw|΀aZڞ4(RMϣe}0)ߡot=x VbyI[Ͻ5Q~GݳaMxaaY êT^yL7˹Cmggi 1ۊ;e7,!yv"dUSR~zn0pͳnWI0sMir>Ie2\H"駌2.8PuMz5FݮØo .Ďş=9 (yKq'}5QJȂ𽆺cPۗz (?Fݷ%[ ЙП9m0a4gA.(W]M:ʓP]'N2MwT5S:޷=n+|Ja=zRE V'f9R(+s=wGtVju ˕V.="kjW\q>[ԍ8Ό#ó#n+Ծ2EPM ]=8 ~k^vU^WyK_=WR@q~0LwL5mD\Cز/}@oν^?v O>@y ]}s5\cfgl7Y/KӚ{P=p[T'i0v^ TNzGzl78S[?RQX f8䥖p70q*13x#=!jdF2x(_v8,~Î[2Yʑa tOo"{;H{:N)Q4=&MWJ,G ҠR В$ȤR6吩/Hn{@Ƭ;x@pXWrp>\4AS`X锴 -O_x{:}DL//a8Ňgin-m7oю yTp걵%id$7=c iV| E)_sBB+2HGʩVľDwJX~juO ="WsHHz Ybg~d>Ùmc*JʅQOI*so`yS4 f.\/8o/lw?Q c+['c'&g1$ZFt~zE[83x-)<@ެx#^J2 <~F*z dp%%|KvMh.,IW_fAunLs_=8Tj(C{QWke~f |A4: A<>DR0X]Ac"Y4[#Eht0!hWy_pac*qjȚmX[WƸMMh|=9W C{eA%$/ HJwn9XScipBtn*κ/șyEbPWKua2bO<׵ff9ձʶ2SXHMt%1eܿFh_$<"?4w9r.ֱ(3Fx#6.qO =N (eq|x0Hcxk2ql=*Oljv5n{M"KhT"]{Vx2zCE'0C#R%[ȠtjCa"&!G O} R`R".b9Aɉjt$ q9=)|DdAGr8H`غ$>tfuJt]|B ,6rE[zW!^':Oڤ cl>&<~H$R8?IlFZp܏񂦷?_V5[MzX/O0"FIA]]9htYnz HY*g ģ'[\xvb8N ¾u UpA4 dTUЛ[*܄tzWu 6$aZ0/O"oyC4r OLtIq^&YJ_YOB5ƵVm- a=钰L$>1'7Iѩ&[ ܶF\5 Zeb=*}koR_ynq5gZO$b>37L,B_w@:MI)eg9WgBxR5xJ1pkUIT(He"ҧLB8y/lE8iO .P$-|Tt!rq9Jc/l_?Ry%ӆ [B(ϿJk"puwpTM\=J@_ZD?[ē,whQIm/Qя:ձ@4ST1DylbApT@:|ʝR7׭^S,`Cntw9;D @I @$4v1n#̘O 5QD16uͧAzKԜkK0&j!f$sVjEsp̯^) ,+olaT4j؎_[bcXTET9!G E#!8K7,ъ)#qVWkU`t_>]Sh2l(8ei.νHSŕʭ1-P'T;Wp9^B2{jkF!}V~1w/73F0KNŏU&$qg| iVG`T+(h׽Y ;M_//P];C ޯ[rCцRCPk'f72Z\4$jڬtM)c@  yb]ua Tv"ք.q4QXX8NB-H<&xDLTQct:YN#MpyT䳉 V |Ϊ0叓߲7u=Nž}& b'OƓM=Y @(`y4vw#2觸zVк?MŜ\+!I`/\kmMT(0 ,7peyfM ]O-J$RQD7U>ػ, ߭^\ֆX63QϬyWN)97K1s MNSY|_="2CK]⸶OtGҾ,1}AM8a۫0dd^Kh[Y!d-OO f֡y (otGiYXR@P{Xk7.6Ud;3K>t5)uAMFAѐ!ھ[vl]Nݭje ZZ>8zߥ-aXu&\/tHX)m+:`Os0'{-nHQE7͖V†H )BOL\dqsh3M~A4E ĸ Fd WA̦b֑Jm Ɉ{d&dg_ X7;N啞zӢh&JN0DeoVI`d&K]E œDkg-[dh)VK㨁|^˅<8PuC+/YF0\AUjVvv:΋=.wWajJ5<#^ kA}vhuo Εj"r0Pcf- ~{J L6mt7HPwa0Y/RN3AEaxjH7~f,tuX(q5!oJ(oO"uBr` PL}O8BGԢSk359K"i_MUU*dGLF5ᨏ>[Z{lԡN 75S"ozM<V߭SWL/[YE kQՍ׉=FnXsc LOzb*Z c1@x 3A' ЄIuGu _ G9`r'ƣ) "nUNN'(OqFv>9ocSc,4C#MHU- ̲ѾYـ21ͨeֳz<Utw ZANqC* !WөÞ! XG,N!w{^%vkWۚcgŷ{tbVQ~sBSs=cZ+ `P53Z-4sIZKk;\u5,՜;L95Ii9HX KapF |9UqSԃ@=٦跛r Z3L_pj@"L¥xoU|02W#hDu Jɯgn<ប5wR]j޺?E~,#ZNw|m<3+Pγ43F (AmWHSi6ViA "UҪq5<)MOH^e 1c㯦z,J"Cp)J8ש[o]2$y2mi ӈB|@4u=CHUr$]_U.F;o/8Bf<%އʑ_'Yq&v7e& D҄hEH9%y;Tkqo)iʑ6 >~)k7 37u7zrl|l+rz0i`~P,T-cΛM,f]5! :2E*5 iXxUqPz4{ q{F҅-B4k2)AK T~U)!Yob9޿>7IڐOn[g`.^r x`Q{_H7}tնozY(욐ʱށ)+jqtc h5<ے%70ucvia6P-ߺ1MEWwA M^U[.\v#c b s<riUULGE*e@1|%-ܩ4eJ]C뾖tv0 "j\| N*F~j ջ'oq0|{-%zqpʴ}4(mrgOFMٟQ(+2 MMG,A4Jž " b*pc1#v$L/j[Uϯm{?s(QL*vR3ftr,˄u{'0^~*8o6>Hr)Dc`W= XGc*JTjswl6-HC1@6ET3]c)C!hOYWd JG ٲN'I9 ɉ .y局9[N{Q3/ җ):K)J{”voy$@F9ҕZ+*[f5YQˮ8qtH_"HZ|T@eϞg'~ r01bmoM[*I  *+-{,hpX*0"tՉ HechO;p D捌[>FzV)ei8@hDwH€;R6\m`\He13!ru眪x\:t]({Mʻ=,v@ =! 3ocJyϷPY?{4J'/VcWq%CfgfrWU0RA[)pLߏ"BD<%|C)/BƯT; {Ȱq ׭1?sM!@E(&b"Ev BQ\Z~$cT\XyG>EA*CH ڂJ jnYn6mt>l|2ͦ),Q5)/NwuHPwl@doTTF)'ޓ7x4˦{?)988>*[G&kG^%"C ǥ-YF*4FAa*h񡹽>'w/Qt Q Dz䦮+k;!4a@U^J҈ 5a7ߒUnCA`0Ɖ νT''>~TEM8%@!hϓcϦۋPr]Oa1a=0>64e"ne;J(=zT[3EbtZ{p½vqil%ُC @ Ghۘ|n2wC.kZ(6ot΋._'gMH15fܤ@P9N{};wHrfGm~HL|ub#8Dahۈ\P*7!<ڤONOZaWKrdJ7@|C ߘ%G3+c.35'匈 vY+zDXMvCkGsFA"IZi^lhDl\OZ Awn B_B,_ɗE׭-xԢ q$<"ԧ`ڈPvU>mjvwQQUީVߩ{ِ.=M ϴU~9[Ht)*A3*L[MT*8;EυSKPlUvhsI-6 :AAޒ R>yʉƯ2#G:C7oT=wJ7" )($TkW3JN#ny\B,i4WUlXߙGQADpM/pݜ4w1b3جBYvS@+t8gp P9/{<+SMqÂ-ߎA5w1( {F/;}#0x{MK,NB]jFwYI& RJG}S$ƸPO2(`=z/#2O BznI+.t$xA.3\r`z׋U}_.vdwDǬx&ׅ~:4֛[ )d  ]i{3,6֑YoVtVa0 XbYvWY{SW4?I,wߨP$\ Gg82~m亶="<9b6·{)ݮo^dY, u9"Bz -Δ 048Zi𚃠l*Qq QVǮbڇAxHjE3 5S%$4muAsW/"Բ&hwde0b28{ƊZ~%*|GD/ 9 >yQRx2Ou[ j 6wm@1QydV { kt{Zh]LZ-D1D1Y1*E[N mbGTL:X^g1 ylˉxl *ZE_71eԹ/'4yKLtav]R~X~|]JH}h?ҵKk/JQ{ڒ~Wd&M$?Vf XMבoIJ^|}:ĥf97?1URoi|g6]>%͖ƚFz6c+IW@h!M@iF]^( iM.ne{=<,;+ΐt1dvPΉ0-^5(*p}Wqa&M QPzE.ZR+C^'0/c'J}b54caE\W&}Fe,<ʗ\AAIfz*1:x]"9~9n"WDH/~;cYuB NK _1qQK9"$D`aCxo]/:<4Cb*T1]cQo@4TTs+iwm]߄[O;?;Gܙrt>L`O36stkݿQ}6XȣjT:^8F26#f$<%:p,ó:П* Ը$OWD$(jE~ųP4* b=fwJJ"κ>Ekm -3@6`}r ItȽUr't 65"uWQ'-'Ft sYbZ&oCTx'u_\*{S3K/|IXZH|$˘DVv,oj.Yjŋu3 hkH7H+*#Cf ӑR{јR[3X ;AY`ꀭ9:0ksW\?Vp<H"49x$QY[Ĩ TD,e%ٞ~r b2?N|Bz'Bf3G6_ve~YАʅ쀁ۤ֡?q< }_t!_ʐ&],ŀ# t{^`f㒅mdrz}l(OF-%.}O G؜0nsNӧ4ׄWcqaȇǷIwU=-:[Wh!;/I+־Nbgv"0i|3EX\|^(b@z?4ΈQɌ6j}bb{Z4hv=Ѥ S6D ]vaAw#=<4oXtɂP v:tbT, {SG6/,!#Ŷ*&%9^ʴ!XRc~ ijX}*FN+~Ip=zXs\1cfSayM¬埩mi|z&d-XA>>‰~yv6=:pJ [7]QjVr-=1ӽ09[ǚÇr^5f[C ý&Q93B;z { v%>Λ rő'%So"dUdI e;9B"tq 3QAk OaLnȕ 6eij$^e<6ϧ;x sť > RI 0S(,1^:Nv-Zl]qM[SIzXcԸ"GfIapeRX+bDgA"G%t[DpgRW2,d0G΢%Ol(|E[ W n_Aei /`5䝶isEQi3"QAqe(}}N/5MR#QߣuEBM0lQ p]%ēxyks@(wx6~OgbKoXZ2ż[E+x8x>KFMxI-flb]~ LyXG2ATl)ܓvސeWNUvŻuG2ᧇ4S{(UzZkz]c]"'F}Ep^M\=0ӈ῭$SZj^I"fܛeUVJ,87oӇpV}֯8^[J,΍JTT7*?=,?rN=nd⥢z|BBͰxPIF?ͼ#Hu$#orME^t(EzUgWSa^LA,v'd)쪘}t}SߋZڳ% mF!5s]!pQ&]KG08͍V S9A~ڂ4 lm*ȼ&sQTU fO6ݚ@@N7*5`dsMcp{ J0?F`{+jňZc8{>RTK-3z4!M,eBqs4Ӥm=a\s,`c!_lρ0F$\'arlA2"2$òTYfk7jYKIMlLm0? Чܻ#@He\vٹM@3t.z٤N9Vu@u^cEDuvFJmqGW]i|k5TX%yBě«*aU,Ӯd|k\iu 񺚬HY-:My7WMeglrD"g>I)JW#@qM xҕsΗ G+m9Ofk(o~2@Àrخ1YR54w{;q>8wZ"΃KY|*sZ ¯(b}i/E~C2[ak{9ih9|E!}C{ A?{ w8o1ka zJR\+:Z0vWPQ*k>~tژxG3Ǜ'%8C:i44oz}d``Y`PF=55J.GGKU+?-,vM3 qZ=Wҳ֙0ryfR-.b { GH% h4RN d cVo;;>xԫ3p&Q,;D>4ǜSTH x$yTNY? S~u꜈yaMH.[=/B.B-RWD1#Vep"a S)z I'Zޅ_:e?0IΤ>;  vpUWSCkߒ.T&n heQ&n{;a0_vN#l)ad‰ϋO\U 8Z)4YESvVB(Q)3"ˍOD({^7(0~ /рO:rGQݧFhR (Vn"jH-#\\.'PLρ濔b#Aq9=/5S'CN<+Dz-@"+'|;Ew58v5}4k!uh6#c ɐ΂BvCMOLП 16wXq>[PUA'܀0`+R d@uWD S{}9xoAs;8QG.`D FJm!E 20k2B{Zp9=`\Α7Jll?=ȝv ucMoVYgOU0  r d _P8BQGhG3E)牝8 cq* ʖu9cgJ@7]y%D fu@ge&"jy'h2˂vio] `6]@BB~T6s2RPOz-} -_$./)' ZUPI\u=ZxN;c7Q=cT[]q^)A~VL Y{&PbNy<8R\a4R(DfF x5aDinj]ю%H o@m~_vPfpמh[%?ulz"$R@w]5~A#Z-1Z@:%$ʘ=qϏ(C@ [DDRWpfϫЇOJnBJE/oPVrxMP66"@}q~&'lH SͺXJUt0tŽ kVҌ#|NϕG;N}RY.hI^Yf5o !:_#ߋ D 7Lu\!o4P(*]>UC]c}u?l`;7F2@7-Nt=#<*g =֡ oCX>Fx/QqUC֜C}cB)kvDA՞bjTPS%#6DWhܟANvTÑt_5Sv2v\Zzve Zo8mf z)>#w %2,iCepء ĕ 49ҍ)u*s%mԷ5, d|#X-JRǴgz`,bq#U_qfN$kȱF" 㴒R?ejK9АHiU}WУ;:<ÊɖBF=Ψ{߅O2E="/:`ފؕ@^0D?|ygSܹ7}# aR V`VZ{!$[WQ# Ar_`K"tgyfTEI}Y |$fAܙit K|ǂrћ}:flOb+9lxVDNٗ;(n$|#G΍~y^ kg̶VJ <3^ྤJni'${ Zvzul":酼v!al*KIMKAo1m,i;I͓v`u%.T"M9MҙJ8Wx%A ,^qG5(ZH'[bFex%qY<rdzBܐT#9%7AAq!SiT:PJ[.Ւu6@ȏ2〦-PlkMB GD$Y1מO?ٻpH- x(t)ig eՒ$ҵMC%EOC2]m6$t@Ok54# zzRyXk9rc2N]:ȘC/^7ϯw+ry5`|.%?TbSs\-Ofd)s o>zmO>򧴄w 1gάzghp_$5ha4()WFscYq3xپ;N .hlZ/ Q6`? ɴYv#=w'MEj%ﺱ4mRcTV8= H!k>HI4 +&jw_LzbDpe26}L--T,]aSjR֜IX{OsuQ-7!*wq%?xqjeQiUVUW| Omw)/˕v`%xr -zU̱ʂpnN.ᄁN.G˙%Nr8x8e"ͧ}9#QT$r_氪/rm]P#hǞCL(Mt4H:#'벋$g\٬`]JYd>p2+>"s)$YOx q_X9D]Eߒr!f-DMO#ߜE/!b>-'M D?uVj87qi+r: |d2bݢs.i×K1(!^TzF1/Z[(N.deʫ9.h{ C%>#,ȓSI&l{p!FͥŰYwfc.0 J?} kC(Aq ~< 3@bIڍX~ ٤UclŮS 8jbQX_89