perl-Pod-Markdown-3.005-bp153.1.15 >  A `B^!M@eeeȻgt{SèBwL:!ֳ,^ Sڀ9y6F~wH5s}С|{(^(I_82@t.cnHN$_vw[ T>3HZ⡡R#-uuD˦v!-;ZWՅbAIfRٮ ^6H0Vʿ*(=EL mcM|TCȱ'Cgv>[0.(8:]>pA5P?5@d % = 4^dl   h }  Q   <   o ( 8 9 : -F-G-H.0I.X.Y.\.]/^0B b1ec2 d2~e2f2l2u2v2 w4x4dy4z44444445<Cperl-Pod-Markdown3.005bp153.1.15Convert POD to MarkdownThis module uses Pod::Simple to convert POD to Markdown. Literal characters in Pod that are special in Markdown (like *asterisks*) are backslash-escaped when appropriate. By default 'markdown' and 'html' formatted regions are accepted. Regions of 'markdown' will be passed through unchanged. Regions of 'html' will be placed inside a '
' tag so that markdown characters won't be processed. Regions of ':markdown' or ':html' will be processed as POD and included. To change which regions are accepted use the Pod::Simple API: my $parser = Pod::Markdown->new; $parser->unaccept_targets(qw( markdown html ));`BGlamb01OSUSE Linux Enterprise 15 SP3openSUSEArtistic-1.0 OR GPL-1.0-or-laterhttps://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Pod-Markdown/linuxnoarch?"Gi*%%mA$A$AA큤A큤$$$`B=`B>Vۛ2`B>Vۛ2`B>`BGVۛ2Vۛ2Vۛ2`B) in tact for Markdown to process. Thanks to Andreas Boesen for reporting [rt-112631].- updated to 3.003 see /usr/share/doc/packages/perl-Pod-Markdown/Changes 3.003 2015-09-28T00:29:45Z - Bump Pod::Simple prereq to fix bugs that were causing test failures. - Use Pod::Simple's nbsp_for_S(1) by default instead of handling S<> sequences internally. This means the feature can now also be disabled if desired. - Portability improvements for non-ascii platforms.- updated to 3.002 see /usr/share/doc/packages/perl-Pod-Markdown/Changes 3.002 2015-08-21T03:24:24Z - Add attribution to changelog. 3.001 2015-08-21T03:17:57Z - Increase Pod::Simple requirement to 3.26 for detected_encoding(). Thanks to Lee J for reporting! (gh-15). 3.000 2015-08-16T21:55:14Z [Bug Fixes] - Literal ampersands and left angle brackets are encoded as html entities when necessary to avoid interpretation as html. http://stackoverflow.com/questions/28496298/escape-angle-brackets-using-podmarkdown [API Changes] - Make accessors read/write (instead of read-only) for consistency with Pod::Simple classes. - Passing unknown arguments to the constructor now produces a warning and in the future may throw an error. - For consistency with the other html-entity changes, NBSP characters (U+00A0) are now used literally for S<> sequences. This also fixes a bug with code spans nested inside of S<> sequences. [New Attributes] - Add `html_encode_chars` attribute to allow customizing what characters should be html entity encoded. - Add `match_encoding` attribute to use the same encoding as the input pod when writing to the output handle. - Add `output_encoding` attribute to specify the desired encoding to apply to the output handle. [pod2markdown script] - Add command line options corresponding to new module attributes. - The script now defaults to UTF-8 encoding if no encoding options are specified. Previous versions did not produce consistent output and would sometimes emit warnings. Closes gh-14 and rt-101536. [Documentation] - Remove documentation for deprecated API (parse_from_file(), parse_from_filehandle(), and as_markdown()) to further discourage use. [New Packages] - Added Pod::Perldoc::ToMarkdown to enable `perldoc -o Markdown ...` Pod::Markdown maintains a backward compatible interface that is incompatible with perldoc's `-o` so this module has been added to enable the functionality. Thanks to Alberto Simões for investigating (gh-12) and providing some code to fix it (gh-13).- updated to 2.002 see /usr/share/doc/packages/perl-Pod-Markdown/Changes 2.002 2014-07-05T15:20:40Z - Docs: Add example of command line usage to Synopsis. Thanks, Cindy Wang! 2.001 2014-04-20T02:40:11Z - Use double-asterisk instead of double-underscore for bold Markdown. This allows bold and italic to be nested without confusing parsers. Thanks to Mike Covington for the great pull request (gh-9)! 2.000 2014-02-01T14:38:27Z - Releasing previous (1.99[01]) as stable (now uses Pod::Simple instead of Pod::Parser). See below for changes. 1.991-TRIAL 2014-01-03T04:07:49Z [Test Fixes] - Ignore worthless testing of empty links that fail with Pod::Simple 3.16. 1.990-TRIAL 2014-01-02T14:13:40Z [Enhancements] - Change backend from Pod::Parser to Pod::Simple. Previous documented API has been ported however the Pod::Simple API should be preferred for new code. - Improve escaping of markdown characters. - Accept for/begin 'markdown' and 'html' regions by default. - Represent over/back regions without items as blockquotes. [Backward Incompatible Changes] - E<> codes used to produce equivalent html entities (&foo;). These now simply print the corresponding unicode character as utf-8. If you desire alternate behavior please report a bug. - Tabs are now expanded. 1.500 2013-11-22T15:05:31Z - Format url fragments (in links to perldoc sections) according to the destination site (perldoc_url_prefix). This makes links to sections work where they probably never did before. They are also customizable. - Use multiple backticks to delimit code spans that contain literal backticks. 1.401 2013-11-06T05:30:55Z - Require Pod::Parser 1.51 for bug fixes. 1.400 2013-11-05T14:18:19Z [Output Changes] - Change perldoc urls to point to metacpan. [Bug Fixes] - Recognize numbered pod items that do not have a period. Thanks to Yasutaka ATARASHI for the pull request (gh-4). - Remove extraneous blank line between verbatim paragraphs. Thanks to Graham Ollis for the pull request (gh-5). - Do not escape markdown characters inside links (or file paths). Thanks to Taiki Kawakami for the pull request (gh-6). 1.322 2012-11-17T15:51:36Z - Fix incorrect escaping of characters that are inside inline code blocks in headers. Thanks to Peter Vereshagin for the pull req (gh-3). 1.321 2012-10-27T01:23:56Z - Improved list handling including support for ordered (numbered) and nested lists. Thanks to Yasutaka ATARASHI for the pull req (gh-2). 1.320 2012-04-30T23:30:11Z - End markdown output with a newline to be more consistent with... everything. If this causes a problem for you please report it. - Enable pod2markdown to accept file paths as arguments (for both input and output (defaulting to STDIN/STDOUT)). Thanks to Mike Doherty for the suggestion [rt-76726]. 1.301 2012-04-25T03:56:11Z - Fix double-interpolation of list headings which caused escaping of the markdown characters. Thanks to motemen for the pull request (gh-1). - Add TODO tests for improving list handling. 1.300000 2012-04-08T00:08:25Z - Document that characters in varbatim paragraphs and code sections are not escaped. - Bump release number to demonstrate major formatting difference of last change (backslash-escaped characters). (Forgot to do it last time.) 1.200001 2012-04-07T23:16:23Z - Escape characters that are special to Markdown (but normal in Pod) with backslashes. Thanks to Florian (fschlich at zedat dot fu-berlin dot de) for the initial patch (rt-75620). 1.200000 2011-11-28T17:57:01Z [Enhancements] - Handle POD formatting codes embedded in links - Render Z<> and X<> as blank strings - Handle numeric (hex, octal, and decimal) E<> escapes - Convert spaces in S<> to   [Format Changes] - S<> no longer produces backticks (code sections). This is consistent with perlpod and perlpodspec. Use something like S> if you intend it to be treated as code. - Author meta tag with no title meta tag does not produce a leading newline. This was considered a bug. [Tests] - More tests, increased coverage 1.120001 2011-11-27T04:07:30Z [Prereqs] - Require version 1.10 of Pod::ParseLink (core in perl 5.12) to handle alt text with schemes/absolute URLs. This can be changed from "requires" to "recommends" if it poses a problem. [Test Fix] - Skip tests (rather than fail) for alt text with absolute url if Pod::ParseLink < 1.10 1.120000 2011-11-19T05:44:51Z [Enhancements] - Use Pod::ParseLink to dramatically improve (and simplify) link parsing (including sections, alternate text, and man pages). [Format Change] - NOTE: L now becomes ["foo"](#foo) instead of [foo](#pod_foo). This is consistent with perldoc, perlpodspec, and Pod::Simple::(X)HTML which is used for metacpan.org and search.cpan.org. No '#pod_' id/name attributes were ever generated so the links probably weren't very useful (and probably still aren't). If this change presents a problem please report it. 1.110732 2011-11-18T04:06:06Z - Change /\h/ to /[ ]/ for compatibility with older perls. Thanks to David Golden for reporting [rt-71961] 1.110731 2011-11-18T03:28:34Z - Ensure verbatim pod becomes verbatim markdown by increasing indentation if necessary [rt-72414] - Co-maintainership granted to RWSTAUNER- fix deps * ExtUtils::MakeMaker >= 6.31 * Test::More >= 0.94- updated to 1.110730 - make bulleted lists work at least minimally (thanks ap)- initial package 1.103491 * created by cpanspec 1.78.03lamb01 1614993479 3.0053.0053.005-bp153.1.15pod2markdownPodMarkdown.pmPerldocToMarkdown.pmx86_64-linux-thread-multiperl-Pod-MarkdownChangesLICENSEREADMEcorpuscopy-enc.podcopy.podlit-cp1252-enc.podlit-cp1252.podlit-utf8-enc.podlit-utf8.podtinypod.txtpod2markdown.1.gzPod::Markdown.3pm.gzPod::Perldoc::ToMarkdown.3pm.gz/usr/bin//usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/Pod//usr/lib/perl5/vendor_perl/5.26.1/Pod/Perldoc//usr/share/doc/packages//usr/share/doc/packages/perl-Pod-Markdown//usr/share/doc/packages/perl-Pod-Markdown/corpus//usr/share/man/man1//usr/share/man/man3/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protectionobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP3/standard/2033307bbff24dbd1ef8d621f0157ee4-perl-Pod-Markdowncpioxz5noarch-suse-linuxPerl script text executabledirectoryPerl5 module source textUTF-8 Unicode textASCII textPerl POD document, ASCII textPerl POD document, ISO-8859 textPerl POD document, UTF-8 Unicode texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)RPPp0SK7perl(HTML::Entities)utf-83a92284f57547ae0cc75c0b3884163ebc794ab91d65c6fd71fb3ffa444cafbfb?7zXZ !t/]4] crvS $kA:u$dyaf(ɜl R;n (}\4ۆgbHw<*y 8i|l$ RO~b*ihBuMd{ra)u}$sͷ$>4%[6r|n w`+'v9d̙y*$K/! L=fXG#h A'{hcğJ pﵤQ.Aߙ4M$ٕ<*3w,is͜q[=Cb?zSb~FBJm yч[Pı:Vcys :?ejJ@[ 2:&8S"Ê&i˩jTGZDl{­5AкJ|>ib\/v Zll]jv|"%܋F ʲ ꩆdʣ ;,1 ̐bEKPz(zZ5N χ;zM>h(W(veI% 'vUUJ\J7x_{h>VkcR^bjF/L&=P:/&65rXz.[(OC}r^i᳛ԀVJH:l25 kj8cZKKtHbp:6!6mX[aK y4(W yYLفFOq3TT1gڗ~bn3}emNt(t&yk&*܅k-ʲJ﷽;$jZ-9orx^w.L}GL^pC\ =z"P;6Oˆn~^1)IAہ9,i!Q8UG+HÉp")']<_Z_QG )],7Bai\f 9ѨA"-\'{M uS8LlP1"ք-!K)SK{]6r}aU-l@=0Jty̐26ǣ7lu][nLPQ﹮d0 նdy-FTthD+28'(IR aK'K߾ˊͯN~![mEȝG;Ŏ&ܭ)b.b )|s3p6 W%;Ź#R79Μse{j`ﱌy2/ "Ӫ$[n=l*Na[?Ã+thd#XBlMvӮ!VGɋi`0[h}nJߊ^ FbP/kH84+4QW_%9^>86ip6&*qʎ:??/) o64XX JCՃ%KUMD9bfK)\j\o%8+,1>^`HNE `YzgiH"Ho7O?p#'rII%؜LZ8~ESDrR|4r|ш"KVɆ1I7v+/C pxb+x 9Z:VhߩJ[3Aͷ7IdH6"6O/^j_`'֖*'(=@oP0GtA42=117زH7~Dt)ЍQ*:$$Y^{;O?96v0Lr9-$I?ҥg4UY˹30%x=:a/d A_Ch:uܭ҅UBFCoճqce<&+RT Qͷ{`q T~MAl4&/ϝy_7} ()mhAQ+ڟ D3#+މa3&.Uxb s]SØkWFN=5 ~yN)B= R W/_6,1ᛝsiR" PNyX mqzB M+{D1>Z e a㮋 N|n>aIZ8Y/Z. ?󴯫M"ILʔʫfIU^|5_Ԛh+k*&q,}j=˜90_b ћ i%`һxtbSGG02RGI4.\DCWUoĆ%KELTkk|UEtJ,,&+*xm +~$J PlL|Bol8gl2l*q *I]K06˸\-w8nq *ORdIgG;gף@q`hle5zdl߂(J^|/6c 瓕4K-Ja+2oAԇyY{BY7rc^*?%vQOҥeY ',e_6R=W# Jeior'S:HN `^[KFS+n|#b6=޳GQj_ Y)8h&%;"/`^ךUmd7Bnt8 b/bo]4;f[^ 甫t#f"C>qyҕHltpf!B8XC"|N}[w~dž0c qd_߳uP@VIj޻q~eNTh% O.8v=;]r-38Zϲ%鯁T"|v1bE91{,121G ]}|@А D@_ !RXta>[Zh᠇H:u\"`ZzΑ4Y]^s+ r%iYAV-_xʳ9!PO|z~'(T0>Xc@eMb~NG2 Z֔Y(Hr (<ו5?Ɠ !Y4l?0] WN_{N,VyDk鈵(؝ԍwnX>HH"0A9 VU~3M@sMu%u,:|=PBqi ޯ,ʍ&A] zqք6>9d9?s/}p jcB{)ELi9Nyӡ76zh`Ӓhܾd66ƭdp}C|,* oP˭ħFLV?3{ voF.L.$J6Z|?8%c #K~1ߝcEAOE"rq=!I7[=Uyjܳ'aC"^% ,./=͠L0 }5::JfG2'  6?/]7+}U|$XT IZVX0(=On3hl1ZzA%O; niA2W$HʝU{-*6?CtE q "AL6f>,.b5Ơ, {Geʍҩ3KKR{K[I.},1BwY ->{t- GOÃr;iaG`7%jqƗ鵩}YfY#W 鰤Q {̅@ڵo,{'CԭK~o a!)pǔ_KYt*-עywoe[R'@J| ^D&|?rkpyp9g  )s~k3XJUm bFh]$-VH'(TK?R:U@΂*w®u0:|̣ceLE9L&EMbm)&7l`8ݥ7•xXۗB1cTi /9iL+˗Q8߰sQG8[IψiMQ,&53TT7nnIڏߥt>ṿ[h{{Ҫw'^7Qk1h-/gFy&-]IA5"+-JA_Tovi0a:n4JHhjmWf1zlWBZiC\HKx0D!fI QseĘ \߁`Lݒ6"_H4zb;* NǵfC A?'eF [ +sP(]9㨕{eϿ eE曈eInrS?^Vb7^|$|aA#yuc@yX; b?`>mMq?sٹ|X!ŨUw&@a\8dMF}vv˴jľPm#E7J߹_ܻvg{#n@"_5"Zl'`wyCt͔y()Ü;y5v9TX%F-^ue+U?Cx?P3,H4ZB?s8 &JkCߠ#|K6I8T ylb@ vt1mѷ׏_G+r[C$qTZ\eJ~l.g^ Bv=!oƾ*~owjGREZ66O@/g\: C+.= ñ- _M;]O68Ĩɬ=;b2 M8ȁhIJr*[2π7 z E5BH/UC9!o$8IuvºOFS|#0,L!YҪPJ-hr/rU5 %2?uV?߳"3C!o?zFG~0($41Ae t>r=oYv~*oSu< vln qCLSw٣Й!1fvQ[ .U$^/Dhb 7М m7u[x3uu51K8%X)[fh$(1[dOQb,.Ɛ?svɏO:k1f+߇!/*jtȚl?$gt?CM7qven@og;]*z|-{JP*c8_dR6`p #u\D 6-̾ |2,iMN, D}cU)_؁=ުsAR^҆g5[o>s~h6Hn Oj!8BІEqC(I-Qѧ7'^U>>/Ow4 zWͿ˳&D2`yO˰ސR&)뙖0 q!PuMlR5F_5N.l+5J(,p=yVeľcm>Vp( Q|dPp99mb*oM}"~s0c! ϸߐBF8fH0>%uUY{%&N }}Twr,}ʝam|> sA=1y_<,~WJJ A٠=7p^M@j뢐xD75 1wz+8z= qq]G}NntbZ>sjm8Sz9 qQnLC/K?Rk&?ŗBdmPm)ؒGϓS͓_۳x2S50ƂŁ?c\(pP<D<2JRWo}8SOylgX0L9((#g5E\j63XG3ӑ–k@*,3 ۫""ԣpxprXn_8N3 u r5=<|:4l4!x gY7run3+kP1Pc OX?"\SUY.v50OW?A8ᅛߴjlR9+՜Pb~QUթo{=*0ˍB M#ݻk1*XIyw\)A:3F]0fdZ,ahP䠚пRq,<5kxe,g9]ll 3BmLO])γ=0QVZ,I}Ou;iiԍ)L#C[S3}6׋(|Q}+QWUVE"ᕠoMI`-#J>vW6;ց~Ұ. ݷ<ҥ̉H,}D7hMWJO$wq;a,_jꓰ|igy nT`H9vuP P<$+PYr߯]#T/x8p7ЊD͹ֈА݉U W뇴&l=U-mdWxJyqN韝yn==Iq46 >4 f%^WtB<[@e ptv>RF&KES:A inaZ0_,w' c?vaÅ7IFLﰤլkX'Y׻StAxA]0vwb C! Jdz6ܥ(;* hrO QcB/U|0[vkv򜬳bZHuoC"H}EY=@|N,u j+_}50@΄@tKQ|UTًR{ +YyP~  %8F[[9D _ Sb%NH+ U*pk.%T nAZ<ǨVAkrAG' fI!wf SU)I'̭6,&199p1鱹VoK0#pn+!k(yV8ޯLʗzxݽSu;Sq=Hg= <:~=$ %BW;bxF5yLUuu)ރA]Q&>Es# a99OT,r)kdq:pCRz<TЉTHocmsFF  xsoDT@e͞˨9!ܧMRjFD`ߘVav]o~H!^/,2/F0(Om{dGzOx|EAubT :<~`QXz j<<7);UYWƨ} >;6̒JFy$]o=bH ЯyFO_qi.PIhPL)εLSレd+yfySS7i:B6nk KfHI2uw8{HCYŃ`$Cm},+yZcx\=8m8#%-/NOY)^m| D (R<‹ &SW] FZn1V82Usw&6 M4^\xfCvBFlf^G *(LRsI ) 讈Gn} `*ŋ7y~ϻ݉A6C\UΊDeq"}9dA"17v[d$CkZzɼn4]08Ao.O<6>~iD(m &:#@%SO'8h d>cGYl@R8hLC\j!st_5Pc6O0'()s@_xjSΩhu U)^l0:3(jk'lCsfѪ4j^ Pp7|v_ނiYgK#e;#.1ro}p35t1%Tgiʶ?R wa0 "*"qS?zth9plF\^a8?;\Jzyl^&qP֓ܰ r1 vZ<&He7B]sHuy ݆6D'ϥFL>NwB@ ~ Q gӨZ%9ќ_9RRpO.4)<y=lBN?X]pT5.j j`QЁ },"c1r96z7#xi&a]lBI?.)~ %;&l"> ZAcO(J+Du_6&^{ed3/ 49M-3 }.8WI@ ?R1(ۧ=lN:$ĹBEU/pX( ˤU{#xHk 3ÿ4oW``-+dH`"D2;!nV2(Ni-x|scre?}n}/]0EIkU$eYfNN63RLM]8sVQC'aӕ grYKI/5{ ԠED(aQR5!N.PE<uE>1ѼXY!6Z/excsnv|'ӃWQ{qb,O5j h n<sAԊS c.\\6D;ux)sU9,|?$Sn0豨|Og;% @-}W߆(/ŕqVSrv?Vq$⢻vDt0 2T૴ιc1H1%*"qal{]ù\{쑜e-:ҍHbL`R+n v.Qn:*O젏H{'^NۅXy{=Bļ\SA1_ t{m~u9;8*\(;ҺƩNw(NdMj 8` !ئPmtWՊO.gX1Ӑ>#n X6xl%#&v: OƐO,p@[D#:Sw>,Hۍ?'-=(v!-r6/2͜m<)9aJ@l|x;0w*bQW~CypgrE癫Rv5ud,֏.~)0 BP,epSF|^럢^[%-5l3 9n ׸<b)E?3B &wooekxh+9-i#]Ek|5LKx,~ZyT$[To,۾ 9 N;&,cIlG^դ{ =i(b:%{ 9j^ Pe7~Q܊ Z6먆kGudRNaM>_!Mޞܷ~E^E.wYMMJW:٪oY6ؕu,3Ü{RUh#gVdf¬/ǁVJhQ=[#y{Ll;/* 7iW=H& n`nAky)c&ۆGMoB!k gdh_rD xڇ/Ql30.tDg=%qBE^^frz[=GtTdqBO 7FU \6bݗ|Ǝ߻&ՕR|J-p"#~XI0tme/ ێ^==/|?8{U-;U_-2]ɨ! |HnI!7Kd*gϖ+ PSw"C zww hE^ޞ khPGK}!ۍP'2fvsNs>6S"êXC|/\<N9X#0ἕaAѩa[PGs>ꤘͰ$ C1Fk϶Ťl8BjT{b]P{VKq %o3$, mķrڟ9 +ezP@RQPF>$x`Vlڽtu㩊yIk25G/clA̒{$w&=E+ڹelOc3@'5G8gl` + H1;0>o2{0ZIQRrLyz.f̌j3)#0g4fKA^흈L]H: &vyfXޡ$ϕ=< :~kE7Ϗc_c czR2A +zp~zbr)ցXq|o#簶Ip.dibK32g8m(@/E;CNYlq=pheG1gz*wFQ,W 8) :8-,1%Ed;S,0:ׅYh2S7FḁNM28\ǂO(1!~Ŷ}AeO`] PEk`KĻAa-Jr_ZBhfGq~ʀJcȐk98_KW<0WυxP[R&8MIDִ^EUX$[N1oNYZ~(hE)t:gFIDr$?rN'jRST ~QZ3tn.>?["RUvx@W͓*"Sh'e4m?.$!!ס)ɭ69 ɫS~]%)$?.=#mxT=`%,0(`րvhc0ru)W*j[ө uq~ze~S'FR()jv4(MNJ$ק߂Z?e7PS. ė>"Hrnv'7պQqHWdjܳ+XۃO|ѹD:.ح*UEͲ@-,. RSr_HY!+#k= Q]i'Qs\5N'iUK<__>/GsR%A6_OHmJQ25tOEi@`3?2%[_X:[81qhuGxm NS?w^ c b**0^[Cfhj79bNz| 4& 3ٛߑ\Q%:ś~YW J*ah"Sz˝*6޵VJ0Go^ %>?|{A$ XncB$5Fs@M:Za̶٠ߟ\RˎDqsd -ͬ MFX_}ǧ@ZjVӬJ"9+5c8 u'bc$DI췦 OCی=]+uc|VXkMgȍ@yrM: H΢vWt xHi#ö'Q~ȹHȣN"cKF)1XTtG !44 {'* V:(pqB`B$?)M+?1>fJ+LU&F3`Jzug^r)(G]_c9;le5+\Y]rI-| 4Yszbѐރ/2p6ZlnQ nG3}M7?|w~y_ @bnjox9s O=F,ut5^cKʙϵgm(KL|!}/iIj, k'&cmcwTA&ZmT m>iF3]6ͪ OAs} 8bf%7׽Vy ˎ黌SO t㪘*XQu%+;~ *cXTU-XbsF6!8k#vk{԰Q@\EGنd.3 ܓ^AeÒ Wdӈ"=pY\GaA=e׊E`/ WSVҐdV(y~XG_j>Uі).zYK7O] RV6ߊ^Cɟ]ͩUb{?^LCq}W,1 8N!>5@E ٍPLz&]3߆P .nsmڣT9VwX ~dp^B*z+D݋D] !N>`~Xt]4@}}*!} 905$#o8}ryScL XCg?It[?#YcaOqΊT逯k z6ċu8 &)Ѽ<;e͐!ab®5'‚ͶܪtbM(Q?~~b#w-s֜,gwDpt't4ޮhin 5Gwxǐ}bλ@OEtQf桺jHa13hť% z;::]$EhHdSH¸YvP4DF0T eA|Mj^g uxwwL8_!z82= D9 H7cq! .LIɐeF9XcHL⳱qЦΨ׺,KwBD(d 魦=0uX߳Entơzv߹mNJ^>sg:|TNkgy^/5c?aTqV$^,n^=ܙHBEA b! a*-]MSuEWSrQ.gȑMf<pgg C {wXVCt(Z[L ڦc^!A=$c]@ K$@d ay]@<ǶX]ɃW&a(] {!A|%E3_Zf*G*X:MNN-#ϳfoi˩y^$P ߤ Uĉ0@ny2E{)IؘRO a%ݗE]o|O$U ržSX㝍^4Ҁ NlK_>=LdFDP Kz;@_(< ,Oz׉GuRR9g&]Y6"eYyYK,`6:3V&ң4*5z8.)9ׁMKA %mT 0t%aTEjV zzd댪ݥpԸ g,`y5 :7.i[-h#KT2RGL^97V4.$B :ʃOUfs eqxP+c)'¹qS;A~'7bx V]£g! a %i'LۘДڬÝ>a)Cc 2 Yd"MbMS^ƑrE`^Jݲ=d&(_IQ#(簨dAarҺHʙ +BwVy^bDIړ{" ( NMhbt/W&AWL0;}q/1hϣ| &R23ϣpaZ^SJv?QGThͫ:uٮS˭CA I[B&Ir0gnw"#Ҍy]/kIӋ#Wh-U3)?P6@!_ZFOYk朱<:+x0Nb^<;܋ d]섉)N.FI&ۭ& H6WAqeL|<^PD!?ʂKO |]iNRGf^.זkZkp>a&}0@ngLv6D TIw i |,FĞ ~sO^MtfeݥgbRc%n) 8˓'xf,!rǥѫe]'53kE% %hsa@caMGULk ,oC dʼn1RFBIx5Y8 A~r a ,tͰ$ldg]Lv{ %hԗ0g&}#.py2b_⢗.F_(,m4d/~ +u on.g.WUFG :u@"=rX+~N)t PFrfp6 =LE-g+٪!}/:I\#,AkC"c'sGGǧȸSkB0t͇ 8Auud%'mC ܌R(8tI,^GB }xhCeٮZM'@ t"H$jz7?^ o+VWGj.1AǼG%I6 4kuqױUvOb G[;9P=bkSrd- TE&ENv #S!;O?{" 'QoSڂnl\̳)h>P60զ|tnZ+DYm迟o>7%b/]|jDVS]\\GJݗW0kBE W{Ł|Hf\mWᏡOqlјX3!SmDĊ/\VeT- Hpԫi! ,wP2xOW5x?z C#}";`3o$ʬ|7Az8}'eW]o1j{IR=M)J}-~+#VVtv6jFBRM(q8WKR]Mw`ݳ1+<_M5`Ty'S)$c)\xݑ_WXN?X#9~ӬvmB8.Jv"[Bc كw&1l(.j'Rg }&]`@ (|@%Z<4G)5DC_$ArA-14@aTY3bbHwݪķ4,~:iRcz#-f5P8in`,=Tg2 Lغ2^EvB*PKè ;?ck>VqMB^7s%'W 摓TO {S[D[!D2{([ᔅ^EUYgQu Zq )A>P@wT$["~v6}v)c=!x$I9}/-HUx|ˎij (Ѩ6`ҍ+<|Poʌ#I2ؖK];1or 6 pE6mt8[WKܷ A&gEolӊގ8x2h*'ThbM77Z `^3B{ Ĺ !G9 C]awPTL!Nӆ6v\q${5َ_.[_;lݟ1"j,l/DI&zWpŁNw )1.d-I mO [aoN J[߯'rp6VRN2z .CM\1,$<7arq%;Aߨ^vT"U 2P=:Z1pq#5pH2EozA5fvCⓘEZQbUauoE+B3Ho[8t`+dOsZf[An|'5<7m\f5f6A-K_2l:iƬ@xiDp t(4*Ҁ*d ģԚ/ &q"}LJ&,T.GRP2h(Yd#e߲@Ƃ@ӡB7MA&pow($}lШĹo-lpަ~wYP<UY!D(UJܗUmi.Κ]1KJ'\bLY=[=_vor% "솽]3շn䬯vrZXLH&;ӊu?8ȖR58?1yΑM&`#6`}Vu|3:"ΥpSOgxc{4`oڽLMq8If1╾ b㐲ў7Vwr gV=*&|AZCGq<<|LY724&-bHw]Z'A׭=x_haNFwAU;eTN=Mv%t9bJd`/mֱȟqΦ?.x|(9L6A! A'T|Dz.{@hZoh! 4PPy.w;O$U4G4(Ib $Ys;+z4*v@cH ͐fkoBFlȘOv,&f:jd^S?C>ڕmR[`˥2bi>WT?};bXp\u]b, 4vD{Z,9SQ%Nc|]ne}CNIf+;gVdukV;ևI0PK-r{{YfIh'Ѥ;O..QVVqn4sҘj{龼bGEX3&@R!N14S2'q|p|x. `ƈ3C َz8uRg ~Os[P#Q .P~h~KLߨRGTa+%bJX8WQ9R`ҬK b; 4yo (PTк5|44A`ʯ~;q`dRG!jfFkR Xg2 kFV;2 i  iʶiѠ{]\e]~gv! Wy8d"j*vlOl>Շ`z$ͲQ"spša%WTky6uџL1bZ&2U׀v  !4a(3 _cγ΁7~~ z"!Ewij74z/s^h\k V)$myMBqC6B=ğ)2M5&Aͳ]B#S~YYzu71 sA7w's >7}ځHO ɋOUv{1Mzn}b!Y`+af#{tgp2l+iB=GCݽ#06kg8\j iGoBunL/m;P%22O["27ҜJ%}ԛ~0aÐZS2Eyu@gXc@ Q[$4Z&[I K׮B=טRbKK@%p[,Z#&aWLV 0Qy']Z1qC4 17D2_5pxh_HӬȬf"tPgqMLMEbу'!K;J7^;*%A{XrJ3G<ϑf?ܓ_SԪpR)"3n_!w#7jO]Jj[@IyQW]|%bo\^^J/~yI[^VLiTЯЫqfرH$Jo.3],ވ}t;rZ(a U :zl쨿 9۝:*2Sq8U S%{?*a0XL q-y@<962"a@<}(L 1[\k^29@]BHaLWfbfݠOImAj%ثw=(`r,he/l& Bxze!T$nWs%ȭ_"%$F?3dgשHFH䌱WُMpWqA`>k2 @袋]l׃(c5)b0oPp}:h_^o,0?st3cefKZ&jZbY|I9}X5nmQ Q+d{ 4siaΐ찱 8LC¼%i A4^?Afr2d3vouaA]-7q ,IoݼJሰ\0Yg+p!>Ђ̈́×tpB s< /9NW.fQIẁ۰-+_JBpURogѤovC*^%$/bl% CC}?ڌoM|jPA#Y &$_|2W\%.t NBVhxl[<{b5o'CHst\ym#cq-k$[Ba-hطAoFZ^j;SgiACf9>_xTщ5Rj" zwJQዸh(L5&}dGԀǠ2~]n!&8͸b9 iMʌ7A} 8ėP4F]?a>,@m8B]쁆4 齚(4Hwa2Hޒn#XW$g|AD- 8 c0j+~5qv` "ғv}⮥ݟc`xp~Tjj.#^05X?Z)8"37ቯ-M8E,u1c=J`+N˲[8C21=t_RܼH[T㊑Wß(tǸkY켨0qH1K:O+ǒF,U˃[jpk BR>oRl 4qW_ "7hms;Ɋ|xKc?3fʳP5 ;XW(POdj$J(5H.%}㣤`CF\&:Xt><~yf&'S;eK >ӏ2aiZL*"lK)mI߮ʿFCKh^$9^cP@yD8+&XBSkm+ -儩=:]4W$ ]+I` 6mV4|QyeZg8"a˔wo:r؃{r0vbԶܤ+@ ^A(fQWG}Rt="Z 4_ #&WsLLL{Gpq,n>zR׾dX:"UhIn2n;e.49c.Ƙ"̫uZu^kvτOa%Vxm|>&LpHAK z[KFˢgڻa;MGY>2g"pqk/𤒟GL*heYlG0Sy55dw]Gp h֣~iƝsDO{NoVknlɀ{O++[k^A;8^@_꙳Ƈ| @3njncRg TvH^tژl%T9}NԗہN4c,zKl0q]|U=(ʕF~: n90 wS*赝C,G#B*NQ_Wb@r]9~-ƎMK-޵*Q~/H<&xRl_ZChJyC$D]nQϫ#Fb\QgXHs|J$Ur{YYgt6ESKBBAHeIwٿL[= F@Fi7j$Xzg.IEP=Oe7s`3p#U)oKz}Y~:;U¦V#t| Lׅah }͆EFz;-n_dx_=}LlE~%âcÿx^IHT{lɽn*ۿa85ʤW`r !0|gD};)8E N}d0{ #杽A$w mޏɌF'1 5TC`<v\Ay-[Rv:Yȏ0hԈv!.Uf]PXG7L-KHR|a,(̃sJXlI֕V%0N;&(%ò)x'Kj,b<5]8A,$qA `g69{Yyjsl .hYH{ H>4?Q۸tU.(@ w=H :o!gАTJxwM(W2|{-Z5W2Y<'XTf`%8y=曂 ėw *9{lV,\B4M7}ٚR@œ"s:1df r8zRV&W"P 햞*:Aq]?3^JpUzh'87-.m9eCk\NN1rb<ƻB}5l&NSޣ=oHzE94ge%& S\RH9K ikޒȕO"^bdQ7gBӽu9X6 {_UQ"b{AV+ ΎRj`!jy¾V*J}ub#/"vͱөv#S]L^^նPV [ @ȣ#($v5Mֻ'r׌7BKe~NED F)qbz2;a;؛&D ,58[L cw>)h.*]h:f&澺&k;ߞ:;[ Bq#30爷5\gTjڥfNcJpu.Dg͆Vq܂ JytPo0\Λ/^ @ 15$( .mK'uїsj./ [O4$U*ƃI@x)݋j/MdoAgW+ׁv[FWIg!`X s]{^d,9!a:` CKZgnfm s#yȹ%CͿDP&3aAOQ;քG DR+w {cU~al-{hYja)(k6mԫDcquSXle"R=Il/fpN-/[HVzlS?T8 ?*Ϸ[mG60ޘY 7e;-kfiXDd])Lw>?^H'/4q5>A :f9#Yxg|͌"uYהlШ_lK}RW!Dܡ}RAީa))&Ma"lI>Y5سA!Q@\P?H}nӭWKlzvZ,$NT5) @}YJhOnpƱܓ1Ӱ$nOJL ag!a,O`T#Xri1B`b6B&UIP % @쉒: [bHD'i 41W8G$b,sT k9V1E$o'~Ȉng2xEϢh M'@Au/#9f 6.7nHgrIN'I",x򭮶4`] =';gQ?3uZ}wF85j A]EtI_)R|K\AEkq.x}H]ukKeGmq}aຜU[mBF"ԶPtS$v{V}Om%"['!T~PK#MY×Yl7#Hne[t#TSO L'JA=}|ŎbB"3iw_q& LT44:@BH% ufe>Wɗ7*$ hcTsDq p B\=ad𳦒]1lQ8$8 cqx^ VWKI>83ƀXvzzf\@u1P3VGeLb%KI!r2`t̻=ʓWC^MM({SHVRt*Ȑ}b:](VWoʲUa|E`M\+\|Rj?[Fi[T]0ׁ6~am۴Vq:1rIהt6wU;lSvCp?`n1I6SpUt$ҁ95PFY;(`JD'#c WSk\96yNfԫ`(sa} jPdM )D LEgR"CԋR$qNL89IOH2" Q LjVev񍱘xW=.N؍7 [MnIu :_;5AR׶+(~}FS'}9s`lНQ`~#j I.ˁ=w$l~II0C'rip5Ӥ7:#7"L^GMl:0;%|BRRg6 ̥jM|fd$lY.cuw%ֈOwb1aYGJoy1:edj69݂֞T W0NDv<#%;m;.2 ~ujӤK nx7dnDe^Z暰fXhލ nOj>DoP<{j3+>Q:§;͗h`DVhETFg~# DCNsm7랻"eȞKr* Z1}L/A(fKhkfiB%冠ZеSۨg{H{v#m G,_;6[ᵨ15-=,@"6fHU,E`%=Ckc^+B^%Kʊ@<=޸ "K3㋿ x|$0w󯶐*QeX1qk0|?KLDRHT`v3x?z$vܽ@E\UE+r wMv a|*"xkE6Bwaփ>5Ϧ7(vm>jB%A3dA`)?z.eZ(*vOC1)еaBP- 퐓o+,+CCҰPuAxHaL!+v\Jcz *uE'X~wd> F*ׄ{ 2FQ a 0]FtɱFvnabzyԬ_F!b YZ