perl-Want-0.29-bp153.1.17 >  A `Be!M@eeeWY93B[>^dURp&l'NOܿlĭB,x90~afrʤ\M'Qzc+nH! TC\mԣ@[92AëN@,+'idYaS\&oj>QZ>IlH8ҡF=4()Us[cA+oJpǽsz &maCv*1f6e9add10b4521b3bf756c9d111f83fc131176f8d99284c8aa1a8d2f80c4c9d4cbec6e35be1bf6dec1ca2548494bdccbae2a2d3t`Be!M@eeem4-h򶧊bj]= V@0GzyoWxRg"diZH ]:|O ե UX xd-cL6ۃ9ijV\ o(0>ÔĚ |˘p6~yGA"+_w.V2P$ե+F Yo_zAǩW9,g'! p6ZAs5zj8̜ϒˏ?_I~#S"}c©9+>p>?d   ;3 Mh              8 \p(8 9 :j F#G8 H\ I XY\ ] ^=bwcdeflu vw x@ ydztCperl-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.`BSlamb02SUSE Linux Enterprise 15 SP3openSUSEGPL-1.0+ or Artistic-1.0https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Want/linuxx86_64Gg@ UA$AmA큤$`BRV`BR`BQ`BSV׹V?@`BQ499626f58f37590028bcaf56987763d41f218c50910a74508ef4dc00df779d7c850f03cdff76d2631b9e07e6b693603034ee76dc688714de66270ff571101c75d6840e860a31dc4a088aba874aaff3b53545fd39b3441388af9d573306f7edbecbc2fcdb4e00e1f301072f80dc850c87e0ddb73bebb1e71dce276f221acc5a7a9a7a76dfb9151e91c4bfc1ba7ae38cb064305e267c1bd83868d3134580853564cdc051e3d2242a86ab69822cf22d52e30ec9e6b7c8322d4b1bb4c3b8c030f79drootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Want-0.29-bp153.1.17.src.rpmperl(Want)perl-Wantperl-Want(x86-64)@@@    libc.so.6()(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.4)(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.18lamb02 1614993491 0.290.29-bp153.1.170.29-bp153.1.17x86_64-linux-thread-multiWant.pmWantWant.soperl-WantChangesREADMETODOWant.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi//usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi/auto//usr/lib/perl5/vendor_perl/5.26.1/x86_64-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-Wantcpioxz5x86_64-suse-linuxdirectoryPerl5 module source textELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=9d7742f44fc7e7aa9152342cffaa5d860921dab5, 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)PRRRs$#JEYutf-8a9474956289d21c37934626c67c4be564eb71df9268f6330873df5891bda0597? 7zXZ !t/dH] crt:bLL*hsS8cm|sIHzT1F=c8@ 6D07"cXz_ʚigjʾ%W=:Μ]K:NXcm@viK7a! G5mo1j^],?Dj_hLZ@%Pؾ.BKQn,`9df`{mGuBYbߑ6 :һȸlr:v@gw$>?a% )'abȓbXMX9*'èuW+DR`r}1q\J GTm,?ڻ YN8=Ƚ'csC wl^G=i D*!lu8B"vL>#d8ۺqyTW^(˨1#[ف抽e#(BVjj)17 . O펍a?E KɄJnF= ˯ZyE@ -$#ҁGIA}irg47Yy\ Un-\!,VG1kߪOSH bdS'8TR͐4ᖏ|٭ cy[>uM*=3w#S}bR̮T( ~WyJ:/:+5DOÅ&3+v/c@wbѺP0ƪG?aYv{E͆2y.6a D.<Vh)WQ5'09Isuo3Oc0SaLx}ҩCx}6}ݘt[Tcqm UVOìY$ Yk9f.N!j(nR$sE]-lC}vUt2d5xgRȕ\ΕԟFJڍpRO7x@OMuYj-#^#42M t5ᔏlHV<tpw)K"h*aJ"Uyϸ͵E+UON&j Hݦ `$;B"YX@/ӊA., 3}T"y%R=2~?c*# %~H jh #FS1 ЂwZq$3LX"N G᧯3{/ Hw[D 5b~cbkl1|=+Fy /;I4%s[+ج?YMB,øk|#~6 @/ߚ1qMC*: L^qF/Zt Bx VIɶ$m-OQ+r$WT'ZxPDy(хw3-/f{{eq 82"B5ʽqk$ -WE*:fNV^1j/0w_ mJL^w!q0Kctڧ1&%uBvV85/QSqở?X'ǬZ(S,KDϗ4^m!6nMt[V4ؘaкbOVe?[a IT$yd_sNRʲۡ깃?TJug6 n y,-b4=oDrl#|~eI$"qAmȏRpc.2s5h(wb4YY Ȩmp:2e"yiN ̫hqݓYEDۯ2[Uy#ajL)]C5Ȁ[AJR|[#y5% J@/VCv7`YimtI & Kx2ߍ[Wal!o}1{b љǶ.X ##QOuZ06"ÞFnALU"V"L%a(x%Y;6UHS2^W@04W9NܥW=/>οq/ck̤7La ?aS;muWřp)L=|﷑p0^'%5Rs YV>Js]Vе,0~_X !{=N`f`ЭHeXxyv1n %hK[4Clk%DA=+}CmBkzJ C)vu|lȓ}A0TD5 }2զf89G(/l*$2)ϴFFkR?G"BwƑ!%t9M\[4觫EkHyC]ƒ Ė 6%n*6`oT¼:[;W*zr0G簁)_~(A!"؁ ώQ ?_b U]$~wHBUQyӝJCV2tJ^e-)g(R8ZrT64:){-GyF+Ȱ( g4&t&Nnuޓ_8*~tD`zΙ~ʺvXzWek#{5;4 |EK#iGʫ leS% T5!ȭbV ;s'òtİ ߭J'KN-40B&%/l_Β/R[T<$^z1t>FP: 6jQ@~ 4kgM{x H^FyY `ޭa FCQ ?/n@yyjⴈ@DII>{7zLm MqPh.RTALCTTh1xXQku+N䈫tB>DU^D'4 csd=+xcCas=)>ʉkv GX,-.ko$tTDuG#P e&$1w:'n/0UsU6r 4A]b^Aʙs˭Z;2;> u{,&rTbUΠnhI#J.%A,sXGX!㐎ƽk 4H *}6[153;:r!vN'Acan*zudVmvgmA%>YXZwEo =Y`E)^ 3lU`I*\xYT59QrLDygMzY4mwvud!J#ʼde~aR/o s6+ |HP;dӕ%4*9kXސI2^@PD;c #p]6ۺGG4܇lUpCZOpro~5 "HOn]eS(8jWhIy_6F:V֐Kvz.oo(O0m+ΌrTuS? 6=ݳ7Z>ZP}Z)=]!~jE MSw6\(YJL_ aDP xfNr7{JUjP=W8,u\;k^n\!fP!;ʴjJ!7Woϛ6BpT3؝a^O~N$ r+|MxnI}u: Osn{<ك8hߑVwt? 3*J֋ofʛ %ړVȯaudi9T$\-~4!o Fқp^"ބ^k*n ώ6 V߂ DJ=d33xhIӛxz<߿`Ű~䉏S}7eෝI J-5}: kőB9p2[gI}_5\p&r_ )糂àtw焓|uBQp Rk3x6EKQpS"d߭L5 Ї! jg’3u4$}hPDʵuPZ7Z<@u w7rnTZYq q1 ,fmW1CXQ~7f+?1-T:Mwլ*ˡV愗(Y= {p68G Ds0 ݞy&Z6͌糋ܣrrT5r;YQ9`|ӂ,;f8Ҋp7n6&_xJ^Gwi-%ЊaX F.31LoR[3ZJvilY$Y.?P}ǪtiF#zwjuH#yzfD'nFQ. 9Ҏ,{ʌ劳0~ld Vh* ] {]j|PkLe\AҴY'!KRMC;t*G4 W~SJrjϭ^bbBS`83gOnEGI fwRLO;|@.9ʹ@=}?m6̒!HѤX~vQA_g¾;(b ?j7 IetX̘*) G]J0SOU. `S;Bѡ&'ΙdCsy)ϕY1jQ9/w쁁oTr:,u;d/gpa+) yk8P4Rb΃'(B% m"Oc)u#G%-+8jBޝBfXT i) A^R(ʻ!#H!U >,6Ok:˓؂kPqYL@B"8(%ODZ%̧ql醙g xK1SPTmTs2Qj/WF:vԁTFۇ뎢z֫mc- / $ d 'ڥ2nuw,WtCgV.aq%Bf'rdVz Ah7\nI#nAحW M/م|ߒvso唵ƶji-P h\fVk/߉Ĭ.Ҙ{gɼ8d?*k'dMSJ5&S N !HJ xr)YB2X:Gmd2a_2x_2 Y߮m!~S0 ҍF9GPnP<y;2^HLK<_tU>Ȑ!СC@!Z&];T6xL{ ؉n/4syԜ[Z:.Wy !8&gׯh ōЁqf΁@t2Hɔ}68ቆ2Dh1^D%l $he, 8b[)C}ʿڅ60 9w@W: b]3 IWD* G8n!x[) ⟮ɄJr*+^[R뎄j*g 6Vx'38hHwЦ# Lz-›2oOj#d  TV`ߢTjq+|/p!տ p 鵋X$MIRxKiLvHO0CJǰ~q\0pyoPY>CexљPN9\+HqfK"nm&HOH„ ѦbH#+ rbJS!0tLS ՕjY6ꦐ{j"X+_KjWCG85'\b+ . ] B.Vgd-CSNCl&KG6( #Hb]% E;DG~a]ʴsl20TL4hٱBTk>,xn*18@>:ĽdׂN̽2HBaE?vGq% -.qc) -L؍dEUn/1sQB~ ǸGR<%wN__ )p}ԁv W6o"^{Sp<Ͱo#{zACJd%I-\$s)\q( Vfʘ{WIuA(OE'oZ/ ;=66`FBβ*$2yiWK,vh3h $} vwWAS^&7Xqe۞GBrq[ ޝbeštoN8.CQ8" d]:;e.6|vlJ/Y拯MSF_[oq*5lْ<+#p@"JL}1R10qIJ!t.!WnT&2ҰOydR̈́?M^F.r2e'`C&s/SRJr0VErgKX0t`G&6cP]r3-Ք ^EjmZ@no.PbjɍUF썖cī:hr 7w:K)G@RKoL1w֤X-OL#^0sD{)fQr.I1քeO82-ۙM%^K/Dtnu _db%HﰵP-hZY(:XoI<4xʉ!|c*X1j !ޏAoKIs`oQ32K2}F Nޞk} p!M li|]>,;H\9%FXچ>Xj s^o:v/f6B꼎 3ܨJR'F[4| ݸb @ 8=rQZVk1ړ-Д9wiUEӸwR8uOQI"p%^I-cqB+ay7IՒr/D )rT2/F&X^dQvt wfR> C3$FHd? ^='PDƃpzxGiX( ¢aN/Jҍ()NW!H 'M* >):&V\|tڴi\Gn1p 7;f.IҔ)HMgb>Cz j9Fe4UĒ79)#+PU.?95dN|1Y sYH?,pB(nfaL#dz V:Mmj{{;E宮#nBvX],Ivy<GqbsK kO̬b~ur8>G u4k^atAAh3dڒ V5RW#;&˜gW+o`~F8vG IJ(Rc Bo6 ^g;%Vz@s\JfOzm+xa0NoaFVjٶηeHYyYkr$×2EB޽3XY.lSL3i}UG _ h״;%sZ L[ Ǧ~&W}x"nTâ?._[/w~?˫yr[ ln Π\Ť(Rwߤ]JBmF<+ /5h2Kt-RZ?Jj=?-ayϼ̇wv.yܹ:w*W P5UQGI07ISzR8ZnsӧiYܙU vP.fBRZqaV{#M9c4WTkDhZ1("pϽCUg")=gWkvrTtFPݓzpm pz7L쏋XyB+/B<н( ^%$o4|mG2e3+cC$T+a P{1 `;C g0ňکwuiYSupU5$.'r2P:*?xW Vb,OfQC0dr)<#~VeCIYvݻl[}tg(/|JLa 'NBKq -pSJ G-{n]<&2)kw̠ϦD +~b ŻX6@gײP#R.̍g>؁/PE [~?M4cxT9@l3_ 5#lcn9d2d3&U@%JA+{]az</a1p,[ (9Q@92J)97<Yo<_;^E B(oɵ(51)x~묅:#]U&qpS+jow.Â?zLXBhRiv"* zd&Qx.,AW])ii Gq6^=֟lUgwƻ ^vǮYE~yYwt<9hQu_djB_"8hȺO6I%aDyc DWׂqE3DzR8e琤J}W(&}uvo}CYpt`(&,&\s-I ?IV\(/VC 3E(K}_/N$%ӷbW;6avj` 3!q%aգP  ö @GG:qK7ԝ kJU!7۝. =p°W!dZduM6E_t̓vUK6bFPI2 2?‹Wupޥu kw~Zw|ܶ\}I{CN-8{zё5r7ʐBe"íhJf\AAMWP]5Lfy]K4֗|mbpChx뤇C[_.b- [I_pY.&7ze>&98 T_嬔`;'ľ0{!v+CKJ)} jjV 3S\P׸_%Eb/W(_*FOXEY䯲a|盞LDcJdHg[> AO'<tE?mLIpWVvt @`AJ{n("R$ؐ+5sUdz#8f܎n{hɞnBbo5b_% ڀߝ@'1DadI~vOƚl[fJ" Jm-ֻڽ-wz3M*qY_Ia^".m7 kGqa4jZX *kOW\5n͘}aYEvz'N8 R>Cw*ǿ-g$pi8 )c# dV}߽Q`͢ӝĠ:7^m 9[>ǺCC :{C ioYN;٠MDvxUks z3#*$EV$X~9\6(u_%n C$oTl_55ΌR"? 6 .;u9V;00Q\6:" 7es`l'QI ߧ[i!򲴫%Pq(_#Gh($|߽c"*#3M\dqNq,9M.g}ƌެ,B-؃ |݋>LH\(tԙf  |B17@Mo9bϝO _$M> XFrumg C U5([ӊPq  ½3R(I2:9O0V 9BYH7&v雄[ yKmr% l'Nڧ@; j{_>h,Ng>b aL# o'ۿTa2'c69 9|%rd I5ķ[]FpҡCn n~?OLIwPn`#t>k7@]tNgy!QtglTPJq%ƐG]ԄA{1#=?̱Y2(Tq".5nV<ȝ]+y 7_RjyZaHСtqCًRYvt6hF+ >g/ z@,~TsHP3a[YFP?r=,Jnj3i(y7ur+fy4i@cigR>Z#4f|-eTxNь^C9>d/(fʚh5Ky `dǭ^nȾl Q2*tjOq}3kN$we"CT1SI|(1}.(8˱6''BZUO'$1`_/ Og0^ܨGNS|7[G/w/Xc | Ae֌*X% DĻG#c ˆP%&)sYCتMNGNrG j *7u?pR]{ѯnMy)u5O"Tƕrj8S-PGBwqgguV"ɯaI&e) y*~ D_&3;er9f;kxejWG5/5.7wk@yւ*a|ygr؏Rs }?:Bjl,yV,kN%-vU@T9i g$c-CNsB"ɯ"Wπ)~(y~,QR:eSS_\ukcƽC.YjoSץzj.ĭWf3tAM7m(R+XW[S[0sS]V4~5mYvrXj^-J(ZAԇ G\[J 6r1Ȳx6Pĺe8A{S[0:!p:?dҮ4 y¸&ucm1κTKX"tS_xz TS+0Q mlTcB!aodE&;\4RV¯‹r4xIžǃmx59 p#0Ms>L.<$j^0G#7iV)[S XM+'|6qгq8+hD*c dzG*(q#/<_J +b8~ Еur64XNx \N̮Q|%X~E6aU$@'**z]_|uPɱrLo`ߢlc.˝C{!(G&~r}}j+1V 'rSdn9^{j*mDΔ$XEm%3!eO[bWv*Tkp]N +PpdN \ia]4iꚣk/AZor GnF~J'Hܳ1ݵFvjsKР9{1M mg;(ns3VLh #iZ7m)(xp9)= 7`[O ueؖ(jI)H)Ҡ`zlי>|}o\ tսygUaSWYYy@7yc|CS%Vw NNFCd{ oScެ)ֹ_Y<пvK"U' kZi r5{@Wi2O(଺1oTa!"Lsh@wK\oEEn ݊PeĩT"A,EFlNy0iv{M9]w ܺ,*vHdA=y׎SJ/mקB`d'YBjkkNxC8 5=K-UWi߻0Q35 w݃Fd}%ģ@ YTf UH[F>1KKW:JՌ"713lOn"[<:ky1|A# aK[TV*XP#j_#t LĈ,1m;3>:ЙڠU(8Q!&n*:}<ʛo3-{ϥ[̔:|_UX1CO55l?~SX+?r_ <΁XT#Ť HTqΎpHjb _ y>({@).:+mWG"$_Ng+ f;OY(fn2QM/W,xzBe X$D@}3<ƥE~c䬡QFS 5'fB]izbH%d;5{/2\ɉ1Y;QCWl#ef V'-$t/# 8U@Ų; Q /OO*R*L]kB2q%;НڀSmafg#6nu,f 7G`J0Džz )+U`*~ÿ! N#K&Q&pؐx)˭Z}%0 m%;`U~!Ӓ ahVegTdO`3u/OKػ%We -^uMMipg9򿍣څr(X \v9 LԚ˺YrJY;ƊUuޛu:jސ8uaEPEiwBd[ x^F>;):o?vk$25zwھIῬ1ibr Myj3Y&CK >'_u0W~Npb:OyodY*mϒÇ_0ʋǏ~J Zݦ `;yGWQdb޿H`Q VlP dS$)t#wd%HK߿9EE҈ ro7#xRsjN)醡1Ft@"skZsFaxxə 8_z-wDw6t?e v:$;CImLż_ ڲDRrbW}yƧ\É2Nѵ7U4/#RW+dژ?ۙpW]**<9%'}~߄!{ˡ|e%$t 0j uԟ~I;#p8Y `".5:@͒K )C,6 Ltj>A"P4=we؁V`<; (| U sF_߿,X |"1rk] jN MvKadGV()Ac` wN{Z@r.?C[Y޷$ Edyk'+! _#TG}__1Tw>UI ttb`_<bկ70o3eb BeNQ^ L͵/e]\#2kicŗ-H%^?eǾs, ̵ބ  F3+ }[JU&@pg, 9xOi ˻uz( /51+1qyN:lõV&6NK`1 q} La\*kp[C.M"CCjiv,5q[?1:,]d[X_҃eϥy/'BcZk=̆+sR-ջRtޒ䴘p%'p6)V =Zq#4ԠѪT+ -. kd %cmgծ_<(Ȓg|.t{D('fz^eK8fʯ^淉%’U@ϥ"cbDv/’8B%aBȩbZ1q5E3 wR_|y_c )j)T j\l砨(Vn?}-dWxh^#qd O%XZ#y) @^hB466 q NTt7` X(bKÕAJNk䱤41rS8\CّMߧ`l{wæ ' 9ؤ(B/fQmzCRӴךe45Fw`͹҆n'P^H&2zWQ=rݾ&o N΄ 5%|WOe|jxx"_RޱwڑB =^ /C1SINJw> ϠJTA w!7-bN{Z֬ݷj mϒpgb2 o?z[*b,,Z [أVݗ7n($}M6r`'(v>{y!ݫJ6@g=._qDĨ~KfvxPbo4vERb3~K! lv4 ݿ. '˂>9~BH 6Ta jv:CO&4һI<*x|BjX>zf!/TIYi p/5MAق_G# xo Nj BpyΉѹmUQ~np+ܘ;wݠ> EI }PBit07 iih_d YZ?T?׈| ?bɍI}٢G/To4FdڃƷBr9Yns~M_Z}c rל@)+D"2V˫ 83W>j>hmO5ۚs˞etg 1_uUKqf+u']^9FF̢p_/b̝C΂B ֓xa%)R.?'Cѱcа 󗚯.{ض J~쁟1t%Uc&$uw"N 笷ݿ(i87EXk \<& `lo]!OՊm"5 /^aŊ굋\t"#u`Ddi`܌y)04R#q=?nVCpLR5< p:(~T?}|U5HaM C)M$FP`7AЂ"tv8(JXn|YO v$Nۍgkx$ MeuNOmiZ)Y =jC$2s##s&ՕK}!{iV57kㅍϸ}BhǒXā3c63{ː6^M.j$[}?J6 K|JRvx6N--G-NCtu_wl&#%Kgr &hP3`':3RxB31Lkt3BjVFӬ M,&=|EomSIۃ" )xm5`7,,uK %ed>m"-]6}0 W9,+cX#.F$apsBtʿ#v\]_60R0u}zY:YOr%' bEd3>ƭM3I/C֘\ntz2h$I1(hٓ2ja-b:窣.1_?y#zub6+OG#j"d!i4n8g6RkAYW7^AdyQ6.cBlLF*#HjC0,K^xOGNM"n`r7\P} BX\X5w@р0㺵;Dә)+]TB |4K߃}G+xI06}f"Ad S@B0ʎ ocLBgAJ_l̎x*) :pSRo' Q~ß:[hyKySr[&<<|A~wch<|T"?&y, ai;jK ByZ6_PELD,vw:rp\ZY?WiSu bp[=ݏ/7!s[:4>-l !#GM,:]=APOnL>0,?O:Q*<35}ׄNoO/l4dC-FrzP0(z! h/|I;La7/N3 zZڮTsבDl$C2L%Ůj0kAan4'hyfuS15|s|oGXgeGPfOQ0*cCj"g&] A\YMDZvY:Uz/шR6]BzyQDd %=WxNF֪lbr*M4T)> 3q2vK( aإq,饧!t &hJHkaDu'IJ¯[ vD ފή ;qס҃.YJ1ZH~KFܡq<'$閬xܵ_OlĠw}8HTqPTcl9̵遾9%?豂xkJ_?x h@ :)A%SiigkwS:i|J|rT{4`:c:B!Kmo^X$ooK!nV{-/k$IA%T"B@k 4&$7-쀶$-k˃hD\E¶\ D(Mg9C(7ȍ*v+L(52:{f!Z0v3 Ga PPoڒZW2.=!&sP]? 9!ZC཈#2SB#;VEMR9pNBj3_ $ ~us{6YТ YZ