libprotobuf-lite15-3.5.0-5.5.1<>,hb.p9|k7F;7KF9GC^x_/4*JG8'Ȣ۹؝(GopMOe>fV97+vR,+նx$3W 62:,mGmk+@@Uȱj6#DOd)Uz$8a]/'Idf7 /pH_o*5Ɂ3\aLXY}#έ. M/FHucubd'瘋Xi>@-d?-Td ! U $=^k      <DNXx,(8 9T:>*@*F*%G*<H*DI*LX*PY*\\*x]*^*b*c+gd+e+f+l+u,v,w,x,y,z,----PClibprotobuf-lite153.5.05.5.1Protocol Buffers - Google's data interchange formatProtocol Buffers are a way of encoding structured data in an efficient yet extensible format. Google uses Protocol Buffers for almost all of its internal RPC protocols and file formats.b.ibs-arm-3SUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/System/Librarieshttps://github.com/google/protobuf/linuxaarch64b.ob.ud6696a49c54be4b55fd87926d5a43efd887ad2f074a441a9ae4a8d0a503b5f78libprotobuf-lite.so.15.0.0rootrootrootrootprotobuf-3.5.0-5.5.1.src.rpmlibprotobuf-lite.so.15()(64bit)libprotobuf-lite15libprotobuf-lite15(aarch-64)@@@@@@@@@@@@@@@@@    /sbin/ldconfig/sbin/ldconfigld-linux-aarch64.so.1()(64bit)ld-linux-aarch64.so.1(GLIBC_2.17)(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)libgcc_s.so.1()(64bit)libgcc_s.so.1(GCC_3.0)(64bit)libpthread.so.0()(64bit)libpthread.so.0(GLIBC_2.17)(64bit)libstdc++.so.6()(64bit)libstdc++.so.6(CXXABI_1.3)(64bit)libstdc++.so.6(CXXABI_1.3.9)(64bit)libstdc++.so.6(GLIBCXX_3.4)(64bit)libstdc++.so.6(GLIBCXX_3.4.11)(64bit)libstdc++.so.6(GLIBCXX_3.4.18)(64bit)libstdc++.so.6(GLIBCXX_3.4.20)(64bit)libstdc++.so.6(GLIBCXX_3.4.21)(64bit)libstdc++.so.6(GLIBCXX_3.4.9)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1b+9Z@Ze@Z.s@YC@Y=0XXp@XS@XQ4@XK@VetVD@VD@V<@U@TT\@mlin@suse.commlin@suse.comtchvatal@suse.comjengelh@inai.dempluskal@suse.comalarrosa@suse.comstefan.bruens@rwth-aachen.destefan.bruens@rwth-aachen.destefan.bruens@rwth-aachen.dempluskal@suse.comstefan.bruens@rwth-aachen.delnussel@suse.dealarrosa@suse.comalarrosa@suse.comedogawa@aon.atdimstar@opensuse.orgmpluskal@suse.commpluskal@suse.com- Fix incorrect parsing of nullchar in the proto symbol, CVE-2021-22570, bsc#1195258 * Add protobuf-CVE-2021-22570.patch- Add adding-Release_CompareAndSwap-64-bit-variant.patch * Fix compile error undefined reference to `google::protobuf::internal::Release_CompareAndSwap(long volatile*, long, long)' on s390x https://github.com/google/protobuf/issues/3937- Conditionalize python2 and python3 in order to be able to build without python2 present in distribution * Use singlespec macros to simplify the logic - Run fdupes on python modules to avoid duplicates - Remove shebangs from import-only code- Update to new upstream release 3.5.0 * Proto3 messages are now preserving unknown fields by default. If you rely on unknowns fields being dropped, use DiscardUnknownFields() explicitly. * Deprecated the unsafe_arena_release_* and unsafe_arena_add_allocated_* methods for string fields. * Added move constructor and move assignment to RepeatedField, RepeatedPtrField and google::protobuf::Any. * Added perfect forwarding in Arena::CreateMessage. * In-progress experimental support for implicit weak fields with lite protos. This feature allows the linker to strip out more unused messages and reduce binary size. - Rename %soname to %sover to better reflect its use.- Install LICENSE- Update to 3.3.0 : * C++: * Fixed map fields serialization of DynamicMessage to correctly serialize both key and value regardless of their presence. * Parser now rejects field number 0 correctly. * New API Message::SpaceUsedLong() that’s equivalent to Message::SpaceUsed() but returns the value in size_t. * JSON support - New flag always_print_enums_as_ints in JsonPrintOptions. - New flag preserve_proto_field_names in JsonPrintOptions. It will instruct the JSON printer to use the original field name declared in the .proto file instead of converting them to lowerCamelCase when printing JSON. - JsonPrintOptions.always_print_primtive_fields now works for oneof message fields. - Fixed a bug that doesn’t allow different fields to set the same json_name value. - Fixed a performance bug that causes excessive memory copy when printing large messages. * Various performance optimizations. * Java: * Map field setters eagerly validate inputs and throw NullPointerExceptions as appropriate. * Added ByteBuffer overloads to the generated parsing methods and the Parser interface. * proto3 enum's getNumber() method now throws on UNRECOGNIZED values. * Output of JsonFormat is now locale independent. * Python: * Added FindServiceByName() in the pure-Python DescriptorPool. This works only for descriptors added with DescriptorPool.Add(). Generated descriptor_pool does not support this yet. * Added a descriptor_pool parameter for parsing Any in text_format.Parse(). * descriptor_pool.FindFileContainingSymbol() now is able to find nested extensions. * Extending empty [] to repeated field now sets parent message presence. - Update to 3.2.0 : * Added protoc version number to protoc plugin protocol. It can be used by protoc plugin to detect which version of protoc is used with the plugin and mitigate known problems in certain version of protoc. * C++: * The default parsing byte size limit has been raised from 64MB to 2GB. * Added rvalue setters for non-arena string fields. * Enabled debug logging for Android. * Fixed a double-free problem when using Reflection::SetAllocatedMessage() with extension fields. * Fixed several deterministic serialization bugs: * MessageLite::SerializeAsString() now respects the global deterministic serialization flag. * Extension fields are serialized deterministically as well. Fixed protocol compiler to correctly report importing-self as an error. * Fixed FileDescriptor::DebugString() to print custom options correctly. * Various performance/codesize optimizations and cleanups. * Java: * The default parsing byte size limit has been raised from 64MB to 2GB. * Added recursion limit when parsing JSON. * Fixed a bug that enumType.getDescriptor().getOptions() doesn't have custom options. * Fixed generated code to support field numbers up to 2^29-1. * Python: * You can now assign NumPy scalars/arrays (np.int32, np.int64) to protobuf fields, and assigning other numeric types has been optimized for performance. * Pure-Python: message types are now garbage-collectable. * Python/C++: a lot of internal cleanup/refactoring. - Increase soname to 13 - Generate python2-protobuf and python3-protobuf packages in Factory - Make the python2-protobuf package provide and obsolete python-protobuf to make the transition smooth in Tumbleweed- Fix an issue with setup.py where some files are built on the first invocation, but only copied on the second. This resulted in an incomplete protobuf-python package.- Update to protobuf v3.1.0. Protobuf v3.0.0 introduceced a new version of the protocol buffer language, proto3, which supersedes proto2. The protoc compiler is able to read old proto2 protocol definitions, and defaults to the proto2 syntax if a syntax is not specified, thus packages can be recompiled to link to the new library. For backwards compatibility, the old library version is available from the protobuf2 package. As the API for proto2 is not compatible to the proto3 API, proto3 should only be used for new Protocol Buffers, whereas current users are advised to keep using proto2. For a detailed list of changes, see https://github.com/google/protobuf/releases - Drop no longer needed patches: * protobuf-setuptools-2.4.1.patch * protobuf-return-no-nonvoid.patch- Use py_sitedir for library installation with setup.py install- Drop protobuf-libs as it is just workaround for rpmlint issue- Cleanup specfile: * remove any conditionals for versions predating SLES 12/Leap 42.x * add Provides: protobuf-libs to fix rpmlint warning- disable google-apputils usage. They are only used for the testsuite which wasn't called anyways. The next upstream version will not use apputils anymore anyways. Fixes build on SLE12. https://github.com/google/protobuf/commit/9f42f5f4a423b923f7b07ae8c5e8db4943df49c6 bnc#957472- Python bindings require a recent python-google-apputils, so build them where it's available (that's anything recent except SLE12)- Fix check so python bindings are not built in SLE12- tweak spec to build python bindings for Leap 42.1- Fix baselibs.conf: last time the sonames were bumped, baselibs.conf has not been updated accordingly.- Add protobuf-return-no-nonvoid.patch - Do not install examples - Remove 0001-Add-generic-GCC-support-for-atomic-operations.patch- Use current url's - Update dependencies * python bindings now require recent python-google-apputils which are available only in recet (13.1 and higher releases of openSUSE) - Update to 2.6.1 * Added atomicops support for Solaris. * Released memory allocated by InitializeDefaultRepeatedFields() and GetEmptyString(). Some memory sanitizers reported them as memory leaks. * Updated DynamicMessage.setField() to handle repeated enum values correctly. * Fixed a bug that caused NullPointerException to be thrown when converting manually constructed FileDescriptorProto to FileDescriptor. - Changes for 2.6.0 * Added oneofs(unions) feature. Fields in the same oneof will share memory and at most one field can be set at the same time. * Files, services, enums, messages, methods and enum values can be marked as deprecated now. * Added Support for list values, including lists of mesaages, when parsing text-formatted protos in C++ and Java. * Enhanced customization on TestFormat printing. * Added SwapFields() in reflection API to swap a subset of fields. * Added SetAllocatedMessage() in reflection API. * Repeated primitive extensions are now packable. The [packed=true] option only affects serializers. Therefore, it is possible to switch a repeated extension field to packed format without breaking backwards-compatibility. * Various speed optimizations. * writeTo() method in ByteString can now write a substring to an output stream. Added endWith() method for ByteString. * ByteString and ByteBuffer are now supported in CodedInputStream and CodedOutputStream. * java_generate_equals_and_hash can now be used with the LITE_RUNTIME. * A new C++-backed extension module (aka "cpp api v2") that replaces the old ("cpp api v1") one. Much faster than the pure Python code. This one resolves many bugs and is recommended for general use over the pure Python when possible./sbin/ldconfig/sbin/ldconfigibs-arm-3 16472467193.5.0-5.5.13.5.0-5.5.1libprotobuf-lite.so.15libprotobuf-lite.so.15.0.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:23247/SUSE_SLE-15_Update/f0edeb6ec84d958594fed208f946057d-protobuf.SUSE_SLE-15_Updatedrpmxz5aarch64-suse-linuxELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, BuildID[sha1]=9612147b7c995b329a356336362fbdeac55f3fa0, strippedPRRR RRRR RRR RR RR RRRz֬fπTPutf-884a0455509039fe176ab7b5bc3a816522d560a7d355303bb432ce0bae18a1c5d?7zXZ !t/s]"k%ʽdv3VJw%<#zVsL*M4kPSM"Um*.isl+7yAr|c[hcz g1̙\¸vG38J_nɃȰ"W$Q:4tfgT' --ت (Iw"rBa5_~ 4AC9u9yc]n׎y(׉/z,1Gv7P9UH:M6տȂ9 ׊-4:g2!J8|ƥGV)bkp"mWp ,4.PNA-7D !B\RO ]LkzIA~ Vd^u\s*rX1yTMٟq 7XL,bcThX|KЮB+t355r&Ƨo{TWTA 9׹NY!U֫J>b`om>K1r&-GQ6IIhljqjκ:PS#$33Nt⴮^dW9( r̺nWM/q+uZ数qẢE;=D%u&Tg.E95pEaLYaK="+R;8.-1~`_v4D`Iזu^D3.EU~ ʨfK&Eѿ{DϨk+^<學Tɿ-*7lӓ[ Ft^4V%ۍmc@!CnwJї[4ߣ#pw갶o1ilj^dR/rl 촙%j]kzۜ$˨kXGsy7q5S/.1"a&k^{QжaԬ^'J [M IպՌ}I 9'"b_\f'3׉95t2⍕meL=Ͳ" j<ݐBJqb2`YQ6:Rj~`SwNx%ODߞUINXU!ߡ7?qap1([F.`o)s)1hˣ',|3T hODLvn{i&,{[g#;AVÜUDݰqIcy{2k#@VeUP5.sliOBR9aGd Y@SݨzK/EԲs39 ̦XTtT`ɟ$xC %ZdV/Hn%G79Na溿MϖJ_a7fF('[M|^XÀtU-$yDnd8ߕO(@C*І8?hYZ@@“ cDT}dP {cǜ0SBOپ~kfAc2ECfIB6ݹ4w$t׊%08,ΑX|[8Z4320m߀1O~1XO7ێ%L)lm`]n4\a"> +XR{{NZ| ?<5B?.f_kxW"UU=\-`n(+ lr yűfRlueq(g,l| 1ciLa:a3YVKٵzvqNJK%3[+a}mK&blۗ,nt@/v$nOo8Ua ^]DT?h`mLx p_oG0Iy,o\8Kt6??g|vzϔꃥ~oXF!Qv}G$ CSE/7("M?$bҎY**~/ҦA!T- fn7O Ʌ/^[|ۭCҴ(=S%Q/ IUXx-^^gPYԖЇDDJ21V,_ =2r%Td\ח8/Ꮣ!88vC.w N+1{y8)x40vumwh%"VX͒eȐ:~,പ\+ :w"jWkf]Al3 U%W7  C :su]]_ q%PFz@„+(8lԒ 0Ku`Nm ASPxoß0Q[<aGn4o:P;IjLp *߷R5/q@$0|0ł5yX}t~ t=j #pfݴ9q QrU㥨<$ϷSxTQQ̥ c;mq|ۧʩ2ZmF6%'8d}F :܌QK|U+ЈZTAL={qXvh=^7f#)H7j01)+Z uF$[rt.BQNMB'}q&:|VS("rg` NxڔGm# 1,=x v$bԤ!yZ(~`9c|W8^SLYV~j/X ,(H5" ɺ~ weuY{VZ5*L%:`#T"b*8Ww]$ $ [qA0O Jĕ<.m8iыVZ\NeYDbEVnф`tEY'6~8mMDj Glr=aP%_"f%3u9:5Ȍo(ej3;qM 5XVx!TJu2\1vWϹli61DQHn!HK+n76lգIZd'(C%kSHD |x%œ >(.Y3E7ًh2!/]p[ "+I?6b+' ހk1G 8S d!h JQW4s /~ޚ` 1:!"8| n,?;͎@^w>2*4feLQ|K2dͶ bUNL,e)fȭ@FFAIʴr گ*IEn\Al?eQ7$#S=⦡ G m *Η r1øTjX +fv79!]B2h۳x£VѫԣR #.~hFwKӍb}Pt&B ^ E"S.&5;4S)Ev)a"kZnK[cfGN!!@#Ő&ր*ML'.> 4]s?YlX?9X&$2p o84lKGWbIC ¹`vvT@SH s*RU@aWU>Fy-?v'{L&X,(ڊLydq>(G, |Fz? U:cW{'j3i:93fgcQrCLT#.$/[SA̷Xwˢ7\a\: ;y)Ba /n,8l&sa*/oȕ#ynPFoQ1%Fu=nbka#uk4ɃGןwl˲]/!p1#rJG<˫-4_07@i~5hTd=~)"~N+FWzDs`5)f1'QS#$y/ 4J2}*%o:!'2Y Ap8%1eq)\&qzV=]@ИV6j̕I+Sg6 UW<9uJOw X6mœ79&e J )rg̾E=&2%qR y{p%1NfH崱K.onб9ASbyzmmPUr'iJAp(bs/+։?.G,Kg~e[^Jyë$', pjSvtȑuӗP: &`m\Q#o9*_E2r[G|$(1Q q,(# %wI?fYOp{sz,+%Y\E`02}^e}NTS-<`R!>2,@ XFM3`(!zU5kvm۽NbmS4YW^f_rTٕfaHHם=V60~^v&2\2m씰# #,Gsgaވpb\YEֵh..$ᠻU μ(Y9?KA 92hr P9yQN}OQP2BCW[2Ow(YH j@;Ŗ 8WrUj7,̓$zuD^ɷUfy 2{1‰9=xVL_Wgǫ%Tsg#Zɓབw:ѳBsպ?vj!6LDT[f~혀乛(3@edtT pnU+/uؤk< =D-<ς: - >yX 1&SwwL CECS賟G\AF~=̌]+z77E,|_ g/З{) 'J[wN2 $%-6zw :St6WeTeחDD|+ ͭ8Vs<Z(UYW:1-jp~ORU4}Z>( q_DqI} NFxXE4Z &# s715+bN{ ? [?4 q|Nv SX伂@9^0R'>EH#;\13EfV'w d|r0pX]rB'azV.\p}f4;%:-o(: -&}ۺQ1C?DK2C奐2h.ߍ dn " V9Vnmd,3͖-OHEۙ1ɅƂ "2#JܢjOnPR1]woH}Q2^8XBEmx٨AIcڴ6{XO@yKZMWL0SSXjL6Эu[J 3,r uhB>`<(4{*UԍVy<1d {V*ВIfu{=ib8ԵBFh @Мz'jJ123ʷh YcT$JZ7CҭN<+uP<eijFnC9.CxI*{Ҫ( 7If%E{ߋh ):1RjI'LNeI 1q+3 6]M9flD< OG8p;߹ĩ-; r/l{Ns=@#w*lW92TŶlP(qnke./a(բX < b}NsVzУ~[s6 uvmT玃 |bNRЭYJAF?=GVd(Jks,2..n}Nm{z28?Fiu{8!NK04zM%l cdYcdlkr,O;o f((F3"78ެ`VL ӕQ0cU,x*pc37h'_ÜB'Z8"oMǑ1g8{9J42vk14VIfGCKV=rVn8.w4vn~Ea05c9Bmީ%T6+&]6=؁`z[?&=t iF!l|rE}Y|P3P%1T|_/Qf ҳ^`GIqpd/<P}po7HlC9 MX_l\+QV"[H]g61?8# ㆡzȁь prkgp?qߦH_-? -w=ø,A ǖ ;_u4BY&O钩'w.F^BpN=3h*OhɄ 4мXy]k.}8UF.$sd,_UpU@4*̶Oז!I_'ZS(fgk[qn+QE,VjX,`Niރ:l >gh^GA>k%, <5-c.yy;>M>j 6k˭Uu bھoGf*5Xvj=u>7E~[x]q?MŲYo 4m^Y=S4بj8̄dى`CVt`)nFtgmVFywm{uɥd[[9e PyE-=L=^ ǻsFzGq>B1<"S1(K&G#KibJ*k7c<ԡUr=" zD`e1E|FI3G8NmK/흂I~_:>TH;WeliWmB\}D(&uB%7fLjlZ@$ Ï|Yjv}iZ7sLڱƹpڜXF]Y?Q6 .  򕕪G ->g7RCn=O#|8$5yq@ tXF^ٛ M+yT %h:^07V8ډݺڃJ1\i[&Q+Х>|ӲvUd)ުBZNJ)xq|R(\%"#!x ;mpJgIAUrXdΑuhWy|!u`tWc]^^ә1>%?`Yx(<#㩾fκO|tGSԹS1ܯЇ *Bwŵ)+R Ƿv<)Y]A۹"UsA Y2ӿg$O pCA~8l# ә.^ iSQ*Bz $G$_t"|\N7GzJp=V̙3 G]FɃk_ *+2>4t/ᴘ`T)ջ-N-nq<\kEzr,&be"ChK ΪDly*I1)L +s_'\ B\y8OJC'u~hdHqwQҬw1\\QW_;_hl*A Cy~5L j~|n )%! =~P"m)Eo:dk%;d: w%iec%OJL}+TuW7n/`x5 mSsnw_W0?jzݟ WK2엶|=)vu 8,`h/nhi-n|#Fh)fM=b-N=S& Sr_A2=23o,OoE1їqґ)A  kX Md;jx0&lcX|x . قGֳ۫JLɁ| &0~>?e #Df3$CY.8")„pl|+ԆT;y)anj7m0_YЖkZpKY,$Rw>/g 1w=d]Mi̯+S*aMUsXoݰ I"sӶþ|c ,އCy+u۰{d5K Ի_,t-:滋3]Ы`g9lژFT,e]I9t B|࿭O<j00 ".*P`IF@™oᔧeP r҆Նv]ƁeOٱnJ^RaTqj\?YǼ?( [;7ceHHY} ʈ1- m| ,ai:x& Ǎ M݂aB8w"oQƏ`bW QICbGX&4M,*PKBނW葊h+?r8ʯFY3ï)C&hl oo"$j +47P0TNπ^λ'[9c>{Zol:?91CA0, -d)|W/ fRKɘ8^QuZ\J6೪rk˳0]Y:'Y뼬"]u2zL=9*5Yñ@1 pqϹ"6:.n7Mjqp͇/ ?46.(z*0;ZPẞښ1` 7x|p/T:kگBb0O-뢫Zڳ 6g69?Ҋĸ,k3*\-rWC#\} ?/q Mt/x}/3ݷi]cd ?7:J]Q#66:PZ6kMэj=.[B7Vv0.n-n \^xu:Tfjan7(>"8urF ,Khd/IUSM맆-r_Ĝ/Ya[-HК?CsUYE e[ˠSug2v"1ʳ:v|&wk(GfcS,,cd1["uaИQ7 Ktl5:-9!gULz۟z:5ԢnE<+8 ~"QȑT^]`L]FHAkP ?6Ť|\Q,BuKQfumά~C+iy6ڧ \dSe7vhx[$"c Fίkͅ2{An=TKkj<5App?97|8ֳZ{MO{0 '|xh{͇&ZW.b>`$7 R Gd+gIsp-٩ w}?YTUV9ю|'֖5m[ʅ8(^pPD,,3 .IR-{#f*;ZeJ^$@,~yvdK3P{_T4Yfk.U`)W𺢔xX)]ێK{ P('H&Y:1$E׍"-{9+q;f_.0}=G+*֒܏8@ٹCTH@D}|Chsv(V\fӖEլ"{:/Hß=kG!FbX;p~H09 @p():0)FcN 0z!(pLezPϚc0*_N-?`kLkzddBBZNxX!]'K?#d76,TˊY1#4pްA ϞPcl H黼ۃԦުa JUxaF!Fahٿ2ePƀtO;Vx{|ksDdX?'H?Io^ '%z 0>JgW"r`̘a_YAHX:8_lg(^4ZrFCw\6R9EsJ9|k:˭2pni?:pz:v p~E$„pO>wA.l=_ʶ2UIz3GAc!qsT݌D &~!jL^ +B Oi"X8k3\) -`K.ʥ"aVʏG%RIEi]>LΙPYr6ՆJÌu,H(sRRSVta[ w[`w dRp[Lי'PI];%(ho\RkM p$)Wב TjO-hBB5꡶rVXLfiQK/#lG!`r|ffILtQIygM /; ?x1H%0P"!z O(&0 P1!?ي!׵ )3sD̿wJ Eqd~6uxX- 9Z9ZmDFy4}Я/91BAY? 4V78W%pƧolfhPΝKͫmBuF]Gi.P٭D8Up=ý?h˿ofxyZ>h;DI\OwIW:}PT(+)uYbQù׍pnfR?:NcA_Q9A|dt+x G%nz82GMA!Joz;nD8q^,k%CW"Я# ]gvO 69Mͩiz 5VrW@W:qv>[, $ۃl?hT)$ܮƌShDyr IP[Uc!+9~繙nH )$ܷ:oﲓftC (RB–b5AMCQt{Zg@nByw{j xM&'+Q3U$r ;p SsFrgt@ci3kQ>>"z NH'> g )RgP]Ϸ4PӵR]qm%_'Vam2km|D ':#@WUœ$#(KDDP3匦қVJFHqXmHL4KzB:AFjμ`$x{3v +a7ftJii dAmqA(+:|TƩTG V_o^Uzz´;>M ijbfiaPu>ްdL !@T'O1b3)'*>83|.Ûg3;k巻Mk44{K?0 SWRGh2țiFD+5 ϱ ʏ_ҊgJ oFij{-S >@!=4׷ހb|Gx|LpҒg$a/&x{cU4PcӘK2>MhMM2r55C*!٤bcO&;9Ou@}-QN9>rsbil "[vBZN`MG%h#dġ!YDMmN0ۅdZڶ@'ss.&Wb^ ḏ_W{Xi6djB}1|Zr7`l@\2aO]1sZUyXM$KyK$ WV܊J2jx>8Pa]-Q>`' Bwv6/Coh=hb-ÿyrHo$肨R%H:[UzxC/ Nǰ(!9Ď6.vANsEՌh>1_.ȶmfиSoQTq=NR wI~pyfzJvf/2+ٌkb)bIϵ a87B`z_7F1š*Zw eO}PD[U (*)Jo4B}Wz\{]p4sqS M`4DٱiMˤ +:HtoLhD?C׆`3/94d-w oWfo':[ug,AAI#]P}Cv氺Ԑ3U>ԘdKU Y3&]`߽elQh>\` ١KhA09A-ES1K.Y:ϗ=#eI炼ʄC5k-3r*)KL٭4q>lcju՞I"qt $F  h}=VETlE򝗻Xg^vy2Qa$ IZbhR?Rze\09ؽIA3CLL%([Ք1AL&&Ri"UmfF"yȒ8LBHre?5/vMC[{t2]'M[w$MX "D%$_^ ʄ)\<1tPj 4$BX%f ЧP>Ó4" zl%].V!x5llUB)_϶ \(CXն.H",Fr\i"d^~t,5C%\/[;HXf5&&_"Z8NyfCmQwNC"m\M\Jt>&TWP^0&>F<02J"y!{uM`!ڔ1,upp!Fȅw(>"C˫+´k0Bm5bEu* KDP紬Bx\~"V;ʄŵEo̰ Feh=rt *M6  D#ڮIy N4[*?:wwTC zaq(Htc.Cm/pD!4*A= e >–Z]wjY'_-AA"e97;hDIhGWVF'P- #] M,OaG%7sG]P1V8i>KbWb+Ks$PI5m YnpaaBqK['(I9{^u40t"*ʴ- _F&#?nfP,$E\5:QRNLfN3Ƽ㔩cvijɺې{ kxTg,[\6l/BiBb"JV-d e.mA8!|@AQ0`\S !GA,7"2dY7fjZԶ4?C%#/6\0ų10j3gwmL Pn$60AH\{Ehtt)Q3o=RKA &/*#{jմZAy.Niuśf&EۭL @Ug/ pP؁cP{ 0n=7\lȪ.y#:˯SM8QC& 6Js ?=^$gk29E (9A? /gA>uINӝh jvE* xXhh#@rdNdq&>N4':)JY0߃,k9o+ChRTi,pOS-͓VS\0AT?gL6LG?z :8>j6C{V7 c8P# !F-j( ƥ>]HKѵ`UJc7Mn{}' lØ5 s*fwѣJf5\k#dk9SAq?ng x g׻,oP`+"N&7jtj~ k$fսk; Z?d(G?-sp OHI3zdk>}%ՁUukrJw//(Q| 8SCvhIqvmb8t8֢̉@|lbpQAt+AUVPCEy],6*$+O.۴O)K)xyGǺ`mmdtsChEf 8Fj^[ҫdޮxP J)Kwġbf:u1?7d\Do^nd~2baD}9GdÞ 9a`i čfVbQ֖<7O6G@h~gS[A#fTvaҺuB=Ib?rNjR+^NI=d ,#O@!^$#'#Luϣ5ܜ-K:a7|2 aO;h0rC v@7UXjS=Ts)r-Wq^{MznA>a[MX!^b)eO΍}G Ò"oN=\<[_|$6q%K`/bӺ<^xQ\H.1LjL}N Ul0D n Le|w'wksa=i27JWNcN ɪ3L<{4siw ]!#+m9߹qUk3r|*Ey-Ŵ;[E7;9M=y.O>2zGS?/w:zF!q55lyTs/p/SgkBnJpsM'E@?c=cDR|Oƒ@CtDxr|ի5=a:i!%z͇{%ޮr25q?Y _ ?f=탦)콀:SYNYhxeB% B/"@MXf8z権<u*}^!cXJou4"j hix,VR/{#ԢiQzEO=M7D꽽mիd=Fx2߈jKzZaɈSw%Mg=4ȽCf'bj2LɈQ3]4' 4[6=((gE3"#N{i7k0.u;]&68ѓ/n䢣U7"{aX f= h%!@c M5Bk߽ԦThY(OVecndO :]yMVPJBi-A!!2MϗVRʠydQ"%'¤D8nSuv"/802FZ=hNd:|6o">(Gt:8Z\x QsP_ZH@2.,/F `\Q=U3vs|*1 &'z->ȫ8̵a[E[CtK:7j (m))ӥە|GfE] ܋~2PvQx >0R mA-g!~t\f8@4;Md*k-yVWaJ`hF;aTuQOS1{@y5YMmnZ+ɬ8kΙWl =мPe@0ؾ6 o D3  5vW9ЦLF*A.:"#tvWe\8< ƓZ3UOG /sIHffW]k:qzLCD ަM 2qqkw%c_Wćb`B;~7Cu`yc N+3VTZ/FyN! !?3\#j]%y}9IO e|X`NWnPM`%. yړgu%˟q\/9@\PfD"t2x/=ż䠅vRXqm֖}#&qUz@ƴTY?׍u"]R~Xf<..΃fi@ʘu^+[ةXSIR\x]ͼ(k&=S+dG0#?QmIw ).C?8IrDr?HXRaRC"ꋟwX> :V@9"4D{Zwa9 Yi7-=hyJ-#EnPuL!Fʥ -Zh b^*&Ac^7iM}6GByh̏Wi#2y*DH&BV]ŭ4xNJ> 2#nazΝj>0;XN̞nqSm7ů~=Xz}7[#@)k@fW8glUX=ah=/^Huޑ%,W3Fi,%Nn;؟蝶g H@$".߆Len(B^Z"̹B4sZ8!xby7S_DhQ% D8 "Pa>*ƚy(s]eMM>Ԉү?GѮk0i٣Gn^ 9ӬQ!a=M('I}_9 0*PF'l6\kpDu=ˬl%C _HF(qXxJY2CȐucVܞ*l˧x3MbTb5tDɟcYXl&nr4B~VeGB9k/WփeqѓH[;}n{G4Bz$4 btUdyFak%lO(JHwZ+AH)v)$@%R }e۴V]Duwk)`&&02(oaq2UPlx,WŔlY47O튯uG5NF|'Vb 'Qb [=pH,ɮA=تZh7>臌)Q[eӷ9h.E"t=oIwX250&u%?t/fa Ғ~-w˧zh辇U +_H~5]m5]@P dݪD1nfƖаm?jє7KNpZA"`] O'34$e쥠7vX+! G08h [Ȏ=BلP .ZY7pu-^,Et;'zf=̟xd6(_M]tK!^@,0)U{)S=.90)C+5 Aځƙܘ/G^&qT3WwQ تJCGnpc ,9bz*oɖvuk5\ OB=p-eS̓KSXxATA x֠06І`jf o]RY>\Н$1دHhZʓ~1d YZ