libjson-c3-32bit-0.13-lp151.2.3 >  A \ /=„[OҊD%#Vy00Gl{AeR (%+3.@7pÝHٳDm#!XaC-i_#45 )Eqk\,j jB>_Jg@Ofw 0=/߀$v cŁt9?c0 Ҥuk;<4Tַ'eWE8e<}gA6g=#SCmo  lg@#N;2373b84125005d96e06cd59e13547c19f89b9657ba0095dd36123bcde6731bf6bf88512e627a683ec12d0e113e2882f122d1946d̉\ /=„ ?)y0 !emU8LI9Qv\7L3]pKC 2$۰F%/-}]%.&t2]bp>-?,d " 8DHPTgpt     > T\fp *(P8X9:>*G*$H*,I*4X*8Y*D\*d]*l^*b*c+Vd+e+f+l+u+v+w,lx,ty,| ,,,,Clibjson-c3-32bit0.13lp151.2.3JSON-C shared libraryJSON-C implements a reference counting object model that allows you to easily construct JSON objects in C, output them as JSON formatted strings and parse JSON formatted strings back into the C representation of JSON objects. This package includes the JSON library.\lamb514openSUSE Leap 15.1openSUSEMIThttps://bugs.opensuse.orgSystem/Librarieshttps://github.com/json-c/json-c/wikilinuxx86_64/sbin/ldconfig4\\14fe9a71e6bd06b57c87e9721d584dfe5e93a704459c2a2f51868e2dd0b6a00clibjson-c.so.3.0.1rootrootrootrootjson-c-0.13-lp151.2.3.src.rpmlibjson-c.so.3libjson-c3-32bitlibjson-c3-32bit(x86-32)@@@@@@@@@    /bin/shld-linux.so.2ld-linux.so.2(GLIBC_2.3)libc.so.6libc.so.6(GLIBC_2.0)libc.so.6(GLIBC_2.1.3)libc.so.6(GLIBC_2.3)libc.so.6(GLIBC_2.3.4)libc.so.6(GLIBC_2.4)libc.so.6(GLIBC_2.8)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1ZDXӸWTl@SB@R@RʚQ() - modify the value of existing json_object's without the need to recreate them. Also add a json_object_int_inc function to adjust an int's' value. - json_util_get_last_err() - retrieve the string describing the cause of errors, instead of printing to stderr. - perllike hash function for strings * json_global_set_string_hash() * json_c_visit() - a way to iterate over a tree of json-c objects. + Notable bug fixes and other improvements: * Make reference increment and decrement atomic to allow passing json objects between threads. * Fix json_object_object_foreach to avoid uninitialized variable warnings. * Improve performance by removing unneeded data items from hashtable code and reducing duplicate hash computation. * Performance: store small strings inside json_object * Performance: of json_object_to_json_string by removing variadic printf * Fix parsing of "-Infinity", and avoid needlessly copying the input when doing so. * Fix stack buffer overflow in json_object_double_to_json_string_format() * Fix various potential null ptr deref and int32 overflows * Fix a long-standing bug in array_list_put_idx() where it would attempt to free previously free'd entries due to not checking the current array length. * use uselocale() instead of setlocale() in json_tokener to behave better in threaded environments. * Fix out of bounds read when handling unicode surrogate pairs. * Ensure doubles that happen to be a whole number are emitted with ".0" * Visual Studio: use a snprintf/vsnprintf wrapper that ensures the string is terminated. * Fix double to int cast overflow in json_object_get_int64. * Clamp double to int32 when narrowing in json_object_get_int. * Use strtoll() to parse ints - instead of sscanf * usual code linting + Build changes: * Add Appveyor and Travis build support * Support for MacOS and Windows through CMake * Silent build by default * Link against libm when needed * Add support for building with AddressSanitizer * Add support for building with Clang * Add a --enable-threading configure option, and only use the (slower) __sync_add_and_fetch()/__sync_sub_and_fetch() function when it is specified. - cleanup with spec-cleaner - remove fix-set-but-not-used.patch + fixed: https://github.com/json-c/json-c/issues/240 - remove gcc7-fix.patch + fixed in 014924ba899f659917bb64392bbff7d3c803afc2- Added gcc7-fix.patch- Update to upstream release 0.12.1 - Removed upstream fixed json-c-0.12-unused_variable_size.patch - Added fix-set-but-not-used.patch- json-c 0.12 Fixes for security issues contained in this release have been previously patched into this package, but listed for completeness: * Address security issues: * CVE-2013-6371: hash collision denial of service * CVE-2013-6370: buffer overflow if size_t is larger than int - Further changes: * Avoid potential overflow in json_object_get_double * Eliminate the mc_abort() function and MC_ABORT macro. * Make the json_tokener_errors array local. It has been deprecated for a while, and json_tokener_error_desc() should be used instead. * change the floating point output format to %.17g so values with more than 6 digits show up in the output. * Remove the old libjson.so name compatibility support. The library is only created as libjson-c.so now and headers are only installed into the ${prefix}/json-c directory. * When supported by the linker, add the -Bsymbolic-functions flag. * Make strict mode more strict: * number must not start with 0 * no single-quote strings * no comments * trailing char not allowed * only allow lowercase literals * Added a json_object_new_double_s() convenience function to allow an exact string representation of a double to be specified when creating the object and use it in json_tokener_parse_ex() so a re-serialized object more exactly matches the input. * Add support NaN and Infinity - packaging changes: * json-c-hash-dos-and-overflow-random-seed-4e.patch is upstream * Move from json-c-lfs.patch which removed warning errors and autoconf call to json-c-0.12-unused_variable_size.patch from upstream which fixes the warning * except for SLE 11 where autoreconf call is required * add licence file to main package- Add json-c-hash-dos-and-overflow-random-seed-4e.patch to fix CVE-2013-6370 and CVE-2013-6371 (bnc#870147)- Update metadata (description, RPM groups), and remove .la file in %install, not %check.- Upgrade to 0.11 version: - SONAME change. - Fix provides and obsoletes accordingly - symlink the .pc file to the oldname for software that needs it - Remove json-c-fix-headers.patch integrated upstream- add json-c-fix-headers.patch from master branch to fix compilation of apps using the lib- Update to 0.10 version : * Add a json_object_to_json_string_ext() function to allow output to be formatted in a more human readable form. * Add json_object_object_get_ex(), a NULL-safe get object method, to be able to distinguish between a key not present and the value being NULL. * Add an alternative iterator implementation, see json_object_iterator.h * Make json_object_iter public to enable external use of the json_object_object_foreachC macro. * Add a printbuf_memset() function to provide an effecient way to set and append things like whitespace indentation. * Adjust json_object_is_type and json_object_get_type so they return json_type_null for NULL objects and handle NULL passed to json_objct_object_get(). * Rename boolean type to json_bool. * Fix various compile issues for Visual Studio and MinGW. * Allow json_tokener_parse_ex() to be re-used to parse multiple object. Also, fix some parsing issues with capitalized hexadecimal numbers and number in E notation. * Add json_tokener_get_error() and json_tokener_error_desc() to better encapsulate the process of retrieving errors while parsing. * Various improvements to the documentation of many functions. * Add new json_object_array_sort() function. * Fix a bug in json_object_get_int(), which would incorrectly return 0 when called on a string type object. Eric Haszlakiewicz * Add a json_type_to_name() function. Eric Haszlakiewicz * Add a json_tokener_parse_verbose() function. Jehiah Czebotar * Improve support for null bytes within JSON strings. Jehiah Czebotar * Fix file descriptor leak if memory allocation fails in json_util Zachary Blair, zack_blair at hotmail dot com * Add int64 support. Two new functions json_object_net_int64 and json_object_get_int64. Binary compatibility preserved. Eric Haszlakiewicz, EHASZLA at transunion com Rui Miguel Silva Seabra, rms at 1407 dot org * Fix subtle bug in linkhash where lookup could hang after all slots were filled then successively freed. Spotted by Jean-Marc Naud, j dash m at newtraxtech dot com * Make json_object_from_file take const char *filename Spotted by Vikram Raj V, vsagar at attinteractive dot com * Add handling of surrogate pairs (json_tokener.c, test4.c, Makefile.am) Brent Miller, bdmiller at yahoo dash inc dot com * Correction to comment describing printbuf_memappend in printbuf.h Brent Miller, bdmiller at yahoo dash inc dot com - Packaging : * upgrade upstream location https://gitub.com/json-c/json-c/wiki * cleanup old patches included now upstream . json-c-0.9-linkhash.patch . json-c-0.9-json_tokener.patch . json-c-0.9-json_object_from_file.patch . json-c-0.9-base.patch * Redone lfs patch against new 0.10 release * Removed empty NEWS file- Fix LFS support in x86. - Do not build with -Werror - Remove "la" files - tune up autotools scripts as well ensure config.h is included everywhere- Remove redundant/unwanted tags/section (cf. specfile guidelines)- add libtool as explicit buildrequire to avoid implicit dependency from prjconf- add baselibs.conf for pulseaudio to use - use original sources- initial pkg 0.9/bin/sh0.13-lp151.2.30.13-lp151.2.3libjson-c.so.3libjson-c.so.3.0.1/usr/lib/-fomit-frame-pointer -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/f3f3193432f450c43920cbf2903b4701-json-ccpioxz5x86_64-suse-linuxELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, BuildID[sha1]=1d882fa4b1cf7352ca44d67f8ef57d077d19b8bb, stripped PRR RRRRRRRutf-8537064880c0a2d2ccd38cc13d296724f3f32951967ee148301bdda153488a0b8? 7zXZ !t/`] cr$x#rl%A.DQمͯjV3+SlyH duVuigSĤG[5% @cA"nT%@m~ZqрQdT׬t#̢CI5< |cUqR ':ECe't%e_X,v>0%Tr c&JVT~S*LI-% 2=A@7͓;d[)*,My) ۞c#Hތ[SxA[/j;BLN%>#TH$ʿN5Rķ9 uP:0FLz}\O~Sߨp#_9 55Ѱ> a|Kh7 l~~./냘xc;Y|H?ok¶ַw/rMM򂟧l/+UM!`w*P6'//qtA+t7uucqҋvC?M6:/.F,G4EgEA7|*8qA^uvn5xP'&lm 䬻3-%ZWIk(x vShbUc/&nյ뿁V:+)yx#mWL0I#8G!]|L r{HvK/]LoOu(/ U |^_]uh3cO *2ё4gEP!J<-MxŊqĴEjZ E)irz7MW0"~>aiy *A wp=Brǽj"vtQмE;+H Ȗr\)A8(dt4Q7C % 9'tk4M$Ga'øG.@ϵg .=j\ϲ _wNoBw͋SXwn8?GnDӠ2w>͒OnewC; ]`CѼk _W!-:+ AJW/'a{JU_ɡ}-zuS@c,\2*?x)iƾ,F1g1LN2;N#u][>U%b;Ӯ8!5ʦǻZpS ` u8F\f~8=L#YA?P|O%ß;%,MnYx -~r %AрݖDW|&Ч8Y0h7J0+dr r:fbqMT+I"W YR]M\w}*ehv% U5*N|c\/OFosyv9N1TijKkor*Hb;MXѐ9NGYziW)&NzuT H/&5i|ި=|<ҬxXnqjlO_p; 6S> ׊wS7-;RgqF~<<ZHn%>ny+Lz@ڍ/2-|2tIqRq_R-}-!4G18ٲj +wv6( Z (@1k"Imcl+$z<}4#X?cyB6b*KNBi>ÔLphsQ\SvlV$$^.*o'ʭWS0q#<ڙ?3F DBxQ362^pbqLXrY8VA:wތi"-I&H\'Zs:-@r@hHW 0[䢃#ma0A%dmϹewjv0z^ضV*K=~Qί/!GV }I`@($^y3wn:w,L26ch!,%F+}MÞ ti1W* *mHpज0F3מZplW\ҫ?]ن㘱җd%..5sϢ4W˒|VmkǸRMJ*:}]qSSnӅX't )Bją+Uƺ-mtV.'g`/6֛[fO2 \{(sX f]8>ws#}688[T.5H $O`/΍junc[`Gqy %h I e"^%` |ڟ2'qэF/#>Y>hiݗ9nR(#O f[%F)cN2(oy_e_Z)r*AWR=>:(guU]NgEE}v~ fү8Hfh@pU awFEXA} ^'Y/ѬT\$S+x'ZN[X͖Ov->Q#`q`@#e,C;ءjyJ%3&(9 $ 1ɍEWhc5M^բٝ˫͂'_Jy1Nu2Jgf4a+b{.BZӌRK =:jboƾ)N5Z>M#.S^1!IWq޶RDŢV(68 1f>4JpNńf\?zLc۰ "yH{3R¬,=];2&`MKy9',TǴiA1F:5-L ALt\2;Yu`Zuiz{ƴllT{ϛrۨK  Z58x :kb͵,;wTqc eYS߃̏aӃiikv&mJdb??#{~;lrFjd#n% aE6\e7ɆD_ҘKI1݋*ɫ yl[NSC,9ƇSԴf}68M. ?k &?6'CmMx["M¾>tWj]F>evBŜg9snz kR6 ;8\sD5CYn'I,B^J%R-?CN Zn \>ͬ; E͕yq?c`[}r% |~tվb.F>P`ySi9v_k%OD&v" Ic~oE8+ ǟ ^;rY찢1q#׋ľٯBW&(.SFY³U'˜L ɘC鬐Rsou봛5ema|`\i E1k}-Qc\mͰer៹FEP{уeekaO?eLJdLcocvuvi;UỬ5|u TR.l VNjqm4+J+K19_ekId.ߴ+KbD(cgP5> g0 i]q}p8F-~@|Ş(pp`1VXxO[+M2ʓvo}|F')+Epa5< yh_@ܹOH߼Z`g%[7\0ޯ>>qGA 03I^Pg-S6KS%i[i㗝N~>UsaA9Cus1>v$1dqq_?*ۑ{p&V2BūIQ〪ƲW,DV,Tu\1)I掙i 绥{ }6O+vv L0Y3 DNk#U:+wgaI_.KurAgQPfD3sT> ~/e,C~fx ^Te鿘e[3̎HIDʈTki7rr=3CĀu]&69Pа̊ H(iٓ FvTe Nߓ1GZr2(1"؄QfYD '}&xm%ܽ: C0zgl`m5S73?EfN NrFD˕:q5ދ3\ڭm{P]gz+hHE?[ۺMq>ЌB:`ob["fj\Iyb]_yUhPطAE8wv>->CΟ+3R w//T9yb]PJd0q2ùܾٳ@J( y*9!DcO^Qt+ef^QSB,~3Q4J젳b>^Ҽܴ:L8ky66-vmr t%M+iɉ,X-zE6Uj C"35T D7 SE_91s( *j.Y [lxciX{ hh]] 8w/jh$w](M gj5$d=x 6>V&63ټX1[ y UQ"q^X[`GUw,풦-tb-u{:ң@{#Ͽne/>s+LPZKw2Ypm_!6ven7`ܑWL*`mMfS+ ;O )hҠ͜lZe`X*ԉaDoh2+z .ƣQM%uE`H XBG`uMaѻgݚr; cs-7IsN>?Jg\qgÄ7Ɉ )Kfd:G ?odXm᰸$MM7ٞ0c]#dl>:]fp=K쬼S6A+{f!U7K*[HTq~̑jjz?II":jD l.$/lx ґI^.PJ4]3FX(8QGˈZw rfj1a.]Ʒ\UH#Ңl5a HڲZY:΀VrpPd >&gqT,, ȁRc,|z v_S CηPνbd夽s}/0<"bߋrimZ'V tnsgg>?BS.h 2%*7>ur9RH6"V<{?o|7F?^d49ֺ#hN9'q^ssZ;mY*RlKofլ53z<a@!e+<0ʏ\{V$W.>>+tc~=͢&:I3b8GRnrvR #K7WUW? >~B뿒r r.8s 1@j~)kC!˵myT~5IU{^Bnt|6~b";%M~U8F ւ4DuMdGoO j%zO:h7uD(gb}&aЃۯ0Ԩ?鹗yNuG [; xO,; P_z&r?ut$cۄ#fX̨A0Ƙf>1P?8iDRPA`aʵXZjÏ'}yS7p9_rEWμu]L&6 V׳.#SuO԰Gj߯ atp[́хTL X0"*b#KUL26mglWB g8yݠ]K e\hj/w#؂fTAnCb~q-^[Î*-v*X uCEZKX/ 7Scģw(Qo=\=ˊTc"l6xAtp7FQ,89Mjo1 GȻ*J}}σZd1 -;g"Y>o@|A4xDEη8!1|bV')Ί96 BWLה4>"[:qacd2oR ӗrNrͽ^F~OHM%<5~Wh{2 ~ &lZ¨vU=.} @sC%{heEzu6BxqUU] q£< +NVR [GwKu* K,Ҧ5wN:<A,뉬 N!{mŁQ:v)A2'($%)ֺ-d|߻"urkKpjRx;rnR->,UWAT"U3{.X4vlnNU?+lA6L'Frq7osdgт`0\%2I'Gs5Y 2kɛ P&A 췶R45\Ygn(.(:I:Zo}^9^i V],yA*GfV+wShoEڃ1SYFk1Cs{>h򚕚$GQEsVd>8=.D?FnLcwY.V, Ͷ$1Z1״ʟounEUse9XOs 7t3+BB9jtOC,*mEj:}9iѢ7<.\ neϯ'8"lX=i3#>Fe YFqj=R đTTTA:OWu5 ;Qn U]uH[["j{omJ7=֗|dVOm>Ú5[T`+/C{]YۯZ d`XP7/Ag2v`X٢e,7B./w=p`&#B_9(p ˖892[OM@gJBQݥ&#_[z>zY4>G"VN"6_ ;Z#9(i-Zܓ*U.ZC?曩$."Q&NǗ"&grgE"6S؀%=}_f-^P>7w;yhs'$J'0~jgZ Tǵ9}[L+5@OۘñA5{xJƴsTF>lzOΉ;k=sKCUCG} , (UƼA:;DW^7E IH:q<(&r"4Q:V=˃ =E}E0`n>;N(;9$)T/H3rЍ{jB(F;(l3P@KBl)3ْZ4:yj? rR5 Nuդ%>îX `k=j.4[Hq+4#' ȥ*g-jzAܣ(ۡU͓mrB z&f^E;՞,75Vt{W8|cw FJ,'tLBdj%묥w?ގ!xptf5_"@>Ked .(v7S;62Av/\Xdx߯91>DΚ=6nQӨ. ϱg%@SDy_2G>;mJg;&+)խdp-c}9tA.zpGQ?:!*fT%%Vͧr vJX`ɗ9+lH浰_hv.D:k7K:ڏ6 b@U]L%aX.$ȿDge5XF<NuaP'~Aޜ/vKPO3wܩT)Nh\ň꽇8@0![4\%t8V=^t/ȵAOI MiZLoı?dRIIE-SFk`(eZc\# 5g~y?3Pbb KWL2{Y:VN/B47k,6v\S|mlyc5婿`E^x+w#FWz/ c?4cL7\:FЩF>0?h3ͨ;Z[Q#OjՐ֒bD+Xٻ(N\\t%^jt ս{49$M1,gq GIB-;~N8[m@ F/ɵ/o܉G{EMm[xY\Uha}uD@BzMPS8Q!0L"8D*°/ia"uTm;*zDPq}a)`;"/g`ަ^Þpdo+X}m|"m>At 1XΜ<TB0[L &^b(UXK?wp&:ZY^!ə㴟kVܧQ/xj$g0.ߖ][#00~>AavrA# #S?aqlfϵ:G}+X۠#k[x^Kڭ׬ lF'ntwm3:O@fCsg lѱm]`0: c]$5 =D!!O)blz XvT:$| ͖L .?~˜Ud>!z+TW9v:R#LS׋oPϴzENI)V(1)gGOE=G) ﯮ㦰4WWiNZBT~ȶͰR&>t\̱E @GMK]VB;9]j(xVz<}05 ֿР ? 纄VL82h[~+p0L,-Clnl"tAĦS,=v< F}׸<8|;!ZYţlޓWRFKD!2qV`x3jk[r~3 Zs9b} x}FC\A:._*0rÌTRPbzdp#;{o$}B- @UӌU˚mՔ(zİE:7?6X!j^TKxLYkU{sF]I+8KY⿙ c$" ))3z$_<`ʍ=\ܩ}q>r\SY֗΄k )n^VO$le%M7m*:5 i+mX!%vwgh|@J 'XDF4u_o>#*i>| 69J{!baL^"L1ϙ3QN?2!Kftqlw6tKm[Q!+^a'eYﰴ w0<ʼ z%V'ݥջtl<鬟 퇰܉ tC[M.0I:#bw[i;ꉦ{̬ Vf&,P*;J 0kBo|u8H4O+;v& 0\P4S@j` J 'D~]ʉ!y$VDhd 7ܐj%&HCo&T9T2&Ѐ NC~/ $? iY!U@Y1w+8H=O m~hj7϶s5rhTJ,0˹$AΕQeGr?zM.yTmga9c""IwhWDLA|&ѳ'& B C&>E]E9Y*!gW`w`$X[՗V!+b= v/^՛ zgi]3NdF9lm`-XbJ6i9}[*+ o~&AGOҐQE0UQ*cW ?יepl.ɇ)s`{Rk Žפ…A5B6Egh3fm4g54MMa>۬/ӳe5rq;Ȗv^&[LqR `3{/"z^jFg1(G|׃%wjv+ŕ/N+ 3tÄk.[@A|N'.ʀ_Ju Ɋyx{vR$@wbJ6Sh` 0IYc [fHL5F-$K~`lcgav4KɊ>V1v*>n!0 ^UaѪܪ脛9 Og70@/sK^br !o]Q,fql @IrZZ79Px=9-N: ;`G3 ޏrcGpFt۞ge{U^A6F0Q!Gpo)l/=#+( _ژ.;i:ΰ, I(3=!KQ>kŒSRM&Cpc:)B_tPU^_>LñsQ_>cZ~AtUVNhs0Wu6*߼ du)+`nl=g!D&o PL[͆z{_>8&f(!ep(N<E:%~ 1w )hAMQlӳɀR8 Ye:Co+Rig,䲙=ѬIVLWYS@ G}suKr!#oYPS[>jWus wW iL#,Ę^f;T LS K2w kxEk՟{$;ˢ^ڈc:IEEMYJ6>#>c @;u9ṣeD:l=e #w#Yu-&ه dWvUCT| x"mKdyi/8| wh[o|I } zگ\&;dO+?ɪkcu<ց̸/!CPVw `h\yk 5%\tC)ow{1,5rcf/N6g?hf\ĿjNɯ,__fNk%_""xj-\p3$nËё7o3u0H>C)9b%bUʎ#k+-L|)^.A D8%w퇾A!6ոP^]VSb$˟ު0!bTF]ɯǒKKeQ6qk'/ȸ7HǕ@tm@joĎ X4f+7w[«ϙ<[ǂ.\Lc7X$nwy"̫)}ShY;f&ro V fLѾn5tD%d+g)gwh"A<֗7ǿŕAc ],&ۃf\Y6eݝWq7DܖHty0Ƴ1؞2 \?gz[(RR:zE)ϱ,#־X,dH2(҈d=3?d<(]Sn,#}"BUH'&]GPﱉj3х9R7 m\Q  gMAej1\LPTSq\ b,lW!g;Xt_sG2UIiP5K41s'/ʁ4ɺ&&roq8&B㸔ىҁLe.ZxrLE,gdW䝻T_)C@ɍ CNp!&Y:5aD.vȞR Y@$8KjFi//ܙPK*U1.Kq Lu[Q0Eq~Kk*~dP2 F#a$6P\Mw"ZnCڼ띕TvTPi.aKÊMgN_n (,fo;x$ jOeJPB˸IRtPfRkm XZf^M+-ֈ`ؙ;&3{Қ=iIה 2j&Mk i؟-_!<p,Lۥ)ʰ1/tZNm_&yʂm<ɂ%ƹSSR~_vun)UMA!9:/Cim0*/roS~S9U{Ƽ":: <51;M\faHYusť&YRzʹ@?\x ~X]:fMOi )]Yi2!Yfsry͑(Mo<~mK aЕ 3z~ޚ\!e*Dkk{'7G|p5]U{Aƒ4NɩhiQyPX`G;*([CAtm=cr9k~ ?$y,c)nec{7 1qʁۀ 5 15F1,0l A &ۦN1A G `_-߃'4#YCH:+4o[Ӑ" kѸUS(jI9wؖ>6RT^=W8qkoƺUˁ E/ )㍕:xws0j Ž4ú՗BtF@Q=l 'o1: cmpƔ.ƷET]F^S"gf1VYA勈#Ҋ:,bJ:->CЪrTgx6OeK9?L@ԜmqEұ3 oj--^L63W3 - )*qE+up" bzN I/dFfBج-}mhї-0ќހR,P%FXMÃR`,5h:YÒ~HhAx2^' $SfŊheOc@Νթcv Q3s ##tVP5ts F@oz$-{-CQ./_+r=/ߐٲκLN)h,t&ACšS-@T`0V%BeN# (yV*vC<3 /CRY` X~W'יbH, r~k=Yi{Ahk4skc.bnfTpdMGoSAh61m563[Uf(Z"'E_8}FRJ/EH2 ;$JGn@MgX X)"ȎDdF\&yM\\v\^\t81#6e8!4fEZϸ6{Ы9/Q%J nT@Şy D]R1an3_K AE.+WYs`o "6i,Hkk"w|1(;b)FNFٺ4wi(Y! ) gh5Sj34( hh#5H7/JDL6t|հ3e΍UuM/9'uTp'B(Qfw 'H]o*d5ZK6P]S.,ϵ#i<J)B.hth=b~UtmjT9[k&mL]B~B Aͅћk}mHX?۸í9xtXt nȣˆ,1ѥCn޸ \=Z <7B6|Yԏ,6+p0ټ,l:N 3lx>th!^uP@?!s,to k$ >bVNYEӇ͠V{nj g!pS *@~puHKyI@@CGm@;^>x5ԗ+.VfjR*WdQK M!s} p4K'+F(Sw#E$uuFfK͸z.l?[Ze815Ay./s2I5}-)&UΜ%.@DC;@D¯ .%{pDxGI U#u{5iawn&v_݀Bp|ZBl騛t*xIVn^Tg5 XM!tkD,e K;sڹ}ӓsҒ?f\jt䤼~|$o"EGͬ{Zn 7{S^#aM "{Z xǸ8cU[o?>SҳV'ѵN%*9Lh 3 /+$_uM)%VnC>4i$ )6~n+B@jOi;D0gT7`jX%cȤ_DGλ>;?yPJ4cj}W(Z <%/tF=(UqQSoS`N,XZ̀yL쎅ɏT/4@*mNj>n8ttW;Ѿ6g4"ra ܾVbhґ~"YA6UQ`|g sfq䔺+^Gq%Tw&<sK{dA m]EPm"6U$\; gMS#920|u-vmZbA(=vwϷ.?q)F.BBRh as]M̼A <ɸ K3ݘA~AhdǷ(PzNGBx%QpR o^YD˙xQcz )tF(R&x.}hJv~ۑѴ3U~YB'!m"o%|3GI>KB[@>E,dJ4BPoTO)+#Vp6zpɢNfCOP"D:b8xȀ nu)= "HU] eF[U 8Xv2Gl#BA Üu{; Փf鵞)Yp?6Ѐz-*vbl6YC/}LJzESG\uf2:Ut:zM\$tw#DF;Enub۰՗yd~4{#r2Jz7FqP/qE9ȊgagΣ5*ky'1PpxV̶مa㩵zhC,5?6M9!=%N'1VfVZ >QtL7=B~9_uvVKIw~x