lilypond-fonts-common-2.18.2-7.3.1>t  DH`pZ%p/=„ A0 ѴU%9ѷΩ{t_Dg~.2z/w;Bd0HD י):tӁqQcZJ-B_1%4K<L" 0o4m3{'*k|$/\\6K?G5?~Ws w3le$UM$o Qm"9zhгhzoJިh;UqB m4755553c286b58424547464d6c6c0032ecbfd2faZ%p/=„'W pan'jU\DI^>; (xhG݁lvJu@PI/أYxI:\[ V-܇})X{{[-e 6m_t;HmS?فϦe; j!k=9UݿЎZ=9_(}/Ew p,.4ICkN_7XrАM^ VrL%ՂavQň4tK@>9X ?Xd % ?  3<E ^o      (4LX(8+9t+:+FUGUHUIUXUYU\U]U^VbVqcWdWeWfWlWuWvWwWxWzXClilypond-fonts-common2.18.27.3.1Lilypond fonts common dirLilyPond is an automated music engraving system. It formats music beautifully and automatically, and has a friendly syntax for its input files. This contains the directory common to all lilypond fonts.Z%$cloud122KopenSUSE Leap 42.3openSUSEGPL-3.0+http://bugs.opensuse.orgSystem/X11/Fontshttp://www.lilypond.orglinuxnoarchKA큤AZ%#S'Z%d32239bcb673463ab874e80d47fae504rootrootrootrootrootrootlilypond-2.18.2-7.3.1.src.rpmlilypond-fonts-common   rpmlib(CompressedFileNames)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsLzma)3.0.4-14.0-14.4.6-14.11.2ZY5GY0XU@TgS9XRTR@RSR@R-@R R@QbQR@P~@P@P> [image of music] * The articulation shorthand for `\staccatissimo' has been renamed from `-|' to `-!'. * Tempo change ranges are now written as `\tempo 4 = 60 - 68' rather than `\tempo 4 = 60 ~ 68'. - make-doc-crash.patch upstreamed- updated to 2.17.24: * bugfixes - make doc do not crash anymore + lilypond-make-doc-crash.patch- updated to 2.17.23: * bugfixes - removed python26.patch and gcc44-relocate.patch- updated to 2.17.20: * Grob `OctavateEight' was renamed to `ClefModifier'. Related context properties were renamed from `xxxOctavationyyy' to `xxxTranspositionyyy'. * There is a new `\absolute' command explicitly marking music as being entered in absolute pitch. While this has been the default previously, an explicit `\absolute' also prevents reinterpretation when the passage is placed inside of `\relative': \relative c { c'4 \absolute { f'' g'' } c } [image of music] * When `\relative' is used without an explicit reference pitch, the reference pitch now is the middle of the first octave, making the first entered pitch indistinguishable from absolute pitch. Previously, omitting the reference pitch would have lead to a default of `c''. Since that choice was somewhat arbitrary, recommended usage was to always specify the reference pitch. * A new command `\single' can be used for converting a property override into a tweak to be applied on a single music expression: 1 [image of music] * Two ways of letting graphical objects not appear in the output are overriding its `transparent' property with `#t' (retaining the original spacing) or overriding its `stencil' property with `#f' (not using any space at all). Those two operations now have the shorthands `\hide' and `\omit', respectively. They can either be given a music expression to tweak, or the name of a graphical object for which an override should be created (for specifying both, use `\single' on the override form): \new Staff \with { \omit Clef } \relative c'' 1 [image of music] * A new command `\temporary' can be applied to overrides in order to not have them replace previous property settings. If a `\revert' is applied to the same property subsequently, the previous setting reappears: \override NoteHead.color = #red c4 \override NoteHead.color = #green d \revert NoteHead.color e2 \override NoteHead.color = #red c4 \temporary\override NoteHead.color = #green d \revert NoteHead.color e \revert NoteHead.color c [image of music] This is mainly useful for writing music functions that need to have some property changed just for the duration of the function. * `\tag', `\removeWithTag', and `\keepWithTag' can now accept a list of symbols rather than just a single symbol for marking, removing, and keeping music with any of multiple tags. This is particularly important for `\keepWithTag' since one cannot achieve the same effect by using multiple consecutive `\keepWithTag' commands. * The `-d old-relative' option has been removed. Not actually accessible from the command line any more, its remaining use was for interpretating `\relative' in LilyPond files converted automatically from version 1.8 or older. It is unclear how much of this was actually still operative.- updated to 2.17.14: * The meaning of `instrumentTransposition' has been reversed. After \set instrumentTransposition = #{ b #} a written `c'' now sounds like `b'. Previously, this would have been the other way round. This and the following change should make dealing with transposing instruments more straightforward. * The music generated by `\set' and `\override' commands is no longer affected by `\transpose'. The main consequence is that `\transpose' will transpose audible/concert pitch and printed pitch by the same amount even when the transposed music contains `\transposition'. Previously, \transpose c' f' \transposition bes' was equivalent to `\transposition f''. Now it stays equivalent to `\transposition bes''. * Tuplets are now created with the `\tuplet' command, which takes a fraction `T/N' to specify that T notes are played in the time usually allowed for N. One `\tuplet' command can create several tuplet groups if their duration is typed after the fraction. \tuplet 3/2 { c8 d e } \tuplet 3/2 { f e d } c2 \tuplet 3/2 4 { c8 d e f e d } c2 [image of music] The `\times' command with its inverted fraction order `N/T' is still available. etc. see NEWS.txt- updated to 2.17.9: * The `\clef' command supports optional octavation: \clef "treble_(8)" c2 c \clef "bass^[15]" c2 c * The LilyPond syntax of dot-separated words `Voice.Accidental' has been made interchangeable with `#'(Voice Accidental)', a Scheme list of symbols. As one result, code like \override Voice.TextSpanner #'(bound-details left text) = "rit." is now equivalent to \override Voice.TextSpanner bound-details.left.text = "rit." or even \override #'(Voice TextSpanner) bound-details.left.text = "rit." * Grob and grob property path no longer need to be specified as two separate arguments to commands like `\override' and `\revert', allowing for the syntax \override Voice.TextSpanner.bound-details.left.text = "rit." Since complementary music functions like `\overrideProperty' cannot support forms with and without separating space at the same time, using a single dotted path is now the preferred form. Specifying grob path and grob property path separately, currently still supported with `\override' and `\revert' for compatibility reasons, is deprecated. * Due to words now being accepted as symbol function arguments, the interfaces of `\accidentalStyle', `\alterBroken', `\footnote' and `\tweak' had to be redesigned where optional symbol arguments were involved. Please check the respective music function documentation for details. * Several commands now accept symbol lists (conveniently entered as dot-separated words) for various kinds of arguments. These include `\accidentalStyle', `\alterBroken', `\footnote', `\hide', `\omit', `\overrideProperty', `\shape', and `\tweak'. * The bar line user interface has changed. Bar glyphs now resemble the appearance of the bar line, so a left repeat sign has to be coded as `.|:'. The command `\defineBarLine' provides an easy way to define additional bar line styles. * Accidentals in the key signature may be printed in octaves other than their traditional positions, or in multiple octaves.- update to version 2.16.1 - This is a bugfix update see : http://code.google.com/p/lilypond/issues/list?can=1&q=Fixed_2_16_1- Re-add lilypond-doc.spec again to build the offline documentation again. It has been adjusted for 2.16.0 from the latest revision where it was still part of and a bit cleaned up. Info pages are excluded because they are part of the main package now.- Update to release 2.16.0 - See : http://lilypond.org/doc/v2.16/Documentation/changes/index.html For upstream changes.- updated to 2.15.42: * Support for Kievan square notation: \new KievanVoice { \cadenzaOn c d e f g a bes \bar "kievan" } [image of music] * Augmentation dots now avoid the other voice in two-voice polyphony so that users can move the `Dot_column_engraver' to set dots independently for each `Voice'. [image of music] * A Scheme function to adjust the control points of curves such as slurs and ties, developed by several users, is now included in LilyPond. g8->( bes,-.) d4 \shape Slur #'((-0.5 . 1.5) (-3 . 0) (0 . 0) (0 . 0)) g8->( bes,!-.) d4 [image of music] * etc., see NEWS.txt- Make if build with latest TeXLive 2012- use Fedora spec file, updated to 2.15.40- Split off documentation build to a separate linked package.- Fixed rpmlint errors in post script and comment in preparation - to submit to factory see bnc#733730- Add Workaround for g++ bug #51323 in 12.1 (compiler flag - fno-optimize-sibling-calls) - Use the guile1 patch only on Factory, on 12.1 guile1 provides still guile-config and not guile1-config- use original source- do not hardcode library names that no longer exist- trying to get the info symlink right- take out the non-portable overwrite of brp scripts- make use of guile1 instead of guile- Created package guile1 to fix factory and 12.1 build. - Updated to release 12.14.2 and removed unnecessary patches, created lilypond-2.14.2-fsfaddr.patch. - For the many upstream changes use info lilypond-changes or visit http://lilypond.org/doc/v2.14/Documentation/changes/index.html 2.14.2 contains minor bug fixes since 2.14.0- Fixed factory documentation build problem due to texlive-bin-2010-34.2 bibtex change in behaviour with patch from lilypond git - lilypond-bib2html.patch. - The patch fixes the following issues : With the latest update of TeX Live 2009, bibtex became a "safe" command in that it cannot write output to any directory other than (a) a subdirectory of the current directory (b) a subdirectory of TEXMFOUTPUT Setting TEXMFOUTPUT to the temporary directory permits bibtex to write in that directory. Additionally, use mkstemp() instead mktemp(), since the latter function has been deprecated since Python 2.3.- Removed droid-fonts to fix factory build with ghostscript 9 see bnc#646093- Update URL: to the new lilypond website.- Fixed gcc45 build failure with lilypond-2.12.3-gcc45fix.patch- Update to 2.12.3-2 to fix documentation issues.- Added droid-fonts to build requirements- Restored old documentation build from source and removed doc tarball - Worked around buld failure due to ghostscript seg fault see bnc#568280- Fix info files with no DIR headers with patch 1 and 2 - Unpack documentation in %prep stage to enable easy patching of info files- Update to 2.12.3 - Change documentation build for 11.2 onwards to noarch - *2009-12-15 Graham PercivalFix out-of-build compile for ja. stable/2.12 release/2.12.3-1 * 2009-12-09 Graham PercivalPossible dist-check fix for missing ja files. * 2009-09-26 Neil PuttockExclude headers/top-level markup when processing system... * 2009-09-26 Jan NieuwenhuizenOnly delete intermediate file if it exists. Works... * 2009-09-16 Patrick McCartyconfigure: Match one PFB font if duplicates are found * 2009-09-16 Patrick McCartyFix `make install', and fix #812 * 2009-09-16 Werner Lemberg[config] Use fc-list. * 2009-09-16 Werner Lemberg[configure]: Reject OTF versions from Century fonts... * 2009-09-16 Patrick McCartyAutoconf: fix CFLAGS/CXXFLAGS recognition * 2009-09-16 Patrick McCartyFix build with Autoconf 2.64 * 2009-09-12 Neil PuttockFix #743: Reinstate warnings for unterminated span... * 2009-09-06 Joe NeemanFix cross-staff thinko. * 2009-07-25 Neil PuttockLSR: Update. * 2009-07-24 Neil PuttockRemove unused folder input/new/revised/. (cherry picked... * 2009-07-20 Carl SorensenFix fret diagram xo string offsets * 2009-07-20 Carl SorensenAdjust FretBoards so all orientations share a common... * 2009-07-20 Carl SorensenRefactor fret diagrams for simpler calls * 2009-07-20 Carl SorensenAdd regression test for fretboard orientation origins * 2009-07-20 Neil PuttockDOCS -- add NEWS items for fret diagrams * 2009-07-20 Mark PoleskyDocs: NR B.6 The Feta font: Rename nodes, fix whitespace. * 2009-07-20 Graham PercivalDoc: add Font to all font nodes (avoids potential confu... * 2009-07-20 Mark PoleskyDocs: NR B.6 The Feta font: Add menu; separate into... * 2009-07-20 Trevor DanielsDocs: NR Tweak command: can't be used to modify stems, * 2009-07-20 Mark PoleskyDocs: NR B.6 The Feta font: Organize glyph list. * 2009-07-20 Patrick McCartyTypo fix * 2009-07-20 Mark PoleskyDocs: NR 1.2.1 Durations: add 128th notes to examples. * 2009-07-20 Trevor DanielsDocs: AU 3.4: Improve convert-ly usage * 2009-07-20 Trevor DanielsDocs: AU 3.4 Clarify action of convert-ly -e * 2009-07-20 Trevor DanielsDocs: AU 3.4 Clarify Convert-ly * 2009-07-20 Mark PoleskyNR 4.4.3 (ex.1) \override -> \overrideProperty * 2009-07-20 Neil PuttockTypos. * 2009-07-20 Mark PoleskyTypo: @var{} -> @code{}. * 2009-07-20 Neil PuttockNitpick: ly:spanner-bound grob name slur -> spanner. * 2009-07-20 Reinhold KainhoferFix doc string * 2009-07-20 Neil PuttockConsider accidentals in optical spacing correction. * 2009-07-19 Joe NeemanFix 546. * 2009-07-19 Joe NeemanRefactor accidental-placement. * 2009-07-19 Joe NeemanStart to break Accidental_placement::calc_positioning_d... * 2009-07-19 Neil PuttockMinor regtest correction. * 2009-07-19 Carl SorensenFix default measure length in beaming-pattern * 2009-07-19 Reinhold KainhoferMusicXML: Don't crash when a part is missing the id... * 2009-07-19 Reinhold KainhoferMusicXML: Some more broken MusicXML applications (beami... * 2009-07-19 Reinhold KainhoferMusicXML: Add exceptions for more broken MusicXML exporters * 2009-07-19 Neil Puttockmodified: Documentation/user/tutorial.itely * 2009-07-19 Jonathan KulpDocs: fix bison link in AU * 2009-07-19 Francisco VilaTypo. * 2009-07-19 KierenAdd docstrings to functions in music-functions-init... * 2009-07-19 Francisco VilaTypo. * 2009-07-19 Jonathan KulpDocs: insert language @warning for non-default languages * 2009-07-19 Jonathan KulpDocs: added line specifying language \include files... * 2009-07-19 Trevor DanielsDocs: NR 1.2.3 Fix @ref * 2009-07-19 Jonathan Kulpchanged \book to \score in running.itely * 2009-07-19 Neil PuttockClean formatting on ly/music-functions-init.ly * 2009-07-19 Andrew WilsonAdd doc strings for functions applyOutput to bar (inclu... * 2009-07-19 Carl SorensenAdd internationalization to dosctring for table-of... * 2009-07-19 Trevor DanielsDocs: NR 4.6.2: Explain effect of system-count * 2009-07-19 Carl SorensenDoc -- clarification to parenthesize by Jon Kulp, based... * 2009-07-19 Trevor DanielsDocs: NR various: links to Stems * 2009-07-19 Trevor DanielsDocs: NR 1.2.4 Beams: add note about beaming over... * 2009-07-19 Trevor DanielsDocs: NR 1.8 Text: Clarify use of fetaBraces * 2009-07-19 Jonathan KulpDocs: typo * 2009-07-19 Patrick McCartyDocs: IR: fix documentation of 'style values * 2009-07-19 Neil PuttockFix LyricText alignment when ignoreMelismata = ##t. * 2009-07-18 Neil PuttockReally fix #741. * 2009-07-17 Patrick McCartyFix compile * 2009-07-17 John MandereauDocs makefiles: get rid of unconditional translations... * 2009-07-17 John MandereauDocs: prepare direct translation of node names in Texin... * 2009-07-17 John MandereauDocs: do not attempt a build of Japanese docs in PDF * 2009-07-17 John MandereauMake Perl treat all I/O streams as UTF-8 * 2009-07-17 John MandereauDocs: move common files and factorize Texinfo macros * 2009-07-17 Carl SorensenEliminate unix-specific -u flags from internationalizat... * 2009-07-17 Maximilian... Use hashlib instead of deprecated md5 module if Python... * 2009-07-17 Neil PuttockFix #741 from Nicolas. * 2009-07-17 John MandereauTranslated docs: fix 'cp' error about multiple CSS... * 2009-07-17 Reinhold Kainhofertexi2html: Don't break with the latest texi2html version * 2009-07-17 Patrick McCartyBackport some regression tests. Fixes compile. * 2009-07-17 Patrick McCartyFix compile * 2009-07-17 Mark PoleskyRemove email address. * 2009-07-17 Neil PuttockRemove deprecated function ly:set-point-and-click. * 2009-07-17 Neil PuttockFix #767. * 2009-07-17 Jan NieuwenhuizenGenerate RELEASE_FILES in $(outdir). Fixes make dists... * 2009-07-17 Neil PuttockFix #781. * 2009-07-17 Patrick McCartyFix #778 * 2009-07-17 John MandereauGit command call fix (remove dash) * 2009-07-17 Joe NeemanAdd a regression test for 453. * 2009-07-17 Joe NeemanFix 453. * 2009-07-17 Graham PercivalRemove text files from makefile, I'm an idiot. * 2009-07-17 Graham PercivalDoc: Remove unneeded doc files (merged with CG). * 2009-07-17 Patrick McCartyFix crash when output-preview-framework is missing * 2009-07-17 Reinhold KainhoferDoc: Fix HTML output * 2009-07-17 Reinhold Kainhofertexi2html: Use only one
 for ...
  * 2009-07-17 Reinhold KainhoferUse HTML tags, not XHTML tags like 
