libpcre2-32-0-32bit-10.31-150000.3.12.1<>,lbp9|f+ԯə권{N?35[hodi4x#iPϵwgd"W#^ğ_[7p Yn UḢj5Šz 7hke/Zfyo(b,٥R)ӹ.e[smxB(4aμA}f٨PI1ܼ55B-3{?6 ֒wڌw{cƩj]J(.q'7@emwM>>)?)d * \lpx|  $ ( , 4 v  H > (b8l9:>&G&H&I'X'Y'\'<]'D^'jb'tc(2d(e(f(l(u(v(w)dx)ly)t))))Clibpcre2-32-0-32bit10.31150000.3.12.1A library for Perl-compatible regular expressionsThe PCRE2 library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5. PCRE2 is a re-working of the original PCRE library to provide an entirely new API. libpcre2-32 supports 32-bit and UTF-32 strings.bgoat10FSUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/System/Librarieshttps://www.pcre.org/linuxx86_64/sbin/ldconfigFbb68cdbffc05978853ba9dd93b71276409476b211b0fd2d215977c0e2e6f8a3151libpcre2-32.so.0.7.0rootrootrootrootpcre2-10.31-150000.3.12.1.src.rpmlibpcre2-32-0-32bitlibpcre2-32-0-32bit(x86-32)libpcre2-32.so.0@@@@@@@    /bin/shlibc.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.4)libpthread.so.0libpthread.so.0(GLIBC_2.0)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1b@b֜bv_@`ZjYzY@YtX@XW9V@UUUB@T@jsikes@suse.comjsikes@suse.comjsikes@suse.comjsikes@suse.comavindra@opensuse.orgjengelh@inai.deastieger@suse.comastieger@suse.comastieger@suse.comdimstar@opensuse.orgastieger@suse.comjengelh@inai.deastieger@suse.comastieger@suse.comastieger@suse.comp.drouand@gmail.com- Added pcre2-bsc1199235-CVE-2022-1587.patch * CVE-2022-1587 / bsc#1199235 * Fix out-of-bounds read due to bug in recursions * Sourced from: - https://github.com/PCRE2Project/pcre2/commit/03654e751e7f0700693526b67dfcadda6b42c9d0- Added pcre2-Fix_crash_when_X_is_used_without_UTF_in_JIT.patch * CVE-2019-20454 / bsc#1164384 * Fix crash when \X is used in non-UTF mode on certain inputs. * Sourced from: - https://github.com/PCRE2Project/pcre2/commit/342c16ecd31bd12fc350ee31d2dcc041832ebb3f - https://github.com/PCRE2Project/pcre2/commit/e118e60a68f03f38dd2ff3d16ca2e2e0d800e1d9- Added pcre2-10.31-bsc1199232-unicode-property-matching.patch * bsc#1199232 / CVE-2022-1586 * Fixes unicode property matching issue- Added 0001-Fixed-atomic-group-backtracking-bug.patch * bsc#1187937 * PHP 7.6.4 on s390x returns different results for preg_match function as compared to older PHP versions and x86 * Sourced from upstream subversion commit: $ svn log -r965 svn://vcs.pcre.org/pcre2/code/trunk- Update to new upstream release 10.31 * New pcre2_config() options: PCRE2_CONFIG_NEVER_BACKSLASH_C and PCRE2_CONFIG_COMPILED_WIDTHS. * New pcre2_pattern_info() option PCRE2_INFO_EXTRAOPTIONS to retrieve the extra compile time options. * Public names for all pcre2_compile() error numbers. * Added PCRE2_CALLOUT_STARTMATCH and PCRE2_CALLOUT_BACKTRACK bits to a new field callout_flags in callout blocks. - use https for main site - cleanup with spec-cleaner- Update to new upstream release 10.30 * The main interpreter, pcre2_match(), has been refactored into a new version that does not use recursive function calls for remembering backtracking positions. The new implementation allows backtracking into recursive group calls in patterns, making it more compatible with Perl. For patterns that have a lot of backtracking, the heap is now used, and there is explicit limit on the amount, settable by pcre2_set_heap_limit(). The "recursion limit" is retained, but is renamed as "depth limit". * The new option PCRE2_ENDANCHORED insists that a pattern match must end at the end of the subject. * The new option PCRE2_EXTENDED_MORE implements Perl's /xx feature, and pcre2test is upgraded to support it. Setting within the pattern by (?xx) is Also supported. * (?n) can be used to set PCRE2_NO_AUTO_CAPTURE, because Perl now has this. * Additional pattern compile options in the compile context are now available: PCRE2_EXTRA_ALLOW_SURROGATE_ESCAPES and PCRE2_EXTRA_BAD_ESCAPE_IS LITERAL. * The newline type PCRE2_NEWLINE_NUL is now available. * The match limit value now also applies to pcre2_dfa_match() as there are patterns that can use up a lot of resources without necessarily recursing very deeply. * Various minor security fixes found by fuzzers: + bsc#1037165: crash for forward reference in lookbehind with PCRE2_ANCHORED + CVE-2017-8786: heap-based buffer overflow write in pcre2test (bsc#1036942) + CVE-2017-7186: DoS by triggering an invalid Unicode property lookup (bsc#1030066) - Switch source URLs to use HTTP.- fix SLE 11 build- pcre2grep can now read .gz and .bz2 files directly - pcre2test is now built to support line editing- pcre2 10.23: * major re-factoring of the pcre2_compile.c file * Back references are now permitted in lookbehind assertions when there are no duplicated group numbers (that is, (?| has not been used), and, if the reference is by name, there is only one group of that name. The referenced group must, of course be of fixed length. * \g{+} (e.g. \g{+2} ) is now supported. It is a "forward back reference" and can be useful in repetitions (compare \g{-} ). Perl does not recognize this syntax. * pcre2grep now automatically expands its buffer up to a maximum set by --max-buffer-size. * The -t option (grand total) has been added to pcre2grep. * A new function called pcre2_code_copy_with_tables() exists to copy a compiled pattern along with a private copy of the character tables that is uses.- Explicitly package %{_docdir}/%{name} to fix build with RPM 4.13.- pcre2 10.22: * The POSIX wrapper function regcomp() did not used to support back references and subroutine calls if called with the REG_NOSUB option. It now does. * A new function, pcre2_code_copy(), is added, to make a copy of a compiled pattern. * Support for string callouts is added to pcre2grep. * Added the PCRE2_NO_JIT option to pcre2_match(). * The pcre2_get_error_message() function now returns with a negative error code if the error number it is given is unknown. * Several updates have been made to pcre2test and test scripts * Fix CVE-2016-3191: workspace overflow for (*ACCEPT) with deeply nested parentheses (boo#971741)- Update to new upstream release 10.21 * Improve JIT matching speed of patterns starting with + or *. * Use memchr() to find the first character in an unanchored match in 8-bit mode in the interpreter. This gives a significant speed improvement. * 10.20 broke the handling of [[:>:]] and [[:<:]] in that processing them could involve a buffer overflow if the following character was an opening parenthesis. * 10.20 also introduced a bug in processing this pattern: /((?x)(*:0))#(?'/, which was fixed. * A callout with a string argument containing an opening square bracket, for example /(?C$[$)(?<]/, was incorrectly processed and could provoke a buffer overflow. * A possessively repeated conditional group that could match an empty string, for example, /(?(R))*+/, was incorrectly compiled. * The Unicode tables have been updated to Unicode 8.0.0. * An empty comment (?#) in a pattern was incorrectly processed and could provoke a buffer overflow. * Fix infinite recursion in the JIT compiler when certain patterns /such as (?:|a|){100}x/ are analysed. * Some patterns with character classes involving [: and \\ were incorrectly compiled and could cause reading from uninitialized memory or an incorrect error diagnosis. Examples are: /[[:\\](?<[::]/ and /[[:\\](?'abc')[a:]. * A missing closing parenthesis for a callout with a string argument was not being diagnosed, possibly leading to a buffer overflow. * If (?R was followed by - or + incorrect behaviour happened instead of a diagnostic. * Fixed an issue when \p{Any} inside an xclass did not read the current character. * About 80 more fixes, which you can read about in the ChangeLog shipped with the libpcre2-8-0 package.- PCRE2 10.20: * Callouts with string arguments and the pcre2_callout_enumerate() function have been implemented. * The PCRE2_NEVER_BACKSLASH_C option, which locks out the use of \C, is added. * The PCRE2_ALT_CIRCUMFLEX option lets ^ match after a newline at the end of a subject in multiline mode. * The way named subpatterns are handled has been refactored. The previous approach had several bugs. * The handling of \c in EBCDIC environments has been changed to conform to the perlebcdic document. (Incompatible change) * Bugs have been mended, many of them discovered by fuzzers.- PCRE2, a re-working of the original PCRE library to provide an entirely new API, version 10.10. Not source compatible. - copy of the pcre package, with the following adjustments: * required name changes * adjust pcre-8.21-multilib.patch to pcre2-10.10-multilib.patch * drop upstreamed pcre-8.32-visibility.patch * --enable-{utf8,unicode-properties} became --enable-unicode * drop cpp subpackage * make test -> check * enable 32 bit character support- pcre 8.37: * CVE-2015-2325: Patterns with certain groups specifying a zero minimum quantifier caused incorrect code to be compiled, leading to an incorrect memory read. [boo#924960] * CVE-2015-2326: Specific patterns containing a forward reference with subroutine calls caused incorrect code to be compiled [boo#924961] * CVE-2014-8964: If an assertion condition was quantified with a minimum of zero, SIGSEGV or other misbehaviour could occur. [boo#906574] * further bug fixes as listed in ChangeLog- Update to version 3.16 * This is primarily a bug-fix release. * The Unicode data tables have been updated to Unicode 7.0.0. - Remove pcre-commit1472.patch; fixed on upstream release - Remove obsolete "Obsoletes" tag/bin/sh10.31-150000.3.12.110.31-150000.3.12.1libpcre2-32.so.0libpcre2-32.so.0.7.0/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.suse.de/SUSE:Maintenance:25125/SUSE_SLE-15_Update/cb9dbb927fc32d81954a1dca4a653e61-pcre2.SUSE_SLE-15_Updatedrpmxz5x86_64-suse-linuxELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, BuildID[sha1]=fbefab2f566fffb3abcbd193b4cee038d3180de5, strippedPRRRRRRRutf-86bb695a24623893b7804d4e95d18a6a27601624c87dfc977e6a73a35f58dad1a? 7zXZ !t/j>]"k%۫0/I?Ŗ91Vkv6V5V{HPRPf.%K1$mݨEts,F>@jw T)> jee\‹.x#lʨ|V"\=dOZz&9!f^ /4HNzQq~ a'ABQSo Xz^,eo{,hiU,jLs-w2D $7n];κ#UxKÚ4w5@D){0b-Cƫ@`nc/Z.V9NfqqN3jY;e]Q菏4Y"4ZpqB'$wd"7{vTD0lz =Fԛta8a li=\U8Ԧ#%FOR*el9wGus3cv቏y~BVegUx9-y*Aw+'ڑYjD¨ne&#D|*>3R%-a" Z! G㚑Eu&pi#ȴS 4z"y߯s8X iXQ9K&We/r5H%C]m_pɹ6A_ϗ T5!딯⊩5 Ol=5wdߩBA;/an'BzE.KҧSh!pi_2Wk\ʂZ`ƄPz~/U|/R<P2=ſTmWoQᖾR%+SR᠙LhM-Pg@O]3`fdgT\1a[) a$gXF3̘W '6ζG ﴇ*’N]d3MF~H~JFZF$ȂM5!!" [C[ʏz"!|gAU\]ҷVOsv7XY&^o0z<*slbRg.u5NTPUzZ"$Eа+t\.յ-_)^uS\]?(DB&uHWᝳ6)؆ouHqn2HaլK/BnnIcۓd 5n5;?#L&SKoFjF!Pe ǫ-h:Fvhcϓܔ'8aRCٷ!D-@nbU+`Yû(Ez&yeئYB=yXLZvDVP^D D:p{#/!Oo%W+~dg۱(]@߉m‚ :}czzT<lgkJ_~H.ױ<bz!~n_wmo@vE)X?Q% 5 g* .#pQ61maji~C[4[[˕[S V ѣ4NG9) M2b3BB}:<#ȢI $m.Mт8=okڳɬ2O8#qjrb(y(3lgLWB'bwT|jT &؁Kݐ[ֶYꜚ>Q/oؕZG]T#SXBmʬR9U,(fPgy>ke:(%.8N5 7)Ulqjw $ *uX1rMnH}.Q=ufr/-l Q#ox/D6%#K$^!ބhQBEޓGLJ@ 躱|5&¤ HW\6=&u^[ h$*4ycmVr^ ]"|`/1ǻh],n2٦H칿`VYiΔwi ){@>LQvNA->8m31Ajw@\WOg6D+5QyJpyb-c]NքU5UoHz)hុ.`ǎ G;%+ϰ\UqKKLhĞKIYl[njRZJ2Q:ƒj<@68*r#l>=8 C6;pKtݯ>g,҈˸k8^r0)4܇mm_^]Jdj~H;Y5g\տj)ꨗDLZ:E4cUfl1pbMhhWT9~,#IKhb WicE_z|:WfڕٞT"i)}*"IChqU"?6Kv?+vbh^?إfy˹.OrB=$b*z bZ մLF=늾qflK .Ԋ֜gG03n]S>SRve[= Oe6 +WtV|A@ b|7/ dφf(U؈LVJRdۊ[IlNzSdŢEgXMՎmL#{a`'8.M C=sRWbֹ {DZjPGf yD ) wZվefen^yK*kzO2}jlkJgC#TNlve(B<*oeS*rR0$1}Ơw׻+ ö''USI(dnVb2y)A_8`d!EzMff{p*Ak`46Y/o|xG͚v7,DO3%ϣb\bS%@9el[ZWr|2"1ÿ^H ₲ɤ-g5Yb"JӪ Sl"V80SRx9`rc~K)ɹ5CDnZGMց;&q}KNX|פ,3cP7:SuRu}$:4}Y79H_é?kcww%%•` am\?nn˵ spOTm,="KJxZDCrcWGOݮ2paa]î-ILs!!u5psFS;RTfQUN6>zvuj)r4{b:$UVV^%ASnaup|w,vxD@u䯡-tr>2!7,Ƀ64w( jsžG Ge:@;#(&"%d!dA^9؛yZE\'_g q̠nh&6/ym'po3T Ysn8`[,rc6e6G:421~F"eIMwń~LX^#a96=p{Bו{qB t3U΃HX^d7%̂QCo u\[ ME]}vQ\PD>ZuŠSy;zBrXx܁iʣxum4@?MbD,ۛ݀k}(Ҡ!x+Htl@LzGv }L!֖uЈ1俇(ĘdD/ZK҅0r2beK40[s,y ޢS\[T!ƌbʅY2?3+HŽ9 Vv~n h]õ`7u"%W}Kށ_Hry9ޞT 79bέD`ퟃf0pacrJDŶ͋^Jp Owy uYzyǮz.H<'IzϝIέHFAP} OrD+‿~Y30*c%DqLZeΞ=O@g3Ѐ3dAO Ӧ)P} D`c zC_0Y0=?F~θ)Wbqβ=^PA-VKWLyg8A%|l@̕!<`XCm{o*Hd6O>eo2bG (}%|3r*h ӟjpX p.ƍ$ ~~CCC NM8xn3v^>)^nA&i8L0b&(=jbC W_3 oƗ2I6A6nv񐦿,I02:`4!Hg7 fJfu@ẂjzkԀlpW|ŽWBW|><~l' }`V=|k~;փKƄS?u⿞5K9o XK4e{2+Eh:P,r"3΁xn2>x?,\vKk9.w1B-P1O~]AmcikJ踯})G*_ ' ͸[SOE:7Zt`/޴8p k1p^]|_V!b=v$܉ąF(6}N%w]Z3r#̠ JuMXSGz4}0#G^U˝L+n-7Fg\#1r;{Kŵ ypQyB! ,їx#9_&3gl {x U )LL.֠Z[a`h00b+@&!р|ET)@[f*:='Oڀc_4Α(@SO}z`O4 )Y@aiQ⑵ibh Y^xL3U@hLrB}z`KV$z_>wU 3I5?v~,!i,r lgBZ]˟F)I3wHZ3o|BC\f[YI"'ks#U6/Z*hLB"LQ>K$lqs;9HdEu'6.e? =uJxt£a&7u bf_{ ٍG{9q`SJH rg'[ѫNt[ Mn`XUu78t˂Ml/ U1;ʜI$#ڼMkob;ڳ(bc&\f`)`*xuaی*w dX ڧE$ن/BexnA2eR{{Q,9M]7sO1P0 .΋ q鋸hW;A՞K2S8< fw/ G,..OiDYS!W2Q8(,*}tj0ܿhcia2D|,tYV=nfc)sd-eRcY|01ӫ]"6K5ȯP=Y gisש#^d*7ʘ"yX3ᐅ昺mt׼H(@\klV֭J4:?q·9; PBq({8Ӵ/iK>፟ȏq|*~-_h\f<<'+.&)50GDHO\XlWu0,|љ{n*jZxds9Rv&"[9WM otө26P_bNx XkRcP|ʆC#EXZ&M-v}7SwJ)STN?ܱKxix2P׋@LW8d0cou@nUP$9*ír%0dg4䮿M-zsˁXo,v[c";]q3&x,xڱ\I-p/"tXHhouo;{܋{ yÌ#qW3]/ы*D YAdŭDdԙ׳/~UxKOY A7ʞc>ix4wlʯ͞@Atf*x (%mڮeS" OYxPy(qFA^)_{8Հe3V3˘o1WPxCn/қy0uTn䋏Gkg ׆;'Z&҄?#U1YC?u <VùC$ xSRwCMVE`YG@2k\q!w'R| wȠ_asq 4cuze_tj=v3,"hklGz903˖{A82 e},W(3¯ /q$;k ri#~yfFlM:LTua+|O0(oҳ#Y(i}; j#xAutnD{A[Q|88NsU@p‡$F-pSL7n9ϬlL1!žƤ{DO3s#O68Hm%;yBC]`bWvg$K kDr 띗w,]l) #Mf{-*ȨnY2/LT<͜88(2ch4*eb ~S\~^Z> Zs7/וie__-9kNr.^YX;+. ,D MiajkH޲$W-hTtq#̕ sQG36\?i7+B8+T&8^3rF,xD98^Il X.Qg'C0Z<˽DS['u:XbR8SH2 [oycG<Ao)<,.Ֆ-i%6>/lI(Դa;HmaZ#,qRS8 @ٲz_T8&vX\}+5s@ `ubI~ʊ<ˢ]GAG20ܢZ矇sZ;2o`O8 {o;F2b53{ڐhFgxyLNfvQKdSx V!Ht7ZF=ZaqT ~~;e1)ƗK&\zF.]r̡]C1{ =Yy?۲ \G\`O QԽY6` >_@>XEFgǣJвsoj{ӈgc%1jqW,aZ|)H|0qgPBҽf}n 7e;[u]#HX!}S$U;WER܇Zn1-)wmeg7NnC?5B[@Y` 86((,0b)j6v!1  ?iޡSC_>"%H@>৛ gh rխ]Qci#hCch_%H_W{Q"(D$E?&GVzxG39nOwȚN]6@nnߤ"/nRʏV2*j A0OuX{ӎ˥~lP|' ~&u DX Je Z~/7*)wv;p/AtZ&f,i329@ 3ՕyME c_,Ne5;r,J+ ]':e@Js{jiQWx5dwWyQڡ6Pf~E6 BFLu/7͍e*cxљa F*cN &܍D\ZSBO9eSvf';Bdi6`w7nt+_nq˓Bi^C0ծ-RFD>6<󁭙2'ZN)_AUOac /n]hg^y f]?h/bpޱk]~2sͯ+)E]Wc<_E}}{; F@\j?D(V5{^c9=ǻ!c97t%Cʛ(;nb=8`;Q/WL <_=QZPYt h( ;ԞSi+fAc(!YZ$0 ,ZvPH1mM*h Sy9؟#R􈯢3P©+J8~eY扢$&!d[c%'>D+Jv hd(}"P׹}nM<$ aLJJߝM`%udq6ڱoȨMMx|sg^A7)B*O -pv㟴7s&gxuoܴ5آM {q y2n %Wh[ ^R&ʈdmАe__dgt~" 6GPQ,1#ܦjf[JH|r%/C{g%bdyp&n]7/ENyؓN.YE3thYZp]ޑD~w& ``Vȹ)AbD&Be9 #^v`$bsQ@=W -/뀒+M\`[X͸BXh ϒF_WhIfg?i1z(O+9oz:1Is+vV>֊BDëFL7^m1,3ed%[qS3ͭᶒV損&ȢD[l2^ }Ykqep}aDTK*_g> mw)P%YNPQJ}Z~[2fU@wK19fvo<:w4 }*),TjClL:5/dJ|r'9C?co-'08>NbSrV;j`P\rՄK~Ĵ'\R[lzwەR/c$;@2'hklf:z;mQYTqhl3Z9h#!BQ @D+h#NhX ;+R 8CL8?, ĴI];}#D kٯY&uPΛ7ݒIZߤJ"WR6/R68 XJYP%Z|l%˜"V1)IEI'QwIv}vyQ^ Aį2h"Nxҥnx{}(I縪Y:@g1Qw ]\7 ~WjX 2LzN$eI`D`3F%M1D`g꯮~UU}J Ar@ĕ-cm(h ՘2M¶o6Ouun|7jH ad/B|O^R{Ni0j1,Nta&4A‚Sx2nLqm/o4 EŸiSP39THVD-~^;5E6*ƱMY"|"z{" Eqx'q@!"_OYω-.A( obhO†Ajt5jsKF Ō+1Pݜ7B@pvwÉoVP0tRP(MV<&bAi]T;9 $ӴA 'v 0o:&U=ecn t Sw>EGOm4H&R2+?z9tX$-v=붦 z5t/VVη^ʎN8~u((P)ٯ*XjL u0?JKrɯTl&~NhKAARo{x~ЦhmP'&*$FKZEWxԓ;. c;X ǵ_Ow) !?0 >p?ň)~cw.>pW^{k Ȭ^9,ԘJ.Oq ?Ba%XBpoHl31O!60URʵ8ܱ PmMi ى )~|StJ}(HH|v P-7bУpn,ҵq3tb]Bq|!1 ؼ~k x9~9G2WԢGɁڽڤ;YI 9ZNq¶c`ae! >*',M7AL Q <%2uLvz'Oe%nX,/A]|Bʩ{np_d!~ua&QwuIulIOܬ9qj7npW!ԯ "gXv+S`|yhu~ĺmvƸ*t#8?yQItSd|( ܑA#$~r38=%/n1K)6.$C{5[>>\]F"G8AjҒ%\q:9WV46!p[n֕.qzғKއpL/cy{>3^U9U#VTpXGKhGR$:ʙc\pJZDٔSvmwIx=O#<20 ϙ/V/hPaq]8\OPMn|%4v% U!ȏJb<Ԑ"pxq#Q_>cc'Ze|Xf2bn~AY-/!KE!\?`Nh^]ά_`[?P/m>y0PLK=s>< * yL""SgS,- g׬#gүÛ\dS@/g!m ;EI٭ j=ew0H2OR _9չ"]Z%޿)]}:6 -4O6;Ї} ^*?Qԓyxj;g8)Rxq0PۤTgGJ dEjV2붋Ϥ2~HWG-d%"\M@||TႾ[ջ0(1 \f"a~g^5D̟3[FSLۍc49 Xl/BWbf W`wٺM"c/S(2ArŁltY-9NVcvOR#4] b܆;FB% CQ' i>tXB' ?C^~]'8R P$0I1[W5w&asF'.Wf'4I.?2/?(ϳZi$hMUadtdǦ`Q8#UB.,J-/Jh89;޾II" Zg>nv^RT?N| xGnuq.zG߮ çG83 A2Y 9"?)-uZXi{irT]]hf[Xz&l9i]Od*8vhs{l 쟥L4^ іUj6 y"PsjvrUzy= =qz`Y/GN©?)?ŪNh6-h6ͱQfVoZiQx"!|[DGI5 B&!ۃ?w].AY(퓢Ap MDGw3)Lk>+&TU&q#V̲ٔlVO]4)4XL LJE% 5Gipܴl=6T7.f\Ճ'L9y7{1TF]cysFܭE.ӛ6So[l7(*{ $qt,^VHRә58TQJu*b|e +<} z YZ