perl-Class-XSAccessor-1.19-bp155.2.13 >  A dd[I%z 2F;M] _H 3B|G#)lb` 8EoO3EdC󻃆YBw#,$'>ՂArvcq$Ev @9IFP/~bWCőفe+O5nz8kP & 5aưl[Dtc:bRC 16q|XCJQ>& 6`'~ "*j:J@kJoGs(bh}TA\&H̉}B`w;4ܺVS-X;5>3\}ln&.7rag[&3aA$Yl4/WF-wNz?Mct4j+{zx! *(0]2d:DzRnq3Cx 2p dP>p>?d ( _         0 ^ d l         o   R, P G (h8p9:FGH<IxXY\]^ bcd:e?fBlDuXvwxy(z@PTZCperl-Class-XSAccessor1.19bp155.2.13Generate fast XS accessors without runtime compilationClass::XSAccessor implements fast read, write and read/write accessors in XS. Additionally, it can provide predicates such as 'has_foo()' for testing whether the attribute 'foo' exists in the object (which is different from "is defined within the object"). It only works with objects that are implemented as ordinary hashes. the Class::XSAccessor::Array manpage implements the same interface for objects that use arrays for their internal representation. Since version 0.10, the module can also generate simple constructors (implemented in XS). Simply supply the 'constructor => 'constructor_name'' option or the 'constructors => ['new', 'create', 'spawn']' option. These constructors do the equivalent of the following Perl code: sub new { my $class = shift; return bless { @_ }, ref($class)||$class; } That means they can be called on objects and classes but will not clone objects entirely. Parameters to 'new()' are added to the object. The XS accessor methods are between 3 and 4 times faster than typical pure-Perl accessors in some simple benchmarking. The lower factor applies to the potentially slightly obscure 'sub set_foo_pp {$_[0]->{foo} = $_[1]}', so if you usually write clear code, a factor of 3.5 speed-up is a good estimate. If in doubt, do your own benchmarking! The method names may be fully qualified. The example in the synopsis could have been written as 'MyClass::get_foo' instead of 'get_foo'. This way, methods can be installed in classes other than the current class. See also: the 'class' option below. By default, the setters return the new value that was set, and the accessors (mutators) do the same. This behaviour can be changed with the 'chained' option - see below. The predicates return a boolean. Since version 1.01, 'Class::XSAccessor' can generate extremely simple methods which just return true or false (and always do so). If that seems like a really superfluous thing to you, then consider a large class hierarchy with interfaces such as the PPI manpage. These methods are provided by the 'true' and 'false' options - see the synopsis. 'defined_predicates' check whether a given object attribute is defined. 'predicates' is an alias for 'defined_predicates' for compatibility with older versions of 'Class::XSAccessor'. 'exists_predicates' checks whether the given attribute exists in the object using 'exists'.ddPobs-arm-8>SUSE Linux Enterprise 15 SP5openSUSEArtistic-1.0 or GPL-1.0+https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Class-XSAccessor/linuxaarch64("9`v,AAA$$$AAmA큤$$$ddHddHddHRRRddHddHddHddORvP:JddGddGddG463cf1f9ad2e206358a2174c9490a7b006070846077141fd9f6653df05dcbf7b723f4a4655d944426c1f24e3f6a8ad0dd4bb4e54b108e749aff021f4db1238c6611b1d2238f52be6278c3fdc2cad72d6e69c17d8a60beb3b2b92384b6055dbd4c170685cba03eebd1c2143b82a178163ff715a4c449dc15f77351f401127284ba23e0e4ac262d14237fef86dd47cd15a22363682e3520ed8d913b188df027912ad3a0aeef3605a0846c72e1923352c4f4ffc62e20d7f1e9cf6f15e620d5fd55cebe28bff1d3979ae0c6db2c716060b07a6baa7e6d67f2b2222a0ffed87b585fddc0fd77d3174b749418a019c72b4dafb01b64d19f70979312bfcd6e702887967739c36fd2de02e9e3655b81b70d4ced84528c501f2844e5221e46c9af3d82eebrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Class-XSAccessor-1.19-bp155.2.13.src.rpmperl(Class::XSAccessor)perl(Class::XSAccessor::Array)perl-Class-XSAccessorperl-Class-XSAccessor(aarch-64)@@@@    ld-linux-aarch64.so.1()(64bit)ld-linux-aarch64.so.1(GLIBC_2.17)(64bit)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.3R@Q@Q@OKp@Nw.Nw.M6@Mcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@novell.compascal.bleser@opensuse.org- updated to 1.19 - Remove the OP tree munging optimization since it wasn't in the end really speeding things up. (chocolateboy) - Require Time::HiRes explicitly because CentOS cripples the base perl install.- updated to 1.18 - Revert fixes for implicitly-lvalue getters for now since that actually breaks user code. It seems it's not just because the users are naughty, so more investigation required. - For Hashes: Implement predicates that check definedness and existance explicitly. The traditional "predicates" check definedness. It's conceivable to also want a bool-check type predicate. File a ticket if you need that. - Fix bug regarding getters being implicitly lvalue by returning the internal SV*. Instead, we now use TARG.- updated to 1.16 - Drop erroneous MYMETA files from distribution. - Support for hash keys with NUL (\0) characters. Previously, these were truncated. - Skip some failing tests on old debugging perls. Guys, please upgrade your perl!- updated to 1.13 - Removes the cached read-only and read-write accessors for the time being. (These were only available from another development releasse. - Much more brutal thread-safety testing. - Fixed thread-safety problem with the global hashkey storage. - Lots of refactoring in the C code. - Instead of storing an index in the CV, we store a pointer to the hashkey struct. - Implements cached read-only and read-write accessors. Details on what that means are in the documentation.- updated to 1.12 - Reclaim compatibility with the most recent versions of ExtUtils::ParseXS. - Explicit tests for wrong-type invocants.- updated to 1.11- change license- initial package (1.11)obs-arm-8 1684330576 1.191.191.19-bp155.2.131.19-bp155.2.13 aarch64-linux-thread-multiClassXSAccessorXSAccessor.pmArray.pmHeavy.pmClassXSAccessorXSAccessor.soperl-Class-XSAccessorChangesREADMEClass::XSAccessor.3pm.gzClass::XSAccessor::Array.3pm.gzClass::XSAccessor::Heavy.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi//usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi/Class//usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi/Class/XSAccessor//usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi/auto//usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi/auto/Class//usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi/auto/Class/XSAccessor//usr/share/doc/packages//usr/share/doc/packages/perl-Class-XSAccessor//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-protection -gobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP5/standard/d2d26ed1d4a686e7933b641ed25ebdd2-perl-Class-XSAccessorcpioxz5aarch64-suse-linuxdirectoryPerl5 module source textELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, BuildID[sha1]=052d6b631ba63e225e89e32893ebde41aa25d5ec, strippedASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)PPRRRR *}UX>Uutf-8b46db5a87d997f2df6cb19161e9b5e2832ad290ee68d572b53e28c99f8e49ce3? 7zXZ !t/O] crt:bLL rOLL-^#󃄇c[f\a-yl=6~yny[^Yy> IUǯć{=\3~gtBK~ah:IC 02c#m4/_Ī`FfGU1hxCy@PEmB0diS@ԷvUll ?Tkm?24UB&`+#Zz[Sá;3w>9+1[3M*mk .|2x*5%Q$4oAϗ$Nqٴи-zhT1(RS1" v?6,kli?Nkm8;`kaXupu^qN2sI{/h.lv)'xE*'{{i";ZS]?m;b }te{8x"O498Ct2&>y>"~>.!.#W?4_n\UE_̘Ң _ KkB ;=J<|n+@Da2C*q_2ל4>6|I|?,TF"}KJ!sHI߾t V/D߸]4A$7>NC%$\/p_W%]0?ԂG+>4,%r~9u-sm`x,+`.%BۑSlUW.E{ T=lo  еl9>fpvl'|?ڂrīmxIm! y ADtO>3N@3\&VWEF^VZKYgX/]2L#tyؠxΐ;+B!i'yWj+絃m#}!WcQvDF:&\'CK#)I34H? Y[8.\XyougƎ׾|6*^q6Hݢ1,adhӁ̑n xI9=*dVld6=ۍDg~;̤E}PXc/O? +ZS痌Og 9]PTtlدC5ᦨ}#<&B7 *RPMMUd|誧ՍNx./Jl '!b1j`Ь3ѣ,*,LB\G!mFU Kp @%&L y)G8w$GN='!p>~6,\5NFTt-T S|MlR!|泃֭H?GoEBסS y<&/|]~Q3٣ƨ_b8萡FDd{N9zsM8C. KFEA!Akk)]Lpc i>Z>'XjWLw/xuLG1y#P2hrSɂE[nT/plPzQᱢ.Thc3iq`[ i7>.M[/`);zK87ADu8)--Q*G{c'"y?]ğ]gUy}ө" 77 / T Ϙ&؏KS kdiItn@#Cs!U*"2NP1;'Jqfwb4YR1-l:BLեbU1&;R*8nO4fLcJ=+z ؀%u~zgĝS3 , i?@Ҥ@&}j"Gca|o,P9Oݧ7GfFtQ6 Pyn t$ Ŭzjg[ȌRLfr Ak>%C ov:#.C3Ns5kwC2EC9"{Rt L*Jrr ;k4/>V.k :{&V6y+C$$O3 $gS:es=͉pn)kqHOHB1q.ᚭ5_S#e7 5Q%4CVZ*MW?u1S}-$䇕w'"0}H4ŏΨ6P:J\(>M}t52f*O=c[$V-=8Xm<mEk=~hVѽĦfiʼ4k"~Tf C1dU,x,ef=w_jY3>ȩ1! Nsx/ҍx"g&)9Okqg.YyR)T>bd'fǰ/7NԆVSӄ^)NAG 3s5re@}V9 E;sh̓O ?ּoT>;+J5r in}ㄔ]5sɭu/2 }2bQh18d\ҝT4<9t %2ϊ=Y8QdW~"~z*Ҙwpx$$w0UȝhR~x ~:n/=?*BmݽEX9m2o e|9f>( = y9o?sb߽R)}~Z?b&SLODUW<$2׸E2~9`:?np3^op+c9:2i ]p m`I!J4%Wer7yez(fYYȅJeږ4pSbڌVZt2YП4`8XqOYLN]EUv5b0?14jrr`D۟53*ɚ4M@jJ|U!H"ܹ&pH](3fhZ]RZ,p0ѿ"jBxl|ߪh+_B*2p5  gNz zImM_-c ^$9 WIJjP]k+3"c]LH3/m=K͐4yG96#'҉Y/F@.$n -Aڞ>фw "!"ǫkLW4c6 z!-;RS!y>xԙ/(:]d_}s+pjlEZiju֨8-jnBX #yMiґN@p @4 m~ Qyq|ǂ3Kz$~`ΩNc i`sO^/D_;m{ÂG< lF罅"ͿP:3A8e; =CќyNksCzn; 4}?񉱑kA"n=5ƌmG 3ٯKdOFxj{FXuu\a^g~Ŗc15i2tBP,g$=ʼnb#!IrXnxc^'s3X,a _:3?=Z-L¨ UT-jҨ?G_r`p5:>D;(x+*t ]ނgRz"G(R$h:qP4bU^lhUHxiοk)T? n-Qg=GU?F3 Y]C-rZP 񽥁p;xQdWN6 e6%b±H䃜aץ8W"rPd(W E=H'#aYE 1|ɣFO^=La'&qP-ξN>; ު<`8:DlGS1Nnp/G^^3w+Z wyk!! 4N2v_a1pݭXovyF1_4h\'4@T3!q4 ^BUߓ`DZU{xB4 4DL@sAgE=~w) m-Aj#d},{+3Z]>P) !#o߉b }:jX*xs/CYd89O$Ɂ=B[-(3-(+ܤ*bN4hi 'wXCtکZBy}90h!.|Dut %axu<w_ R y;mgSh]{%eRtn4[oei젷smZS'5%Ɔ^\. }bGkMIܹy|[)$s4>PVx |xoUtc%m;ԝ?8V uO/"B27o4Z*OHP1fRgDjaKSeUdkLHXaѝtHr;?eHc%q{V oBq$h@D#M:U` jf*W0$@Ō~#L|R)0;Ӻ"ꨝ^$(l >T[5{coOh"Ҡej82DZq5f;co?Jx=y[v-$zS_i8CE24MF$/2wciK½'</ܯ`P劎W'L7xxHI/AU^9X(sy? @>[6fs#NˆC!T갲A 4lr$ݚ~V:jg6VU }N !/b[/ЍsJUܨ}B? >wo/lWʕN /$DƬAxݍ3hnoϼ k1X02KfH1#|.ǃ5 Kgf1_8Ao tվz\¥iMwIRӽh'2;OrAKӂ]Ƥt'ԃ(7Pʾ3X`S:exKg)8@hԑ_Iu2lQmSaH6vHb#Z"jhN*ɾ@R,BBlه8G4 Mm}HuãSic>}\T,>U?dg!T`CTl#$p(Lf* t3:Q7o\0y%1 qݺɿ1^8}CMl=vmמϖC^7lGkU5EH+]DGJ媴ۊ 6$Š3x@ڳ<6 V: 48ώ4w_pNvЙ3bHy?ː6S25=v}u9 k{_H_(:lbT[RhC"!+9eTM(tym9nIAX{ $o00Iֱ%VF{Ԍ=p&8N@:Lg9I04Fh6n ëgvzļݬ}XgC:O|l9?zbSjeb[u ^||{!te`JJ:hIaG.'ű`XGT+g$[_Rbtgkf'Y\/:L8w"s<]<Mp!5Xڧ }0Z&ۀ@Vi%O۟"֝ʕf"GDlV2~KF t0XP)9WX7tA\]S:>H !7ҼKݰyWT)T!m g>s۟hL8 l"SIYɺ3CbqFJ`9623 `R}8HYLIؿlV龸MF4iVX_gپoƕ8nw O1U&q _an+D!=J֋.a';mum׭yA~VZ^k/ҒA7-Had)ܔ c މW C)T"A][KRZ?gom,M`=!3,D.Xeg*P/@҆U]b4}PPۆ X5'MM56.}4W!~O,_Ci7 "A:wϛi80]#90xti$$,B*qO{mڄ~v*輓$4B"՟TYxh4gR"AωUJ<}?o|&G}ylHSkrLkԺK,C^`# 1%!4A$#xb8ͥ 7K+qR~b2ZC!#2 G]g-Nr]s<Ŋ$f#5T1+/3_xךse е NAR- Ù0BC ]y&㔧d橰zI0/qp=BhY䦩KX,S#;_FBZ%oRLiTƠAm],G֋UpwˌPW[O2I7Vk!TN_<rsd w|ǷyutH6Hqr|D\_2K$=UŁ⺳}(kj(qaf~N,M̗݆8%zB&U[c:rSP01w 7@ :gGu"0Se!6ܤl34P`LA2ڈ@])?k*"MNj.PQq=rI]Yy.v7"޴yMLxxhK):;ɋ,_G=Cޕuv)AWZ u /v/"A*wG8礿m2R^B ,TSfto+ICXlgЇB/ 1$˹A11m г^TEXVH":1: jlj޷*2_iZX܇'@6h˹w=zE `R8 ,ztX,H=./N 59s֑;̖Z_ZFg 3i2Z1ytZéVO%ﵐ;LH 95~:[q5$O;91ču C=7'@^8w<5Ѷc7ū\J‰ S_bqRFgjQpCHzf S$r"w\WIfw3˼C`nE?mBXfb6^5OcpLS1m3ܦPgY+!KgA|!ӓ"olE.JN\r[N>^oobԫP2QSj7>Z{@a^|p2e|3dRƪlm{LhF_w@>I!fVāQ HK_΃Y$ɆDi1r=J/Q0{a_/5l1*>AA|9V6.< ]A }_Qk٪W\k:ڌU źT}AY]ٯɏ"[$sdu8]ߤR* xkqu2ۯ\4ˁ wd/vI`lssXx[7V }"JƵOY8ql`pCL֤ bTʜ6/6*U IPEL|BPÆnWmC&lN(ǭp0(Ԃ&&cC |-<2!}^.U"8PCdGzϯKb#TQe˧",*1Ql?dv?I "xa|NE \ 9ry/xUimFm`hL̝ۃX{?/AqE6hY޳ ~ׄx"VK$!xo0"#MTP!g~{OB:9w1?Bo&~|tup#H yo) 95 Db癄rKD=!xxn]֧%}wuUUPTz*Spq)ϣU7&D 7U%]YHu~BYU~J0*MN8q@7"b@fW@gR"B~5f=Cn&j{]dmqc @OfUc:)2Â( rO#kMWnd(/'߁dT:ϳn *g0Уu?T*Yۢu* ۉV\{>2U5:_.\TҁeXfQ #tUA$7+&Б% L+tFɄj&`BAg-`vrk" (Prj RV35^󓨉5qrjE^}#f/;l[jKE3ٿ١(v”tX;9qr=zN‹B3JeOO7#Ka2㇖R5yRRy5 QG-O]2DzSrgSߍAϗQ!t$ ^b F5Rc]G'9M;JEehG-p|{79뒰ht lJ#oF2dS3=dF`B88ܽycE203m T. vG6:`>4nP4kOI-nx5 _z !\r0y-MݦSLv?Lp0WjImEb֘{!+9%V NzR^ׁ:4,v s[b&s|`+a̒0MjhYf䴮/hPl(gh},#/e'ouiX$S>v&v$˱{Í{+;.%g\h;OT Ә496*5o޻;Jaݎ[j7mXL2hawhM}:lo~{5`;M< ke}PNL~1*IrWdPR;x,3+Q?aJϣvOTK9xIi&xvtTSátK{EFKmGWEW~|αYS ;VG$:bHeu\}=C n><&p"Bʡy4S65˫nPCr< nu (v`+<['B):g gKKl:CTXg;KgjiӓF҄C;/55P*=ZP%FT`1U: :Jm5!q å;1E7YGC%LF5R p XRd? Tj-Ϙdg!4y6w=lD嚃؛)d*灪؊ddⷭU½\\ ~+9XH*)mk +DGܶpRY9.)Mm,q:ZB/l2B+bsXAڿp쵿!:$]3?~ſkQ gS2؍‹jr&7Ll#{ڤUᔥ]Iz&CWӤ!&8E~P4hq܊f3fӎO;# B@;0X8fѳfKa uJJf?g<(+ď _L0\3zq4V$txe(#=@`/Ƴs{rzz),vo>ZUL3P޼x(bYٿ6ow(}Ɏ[ F|jBIƗr2/Pk~"MʬYf0QT'wTtLUN C5\k09RemԯQ,F&Kd jEW^%6ۓ% k7+k/{(L9G`Poa_Ze pQ4M5-ˢ|e.ȔWh9D <$BA~YT+ _ \{֋WP+G LL KŢ A(H/|,b:Qх)k25GD CnXBOu^&-5 @ea]3gQHjsA2(nd-&(ڭgK*x{9] `&,}wY;z+&s_>tP`+7=8D͌gyH/tǑp9AX >8wΉjmNp&GF,m(?Fbpo5xgFGkn%>ƅ -;_]jM)uQz譐RsI#FF5 8h)fT {K"ϵ{T_9, m?+X]}5oٟ*wf8UӉpa|uֿ2g4%g@j(3vU/y"}N3Hʊ%*6<="B% {1֞dx5EISr"#ҴsL!>hdM$G?`LOJ1TЩG%Ÿ^.-GEl}W"YVpC"S r|:݄GnvYD^}6I( ]ښ$& ! pkB0n^[S5Kn6^f6p)bb8 m_&YXpF=Hso_l7h4&,e2}H_( 5x(GXqӥ>-+k|w+,R(-U+)%U.rO Y#JɾXut(绌-\MLGuNxk(o5nQxA6a$LN@jǪHۼWR ݺsE@*&I3v\eƙ GѻPmT.CwFQEGg6\r8n $-Qݟla4 11կMw {8FfۍTD魃<|,bu0P絥:[U .+"M=ɇ# o63x4Du|7ږס9Л'Xܔ-{aI7uBS|& (aOP*#'v.>)‚ߌkb[c_3 vA7S T8qGoA'6ȹߞw 6 =HtgD!?(2V&];Xuok0@w~PRқx*w_M]Lb{20 u-QK`2`}>ۧ~ dc8sg)f{Ȏi='8Us8@bU_g݃ҁL.}s֋J+Bho%+nP",dTWW3l@8d]Ӫ3[Iv*)^V?~CP3ϝLו6G`ikTyT')SAr$Ε7_%UP|uBE' ANJ`g+fc!ZU3Om!E9zӬ1J򓤦otXmӥ{1r|w]{VVט/hkeG$\ K9  HEĬ$f(׋!h13_x%Ө?48 u]h5O~j2fP,J*a(7$3U ϶ ? P挍e@ '[7GAqqs|wYO9_#*[(?h[o{VkV߻4u;إ~E06gtLũ_A7us{v!bR),;Yg*J7sz5F2SuZc9:=x&}Z>/<ƍ-(kae= 7"Ҵt|ߠ)5 8 HEJ?ah0z!"'x[u dI+N(1-JS&΀Ob-w@ B,ptIU?W:Wc2N4cW&Je{ ED^һ(z_0[#+%=Ї}s_ $6z^ %Y|RIB9/hPc#92qm='7R/ŸtxD͔ ],d}]D7D9?8ׂyVaW3_:J!n% [w.jRz1-gMJ6Ӈ֕XE)"%κgW.(NV Ǒ?7`JKÈm@ h[N>h+!C2 \+a+vFT-`tTKH{ 7%oxԂ@Iƙ1vڎL`UyĿ`Y|UӝY5! /ӵ7ltrda ܊VztޯixlXD]pX:Y: n Yy|\50;wVvZ%ti;Mw[>LlP_ST>-^#nj?Ȫ豌Bzg®Zbkq|W\Bg60 ϮCL7rsH*ŴXG˖3: rqzŽqfJ‘o@UDvЙ_ ߆5TYU{u0Da<Z %P@v_Й [O?(h&)kuo}|iBwݔ3~hD܂/H0zwm bc89aBoXkK2^Y XF؛]q{LI1~t?s֞XDw"W&v4_Sc>JjOYz//AVcSLOCXaaVWl,i| \&*MgWL}{ŦLб]!Exp˰E5C۷'l8j,B0kz! 5'p~ ~4!fCvrSlm ~U>/@əa 1Jz#⨭VP Bl<<*cp˲EK gw,sjt]ϭTfX$|.S<8l+9ǰA^A7j]brUgZPF9?l&U)Zt-%_=hjι\l8X {}M FI(1[̖|;CmfC]i(8$.ى!ޒSԼ"(u~2D}zeI=>2\*mSyͽS8T9B;y.ց(T^G@ _D S't]bc'"Xt@'6ZFNډڷ0Ϩ9(Ꮻib;k1:(MKRZ  PLVm>W^ M5]7Of%e ('fOQ56X8{TD?Κ/eY/|q7D1X 4:m Gl[h-puxrMR;b:N 'KĒ5jy:Զ2'zLٓ%')*IJ&fZEݔ6]+ȆbˑxE>P8^sRMg(?k` PH' `lx ڠlj_Z''Zx;&wcU4j.|=aEIzW2|i8D%ou4 o#J5ү];(A9B5Ww8%-H\Ռ%i'4G{q,eBMb|ᕘJ]a0ziod〩 Jb# )O&n;P9JjqmpMLuToE#__+!{Üp h]|4j*S:Yv#׃yNZ]~)Tb!xX;5' J){Vc30*8"E;\RC1L[UvSUԬb楥$$Lm mɕ%%TWF;LAC‰2v\}@/ѓI<&x0!âG#'{x^RQ` @vƚէr3'(=Be&f״c;e ~" wcH.GQ"!뷨G@$H>/G\jL0tٙOc‰ D#xhݜdkYU1u.;5$I` }If .Dj fULP]+E"w=oan;ck#W?.?MLTy>[fVa,2]`2G{zd{\1OY1˵pUU ZIXo[R_v36 \mS1X~!]A8#)k9C4gX)t6`D bړ|qPa$LH.5䭒`ӫ4$yડM# 'n1Of(._ g*T6E7otWvSn3ֱde`䮄Ԙ׾D̬C[r7ONBo?v{[>~Bo-nw4"ZIRq:#oG^Q>t К-б5],(XQ16 ȷpEn olL{)Õ[tinQfc [δD.TcR>oO zlVsɛdvɱ=A4Qm;#zw@[5m@yoH QUw2EhL,TrM Ԁ4aqf故0&ie[ ;c[jId,N{((FY \QյCU  m'zGexhΘYjJݸ]iΛ DhAʺO5U4 bRNDq Jndȉw94wռg3mt-kV;d17o/ݰ$dBj-8L__ܝ0p3f|m! pnA֩H4[ͩ~ņ,W{kr--Aj dU)DŽ/ű8:\\yqPVL3:g\PFi[!ՙۮ41JE âATwo(ZW~h=\KxpV5#y޶"M=fGGiDq.PvwFϵ?߄upx24kĵ߯]#Hسݿp[!rd\"IUM[>íį̋42vmHT٩f;rCE{z0})[fwQxhb69=tТGcȸ*FNb &x7^TlG4ucH3p}>Ps /}r {o;T(i~P>vTq@ĭ;SF. pIppWvZ5tƹl[S'Z]}S"yR8o-y8,>I>-,@?׹ko }kSYe[k{[h]xpUBؾ9cG+_tzY(b+k^2Y:Ga|w$i+b gCJp4;3Kl'x%mJ,daHDZ~0⸃p ͍t`'-nI]{$I[4z<.=G5'>Fj+y1҂V;`B MN;k2k"y${>N"LS B_c %_y;r@.70$ Ն(e`DfQ~|-@=ʹ QB%omwbe2wTѿ!|1d5R=`@)ׇ5oFU| =5GBOJfK\i6yO*m0- t +9݃fv-s)Kk_B9HO}gPBh˽%}? ;a߈O:},Dh0>0"G7a[F<~5 J趫 "JpwURAak`Ӝ8azk_8d@W[ U H.m*vtfxgN fzvL#ɩ0oBmHc<6T{`ӷ l|6O%7V.MdQGRBS 4Y+ȥ8ѾSP R5vMNyH6!n\w6ʧmul"8γxd뵛~ELȏ D|~_mo5ӑ~kMd[{61 c˥eg*:V^x>V\#^i[IE>8&g|Cn`Xm j U{=GU5H;DPhb Xyo $pW6j ]0v“USqq{:{45ic =RJ!ĹcJ5|{Dw_|52 q^TWOL,s1u,)2_B!["S2b]U=CPՈh4"ְyseMsZs+K~$+)3ɸ8l.! m xiG6$K/Jg_ x;e*< (V.,r U-"jkeO =R=dͨz)tJ)4BʝS'hitͮ` y5 .d>k:+#;3IRRYqMb`ĐOYԍ0I)ݣU)) 6t.iM4YA}6禎d%R_.AUz/-!d+_fRhdNVx?ZIM3/s8GuWS!c]rffB\iӜ-> 'tl7N=`ٽh׷r/Իz/级tnlpX{gڮH<[2OH,g4}>]"}-b;gcYPH;Wf8Pbf8b\1n,2cD\¿ %`XA<2;dڍnt&H[y5 +rm:ӄ*SLZz1)&;;ҏ j u@D92/ܮ-)^!;> ÝRAN b]x3|K0)M<ɸסC7NML^>+7;3 oR՘y8 dRj7cAIVopRta膚VC@{^Ss%u*cÔXZ͠5.lw0BF`U@:$AA) j(,UE*Kũ¢sSe} A8+Wf -,hL>-~߭N<tNz@13n-܀S'Zp G^pl4$AV:zƖiTu1wv&Le<64֊?[)Cr\1Hep0j vZb擄BPR3Wa௲/IkeUP-}:lpwvV??M1%$iy ۝aL a7*o Ek#VFMqM_O:/zi᭦e:P-C˝!ţq=e/VI0-hoh4~eSӣ7xj6E`QջiNE@$S@iC歫^-u7r?| Jn zT>7U`,^5+s%dT"" ~ICl800H1cƬb 9#K7QR󠒛 u}uHld;z/T'."G읇^t\pnT9-Z|G_j7o,}rP^|~MAhjkjſj^o^lE3^ zeqU͔5Qս !ͱ'Z5'f? ;Lw,䶫ݜLt(%l|,ULn&i_}èeo'%3%id2 qIwKxJ) V&T=rZ9zĹ !elgPȋr[h>,\w EWMsy;(&wzBh驤K]6{y>gHϟ0F ݎ0PȒ^n~%CU4fr+ :Xi/Ti_X)ʕ>>ҐY*`!KM,Jϋ#;׷_'.T7*>} CM*]uo4q!|MB&_eaY!la5o^h"+%EB  k+V'g2ݔ a^{M`(Bs5Zw?nN871\aWj_ w u~&^b$jC[~cݟc/rA.*͞KQ%NϠSmMRmpgrk|Ȼ0E(IUP%F̋__Ga30GǮâ59!f7Qm.#4>p[=dvf } PKj|\4ne|^_dTg FM\^9=2%, JʓBwHMDap-yBbjb7B[Y(9("S~K9q-~. ֵe5*G\uxXq󎀟nUn OvQWQIY^`LMaWYD^uG{l)S$?yҝb6dY,&${8UBSǛ5D,MZvH!@TbepcQ55(" +k' GʖL‹ϭvIqq_8F1LC|`՗q41lmdT`,<+$@G_VieX߸J: P2eK cϸ&E>:24k ɲE! rKJ={oJ-ZVH x,}\{1M InK+ߺ&e'tq &WB[IАs3ɻhTw}!PmGY-v7di`F0BU($4"컐>6*(JH'V'`nL,ˣ呌 w'TA8=C޷E} Ws3\VD#*H2sj>< =95Tb}<[T*/oko,b3DXE|)gjSy3s:RYCxp0Ӽ~Վ-9~`<Gj n~͜ bf~PDE^@ N;W'TV )|5SŮlThNKѢLOrm߂QZ:~zl̠'},;13G55(riSO J)EXn)ĂuqzLk=5_&uC~Ȅg7: LK>]V`vYwA??H:D4UCd$q^4~[7lWAL1p:! 4?ۿ):;%evd%āi즎&5v,tCR&sRwáAAݢۀlt ۴h l/hqW1n UQf圗AJ:4ȭTΨo#Eޥ{q^ ĩNSA{g@´-4yH)D'|:G@YDd=C_*4++o Cnut΃e-v*o8bC;XM^W O稸 }" N"|æT[  벃&85E ]^d<0FQ"t9ɖtD ]8}OF>Isu/BaВ/0VOB9Yuf|ϞL' K5dNwWLNuJX'ǕǵbJ(dJAgq1s!>emg*p,ѮCr v#Λ095[e6OU!iKe/'xZA!:By.K^CJF݃gA[p}0ZڰZ5 t{ۭ33SRwnm>>seBD_ԛUmH3\0'w.^P>DP#TUxu `.5 6{gx3EA r5Sd9%tvxӜ젪rTʞ CR_H-AϮ|4-Gm$#X-5ӌo5TUs{Q W,=:GbVК1Z]fU C0i+WeP& dDU lSk3 \-֩O|(,zԨ'Xw$CMWCmtԽqAK.7=P{"zhz!f2&&,$MM++9ws2PMBn}'Q Qi4b>c[&Za+NLz%35]C>99Ȅ$[}Tw'QJR;69}/zai9A=/,fsL/H$0σL6*D*WOۨ:'NOS}ƾ-Xȳ'\g 6Dr=ҚSbKFǯ:\VJNXSqW<ͣ|~t=ɐT|qv>}%@1B_2џ9t$V .1RK˳W^Ȗ ҏ#VJNYO!sA?MXix1I-sL3v̘ 'G8 T2y@!^^bVJ7=#7yYqy~8B2^[h#c62W]OgDnYR/@i?Zͯx[1xe6W胔di%GU"3<%e]7Z#(79 5Mf?6SnW:gY8,>P~.f7֦P$eHpToY`Rv WkzRVo|'wXNc&j;ea:VKS4hJ4<)'CC8y[[F8~>q ɹM;`Og7 d1Qq!4gULRC<4lQTi0+'muQ>俜~ Q؜|':plB[(ZD~#U64871ߙFمЄii YZ