libjansson4-2.14-150000.3.3.1 >  A dY*p9|h}Χ,.3Aixl,v/a\r`1.0@E|.w>-!Ct~M $Z . uȄZ3v#eW%;`_Lf5*o0q& '^mc?x0߾Vh%_+)PM>+ Kl(11x_@=|K׸ϭmV[Vُf$\ПT۵M522a0432c33a1e89a01291cd9428b0d16b571825e1838c60d4552046810806a36f5391bf55ff44a956fbbb4424cec6dcfab216054{xdY*p9|BQ"yb1T1첇@0 ?N1?]. y,T> &q&/cL=^p9!&Q!}~5_,J:HB[S A!:#:E<8Ҁ!T3|K?L6\O+-u|i:|\>de*X穤2]FѨ; )^> +@ә̂^ E|4u67)ᜣ_ p@?d  \\`hl      b x( T ] (8 9 :f >@FGHIXY\]^-b9cd_edfgliu|vwxy$z@PTZClibjansson42.14150000.3.3.1C library for encoding, decoding and manipulating JSON dataJansson is a C library for encoding, decoding and manipulating JSON data. It features: * Simple and intuitive API and data model * Comprehensive documentation * No dependencies on other libraries * Full Unicode support (UTF-8) * Extensive test suitedY*sheep01SUSE Linux Enterprise 15SUSE LLC MIThttps://www.suse.com/Development/Libraries/C and C++http://digip.org/jansson/linuxx86_64СdY*tdY*te96cc774c6ceb339bac3023e1126a35430cd5c983bca2bafc5ffbcaa43aa87bblibjansson.so.4.14.0rootrootrootrootlibjansson-2.14-150000.3.3.1.src.rpmlibjansson.so.4()(64bit)libjansson.so.4(libjansson.so.4)(64bit)libjansson4libjansson4(x86-64)@@@@@    /sbin/ldconfig/sbin/ldconfiglibc.so.6()(64bit)libc.so.6(GLIBC_2.14)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1cXTZ@TS˯@POPO'N^Npstivanin@suse.comcoolo@suse.comefimovov@gmail.comhrvoje.senjan@gmail.comjengelh@inai.desbrabec@suse.czjengelh@inai.dejengelh@medozas.dejengelh@medozas.defcastelli@suse.com- Update to 2.14 (boo#1201817): * New Features: + Add `json_object_getn`, `json_object_setn`, `json_object_deln`, and the corresponding `nocheck` functions. + Add jansson_version_str() and jansson_version_cmp() for runtime version checking + Add json_object_update_new(), json_object_update_existing_new() and json_object_update_missing_new() functions + Add json_object_update_recursive() + Add `json_pack()` format specifiers s*, o* and O* for values that can be omitted if null (#339). + Add `json_error_code()` to retrieve numeric error codes (#365, #380, #381). + Enable thread safety for `json_dump()` on all systems. Enable thread safe `json_decref()` and `json_incref()` for modern compilers (#389). + Add `json_sprintf()` and `json_vsprintf()` (#393). * Fixes: + Handle `sprintf` corner cases. + Add infinite loop check in json_deep_copy() + Enhance JANSSON_ATTRS macro to support earlier C standard(C89) + Update version detection for sphinx-build + Fix error message in `json_pack()` for NULL object (#409). + Avoid invalid memory read in `json_pack()` (#421). + Call va_end after va_copy in `json_vsprintf()` (#427). + Improve handling of formats with '?' and '*' in `json_pack()` (#438). + Remove inappropriate `jsonp_free()` which caused segmentation fault in error handling (#444). + Fix incorrect report of success from `json_dump_file()` when an error is returned by `fclose()` (#359). + Make json_equal() const-correct (#344). + Fix incomplete stealing of references by `json_pack()` (#374) - Use GitHub as source URLs: Release hasn't been uploaded to digip.org. - Add check section.- update to new upstream release 2.9 * New features: Add json_auto_t to automatically decref a value that goes out of scope. Available only on GCC and Clang. (#301) * Small documentation fixes. - changelog from 2.8 * New features: - Always preserve insertion order of object items. json_object_iter() and friends, json_object_foreach() and json_dumps() and friends now always work in the insertion order of object items (#293). - Add json_object_foreach_safe() macro that allows json_object_del() calls during iteration (#230). - Add json_get_alloc_funcs() to allow reading the allocation functions set by json_set_alloc_funcs() (#262, #264). - Add json_pack() format specifiers s?, o? and O? for values that can be null (#261, #270). * Bug fixes: - Fix a crash when parsing inputs consisting of very deeply nested arrays or objects (#282, #284). - Never convert numbers to integers in the parser when JSON_DECODE_INT_AS_REAL is set. - Fix a use-after-free in json_pack() error handling. - Fix subnormal number parsing on mingw32. - Handle out-of-memory situations gracefully in the hashtable implementation- Update to new upstream release 2.7 * The json_pack et al functions recognize the specifiers "s%", "+%" and "+#" * Add length-aware string constructors "json_stringn()" and "json_stringn_nocheck()", length-aware string mutators "json_string_setn()" and "json_string_setn_nocheck()", and a function for getting string's length "json_string_length()" * Support ""\u0000"" escapes in the decoder. The support can be enabled by using the ""JSON_ALLOW_NUL"" decoding flag * Add "json_boolean_value()" as an alias for "json_is_true()" * Add JSON_REAL_PRECISION encoding flag/macro for controlling real number precision * Define the maximum indentation as JSON_MAX_INDENT. * Fix cases when some malformed ""\uNNNN"" escapes could crash the decoder with an assertion failure * Avoid integer overflows with very long strings in UTF-8 decoder and hashtable * Check for *NULL* key in "json_object_get()" and "json_object_del()" * "json_unpack()": Allow mixing JSON_STRICT with optional keys. * Fix int/int32 mismatch * Parse subnormal numbers correctly- Add baselibs.conf- Update to new upstream release 2.6 * Fixed CVE-2013-6401: avoid bad performance in large JSON objects * The json_pack et al functions recognize the specifiers "s#", "+" and "+#" * Add the "JSON_DECODE_INT_AS_REAL" flag * Add "json_array_foreach()" function * Add the "json_boolean()" macro that returns the JSON true or false value based on its argument * Add "json_load_callback()" that calls a callback function repeatedly to read the JSON input. * Add JSON_ESCAPE_SLASH encoding flag to escape all occurences of '/' with '\/'. - Drop defunct gpg-offline and use local source_validator instead- Verify GPG signature.- Update to new upstream release 2.3.1 * Add support for optional object keys with the "{s?o}" syntax in json_unpack and the like * Add json_object_update_existing() and json_object_update_missing() for updating only existing keys or only adding missing keys to an object. * Add json_object_foreach() for more convenient iteration over objects. * When decoding JSON, write the number of bytes that were read from input to "error.position" also on success. This is handy with JSON_DISABLE_EOF_CHECK. * Add support for decoding any JSON value, not just arrays or objects. The support is enabled with the new "JSON_DECODE_ANY" flag. * Avoid problems with object's serial number growing too big. * Remove "+" and leading zeros from exponents in the encoder. * Decoding functions now return NULL if the first argument is NULL.- Provide pkgconfig symbols- Remove redundant tags/sections (cf. specfile guidelines) - Centralize the shlib package name- Create initial package (v2.2.1)/sbin/ldconfig/sbin/ldconfigsheep01 16835651852.14-150000.3.3.12.14-150000.3.3.1libjansson.so.4libjansson.so.4.14.0/usr/lib64/-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.suse.de/SUSE:Maintenance:28927/SUSE_SLE-15_Update/df3241a0b4fdb3c844f354d927b9ef5b-libjansson.SUSE_SLE-15_Updatecpioxz5x86_64-suse-linuxELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=ffd0bab23ece42237f1e8316a97ea592206990cb, strippedPPRRRRRlDZ/̡utf-8732318c9e9ba0d13b2d31c87d7ff4cdd518e782eed70bb8b3b6848e5322e9bb3?7zXZ !t/{X^] cr$x#HT;`6V3P.ص%E6\aLn->n:vvC}2ST kTxDž<JADS?*wؗC:ZZ?AtS,ui̚B/zdp/rջn>ykfiM_{<cШ^,tz'2W6δ-=!PC-}Z0qnfņ|sab@LssəELA]kj_E8&xɹR@?d}I_.]$0|MkQ(+U  )a|*95ݔO(mx35)- ƍq>f'$vj:bwhs09L}eؚ!9:(T1TTKtX G#B֋闐:+MWd P^FJ5A-T9#"H `zc1yE0>a)驤KaO4C IJܻWa.W J'.u7)+N%(Necv\(a"cg.DVP>6E s_Y׶!$D]UW> e`3KbG䐇~J jL駛k HcHTlOz&c]i۵]$nR>m#Gc*. F/iZx.p"C*,(T-]J܀ru숅TӖ>n # }ۣ0GQh}ٌp ZkzPC9sǨ,Ao /]W^-Dl,!~;lkQX_gtB)JO@uElaI$mw=R!9+7T@F=R*XLѯHCko2QeY#ˣ^|e+NWH|mfq&x#~RJN,b/w1aд(H.f궅Z!وV~VSê2ZETj3PB8=74.eIP!6W=`ncR;#YCfǮmؖ*nPЕ:|1S*&Hg>edNdwjW|6unSpѐ(6qw- 1,kޢ W#;NYEJƋi"Wjrrpv ?pLKoR4dob\ b2EvQ䢻~k.{|Lj7N-0D؋;e[P+4o^8 >㨢`f Y+z:R(p J rEnP`&; RxH` #IA9D9E-D ]K[Qƭ7?^Q)H`ħw:i ^X\b*uV(ۯCTpjHnwtp,r!7W,[s#hMzv"$h q?%:/~GfcyԖlz511FqTXpbi2!T),Ʌ_[OESE~/&k$;{{E9(]T3ĥ ~ATY>]u]WSg!RFs>uZ7*ǡq= ]ÙBp7bQ~?SK4 \Mȓq_e5_{cd<.T ){dR"@ :lf\X4Qz_jͳuq`mb' EQR][" ]o |3Lz\Q kѺvj}q6&WDDDPIֶ'mqͬTT;ߐ.~n/K|54^m7G[})i2ۼϻtAJ4&:2 /Ioau?쉡Dɍ7cY[8hB%\Û%Jg~>eǼ:mF ^9^I>Mrlr}<`d>3bV&X o =X jƹ >̢g%J,B+k-S.ҌPN=Ҽ$x7FËϜ$5tF׹Hua$1}m f߹Ug}2n6[?iP;%6<3$]+tDQ6ߚ϶==,x1F^xЯª`^}&Fmu#nQbS3 9xc)~y(O9&(=ql  zf@ w-8_vg N)Xy>5>CEiedC%-~|$rט!"}`dvFR/ `DYhvo`%jOhĈ 1bZ(ؿ6 z i^p0-;J4Z}rU-9;Msbt]g7R͞>A26`Gg8>&3^'!-=iLôxPQ') i bt)mHG셷ocHOX\]/R:50x.oRDĂ9R?&F[eg!g㑯dBg!/-b痉`'@M~$\Q=br5G2Mnh֧&AXaZ! L HIQ |\e ܙL{A:lWz4AyHW%66ݐK[VogMu+-jʜ^jD aN̴_a_ٺ@w۴68ٛEtqi 5# EOU(̥z"*P9Rڨh 'Fs*DKC(k]:BUJWmZf—띖X1mx\Yu3/ _gC!uP6RCO6t6!'O~B #zx7 zsmwO@=2@}Xġfe~K +0"#Jϧ4Ͱ9>P.<]Wo|cHNZ) */v]P[TU}_^@A5DQubagBu.Xњ^mkOws*IԎ.rIY?/#oeLůoL`/y#"] XlhJ)70v'eSJ֕S/6y!78:Nm7˙wwh%Y9yŠ HG@Ku+Nԍecy_2ڷYM~ȿ)f.9ǝ8oJ:p5HPQkqZ8K4ppPS1+7R}kڅ˺tIЧ, 3 "}]Y2CΙ?ayxPJNPSW+Yb >8Yѭ<>XSpw8kc&Bo_{6D6g/22,BlJ}hRK: a~85quWhĨ@p?`%>>!`{~OD"ZAWa\ai  Q:OY7^8`/:/S2ibq/^-i6&1v`T)i$j FmJiju楞/jv,:Fx1CZJoE: b(uQn^ iw{'. FZduX7llO0mXގsĄF9Aq{eh3RQJɦ0`} 0")9%p`7=74WCA$TXyw%- =^wjq`׵G d[O>C*5R0.A^Ӷ ?B0JAbW8{'N]AOp|; Nk'}^U.1 8LUUtŅuz _^[[DZZkq{·*5P pF+ `N܂nyv TQSU 5.[!:YGT@VRrC@%G4ck+ {;\{hK?i%WgZeZfY:{q!c=r[EHp `G J71٘:57uAgW#-mNA=+zt5PrsgB*^|]y0d8]nY|+i0,l㬇pO2b{3Q6,守ǻt((sB,gBP؂˟<-t<̩KRZʗξw{$Y*VJf>u\R ~vEoZWl1wC4l\Eoܠb,&Kf_K\IFm8R-ɏc,B.?4YaKSbU6tMȮ}!ŤБ䱙z VTy0Ormq-jQƸgt9*rcud 0Cc(^y( 61ZRx1VO;ªf{a)GWXV7nY 'BzfgBCwͯl^`9ZN 1VD@-p TsG&1q\b*(U(c^zm70\hI[}8u^&rBD-o;z:6@A ;Ѹ B? ȣ<>C}0iif륓gպ~19Z.zLoxVgқ[mܺeI<NŊR*ݛei4=qsޡ[r5A:RUcDK 'J6Uiʵ9uF=WO? jP.~y팓rҲ_&+X㩵…Z^;M@մg q9.;H:mR0p3We8\e =.[ tNwt޽fyf3 ¹Od\eG E:ʧL,9y5Nc,ᒇ >3[9c죕>492L;—*hMiL*UmړrTgS%隦 f4pπ.2 7vo#d5xӤS\Ǿ` w͵|AfN!FGҮM{8jf[Sɩaѣ.˧z)푰wԑ/xv4<3ZjB 8 U!5}bD1F)s S2k^1iRh9a)q%9U!6sU"ӚcwH2mM,(伀 ^o-rrNa L8L̯gj־o'Z=xG>7S>)ɖ~)G͌ ~dj#pيx:'Yf@ <]+7YNEW=Dݕ.)Y DZ@gZ,;ѧ{ *4rb瀺'nj53)]\_ȼ>?sS3̛w7g'LIdWuKKpa38½n08׎.1%2(hخ,d,;f'3c8Sinメ+7 >Jߒan;Z B&oq.h5ݗSkՍ&❁O],z2ٿh~ho&Q5ec:4b̠p39SjLף}o¬@6 T EG\LZu}I)SmGtx!:0J:}ɨfa-N6〲e&-zgya؏MG`JjSe[\Z<P5b [Hdv{*ex"3W)1^l`Pyk>C;šT:hԧppDޛ\;Cg!3!]\枲,$ tCeXެYIUwS(:z  4(]9ZV?hw+:{^wd>,n/鰨9Y!QVO HT[mhd@M8eZBc+tW0c2Nr/{&>~']ƴAڟ r{i Aо{+KCsOժ¬b ߝ@9k"` '?Ѧ3l8T6݉Dz O:_ 4 Hق2D f|&}F=Hz6 /K+qz{gExoOk}g9.P 6u:b1 Z>.7i`k74 cElMξ. oLޑXP)Nɗ*đIo`TC%pB✮k5hd%k0#78NLdNO\`aʴ}Skn <]y] \Cq< YmaQwŇl)k-5;6f)Əi`8*YNʯbvWm0ڢ"U Erq8<|_ I_lLUk *$E/Ӷ.i/ *hŭ1}p Bt9l|)ӆ;pv6,d,zxd45.=W[a}J|<E{W~/nȯS$ 뚨{;tǭe.J٨^M`< >BǀyۮWi>*VQBgӐ"axʤR7H$92P O9Y"C9K(Q6Yq.@8krg>I at5VSmM}nJS]\m+J_ݑ^@_ fw7rV̿5+՘-\s&^dZT_S2چcóv_;/ٟ0@-S#-&4i:\ ѓslQovk {Fh'NS@n4_.De}swvIƼyX>-ˋMS6`-jK{ 1ַ !d w=7R8D]4ߐ7<:y4R7S5=XKAXY-W 7IwW p4;E p.ʵd;cMY],|ME_9enD~ca`ŠNSpHH5ivo`EXdwt Ʉ`86Z[51 m]-ws|JJ)E$ZRBzbb-bFF$0g ).< Կ!Ѝh"cHgyل"F Vqc3TpqCƸ31eR-)\sOoD4#"fhã nee=&<$+4EݴPPojv.sӅDeCLᜅ؞9Ʃ}}EQTޯelRuKVc‘S/jX&7N.̀`SQΞe:u$cSjVF8w[jE;AhCe>')2N)>2| 7?\JLԭ )?9D\ʡckXzÌ!*d\.m߫| 0 /1{G2$m=*_!4q@fEk7b,O/%׺4~3bXe,/Fq08>Sᤐ%/C_A&XP)i tb&m|❔Vyn4;6(L$oWm  `ލ@E4e|,;ϥppQi{h)d7aDRLJ&9!0d߷yi=lr',U<ɫoʵ# :~Cl|Ltz:[r]yXG*J$A‬f) #`ŅvOC9ƒs P/c鞒Rz.)_yާ.&B̝ۄUb\ZSbYYtnuٷC3$$f# ZꥻI?ge{i]Y~f.anwN̿km~þa"?zet @Dٷ؎J)'$>LJCh}%+`$"ہ.9fu SlNp&a ͱ3U|c!e^Ӟ*ʑ6kN ~mPJFu哠PIԦ⺮{:XF+wꔷ*􉟂-t xTL-UrA`yNǔT!r4lm"'*fFfEniLyv# 7?9j.[[>-ddɕlN)1eBڃqo1Ӫ#.cHxtZMir(/խWI椵ŹPEa:b`kD_@[* SpÔF|)+P;;Vhn_zR:-0$Dj`w3_٘l.Hi->t !j9 .I}ǧy&>xGIU3 tJ$]@ F^lw[%h_!٭vYai ;ٞeÆl:-po^IɿY7S',+xbtRbF9Nj[Ѐ'==:b83.A;Xn_DCՠc8T*o C#WfcHIP-jX&-=T.=dVN6H(WM|8 !aIyQA唼¿<[8>-CDߴci&*BkD!8S!5+N2`!Ju~ERU?Yr6Zz%?x$XFZP'sWkq0"E9qYǽ "NWztnԺTMD}eN39.ݘYwQ1=*z}3:ƞÿ  qæN9zazTŬ%&(\W89!ɷ!W+hl;_bSƟP/ ^A:NЇ{j6LݼҬ(&|U ;`(_S̕JJ.밳hྦR ovDy 6h^ 5{oxD/ͩ8`D.J}a?j @?';6\MW a/&0tݯs؛Jv3pځ`aVBl q4-Sɕ@x? 7z&M?KWw&Pr۸M%D/ʙ=݉OZD*"9̾OT209}HE9~xWѕ-(y-IhW3W7ojf> ,,3EBfЮlEqCX3CNc 9 M^茪_?\,p|I JMϻkq""mGpc] ͑Ѫ!eqӌS emp,1(.Xuyk.vicj , hIX""tàrtLWdSg?*9:L, 0D|mM}YpDCn vADT=[F=/9SkGp `/v[]י'ie~Jm2jW'y35]d&6hIo6xɧ+CqȬ^&[ )EѺjM]9=yŃ>>eyЪUbC}Kw>՘4iUO1)Bi('ܘRQR~S:PZRt[Ojw2~Qik-ckA/(QXmck͂YW pWM٩E{7e" ey9Z}k)iG=` B|C+k=jJ }jV4^Ro /-ĕ{mbrޅ7|ǔ=i?$fO oˣTLf# i${k\ ;g)Nب= ~YLn2jikA:'v vP*mHP巾{F-J/ට[4n>B9S 1Ԝ6 eߩ8&<$r{a`+Ցg0>K XR u˛`6ӽRVteJ.T&eǫtа1xׁu iEv.ΐ',­";F5jdXRNoڥTTLPPCFF[*K$\Pɽ\C b"R#:8KNna:2e$vu/f IAQ 72z m_ƍ0ͦw}YEa7!s69ohFW@vd"#‘ _kI?;Φ^m(8tXpXDmE_Dõ22Fm!tMbus!0䡰FIoXhi,'_MFlxp#:A48o . v<1ԢѲEnW3cCN ~HD}ev/Ssp0Ҹr|DڴPujd7Ɣ Kkg-Z e{JH)K [W9yqGWp2ی^L01r<{/\C x+P>ٿi24^ n L$x&V1Ez;ۇ;m3SO\Ot`B3~۶a=‸(&mNJQEƏLmuSX-d%cf ږ!A_o&.UʧP!P%ѧIq_Wđ][b'[1 :UXrw/Ev:^o  Z^hwE ȀwW-†@Ҧ)Y1Q-.rwhv5!zMǙi;)?|qN/ 9T͠M2Gm̜UBSqء%C\ƙ f  t6|oޗr6sՈ=tQĤ%sB7LQt~ᔣE{!d q٩ ]Adk3.oB_Ǯ Ò0u;^+(@u(\O+ꋫ-,0Ȥ^Cdjeb3MEe*p7"Jdx6MwDT &h J;1^9`OY:!'J`0+7vHc~(1m8p92:Tt6RUf@zGWa 6)+E%Z>IǑM*m/~d^O,27үxF p&r+?̙-Mn{R y7q&[,>G9 EoLV\(g'ɨvhᣒaS֕\so :ߎxfk 洒!@/I SQ*djxqŜ|eR7~X-(au<&H8z@y=%6YBTCH(CƙB5B~d4JnW'AoR,G RhΊ!-7 (9'wt*b/6̯EnXp7D,E8Kê߇k,N8NY+Ѓ0m>ͧI8gmZ=M9qb#s,+K`wl)wdox ,iaa_*mK9-v[|L KDqT}K,l W҂x&DgO|{leD@!NEWI4 NJ(w  D!\ [c[yX {}pݲb%YE7&:L뗮Ro]x 7[3ۯ; 9bؿ mh[xi>lJ [7:ƒ@12v c~ K:) Y) &I9D\Y,-cvإ+"Di[7MXsJ=A/2~w}Yda˸v8C_01*XZPU7{?_1NMrwe~RӪ=Hk01*n 5y/Fmfmв褭 jmMѣ3"5gJӼ^amhdi0`)~އYCѸ>QCaeKNe{/#Qqr;I/\;<X^hsګ98hΊ z0 M^fjj˦ZSڗ (`F7"r\L,b%$ ԬGkCSKm+t%ӚTf%S:K{ @m.Zd\y 7)8+hE#_Z9cC?QRo:sFC斛N&ԱEC+(} |16>zzT>ԭLI'uxl,A[B; O kmRGKw*B܄@"!CmstV4<iz9;%U@jVZ^[a}X:.>|ѐiOdb'ξYAm[Vu!VƲ dJ\&p;t*c11~?|?ۻAqȆʿ,1w\*2 1J6vY̆;mS}w\M)/Jx:7rǸd.;d`,xE;q&#,4oA҂8/(מa '#~ZUviwtud}nNxSCl#TŸ+tu-M0%uv/3dX.gimx=C71PeYGc[#/HbT}mF8sa#>y&@h=OJ7c՛#uz+ RXGðJâ[# `zpGHLgy?ܦ4V&9Gk_I&?T=t7pal ɮh 3{+w?mX*5PR؄Piiz$' zi/(~Q5s!+G<1ɇH8~Nhb]'ǫm#`~&Z>&nxVCP4Wԇ@=_t xa}!dp~,4P0r^+6Qi^m@DsES4$i),!h#z`J6~o7Q$.3OsS /ǴzJUoo.H*1- p1,g;T)vaq]eC~W&u`niFC@ !tJҹ="p ;ٮԡ&hFpӭ.] *ج]Xl2|C'im~IO[gS O?AR+'~bJ L~dʨK, s.}0w j>`TISl>8P=r2'4n _8ndx+vQ&"L`n%FnꒂX2'$``k|aX[X7|y1YZF2W]-JIsڨ𧻓х;^qF' ;ZP&|r*LGgkuKsOu-S@:q(drVii6>i0-T-*? BiK ‡.#-pqZwnWa7MO>Fl5?|B]YٮiG@K($I ȍS.3V|S~4Dr2=#ƣ?ϸ؛+sjݍX< &ځʨpto/}"- R8ŋxHF_9`!@&0M_9 g=;1WEwszku*[mNM vT-*Jwًn1M2Qs vԂ5"*[ MoL"h,N5PN@*R?]#*Zy+sBL? ^O6HIH}4W=&J7Tx R WMȳEcPŤ]}OP_v,ݦTc:Kx y瘐_YS+QçƆ7km; 70q r1%1|E0k+qxmjS;?_fd YZ