python3-redis-2.10.3-5.1>t  DH`pX~/=„FM/sެ`NT?;@$Q 8N?2NM|ճHчb-ڥmh6AHDE{ط{BQX{ި >Ǐ^Ѻ!Tj2d-N^@цv>RpG 4zW! F⥦c*dM/i .q= %VE?E;"PWL+f0184e9fc26f648957624a5b76361707a4123bbfX~/=„Z|r6uVf]T6\Q9 pTxj}ZX3Q}Q6$qL6lOX/l+f5 '4GXEɵo]?M_´8R!Bɗ??dhrv˅s΄# ߓ<0XqDm!֓S"O볟u"_hXchuG%#R[?Mlupnt*^~ ʊ -֓Ct>:R?Rd  Cx|     X S pc x(8( 9X : F FKGKHLIL|XLYL\L]M^NbOcP<dPePfPlPuPvQ,wQxRyRtzRCpython3-redis2.10.35.1Python client for Redis key-value storeThe Python interface to the Redis key-value store.X~lamb060openSUSE Leap 42.3openSUSEMIThttp://bugs.opensuse.orgDevelopment/Languages/Pythonhttp://github.com/andymccurdy/redis-pylinuxnoarch}/r >&j*5 )C-a2gAA큤A큤A큤X~X~X~X~X~X~S*X~X~X~X~X~X~X~X~X~SqSSSSqS38SqSqX~SrRSV08467ad62204f3562a6c7fb49291ce9e9d6e442c778f175f151e563714040dac68b329da9893e34099c7d8ad5cb9c9407b80ba2cca2d34313d17e11ccabd19e244c2e4ed90311e9208ccbab9532c0b3d8c11ab2cf8e4825b113a131fac24221310a737caf6141f30de7656284c7397c323ff13669fd002668770a079aa5a78e3cafc94c3ea1f29f8a978299b6f3fd7f2af6a51c58ae6243f90902246c5defbef9cf0003a1eebf222f68ee38b92ad290fbbc84fdaa83c1b45ec923fc749e675242bf707f89b2a517e2e081f6100849c87dcf72290eb01434efb9099ecfc21263a4c0d8b91afc7898ab664fe79732193f3a81e76962e99aecadbade6dc0e3bc01a653abc17e9cd2b9593c1a2de39effc043497e5744606dbc175261c1f5cbe746c67b005dcea6f82a8fa2c620dbfc51783b35e6f403a5f1a3101f2bd8408a77eebf40fc67f8d683f50eaa9b23ed64d1d5c51d9ad56299ab60ba7be65a621004f2713f148b5451b8203b3f87716327648c2rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython3-redis-2.10.3-5.1.src.rpmpython3-redis@   python(abi)python3-pyrpmlib(CompressedFileNames)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsLzma)3.43.0.4-14.0-14.4.6-14.11.2T@T@T@R@R@Q@PDO@O1@N|tM3@K@toddrme2178@gmail.comtoddrme2178@gmail.comtoddrme2178@gmail.comp.drouand@gmail.comspeilicke@suse.comberendt@b1-systems.deos-dev@jacraig.comos-dev@jacraig.comalexandre@exatati.com.brsaschpe@suse.desaschpe@suse.deprusnak@suse.cz- Disable failing tests- Initial python 3 version.- Update to version 2.10.3 * Fixed a bug with the bytearray support introduced in 2.10.2. Thanks Josh Owen. - Update to version 2.10.2 * Added support for Hiredis's new bytearray support. Thanks https://github.com/tzickel * POSSIBLE BACKWARDS INCOMPATBLE CHANGE: Fixed a possible race condition when multiple threads share the same Lock instance with a timeout. Lock tokens are now stored in thread local storage by default. If you have code that acquires a lock in one thread and passes that lock instance to another thread to release it, you need to disable thread local storage. Refer to the doc strings on the Lock class about the thread_local argument information. * Fixed a regression in from_url where "charset" and "errors" weren't valid options. "encoding" and "encoding_errors" are still accepted and preferred. * The "charset" and "errors" options have been deprecated. Passing either to StrictRedis.__init__ or from_url will still work but will also emit a DeprecationWarning. Instead use the "encoding" and "encoding_errors" options. * Fixed a compatability bug with Python 3 when the server closes a connection. * Added BITPOS command. Thanks https://github.com/jettify. * Fixed a bug when attempting to send large values to Redis in a Pipeline. - Update to version 2.10.1 * Fixed a bug where Sentinel connections to a server that's no longer a master and receives a READONLY error will disconnect and reconnect to the master. - Update to version 2.10.0 * Discontinuted support for Python 2.5. Upgrade. You'll be happier. * The HiRedis parser will now properly raise ConnectionErrors. * Completely refactored PubSub support. Fixes all known PubSub bugs and adds a bunch of new features. Docs can be found in the README under the new "Publish / Subscribe" section. * Added the new HyperLogLog commanads (PFADD, PFCOUNT, PFMERGE). Thanks Pepijn de Vos and Vincent Ohprecio. * Updated TTL and PTTL commands with Redis 2.8+ semantics. Thanks Markus Kaiserswerth. * *SCAN commands now return a long (int on Python3) cursor value rather than the string representation. This might be slightly backwards incompatible in code using *SCAN commands loops such as "while cursor != '0':". * Added extra *SCAN commands that return iterators instead of the normal [cursor, data] type. Use scan_iter, hscan_iter, sscan_iter, and zscan_iter for iterators. Thanks Mathieu Longtin. * Added support for SLOWLOG commands. Thanks Rick van Hattem. * Added lexicographical commands ZRANGEBYLEX, ZREMRANGEBYLEX, and ZLEXCOUNT for sorted sets. * Connection objects now support an optional argument, socket_read_size, indicating how much data to read during each socket.recv() call. After benchmarking, increased the default size to 64k, which dramatically improves performance when fetching large values, such as many results in a pipeline or a large (>1MB) string value. * Improved the pack_command and send_packed_command functions to increase performance when sending large (>1MB) values. * Sentinel Connections to master servers now detect when a READONLY error is encountered and disconnect themselves and all other active connections to the same master so that the new master can be discovered. * Fixed Sentinel state parsing on Python 3. * Added support for SENTINEL MONITOR, SENTINEL REMOVE, and SENTINEL SET commands. Thanks Greg Murphy. * INFO ouput that doesn't follow the "key:value" format will now be appended to a key named "__raw__" in the INFO dictionary. Thanks Pedro Larroy. * The "vagrant" directory contains a complete vagrant environment for redis-py developers. The environment runs a Redis master, a Redis slave, and 3 Sentinels. Future iterations of the test sutie will incorporate more integration style tests, ensuring things like failover happen correctly. * It's now possible to create connection pool instances from a URL. StrictRedis.from_url() now uses this feature to create a connection pool instance and use that when creating a new client instance. Thanks https://github.com/chillipino * When creating client instances or connection pool instances from an URL, it's now possible to pass additional options to the connection pool with querystring arguments. * Fixed a bug where some encodings (like utf-16) were unusable on Python 3 as command names and literals would get encoded. * Added an SSLConnection class that allows for secure connections through stunnel or other means. Construct and SSL connection with the sll=True option on client classes, using the rediss:// scheme from an URL, or by passing the SSLConnection class to a connection pool's connection_class argument. Thanks https://github.com/oranagra. * Added a socket_connect_timeout option to control how long to wait while establishing a TCP connection before timing out. This lets the client fail fast when attempting to connect to a downed server while keeping a more lenient timeout for all other socket operations. * Added TCP Keep-alive support by passing use the socket_keepalive=True option. Finer grain control can be achieved using the socket_keepalive_options option which expects a dictionary with any of the keys (socket.TCP_KEEPIDLE, socket.TCP_KEEPCNT, socket.TCP_KEEPINTVL) and integers for values. Thanks Yossi Gottlieb. * Added a `retry_on_timeout` option that controls how socket.timeout errors are handled. By default it is set to False and will cause the client to raise a TimeoutError anytime a socket.timeout is encountered. If `retry_on_timeout` is set to True, the client will retry a command that timed out once like other `socket.error`s. * Completely refactored the Lock system. There is now a LuaLock class that's used when the Redis server is capable of running Lua scripts along with a fallback class for Redis servers < 2.6. The new locks fix several subtle race consider that the old lock could face. In additional, a new method, "extend" is available on lock instances that all a lock owner to extend the amount of time they have the lock for. Thanks to Eli Finkelshteyn and https://github.com/chillipino for contributions. - Update to version 2.9.1 * IPv6 support. Thanks https://github.com/amashinchi - Update to version 2.9.0 * Performance improvement for packing commands when using the PythonParser. Thanks Guillaume Viot. * Executing an empty pipeline transaction no longer sends MULTI/EXEC to the server. Thanks EliFinkelshteyn. * Errors when authenticating (incorrect password) and selecting a database now close the socket. * Full Sentinel support thanks to Vitja Makarov. Thanks! * Better repr support for client and connection pool instances. Thanks Mark Roberts. * Error messages that the server sends to the client are now included in the client error message. Thanks Sangjin Lim. * Added the SCAN, SSCAN, HSCAN, and ZSCAN commands. Thanks Jingchao Hu. * ResponseErrors generated by pipeline execution provide addition context including the position of the command in the pipeline and the actual command text generated the error. * ConnectionPools now play nicer in threaded environments that fork. Thanks Christian Joergensen.- Update to version 2.8 + redis-py should play better with gevent when a gevent Timeout is raised. + Added SENTINEL command + Fixed a bug where pipelines could potentially correct a connection if the MULTI command generated a ResponseError. + Connections now call socket.shutdown() prior to socket.close() to ensure communication ends immediately per the note at http://docs.python.org/2/library/socket.html#socket.socket.close + Lock checks are now based on floats rather than ints.- Use upstream source URL- added requirement python-py - Update to 2.7.6: * Added CONFIG RESETSTAT command. Thanks Yossi Gottlieb. * Fixed a bug introduced in 2.7.3 that caused issues with script objects and pipelines. Thanks Carpentier Pierre-Francois. * Converted redis-py's test suite to use the awesome py.test library. * Fixed a bug introduced in 2.7.5 that prevented a ConnectionError from being raised when the Redis server is LOADING data. * Added a BusyLoadingError exception that's raised when the Redis server is starting up and not accepting commands yet. BusyLoadingError subclasses ConnectionError, which this state previously returned. Thanks Yossi Gottlieb. - Changes in 2.7.5: * DEL, HDEL and ZREM commands now return the numbers of keys deleted instead of just True/False. * from_url now supports URIs with a port number. Thanks Aaron Westendorf. - Changes in 2.7.4: * Added missing INCRBY method. Thanks Krzysztof Dorosz. * SET now accepts the EX, PX, NX and XX options from Redis 2.6.12. These options will generate errors if these options are used when connected to a Redis server < 2.6.12. Thanks George Yoshida. - Changes in 2.7.3: * Fixed a bug with BRPOPLPUSH and lists with empty strings. * All empty except: clauses have been replaced to only catch Exception subclasses. This prevents a KeyboardInterrupt from triggering exception handlers. Thanks Lucian Branescu Mihaila. * All exceptions that are the result of redis server errors now share a command Exception subclass, ServerError. Thanks Matt Robenolt. * Prevent DISCARD from being called if MULTI wasn't also called. Thanks Pete Aykroyd. * SREM now returns an integer indicating the number of items removed from the set. Thanks http://github.com/ronniekk. * Fixed a bug with BGSAVE and BGREWRITEAOF response callbacks with Python3. Thanks Nathan Wan. * Added CLIENT GETNAME and CLIENT SETNAME commands. Thanks http://github.com/bitterb. * It's now possible to use len() on a pipeline instance to determine the number of commands that will be executed. Thanks Jon Parise. * Fixed a bug in INFO's parse routine with floating point numbers. Thanks Ali Onur Uyar. * Fixed a bug with BITCOUNT to allow `start` and `end` to both be zero. Thanks Tim Bart. * The transaction() method now accepts a boolean keyword argument, value_from_callable. By default, or if False is passes, the transaction() method will return the value of the pipelines execution. Otherwise, it will return whatever func() returns. * Python3 compatibility fix ensuring we're not already bytes(). Thanks Salimane Adjao Moustapha. * Added PSETEX. Thanks YAMAMOTO Takashi. * Added a BlockingConnectionPool to limit the number of connections that can be created. Thanks James Arthur. * SORT now accepts a `groups` option that if specified, will return tuples of n-length, where n is the number of keys specified in the GET argument. This allows for convenient row-based iteration. Thanks Ionuț Arțăriși. - Changes in 2.7.2: * Parse errors are now *always* raised on multi/exec pipelines, regardless of the `raise_on_error` flag. See https://groups.google.com/forum/?hl=en&fromgroups=#!topic/redis-db/VUiEFT8U8U0 for more info. - Changes in 2.7.1: * Packaged tests with source code - Changes in 2.7.0: * Added BITOP and BITCOUNT commands. Thanks Mark Tozzi. * Added the TIME command. Thanks Jason Knight. * Added support for LUA scripting. Thanks to Angus Peart, Drew Smathers, Issac Kelly, Louis-Philippe Perron, Sean Bleier, Jeffrey Kaditz, and Dvir Volk for various patches and contributions to this feature. * Changed the default error handling in pipelines. By default, the first error in a pipeline will now be raised. A new parameter to the pipeline's execute, `raise_on_error`, can be set to False to keep the old behavior of embeedding the exception instances in the result. * Fixed a bug with pipelines where parse errors won't corrupt the socket. * Added the optional `number` argument to SRANDMEMBER for use with Redis 2.6+ servers. * Added PEXPIRE/PEXPIREAT/PTTL commands. Thanks Luper Rouch. * Added INCRBYFLOAT/HINCRBYFLOAT commands. Thanks Nikita Uvarov. * High precision floating point values won't lose their precision when being sent to the Redis server. Thanks Jason Oster and Oleg Pudeyev. * Added CLIENT LIST/CLIENT KILL commands- Update to 2.6.2: * `from_url` is now available as a classmethod on client classes. Thanks Jon Parise for the patch. * Fixed several encoding errors resulting from the Python 3.x support. - Changes in 2.6.1: * Python 3.x support! Big thanks to Alex Grönholm. * Fixed a bug in the PythonParser's read_response that could hide an error from the client (#251). - Changes in 2.6.0: * Changed (p)subscribe and (p)unsubscribe to no longer return messages indicating the channel was subscribed/unsubscribed to. These messages are available in the listen() loop instead. This is to prevent the following scenario: * Client A is subscribed to "foo" * Client B publishes message to "foo" * Client A subscribes to channel "bar" at the same time. Prior to this change, the subscribe() call would return the published messages on "foo" rather than the subscription confirmation to "bar". * Added support for GETRANGE, thanks Jean-Philippe Caruana * A new setting "decode_responses" specifies whether return values from Redis commands get decoded automatically using the client's charset value. Thanks to Frankie Dintino for the patch.- Update to 2.4.13: * redis.from_url() can take an URL representing a Redis connection string and return a client object. Thanks Kenneth Reitz for the patch. - Changes in 2.4.12: * ConnectionPool is now fork-safe. Thanks Josiah Carson for the patch.- Update to 2.4.11: * AuthenticationError will now be correctly raised if an invalid password is supplied. * If Hiredis is unavailable, the HiredisParser will raise a RedisError if selected manually. * Made the INFO command more tolerant of Redis changes formatting. Fix for #217. - Aditional changes from 2.4.10: * Buffer reads from socket in the PythonParser. Fix for a Windows-specific bug (#205). * Added the OBJECT and DEBUG OBJECT commands. * Added __del__ methods for classes that hold on to resources that need to be cleaned up. This should prevent resource leakage when these objects leave scope due to misuse or unhandled exceptions. Thanks David Wolever for the suggestion. * Added the ECHO command for completeness. * Fixed a bug where attempting to subscribe to a PubSub channel of a Redis server that's down would blow out the stack. Fixes #179 and #195. Thanks Ovidiu Predescu for the test case. * StrictRedis's TTL command now returns a -1 when querying a key with no expiration. The Redis class continues to return None. * ZADD and SADD now return integer values indicating the number of items added. Thanks Homer Strong. * Renamed the base client class to StrictRedis, replacing ZADD and LREM in favor of their official argument order. The Redis class is now a subclass of StrictRedis, implementing the legacy redis-py implementations of ZADD and LREM. Docs have been updated to suggesting the use of StrictRedis. * SETEX in StrictRedis is now compliant with official Redis SETEX command. the name, value, time implementation moved to "Redis" for backwards compatability.- Update to version 2.4.9: * Removed socket retry logic in Connection. This is the responsbility of the caller to determine if the command is safe and can be retried. Thanks David Wolver. * Added some extra guards around various types of exceptions being raised when sending or parsing data. Thanks David Wolver and Denis Bilenko. - See file CHANGES for previous versions...- Update to version 2.2.4: * WARNING: Potential backwards incompatible change - Changed order of parameters of ZREVRANGEBYSCORE to match those of the actual Redis command. This is only backwards-incompatible if you were passing max and min via keyword args. If passing by normal args, nothing in user code should have to change. * Fixed INFO to properly parse the Redis data correctly for both 2.2.x and 2.3+. Thanks Stéphane Angel for the fix. * Lock objects now store their timeout value as a float. * WATCH now supports multiple keys. * Broke out some code that was Python 2.4 incompatible. redis-py should now be useable on 2.4, but this hasn't actually been tested. Thanks Dan Colish for the patch. * Optimized some code using izip and islice. * Better error handling * Subscription status is now reset after every (re)connection. - Added spec file license header- Created packagelamb06 1489796854 2.10.3-5.1redisredis-2.10.3-py3.4.egg-infoPKG-INFOSOURCES.txtdependency_links.txttop_level.txt__init__.py__pycache____init__.cpython-34.pyc_compat.cpython-34.pycclient.cpython-34.pycconnection.cpython-34.pycexceptions.cpython-34.pyclock.cpython-34.pycsentinel.cpython-34.pycutils.cpython-34.pyc_compat.pyclient.pyconnection.pyexceptions.pylock.pysentinel.pyutils.pypython3-redisCHANGESLICENSEREADME.rst/usr/lib/python3.4/site-packages//usr/lib/python3.4/site-packages/redis-2.10.3-py3.4.egg-info//usr/lib/python3.4/site-packages/redis//usr/lib/python3.4/site-packages/redis/__pycache__//usr/share/doc/packages//usr/share/doc/packages/python3-redis/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -gobs://build.opensuse.org/openSUSE:Leap:42.3/standard/e5fa59c73a36d45fd85f8b43edc26a18-python3-rediscpiolzma5noarch-suse-linuxdirectoryASCII textPython script, ASCII text executableRuby module source, ASCII textUTF-8 Unicode text RRRRRRRRRRRRRRRRiV yX TjP?`] crt:bLLD ͩhBXl׏S)w3,_,֌elJm,jcZxzrg/E ըL+H8hwk=jaPFHKx?{r8EP ?~rWpsZgeM>ۆ͙ 3U6q'%[2|( G5= ZCy(Zm(Y/ {9n~VL 4= 59)8]b/ "-eg\'u3RBUumTMg5w5 \VZ2u hpH @_y5uTaoʃ:7qZò*[U~4/$2VfXwN lPL%y?otkFuױUGv BrLsm Zߛ&aJ&Y+;] =L H9<%뵟G>(dc页`Hljec`ޠ{\z9U]6<^b}ey8,~?=Fr:t%| zu>G*NJݶfqW+Ҿ-/ ` ӄ(ݩF}RAdLϹi|F^M` GMyr"#i,1aQn7P֘^zlű̋޻5eRm>~ vR8=;ҽ#۶F$pS(V%pAVo-,x`H,7)ܸ-ۜc.奥 40l H\Ê޳9 Em"en▬39gl(&7h!;FF#nBWt,_B\$Oo2+x*+zM6WRT/cg[5xʋ V!p\v`B"Z?/FÑfU+ #1fT u!.(>yR>bfRn%Ϙo[ȿxUl bF{kSv0i-o̩&!$$oYU9S3Yu]bz3,I[˓`tb%ԇz7y C.x'l$!Jr9MoNu s,D@Fy0>]duڿݷ1usw@Ƽ曌`1*AKh/j\u`_M*&r I=J^,k 6LPV˫i' Fy?9uk$-!-^H $P90r>4W;h=d1}{Q(O)[K61ߊ`Q.0 ů-`U88;8;r3۬C+X!ˉdx%rڙ';#J׹҅ge fe=Iq', eH枘FPGyLrgAP[_I\ڨTfΜ .'ԴtJZY]PG跅L#]ͅh/y^)”`Vhea^(%}5<.xFBʠ$N K^ZQ󔃸f-iW[\!p}Mw<nE?g[ v쾢5?G%ɩ#$!t.< ,[#aeY5=bM ZKX-6%OӠ[L=|A6}EL9XZQq9:N] xV+_N_,#F$<;jelw#|OӍRY;Tmx>| Fm?Y͂M~9Ŭ[CWX=᪤7hqWE~Q5\-9L5ҾOrm^< RNC[w*XyzL:Rװ~+rJFx!GpPP jbv\e[(U>̵!Q1$̃U=uI&-vkTsl*BʞNX&k4^ dNYs$xβaÙLB)gN#H[P-ɅN< A™;OTalY_`}baCƟ"r2"kMq}$94mi? g8N[CUd/Gx`f5ƋCh~U$PY1@:,X *D[exƐxnjs)bݳ\/ehzǾ?ɚ܎,7in$K i*g8VnGHpMcV8kC2OՏr>-fSI%\$e` ' $]yr> |΍gu#[p|oX&Yyn :giɲ{%A岻LƱ)!ʹK}ĸ4FdQ RTE ܜm$ҌTٍg]Zd9\`v(~=UTd(GjLm\\u;aZkw`ϏU@3\&#0m)9ݎ%Gv}}Ӂ;s@܆a&2MQV8Y|WoݢZt7@湵>L%*I~&{y-V wXq µ=I8~s13A2~hɨJ.S%YNI˜ =`o%rO,8|AiwY@X4V߄S5|VO]]N3Qz HrO&+$ⰓmXB7f[XX| .]p 3wXʙ+IvXIJA@v_h 9qu&rA u0Up>gןK z݈Y~d$TaaB;:/Q)q@KNǡxh$9[7!ce^&z(7`{u婆jn⾀gv] e. ]9IкT7%B")^MDA <||!p>Gr |-.mUܯPZV8[&P2g5;\irfLjښ)1+ӀM(JBX@d$ 8)Bٖ>T"?\#цHJC"0]+Z2h_^'r/Y[=wIC{g% JJG˗y|^EKNSO|SwTܬ>Ϙ!q041ʷ H 翸!I^6I֍9 &oH\l_bok9(Lx.,WT|g.shCPݖ "2`R1g:'Xݤ>~~Dc|qpoGib{F E 5MqLW"qE'&Ȋѵʞʓw!%rt.t&pCͦX]!DiS|uNFpy yM<-1u.؜uNDX*f;A4,āƺ,̍H4&<4gQY -!px F'[YOYpt]4oaXY="{=mloV] g:a |` h{`9K/ <^xQme * Vbh {1iM$Mw'=М=z| cC{ӤzTWU-XZx}ţ%~|5+";-Hv4teW؃)E/"QK$[AVO7b0.5rQ./"Ltz'رd U"(jDEuh[&1ow-^$1h( E{@Zr?@KIrd =XwDIx͏0=-nLv/a!}'PVZ[Ha#%ihvfiȌ@'q}vQ'a7AXZ(pk:8*(O;> "&nmoO>1JpiKՁ"̆Is?l=?#Tɫqu)ly ܻ;آ s"䣓4qMƐh!sBIP0d cu:aZYc;ו_DJnRM =%Ql!F8=lP $rb}+8WW c=e ȭWNUߛ௎dz]5llRXXc03QlW`Rf-p pV*ⅷ%zE]811U)“,pޣlݗJb&(?cPbf܉%$):}9Ob)^k:dM靈'wS,hU[1;0byk;)֗= (4DxFLof~20fEuСٕRW=p=8q_J)xQH<8̓7aqBe0ɏCRT$Y+H~9j'UúNҸ.G}|;=4FOlM[ڜm7;z%Ϟ!EW Sȷ P\ c,CmI/+WI C{)e ;MKV^4 5$"aĮdՅ$߲a+ xC@&`%-I~~mXUe7{fU9Ijuo隖:EppoFyҡSe+9w0y S=lh8PNd-9׹J r +_}!RY:xT_);2gt D,$Bg\EmME^`r-Ey $ 4x>RZ\gל;so#K.KRJxOk_ӢBjRXCsH]f~ >u(;RByQdY^"7*y^i[aCd.tmQ'O::~?CTE6EjN D5a+9|. WzDGɑvV| v\<v*H_R9(T7UX !c  4`fGAq h6o_{]m +Z::,UGT8@5H)ܣV~"Nm/01U띒&E#<[9poUshnn *:NwyCAWkg("S@8 j=SZXvG@ %]DkP2Mr>eR#U 11li^Mh&qaXOyz):22n^ t ҨFVǻ}DWS6QKV{L$PlP?PBNq1]2P(PZ`(6tU{\$$A.n]s@ՠi<,WjcD]{P]=+KmU:~k3蛴.qz؂wC ؕTgQgZ`ه63s3$n&#aַĖŃuqh|,輅9Ѓ9+Ew=] d20N7u\bc_x")6S">.G;BؠK4{=AQa帳?S9DϹ)&G<^gp [ZD6jc=N0} TVS\c˼BqZn<"^'n`yY+􄍌Cng~5uotas>?jY6|:L/(EEabvAFEkQ>.Y|DDrL g|Oħg7dC=DXX;=^LEydv1Վ\-*TH?Ep|Ҟ)N*W]*D>n=0[iP!8a[<%x_pvjҫzbTf/Lzg BWhLo.h̩ǦTV@?">sH3j3ږgq=j[yNMLDXJ/ ]@Vo S9c+o 4ЄPJȞ77֧fZQnAC!d2׭K>S7iD8ݜRͤd"B)S%ъoT\Ѝ'z0QOTL  stO'(---C RHrDv&\s4RdZq%Э#,5ž*گ}c3?TM8SX*Y@]fGus0eFMtpjhlƽ#oM'@m*e74~:>x[JJ>|$brԋ:!bn~8n(F~*%éy>-84>i s`*M!@}.+f1JIqittN,Ӟciܓ]oU5Fn@䫹]oF34m߈mP0‹>AGxJPIUށk=gSj@ւ*=R_y{}RWb8 I'"ǭDKT,ϽZEȠdvM!aPAsB;Y'aZPmB$:S֜/oYWevedNޣ:űIlo(7Lap>. _Bt&Hg vB4PTHgtWiyGUӳ7+yXa.o #, ܆L5{uv}[hWV|(` k(s?4OJܖxllA`0߲!ݸaUgェ|aN:+ yKmRJ#x\F$#t@?Y~[ 'lp7[Q$m{RdCaZ{~Z[>HwJ< vB5Zm}s' ޫp?Ά<G]_ "|ռɒ%aM!"m_9[64ǽIL=w`Rۧ󦈬3n%ƉUmXĢ?,I@ZGJnJCRSKR*.M lK#57|  FfEE2U<Hl.ӸWQiQ`eUt!Z lq*CxͷxqĞSDNOYQ=WB΄SG+jXEF[TK@*6!A }5c-7;y}+Io+"D!w9آ> QIErqVH^jZlo w,Ti7[eƟ>\LA#̗>~$#L 5@4ύ՗uWZ,ta$mqKCg$?OD9Ut>ی[kqfd/fDÊd^Kk>DMѻǹZ#κ/yuF b[F?-/Q+Y/f8";+vThe[{o7 pdyHƥJH~*WP4f&:mS4E0증d =8YNFHrEi~.kCE.yrJ E}s)XqVX4XJ5NGumLzmPxDuCHyM}S@1&PuF,4=EB} {{8'M~sz!$Dc( b|Iܳbyy Mt7-G8ˁbBb7.b~$b*v7pP0; 0(@a+lUbZ_h:jk!XBZI<9mt@F?IfU{*<ם_̛]Lfv+ SǃT\Y`"Q@<4O;=1\+w_rk}O\ŷRbqaĪhk4Gs2o;eZ/;6 ,N4GA%tcRm0{[t[.PP6-!"CW⌢}3i-8mHvo"ҹ<=0Tv(E,bd6:߼[< >9}2>.Ù90yO*QA#A `/rVBЌ-+A:e)~E.GGtќɥc5VB+r;Ke@[ȃpb|p 'ҊH%7ݸd țٗ(ņSEGo3Ro[4jL IFkVFE\(@+r,Jڿ3J˰$m|+WڌC2LAAA|JmUG\HB=XWv3gt_( E?͞. 尮$5ʈ|lw%86bF{AXsRXh`S{o߯M&v|{Ԝ0:*˓YxoȔyVPPiFI1_Fa8$mщƷE`s1W꓈bZ?Ah˼b'x8K gigCf汁YED0k,kȵ!S)օ)XXHgCP4ڟpe93<'|/X;WO]HWd41`("UEwm#UZ@_iR}\Z%Д9>Yyʚ?ofMv,BHj$@/؃J[K8y|h`<6ơy'5kMAߟTZ]p#ab~:XgYVmr&^ y a J ĦhKSy K|FI9(e{~"[Oz2Z_1Ø>!$ջ4;A~E\SM4,tлI>jʆepbOw 8.8ӑLs{Sz #re@N-b6Ǖ tKQE2-muV`s1޾̗$JbX iEk-% gW^FJ):9ZӤeɥcb@b|!:Ut`L?9_Ħ^T78EBحk%d WIN ^_(@k$j@ś σ[ثp£B6;-{ȜoAi;wuzR"6 @"F.C-bjT!U\݊(ORw%OESv{ٛ%u>^L쟌wnWAx- k8w5"agԺP{.g<'9ue183n uχem~`uѠ@ TOCEI'bה 3fGatkPq. *ցeExa#K^;ҷnăAY_\43f$˃7\-l\h'9E9NB =h^ "73X\7x.,ɹKiYTz>5@KWNWZ[bbn$dXKh^Pj`o-t2ޒ2xKT2_z*F٥kgΥS̑.7ǹPQ n90k>t0$E""o"Y7{y} )zy~h/4muC]ΐuqPci%6Xٱ #m}.ÎYO[Ό J ǫ*#),8TӼRBqꣷ45 m!ULQI^Xs/Ƨ.K3Z.AWhS ADy4W̸}cH)K_5Ao~|57L*">z]굘Kʣ2pβ{xPԄ[@$*ӷY4%TH3QC2\U(*FW]-ᜦ5xF|8]_$3S3õr"+sqnW00`+8ŏ;T";cv * y:x @!r.o*ƊRyH//]f~*坁_upۆ5;jWC CNG*S3aݬJWP 3xEC%sC˾Hbx$/8 }'"!4(ɻ%|^-AƟo..sf+dyO ֖gN f[\X>UЁ`5L(CEUhQ'X@>)UkV~=#Dvߍ1{xϠ0{y{ĉXa6UتSwUv2ҽnAa@k6/*Rn6T 1כ_hPNш?nXv0ǐ*+,,]"F%7O:bw@ Ad?kȮFr 'PV^ n Mw^\<0>M2H@)+ٿE/: mɭ`](ewa +!pֽak40ȃ|( rylBW_& D w+Sƙj=6!-0(啹Je#*] yę%PxY.anrSPH>y#)tp+"Yu1oepWD/~N'Į4Y{63v#0<(&B*CiMy,lH߆Qq~N}c 1a`<S_ND#~reғmdgٕ< a7] PJ$ V^$qq?2,Vcz*[[-81"!Ցl;E~kbһdr@x=ުjƯp歃'nb3Zzd :G4dvѢ,zF^4`!2Azk::#BȷyӅFRF:k*V}+aRu0Lp%s4anRn'HvAݣyG?۩ٔ uc3Ә~TZRr;  \|=E1‚\L!E dǞݭqaBex_}ܽ@xV60׳v9BWRƧNy~INvƧk ]w] i1 ܌gƳs=/$qtg;d I V7b}'s.=hgbk\7]wA}JN=4cʆ,~pW JB/Cj8X1# 4Iy2>G ֛4I_5{sA.eR8i\oMPjVXD c( !p/шZ^nվz ~ڧx*ڠu>)-/J>E͎Ն~wSkQxjmF: ]Qn+^=PNQD)Đ =^-٠h!0iewᔹ!+PqQ<ÉD9#=^ft#[)O}|*C6KC_yɑ\\j#>4u DcwR$H I=tod틈W₽eMD Q&E@wOwcv+ }ˠ(I]*K}Fl؞ϺRӂ+1|ʵy@|@1#N `ݥ* )6ǒ[ Agq;2UȺcF[O*w}&̡0@ ,j ͨ_')P=`Ůpv*xڲ.mHuM6}yeI"Vљ}+0<<̱glQƏ,;%XNUj[/_/C?w4gu܂.[M|$sZV*ԾUJ{{eh]UOvgL1{hsLR"[;Ҹ| rj5=}[=CSWa5.^@i,m lNl!e+1P8{6-fPM=X2!ɵe \ g aSe9I3UM(F,޶"%Uxse_hܳ,FX2 OI\CQS0|!II='$e(Hbm9X%2p^Jbf!wHCk՚X?X6GDN ٔyqȟ ; nuv̊A< 5%C|3{(Xhq.okx W W]-X%.o^ʔ'á+0ss:]>+w;cVy1EB9h]/prr}G=0uck5A$ )d|"hics:+_]ߠVϾpM;/[t_UvpA9吺" )sN &;d<:$)Bѯ9T /;f-&$& S2~u >>9}H se_hnlHL|(UO7n][ft_ | 5T2i2r 49/ػ{=%wh^:Ȩ]Σeq= x- `uKYyn0=e4xL-\X ڨG_&:QPJ3Gg9;9SOEt'Vu!爴M]̑ N[Im€*Y.bOvg!Mx -YQTC_j!pVw"7Gz&fVa=R%5R.4@4^s#xe1Cw.AWrgWSͶCoľ^TUR(>-6$k\`ș M=gbf#x]~02ºA8}4 *-/d.Dpm~j&xNXwP<0+4%wM4*><-Bm{{>Tu3WZL 9!yY/֥$:?CY6C!hPg~Vh+<"֪+53sc*4CEheM3DjMD9+%2obf4,re<>FR"`Sъ^*ZĒ/* :ZWz.<,hZPm&"zK^6xw2s F ̂4]?12AP cxQi&D-ᦋtOl2j5J.o2=!_`ڑ$FRA>aT7@ y >SFaG脘m/ Ԟ yW]SBSP2X^FB艡XG=3VNeEW덀3^>l-zuG=\+(gV<#O쨢lBg&SY;46ɺS6!.( hpFt}8}SPeCt 0zyc:JxDGdj1uxKXCH]]sQ+nw9x/p$ pkcxw"_}>1~NX5twmR \ /R,.>тb) ]!L߭XU/W#m'OJخoLcegJҪ:Z F׏]]ۼإ~ ^Ur C G1zP6 `zA8JmJep3·NÒQ?i00 ˆhurQ"%% żD,"wݐj-+_*}]^C;Se~׈?c< ۊuOX;x-ysT euq^~ mW{+ Nk|>_{vz`'@GNH`12l9 t?M x0 x/ #J~E][MߎְUtgOp*uz_N9­l:c ZK=~!'aX[y_H0XTkE)R n J4L Ho5>i8s[#u4X`FCaX1Cg66t\0G b%3MH2yE+4*LVrLȭD}/gXgE]b188dQ-L%K͛PIho @X&IxB)8G?7/ 92ѣk\ ͢W8rϕ ; [WJ0B@pƝ$+QTM#+\ZĽ]lgsny& e\:DwT͓+T÷-EMR'F89NB9.G|iiߌ30]C精Ų}Y5qfıcʰW*2 KYìPmlx !uhI -d2KԖe EV\bP/0M>@?jy@Z kvXH8:\>F#2!u5Q]_[sz0yF0g/4lB^$nud A΅"}=N ,=x@.ESU&~WUVA7I"73~(F$=%I[-O#0 M? @&{{#X5K>}V C4ݤӖ13b~/[Mr9R#L]2;,i|#K{i-q"lTO{B-CFPHBITl k:0/" N[!jƝ̥. > hK2 JJ'*8<;s]%iGj&IoU3d0.{NQ;*[hkj_e & wUb t!M:)BoȖ2@PJ~r;&{3/(!ɶjg0sc=Mz 0$ /Ы+eTa]CX<ڨ[z?m0ɍ1_w32ru0&M"VuBVs{;2З_ i5%iG--}3S  ĆR@%L0L$MdZ v07^R\-LJ׫hAek.S )zvxyFe,l5O=;}keg{a6kWO IB:<.Cq /U)LuJF@= z3\wXʳI"˿6*|Joᚨ7co.7xP~/Ⱂj:v2G0=Ԇ́eDxm,I X8x5}7:R&tQgmTa꛼oH(栓W!0s#Vth0 _~l?b0PMRB>!l QAGJ{@a#팪郏#Q"L>'23AG4",Mv#9hrǁArdΊd$᠎yd~l# <ij#a3VDWF1nX.#u%4;A/eו A@  *+D8H]8򝷅Crm|p'ƐTGUNiO8~sڅiEϥciEs8 i@A%T#`QzNKOL,WbjঠN؉X,Wg3vEi,⠏j|9 \YKoHXHڮFzLgvrL)"R_|2W/q! xgC.QQLzinP8;= s#le`4>̨on5gCdb!!mHuT,"lsgl<3 5Em^P Fp3ڱKg3oYGoWQtfU%# ΍F.kZgM׳ΙEq'Aax6[ҌJP+"ODq"wǍv!ٖOpdiuFb|sE4?GrkA$^w yge0`i<{Ye`Sl}i(n)5y=e3# 2W>e^҃OlVp&`pZwzf>P"}-"KS? oGJWo344,PsayUkCDMC5g` YKw>bTܿ G30>~ߛ+IP*7OП|ЦW{DmqXPvC)_;y6˓/^O*檝Ogv q-?x?y:J<%ka1r*'g=5g~i{1|T_2QvWp= %K/eg >1~(=h-hL,[d\A'G2J(g]h`a5rF$o@Mmz+L ˿ ;V*̹c%~ԨAOZ&=>V "V?0^O;CwM9CV< #1Ԛ/V܂"q!FW: CIgpDE@a4Nh8q]p2c׈-10^](eXĆػh8Lٛe먞"~.[Nfy88Vau8/}ec1!5=o `9U~6@d*,VPv<I$g9ꉨKd+uJ,XQ)j\qW ls;! xQ(PuIc/PVDe8n,2 IRⳡU,9FWpH7|wm -hv5 KY7OSGp &ְƓwk*j"PQ)R\}>L/t 녥 yeQJeML|q ?mjt aXӗxjt`2Kr̳DSj&7LN`gԄ fc_č AqC>3*:'4u'DVRV^C40 OUCƱ~R$ja_Х|}̩I~43Z;ԉ,!x`ᴆ䪗4+-:=xЭ0Mm n0Vtߩҥ. UgF Sp\f3Ln?Z!zu-|H+\Ԫ3n!˚?Q)5 oiemF;ޅ82lp\(c XIϥE /属|iYS}2󶙐&YF'aꝆP³GɥkQ܎da/OO\âI@CG5$Dz$L5] ЛH0%kW`(+o=b Ҍ_Wl Zأ2KDxvku hSG\ǽ&RCn׈[$n>pbs_ tYùGoط) XΎGu[SfϬDO<5@ 5 &_(2PS#Fvh խ͏tFKvR~NmooS6&8{{CG޼˦}{[6{хF"vgF㹎q>*t_ KzR<,0atNr2kBί}Em[O#2~ʕ0A2R'vlN܊U/A8AN2&y8n/]g(d TȺFvkGxU2ZѼo삓l&Z5x QIjk^LóI ;𖏝2)bNYZRAkَ!i%ݫ= ?DM4rk7e (܏k9wv9&jNn Jڦ>jEfk~ḅJ#竌KդŪ>E '&O:6G׺V \^1L+WD~a {,0X Y|~iH~W:xu;!dsp49A{uh`ˑAK8`)z&lYlGP|7y5 F18c6k>m8C = aSIl k '$B/oܗ &TU ݞjjjW؈vDF()M$H<yS5'BaHlb42Y@NDdO#^HRyl?s|J95y2A$ ]08a< .l{kFlb|P1f.E0 [qi3SKA8!#"i)1/(ʚ#50g"|nwr;Bz2o<)swF/VA渮GlI6eZsXHx7po$9y!Yo sbvAox-ZpT -}Ҹ2?c4 75J7΃(|Cj5)gcj Rbbx,ζ ),bͦR(<_.1Wv'y+(LyPT!ߗY4S>zSWs.UJ5Ua.pBQEzhis8h5ڒl#/t2EsV>n+*;<8MP6z bAZ1K7'K"ĄYra={Z2'ƇkĜmz(<}ѼL_9kO# "@r hxѴ; 'Jn_ ܼ_Xn^6<5A؍>5gp-ܟJ/%Dnw, 'O8 WS(&CSE:BmdC7'}jhN ei+QUkved[hQI /g>f(@ӉP.yvFgCU}[B}Wg8DQx+ΧwXez"(->!rGA7xƫ鹃1DJoiH|ys'K;dVҋ]4f4B%3)`(Vf>o޸=ՊQ;l0RDL}ޮ3Ssa. khܦ 'cȭonCJ:bPSD~31[L 7C*9K!x¾@m)`)g}e s''GڕqU*4G w$^j;)%+k$ gw,jȃ ZR4 e;AR$I9af`͑Z}C>ٮ^ bJ ½ζ̶MሁZ=ſcXT#b~_uuO勝 -7_JnscVgk~ޑ (㋛3A%0uz beBv.˾3yj4AM*I?e\9Ä]ujw\R7Ϸ5)yci'EJRGb}@$I4ۂ AsQ=]!cPӰ HKw$KG߄1A0z".oQ!@%4TEl1b`/ۚ{ѝL2[O7 JJqmJ"5Ze~j#z?D&)/;br'vU8ôX3zT݅`D p+NkdD6s:iwx.~ 9Z߈Hz*M3%+(FX&ֿF!%.q͵svf@UWЮ6L-C̒8V#祔6?'ݼF ~FKn/ql$ehVZNbΞ 'T9In(7c }囮~@Q/&fV#efeN--s͘JasرnIdKDhfI륍{%>UGtZ[ sC%kBLLGBJFF6FZ1D˒"\HA^Ō ~5 \O.4S=#>uou&؋.\݇!vi޼"<%L & !oV\>H;USμBlJcbpm2="\n;[|gW^BrI5B\ ߆|?;Rm+ʔj QP:>x#$4I!5\H뗨\2 Q)c73rlwhjXʺrK*t Okڙom/aT`{)1F{M$ ՛c\wP{K0TVfaa\MCxLjȋܝ _ CW4 oAJX5f9Zp== #;VpвKKۖ)(?r0Kk&Вg`?AP10ߖ3-hSF'kȭp$2-l{gu6n,RE{LxWMgjBLr'RBB/cik+*>i'l&wE`L- w2`6ӇՉoJ36d#W!! Jl?>@T%ȕA0iDo/M[qWB'$WzE:;XdM|9O|9gؼ ûE^^h@IW6A,gTNhhFmR2{_YT28!JɫK:_\ºUU~b.}Ui'_Y~ODww}+SUMwIR~[Ȉf,"}<7Hp-/Z\pMj~!pD;s 'gC9~KMyW.  'eZF1񙐾meЗV ZSU6 }%[nxIxJƅwu?ETsk'NxߍPn`<:;ztU nQ.hx9kveG_,Dٿj ֶy-/Ƅh<5x*AǼy\A5uPff/9U&h=ڱ;JywY4y1hIY,i9>QF70ծ}ݍ/ I(v,/E }3s=;/rgb٪BB~;{F 4i1ޱzlr>P}KsrU8 }ɻ֦_J+Qj)?XTl$XI u RAm*'6L/$s&46' ("iv7[.dުi$bL fv(?ŭRzfX+_Ir.cœAZE?Mȋv 0 1JDXNq+HPaWt-"?*_zH(c ) 4΀VA7"i O^hWXv3^oMc_X>{gA^9f|h߽ˎcs~ҹ&5d/@Р򭰞t;&}\R4T2Lh~M==qҬZ"4nNW gN'xn?rs}rl^R#unM BKT݀]x) c*J-p-YXT&pY܊U-xp (vC8C+&NzW3konK7P &Œo yGBbwH)e+_aW-6CI~t(1a^>HjhֲeFV$bϭk:N@3'(oRe.U)M@HTfL:%ϬB@YDҟ,VC`:O:F=^$4SEohGdN9gX5njin 7.GZ'Gh?A`BT[0 co,hl~74u.#N)s5bSd<J}iQ$?@oDE}o1 yxJLك~g텿Z2Ǹ[$H 0Pرu6x3+~&`Ԁ^9wڱ "cdp\2|:J1ˆۊ#6+FwK.v3b '!ߚ\5J" l㝥|\T۾ =q$-hmShݭ@7XVl*e"St1J6t7'氧>)G $x#_w +L+_]pY jmH< Q΄ǘkyx8,yk.4 Mcn  PF*G[A 355q:YA9~aSY`~l&/sR+R=]͖u]+s_讓q[R e+ɚ/pn7 L HA{ꥰMy,~Sx + MC6$o{#Y{0/1${-x0#S܍imudK5͞dMt$96X9;D>}]٫K< q%}fPn3KYw t(ߺ7jsϫ! ?!x1ǑvG5̪2˚? +V㲿pp_UN︄ln_x˒?3qP~8k^ցT9L֢u)^Dp놣=gb{rRGc@'0bL)%SW?'mP@$;vK9 '~`vE3j@ p/Qo,Vܙ}X`]뛪B.]scfif:)*1\(e9>TR_ǿꂵ{ͨMd;IzGy<Ԕ?˘"Z%Q^ogx%ڪ+ 5|o'XO75*f28iȃkIo7_jjcꯚck71Yvꪔ%r\Ux Ջs91y{To@o pZG_HҞ ]2+SQ`; 8/$ kt{Fl):%쬼C|}5 Ђ}),KK!hoQa%ӣ3PaU`i @< /R9˓,C"_P N^Dvtw>uk$U`E/2Cdb$ZNGsGU~`qȎ0cM&65"ZP6S^PQoS*qbv%R="]>N^G"bx^ɒm΄݊ZC'Ru`mЩ5?R+s_d8FkSϋ^5E}!s~UyҘCT8kS}[gєbzLEY斘M.K )_24+(ԘxҒp6qƛH+UBu!Mƭ0Дԃ6uǫGMZp- '2&>ħw6Y{'/>Jv+ |U>ek#>V U7*CE}0;Bոm,\S,1NEm5:LoʠEmF{ZLu6`Chݕ3#,wwC[b_BcTv|9QƇ0)p0|kaÓ@Mck0uOf< hv˛ʱ"n\;ཱི1zk'+x/"}^`JYCVv @ g|@'d4)5O6%2ާ:0U AEi!df@'8ƸS8i1(CP(ӛ2'*U!Jad{&ɄlT?t5Ƞ0nqXt S$&ґG&# 5V%AN\F%΀)X &ȡ̺V|T ([Kؿ]g#~ecAЈ>!0ˬ|iI[\}#e2軞hܻ?A%L\ЂqOXX+1!fhvyL#;<[zV&BTXI>\]>ۇQ_]Y唦as{ ̺X[2ܻx*q5u'^M鱖SPo)cmQ'Kzco0 !_Y-OReA%W{w!Bϣ۩ϖxbcW wW iӕ 3]?N- s(SZ"hBtH J _ٶ= 9L+  1eD;Ao !h BXI+ XZRDΘ+6+5fC[ jo׾ϻo P3㒞M>e_,-7^PJ~k9aU=C ߄6:ѷ9w%0yC$yRS]q 4aQ>6-GU0{粥ʤN0!mLK UR !?ZvӴS.X/XC_J͋nhÆczhOmb>(]/ ܿPJi{oV=i'+6ChZnGN;<جИآ?Q?_ ے͟];..9tiƏL[-Xۜi60>l氻)%n=}lK<pz ]R?BڱgM%taEijO@jKg$'RofDR t'54(7z\jӵհ3D.u˲G.NPݝ-97J}~sC @xX 4qd1tKfI3ƀ+t UQo گ0$T0;~{-UG): QXhlt @8GȢՃXPŪ ljǺ{Bsrn #"* {_60oW'|p*Uu7>))`33Gҝ н; 0#g{!fPUUi(qO4[DOqߢf$7nVBZ=qůe͉ r.ff԰5_|%]z, Oi!Neg@݀{OsSG$:.VCnj47gW: a tV 0u$l# a#3 'S[ְ,5E:`ŏFos-ZИ}]n?b"L1RfD%[5)R:#Zsݒ=+L'0r z2Xv$VPmg,M^nM GRirKi_?qg0oɮ n+zġy@!x3;_bL^~B+lCݡMшyr>?7TMvL9)pOA_UcEBd; @1HAn PP0\ᄖK64둫a+chC1K]^B y,$psTpU[NJ8O Fk~!)ͶʼCsik^v)ivԛXHFS4Oi)ua78EG\iۺaW|J:acܵ?h r%PқQXD?鏲[yW\'+?p'I*L=}8+ZkXQC xX"$>Hl~Ѥ 8?P \z[Ng&l:/T5-׸]9) UC!a⸈skZhb+Ag O.\oO:f2b$}e$zU,>o] @]b{vO?b1W+BraıOsL]I3S-ijW41US#K+ F1-o;6b(ߟ)]:О:B>"Q+ XeHF?1E;Z foQ*&Oell!V).@C_&g< q^Blfȑ` '26%rKBIFMFkbyq*4PC9s`= <{BIRD\DuT}&]Z]NvA+ӗvTds2uU^/q;b0ACaz+91Xt|8P]gedžD ݊&V<qs%(V+0qF-ôL١sZ52$y,Q24A[qpds՝y+d]N94Ҷ/J#R&~``w~_p}ʯrz:uEhdF}%' [8-pLvAc!0NPV-J Ȗ~LJ =mja?I]Q.v`FNo?*ū]lI}|){2t+4Fzt^}d/co}vZa(k+X.rɍc* sgcWX1s@%kbulxd5-oZ4BPYiWbߓzg; >_Qł ꙡLҁR)͎0I~B!2wރALN=+ޮu(b&ߟ;v%>gdKmңd̈3gVVn֊*2(_|8GG56x4{w {Dge4"V ulq86VعLoYf4NY@p]hMo&Z{ٹ$#|^LuVKrj4+2Lt zPI3?,W#vVPN@#@řhoPEVOF5^b>"/y1Wԭm#iB( ۞/{ *}ZoƲC&]I)|5ڞU{Wgӓ`!Êbɐ+Xr vfs>4 WX\Z $Lf؜KiYN_5DPdB8YddaD)WHIhtuf/0dM;ktla0.00i&[:l qN.}r8{IY|.HYAܶ.<0#px+HNżTG9 wC7˩85N[}IneDip%+Nk#g{J\Gʵ#Yx^Yi^jp(ǿ ._ץySQPX?$"#E)4AQϿÑz`篫K&Ce>(N z,(Yxp)c KOJ̅Iҹ2+9EW`HVGVRxY%ڵm(ԩ0o-65}8aSnΐv2|+Z¨:lJ\Ҡsʂ=hIqjE#U)BQvy wsG6<iZoF^I+_'"gF dڟO&4MM׷)}j.x@N ՇY5QWImJh]i~d N.:z_ TVw%ȎlQJi՟hF|S8x&Rz8|y?Tf8rcCt_oT9g\P>DXhuѸ 5)8k,9)w[ z[`* [7o.(Gǝl@}f*@R!:#dBdPb֐\fckfYf5/ax9J*M JO:xBbG6(ttqnFvlG B^֐1+%t/]̌ HWIHX:WnrgJNSGD^yjoޑ9nm$1nhH7݄Δ{vn+y~N3NO iesy†sUF'.ei׆Z/4ҵ΋c Ka%0 aNjOg Khnw\PL>Ȼ'%y.`9x4u5Q8aGn9vunB;~>5JNb_~{!~_{ӱ孛^%?,DǼX2<$~G.,2Yd8{-ȩ^p{LҷOIX;fz94d&2"G&ka= (Πn֋RޔM?aWfB}[@u3+Kک";mTq\h<kE Л50H ~+2u$;ȵh!wnl$!(2QRY "PגpN55|Gz3h Ҳr/ ea?oL#>~Jn; 3|hUk曛h2>V,X댋~~u% rOF?T sH /w@\iOye$-o| <Ճ8y kBiSǥzc~.?8 Oz"[rސ?7Ų{+cYϮKkv݂B^iX63-l6y֥yS{mL$wr3aPGKֽ^ZlmJM"4ij7U PhK CIR%[Sٯw㽺Τll^-m?[0 -hXi'GX!0aŇ܂j#y;-mX@Dɠ M`}^XDH%ՆKB} mʛӆI˫eL`RvY4^mJΊf0JW 6{|2عgh4`7UsUL0-؅\-kiaz-mmLPt]d?ۯz ۵XDU2$I|A #E5.my )UyADư'"ÖEG[\wyUӖ3pgVBQ:LC8hHi.uy $Bԃ| m=mz"ހb+r6|)F|y'(*\ic+ p2/\^C+Cޏ^(b]H^f/nlf)]|jO@k?/}@#6*'y]AnN,jl4:RuHAbQs+ BR0M\Mۃ/7 UC 27[HʙB0df "UvB߼cVE Uf7ah%bgE 4~/h娝 (!S]?!t@}<@: so'JcSw:L=6vч{IϮzC.6m:"DL>m{3X\H}GFB_Rh6^hV5V" F]#]E3λs^,ڃb2+F {=b7`ā+AXDS\(4I]_/kר˼ϩΎ.sfz$[Z]o^;~%ԭ{HE| /;{&p7Zʥaё"a kBe^<$B/mUR @TtoI;Tc7$=ߙ41vq FÌЮ9Hw+.c`HQjM`9E`R`ȃ2,H2ܲV|Ib3=>m$8 2i ם?͸Ҿ~+I5o<=+驲 /Jj`Ї+@`/ø*EY>RW P63sapd2vc3Je1/6}o \tB']{s- '3NJҶ!m*QYe^jI k]rd&?X/4-輤}NŚ)cd߄ʄxI\_ejGP+6sQ* [+E^X l'ޫ=VFM|1$ EMv>4~ mH" sV >?2AvN!Q-Oθ>O{:xL6irka})q'#eOD\eZ]{_8 |r_p9}+?:ߣ<$gO¤{J Ȱ R'%7 h77_@dsضuYk]/٘)Bt^TWe.Dhޢz4Y5@v)9!EwsѬ~mvP)D-xkHG7([Vy!y bAS@&@Ǩ)&_ʻc]Le5rYȘnd^Eͩ7%b3T7,7= gNa񞕃^&_UH\HInvAKsAaqp,#5 aFc-@߀)gCYB  Ro{`g,;mqla%pٚwfaYtbP؊% ϩ FMWxxYSOd߃&(98}~֔Cx@ѢQw/ PsuYshaI _3\' M/\qeҊ6~h[@xn2n V/5Vb|%J_*_ 4O١n`U؇竪ǹpؙɄkV$&elP"JLFꄰ c!〾mKS9p[3WІq Pwj|LsC gLd縒ٻ @vpupKEmoLdYbBD#Aɋ=eə0"_FٟA$1B%l$r }>}Nܦ7cu4v-ppSwqVJ?d#$7#6bG?Ea[UH20xsͪu]F9kHݱesl+^L? pL1yИrXԎ}ؗwmxFNeiZ?i2A.Pw\*il`E{:C4Cu$Ҫ{`خU f15Uf|å lE :]ݤ̇Cu*V2yv{#e{Y{\WXm+ѿ(?%?b݋/%8XJ6Bg:Uޔ>`=SqFТU=} yG7"ΪP?2ۄɰ7j%6_{(u bLAWn|0f\_Z9.PIIFh!D&5 f ¦hJ.K-E FS3*?uLP(]yWLdӳ5+駳ᔁrLD3e&VFߩWlVs,7OlYd7CuŜ>Lsqwdr#ҫ\Q,# hǯ =} Li;(|%uyybs~vEf~Yj-ҠĩWFB]6A$-)W! VѭV<0,;PǺg'Erl~ T~_bPd\GA6\< rJg[&J+ <$R Z@|fD­\36jˍY-[$Fu׿Z:W_E 1CABP? (LRyM$+#8E&#zʻT*lH_7f=ueցXV#v 熐d Ĭ*hϽ}!\X3ZK&^1XˠvJNU* 8lv?.~ |Eu KrfP+]:=ЅLl`A1Ф(F9qv?itzŔE_0&&X*_H> j'? Ku2IK1cHPzQAG@S`7oXB,B~UnVD5ba_ fA(!\ OCMNT6%䀇M\ЭyUtkme=-J>Ζ[3킦]|-rk|T&ЕqZ~k,&$6z1+Er(n礹%`EIS+aZD }ۧ4;ll^_DŽ[M` "kt\' h5gH|Ycn1"wadIhq֊Cbj8t`I Y8Kr!mѨ 2 Ἣ5n| =O>OZ@Ϣ`TeHt| x*lgG(tj:TBzS19FZzzip&(߆Nb@-Q9]~7'cNvyN&Cjeu9S^xV9cwX3i{#eB?yh, DF(8Z7fe:~(?Oń}|hqRi· DoHv-ng }C$^WSY,[Img1yyKd %@E$K})oϏd'*xw5fڸnb`.0CQn0(mk, U5Q@Ov3"w?B&TM@6оx^g# FI5|>V0A-o8q[۹ a *zKwk13S߽ p įW-'JӳtLې}<# bcyk0KTGVG)>^"fkLB">zΪknrZf`1UϏ?,3EM;ڮ.;<}‘P&i@f#ADy|=6`(9 ێ1_9ܐ9H{h:i8i՜ u|_&vy((z+-41pꠁI-zXDTǚ:d_bQC˻]^id(RW =R;_Du Ӈ'$`Jwy3yud/4 T |0XO5N^6n 4@M+)'Bnݐ3$aAq\!,I 0ιf0!P(mĐ%$J] M,VM/Y9Ͳ#Dq3eTI559ռ2Sji/y@+0x?A7E׎l/ڮ εo*oM\rmOiy$c+(*$a um&h6|T; 1q B8&:쎹`8!0vSO8' j4^JzRwn%$I Y#cwUu͛IЂcg 45HҥnX<|,ѝ> U,Qz1LȈU )2J#B2~CȚ+ 71U^ґE^mǢYuȥ#VYag+V/q3߯^RWJ௙1 繄Y0%7 *Ba+\,4 #AhbC߳+z{%ɵ7CЌ ?_ړhbo]"(*h8.|a//e 2"_IIBj ߥ@Y\J4 Ms[V`VZgWV%;r9ơO ¨+JJz#k $Jl1;/`HTkV5d& /wI3gK{ZX ͇1= -GیAV|kAB὚mwi )0!& #ܡ&F)?zfCu ( J` fbJPQ4.En foo*=r4u<~ͯ#\8o]NB~䢤q]Hm.5p_  紅#D0r?)ζ E"SrV։!Ӥo9D/QSsI⋶w?,q~^r.{'pٺqs/;7;UmV#uġ幙9-:焾Wme$ %D}laBQ2ɋ@ܜ z"yTo#1|DR?j]!_25oeh,Ty߭8߷BL#~AY&N*퓵Q)cgtJO,sΓ}m'!FPWctɌ)' oC"\V/>}^9f-׾ 붣I;~W>CVyV}@6BhlOvQGk/5.=vz$t9Tdr}=#WI)*'ܬ 1$鹹-{FadȯUe.x+^m̘60)p_ƙu%l@dePnh?۟,w7T v꫱}յ_zZM{>4C1:w[7.pՉMdzoJay.CZuB1 %2l%ܡ|amʶUu}Æn:~҆D3}٦<*rkoѰHd5hdicIiV,P DA V"Jw| zF"gs}-l. `eM_8s8`e@ l.2Zn{;HiD:H(` o^/o=@9fm}x!=>xik`|&)^w+y` Gn`KfA``>OU d_EڨG#|ZÆґmk߷.8ac|,ΐ|(ShI ܀Z% jy.n̠4,e@}@A s v m߄ZQٖp6'CG"#^l,eJ4b#9."[M`jɃ0tʈalݴ?hM r}κ85C3d`oW0JA%N+-@|b& !*G"YOh{}avRd~TA4q)wp #ogH~94mar8ŒgC&M!%DՀN5tvoZ`%~ hKU(㗫9j L9o%Yl^R(IH>ns;@,$V1g \XWw}=>>7lp>v}wcnUԠQDx(]Ofqwkٽsl,{tmr2qM GJu[ vk 俬ۯ5$.nwao&],M9h|70 7{(?aK#<5 [1q8h<Q[uR<2A2sSSLw-t">^A$!$M8ٿߐ©ao|~.ӠTa6D 1CjUW+N2C8&?<-MeyS4fH b%q ?N `وFϙKaH)(.J( qsLc5oNGgpXpM|oޖZLf]ҕP9VQ+Dwcl`EʻbPO*Hmy~m+e >"I"}\lim_7Ma4%YQ4V)41H$E柦@]!-di*F ZXq  QknGk%BHSa4cTS2-ba =)xmoF~α_I.x;7Xa Z (oӕ՗OtxXNc ; Pğ!莵PyȺA;ĺЂ? uC܎O8 *hh9r &ұߵ~EWH|.~>.SS؏ƾ;$E*,I22 F#4eJBHitV)+N1 Q_Ϡ֍:p;emu~gr>{z|׈+{\ .28i/3_:Z`fX[qS~Qɰdq>k[S^R &!o:N]> DHKo=tEZI} v[+,>|<$2+o/p|{@P2AņxjH5J-kx17s:q|04#]S*GWAO ^](|@kEF@0%-\ >~­'|4&,2Xf)FEks֬-T5Ĩw{p l\t6B5dm7gf +G~{ &M^ookank8Eʔ4,X{e.faҠmҮ![l05\>L vlZUYRݶs_R,{e񌌢ۚ'UDaLD.,k+*,}yHr ̢!”"Mķ(O>:W0 "}ћUCưN.e p7 6_N>64O1EJvK%D?E{acw^4-{nԂ:/.tp ƸH2niݲ+7-=d:#{XmX L쾀 "~p1~B~:7tC8; _  dtMcsݥ /y.&@#5"Tx ?wYM‚h?6 \%RDX'~O^7 +3_㍬a8RhP' B&]eo|^n轹(?|I%ALs׎xDT?^.7igq|;;Nj4"7-4A\1sk3ڵE'CCY2N{GW E rYIv; nT1/D#1n l15tS3XCR"4Ӈ.*h:q8)Ĭ\.ކ52Oi. cV4'mtDH.#/A̬a,Ɲ%Es T+_s՚1|.bsMtdsnp&6@l3t%=iv,D/.>0nCehix';g5bbe/V֧bjَLv\yiEӽ\2m4O>Uu?2 RsP??XK2 UF۲oMݹjn1RڑWofFh4.>^%7|ag*%X܆wKM]: +_Q94~, 91S42 lhKA(֟DcCC3N"[;(5VJfLefCGj19Y{hwԺ~#<ܗЮ\!):lO!IïC>W̤b<%GTQ\pѣH6=k9AՍUFj&$v S\ot]Cypw'5 \0ؔ[g*G}Ìٕa\DjM-$s LoU 5جHuR豈+jm-⡴E7R jh#dI\vәfrElȌP{4^88oH|Im(lsq/ŷq/ pp!UEïndBjzKZ i%8bC/-]hVkK%qm5v!7a1`G} yx^ "6~Om:B {iEIRy"rhW}wjۼu͜z.\$= @`P1>~u/:mY̲Ew5'͐|=Vlon $Ih_6}xe9Mȅn ʂV:|M`×CtÍk̅;. R^w3YYLxz L!"J |&ZHpQe@^t M Q]'2(?[brapJ1P0! *&2ωpjYE7V$9?t#Qv0#xM,ޏ2X Zk\D?'jx*5fͧCQGd, D+ ȟj&5ԇr2>@Ҭ-"o*͟h\-T4:!7E aجiSG@IКE$yaĹ¿<z曗1JHx ؉4 I m(NE'G 72uS;E9&ZBSFU__Bx?)_H]ږy(Uy~vL@"-=u7l)Y寕<7MA~%sl4[FkätGYٻ0/ VWP1okv[ZE[+|xSֳwEC[CXۤtmkWQ|'$Jb\ݘ+ZO h)yR qq]|1?TȁUFgYrta;a o_nN]t lK"JjXB< rw՜ *$*BH,W;sjO^3zNnK<6^3iN*flc m0IIdx/_ ttd 0@2dhH/k]ҡOW%6kX gn1g6@xT7ɋ^,~IL sz Ԡ"'>o7νE)g-gr7);7U!]J"astjP mk&cߏ#D`{j՝DQ.ܻW އv&24DSVΠǟTKcOAcA1?|ĺV;(2H)]tܟϥ멚`H_}a!>-g"}T!q?@>j;D6,栲eXpZX \{fA` |X%DY27"M5c!HвuAj:m2'x:[UJU(ob壔ĺmP 8hk5io3{%kn>* nߜَ+HzUg򧔇 >2N՜ E?v<`Oje_M>~>xWvDpp2D v SAOYrBIi . vb1:܋l|FgaVT|#e:ЏVw`o;/;>@[ABԧEdt"OnxJ |`&uGW5֮C.HFtM Qp]rtvBpq\XtAϕ&s8Mc Ja^}9g Vd) 5QRU.j5a);{zFNh >Zv}uߟYղ\9l#jh=L'tJ\ORj=FcKvt1^BnO6I GWә2' V6SI y!c&RW8eRP;7MRFiVx҄Ja@K,97+l-~jV%csO2l(qg7: E{,th_;k'QS,/͂r'lCNA|A%F:/R A%a# WWUjݯkͮnyHj[E'q)-LS=u4(b`Bm͸JW_T5M\|(":M UfScބz8{4A= Wcan E(G<2V4 bXN3G\[^7fCJ7`;q9ÒehВSV3~J-zpZnTk;M9 ܬV[St{U~4*kn:UO|qSɍvȻ榃o$wQf ir 袀IS%x Ѓ=J㲬=CKib~L~6R)>7ag01Y' *BiAZOζ)mhD@b*[{%tO.rw3"%wߜ݉@\ Lx`*s:v!S9C0› у{^MQoWB!9{4kcO'Y y ar]>4o`Z c#m'|aAx¹p\\0IYRhHQxosHv8`|Q[Or÷ŸV%>[ U I[6 CS2t5H+f͏!CvwOpDwQ,BRCnA&Tͧopzʼn%Ν#ۑQU8 :_E##?sG/2=3[TIjz3J}4?!}c&0{œ4^_(ĕ $PN?f<$T^*U6ͳy|7#?UܨgۜA!$]kf~ lT?R L ve53}| es@p&V"7= .*92jƊ.Ξ`Oer ]Ċv,.fhELM#eT^% ˷.qi+= ;v%!) VɷTZmR(*)b~Zg/jH Iv ?'lS 7 RT{/0pi#p h ('Mev+-L˸syծs7/-+闬`w+OzqŌ VUGW:T#BC#I qw|0ӰR#`0&(ndf|W',OU~;'fE_|M)Tth%e:g_ắTT_:$[H52k& Nʈn to{ZW]>T@+2˻;)c]& B3}EVKQn'9(̸qk-0;8P4oޔ;XXnZe^UkZCvsa$[@Z:k:_$xCC+$ڍvK`lμ.ACx(8'IJPݔ/G)?Q`8/0Ge#BF}q@g0+y!S #u.(Ȩ^]``C[;83$i*Cci ZW[ /')m-9 i/_⤏@(}[0o8v9ezlwO}s؞EҦn?³ Ri/ _ &He WhN݀EN@ZƧĩF㣃/@0(úڷkY.Jyt;JCFD6mnpKCo䷌kJ(RT{`sH(xB/ATp_W(d~@SN2 ͦAbZ;+:4&*?k)oθ$wR,UȊ1zNLp5 #{ONb_6%qU ON{SXgtEEbLܼSy ;}ӑ07\Kkp9~}ˬ㣧cCQ+3nptJ`lSFD ȡ ^j^Pd3q 4We-R6xs^$DEJ1~dE2榈5~3 >z`t8F*UWMwxC2f ֡[?\H:JK/(w^ޠ9F@d^В (:ݮa1)xkGb6.r %s , quP[?d;@x&čGL3X,`_5?< ۭrBESFU53D`Q3P|duK Bolnl=Ww8}japWs2R\acn׭Cz&N%23Ͳ {?;ttM[Ky{٢^Css8 vg#>W$(dپ1UO,},PR0(]݈9@Df 5vu7tWj屮,Fvv Xx/?fa"*+[C2lj$EW\Dp<uN0du9>JAM(GO]ѵ6Ec7 E2Wy[j g*(5 PWr~L"'x{Onq?+UNi&S;\wᗟmЁl]>̀rl|5]ϔBB:QE+2Ĭ%(w1nP::~FX4cBH\Xp[G8z\UDEoy1O"]iV|N!eBrwPoyu/Zੀ4Hbw$> o8>G?# 8'?Gj) >]sB˩# 9L2R+X8ɱLeNW RYvHFS@so ܲƍ޳eԎu$ }d$ױu&\qfbETec 217\09ЩV i|23SLKIwϢβ*UGMxcWLJc/ gJֻGRFKہs3/8JGDqo!HY5x#gڰ PM 5[]#Ҋ EM50OG$?l̟{ WUˬIGKKw>&BHu0/BGx ~>yLN.tYk;c3wu,ox33bE&[TwDT#d'<ȟ2`pDǕ^ܓ-6h'D@3iߩt`cEPOF) z06E@V1$ SG%Ǵޅ2}@^͹݋GGsg#] ܺw^ 4+fr[d G23,B؅hF$P+%v$O?*S\%9e,7)Z$ES{^~ViP,)V9 N}Fs۝ͣUQB "d ɤ 1'q0]/i-uag)GlF8l^-{.thfEik}> Q+:2iEyfJlL'FG␸(R4GED_L4eHKi@7QrSF2H>*[oE RB`V.&5wC8p?#i>zC289#ʆ3GJ-g>Cu X/b=}9ѿ$UG] R'Q};pƦnYxHxHЩǖ#_ \EY26'-@Lh6ÿ8Qrs/vq,ܛX36S!nfҐjDƯ?*uDF4Q+&HxOEb D=I ۭX*>34tMǸ:3:@6(b|+=W*c.|ϛ{)ǶC#)#"h'uhDGJ}BCĢŮDB&p@я!z ;1OylOYEkKT#a#m$Lb9o'rxQb0ؓ@y+#jg; }ҦS_?ba! gvZ;O7.Ij,x*8SRĊ &%*§udaφ ˑoMkѽqF.G>&ĞF+h|wd%y-UU) 3 T@s;&#yy? }ԈƜ(odK H5n vexEU f< {^3 J%.g\R&j׶&Kd"O:g Of wA^x ,jԈu0h̢i'0 hU,n'reCh^[Rem)&޿sQrqH7 D!T,pƸF{x Os}))DX@%fE):EV^/x&7,\˾5`Rgׁ`cO3a8`L#Zl< 0!+aEWg^0apF|\#F5Q0=RǬj5S[RVPvq:[c&'}]ם_vJ?; GGǘhVD `V4Zqƃ˓yAZ 7n@_>̱ ['H%S æ`X.0$k3G+4lMiX$'Uy]uo;/\ hgqN$!h=U2nEンfb'd^nNJqyAu+H.]O9 +4$#_=Qm>Un8Z5|?q>2ih$q-9Gj)l9!UOR4]~1Vd(nde?SW,.xg?Ƽ^io#Tӿ9{{ƹ-Y1Q6޿NAbt1wCRBW[Ưh7je帔bxX+`3a~JPR=599%FnN!oYY?d4ȋRM`i_Jdi׾ Dg+J*s$I jRG"{ VS3aN' 9QC-qbOJV.}ӲKa1Z73'pIw9T| 94x)H%sXw:"srV| z+`Eh]7+ap-QR=6X,;o޽7ݺϏ`1Z3nDsIH ɌOö2^Ҫ$*Ed'7^Wʔ8eCvV*lb_0LҼ \ZzB|2CMci)5\ 3k[zUXXUt “hqSv5h1ủӃМTf3Ɇ蜦FɤKP켣yEv=kTWZ4dY>{UǁXJra}ԛ_mғM#r"*AԑV:.%W(z6HG9L6zlc;p0s#B!pxU?M"vsw2_F|`I8QI <ўk[j ſ~;ё.Y߿7򠮕qF e3@!.5]V(\H[$x`cK-7Osޱ1䡦Ԗ Qb̐I䓛~`R:dYTu@.CJ},khBcOF⏣îMߵV%W]z}\3}IVodpq`M;Q\ @;q.GɈfNq Ps₈&- B̬ 3蛮l/O#'~';F"@NIFOV$?5>;iߣ!V۱K1OpCD#WQ@nL㮏⒵a$曄$x2.hKq:d2 UP3$Y yKˇU^uQłigJP743w^q@nF]G0,R$'eLDԳw3l0o}miTH_H4HŚ:2F{nX0o$S.LCˎдR6X֢W_DtOԟfhsxKt s wOټuG+sd'tjf#貨ms6SѤ9i1 龏HiXG544%5 j]]=lA3c7)glD&\7 Nz4N]LGieX5< V0,{#_:;6% PmOD8Q0a(1l~QɧL3l-FyPIZ,D8S3:'@hGyw*DiA++j=gj4o.֥%]cAy^iCJ/t4.m2y)[Y})"bnѕ%>p&W* ߛQUD᝷c[A;TEjPtDU0(Bˑ)R56_pGw.ۡQGkol'ХIiR>K呐>-?(8 Ir/FVfq"h2+jG#}̷M{Ϥ]R؄C+((pBf6!TL ϴjm%6[9Q ى,l03k{=Kz73$ }Ƿ{Txey%Ndzȝоe .2M D$OA \|ꃓ`@3uJDiâCoLjs[AkSι@rieVVsP{2L#ũ[$箯}L K a 7;J19wf6J&>~Q,BSS,[6u]J#bDgv=J5D/[L۟M<EDpn#R|J_ c$_[T+{S{v.:*T]ݸtvK،Sצ#{ 6ؓ)!3oaiC X9gUhP 9*[JD '"և2Z i)PK&I#b;ggPMeн'3PW̆ ԕRi53jJs록Rp5ZUH0&T~}gQ ^'1!#EHgpQ!n0qٶ6Ў,ٴX VR.mrYK( (ܩjFO~ "VJ;NC /P,tn %\7VoCޘ4-]Z#w)Uq<^6+;/~t'^.i?'K@AQu0d/n=A hSv7*#zP<)-(D$ r7"Doq%WB&~{Q&g C)? g ~L"z}D*+jw<&Ɠ9L15Ib{n!0)ƈ`GIr^ےid%B!9#+מB8(s鹏ذ7vDfN2yMZc(Sh}[kDǮ Bg30:"VEZsQ*H`Nr2}(=o2;#GeWaHdO@TX|Pi$7|ncV/]ģF? #pgjNx}6S{^,/j%S)b h1o&,pR'NxfL?\.kBPj=FTOٝ)}aYRC/ w?,wv) lsqF9DhDG` KVz cNaX,n3 NV%?{G77 mHYɫYK*aapKncmjʔ=1E9x)KT:n|``()"_l. wYi6@( ff9gfp#?r+Mcbgv3Sx-XLFIhvV@ъ,R:'8'XeFh[[o2?#O"k;Tq9ł)BlkeovlVO&ɍ:woLC ё7]e}׃Q 'BYw`jA/*e.&n(\D"b ͟B|&xf Ksf!p"t>Asw5fZ _$]km= ,b[zojD3 c'Rk&r2>Y1Q52,bFSE*Q?{uBniZLJp)NʪgP&pOT)m,s"'scҷp|nxB_.u82%Z!yٚw3?si~u|*t覷Y0&}.qV 'N5FF/yEx.N ?'gewܜ<Ï2mv r1y@ ִŻ(QSϝk7>yYcT/|1v:.dl!0 M){t1ǁ&J>o~DbʠDB?v-9_Bo |U!`dx*H0ѱ/-51ӗޝc2=&7wNU(UG|&r;|?#9,H"G/%v_Gmf412^'=a "C̞u ސ˿tZAU+2}ڱZ`2L2B>FYe r"͜QsT?+o SjtN7=!"2FJhԃlm) [ު2P9RnүQ6a.~ ]s_R ?p^Oxaΰ1'Ȭ .=T_%bAI3سkYGs4Rrnssl1>´+@`𭧥<U5'/˷[:9̋zy3_KڷЙqzAP21u&iЃYIZN#`'$&x)| Wq i^v>a(FЛUKPv^e4I_quյ^6b5rLԆ%+`60WPOXP X/F?4#J7̎[q^̘#!Ơ~`nȰMŘ#uE|c+-MuNl7Wyv42\0 ԖO4'Lh`wj/MOhԅMUz{,F7Q6-bL8/^Z~(- ,Qd}T`.cﺚ*5Q9a:"n躩׵,#5\?{U ~U''a%@~ s?K k4j*ʸ>n9ƌ:Pv Z džJ_͘vwT㨹Z"+'J!XGh[s؄2JmԟX0FW)rl-*]y0o%盍j=L;X˻!6JtwZa~r ]v4!WJ]]}'C"sՂ69gĤ ;8nXW*o};u6 .@+DmDmbm'|Çc#X" T-ˌ89_< ]J)vs8nxWje``E";̅ {Z$Ղ[*-#a АI_];hI{2=?GX*]C ΅ߵ\\Z'aOqm| IU>fU"Վ ڭ9YŦ1酋