perl-Want-0.29-bp153.1.17 >  A `B^!M@eee#m Bz|N^v;}ϣH9<I{`KIߊ=2&kXMHVJчZiQ }ϊ'D-_o)¬}(̰Ti>"2`U6ĩU64Im8LȢ ~h9` iP9t h=(q~'=h6R'$qNJ1)bju_aqhW"D.2w\m^&G+izGIAhd8e70127709371dd98a48d90626f776d372d609813bcf69f91e12c9d6574556c96805f35f5a2c89013afe52d0cc2840419fc80c2`B^!M@eeel^7w.!ggOF$Y]JB&.L (f :VƟ5E5@,SyRsOpC+H;bsQ+`L(nzp4xFX:B l>=_O m9T[ 6g4? Տa4,--v_S4Hkp bWP`bO&dqÜCOq [OLr΂#"[X;^&͍7.p27u%>p>?d   ;"; Up              @ dW(v8 9 :R F G$ HH Il XxY\ ] ^*bgc dxe}flu vw( xL ypz|Cperl-Want0.29bp153.1.17Generalisation of CThis module generalises the mechanism of the *wantarray* function, allowing a function to determine in some detail how its return value is going to be immediately used.`BLobs-power9-07:SUSE Linux Enterprise 15 SP3openSUSEGPL-1.0+ or Artistic-1.0https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Want/linuxppc64leG UA$AmA큤$`BKV`BK`BK`BLV׹V?@`BK499626f58f37590028bcaf56987763d41f218c50910a74508ef4dc00df779d7ce9ac59d7b0f38081f2f6c52f165479c3ef02b7f1e1e5e30294c80353af34a711d6840e860a31dc4a088aba874aaff3b53545fd39b3441388af9d573306f7edbecbc2fcdb4e00e1f301072f80dc850c87e0ddb73bebb1e71dce276f221acc5a7a9a7a76dfb9151e91c4bfc1ba7ae38cb064305e267c1bd83868d3134580853564cdc051e3d2242a86ab69822cf22d52e30ec9e6b7c8322d4b1bb4c3b8c030f79drootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Want-0.29-bp153.1.17.src.rpmperl(Want)perl-Wantperl-Want(ppc-64)@@    libc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)perl(:MODULE_COMPAT_5.26.1)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1V޾U@U-@S˯@S 4@O N%qL8JjJF coolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@novell.comcoolo@novell.comchris@computersalat.dechris@computersalat.de- updated to 0.29 see /usr/share/doc/packages/perl-Want/Changes 0.27 Thu 25 Feb 2016 21:26:04 GMT - perl 5.23.8 breaks the hack we were using to implement double_return. This patch from David Mitchell fixes it. See https://rt.cpan.org/Ticket/Display.html?id=112226 David wrote: > Running with a debugging perl-5.23.8 will show assertion failures in the Want test suite. It's because PL_comppad/PL_curpad save/restore is now done by the context stack / cx_popsub() rather than as previously on the savestack / LEAVE. > This stops the double_return() 'convert CXt_SUB to CXt_NULL' hack from working properly, as PL_comppad is no longer restored when transitioning from the inner to outer sub. The attached patch substitutes one evil hack for another: it keeps the CXt_SUB context stack entry, but sets its retop field to point to the return op again (rather than its caller) so that the return op gets called twice (with a bit of markstack hackery to ensure there are two marks for the two returns to pop). > rreturn and lnoreturn are also a bit under-tested. In particular, there are no tests for rreturn in list context. I added such a test, but more need adding. > I can see this hack breaking again in the future. Perhaps in the long term > rreturn() and lnoreturn() should be implemented using custom ops??? > Dave M. 0.28 Thu 25 Feb 2016 22:02:42 GMT - Fix test failure in 5.14 - Fix test failure in 5.23.9 (using a patch from Slaven Rezic) http://cpan.cpantesters.org/authors/id/S/SR/SREZIC/patches/Want-0.26-RT112226.patch 0.29 Fri 26 Feb 2016 04:42:19 GMT - Restore compatibility with certain older perl versions (5.10 and 5.12) It seems that “ATTRS: lvalue” doesn’t work with older perls, but that you can forward-declare the method in Perl code with the :lvalue attribute with the same effect. This version of Want is still broken with perl 5.8, for reasons I haven’t investigated.- updated to 0.26 see /usr/share/doc/packages/perl-Want/Changes 0.26 Tue 28 Apr 2015 12:31:17 BST - There is a new experimental option in bleadperl under which one ought not to use the op_sibling field directly. Quoting from perlguts.pod: “ Starting in version 5.21.2, perls built with the experimental define C<-DPERL_OP_PARENT> add an extra boolean flag for each op, C. When not set, this indicates that this is the last op in an C chain. This frees up the C field on the last sibling to point back to the parent op. Under this build, that field is also renamed C to reflect its joint role. The macro C wraps this special behaviour, and always returns NULL on the last sibling. With this build the C function can be used to find the parent of any op. Thus for forward compatibility, you should always use the C macro rather than accessing C directly. ” Thanks to Reini Urban for the patch.- updated to 0.25 see /usr/share/doc/packages/perl-Want/Changes 0.24 Tue 2 Dec 2014 10:22:39 GMT - Accommodate another bleadperl change. Patch provided by Father Chrysostomos at https://rt.cpan.org/Public/Bug/Display.html?id=100626 0.25 Wed 10 Dec 2014 19:31:03 GMT - Add support for the new OP_MULTIDEREF Perl has a new op, added as a performance optimisation in fedf30e1c349130b23648c022f5f3cb4ad7928f3, to represent a sequence of array/hash dereferences. This patch adds support for the new op.- updated to 0.23 - Accommodate a bleadperl change to the optree, made in 7d3c8a6837b55fff0e6294ebf8c94a1601367c76. This is bug #94086 for Want, and bug #121342 for perl5.- updated to 0.22 - Prevent return from being optimised away by newer (>= 5.19.7) Perls. This is a patch supplied by @wolfsage: see https://github.com/robinhouston/Want/pull/1- updated to 0.21 - Change tests to avoid the new warning 'Useless assignment to a temporary' added in 5.15. - Remove a test that was testing the behaviour of perl, rather than of this module, and was testing an aspect of perl’s behaviour that has changed (bf8fb5ebd) in in such a way that the test was failing with bleadperl. - Avoid leaking the RHS of an lnoreturn lvalue sub, thanks to Father Chrysostomos https://rt.cpan.org/Public/Bug/Display.html?id=72083- regenerate with cpanspec- switch to perl_requires macro- spec mods * removed ^---------- * removed ^#---------- initial pkg 0.18obs-power9-07 1614994764 0.290.29-bp153.1.170.29-bp153.1.17ppc64le-linux-thread-multiWant.pmWantWant.soperl-WantChangesREADMETODOWant.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/ppc64le-linux-thread-multi//usr/lib/perl5/vendor_perl/5.26.1/ppc64le-linux-thread-multi/auto//usr/lib/perl5/vendor_perl/5.26.1/ppc64le-linux-thread-multi/auto/Want//usr/share/doc/packages//usr/share/doc/packages/perl-Want//usr/share/man/man3/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protectionobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP3/standard/ba16ff417532d389277b530a0750e233-perl-Wantcpioxz5ppc64le-suse-linuxdirectoryPerl5 module source textELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=e838f65fc40e29c69823e03ddb6dbd25845788b2, not strippedAlgol 68 source, UTF-8 Unicode text, with very long linesASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)PRR1n4uAutf-835da5941912f3dee9692ca5f0b75e16034f3200447a3ace61f2404bf476d89f7? 7zXZ !t/ᲃg] crt:bLL*jaf"7i\ꌃR|[PU wb\:_KDv+O@Ө(ɑP B_i, 5 P v>#:7t ~ DN!u\DP󖦱mY>ʁ2Lgc2@e I!#fzzTc4NOBu ](,d.ӈn=i9i^ zz1ym|5HKn5hc?ŖhQ5 [ Mi?SL6P3 a,^R75 缓s2T_Us}`i902ڹVZjlB x&mD J†deAfS o umsjƀxۓrIoټB&qb 8wbX Ui5^vp!]1Kh^9#W-$,1[ɜzJW,ϥ-V?hIhJg'Қ *Ak?|`=C;@]FEw y7\DJ^)?!WG H%'(Wp||.O0mk&%ȑԃj#wS #ƍaj#yi&6`C}OL$3lw-vlt.0or6MI } d:S@#$ɜ̛{ŔУY2hMgre'~%o|!:`{p[M}C(J`!^s G@eS9kH0]֛szxon#ݗryHWDݞѵl($ /B + T"fpQw]XunƖ~Ň/AZe&ԏ/C5ݯ6.)?+ZMs't~MҶO#ӓ߰WcP]8uPIW2iG40ƹh"~T:УY+8b TW}hw]JK mп}ל+/uAeo+L,t}SUй˕3mjvNSW\Cc*ڇ 6@Ɂ? %_ܬ rA,kSa\c96B'k*U2E-~݌i *aM@- T2<F]EWY]4!?riay >@6a[73|`wa)m-F;Yªh4*Z#1.N޴.}8[`ꑺS1*ggxzTO%j j8jy.L<0: =S狤Yt']R dR.{ֲM'PxjW1.a Im& ؔ{I&՛YﵳEf=߻lmOl*vh9j8ӏP0 ZSefGwplRĀcIw-Cޣo咍5MHj)>sTB~ :D:(FfǗVyӁ*nсHY>7t]QÚa੍p`؍ PHq⚬P܉3'0n0$੭H::2{Iz@ogBϹt=xwD8[4pO V:GX5 ±C]܈Ɠ)w^ݵ_>YYߔ2# ђ_890 2^}`Mw#sN]ozׄ>%1uys]XΦt1md4_ޑj*7w77%G2 wy! [Ѝbh*kNIl9!k}Jaot=<}u-qSC3_Wrb̏'V;C9dY8{?=W%|&,ha$=NekI3X0}; Հ( /}]pb?_s̘ː&XW*T/6Rh&\H7\Hro_QO*ٌ gfHSxڨpsH %y%SH"W}d./V:[mjT8wAÖx6e4TEupBrh}v{`\ i&<on*Q跨eW˱`Ly= d[r9PnK%.qL,pA='JQh%cHx\ݴ/W%Brd0cQv)Zi&g)ߞ]l5C8^hgvUd50h8+1=y7g]fCRx|D¶T GV1wTj,X/Xۡ&\oGD"Ze1RW_!D,4D-)e y13q$P%dHɌ۔TE !%^뎵{RQ'7vm}(w.o`GF|McjiЗ,1+Z_Q$7YJؘ:S3SE`SD=a5`f706zXs;[ĉ=wPЈ_vhqY63ʞy/d:J9߬\ye2'+ . `?@;-C/&Q@c2BqC G}G:f_$مum ,>UڹMW +k{HrNZT1+12#0 mgf Dv5S,O!:qK!+K1? el(O(MJ9UH˂})i٠&@ātO1u 2(Q1f1 N򗓎pĜxϚ婲~C]g~0$[+ MV^5<*Ut?z-Fş[,W(<ρp-%tlREQ44fXMCswS9?uXހዜ;_m :K]Dz/%I[rQ+]#B|ͪI5Vɤ%S6"5*=ҍ{駘"d1 Fg^½}9G GAF Z7W ؓ蠁E˛^ < Z1+-E[D^[1B}u2l7+vBB '[H @cPnM-mK沷]>pѣA9)d)xI/ vfDtKG ^iH #t IٯtcUK1Ehe6i_dQ bF<,ϡrd:#ۢOPîncW3/u*q^THJ"SUgۆkk)CiUA#F&نXGg575BITS~Ϋ c4]MEYH v܀#;(4ɈG=3~2v]5aJ+ Ŋ 15_x<%T -Z_k8;O\PюG}#VگgJ] `=%lP(7ڍ\(\I"L˲P׍\z%Pub#)Qnd,f ?o39Y}4t|`,PF, 申1 VNհ7rQ4n4y0T9*F]^-)İ lxumi6M&_^n*c<[9ke&w\L(bdFO!P_^da'$A4Ul([ÉKrB=\W ޲'#98Ip* an-U:ejpAJ9\lj];9]Aw0 i(IĄ~ ir|i*l'Uc[wۣ'z+zΰb>F I+4`zu$׷Rr/_ G~a| 傊4JDqj1lcrڕբLglohtós=a< tlTű|$yPfr^'8^ htA^AEh 92&xW(hU,Tɇ酎kɻH7:'e3`YwzA(.޽EΘ_6mKp@ph{o9qtZ<3ӉM-g!@QyFppJCn(E,*'~Ua"E̐prk|bo#O2N<֫TY7" &ЁNщ%•)ZǰTrg" f77sC|-Z!I*GڷAid>o{'ʃE2g9pTφHfC*U!x4<`ęūI&|[T*W"ϻsgxd*#}kZDF s"@\5Ra ?t u:1XFxݶ݈vEqAA8 :D$ѣb*G?Z2p(.#i@&KV2ʭO(Wx,ۇ4əGUuw?TTHCKjiwJL> ([A={<=÷P,@sTK=Cp,ƒNrϨ.u6|ùjq2ެ2mrN_Yu4 `~@fg,i oNI|0A]g9G0{ 5>U= ާ~?y$7Wq? |,k̿ezX,TJ [" `E|m/$,lIϐsNUMك9*z\0*Ï'07K<[UPnw ڦg'Uƹ][;pHb:3U0i%('>M9c1.qCD7o^CG9]fU}o ^x`w +u$76&n2Xw2daJ0&NBiOa6mals Rqә2^#Lo4o[ 38Rk.W~`1냓'%ŝ Rci^oH}2)1i)KI,iIlq*7[G`r'i7Xyp]0*Kl Mc( 2L+B#J*GIDWwreR)<"J9 zV%H }pQ) L:g\GbG׃o4Dȍċj9c:ѐJR!݁ Hm!jp[?_{dד\5,lJO*o^Ɉ#<Toiԟ4=_ +s1ɦo3Pٙvnh!pخ/꽰@Lk┚T  x[JGXr EB4M21H&&X#<}o;U6U=Q`Oʺ Lu[?~Ĵ3yxM6uN4`ȭ2,Et>Yབྷ!;B<ۋ[GjujI#M@tHf%5[ z7#n%%"Y]DkyBA1j.X5€[ H:C1[d6x)Jg'i/qLxfg#L,l7^&+~9ơ\y[k t1m[ knyVӫS4E؁{';s⟣D <+)÷јb4C9Qm;QLĨ(yp;R++F>il??f|Y(ڳ8-Vq:Ws+[Tiukz TPA-[>qc&ƬY&~kH <F@śŌBv"9i@<ĥ720tsY&-X@go`8+hQR]_o F~ֵ]G5xb>)O~m  O/]JxF-|M>YR@|aŠԸޟ9tt7,7l/Ty{ 7@sL:@KI|jQGKƣݮKi Ih/l3re<E#/ǣ)AŴ8Z| bb*qqtYW,9rJ0ư!\]  r&उ ާPYr~OXd :Wvx~èYS"זQ]}q9aO'33[-&,s۔S^㫝dUnizrOIA -3yĈ#o"@.%ESc>܄&G SisrAl`m+k<-O6&~#&3a(d U w x'TeعzU*f,dJ,:r)h9lx h=B䑁B[lVOHĽk ) rpc[mLXY §$%vK%VE lJt4?DmKA`~V&ӐbEr6nLhsBQ?!w7LI{f_O̓.O*NaNYjfiA"9l^ sQhAܰG ћ ]O&[[уȀ0{Mt 73sT[`t/6BaʽeKC8kp$(9;"m KzXf3cM2f+mԱ'f2h!Ѩ12t1t) fz1ixxDv$$m!ui3ss)̭LF>sW3-~oȇ:S*j8Pc1- U*6,|w1j#ϑ$o/sn}; EaU/U3 ;^),F-ԛ9NW _֣anJƀ"I\$ϻ$>)QKED|~sH܈6r)]zyX؜BB~B)aucVZw%>yNDieNWİ5L?!Ad6jB75Qﭨ6|n&$ZIzs[QwhXCՖtQΈUti 1;G쓺oǍ&jo<'y9f]1bl+AGԺ\LFQT^K}TxQH$NGP&'! 7bo1r _*puPau??>ad'\WȘFžun) D}^t dZe shxBTD#`9 ߆7^Zz".nFI*Nz$6535uk 3̓e &pwd;>dyڄ_BVZ_fnZ)~ZKkQݐ*@czΨ!0}s'ۇaw/`-8#W8~έ>00?p#*(J%*6d9pWäC^RFV nWkpT3sx:8Q"Hx"*ٲ!Qrr0/=_^ʥ 7HA$oL%38I*+nClENM9]ˉ1!敵f'Dhz1tܓ6fca#@ 侄9xN;݄׸h$۫tBј~ d|}xܴ(1!ʁU497=v˄4'?N0CټN' a,&>kGc 8ȭs-|J Ҿƀtܝ;HƽjNۂҊu3I,ޱ&ם!7>Bpf9ϙZ⿵(?g.T)yVI [_az f:w7#(xXEéӸ-Q\"dw9y׎|hN Pe !ukRq=:Z'tH'@8]߱upaeDU(ĔּR2{}sI"*A 7TVg.sB2A2N|鏔ik}_ڳ`j03Ȏ~91ѾKN),OFBmCѫM:& 893~{xD=%hV})?jĀ>wqWv )bׇ5Q#k>:.1UY֎O1F-.ؿ0{o q0K}7vٮR 6 7jvz/(Pm?A"0N*'TxU[FP$&$Fh,IGM$ta\[.?[fj\':K:{ud&2.\'ux5=p"RB=4U+ z!ZJg`aP7h6^[a}֫em*j~DfNo %*ɐ:.H([MU+;GCg`]i.p:[P'X*ߥ|+I{́_Ti]0%31E 3Ek%x&O jQ{Q{0nol*=uA޽TE_%՜SIFdi:ro)۪P~̈́T'J<tAa$E5Gw?R$M-uvB>KMT@C.)B;@ ↖'w͛u%x .x prrk4U,Wsc׻mZ虨a \:uhSa|݆۱S_@R32!ЇGy2{l)(}WE߫kBYT/@ͶM "wyɜ{J TD7\=b]7 )wd2:sϢo{=0pu;C*ܸ-$nQUpmf^R:zr$E~v=av`|\ʖ5_ (˨ +%2VnMfa'Rwe#P泹 %,*@NUBRozk)_lSZlTӊ(J7 m2 vm+ .-<, w3QFK}ra8Ǥ#q\-⛠[dPL+e205?#c:+ x9[ѡ| _$DUd0A?yu' ,ʗ2뗷 jR߲hۂvp'G+.tq]9eO.rlfOC$Zb1ͯm\Ks?7{Cgy6T,|`Q]<"/riO6gz̎}Xmg(f$'zs.1aaQDK3R]rGCO,Ϣ'Az:#^Nױ*(9{͓iQ/9i,N BX+X/q5bIg8 Cĥ[k*3mˠjScQڟ0#JFE5v ݀~EH\1"$_U='Gmh)\ǽ1VJO+ N9lΒz;\qLdwɬœ5 TM6 agG2o۞k\]\ 4*)'6-BdWq 7R63Э$yЁZAFԫVRjhjbqzm%j3~V]d%T* rvRl|j)faQ8(N8ȵ?1'ǥ{Sqǭʲ/QP t\S2nܖ^q1|iZi¥m;sUȄg,W˟5D}2J>ClByv*?}-v6&OHac94MrfhiB $+BԽ=Kލ~޿g+].XHM&h3'K\ryiM$lo%Qt6ct/).tށ?XJHǨ=9 tx.8 1ak:L-T-hWLkDP&Lw {! WaV: % З]u[bɛ2 9+ -WH~mrG(ay3D(j;c"' Zo^a?mI}dͭ mR8,(QAOva1XUj8=;Rohvm˽Y&z񪵀.P6G(r(ws>Ӓl^ 3ZX\0Y3G80AAmQ"Hа Xͦɭ}+3ݐ3!jیgS8DŦׂE\cEc?MwOd,{ :NPMQ?̕ MbCDraFH>EYPT 'GM4H1#>nE3Jѿ2yih鮴Q҃Οky0sZtn>y A@!B[K& O40'NH*t1#"{ DUk-*J"خIfhV/$G?ÔuSʐr?ֽ)YxNOd!rсAJս1KaL13,Q!yVLaP*듘ό2Aʶ*u=[!ŵ˧wSJ[Qdž\kZiUD#W5p@k-d]U:䍾aˎ%hTH04|?4~[6lys}˷*vN&emTD d-ϐ1 QZ*yEW,SogYlز_]zR]}S*,mPKY&nD=Xz 0].فtwj(tKu=a?P ̀NH4mEq{ EY;aOߙ`GFqku|4 g :=IWiw 3&U~@^/+r/LgɌkVRa6k9h(uù#/akk`>9?u*| $ =иK2 $؟ђץC`-1GܫvwO-EX&\!î! g nlXXd}@1oc>Zt" 16.\-n26??#$1 ۝q &^ <:`H$a/^>gG۷m.m%P!~L z#eR{/$bi7Ԟs2Oz$n?xAYi_UoQ"j˲Aems*k {(84 PX CAUT44x6n# :9s%&Z56N ͈9ˣc)J63t~>?5Ċi 9X|ڥQO嗸 W+ 8ibV\'~͹ZA*&kyQ_PNt^\95:b=%i|FN$j8ho6VJ“QB3=\yzW T+]wF)qKv0vy~ /l)nB[(?!FhI3á[tIk7cxRa# c&W z P<qHU-EՠL՗9p'zTibgXE\E іRw#_BK X֞{:G ~B.tF`fpeF~G9[%b0#Y=~ fY}R`W [FW*sq^s:n3%ccp$Q&n ^Xƶa[ ߌ@vϢp ]ARTldP lB9yӄ9WwKbJ{i:ɗ 7CI}.6:??ƤgU;DbɊ\?S_ zaPYVQ5^u* #$ ފyA+ZZq֐p6 )) K@50ciR5y%I1_{Q{`"A2(k($㲹Nƈ 6세=u74뗀cRk isZ&Xק.bW@ ̼v,'|ўMJP̝9*,a?9Zc{'=ݻX?ȂS3F¹".z99;Iilc ][lbV||j6Ny n+lBF7',-3_Ք( 6p;x]98S߿26*Fg-yyCc6OWZ{57lbK\0HBYn]6;M(F|0R[JxqP|B-p%]L34+ϼWgWBI fO*.$nwP-%Ki";_R!"A\d}'+֥fw.vO-Mzlf*7>469Nr:56#gTS(6!6e$ E/' M8?G˭6B˜W1;2&BUY1O6C:(%64tV$Kem Z-$Snwhx52PQ8a\ zW"b,^*qPZDa7ڛ]e7O{d1rAFMD 9r e:mXiȫJt0\s鉡Ï]{KH^p%0^ Yo21$_"W0.=?{|x=W\1Q:I5w1L̈́,j>Z?9 (?~N /L[} |@n|Vc+^4y]{4.ܐWxakd! DVbD'>'j F>ʉ6:rO\=-z+pȜ)cC}px$gnƞgؽFxcA ׈wH9bE< #Y4M"B~%$>Z5%{ d)CP_E _`HL|>f9N6C0_)ha^isq_p\Jilwn; ߲ϗ_@ݪVIfa<9FFJ~ij1yTnHZ %R8k7p/˩IAk5 Hް(z$4bkx{vwrHx &jdu(g?5FdT׺aŽ7; k:t萰1r uoOP6+(HҺׁ 5brAskN3 m#e9%HhI/1Y7 VCr=D|(DwÛkal^)+ (GCYFMn O]ow9DM<]E\4cŸ/pv?.[ck,Z&4Mm۟qe+tq%18U92:^d*t]t$M[jvNM _=y G-(bf UO4 ʔcw[ǗhkP5y;tp& x+l,",yŠm>Z%318xĈD"v_wc&IH^\FdU(uA,|Iκ(U{[ MV\.2r`*' "IRB.|) @oWz!myPZ &$t|A:Sz=gaOh!j_$63spidQ1s#k˗8g%ǵ{14>ы<װ,hm[ ;&\F znAP0v3јm1`juUr T3BDܹ&x%fNf46,{|<O/ }\snrxƈu"1\6[؝VHѿ:{YNJ') |m&(I5!.JQ,!m̏"C}at,W3Z'ʸÝzƔwk KbM zhtwmC?^E ymu WYaf}c^j@Wx^PC is/\^ɐPjE3#ApE1GZy=6e}93pc1T8s6~Jy.2x*,h[0~Ğ >v՝^>(ғAa^kXNjX'.ݙlJgEy8N};O\.[!exQ~|Ia8"B LOh #=2]ocd[vM71is_;_ z- +J( _ll{!^Q>B[ZsHlG3C1QфidqOZ9eC9|Dt4o,գ[[ =Ά0~:;ԀJ`O̰s?Q:ƒ m^bKL7(Vl1Ի $V(C :p6);[.J>ipgU10,,Vn܉2?dT/ʣPjJ Nr#OjyeE_d.pkd*BLJ7i$=J j r@ް4 ήCsBڍua*.9({Kص 2m}lXXs[m:ʮ̄HIڴ|+j *̶'6"e 4/Avns 7IY{ Pⅹ,6pi@V nN"/i,F V78pR-h:'Dy2e2}& YT&#@a}r{X0gF])e/׫hfv#ff Dzm_vQ.QZ9,= 1EQ^B!pZُ0|Cml{sROѵ`J[נӚ!*i0}\$k|OD )#Sܩ3/-<3>DOpdq>v>aP0/{I;XNcOXC -/ G>Oou6hO}0Uzee,J{xhM#0݆xhjţTڲU.tkܢ̝죀棋d}R/TДNS7AySAPd{Ƀɾ1v0H,n±7a bԐG$Z7&N"i3PJqf9A>!{àv!F*/"lHJg)21A2Lf]gHz8WVΆ[auwǒ8rsUf/,Es>$c\ `^Q^S;SOswNJQy5Ioh>CHugn wWeWnZ>.#4B.5 Vʝ}Ĩ)dc.IYJj10,S؛;JI2 # T ssX;{\M֜Fgj*0Y3n>oaau~'ֱ|Hhyȋ@g$BSumsnB)y-iB=6s洡(OvRh[ˊy,f鏐EŵKy? `p\RKI q[pn d7{FY*ZxN_luL G2S8[c95eQ<1 *q.w^1g/'pVu;aZQrx8HX!6^9pΊ?3}9fV0B7ض|wR\r|Š|EDK\iw>[pql48wtH 1.UVC`&~Xo*xFuji> bjOԣ^=8SE {Gr~|2SML" >+޻⤎«;5k-sZve|FhJ䛱DߪI=ܸ lN-\u q EgqGܛ4$Urc/ l.϶~.iwcޱF3|,Mwɼ=KGM ixOنDjQ9H)wi9#3a=n ^o!?QkeN}ւk΍vC9{© 4Tz9 N<|Wr1-&T@%Xon~'l+S]=~otX?Cd!cI% ^1ocst{3,X<^q,ֱd~ؐiy@V)1k4W9r4E+"LR2&=~=Tad*V5ץ{sUjlv%qHaѳB0L:k;a ++sCc6<_uO ߁HÈ*;T$hi' (l$}E=@j돹Fl9!|]1[uTm׽scm8<3i۷|ޤ5f'aXW~y5rOn0@:Qz6P-9!w)9ъW0K,8XSk ͧ9?x1-i+*O fU91 R(_&v]qzi+pd3|8*ͤp{zྪ R tL9Ee*O gI3aw?+j K/ݿBb#!H \/#di&xu2DTW-p'kowd_g8I_EAr;krc ەk˱:wu6aHsnCl$ S#^L4np$ད?_97DP!fSq+i*Gh1ёvGA|{@ӗ]gNq|+t m#RN|H>M.l Ke!c-T*WC]YEF|!ց1/@ZFt_7.Vrѝ|r!1N9nQd672]ƛ TZ)¾|N*FM,C`JH^Sq8s_݅ |[}=wVpjp *H'#.iA LP6@Kim"i$KNO)abl| SUbbvtvEat=[1B\u V1~U,2XN'|X<u0/b*QJ[`#FLK 7Jnߞу]Z΃9)!H݉5+VLJ@wp X2 AP$2 *׏^ɺ|)6U})|LCx~#=#݆ OK @>8?&i? a5)iLɏ4Y8gĖ3?9z[lٌ:@9 f'Rw3[%n`Zgpc}ְc_擏yBw})YG %(Z>N'8S,갈-`zWlS<1ܮ Gm`WR:əlF*IFdz}4fNp{D{[nK4TQݏ\ET`]#m9(ѩt^m !L}A:T0<ʼnn:u:*S Wb|cl!mB4oH䰡ityXs8![ZJ(p-"OK,ezou.#쥱h}DNk2u '/=3;?d|sk PDפ6Grɗ7#!$'PQui#{vWo{][:0gw(f4/Zc2?Ѐ]=r<~0+[4|a0\d4qISY*MM:ҮX#g[fQPTϢ:+e~\P'LeR;9E;C/S'X>4}%iȱH*TVYL YZ