perl-Data-Dump-1.23-lp151.2.1 >  A [N/=„o;q_^oMJV)) :N ģTxX^~([DVxԅXMw41``/!Mg h؍u\@}+2g.?Oe >.\@KE~񱨤"@?Y6F3.l!sDCtPZ823*Z~瀱gOOB/y6PLACxL߈r'mW~v f3lՠD61e19ad3d89b7ef18d1c09625c3d1760a14eae365724ec1fa89ed16f08b6d74cd4839b91800d182efb7fa1c7689bd57b1017ea5f3T[N/=„qk4RSa!L3ł E8m ۟,$9jFxGѸC7d?ռZF{kꥈ6Ök!)o+[&* 5]|PvU("Lc'1ʰZslz h6VUG+ـ(q}].?VW"JYfxH{ǩkP9]Ndۍþƴ%dO>dk&_agd#Fe46ҘCaWwE-U.қMτ>p>"h?"Xd  C D H T X k t       ,   F   `       $ e  G(d8l 9 :\ F G HT I XY\ ] ^bc 6d e f l u v w!x x! y!z!"" ""TCperl-Data-Dump1.23lp151.2.1Pretty printing of data structuresThis module provide a few functions that traverse their argument and produces a string as its result. The string contains Perl code that, when 'eval'ed, produces a deep copy of the original arguments. The main feature of the module is that it strives to produce output that is easy to read. Example: @a = (1, [2, 3], {4 => 5}); dump(@a); Produces: "(1, [2, 3], { 4 => 5 })" If you dump just a little data, it is output on a single line. If you dump data that is more complex or there is a lot of it, line breaks are automatically added to keep it easy to read. The following functions are provided (only the dd* functions are exported by default): * dump( ... ) * pp( ... ) Returns a string containing a Perl expression. If you pass this string to Perl's built-in eval() function it should return a copy of the arguments you passed to dump(). If you call the function with multiple arguments then the output will be wrapped in parenthesis "( ..., ... )". If you call the function with a single argument the output will not have the wrapping. If you call the function with a single scalar (non-reference) argument it will just return the scalar quoted if needed, but never break it into multiple lines. If you pass multiple arguments or references to arrays of hashes then the return value might contain line breaks to format it for easier reading. The returned string will never be "\n" terminated, even if contains multiple lines. This allows code like this to place the semicolon in the expected place: print '$obj = ', dump($obj), ";\n"; If dump() is called in void context, then the dump is printed on STDERR and then "\n" terminated. You might find this useful for quick debug printouts, but the dd*() functions might be better alternatives for this. There is no difference between dump() and pp(), except that dump() shares its name with a not-so-useful perl builtin. Because of this some might want to avoid using that name. * quote( $string ) Returns a quoted version of the provided string. It differs from 'dump($string)' in that it will quote even numbers and not try to come up with clever expressions that might shorten the output. If a non-scalar argument is provided then it's just stringified instead of traversed. * dd( ... ) * ddx( ... ) These functions will call dump() on their argument and print the result to STDOUT (actually, it's the currently selected output handle, but STDOUT is the default for that). The difference between them is only that ddx() will prefix the lines it prints with "# " and mark the first line with the file and line number where it was called. This is meant to be useful for debug printouts of state within programs. * dumpf( ..., \&filter ) Short hand for calling the dump_filtered() function of the Data::Dump::Filtered manpage. This works like dump(), but the last argument should be a filter callback function. As objects are visited the filter callback is invoked and it can modify how the objects are dumped.[Ncloud122openSUSE Leap 15.1openSUSEArtistic-1.0 or GPL-1.0+https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Data-Dump/linuxnoarchG&&O  AA$$$$AA큤$$$[N[NUw4QQQX[N[NUw4QgQ[N[N[Ne8f610b04c17ee4de6852623c2d9969e83a3f61895035d178c6a16c5ad953e95312bd79d137a045747030d093f57bbfe3aaf8c6a975d9ef982578569e422ba356705a8eaa7b8988be3f5451028702776b9c2d038377061c3d7ddce03833330148fff0efc791332a1e975133f7ef7bccd809dcaed15f5dd5762550e1c32ea1878b49480c8360c72d79f28b8eae317c7ee085133b276bd8450967abb41b4e63c7631d1b6482bcc3db87a38ad02065554f9d3bc13321d4ef8e96042464045e2abcf41aa88c360616ab46f5604389c1fc53d6b3122d3d3b975b0c3223b8644b999f3da2b1482416b60968153dfa3fa7ee503e3d2a138135556bf3dad09970431528db8b024b6309fb583241d23b855287392d44fc4d5521e30f9f39d2b2229d49169rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Data-Dump-1.23-lp151.2.1.src.rpmperl(Data::Dump)perl(Data::Dump::FilterContext)perl(Data::Dump::Filtered)perl(Data::Dump::Trace)perl(Data::Dump::Trace::Call)perl(Data::Dump::Trace::Wrapper)perl-Data-Dump    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.1U}lQOWMNMoL@K-D@CbB:coolo@suse.comcoolo@suse.comandrea.turrini@gmail.comcoolo@suse.compascal.bleser@opensuse.orgcoolo@novell.comchris@computersalat.dejfunk@funktronics.cajfunk@funktronics.cajfunk@funktronics.ca- updated to 1.23 see /usr/share/doc/packages/perl-Data-Dump/Changes 2015-06-09 Gisle Aas Release 1.23 Avoid "Negative repeat count does nothing"-warnings from perl-5.22 Typo fixes by David Steinbrunner- updated to 1.22 Deal with class names containing '=' [RT#72415] Filters now get access to $ctx->expr; the textual expression denoting the current object.- fixed typos in perl-Data-Dump.spec description- update to 1.21 Make dump($1) work when $1 was integer [RT#63883] Dump floats without quoting Add depth() method to FilterContext Make dump($1) work [RT#63883] Limit our temp listen socket to localhost [RT#63534]- update to 1.19 - changes from 1.18: * don't downgrade is_utf8-strings with MIME::Base64 [RT#60103] * deal with the perl-5.13 (?^:...) regex construct [RT#61552] - changes from 1.17: * fix dump of "1\n" (the newline was lost) [RT#56595] * start using the range operator to shorten list dumps; for instance dump(1,2,3,4,5) now returns '(1 .. 5)' * CODE references now dumped as 'sub { ... }' * fix how multiline hash values are indented * make indentation configurable - changes from 1.16: * add support for filter callbacks + filters can modify how selected objects are dumped * various enhancements to how/when hash keys are quoted + don't quote keywords + don't quote words prefixed with "-" + don't quote long identifier keys + quote all hash keys if one needs quoting for better alignment * use case-insensitive sorting for hash keys- switch to perl_requires macro- update to 1.15 Fixed regexp that determines if hash keys are numeric [RT#48003] - Release 1.14 - Data::Dump::Trace enhancements: - trace() function - prototypes - Release 1.13 - Added the Data::Dump::Trace module - Release 1.12 - Documentation tweaks. - Release 1.11 - Documentation tweaks. - Release 1.10 - Add the functions quote(), dd() and ddx(). - Fix segfault when duming large repeated strings [RT#33520] - Incorporated documentation improvements from Mark Stosberg - Apply Data-Dump-1.08-ANDK-01.patch from CPAN. Might do some good on older perls I guess. - Release 1.08 - By popular demand; don't put underscore into dumped integers to group thousands. - Release 1.07 - Remove unused code. - Add some more tests. - spec mods o HEADER, TAGS, deps, macros - added perl-macros- Build under buildservice- Build for SL10- Build for SL93cloud122 1528385167 1.230.021.23-lp151.2.1DataDumpDump.pmFilterContext.pmFiltered.pmTrace.pmx86_64-linux-thread-multiperl-Data-DumpChangesREADMEData::Dump.3pm.gzData::Dump::Filtered.3pm.gzData::Dump::Trace.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/Data//usr/lib/perl5/vendor_perl/5.26.1/Data/Dump//usr/share/doc/packages//usr/share/doc/packages/perl-Data-Dump//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:Leap:15.1/standard/c58f880727d38a1335f6bbf5402e38f1-perl-Data-Dumpcpioxz5noarch-suse-linuxdirectoryPerl5 module source textASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)PPPPPPD~i#aP(utf-8d84db7bd90c00c8b28960e99ec390c4981b311eb60eff2430ccd661ed8801320? 7zXZ !t/σY] crt:bLL ztGyKRx)e?_!3| kV!̊CJ/P im{w\eoU݆?{hppGL=EQ{2OLl"EG(:GaxvGkkURS"9=y[37\N͔tiU' ?.\%kz"S=9B@6s{*گ |5+]H"X`OzU"E#?U_.>'AIuvۍ]0ix8 u-"x@$ $=D[',AWa~w{'t$'0#}dgf掇ۊ>=(f1e] QWҩZB)A)bD\? zVNqmG dn Zx^9Zf2N}sn¼OȋwK}0FwdZ03\ɁwArx|}&":;~vrFq'{g!01pJA6X5Qr*?J@`>K|efGr;Ux*Dd*)b}uuގ1pjϏ-Gf08|,J oƸ0 ?8Ϡ(h VT\/ަ)1i!PZ!OZӻ]'ƒ'p'}2 /xuS\ycf灳[+QK4|n>ڋB_huXELJ`[TV.xo/!?WxǒoQ[ #3gF̤Fi7B*|?.t>is[,4j#&v<"'lVq _ F~x ܓATS8ORzBx+_;M;I;ot!ϑWz᪽ʀ3Σ(Zɓps~b߀󮩟}+>߰PmDGŭ7 /0V٦9ԖK×07ҨĽvL5!H*ͤ! a ?-fCE1y+4َ1Yo^y\KLj Izu{L~dHMpO!z-6x n㷢mH"(12ӫ`DBX[5vvd?_ d{vPV>И]&ff \1mV&!`VZH-[`6fuT$Cv|ռۺS븴Vlpl0cs+!aà&g&7pqW #bALP뫃ȋ\L<2Im k :s1pj-peśT|eϲ"5b H>caZ.L}Ck {s Gի #0 ew&zĚ#X)y,V F-jDB9M`$V4|!ÎM@FrBY""w>5(%-뒳zumNFʨZ!τT%1֬ _?&#Q-a*/0 %`R~VZ^4^\s!Y?O橿O5w Y2ea#_pg%!@5Iln7n{ɭ&fcCdy|zg@iRR"CZLQv~U pG6Uߛ%Ώ[&(8J8}d́kA @|_ȿGj)FHwu\M $-"#{:,$9G*hP7 WlmFGdֈ 2 H,J41,K84YDw\G!"e00 fxAj:Yց TjZ_ ³QI2!'rt:=a٥IC O}_Ho{GS&AX׌aAWrܨ'}j,*k->e^atYނг aG+oLSq.N퍴%%Ĺr4SO i^bX-5[2C+ ypZ_&XfG7yɥ%ǀ*s0cV=c?DEtG`^دkrЀEB] iPppS9kӤ%eA3,n?(tItF %m J6(ufjQ:=SE/јYF#. ;r5YQ9PEddÙl$/+wʅ;  jsM!s ]_2m{ gsR{"33H{z1 mw^^ۨaǁf#q Ip6х0-Kr-NMds>;b\eߴpdb wN^<6~)F%0}$"V3DgHv-N&&2g2N/D(8[? 8u H|]7y_Xo s>ZzhvQsԴ4C_{8ܳ4!awuٿoS3N5%e٣d9Hf,[NU;nEeEB-%Rfg&釐'k%;$R Le2 hX%z(a4 K~ :^e W83痯Qb?\"HM ] ~~3HJxRR J?+5hS]DI2p*1]JBwgU0_k$:i13XMjFԥAC ӫ℧3i!P^_Єa<' ytkT}FobԿΕ;Bh^#λe}iEf`)Ȗw)v$e"&@΀֟1A_¬ a#v[}zT(!=mV].a<#evj$N,v U[1'r ~]T `B/#xaaك84 IM WXtF$z|#&d%kk_5]5sONJ]s=#c 5c_ R.-^?8⹻](UuY6#=㉇e8 2m͵Wr"1$ paȎO~?,DXΩ'AKƥlW-A {U'[0?cJ}  d,b|Wy۾=S2z nOn0$ [= 2d,ZauNĄb2T5 4!D;צS)q%s]$nho)MdT+:/}{orQ8FgGY^m!;41mVķWNej;Cy)ctS,kd0.=% t!q& dj O=HkAߞʌ7A \tr:#Q΍؂sLywc,do,|dž]HAȞlx*k—6ANцߎXE 9hrb ALO$fPN ˝벩S/3Y*8Y%UΉ|Vj#>]&+]2`p.1"Wtv{ (Oyjj~Lp E}Wl+lLt ƃ lnPPZfUiJpc;.?)=]<= _d\.*dz-.武Ƙv?cLX8V~'}$HėJ K4 !Gb\H$TPh=hTczV H[+Q 3lWeOseR:ߐĀ k~'5" j`2ݎxWMͼױt6U"pTa=2]Oj}?tNx0\2bז2>Z}D;I 5nqS2l 5K6),1Lkȍ'ZЍdd?-)re#dnnzL7<rي\W*~= gT١iGוT-&lwE|c80;P(feSug ( M7E*;"Ǥ|7509cЪ۩FK]=Y?W'd\F:b~J3ȈuaefYc0㚿V8TI.snҨXKagvOקz!T;7G&?lc-ڂ\x0Of{B1]*Oa.*tbp!݃O/R>pA(Oz'*S?UZѥݮDaȺm@يds|Z0LyheC6 rwihIsvP9g}Gj5yGo!Ӂ5$7؁5O:roEՋM>)KDەM7zIJ4i P(gAvȺ:⿁Pڿ8Y/UU#INdd\J?4Dz+E"רSҗIMɀ–N3agƠgb'<&y,ܼYҲ`i\bLػ^吗;D |= vkxyn9IUGRIZ:5;GZCE4;sQTTܬ;dfC riHQ t;=^3});c,r+.;0{C6㊱IhVSQU eSY'T,Df>L^I:{s<,z3R2^C .˰KCl(dI'B 1qh^ ]yaܛFfV#>$r2I4? 3q]͞ؽ▷I.&QIzu#aj^T%ܓ^芟( &˘IeBqXSM}eܞާ'%֘wx%ˎGB 1:KWXeQ[ *޾pdV:i~74o ka%U-pD, Xg| 몮1fV(W[loʛ'vuAs__L@[Veъٜa)T@Fܥg{y:Vϔ9Dwm`gf9; cntV |99#JopsJb/_G`r咧yp93[*"~T˴{*g]QeĖ|Jv dok߽!13BN@0@a/^"j6X,N.!`R GW WtrJ]L)MI3MvM&`vN~ g1մސ"WCt6њ2qنn-PX=#CvAzZ>uOe-ff 1 -3耗ALNbUCd<\p.{VRq-]llo8 A-F9 c7~2E>YDќ|/Bc :zTDqrLuehȺ7HŐTԦŮXB8BO `0_Eqk@ yT$\Y?[bmZv#>Nʔ'q3{٤3g[*1ucc6f]e.CC n?dUn?0~ 'BG[Eu]wpsHi 2` ߁.#TG>QV 4(H0W&{;5 CٵwoI9Q5;94pri׬/d4Q%h9 .e4ŰЧPb}!&ņF` m,j={ H4Y"7< /""M*lN 8 ؅՞yfUМۃKW %._\L۠+$?z_GGQld"~ѠivPNX݌lxpsqnl._m;[UyQ4*{y@*"+0מ銲*ma~XEJ(uo? a2&;N@pIw- G KͿmԙ7,$k V* %@B w,% KdvzmV<ڶ} Yt}r)zMx2YyLXvU!"clZfB~w8{!ۙ]>񨨛;>JDžy 6ϸ,>> Qĭ=p=YOh蕾&^8FA.6$e=Kr MRN{EKr"y]AP:U% u qػ_׼0<; “*M-A!LQ W8Txg-#l` U.^: kBw;h_p~e,]cC._~;aQ]ZuvAǑtrv_)ߖ5Ƞ=鼮\t8QnPD;E!vWrΗ[>=@`%y(dv釁i8 ׅ}xn0mH>n$O0xyM.ҶTf ;63^6Sa7CYVSȣ;cn]b+=h 5|FA;Ջ(h _fPOXG͉f('QOEmDSU T4UE*6)i8OMh |6D|,?Jlk^ATuPǤH rBOE v ā]Bc;)̓ɗ#`Je)NF.k|2U,T_7?@%^;t/} ,ՠ!8~HD-u?f6dAXsVU kh:fx CoSSD{*hVzc?2QziN7p6p_]\Zp np@JJ5ܘU|5=1 ~Wa$cq-auVKfҪP TüR]d8j|4hD^4"I8^XSnɁAVIkZSuط0{wz: >%!pw,WMٽs$d/=]L7wz/Dѽ%(QDq^en\71  nw 9(TłH:{^lsxjbȘ4LP!XX\2>KHXZѵXҷ%YV9.?&aRQۜێ1S+%O iڰ𰧙7kKZgudUwJZm@:t%\Mu/B֎;|;ppuW 5,s[*IJL=]TeD92=roWb⁔&7GsA}znKUy=>IͻcuHsbȵzʹP]z PVR~TH:qEIV!Yr^L"8YV[nfE.WD<:cWr#p&_.\P%m^Ł#CW|RCK ѕKMILLd^~|!;&t \Ö?G}Ž~?I0.k )yc"w+oN% loZ֠Ֆ']]*cb|%m eYnwؚo, Qy4C2⸦{|`?/cG0Vk+%/vr:5\Yu`vboyHY=ndTƏPESt$fZ1ԢYNK" C 8̘-ڙU2S[^b_Vpd4#K*#oV|aaӌjq>d_|?#9B{w>N23OF>U4O>4ฑCT}8$]H yQGAoy k#OP2iaˉ+prҢ38a\eȮ&/MKk6 og{L[dp0MZ_|gY9ye_0g鎵HOQu Ι5@ )$a/0io**: *RWz4+&,$LG)aEw +&8V]o5:K>Y*pD0YcRAiƋ nS'zHfƲZ\ӄ)k)LF#0\wRp[faV_e۩]z2Kϥ"8$w>QvtRoɵ#MXASjY?nܡŪT. ) >2WS TKm M9aÄ6|vq+ڋ7po/Gx GKX.48ִʊ lXd@͙soU,@{p+ت#rv.# >TX 5Fеp[ Hr"m\4p?m(_W/U}(0uQa+GxMjsz s71`@L.b,&WXkCu&eSZȆk\tnC;CgإXD _QNͮPeמ6lIJG4F+=K iM dO0O3b SzGl{ߔ(xeo`F7,[G? 6;ِV̚-g@o ZxkBA?ϙ='5|ձ*rf8՟FsX;^?$M X'9Ŀε'-;ݍ[DcQ*P{ƶ2]T˱˻`kby +7 ̅1\@ͪMarŰ¼C] ,/sB8:߬_)~&4+V5HЂc1HÝ^S-4p?b$vξ`e|#ˊf+N`Ri&7Wԯ-A+>W(v4ՊEb:)K(V+,jR88XŌSXwLDĎ <;t@ ut7EGkE4G-%>nT2 xdzz:5*ZL/҄˸/߿f)ry=lRxuYcp$#Lu 蟷> T.;'^B߮b>&c&m 1TqmťK 5{ɦ Dn16 ŋ)\Rgȼ?HU=T:E0ϭC YSz'Ǔ<;wn3sSm329Eԅ aD)AG^%.CǸ^C֩x8#\ڔw򌞍nW΂o A7lu ,6][KD%}ޮċ\f?L!)۷v$Cpovׇ %'(Y.N9|+FA6>hb]E|(䲏+߻xG\R(b !5g({:ߝvc^Lt1$I#<)YY=M= + kM}H wA\ƂA\J[2gc JHکa#%o/h̼i2f:G[ +܃KĊ,ӣ,A€y$Tf=r1[X 7ȴeSwչxɗtafp3i?;ġMt:PMd^L$u0f82apH q;1 zm5y13 {3N\Pn)Y껲Sa~ Dgĭ%.ב^x!'rЙ&0~w]. JEF݉w1T)90' i|ǧds.?q+)L8z""mO+d蚦=|qr?JBCv#>ttcTZhrގ -OiP6ӭ$\H7N%>MU?TBga6!H+rSMoY;w&vF3ř -g֘Dn>~-MLE pj W&AxfT=Qvd"ЍW8*OSǙ+aO_A' _g }؛WWZD(y}(I;"<S5b}u9R-@p'omO+y*8Ѫr07͊ L@*:#yV2l.?ŒX/F [0lGN!2u2W3eD$21Uj&;=grkfVP;#UTMWfV[Wzd-ƅϤkGJ|~KUT<K9g 6@𳉱FO{.8u0)қX6|Ys8ի_b#~Kr}1ǻs\,C>VY>Mq Dw$٢<8(802Pi>Y2bXgV2G,Cg@n}X쑠46aILbV2/@%~.Ldﻂ,s$50m({^2`g@+5ݡ֐($9x$Qh i~ v6"rx 8#tYWp _iCԗ V\策n%!6!a[FceH&ڞo,p3X&bpLyuŎ8,G%IMx6qܧ   ߂9PUЂ_>mxq*PVOQJ6;`Lkd+ؑNX"y!N+?a=SaDc?`.:8Y[lb* ]mbpZ86FwbJb{iqʼO}5Tm%VfmV?4UQV)GB+.ù٢HbqA9%5%[ ɝ8b풁O7ǏnNo?PH#cMFy%8ܠF vno)mNPo%$*tų (h` 4P D.@_3V3i7K0sìӬV3Ʒ)[ Rntm}BWӕ%1RۖxyRx=T'J% ,$f}"itq]E&MrtJ2M[ R[յA2Kfa&QH'+^(\a,[]-:(%e<'3LRj'hǣ AQz)q^`~ OrDM64rF%!>L9fY~(S"h eYA""}tkvM13Ti9ii2ZfK6 5cRu`ORuC+?ĥtQQJD+Q m1kbDu1+hH݈&TE' .UgG#cHJ]5TOb|$?s 6 B  ڧ2`ɑ2j6OFݡc7\+ ;n$2"ao8Ӱ\nȐaKXg5K`J-r=Q&$q fLOBI}1ؙL3U}B}8{>UB` |UސO툵J͂q' 7S?N tfqƴbd6QuN_jP&C Vעy7LbH/Ca=?h6C!eylKlucl`&kxH4'ㅩ"|34nc4J,ARewjj_nLS Q$i,:"h丯[$I!wC-kΦgS;;޼bo)DڴchoՏģqsKd@~Xv#r+<{.~n9&ul}QB=w?AMSoL0QiIչRY>2+Sn1r6Mg2IrLcLFʫ K A0p|SB*̏DYg; lI&ox8#zj=N|FֳBD#4n(· !wD7n9- xu K Lz^ϱ l$o+d;+ij{vq]ޙ#MdwːPh<}cR *.;I Z'q Y#y^ZoxtθjO *d /~G2##줔lNbpθɦ\T^D姼HOBVmtKIPD; 91KJ-5H! /?]4prU"\^jry /׳hU]@wk&ݺXo+ј㟭-JƱv.MnZ-J:>s?gBViGD<;,XyxЋңD@nIT6ѝ w #JH R7ѧ00s~N!GCs;ԑ]4_`;il@ ];`k3,suׯz*dl8N=ttv@z!\S_ۅ2thSC;w(I ^ź=/c4j$ ~& hEw|+⷇^ƄoD{GiY_ h#]6d39_*P}l;S o|HjSa2ͅ©O{g~1e^޺'X!KdU lYg!;Ql{i9Z] ^`I"-y f1w:1#?`U]`i{uA 2թ,8Ƹ;kU/qM.o'bҸOQ&*^mj2w֯:_DzB,/[o f5җ?x.uf.xZa<7",ܥ=.S?^1#\e [c2fRN(5( ܢN gGzɭzOwJSk f6*Mf~H*+?cXd* {&e(]-AOglYJ:4Oq_~Kz%X9ڥiH%5[K Qv'泷B5k{utYɄF(kJMk5N=Q{ $]|Ͻ̬2tq3$MȀ583cfBRݪ]LׁGJ՛Ip5>Lj EdӚeM >6BuIeC.7JAԻWIMRstӽ*EXm7la\z 놹D(ҚD!f*ӫEe6/f?L]ʣ'yRӱ1GΞO~ fG,&|\wUd#HI^_#^;C1i'.O(]F KLMww!$K[0ȇލ3PUXl(RϷPra{_'ezxO䜮yNn{݈0B|FU4{VT11N7Og͗RK,Q+I7Кx0Y="_1am۸#]fN^oT>5~t}ZZHe^uKUJ7lDn"!Ǖ{IQFJGë06G3Do1@/Dt7zIC}7e4הnERw GVْ52GS 4StP{PIlE "jt~Im 7pqsN۝"x/>~Օ*֔ }4Y(Ϟt\#ԑ"_rxI!M2^_fV [ *I]*e|hԤGF2b$s@یo $N#vL3pJqp]̘ T2=G?yguTQ@}lߡKQcx榇++#=t,ݮK‰-)*Ã4 .Ü%;y:U('4 oi4S X9"4Wh*KLqL X=P(uD3My3TF"۸5:S{NRjTaç@tQjM*z#]G% Led't+-F(t[A<:Q+2{ +\07Og5C,Ln/v:pGBW)0U\62$BUs+"7<&!̓Xs"k4bð;k{+{T<~P~1;gDuN`XjA3\vGGġ.Le^ L#?Č CUa'xz\HSI\%frl MIug{D6cL/L՛D)efB]ݍSJnAT /n~hJʈ[ *s.P&8ظ n6Ate<4o:07p{s b^:h,s.ζ%Noh!Qz߮\|l64|R 1!q&FsUx=,ej=!?#2X#657*͍!U$q}f!m*盧1 Rr72z![A}Pɼ[!=GR*4q*i*JZe |T['#=g9^m(?O6H؊#/$tg#+%T#cLRl礷2 9*hT`AGgQWUR&]j OCe3.,sAMEF)DJ+vD8_vdT/CVی6"ηldIJ '+6ؐx=eks) ~SGx“ ̄(r;k~2Iu ёOu[c=_!JvI'ī3]4 u0^3V[do(rZ֪촹Q5g[GMQcq->ΧzY,J|V6HU` 5ePTclDA&nֳ}Ja YZ