libpcre2-8-0-32bit-10.31-150000.3.12.1<>,qbp9|oCJxZ}n<|/F*)_hzthaMjf5-0B V%ܑ(1}a{xm-fx?HݲwheFvR/aBvQ7x t*(q]+N^lW$ H&as DNFp~$`[zuoZk|O5-LD?F]kV7J *+T̒1: 2ic>*@?*0d ) [  4:APX \ ` h  H |  (89:>'4G'<H'DI'LX'PY'\\']'^'b'c(|d(e(f(l(u)v)w)x)y) )))*,Clibpcre2-8-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. This PCRE2 library variant supports 8-bit and UTF-8 strings. (See also libpcre2-16 and libpcre2-32)bgoat10FSUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/System/Librarieshttps://www.pcre.org/linuxx86_64/sbin/ldconfigFbbba495472a44955c9d5de8f1288bbb3f05f8a2f77d05a792133fdd2ac82b0ee7blibpcre2-8.so.0.7.0rootrootrootrootpcre2-10.31-150000.3.12.1.src.rpmlibpcre2-8-0-32bitlibpcre2-8-0-32bit(x86-32)libpcre2-8.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.3.4)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-8.so.0libpcre2-8.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]=7b26ebadb018f917eab753aca05af2b1edca213f, stripped PRRRRRRRRutf-8bb93d1a739f850bf9aa2bd44ee6ab0cbd739bf13e8b244ebb431b535c0a0c44e? 7zXZ !t/yC3]"k% 0/I?a575OK.xkDr2_V:"9D2vPgqkyd"p'/^ /CgYl39ځx|b@?wH`Qyl᧻ үe ||pK4Ơ25/U sq72zUZŭG.ǭGo ۚi\OBfŬU<$G;uaQ(wW{e%:_^ szbb2tJ$x@3Y3"*kJ9?^hV '^*apmY@dOw[DL00g%r9^~NqZC^]+ aMbS>UJ>{MxAywmţٽ7ִ_62l({'c9&*Bc#كN~J2H$=wB>B\~ıFQ|b{ܤ]+Ŏ*AfH{ؙJh\#nd[a' Gv@R.UG,շT=lRX$-3DŽyH=@@/Zh/ +h\mrMB+;^F+A6Kj  aU.qu5;aH-ꥉP} -4 G ^n KӁG,JD0]%WhOͩ:2(b a;Q{ZN .𕳿ԃUE|)F~P5/ $S1t7"̥V`=t@<R-fѳAy{&E`̧^8oϺ~txObܣ12Oj@@.ڞ4|vÊE*l0ڍGaTo~R.( P6,k#1>1۴14jvR[ܣ2YPo- ym4 Ѻ^rL(R59{ԭa x=dXMp. R.͡x],kFTRD8/r;JISq7]ȷvA_݉>rd{_ӪVG3Ht_Zwʌb@XzVnÝ{r%3sTaR}FގR$ص]\_5F>B|w{hpпf ϑ]#^//C $PoftLԪ9"!}~#tȩctG 51a dy)hvWajX Y(.mEW 8a3#& ҏI ")$)n2!2vN#`0#/N?ƷC0V~J:lhۃZ2 @7sjґ(.vG>_3'DNy[Fq݃wl;gRK8PMT9ߓ=;[})j?[/9閸pϭ^xKH&HG  Qt&Dim:H'/]Bj * ^)`Gm$9]G W1*`LlL}դ!PG:3=3raxx Rsc;z=徢FZڊѶ :OMnfN=cSq~'8kAhܱ7z܍{+ݖ8c\$EkD4 LM52|/x%` ހceլ*f ǔ9O 7ʓrG#_:JA0ʨϪ pgW[̜m]Kuh@-4&ˬz?PgnQcSN_4q 8w|$Ae _ApF-Y= RD4G[_A'KKZl2:׽Mg6BdA3_ qfE ) l [P?Z8>|Gu,0XX*OK9  `\erk5ƅMk~&̻[Rp^{,oԒ X2xZC7yb]YAYWhݺ 8jF~n .Om2 Q}`GhhAaԦVWޖKW23Ժ{/~?=ds9*@ehv)a1,cU֍2}GD7 ΐPTM?R?gOQLJXPenlA[V!F=njkT-20 BDzn(w쭸1IfAp+;Ѡy:;wz#HU@AS?L!H)Mh*trqVbhQy*H}ΰM[q9?V"I_,tj=$-eKןմ.fjiusL`I,ű.lىf  HBx_oN |ɡ?!arBumGXM[Ў  Cbf#Hi:6 UtEwAL&&`}/STKɩrnGSdťID`7LD mq')°x%U[եM2O-=ihw0A}q#铱:8 [=4Vy'`8]@}ᢒE)Qb g rs E1kPΕ'GucYXO@*)`qJ7$ [䅡PCsOc WꒉՇQEX~F6 "/10~uFɷ쉍N"qϖ,*f>kVXN[gugBj3QH bZ"78+!K&+ؑU rE |aX$݌Λez87"J2.QN 0UOVӫ#@60,{2SܢQdh v8x(7dy}2q<ƌrܕn4u,f8NLWMإ}mNgT#w=7K3ږ6n+ ,@m<(I}ʚd?T50[0P)ȜS+w. ! 8w=~(T/y WS_6$9]c=1 DyIG8 tf)fB8YG%7 7<>@jj58x^$۴S,0{Ӻ ^IؼfhY2LEslAE|>DQydgV͋|ߋ/xzF_1LDB1S.BSDUHcAhBX)7T aņ!EڌC Qr!'Aj|| mW9PjL,.OfALNw9=K*3vjzw3#U@"1oخ(D1V!_L=չLǿ_ I؀+TD; 5}B'[h}*&B?a@O`?r'SaU- UzcP\[PfW-3Z٬L?؇~99閑N`0陳`⛢&-lreiI2~K4Q`)݃K:a09kg1Y`m~ N_J(cxDSϪ|'k>fgT޻)ų=^;[Z/VX0UݴE:?;2KuFj.-l&Uye1s*=Rm}Š=Oc~JHҚEUyp`̭į:*ļ=jBBbLֈ2PRT ̲%yƎVKK%yg~MUy[Z'Q&$Y^uNB=U.y 9zNlM[TXSNr '7ށ}B* Qp z`m,1ݵ$݀d u$l< Ә7p\u6$0l3`^k 25[}SRě˸̷Ⱥ0bס'mT猪"|on \vlxtHoR KD})Ď(˰vw ,`EHAyO%ihv<7]2aeWa 郘*~Ug5KU}țmNz/o B3zSb('Ȭi٣bWv&cX`36 Ίσ_Z.P!}K2#J͔Nw瑉iK]8+hOvLv'&x6Gkg ӑE转>-boXUMefnM͛i{΋\[і@e_vLhTj??v t*T"aè/Pd;2>-^1+2cyZF A)faߡD#I넲p-8:_֓JHټ^:c.ʍߝXq 4H{fb쓁g«{ZmiGv+a\F+ohAIH{!QVI={[Iḃt@R) 'cPjN.)NM.>k'+Pj%`  ҩIwh1c(T }]L|s62ߚK'/kÑu~%옇XPEctyԍ6iIB7rֽ>. >Xt:\a{_'9,{58Wnϊl.9&Dp#q=ޟ_2% ̮^=33Ϸ9 qpq"5By0矇>A8,ÑS5H+@?, (L*5;^v{OLjs7rP6}<`vW{0nSP/I p FP! A/Wr,}%cet ԭ1;n[ɑf/eoy:71o ){+/'D )>{p}0L@|EO374ي";ǢJ! 8-#ח(bY]M iVߡ g|STvةR6˕oVi8|j%FD@ 7:4(w:S%]W/ncF2o 'W7F~ضӨJ:#kp|j?1Y#Гbs/ikG_(}FP5N6jRljle)n'$"%W7̕$ӼQ;\cc/[ rql|2<;^nJ3ԣ&a˾OL78~;PH`c gVe@#`!aH.!F4'pKFNv_@2$mEWXfjuBlBʭMv1j/˳_1\ s:SkDѝq~TXz,YvɲguIl]EɳvŴUg52@eb(_W!P ħo6SN_O\K-bt8ZY^F325o`NcxmUv.h9 S\5:@ۉ~Aޔ3m 4$k2<0"h]*"o+HO~5xB{+zjk\c4S!QySb9CBDc_lndC1H&!I>?a>:Yjhƶ"Nྉ5IJ5Xg zP2]ƻZ5CD%Q/?N-5VP #Eeb@4S ˯J^hNpm)HMæ9ن8GaJs5:$N\ء4ݪJ:%:Z t{>a"6O@HĐE5"0%aXO84cb#qt({4L͢&m%]AMfMr3UbL/2꾻/v5O'd.,H>k#.y=)tH 'PpJc_hf҃ib. <jɻ6t)p9E. um1ʮǩ)pTWRݡZR&fqwp H,PR\g@~B_/hWsCPBͥXq wPnӖ N6rFj㑁]q={dp2|@ Mr 6I{upM;@rs,I zuʉD0 =AEh!yMk,s½K`neWl}ߋU!&fX9yජSˉn2ѐSNY;Ә06m"#y_ďta{SM{Aw؋TɶӞ,i#w;LEU4+6AEN`F$^2;,$'c*B o!ӠF7=nf3%͝)/6tR]'mO?&/t7gZ0qX 1c#X!ڕȼ sę85( ~Akץob= k(uJ& k '@xN$Pi"ޱLQ«6+lIJCe0sOud5$"[k O lGAD&tH} y7N|=kYQ,n`JTF|@L/s5zaG=(LJ< T%4L*Dlèf`A=AgdBXR%ay=aǼ{0oq$–g5A KζM颕 )(îFC  K,*ԪM6QZNY|¡!06_&(H+7x*VcgXjӹi9o`]8"Eh;`aūXhux*=m0_Bjݏ\`%KP1h "PY|if O+A@lTdS{/:XPP7 8aSG\Sk_wOeCukGa zz1zٹUUŭ.hg3=7bu4 `$7:Ez(yZ`}v2Paɹؚ=v@WqL 4uc(afo8f=j*[̈́߉<ʚ 9C*9-H3B5\iCG `K$=b%ӆoD3S2QLhYB%fv:HYư ,/bRGeq EMcns߃IgHh,\3X0,IC:uYWWߵIXS;İ|}09s|q<\c [P'l[Yo֭ 8&&\*PC<2 5f, jjƅ$5GL:7 |ޭ:\jFy&>q3+.#Y}Jڦ_C3<5OmQ7`Ld[0d4W1qhHōC<>n>6 vTDC]zQYXbĞATP6]v N&n4EhUrā#*LfFg~4BU@חWF¼?|ҞJ/y1L27"5 &'tv&-h{vCcABr)P3Z}n6Ob 2_j` #ou0XBԿeV58I?f)o?cڷ!"JG3)e  _;- j;͐F.@Tn+;+cǛzahBqҽ:4Y֤̬gF]{ZH+%;+quI*#%E[ \#7mE Dbh p%f 0_eӠiފ$!!kW}.~@UtL\؍M]wJ`3xV +DѮvQ Ԥu²z{ѨJ#e6CCd]̓yf{x?f ԡUsH5.Fν{>1" 7]gG5VZ$O}vuoLMF, !euj2w;2Q`+8@^v*wIndgu'9=z'rFcE*2QQEYaeGܟH{&~nV}ʁ EFYT{^LDz–˸g/F3<;6Ս/Z^"i@ #"kMG9o,˅’ƊcHƩ_ _Ƅy".H`=9:s hnQ悸~8/{ɊB(>dS [#糫t;ޣ@Xt~Zd24oڄ&3Eܹ%ޡ7>z]ʙ a7%&I@M x|̀ Z `3Ft %]Q@оO?Q)c6=@=A^cy!3 w%Q틅lӗ54}+;h\ۘL=i 42p**vݔЬ5o~hVx@[PL9x=S\ -Ѿ_[[-W Y'CP?z^jet$pҵ8'-SFd+[.Aҟxw ӱts Mic{V;*˵Nw:at3ZP:3Ѵ;':ٶC<>,^'xL ^COMjkuwhB:'>owkjd3Ј5EeAb'7J4m,. 1$M.cEl6'fAշ4 #^t p$%Y$@.) EެZF!a̍]]ngK,E? H+T8REl>GOrsЍڞ5#>Wnn&:!6Zw :h(Y7LSZ̹ T xu$&Ν2MeKP- S영R|dΣ*3w+u-ZD}~\ -Nmؗz3يvevf?LQjp.J `D+@#pЭYi` fj51en8d Fq;C)dNE߄5ߐ={ɀ:IhȽ D1pBzg0<+J%:\M5Žru;Ru#/S sgwlO?Hx$\P0$.VRu Ҳ0XYZ8YwGgGBhr<©bMR ō'y.0m2#fuI:;ݕI41qcYs#Lki u{dUhfsL\Z* ;%j? *W;^+oe҅A;tAh3cTӗ̶;Dgts[=6J/mk )-Qn\<זϙQjC:WLH1Mv^=. ?]@F (VBf J(!S+PŒ0_ Lik"kSiʘ! $ޞ_ h{C2ߪ|A7p~;Ve (MTb{Pj*"%ޠR("rZ AUF艏Q7l8 KQ$,# ˶;xlj +!8Jp;e&QΧs Zw+)^1~ mMx Hn=%{Mf$3H+$E2~^n]_IT.άu5aR)KWB>MڋJ=7d#o79Mss:ԆdA#N}z^0ul9XNDA{WSFYPeș 7|jA^ LF;N&(}a"Zi!!%>Ky.@j"UVU ԕ,@YH9Z Ak!{"#Wg5ff{D2sD_^ 07O}NP&P`RB[]W֡~D \ǘҷV KtX h9,.G 6J/Ʒ&!>><ʱ${g:*.J3e Op&i=-7#Bމ/?t3M .v[^ֆr2 <uAi&GF֚ \yjHڔabE 5a7l٩~]$1Ԝ@e7BrY>ħdo,'jt)DjѫeGz>T*!)a(G0]~vpᬖ Cܨs-^(|~awݚAMl!oݵDK^\"9(3F4m0-j;0fW}!th06ެ̂+ fw(h\r!ZBbA3?xo/&l*~=03䑷`H>A< L`1߼D*/Z:|HF5v'Dx&ϲ /Fۉ͎ëkn,p.h12-SSoe鄪ۑ;cs3&V x%'i5v0b7{}vm\:)<  }[aW$gr=쯁_SYR6(V,'0x|lwm G!fwE0WϿ- E#u$T-)'& `V)y+Q4#5)FcoQJ(HW؄41dI},J :g ߘ5\B)͝\,ٛs `m!E{>!ϦQo%lgoO"A-/)l s Ԥڜ!mpRv_2/"E7s !5G^O֙7htz_XG+tRB1ڝ]N[S[14. 6i~)UHpezP&O

M1#ȍݔT/?xk<@6q&NPYÍh'j4:jX$o+e?~/-r!"]6ٸo=hF e"?SH;L j,Bykso.5VmF 8 .x eKA sJ.9 `.[(_kpACҳݾcy߭^!gN-8X)Vcxd</G:Bƙ EKQ5!,%Di&dx>%N3B,ZnmGp7A Ǽrz7#``≏.߾2 .@o98^9r8jkT BoU;Z4J\wW3I=.3IӢeE$XwP_}ר Ѩ4T^^#EaCb]XDT 4&xw,9b''ue=W),㩜n<"H=,+;ed $`u+8jnÜj8  YZ