(HTML validato... * 2009-07-17 Joe NeemanFix 541. * 2009-07-17 Joe NeemanFix memory leak of an Output_def. * 2009-07-17 Joe NeemanFix 739. * 2009-07-17 Joe NeemanFix 759. * 2009-07-17 Francisco VilaChange web target name to doc in various places * 2009-07-17 Reinhold KainhoferBetter detection which characters need to be quoted... * 2009-07-17 John MandereauAdd support for texidocs in check-translation * 2009-07-17 Neil PuttockNitpick: make web -> make doc. - See http://git.savannah.gnu.org/gitweb/?p=lilypond.git;a=log;h=refs/tags/release/2.12.3-1 for more changes.- Don't build documentation because of problems on x86_64.- Update to 2.12.2 - Update build dependencies. - Add sensible description from Debian. - Update (quite stale) list of authors. - Fix licence: GPL version 2. - Remove configure options: --enable-shared --disable-optimising. - Fix images in info docs.cloud122 15265395562.18.2-7.3.1lilypond-fonts-commonCOPYINGtruetype/usr/share/doc/packages//usr/share/doc/packages/lilypond-fonts-common//usr/share/fonts/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Maintenance:8109/openSUSE_Leap_42.3_Update/fc8d45608b72c4803951418348226316-lilypond.openSUSE_Leap_42.3_Updatecpiolzma5x86_64-suse-linuxdirectoryASCII text{{m³mM3ߞV?p] crt:bLL'Ȩ&=(Яp>mƈU@q@z( f8*Y9Ӳ(}ncJYٛX椌7|? y?O 3jDOuD:FNVoF66N9>_ ig!{]Ktj Ewٰ>(z7r7 (Vf{~mAyK ooƉ>rH-@ޛ()>򄏦$njAfԗWHPUF:AoZw>z6͛UElX2&rȴVB͈@p0p.ш]0"AmZ Qx}P!i0SS#6}9e 넣eIԎUhq8x4 2;RWu4^|bN:fӋ4šMWPG@ARY-jv$Bv  :W'e[ HP:.R6%6F}ML4'!yC  }L-J[ڭ7 N>qs/IU?P?߿m?5:bUiv%#k/t.k!'p7§?C Dbz7,C߃:C,⦶>9qqI{Fؓ8^ 4|dO@d cD^{: LG5-K>B10\kREKOYqe,Z|O-5iWZ3Ubq6+6ϔi-$sZ.dj=Y$xG|GWyPC9oej, p+UǢ9Adep 0~Eԣi vHiĈ޷@×qp ϴ'Ѓo(FoҸ8?Ff?=PQ㽄WYzd=(DhI/>ܓi]5rB((/U9. %?t~CQb`QFdOU4.oVX~([# vF*G⫮҂ vV(oolxMm"B=US'Xm8+`6(ܲ[ĭsѻ W7!uTq u9}!FG-N$Tm#tl?yNBߘ3adJ ؔ'eL3HT0T6U?ZL]vOY)FB?n6=h8;M[.EVQ؝p 9.9V~!ڃoԑt bGu,r^զ dES}ӘroۅO[VW$L쓦)9aY";n&E^FA`#w6l7BEZJX]y6b= 3d0TU`5,rН &MƓ_;Yc8L ` spfws: E1g$R/{T`{1YMV_mK`g ۮd5p a'" QӼ:n]ҦS)+M#A /K*V&/xMK1*#ޅ7Yw6'Ɍ<νimR[6!)n=[ ;8SI+ bd\%3qSߔJ삯ImO/ݹ@ԉ{_f{t~dITc@gՏYFaC=R͔ AjN`Z7q>9LY4 ]s ;k :gӍ9zA.uW-*ubH3*fێ[fU!ۉNHp/[C72ڣR,w{3oԜWg:ڪ_hc:\dnE"> D_PTv\8Xu@1&(zU<CKH'`!cRб_evKz 9iVq%H&U%y V6&V1R,C/d_x\;J?}pC_,/ XǴlŠ#CIȌSԯhNٻ+o>~tJrA t7͎Tm,QZCae%B^;|Kپq@FakV&soN!Qq[;f0OR`~v,# vm1g>/ Ew\(`GBWTӹU 3lR؏[$ER4?pSB\!c~ZR Y_ز+Ni2Bal;)+)릡Rbp&4sm@-QLJ$.3i9'@ }O;Q ww濑f0¾b[Kd4KV&,Ktĭ,N!ܑZϳ4Dhq"3k=_>8 !AyĦB0A#jA[+0z0r7>`o7j(xA{_'&v4ϛ@(R3e0|HJ\ƶGc; aYƙ`#wzֳ%*BCξpp3%%#aamC}&F%^ cVY?aXUى t:-ASUʗ*{Hb\;T,L3\fB`@"-'s|PNxCEun Qޗ]57ψbv (c)\L}'2oa΅,j%2"+h() ~|ZB.B/ԍDL *93QFxb3YAاaqaE/Ǫ*`r$ E*Gm\ի@͔"79KJ1Ff-/2җbkѷLpMa(R=[lAa2 7#qה=0&n SI%6E#GR+?q Ǽ!pZH&(ȤK›!]i<hYU/%㻇{J; ECO_fšEC)Rix,w=7;:[yzd_ldN0{{ Y/-Ԝ GxÇп"g2"x10< AI*Ϸ,&'I=SH-[(Uai e64O;(#zûb@8$Ӧ>>/{\ -7v̳Uk+˷ HmzQѵskWK/8?M0@i+A0B*ݦ#WUe"`88ؠ&٤E1-CeBe9H#.ahb"^ mgJн,aV_^K(;ځ.K) 1; P?ހzƕ[EÉJZ=R\Υꤐj9BM];`k,#cxpJy?d@XC鬘H@y _\Y0=ySw# kI䠠RVɱ.-Ø@|>$)3.KN<}G/ѵ$AOLUӿZLFJ3|7 9n'~ %fVNOKҗLN)j7Z `/m,әl`lhoB[54N+H5QS*Ђmaɩܗz P95Վ?gi"= X)t ) (D)L?ZbАL{w2q^,z& eAA`xTz Ev5dp=DHZ@;j?QNlS%C^+/\߅8Vbz׶H*. x!9TQE@Es6˽ޞ6m# `]QV֥^u?!o>z'u$]3$]S 2A$Jg02T6D/&jaE5F?~-IS!/cel|*zcoYCMBf%]"* \ D/6FӖ㪥ޡ -g7OV38ۭFh֍ע5dS& h PO|h9F7gO8YQDTk@]^ϋٸ3\br.j h6˶ !/ȥ&[joxJc*T~A6?DUYj}b/tfbOuA^ :F >U&~bk]__|+!xX)im1[4e^ tJd`fEcHtWPz1 굧 C$2ϧ>i`:j[hnLj+Eҧs2z헎-x{[8 uzoH1llc]tȽnx`s"3H~فmD uۮ/spx _l]y g'ޥ0K\ $I b$reGt(J ]F+z$^7HD&*eAVMeVa^"Ga91<AI6< ﺊ)K_e44m"#\7:PrKh?hbȇ>sύ*BUPD ҝ0`gnRvXaOOn)4=m@$]E {H$\>N (Y9'✯AjmkC!hm1o 03h'9ao$CEg O67]r[/XxxeV}R?)Sgi)F8Mg |Q})q0/r#O6|5EM%L 9*#1Ȭe$e]M<@u׈Y! zfl& S5 "2(ޥ8#ewHb>¡﹝PQ\qP?몶 3>(&\Q΂vjWZ⶧kF$":Ko+s+L`Ťj*(/LL7mX >&| lݺ{Hu H࿾J/B2(_JQ ͙3kٙe.oWߔ u>,° t`8jl2H| 8+GuOwI;ʡ _u%ẍU0S2Fi"}XHܗ]֏~a &Tlg[?[weP`E Y-ԗIκQH_$w±݂IxJ^Z >bƧY ?f`T{5V3ܻ1t<{L6I&,JȦN8 L ዕ@VbBGį`RNI?^dd֫;hcM EϓoaG<#rVJ(҈SiZ  ]rs,_fYS0b^L0jG[f j1p1jEH60YImDKoi7T-B:@_'%4ՕΪ:z^ DdLIH6L4Β@iFtEҦWXX8ڎ?}\ݕcJDT|0{Z%~9raDǟC<[[R =o\ŢFHwE6my+.?Jw"wtV~"PɓF'Suӓ#q ^$Ypmc}] !$NzUXڡ}N9'즧c=+ ߓk uPz)Mp8QT4(춅Ldn2ȳmIA& \d{YT_W* ,J0_3ۥUd[ӱK ]McBXcHL=G!ybξ*y Eb ?#rs9w9Maswl5RRD`t:iAg+ov,3ǁ{M΀M T]t[ofo Pȟ(>H MzN"{_Ѕ&CsmykV4"[Ö_ 87ݛܧl:.ԩPk @Qw xo /^#:eٗKB+=;TYW2 a*)c*=(D?bv3@\Vtuv6;熎P}DWwǢ݀m?{:tq-3`q.\ѭEw'Td@|mO3a,jAU‡2q҆Z>vAes`>䥐Tn;S7uEC RhXd^d?0| 'b$[Lz5.9Ȅc|1'SFEJz;%}UTz.;zz_sdW*RD{1FV'&Bi%SҘm{yAhpG`ŷVNMâbs"Yąl!P y] AhQҩf۲rX8S-8`x^yM ;e_?Ā(Wޥ&p\nЖٱXS%gތ% TuiUOj>>P䔓2(n7w.l^]d;#w{;`c8ѼS?U89ImW%7QxB yY&z[w܈MM#g p]4vp8lh[l>m0Fyu0Va]ϳ ѡcTA­3-P]]=t 7[(Y%B)ڗ{#?EV , ޷B̒kyQp F:`a0%4Ub%:4BB=Q+sK B~Rq"Tҧ"2HYcmO WJq{ ad/k=bcG*lvP`G #p@4?;u<0t{s` | nd7ˢ7{Z&O ӧScE5~!>^4fB*0v;Cv"["qIق_ gㅶ3FwP+S{߅T˿t$D%Įcs.i]ZhT߲վ̒|#d^n2#ݺW+VqE^j{-#4E#l &8XOTݷ^KΨ _Av͌1pVf\80%r6 U(Hwd  ?zՕJ;W+Sɧx_,\ȡ!a\H2%qd B딀 5ʾQJW>p{4-zue"4kndV~K׿>f2ݨ}>&},_/C1d ylS˭ dC 6q*~fkJ& tT3}{6=$=vɭne*Sro}< EϼMfd΋ўF6< C 0Uݙ0RH-vP dB -qHDH6g N|/:rr>] oC[GBLMbIT缋fӉWæHgIݩA,6'0ڍ`,<0Nq?rj :|;;-;6;(En>Ŕ w7,`ܝ<oٻo8E>fk[#*p-  LUmc?Wt`]l_Pb@$DԒIlĘ=uD~uyi<'A)hOk2CyJ`5ݠQHV4d } 'pa,270a#LRmK $;ZȇBqN4kͰ-[5. c;krd~@vH_fT"N96dZ;hIaZ?0%ǬڣFt- ^Z6RZfI &\F:Tt~$ SHOQ+