ruby2.5-rubygem-webmock-testsuite-2_3-2.3.2-lp152.2.3 >  A ]*3/=„=%)yHǐCFʽsͣ*XP%\pɏ~TCKJ"5莂<(¹ ? V>{w@\XUoYQ|ź`ZqX+]ӚJ7!ܝc*Òp9Jf"6V]ү,#Fnn_nWW'Cm"QH@/ xGrC3 +IrUMԫ558967d0af42d124a76b0c697be8a8183c517d8e4e9cd73fa8808374b25ce293a7389fdda7f07d58df8b1db62b087da7b3782d92p]*3/=„ZB3 ϣ 5SrdĊm|z8Ջm! 2R6q3J7cc]CB/p|zx-[ԝF6'-J:n/$*% CeW.kQ2GNw.~"NW:wF^=I;s";ieR\w6Շwq FmByrœfHw'^ΙF=: '6 "^_4)呴^8xwj8/u$}Sޅۇ}~Yq<8H'˱b5O@>p;Ox?Ohd(. 8 O  ThT T T T T T@TTTXl( 89T:^F= 2.3.0 Thanks to [Alex Kestner](https://github.com/akestner) * Fixed the issue with parsing query to a hash with nested array i.e. `a[][b][]=one&a[][c][]=two` Thanks to [Tim Diggins](https://github.com/timdiggins) for reporting the issue. Thanks to [Cedric Pimenta](https://github.com/cedricpim) for finding the solution. * Added a clear message on an attept to match a multipart encoded request body. WebMock does't support requests with multipart body... yet. * `WebMock.disable_net_connect` `:allow` option, provided as regexp, matches https URIs correctly. * `WebMock.disable_net_connect` `:allow` option can be set as a url string with scheme, host and port. WebMock.disable_net_connect!(:allow => 'https://www.google.pl') Thanks to [Gabriel Chaney](https://github.com/gabrieljoelc) for reporting the issue.- updated to version 1.24.2 see installed CHANGELOG.md [#]# 1.24.2 * Improve parsing of params on request Thanks to [Cedric Pimenta](https://github.com/cedricpim)- updated to version 1.24.1 see installed CHANGELOG.md [#]# 1.24.1 * HTTPClient adapter supports reading basic authentication credentials directly from Authorization header. Thanks to [Michiel Karnebeek](https://github.com/mkarnebeek) [#]# 1.24.0 * Enabled support for Curb > 0.8.6- updated to version 1.23.0 see installed CHANGELOG.md [#]# 1.23.0 * `WebMock.disable_net_connect` accepts `:allow` option with an object that responds to `#call`, receiving a `URI` object and returning a boolean: blacklist = ['google.com', 'facebook.com', 'apple.com'] allowed_sites = lambda{|uri| blacklist.none?{|site| uri.host.include?(site) } } WebMock.disable_net_connect!(:allow => allowed_sites) RestClient.get('www.example.org', '/') # ===> Allowed RestClient.get('www.facebook.com', '/') # ===> Failure RestClient.get('apple.com', '/') # ===> Failure Thanks to [Pablo Brasero](https://github.com/pablobm) * Support for HTTPClient stream responses with body chunks Thanks to [Cedric Pimenta](https://github.com/cedricpim)- updated to version 1.22.6 see installed CHANGELOG.md [#]# 1.22.6 * Fixes [issue](https://github.com/bblimke/webmock/issues/568) around WebMock restricting [Addressable](https://github.com/sporkmonger/addressable) version, based on Ruby 1.8.7 for all versions of Ruby. This change inverts that, and forces Ruby 1.8.7 users to specify in thier Gemfile an Addressable version < 2.4.0. Thanks to [PikachuEXE](https://github.com/PikachuEXE) and [Matthew Rudy Jacobs](https://github.com/matthewrudy). [#]# 1.22.5 * Fixes [bug](https://github.com/bblimke/webmock/issues/565) where WebMock tries to alias a method that is deprecated in Ruby Versions > 1.9.2 ('sysread' for class 'StringIO') Thanks to [Marcos Acosta](https://github.com/mmaa) for discovering this bug. [#]# 1.22.4 * Adds support for JSONClient (a subclass of HTTPClient) Thanks to [Andrew Kozin](https://github.com/nepalez) * Adds support for Ruby 2.3.0 Thanks to [Charles Pence](https://github.com/cpence) * Adds support for [http](https://github.com/httprb/http) versions >= 1.0.0 Thanks to [Alexey Zapparov](https://github.com/ixti) * Fixes support for Ruby 1.8.7 by restrciting Addressable version < 2.4.0 Thanks to [Matthew Rudy Jacobs](https://github.com/matthewrudy)- updated to version 1.22.3 see installed CHANGELOG.md [#]# 1.22.3 * Return "effective_url" attribute in Typhoeus::Response Thanks to [Senya](https://github.com/cmrd-senya)- updated to version 1.22.2 see installed CHANGELOG.md [#]# 1.22.2 * Fix: prevents adding an extra =true to urls with parameters without values Thanks to [David Begin](https://github.com/davidbegin)- updated to version 1.22.1 see installed CHANGELOG.md [#]# 1.22.1 * Adds Rack as a development dependency and removes require rack/utils in main lib. Thanks to [Keenan Brock](https://github.com/kbrock) [#]# 1.22.0 All the credit for preparing this release go to [David Begin](https://github.com/davidbegin)! * Adds [Manticore](https://github.com/cheald/manticore) support. Thanks to [Mike Knepper](https://github.com/mikeknep), [David Abdemoulaie](https://github.com/hobodave) * Update to Show a hash diff for requests that have stubs with a body. Thanks to [yurivm](https://github.com/yurivm) * Update to mirror Net::HTTP handling of headers as symbols * Update to ignore non-comparable-values error when sorting query values, because sorting is just a convience. Thanks to [Magne Land](https://github.com/magneland) * Covert Boolean values to Strings when using them to define the body of a request. Thanks to [Krzysztof Rygielski](https://github.com/riggy) * Fixes WebMock's parsing Multibyte characters Thanks to [Zhao Wen](https://github.com/VincentZhao) * Updates to be compatible with httpclient 2.6.0 * Converts keys from symbols to strings when for QueryMapper.to_query Thanks to [Ramon Tayag](https://github.com/ramontayag) * Restricts http.rb version to 0.7.3 for Ruby 1.8.7 * Fixes issue emulating em-http-request's handling of multiple requests. Thanks to [Matt Palmer](https://github.com/mpalmer) * WebMock requires only the necessary parts of crack to avoid pulling in safe_yaml Thanks to [Johannes Schlumberger](https://github.com/spjsschl)- updated to version 1.21.0- updated to version 1.20.4 * Fixed support for `hash_including` matcher in RSpec 3 [#]# 1.20.3 * `with` method raises error if provided without options hash and without block * `with` and `to_return` raise an error if invoked with invalid keys in options hash. [#]# 1.20.2 * WebMock provides a helpful error message if an incompatible object is given as response body. [#]# 1.20.1 * `assert_requested` and `assert_not_requested` accept `at_least_times` and `at_most_times` options * Silenced `instance variable undefined` warnings in Curb adapted. [#]# 1.20.0 * Add support for on_missing callback of Curb::Easy * Add at_least_times and at_most_times matcherslamb07 1569008171  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRST2.3.2-lp152.2.32.3.2-lp152.2.3     specacceptancecurbcurb_spec.rbcurb_spec_helper.rbem_http_requestem_http_request_spec.rbem_http_request_spec_helper.rbexconexcon_spec.rbexcon_spec_helper.rbhttp_rbhttp_rb_spec.rbhttp_rb_spec_helper.rbhttpclienthttpclient_spec.rbhttpclient_spec_helper.rbmanticoremanticore_spec.rbmanticore_spec_helper.rbnet_httpnet_http_shared.rbnet_http_spec.rbnet_http_spec_helper.rbreal_net_http_spec.rbpatronpatron_spec.rbpatron_spec_helper.rbsharedallowing_and_disabling_net_connect.rbcallbacks.rbcomplex_cross_concern_behaviors.rbenabling_and_disabling_webmock.rbprecedence_of_stubs.rbrequest_expectations.rbreturning_declared_responses.rbstubbing_requests.rbtyphoeustyphoeus_hydra_spec.rbtyphoeus_hydra_spec_helper.rbwebmock_shared.rbfixturestest.txtquality_spec.rbspec_helper.rbsupportexample_curl_output.txtfailures.rbmy_rack_app.rbnetwork_connection.rbwebmock_server.rbunitapi_spec.rberrors_spec.rbhttp_lib_adaptershttp_lib_adapter_registry_spec.rbhttp_lib_adapter_spec.rbmatchershash_including_matcher_spec.rbrack_response_spec.rbrequest_body_diff_spec.rbrequest_execution_verifier_spec.rbrequest_pattern_spec.rbrequest_registry_spec.rbrequest_signature_snippet_spec.rbrequest_signature_spec.rbrequest_stub_spec.rbresponse_spec.rbstub_registry_spec.rbstub_request_snippet_spec.rbutilhash_counter_spec.rbhash_keys_stringifier_spec.rbheaders_spec.rbjson_spec.rbquery_mapper_spec.rburi_spec.rbversion_checker_spec.rbwebmock_spec.rbtesthttp_request.rbshared_test.rbtest_helper.rbtest_webmock.rb/usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/curb//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/em_http_request//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/excon//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/http_rb//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/httpclient//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/manticore//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/net_http//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/patron//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/shared//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/acceptance/typhoeus//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/fixtures//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/support//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/http_lib_adapters//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/matchers//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/spec/unit/util//usr/lib64/ruby/gems/2.5.0/gems/webmock-2.3.2/test/-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.opensuse.org/openSUSE:Leap:15.2/standard/cf33817a010abd93547babe2070d9bbc-rubygem-webmock-2_3cpioxz5x86_64-suse-linuxdirectoryRuby script, ASCII textRuby script, UTF-8 Unicode textASCII textUTF-8 Unicode textHTML document, ASCII textRrR.+ٕ outf-888fbf55d767e9f8765990e3f310158230ad7c6eb81c5e382ebad6ab160e7394d?P7zXZ !t/?] crt:bLL "p BȘusdvð>$:K^QLШW7 q/6ہ HBЭwDSm.o>UrIEB:6q%ci.J#v& Avd~IXݧ^nJ&^DSs]{N.|iRCa7ս.LbI1t0ړR8ۆNjg =M\YX?liZ#9d+F9aA"-f\۫dxtr|αtT>`Iv+~RqP ͦE,  * MSDQE3ЁOzKMR(n}WWWvKkE%(,yr&?|TER2Zݿmm3_p#$}_5Ύ7גDS5[ogz>@ᳶ~VMֿ\ V`(T>Fn(w5tg/^uƞPrW{4?DՎkM="ؤ,Ru0\R| -:Ѫ~ƁkΈ#hjftyZY I U(8Lsk |i)c*[S*G. $fDԶ֕ϙy]<@Ӎj*hQ]PQik{gGmpLQj, \Ugs`"JcZC ]X|穯@>F)8l҇tif7i>v|L?_idhs=6мw +Y) l]\uFr[S/:W ^ՈNS"P7Bl h\du@Tj[wjf'[,A^c͎iWr - 3I_5i%f`8?U@\+4Bwp@2 !!DW;Vdx9t KԨ;x*A$F D\(;X (RޠKR5X\u`ܱh- h@}g馓 ?:ᑉ,^f,WtKGfVd4g ٖ*g,[ߡ>oꉇ&E_/F}XDN#ҹ 8dpIv<^Aooup^5I7UJ#Vp3}qݸvr.Ϯ<+\VQ$ Lʊc7eBI*t &*{FtnNbF&Zɹ=k,kؐCbXָ؆>&fF :s~1a_Sm=6 U*F%C]/z4MZ`G޹ /=ըUZ JxFPKM')F&l`Z[ ܉6J W |&^$`|ftͩ2A$Bs̶_foZU=LQ$c) JJ$1^6:ˡ^b`\P8(EGY&C S-)*7cok,DVr*$:(590:J>op+_Rdu@8Hݽ`)M N+Z/39f$3+:eCUDJ =oDZ1{+HZU{2jퟤ a/$x=F*ޘ;͊r[.rT( >Zyg:Ba @I)/׬Jx4m"L}tx%GoZCs"E9/ZqD(mpNY{O#5kX9jÐ:x0K5{۴d$'ɯz$M?; ɺT&pbscAB5yזKu֐_ÍژSthc =-Gl0QA:tqם\9&ȗB $ʋk.|C $)y]fvXel(ikXT k ˮ%o7g[Tjk15}' ӫ#LNvS^I-@D[UC<$];+7d|1W(]rHP"d\8e^nvvU j\tya*9wC ,9,4.1S@R3K@C:z2=mcͱ mS}⮾׈S^OΑH;EY"җXzq4Hd{gD`٫Lo)_*sok`C? g Y3iZ(*i˗OgnQvOM ׂSݦK3ag+$H@g茎_ahgƂ"zWl" nQ?0^u 4_ӓRDg ,4sW_l6>FӐ} -S S7 n\DeN]_2bX]%cFnu;mda&?]>4 Ӆk= if1=֦LD3\*8i^.XRBmlu5DF4q_Km$r;xv; qB ˰y~Л E}LNH瑪X5FDtg^f?|B+)K~:~/x(dm6jq*5gHW.i̻|!źrjDvr#G"&VL.VTnx? 8Hi纻A=4>XzX-eE֛K-0/vZ~(5eV$ ?:cCOn]s@Cɽ#&‰f|`5XTRcBҺț694}]IOE܏ :8( Ε?**vd`w|&W#wd'/ Do#6қ X+j[7 JTٷQ44%9_a%!SCbYu1q@M&SO4ͷ{78BY1Dhjh!sy!KD ~9-9Ioİ^m\5~?9d\R LU[1 BE[!+ܚF{viut?>uoXƘD61)=koڀ JH0w6&7stMRa2AZ? *@#TXwnyPǎOt[;OiD7~vP&1y%.җ Li&aeTλ-3FP %tZ3,KDin66Ӎq&gLQLW+x(J֠9`!ּrm2s3\قuG;@ѱ^۶O Lm*$Ws(D,J,rH4}QnV T}SAD݂w$bz' X /@L'v9vǣ0SR\[1Ũ\fuǿ ƚ+c" @PG*LNT!DƘew اrp,S}n{9Y/Zہfq˚~#Sc͚sC(h 'oN-BLZC F^"qAme~]u'zH~CJ=ޤ4YBkb6ǙY )O" `n'MA11` 4p^u f@ x YI{¨TD }p,]39]  (E̕sAص\ƅf1iEq, :${_ % ׼w{?G3v/38ʞ7_͂(X~V`#iLEyy9ĂiSUiw a| b#1s H3ad1-݋7a # uA1\>y|c=VαK97rJ⤨b"LiУhؘ~K v-GAPSz~ezBK 2B@t˿zu*= D X)b;]"beД pQz ykw]T#)_c 9*ALB˽v5 =b䷭rV^4% 騻l%F"A5@Ȫh4YoO m!`i9]1g\siU9nYo kԣ DIXw4%/E:ٞfxDWV 7:H:FBgl^؈AƆ~[E`@ x"/2bfEIv7\9Bҟ%p_=yWNgȅDP@+sݲVTtݫ~PfmԽ [XhNYO & )hxKnU8(LN"%pk 8X b^k*1X*LC0rĊIE$7$<6 `-f@ U$Ӽ3>ds]2{ ׳֊` K:N?)|i6sf4kyta#I~殮bǮPƄpeCjxx~# &ܝ.ޜzL#ʹBÞs! ?F d\fDں`_S9:w>REzM6Gc>|xʒ0 9"\NȎL-uȲ*X 8ZZjHMEO&# m pV_M4>Y;.u$,BXM. O*LZh1K)Bf+Ge/`Vxf/_BV,op549q .L=SXX1(h(쥙O Y@fuAD^z1E-m~⌑6ʌr. V9L-6W{R@د˩tf#X"4Z@~2 q`s{ø[ :JPG512XJ3QB ۶~\LLoDھ Y!pK2G,ݕ|PʴGyNFZX ͵nsJ2ֽ=0OuIcW5Km…~KvW!R& .,zŊH$24) эᄂ}ٺ7'<~bMNFο"hn*b֌*#^X^oY_!5!6*;pZFnOYv3,l ẇ%! p/Q. "]Z_]}xtK.( 7 JӋu! *cT^Ŗi<7DN3{K@t/X *cQ/3OaD58D+Wh nnzAVAM aVUKu) ?n. ̫r w p7$qYh4ŧNk͌Gm/4#-`,g-頙-- j0V,22-8Rs%La'(fZ] d_ɹyr?8 @]`yKF?`^lDAHEƒ Vm}e> 㔇C!u+nK<[æ |ɩ-mLxQm RY%D*.UQ`S%p7Ӽ8'i0B9O).aK@=t9rcݝ81f Ey< uhnzss 6B/wf+DO gfY0C2s)ř|6RAJLT:j1ml x`ʧHgtm q$>Ωhu{f˕k_ 1AL k]4Ntry }~ݥRXJi6n /QUynB!8MZ"':5{~>V}Dc") _\oAL|2@"eTHݹG٣E3-&ټ*Ob@I-7 j*>ӉTa2M"p>] W) [Bl!uJC^th"mSJΤ' N(xddz*(wF [,V}jOk[1ϔte3J'zy_MҌ1M`z<|f;ſ,c=w[ɛJÓ$u>m2,O9c#a2뗴gwb*i۵O{"BhđޚY#J' >[2"/f.#TOe0+t^QYmVO1>yF'PLu+Ͽ[=w3K<יqN\* ;XΣ#Ci}g[ ']È?GQ!+m(&ZcXxɴʋyb!TH24,)D}JaBAК%G10ytvod_B/fB#S8eV~ 6l+9hw򎏝ۃI#dQrej+ d@,jJiX&iqz[Uo ^W^Vv"lat *zw}`ިzga=U- pRq)Q#۟E=[e۫Yk|_IQ5D]#Kd&8h>icoC^_Hg;jLߣl{eKn&.BN yၡz5)Q_=SȀdKD4`܅#ѱq}MȬ nWs $ڻej.pI*(_ e5Q \ۓ7\j2pY/^,VvM&V i/.ŃYhu˫U\0#Vn!? 1Ʒ1TRUnٓPDYĘ}֔ tBN̏-79qh, ȞF b>vBDr(Nv_KOh:rp\JMsHt"7ꁣ $kA-SwcRbUo~W+#~hn1u)ț [4ݒ,ԷikzO }}$h|SS(y fPp3ßcd8lh*iZzYp4ap ^Yz(QٱjTTReBwp49wH@H4֧yMnTX5/?ݮri>.vJUη9?PD(W?7hބ)Kl}\W[ 6FmГR;K0웬y4+)8L%.-?pqZ<Aykvk~>)TQ;ڐPU<>܋X~(%Iz8JUuP: #SC"uۇ/L"ny_|@][ϿȧEpdcWT):RFFm_EbPmT0̜u(6:A2’&y[ c`SIڇ~Ԩ8z>[*&T@|jb2V؎'r|D v" PH&K_k"r寫Q+zѣV>du]լˡ7:%!찡oBIL|aܻT]+4<:wF|jiuc<'`d5 mFO"W*x!bKS/! ٤*ݗ:o'BN-S3:[試,R~f/P 1eCthlC)QfT#ׂ*5V [XAbH2!C:wlp+~HͤޜFt ("Nmӂmy=CI^H[0R!LJRb^aS3IPt~t0)j'zj ,Pp)Jӷd % 멽pSxRp]drʆU.Yٚˉ*D/Շ8u(9ȭI05*rf%|/C89*=ou]A@2s`03:V22чbm'8ޘr孾bZaUMs`S-(P賣ZɅw')Bګʒ|l K?%<1ϽU\u"^ПAx]c2>]Vs~6 Au׀%5,aD@rU~V&rx48yfW_h(¥`"F4z2}̕CJ ]l4I$ 4bGm2pEo2Vmf1Lm9 hB /8:Bf9pSh82rjh*`st=?EUe[QЉ$CAi)EVV mS+u“.fs]Op2oHk:8["9ggI @"eE o~Y'%xU¢#XǵҼKAoi4HL]@s/8%BnZn3EZ9ddP>QT^XҿCɐ m%E^ZG(d' ߴnh#Hj[;sfJKL*B,;w̨B[Z| aL ~A"nzз(=/0ߥ,}^s!C KE*Yo'"2 m&uDa hft Tȴؤ0E friEv:]• ^B呟 ΃^HF~NkԱU+,1ɹ;%_A hen膤Y>4@W$D=xe6>fWt'5dw m8̑!D[o,5!lp@]7Dxfv[twAP-U_9%QM~DqYn{+{XG@0^ ye waHW7_:m$a!˰bN 3ru]n9fG\|8ܥ(d1f4Kxc,jI9BvSM]6A#k#@Y[Y@XDm/oAqy>U˫S5~TGc 0ZM̽$ۧ'>v?6X>)Ai5-Ө4˲~x-*Ҝћ[V޼i{WUY:+ x]4@*1c}`UX' " 􏤝pq9>Lg`dgD*lq29'At|.:}Nx]B7V6fegvrb%~+uϟUOIRr($?[ ֊ȓ5jї/]HT"GRSOwf,j:~#nG=qPNoHwu WҳS8/.$!ppOZD$ul5GwuL2M yb ՔixL]¹Ea;‡xD(re19?E]K?f(J14 )OɂN2"E|y>L#^SGPa"~"a,_ڠ7I~pd\j Fbs߅@Һܫt!۩ f!6͌\7wZ(w:m2Yֆ-02x/b|(Pg=kaUjnԩ&>q6jU{] 9P}hؔ.aľ#VElx-^#,Cp{^\P)x4-S/vR1<ު1ӠXt^j8"RhmK5wK|c8й_ q3;], "Nl'1[Zq0"W:gmY+-mm;oԜA^SYj nSߛmV'-9bKPcl@:qC.59fku zaUJX2ƭ ș,/H=gT 7§)㰡4Fw_k.oqBhr)mS&F1uf:] * ^|KQX`I\ ݚD_NV.1uAGjeϙ| ~Ca!zq2WU;&C2ɽLfdW,KR=JLb}f (6m1\ zx?JO`z?Ęjdī 0]fRrJ7*Rc>}1 KEFԵ+ @  /ҏ6+.rI87;M%6Ū܌Hj߮WǟT"G/۸^.So{>j> >tz ;*qjUOmiB;u/C/C5x ?d`>BS( ]PA\oϊ u@) C$þcTyD}'A$0] 9h©1G*>B/ar ft47fABA,g<(|3E"ojV4[{u=ɟu 5U%S>i: ԣ̟4\2vł9h=9g :/crM2~m)N Bp$!7 ЂJ18uDsT0KCHe@*V3q]-߮5{)7Aa؋GE!*bt9k[byD}E!󊃯NOyѱyp"ytWul&)2TwT>Ɗo>r¾R3e/, $ë́e7W1WDBN-ׂKh鍟6\F:^Keŀ6yM|K p6f#폽K a/|Q$]>vZ]!K&(m YǑEpt4Q+eϖŻ6XŪjT=kS#o~;+ ?RjVcp_{JLϴ}P.{(~D`ڏ:XZв'f+7gdZ+̸ez'G1ʶ5pL5͵b %" w)ȽsдGMW>cV4T^=哸 &–Z,G_.P"Mǧ̗Bsvr "C.X] 5\&Oec'$;hny ^hm[艇q{f]s^Kz¶v?]&u2'>cG;Xf^ܟV*C 5dJ#n\L૳q];70.H?h:f-wn' % AXQޠltk p}%1Q FɘE,IP1M&_ԢE/5}Θu wV^W:ܵ$~6%[3dv,3 u=N_e +!j BtD\ϜRn \ZSq4R[@0L\>b?ކSٛDT3(z Hq!~\<@a Z @;Ξ(;-|pb$mj\kjɈ].p/=dq{Qw#(4\Gѫ7e,={?xxH,u3F#tr(ammn_aA|Ak h[11 =jWF);F!yei2jURgʮ@ksBna#˶Q!.o89G 48hc0m f-9gwDsƜxwv1`#){B"+Ov/\$#<ٵwALH%!VD\𽭐䚻c\qE :[}$o|=ZDXo6y 3G6x8%U'qywlҙ~ZEvLo0hsW,.f].g]P1x>ǎ^F>~r|kC/ eX!( G\Vo' yz à՚ D DJ& ].n E;F0OCmx[:`> ];jA apԇd a ;J6R;ŷ kOִg=lH)tj~4v',[;Xg[k&xm &Ө~\zh޼jg: D4 u+HSm7!~JH=YX@چk۷k.:tN n0lvK_ nc\/~ћqRXT kQ6h%X\.H]?[-5KB,"#m?"~ x9 \D&KsYSڭ$NmNKq [| U~9Ks%|!{csgλz>N5~׼QB^*24`ײn7L-f)%ajaF%{ Mr:É-4ZM} H;#둔KԡC PPzyږ1UA+$'M&ͱ1Q ^S F6ϴk*JNɇezybRfU͜d iؓ =*JeYa7K'*@Q4=-|p*u~/$ז!d/{ٱt oM1G~mڠx6E7@JsWc~O Q.FHQ\"1^y4@դG/>~W{٤ȼbȢ Դ\̽:}-19yklkIy - m&mo>J>I\.D/湎SGpZ0c- Y6[PlRiu Dsz &B!=^8#s7oZdaym*j0xIvyT[ou#ZHN0\08 h^db1Ɂ9-!ߖ4Zo~e̠w}]YhelJG{/3[|M$x+#/ >r@WwlI):}o.J2>_E٭ 5d\mjqF5Ȑwm9Ԟ`Ri-VAM wyN㱙cw?CN:g^/ԯ3!]E^j 9Id΅#_e8,DQB,d$䐚Lam#^ۥWQ>`}'ߤGWjO~DlQNS"u͐h!?e<@Saq:( Rjfy~d,*0ilm`j+fӗ쇣\bs)/E)rN煙SĄA_Y! U%f*nGËϞe"8!Li$Ft`ojg#m RHep?Bt!Bߪ24$w{ܾ-lPy |mE" ƆQ; 3f68+>$r*6dE'×1FW8z ~n7C"lo?U=^mߐ 1U*)e!_h6Ӛ5Wxko:%o=.3p#-F Ut ]K}udRB`D*}dЩr糈ZN]S+Gc+ZU-29R = i5X4hyBߴ{TƔ?ؑFdʳ"RK+ +;/a3k-p\QXe#xζ,a`R ݘyM,:d"ğ+8C yB)Ҋپ< ;>3?GqW<8? fz9q xŹ-UxO'\ XZzO“@G:xY$ $d 1 M.3|_xk9}@դL/]~^&j_SMM\",H7hAIn)\LeAt^ȘFF%ԍPbSjG-޾dFߐȅEÜʫd CndQ\Y5dk@JD y~[YV2Dm c-YLw03_0XsGϘ%@mc+Yv]#D^PϺ1nC gR#{$܊0> ?EJ&|\q3`y$|? )$ŝZ t15'BeY 5ͤ?gllS65_ds6fT(DbhZ9W -8@ͦRΉLTO !S(of-+)֏V[v)|`Z^٩F8cy~" 49!Rne35{xa]?ΠeY" Sy֑_1貘mZq5NΌFf'B[ztȺ)ME42x2K/5 lez| ;J>3L2$X&wW?( 49%`R :Gds%Wn>f)d.ڧT,b؃>WɀY7&c3~VmKm֐ \YVՙS1@J6XlUk+%YTiןy8Qdyr*MӘWSְ}Q#[K6^f!2@r{Qά_B& ȖXZs2@iWN@CBո9 ֩(_P%aU&VW tMiS.`m 8J("QW1.pGAs| LS).6hsg`3d )?=g/:zB.db.2>`9U2LJ{zI2B$*="n[[+ Ψ|T[T7D\GIM?7DF$Q40ɿH{)0]ZfV_K8gV^䪴X,jeu8`XHR4'P^#l'a@ς&mNGvxѱPROƚ/`pLȺQFHr `3b \ό݁IGi $)e]vS;+͖p*1Y|;Qޱ*ÿCG(I1IwNxX`\+q}{kD.S&BS77\t|9x[%S&~Bn^q3xRC*= =u2u4 !oBN[ۍrJmXL/mtT\=VUQYdy";(ME1NbKjq+ ʮ_~XKU;}{iqБO}f讇2 nohRp[hح;#;3X4CCzHe ,fҶ /Uu"5{@ !$I̴ĝYHF ߨIUPmh)zGqZ(1֞;뙸CH"fqSϼߗigݍߵSb Xϡ wuir栎K-KQTF4i녴y bS!] XƩr(63[ZVZZoi "YF~RAxy 'V.S\k>Sy>[^MW.] j>RE'KX5[ĆѴ0>v6{17=ٮK͌ROclRQ7[5*ᳺ,"<o܇뫣l{<P˃Rvbӽ,T_-Q 4wY&thi0VKmV{ W U|)Hy)H~/F ԁ>X6uFO|;0K̝ϙY0[#bm؆I,g 6AP(_7>0Adv7r6 ÷}8VlN g0:u~dC!ہ*(+mGWa/et5 LXmg'Gzn#DyP-5]wX`8ˀ@Sxi:u6C"쪜 r-XDR-(=yp]{ۄ?^*jWh[Y22 Lx$Y?t2cZ:qG-1g{6(H}с5U /}fXJn8 ~?8IrɫcE;<JTBڢi)ƪؓ 5K[2<`ZG=gLcuM[!QQSKٍ=)dY>iO}+]]N$ IƋ8߿5oq6!G!_Y';9rl/f5Ž@6x]\x^nNS3) KhHB.Oy\h.{"|dͻ3y*Cm\{eVR -WQCo@Ƨ F|E ZMTOdaxDn-? e$u[x9'[Q7AO)f3hHȻ)2/9 +&Э%@=}J?Z5p?x "~ \}8~2NZYTp$ؾeғ8ş:}gyٸgB{$F0փŠ2WM#dV>K<"=kOQ0aya JMǕ/C!tBf,pYc lRWT!H"V w)vho"gLȔ+Q8$ ܩ'9,HJd)W#/Q"T4&la˝yWU)v[υUmJ@)MxqyldSw`rZ# rآ+TBy^A X.ĞÍ'>zyP'tI͚}x=U}kazHEҎB-*3ls4Ʃ {U93#" M+j=^}5xU[W1Ը蝦u;j\1zXsr  W0hQJa܆cI=XǼι'q ~$Μs~X8ՖB $]d 9%s7eiH!Qo]L!P~d~_rD6 m&F8 n |Q"te);>8r?}")B=dbf!/pEnWˇd^pXx!}.(mg6n7TviVauWGKXB́-z~>>3ū7YVw΅eɛka+,Wy8RԽ!3f, !CUFHlсh3 Jc!ڜyX#VKYbХZ=4K,eאڋ@7pI~22 Ã&) D6,O:}qyM"%xsV r cb^c- vv7p{{/op*x+T׾"+fhs\2-o ZbZ)Ԩ ";IJ"X? ^!k~MQ%9+O~ JEۉQjB"i 32/ņ9"97=hD O~շr sY2á4#vx;}Y)UɎ滠ʭb%0J,G6 Y!N\RBNJ|`+;V9AxFA[ %F'~ _u_&Fue%g ^SC4+ACOpzv hvښ8Rڜ)N=2| r8?NMVl%6`[fݮx׀  0l(|Z;4fQQ4- Q8b5 9H1r3M3HbNkߎI]@-h=d OW<->kauy4$@B/De{8‰JVY)H=&g=ĕ&xUZ|Dh3]2w'MԨ퉚d>6q2_?I`9%21z zqJbEõA6#OCYE|s'_J8Hr)Ap_BFiFik +|2^e/pǻ<6㓋c$Oq(f:>)!IK%U'8;K{Sg{tO%8RjY*niE{']QX9Df>\ 'Iv[dP$Y {NkQA~sPKc e;(@Eb=X'`z6y4ҙQ,ㆠkK.߰T&(v{3CpTP5)Ϯ")&xDHq}MjuF;թL2} ,DEo \*ЌY;Tƺ@@[M٧O=嫆@՘;yƀzeȖYtFL'll؃ ogPSoI" װ^e4D#~懹eB]i>[8[ d‰rV">Li 0*͗UdI6X"0ޤh"--O^Ҏ+iJgsIR F!gq-,˽,zED!C7qЄnYK(.L ,RE OZ-j} B 7҅ _8,t~}ҏlxRGIrn@/n:?2\tz$W55w8ZH-k"\Z"$ !aJGFÞt_Myl(Y5`U++zmB;nãt4t+a}ދsF%u :A:z;}{FXwW #{(] py3y08A>%"\xM+9+R uCӬxK ;T^Ab-{}IaC[?ZzTBts )cRpi5W̋Ɍ hLN~8{:N*J\yte-6QxҒ_;nݯ'CAZnܒbceNP;bI7[ 錋As:EcNj$H|h=﬋E|z2q9'=_ 'VKv?bu*7҇dDPT3Ws>tH'R.9\j6xo7|—@PI6B,Xgl㠻ˉ|qmN9BMN:HKsDT> sU1QQ˨P(?o_Ye$a!q= ˕>$c |R燎c&+PNuF5jOH.Eϳv–`  .TP4 zCĦ/GRa]>N q%?,8KV5v*vDo;d (}hbGLSz]6+Wh5,K?)^o} ٫5n_ p77?ezG۲8kyX@j9jK5ݶ"cC!"C4+նz7Goz Ҡg#P7ɗ h#T)?fsV(?L> =bYURawScg\_H"<)ŗ Yʿ.7؁N-U W!48#/ -490oB㋼ª-*O ,lh ae u-sbn)۶#"?ʣ=F\%f)chvnz_#-k"H*ѳC>EI\QoCCj ۺ>e3"s]t7!-/_ זDaSҨ^BoJ]wo}{6i|SX(U4PHE)b 3yȓgĕ;;T\$T4; Pyؗ 0xJsұt!pc]o<=B€N}z̤pǼ5A➱1-HeVV$Vi&Nˠ!ѭ'c]ܨ` hMؙL7=CZȃaMΎ KJlC'Ki4H䄩TP~^y9F{R,8NbzLJr81/ey['Zce<e~B);oN;r^-SVxHoדIspÐ3@{/7'W#Vذx,?LbϪ-G)=~wAn3rC/"更T\+hD[5YMq]'/ÍׄN;H"/V%^cfCڻZH&(8rI 5Mo*R+ 0v^tD)4*Bf{R DҶߝv8-2,e [ }U UVIb:B.r5؃_Mg ^U $5h42eǙ5(FԲ0,Gq% #48UMb,' MOaR2s" - ضacFB5LjKqs ,ރrՎC*MJ7M2͎7-Ϲ^6w^3Ũ8AH&F2bJWEռU;KgrsusklSQbG9~ !F2Ŝx/z|E"7I {fyj עH[}!be`<7fO˨ltq<6N:+ )9|sғ1jKFY,5ۿl7م!C%BmXT90(A~ ;OKF!yɕ.0aL҈B2r\+xXd\%Wlg&|Q.âa˪l/PqCMEkZ/IA$cW~7-]KHt>hGNÚ,l{j]<{&z sNP? 5ˆּ1.H2jUʷPPl(q /YkS<$9uס ~a8n%06|rS+hÿxQ!Fb )kt8gAdrW&4jXu=_9SN{z֯Dvb"^M}p1E 7Y{j:/R+E#h8@Gg~}"Zx㨯_V>wbqk@b~gb"=N&uAGBrz~vI Hw =oђ_*K7Ca ?/rUd@0( Q[x%ެ@P+zx]F"B?Lnd{ଟ*THT*aZM28\6J#;d:ް!x[}6-/T92+=;آFNaºET4\+6M<09Ѕ>[X Er07@>$URmW>sh㷉7mo%HȒl_e, &SGXH'h6wR#Ǜ%R7X>69} Fzi&y05ݫc{ nߋw\0 Ps2O>Z3P9Ō&js@Mցzn'(}3dgCk%`ʁ4(>')&KvKI淼r_F’%\@3v&WEOYܴΣfqW 7ou@$PZ?BP}Xrv&󬺉^3;pRhݞ<,v֚+cZJ(1E Y.: _?;>7x s,|;Dɺ#SLåUĒ0c!Pf*e?l%Xtwg?Y!@WlF+v]}QirqNZ['YIY`8"4tD@fkHw20[O5ؘL+~XeͥNv){iٔJW,¢%^i?Oɐ JSWao@Ez2̋\g n[" S(% ~P;H!xϵtrSj+ sj8wpJN$bRhoy{293SJэDm3meiWM)6ZGcAO*tRwrFN(=V]uaާWe ,֥blOt>u w#Cl"OvXztL FcP̋y|݂KSa'J!cxYh%?o;4<Px$Ɣ sQ.i$|L=6Ibd 7ƌYiMrih`}wW٠K w.gNU?1SYY1>4 ,0/,t@ʱ*G#_Qw]n&jSlB&hkmuN6R~^- lm9TTܓwהD6biѻ;悇Ga`hp̩E0_YcVtt)'CNu1i$oî vjm'w\^<ʖ}0֬:7,&l'zqowrɈJRJ@u"[q{ UqH&|D?"[荴JEKV扙o"^A.@MhHѓ{,Pǥ[ .4e|Rhmˀji–$XyGe@LJp &@jHS1'U>IqB|C0YnacW3xH{١:>Ia*tyҼzH{Cw o< z6>A)BǽFJTq&77SytAm@ثP>0LќO9R~>>f`J(&e')NeF&8(뢚pפË]T~OO~+h¢#705f6'I&"|v LLU8[GΈ6ҷnUz[H?xr}bwQ}1:qIr').*O\=4%cB_~EeB#qNsaRi_.qv;餓%>lS0m^kPD6a.qrdp m#hJ1wdn=Nc?ռ|!߭G6O>9H R8rC‹W{4qT.tXwpY$Gq*WG1 g)DlP ׺CH Ծ-aL ʮg;4btu Xȷؚ#w|" qBm_]v][RdUMe׾ D9gK!#oz[vYO\h