diff options
95 files changed, 3574 insertions, 2220 deletions
diff --git a/Build/tools/etc/check-ctan2tl-output.pl b/Build/tools/etc/check-ctan2tl-output.pl new file mode 100644 index 00000000000..0311df9d8a6 --- /dev/null +++ b/Build/tools/etc/check-ctan2tl-output.pl @@ -0,0 +1,21 @@ + +my $indata=0; +my $innewvspresent=0; +my $linesdiff=0; +my $opdiff=0; +while (<>) { + if (/^BEGIN COMPARE DATA$/) { $indata=1; next ; } + if (/^END COMPARE DATA$/) { $indata=0; next ; } + if (/can't find CTAN directory for /) { $opdiff = -10; last; } + if (!$indata) { next; } + if (/^ new vs\. present /) { $innewvspresent=1; next; } + if (/^CMP: [0-9]* common files, ~([0-9]*) lines different/) { + $innewvspresent=0; + $linesdiff = $1; + last; + } + $opdiff++; + #print if $indata; +} +print "files diff: $opdiff; linesdiff: $linesdiff\n"; + diff --git a/Build/tools/etc/ctan2tl.new b/Build/tools/etc/ctan2tl.new new file mode 100755 index 00000000000..1a486865b34 --- /dev/null +++ b/Build/tools/etc/ctan2tl.new @@ -0,0 +1,168 @@ +#!/bin/sh +# $Id: ctan2tl 2084 2006-09-05 22:03:38Z karl $ +# Public domain. Originally written 2005, Karl Berry. +# +# Initial attempt at pushing a ctan directory into TL. +# See ./README for a bit more info. +# +# Basic usage: ctan2tl TLPKGNAME +# --place to include final `place' invocation (repository adds/removes). +# --no-ctan if already have files in ../cdbuild/raw/PKG. +# Unlikely to work without GNU utilities. +# +# This does not actually commit anything to the repository. Without +# --place, it doesn't even create any files in the repository outside of +# cdbuild/{raw,cooked}. + +unset CDPATH # avoid extraneous output + +mydir=`cd \`dirname $0\` && pwd` # Build/tools +raw=$mydir/../cdbuild/raw +test -d $raw || mkdir $raw +cd $raw || exit 1 + +if test "x$1" = x--place; then + place_chicken= + shift +else + place_chicken=-n +fi + +if test "x$1" = x--no-ctan; then + copy_from_ctan=false + shift +else + copy_from_ctan=true +fi + +pkg=$1 +if test -z "$pkg"; then + echo "$0: no TL package name specified." >&2 + exit 1 +fi + +ctan_dir1=`tlpkginfo --ctan-dir $pkg` +if test -z "$ctan_dir1"; then + echo "$0: can't find CTAN directory for $pkg." >&2 + exit 1 +fi +echo "$0: ctan dir for $pkg is $ctan_dir1" + +if $copy_from_ctan; then + +# remove whatever old stuff we might have. +rm -rf $pkg + +# An important special case: the latex-tds project contains tds-ready +# zip files for the base latex distribution and amslatex. +# We want to use them. +corelatex_tds_pkglist="babel|cyrillic|graphics|latex|psnfss|tools" +amslatex_tds_pkglist="ams|amscls|amsltx2|amsmath|amsrefs" # dup in tlpkginfo +latex_tds_pkglist="latex-tds|$amslatex_tds_pkglist|$corelatex_tds_pkglist" + +if echo "$pkg" | egrep "^($latex_tds_pkglist)\$" >/dev/null; then + mkdir $pkg + ctan_root=`tlpkginfo --ctan-root` + # + # complications: the latex-tds package, for our purposes, is the + # sources for the tools that do the process; that's in the zip file + # source.zip, in the latex-tds directory. Similarly, the zip file for + # latex itself is named "base.zip". Finally, amslatex.zip actually + # contains several packages (= directories) -- such as ams, amscls, + # etc. AMS sets it up that way. + # + if test $pkg = latex-tds; then + zipname=source.zip + elif test $pkg = latex; then + zipname=base.zip + elif echo "$pkg" | egrep "^($amslatex_tds_pkglist)\$" >/dev/null; then + zipname=amslatex.zip + else + zipname=$pkg.zip + fi + (cd $pkg && unzip -qq $ctan_root/macros/latex/contrib/latex-tds/$zipname) + +elif test "$pkg" = rsc; then + # single bst file. + mkdir -p $pkg + cp -p $ctan_dir1 $pkg + +elif test "$pkg" = genmisc; then + # do not copy subdirs, symlinks, or any files but .sty and .tex + # (that is, no patch.doc or pmat.zip). + mkdir -p $pkg + cp -p \ + `find $ctan_dir1/* '(' -type d -o -type l ')' -prune -o \ + '(' -name '*.sty' -o -name *.tex ')' -print` \ + $pkg + +else + # normal case (/. to deref symlinks, e.g., arabtex) + cp -pr $ctan_dir1/. $pkg +fi + +# Another special case: annoyingly, tugboat plain and tugboat latex are +# stored in two different places on ctan. we'll assume we're invoked +# with the latex dir, and now arrange to also copy in the plain stuff to +# a `plain' subdirectory, which ctan2tds.pl has a further special case +# to handle. Maybe we'll come across other cases like this, in which +# case we can generalize this. +# +if test "$pkg" = tugboat; then + ctan_dir2=`echo $ctan_dir1 | sed s/latex/plain/` + destdir2=$pkg/plain + cp -r $ctan_dir2 $destdir2 +fi + +fi # end of copying from CTAN. + + +# +printf "\n ctan2tds\n" +rm -rf ../cooked/$pkg +test -d ../cooked || mkdir ../cooked +../ctan2tds.pl $pkg || exit 1 + +cd ../cooked || exit 1 +printf "\n\f cooked\n" +find -depth -type d | xargs rmdir 2>/dev/null +find $pkg \! -type d -printf "%TY%Tm%Td.%TH%TM %p\n" | sort -r +1 + +# compare to tpm. +Master=../../../Master +tpmfile=`ls $Master/texmf*/tpm/$pkg.tpm 2>/dev/null` +if test -z "$tpmfile"; then + echo "$0: no tpm file for $pkg in `cd $Master; pwd`." >&2 +else + printf "\nBEGIN COMPARE DATA" + printf "\n\f new vs. present $tpmfile\n" + rm -f /tmp/pkgfiles.* + # remove leading text in case of lines starting with texmf. + # Then assume all actual files do start with texmf. + sed -n -e '/TPM:.*Files/,$s,^texmf,./texmf,p' $tpmfile \ + | grep -v '\.tpm$' \ + | sort >/tmp/pkgfiles.tpm + # + # list of files in the new package we've just cooked. + (cd $pkg && find \! -type d -print) | grep -v '/cooked/' \ + | sort >/tmp/pkgfiles.new + # + comm -3 /tmp/pkgfiles.new /tmp/pkgfiles.tpm + # + for common_file in `comm -12 /tmp/pkgfiles.new /tmp/pkgfiles.tpm`; do + diff --ignore-all-space -u0 $Master/$common_file $pkg/$common_file + done >/tmp/tldiff + diff_lines=`wc -l </tmp/tldiff` + diff_lines=`expr $diff_lines / 2` + printf "CMP: %d common files, ~%d lines different (/tmp/tldiff)\n" \ + `comm -12 /tmp/pkgfiles.new /tmp/pkgfiles.tpm | wc -l` $diff_lines + printf "\nEND COMPARE DATA\n" +fi + +printf "\n\f place $place_chicken\n" +rm -rf $pkg.done +../place $place_chicken $pkg +status=$? + +rm -rf ../raw/$pkg +exit $status diff --git a/Build/tools/etc/do_check b/Build/tools/etc/do_check new file mode 100644 index 00000000000..867d939fb62 --- /dev/null +++ b/Build/tools/etc/do_check @@ -0,0 +1,6 @@ + +for i in $(cat missing-tpms) ; do + bn=$(basename $i .tpm) + echo -n "TPM: $bn " + ./ctan2tl.new $bn 2>&1 | perl ./check-ctan2tl-output.pl +done diff --git a/Build/tools/etc/reindent-workingtpm.pl b/Build/tools/etc/reindent-workingtpm.pl new file mode 100644 index 00000000000..0c42b724b3e --- /dev/null +++ b/Build/tools/etc/reindent-workingtpm.pl @@ -0,0 +1,144 @@ + +my @WorkingTPM = qw( + 12many + a0poster aastex abbr abc abstract accfonts acmtrans acronym + active-conf aguplus algorithm2e algorithmicx algorithms + alnumsec ams amscls amsldoc-it amsltx2 amsmath amsrefs + amsthdoc-it apacite appendix arabtex archaic arcs arev + armenian arrayjob arydshln ascii assignment attachfile + aurical + babelbib beamer beamer-tut-pt beebe begriff betababel bezos + bghyphen bibhtml bibleref bibtopic bibunits bigfoot + birthday bitfield blacklettert1 blindtext booklet bophook + boxhandler breakurl bussproofs bytefield + caption carlisle cbcoptic ccaption cdpbundl cellspace + changebar chappg chem-journal chemcompounds cherokee circ + citeref cjhebrew clefval clock cmdtrack cmll colorinfo + colortbl commath compactbib complexity comprehensive + computational-complexity cool coollist coolstr cooltooltips + coordsys courier-scaled courseoutline coursepaper coverpage + crop csquotes ctable cursolatex curve curve2e curves + custom-bib cvsty cyrillic + dancers dashbox dateiliste datetime dcpic decimal digiconfigs + dinat dingbat directory dk-bib doipubmed dottex + draftwatermark dramatist dtxtut dvdcoll dvipsconfig dyntree + ebong eCards economic ednotes eemeir egameps egplot eijkhout + ellipsis elpres elsevier emulateapj endfloat endheads + engrec enumitem envbig epiolmec epsf eqparbox es-tex-faq + ESIEEcv esint esint-type1 eskd eskdx eso-pic etaremune + ethiop ethiop-t1 euro europecv eurosans everypage exam + examdesign examplep exercise expressg extarrows exteps + extpfeil extsizes + faktor fancyhdr fancynum fax featpost filecontents fixme + flagderiv flippdf floatflt floatrow flowfram fltpoint + fmtcount fncychap foekfont fontch fontspec forloop formular + fourier fp free-math-font-survey frenchle fribrief functan + galois gatech-thesis genmisc genmpage germbib ginpenc + glossary gnuplottex gost graphics graphicx-psmin greenpoint + grnumalt GuIT + HA-prosper hands hepthesis hhtensor hitec hrlatex hvfloat + hyperref hyperxmp hyphen-base hyphen-basque hyphen-german + hyphen-greek hyphen-norwegian hyphen-ukenglish + hyphen-usorbian hyplain + ibygrk icsv IEEEconf IEEEtran ifxetex inlinebib invoice + iopart-num isorot isotope + jneurosci jpsj juramisc + kalender kerkis keystroke koma-script + l2picfaq l2tabu-english labelcas labels latex latex-tds + layouts lcd lcg leaflet leawood ledmac lewis lfb lgreek lh + limap linearA lineno lipsum listings listliketab lkproof + logpap lsc lshort-bulgarian lshort-dutch lshort-english + lshort-finnish lshort-french lshort-german lshort-italian + lshort-japanese lshort-korean lshort-mongolian + lshort-polish lshort-portuguese lshort-slovak + lshort-spanish lshort-thai lshort-turkish lshort-ukrainian + lshort-vietnamese ltablex ltabptch ltxindex ltxmisc + mafr magyar mailing makebox makecell makecirc makeglos + makeplot maple marginnote mathdots mathmode maybemath + mcaption mceinleger mdwtools memoir MemoirChapStyles mentis + menu metaobj metaplot metatex metauml mfpic mftinc mhchem + mhs microtype minipage-marginpar minitoc minitoc mla-paper + moderncv movie15 msg multicap munich muthesis mwcls mwrite + nag natbib nath nature ncclatex ncctools newlfm nih noitcrul + nomencl nomentbl ntgclass ntheorem-vn numline numprint + oberdiek ocr-latex octavo ofs ogham oldstyle opcit + papercdcase paresse parrun pauldoc pdf-trans pdfcprot + pdfpages pdfscreen pdftex-def perception perltex permute + pgf phaistos pict2e pictex pittetd placeins plari plates + poemscol polynom powerdot ppr-prv pracjourn preprint + prettyref preview probsoln program protocol pseudocode + psfrag psnfss pspicture pst-3d pst-3dplot pst-bar + pst-barcode pst-blur pst-eucl pst-fr3d pst-func pst-labo + pst-lens pst-math pst-optic pst-osci pst-pdf pst-pdgr + pst-slpe pst-uml pstricks pstricks-add + qcm qtree + randbild rccol rcsinfo refstyle resume robustcommand + robustindex rsc rtkinenc rtklage + sae sauerj sauterfonts savefnmark savesym savetrees scale + scalebar scientificpaper sciposter screenplay script + sectionbox sectsty semantic semaphor seminar semioneside + seqsplit setspace sf298 sffms sgame shadbox shapepar + shorttoc showdim showexpl showlabels sidecap sides siggraph + SIstyle SIunits skaknew slideshow smalltableof smartref + snapshot songbook sort-by-letters soul sparklines spie + splines splitbib splitindex spotcolor sprite srcltx sseq + ssqquote stack stage stdclsdv stdpage stellenbosch struktex + sttools subeqn subeqnarray subfig subfloat substr sudoku + sudokubundle sugconf supertabular svn svn-multi svninfo + swebib syntax syntrace synttree + t-angles Tabbing tableaux tabulary tabvar talk tamethebeast + tengwarscript tensor teubner tex-refs texmate texshade + textcase textfit textopo textpos thesis-titlepage-fhac + thumb thumbpdf ticket titlefoot titlesec titling tocbibind + tocloft todo tokenizer toolbox tools totpages tracking + trajan trfsigns trsym tugboat twoup Type1fonts typedref + typogrid + ucthesis uhrzeit uiucthesis umich-thesis umlaute underlin + undertilde units unitsdef upquote ushort + vancouver variations varindex vector velthuis verse versions + vhistory visualfaq vmargin volumes vpe + wallpaper warning warpcol williams wordlike wrapfig + xcolor xifthen xkeyval xltxtra xq xtab xyling xypic-tut-pt + xytree + york-thesis + ); + + + +my @foo = sort {uc($a) cmp uc($b)} @WorkingTPM; + +print_foo(@foo); + + +sub firstletter { + my ($bar) = @_; + my @foo = split //, $bar; + return(uc($foo[0])); +} + +sub print_foo { + my(@foo) = @_; + my $newletter = 1; + my $curline = ""; + my $curletter = ""; + my $initshift = " "; + my $medshift = " "; + foreach $t (@foo) { + my $fl = firstletter($t); + if ($fl eq $curletter) { + if (length($curline) + 1 + length($t) >= 70) { + print "$curline\n"; + $curline = "$initshift$medshift$t"; + } else { + $curline .= " $t"; + } + } else { + print "$curline\n"; + $curline = "$initshift$t"; + $curletter = $fl; + } + } + print $curline; +} + + diff --git a/Build/tools/tpm-ctan-check b/Build/tools/tpm-ctan-check index b636deacd8c..c2f46b78a0c 100755 --- a/Build/tools/tpm-ctan-check +++ b/Build/tools/tpm-ctan-check @@ -6,103 +6,107 @@ use File::Basename; my @WorkingTPM = qw( - 12many ESIEEcv GuIT HA-prosper IEEEconf IEEEtran - MemoirChapStyles SIstyle SIunits Tabbing Type1fonts - a0poster aastex abbr abc abstract - accfonts acronym active-conf aguplus algorithm2e algorithms - algorithmicx alnumsec - ams amscls amsldoc-it amsltx2 amsmath amsrefs amsthdoc-it - apacite appendix arabtex - archaic arcs arev armenian arrayjob arydshln ascii - assignment attachfile aurical - babelbib beamer beamer-tut-pt beebe begriff betababel - bezos bghyphen bibhtml - bibleref bibtopic bigfoot birthday blacklettert1 booklet boxhandler - breakurl bussproofs bytefield - caption carlisle cbcoptic cellspace changebar chappg - chemcompounds circ cjhebrew clock cmll colortbl commath - complexity comprehensive computational-complexity cool coollist - coolstr cooltooltips coverpage - csquotes cursolatex ctable curve curve2e curves cyrillic - dateiliste datetime dk-bib doipubmed dottex - draftwatermark dtxtut dvdcoll dvipsconfig dyntree - ebong economic ednotes egameps eijkhout elpres emulateapj - elsevier endfloat endheads enumitem es-tex-faq - esint esint-type1 eskdx eso-pic etaremune ethiop europecv - everypage examdesign exercise exteps extpfeil - faktor fancyhdr fancynum fax featpost fixme flagderiv flippdf floatflt - floatrow flowfram - fltpoint fmtcount fncychap foekfont fontch fontspec forloop formular - fourier free-math-font-survey frenchle - galois genmisc genmpage germbib glossary gnuplottex gost graphics - graphicx-psmin grnumalt - hepthesis hhtensor hrlatex hyperref hyplain hyphen-base hyphen-basque - hyphen-german - hyphen-greek hyphen-norwegian hyphen-ukenglish - hyphen-usorbian - ibygrk icsv ifxetex iopart-num - jneurosci juramisc - koma-script - l2picfaq l2tabu-english - labelcas latex latex-tds ledmac lewis lfb lh linearA lineno - listings lkproof lsc - lshort-bulgarian lshort-dutch lshort-english - lshort-finnish lshort-french lshort-german - lshort-italian lshort-japanese lshort-korean - lshort-mongolian lshort-polish lshort-portuguese - lshort-slovak lshort-spanish - lshort-thai lshort-turkish lshort-ukrainian lshort-vietnamese - ltabptch ltxmisc - mafr magyar makecell makeplot marginnote mathdots mathmode - mcaption mdwtools - memoir mentis metauml mfpic - mhchem minipage-marginpar minitoc microtype minitoc mla-paper - moderncv movie15 msg munich muthesis - nag natbib ncclatex ncctools newlfm nih noitcrul - nomencl nomentbl ntheorem-vn numprint - oberdiek ocr-latex octavo opcit - pauldoc pdf-trans pdfcprot pdfpages pdftex-def perception - perltex pgf pictex pict2e placeins plari - polynom poemscol powerdot - ppr-prv pracjourn preview probsoln protocol psfrag psnfss pstricks - pstricks-add - pst-3d pst-3dplot pst-barcode pst-blur pst-eucl pst-func - pst-labo pst-lens pst-optic pst-osci pst-pdf pst-pdgr pst-slpe - pst-uml - qtree - randbild refstyle robustcommand rtkinenc rtklage - sauterfonts savefnmark savesym savetrees scale - scalebar sciposter scientificpaper screenplay script - sectionbox sectsty semantic semaphor - seminar semioneside seqsplit - setspace sf298 sffms sgame shadbox shapepar - shorttoc showdim showexpl showlabels - sidecap sides siggraph skaknew slideshow - smalltableof smartref snapshot songbook - sort-by-letters soul sparklines spie splitindex splines splitbib - spotcolor sprite srcltx sseq ssqquote stack stage - stdclsdv stdpage stellenbosch - sttools struktex subeqn subeqnarray subfig subfloat substr sudoku - sudokubundle sugconf supertabular svn svn-multi - svninfo swebib syntax syntrace synttree - t-angles tableaux tabulary tabvar talk tamethebeast tengwarscript tensor - teubner - tex-refs texmate texshade textcase textfit - textopo textpos thesis-titlepage-fhac thumb thumbpdf ticket - titlefoot - titlesec titling tocbibind tocloft todo tokenizer toolbox - tools totpages tracking trajan - trfsigns trsym tugboat twoup typedref typogrid - ucthesis uhrzeit uiucthesis - umlaute umich-thesis underlin undertilde units unitsdef - upquote ushort - vancouver variations varindex vector velthuis verse versions - vhistory visualfaq vmargin volumes vpe - wallpaper warning warpcol - williams wordlike wrapfig - xifthen xltxtra xq xyling xypic-tut-pt xytree - york-thesis - xcolor xkeyval xtab + 12many + a0poster aastex abbr abc abstract accfonts acmtrans acronym + active-conf aguplus algorithm2e algorithmicx algorithms + alnumsec ams amscls amsldoc-it amsltx2 amsmath amsrefs + amsthdoc-it apacite appendix arabtex archaic arcs arev + armenian arrayjob arydshln ascii assignment attachfile + aurical + babelbib beamer beamer-tut-pt beebe begriff betababel bezos + bghyphen bibhtml bibleref bibtopic bibunits bigfoot + birthday bitfield blacklettert1 blindtext booklet bophook + boxhandler breakurl bussproofs bytefield + caption carlisle cbcoptic ccaption cdpbundl cellspace + changebar chappg chem-journal chemcompounds cherokee circ + citeref cjhebrew clefval clock cmdtrack cmll colorinfo + colortbl commath compactbib complexity comprehensive + computational-complexity cool coollist coolstr cooltooltips + coordsys courier-scaled courseoutline coursepaper coverpage + crop csquotes ctable cursolatex curve curve2e curves + custom-bib cvsty cyrillic + dancers dashbox dateiliste datetime dcpic decimal digiconfigs + dinat dingbat directory dk-bib doipubmed dottex dpfloat + draftwatermark dramatist dtxtut dvdcoll dvipsconfig dyntree + ebong eCards economic ednotes eemeir egameps egplot eijkhout + ellipsis elpres elsevier emulateapj endfloat endheads + engrec enumitem envbig epiolmec epsf eqparbox es-tex-faq + ESIEEcv esint esint-type1 eskd eskdx eso-pic etaremune + ethiop ethiop-t1 euro europecv eurosans everypage exam + examdesign examplep exercise expressg extarrows exteps + extpfeil extsizes + faktor fancyhdr fancynum fax featpost filecontents fixme + flagderiv flippdf floatflt floatrow flowfram fltpoint + fmtcount fncychap foekfont fontch fontspec footbib forloop formular + fourier fp free-math-font-survey frenchle fribrief functan + galois gatech-thesis genmisc genmpage germbib ginpenc + glossary gnuplottex gost graphics graphicx-psmin greenpoint + grnumalt GuIT + HA-prosper hands hepthesis hhtensor hitec hrlatex hvfloat + hyperref hyperxmp hyphen-base hyphen-basque hyphen-german + hyphen-greek hyphen-norwegian hyphen-ukenglish + hyphen-usorbian hyplain + ibygrk icsv IEEEconf IEEEtran ifxetex inlinebib invoice + iopart-num isorot isotope + jneurosci jpsj jurabib juramisc + kalender kerkis keystroke koma-script + l2picfaq l2tabu-english labelcas labels latex latex-tds + layouts lcd lcg leaflet leawood ledmac lewis lfb lgreek lh + limap linearA lineno lipsum listings listliketab lkproof + logpap lsc lshort-bulgarian lshort-dutch lshort-english + lshort-finnish lshort-french lshort-german lshort-italian + lshort-japanese lshort-korean lshort-mongolian + lshort-polish lshort-portuguese lshort-slovak + lshort-spanish lshort-thai lshort-turkish lshort-ukrainian + lshort-vietnamese ltablex ltabptch ltxindex ltxmisc + mafr magyar mailing makebox makecell makecirc makeglos + makeplot maple marginnote mathdots mathmode maybemath + mcaption mceinleger mdwtools memoir MemoirChapStyles mentis + menu metaobj metaplot metatex metauml mfpic mftinc mhchem + mhs microtype minipage-marginpar minitoc minitoc mla-paper + moderncv movie15 msg multicap munich muthesis mwcls mwrite + nag natbib nath nature ncclatex ncctools newlfm nih noitcrul + nomencl nomentbl ntgclass ntheorem-vn numline numprint + oberdiek ocr-latex octavo ofs ogham oldstyle opcit + papercdcase paresse parrun pauldoc pdf-trans pdfcprot + pdfpages pdfscreen pdftex-def perception perltex permute + pgf phaistos pict2e pictex pittetd placeins plari plates + poemscol polynom powerdot ppr-prv pracjourn preprint + prettyref preview probsoln program protocol pseudocode + psfrag psnfss pspicture pst-3d pst-3dplot pst-bar + pst-barcode pst-blur pst-eucl pst-fr3d pst-func pst-labo + pst-lens pst-math pst-optic pst-osci pst-pdf pst-pdgr + pst-slpe pst-uml pstricks pstricks-add + qcm qtree + randbild rccol rcsinfo refstyle resume robustcommand + robustindex rsc rtkinenc rtklage + sae sauerj sauterfonts savefnmark savesym savetrees scale + scalebar scientificpaper sciposter screenplay script + sectionbox sectsty semantic semaphor seminar semioneside + seqsplit setspace sf298 sffms sgame shadbox shapepar + shorttoc showdim showexpl showlabels sidecap sides siggraph + SIstyle SIunits skaknew slideshow smalltableof smartref + snapshot songbook sort-by-letters soul sparklines spie + splines splitbib splitindex spotcolor sprite srcltx sseq + ssqquote stack stage stdclsdv stdpage stellenbosch struktex + sttools subeqn subeqnarray subfig subfloat substr sudoku + sudokubundle sugconf supertabular svn svn-multi svninfo + swebib syntax syntrace synttree + t-angles Tabbing tableaux tabulary tabvar talk tamethebeast + tengwarscript tensor teubner tex-refs texmate texshade + textcase textfit textopo textpos thesis-titlepage-fhac + thumb thumbpdf ticket titlefoot titlesec titling tocbibind + tocloft todo tokenizer toolbox tools totpages tracking + trajan trfsigns trsym tugboat twoup Type1fonts typedref + typogrid + ucthesis uhrzeit uiucthesis umich-thesis umlaute underlin + undertilde units unitsdef upquote ushort + vancouver variations varindex vector velthuis verse versions + vhistory visualfaq vmargin volumes vpe + wallpaper warning warpcol williams wordlike wrapfig + xcolor xifthen xkeyval xltxtra xq xtab xyling xypic-tut-pt + xytree + york-thesis ); #abstyles not updated but too old to matter #logic/gn-logic14 conflicts with logic font diff --git a/Master/texmf-dist/bibtex/bib/jurabib/jbtest.bib b/Master/texmf-dist/bibtex/bib/jurabib/jbtest.bib index ab0fed42fee..e60d0ee2a70 100644 --- a/Master/texmf-dist/bibtex/bib/jurabib/jbtest.bib +++ b/Master/texmf-dist/bibtex/bib/jurabib/jbtest.bib @@ -115,7 +115,7 @@ @ARTICLE{eujenfrank, author = {Heiko Eujen and Rainer Frank}, gender = {pm}, - title = {Anfechtung der Bevollm{\"a}chtigung nach Abschlu^^df des + title = {Anfechtung der Bevollm{\"a}chtigung nach Abschluß des Vertretergesch{\"a}ftes\,?}, language = {german}, journal = {JZ}, diff --git a/Master/texmf-dist/bibtex/bst/chem-journal/jcc.bst b/Master/texmf-dist/bibtex/bst/chem-journal/jcc.bst index 8370282bd53..3a7a60c2e47 100644 --- a/Master/texmf-dist/bibtex/bst/chem-journal/jcc.bst +++ b/Master/texmf-dist/bibtex/bst/chem-journal/jcc.bst @@ -1,18 +1,18 @@ -% BibTeX bibliography style `jcc' for J. Comp. Chem. -% 1/26/96 Joerg-R. Hill +% BibTeX bibliography style `jcc2005' for J. Comp. Chem. +% 03 May 05 A. Cervellino % no output of 'title' for 'article', 'book', 'inbook', 'incollection' % no output of 'note' except in 'unpublished' +% initials after the name, semicolons to separate authors, +% etc. usw. % -% version 0.99a for BibTeX versions 0.99a or later, LaTeX version 2.09. -% Copyright (C) 1985, all rights reserved. +% for BibTeX versions 0.99a or later, LaTeX2e. +% Copyright under Latex Project Public License (LPPL) % Copying of this file is authorized only if either % (1) you make absolutely no changes to your copy, including name, or % (2) if you do make changes, you name it something other than % btxbst.doc, plain.bst, unsrt.bst, alpha.bst, and abbrv.bst. % This restriction helps ensure that all standard styles are identical. -% The file btxbst.doc has the documentation for this style. % -% Fixed article, book references 11/10/92---CLF ENTRY { address @@ -231,6 +231,13 @@ FUNCTION {paren} if$ } +FUNCTION {comma} +{ duplicate$ empty$ + { pop$ "" } + { swap$ * "," * } + if$ +} + INTEGERS { nameptr namesleft numnames } FUNCTION {format.names} @@ -239,12 +246,12 @@ FUNCTION {format.names} s num.names$ 'numnames := numnames 'namesleft := { namesleft #0 > } - { s nameptr "{f.~}{vv~}{ll}{, jj}" format.name$ 't := + { s nameptr "{vv~}{ll,~}{jj,~}{f.}" format.name$ 't := nameptr #1 > { namesleft #1 > - { ", " * t * } + { "; " * t * } { numnames #2 > - { "," * } + { "" * } 'skip$ if$ t "others" = @@ -325,7 +332,7 @@ FUNCTION {format.date} if$ } { month empty$ - { year paren } + { year } { month " " * year paren } if$ } @@ -621,8 +628,8 @@ FUNCTION {article} format.authors "author" output.check crossref missing$ { journal emphasize "journal" output.check - format.vol.num.pages output new.item format.date "year" output.check + format.vol.num.pages output new.item } { format.article.crossref output.nonnull format.pages output diff --git a/Master/texmf-dist/bibtex/bst/rsc/rsc.bst b/Master/texmf-dist/bibtex/bst/rsc/rsc.bst index 25d816ea9b8..856d6a976c2 100644 --- a/Master/texmf-dist/bibtex/bst/rsc/rsc.bst +++ b/Master/texmf-dist/bibtex/bst/rsc/rsc.bst @@ -1,50 +1,56 @@ % ---------------------------------------------------------------- % BibTeX bibliography style `rsc' for Dalton Trans., -% Org. Biomol. Chem., etc. +% Org. Biomol. Chem., Chem. Commun., Phys. Chem. Chem. Phys., etc. % ---------------------------------------------------------------- % % ---------------------------------------------------------------- % Maintained by Joseph A. Wright % E-mail: joseph.wright@morningstar2.co.uk +% Released under the GNU General Public License +% See http://www.gnu.org/licenses/gpl.txt % ---------------------------------------------------------------- % ---------------------------------------------------------------- % History +% 2006-10-30 Improvements to patent number handling; automatic +% digit grouping. Patent assignee recognised from +% organization field. Added support for non-standard +% types as in achemso.bst +% 2006-10-22 Added converters for edition numbers (to change +% 1 to 1st, 2 to 2nd, etc.) from custom-bib +% package. % 2006-06-27 Substantial improvements to output consistency -% with RSC style requirements +% with RSC style requirements. % Improved support for unpublished works, in press % and so on. % ---------------------------------------------------------------- % % ---------------------------------------------------------------- -% Usage notes -% 1) Patents. Patents can be saves as type 'patent' or 'other' +% Usage notes: +% 1) Other than the 'article' reference type, the RSC publication +% rules give only limited guidance. I have therefore had to +% look at a number of real-world examples, and pick the useage +% I am happiest with. So of the layout is therefore more of +% a personal preference than anything else. +% 2) Patents. Patents can be saves as type 'patent' or 'other' % Fill in as for article, and the correct formatting will % result (Authors, "Journal", Year). Any other use of 'other' -% will give the same result. -% 2) Unpublished. If a journal is given (for example, for +% will give the same result. Patent numbers are automatically +% digit-grouped if they are purely made up of digits. Assignee +% is given in the organization field. +% 3) Unpublished. If a journal is given (for example, for % submitted or in press articles), then this will be printed. % Use the 'note' field for the status of the references % (personal communication, in press, etc.) -% 3) In press articles with DOI. If unpublished articles have +% 4) In press articles with DOI. If unpublished articles have % a DOI given, this will be given in the output, with % the year added as well. In this case, no 'note' is added -% 4) Miscellaneous (e.g. software). Use the 'howpublished' field -% for organisation,address etc. -% ---------------------------------------------------------------- -% -% ---------------------------------------------------------------- -% Based on original file from BibTeX distribution. Notice from -% that file is reproduced below: -% ---------------------------------------------------------------- -% version 0.99a for BibTeX versions 0.99a or later, LaTeX version 2.09. -% Copyright (C) 1985, all rights reserved. -% Copying of this file is authorized only if either -% (1) you make absolutely no changes to your copy, including name, or -% (2) if you do make changes, you name it something other than -% btxbst.doc, plain.bst, unsrt.bst, alpha.bst, and abbrv.bst. -% This restriction helps ensure that all standard styles are identical. -% The file btxbst.doc has the documentation for this style. +% 5) Miscellaneous (e.g. software). Use the 'howpublished' field +% for organisation, address etc. +% 6) The non-standard types remark, inpress and submitted are +% supported for compatibility with achemso.bst. Note that they +% are implemented to act in the same way as the rest of this +% style. % ---------------------------------------------------------------- ENTRY @@ -273,6 +279,127 @@ FUNCTION {paren} if$ } +% Some functions taken from custombib.tex +FUNCTION {bbl.first} +{ "1st" } + +FUNCTION {bbl.second} +{ "2nd" } + +FUNCTION {bbl.third} +{ "3rd" } + +FUNCTION {bbl.fourth} +{ "4th" } + +FUNCTION {bbl.fifth} +{ "5th" } + +FUNCTION {bbl.st} +{ "st" } + +FUNCTION {bbl.nd} +{ "nd" } + +FUNCTION {bbl.rd} +{ "rd" } + +FUNCTION {bbl.th} +{ "th" } + +FUNCTION {eng.ord} +{ duplicate$ "1" swap$ * + #-2 #1 substring$ "1" = + { bbl.th * } + { duplicate$ #-1 #1 substring$ + duplicate$ "1" = + { pop$ bbl.st * } + { duplicate$ "2" = + { pop$ bbl.nd * } + { "3" = + { bbl.rd * } + { bbl.th * } + if$ + } + if$ + } + if$ + } + if$ +} + +FUNCTION {is.num} +{ chr.to.int$ + duplicate$ "0" chr.to.int$ < not + swap$ "9" chr.to.int$ > not and +} + +FUNCTION {extract.num} +{ duplicate$ 't := + "" 's := + { t empty$ not } + { t #1 #1 substring$ + t #2 global.max$ substring$ 't := + duplicate$ is.num + { s swap$ * 's := } + { pop$ "" 't := } + if$ + } + while$ + s empty$ + 'skip$ + { pop$ s } + if$ +} + +FUNCTION {bibinfo.check} +{ swap$ + duplicate$ missing$ + { + pop$ pop$ + "" + } + { duplicate$ empty$ + { + swap$ pop$ + } + { swap$ + pop$ + } + if$ + } + if$ +} + +FUNCTION {convert.edition} +{ extract.num "l" change.case$ 's := + s "first" = s "1" = or + { bbl.first 't := } + { s "second" = s "2" = or + { bbl.second 't := } + { s "third" = s "3" = or + { bbl.third 't := } + { s "fourth" = s "4" = or + { bbl.fourth 't := } + { s "fifth" = s "5" = or + { bbl.fifth 't := } + { s #1 #1 substring$ is.num + { s eng.ord 't := } + { edition 't := } + if$ + } + if$ + } + if$ + } + if$ + } + if$ + } + if$ + t +} + INTEGERS { nameptr namesleft numnames } FUNCTION {format.names} @@ -325,6 +452,117 @@ FUNCTION {format.editors} if$ } +INTEGERS { a b } + +FUNCTION {mult} +{ + 'a := %% we store the first value + 'b := %% we store the second value + + b #0 < %% We remember the sign of b, and + {#-1 #0 b - 'b :=} %% then consider its absolute value. + {#1} %% + if$ %% + + #0 %% Put 0 on the stack. + {b #0 >} %% While b is strictly positive, + { %% we add a to the value on the stack + a + %% and decrement b. + b #1 - 'b := %% + } %% + while$ %% + + swap$ %% Last, we take the opposite + 'skip$ %% if b was negative. + {#0 swap$ -} %% + if$ %% +} + +FUNCTION {chr.to.value.silent} %% The ASCII code of a character +{ + chr.to.int$ #48 - %% ASCII value of "0" -> 48 + duplicate$ duplicate$ %% "1" -> 49 + #0 < swap$ #9 > or %% ... + { pop$ pop$ "0" #0 } + {} + if$ +} + +FUNCTION {str.to.int.aux.silent} %% The auxiliary function +{ + {duplicate$ empty$ not} %% While the string is not empty + { %% consider its first char + swap$ #10 mult 'a := %% and ``add'' it at the end of + duplicate$ #1 #1 substring$ %% the result. + chr.to.value.silent a + + swap$ + #2 global.max$ substring$ + } + while$ + pop$ +} + +FUNCTION {str.to.int.silent} +{ %% Handling negative values + duplicate$ #1 #1 substring$ "-" = + {#1 swap$ #2 global.max$ substring$} + {#0 swap$} + if$ + %% Initialization, and then + #0 swap$ str.to.int.aux.silent %% call to the aux. funtion + swap$ + {#0 swap$ -} %% And handle the sign. + {} + if$ +} + +% Two functions from Nicolas Markey + +FUNCTION{is.a.digit} +{ + duplicate$ "" = + {pop$ #0} + {chr.to.int$ #48 - duplicate$ + #0 < swap$ #9 > or not} + if$ +} + +FUNCTION{is.a.number} +{ + {duplicate$ #1 #1 substring$ is.a.digit } + {#2 global.max$ substring$} + while$ + "" = +} + +FUNCTION {n.separate.multi} +{ 't := + "" + #0 'numnames := + t text.length$ #4 > t is.a.number and % Test that t is both: + { % 1) a number + { t empty$ not } % 2) over four digits long + { t #-1 #1 substring$ is.num + { numnames #1 + 'numnames := } + { #0 'numnames := } + if$ + t #-1 #1 substring$ swap$ * + t #-2 global.max$ substring$ 't := + numnames #4 = + { duplicate$ #1 #1 substring$ swap$ + #2 global.max$ substring$ + "\," swap$ * * + #1 'numnames := + } + 'skip$ + if$ + } + while$ + } + { t swap$ * } + if$ +} + % Need a different format for books with editors % than for editors in a collection @@ -445,12 +683,15 @@ FUNCTION {format.number.series} } FUNCTION {format.edition} -{ edition empty$ - { "" } - { output.state mid.sentence = - { edition "l" change.case$ " edn." * } - { edition "t" change.case$ " edn." * } - if$ +{ edition duplicate$ empty$ 'skip$ + { + convert.edition + output.state mid.sentence = + { "l" } + { "t" } + if$ change.case$ + "edn." bibinfo.check + " " * "edn." * } if$ } @@ -499,6 +740,17 @@ FUNCTION {format.pages.nopp} if$ } +FUNCTION {format.pages.patent} +{ pages empty$ + { "there is no patent number for " cite$ * warning$ } + { pages multi.page.check + { pages n.dashify } + { pages n.separate.multi } + if$ + } + if$ +} + FUNCTION {format.vol.num.pages} { volume boldface field.or.null number empty$ @@ -640,11 +892,11 @@ FUNCTION {format.crossref.editor} { editor #1 "{vv~}{ll}" format.name$ editor num.names$ duplicate$ #2 > - { pop$ " et~al." * } + { pop$ " \emph{et~al.}" * } { #2 < 'skip$ { editor #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" = - { " et~al." * } + { " \emph{et~al.}" * } { " and " * editor #2 "{vv~}{ll}" format.name$ * } if$ } @@ -725,10 +977,15 @@ FUNCTION {article} FUNCTION {patent} { output.bibitem - format.authors "author" output.check + organization empty$ + { format.authors "author" output.check } + { format.authors + " (" organization ")" * * * + "author" output.check + } + if$ journal emphasize "journal" output.check - " " - format.pages.nopp output + format.pages.patent "pages" output.check format.date "year" output.check fin.entry } @@ -890,7 +1147,7 @@ FUNCTION {manual} FUNCTION {mastersthesis} { output.bibitem format.authors "author" output.check - "M.Sc.~thesis" format.thesis.type output.nonnull + "M.Sc.~thesis" emphasize format.thesis.type output.nonnull school "school" output.check address output format.date "year" output.check @@ -912,7 +1169,7 @@ FUNCTION {misc} FUNCTION {phdthesis} { output.bibitem format.authors "author" output.check - "Ph.D.~thesis" format.thesis.type output.nonnull + "Ph.D.~thesis" emphasize format.thesis.type output.nonnull school "school" output.check address output format.date "year" output.check @@ -981,6 +1238,33 @@ FUNCTION {unpublished} fin.entry } +% The next three dunctions are taken from +% achemso to provide compatiblity. They have +% been modified to conform to the approach taken by +% the rest of this style. + +FUNCTION { submitted } +{ output.bibitem + format.authors "author" output.check + "submitted for publication in" + journal emphasize space.connect "journal" output.check + fin.entry +} + +FUNCTION { inpress } +{ output.bibitem + format.authors "author" output.check + journal emphasize "journal" output.check + "in press" output + fin.entry +} + +FUNCTION { remark } +{ output.bibitem + note "note" output.check + fin.entry +} + FUNCTION {default.type} { misc } MACRO {jan} {"January"} diff --git a/Master/texmf-dist/doc/generic/pst-bar/LICENSE b/Master/texmf-dist/doc/generic/pst-bar/LICENSE index 5758f0f0045..d0d0621559e 100644 --- a/Master/texmf-dist/doc/generic/pst-bar/LICENSE +++ b/Master/texmf-dist/doc/generic/pst-bar/LICENSE @@ -1,2 +1,2 @@ -This material is subject to the LaTeX Project Public License. See -http://www.ctan.org/tex-archive/help/Catalogue/licenses.lppl.html for details. +This material is subject to the LaTeX Project Public License. See
+http://www.ctan.org/tex-archive/help/Catalogue/licenses.lppl.html for details.
diff --git a/Master/texmf-dist/doc/generic/pst-bar/README b/Master/texmf-dist/doc/generic/pst-bar/README index cab7a017cba..7ed6a090579 100644 --- a/Master/texmf-dist/doc/generic/pst-bar/README +++ b/Master/texmf-dist/doc/generic/pst-bar/README @@ -1,17 +1,17 @@ -With pst-bar, one may use pstricks to produce bar charts directly from a data -file. This package is still in the beta stage --- the usual caveats pertaining -to beta software apply. Additional features and improved (in both content and -layout) documentation will be provided as the code stabilizes. - -INSTALLATION: - -pst-bar consists of three files: pst-bar.sty, pst-bar.tex, and pst-bar.pro. -Place the first two anywhere your installation can find them (typically -$LOCALTEXMF/tex/latex/pst-bar for pst-bar.sty and -$LOCALTEXMF/tex/generic/pst-bar for pst-bar.tex). Place pst-bar.pro where dvips -can find it, typically in the pstricks subdirectory of your dvips directory -(i.e., $LOCALTEXMF/dvips/pstricks). - -DOCUMENTATION: - -See pst-bar-doc.ps or pst-bar-doc.pdf for details on using pst-bar. +With pst-bar, one may use pstricks to produce bar charts directly from a data
+file. This package is still in the beta stage --- the usual caveats pertaining
+to beta software apply. Additional features and improved (in both content and
+layout) documentation will be provided as the code stabilizes.
+
+INSTALLATION:
+
+pst-bar consists of three files: pst-bar.sty, pst-bar.tex, and pst-bar.pro.
+Place the first two anywhere your installation can find them (typically
+$LOCALTEXMF/tex/latex/pst-bar for pst-bar.sty and
+$LOCALTEXMF/tex/generic/pst-bar for pst-bar.tex). Place pst-bar.pro where dvips
+can find it, typically in the pstricks subdirectory of your dvips directory
+(i.e., $LOCALTEXMF/dvips/pstricks).
+
+DOCUMENTATION:
+
+See pst-bar-doc.ps or pst-bar-doc.pdf for details on using pst-bar.
diff --git a/Master/texmf-dist/doc/latex/ccaption/README b/Master/texmf-dist/doc/latex/ccaption/README index a3f3bdbed9c..7ab0ea913e8 100644 --- a/Master/texmf-dist/doc/latex/ccaption/README +++ b/Master/texmf-dist/doc/latex/ccaption/README @@ -7,6 +7,9 @@ Tools are provided for defining your own captioning styles. The packagehas been tested in conjunction with the rotating, caption2, subfigure, sidecap, endfloat, longtable, xtab, tocloft and hyperref packages. +Changes in version 3.2a (2005/03/29) +o Fixed a labelling problem with bilingual captions + Changes in version 3.2 (2005/03/21) o New commands for bilingual captions in longtables @@ -110,7 +113,7 @@ o Print ccaption.dvi for a hardcopy of the package manual o Move ccaption.sty to a location where LaTeX will find it (see the FAQ http://www.tex.ac.uk/faq for more about this). -2005/03/21 +2005/03/29 Peter Wilson herries dot press at earthlink dot net diff --git a/Master/texmf-dist/doc/latex/ccaption/ccaption.pdf b/Master/texmf-dist/doc/latex/ccaption/ccaption.pdf Binary files differindex df982408827..27ca02b652c 100644 --- a/Master/texmf-dist/doc/latex/ccaption/ccaption.pdf +++ b/Master/texmf-dist/doc/latex/ccaption/ccaption.pdf diff --git a/Master/texmf-dist/doc/latex/cdpbundl/00readme.txt b/Master/texmf-dist/doc/latex/cdpbundl/00readme.txt index 0ee85668d63..a6e828117d0 100644 --- a/Master/texmf-dist/doc/latex/cdpbundl/00readme.txt +++ b/Master/texmf-dist/doc/latex/cdpbundl/00readme.txt @@ -4,7 +4,7 @@ This is file `00readme.txt'. This file is part of a work named "C.D.P. Bundle". -Copyright (C) 1999-2005 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. +Copyright (C) 1999-2006 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. The C.D.P. Bundle may be distributed and/or modified under the conditions of the LaTeX Project Public License, either version 1.3 @@ -26,7 +26,7 @@ This file, after giving a brief description of the C.D.P. Bundle, explains how to install it and how to generate its--alas, still incomplete!--documentation. -January 1, 2005 +January 1, 2006 (vers. 0.34) @@ -45,19 +45,18 @@ CONTENTS A DOZEN LINES DESCRIPTION OF THE SOFTWARE ========================================= -The C.D.P. Bundle was originally developed for a free association -named "C.D.P." (more on it in the documentation), to typeset its -official letters with the appropriate letterhead; but more generally, -it can be used to typeset high-quality business letters formatted -according to Italian style conventions. It is highly configurable, -and its modular structure provides you with building blocks of -increasing level, by means of which you can compose practically every -kind of business letter you could need (including anglo-saxon ones!). -It is also possible to write letters divided into sections and -paragraphs, to include floating figures and tables, and to use the -commands "\tableofcontents", "\listoffigures", and "\listoftables" to -compile the relevant indexes. A single input file can contain several -letters, and each letter will have its own table of contents, etc., +The C.D.P. Bundle was originally developed for a free association named +"C.D.P." (more on it in the documentation), to typeset its official letters +with the appropriate letterhead; but more generally, it can be used to +typeset high-quality business letters formatted according to Italian style +conventions. It is highly configurable, and its modular structure provides +you with building blocks of increasing level, by means of which you can +compose practically every kind of business letter you could need (including +anglo-saxon ones!). It is also possible to write letters divided into +sections and paragraphs, to include floating figures and tables, and to use +the commands "\tableofcontents", "\listoffigures", and "\listoftables" to +compile the relevant indexes. A single input file can contain several +letters, and each letter will have its own table of contents, etc., independent from the other ones. @@ -65,24 +64,24 @@ independent from the other ones. DRAWBACKS ========= -The documentation included in this distribution is absolutely minimal. -For meaningful instructions on how to use the macros, the reader is -referred to other documents available at the web site of the author's -department, which, however, are written in Italian. Since the main -purpose of these macros is to typeset letters according to Italian -conventions, this should not be a problem. I shall consider translating -the documentation in English only if at least 5 persons ask me to. +The documentation included in this distribution is absolutely minimal. For +meaningful instructions on how to use the macros, the reader is referred to +other documents available at the web site of the author's department, +which, however, are written in Italian. Since the main purpose of these +macros is to typeset letters according to Italian conventions, this should +not be a problem. I will consider translating the documentation in English +only if at least 5 persons ask me to. INSTALLATION IN A SNAPSHOT ========================== -The C.D.P. Bundle is distributed in the usual .dtx + .ins format. The -main file is `cdpbundl.dtx', with installation script `cdpbundl.ins'. -Do the usual things to install it and to generate the documentation. -If you don't know what the usual things are, read below. Note that to -generate the documentation you should do the following: +The C.D.P. Bundle is distributed in the usual .dtx + .ins format. The main +file is `cdpbundl.dtx', with installation script `cdpbundl.ins'. Do the +usual things to install it and to generate the documentation. If you don't +know what the usual things are, read below. Note that in order to generate +the documentation you should do the following: latex; latex; makeindex (.idx); makeindex (.glo); latex; latex. @@ -91,17 +90,17 @@ latex; latex; makeindex (.idx); makeindex (.glo); latex; latex. CHECKING THE CONTENTS OF THE DISTRIBUTION ========================================= -Before installing the C.D.P. Bundle and generating its documentation, it -is a good idea to read the file `manifest.txt', which lists all the -files that make up the distribution, to check that you don't lack any of -them (in particular, that you have the file `manifest.txt' itself!). If -you do find that some files are missing, don't hesitate to complain to -the distributor from whom you obtained the others: this person, company, -or institution is infringing the copyright (actually, the copyleft) of -the C.D.P. Bundle. Please remember, however, that in order to comply -with the copyright a distributor is only requested to supply the files -listed in `manifest.txt' under the title "MEANING OF THE TERM `Work'", -and not those listed under "MEANING OF THE TERM `Compiled Work'". +Before installing the C.D.P. Bundle and generating its documentation, it is +a good idea to read the file `manifest.txt', which lists all the files that +make up the distribution, to check that you don't lack any of them (in +particular, that you have the file `manifest.txt' itself!). If you do find +that some files are missing, don't hesitate to complain to the distributor +from whom you obtained the others: this person, company, or institution is +infringing the copyright (actually, the copyleft) of the C.D.P. Bundle. +Please remember, however, that in order to comply with the copyright a +distributor is only requested to supply the files listed in `manifest.txt' +under the title "MEANING OF THE TERM `Work'", but not those listed under +"MEANING OF THE TERM `Compiled Work'". @@ -110,13 +109,12 @@ HOW TO INSTALL THE C.D.P. BUNDLE To install the C.D.P. Bundle, follow these steps: -1) Make sure that the files `cdpbundl.dtx' and `cdpbundl.ins' are placed -in the same directory; below, we shall indicate this directory as "the -current directory". +1) Make sure that the files `cdpbundl.dtx' and `cdpbundl.ins' are placed in +the same directory; below, we shall indicate this directory as "the current +directory". -2) Run LaTeX (or Plain TeX) once on the file `cdpbundl.ins'. This -will generate, in the current directory, the following LaTeX input -files: +2) Run LaTeX (or Plain TeX) once on the file `cdpbundl.ins'. This will +generate, in the current directory, the following LaTeX input files: adiseal.sty articoletteracdp.cls @@ -128,39 +126,38 @@ files: lettcdpadi.cls letteracdp.cls -3) Move all the files listed in 2) from the current directory to a -LaTeX input directory--see b) and c) below. +3) Move all the files listed in 2) from the current directory to a LaTeX +input directory--see b) and c) below. 4) If you wish, delete the file `cdpbundl.log' to save disk space. Installation is now finished! The following comments may be useful: -a) The above listing of all the files you need to move is also -displayed on the terminal at the end of the run of the file -`cdpbundl.ins'. - -b) The documentation of your TeX installation should tell you how to -find the LaTeX input directory/ies, and probably also how to create -new LaTeX input directories reserved to hold your private classes and -packages. If your TeX installation offers you the chance of defining -your private LaTeX input directories, I recommend you exploit this -possibility and place the generated files into such a directory. - -c) If you are not able to find the LaTeX input directories, or you are -not allowed to modify them and cannot create your personal LaTeX input -directories, do this: place all the files listed under 2) above in any -directory of your choice (a newly created, empty directory would be -the best choice, however); then put all the LaTeX source files that -you want to typeset using the C.D.P. Bundle in that same directory. -Of course, this solution becomes impractical if the number of such -source files exceeds a dozen or so; but for a few files you can do -this way, at least until you decide to finally learn how to create -your private LaTeX input directories! :-) - -d) You may also choose to install the C.D.P. Bundle inside the main -texmf tree of your TeX installation (as opposed to installing it inside -a directory devoted to private classes and packages). In this case, -note that the TDS-compliant location for the C.D.P. Bundle, that is, the +a) The above listing of all the files you need to move is also displayed on +the terminal at the end of the run of the file `cdpbundl.ins'. + +b) The documentation of your TeX installation should tell you how to find +the LaTeX input directory/ies, and probably also how to create new LaTeX +input directories reserved to hold your private classes and packages. If +your TeX installation offers you the chance of defining your private LaTeX +input directories, I recommend you exploit this possibility and place the +generated files into such a directory. + +c) If you are not able to find the LaTeX input directories, or you are not +allowed to modify them and cannot create your personal LaTeX input +directories, do this: place all the files listed under 2) above in any +directory of your choice (a newly created, empty directory would be the +best choice, however); then put all the LaTeX source files that you want to +typeset using the C.D.P. Bundle in that same directory. Of course, this +solution becomes impractical if the number of such source files exceeds a +dozen or so; but for a few files you can do this way, at least until you +decide to finally learn how to create your private LaTeX input directories! +:-) + +d) You may also choose to install the C.D.P. Bundle inside the main texmf +tree of your TeX installation (as opposed to installing it inside a +directory devoted to private classes and packages). In this case, note +that the TDS-compliant location for the C.D.P. Bundle, that is, the directory inside which you should put all the files listed in 2), is $TEXMF/tex/latex/cdpbundl/ @@ -169,44 +166,39 @@ The documentation, on the other hand, should be stored inside $TEXMF/doc/latex/cdpbundl/ -Of course, in order to do so you must have appropriate access -priviledges to the texmf tree of your site. +Of course, in order to do so you must have appropriate access priviledges +to the texmf tree of your site. HOW TO GENERATE THE DOCUMENTATION ================================= -A shortened form of the documentation, already typeset and packaged in -PDF format, is given in the file `overview.pdf' that you might have -found on some sites (e.g., the CTAN sites). This file, however, is -not part of the C.D.P. Bundle and distributors are not requested to -include it among the distributed files. Moreover, it does not contain -any implementation notes (in which most users are not at all -interested). +A shortened form of the documentation, already typeset and packaged in PDF +format, is given in the file `overview.pdf' that you might have found on +some sites (e.g., the CTAN sites). This file, however, is not part of the +C.D.P. Bundle and distributors are not requested to include it among the +distributed files. Moreover, it does not contain any implementation notes +(in which most users are not at all interested). -If the distributor from whom you obtained the C.D.P. Bundle did not -provide the file `overview.pdf', or if you want the full -documentation, complete with all the available implementation notes -(but, alas, still incomplete for many respects), you can generate it -by following these steps: +If the distributor from whom you obtained the C.D.P. Bundle did not provide +the file `overview.pdf', or if you want the full documentation, complete +with all the available implementation notes (but, alas, still incomplete +for many respects), you can generate it by following these steps: 1) Run LaTeX (_not_ Plain TeX) _twice_ on the file `cdpbundl.dtx'. This, among other things, will generate the files `cdpbundl.idx' and `cdpbundl.glo' in the same directory as the file `cdpbundl.dtx'. -2) Run MakeIndex on the file `cdpbundl.idx' obtained in 1), using the -style file `gind.sty', which is part of the standard LaTeX -distribution. +2) Run MakeIndex on the file `cdpbundl.idx' obtained in 1), using the style +file `gind.sty', which is part of the standard LaTeX distribution. -3) Run MakeIndex on the file `cdpbundl.glo' obtained in 1), using the -style file `gglo.sty', which is part of the standard LaTeX -distribution. +3) Run MakeIndex on the file `cdpbundl.glo' obtained in 1), using the style +file `gglo.sty', which is part of the standard LaTeX distribution. 4) Run LaTeX _two_ more times on the file `cdpbundl.dtx'. -5) If you wish, you can now delete the following files, to save disk -space: +5) If you wish, you can now delete the following files, to save disk space: cdpbundl.aux cdpbundl.glo @@ -218,12 +210,16 @@ space: cdpbundl.log cdpbundl.toc -After step 4), you should get the documentation in DVI format in the -file `cdpbundl.dvi', located in the same directory as `cdpbundl.dtx', -with all indexes, table of contents, etc. correctly set. +After step 4), you should get the documentation in DVI format in the file +`cdpbundl.dvi', located in the same directory as `cdpbundl.dtx', with all +indexes, table of contents, etc. correctly set. -However, if you are neurotic (as I am) and have a fast computer, you -could run LaTeX three or four times, instead of two, in step 1)... :-) +However, if you are neurotic (as I am) and have a fast computer, you could +run LaTeX three or four times, instead of two, in step 1)... :-) + +Other LaTeX typesetting engines should work in the same way, perhaps +producing the output in a different format; for example, you may use +pdflatex in place of LaTeX to obtain the documentation in PDF format. diff --git a/Master/texmf-dist/doc/latex/cdpbundl/manifest.txt b/Master/texmf-dist/doc/latex/cdpbundl/manifest.txt index 9edb5780a4e..4c63e5af5c7 100644 --- a/Master/texmf-dist/doc/latex/cdpbundl/manifest.txt +++ b/Master/texmf-dist/doc/latex/cdpbundl/manifest.txt @@ -3,7 +3,7 @@ This is file `manifest.txt'. This file is part of a work named "C.D.P. Bundle". -Copyright (C) 1999-2005 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. +Copyright (C) 1999-2006 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. The C.D.P. Bundle may be distributed and/or modified under the conditions of the LaTeX Project Public License, either version 1.3 @@ -21,23 +21,23 @@ precisely, it explains how the locutions "Work" and "Compiled Work", used in the LaTeX Project Public License, are to be interpreted in the case of this work. -January 1, 2005 +January 1, 2006 (vers. 0.34) MEANING OF THE TERM "Work" ========================== -In the case of the C.D.P. Bundle, the "Work" is the collection of -the following 4 files: +In the case of the C.D.P. Bundle, the "Work" is the collection of the +following 4 files: 00readme.txt -- start by reading this file -manifest.txt -- this file +manifest.txt -- the file you are reading now cdpbundl.dtx -- main source file cdpbundl.ins -- installation script -If you have received the 4 files listed above, you posses an integral -copy of the C.D.P. Bundle. +If you have received the 4 files listed above, you possess an integral copy +of the C.D.P. Bundle. @@ -70,30 +70,32 @@ following one: cdpbundl.pdf -- documentation in PDF format -but at least one among the files `cdpbundl.dvi' and `cdpbundl.pdf' must -be included in a "Compiled Work" that you want to distribute. The file -`cdpbundl.pdf' is obtained by submitting to the program pdfTeX the file -`cdpbundl.dtx'. +but at least one among the files `cdpbundl.dvi' and `cdpbundl.pdf' must be +included in a "Compiled Work" that you want to distribute. The file +`cdpbundl.pdf' is obtained by submitting to the program pdflatex the file +`cdpbundl.dtx', following the same steps as those explained in +`00readme.txt' under the title "How to generate the documentation". ANCILLARY FILES =============== -The package of files distributed through the Comprehensive TeX Archive +The package of files distributed through the Comprehensive TeX Archive Network (CTAN) includes also the following two files: README -- guide to directory contents overview.pdf -- general information on the C.D.P. Bundle (PDF) -This two files are included only for informative purposes and are _not_ -part of the C.D.P. Bundle. +These two files are included only for informative purposes and are _not_ a +required part of the C.D.P. Bundle (of course you may, if you wish, include +them in your distribution too). COMMENT ======= -Please remember that, in order to distribute a functionally integral -copy of the C.D.P. Bundle, it suffices to distribute only the 4 files -that constitute the "Work". +Please remember that, in order to distribute a LPPL-compliant copy of the +C.D.P. Bundle, it suffices to distribute only the 4 files that constitute +the "Work". diff --git a/Master/texmf-dist/doc/latex/cdpbundl/overview.pdf b/Master/texmf-dist/doc/latex/cdpbundl/overview.pdf Binary files differindex 86da1fb9a59..2d93205b58f 100644 --- a/Master/texmf-dist/doc/latex/cdpbundl/overview.pdf +++ b/Master/texmf-dist/doc/latex/cdpbundl/overview.pdf diff --git a/Master/texmf-dist/doc/latex/coordsys/README b/Master/texmf-dist/doc/latex/coordsys/README index 48e03ad476d..f44f40d8245 100644 --- a/Master/texmf-dist/doc/latex/coordsys/README +++ b/Master/texmf-dist/doc/latex/coordsys/README @@ -1,11 +1,8 @@ -The coordsys and logsys packages draw Cartesian and logarithmic
-coordinate systems, number lines, and grids in a variety of
-styles.
-
-New in this version:
-
- * New commands for drawing intervals.
- * Improved interaction with Maple (exporting curves from Maple).
- * Improved algorithm for avoiding collision between tick marks
- and arrowheads.
- * Automatics interaction with the color package.
+The coordsys and logsys packages draw Cartesian and logarithmic +coordinate systems, number lines, and grids in a variety of +styles. Moreover, these packages include commands for drawing +intervals and for exporting curves from Maple to LaTeX. + +This material is subject to the LaTeX Project Public License. +See http://www.ctan.org/tex-archive/help/Catalogue/licenses.lppl.html +for the details of that license. diff --git a/Master/texmf-dist/doc/latex/coordsys/coordsys.pdf b/Master/texmf-dist/doc/latex/coordsys/coordsys.pdf index 3d9b3e1cd56..83da6b40235 100644 --- a/Master/texmf-dist/doc/latex/coordsys/coordsys.pdf +++ b/Master/texmf-dist/doc/latex/coordsys/coordsys.pdf @@ -5,7 +5,7 @@ /Subtype/Type1 /Name/F1 /FontDescriptor 8 0 R -/BaseFont/MWHCZK+CMR17 +/BaseFont/XBTWGP+CMR17 /FirstChar 33 /LastChar 196 /Widths[249.6 458.6 772.1 458.6 772.1 719.8 249.6 354.1 354.1 458.6 719.8 249.6 301.9 @@ -27,7 +27,7 @@ endobj /Subtype/Type1 /Name/F2 /FontDescriptor 11 0 R -/BaseFont/RODGGG+CMSS17 +/BaseFont/NYTQEW+CMSS17 /FirstChar 33 /LastChar 196 /Widths[299.8 470.2 783.7 470.2 783.7 712.1 261.2 365.7 365.7 470.2 731.4 261.2 313.5 @@ -49,7 +49,7 @@ endobj /Subtype/Type1 /Name/F3 /FontDescriptor 14 0 R -/BaseFont/ONOYNM+CMSY10 +/BaseFont/EASVUQ+CMSY10 /FirstChar 33 /LastChar 196 /Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 @@ -70,7 +70,7 @@ endobj /Subtype/Type1 /Name/F4 /FontDescriptor 17 0 R -/BaseFont/ROKQYA+CMR12 +/BaseFont/PWBEBX+CMR12 /FirstChar 33 /LastChar 196 /Widths[272 489.6 816 489.6 816 761.6 272 380.8 380.8 489.6 761.6 272 326.4 272 489.6 @@ -91,7 +91,7 @@ endobj /Subtype/Type1 /Name/F5 /FontDescriptor 20 0 R -/BaseFont/YJGSTE+CMSY8 +/BaseFont/YKALFB+CMSY8 /FirstChar 33 /LastChar 196 /Widths[1062.5 531.3 531.3 1062.5 1062.5 1062.5 826.4 1062.5 1062.5 649.3 649.3 1062.5 @@ -113,7 +113,7 @@ endobj /Subtype/Type1 /Name/F6 /FontDescriptor 23 0 R -/BaseFont/XKWQLR+CMBX9 +/BaseFont/BKHRXO+CMBX9 /FirstChar 33 /LastChar 196 /Widths[360.2 617.6 986.1 591.7 986.1 920.4 328.7 460.2 460.2 591.7 920.4 328.7 394.4 @@ -135,7 +135,7 @@ endobj /Subtype/Type1 /Name/F7 /FontDescriptor 26 0 R -/BaseFont/DEGBGN+CMR9 +/BaseFont/IKAODM+CMR9 /FirstChar 33 /LastChar 196 /Widths[285.5 513.9 856.5 513.9 856.5 799.4 285.5 399.7 399.7 513.9 799.4 285.5 342.6 @@ -156,7 +156,7 @@ endobj /Subtype/Type1 /Name/F8 /FontDescriptor 29 0 R -/BaseFont/NLYOZQ+CMSS9 +/BaseFont/LHBVMG+CMSS9 /FirstChar 33 /LastChar 196 /Widths[325.6 513.9 856.5 513.9 856.5 779.3 285.5 399.7 399.7 513.9 799.4 285.5 342.6 @@ -178,7 +178,7 @@ endobj /Subtype/Type1 /Name/F9 /FontDescriptor 32 0 R -/BaseFont/TUBSIU+CMBX12 +/BaseFont/DCJTVD+CMBX12 /FirstChar 33 /LastChar 196 /Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 @@ -199,7 +199,7 @@ endobj /Subtype/Type1 /Name/F10 /FontDescriptor 35 0 R -/BaseFont/GYSFKK+CMBX10 +/BaseFont/HZGQDS+CMBX10 /FirstChar 33 /LastChar 196 /Widths[350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 @@ -220,7 +220,7 @@ endobj /Subtype/Type1 /Name/F11 /FontDescriptor 38 0 R -/BaseFont/MCSXTE+CMR10 +/BaseFont/ALATFI+CMR10 /FirstChar 33 /LastChar 196 /Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 @@ -241,7 +241,7 @@ endobj /Subtype/Type1 /Name/F12 /FontDescriptor 41 0 R -/BaseFont/UEMZVW+CMSY6 +/BaseFont/QGOVZK+CMSY6 /FirstChar 33 /LastChar 196 /Widths[1222.2 638.9 638.9 1222.2 1222.2 1222.2 963 1222.2 1222.2 768.5 768.5 1222.2 @@ -262,7 +262,7 @@ endobj /Subtype/Type1 /Name/F13 /FontDescriptor 44 0 R -/BaseFont/VHDZXW+CMR8 +/BaseFont/LCWNEQ+CMR8 /FirstChar 33 /LastChar 196 /Widths[295.1 531.3 885.4 531.3 885.4 826.4 295.1 413.2 413.2 531.3 826.4 295.1 354.2 @@ -284,7 +284,7 @@ endobj /Subtype/Type1 /Name/F14 /FontDescriptor 47 0 R -/BaseFont/WBXGHI+CMSS8 +/BaseFont/ZOXODI+CMSS8 /FirstChar 33 /LastChar 196 /Widths[336.8 531.3 885.4 531.3 885.4 805.6 295.1 413.2 413.2 531.3 826.4 295.1 354.2 @@ -306,7 +306,7 @@ endobj /Subtype/Type1 /Name/F15 /FontDescriptor 50 0 R -/BaseFont/ZGOLMJ+CMR6 +/BaseFont/GJPBOO+CMR6 /FirstChar 33 /LastChar 196 /Widths[351.8 611.1 1000 611.1 1000 935.2 351.8 481.5 481.5 611.1 935.2 351.8 416.7 @@ -328,10 +328,14 @@ endobj /Length 1545 >> stream -xÚíXKoã6¾÷WèH+F|“è¥ÙW»m]4Z Ûƒbs5²Hr²ù÷!)Knœd_À"í^l‰‡ß|3NVТÈVYøû1þ?.Žþ’e_lêÓùÑK–1C9Ëæï2&9Õ"ËY!©²ÙüùŸd~îgÍ>zÉG1Á©4Y¾/6³œk²™qEÚewÓEé‰RÍ)WIºl–·µTÛô½Þ¬©ŠƒŠ73X®\àïÅLqR®|š 2ƨSaM†35.ŒsÞr)£Œerfê\–I‰›¹¥(T˜,/¨ÐI“.nibŠÚÁ¼×›•oºY.À¾¿F3¯ª¾+òSÙt¾‰ÓUf¨3a6ÆJ*DÐpsÀRÀ¨h1åÑ-ëú<(ûaÛTo¯pO›5NFÁÎs.)Ò¼(äcGL…Ï/æŸËYê4ÚÆ…¥âà,ÁÃjÇg]ß–‹þevk1~ -MÆǪ‰ÿýmì8ç”
T¾¬ý¶õÿ†Œ;Ê|Í`ÀUÕnš5>;ÒÓ¸!®"v¤ïqþvèOÓ”Ù»ü#¬"þ}ïƒ3„5‡vd%uüÌlP˜îYí,89>ÌžÆ!ØCÙVýùºZ<‰00©äSÇv~]å{‚€xr”d¹ÙžÕ~*‚ñnêlLÎŽ3w*‚¯iÜœƒ¤N…iò¦»]ð<Û43Á -Îɯ
*‚<¯€P]æV¥³\Åcÿû”„øtžIHÿr¬ -L,J2&Ç´ABLZd[dn¯?Q(´ó÷µìP;TÁ%årÚfsØfs±•%'eëãÃnЀն÷KdÛ,cû4¥u:I+¨.L(j%8=•«Ç<UXHéƒÀ<IRÃpÐD6¾³ÝÐqÅ7-àÿí}ÙžÕX‘¡a‰èßP@XᆋÛeíË.q¡óéá4%çK¢èáÀüȘß;ĸR¸õ\C!3\±®òÝ?PÉ” +xÚíXKoã6¾÷WèH+†o‘è¥ÙW»m]4Z Ûƒbs5²Hr²ù÷!)Knœd_À"í^l‰‡ß|3NÆ(cÙ*?Æ¿ñ‡ãÏÅÁÑ_²ì‹M}:?zÉ3^PÁ³ù»Œ+AÌrÎÕ6›?ÿ“ÌÏýì¯ùÏG/Å(&UEÆÂ÷Åf–C63¡I»ìnº(=Qj:I—Íò¶6FMßëÍê +¥)T¼™Árå/fZråÓ™qNkrœipaœóV(eÔ(“s˨sY.-Š¸™[ŠrIe‘åŒJ“4vK×Ôæ½Þ¬|ÓÍr öø5šyUð]“ŸÊ¦óMœ®³‚º"ÌÁXE¥nX +1…Sݲ®Ïƒ²¶MÕùö +×ñt±Yãdtì<Šò -3GL1>¿˜.gLf©3h›–r@H€³¤«Ÿu}[.ú/´V±[‹ð8LÀþœÚ§§¥5jÊN‹ì´SvŽ*%pÄ%áKd•EVȪY®¸#—-L.À‡K Y×Àc|œ¼Û´øÀHso.Ãz¾ó}_5«ø¥A[ ‚#gñsšRWMän–G\ŽDÛÙÞ.«¦ìÁÉ,)ßûîíì ¼p}X6Ùûu—D0àÂðªÐd|¬šøßßÆNAù@åËjÑo[ÿoÈ„£|ÀØ\Uí¦Yã³#=š#²aGæWéo‡þd1C¹½Ë?Òjâß÷>8CÚâÐŽ¬¢NÜbCq4&„{V;NŽÏ#3‚§qöP¶U¾®O"ܪÄÔ±_Wùž $ ‘¥$Yn¶gµŸJD`¼›:“³ãÌŠàk7ç ©S©B|€én<Ï6ÍLr +,Ì
¬Jg¹fì±ÿ}JB|:Ϥ9V‚ëb,‰=U“t™9C
Ç3
Np“À Üù5]>ÛŽ²Å—Ø£rîñB;â%ÄVªSLP™°}ê뺋Ôq¿ŸW]_ã¹Qhù¿%íˆVq'²N
iRKÕ@[²WŠ¼.ãZÖ‘»'e:HrËÕ£@3†Çç¢9ôhB«vD
i +8û¨()öGbõ¢äeU×éZ6¤Þá¢&¡Rpã—ÇŠÜÅÊ«˜Æ°£
)±QÆ=¢zäk¹ÚJ¼jW?Xp+§Gä‡8z¶Å®WAâùÉQ”|å Áäêc‚Ló‚Úxú«d¯š®/ëºìÃ! +.
á1+îut:¹ª$;mnùAI%ظh63ˆÖëÚ/WÛKðÒc % ++@ZµÏKß-Úê,´sBÅ£5¹ÂÞ™oãa+á¶È©zÅÇæmjéLÌÊ!Šd–›ð:öŽ'E‰E©CÆÕØ€.“™Ã™ÛkçOÊíü}mŒjç*„¢BMÛlÛl.¶ò¡ä¤l}|XÂ
°Úö~‰’l›elŸ¦´ŽB'i½Ã…KM§§rõø€§˜…”>Ì™-8‘/†Ál7ôG\ñM8ÅûEŸF¶g5VdhX"ú÷C'V¸áâvYû²K\è|z8MÉùŠhz80?2æ÷1¡5n=7PÈW샫|÷8É“ endstream endobj 55 0 obj @@ -365,7 +369,7 @@ endobj /Subtype/Type1 /Name/F16 /FontDescriptor 59 0 R -/BaseFont/GPUPPB+CMSS10 +/BaseFont/HNSZSI+CMSS10 /FirstChar 33 /LastChar 196 /Widths[319.4 500 833.3 500 833.3 758.3 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 @@ -386,7 +390,7 @@ endobj /Subtype/Type1 /Name/F17 /FontDescriptor 62 0 R -/BaseFont/DZVZKK+CMTT10 +/BaseFont/IOUJGC+CMTT10 /FirstChar 33 /LastChar 196 /Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 @@ -405,7 +409,7 @@ endobj /Subtype/Type1 /Name/F18 /FontDescriptor 65 0 R -/BaseFont/ZHMASC+CMTI10 +/BaseFont/ESTJUL+CMTI10 /FirstChar 33 /LastChar 196 /Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 @@ -426,7 +430,7 @@ endobj /Subtype/Type1 /Name/F19 /FontDescriptor 68 0 R -/BaseFont/LJJGGB+CMTT9 +/BaseFont/XTKISF+CMTT9 /FirstChar 33 /LastChar 196 /Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 @@ -445,7 +449,7 @@ endobj /Subtype/Type1 /Name/F20 /FontDescriptor 71 0 R -/BaseFont/NDEZJO+LINE10 +/BaseFont/NWDPJP+LINE10 /FirstChar 33 /LastChar 195 /Widths[1000 1000 1000 0 833.3 0 0 1000 1000 1000 1000 1000 1000 0 750 0 1000 0 1000 @@ -502,7 +506,7 @@ endobj /Subtype/Type1 /Name/F21 /FontDescriptor 78 0 R -/BaseFont/OVQWOV+CMMI10 +/BaseFont/GWGRXM+CMMI10 /FirstChar 33 /LastChar 196 /Widths[622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 @@ -555,7 +559,7 @@ endobj /Subtype/Type1 /Name/F22 /FontDescriptor 85 0 R -/BaseFont/JAYYKT+CMR7 +/BaseFont/YFKMCR+CMR7 /FirstChar 33 /LastChar 196 /Widths[323.4 569.4 938.5 569.4 938.5 877 323.4 446.4 446.4 569.4 877 323.4 384.9 @@ -789,7 +793,7 @@ endobj /Subtype/Type1 /Name/F23 /FontDescriptor 104 0 R -/BaseFont/ZAJUJN+CMSY7 +/BaseFont/FKUFBP+CMSY7 /FirstChar 33 /LastChar 196 /Widths[1138.9 585.3 585.3 1138.9 1138.9 1138.9 892.9 1138.9 1138.9 708.3 708.3 1138.9 @@ -811,7 +815,7 @@ endobj /Subtype/Type1 /Name/F24 /FontDescriptor 107 0 R -/BaseFont/ANYURY+CMMI7 +/BaseFont/ETNNCI+CMMI7 /FirstChar 33 /LastChar 196 /Widths[719.7 539.7 689.9 950 592.7 439.2 751.4 1138.9 1138.9 1138.9 1138.9 339.3 @@ -830,26 +834,24 @@ endobj 109 0 obj << /Filter[/FlateDecode] -/Length 3252 +/Length 3424 >> stream -xÚµ[Ks㸾çWèHUÙž$˜6µI6›MªRëCªFsÐH‹5’èHôx©ùïé@‚=Ë+›üø¡n -¶Ð2ø†ÍW…ÊŽmÇçLJxrY{òÈvP -t\üìUÇgT‰¤:= ñ «k™±õ¿ó-ηôV™ÛÐÖÕêT“ÔwÏžYz»\Hà˼²žüxlº}}¼ïv‰ -‘»ÂKm°{t‘=žë-?½oOüðŽÐ‚ -6Cý‘þžn°0Ĩ¤NA|Faí#Ú]g‡5¾=ã‹É6§zÝÕü<Œ7Zƒ&a]×Ðs0T륋Ÿ–Єõqƒ/é ±"·Ækß³ø¸ŸêghLßÏ΂ÁB»oŽ÷ü;Dì×ïhìÔû344bŽ„œ µÍM÷êP9ØÒ–ÜmÖek~Ý´~Hn›#™¿ŸÏ]}`B·[wŒîÖg†|Kê#ã§æþž† -1“”Yˆ‘F˜`‚ˆ‘FH˜J@Xk€ &OÙˆæpÄt³gœ›=’Ýìâf[ÞÍÔH²¿“ìï.ÞtKÄÓØ%vøTQ’3p<CHÅ|•ÇEÏ98}ð†¥BÑ -C•/¹~3¸~ï'Ñ{ò9zJ¥ÐÇFŠ0¤úÿ(*•¥õ+4µ¯VT ÐhÁzíl4„”Ðè>_(ø
——n¤Ýë[O›œü.ÇNU^XZM.M¼¾ñ½Ï?og¯qs¯ìU®‹Q¸pÉTyeFL&˜®Ä.Œ˜L1A„1 ˜`–#Z9ÍѹéÂÀ³€=ÓH¦˜ b¤L܇ÉÀSçrDÄ÷ ‡S‘Ø!ÏéE7ÛFnfí³f -:weÈ<t—eÁÇ›°6Iž&*ûöSRTàX˜Qíññ”püBµÎüüíÕnÓ/ì¶Ä,m_Qíæ°Mʺßж¯6| -¢¨ŠÂ|\¹tÀÍýã¾kö
§r\ÈÇT—›*$y8£ ûÄ„·Ú&wúE•”ºìÀX@%å.vÎÂhq)01Äý{Ø€Ã[J£÷7ÛÐ÷f܆‰îŒÒ†¹V‹~¿óUŸEjC–qè#å†n˜ì_÷u£9nG…i”tlTjN½/g=§Þó®}Üoy¨øñÁ£Ã§†ÏM×p”á†óhõ}} -Ù=¥ý^̆…ëoï—·&¤PñÜKÓ1}ŠoëÓýã¡Ï1m) ˆ_À•ù¤ä
…Èêõ_wÌã1!IeöÔìƒÌý¹å§^|͈-‰Ç}”ûÂ}â+\åËÖ¦L^9ÊigO»fƒÍØaceœ–q7(L‹â¿c{¼L¿ZbæÞîvž·_Ÿ;_"²îM2–qPÉ+:+9UúNUÊŸÛu¡V{ï¯WÒ†=ìh±ž0ª¤¹Y5dGãåR媗ôqZŒÞ0ü€†Pfœ´'+kQfïÛý¾¥*eÄJÖ -Ö@]ÀRhúîX?mÚÖPw¸‡§58ÍÏŸŠQ šÆ|«ÕCó[éF·»—£Û(º/ÃEÛ·o¤€ˆXÜ -ÆMr©!€Á€Iÿ>‘áט5JLeøñ³Õ -ç/^YŒÎBhAîå¦û,ÞbB,”/+L¥©ò€”éhfFL$LŸï˜H˜–Öýˆ€„é³Ø3 -GWÌ$`‚ ž¡iÄÀSáÊ3 ˜`ZòC“)¦ò«=“€ ¦)1Öˆ˜L1AÄH#&˜ºnØ“)¦ÂØ)fª‹Û³fœ›=’Ýìâf[ÞÍÔhÖ -Ñ-„òRÏhÅ¥&épaN^ÄU’£ò¨Åsq‹qShУÖ^)˜Råchƒ‡(°G`\8~åÁ¥o½±°åþ’†á͈XNÑÇ.êj·Gв”¹¨ðhæ0 -ܬ’ý”»¼?5ÛôB<ÝcÞSÃÍ°S+Ì6y(êܽÒß6h„=±k6b¢|ù§
>á{Ùu<¿Òʆ¤Lùš’ð62$r|RÝC"ƒîÑ·Ž˜>ðÛºÒâ2fJkÅ,mìpµ -ÎçwÿS£sÏ +xÚµ[ßoã¸~ï_áGHXþ…E®¸¶×k¯@qy(°Þ¯£M„µTV6›.ö(SÙÓ]|/¶ôéÓ3$‡Ã!µâŒóÕÝÊÿýþÆ?gѬVÓWÿ|óÇ¿ +¾ªXeW7VN0[®®d¥YÝ|ÿ¶L1µ¾Âðâûf#»ú¸V¢è××ÊÉâçÝv_ŸðZíÿuÑß×Ü<!³%æwŸ÷îæG(PòÕµpL9_Ø?·7kx«þÏúZZQl¼ zÃoÉTïáÍ®ìêLªL¨ÀÚʲøÔtíñ€×®è7k*àjÏ°úÒÊâØötqz|x€+W´]@nGÕá…ž^?ÕñUG¢WÝ_ ñ ‹k‰±õß„šV+jz-´`&Öu³éj/õýs`–£ÞŽq|Á*ÈǦß×Ç»þ>³€åÌÙ µÁæQ¶x<Õ·tõ¡íèâ½7@ü-5\Ü·]ó¿–”Ýî3Åöx{Æú„Ïë®ov‘sÛtõ®oÚ#[_k#‹Úµ´d†ú“ÿí®°®ÐÅ|½:Ö×ò…µhwU¶x÷Œ7ºØuõ¶¯ézìnì´MBºn¡å «ÖkïÖP…íq‡7y'1œ^k?ø´og¨ÌÐÎ΀Áb½oŽwô€Dì·ï}ß©÷'|×HØYA(Ãt•¶êP8ØÒ”ÔlÆ[ºÝµ¡KÞ6Go|vz>õõýý¶'ô~{"(Ô¤>Þ5ww¾ »%l[¹9F1¡ü»nûpO$0·žL†˜ÔŒÇqøœ×1-ÂÃ?eï +Î*ž~OåʲªôíÂlµRÌJÿ\f¢¯•®˜À¡`˜)= ûsVˆaÒLI„T8˜è!z°h/ÏW£¶ O¶‘ZdòJt˜ô\p*Ž +MÍ«å(4é@8+ˤI.QáW+ +¾Â±ÒM´{}íýR½c¡Q¸ôs®fBÀë+?8‹±òË:Ytî +—Péü]1e'AÁ9S¢N™˜aº½zÂ$`Ž)q¢H™˜a–%º™„IÀÓ7AÊôÀÓ–è"&sL‰“nÊôÀÓ”8'Læ˜=lÊôÀ“‚§„I@ê•—´¦[l%·°ôE#×+fRbˆ7Æ_9Ž1ÔÖ(Ö4ŒùÅƱâ4ŽVµÉ +¿¾öŠißüœ•a/ȯKጠ3á{gJž§¾þõ‹øúe³ùÕzÿÕW³0<.Ä7›]«LXZ¾ï6<¹â›õ¦òJÈÍ:_ -)¢®0y„"nh) +kŸætuµW±LÖ!ÒC‰‰ŠoÏo0hM\nÞgÙÅ\žžïÏ_†ZÆçM–”I^~÷åüU0©¶KÊ=>²w+æÌ·Šuáá×ÙbÍ·Š¯Þæë\X\qõ;»;Üfï:æô¢bóÞ'aç'~Ž’¸’Ü÷ÍþÁ¼æŽ²x1IÏh^ÅŒ¥Ô…êT4sêE•¤<oÀT@•dàΖÉ04
QiƒÂE¼¸Þ®$Åñà +¹øåZí™Öô̲£Ù-:ƒ-þ‹öÒаg&æú÷°´¶!ÕÆl¥JÓµÚ-é:JËVQ{LÇœ+À1ú^0@_)zI¹ÔO=u¿Ðù覡,c}Ww”ƶ.)ka°ô—ë]šß¥ÞŽ7ÖÛ…z—2&Éè&$ÇOMßP +˜eI<è0‰GÝ6_dÀ +ªq=0nîƒìöÓǘOÆ»mw÷xI÷«õµá¶h>„J€ÃŸ>éê;1ÏZ¡fIº:4òB|ßì`¾²®ØÇöxíE@Á]³Ã½|à'¼¬ŠÛ]ßvopWç: ”7fýy{xˆÜèlZŸ]dPQÃIY¤î·h_äM=k3ž&ˆ¿Ùà/øV³d”^ÑŒ=öW¼ú+Þ´Çxñ!sÒ¥bÕ¸q¼´jLüÆ”m:¯ƒCD|zA„eÑçÄz‰©…ÄBd^^Ú}0¼OÓ#”gѲè<æÎÃH-Cîœ'¹s¸¦íRäA6tŸB˜cný„û Êÿjû:ÔV£kHjÒöºþqÿŒWjÀÔtºBÒý}í¥’VT†ÝŠ[ì2nÕ +–0 ˜crt¡)Óiè°dœ¹Å=Ø-în±åÝBPà~)ÑWø=ïTßËP€ XóY»ì,Æ¥fÏŠV{ckE=ÇÖº žÂ‡ä†ûíä©žÉ뫤ЅNT'ã( +Oj¬q%1.¢#
ÿ«ÅN£z¬‚ÄÜ"xÜU´ì•û©¡ö‚„R}ËãfH†D*ÖÕ¼ºXI‡[`°Ÿª°ÉF +ýͯ*z¼y_VHJÏ:]Ü4;|ð‘П¶ÝÇ?© ’¾ÃCèÚ$§ëµ.v[<’®m±õEïzâÐu¸xjnñ‹ +/ê3}•6'ªÉG:lÏøOLAŸ)èákìͧzºiðÛöÎk0\+üJñXc7[ÊþZuÇJ endstream endobj 110 0 obj @@ -866,6 +868,8 @@ endobj /F20 72 0 R /F23 105 0 R /F24 108 0 R +/F15 51 0 R +/F13 45 0 R >> endobj 102 0 obj @@ -880,7 +884,7 @@ endobj /Subtype/Type1 /Name/F25 /FontDescriptor 114 0 R -/BaseFont/WSNUNX+CMTT8 +/BaseFont/QCLRYW+CMTT8 /FirstChar 33 /LastChar 196 /Widths[531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 @@ -899,34 +903,35 @@ endobj 116 0 obj << /Filter[/FlateDecode] -/Length 2579 +/Length 2663 >> stream -xÚÅZKs䶾çWðfªJ/È-‰íÔ&®ø°ªÊÁò;¢¤±8é!Dz²µÿÝÝx$8 -׫²/3`ãc³»ÑhtÈ -RÙCfþþiÿÆŠ?O‹ÔgÙ›½ú÷›¯¿£U¦‰.³›ûŒ%‘U¶)©dvóÍùíí°Û>õÃKÛ|¼úéæ__ÇZVD²¬0¸GÛIUèåDU®sxÜ®6\Vù]s%‹|ÛÖ§+IózØu‡9×R‘Ò½·sL«%¦ŸyhAD¹RžíÓj*Fè:‰\'
&4¡,ÛPM¤2 ÿtCŸÖHQÐRZMïˆõ©I$×0XÂ}å¥Syûä³$¦î…¿^m$è Ÿ˜ëÅJRð×Ì¥&Ã' -½d>1'LÌÌ5ŠV¡cÙÎúxl_œÖmß9£tÁ$ÞJ»í+ó'd•œJ‰¶:`ýØ—ïëÓSM™ŸmÓ»vóë±Ýmw~I‘wøÊ/øÓœN綹³o@Šƒ,XŒÂH”â3<Œ)¹ÊÃ(—M±%¶“±¬$º2ƒHª -%3ý4y&Ï6pƒfEíîšûúÜÖ:ý`ôngcE c±w}â÷0Ù -?ùã mp—vwhúOöaûdŸÙ¨‚±¤¯©V¢jÔô³trQU…¾ ‰,ƒzsAD…j"hۆDŽ_ Üü(l»ý¾>€WpÎáá€öN]Û[ŠõNh8V¦ÝÝã¿;GÏäœYÏtZR
ãµ -^0ûöæO[2 -ÀHÈKô²WFúööÔšggµ±Ÿ>ŠãðÉ~&*R”À¯ð~µš‡ -<ŒADöÖ* -†”Ù>ã…D1=¡ÍÞ›å£+hI
”`3c -*Kt©ª°L¡,ÑÉ©C2è 1Ò$§èÒ¤€#=!AJJ¸Ž‘ž Kè˜hä Ÿhä ÄD#OH:&yÂÉ -Jh¬Q $Hk †„ÆB‚„!)b!A±F %øùD#OH¥™Ò$ ôD#OH'yB‚„UMM4ò„˞̈O8—<Ä#ƒ‡Ì£år´ü4òÈ Q@Rèa³'Ž«ÎqmE\>*3ɸusóœrù¬ Š'JÕwƒ+Ð6‚‚¿,eE~å‘…HR„èüªžrÆ@•D¨x*A -ýåšB€P¤Rõ¾\z†qç.'nP˜2n¡1ö„/žaþ«'ÂË·“æ’˜ˆqó·òl1‘ž«Ä‡wÁJðVpœiQUbRS•¸$gžâBaè«‚-¦µ.Mšç\22½6çò5È“¥s?ØtéfÏycS*“G=Ö‡‡æÎö>ï³ñ«Z®ÂWãl"ýnE´Š3OÈ‘am(…Ízm6ù:&ðõîŒU~<5÷ÍÉv¾41=¾ô€ŽŸØ‚ÔÑBMâ„óÐïî̃6)ã¤wÛµ»ÓÝîPŽXÿÚô×Ð,eÞvµW¦Çâz(óé®I«Ã
§Ê:gÈï9gƒñ×cbìÅOŠ†™•Ã±È!vþ:I³}.ËD(noÏ}s¬·OõCó£Óë§Û®3f»m¢—Ð*Ê6á•lÓ!–²MYŽ<p7K‘#0ÈÑ`„,Ó‘Šù˜eT^’Nà^Å~.n´0Sèà12æHˆY"d Ì‘P#aŽ¥ñ¼s¤7M@ Y -ŸhsdU6Ñ(æHX2ÙD£@˜#5tL4 -„’ÁÐX£‘0GÂÐX£‘0Gº5lD CRÄ„9†¤ˆ5 s¤”è¶2æÈ:&ÂYÁ¤™hs¤’¦ú‘0G†‰è‘Ó™i‘jõ<R«ýSwµÒžk\-H…¶å×23Åm¼w„7Íp5¤®Y—XXýA ®K²¨VÄ|›mf ˜Møç7È°\éö† "®C4‚–ào(¼PDNd_™úðË1—JW&GˆµCÂ’Q"BZÂRRŒ<ÒXZëi H(!BFHKX@úüò‚⑘2L4²„$x -›hd )Ë -†i H›ìçyB¬ÖŒ¦Zm%µò뫪q±Nd³;Y‘loWs,ñ5ǽå?8Zqi’¢È`VÑ‹ûìrœ+<G +xÚÅZÍsë¸
¿÷¯ðm•™˜?Eíí¶×î´‡—™öíAÏVb7²å±äͦ™÷¿à—(QÎêmÒí%ÁŸ` +΄“œä£Pæ|@2)³Ë±©;÷\ÿ|jö›}?ȤÈZ|å'üSŸÏ—¦ÞÚ·?#ÅAf,Fa%”ø +cZ.ò0JÄu“El‰dl¥HY˜E$EEÍ<K^†`â@<àÍŠÚmëûêÒôÖ:]oô¶ùl9•1kce…꿇`ËYšÑ^àÜ¥Ùëî‹lí(‘jXKúšj +Ucfž§ÁEuN4ú‚ĤåÕKr/d…b$hSú]ÂO71ä^L±à‚¶X1°On›ÎR¬wƒcežÍVÁÅ0mœYÏtZÒÆk!5*</àÓû›v†`ÚJÈŠ×VúÓ§s}¬ŸœÕ^b-¾¼ˆSÿÅ,þJÀ.¨€_îcw1xƒˆÕSØ«¨.Ñ[+žKOhVÍöÆòÁJI4
”`=a +*›¶Õ)0
]`G¦É`‚ÆHOHœ¢FHOH&xŒô„))áeŒô„©`b¤‘'$HHC|¤‘'$HL#<!A"b¤‘'L‘,§„ÆB‚„%¡±F aIh¬Q $HX’<Ö($,Ik R‚Ÿ4ò„©LDDHOHLŒ4ò„‰Éq¤‘'$HØÕôH#O¸îÉ°ÇY^sþ!¯ÙݳËkê8`Ð& +ÒäO𖹚Èï;2÷ùhFŠ›_Õ4G®Ã°¼ÀàˆÖ Xƒ½YSHšz¤ÞÛ¥g˜Å0r91«bâ +G5e7.}·ßšAi +ÆÑì¦5j·çíþXõŽXý\w·ð¨dÖ´•WF
íA·×s@™ÏÛî9í
לjãœCåN.F‹ñ/‡²Ø‹Ÿ´(ë*‡9a‹CþßÕë¨Èö•,“%‘þ`ãÒÕ§jóX=Ô?8½~|Ù´1Û•Z¼w‹¡Öt„WjM‡˜«5¥"yhEÉ!X!°æ´L*À¤e¤®IWŽ|ÆÒFÛ2… Ãx +„ì(ÊÆS ‡ Ãx +Êx] +Ô0+ÆS`©°R€a<2X )3Œ§@X )3Œ§@·o`O°y¤Ì0ža%òH™a<J‰ê +-P/½ÔõÒµÖË츤”Å2Šd*Y—×á]+ÙJT†¬Kˆß¨uÅ-5aV-¨ +b1Dcñ!M þžâMäHú…¥ Ï·ë¦tr„83;$lO¶£ðHK˜A*––0ƒ”Û¸i 3H!°‰–0ƒô›õõ-Ä#™À#‘i 3Hp>>ÒÈfPš‹‘F–"D²ˆ5r„¤-Óš ÎVKVS/¶’^øë‹zoùŽd³gV‘lï×{óœµüÆ‹KSE³Š^5ØW·Þ\ã04‰y¹øð.Ô* +VA@+Êm¾ø¸?ì›êÜ<ßhžá½)W³€¢Ã}ßþ8Û@5.Hl#`Ù ÀƧŸŽ«Ñé¸ +©ðèßqÈÂÿ–¼Ÿ°ÁöˆÜ¬…þô˜ÍéÁÐá„ÛsNäâÃÅÆ %$3ºÜúØŸë´ç’“;™r…™@Ø#}èLÅp§²3
“Ù÷íCu†vë +<PQWT0ëÄæm>¤ËÁ %vm&3êrÃ?.ü¿ÛjÐÇß +ðiü>å ‡ +f?&á±1q`ÉÝg%ΘÜÓyBmçïÛ¦1Þüd½ç·¹œÏ°Ìàœ}jÿÃõûû-aú‘Ÿ5߸ùuGÏ“/ýyŽâ¹·]9û+¿û/X¦i. endstream endobj 117 0 obj << +/F11 39 0 R /F17 63 0 R /F3 15 0 R /F18 66 0 R -/F11 39 0 R /F22 86 0 R /F19 69 0 R /F20 72 0 R @@ -1069,7 +1074,7 @@ endobj /Subtype/Type1 /Name/F26 /FontDescriptor 133 0 R -/BaseFont/WUFVHX+LCIRCLE10 +/BaseFont/IWPXPG+LCIRCLE10 /FirstChar 33 /LastChar 195 /Widths[3600 3600 3600 4000 4000 4000 4000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 @@ -1087,7 +1092,7 @@ endobj /Subtype/Type1 /Name/F27 /FontDescriptor 136 0 R -/BaseFont/GCRFCN+CMMI8 +/BaseFont/RNOWPB+CMMI8 /FirstChar 33 /LastChar 196 /Widths[660.7 490.6 632.1 882.1 544.1 388.9 692.4 1062.5 1062.5 1062.5 1062.5 295.1 @@ -1117,10 +1122,10 @@ xÚÍYKÛ8¾ï¯Ðme æˆ/=0ƒ GFäN1ûHæ©Pv$ì¢_.*™ ^ÅÈë,O„‚¶eÀ?Äò~"$VÀ®P(sB-·2äô„§–Âd!§'Ì8ájtÈé 3N+1÷NO˜q¦0q´#O˜qBÖG;ò„3¿zïù•2%…¤ð9¹€VT©€ÜV”ZdꌜEðI3"…«i¬a'‰“3«Œ¡q' ýƒþЈʀ¢p;É -— LxõN`…¢P{{•ú.[‚㜈s”-ý$ƺÍÈ«wƒ¦æ$ƒØget™èH06lÓɤ®°§G…©k¬ûøày0€ÊI‡©ªAH´ ÀöînÙòqÄ]æõ]zF|áÅÜx“Š*8Á±ÐCU G\04,~ºÈÂwœ«®hŠsÒ¤¹J”G ¬ûí\œZ®ëd‘ZÖw0°Û¹TØëd*JÑ -°*M_¢´Eþ£;º -.dÛkׯ"(•»];5ˆú{ìø4I÷fl"™ºåVw®ÇÃr€„)Í®yîÚH@›^?öknº…Ð{>|‘ÃU]ã‡sR×í®í¾tÕ梈iÍå•‹®b™¼±öíy´:H2áH2Ç´&AYJZm„ÊÎ äÄé 3N†Å‰ÓfœŒ‹§'Ì8¹êLœž0ãddœ8=aÆÉ@6qzBÈ™_½÷üJ™/AKk]¬hÓ¿ZZ‹ÇÒï–Ö@X2áÛå¤ü«ÚÔ W¦65èQNE–NHÉã“õ¬”ã-t÷§”ÿâDŒÙ2ŠX)¢Ý…¢›'E‚,Ï‚:ø7ƒ.ý«žx{TÙçsª8—úŽ›±U]=}ýŠÓb7ÃohÌê}½+»we´Òéæó'™Ü6þBšA?2ñ·P‘ŸjÿaæèJr1)Î+ü€Öo¨|†GB…—&ãØ»DZèíŠÜújis=Þš³¢:ʸñ5^X*Ì¢‹k‚[gù†9ß³pDQaÓMM÷$ -ýø¡ö–Dݹ
kèú¿yÐpEW`ýég݇A˜Gåì¡‚=d5}Ói ´ôÔñ3^ÕFœÁ×T2{Ç﹩N0IpoRŸ]æOÿGé‘N +— LxõN`…¢P{{•ú.[‚㜈s”-ý$ƺÍÈ«wƒ¦æ$ƒØget™èH06lÓɤ®°§G…©k¬ûøày0€ÊI‡©ªAH´ ÀöînÙòqÄ]æõ]zF|áÅÜx“Š*8Á±ÐCU G\04,~ºÈÂwœ«®hŠsÒ¤¹J”G ¬ûí\œZ®ëd‘ZÖw0°Û¹TØëd*JÑ +éß-ÅcéwKk ‹‹ +}µ´¹ö·æ¾±ÕQƯðÂRùc]dXÜ:ãÈ7ÌÙøž…#Š +›îljº'éPèǵ·$êÎÝhXC×ø̓†+ºê endstream endobj 139 0 obj @@ -1153,7 +1158,7 @@ endobj /Subtype/Type1 /Name/F28 /FontDescriptor 143 0 R -/BaseFont/HVFCTG+CMCSC10 +/BaseFont/BGZLHZ+CMCSC10 /FirstChar 33 /LastChar 196 /Widths[319.4 552.8 902.8 552.8 902.8 844.4 319.4 436.1 436.1 552.8 844.4 319.4 377.8 @@ -1172,7 +1177,7 @@ endobj 145 0 obj << /Filter[/FlateDecode] -/Length 3236 +/Length 3235 >> stream xÚÝ[_oä¶ï§XÜKµÀŽE‘J‹ @@ -1181,13 +1186,17 @@ X9BŒ,Ò,ÐÈ"¤Ë4r„ ,!B–À"ÐÈb$°4r„sdÆxÊ}FBŒ,à#-!B‚×s_£‘#…–!3`ák4b k(‚\•13ÏX¶-Ò%gÆíG] óêê3ˆ´<“_É‹ÉaKòCžU•¿Ð©å‡rõbòCR¾ü˜U‹‹Ê_ŠTÉŸ]lý3IE ?ø‚¼¤ü×iq&ÿåì?û—ü`ÿùEåû—gò_Îþ1mçü`ÿâ¢òƒýç¡üâröIZøòl./*?Ø¿8“™ý»ö/èË4×A{!ñC2ñ€†0d˜%} " ‡òÊü h 3@†ƒ$B„"*󕱄 ÃþÆ!BÒÍ|e,aÈ°óDˆ`Ù"PÆf€-Þ!BÙ,eaÈÐ:} b`.±Iö€†0dè¦>1PH?Ðf€O| b Ø}(c3@…2†!æË@C˜Ò±ˆ$‚_¸.p.½ÔpõR£ÐK\/SfQ¦‡0 U +ÇåõuýÌLÏt*Sß s|vÁBÑŠïí€ßÛˈÏ5$#þëDsnçÛ…²‹ÏÌ„M Tç^°NtòOæjåŸÌõBò¨·¬üÙå×ò"+ÿs^ôÉòƒõ«âcú$:.¦†kl|ÇÓáÓÄF’6JÓ øèË™‚&çìÈÙëLCFo¾ãdZ2,ÏK…ç^ùÇù\îŒY‹¤ÜŸ:çÛžãrMäº5{}åÂXYºåºZk‘të"9=ìÍÅÃñ‹éDûóÞ ¨I@V˜XXäØ}†oΗ(W)+VŒPwV
=å㹑yøãfW·Íþ|¼Èíó&RåžÞôkÉ’.žÑéŒå`¨¹é_Ÿ”X{-{èÎG–x¾ð’ÐN ¿=£²Ä3ÇçdÞ ùrr•é]ÌãsËö ÞðË/ðÜf‰2¸üÿf^X~ðäܬ~qfûÃ]³½?Ô§ÓÛH 2y¾¨KwÉâTÑ*æa¬â»…@“/òÀ§f7ÜEôñÿ;ŽQ¼Ôô.„—x†„ ï뾞™AðK™h$D¿æá~éäá4@hdeòËz·µ¹éxÁ!‚ÜD:FZÃâmÄß3Ò×ÑP™:Á®“©ÝÐß¿<ÄΓ®8p•j§ù»,ªÃ.Ú9ùÑ‹;ó,Ø9íŒ wF%nCn‹æw¦\¦â;³þäùòƒ#Wͧæ~´žÛ«i˜XºÞHX”¯»ØQE†G©/l–^¨ógwKaglÎX -x¸,??V¿8k† er c!“AK)’º?¡
<iàY‘õ-LŽAƒvõ¶ÙWà²O‘äyj<¥ÄiòHMo -ž?âúš¯Ijæ(WvU¨/‚eÂKá‚Ó©mšaÙ2™üáöWð¤>E²áÇC[Nñ54=nx–ÛnšÃ-Þ‰d‹,P”“yúƒ!÷õ¶Ûïkp¢¢Øf¯¹*Ôäªõ±‰;+ƒyyîmxÎ]^ç9äXîıڢQÜ“AßÖn¼ -.,Ýf´;tòÎ>$ £Tö&3ðUÕÖ4&»"j³æ«‚ã7u£ø4X÷E@ròcd[‚ÚŽ£7ý*Þ¤T —:ÀM'S™#Ñžz|ëˆb5Ò~63º0ŒwÜtAËY@stâÌ:1÷W]Ú¬|àÁ'«Ë_ªc[[W3~œbŠ’ÛŽÒ™}Æ8·!®äAFž©Ð3ôL˜6—¶íÃŽÂ -ÜUæçØÔ[ûœrü’xxY˜ÉæÖn `Œ-iÜÛß8X:Ãq`XD1‹7]¿\…ç¾7¶|Τë퀩Y -ü6]¬€XZð‚L½¯aVô±©l(!TµƒœŒMÚÛ@ë…dÊŨ²©vÕqh½±cì&4²ù´½…9ÜíãІ©§ÐXÌä2ü -˜héð-¨«Ú×=Þ›ß_†ˆŸø¢È¶å3ìè+ûÝÓ¢NÛºÁ7’à4›¿{÷KÀg·•ZPp£Ü4Å™‚ÄÔîåÇhèX Sr÷Rñ«î“ÀD»<Uè¸øvcŠv9Š8Ò~ÎXif'?-ÑOKªr(&âÕÓšòà=Þ ŠM+7®y±ñý5SŸ"÷ŒØÊ“zÝI’Ù
UþŽá§sf‰_ÍÌõw§0˜¡§º$Qཅšé<Ã(§s¹³u3KÑ×›ÀMÍë«
~¸‹cô…afzüÄTÆÝ7»¾¢É%cɾº§.¯©“ŒGo`ÐŽOÉÒÒ üµ;
?mûæ8Ä‹&±wÏ®JÎçWMOg~Õ2Ž¯5_ü I˜/½ÛèŽúTe÷Ø-Ä6wø†¯$c/ñŠ2 -ÓǯTžµà’,XÍX0-Ø~ž"Œ^„OA¤øPq%h°mkÊ{ì#…S¿e#×¾s§oaÐ=8%Hƒ42¥Ýœ‡ ¤¹½mmÿ;fÌOû÷¦³Ol3)è‹ŽB0ç<Ÿæ7ÿ¨ +x¸,??V¿8k† er c!“AK)’º?¡
<iàY‘õ-LŽAƒvõ¶ÙWà²O‘äyj<¥¤ž+’AÓÀ0·öK}éð¾tí¡ÐSt +:™ØeÂ|°yDs®¦ šs´õáv¸;¥N®î,y[ÓŽ
}mÆ€#}p€›j0B.]ÖA1Cø¶9XàSÓ¶æj×W}:DzàF½Ä
^ÚŠgb#r(¸ý¥®L´êÐð×6£ˆÌh‡%ø]×7ÿìŒa¢Jø°úµ9™§.x®ü¿iL¼œœ‘„°²æIßÜÞÑ1q§‚çø°î‡fëk’š9Ê•]ê‹`™°ÅR¸àtj›fkX¶L&x€ý<©O‘løñÆ–G|G
Mž%Ƕ†æp‹w"Ù"ådžþ`È}½íöû\„¨(¶™Ák® +5¹j}lâÎ +Â`^ž{›Çžs—Wëy9–;q¬¶h÷dзµ[+/ +1EÉmGiˆÌˆ>cœ‰ÛWò #ÏTè™z&L›KÈ@ÛöaGaî*óslê}N¹~I<¼,Ìä + +sk70Æ–4îmÈo,áÀ80,¢˜E„‹›®ßG®ÇÂÆóß[>gÒõvÀÔ,…NþN›‚.V@,xA¦Þ×0+úX‚T6”ªÚANÆ&ím õB2eˆbT ÙT»ê84ÞØ1v“?ÙüÚÞBŠîöqhÃÔShT3¹? +„oÙ4OÈK2ËÌ‘z%8ïݹ0Ä[‰6Jõ Äíñ{Ž`=Æ|Ó‰'¾y@sP&-á/䛶ÞcA^‚M‡v£ ×CÕ´ÔF)q +Á¶g27Þá‰2ɧÄäS’“¥®«“½4;2jn›‘f~ëù>5;$cRÂÖ‘i¹¨t¯”&‘¤IÉ¥IÉ“ ¶å +“…Ô:½—F©©q‡&Z:|ꪶÆu÷æ÷—‡!â'$¾(²mù;úÊ>dwÀ´h€Ó¶nð$8ͦÀïÞýðÙm¥Ü(7Mq¦ 1µ;Cù1š +"®d
¶mmBy}¤bê·läÚwîô-º'§i¦A¦Ô£›ó„4··íÇŒùiÿÞtö‰m&}ÑQæ\ƒç³Óüæ?ã+ endstream endobj 146 0 obj @@ -1222,7 +1231,7 @@ endobj /Subtype/Type1 /Name/F29 /FontDescriptor 150 0 R -/BaseFont/ITRDAB+CMR5 +/BaseFont/YBQGDB+CMR5 /FirstChar 33 /LastChar 196 /Widths[402.8 680.6 1097.2 680.6 1097.2 1027.8 402.8 541.7 541.7 680.6 1027.8 402.8 @@ -1340,7 +1349,7 @@ endobj /Subtype/Type1 /Name/F30 /FontDescriptor 161 0 R -/BaseFont/TJJPKH+CMSY5 +/BaseFont/WUTMGY+CMSY5 /FirstChar 33 /LastChar 196 /Widths[1361.1 736.1 736.1 1361.1 1361.1 1361.1 1083.3 1361.1 1361.1 875 875 1361.1 @@ -1362,7 +1371,7 @@ endobj /Subtype/Type1 /Name/F31 /FontDescriptor 164 0 R -/BaseFont/CCGVHN+CMMI5 +/BaseFont/ZREWPU+CMMI5 /FirstChar 33 /LastChar 196 /Widths[886.4 674.7 855.3 1144.8 726 578.1 918.1 1361.1 1361.1 1361.1 1361.1 458.3 @@ -1489,23 +1498,16 @@ endobj 174 0 obj << /Filter[/FlateDecode] -/Length 2436 +/Length 2461 >> stream -xÚÙŽã6ò}¿Bo+cZ$EJJ°@²È$˜ì0@÷Ã,¦ó –d[iY2tŒ»ýøbQ—¥éôtæÅâQ,ÖźìxÌóœƒc>¿Ñgüáøó°ºúÇùGÿ}»ûU:‹´s»w"Í4w¶Z°@9·¿|vï„›?nwÞÞ^Ý‚9NrO3L¾Ûo¶¾”îÓFnÕѤIâ"£aŒß-ªC\çíñ”'´?æ
AÜãɧM(Ý7° B·‰'+@PŒƒ©g.7÷üë3#½?,äH«˜§-àœºcÕ)»&#zÚcf$°¾Ï„t¶œ³ˆX¬Îm^•qA7Œbô=&¹½àh¯‡]ÉÂÌóFynœäåá‡Ì÷-X¾`!dA#®Ý)+‘(Ž<·ð+å0ànRNq™ö«qKËi
òÔÇFðÍV„nU§y·–ûP1M™ožš6;f$JÎjæZ)J2¯—ÄÝèN}ܹKË!P¶ÙrÇî3é#ì–ƒˆµv¶ ¥È7G|€åB¹ïʦ‹"FÍ,îð@‹œ…ÜœxûØÖq²ZõZž/˜è jÚ§6!™êíèN¨ ÈDæ»ûº:áH¯£
™–=Þ´}|^B{Úz¢qÝ•å`5äÚGÐÙ¤‚ÀY^6Kq}`{¬«îp$Ìï TG³(0¦¡WÌ#Iÿ¼Àj A²=À±Å”‹œÌåm¿(aí#Û’¾DÅNŒëö½‘ï²2«Ñ -ÍÌبˆ”›’&ƒé“ÂaOºûª& Qúzt!g\@xÿ(X#ªk2d½ýâZbcQh÷ɺ—ÚXoÖç8Ù -¦ïHÎßÑ*å#ÃÖnñ킨›êd©Ló:KÚª~¢Ë¬…v–füGÑkœÚª]û»¶>
àSŸ–Äåøx1ã8o\ECÐq@.s·i³ÇÓ~¿;ˆmð{Ê›dA3‡¥w6T$å3Ò$S[R¬ìkŒ>n;k™¾› þ¼ÉïhœBD½køf㜜§ -âA!…‚ Ú†‚•Q@J¥îñË2»Òá E%<`„‹{N÷Ïf4'i¢Ñ^£ƒhÈkmÛ -Â!•ú~ª„ç‰Wªr<;x]÷÷I
LRà&®SœôÎMÕÕ‰[G´¢\L!ÂÅ>Åü¿pE~Q5W¯•k$¼P_5DuôL‡Çìd¹ŒàÁè(¯Þ>ÉáYÅ+=ÖßSñ`‡AôJÅgME(¦¡n/…àGŒG/Ìc"uÇà+yGœÏûûèëþþ™$‹S_Íý‚!o½ZÎ]»ÌãbôÛˆ%#ñ$uúN¡ -¸Ä§#Pr¶Õí˜á‘¯¯šl¥„P)L(e¨÷àÿË&ûZí$l~nŠt?rÏuu¨ãMN¶4“{ã–‘¨q¤¶Îï;à…váéíð¹˜c”̧9>ï +ÓÌîSe -X’ªLsôîöòj? L¼©8–6 Ðq¿ÚžIe‘ŠÐýXÚÿ™aU‰t}ìîÓ×€]+W´ˆ^$ˆÄ^hÓ̺1.p&i@üAØ°âÝÂj‡Ø·î\SÒÃÈ>-³ƒó–L|š7+ÞQ†e¶ -ÞJ\Z¥)°7ô.5OÈÂBÜû»51ö¬ip„©Æ
¢Ú€÷Tã¤_\ñ~ÎК9¶íù‡Ýîr¹°Þ•šÝ Æn‡vˆrgU}ØçsÁÚÇå;ãPʪi=Ež3€¹á 0Ư• -‘züžãºµ@{úÆEAƒÁÖ¡’èâiïhÿµŠ‹K¬)¿—§ò'žŠ -ª®zvaAxžÜq±ó8‘d¸ÆÖrmeÏ1±œT¢ä -»8[…ýlôŠ_\"WR¡ç3_*a`oÖÇj®6´k®î v›îp -‰B÷¦á¹k““Àô=Äs›ÔZº-è¾êŒ/†Ó=¸•ó’¶N¶R`½&9hZŒ‘3‚UûÁSÍmëC¶‹†èk\[w Ô¼&ËÐØ2ÇØw&ÂZ£V¹éÞâng‚£;Ûþ 6LEó3õÌ‹¼9ZÌGaî§5ÛYOíÎ~¥ºœéèÜíóõH>:¹×¥ùó‹r¦!EWô=9jQ>Ì熒zq"Ök# -4ìÈÍZ$å‚\e™uR/lEÌŸ¶p•õf³4Žû¤LµÚÄ`"}PK‚ -¥ž%SÑ›,¯ ÄÀgØAÀ>ݘàÚ°ô‰î‘²õÊî›ÈYe#™:[
~ÔJ€G«×üãÿa[9 +xÚYÝ“œ¸Ï_Á[˜*I DRy¸Ô9‰ïì*WyœòÞÌY&Àxv«òǧ[-ñ1à½õž_!µšV÷Oý5^À‚ÀÛ{æñOzŒ?Vgõ¼?°õï·7ÿ^ÂåÝî¼D1Ž,Ž¼ÛŸ¿øwB‰Ío·¿xoo¯¾‚9vò@±(žn}·ÛlC)ý§ˆýæL/]–V
S|„~ÕìÓ¶ìÇ2£‰ô±ìˆâw>m´ôßÀD¤ý.Ì€T A<JÇ^óqó¿}áodð›¥eU1”%œKwhÎUNãsW<ý¡0ØŠ0dBz[ÎYBGlN}ÙÔiE_ÕLrûƒý¼V%Óƒ˜§MøiVÖûkR°0´dåâšÅŽGÚîÏÇ¢Æsô qø}ƒOa$‡÷³æxLëÜͦ=Mç-èSù—ÎnÉ7[¡ý¦ÍË:ííéuÄd2=|÷ÔõÅ,#QsÖ2×F‰$œ&îîÀÖ°ëØäÎ_ZÅ ‡HÙfË•†6ñxÈdˆ´[*VÊÛÊ„ÅÚl –‹ÈWw}ZU)Zfñ +‰þ‘?r¯´Ã…¾z0þì+þX9œ€y‘•¹™ý‹q¥SñóÆ®@D³ž± .-„ ÃÈz +6«(\‹ +r½µð2Ü#òôMW¬PêR˜`âîÈ–OïÁû×]ñÊIØìÜ”èaâŸÚfߦGz9Ú"мܷŒç€ +DêÛòþg¡U¸z7x]Ì6Jåó¯·#8×yaש..YSç%zwûñf7 N‚©:–è¸_
gY”Bû[8$öÿ)°¦D¹>žï+ÓÕ€U«WDD¯ÒC:ž¶IfÛ™ò'8“4 óAØ°êÖ~eCÇ·î|SÐÃÈ^-3ƒÓ– >-˜•î¨Cˆ2ÛîJZ[£E€7ô.-ÍOÄÂ2< +OhSwêJGüOYÓ÷4üˆLÊš(L?çIë0(kŒ#†—1£VV˸v<UÅUWÄîèùöœUeþgË)öÍvé=MG–ŒÏMGiÖ›1"c9¾˜‚žŸèFáýÂןÓó>¥¼ÞÌÑ +ðíiðÀuk`¥=U Ø endstream endobj 175 0 obj @@ -1534,7 +1536,7 @@ endobj /Subtype/Type1 /Name/F32 /FontDescriptor 179 0 R -/BaseFont/DRACLL+CMTI9 +/BaseFont/BSWRLP+CMTI9 /FirstChar 33 /LastChar 196 /Widths[314.8 527.8 839.5 786.1 839.5 787 314.8 419.8 419.8 524.7 787 314.8 367.3 @@ -1552,16 +1554,13 @@ endobj 181 0 obj << /Filter[/FlateDecode] -/Length 1141 +/Length 1900 >> stream -xÚÍ™[“›6†ïó+¸´wÆŠN˜Þ¥Í&i;¹H=íE·¶‘m&^È -
æë F€EÁŒa…Áü·'Ÿò”ÿ?ýoþûÛ[„‚$LƒÁ##5äóÃýG“åt&¾yYMg$B“Ç2«kžË8Ér}2«»l¥÷K¾æ¥Þ³Ýr½óm±1{[^ò“_WEYòê›x^<)ò4Ë7ú¼xš ¨Ë'óPC’ò™4@B#mWµ*3Cœþ2Q’LÔÕҖض…B2y"”»,ç©<¦tù“D—§œ<±*WjåUzD±6Wl͉”ßá0ʳ:+r…·"P© eS6”ÅýB -KÈQL¢‰1Dò„E$%Q¥wâÚ£mÅaf†>T<ÚX7…Pá -Dn$Ñ;ã)ÉqÈÌŒAÚWîî–«¢(Óê©ÒC£ç›11a äC‘oƒÛ~Sw#øx;ƒ04·£M,C@Ü‚$9E»ŸYŠ`¨!¿zUbKUE¾)³tDò°›ªG´›Ÿ„ÍÑÌçˆ`jcÁ^X-t!02w%=”ىϡ㎷wÄ -¹s؆`ª–]NÃfÔ¬ˆq§˜m˜‚廄—³$qA^[Î÷òê€êåR {¶ÎtwÅ©·»Å’èLèPwÕÓHI
²ý"s3 ‹©Ñþ=÷f¤»ðµX«ìx¾©·#Ò't•h¯Xœ_D{3}¢uÅjÈßþL\ø}ëJ÷M:…оeIÓ¶w/>× -H:¬Kv3ŠZ°›ZÐõÜw -Œý0=ÐUÐz¼–‚—õŒòµjOƒ¡ìȬpýÇ®P·Æ–>fyZ<v]_ !—¿ðÇŠ«±fõ®2Ú§~°÷ô¢æLµcÏxb‘U©¨VŒˆE–nŽ1tn|häÞ|=|žÑ +xÚÅZI“£6½çWøhwÅmH¨r›$3Ùf*•t%‡t´MÛTÓ0¸—ôŸ> caÀ`›ö\¼€ŒžžÞ·ÊŒ0ž¬&æí£}Û½x¹o½úëdRÿéûëwÔ„pÄøäúnâ$äd.(’Þäú‡¦?'Ëðyöïõ/ï>2QH †'sJOÌÏ›‡•ÓÛÙ\¿†Y>›3I¦OYTa_ð4JìŨâha?gá]˜ÙEZ¾¯CûáK°*?=Ã,Ü»»H³,Ì¿èùüiš,£de¯ëÙ4‚"{)'-‘,Ã9, +Þ +0ΦZ +DÄx5O«ŽvEO“Œ<õ«ÝÌǨ#Ómä”øȼ{xNY5±8ÍW"ŸÊD@(üÙà çf·‡›i³ÛPWo»YCákmGa|AO ;ÂyÙãWB¶Í}룬ƒ½næÔÅM:Óú²!³€orzoœ”ÏGìYÖŽ!Uc¹ÃdU¬/Ȫj?e¯QV2¶ßKÜžz[ÈÕ9Pr¬ÿ¸ˆNö®ÒöåÃ(Znµ„½G—‡¦—ýÓ;?Û^ªOäˆÙaätÆaËXyCB9yÄ_í9©GÍÇÎnÿ[6È?vôü†•XØÁÍ´²«‹°5SgEúvꣃìâqœRtLh•ì8bħ•îpÄx Ïâ!"ký»ÅZ1"{Œ>EÉ2}Ú#c¶á4^ÚóÞ6¬]¸îoÏO*3¡°tþ^OµOå:ïÃy®‘®=x[’~ó?Ó槀 endstream endobj 182 0 obj @@ -1587,7 +1586,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-33 -250 945 749] -/FontName/MWHCZK+CMR17 +/FontName/XBTWGP+CMR17 /ItalicAngle 0 /StemV 53 /FontFile 7 0 R @@ -1600,22 +1599,11 @@ endobj /Length1 908 /Length2 2928 /Length3 533 -/Length 3569 +/Length 3568 >> stream -xÚí’gXSi·†¥H HQ„QØ(0R“ -ŽÔôàò -V#h2žHPG“A$ -ƒS©ç¯?›_.Ó `ˆX<ú(r -þ„2 -Co¤ c±Ž¹eÁŒÆÑóõNò¡^B5âÁ7áȯZP*Ú}ƒt=’<ÙÓ©,ý6ôÅéY©›ç%ü_pf×/(åo1Ѻ~ºlòé˜MMzb=Âœ*Öz?ên‘KüÓóN ‘j¤/”6«2 -C–©MÏC‡%[‚ŽìF‰¶axûõ,I*Ši°ó,Þk¶lpaï_~mlŒ³Dþ-»LÄ}´ò•2‡Êx?LT4Y]qpÏhþmÉ©¹$7¨—›©N/пªâ]é>ó,s!ë‡|9—#‰¬çÚŒ'IÂaç/z_’@æp¦ËþùáÐûšÒò“u;#Óî Rô.2ÎûYíÇ]®û¼*ÒµÉP!j²¼.y#¨Ê?À¹+dª¿ó»ŒSg©}%ï&Þñ&ª9¦§d/Íß›±£‘-$q.~ _q¿–â–Ù–—µ×`q»2<ײ‰t\yË6 ëÁ•Oû®úD+½3ÙªX>ô™KHöDÊmã<í4µ¤ÚCŒqÃä»QÉu`²ö'{édÉ–6ÌX§ -Z?ºKòNŸxUÒÑ:¾èd®9Ó^Sÿ) n]ó+yYÂ.5Ÿ¨ÚÖÈ/tn8$ÜÚôý5ÿÆúˆÖë@S=vXá9éþcÚÑŸîî˶’Qý†Ör«¾¹rÝŒ–õ™3<G¾Q²$&—pÅ…*ÑàôöD#}§•ps:ÍÁ!Y¶û˜¢´§fó–¡ìyˆ‘Ú£W(‘Y
»ÈuíלÝCä½(#v~Zä>H}ñVåÜ3ĘÃ!Âë#¸Ý÷šó–™Æ¢8uÊÏÎHPœ¶?Ë%û`¥³‚—E‚^Ñ€/N¶5Àùó› ˆuÒ„&ª²cwj¤k¼µfÑÝѯf“Å'ŠiÊ D)·¾u>½~ØDó¥+žl$ìH+—-Œ·ªUÜ°Kn1c”?º$„ØϛŠݬêh3öåm^µóŠ¾«N¹±°(3™“c[ß.…àFÊĸˆoCï-¾ ÕnžÂŒ’¸1w(7Š§E`»EöÛp
TŠkÎ…ØÅíFS>ÍÄ®sÀ¥J]ËBšôÒãJ¹«³…•‘+«B<½|aHÁ'S¢óŽ'ª—F낹,È|1F67xØP‘´¯n¬´2Õò¥wü|| !à¶ÛâfË®|¡Úìêš–~¡YËÃÇyr_òm™Ÿ¼|[âÞD\îœUöJä.t±½yTʳ½_$ÝG¹Ò,"ATäv5¦™Î0²ï Æf¤Ïþ5Y4o£w'n.¢Ë
o.äàkLH(TÚ¦ˆ>QšRØ~u -’¡PÆé™2g©µŒ*“Ö^é:B„2ç”Æ2&æf‰îÃ¥)Ô3˜Zæ›ç¯ƒ?ñ'iýuŤŽÐK -?ßè^èT«·ë-³s*}×d~2n¼ª - ôòè¼ Ö¡…x}qÄqh!ŽÝóxýJn:Ïísr¯C¯<×ý¢Òíª]ï½ß- -Eûê6ͺ<‹x¶ß¹â -y(Å o¤çŠ~Ì
mægLú”·7Ò–]‡Â7ta›J6<½ÁÒ/¢D£éZšÅøØ`-…=nû:l¤&šè÷^Ñ9•×ÄûñQg-Ú.+«ÿžåãÈýôÝjÒçØ1ÔÏd:´D¸ô%4DpõÞãV´0œ¡VËRgnËl‡ý¹E˜£w–’´‡9W©‚gÆbA˜o¾QÈÁ,8Œ\zßüÛ†mÚ“¢øø@“þü‰ìðZ6¶»Z[mA=¼Ç(úñjiPö¹à«¹í˜†T9n,Ùk•®˜eݽ]Ä»‹4Ùê)1šºb5Hº">Ø[öOhP±Íñ~x£ü}:ÎÙ'¹*_ù9 ›e“;LR<˜ÏwzŒAåî«¿?,Or9Ý0Ø=l¯=4Î ¨xïÔ²åÉDL—ÖTmŽüôtä‡Î–sV¨àŒœÕ™½Á‚ +xÚí’y<”ûÛdzdYJœâV8YgcMe™ì»2fîa3Œ±gÏ‘]¶H²C‹"[–ìYŽ(d-û–¬ÏTÏ9§§ßóÏózþû½~÷÷Ÿû}-Ÿïçu]_aAcIUÑÔ"È’p)¸ ®o—àR0ˆ°°: D‘qD‚Š*pEE8 êá +ŠÃ[+×u>ÎÓ›•1Ë¿?1U¨‡O„ØÄ/\ãç±<¬ë= endstream endobj 11 0 obj @@ -1625,7 +1613,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-58 -250 939 758] -/FontName/RODGGG+CMSS17 +/FontName/NYTQEW+CMSS17 /ItalicAngle 0 /StemV 76 /FontFile 10 0 R @@ -1641,20 +1629,21 @@ endobj /Length 2556 >> stream -xÚí’y<ÔûÇÑÆÔ B~¶˜…a†dY#{cæg³0‹Ìµ'éH¥&%{É!Ù:–ì²WÊr[[ŠN!ËA‹;tÎ=ÝÎýç¾î÷uß~ïçù|Ÿïçõ<š’“‹¶‰áZ1èlm„ÂÀÚ»¸ -¨XF0—I!°
¬æšÊ -‘@ì ì -•û»‚Aæ°A&`Ï LúRwð›9{DáÐ~ÌÚ° T -ÑŒN¦‚ -› -€±þD$_Ì]Ç¿vËÜœ®BÚHÀèb -qñ˜)«M+¹=¬ò(åxÉó±méÉÇiÃuÐ5[¨r,dîú$~Ee¸ê}yê퇩•üÃÅÚ§ýÒ3TƬ.e\9aÔÛî>&>)6#áw 9¡Pëp
(Œ5Ô§·ÍáŒü„º2/..ù æ:ΈJ\Q°ýÙÓ%Vwƒ{f²rÚrßÉ®¹+ÚÎiÓê¸ä¡J„¾à«•bLø³ÁéX!Ü3Ô¥¶Ek <É£¹úÐN{®Þ<ßxµŽ¸½öäÎÙdù‚÷n
Ùo•s¡;ÉŒs3…Æ‹¬ÈŠÅ|“Cqiuí° ÿ£íAìEyc·ærÁ½k õÎÕ¶ýçÃ¥¬Ùn§87žNÛž99sIEf‘P‰Ç\—5ÖÜ—»"¹7º§uú¬ql¼±íÕ€¡Á§s®êÄ´˜)ünÚŽµ²1ÉŠH› ÊA)Á”}}mÕ --ís|®ÿ¢X´0¨ì°ã²Ï¹BFt2|î»úI¸ÔëÉB¾ÆÔmìºÓ†tÝâ`Ðv7k ^=qàÕrÉ‹¥´[¾£È(m2¯ÅG¥öÎp9[]øfß–JàS«ÅVpå9ÊÌÓÕÖ¼í™ -h ˆ¢ùÌêO¾Á—Ìô:‡Ü†–¶‘8Á+i¿ûFfç-Tåà£Ä€ešþyb²HYÁtyUBXkÉXg®õ¹“p"#óy߈\—èÌÙ’W²cMn¢g5õ-W®¦ë|¸rH›ˆüéÔ²þýs75öÁBnx§8Þit -'~òï¦ol^ô|šiÔ6ž§›òÞ)n¨,NáÝÛLËpÂö
k’ÕKe¼8U¶õÁ%ƒM /?7$œè÷™!fÖ.ï4W=žL;*+’ô¾)’̻ы|ŒS‰Ö+œ©‡¬cßÌ]ïÁ㉢§EÛœ-ôê‚=Mƒ<Î'äðîvòäÞq>ö¼™TÝ\Ì¡@?FyŒìõŃ·áÚîýw -ö¥Q2¼ÅƒCi’ÎÈcîvÙâÒ¢u×ÑViÅ=
b‹·õJûý–”V!Qé”÷ e©ûPòØD\¿þ/Jq“áŽyÐÄ·Z2DbØ <zO⪖AkÀmYjkн,ªÉoérÅ1»T*³ ÓÇJ¨ÞyóiŸ^ž¿Ü9~±FéôÞ‹ µÞ±ð`e›Ò7xV8VðµP¨)~†ƒ›“>Ùk<™ïÝ=ýœV~™þ%Nlu1U¿@º¥Ñ—äsívag‹=õ`Þ -†Ñ§¦å¦‘<Ý!|w6aÜÑûþ¶G¥ÊJµ=4ZÇÍû¬we¹nRºnÏlkÈoWJ«g}ÇÆip¢ƒrÔ\€¢‚‘;åÏïñ•kGGF¥"Kî5ˈ7XЈ(¹;4»‘ÔKô¸i²ëeˆï…ˆžH«›è H¬½ÉòJ‹üP|©‰nj££¤YAÕà©Ø(Þâ2ÛÖ3g"—*G%Pƒ.ÅÖUˆlé<}¸2`…Ä(ºßo~ìõ†ÿ²êÔë2‰„û"ŸN¡Àþã#¹Sß.ù\y™ÂXI7y8Ò ²RT‚ CDâSÈÃ'2³TrdL¶.·7vÏ{l׺U£tU²ëbǯ®²qz¦Ã+í{¿HˆÏSÇÝ+ ªeYY)[Ò…÷Þ,…|´e”Z4‡-ÛKºï9wº¦où}è‰:ãG±ŠöõY
Ò£>¦´PʶVñDøùAþ_ࢠ-˜lÀ‚@þɼ=! +xÚí’y<ÔûÇÑÆÔ B~¶˜…a†dkö}KcÌüŒaf‘¹ö$©Ô¤d/9$[Ç’]öJYnÒbKÑ)d9hq‡Î¹§Û¹ÿÜ×ýï¾îïûÏïý<Ÿïóý¼žçQQptÑ4!ÒýA:¥‰ÐBèX;„€Ð‚CTT°Ï"Óifx¨ 0`Â&H8€ÐÓ×ÖÖGa +àB'AG +p™ #$jA @$X€?H"Ó °uSÖ´ +Lž/@çSà¹$Òi@ 0{:ï5çå?¶õo\ýXÜ‚M¡Øã©ëå7õ—<žJ¦p~WЩ!lÈ +`´1€ +õ¯:79”
Z›(8Ž†£6¢6ƒÒXûÉÄ@æ
ÃA$#S‚Ì; «±è·p牢GÝçŽÆü÷i¨¥\ÉÞ»³Û)[´‚‚¡«ï“//«Éºmgrgéh‡³§ø¹äþ€îŸ±Eý’3o4ûÅ«¼`ÍÀäZœO…F.*â葉¹¬¦¹éêOOº¢›†ˆÅÞM÷+&’^×ó鞘³¹ ‘…[*ßJëÁ½ÅwsÊ‘âQÔãÚ _Ýæ5ÝbUZ»·fê¿7ç/ +ҹǪ™ÎÚ:7ôR™æÛ‰[Š>-$]oñ$d4¨”÷v)ÙèÉtì²l«óÁg÷ôE6Ú‰Ù`Å&-‘Ÿ9ªUŒ}1Ò9Ù؃Á‘é·Qï©WõT½Ÿ—"vfûü)îÐf—îÕaÅO*ù¹RJµFýM®VÕç+L&ký/ƒJÕG˜LN +F‰4œ‡á¶:?ìáŽØéO¸ÂùUšíÔ½Ï~t;/RXì··¢Ü0¹{/ÂùÇË©·Üxf{·îöágSe¢)³¢ã„òÄÛ‘ìÉاkHóÂøgGÉÐ5aeæ +·ªÒ:Ò
õ¹<ýöÃtÑê,îá…Í"3‰™Jã—2¯4èëð‹™ó¿„œ”«³¿ÅéëÒÚç-
üº³..-ûóç9Ì +‹]‘³ùÙ½Ë%NÖòçÌTÕ(´õ¾£m7rOŒã–µ ñmU]þW«‹|%˜zÑgC3q–ÏP—Ú—¬€ŠdkŒúèC[1lܹÓL\ÓÕzÂκ“»çRdß»7æ¼UÌ
‚î&ÑÏͶU.1£*— +Œœ>Z¦×wÀ&Žv³–d
Ý[*ø;u®%68×Øœ°b¹Ÿb{Þx:csæäTì%%©%|s]VØPý@Þªøþ|辶™³†q †6W‡‡žÎ»©Òc§q{©»UÊ_˜Å¦È#'ɇ%øSô·×ˆÉµv<Îõ½þ‹|ñÁ¡X ªÓ–Ã:çÕÊôCxì Z¦]ÏLyú5¶~›ÐP÷v¤ýئP{½ö»ÙX=Õš¡ÈC¯VJ_,/¢Ý„ƨSù¾B(•wú+9ª‚7»)¸&°L—F_+±€+žÈUdœ®á³âîÌ’kB‹AäMg×~ò¹d¢Ó5ì>¼¼ƒ(ßÈYMÿÅÐ/*›€8o¦$#ôLãŒÏ“SÅŠrÆ+kb‚ˆZómÏ“èYÏûGeº…¿`Ζ¾’ovö<«®k¾z5CëÃ'Mò§S+º÷ÏÝTÛWh +[̼ú¼VÍb^w÷åxõ5®U.†ÚÌÎßN;Ô_²YzwšŠ³û«¹£›S^ð
bWâ‘8ûM·;¤eI÷Å1Ÿ</VLËYʾýóoÞŠZ×tré!n»0>w§ô;$GðSN"‹`
ÓI²Ù- +…¬àLtŽuZpVÚx@*nôeiÂó¨áÂYd°küΘݰ¿Iw]´•r-Pç§MO'ÉÌ ¹Úøžü„ƒÏýÊêøz©ÔÎ'ê÷™ïÊóÜ%´ÝŸÚÑXЮ–ÕÌùOPá{Åèù@y9²×ÿñ•kGðGÆ$¢äKïµH‰6ZT‹,½;<·™ØG©ò¼i´çe¨ß…ÈÞ(‹›èà(¬ÑÊj«ìpB™‘vZ“ƒ¸IaõÐ.‰¸T(Îì2ËÆ+w*“&O!}P‡.ÇÕW +më:íZ¸JäßJ0=öz=`Eyúu¹Xb¡]±o—@ÐÀñѼ¶Ãio—Š}¯¼Le®f=m†
[()À!B ©¤‘YÎÙJ¹RFÛW:šz<wjܪU¸*Þ}±óW7éxã‘U¾Žý_ÄD(U|åòììTûÌm‚ûo–A>ÚÐËÌ[ÂWl +%…
ß÷š?]Û¿ò>ìD½á£85y»†ìFÉ1_cjyG›hü¿ü ÿ/ð?Q€@ñŠgC ÿ endstream endobj 14 0 obj @@ -1664,7 +1653,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-29 -960 1116 775] -/FontName/ONOYNM+CMSY10 +/FontName/EASVUQ+CMSY10 /ItalicAngle -14.035 /StemV 85 /FontFile 13 0 R @@ -1680,19 +1669,20 @@ endobj /Length 2147 >> stream -xÚíVk<Tûv†F²EVIÃ\ŒÁ åÒ…rÉuSÙ™5cenÖÌ0H.‰IÉ¥”K% ¥¶ˆ\Ê5{#¹Ì–DB§MºÉõPv±—Ô®Ó>_Îï|;¿³Ö—õ¾ÏûþÏïyÞK{“‹¾%ãnç°ùú,Á°¶wñ$àÒÖ¶†A -â°m(|Ð ÉÀRÀ -ßd!$T -páP!„ -E -¢Z²LÐ'bñDÒ -Ù"¤"! -É8,›ÃGŽ -Ì=”·‰7$Ã.²øKŒÔ7Nq…'Òw¼’‰1 -MZʦ]ÆNÏ–Yuu3Ì2u6÷LdÛ%n²ÙÒb3]—3Kv/È[-´Ë¯ÿð4._1àñy”ÅmòXb÷ËѺQ¥f?½ƒé—L'Ž=ïŸs˜ë“íÔaú
¬àšÊ‡iŸAO)N—,ãMä[%&ÜצÓ/FœÚ2bV†ÆœŸËvcÎØóÒqqwaý¯wÆÚ(.pPOçýXub
«²?¢]ÒE8‘ÿL/vÌÌõ‘g É+ø½„wv³COPÍ5úIÇ7»Â¼.ܨµDœlv|½kë›ãí)«Æ‰ø%»Q²ñàø•x»JÒÊEÛ3›úü3æNo¸¦ÅC
_ßrP¦‹Í9ÝèÛj]ÇCYãmÀÒWþ2¼ä!
Ý*ó¤æØÆÃ[ÇU*Ü‹×zH\tW‹òÎüýrÜLÉOvÄ˯Ë/¢³kíNOîHqK_‹uå'Ó?.IÿYíZs½x/³È¿=9›–*V“[Wm³Læ—¡Äa`CŽpÄXÄ8×aÒv8 -GS¬t´Jìa†šI.GK)Zl‰Ü©zÉçΡð¨*¥ÜÌå¤Õ½È;m´{6µÝk}’Ü%ýî=•Uµç\EgûhI[ÛÜn¾ê¥ü‘Þ£VSjR˜!QLù@øµ²RŽé³»ÝoÔ5eŸIýù¦fîÓðRûiþÚÍv>º‘=νý©©ÊÞíí -š|ÞÕ4îXuЙǶUä.˜’½• £u³Î?‚z±lÝÙüWÛz”–?¼Û°¦ÃOÿÕM…,åò!щôknŽ,~Ü£°%‡qUpòN®÷>Ù³]NÑ€K
pÒÐ/±Øô<Kæ´DXg·²SãV²%–a 6g?ú7äÎ=MwÑW¸ìrwEþ*ÙÐà1ÔToÎoÀ•îBæ~ö½ð+ïVˆv¦Þì+KUT×¹©?rM:eª+NÕìb]ëyŒbˆAžkòvaò‰:è…‹(A¦ -twïÌ…òÆQ°\þùîE$jvßö“ÕZîaÏpݳÏKê³´¿àKÄ_zî˜Åõ~…½au%®hÙ.—θÄ.´sAšE
?úš5E
dYAŸ%‘µ£«ê†NÇ/÷»l
©±/ä"vΖ©{o=·ê¨®‰ÊÔÑŽ*õߦÚJ›¤¸D+õ¨ê*š7yÂ~ rɱí+™*ö§Žz{^ªÁÉ´J¬™Zq$î‡÷è«oUêJúÙQ–{ñ¥µÅ«×ÏI’<“ÒV*Ïs“23O^¡ë²+0¦6ð@m¦h›¢.“‘×A…My{½ßiI'Ÿ^®Ô¹¤‰|8û½À–ÅìÔ«ÞÚè ¿û"È£U"ÎLÌîNY}=íÚ}ÙRÞaæÈËgA²†‘£ôF}Þº¬Ç;)åmŒ “(©lP5³Š+wºJFN§Þ5Ρ‹®Æ¾¤UãJÒ.,r‹—¦]M0©âÖyZ¼'ïkþ1&3VkTUÆ4=Hú ˆ¨‡;õÐ3\ºdèÅ÷í_UuŽõÂæ=;¾˜5&7ÅØ·To“HäKj¡ûiÎß/qªeõïæJ ˜Ì8äÙ†¥òzB_éåè‘Ö+$1þ®»1éþ¶Ë'‹±«$å7gb¶kžã78QOLÅ6w$é“~uLPñ¢åîë/5²XùæL[þÈú!êM¯ÝC}=]*²†S㣃•ÆÖ'¿E. Åÿ—êÿÿÈÏæsXØ…úÀ~v‘ +xÚíVy<T{¶FC#¹Š"§EÒ0‹1¤,-”%ëMå6fÎŒ“Ùœ™a,‰IÉRÊRIB©+"KYs/’e®$z»¤MÖ—RqÔ·ûþó~ÞÿîçžóÏù~Ÿïïù=Ÿçùþq´W9¹è[Ò8ÞàV›¯OÀLk{—Ý<@ÀâQÚÚÖ0HáC¶
…š2™ + +˜L +kŽþ“QÁ),ˆøy‚Ãâ +ø Øsh Ìþ~ÔœgÒ ë{Ô–OaBTK6ƒ úC,žHš ÞVHÒœ >Õ S˜<ðSdÓ¾—‚Ø÷In‹¥‹»Û.ÌçhçQ' +Äæ»rA +`dó?m<ê—š!‹ +Iþ¤§‰ù÷þ‰ê«=n5´tå§êxÞ ¨;´Fœt–à8œÙ×ÒRÑÏ¥4õju‘ÄçÂÍ2ëJÍû×”e/*ÒJñ¿F4 Þ•<Ü\±3RjH"“ͦÚ˧·{NdƸ_²Ô3S¸>ýÊ/x¤7ý}Päþªmžµüzså-âuI°¿‹,þâûẆI®³ðCú¶W1Z¡QKÙ´ÓØéÁ™R«Î.¦•Y†Îƃñ,»„
6›šm¦j³gÈîù¹+…využÄæ)ú?:‡²¸åQãMìz1R;¢Ôä«w í¢éøÑg}³3µ½²:Lßþe\óyãPíÓ艡ÃEi’¥¼ñlr‹Ä¸ûê4ZÀ…𓛆ÍJјs³9SnŒ‚i{^Z +"á©Ü+¯bUô…7¡¢Š; dzãžêÅŒš¹>ôàô7z½“ðÊjr謾J?áøzG¨çù›#ýÕ¢æðMŽ¯vl~}¬-yÅq?¿x§5J6. +—\î,ëÖ_!4ŠšìÉþ
¸ÜßUÀÜǾvùí2Ñö”½¥‰¢1¡Šê7õ‡®‰'MuÅ)šŒÂ«ÝP,ð<1p÷ªÜ˜Üƒ¢vzAÃJ A£±ÝÕ3}¾¬a„0ä›w®k‰šÕ»õD•–{èS\×̳âþºL…ÏùqŸ9fr½^b¯[]Ž-\²Ã¥#6¡íœŸjQͺjMQÃ^’ßkIdm물¯¡ÓþËÝ„NÛ +Wâ^ЪpÅ©ç¸ÅIӮěTòFjw[¼#ï—þ1:#FkPUÆ4ÞOü ð¯ƒ;ôÐÓ\ºdÈ…ó÷ì_VvŠñ™ÄæÞ—;¶5*7•ÉX—»XoƒHäŽKl¦ûjÎÛ'q²yåïæJñ˜Œi8øéºÅòzBé¥èá–õË$1~®;1i~¶K' +°+$å7f`6mã×9QŽOÆ4µ'ê“~uŒWñ¤®æîí+1²XþútkÞðÚAê
Ïl݃½Ý*3‡R⢠+‚”F×&½A. +ÁÿŸê‚¿òóBùöE¡þ endstream endobj 17 0 obj @@ -1702,7 +1692,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-34 -251 988 750] -/FontName/ROKQYA+CMR12 +/FontName/PWBEBX+CMR12 /ItalicAngle 0 /StemV 65 /FontFile 16 0 R @@ -1712,33 +1702,27 @@ endobj 16 0 obj << /Filter[/FlateDecode] -/Length1 1132 -/Length2 5007 +/Length1 1116 +/Length2 4931 /Length3 533 -/Length 5762 +/Length 5678 >> stream -xÚí“gXSk—†)Ò‚ˆô"` -+*)&©ëKJ%Å$ -2ªPoŽÂþù?%lä¿Ø IØ_8‡²²™Äv"œÂ{ö»m£<
c†€æ§ë ý|æÁžMj72±q—ÈWÃÝ š£o†qé‡WoGUê)%µíßíôóc/Ÿfrêk²^ÜS¬ˆ_b¨µ"oý{mg]#œÂß%£Ù†åc=Z¶Þr³Õv¶LÂÊ„[ÞMÔ|ŽYn$R„Žªûê¦çØíW‘£ÞƒaV¬~UR÷ÜC¥#ÎÌv”EÍ‚†_j!,_Öæ÷‹]Ù],Ì_ÕÒº¡4hû9àíu€bZ@¹GÑë¨Z0çÞ—ä6þ`ÁÈq®ëJ˜ -hGr,Ê -È¢H£ßÔ1&W>
Ð#[ºûT]xóR:E$PÞlª¿zšYÊR Z)ÀǟݲÇdÓõTYMù~=Ý"¬c¼ÄB8ÁÖȧámÆ«4rªÝ$æÊV9ht{Å™ËÕ“‹&5å“CˆïŠü‰#[“UÓ¢Ä2n9”‘7yÌÌ)/…ÔmŸ€_®O(ÌØ#¬ ¥…y]6‹BÙ6ee²±ç)î$¤\?e›IÛw²+ÇMä‚vË2÷ã¤6ÚuÎ.³Nö¨OPŽÎ3G°x–顸=~”SåÖoh|K‘×+8ê¬aPªgm -¦«,Ž„`¢¶j8/úqBo3¯§Î›±<ᆮÞiN›¶rÚ~*yÓ=ˆJÃœ²OYƒa~Ó’Bq“h¹ùè¸5'¿m´MHFs{ }’Ä%sÝæú°dùíˆæ¾î·\?×焳Y³MWUCÇ6MƇÂ*Y¾²Ü½Û¤Ìåü‘=ï+CvãN#ƒe7C‘%¸&Y*ÌŽO·39çšVšó`y^0Åmv¹+T¥†ó&i«²î0õóìölï×–M«Lv¤}ÏD*IùKGêHtŒ®Ïz¿êÚ/-™mÑùNÙ«sÇáˆÊ?©Y×Ú^îëàÅŸ—Yæ+d%°kRýX!¾&Edù,=»ìÔ»÷kað.]IR¬»¢X R'åWžiTŽT Š˜8ûÑñU Hë·Ó©ÎîZÝ“‘m$šï46íˤµ=¥„ûÀAºx¸MÓÂçòý£x´ÕŒ‰½¿su£®°¯é‰ù!uX@¦U_¢»…‹k\~ñ·")(_18ž'é-l…Š+]2šiÊ´^¹Ô#Híg»9Óôu“)ó媷{þÄS¯NwgTôöH¼ðϳõiüƒh×D—÷YÓlEe›Šær×óùoôÎíòÜ÷uw×æ[¯ÈìÊH³Ì¢üìÀV[+®±#ùtg|Îtý¸Ì$r5ôã湃`²¦#hØ„¾°1øuõµŠÍ‰ -–F“\y_>D7X¦òp’ÂpN>'qëB½í°ê i2Íé¦Ûp-~¦‚ˆÖ>éYP\æÑ…£jõÞÆvRüÃàæýKá'Î'ÕTíNoã>lP ‹ØÔ2#MÁø?Jî–ÿ´ŒìT*ÕÅÍ…¸¢+¾éV,çp…Yrðæ<žè–¢ÅÒÔË>p¢Ty{®u¼éñ¶©3úý÷ßD)ŒAòO]>·™ö¾¶ü¾BÑ
Îôe¸ÈÎj¾4m`!¶|?}n‡Ú›_~¦ž—‘S\˜¼0ù¡S«Ójé{Þ‘ïè•w÷ˆ¿…w\¯ŠÅÁ͇!{d2š6ÚêiA'‡$È„ãíò.ƒ3-hõ-õkÔïsŽG,Äø_ˆ…ÝͶ”éLf…°ó](&7äç«·1û‚ÛÌYÀ<àU)ßô.£sµIZ~cƇÌîá”ïSô/) —)Éh¸Üš²¼tÆ裯±úªjçÜÍË\ƒ k®kqßÐ_G$kÄò[¬’t\Gá–5DNßÕÓ¦…G®±½œïôœ»¹ÀšNIÝ—´vªÌ¯Íàáìû)ü„D¶™7&·ÏŸ±|[e1óÊÞmb“a³¥`R -Û—¡¸ò¥¼šæótÔk¿
òu')î‘È‹›-$ù=Ó)z×a`-z@ðÅu‘u\ÆÞBæÍÊ -Qi(jÈzP%Û»ÚÝR0”Áo*Ÿ{WCäA;Zù>×ywêÐüå£Õéò™¡Š×äÇ´å‡ÖÎƵ}UÍJì
!›#jë7–8ONÆHÀ8 -2¨Nµu…¦š¼…K’g»Õ;Erê™m¥—Ñì¾ j9?ÅBŸCtrj(®Í8GV*cÕwI8¿Òôô㚊ÈÃ/üi~žEŽÎl€U¢èÍ¥…WæääÔL$WcN7¯ì…‹ó†´4kßôûQð௖ f,´Y>¼#M¿=øPùogW`¦ÎÌÙÛ*pa÷gié;-èD§Ž3ù‰U5y–˜Þ"óê?$MŸeݽ -ØWå½ÉhÛ_)ǵûŠícÚ݃<šYÏ{ɼfò@kÞuÏó¥¬?Áw>tШ¾K½~Íór§$<Þ\09눞_SÇ¢ñ”#ZHJ¹>^{øUø›d@'IVív†ëÚTË÷‘… -kþs¥äƒ°"êÒÁ;½œ%ŠBžC{½OìFµÒìêŸqa–]^`èG -¬J¥ØK_1KüÚ² -k8ÐýÁ—¸ÍP€È³˜=íöFƒšü§3ê´?l8F]pz˜:XŸCêß¡ÆëL<üH̦ÕÙÉ_ÞJ*Úôžã›ÐºÊˆËgûFÎÚêFñ”¥WôYØ·´:j\¯yCzZ£×ü*Žl‹z2#Çk^HÑkºŽæiåFê’ze¦ÚQÈDŸü*¯ktzܵ½ëß#Ÿl-u¨®ÈµaàŒˆ â÷¾G¹2dÁ³éÒãؼrNL³sœSX«ómðPgÊ׈Ï#òæ·^„´³Ø:‘7Ür“yèLó½œø¬•é>óB*¿xº”xïîPâ³/ŸºÅÎ'ÏëdcÏÐÖpu'¼áaS{—£÷‚–*DÐ⮡lx/ò×üAÀnÇ•s÷ò˜ÓŒÔÙÏn,ñÕñÔ‚q\Þ³]T×(@8Ùmn³Óg/Gæw†Ö(ZÞŽŸÅŸ¦Ûßáõ"Õnü8,f`ôÍp^€ÊÊš½Cp´Œ209ÝTŠÆk± BË&ÑÇFž0¥)z.š«žÎt)_^ð…õ˜Ÿ`•²%^2ÜHÊ×w×ÚªËIa{Þñ|êFÙ{[»YlõíÚÖŒÊ9ÇJe—þñYrÚ£Fò§Í¹ýÒ.È·—Ev6Q$µw^ŽÈ -•D½ô=²t5_)½};(~ÈÖ«T`±5úZCgñQ¼jÐâaÙè—µRXî›qVªH‹Ö©7“`M¢»%WŠç¤…sûúÛAuo:bW+²ð|ÞëŠ{7‡®nÒl)r.+§9f›3AmLjÙ™Ö¨ðaqRcúœÒÂÙ%P±$Ö"z9?³ÁÄlºªCeÙ±Sê9¬êÖNèEtç`ÃŽic%7I#¹M‰P)C4!õ’s[/º5|d§Ì>Œ7/)aBgÎì8¥–·z,¡K%jV9Ú•èÿC™5…NAQàh,ý¦i,éÄ5¦Z3Íz©úfŒëÒ~¦w!¬ò<å~l@vçþ¨ÍŸÇØumjGo*® -ïwMÝÐÕu®üÌ«›)P¯Á4uèU®þjªÿâCOÊ}‚,%
õ\}íؤc4þ#“Ú]£Å1ï=‚eç]›6IÓÆü8Ê ¾Î¦üÞո̄K!—ð‰¤ö“oæïßÅ,}"í¾Q% M9`53ê$w¼dP%Î&¼Nžë)&¶t]Þî¾zñ…œ½ª•aÔÝçuH¾ÆP_ï†àÞNŽ ˜6¢þµÝ‡” Œ/[ÔÏý6àŸ¶º}¥:t«B&5>h2–•œz·ÿlôô>Ïé·´l¢ïúò³(ƒ‡æÈ`ÿUó>×±A˜Øƒ@w²“óùÜQŽk>Æç¦9ÑŽP0îòø¦'“-ó–à§f{øÃïÏGU¡îab$uìÃ÷ÀºS¬]r¤‡F—}€-mÚÄZJ'+âEB -¾ÌÔ9I4E£óã²S -Np¸ÓNHôè«ï‚~wâèΟ…&_E<íšø.dÔIzå]ÏèÊØ+LVW‚R|@¾˜*×ê‚PCÅ¡úÙ1ŸÉ^cš©é£žÑºéKO¼r•±J2)Þ‰·· ²…hˆÚ„yISÐÕóD;Í%%‹ëbcËk¦½Ðª•±TÆË_¿ zü6â8JŽ†Ç™Bæ†Ò ´ -ónnP®‡LzVŠðy~$zs0á·Ýüd’íü¤È
Ç(,¶©Ïî'ur$óå|Ýþƒ•zµïÖ$Ä÷„4E{²®ÊÏ(Ñ^ïyûRU¼Œ°eÐõ1/¨³m=ò´¡ìäΪö,Ó5žjÌ>εAm‘Ôo$é—ëÆßš¦í…ã‚ê‚·
¼,]Êe7É÷Ftµ¦ÞÈáËe"Å÷l”è6YÇðƒ:óâïË~êo×"–¤¦žK[†ô7v•èHâ‡Ö*;eï›ÖÕ3ÕèrŽÏ<ñü‚ÜÆñAh¼tŠ~#ÅâI>eCñˆýp6U=š]Àæ$}Ñ«3\Þ±N4÷^#ò#±ÌÇo
©<Ïàë”î^åòÏ&߸1ž6Än×)n4‘vó;wÇàïó#U!iäîøGÄótœI¶–ó³yP’¹¡Í+.ôˆò%"ñZß?ÙÕKÌsã;l²t!®²¾ÁÚ°åÀ‹×ìð0æÝÙEeÇñ;G!¢=ámB#äØŒº8/çIÕ(áS€Ù†©ªõFíY«ãUöâQ?s\³¨^Ýj.ÆO÷îu´Š›k—[4‚|Ž¾#wŸÎé?‚ä†ì$¯»lø´zQ×ä
ÇLÞÜ<Âàó9I׺’¹©2[úaÒv‰ªi9—pÜB›Êñ³3“Â}«oóÜ‘¶l1v´ŠB?M*eà O¤Nál»ÜzØÓ+õôŽ$óû‡¦\jñÕÜTv¸7û¼·èad'Òôrvð%Q‰ÿåøÿÿ' -@Ýà,ÚÝã - +xÚí“y<Ôí»Ç-Ù†²/k–±GÖ±…‘-{¶™Á`f˜%&;eÉ’-;‘&KBQ$dK”P +‘=ûNÖ3=Ïù=OçùÎëüw^çûýçû¾îëþ\Ÿûº¯/HÐÌRJŽqCècÐx)°4XZ€å€`iY +@)9r/©¨ +"¾ÁÙ¡F²@1ЉæÌؼ +lè«&µ3µžè:_Ì/õýsðéƒaÜbq&æ)¾UFi|9åæ‘0Ý–£"3àÇë¿7•¨´G `uHíó/^Ùtßx옆f9³¹üà}ä…]ôJW©‰éOîÕ°|ï¼.ë$$7ßâBؾÕéte—l†'¢ +˜œÃ½£ï +±ÛfÀ™¹¾ÖQ¨3r‰`‹æßSòÐ+ +Çúgß̵Ì.˜‚ç¯2ah+#)ëøJüZ}xp{giCH{ ?¿½ú¼µÚf³ÖÓž:ÏN;ävm¤Íp
ž…ù‹÷«z›JÒá¯|2†Ý˜)%íðNÈ3êÓzÖ7(ð1YÏ1öõ¦2I‘¦deZ\»tr-¢†IÌh\%ˆ»—Î{põX}›Î%èŠ5¡Â^e`âqôü$É0¦$¤ÂÉb&ñLúDq̘öåË¡ËЇ!£ÛÃdC”•„%DîQ—ЬŒ~\’sFfvr÷ÒÙš~ëø`Oû6ic=y•ÚO÷Æ/4¬[ŸYôIÝ<c×ÀÕYÕÆ{Öúñ)ƒ%ŸíFбî×ÀÞ Š–·ÚLïlsstÞ‚ÞºZ(}òß½ZÇo_g;ÿ3¸m”p¦ùýÄw•GÕ…¾•Ã¾×Ýz5¡kMÊöqÍvÂæw"CôHñ¥ÛÔÉRÁ!'òÒ+yi»Äî°æLóLŽ’út)Bo
h+œ¾ÙóiÆLGHŒ~å[Ëñ>ŸÊ–Br`áTk¹Á“0Å%£¢¹ý^· ‰ˆmEz£?zéÅ?ý¸ryª…‚»å§U˜ÉFcäYjPz¹bQ!è-%÷hîȳY èî¹+¹•ÇõHnn\&†›r» +†nQž‹'ðh3gs?ž¡{·ÚúÛÕäoGQ¶Ž†wCoÓ˜SÆ£Ìm’qÙÞ¾_fv›~qÄ[›¤$M‚ø\§º±qü?lšÕ–A9—V£úÈåÐÅÑ~.DÛÓ«ö;°ˆæቨ̬ùzGø3Î8ooNEç\z2 búèÕ)GTr*eçñ²_4âõ3U‘ÓJ[¹ÉÙÛ3±LvxŠÀîÏCdl8ßÊH¥ÜwUáñCeÆÕM»XçRDñRÁï{±ï>Ò
Ù/rt²´|¾lïvN´ŸuåãÚr¥[Ð}? Š£Dh»ÓZ·mNâƒ@ž;g¿›?µ|öSŽñÞ°¤- 6,jì”X–à¢æÎÇ] +PÊ‹Úí³)Ùà ¨xê
‡ˆêÑ‘kÑ–™â'.ÓmF4yüÑÞÓ é†I//–}iZö_Ù0¹©H£yêr#Õƒj‰Ü¸ú¿ÆßgzpgžsÞæÍ’”uOÒžKã§JΚëK
µêØäNm¼Xzz¬ÏOL³É¿ç×¢Ò]ÍûêÉŠO)^ˆ—³`"þ#4¶q'é¢Óžgر®"ø´‰.p»&¹åÇAá<à5öl@£%hA,… +óﳞ×ËØOÚIòªJx©—eò*]l›ÆÆÆÑ9èüHV¬×Ÿ_ahŒ–Ù?f)ÏS0·13$Þó +–ÙÚ+ªc2è¶ï¢ßf¤œÃv%ïŸ5jï,Ü~$},Rþ2M|ÒüîŽtf‰7ö马¸T)檻¸mÒn˜Xî¼–è#˜#-&¯¦VòcÏ—UÀF¥®,Y’¢î€¤<É èË¿ )Ö¤§ÛÀe\*ˆä)(°V39>è}-æ´£nTÏB¼}eÿÀÞéNP®#…“…àÆ]ô™±½´d·~.$ÀHQù¥íQ‘ÔÑ,ÇŒ&$Oa¹(+—uNОն`ß?*ŒMAÉÍ»ÎD$¦–IwˆóÖ?üv–1F ÄÓÚ³ù8Kó}Ø—ª¿ O[ÓlÐÚÒšW0ðXãó0iÛ½Á=÷ôY}{P…òÒaGÐͽdšèºr&ƒÜ0j¤KŸ½·K¬ºžúh +щº]üµ7(Ä$`ØvŽ•¯³
ß$*•¥j:Ü4¢uËÆÖê +Õ}–;ó‚yâ>æ³@âì·•¾¤›f\m[©y#34×Ç™šGC¢ùR‡Ã„øÆ›f¾û—;T7¶óyÖ>9½|(<C¡]\ZV ·sôx;£áex,d“â«åê’ƒKȪR|w?} l{.Õr¤¿…È"ªD¤½ìÏ»§5ˆ +8í«ÍŒÄ¡€8EƒÔÁñƒ'"_]Ч÷vD¡F3mBŽîôîåñxº endstream endobj 20 0 obj @@ -1748,7 +1732,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-30 -955 1185 779] -/FontName/YJGSTE+CMSY8 +/FontName/YKALFB+CMSY8 /ItalicAngle -14.035 /StemV 89 /FontFile 19 0 R @@ -1764,14 +1748,15 @@ endobj /Length 1873 >> stream -xÚíRk8Uù¦Ì¶¥Lƒ\F…\÷Z›m»ã²m¢È\B-{/ÛbïµYûâ–i\Êtq™t¡#¢’9:‰2rIè‚\Fîº …)íb6êôs¾œg¾ÍsÖú²~ïûþßÿû¼¿¥¥áæihËä!\ŒoA -ˆ… -ÂaÂF‚ùÜGØø#¼´Çã(ÆaF
óB>Ãd 1aKÜùöÇ>ìì¸Q±†Æ `h.NAf€J5ûOáv Nö -¨Ä.5ý™ÝÓÕmšÞ×ë›;/×ñ+‡”][3<V&r]hn®Ó7˜:“’ÓÔ«ÞIi=õ¥4ûÎ?žlÛpP¶B=GxÁ˜Ìh ô¼¼W¹5Irü‹|ŒŸÌp!ä=ò›ÎOÛqÎÖÀRæâ»±“½y¢˜¤ÝUŽ~,¥KuVÞ_Ó[µ³p¡çJð¬èåúI_‚mÔL‰o¿jðvÁu»ËGTâU§hcÏR®ž·l^Søý£´ñ“GëÑô-{rÜëãä¬7Ê_É•§Î>^å:üZéõHªýSîù¨W–êû=éÊjÕ%Þ4±ŠñÉìÜÙãd°I3Ääå]ÿµsù¡µM´ÕÄÂÙëMRÒž°ÕͽîÞvúA3 Ëj&ÄÇCqƒÃ4ßO/<¹£t3§ŸcPÔï?¡Ý·–¥š_Y×é_ßpà*†˜6¡3§"5bÙòsñfaÍÛW–`SÓ¯¦qzTöØÈ8ÉÎð_NnUQÙ }Lé¬L•<—ö4o_§¤˜8 ýkrU_žþ°%º~ëÖs -ŠÝ¡o‰”ÞK§M·Üô´êNE7Å`¾Î¿¬7“÷sàt¤{#½4ÕÆ÷Mÿ‘Ú)t²è†^Ò›ž’£¬Õèð÷ÆÕí>T_&<—yR8¤Dm1îUúì¸U0-ÝÐg[‡N)øxoó+vü Nà!†Ê¹Ïê“ë÷£d)=ûu¸²(dÛk°‚¢|ZµüŠð·¬‹KTÎx$_-ps P‡äv‰NÛã§Ë;5|¶?JHÞç@ùeòúA©h†Q -Î|{À™^¦›eÿ>£á~_–ô}ƒc«E –Pªbàež ciݹ’ÖÜŒH|?E{ºOI´Wã…õ;,'H
¦Œ
µö˜V<¡x–NÚù©ÙŒ¯×ÝÅ›3õéòÁú*õj-é#sÓÏõ5®¬O -¿ùŒqT‡ùò×b«íÌWêýß(+aA·î›-þyÆ£ -å¿—•ÅMÛn¸·ÎåòŒRO¶U%Ô’¿úµú7[£#׺!øNpE„3R&8”ûæW¼ó^˺§Ùs‡°J§Ù׺¾çi¦åN‡u6?ËgpÛë(&)u~ÿXÏ/£àŸ|ˆÿ7øK0ØŒó¹#Ü ëd +xÚíR{<Ty^¶ì)Û"—Å¡û9÷÷eŒK#äV.¡Ž™cfÎpfÆ5±Òº”íâ²éB%VD%ûöÖ›(+—„.Èeå®RØÒ;¨·ÏkßÞÏþ·Ÿ÷œÎ÷yžßó{>Ï÷hª»yP™Ü Ä‹ñ
CÈ ¹xúš!HÔÔ¤áÌG¹˜ÌG, +á›i:‹* +@å 8Ê€1Àæ‡ ‘ fž\Šðc€Êf‹Gx€ÂCðH„iH$BÀD| a¡Ñh1æ”e˜)ÿDE"8O”Ø,Ê©ˆR2¹;`"ÁD#W®è6D”åŽõ_R4w°Ù®0gÑ~±§?Ð0eÇ|p9á>‚.\&‚c+¥ÞÈr6„‰ +8+Y:f£*Æb#€db“— ”ç€F#L7”Ï‚a6YÂŒ¹2Š¨½¥ F¾[©Î¶zË‹]&Ý`ã{Å„# +À8ÇA‘‰Lâ +ÂaÂF‚ù‹ÜGØø#¼¼Çã(ÂaF
óB>Ã$0bÂ,–¨óEì}ØÚr£ãŒAÀÀ\”‚ÌÈ +”Vã~a•ÏŽ[…3’ýÔz\pJÎÇ{›_‰ãÙsñ0Ä@Æ}NÔ°%IèÚmÀmm„!Û^ƒ•dÅÓÊW"˾ø·$ÅLGÊÕ’ +¬Fêy«•N”…NJî¼?µ +.~éâÖ²žïêƒË~¼—–ÆMÛo¸·ÌçñÓNuŒW'Ö¥|é?Üæ7ÑbŽ^ëà;Á•NH¹àPÞ›_ñ®{žæ̪ès¯u|ÏÓL+臵7?+`pÛ›Žmx(©"{)maÿxï/càŸ|ˆÿ7øK0ØŒó¹#é^ëG endstream endobj 23 0 obj @@ -1781,7 +1766,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-58 -250 1195 750] -/FontName/XKWQLR+CMBX9 +/FontName/BKHRXO+CMBX9 /ItalicAngle 0 /StemV 117 /FontFile 22 0 R @@ -1791,25 +1776,34 @@ endobj 22 0 obj << /Filter[/FlateDecode] -/Length1 1029 -/Length2 4187 +/Length1 1057 +/Length2 4520 /Length3 533 -/Length 4882 +/Length 5228 >> stream -xÚí“y<”ý»Çíe"Æn„)13¦Ù÷1²eÆ`fl!"%e_²·(KÖ$‘½²¤"„2²%„Êxq¦§ó<ýÎó;ÿœ×ùï¼ÎÜÿÌûú^×çúÜ×÷ºe$1Ö -:žþîXCI®Wô,tϪ -p#Ý( Æn0 „ÃÁK°d†c¨"ÁŸÄ(#‰¼ü‰ Ÿ·‰BPŸ¡_„ º¿I€êýMÊ0 -^þ<·£Æï;2Vt_7€;f[ËáW€#%ivs'UŸ¬}J -8R¶œnno–"kCçõêH´Ò…k|¦í³n6àM½Jl÷(Y[5Ž•·Â„%Û…÷Â:“‰»¦¹ ~ÈúMÕqc60—.èÔòÜÛZd÷ÌÙKEÙ‘´ïép¬šè ïÔª.%êÈ0Ö[ýþ®LÆû.ÿÃØnÒE‹Su5Ø {ð``pÇÿ¥I…ÂÏáÃ
ÑN÷8ãkNö<,Îݦ>ãððèÕ”ñî¨0°¿SØ ]ÒWs;ªf°¿ñ´E–!*Þéâs|ã<ï]á“ÀC÷¬õø¬¦Z8·Åiøø¦¬r¨o„_>'¾^®\¸E†q¹¨·p°É:º,±cé5[ÅÅu/SE[^® ¬^ùò*3cèÿxÃ2^ÉdÉÖÂÔß¡ 4ËÂúµ9›š«>¦Â4NcÝàúœ´¸‰<x¸ˆ Ü92ÿ-JViå)~O…eÄäØÓGÛûU¥´wVµ‚N©¼¨þòYÌŠ$!«©ãg²ÅöÁÒ·‚®X—,
ê¸:Ù\<¨î{g1-RñÙër™ø^a½OA\®ìPÚ$>¸/ór¥¾óZ…ÉYñ~«e˜WÛ7{L½ƒú¼¶Ç½ƒâ?R)o–b^6p–|ÛNNçÄW/ËÒ›ù.Þ¶fž«:}ÏgDðxRÜÝ7÷×C|¾õD9 U]Ãá?r¦ÚAúGX¥Šz±SqYZ®TŒL,¤ýÏ‹¤;´z^"N<-¬OÜ0ð“Qðα²Q[˜•ÊÅ;'ׯM>¹úá‹FÏá:Ç®sÜ¢1(%%7Ãw8^Ý?‚͘١E×´Ž+¤ªMÝy1®Q6õR;þÃYû$œ&;]tûƒ«sŠ_}æ.ÛŽvðFHº<KÕ¿ê}-;äÊmõDhc×?ç]Êà7±|µÔ#¥9y»nLe¿y]ãÍ¡sfð²+ñqoï*aíÒ:*M¦Šy[BÏF gºqtþT[»r"¿lîõäðœœùè}èÜlIåž ‘2‡`œ]aaâåˆ;’RU$¤–v<ê‘–!¢D—H¬};BK+fi\]Òöíå”ÖñÙ&f‡ÂœNòuÔnB™aà»}”6^U]ùs·ª{ùZ‡ÀNg8Þº{;¦óNž´eù3°@Mk—s¨ôÁT |WQþ¤Í#×\¢Usyr8ܸóXÔÁáó¯dj…îî™åxHy¬Ÿ$4 ‹ŠÏ>š~'6øñfÍ=àÇqæ‹» Òdò/s3imtÔœgÓPj 5bO5A2ùî1“ÝÑmb<µK•‡ - H±þÚ÷HØ(ß1à‘àØ%çšE‚½|æ®Wì2t®´› Ãè‡ðósó)©.N¼äí[!+–šƒ{ß -:¿¼“[èëpºt/+šRW-F„ˆî-7Ë·p5᳦^NÓ¿çsú>“ -´RWê8S›sÖ¨ÓÞÇˈ¿ýòd0G–ûدÿ·Øw[¡rHëšï,5Y•]©7?BÁÖŒ”ÞŽ q¼òrnª ŠûÓ9^õ4Zàx -KåÔ¾‰hn%ÿLÜ‚E"×DOÎMÈ-·éu¼©Iܶ¸qxB¶66 -Љº9œz…˜).³c%×ÓgƒÌìï»äÃùœÎ¦Öu:`šåÆJ9¸ÜX'Í<µ®¨o·´þHÿ‹5$O˜Ë¨¼÷Áýuz1Ë‹1ìéÂ;`=+vPÂÝ°ÈÏWæ©çäô†%˜%"ý4õ‚©4ëë¾2ˆYA#ÌÈpÌUšHšègéuÓYß͹ÐCYc
ö'`J9ÑšoF «¯²u§ÄH^¡=nËÄW?Üî9Á/yÐì6ö,§ß™<4O –“Ý!j'÷·Ù††ÒðÄ‹D>Ž]NÁÿªoï,Ê6e›OHµG&,”ñ.wÒ¢åÚEá×ì
M¤AûŠi›gL.ëæ¯\«¶?9ÞÞ¨Þ2;Lþ¾ÁÑuóC%s$Gßì…1J«ü ˆôbåyù™²x¡š-™£QfH|ZÒþ¾=èðÖéýQ£ßÍÓ!hÃUYºH .|¾íu©/NŽ%][]laÞ71³_.6ew¦mW—O“þ–1ŽaáÍÓ´±}ÆÃ3ýÄhöi¦–=&±|uBÔ±¼%Sì©/:¶/c1b¿ ùLã<cè–‘Í%|64´b¶È]Õ›ä,w÷ZÅ+û=•¼,‹Î @¸É ¹–[ÜU}RáY¹ õÖ®Êi
P³C3¹ªe—$–A?™¿ØÅMû‚)â6ìå&ã3ìÑŸÈÒÄ{Y—tJR|wl%`¤z½è9[ýìçÂONÑ“Oáø”ÄÛºuÄWŒÞµ/7*˜ä~(¢`g‘|S•3á|åÝø£7{>ðåØ{aˆ7ƒ"ù¦Ë§“6Yê§Í}m«béµBæ˜;ƒŸ±1eíôhÒ-k¥\6Ïz¡ãlfi„¥wTµLkTÒæ¿-i‡³ŽLÓËvˬĞÌDb“”B}ײŸ°ÌŒ1«ã9Çõ,äöáŸ<¡!:=Mø»ÔÈRÈ>”ª@byvD†«˜¹]l™bv@®Xà±Æ«Æ²ýƒñ«ŽÂ>ㆅ@ÝÇþˆ¼ª?|>ÌÝÌ›þ†¬ÖôE½â¡ÆÔ¬–Ÿ¹®icüÞH´löy]P ^uüI÷¾q”ã²,^ -…¹ßòuYFe–ƒärkcaà¹kDHËy‡Æ6œµ°ÂVÁéX®&,Ì»ÅqùqbÿëC=[hEŽ£¶$²û…íüùÄÒG¼°žÕ'ÒÈ%ɾ~p¦wÜÅͺ'—Ví«ïÐPÛ…”šÉ±3Ôc_cûiõ ,¢BO ï3„êòµëˆð¯7γ†!ªùäÖ$G)ãÑmQÛvçHi‘œú—{Îuµoœ ˆíóZÌM®†(…³.ÇVƬ̻o.êÍ4äºûñð¾e̵i€'w BÅq²Y9ÝѺݦD-¬<:*Üäckq÷G*ùz.%dÎêB¦XÂ~ùdº¼¹Ž -%fÑ*ך ÅUÐà7ï9ÔÁL/.gÎ,)ö<HÑP€´Ü&ö
“Ó
ØÀ˜woµ*^Pðjڛݺš]þÛˆ“IÑs`Eµé°`øëw¦UV‹êó³’b˜?g[pbÕæÑ5û ÙÞíG?–Ì>
¬ô±ALÜÏú`Í¡)ÁG¬ÅÕ¼Ê_Ôjó#"‚`;öBäÛ šQœŸ -ß̉\éh‰MØÀ »WBÈ5
ŽéÇ»Î^ب¯Þ ±¯L-|œý˜Ù‡ìÉV¼VZ)¼•óµN('qN¨cnMQX”Ðí^µnñ=« ]}›7ÃZçϹÊó©ŸgZïo¶wFÂ7 M¶¸qdÕÌ>t¹iLé`»_ÕönÔM¤žîš‚¹ÍmÅu!ÖFMÀ}¸¤-YæÀª7|M÷Ò ýÇà–ã¢!…û,Ï[Dq±&zÍH¿å~Ktýtצ=÷ª¨›LëÚ˜æDæ,3Ø¥ê¶ØR¯ÈkÕ„«eÕӴ*¢‘M]ÌSñ&JâÅxmEìgñ^õ5ò¾¸wÑš"ÚGücã2&ß L0óêfåÆEºx8Mä0ý¡,á‘Ð
+V²Ø3+Ò›º'zc—ÿ> ¼Æ1ÕˆÒËáiEGR¡$t窇¥v[—×ËíÛ]ÐÔ”QÍð18³˜pª/Øur™•¼ó22Ÿ÷…hÇHòdþêÎÝ•±P[Ž3îç’Y«6Žzq†n¢Êøõ¡@B4Š¼øÊ™Ü|Ö4.þñIËÀ‰ºÇ_OcF´^D_Œå±ïêm5xÈþôŽàðh°»>æAZR;D%piùœ^D§CŸ·Û÷Uì”ú ©5•èNV1;I.qJ‘žËÂ\¡Dù”q}{Úk½u9'™(k]æè¬ “t3]˜-T*çýš«_åª.^G ´ÝòØoØ]xIê®\En¬öɳœäò‹<Ý&æã¾™÷p-Öâ-ÐãNëv
†Þ4eèÙœy¤(´«š4~L¦ëJùBð‹¯K÷¹×g6ç£cDÄ2
wvñÒÞ,úк_1ƒ^°l¿>©™m¹òa‘{ÔÙŒ°Ãdæ×õðxOq°‰¡lÈ[¶ÆBÍÛërsý +xÚí“y<”ý»ÇÊ »ÊÖìËÌØ·d_˾gf0ÌÂËdMD”,!K”%ɾEeÏ–"²Sö”3=Ïy¿óüÎ?çuþ;¯3÷?ó¾¾×ýù|^×÷ºù¸LÅTáX'„ƒƒŠC +À‘ÎxÀ áŠÄ€À¿3éb\°€ìŸe¸ç_G¾œ71 HÌ)S±€#\@`,Ñ
AÌò?Žõߤú§¸– +e +%Šâþ‰“ñþ$šàÿÀ¿l55¬€˜´ &!M>T^•†ý×FsÒË¡«HC YâlW}p8ÿÇÇE\¤¿ØI\;ÂáÊ|Ä‚$uåÙuÜiᱬë55¬§Iïå°ö¿Û¢FQˆtŒð0Ú£=Z5ºÿð@ðòµ¨ŠàŠñ-{öí[é«°KwÃÍÏ» +e–Ä>0UÛ›7÷knV‰äHØSÐMƒçà=›¶;¸/½ú1ò6¸i^j#Òô~¬j!úK=‰‚󈦟~¢H–Ã^9%¦OnÃt‘P.Á„“Œøeþ]EÌ<d襎ÇR<ÇÝæ綗µ1‹[öƒ]«üéVÉ&«û†ï†(Å5ž¡þÈ2v2ÁÙ«©ÁàÛÃêÇKž‹~dÆYY™¼£l-áWF†§ŸèöoU{<V8Y˜á¶%+öxëe~âq¿Îvî‘åÓëˆîC€Rƒx¡¯Ð[h›Ú1ºgˇ}¥ôL™°+:ÌÓÛRÖÕ>T÷2´-4=ƒÆ +5¿>:§À£r¼yÍ[Nþ}ùÆ +§
X/ýÜ«fnÂ,ÍŽ³÷,$ùÐ;ÆpøÉê\Ûý©úÜ~%§ËIA’+.÷Š¸Ìè/ªõ¦q¤ +ð5q>¾Ž†:}’6Õ[Ç÷ÍŠýMÎ4J‡¾ðìø9±NZ—?»ÔYŽÔ£§…±z²È[uÆ©uwú8-âùÆ+öå£&`†øhÇ—@®Ø©‚ó‡±dOH`µ®[|%‰]¶b¡˜z+’!@Çy¯þÇÌOë©Ñ&kü‹§é ‚Ç©€Ì[yH›ÜÔâFXg:E +.U±YÓyVðñÓ[¸>
ÀÊUòø>h·¯ô#%oö¥ä„ñž0‡4ç-ÎPF×TÊ÷½¾ýVh|ÓM†§ð‡+DÑ4Tl·ô&£a9Ìi¼cØ-ÿz¥½«,?÷ÜÝ×
¥Ïp^euðÕgê?wqIŒ,&UÑÉ»Ø.ºÂ¦wÓ£làÊ–Uõ3U5·æM°ç&1e•Ñ©Å V“€ò¦•|2,çèûÔ0÷ªÂ¸<ýeã‰:e¤ÆîíyëMæ¼5Tý+M…/oÃUóŸ_ ¸5ëú¦ä¥cȧäÚ
¯/¦:‡_v¾Üjý%Tyî0.).¼çgel÷LjÔå3uŸÎË랣H•ü2äÈ>×ßÐPÔ›óR6dSaÝƧ,Å|ók8”œ¥¨Ú‚¡Zø‘,ÇZ=tj9÷«1 +êiòôͪ¦UÿuħÍG¹®•fda¸ô9´Õ¯ó ‰þŽÏ-âšõ8_“³zJ u_¼¼L»-&– áœßXhGζ¤û«Ï&½ÉfÇŸlîÑ'Š±e{³ãZÚcª PÈè½Amí¢oÂáhO¥Š´9pÁ»g7wµîfHs% —i-k}‡{öP*)…‹.JÍZ篿ÝûL«Ë|M¹m•þ€æPv„ÑYðÍŒlÝþÈ™@‰Ö$§÷™¡|GÆdúW ãJTç÷EÔÓmFÕ>«¼eh•aèWÖ–ÿzß-×ä>mîš“ižW9†{u»‰œÆ¾C> +©Yí
â\Óq—´»u'ëOG<áCøÊ2’îQ•TD¨qGU<1aŽÓ¯±±”âÏ+ƒ?£ë뻢Ò#8樜¶…âG ¬^æ{”H=a·“{÷µÔð{Øx®dPÃ~s‡ö!¿™eäí–YE½4¦×AïÆê<“Æ—«SØ5€}ªGƒºnån/úŠpý;5‰×¹F—82)È;èùÆ7¢T!¶ª«ßJ3gX÷ýj~}ï2Æíå!´=¹µ: +Ü©’kÀ´Ó~MÁŽsWƒ7ÚO•zÆÓ€¢~Dg“Ÿè»¬Ô.]ò‰½{ûSì'󔤶‰>'•'ágŸÚNpé®_¸Ä2ä}ß%œ ‚o…É|AJPF{g–tUó†*táyð +{Pkɧc·»ç‡³ßÛ°Û^ï¸{á$=¾ sí×Xæùk#Êœ'õ^{gT„`!”\CŽô>dKi=¸Û/$¯xåšmõÑ-w<[‹² _V —²ðúçEþņØĺLIÛ®Þa:R[µ +FýÚ©SwŽ^פ¿ÈbeKɯÊPòXrˆÖ¢¥{™‹Jc¼Ý(q[ã‡BJl
§Y®qœË´ +ö»Ùr^±ÎŸªõUÎMwÖê ÌK ynGx–½ó—ÙˆnˆU]¾{±`ÓŸ
M_¥¬oˆ6£ +±o ¹ÚZÏ'½Í›¸±´4’KmËk³=%uI }ÜÛq¦Ùþuäº|GY÷ÔÊq¡ÚžoÅiÚ£ÑcjÑ„ÓR.¬=igãëᇸ¡´-+œªêEˆž¤$u7•¶{‘,¤ózGNžy{<xå§$ŽW›¤¾mIn ßzÍeCŸýùòRRÊó)íÒDZºº+Ë2Ûª{¶Xtåi]ËÓÈñÝ9ùžÎs
ñq\H–gIUøkÃ3nV;ë#\F¦/e§zh2RÂ;®/X²ÀÃW,cH)©kfÒßÍÓ¨úˆÙ y?só˜hÁBÕ„žÏŒ¼{"%àrN¾Rõ+>La]”2ãÕ¬èÀ≱ÃZ€LˆŽû+•ÀÏÊÁ‡âGΑ±æ/¶Í÷“=s?DÊŠü€j¿_˜¸¸ÿf$.é¶Qñ*UQÖ–úIü¤«ïEKÒÚs:ea+n$÷}ºšäìvì½ÒÇú×nï/‰ ¥èܲtªIGóúiVËŽ‹«Ì{¾óÌSpWÞ‹8¿Sº‚#MN®B> 4ß×<âßõkNu±-cùjšYµœ=S4¥tÜÔ"B-n.°¬kÝk}Åmîšæ+/kœ;³zfjÐjlPÓ«S>$¼ å¨Nme’±ž5rœŽœ3 +‹X:ÿø{þ2w¦áèƒ)æa^1ý^uó5œÝnÛ0æÉû q¯ûÞ€H##DÍ‚Ôlf%|Ø^b¾®:q(è°¬Wgó~|ÛÑ—¶Ò²ß#Ô)Š…1òÁ!Ì4%áz9Öýû¾~ožV¼ge¤u‘£ŸÚYÔ†ÒÓÏ.Òußz8uö±J°i¹Nq¯“t½ð׋çö ‘´Ž\áÁËc(æéW£zC‚ùdM'‹ÑˆM¯ƒÝܺ-”×æØØÄÜ}Gö¯ûÐÁãürµ—yùÃþ;¡÷`[7ÕÑN”æ=½'sez¬Á:ÍPÚh*ÚûG"í5nQàì ö”sLÏGØ—pS‘·úçãhrRϤª’Ðì0DA®,󶯽‰8˚摧ÆüìUÊðUýV¤½hÚ{ia24lŠÉeU®ßÌZìp-KaŸyzÙRà6|æºÞÊ0ÂhÒ˜ÊÚ'èfBL¥ÍYŸES‘‡'åè ?ŸRñ,²Ü³‹ä·W0DÏ‹5„IPkD-p°ã,—³tŽŸ.Y0=pȉπºGkeVšRL;ä´«-KÐÔÛ°½¡×¨Ý™ð6ž=tš±&i..ßÔIX´ «é+ªLC´]®T¾Fy%zÕJûÒuÕ©§Üâu4ÇÒÕÈ@KQ;lDîø?d#íŠ\`s3ÙÃÚ'3 G$ß'³¢>â½®ñ¥Ê%k©UdwÉG…[þ-Ìx¶Ðá7´„kUù*,ë +¾Þ¨ZLÿBuµ|ܦZqÝ)PA×…¡”fè˱ÓñÏdömzüÔÕ š*ÉAÖ=¦äI˜$í&Û¥Ó¬ \Ô¦£Ýï3pŽQ).ÍžÃB°%õí¤§ÈyͣÞÁ‡ÚVÔýÅxźºž6Rk…O#uХɬ#ûY\Œ‡ÊQÁ>óqϲ²ýß zÞìÚ²“p]‡ó‘CÄ'Z-.4ÔíÎéê<¸üá#'íç&‡˜b +-žÿ¯¥3Èñ°/$«qeH3@ž8ìgÈÝElc[Ð8ã«*‹þMº»±¼jÃÞ]èÇýâËë“HxÈýö†|F•†Ètq l?ß;B¨´gÖ€_çg5JŒŽì8»ð‘¥ü
Çw•ùl!aM"P-²Þ¾GÌ‘‹‹àðÛüo|kDây“3†x¥Ó~¾Ê¸TZ8,É#1=C^()~#rµÓžÇkßàט•‰bÊWÿ¼íÔê’¥ûÑ#¼ö†[šä^ݱ%ÐÈÕyÐ
êáÉó¾oì +íwïØØ÷³ÆwåÓô}MòÌœ7z`œAúlâûºÂ~·„œ_¯½*\ÆæE°9í'º—,–ÝàG±¶×“U+_ÖÄïo\I¾´°fÚqvjºPcâ[àÓúkJŒôô¯æª¾Š”®s—/^nx¸œ.»KKa{/¢ iðfn6?µ1áû-†Îå‚_?¬ +¾ÒÒNõD¸ŽßÍ£×a¡“â@÷¨l*yî ·@x«* +úe®=Nuè¾z™7ûB˜ZGLÈ´/¶!G‹:ìNm\™}2بf_žZdug×>ßÞƒgæݺòÎ$Ƒʼn²—¿Þª‚‘ë{€a¼8J]l#‚ï’9 ³Þ¶÷ÈÉ_´/@`êP\×B®QøQÁ±äÿåôÿÿ'œQEÃp Ð endstream endobj 26 0 obj @@ -1819,7 +1813,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-39 -250 1036 750] -/FontName/DEGBGN+CMR9 +/FontName/IKAODM+CMR9 /ItalicAngle 0 /StemV 74 /FontFile 25 0 R @@ -1829,34 +1823,48 @@ endobj 25 0 obj << /Filter[/FlateDecode] -/Length1 1187 -/Length2 5260 +/Length1 1247 +/Length2 5994 /Length3 533 -/Length 6026 +/Length 6787 >> stream -xÚí“g8ê—Àu¢D¯!F'£
Á zï¢D‰2˜Á0f£AÔè½×¨I” 5z„Dš„è-J"d'÷þÿ÷Ú»ûeŸý¶ÏÎ|™ß9ï{Îï9ï>.cS(ʦ‰BbD@¢ 9€š‰, -w - ógêãùï”/íóâ<… -‰À 0gr1C®çò?Öúo¬þY\Ó0tðø]7¦ÿ’uð€#°ÿÊ£<<}004À -ƒ»ÀÍ$àŒB“ÿ~Í›â -߈9¡<<þŽHÄ\±ž®0äß!iÜ]Ü#£ …À¸{fnÄþ® ˆ9þM²¸Hg½„8-Ø%” -,°?®#A¾WƒZÓ³`ë$èƒ<Â$#/Ì¿)‹˜‡Œ?×v½û°E<¹ÖCç ±$gõˆ™äÊüá6[‚[…GA’Ž3SeÊmðN˜$”ÆžépdO*ì´zGø¯vÓÒXuHú8¸ùv§~°Ù2š›Ó*{j–@Xk° -P -¿6½}J#ŽÂBo] n €°Ç'-7Gšß;ÍnXåß‚µ‰7—ǧ%¾¾Û25ZB”òq‚pÓ‚|«"^ÝÑ>‘Ž›±¢ÚÑåçç‚"Ð\{ |á`Þ#Ðî»AÈœ|Ü:ÐüGÓUâðI]ÙA…iïõl®¼_Œ¾znغ{«7c¹ª@?—õ°×Æï?õæZ%õ³„#Z -¾+Ý`yHÊ ñ~TJÊ”ÿXôíG{ÁGé†ãõ»Ûõ1Re׶̿YœÞ7Ñîp/ÝP"š%Ñî^oS-¼J¯ÏÈe3ŸZ—Ĺ}5a¹¾0਺«–w§ê¾&a>M)¯?Û‡¨ùñNCð°NÃXo W[èzåD(õ~ÃÞÛ±bû -n˜¾ˆ¤”àÃüì<Ûá¼o½…Üv?›jZ†ý`ÚuÌë褣xr;ÖÍ:®ÉöaäÔu^›î5Õøoñ÷„ÒªCŒÄBDk‹¨Lßͺ©¹k¾Ú·ÞĔؒú3‚£ üzAô•“šw5A³Ë{ݱþ¬1dnüýÂ…ÛÀúò# Æóú¶uá
ÎLQ2ÄœG¿úüú;®ÚOR``ñŠîˆT8ðhgXXFŒÒ–!Ð1¬"j1-ëÜhÑæF<˲ÓiX0$…¾òr¸ë4¡‚O3a)OÏø°`%Zû9?‘–´0Éê²ê*}05B×_Õ:¨¬:îDõvFëèVÍÏ0²7³o¾!xB”¥³Y^ˆwäVÌNJÏGªjzHy«R·z¯T8aq†ƒµop rÀਊZ©šºÆ¨ã>²Í4ºYß.Èïá´SU(η>üœÈvæYÝó¶BÂÆ=ÿ&¼)õ1 Bð8¬u)Ïø™v^š._A¦òâ2ÐïW¦‰ -‰îµ·•
`wBÂÇ&w'IO?Þ_ØЀ®Óç=Ñk&Ûic\.Ùj]vÝé‘t}žíÌ epï•™ë\·<6#®‰ªWU}U.ä¼EÆ÷m02yëÍ^mDRecEÞ—÷(dÂGþ°ûó܆X -eÜ{G›n¿d57Ì$Ãif‡ºédÑó½¾ÅU¾îŸÈÄLªÌ -±²ü| ͹nt‹©Ÿ6PM‚…þ¹‚D[CTçuJ={ì7}Ð,JȬϷ2óó¸Ð-•È¶|ªþÖŒ¦âxɮϔ4ÔÜ·ºŽ”;KÛ3ÄYÁé'L^êÖ*s¯ÂV‰DÎ -ï݉OckçÓº¹jeáIJp½]jÒ?óv©Ëª_qž¶?øðBg¥íÃÓSIËë^бG¤ùú+‘1„~½9Øü€ƒ5"{Û7×L,ñôúD²œ1æ:I2n—I"@#—4ó{îjn‡‡¹×öQœ×,]0>õ=:MCéV‡áÊó`î—Yh3—yý…˜]ÎÚ7òÑY¾_NG'…(nº¥}ð|jd]øÕ¿ª„r}È#¥èœ^j>.M½(·c2‘U[¸e+[0ïéo<›iñ›ÚíÓÏäÎŧúæztc¼×÷¡,ƒþ"9ªúŠû¡ÈrJ¯(Únz!1K'ù¦Š ²àÁ„$‚LÐ…Ãfɽ1ƒ\Ïq‘]¿˜TŠiþww¶©¿~*Ÿ¥Ïî<kðáðhJÀó>‚|Ôçœçð½§(c–OtôzåL÷ž|SU‰®µ~j›mg"å´SöQ,`¿Ö¡à6Û)ù-¾¨ö²=ÊÜECÓ>9S"ÊÇmÝ@šûÃ[?_¤¥ÈŒÅ0‰Ê‡ª¸œV³%øƒ"™ÖÉ̈žô‘bsû¶ÃûUÊÍ\ -tnóõué›Út'2»Ì>2ïª çC7±ûà¾-xeÌKÛ®ùúíó:g?Fa¦œÝ±³H¥Æ§<G ¾Pþ!gsá—ípÔ¢§Èš›VOA}±=yl -,š¿+ÖÀ/øœú -?ľ¡ÖfmP†ŸEY¤¾Ÿžçÿ5XWEíÚnÐ'9çðæ»c ïñ2X¦åîï·iœw?]íñ]ç%± ñlEÉ{ÌËIÍ÷r¾K-ÑÏÓЙ¨:ýÑùV:¤DÅ}NýõÏ&[¶íy~¥:ä²ÕœdbJ‡¾UtÅ*°ågIÊ™pÓaÑз×ÌN”îDß -?kD`×æ£>\•”Ì‘ã6id½f¼¹@Í&ÀAÒl¤¿Zgâ©;) ^l´ ™Îdzz¥“Fªi©¼ßÙ~ˆw#¥ïyEhyÌ!9KtUõáçœãóöXµÖüB…ûî!~GäqûÈÐןøŠ¹ÇÙêjÝ×ú©6 -'GG†êÝ-´"Ÿ˜t§>ûÝ|·¬øjêDÍŠ"åö¨eù!‘ƒë°M®6Ñ[º…J®O†'ŒÜ2Xl̦»ÌH’á\
·šHwH"Ú{å!nîÄ®[©<»¨6»øb èÒ}b¨ŒvRž¦ósážÚ ‚ÉŠaìÀ⓳†6eh"ù²ª‹©Bòõ)Io_.‡èâ‹¢Î<%ñÅÃ]…ÃÐõÜ@Ÿ:í
-¢4æºÁ!XÃïY[ܳŽ|i¤‚j‹4q|¥iOaÔú8ïÔöÌ°J÷Tÿ½¡EÞá*þEÞ1:ëâTSj¢MIr3†ííõq<Yj.û„V´›>±ö$ÅT1öDóc¤eþû–FyœÑàJ=„Ÿîä^üÊ$¼Î¯Ìç|ÒYYžåÖS>:“£¯2‰\Z]ç -³œ¼!Ç™É+`¿Oˆ_U— !tñœ‡N¦úŠÎ%p[l")wýK eçñô;´æœ2
]bšÂښ͖O
)”¿‚ää°Ëg&eÙ€Æn¯ÕdØ~ §eS,#›èÜÉ 1î»çˆïíi«¡£&X&%È\ÞTŠšnøÆËW5^þ4c+,ŸROȪhî>È7úu³°×qs}<WdÖTù’i4Éà/›|G/ç&ßöCëI±+6J;4*¦³Z±ŽåNv<ÕiØMmñ®©[›OX(ðU*r>.ªˆÖ¾!^šêãÁó’P.Q[æ’ÅÙ,ÏM±u«Q j;Úš+ØËû9ú3zUV~u’%»ÍŸB»2——eS¥Ö{Ÿl›%-U«Yó{û] ög½ +xÚí”e\”ëרiAºkèf†PJFºC:††nI)¥CZJBº»I éTDEÞÙ{¿ÿ½9û=_Îï|;¿3óe®uß÷Z׬{='«¶ž ¼³
âŒò–(jèJ„…@„œœŠn0k„3ꑵL + ,))÷´ˆ€ + +lP€
Ì"þ¡¤‚²sHü¶õtùÏ’ÌÍíàA{òЖ¶Î(¤/ÀfGÔtFWƒ¡]þµþ7VÿNñD"5þHnÓÿXµvB }ÿ{ÝÙÉÅÓæÐp¶…¹¡þ½Õö—šÌáéôïUk$*²G +„ÑÑßÿü2ÿW-%ÔÙBX`íæfíKˆž
4þÂ +ÿwô¯Ûü;, + +Î>þ‚¢’ +áê Sy +
¿68•4šmP†›®öqßïõ‘[‹lK—ÐଜEÒ›cÉ䜈Ú,,ʵ#ºa¢¶¤–ÔgïŽÀ¡—pǽ”³¨·¾xd•2‹q¿5~P€8ùÒ:™1|)y©@š(ùÑqßå&`º2p‡Ä•=ôSùÓ¸h¡FK26Jœ ¾§?6™] G4–µw=>#‚û¦'Ïð{é¾ÜÜÍ-É\Š.žM<Ýÿq~)é•ÊÕj2˜B¬wYÃFµ¨úè™Å´Ù$±¶“¨6ÌXKz„CWÎ3q|ŒljÎÖ¼˜8•ènòqdÍ”?©bO3Éójs.5$JjRq¬ôë«;+Ùö.æÿÄ–ÀöÁÅ2»Žmˆ —ðì± G:Ù‰7œ +GûÝ»ýíáÜŒœŒÆž¡ªvò%ïÐÚÎĺü>/yNåJ½žUy&Uüž#×¾>ZèRe³ „5øáXX_;»©Í]Øó°ºÅh YG<1ò9¸zS~³n©Oz™“ ¤&êóóGRô»Ôˆ2l¹_Dµ+ÊoSõHŽ|ìœ+ÙüÀÏÏïZéÚ³ +JÁö{13ã¾fÞ‘ÌÃò}L¹©mF‹!Å&©9ñø=2âF¬×–?í_©é323®˜°zYeUf +pZ(8(r^ô†ëàïíoË´),Al¢V?ݘI)µ3Ù|…ϯ#H6ßøZ”ž¼HQêÐfÃq-we(ÞŒQÝ";&¤°&"½~uù…ñz´èzãŠO6^ùapœwôªÛ“jø›8ãž2ÏÝwÔÙRáw’#
SuBô‚âÝ‘<D¤ +E)4ठ+¶ÅgþÔ.Ÿ}š)#|ÄÎ…û•NDËw¨¤¦ôîLuþ:7Šê8 +…“yÀF¸)('íÞ¿Ò;Cv|½×A^\ƒ»³{“SxµýÊá-|¿éw§k)ëœA¦¤“‚:eõKÌ.H(«KáçÀ5¤¿†›Ë[ñè·~º¶“½é5×½"V"åœ_ŠL@ƒ¶ÞƒEH¼¸»Bª_Úñ¼ÓÝÖql\o|º<Rül››?éÒ¯‚ÛxÁëP(Ë^i¦žG½]è_s^šë1ÏÊ°@hl®´E•†÷¹ŸípY•Kv¢Î_Ç.+9)ý`XiÖ`dÓ4ÌiHø üÊÂèçðc£RáTc˜3,šo–¤2¬àyOOj6s÷-ïo
Yªëhá#\êù3Ý;ß(²$ùë+&[„h[ŠýZé…µcO2Ø—5²à‰fáØÅ«ÎÆ^S
Rï±úÓ+"ÚÜèE9b[‹$.dÉëÖd€ùï;4pØ+Æ6°’¸U‹|Fféɯ™ô½ÄɸíÓ¯ß?Ÿ_å˜ú|sŸzNInUlà‡7p½
ók8×/°£Ÿ–«¿°h88´Ò¿ÙhñL±†‚> +íŸidÑjOƒžæé-òñðv¸®udGÊ5qø'W$Ü°Õ¢.|âÑkð‹pN#Ó°â`*oG‰€PG²îÀ±Ú%«<£û¥:CèÔüŠøøFEê‰"m,Yõ3óbû0±Ý#Ê^d*ÒX·eGzàìê»yŠG«Ú˜ö$~jè2GŠH’0þõ’b§Â•q<¦÷>‹û$A“µ7²DFkãH9’àD<áÌa±(ŠIÀS‡¤…#ß ÿw/ß×…]µÔ¸ÈˆÏIä"š2BƒöŽóëè§v2eúîðR|ÑK0ø¶û¸nÄÓ€¼O9I¹Ëë1~ó´ùÅ>-€±Á˜òaD¹¬p½Kæqi¼LzÐgy¾Ïƒ¼¹"Œ¨¶_¤ˆ ++é%•5NºKñÏ`
öüÎüÒ CMËû®Rí2Uo¯.j(àEuü¦Þî¸W´%‘Ö¿ÔñJyGbc'¶ù»QÞÃU³5Ñ•Øx‚/Éš„ÎþîdwÚ=$E‚ÉO¤:ÁæÑ™7}Æ“ ϲ ¸Mª$ +©å_Äž–G-àb|ÊñmX뵉&gÈc<qŒÂxbãÀoé0@æØ)â¸1÷†×÷ë¨2VNÚ„DU¤Ã,dìûb<Y¿NõŽ‚YÝ’5*a€17,ge0 ÉW~qµù’ÿ
[ÚPîþÄû¼Ú'`|~ZèaxbRœº7—š™×áæó—¿–(ø„ÇÃg< ¾ÔŽˆ|hÞè¬ýÝÂô±ÆÎêøJÉBña”:ømÇVhÍp‰.)S¨CÐ[sƒÚÞMMæ>U€@õÓÈ +›ç6–DDÿWGL)»Vé§5ÚÀðjg÷Úü¯¦Ågëâw.…'{¥”¼M¯{h9Gâ/ê}S£w–§â†¹%/¦-é%Ýðóivykë(\Ž˜Bë@jÕx›+z²rÙzÞL—îΰªI<.êÅ +=¶ãá9§]f8qôÅ•×gNýóâöH\² ²{|so^\j~ufÙ=öjg½óÀ„=u\í|€¬ùn\Á5gûãõT-æÛ«ý´oÆÙbÍfE—šm›žë™÷n¯¹øÙKÖ(6Ñ ð½‘\ +6x+ܯL÷;/$@”qM ER6[Ǻ–bPÆÈ„3„Ëïΰ~¼ý}ŠÆ¤‰ÃzþÊÓUº3²Èxí/!¯=ñ´Ü9\Ì?±èh±ÂF}$òÆ‹ºe+³´ß€÷ÂF^±…©)éó.Ðe=³~HvÑN%æpßP7©¤4µ¦¬‹ +ZáÉ2]p @ÔØ+Ì6üÂì´ÁšEFb‡I$Æ"e$˜oˆ"v¦›Ö
Í;¤¿Bïb_‘L—w®%<sVè#XqÚ»ö'§þ¶=”Ð|¹v:“çzÆ^ÔÏ’u5=Ƙͯ¬úF‚
±¢¸ÌÝÿº|Uwƒ£SçbŠÉ ~Ú®ÙFx܃îÚê7r?}Ý9|"NU宿þ!ËfE$žéÐ/ö+ürÙ<¾=ƒ‚UfCá¹ñ*Êܱ
uð½úÄáôBO•á ÌÜüYkÊ{ØÛŠI %_Ÿ‡ÎìinÑÏó ·äÒ\<‚\©c·‹ˆˆ§z»Ó[†QåáL+0·³;ûvHÊllfÚÕ¤¯ÓÝÔúëꫪňõ@AfËù“èQÇÔŒ¬oú øºôg8wïYµ‚H‡; Ö×W‚f›CÏ<ÁQuÛ¾¯® +¢%l¥–¥åˆ
¯Ø‘ˆ~@lćkªÚ…Û:…“Â?þ|½ö³}}eG¡ƒ,±„ûqè´jó×ÔØ}¯79rò¬_ο8,ÂœŽôìÞ÷·Q9¼£ÒRN«ØÓ2îZxãŸ]²Î;tº“ + +ê_ õ‹Oœ€Ÿê}t…’ê7G†g*ëªóU3Z^l²±Ä“‹@{*>œ ¾ÉŠûOgv¼¢†vø_ÌúQŒèsÈ…[sH²cICNüò½úpf¥R‰¾˜º|Ÿä +½¶;„è8:íFÿúDÉZEG¶ÃûøÓËņH:¬ÒO£Dçó#õ_”gÌ®ùú2wá‰JIÇúÞ9-f Þì€$ÒÇÌr¸¿Ë4CöàÁ&ÞOÌ'î<BhÕ?Ò]9î¾>˜cvaÊøöyÑkÞƒÎÓ{ç!o@âEszíߊ7ˆwJŸUb’ÄŒi–›àƒí«æc+Ç|WšÜv³[MiôYÁµôMü“aŸ—û›íx€kbª¡cG®åÚ-‚¦ŽŸS©¹Ò·uÂêôkÁ›ÄZžü²Ç¡køZZ)Ò=U“]óûÙwé|¿ï–`z¯MYEÑë'4§-ð?mz£7÷ ~ßm`B1SBÞýõb‚g2ç2âk>õS®vE…@;|ã2™*šÎÔ1xC…c¸ŒXúï«íg¯$‡ÓÌQÚ&"kÌ +05,ã›”½o‡giV¢ÚÏ\FÞ&Dåu.Ÿ 5]æ0¿Ù$zÉuq0°(o"ECcúZ¦<m ²¯×–õe÷HF + è«3CJS{vt>} áço`kŽ;îâUðê_UØjG0¡ÆªÄV m‘ÕÁ4kVÙÙ÷`ºŠ±=fï´xÃΓ°{O–Ò +<³²ÔNTæ^ôòe2šohw8õ«¸Í.'å²=´&²†.:^A"q™øÔ+l è4öb»>ôµÙŠÙ‡=½îÒïÙvé3kyhÕ’,S< ^Hì<õÅÃf€saÂQþ}ÑÅLƒSÄ¥MJ×n{6’11~Al¢{#m¡‘ºÊý‘~G8îûZ%ÊÄÉòmŽMÕ…‹Ew‹U¹SqVÒ§)½ßÚ¾]ã|pc,Ñ_h1ž‡'¼XVo
ˆgè6åò>S åŸ*n;,Ò$Ù´è`qVyRôµOÔ¹®K”Ù£ÚZxñê–-õÝ…·®îÇÐs%ËFÕá½Ié¯/’Uª>ë’×N«Ü›ø%í¢ª3ØȼÍ4$@S."«¯äzm¿–ò`+Ä5ªã×ƀ㷌«]î1)6úŸA¬roõÄÏö`Žê†ãÐL|À +gÏ3+9ë’@Ø0îÆÌè}8&Ïñ¼ +s@9ã&r7ÔòÜóÉŒ8œâ‚™ã5òÍé|ËWwW2>/m‰Œ·Ù84®í¿;œ7,WÛ˜Šõy•*Y.¤B—z(¦$ž(¤RSÅÔ¤|´bîdéç—@»Ú;*‰¼»`¯*¿Ä/†cà¯0'½æÒù¶]{`e欯·¶ôÐéÓïö˜xPPL2$E§skà7\±ïNäβ¾Ðã}ÙUŠùƒŸÆâ”°s8¨çRÊ´ST'KÏ—y…&HÂÊgfBM¹%rúè£)g†½ñò°YɺÀ½À=¬Êr^Áì]|%×ʘ¦Î+À)ÑWò€ +úk6õs4õÔÒ]:µ ÿ½9ÛzXOƒŒè9.ßåš^>ˆZ(‚°„Æ#_H¢³?œ“ &›Þ
gZÏ/Ùr‰ßÖ…Pr„–(7ku+ +î•~ZÊ„„QÊóê»?*
5ѹ‹;:T Ù`š\¾`+vsØtaæ!ø64X¼ð†hâÒ¨ÇËãO¾*áX"wÊÊ›)‡Æ2‹({µ¯æ¹J:%…‰³“3=w«|Í)Òðq²Á0l—\Œ!J|èûMöß¹^íËØ?ª}C¸]EZ «¡â>ƒó¥ŸÖæ‹ý ÚUû€0^º¢i>²ŒiLÅêÓ`ë*3BdBM{i +Är#ÍøÓ}Á}ó¾ø»Æ'ÃO€“ïøÝxò¥ +[ú“¥ÅRÙ+M½WÆ ÿËáÿOðÿD(fíæáìdíæHHø_«N€ endstream endobj 29 0 obj @@ -1866,7 +1874,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-63 -250 1027 760] -/FontName/NLYOZQ+CMSS9 +/FontName/LHBVMG+CMSS9 /ItalicAngle 0 /StemV 83 /FontFile 28 0 R @@ -1879,24 +1887,17 @@ endobj /Length1 942 /Length2 2435 /Length3 533 -/Length 3085 +/Length 3084 >> stream -xÚí’y<ÔûÇ¥l£É‘~dßfaÈÙ‰a,5!4ÍüŒ³0†Q#¢pҢƖ¢B"K:ÇN’:uRöJÈj([wª{îq»÷ŸûºÿÝ×ý}ÿù½Ÿçù~¾Ÿ×ó<Ê -8Wm3ý(hM§1µ‘:H`uu5:˜²²$0!:Í’À1 - ü3 -2‚y¾ -¡þ˜µc(ÑŒF¦€ -¶†Â@bý -“Æ´_J–{ðÃëfÀÄ -Ï2Íkèo±yÒ5f`í\“ÂŽûËÍQµ=¤;šµOºËFξâÃ;¬ŽÙ_ÐÌôY(¤=· yHÊ°ŠQ’‘ÔhÝصöi8ÑvÏÖÏs -
ó[D‡r›]úd3dý¾¡n2xsj…ƪSØPRh§~pX°é"¶C¹4e¹6ç|w>ê®E…–Ï!EPìñZÒ{ÔÝ]ó·sͪnŠ¯²Õ™È’ÚŸZÿ™˜{7ü꼤÷åac¨ÏjÍ|ÀÖØ2Gü4'}J×w\-Úƒù3ZU/Úä}|å§}c%Jìü÷=WÚgçjk´òŠjòb“<ÜD«ü·Ëotˆf…Iµ TŽŸlXI%ËôÍ÷µÛd¯RîLD††Ïëz•½•Ç2>ËÌ0GZVÆ4–Oêé%Hq'¿AÈ}E-<±›Áä(;£eÝD3Å;‘õB&t|î”mOÎú#Û
ÏÇ·Í)%1U%bUäÃp®éQǧÎË]·ÄqÜ¡Ô—¶l¨wÜ!ú„FÞS*ª{îÇuq‡7©rŸóü»e¨ÍEFø -Éþ˜ZÝ’Þöëùk[HeÓvŠiˆPßÇFsÈû<¤—73g4æ¤Î>íZ3\hYÞ]Ü´ûÌvñÝÝ a#[?¿oê'â=Ò\k£äOá¶ÿÚ· 6;Hö+’0É -ê;™&¥ì2ß[SW±t4¹;Ɖ:-dÿBòplÌ.«˜OXÔi”#”ôëÎ;ñx‹íT%NP°hs"kp#ùÊó€ñwÓvÃŒKÇ5—ã:œ÷=ªàð§H=»+›éòÉ6qÁ% +¬Í¤®‘š´+¬u~*VJ+¸¢Ðáb…LÚχ\b-ÍKkÎ%ÉÊ!õè,·ss³CÓý“á²¢ÜÇ1‡ˆ -™BøøTûE¾n䶸'XädÐo7Ø$·Ø½#¶`qIȽë~a6:¹àÂË·ÊIzw[ £MÊ—1îæ4˜]y^c„ì'dY¸ñˆ¡‚îÒoP×Ô-åáU=
ñ6“w‚bú6
_†f²àâEÞýº›ŠÔä
±#¯«\oSR}RÜjôÚyž¦^!Té¦Ã«é›-Üå¯5IÅæÕTgË¿uoŒk?¾£oèדC;¸YŸeXöûFÎDnNB%¯¥¶ö½‰çX+T³jŒïø>J9ˆ~ÚÈ~~`K8©ÓvÝ’-Œ.{m -“{Ôyl¸[´[”¯(ˆNë°ž)gq¥ÿe…G®až”Ñ‹W°½ÎýMu{S+–ý{³œ—•"B³t ‰¡úE.ßçG@±ŠóõOÏÅ«*[‰-‰ÐÙe“œg^ÂeøùÅ…r+Ю ^Ý6--DèÑ`k|l°ýuæŤï…ni”×!WtË)‡ó^Gi¿ªöhÈÕ–æ:Íø»¨"!åñÉ®úÕÜ\„ À®9©ro§‹ã‰Dg4
£j‡E8Tsg>'E<L#&rçUÕ¾¸‘žý3fc¶ø¡wÏpƒƒÌOFÅŽ¯g+&Ð¥æÇW¡ÊÛg$»}ÓŒ™èwñ:ÃÃì“&ü»{És+¦6–l†w¡ÜÝgòiøfóå8ïF -F0 ÿà/VóäáÍñX¯%£¿Y÷¦LÇÙ×iß{0_6Õ#ÈÓ”ñ‹Ñva¸tplPà–•Z¨]
;uÕXlQ7úÙïdùáÉtíÆÏÕï0Ä/ƒ?á12þÎ)%ä€7RÙäÂÃ6‰Úžrq`Ç¥ æ›ýuGNs=Œüð™S»MdÂųÎe¸JiièyÑ®Ý;â<1ªÅ÷øQàä—ß7[Šz«ÛÔ¢\þœrù€|§zd”‡+È·† oStŒXIûƒÏˆÄtņíyU9ús7j¯‰©ß“V(†eËhq@M1ñÁžÀbµ”Úæf¯uf„•W¯d\9ì2T¾ÜB9-ªáuuÀ -'0¢p„¤ƒïÕ½—®Pƒe7¿ò–>ç«I¬n£·å긵»ˆÍ˜ªªšÜ8›š™røýñ*u”wúÒ‰B{‘KQ¹Æ;/<uƒ±4œ“‚Ï—…Mo6Çf¿y3»[ýüÚ2°^éÚÊ)·à¨þ4+1a±å N2g쮑^éÄ[·w×w/ätF¥¸áîÙä?W·D]ƒã0?êVÙ”ñùˆäŒÜݘþÔ÷ªQŸíŒÆ¹¸Ÿæ$„Bo®„ý„§#·¦ì“Î7ˆ¶Q_Þªv¬> nYÀÓaÒº@è -á«z2Uûº3Îÿ”Ì®úyýä›°qT}G§T)ÑöQ±Ë ÍPòÛO•¡ûDqfö3’=°¼˜WJœdQfZnÉý€¦³<0¦MIhЩÞD½å]¸ý`Q›_fÞý¸8Ó‚Óô›*Uæ@âÎõÏ ¤”]«^êËÜ,ªtó¥–~É´|óDå9ŒÞ¯™ÂÝ[>^Ž·žx~Ì5ùYD{•—òý^•±·rû䄵M·]ºñè.ªõº`Úå;%²'˜Aº/œLßw5¾Æ¦zf@é|VþÃNQ¡ÑæñýÂ惑_TÇ,2¼'Ês{l1ûýJ$;F"©Óîìè=ç’{Jg:G鳃NÁVŒ~ÂÇ…£íg?õª[Îè9bªøR5µ”,6E°
ßõ¸LP³9TûJb„¼q[R¶ð
œÍ¶ËìÏ·Ïý1¹oU£MØù¢ïäÁºŽú«„ƒ7»s¤IÙX‰ÖO.Ø+ìü±±º¦ñQcV£=ŠoLw¥çü¶ÔNbp2ð…Ê”{‚Ýt—„™YBÐÜc€-µïYéLH‰U=!ø/?Øÿþ'ˆÀ`Ò©F +xÚí’y<ÔûÇ¥l£É‘~dßfaÈÙ‰ÉXjBhšù?fa¢FDá¤E-E…D–Ô±“¤í¤ì;•-ÔP¶îT÷Üãvï?÷uÿ»¯ûûþó{?Ïóý|?¯çy”p.Úf$úКNcj#uÀëâb u0eeH`Btš% b +pþv%pƒ@FHÒÁH€™ÀÑ`ðožìh>tÀàG˜ðg*dñ|j<Ÿê +’p“èø(Aà÷8H#ýl‚×·ïà¶æ°6š?Fú#‰#@4¦++à²ßª¿3ò/浇…É+ä?ÿ<zÌŠF¤“ o)Ðú +Y¦w®·Í&Ãx…rO0ê2$lN׳ô<–ñEfš9܂а2¦±¼#QÏ.BŠÛù
‚ïy+já‰]&Ÿ@éi-ëFš)Þ‘¬\?®ã}»tk\RžÐY®x>¾-ŽÉ©
)*á+"‡rLì{æ´ÔySǼN}eˆzÆ¢>Bè!ä]¥ÂÚ¾\g7xã©áJ·Y§ÜMƒÎ2Âû¹Ñnç•ÃWŒ3ØÜóŽ:9³Éþå»Ë¬ˆþš§z†z'ô¿j =¬eË._yqкè«ÌÑ쉸ߤÊF—ÐZµ%)µãǘCòµ–¥›WDB›˜ž§
sûUÂ]mÕÖãÇò»ã¹œ1cM¯ÓT¾Š´¤§"ùªË%û¢kt‹{Ú®ån®'•N=Ø.¦!BýÅ!ïq—^ÚĘ֘•:ó¬sÕp¾yigQãÎÓ[ÅwvŇklþò¡±ˆwOu©‰”<‰Û2v¿w^lf€ì[(!a’Ø{"UJÙy®§º¶|ñHRW´#uJÈ.î¥ä¡˜T˜]fŸ°¨ãG(ñþöÛqx‹T%N``s<s`#éòÿ±÷SvCŒ‹Ç4—bÛö<*çð§åK=¿#›áüÙ6aÞÙ??3´Õ¤¶š¸w3¬en2FJ+¨¼ÀáB¹Lê¯
c,ÍKªëÏ&ÊÈ!õè,׳³3ƒS}a²¢ÜýÇ0‰ +Bø¸ûyE¾lnÄ"¶¨;Hä<hÐg7Ð(·Ðµ-&aQÈó^3a&*)ÿü«wʉzwZ#Ê—0næ4˜]Yn,c˜ì+dY°þ°¡‚îKÒïPçäMåbá=
ñV“÷‚bú6õ_§²àâ…^}ºˆTç²#®©\kUR}RÔjôØyœ¢^&Tê¦Á«è-Üä®6JÅäVWeÉ¿skˆm;¶wðþ‰ÁmÜÌ/2,û½Fç#6&¢’V +SZzßFq¬ªØýÕÆ·}%@?k`¿¸°%Õi;nÊD•¾Á6†Ê=ê8:Ô%Ú%ÊWÈ?«uHÏ”³°Ü÷ªÜ=Ç0WÊèåkØn§¾ÆÚ€Ý)åKÆ~=™NKJ +ci8%5,œ+
ÚhŽÍzûvf§ú¹Õ%`½Ü¹™SfÁQýeFbÜbÓœdöè#½’ñw®ï¯íZÈÏîˆLvÅݵÉ{¦"n‰º4 +Ç`~Ñ´)åóɾ³>í™Ï£^Û'³±¿ÌJ…Ü\{× JC„mNÞ#ge£¾:´Yíhì’€‡Ã2¤užÐ’/ÂWùd²æMG¬ßI™usúI7`c¨ºöBN‰R‚í£"çãš!äwŸ+BöˆâÌì§%»aÁ¹Ñ¯•8ÅÈh¢Ì”Ü¢Û~M'y`T›_¯SµzÓ«`ëÂVߌÜ{±±¦ù§è7T*Í;€„ÛœkÛŸH.½ZµØ3š±Q0DéÆ+-ýâ)ù¦ñŠë³½ûÂ]›>]Š³ž©xqÔ%éyx[¥§ò½•¾»bëĸµM—] ºáÈ*.²å$:Úá3)²+Nº'”Dßs%®Ú¦jº_é\fÞÃQ¡‘¦Oq}Âæ_UG-Ó½ÆËrºm0{}‹ó%Û‡#¨þSnì¨]ég“ºK¦;Gè3åŽAV´~ü§õ#m§?ñ¬]Êóï>lªøJ5¥„$6I°
Ûù¸TP³)DûZb˜¼~Kb–ðuœÍ–Kì/·Îþ1±gE£UØé‚ÏÄÚýûôWnteK“²°-Ÿ±—Ùy£ùbŸtMã"GFºßÅ›îHËþ}±Äà¤ã”-8(·x»ÛèN 3!2²˜ ¹Ë endstream endobj 32 0 obj @@ -1906,7 +1907,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-53 -251 1139 750] -/FontName/TUBSIU+CMBX12 +/FontName/DCJTVD+CMBX12 /ItalicAngle 0 /StemV 109 /FontFile 31 0 R @@ -1919,41 +1920,41 @@ endobj /Length1 1334 /Length2 6912 /Length3 533 -/Length 7735 +/Length 7734 >> stream -xÚí•eX”m×磻•î:†ŽéPRZBš„¡¥‘VéFAºSéîî‘n¤Cy羟÷¹u?ïþ²ým{æËüÖ¹ÎõÿŸëZ×9lLš:¼²ÖŽ–%G’W -¨ ãçÿµruv† _8¨wëß…¡ÞDÄb…—šFC3ã¡ž™Ÿ¶N1?ÿ24‰×”»Ÿ$ržE1Ò{„ÇÍØ…¾¶×<%¼ÞÕŒJ¼äd”«ðU—ˆi=7íðô¤)^¤à†4¯ž=*y³É;FZc„Î×r -bîNè,YÓ÷_§~>zõÖÐ,ÞTìT;¢ƒg;¨_Žaòµ -5;I³OX|D´SFb—þP”hcú†ÆŒØ×$1mgjŽX#åTIÍÂS£³MÉȈS¯ -TÙTž´Ê¹œÐžt1d\ó‚,qcÎ-ðÆÙóšKü:uuÙ0éðXcCþe -^^Ÿ¯•ÚÊ‹:\Uææx&¸Ú”âÍÝ”OäFuprÆ:æúžÅî—{?Ïùeoœfí€<`3¶yµ¾~`£ïÎýÿH,1¯¶‚Aíoºñ*¬´eñ¢º¾m½™;]ºlí¦š–ºT%¤©#áÈ•üy"ô9IpÛ7 -'1«fí¾;Û'ÚÙž,ÌÂRª
x¾[+ÍÂêÞÌV£‘OÓ²lèÊaüЈ•¨#ÙÜÀÊ•Ë+´{Î[Jaû -3,ÊzÕºs_ó^ˆöBƒÅ§0£TKQ2âåüÍíO(?¾în›”ÚðêMàß:öæÂCÓå (›õ
ˆÅ;&ÉÇxgi‹å¯åÌCˆ•Ê“4ž0l²?úŒ®Ùàþ‚¡Þ½÷§}-‡¨¬5IE§ÅÛÓï/L»S;>îä4€¥Ú(Ù9ÓêÓR‡S#T„]w›Ø®±¬¢jGßZNöž[y‰ÏɳL<B
n–ûôt[]©£ŽmlMª{Mvo}À>¤ïã’{x‡¡8á•öaBlƒV˜JìsFý
´ù>íé^¹ç,{1jÒZ‘¯Dñ»x†½¦^˜’®u½›yÞµwKúÃ~:¬¤pÙ@ðó›yôž™L(¿Í;¬àp¬Òö}zù@…l¬Ç„…‰Ìv“V¾€ç[ØIäd¹Ûörív"Šoæ?JZвãXÏ…½qôËJ]îƒzø\9ÛàÚ7Sp@kÖ]µˆµçŽÏ«D5“ûL*ñ«§W‹&F…ÙÅ –Ax|ö´<œ4ô^^›®*ñÔ
§ÞZ¾ÀäÖÄ&íH…ƒKÛÀÇ߬™Ãd8@3´ì¶n‚Åz:¼5–·u’\èEW¹ã +ª]ÐonVþ -¯*f𦽎âîÐìdëz&¸¶E -¨¿¶Öž—}7Þ(Ô/µ¯¿1˜{ÛêoN|ü؆X/¦'Ã0™_xñú=ðâë]ÏÄ]ØáŠh‰w}Ž>ÖP/ߦˆ¸ª×¼çôQÅÀðúÃ!†±Š¯>/ø9zŠ#Io Ú1ð -•¿A5 /âû–• -Â÷›ŸµæŽ©|˜iðé<21$ª=õÔ¥ÅzÈhiØÃ3i¬à‹>غ{,ÞqÑêïEhT?ÄøY|_ý>HáÌŽÆ]¹ÇƒøËcÁ¢JxÊáÌ•'|,ZF·dÞá\³Lîc‹XÝãI³Ùþ~/l³C?RRcÐPìK©.-v«|äb*TÖ•m¦öÒ·@+ªMl•Ôaiy¨ôØ (œ”»2‹Ú¶ÔÆ 6·qJHD q©r’”Üïû¤HLgPS°ö¸úJHy- -?¡¸sûþÇXý£›Õ–_íàEý!ò
Q‡é…‡M>nU©±¬ -B¢§¯ŽnHIÕXr¨$Øθ4g»)£8ù©uÍËô"¬3›ü/Ëá1mK<…oB¦5 -ÕÞ¢$½ÝAÿðe=èýéüýçû^/ƒg›sA·<ë4HocõŽªq¹ -go{?@:M¿…Í|ªé-ãé
Œô‚Ÿ™^[wÀ˜\ÞþÈHÒ¯hÞƒnµ6>IC%"ßD;°[q)Šû@?ÞÃŽo¸2Ïàëà“eîÈzBÙ$ö&gd[V/¨‚ÝbíÑ•U&DÁ³«û¤æ•ÜÓT×z -ØÁbïç -$²é`É4;âß (WuŸÖîP sxìš8rwž -kO'*‰oËnú…ÔÂʼKô -y&ƒ.êýRöR§ôì¶þUØ®Ž#s8N‚áö`N¿~Ëyîç9"k@ëã_”ìmœXšÏcV ¦ÐAžmÑè\‘+Æ3~VÁíò*Kb"ú‰/{‘¥:»!´´·W]ß5ŸÀ¸ž¸4ñy úV¼-*Œyú}J˜Ø ϶÷m9ߺ´VFØ/„F£»+dÛüÞÕ¸PÃgSò׸~܃ë/»Uv«ç~¤·‡Ï8n†i8hDȽ1j¥¾lj#ºÚóªÏã»k¤þU¥•Kó™{<bíñðhFâ•Ø0(¹ä¥ïfV—ä<«V|êŒD2¹…†Ž
On‘CUø6<$õub"-I]Æo㇖8e˶ÓG6ÒafŽdîXëL}µ´¡Õ˜úÌU”ä›ÄXë,ú Ñ”RÒˆ-…n¦Õ†p’LÁA˜½ÔB0Ö„©-ë,nk¬9¹NÙSŠj-˜—_dïj^ÆâS•Ø'³‡yÅŸ–„$„ꢜ‡>‡×FŠoâ|DÇCW«Þqª’4fh~SRnžY+@¬ìQŽ¯Nbø±p^56¯DGÝ—0e°açë[õ‚bOÕhC*¦Uƒ×˜_Ì_X`œZ^¼ž”§{Ñ@~Äh’2ƒŽ1I©Ët¿Ûo w)žW
Oi¡Ú¹]æëm¶ÍöÑ2¾ßOõœ+Œó×RÜAZÔ} xI hÐk®„fH«ßNÙÙÉÖÄvËêž÷$:š÷*$(Ùäí^šL¸Ü)@qa7åµ’¡Vì×âœÝ7ퟲéþJê ÷«ÂS-"<Í÷”F¿*ˤ-˜úJn«´–ì‹xÓßÀ³Òç~/×®M—ûîVˆõÄö€Í®|L&<ý0䞇®—öïFé¦a?W¥º -Èý\0é.8é>S“@-IÎ"ˆÃüyºdº>D=&{™•ÀëqfhebˆwP ‡T·B30´7ffî¯ú-ÆZæD;ƒ÷m -eÈgå¥Áé¼
Ö&AÉG»gz:SXcÊ
°°Êœ_/£L_U
ûg–;¤à¢Ÿ¼Áï;¹·E@G{‡vÚAè„›g”c¶—5~xA?ÿ´ýuÿñò‚o,QÉÛ»³½L ‘Ó‘mŒ<wcy‚QM¡Æø#¬%uA§&£Ò±¸MdÿLq°gjÛª«0оÖÎÀnæù‰d«MDE ÎÐÞ/ÿ¾Ç‹ŠNă´wð]ôWÉÍb*_â=nédûåÀÉKû*Ÿ?æжk¸2q½>M)ZEJå—QU¦¤Ð[¿´ØÑÝÂeGû…i's5¯y¸5=éy'S¯ÿ¼2|*ýȦaÖ»^ÁôÖQèþ„ìǸæ´Æƒ oúµ¶DBÛ˜àQ·ÛéQh¹E&ž1]¡ -µ?ÖˆN¯£N§’Ù¯žUÜÝDi0Ÿ[R˜YÅZ(ó¥^ÇI
ƶI“SÜ®'ÄFàw•”¬—•Ê–»®oJÿ4«Å“ôuƒ¤—uÏ’²çˆ¶BLw\]5Þï»àÛ”ísó|&Êk6AH;±x¬éïÏd4!ÇYÁz䆩üÔ]ð¦½Æä|ÙÁñDb²É4í»ÊçßT´pÜÎôa?˜Š~V"^ˆ*>O%m -¾N/ÚÝa»6?–ÈnýžËïQý@Ñ®<Á`TVQuÉÇÄÛäõMÄll+ Ü‘–i¥¬)Ky¼19kæô4ýà ðŒ¼j-š5väyEµWük`tíì"ÝîY;t˜Ž:A&Z¦&õ$‡ÎöÈÍ@²E¨6w:>Š ¯]%f3YNñbâ&ÊÆhÅt{ØÇ$줸™1¼^B+”8'>]‰;%ÛsuŽ-^aU°ÚêÞgÀ‹ÿQ=½ÿÌÙ,%…ï|Úš¶;päs¾Ÿ—j0ß¹y¥ÃˆÜ¹'˜—’™Þ/¾´Œ¾PA%çíMמpÎojx¬À»±/1W+R¦–¶Rq„8“I Bè¬{E¹=)×ë·%çdJ -°ñ(
‰y”BT‘“]lƒg^A¼é~¿j³]L*lzÿˆcó(Ž±{韵‘Ù09ª8ÔýJÍáÝ+Ò÷BI2,ãtWïíubz<ÑFb—k2K§•LØ#¥70ŠB®EúÞ<o³œKNáb¡Ù{‰ÑmÔ‡ù¥W”ˆ9[dÅ™‰³f-—d+»Ø¦‚ìà/p¥„‹Äî/íäI¾½$ÉÁ×™¬ÆßÆ[¦ZAÃ:\ža?¹Îý˜’è-l¨³I<ÄÿuRÅ -HéûpBüžîWÌ…šz5AÁ©è™ñ«†^~Û½ùÍa™Ò¯»Šl×°/ü$šE§D4U”Ê[·£çÒ0À4[¹ÆüÏ”ÀwÏh0âBfðMDM©m8ÊQ¯´O–¨O‰ßeZÍê—úB…w7S§w¤a’âiò¨•W¾ëD%óÉB{‹œå³k2Ø=à³~Ï -½Zbƒ$ü¯ªŸ…ØV·”4½ýDrVqzö³Çòàôè#ÎÔwtåŽù"2z“ÓLÀèûD¼y‚5ŸÎ0ñæ̆y(èì'ÎTù1£ÈÑc…•etX¢F"Ÿ+¬:à<O™oõD\vKV`-ýðƒplHE6Q`~f»2}@lmóÍGþýµÊf€ -îÁÆimê@ê×dœe¤ËuÄð“ ÍøúqJ>ºG\.7‹«rt¹YË3‰þ%`r†üxê“:eë-º¡ÂÇ5 -¤âµ=i¯8} -–d|ËU93ÒºÊ^Åösá«TNŽ²9ýr -¦gUèÏÚ,ÔS.;=z¥Ñ-GCN5nç+Ô{±¶„–wË$jIJ¶£òÄ</T6,"®=U½y>ëj}:ZjVñyë·V-%Šµ55TtÓé«fÿ9ÆD+0—ƒ÷©†W{ïEý*¹'s5ñ¡á -ï~rnØZ·æ"ò]kMÛ|„õƒQ×F0%DeŸ¸a‡¦á¤îYGÀ±ÿ›—³fc˜¾å!ŒÌ¼Ïnö8œx•Ý^M·ËkÐÌ‚ºÙOVÅHã};¼ÖùDY±]°ósã ¢Å^[ªß8ÅÅêZÒfBQè5-U÷6aµUß!˜í]q~®×t^ðŽN wÈlúf øïË»…;9õ
—+Œq×ÕÈ@k´8mcjÎÌ,ÞÉ%q¶Èÿ*[’÷´’/UN3`é*œ‹•ß\êc«ßŸMSð¿ƒs1ß¿™‡gó½ICWÎ]ëP[Œî±ÌÍ׈Œ˜Bzðf>î²Ýmïð$Y¯àÅÄÒMsà™~ØÕ¿ÍÃ16Y«[’¿š*Ü€ÆT&¬`¸&jæØÛ„PB·ð£YyŒ >k¥Çþw -éŽÀ˜š’ggeU$+?•[´Ü“3¾ç<ÝhÈ1Ó5¿~ÀÿùÁûÿþŸ(`‡X8#,œíñðþ>‰j¤ +xÚí•eX”m×磻•î:†îé%¥%¤™a@Zi‘n¤;•îîNéF:”wîûyŸ[÷óî/ûØßö±g¾Ìoë\ÿÿ¹®uÃƤ©Ã+gíh QrD yùÔå
… +Î$̶@BA A€œ«
@H +¬aVH€%ĆÀãÿË”2êÿWØÚÕéßKng”/ +‡kX8üUþïFýuÜó¿3œ\‘g€º£5ÄñŸ©Ï!ÿ2'ïÿ2ÊH8ÌJa‡ +à—ûM(ò¿IÀ¯ð›$P}ü‡ÄQ^”~JFù7¡ª¨ý&Ô)žýC(‡Ú¿ µOç7¡¼éþ&”úó5³ü¿ UÓê@™±þQ}ü(›?¥bû¢ +C½‰ˆÄ +/5†fÆC<3?mb~þehZ¯)w?Iô<‹b¤÷ŽÅ7cúÚ^ót–ðzW3*ñ’“Q&¬ÂW]2¦õÜ´ÃÓ“¦x‘‚:Ðh¼zö¨äÍ&ïi:Ë$ê³™q0KÔÛëáÒë,¤SóquíÍToóœu±°¹o¶j-b½áÞ#«)EwÕX`ºÙyù}Ä°‚µ)•g¹©C ðë_z'²¼z~ÕOí7cˆÇÎZJ_0>Al™VŒ÷ï²'TÄi'V‘ÜO†ø=ŽnÂÀŸ!Ÿ½›§RT¥Ôð¢I¬ÉÜtÚpG×JOOe™¦i
fÒcåŽÊŠR.=¹g’ü99/mó)f©ýÏ
–S%á—`~Kîù0u/(§•”¹;¡w°dMßúeøèÕ[?B³xSQSU숞í ~9†É× +wÒ‰¦#[=¶áG’¸Ê*ÿpþv>ºQ#Ó¦TPXòÝ|§®§.91̼˜4Ðjv’fž°øˆh§6Œ2Ä:.ý (ÑÆô-±¯Ib"ÖÎÔ
°FʃUI„ÌÂS£³MÉȈS¯ +W‚Ò¨ëIùÏ á&²éÂÖ`·ô{SÆ2%?¤5ß=-¯O×ÊmåÅK®*s>ZmJqænÊ'r£:¸9as}Ïb÷˽Ÿçü²7N³v@°Û¼Zß?0‡Ñwç~ƒ$–œ‰W[Á ö7ÝxVÚ²xQ]߉6‹ÞÌ.S¶vSMK]ª’@ÒÔ‘päJþ<úœ$¸í…“¸ƒU³vßíílOfiUÉ<_Š•fõof«QŠÈ§iY¶t å0hÄJÔ‘\nàaÅÊåÚ=ç-¥°}pÄË…²^µîÜ×üŸ€× +~h]0
E>÷•õ8ÒzÒÕpŽ;ÿ³¼HC%£Móáñ¢£·0î!zÙFÞƒ‹ÄÇE4Ú'äísÀÀÊבðÐÒkÏ› §v™¥Ï扼}õ £€Øøõ&˜©eR7l ÷@yÑ,.KySì„<‰6íð"}»è…’ËY¡F.ñ7B2*fw´RD9êíë¾b”Ó1¶-8èÏp¸¿B[U+™î€èÎI˜?¸Ð +ˆMq¥bON-Ózò0TG¥ç…à©^›iIo?¡k©žÖÆŒ,1‹d]÷jöWìNr—ª4ÐÄ#ûª6¼<kõö°Xø؉©šxtd +ŒCb·æ6ÈsàÔJLò=ük4€q’bœ‘4?š7Cçd׎ݺ°lhqσ&„"Ó)£¶ER8E_òæê:ø¤W3âF貟Ur¥ÆRâ0,¦IȦ¿¢BS$åû7V#çÑ%>]³A_:A,z7·Î”'ú°lª£ ‹'2ÔÅŸÐÎ-oüîBU_ô+-òÕ$¼Hˆï[V‚¶ˆÜo~Öš;r¤òa¦
æóÈĨöÔS/x”ë!£¥aϤ1Ø}þ°u÷X¢ã¢ÕߋШ~ˆñ³Ä¾ú}>ð™ºr=ñ—ÇBE•|)g„3Tžð³<jÝ’}‡sÍ2¹-ju'ÍfûûI¼ˆÍ-üH ,Î ¡Ø—R]ZìVùÈÅT¸¬+ÛLí[¥oVT)šÈ*
¨ÃÒòPé±…AP8)we´m©Amn㔈@òRå$)¹ß÷I‘¸Î ¦Pí-põ•°òZ~Bqçöý±úG7«-¿ÚA‹úCäbÓ›|ܪRcYÁÂb§¯ŽnHIÕXr¨$Ùθ4g»)£8¨uÍËô"¬3›ü/Ëá1mK<…oB¦5 + +öùµ$x¿(RSÃïݼÀÓU˜"ňÕÞ¢$½ÝAÿðe=èýéüýçû^/ƒg›sA·<ë4HocõŽªq¹ +go{?@:M¿…Í|ªé-ãäÓé=3½¶î€1¹¼ý‘‘¤_Ѽ;Ýjm|’‚JF¾‰v:!`+¶âR”ð~¼‡ßpežÁß!È<&ÇÜ;õ„²IäMÎȶ¬^P9»Å:Ú£+«8Lˆ‚gW÷7HÏ+¹§©®õ°ƒÄß?ÎLdÓÁ’'hvÄ¿AP®ê>?¬Ý¡áâã±kâÈ Üy(]ö½–TÍ(rkð&o$ž`,¸K™žDß3óQ¥¤]«6úà%ܽ™cŽï#Þñ„á€é+„ÖýÁÂFlÚ\üýÙmz«…×v¿ØÚ
¶ëbÉZ^cé"raΧ¯<»w¢–-…ÛÉ.,“$Å'ìÆõ*™Z°jI +æÚYGª°öt¢’øW±ì¦_H/¬Ì»Dh-¦©C˜ó½÷<î9É[u]«T¤äK?ð‰óн,¨ÆÏ•íþæüëòQ¼Ð;]0¥ø™«üA`ÚaÝâ¢TDÍ£(¡Òäº/ê=ó\X×7TW¾ç¸8¹v.5Ó|.dқ݇஘i›ëÞ‚&Õ„zÓÞ^CŒ—'^“Aò@~£à{P¶pc©¹PLƒ5ÑŸª©äZÍ£ý=dâ=@̆)§$Eïn¤Ù¯Üt÷-1¼ì=Èê#°TÄ™ó÷*v·¸ÿâÄðb>Sú¾Ä"ï|¥üd[öγ¯o"¢0IRo‹ÔJð¬ Ïg\¡@ºX®²5åºÇÞÍpù¨Ñ)Bqɘ^ ‡¹")/«·Ûì +VÞºñû}wCûŠÙFù×Â’ŠlsIû¯ãûÒߤESŒ Ï°Á‘-¢¬åDp(xГ-%ZoØ
ùjœ•ûƘӈ€ïÿ0Op æœ¹Þ +ó~)w©Szv[ÿ*lWÇ‘¹V'Áp{°§_¿å‡÷‹óÑ5 õñ/Ê
ö6N¬‰Íç1«S†‚è|žmÑè\‘+Æ3~VÁí +*Kâ¢ú‰/{‘¥:»!´´·W]ß5ŸÀ¸ž¸4ñ{ ùV¼-*Œyú}J„Ø Ï¶÷m9ÿºŒVFØ/„<F£»+dÛüÞÕ¸PÃgS +׸~܃ë/»Uv«ç~¤·‡Ï8n†i8hDÈ¿1j¥¾lj#ºÚóªÏã»k¤þU¥•Oó™{<bíñðhFâ•Ü0(¹ä¥ïfVTâ<«VzêŒD2¹…†Ž
On‘CUø7<¤ô…tb"-I]Æo㇖8e˵ÓG6ÒafŽdîXëL}µ´¡Õ˜úÌUŒä›äXë,ú Ñ”RÒˆ-…n¦Õ†H’lÁA˜½ôB0Ö„©-ë,nk¬9¹NÙSŠj-˜—_dïj^ÆâS•Ø'³‡yÅŸ–„%Eꢜ‡>‡×FJlâ|DÇCW«Þqª’2fh~SRnžY+H¬ìQŽ¯Nbø±p^56¯DGÝ—0e°açë[õ‚bOÕhC*¦Uƒ×˜_Ì_X`œZ^¼žT {Ñ@~Äh’Ïg!c’V—í2~·ß@îR<¯žÒBµs+¶†M×Ûl›í£e|¿Ÿê9W9æ!&&®¤¸ƒ´¨û +Oµ|ˆÈ4ÿSüª,“¶`ê+ùU¬ÒZv²[,âM? +Ü]ä F5…/à°–Ô…œšLŒJÇâ6‘ý0%@’<œ©m«T¬"@ûZ;»™ç'R6%83@{¼üû/*:ÒÞÁwÑ_%73ˆ«|‰÷¸¥”ë—%/í«|ü˜CÛ®á6ÊÄõú4y¤h)9x”_FET™’Bw,býÒb[Tct—í¦ìÕ¼æáÖô¤çl½þóÊð©ô#›†Yïz°ß[GáûftrãšÓ +‚¼é?ÖÚN oc‚FuÞn§G¡å™xÆxt…n€k¬^GN%³_=«¸»‰Ò`>·¤0³ŠµPæO½Ž“)Œm“!§¸]Oˆ?ŒÀï*)Y/+•+w)\+&Þ”ùiV‹'åëH/ëž'$eÏk…˜ÜG︺k ½ßw·)ÛçæùM”×.l‚vâñXÓߟÉjBŽ³‚õÈ
S¨»àM{Éùrƒ?â‰Äå’iÚw'”ο©há:¸éÂ~0ý¬D¼S|(‘Ì—´
(ø:½hw‡íÚüýX2»õ{®€GõE»òƒQ9EÕ%?Z>Þ&¯o¢fc[ Ž<l+ídMYÊãÉY3§§éE†€€`äUkѬ±«Ï+ª½â_£k`évŸÈÚ¡ÃtÔ ²ñÐ25é'9t¶GnR-µ¹ÓñQLxEè*1›ÉúpŠ7Q6F+ö|÷¸‡}LÂNŠ›Ãë%µù‡Bã$¦+q§äz®n±%*¬ +V[Ýûxñ?ª§÷ŸÙ ›¥e£ðÝO[ÓöbŽ|Î÷àóÒ
æ;7¯t‘;÷„òR²#Óû%––Ñ*¨ä½½éÚóÎL
Á¼û’sµ¢eji+Gˆ3Ù” „κW”ÛzÐÑ“r½~[rN¦¤ +Ž]®É,V2a”ÙÀ( +¹í{ó¼Ír.9…‹A”–ÏÞKœn£>Ì/½¢DÜÙ"+ÎL‚50kù»[ÙÅ6d+%$X4vi'O +ðí%I¾Îd5þæ0Þ20¥Ð +ÔáòûÉuîÇ”DoCM¢à!¯“*x–›Ys&Ï*Ȩµ€u+5ä»Í“¤×©UV±cÓs«|['ýøñ„³ÑhÎØ“m¡ÄÑñ>æyZÂ!,væk_'"_øòÈ2Gtì*Zu3°Û\GÌ ú¿Éõ¾åÓtõ +«ž}Èijþø¦bqÕ7GÙÑmß Ì—xÔï$t6´³hªw0Bs—Ó¼-¢öÈ|»Øœs?Öò½«‚Ÿ_W5ur›Õ)"”ˆ/–òÓË“¢½MÇAboÄ$¿Ì/¥\å…6Ÿ&ÞÀÙóc_}
Òù¶LI#}.XˆßÓýŠ¹PS¯&(8=3~ÕÐËo»7¿9,ó@æ5cW1£‘ívâ…Ÿd³Ø”¨¦ŠRÙaëvô\ˆf+×X ‚áY˜Òý—øî¹
F\Èþ‰¨)µ
Gyê•vàÉõ)ñ»L‹¢YýR_¨ÈîfêôŽLŠC"Mõ¯2ðÊw¨d>Yxob‘³\dvM»tÖïYÖ«%6HÂÿªúY˜muKIÓÛO4gu§'ñh?+pì!N>|Ö ¾£+Ì‘Ñ›œfBØ'âm̪ùt†‰7g6$ÄCAg?q.¨*pŒEn+¢,«Ã-8ù¼ê€ó<e¾ÕqÙ-UµôñUd,(AÚDAø™íÊô±µÍ7…÷×*s˜*¸§µ©©;\“q–M.×ÃO‚6ãëÇ)qø èq¹<\Ü@.®ÊÓårdµ.Ï$ú—L€Èòã©Oê”·Lè† +×€H%j;{Ò^qú,Éú–«rf¤u•½ŠíçÂW©œe!rúåÀ·Tâ‘¥y5Ìz9‡Ô~y·qþeº«¼?fî.¤ +S¼PCâ+åø×O¸›o„‹;íØo Z{äBBx žã·Ãã!Tõ*ÂS”õ½¶çé«FË?5ör'© .üZÚ׆âö=(}W¤“-—G׿̔+³ ‡Ã*N|8âô^ÍêÌó½p|N…·Õ»bßGEŒ‡Î?t`o2ÃA,‹da +êިؕ[M‘“ð–ÁÝ1fPRUŠcƒóÂÎþéÄ{Yàヲ€÷4²ð²¦®:>,Dtr†áµƒ§ GìpÃÌ%ÈÚöŒ5Љ‰PF=š2[={¹§°H(´eZ{Þ]Ð/ä³úÅl¦ŽÍÞô4iB–økä§ ¶Yv±ýYØ S51›Ï0ŸE¢ž°õx±žmô<ƒ´³))&=[ «×¤µç÷£u÷>¶ +»Ðïüb¥ª—÷ÊbߨÞËTÎœ_VÞù<Âh[XGžu×ù5ZMš¦~¥6l%½hQ"¶Ë]劉xxt6=«Bï|Ö¶´RO¹ì\ôè•A·]09Õ¸¯PïÅÚ XZÜ-_¬ÏÚŽÊ“8ò¼PÙH°dˆ¸öTõæùx¬«9ôéh©YÅçß6Zµ´ÖÖÔPÑAN§¯šýçÀ\Þ§^í½õ«@æžÌÕ憄5<w¾«@Û@êê8>±"[Ôû¡ÎÊTÉç˜Êx¸yò)1Äö`+<Û!O±Ôyo^Cwý%« ^Ú|.¹¡qè)ª=™´ÛA^ä +a7°ëmp¶åVØ&Žç:Yë#±DìØâ61ã”ÄÑ‹šÜê¿ÉÏT)R¡wÀ%— B³ÂªCR°—¼ã}ƒfÈY£ˆÂÊg\ï¶Íòê1››ÕçfÆÍ cìäOK7H&˜—Yx¯#¸ÞýäÜ:±µnÍEôºÖš¶ù룮Œ`JˆÊ>qÃMÃIݳ:€cÿ7/gÍÆ0}ËC™yŸÝìq8/ð*»½šnWÐ ™åëf?Y'ŠòíðnXçcÅvÁÎσ28,ˆ{m©~㔯kI› y4F¡×´TÝÛ„
Ô.T}‡`¶wtÅù¹^ÓyÁ;:&\ÜE `°é›%è_¼/ìîäÔ7\㮫‘…ÖhqÚÆÔœ™Y¼“OâlQøU¶¤àÿh%_ºœfÀÒU$+¿¹ÔÇV¡°?›ö¿ƒs1ß¿™‡gó½ICWÎ]ëP[Œî±ÌÍ߈Œ˜Bzðf>î²Ýmïð$Y¯àÅÄÒMsà™~ØÕ¿ÍÃ16Y«[’¿š*Ò€ÆT&¬`¸&jæØÛ„PB·ð£YyŒ >k¥ÇþwàtG`LMɃ³³²*’•ŸÊŽ-ZîÉ_Èsžn4ä˜éš_?ø¿üàýÿÿO°‚C,œ‘ŽÎöxxÿ’Nj‡ endstream endobj 35 0 obj @@ -1963,7 +1964,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-301 -250 1164 946] -/FontName/GYSFKK+CMBX10 +/FontName/HZGQDS+CMBX10 /ItalicAngle 0 /StemV 114 /FontFile 34 0 R @@ -1981,7 +1982,7 @@ endobj stream xÚí—eX\Û¶¦IðÂ-@PÜÝÝ݃;nÁÝ]‚CpwBp—àîî‚»Û½Ï=;ésûO?ý¯Ÿ®ªësÌñ}kÌ9«V‘)(Ó Û‚Älmi鹀²BêŒ@F:! -¶µs³775sRSþ•Å´Ù›Ø +¶µs³775sRSþ•Å´Ù›Ø æ6Ž*nvÿÔý+ýofüÍàöØ›»µÀýe'‚ßÿ¾Òù5Q#[csS +ÐÀÞÞÀ
Ü/ ‰=à¯edgÒ›üü›YØ€ôvàE²5þâÒÛÚ€þaV ½£‹íof³™=è&pM['ûßfpÀÜù°ªøÿav ½ù"l¬@zÁßþM@z‘ˆlGì7•$ønd~¸Šì?Ä6©ô›Àó”ØžÊ?Þ¸ô¿ ¬nø›ÀÍ1ú‡ÀfŒÿ@pk@à_}ùÁš¦ XÔìwÀü›°üÁ.¬þ@°
ëßÞmô6 ؆í²ÿÁB ¸gŽ X×é¹üF&°ërûÿ瑲uõ e·„– ¼…À:,@N6¯ÿ5ó“ùg'¤x—10°ƒWú¯¨‘“½=ÈÆñï¯!ðyû7›˜ƒO'ä 2ø*+ÊRQ,½cx§WFFá?ýTêçÏó‰ýÅŠwéËncò¦g%ùu?ÿr%À“ô‰½Nï×eùãëˆÊHô´ÏäRÛP\ û™*‚€Ü-Kååb @@ -2025,7 +2026,7 @@ fY\|ÄE½wß ¼òÑE³ºJO=oŒ¢íc“,pJÁxâå\sáä.£‡jãTìp<»šŽöp4+/’Öó•J7åê¤*T);V•QœÀ,Ð ÆûµØUïâ”ù‘oÄg¿)/PléæÉÒÍ2ø¥Ü·ª@‹ šBOÇ8•,´,)¬›MyÂÙ-¥òì„rŒ’/+ò¿ˆZÛ‡kÆâV‰*=H?ÛõÑß릲LI×fœ hFÈ£2%²ÖÞS=0Lºžð¹ÓûGŽÁû¸´ˆµd¢Iˆ8hßÕ²Œ>Ew³ˆ:ó9ÁóàýÐñ Ûº6@~eP^9»* ˜U¬êy—-Ë®Ù[´h³¶éÑ•ªYæ2K*òXriI£ªC*ÊúÃÑ -êUî–—m¦)öÀ,“*Š$ç6ù[’þ‰yy7Iÿüz™ÂüÑ®Ð0v×:11GãßH_FOóYÒ?ëÊá>NA[ܨeµ )Öļ!`WØ•¼¼S~ 9§+]Ìmu¼ãû–®<md0Ež¶£QÈ‹í]›îõaöÔZ¿¦ÎÅþÁgûM¡åÕ\õª!fe¡`#æ ~hcž0%ÖNÇØMŠ?Þ‹Yd}ŸjÈڈ˞8´ÁÝAÒ2œ¼W
Ó%WîQüCÅsØñÍEÈyÚ°<1‹—,&?<œ›n%e¨•K××#WÕ°Ýõ³Hƒú
9CªBíŒE/}’µ‡»^£]ZÙ,Ô|[cÚž‡š!ƒW½]KÉ’˜Cã~¬¶"´—< +êUî–—m¦)öÀ,“*Š$ç6ù[’þ‰yy7Iÿüz™ÂüÑ®Ð0v×:11GãßH_FOóYÒ?ëÊá>NA[ܨeµ )Öļ!`WØ•¼¼S~ 9§+]Ìmu¼ãû–®<md0Ež¶£QÈ‹í]›îõaöÔZ¿¦ÎÅþÁgûM¡åÕ\õª!fe¡`#æ ~hcž0%ÖNÇØMŠ?Þ‹Yd}ŸjÈڈ˞8´ÁÝAÒ2œ¼W
Ó%WîQüCÅsØñÍEÈyÚ°<1‹—,&?<œ›n%e¨•K××#WÕ°Ýõ³Hƒú
9CªBíŒE/}’µ‡»^£]ZÙ,Ô|[cÚž‡š!ƒW½]KÉ’˜Cã~¬¶"´—< endstream endobj 38 0 obj @@ -2035,7 +2036,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-251 -250 1009 969] -/FontName/MCSXTE+CMR10 +/FontName/ALATFI+CMR10 /ItalicAngle 0 /StemV 69 /FontFile 37 0 R @@ -2045,77 +2046,65 @@ endobj 37 0 obj << /Filter[/FlateDecode] -/Length1 1925 -/Length2 13916 +/Length1 1939 +/Length2 14050 /Length3 533 -/Length 14998 +/Length 15137 >> stream -xÚí·eTœÝ¶¶‰Ká®Áƒ»»»»;îîN Ü5hpžàîîÁ‚»ÓõîsÎNÎþúOþ×£)£®{ÍgÎ{Í%T}$UVc1w4J::¸1°0²ð’ˆ)¨²0“°023‹>~sš¸Y;:ˆ›¸yIXxxXI$¦ 7 _^v^V -´´v -bjÚêtÿµ¬ÿ5¨lbíà¦îíôï´ÿDÿ‹Yþ0¨=.Ö^$zÌ þ²€A¯ÿygðÅ$ÌÍ,IX98IL\\L¼ "_ks Ð䘉ÑÁÑ
ô ¨)þ$Ž.€V”…‹„Éâ_â3ˆÿb®Æÿl<$LÎîŽ ¾þ«}ÿ#³3“09™¸ -7 “ÐÅñ -š±£»Ëퟖxü²ë -ZŸ3Ȭ+Ðã/¯ µ`þ¯9s€¬:Xÿm„ûŸ9Û9þõÏ?iìÿ·Ê 2tv“+ r"TJôʈý!P
ñ?Ê/ñoâ5Bò&-ý‡@3–ùC -òTAá*(þ!P¥7¨‚òUPýC -jÔPõ?šŸÆÕÓúC zÚTOçßÄꔩ‹‰™-ÐííB¶ëÿ{‚n$¦?[Ž”ÚôR›ý9Ì ¹˜ÿ…ÿ,Ê_øÏ–ùA-ÿBÐì¬þBÐôþ:`Ì îÚü… O¶!È”Ý_reÿA· -“Ã_råø‚\9ý… WÎ!È•Ë_øÏþA®ÜþB+÷¿äÊã/¹òüƒ¬ W^!È•÷_råó‚l -ýj´ø}|á@o4:¼®|~”åfÉ‹›õç?–YiIó¹ÐDV¼Gc¯½^Î`ÉAP4&AklÑìJ‰ã×eê@~Ðö'Ör‹ÈfUTyùNÙ¬D¥¼(LÔ?w]Rc¦’.J:ÒÝ4.nÿktëWÖ{d˜¢—¼í=w:ä²"©»
¸+Œ„_€i÷Œõ5L;;ĶÅúŸ¡T“ÞÅ›ýšð”k†R•¬1îêv&]œ5ͯ²Åzì’>æ僩%G JÉ¡|ÿ2#Ê™Bðd`[Ì£o£³($OÒc×Ýë1m²®Œa[¢³{XZ ÈèãQ…~™†¶ªÖ·ñ^…’"ùø}1¦ú¡ëc»bås
OÓl4•—sBДij²ó凵œÈR -3“Γîp3ZŽaj{»÷ ÷w97˞ȴì>3Wõ „4e¯=¼+T>e«wÌ–×Ѽ¥v˜Q‹µ6µ%4aiã§4ÚŸY$NêÃ…œì3®ÌnÁ,q°G’ £ XÔ -¸_)!=Ô‘³LB¯ÇÑw5š ÊÍh£¾9ä't'Qç-Ý…
dU&¾Es©á¯âc¤ùo†X"ؼõ[:’àüéA<%¥Ä<'’0¡®µ -q~¸ç¨0¤SÊVGò=üÝw©Ñ(üqJ]ý#S÷…¬Ô>“ájÙ¾@&šåÝê@,ïé¶íÜ I;‡ å×òW] ñû#)qÌI†B•=ªnâ¼·üU¹ª-©Ø BqXAcÚ]:ä2³ë(ŒfVå£Ažœ(D;tfLûìiTÙaUäuW)¾†ï X7-Øëù+$"$cð:‹h>L×éV[Ž¦¹pÛ‰¨1þñø¼ÜÔ¶‘mÎÒS±ß˜+ŽçÖ~e
W)NZÁé‚.ÖõüY‚ßQÒdÍ<©#å*5Õ3Š‰¶ˆÃw¥èE‡ŸoI^Αc*FqÒ¹™yÂÆQ…ŒU»‰©Þ?²*7²/b2_Ø'-þJHUÙb.
¹Ú(Òš…½ôTQ£]D6£…úÆŸ_ûbsËBÙNµdíÖ@yóùÝ´˜ïÓ+TÔ¢¹úÝ–±1*:O÷O³`ŸC-ÌýÃ9WÜ7ºËËy»[ó÷øh13 ¶M(iÝå’ÚS4ÝY~Å -¤Ü9¿Þfš%)ô'ÓþŸOe<ë¹_öúö底å:a7üdt^Y£î.1éi¶cžšnæÙq>¢Ÿ»Av‚1]î(Í/X{ã1 -USðÝ£6´!ñW+-3>ý|ÔNU3Ú^ÀÇîQº49F“?Oºé11©çÌeGªœ•rŒ5öââNŒ¹ -×̈†›tÁÙv:uõp|áJÙ™Öëâ¦sòù0µÈP n@@*`_|»*Ã}NXD€ò±”‰Êmgäè2>§ƒô,LªE^¬þë¶TËV -·y…=«šV$§^ƪÕøâ®BÆ’ùG`Ý—=£˜ôw?ñ¦`<hÞá쟷ºŽhÛ^_ P\%ä“ëÄíxµ¶Œž³°x
M}°¥ì”ÖÕ盵Ÿ"æ©eßã¬Xµ`ý-Ìý2²)!^ß±Ô;g - -XiG\fŽ?j92ïKèÞÕÓaT¬cbÌb™F Dœû˜ÿAÖD8‹¾ŽÞ@>m,×Çá‹x³ÜÕ{°Sa¶
öt<13ôwý¿—÷iaè“,¢‚ˆ¼.>)äaÛ€Š‹{Ÿ†>jHÉìô§g‘–þšˆ -x•šùmœÏº†T -Ð;5åòt9¢TTŠµjz´[àj#‹žrÂI•u9µ ôçù ¸¨CÔ¦HDTu‚™4ýéDTÄrÃ÷³‡abý‘Gü¼õ§òUæÙßå1ÐÂõ”¨ÎTMsíšW&žÃy(’·×zí/™Ï0H
ïOw<°q÷XÑkÔ
Šè®Ú>ƒ»D*ƒgE2÷w´Ê„P'ÒcÖØÁXø¦\a, Ë$^ÊïøÖÞ/‹ª°&Þû™¥§<uÉÛ#-1ú0¾†4’ͤSR®p|Íäwï®”N̈•oŠ¦ò¹)l“Áí•WVÉì}°ª3&øb9IkóíÊìCœLðO¬(³æò‘§ÖKàšÝtÀ.QË/¸Ê1¹%2~Dé*Í]ôùorÚÀÛðâñÚžb<}ÏÏ“ÃÈ/
>"-zqAÌL®›9tÔ¼xEˆ|´ž°’†yæ[²îÕo…Pßü“DôEö‘Té„·)7ï(4ž[jEw¸å{9܆ÕjÑ8T -' ÕhmÓà?$€Ë¸sUèZÌ¢pLúBaÀ¸.L¿Ðà`XBÉÖ959ÃdQúj”Ò·ì¹Öôç,*[¸ƒ`]]!7%-¼†<^eA^|ö®ymk$µR¡¡Þ SÜaÃÌ>ã]GÙé놖qmøšñuMÄ$ú¹ÉGcã°»7u¬ª<ÍúÃfY̾oÙ„Þ7$W˜ßÁ±½ü4£
Ί¿?-„4ïU) -+ø“:?Ð|]øß -‚èH[Eš¼
Z] <«5çç}Ól©–[?Z›^¾·ø =I{¼²`$+ä†Íª0æÙ^ÐÌ(ËÎÍõ=nB¦ÂB¿oª¼óÚ•H¿ïÒ¤•ïá¤ßúÒÉv³ÍO^EPWLÕ2óKÒGƒx1«ï¼ÌDÖÑ|ŒÀ—è934Í,û»Tu^þyò±BI 7“XwäeVeÛNQ4š‚Õüæ2àHÀA,“åý…ÑSb§Üè»hb£w§õ÷䪘ˆ!ÁAJóº¼
a9T躔k›'!&m—4ŠñL%ß´bð'‡·*ÓKí:",7ŽèvpS¸¯4½¬ÁCvOäëéâÈv0”Q q5
«ÀcïÆѼVËq6;Õ1óˆÔ®D‰ìÂ2”=Púˆ›RV]Ȇb“¬3–I”N¾Âùu•ÐjÑÇê8ü*“ýI¬Líß*é|½9-m *®OîÐýãó†‹jM¥ó¼ÌxæÇüÐZLßÐ܇ã;‘8ƒ¬Üge8
¡_Ûa÷©Géƒý‘ý'‘™þ«²#Ť¢¤Gµí/¬I3éçëÛ;qBÔgþœ&–!j¼ZëKký¿vo¡tˆ–oÅn6¡°¡¿GˆhvyK,’PiQs#@;òW‘nÀ5ËÃœ«A¾Üó2†µŸ_"\aôn
™í÷ªÍáZÏ“JlK©ÐCÔTŒè"ðÔ¾q‰€?o±)½r¨AǯDJ“¿Pl‹›ý¹=uÖAüÑDKšªÈ#™°gô©§¬u -mÅ+åÀÞ`rÐ;ï2H~~`éø¨‡0wõ“‡.ò=ì‡QG]q)LÔ jýöcp6\ %nCpcm7´½¹Y¢¸¶Ê &"€m鎾¬ñ+zã³cç͵O•s/Ü;o«5÷0ÏR?9ÎOð7ú¨€Á˹‘Ú,Oñ¦VOßØJâ’Ÿ©<ÚÓÝ£W6½ûÍÎ]¿ -=†L|ö,†v¦æ%àh¥(ü½d§¿aŒk½ªÝR~[¾|©XøÆâ#ylì"ÂØJÿì\(tÅžÏÍ湈Œü\º.B/ˆçÊBº76@0ÑÒJ×ç… -Ý8œé´²›÷¼¾°¥ø“çÇ€c‚IV¹Ít†É¡‹•¥Ñ–-r5kÌ‚lF3¨o´Ô†Â&«&l
{B¿µQ¡Jf´«›»Â¼Î†Ñ·eZ&šÑO>èüªŒ‘à‚³{AãצËF¦¼Ú³YÝ|7ݦEÂAn«F`è|àdE¯ÐË}¤Ò=ÜÈúÆ:è´"·ãM®¨øˆÙ:vPµ–KžËÜ$ìÔÒŸ¨ÉæM_t06XÑ,`ÈÀMwînªÏl¤æ ÂéiBG¹:Ö¾Ý1KùJx0.{
ÿ*K^àÃ_¬ú;žGé:ÚÅÜ\Œ$½ÍÏB)ÇNc›`”ÔÚNn>§æ22¾äyœšU»t¤XáUUm‰{!å1Ã…â–Í9#Ô_fÏ4Ý<œ¼²ãZL8/ú±bô)(¢+ñZoIJ¤TÃNjÕ¡ÂÍÒ짜ø/àÆѪ\мÍlèŒÛNö0鳎¯ss©ßQ—uSSl¨tWdΗod`‰1×±¥uöå>¬Ð䧡ÃòéUY³î~@Ř–×Ôýyò -rØ¥ÉWúï?>ðd€70
+ê¦tB‰gžæy‘&x*^–ÙL:Äd'%Íhs‰Lû-í±°áEgT—”Ü„iÅÞE¥u#ñ)¢•
±àˆÝpTç[¢[•=¬üÅ -ûC|›ÝO÷ Äq!\á„q‘«ª¤ÈœÆCd¹¡Ø³ÁŨu1ï<Ê÷©Æ7ÈÒÆí:ë˜ñ·ïùƲñŠíM®¡™C£dy¨ßAÅb¯ -0`æY¿G+¸!e.»EËðšþ¬ -=]™œÒ1³OX4v¾U¯Ä5M#õè¿B!ep‚æG>„¨…j -0}ö5ÿÝoÆy3?ñÅiå¾ñ>øCâ·!ª†c.Oû½Ú© -/^ÜÌvß¾~ÜäÍ앱oˉP³%°…õøâ+`þŠ„4Dí|Q)/îT˜Z4HÁ§Ê¢£H??ÄShlY<ɾöç³ßÎÚ—ÍÒV´”¡Ã¼Š”s€s‰D£×,?pn!w÷¢›kˆÝDð6P¶5;}(xl^Jî3âm±&;›gê•‘9“2QÖÉä0ú€Aµ½Ÿ³ª]“C'€[tUUŠZ2Q£s µµÖÕH……³¬’Q[0êÜ0þÅÖ§S²:‹¼*”¥`ô)»u`ŒðûÆÚü–~Sj§Ð>÷ô\xîÊ -´|Nx xÓ¿1»E>ŒâFš ù4ûXim8†fTÇo§†¼.W -žùºñ4ŒK+€äÚê5»'‚ìïÕ©q¢‘» -CÇë(nwI%gmO³.?ðœj¶Éð˜¢1cWJOôVë…Ìô¹]·›OjµW -Z~ÓnÏO:nÍ>{<¹\h# ò£ i¹YF;Í‚S‹k=‘x¶¬ÉC[Ú¶„¾øêÆ´c-ËLÙßn}b ,Ù2ŪÜÉå6¤(ýEiÍÚÑúŒ:ÄAæ qnFúÍXuj+TóK;×gíRw=Ê®.ÆA¹÷saÕ¤ÞÎ¥PŽÀ*[û½}úßñ´©µÚ'âa?9CÔ*3‹´F§2ßSå—Ã…R3ö§ã{,D¡Uª3s3±iÛŠG -pD¸Ž Éñ(ݦO~sŸ„YˆDÚÿ|²†ùâÁ¼«>o^ X¥”Óùôã\†PW^ÊÐ.¾Â…iUzƒ|7ìàžËl1œ—ìpú 1S@ó²£DÜUyȨõšªHÆŸ úÓ–Ãz‡Ù¤:ÍZ·©„WIiñ03c†ú꧶T™—¾´d•±)TéGN]–è+¼ìg•`cÑîü梤}í¬/‚MWÈV~ÙSÙ‚’%³*Þ›âd_6%3ˆÔ“”N¸¹ñ·gÎË–‹Ì§0¬HLË®ù<ˆŽšóUÒÇ•¨r=sLÎEíw(°¯C¡9-°FSƒDgàB¶úP½Ï -ËÛ*G¤{Vƒ…XÇ`OoµEû£½ðž¶Õâwà•_b¿ö«ïKø+Ë;M!B´ícœæ¶ÇõNþˆe˜Ãäìì¨?× -}‚ö|"t:›ç…ˆO77å´î)j…g’òdÆnPþú"³¼êà„æ—¶Ú´2á,6…§¿+è0é?šþ4Û8aPv· -è?m>îAMëüñ¡ïÇ«žÀ/˜rSâ>-,)v -´Ó3‚Û«:žt¾}%'çv\CÛÁ)?¥ƒyñ -9cÌÞ¤ÿþ ÂKò‹ìƒùŠ¶ãS¾h -¨é³k\ -Á@v™»â"A(^ÚnMuzßNt ÿ”x£þH~&©z¢ÀÆä%X¾´c`H«×Ãmò ãÞ°·ˆ«uͧ¨:ûÛ°[ùµ®ìHxË é)YnC‰zÔIfòñoúð“ÉÄz(ˆ=ÛW›B²cºvH_¯Éõ¦AZ_£€¨¹l<±ù´¯œ>i”E|òlÉ!Îí¿ƒ‚»ücëܵUü—®´6ïN=ˆ.5äõ/k̘£±]2ï)n{(Û‹Å4íÓEINÈFYÁ…Ãø2·éጾ—Ï Uï~œÂ5§Ä—ÍL¼!Ÿ²Àh”°|µñáç¾t½?Ça~m¦I+†7Ú€PtùâJFÿ„à& \_¦u!OD¹—l!‡Äèt¡@á<ÎÐy·/ˆ¸÷ê¼\ÙBz‚4Ï Ã²B¹B ýÜ«ž#…$²,‘è¿-,JùÄ*ÍtÙ9¡Éù3[ú0:¯XrÞ4+½mÛÊ7†§`,lÿˆ™ƒnϲК3@ÀŸê•ÞˆöÀ÷ƒ…ºc³ŒëfqSQú•Æ¹¸>$ÄðjsŽã?ô8NÎиÏ{Ê”öˆeÈdßx¹r<Îá&å»ršÃÑøZ# ÁÙ﨔 Á'ì¿Zµµ…ç²â\¾0Óæ«£-ç~>ÁŸ|äפ¸“b–ÚX½+‰‘¯Wœ½Ñ-,½”«5T9÷ -‹$òÀyËÛÆýæÞÓ}P\ K¹sª
‹èOD¯E±$ßbuëþ;½2é>ä;eÄ}Š¼‡Çwöx!8‰ŒSò0U¸}o¤N.lQ™ë3µd!v{ÝÒ.£ÑI9ýq*·+NýÈJ|C?ãOX -Ï<“휿°ÔQ]Bkwv)Äl -ˆ¤)y0GV—"FºíõÂT-ƒù§ºk2~ßÿþ´X -‡jøÑ$D¿Èi—ã‡E¯Ò=”Ý åéŸjªK†Ú•ÆÅQ² -¦ò;;Ðî“ë
Ä €D.PP‘d¬y+Û -K"á{csMÃz”P”Î -Î-”–1ªíÕp‰uÁ£«8–Â/hãÞ^˜§â†«_ÈY„Éj -I÷N6”ºæIüÍ÷¿då‹#ƒë¨àfÙÃi¦Õ-}dDáE~ƒy$EVþ|ÚeM{³±´ÍÌùLa(߯?'õ¬—ãöEæ"&¨8*¶K-ë‹Ñ_PÕÀtvîÞös@ßT´lµñC‡íÃTðÞ Øh×o·ê¥¡æ¢*DkEO<Ùsº*ÛDE°L#ÆàлÏÊ%|C\üåpÖX{.œâ²á°¦L@´öaìV -vlœ©)ô€Ùal$ÊÁIî´@kå–¢¨Ã\çŸÇh$õÈÓÅÛ:‘J’ò¿3+à$dì -‡dÏY䬹²ð3kWn’DWÖ#7•j7W¡gI«ýKº/Y¾=4-Ξ5M ŽC7UÊ2kÑ®ÝDî³x¢ì½ªÀdÝÙ›v†þÌûu-óC,$r-ù>,éZ\®Õˆ7I#êñ¢‡ÙÀÛä¡íÅöÓîpÔ¸F|e @!©@Øv-C>Š¦³ÜàÀ1ýÃQM$;'ØÇkC”2Ú½Ñ_"°_´~'îÒôÂÝ);dÆбg“ÞJ¬DÇK^¤/=V „ ³)jQ‹óÈßÛáÁ:a©õõ¢ìì=î„\¨M -Jg‡U˜:iHÉI³ÊXŽ–—|³Ð´ÐT#š¢_ë.ÖØYǺpͤ‰›“ïU
TÛ:cBwÒ¥˜#—[T×ùIUÎK¨·Bůä
–éŸÒÙOà2çgÉa`+><a1Q$¡Ú· 7ì°9wÔÃF/íh‡hÎٷʤh¢nš·; ?ë[žàÏ,#6£6AHÒ½Óù⤋ÚÐïk<bH¶?_õ¬kDŒ‡zË› -èìšk’…7hW"O‡Ê2bš±€h`A nK ^‹aTµÁ1RÆ»Øhû™¡èÞŠ‘?ô›þŒg<³\îpü•¤>{)×a³NËu?Õ)(íÀò,Y%(ù¢â¶Æ‡ðlötTä{{Gù¡l,'‚e„üFÒ ž¶±Ÿ·Ù¶Ô:ñ4ÍbÜnHª§Â€É¡ÓfdŸ_3Jò9BoU‰5I¬Ü·®M5CcKQðÁ̸tZšb‘;OW½Éå(]å~Ž>Ôt¸ßÄ~,Lh
{±eBM(€ë+I7E†ŠÜ`lQéM= -‹\rã&PDùt(gµôž“Ö÷´ o—¹fÔ:Rl“ß®[º½/%¦üiîª)`ÄRÞÀ‘øE -W×y»Ÿyˆ9jÖCÂà÷4½{ŸÚvßS2¿œGÕ,4(%ËVÏ FÀl©,
Ðv…s…ôÙ - ˜·…ø(Ñîì‘Hg™T&#×xÑ:ˆÅ´2ÈÆŠ¤"Èe³*èßÛõOU :Ÿkd†[kÒnÿjêËnF5ÃàS¦T!V(âbä\ÉØP¾†´+~õÇ9ùp7IçP|9alVÍÕ2N.Úÿ°)EhAºq1«b¿¢‘Ðb¹ÕûÌzãGsæ¤Ö¨a‡Ò+"¨YŸ”Rá܃¾Û,qœ(ú짛o4\§ýòº›=òqî e™â}ü‹`É;d8ÿôÉ,¾Õ¡å·ÂﻬmRT3·n1~WÚ±hbÔbÞ?üûÃq_›µX¥ÛÉÖ •¿†°‰}$òs&˜#.‚édüÅè”™q› õA7U°Š#ð¾†å]cËÜ€¤žGð´4øÄïkˉËN?lë3³ƒÆaÚWnkÍzÆÉéŽPáð3¤v2ªuAì‚X¡ÿWl³ -îmÁìå~_Öêת·› v»À§ÃÙé—¤*ðšŒÐ¶~‘A -ÿ±ÈQð±ôÂ\ŸˆšZœËî9Y¨}"¬%7̨²‡Ãb%”…$‹¬ÜBòÎ
hGTæÅY7Ñ6Ÿ¡Ÿ´‘IGßÎõÊŸÒBɬ1g!ø±j†éÎÓšD'ˆ|—AaºE /«$3a=Jãèq`—cË)3_pt¡ÊÊ‹°e6ÜÄŽÇ3i;[v©šÀÝ„Ö'3oûk2WºÎ§y8¸YÐÅ»Ä6;£žº—U,qÝözŸmRÇ)†µ½ç3¿Ùͧà½ní¤0Î1š½)Ÿq_×eúCfÙ\ö–ç`‹çŠÇ%H/pȸŸË‹ßýâÓ éÆ\_|Ò)|&wX ¾UÆc”±»4{J³ØR©„›ZSyBĹåÂ1s–àF…wÄiä¹é9B§ÂUí’06X<5 Kzðåáó7Èô®×”Zp"¿ó·*¹°&ƒ¥zÓÃ}Ô(—¢¿ôÎí§u©õ»
#(U#s·CO~Ó²‡D»Å°lOˆí¸BøáÍÇ?JÌ/ËCME0ãéß:™„ÞÞ}½Ëð‘öé»\@>•=7ì2Ñ<q*;ŒU:™H;œKÖen¡.PŸ~4ó*™Ž8D\™‚Y©÷ý&á•xcÏá=Wð‰:³p@kZ:o‡àžÞ·X€×û«(Äf?À¶U‰’qbiÎvÃýûpùR„ŸkLfÖeÂäkž3U.¥=–<n•\oÆ•â~Q¿Üú’eT†´þ' -¦¯&3ˆ¼%q=Òd.920® ¶ÄF&L1`?úÁ=Ó€¿©XåÃsXñHoFxï„¿zÛhØßýBC°â™#I3‡=Í·vÅF|¶î‹æÛêïkËŸùa ùì$+“sr
‹kH`M–mÍí`§:9{fzœG>亲X"OÒL¨)à/äIÑÑd… ûêm5w¿îDKÃåá‡vó–W!ˆòûr/öÎ!Ƨ¾1ÒJkêò–¿ÅÁ¤å…nü¢`éf©fÂؕ豯(%és;=7äP=és‡ñ†ÜùõÈÝѼ“9Ù%˜Ñà…%UMi!>á´3€9åp(D>7µ}à"¤!Ì·ôª¥Ÿ7¦–DšDp3[ÁJøƒ¡çöCxÚŽ·ùd©sIÍÛoÒÊ^›’Z‘i,cŒûyD l()Q‡5’Ï;Väá§.´ð1cܯ(,CûÝÁi§kn¡bú¢î+ÞÍ¡U]=~zO…b_;W?øŽT¶bÝÊÐË$¼‚ú‹›LdÉRÑDé„"'K´_àé#‡e¹ŸÏÙ;º{9Js@K^U?Üd×RÞ¨êúþàŠÅ/›N cn‰U²zêý¦»a(f´ôí}$ã+øWE7å+Ïi¸rÿÆß_n㣖×Zb¹Ý÷OZà"ìÄfpUÕFúE>°4áX^ª('øÐØbÙ½œƒ™nì¼Y‰bñ÷ß_Ç}åùºÄâá -M8t3¢f¡jÖ§T¦á‚‹*PT¦¹…©>Í› ‰?~—ŠÃIv矺#Õè‚U1‡îM‰\Ž÷Éêóͱdr}OšÒLßVtê:A©Yu5é—4b9ÌF`yÅ9š%7ÄbÎã7"o±ò–jßDRêÆÒÚ*±õïË”(¥Ì¸Jb†ra§‘e&—GC槕ƒëzÀ!»“™©ÌÙK -¾GÊ#yr„ÊLä™ä -¸Üú·ž z%ç1B$^Ôé•«Æ=Q4¹T :$…“Šõ¾2¤æ¶w¡xæ&r¨B¯%ôØH_¿~¹ÙéÐöªÏgê,<ILYiM#‡ÉF³½ö;á¡‹ÙòŸ³µÖÿ²kOÄÍãÝõ`‰€Es>i߃Ӌ{Ëüÿòðÿ'øÿD3; ‰‹›£½‰‹- +xÚíµctä߶þ³cÛ¶mÛ¶tl;éضm§cÛ¶;ì$Žoýö9gwŸý¿oî¸ïî¸U5jÔçYë;ç3çB‘)ªÐ ™:›‰;Ø»Ð1Ñ3qŠÈ)312Ñ32 +щ8™¹X9Ø‹¹˜q2qq1Š›~ +¤hŠ«‚øñK÷eu&JéÂÄÁýÓ¢v›“ëh›YŸ!ò²6Oœé ëb°_ˆ\!Ä|üŒû¬î!zXAÌwÞxô}£btn?ì¶çœvj¤
1·2iâ¬h¨~‚pûÀ›ïÄ®é¢Þý–"²`óW*;“^§G¸–œõïŽ9¦£÷nqåJzîûƤݹÓ-íL²/¼Ø{Œ¦‘ +Sy¦ôªø–aAà½14{»³*k9Á2ïB×û”ÈÂƒÍ õš~Еç)Ð +H)Ìç|?xNó›ÌÚŠÔ—Ä*Q^¨×¨¸+òNËsÙÞþ_©Ñ¼~q +}ÃsOȨÏj”^³¤¡*ÙÞf^TëGµ0± ÜW6K£F=lFäy•#ïÚfŸÏD1? 3äjìµ—=eV*Û‰Œ¢Á–„¶¤ýJ']gtž„°QϪ~ÖË—é!ÏŒéY¼Šª8Ë¢ˆ¸¯÷(ÇVóé§Æz¿yýJ¸Ã$\ +ësÞ 0[·Fä@¾EIñŠ`¤)dߨ½jdßõ‘äáA:e¯„b'™›©–ÿ[Ð0*£ˆ¾æˆŒ€â3ìÒŸYn¼…uEŸñç%Ž]ÒêfBªÒž +Õã[ï9E% cæ=â3k–mÍi~ü|V²¡ îN{Ö‘7-•×£q²&‰Î·”ÇnQºMr%°Hçæ†3¹ºó™!•ª4ˆc>>`àõ“ݤŠ‹eƒ*+ «ÞùLc‚cÜÄ_Þ\²e)¶}ò]\¹LŽÓ’¥ìÔjÇÞ%/Þó¢ºc’è–ë Ì~l€ÊÜð:aí¥Y@‡w½Tpí|ÏÈͳ<:‘í‚t©(;b5
3¸©¨Su›u7Ù€0MM7qo ¿™ÐÍÝ%¾D™¯t䕆Ùþà2V‘ó>¦Ô·&ôU)¯0¼Š<›ì)ä¡Kw+_›¢Êˆ_&Ús›
_FÕ€rä°%RÌJ¹@›zsò%@Ý †j£GÂLºe ‰è¾šûùûâÖ™ü{Ú “‹ÖeäodÜÔb}¾†>‰»’Ç“`)ÎÜbœ²r +—Éó»øœ^¢ëX ~ŠvY‘¦¼‰öýNÓ8R;fBqv,”-ËéÕ#¹Œ5[S2³†7;z ÉF/ÑÖ@,p9îñì®GsíS¤œo`Îb2£É
"ô¶Üš]í“7¬zLcsx6äßý%µuyíæ¸êYÙ«¶Ì™r¾Mì‰ñ‡6õ®
.ÃPnô|YgŒ?o?7J¬=ÒÑ¢—o``¨Ð‹-8ÌìýæJl3V°'¶"ßcl³ +?ò.ðVrRÆf£ã8vá»'¤™yàp?ôòZ=X/:§¿èÓ¾ç)¨³ä½ÐåOà"ÝFØrRJU]cœ÷tšø;rö»ó<îUú–ï~n÷#ú´Væ òx“r3îyr¢'\KŒ¢Ç(4ù%žýsº¤¨Û‚à£K>Ï´âLÔð¥=ª4ŸbHÈl½I)t&bãÑí„Œ”§ÀÕo°ù8DŸø‰6ó:¶j#‡ÃZ8³š¡G2|͘•V›XøÞýýgë +ä®F*ò_2>3{l¿k·×ÃJjnr£5Oú ÿçåLªZ澎öq—€ÜûŒ[’+y™ì~äEVâh¡ÚØo.;7Y<…ÜRŽQ¤s6?‰qx˜“žõû²A‚Ó°|ÛdOÈîÄÄø—ï:*®ÀC½d¡2¬Ú?9„„±vOu•j:Î`g%^•¹§îíln`ÓoÑL¢.÷-~OQKM5ÚW®ö. +|«£J{S‘áJVAàD¯êRŸ–u(1ÇÇ~”nYÈ($„¾…¬Ý…§QbÜæ´«ÎÏêÔŠŒ¢'m•2žx8¡âմѵ2A9&òõUŸé½w¾‚Ðrü5þ²Î=×_“ÁŒ¬IYƒüUúUã3i¤’#ÄØeÓÔ©ÇÜvC[Ñö×xBE-C3.¦Ãñ¦EtÀ¸du£ò¢é}â{tŽaZØÄç'l3ó:qÕ‡F–#±Ìz®®•(ºl;Õ§…ËÇÚ¨qC6³×§¹¡9áª3±Âroe #Šé +cɸôïu-+jý4n«SHiØ +å…îíõ:i†£y[º0o¾|c(oçu§Mb¿ÐḛØÊ_pË¡TÁçüypNv¹S<‘† +9Z^<¼?q¯Òn ]ÕÚÑÔ-¹ó™-‰B‰ÏPÁ™ž²Ùœ¤š&ó¤¹d
ïŽö±LDÝ%³¯_šÍÚ~(§ +ÈbéìmþÎW³?ÍŸ?œCÊáU”ë,Š´x;jÜ+žÄ¢óºÞºÍöjÞÎÝYøœ¯`—¯Óצ¼á×râˆ]Ý7íóFañ’2-·%p/ób+CéṯͻÚÚè₧þb%ò{yh®¶?$2¢–]–š¼ÐÊe3»YÇÂxûˆŠmq¨¹÷„»ÊÞû—§Ð—ªoµÎ®·4{ÈÓ»æj½4Wüv`Ê"³Ä¸>Ï°â…›ã;îÎ#M£D}“b–ú{J?)>
¡ÌMÖ͈È)å A}tÞҦ̷Î=2:º2ÕÌÒý'áL«àæ“œ(Ç“ù'3 mcÏ'ÜJûGzÀìEYÒÔ½ÐÖ»-…Ü7½¼ÄåP(aT'e›¤ä½IB,VñhumI®äýºhÄ_dÏ'^4Ш%Ò¾Eæ!ĆóUxeî<Æ£¤‘÷c4AãÓÞ=ð¶†óo·Ø¿ó½G¾Œ[ÐßüA´>#‹Š´íB +ããÉ,õ‡¦k`…?Œ¤…ÞÊ4Ç V*¾ÊI~Kù8(F*-€!¤ ‚rA§õŸÍ‰âan#2vÉÇѽŸqé€ +Éž:‘åF¸Ä>gé…q¬÷¦ó5?–‰¹'«Ï*¢H¯«vÞooˆÉ¾z×±(xá¦R39ày5²_töqM¬Z9 v³ê¥©³ÖÏ®¦%¦|Ë[Àppє碶En}xh2¨{È’ƒÛu÷ùaNû}0æa]-Ìï©š7dfµP÷xï<p +Ô¤äzªÄ4†2o[|±Ž3kƒ¾ò‰VÄ&‡ž®‰Ö³¤žCÍ2ªV[újH%.k‡d ë¤é—höaäGÖ“I'j=G>æ¾»°-YÎYÒC‘ËOǯð}{ÈZÿ=3€9Hî +BÁ>¶ZÉÈ<Àùå +)ÆœQ-|ç†jÖ½!ðgÇUÕJã&ï%‚G») +*)˜…˜õœ¬Ð)’B/´ŽúΘ` R½€¼ìiÂã‹Á…±¥2>¨¬ÊlÌÖ˜¡GC[àíkï‘"Ê˯A„QH WÍÉd¡{rû•¿3ž”êTŠ£†3N'«—T–·ÛíC˜%ézt®û]ËôtÕèùXú&;"¬w.GZ}õ
ÿXœ¼[$ºÞò*¢l
ÄÎ(LFë‘dhÓץ®Úÿ½4#œJ*Zf™'¾B«SÛc¹clESÕÓÓt”õ¨%¥Î!·Lô÷û<º›É4!ÍÓ-N{¯E üÄJhrB—œÄ3ßÒóó@{H/L{7iíøÞ ÷]Õ«¢ÎDvH"œ„¡
ʺ—ðTP%îò0 +ב˜š˜®A!ñû25OÂͥΣ<ôWö^Á—RçëŒšé” vÈà«p뽚l¢/ÎT +%spÀ¸íÌujÜ¿Ò–[g¿O¦•î<’Y#l0!þxošÍn*Bø*-YK<ñC¸ +i;7T*9ó1«tC4z¿±u3y™¯Å„õÎÒmyKø-Þ› ŽXJî¢Ë69,5¿òÅ“·MáïtÛªÊú‘_™×ÂEôÈ`lö +ª‚œå±…B‡¡–<x”Ëø¦K+)Õ©š[#ÉÜÌiqOKÀLiÜÇ=ÔŽý-ÝN´u!Ó‘Nj È> Í ÍÎ5^OŽx3’»,TØ ÖŒwvÍ–Ž¤3‘ÞÔ¬ÙXêá?퇛.XÁO5Îâùµdm
6>À P†É<ìÄå•@µÓÒ¬¦~Ö¾¿?T±'šTÄj©Ìòu„œö5¹çy¯
*vð¦P£Ã"¤¬32«‡:m®Ø28€Q¸€X"²dº +÷_¹Ûx²i· ± BøeCUÏýÂ[ÿ©ÔÝKÐ9NÕ5¹»dqÖ½EÑ?aÄåÌB…—¾-ôýÇÏh•²'sÔÅþf±TïÍE¹¶û)Ѹdd_©/ëß$oàO›]j¤ªÁ±Å—ñ]—[¿9Œ±§Õ¿W‘[…tP hGpÒ$‡V$b¶¸ÝÕ6P.¿Aeµ>Z£x?âý)ðÕû`ŒÝ¸Eon8ìñƒ–vFë*VsÐ|û㉠¬\ˆ.(÷…ðM5Øæè™ %S¢¾Ñm§ +[º±Ëú6-â%ÃìÊY°ÅßžLBÿí3íÅÚ2#)"¦í§èË6zJÐ0É–z±2™À½B
ö°–öc÷Qš¨waÖQgëGúÏ·Ê/ó9кÉ.yögö¸û%v4³RV…žJÖÔæüºþÁu¢ˆÇ°©‰[m_>æéÀhª,¡v¶ãl5[d€÷Ýz`©€(À¬Æ°:¬ðâ«]\#|Îצ5^€>K¤@Ïø¿L–CÍaYBÖI@2 +š¸ÙѼMíïÑåwÓDô®Éåroa«&ÊdL¿±º„¦Ígâ‹‚S‰wŠFý¨ý)fSï™_¢„bü†[ݧɛí]{ñq:Øå·Õĵ·áŒ8õ!1Çg_)øˆÏS,8ÂWCŸ°‰ÃM5è“mÒØ2ųÙK'i¦;w†voû›^ä×>Ðüe:¥ÐCp-~aQï>Ö¾rs µÈ/¬åÇ@1Ê° ©høÓVŠ·ö“èüLJHˆ
6ûŽYëL¤ç1ÊB˜IÝ™j~Ü +˜E}Ö Çˆé2Ökûut¬<oáÍLƒs)UÎZ¾Ö›Õ)m¡úO?É£¦dñ°Åt³«¹%&=‡Ëû5ÞÝg Äfš|WCJDݼૼ +Þȵ&ZÙ/½'¡zϽEX_iô¥sç×1[lSÒë…m:¾ïƒ„׾ϦzõUGÀÖ +=1óÎDÀÜ,1¼ØÝ$èŒa$k&ýäC÷ PÓÛ(õƧLß‚ÞEöÛ6þ&—ÆÜMN‰O–y Áv·È¦]€ueÇ,Re™ÿÁtˆ(ý%ïe¹IVEý{õ2,ÐŽµ<mzû]-K}®°éÕÎZ.ñ«Ì"ÂQaHõÎíÍ`k³ë“Ïó;úÍûœMn¨Òù•½$LLˆIª-Gª"¯^äÕÈñ 'ØvsäR+RË®i¡í#™ÈçϾÿÝŠ²Gno6ÓMÁßÇÀ*û½™n÷Òí{ >‘¤¦¹¼Ü2¹Oƒ‰we¯È+6Sü°ðXÈ¡¡cÑ-ÙÕOV0[¾!õWlO.½©aùÂi9Qô…µÃ`SÕÂx
z;—Z¤xùRÇV¾‘†tšš¸œ]:l¼%e9Xµ:¸S:c.J…•¨¢òqQ~ð‘ÉAä0«·©v(kð{}¯ŠPÒGßxÜ…y“|øÜ’P«Ú׺.O—*ßöP©×AYØ–¾ï,ä|÷N54ù¡-Èi¬˜Å·Ñçè}ÃÔšŸ¯ü0àkMmÅaÖrüËãnËù¥-ÑK/²cI`óȇ‚âÎWïUKD÷eªŸg„27pÝÃ}FFMˆ¼â»žs¾c×–]š‹M¸9kÿˆ:òÛÿôæÒ¦TÛŽ#è×ê£!UNÅ#¾5Ølˆc2Ëuyõ>7‰ä»Iì!8è9AÞ/mï-xí¤Mƒ¨©Hvƒ£s`MS¶É«KIçßì5c~¼B5¤;´ml~¥¤üùÒܱ¤É`ÈÚ¸ËYˆÞ!‡‰çÄmÕ +œÙ$l8)ÃuQ?9‚B</_7Ž†3½óK`èUf¿Ë À=ƒ‘Ô¡t h˜££3༆“1©óCím!ê
§–i¼fô.ÐÁý‚nÐdÓÁðÇû¤»à$&è¸ +öjôób(¢xŸÁw…Gî>L–³ËÎp +¹u$š9É—d)‰uÝ^”ÿZšhœZíÓ‹ +Ú‘œûÂ:ÐêíoÒÃѼ7ãzÄÖÕÏÛ+´{õ¬ú«¬†Mò<ÒAúºÎåÂUðÀ³1çsž*jÔ°¨69LNÆßÍñšÞ6N…¿ÄÛYý—êÓV©ÀÔš‚øél´:ŠqÞd +ä»×]hŒûúÒnCZš^ßæcÆ+Úó½6Vsx:³ÄÁ„÷ZÜ,æzQ +õѱHCö&É©J\¢é¶ŒÈöJò\xCnb‘°®ÍK¸ŠÈå/6ã¸Ô$çñì³Þ`(ψ޶RKæOûb¤Üażgckú5>ÌG[ÙýbT54O^-h8—«×l‰ßÜ!hG÷ý‡»4TJ¬‚eB¼E3Ïì~?í:»?ÖgÛ~%‡åÂ^šcŸ'*j½š2Z xB:x8c„–CDXâÇ?<ßBÄ™‚•¡Ð®µ¶†~»«äe†A’‚°íÓP@Ùƒ}·½/qF{çR9Õ +i"éÞcåRÆg¸|mâL_†NŒ8…Ïä’\"bkT%"Bf×’n‰Æ¸+tÂp"b™=äGc¡¿o3ƒRjßÁ积C– ++ógÜsܶ÷•×ÎÒôÑÃþµ÷º”¥MwÆ1Ò‡PŽP½‰¼XH'ŸP>ZÈ3°MظMÛj-,t{0RÇŸù[ÆÀÎKZyNBÑ0&%›üM9DÔ¢Ï"À3aVFò\:#ò»!{Ó=•/!*zÊêfÆéæÐá‚_æ–PœõPõ‚‘Qr +&×zhàH£;ÔŒû4}J&DßXé²gÖ¨ˆ/3ŠvuDË€Ù…-_¨·ÁƒƒÍÓ<÷ ÜN£ÄuÓW<Ý.nBö}–ïÑÁÝû^Ñ›LÞÛý|s æªèQÜæðAsßOÔ‚‘¯@ßF\ƒƒ.ë%ɪ9B)U®=As wô`^>ɯ;¡^ŒÒcæó†Öæ+–¼½ß:…ˆ Üm”ã^Êöå\Œsˆ²Ò3Á`3xhç´‡ýʽ©Àx2’¸Õ†[âx”ÏEŠô¾Fy¼ÕYÃðXLÉÄæs[ι=ܨ
Ë!žGî4T„*"QûvFJò„ +öOkÓŒy²%îú“ÓËW
“Ì~«Kw•‡çC=7R—à‡ï¨qyÜà§L?‘þ…'A¢$jZ¥¥· KÉSÝ/Ö¦ô®*G$—;ºa‡Gâ,3àBÒâPBɇB§¹,d‰?= *ƘîuêýšƒòÃu;ï,%øN®Lö¾²~oë>õFMù~¯Óù÷ +¦ +½Ùòˆ;ø7ëáË©ãøF °ñ1&S+Þ]Øc¼Û˜ð.ÌUHé¯-~ÁÑ÷ý¥<ÆžÈ
]A/’Sniïiw}ƒ$ÿW¾sùš¯ÂÄ|×è#D]²EjŠTW«Ãˆuý1ËVl]…<%÷%'ÎÌLj§ƒS1?n\ä@{.uÞï¡Ô×7ÄzÛæž ˜jŠ†Èè-΂‘9â¢JbOïke%÷[õ‰À½OÁ+W©uV¸pb Tz§ +´¯uÊr¤V:pZiãu5’6¿òëŒéæ·ø×€ý"×°®.”¼sÉhüÊúõœ?
,íÕçj§-?nÌ5l&ü7tÔWŒÌDñÕHÆynm\N Ûp<þ îö†íW}Û‚w†ù_(p\°¡|S*±HôSâ+4š™jÚÜÏ¿^Я¶×žM£:?DÐR«‘€‘sˆ¸L¹|ô¡·¶qœÄ€y-ãäJc§Þgл¨`/¶l—Љ +½-¾h#ÍBÁào³üàßÞ@èï![$Û0Æ8ÍïÕ &”ÒDÞª .çµ£øVŽÓlƒ ¿ëSjMÚô>l£àÊXýžËœ £ÛÄÙB˜NžluìKÐ'
¹UOÞZ[öd‘Ò£.Ö‚€ +Oe‘Í{¤ÉrS:d4\Q>Sфά>Ž½3@µª·)ÀGaœ5)ô-k ÙìYVÚÃ8A´Šð$äGÏ·Lì•b¸wHNò‰èꕳԻxØjh)äÄãS%s¼ñÇm1µœÖ%ù«5•oÊ›4yuŽ9ð$›«Ù…ᬵ°„0ãþû4«Uï¬YÊU^ªüªÁ-`Å?ëb÷=˜VD%:!¨õ¬~ƒú©ÚÛ¯¨ ÑE³EÝSû0Ǭì`PàMj:|‘‡ç + ‚³:“W" +úd¥“ðøŸägµÖŸCi4¿4} jg|ï)‰üŸt«¦È¯~ÑXbk
žßèìE^ω˜£#á˜(2Ä0”køŃCWk'š±…FQ†ù—¾E⯜‡ž–@Ìš‘e~xïa»üTîÿ5#LޤưLû4]Ÿ×E½Þ#ÅîÄ•Už5B$úÞv8¾(‘Nuƒ.ü±‰4¢SŬRë¦6íÄr~uÿéÍÿžq›$z\‚³óÐúîþªåæøxÃÎ]
Y+,)@Í
äÁÍÚîìÒºT]TŽJþ䌦ÆlÅÃj–rgãÇÇ9~¾Ý*»ïhÝ«}$+ûû=±¼Á‹OkDƒo¡oµÁ|}Ö +WÐKÞ°Æ!uËk#‘ Ý×<Ý·N!©að1mžTDzÐqP—rogùÇ +©ÊøŒÙTÊÁ´Åò͈C\·ÝíÁÏÙö¬¤/ȇ½‘UåÜ8KSFš5I˜«º´%„¾¸h§³ó[O½üŠu{ó‡š(‡WG*„¶EÍÏ:MM¯—¯-(Ÿcìï¸,¯Lóãx©tµžÙ”H …Ñ ùªÅž‰ÈÌúƒ¢è6G¾ˆRcœ¢³è`{gÌ”-Xö0NÖ[["V¸Ÿ¹!ªêßQ¹ÑOý$›@^>³µH^¢›ú÷ßéµä±Ôa談Ó@i½‘%˜š¢IÄ«#·#)*´F QOÆvMcúd:É2±Ççjáv·*a®Ýá H_šò"|ö{V$Éça³LÄ;*¶aò`w°˜´`¡˜XÁž´{S¢ÒåsÞÒìK,{˜ÞKn–¾ püxr4È/úá»+Ö&Î…¨ÿìð±ÎÆ +‡îHx’Ö[-Y˜08>0¿WÚËtT·ìˑ׻ñ*]¸5jà2Ž‡-v,Ap¸©E«z5mù±±ý…_¦ÂDR9÷,—Iñí8R+"åp„UçîNÝ£©°R6L7pkß7B²Öø©ê¿ÜdöÏcÉö¢už\Aîô¼Ùs®tiAí¸òd/ÐkôôП•¤>j:t(ÙxÁ5Ñ#›¥"jY†E-ŒcS¶÷¿Þø’„©‘>ŽÞŸó¾’¢M{7†x0‚þi7ö¦ÃÍš³¡%OAŸ;δDÂÜc/
-çÓ´ÂéñœÿuÇz*à¨í釉‹ñpÝšp Èf¡„ÔÞH¢<uñc
Ÿ;sPDpPÀ«´Ý€\ךC® ¯½¬›¸ Wl7
çˆö‹õ D3÷é]ÃøÏH‚é\Sr‘ȈëÈ(òÜÓ !ŒæÎzv$Õ½¨vâyyhÉé;à•P3îc¯àÎi•²"Ô"¤·º;>¤ù+©äE^ËܼÀ5ÓÚ¬6©ø®Á²ó_,’º.¦?ꄳNß!4¾ÝŒ'{³|æÞDÁ6…Ó§Å|úÖ±*´+xuªm)Ë[ðµçzOFxÿöÄ:¡˜¦swgJ$II¢VŠ…ˆ¤@ÚP²FgTtB*•ÖƵ¿Ì³³}µ=ã…ˆ:hüÌuj+vV¡D
qÏ®ÅDôr±yŠŠÝÿþšÃ‘õ—¹¨YÛäg´%N¼_ÇŒÁ/šÍ¹ÀOÚ|qe”&xs÷Y˜E5Â~z†zÔzçÈð%“ºè-ô/} +Ãö#]©* ýªn§íטùѺÆàÀƺVÒmG§m*úœøY–‹}Õ!.oI ’>ìÀø掱Dó÷i–~Út´I\»}HÊ¢aB‹Yl‹{P#õëA6¿i¼•V-pêà£×z*cer1Ù6‘ÇàÔ24³[8ã/9ðGYwŽrý§µC1éLhª{*pSr†$(ru,`õ_ëÓÑ\¦ÊKkÉu¼Y_&ñ=‘çüÔ8ñ-/è‚k#Íߦ•srÕ¸—°ó·{¿,¬… +葸t9r$˜øm›ËÔh¾8!³÷«æŽ-¶¨Ãë×¢ËÙݦéân_ên¦ÊÝ/+àÛGšì8Žš3¿ý`ϯ§;ÑòöÂͨËÑ”ddØGØzV¢›<$ï‰Ç¡`
wíÃvé…}è?PÎ\QeðrA§Y)JÁæ·ß7oóY„ÍdïªIk‰Ðj€½à˜‚¹7³ÔÙ9Ûá~\JÄ3ÔJ¿Ùª/U´¦›x#NÞ%„‹QÍ5(FA¡Û¾iúv³õ³c KÙ>ßï]pë]®/Æe³oµb]Zo%n¸L+s¾çj{ìþ¾IT”.v•ÂÜãÌ i´óšÌ8”Æ{âÞ– +äGÿëìÙÚS;)ɲ,¶ !–¼NB%å¥ÝÏê*ée¸D}ÇZÃ/ÕÚÛÁ#¼[®Qž7;œ¦0í¯â²˜\cjÆJ%ÜŸû=£ËŸSýVǦ{¾›J·9ë2iYßád ½uh|•œU®¼‡¥lÛPV^‰=€Ò¸‚ð«ñ‘ÅåàJ¿W1UI9†4@²]©M*ñ&T´ÂU endstream endobj 41 0 obj @@ -2125,7 +2114,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-4 -948 1329 786] -/FontName/UEMZVW+CMSY6 +/FontName/QGOVZK+CMSY6 /ItalicAngle -14.035 /StemV 93 /FontFile 40 0 R @@ -2138,16 +2127,17 @@ endobj /Length1 799 /Length2 981 /Length3 533 -/Length 1572 +/Length 1573 >> stream -xÚíR{8TiViÙ‘-µµÒ#…qsÆ-É仄ȥtš9ÆÉÌ9œ9£ºl!»j…”RR¡mTŠT;åéf”nª‘$šrm³{°==«ýgŸýoŸ=ß?ç÷{ßïýÞïý}Ɔ¾þ,®€Xz8Å‚`'àÆó¶°Ä06v#Q„ÂÜ¡P' -0©x,êM!"ŒÏÅ…"°`[+Ȇ3 -`OL† -|1Š "‘飸`¬:½#ìe¼À ‹ÑÁŽ‚¾†Sòh@Ù#5ü±¦C"1…¬ ¦‰ôúð·bÌa8Ÿ`¸Xsì -äË•¬¯½rë¶ô¯uxq*ÀÏrÒ4«@ýXgì‘
Õãqeæ“ÖËDjÚæÒ¬RXí]ÆùþôRýÎ@qôR½·æO9bž„I;7&LšSîãZ‘*6U\Þ*Ol6™ÇHP¶jžNîW…G9+}Ÿ>¾€U™ï~hp|Wn–V "¾T…ŠÚUVY%×2•¨c2G®¶=“õ¤îüë…OægC»«ðmmi¥ß|ä½/ûÂìºÂòÀ´ÉÓc2êrRLV“°ç¿Û?q©0âÛY·¶Îè¹T54X—î_Ödªs:MåÅ‹òÆô-wBL-ÉiS™Í꺊zgyŠŽ&f.iíöfÅ盪y‡ãró-W–¼dO†–ïÖ×kfVVÛ]çåy¥$/È´^÷ -RÏig·¾×[þÈhÝÏk³ª½Zîì”H^»ê{«jËšfÕf&¥S]3ÒÏl2t»i4÷׆GiC럻·‰Ö=OYgkÑ°¢fú÷4î3×¹&gšÔÛ‡1ÎÖX6äÔKŠ;‚_víçñÔ%Ô4N»þr²ö@¿£¿bv)7Ø›to ÏáÊÙe9P“^³Òz¨ö݉©“ö”&›…t¤©VB™ÂqKZl"M»¨!§*«JOºzT?ÜxÛ÷j½na¢Æ~næ`û¡Úì¹)„Ú*i<Q¡óE³ -äì,_½¹±·UU£~Ž°¸xÀ«»L=‡W]Z\öΫË\¹èªFRãžÌ½T`Øäí-i×µ&<¼ß×ù¶<ã˜n«¸‡2ôÍÐØø¬Íìqdå–w‡¦÷‰½y®^E‡:ë5[º¹›–½|2EkUrY×/Í©…Îñ³öNºýËñ¿ÀB€/B’"ÄÅ`üwm\ë +xÚíR{8TiVi³#[jkÅ#…cÎÁ¸%kr‰‘[äÇÌ1NfÎáÌͤ˖d·ÚBJ)©¤‹Ú¨©vÊSdD7ÕŠ\’´j +Ñf-ö`{zVûÏ>ûß>{¾Îï÷¾ßû½ßûûŒ
}üY\…z8Å‚-aGàÊó¶°%Ä06v%Q„ÂÜ
¡PG +X°%dÍ0‰&C>ÅшH‚ŽôQ\0Ö +Þˆ¶ï¢¥!‹ÍG; +ú NÈãP +^ÚÙê¢ÛÎ*ÔŽp:Ã*žÜœD2㪛~|1µë÷ÐL8´)ç$;(žžß'õÚtíÈS[ìj$p1žK?¾üÞúI?8^zv( }[BúÝ\ó>Îî5‚N½¹²ï‘/W°¾ñÌ©ÛÜ¿ÊþùÙ +TI‰Rí/ZT {WIÔÆÆÞ6UúEVÀ’‚Ï·ÅêÙ¼ªüÐÒàâwžÝó”‹nLJnÜ›qº— +›²£5µBsÂÃû}]oJÒOè´‰{(CŸtýõOÛÍÇ”m>xwhFŸØ‹çâyòpW½Fë[î†e/žLÕŒL)îþ¥e»A¾S¢Þ¾Éw¡ù1þøOðE(BR„!cŒ? endstream endobj 44 0 obj @@ -2157,7 +2147,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-36 -250 1070 750] -/FontName/VHDZXW+CMR8 +/FontName/LCWNEQ+CMR8 /ItalicAngle 0 /StemV 76 /FontFile 43 0 R @@ -2167,49 +2157,50 @@ endobj 43 0 obj << /Filter[/FlateDecode] -/Length1 1635 -/Length2 9373 +/Length1 1651 +/Length2 9571 /Length3 533 -/Length 10337 +/Length 10537 >> stream -xÚí–eTʶ q—àÒ¸wîî¡ÆéF· -± -þÍ<B -Ö>odÜÅS‹¨có¯Nj²ê»Én¿æY‹¢×¬Í½3a›
pÂ擲îʱ¬io/KQÀCÒ¯ H=K¹ |y><êžI°éúW*X”çTe°Sœ¯ådl+(ˆŠ¿ÙðédÀNð)rÌÏ6 -’&"{ŽD[‰bì%Íòù“Ýa±ˆs±y[L8ø5€DÖ[ Œ.+y&{Àïµc\ÐD§?^wþ -Øê í ¬Xrȉíù¢7â±2²vj–É/‘á@²¡¶lÏëtgð¸üZÄY–DIÜ4Íà+”«æääÊÖ´%ÜšRY@¹kRõh%„‰þC5}b)*}ñfˆ¤h6¡õb…¶w3óSóA;º?›pðàô ù¶š‚¢I÷²ÐŒXD¿h ™«\Š5\ˆ¬Ÿ/•ÑŽUwÙ@±
”åS -Ƭ´ëiN1Æ¡Dý¾MH1e[>7³^7¢ë¨ˆ®ü”¥:«x‰-SY‘äJÓÄ¢Q,¡Å]ËàÞ÷‡šTNoõ\äâÒ;¬°âži…¾MjcD+ÿ7¶·r³§÷þzSìƦ¯)<’jG%(_‘ÃÓdõä_I@=í<ýœ‘’l(Ôü™Pëc `û|ç“4iVR9uÇ7@7\_‚zoºÝóôÒú{¡æ/Ë·Ùå9–TVó=2ÛÏ…Ú¯Víúå,—tª#Á{ÀgÜ(Ô9dúÒtÊÜ{‚µLTf¥"Ãò¶Üm¼”µ·,ââ<Ÿ‰&Ͼ»#IDY’ŒÐ™e¤¨ïu6$ÚÛ ¯“0—5fF¬c³‘Òkåƒwuª…ŒBßx¼9Þ%²wÁgߥݥ./˜ÙóÇ.¦BõçFk{s³<)ï—,bFö|QJñ.dŠ -¨ô] ;pZ%Ø•ê5™82ì+æ®k£|¶ì \¬^úA¾írPŸþeïrk)\F"ä l|áI5®e`¶ùJ•ˆ -Æ°±~cQ—$Kè½Ù]Û
Þ?ÙŽj6sƒ -¬ô¡X+ ¹DÑYyÿs“1"Ý&a–v ··wþkt×ü;¦(h -h/KºÔº î·xë‹÷<|™qŒò¶ú¢TÙÍåjH“³N¹öÚ$nNÛvÓ™©„m±(ùBbWš%Æú4ËÌÍ#"O?œ˜\T=)ËaõÏ^·ÿÄ|ä—L¹ÜòÛmXåºBñ"÷ïJ;ÔŸŸÅ‰Uèðö¤÷w¼‘›ó¹·BS±:¦M±O¹"²£çˆðsÅþvH´Õ(¨!”®ƒÏÛ¥"ÁæJsòÌpk!;¡?$9ó³¦O¤L3ª5fBr¸•|Á%¬ÄZ«b×&ÂëË^²ø«Ä3ZQTb³Y×ÅÊAêNÄ$KTzñÔpQÃÕ-Zß¼E^ ÑáQöÏ<àäéC‰çîLãp_㘋%Rm5ù1ÑwRŸ—úû^%Ðgh^¡ ò2-Ú.Äï—ó™r^Ò1aÈ°¼{ÍxñShÐêäñˆ\ɪŸ¨Q~/ÿ|Ì»2b^ò¹ÚnULZ»që†ß-ÝÆpKžnæ{'øeõdú@éŸ g ámó<™ëïáj¾ß=¥¹']ˆ—yYœ©bСáXÕÊt`•5;*êš@OŒšUtvN²dmC|)OqE¨Ã#ŠÉ½1D»lŽ$ÂzmžVUj¾/$?˜—dGŠ\ž›+L9SKnm!z -4>Z¾Üõ¬Xr6]>bé•rÔèغ¯8aèöîWû /_´‹ÏXtžæÖ½Ð@‰CxX³÷i¢Õ쾊ž—2ûdW¥¦*ýTPIˆ‡Àf§8ï*ɱÖ9wà¾)
ð2l¶Áí¦ž¯Üj¥ÌØ–R¦kí¦-c׬åDéV¥ê°0®KÙ§¤´è¯ºß9OÏóë53_î -Î|,†ç¿(LcÉÍ’8àiŸ*FÇ-J‡CâRüŠ¿Â˜é¯ZÐ#T,GÜ*ši˜bþaµªîp=ÂeÕÄ4½ÆÀèºÍûÑŸœ÷qâQ«¤{ß³¥$wÔÄüqQø"”¢”ànçÏß_ô3Vª0µ þBŠCÍ?¸±äÇîLßœ‹$i¤W\Lé0§ý¥”/[c0ž›?®=/¶u1+hmfòñé}ëµ.ßlHép‹iL8þ&ÚÅAÉ•gïËK³°ŸmûÛ~Å’R4V° ÷¨æ謞ÿîÔ•T0ˆÑÔ*xñ útóšÿAó|'í!_R'í¬OUÈi3Í€ÐÔI°
g·mÙ©,ˆp°‹gb÷ýž6ö¡{”RûÎð5Âé(§¤!ôN[>§òºŸ)¦€6Tàåì¤^, -{óâW·I¡:Ck–49•]‚üòϱ„ðWÖÍáPˆë#'ï¢/”õ€}÷+ãíy‡<Š¬±}›ž’˜Û&bø6•$±]3\!–3(ÿ¦Áª™g³l‰õ\˜Ý:ßДr5Ù°¢!뙇ôOL7¢“ð u†À ëë÷f:6þÛ–íwCì.·‡'b';³Wß/ÞËœÔM ·‹}àÞÔy1ãȉÕdEÚ§€%Ò:-ON~-Uaé¼k7åÝMÔŽîŽÇB“Fš4ŠTöÓBSòÂ_ÑëT®j³ÅÓ}7™è -’ßûé½|Î6›¸$ØÙÃé
¨µ„ÞO;”°ÂÀ–a×cW–« -ÖZèÙÓFøìˆH壎˜ä<#C-Ä_EkB„LXÏ#ÅZÛç¹–èÖ¹ÍTÌlHÞø•6Hò×4äúG´Bf;Ó¥§÷Ìu¨hÕ»Çc«RnŸbÆPÔ7}皨ƒò/ZúféQ'³ÜÒeîÈÜÙ)*ßMWÌ6ñ>³lwtä+&ͽäåù_rû`1zèšX ŒÞ‘w=†Dc³`®î–x²<uC,ütAVÒ¸1Õí¢ñ¶%Hî1Ü>LÅ2ëshì‘•òï"$‹L·ŽgïòˆtMÏ…8žZ!¨~s©\tèWVxÂê·£ÕÀ#‘å½9 - 2‹ª?ûY£®P5ˆ|c˜‹?gån&Û$F¤RR{d„ï]{I³±r4 -¬ªÝ0íÈ}øƒ·›ªså¥OtÔ€€I¢ŒÊãñÕzD‚q#=Ìq"GkºÐ#?û|Ñ6NéØõêÒ!ñ·”NXů&”°>ðu,¹ìŽÊç9'Þ¨¶j#ÚŸ®ÓŒuI쫶%{—¨¤}ù95¿ÒY å¸c¡8"bÌ<¨!KàÓbWÄ
¢ œÎälí•ŸÊeøKõ:ŒI´fÐØÿIe\iüâ'Sšh÷ ]ƒn®¢<·«W{ÐÏFÓ¨i~Aº‘êŠ'«:ûš€—¼-«×WÂ#Gméíkp³–°D¶ºvjO3Üaò,Þ‡·T’ž®_m: -Îð\ôE¨ãhAòrÊ¥‰´X’ìÁ)a$Iø«@Ò"‡ÈÊÈ8CÈFbôŽ~;+iåÇ8ÓƒžY÷gBÔ -Ó,ø€«ƒq‰‘éÑ×á®fÖPî Ñb¶$û5¼ñiûðÐàýOVje]¶ù3€‡õÂjg¼³$oÅ/5öËÂóžôÝÈš -Õó6×AZǦ_…ÀyôN+6±ËI©b’ƒZÝ×W‹¦þƒî7&ÖÛ8!³‰i‡Õ!¦¢T¥7ïÞ“B´È=™MÓC“È6n—ÏÁEòpÖÔ=Rg¨™³oÛÆT¿ >eŒàsZð°ÇÅpıo¯+v•1¾ENoLºV[©Å#úA., Ò›ŒŒòºÐx!ÓTE·ÐP^i»bÅÓ -ÿé|5ÁŒwïu©ñQcŒ¨øÓ‰0(Üé@ÄãÅ"ÓYsdcFêÃÓvv̦ȒÓtŒ—JkõöÒ¾È?˜¥‚ÀútŠe>´½®ë×Å
Ùý!(Î_)Û·_aâÂi FÊn\&Üø|¨6•&¿ÒóÖÇpÐU)—yü¥ -ÊP°æçÁñÀÅŽAUª"œ}Lä”-<?»ë¸Ÿ Að5{ílRhüîQ}Ú`Ò>£úXôÅ°Oθĥ΅ô¦_–4ÛáKÎñÞÕƒjãrè3ב&9\ÑÜù0‰;ãqʹëP±ZOgNíàüBÄÔÉÊ_¨±ÄË_‡ÂgÄh¥
]ÏkWѸû”ñ/±éÐ/IÑX¡*áA;~Ø5~«=·@ÐöΛà:Ìã ¥§T½¨Åi-óùA$s!óÂCÜéu²$üï<)ΗҼ÷<¨ßæ¦q«<A¤+GWx{UuëNded}fIBJŠ}£ ³Š–ºðOëFî¾Xú踶%ÃÅ4o"fÝ<e7VqSUÁ47Τ¬Ý»´Î:{}»ü4
Ëa?ì„·Ž4éc½ŒLx¬µàñæžW8¼ÖH¯‹þ4.¿$¨õåö&¼`¤úɆ®ƒúŒ¬®õ}ñçÇ[¿*rYJGÓÏc¿:ÉM''Å¢iЕ‡÷y…&˜H¼ -´Cýö[ð+†”„»îAéh°sÛI·Ô;y8l»V6²†EF -Óôúd"fÛŸðÔÀSèrïH#è⤛˜kT¨Ã—ÇÕnš•¡ßrA.‹wòí
k»× -ü]çži´2‰£æï¦4WY¢oÊR¬¿ÖíkØ6…¹¸Ds¼‹ -¹øÅTÙ]S&î~£â¥K[³ÄrÏM‰#Ön[ª‘D”GÏx§£jŒ2Z³ùp³VšŒžäÃWÕض)2‹ÒÂ* –ÆiRß”c¸éTz0Ý¡ø‚æ±’Òñl¡‘ºÓeÒ×EW?ÖNmó„3Ø+=¢cæ/‹¬wuÍŽ,Å>…ë´cÁ¥!êЗ”÷1ŽéÆU¼Ò~«»È¸ðIJ¬ð…—°#£ÁŸËfV©úr‚ÞÆíu„˜Ô\¢°t—êáÞvLc²T’µ™-5¿.ù{þ˸ÛÔÆ¢ÝlÞ…É£Ç\¡Ðë@%-'êÊ §Òožì–ÎÆ8öÑ
?ÊWKî¾”©±òqÌsûŸzðpÔ'àé:»˜Ôs$[p*²ö“·õñI{+U™Í,)2 áÛ›øÍë…h¹¯‚’ߘÖ{äj¢Éw{^n«ËW8êPã°ï›ŒÙR‡*9*íÚ7B1Ñ·>Ä=$¶L=Ï‹ŠG[hÆ%A–Af<þ^ùµHÓò"ÒöB‰öÀ×äØ`u@͹]¿•p-0opT[ùsóD‡'(}ÆéÜ€_å'öD¦²™ß*U‹|èQ$Þp<ó¡ž'k‰7Äÿ@z™æá$ÌgÕqþ‹Ñ‹l¹O&pD1l*Ÿýì@}±Ãtn¾ù~üFJðXë\Þ¸îäQÙh0åÉ
ÈN?ÊL"lò+µÒCt´Å ?5Ýø²äE¾éåSŠùÏë®nýyŒÌâWϬް6C¨ìÀL½ô}rHg{kþ@†N”me5"êF>"EU‘è®mn#ùL-ûÆÓtþ!Tzƒ%S•ÿòå¨7R9åø»ž5L£a¥ÖÐã“úÛ*€}/€±¶³_@²Rاð=™b\ÞØúe–7=4ü+«.t*渻À=ñžŽÑb^Õ8½!ÄT:×f0‡Ÿ‚ÇšÙæ‚*Òì&¡~ £ -§¤ðÙy1ÊN -D:èàÄ(ƒˆÑ˜‚P5˜.E²úöLEeí׫ŒªÊ² (£ -á„ÉTYÅ£æß#š}˜?§TH¥oàF#-.^Ù·×´Äåý¢™´ô¾‰êîûÅSú*!“ÍXô`]Ï™cC7³½4€~ý]ziöóÐÕXf@Ë$ôRÉÐ_hÍ›fëu§åÅÞ¼!w1ËOLú;ZÅɼÆÑžR“mu’nÞܽ¸¹© ƒ ˜¢8vF{úH!tj¤ì»µðògJM§å(•à¥SYbémËM -_þ°?D7m:6}BXN›ÆAšÃœ)€ëBËYø®úX™è³öñù+Wi«aá”#¿[Њݤi Nõ8q -d·‘VØd9 Û‡*wª0Gž’‡UFàüps7ëò«|Çb<ä•!ªN7~2Y㪼•à¿À·á -í&Ù¤lµ&<Ó'º¼kd›Ó`\Ÿµ>Óã¡ã轞I÷ÿŒª^Ÿ2=4“/æ"]^™Ïu.Þüàs¦Úùß›™q.$IŸÅ£ MÅ^‘à´gRdÃæÝ“Cc—èwVõ
Qþp%VqBÜȘo6ö8<wR#ëi¬5CÇ!«
¥X£Ž,=b&“Q˜ÏdíÚŸT1PnNBjZKé~Ò‘¿¶ûaÉœ*IŸöáæGØ…?ÔàK)o°žzZÿ RëØ{ûyK,?ì½rŸµŽÉ7Õ³x,×uÍp¯–cnº mzÐÞïÆ5×m$Ìq×uPm,þÔæ³Ïáub¥.=·â¶œÓPõBã™eR‚§Á¡àÀçØ$g7ñµ -^ko+eDvŽf0%@ÈÑÉ -ÓT£B!€½Þ½à9•m?ÅýÏ„~κÁ;83á™=b;‚œæ5_@uçÎ_Õ´ŸÓÝÀ'7ÂÕ2…úÍhV·'@Ò4@ªãs¶.Ñ‚>VÞ€_»Æ™™S휼]ÊxC(œ&Ùh.Ù‚ÁT®’ËÇ -¦AÀ«áI‰pìŸíìãŠ×SˆÛ”ÖMqD‘YÃoÀ)_—zÕdËL½Kf˜UÉÙ9ß|И¹zEÞÀühJ.þ-‚ö\gfŸÓòÇ\ž+¼)tQ^??dlɈû‡ò™Å&‚†iÐùEÒK›ÑÌ èÎùëãfÝZœ
_•ô†O»fô”“žÛ°D¥ëÝM¶®Â!v¯Ë÷¤Í%…;½sÝE4ö8yÏòqt»–¥ÿÊ|ÓýüñàXÍr|MÞcÛjJ¡ý->¡mR¯;²\)²A«êÛzZλ†ÜJ’¤Pá‡w×7’Ý©KuïÈÝ|ÒxT8C•ÇÚÊ–ž©ÍƒÈ»¿çÒX¦Ñò;?QTëÞ®—S ªÒØ"9=d£eò¬}Ú -?qgi–<ì»å»»ùÝÐ,
L;1nò©€d©dŠ*,$™îåd‘SŽ•Fíå†a¦y,LÜ>,Ô(s}C$-Jì{T>Q ÑSE?Sûä• ³3ðù!£ðÑ’Ý_Ü÷/—Ûɬ¸•¥Ñ’ØJØ -•Å +xÚí”UXœÛ¶¦‘ÜÝww‡àîîR@(ÜÝ4‚»»÷à®A‚;A“ ]kí³Wröé›~ú®Ÿ¦nxÇò1ç?h(Ô4Y$¬-€2Ž`7VA€¤²?€ƒ•‰†FÒhîrK™» +dé° +†< ^€¹‹‹¹7äm@ˆàË +þ@H)àø×eü‚6 ¤Û?2NЙËÛ?¢É²ÿ!ª~#Dø„¨rü!ªœþ@ˆ—?ð¯çðBd¸ýî D†Ç‘áù![›Íë„ÈðþÿçúxóÆÑË—…‹À yãnÙ|<ìþÿÝQrvÊKA>vv>-KwÈéö÷¾†¬¦³5²È€@/ %Rf.Ú”™”éÖì¦gR·}bQ
©³èìÏ].ÞÔÈwd{8Ö¥·‘ávj7˨÷'jqé?éÉŢꔅÞõÜ™ô{{U~Åc´ë0ܾ¬Š?`™Án2€aë>Ƶ™60åòøšÀ¡¯_Yåº9u]R6?,tXU0u}YnØÙû%h¹ í©˜ÄôÉô®ö5xRÒÊ +튆Ãшáoñ\ûÀþ"Iÿ¡žb 05š¦ú%ÛŽ4»¶ýQ ëcÙæ=[m}¡5™
-qÃÚˆžÔc2v…¦è7»1Ù`ë
m˜æpï±9Æ-çë)’çBB]bIjEÎcþVú\2‹Z¡)Ù·œ}Ü$§¹÷Œbb\ɸ×垯Äñ§©-rõô2U?§ÛÛ îàóÑFÔuäÅï ²ÐhVn™Ë†âi5F>{ŸJLáÚ»"DzQQÔ—-¢VQ‡Âr"ôÇÿÚ\
|Ȳ ,_#ÿ¹ˆE_bÚö.BA”ʺžUiö],Kaã{Wût«”e?PiŒØ)~2Íýà\i¶eY"`ƒ„Šeg}<°ä|Jë—Õl¶;%†+ôfែ4jlã~ñ½AV,ïñ›‚”ƒ§J{:„Òèé@mTmÌC“bݲä+-FjL(dÉtNÔ$âÌÝG
™Ç +‚¨¦í}Ö€vác™ÐñV“u¾ÆuÞÕωŸÃEa™Ïe3¦Q)Õ¥<ªŠ›gÐ)A#Ê$BŒêb«Äó”\AèÁš/pç?ð‰¤à™e]a +jö˜Å‹’yRòYÒ9ÔŸãbøG:²ñùÁ‡ÊíœîÞ¾Òt–ýý›ã>šrŸÈÄá¨>ôëÊ–tÉB£0DÊy6å:©¥b0UÏÎ2~*ž9o+·î;VÇvNê)QÌeŒÐåŽ&„kšÏ ïŒã]./Wç•ãJ»&çs‹¡5iÊŸÙüi;Hov©†£Ì®®|ªH=·æZ„Ëqn_mœä=Ê~Ú<¶¾%ÞAî zˆ0õ#…É„[Aù¡ ÈÂ1œ†ñµ{"érÕgmt+ +xHá룋ü…,ØMkט:^Ñk•°Õq,z0
ÙèTXµç˜ˆ/t” +>˜ú‰OMÞÌf«Nî¿\k©äm²®´½î¡²–É-¤£Fö^r³f²SA]ºÄƼ£‘ë>›ßÌ ª¡n>©™2I¨Õ¡(!ÇØ›@abÛ
ø$>Vˆð3íNîŒß-^©ô‹[ÂKܧ2+sl”_'¥¦‘–=>¯š¨¶býÒðö›£à+?ûÀÆ›=GÜ7ð>\¯H1ž(Äθt·ÇNl™^œ´”j×Ì-—¬×)q&>Ú¥~
_Ñt=wE`ºÌ}Gï2Œ~[$FÄaí=“Ú¬_£{ëÔ…FפKµg…leGÕGŠ¤ì¿†ŒYîoä"(óÂ6Á¨k£ˆzÉŠ,µžQž¯¨~.•æ\¯E¸+5mÄÒ¶¹¿ËxëCŸUv1’~Æ%—ø œ[ÊèaF%à2æ?΢9±Mlƒ™UdX¡x’®î8a»¿#!oæPüœÝ…šý8_ß_쳂0$Ü^|FÊۧʆƒ]½Ñôê²4ŠQS³ äÀß8¨qõuÎu¯E~ùhþÒåFô]ÿÔÓ+iy<¦xø¦Ö¢¸»Ö篸×åˆTÙõÝùäz‰x˜(¾æ˜¤/Cf"–÷…ýÂdìËÿ#ÿc)y‹FiìM–99,4û§¶i—Ù¸ô|¯ý‡ÍîMSVڗ댉šÒ<}¸¢-Ûô]r¬ÑCA&¯X+žðrÚìÏQ[œK)@ÇlN8^[*
:”<‚ÎÔF…v1aósN¼ô¢#,Lz´
°?-]§ŸÜbŠÚµÃkkSNÏìMÙIßá +ªú^ŸˆžÀ*~‹g“H×ÈŒ`/Èãå^9züˆË)Ê,ðØÌNH»|¹|ž)eKOÇâ(ËÏ‚™o4&¯¨#%-\R½J7]u#SúÈ%®Ñü½ôkj¿;Iuþä°„ÙAÛ¿½0å3°{þ„Œd»ô!xÙþþpò잺ùúbO°± /Ût«é²°‡{õ¥sÑó…q¦u¦ÏP‚6ÀQ†<Jy>Â:ÉèíÇÞ½"n<, 2¼0·h–FóÖ~6BHûeà{HN·Z‘œ€²Bd‰Dy~Lða¯ÚtyyÓm©ë¥^|`m4›”òÙäaÏ÷t§µæåVÛ¨TXÏ`Xèé2È>åK§n˜óÕþVeÚU=ÔŒYrŽþÖF$í½¢köH\½w’dÀó\³åz>Y£m˜»}Uÿd¡öÕÃt?Âíh¥š€ƒe^›rë8HŠ¶ïóÓc@Χ>N#[ܨ0¶Š@ ×Ý$ÕF•´Û6zuAÿGÑŸ˜”w¯ˆ äm©•¢h¾[/–²Ž=ÄЗY,)ìD×Ñ7ÛJq™:B…oLùÝÆdHÕºñÝËè1y$sKvÕE¦O¶hÈb7ÇÒê ™UnT½ÊÝ +|Ó'6Öí+’øýsDîý4"#z±ÌŒÇÞ¥ÄâdãÆ¥*êxù´™‡5Vƒ7^·É•qÒΩ·=—ÿ¡Y rhŠä"ç œÍöÈÀϺÖ^ô‹¯šä.xÆÊÌ“6¯…{ôç’êŽí¿m¸0{:a݈3³Â®?Ä–2‘¤? +m«IŒ„¦Ø“Z·Çáu÷µô|åÉÐ#`«ãë'#ùæì’JŠ«T¯&¡‰ˆÃÒGÑ`kÒ–š ‹±ðSàèsÖ—ûKF©|¥Î4ié™×$Ux
½OòèÙ¿tqÇ7íBçggtùºàòk¤Êº'~©x5W^Ó+1jEŠ(”‡¸ü.¶{
9ç“ÖTû–°ˆyœî¶Ö“¹
ùSû8˜¹zTN 1ÄGë',Vï8(gAeìp}ª×Ÿ9æ‹ÖêL_ŸøèÞ6A½Xæ¥y©~õmÙªÆ Õ…Æ•=’h™þ|ò¶zÅîÜbnv‡ˆÏr¿[…º¼= / +jØꀅmÃÏŽSoâÒ#X6…I’†aåA†ë[¶sÙ!UÐÒ„î‚Þ#Ü?Q¦¼´±ÆŸêâ^ˆ0^XX-âžx¦4z±ÐÁþ½êäÃÜREk&Ž—VÄ<S_áF£î0&ͨ¾½„í}}Hµ‘eºH«ýF8}£…f—»‡ +m“ÖWKÓ¸s•µÃX‘@Ù¢¹'%7åþÉËv·†æžòø˜p÷ªÞh-ÅLòUôÎ÷Qi%e6×a²Ñ·Ât>øáÜwƒÖ|×ùÜwpëêÔÊèÍŒO×”\æΓK}…[&6j3gè¼û¿~)•ª:†eøX‡DdzòÂGm1˜X*Ø"óm ×|‰Œ¡÷,µò¢¡JÝ2TÚ3ÝzÔw£¹òµlƒ+r$Vë
Åu,¬”–æ-=Ûˆ2›«ÏKáö)
qÏø(ßщÀ™*u âcAOzõúÚYò|Np"}gZQµuâœSl8{ŽBÙ$9‡µÿöÔ§A»s:, +B"f¿æáÉé-ùy® +³–ät“ÂHûÌKúié9w6¥c®4%•ƒ¶§3µ‰²ÊT¤¶£‡„J·Ž†e@u·úe OòÏÌ1gJâýgÖ§ÝÛ^”6Û4|u¿-mM\`èñ¾àI½^^å:ì÷ñ<ŽÂqÌiU„ê>r”ˆWÀVGA3™¨ &7®;Å@0™„T]ðgò¨ +ÁÌÙÙ(µip³Düî8|!|N2ý̦±¶ +ë×»rÝ#É¡xb´l!SáOÔ~}ñÕ—òhÒþÁÕ¼~{]ÙPÁ™ß|ªŠ8«$h˜HøùÜ}еFº8LŸÝ§zá3³·7Æ:áõLeêNÔ¿ÆÜ&Ì°B%ˆÚÁ§4œô;§JG:ªCæÞ¿RÓ¿uÙ•0!.¸s”+“
_oðù K;â®0o1ÓÖ+´¦•LV@ïÉ÷͈C¡
…{Ú¿£ÁÊÇh§š¼¦Ô²˜Ñéíê÷ìÙ…öˆVy9ë¡Ô”€O‘ª,>ãö51iH +÷EŸQ/PÐO;×O¤¿ˆ…ï÷Œ‰¶üZwqo|GkŸáòÍâÕѸ7SÊ!¥þiß.nÌÈêyXøžêKQ¥>8ä«vƒÍ0y1kòV]4ãëBAR™÷§±_Ëq.åi`±œÃf±ºf²dœÔ3ƒƒÑë6J¿<îOŽ6÷O•Ý·ðß pBo·SÖ9µ9<Я§kIX–Zí!K Y–0ËóÊ·ýÜtþ"ÄÅîÖ käY”=•êË?×ÒJ<±ú‘¶
¤cîk»mL®Ê &¹5Kc¢Õ:ð9ÎñèŠl?§3u`Ú×ͤ„¸Ô¼g¹?úÑ +¢Ð±^xë‡upÂÚ‚k¡Ùþ×óAæ´8¶’]‰^iù#bï‰ßX +á›6-
A?-;?Kì´¬QI’AÝÀR*ˆE©&ÙÊ°ç•¿ë¹Ê‰øÉÊÚØÚp[»ˆ¬¿ç¾Q0ÿ´†<nÜ2Ù^ˆ{!EàyÛæêÊ/L¬WšWî!„Ré—b–,Âs”zX»îgòz·”]šo›©R5ÿ÷Ù #¤0×ÊC=Išá†ÉÇÈ°d:Š7û#•VðIŦcÑ,ò>:Ƥ«±ØYrˆáôµïNzò½\Ýç}ÌúoLÆ4Íñjü†OæGl·Š‰-
ê‹ò¬0tÓzû¢ Z£ÄÍ× +ó¾Vº,7dÙ©2qµT‚ÑRTG*ÛbŸ`nä^Œ0æÄS©loUiâ9Ó];›é)cLcùÝNï*6D“>Rz|:Ÿô"[-ˆRºy’7jⱶsÜÔæ¥È‰©ÌÜh:XCÉØTþâßò®ƒV¶ØNz[x}Ô9T2ôU9ÖéH+>Í;¤»þ̵¹¹¸Ó9R¡4Ú 4rBú“ôçZ±ªŽïÕ!Ï.Æg8³,ò/œ]XöÒ¬è5\2Žt)›Î*(çuåº/Y:!xd;%eÝüðž%°#-—@8’EâËÆè”»|¥8s»â"ä±.Løc½6iáPE)}³°Ð62O_‰ì~£¬å_¤ÓŸÏë¬ÄÆÛ”3ÐôLΡ°Î×Ô®N˜ôL5žž¬¥yZSHrc_ˆTÏ/úh7(ã”ûŒ +„×ÙÛeáê¹6¾€‰0|×ï8ü] ’XüÅ=pã8ÍC®¥ŠÎ&LÆ´bÃ0˜èÓg"9ƒÛsŠLƒýœ\.ç»TÃW?„\C…¨oÂ#„o?°ãm‘r·7oòiÌâô$™èbßž ™Ÿ¯à öAk’-I¢µ§VhèÇÈîÿ²ÜÏÖî2éÃÈÚØ&~î‡}$DN@§ì™åGeݶHü¨Û>ÐÆF(½=é")uú +mÞË{+Áh0{ÔêIr@ª20,å¿…u|I™G5”XZ÷Ù4ƒ£Õëšö)u¢YäÙÍŸxa¤¤ŽCè[ +”Þf¥LX¥X– +J¬' +(†qÕ±ŸÎDô®x9Ú’™)œ¤Ù‚}OËW›€K82Mâûûeô +Í3±QŸÛD1h4ÃM¹Ú‹S¸œ”#~K£ó… +¦â]-}׉ûýÅúdÛ8×HGSÙGÒsu¥³oV-ÈóB)e‘£PžþšÖ¾/Ò I•EÙy3?uá5õ³&| (oÝ/ûEN5¹)ÔíEÕ쵦¶‹êOÜ6#\V"€n“x«Aƒä÷è|ì-X¶"7¶I™êuƒêe·„ä÷ßíð@r5¬•ÅÔ•Z¤™—1^¦Ç#²fùKqÄF zãÓ…ž!Q|œ_œce{*Qr€‘êÉ;C5³þ5sÙ䌪uÕ\ú]Fûòdѥ—¼ÍOâî0Ÿ²)BI˜®Ð‘uºpRC¡á‚ƒze~¥¿‹;å<½Gƒ_ +‹^}Ý¢ ‡’ ¯â.¤º‰ióÞvPñM2»áÓã˜s@$~¢©Qi/2öŒQh .²¤¸¦¶ÿxZävÁFb"Î(‹¢î…†°·@›×$Gl +6ü´!x†ÏÚ0ãv—¹?³þOìÑ-Þ÷Ä3ó“ü‡uòM#"F><GáËðÇwк?{nwn›vŒµˆX%å-ÜT¿Ycp49ÐìÞ)›/§²¿°ÇùMNïW +²ªW3?Ô½Om\»d>ïÃðdÕ4Lü€®¹…ó°ž–‹ ´v„;îá(ŸÕx¢Ëˆ`ãW³Åa'÷„‘¸»íˆ™u°,ë\eÈ´ž6ëQ¥wß¾$ +Ô×6S9¶‚"Zfîj¡ð+0% ’É¢SWÆqº–Š ©Œä’aOI
š`Ц”µgj¡flíBz¥w¡É^\ª‰‹Û°eEo|èùø%d¨W¤±1`É©:Ýè>“äÇЮ%EþÛÚfÌÚ‘6 +Q:l´Äá›b‘È[™!0*>}/G×É™áó¸Ê¡¤‹ v]ýÐ×3?ÚçOÐeéÇÊ}t:˜‹£‹¢ÕsßÿŒ«£ø!*A‘ÎNu‚¯†ZÁþΘ¨\ë›K±(çi¿>“çcþBHô'4[¸º)ÌAɵ–”ÛsC1ßÇ'åûì/2|Eóå·¯%@~X‚hÄ +VcénØ=òôÓxÒæ\9våp
b”ûýž•tÞu“IˆƒÍm·É1Mì¢ÔÇÏß¹ù[e¸œdh‹}ç]äv-¬ê¼ó…šëTmüØà£W¤ˆÁ×fáÊü6®®Óýn¹ñÊÌ·ç{ ¥:rÑ>.†ö·…’üöØo×ð¦ö,ï0²PµœB„û6BmÛ㨽R*0ˆê6ÃЫ¾o;ÛñÈ)ñ‹˜a21µ°îcv7¿sª>«fø\€úÞŽxŸ´}À²7¦m–Œ0c8!Bµåø3rBõƒ\£P˜Nå¦Øwõ2¦¯¢4îoríj_ÇØ^½%]ÖýÅ„ßy_°§c†{ÀØ7#;=°WÀT½õ¡ˆ†ÝWÔ“f¾z6ûÕv©n‚‚,÷P÷øÂp—ÿc'ûì0ø^â›|¹9%ªÎiß"ˆ˜ùQB
S¼¿ô©yeòyøõÎv7µ¤|è +u¼¡Lî=æÂK®±]C÷¾Z>û~fy37BÝܫݳÂu.hÉá² B8\Êç"žt²¯¸¥BŒv퟽…1ÃüX
)vÖ–¥“G|ÚÍÝ€Ý +=uºôÐtN=x‰m¡Ïk&Z™«9HÃ¥bAòákoòówî³ÚL˜¡BèrIr…¾J +g¿)â£CFªÖ©ûá©£ô?Lñ¹·gÿmØ×kÛÚ‚$Øî¡ýa÷~q‹^<àWÁê¢hºãD.dk!]#ÄœaEÕóßrÙ°ðÌÜ3”¾
šctŒ·S5¡õˆ¨gƒaÎѯŒu7"Î¥‡àk•Qepm=&êýÂÞŸ˜xdÕâãõbiH#0pæ•„þÄ2ÍÃçn÷¹Ë{H¯~‡Óïó¤.£eçFxn8ÍVÍÃaou¢]*®ØGÈ峊Zî°mýµ›;\¼:·É¬Mr´8³™½þs¤–¶º˜HÓ~ry›£š¼ù(V)mu¿ÊÉŸt¡o'E^Ê´ËìÌé„`êyY¹QjeS
¹}«°¥wž÷™gù2.C|€“‹Ö…z¡}À£V °0:&êº4 ûT¯vÏ©8·ðà¹ÎÌÄ®‡´Ä°fW™õñ±QÙQ«øPþƒ¦X¯|êõÎ8(âÙ\8 +DñIrª\þfEý'×õؾ{%`^¥]4b]'†þùV
p£IõÁãLî7E6Å^Tüƒ‹aö"ºy»;@}È!~,qeœêûÿåÒÿOðÿDK{ ¹‹›£ƒ¹‹ÒÿXäÔß endstream endobj 47 0 obj @@ -2219,7 +2210,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-65 -250 1062 761] -/FontName/WBXGHI+CMSS8 +/FontName/ZOXODI+CMSS8 /ItalicAngle 0 /StemV 87 /FontFile 46 0 R @@ -2232,23 +2223,25 @@ endobj /Length1 912 /Length2 2265 /Length3 533 -/Length 2901 +/Length 2900 >> stream -xÚí“y<TÿÇE¢‘¥"a˜‘±fk–´p1fŽ1šÍ˜Á$IeË-ÒÏ2)²F†È’,%ÉV¶,Y²$KÙ²ý莺¿ûëö»ÿÜ×ýï¾î9ÿœ÷ó<ßÏùœçyŽœ´ÝI¨†äš‘ˆT(\® mNžÔà*0ˆœ’¢¨8ÑEu -ñ×ÒÓào6 G#üšµ¤¢ð8´‹ØÎ× -Y÷Oûåe¦D4 ƒ#²–¡ (ÂÚ!€@8€#bÀ -}'8¨b~B8 -þ„‡UìOˆ -H¤~ßeÖÔþ`OkÆ - (Q´Tmj6£7®Û>Y!L¼Àßc
x™ÍÑmÄé£GüoërïŸbçlìYq¦ÈÕ펛֫ɼ•8Q¸) -¸÷rû"BO#6™Ãæ&ʼ0ꇙ[ôe¯#>óìŒ~Ãy¥§øÄ· ü?¿*ïCrlW¯ŸØv© ìwÕagÍ#¿n¸)rg¶÷ÔFò”DÜü˜œûL»Y -KؾÁ°½H-(.Ðo€Öqwçíiªy‰¡ŽsóŽ—̶ÜküÏV×Òˆ…§e2¤ËqHã*µ/AB.Zý±rCWëßHæôì;æä~³ˆ¶&{)¼³r±bwâ·€²ÝHÿí0u*cÖúÃ2A¯ÐÉù·îú²R¯OeK À–§ÕÜ.& ŒkŠ?sl¸ÐpŽò»+îOdŒôæ쩳íhÊ{£K#<~VfjúM$áÎóèâ²»t.m»õ8ISHR¾ëùž|'å~ç#&òÝ.O¾ó›ëÕŸå›ö¶yµêCË.A–ewi;t”LŽàÉ… -›Û#‹6vª3¿åèZÈê¥K˜•÷[È5Ý9_ÑÝ.µ¹®‹^+Ì5|3Ý'2ì¦ÚÉ&¿Yhhè¯ÊH–Ø^C}Lroçä¸ÃÞ7›cQ’05€ž*p"›Ûzg•-5 Á´åŒþקÞ*ÏŽÐÃ#\Vâ…üÌ#ÒÐC±UkkÆ5Whü‹„19-ªÚz”KÆógÈߨ!<tŒXíö>ä·£}ÐÔyôUù»»hû¦y³t‹ &®@:jŸbj¿ÏK5p õAº¯Ã¾¥Þ‚ÂöÉÖbà7Û¦øFK¾qWiuŠøQÈÕÓ+µ·ÚDIåݼ×?•ºšÒl‰:Gc§¹$¢UG¼ñ†L®s!<ž›½é1iA_HïʺÖô)–sÙ7×D3c¢ô•_Ç#b|{£gxmo©%n¥sv©‰H*/@Ü(Ýxgó3_âjŠúôTòJlGA„snÙL~Ø}º›¨[p¯>ׇ8Þʧ¼J<³Ay*ÙXgRŒIí¨ÙrÜddM¾á -Éóâ·,h,æ2ùk7¢Ç̽dÚî–Hqž=£Cô“HâóQyWÚ¢be%´"ªôÂå㪅öÝGYcü ./Ç8Ñ>â›5ƒì½yñúÂY(Gf±¡›Û¾î¹Âð3çbfV®<h–O?FV?“žh¤íj³(˜µQõÜšÍÿvq9˜½%Ù@]èeŸèw ¯å=úðå\ËHåooæ—Žåxd^|RSòÓÖˆ/{8WpñôèÛåh!ÊÔɺÏ7®¬’eã<Ÿ›kõI}ξÐH2o«`AMšósÐn°µ7+Eƒ$=mM÷8¾ª¨ñúm,Ä^¼ˆ]´šqÑß%Àò\Ã̱tSùN¾Ódë´ÍÝØ -%ë[\©ÐªÍó—¡óyIÇ‹íÒ]+õÚnU¸—)×¥åwbòÁý!:7±&Ðh»6)k ð»;–q½s‡ºŒŽV~‹H¯ÌE x«~Ð;o¾Ûÿ^Mþ‡‡—Ÿ#Û}/96–ÜS¬¯÷‰pœ\hx_sÑ[Ä÷ª`[à«0E+'¹ÇON“|Ž®Öc+P>’jÂåó ˆ’cV•Öû$‡pv%ûP¨Çn™~tÚfgJD‘†wñµ1œ¿ô+,3D…)*T¤I)Ž$‹æ5k'(‡"2u{fõŠïºYåØpf>íGàô3£ª" }áÒ -"ÖZ‚¢üa´ M¿Ïµæ‚ùVì õ”Š`ëï{Ö®œÐØÑæžbÚ›€åŸ€ Á÷æ¥åcNêÅ8Ó.ú¬7²ïÃÇ„žÐʹ1×ìØ~×ëd -_Ü9Qù~®Ó¡{—'쿼 ÿøŸ@ãA…J" (g!¿ìÏó‡ +xÚí“y<TÿÇE¢‘(„ˆCDfd¬YÇšµ…„‹1sŒÑlÆ&I*[¶h‘~–I‘52D–d)I¶²eÉ’%YÊ–íGwÔýÝ_·ßýç¾î÷uÏù缟çù~Îç<Ïsd¥ìNB
1$ДD¤BáÊpm +„:€¢PPtk;X„ +dkžZZ€ +z+ôà0 ‚ù ဠ+øT°?!PÁý„š€ +þOd-“ +é'TTÈ?¡ Bù YR¾¢*ë,ý;þµ³FF¤€@¨:€ª"X_ +SW4ÔáAÿZhOÄùÐ@c +"œsËf:ðÃîÓÝDÍØ‚{õ¹>ÄñÖÝJ«´À3”§uÆŘÔ>áJá'ÇGÖäòìø(ðíwžB™l8ý^̃˹–oŽ,<ñMbám‹I¢'R;Ó×ež4³ïn»šÖ¦.t<Ëê\/ß9s#7kmW_@£}äÄÙÑ[]g¢JؤÎת#CbùÕîÔŠû›‰§?Ëw¦ˆ-¯òZDÛ:Ú\:æð*d$QÓÃÂÛ·þqÛ`EØÝ,MÏÍaŨAna®W¢ñöçàÈ©³q-ùõÇïG–Œ¤ +»S0ÓyÛ¼ùs’CߧLÚiK{yŒH¹ÝâT`XЬ7û´C»"¬|H•QsÉO¹i/ͦô¹FP6{€XÕ¨ê§ý³e‘þ¥“…Ǥ+©qSÎ=‡yú“Ðl×Η^ÝÎVt°uzsh ?Ju¸Ü}ë^–tÏk¢c_yÎptσ¡#ÄhÙtÇŒÉõÁCýÇåsˆ®f‹œímö™J9ÜG¥¯¨ÛÈEÛ®…ïqœîIkŽL¨óJE2àX^sKsø¡\$TN²¤ðÔ=Õ8µ‰o>cÒ1>é;üµ´—ø»/TN׳·’äf´;LŠLFbׇœ5ûíUœJ»?’%æì¸ÒcPÜw¢‡w +>P‡—chŸ ñÍHÈAöÞ¼x}á,”#³FÞvè涯{¯0ü̸˜™•+šåÒÏ„‘ÕΤ'j¹Z/ +dmcT=÷À†fó½]\foIÖ—CúFÙ'zÈky>|9Wã2FùÛ›ù%Û’ô‹OªŠ~Zêñeç +.ž}»-H™:Y÷ùÆ•U²Lœç!3Í>ÉÏÙéOæmä-C ¨I3>Ú
¶öf¥H„§É^Ç·C5^¿…Ø‹±‹T3.ú»Xœk˜±A7…‘ïä;M¶N[ßP´ºÅuˆ +Ú<š1Ÿ—x¼Ø.ݵR·íV…{¹¡R]Z~'&<¢}#»a¶Ûúa“²– +´¾ +S°äw’}üä1Éç(éúg]6Ñ¥£©Æ\>Ÿ€(YfUi½OrgW²…j{ûËô£ÓÖ;S"ŠÔ½‹¯éãü¥^a™!ÊLÁ"
JqÔ Y$¯Y+A)‘©Ó3«[|×Í2Çš3ói?? —UAHè—’¶Òá£%ˆóhø}®5€Ì·b¦”Zß»vå$¿úŽ6µ“Þ,ß ¾7+-sR+Æi.˜tÑg%¹‘}>&ô„Vιf\Àö»^'SvÇ
‘å‘ïç:ºwyÂþËòÿ 4DQ¨$Šrù;é!ó› endstream endobj 50 0 obj @@ -2258,7 +2251,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-20 -250 1193 750] -/FontName/ZGOLMJ+CMR6 +/FontName/GJPBOO+CMR6 /ItalicAngle 0 /StemV 83 /FontFile 49 0 R @@ -2268,26 +2261,30 @@ endobj 49 0 obj << /Filter[/FlateDecode] -/Length1 877 -/Length2 2362 +/Length1 895 +/Length2 2549 /Length3 533 -/Length 2998 +/Length 3197 >> stream -xÚí’y<”íÇÃŒ—BÅè‡6™Œk–l£ÉnJEÖ¦™£ñÌ4Æ2‰¤%$[!KÓ¢—²“"d+!K*;É%q&w9½çŸó9ÿÏyîžßïºîëþ~®ëÚ¦@°S1&ÓŽxÄTÁ¢±º -‰ÖD¦'èÍ+B"R;‰2Yh -Oâv†]<>™£ÇÈ!U]¹9Ò{ƒEm8€¥€¼amåž ;;NÆ•ñE]K*x"q«³0˜¹o§×}Î_ìóÛ‰1{0½ÅG ï«ÛA‚矗jì/}´ýºÝ‰änü°–§Ko@¾¸ÔÀÿp‰õÕTÍ¢÷ŒÝ3V±;/k _ÃôÙM}m,R$üQº÷u>…J,¯-÷eã_ða¸³3Ü´ è¡~&-KYKéͺêàáðÄâ[É`·¦€(ÿ‘£Iê^§‡šf¶©1Ú{Y,¹%׎´Ûwq$öñ+ŒW¢{,åñPÎYv]ý*‰“ƒ»¥r1eÔìºÇ—ž¹ÆKeZn:_¥ætìåÃö7=Õ6…ànåÆõi'eã:Ô"Pës¼‘ÝM‘Âj¸‘›BÃÐqOcôHLžh6$M;˜.º)> öÏ÷4m¹+cú‚ßz0yÊåƒüHë•[:8÷bp1+½¿;Ê8"9ÂJÚzM:÷¥ÒîÛÎ\nëéÆú<æ–K,\®z8¹ <†¼³49ôìf¥“ŒôZã'Öm_ïΙ$d9EÉ]ôI–Þa½ëü‡õDgì¢h7Fq¤ZIÀÿÙ¼SzÓÒŽèµb_µ¡T±æbp΋•Š -Þ_vÛ—;s¿qèlÔQ›'Ûó˜Ùj´|Ä,ܲf_¨+³UYŒ?˜‰;ÐzƒÄ±ÞþÂŒÿ½šNÝu½ý•Ñ9ó½Òüú^< ¿(xp‹YW~Éÿlâ/ÊR¥-øÝ™5ì1¨±i&©"¿r˜Óó2¿É5+<´ï3ßøôìú7y·ôž
dÕ94_Zè±k˜ººÕ{ºÆQ¨¶[³¾µ-¤ÿú²¥Á·AEß&Ù¤ùûÙs3ó¯ }½|˜úÄ#_¿¢¢êèôÙ“•ev›EŸ¨ûÚ—¶Œ/Ñ~Üj½VZGN¨5¯"6Ë~Ü…¯~ž{&ñ®Ý8:Óän7S[ršä -¹öôuµÝ8žî”h?søÃÚ…Cgð¯nËX!ÔCë+›E< -â®`oºF>56¨®U±^³mÒk¬²f:½`Ä+tx‹›]÷¹//'œQäÌ‚oT§çÅŠšp -{îaIdvµôÐ9Ù^AÚ{øée|)•ö¸S¯?ÈÅËÑiõ0xzŽò@JÿSúGŠë‡*™yv¦®[¢3/ -ûÜhz´‚þõUˆŸQ]A^èƇ·T¿yÔ0ô¹
éÑÏ»Và3>{Ý%rï—Î ™Är!¾œQíÆüÎ;~lÙ‰¸7¯FÝU5âD^Km-LépÞgGˆ•{“L¯×¾w“íT91}»G_î&weK4à %ž,ì!í¶-níË
5ÜÁêO;;ÎYˆÕ¾›È]@ÍX‹?ÏÏu‘R<_sõÁåc¥†·®±óö›õø¿#”Δfpž$Ä„ZDfn‘—ÙÓCTú"U
êg˜ýZY2çþgÒUds”šŽD†ìHÖú|s¥l†
!ÜM/ç•|ø=t'Z.Ôg¥4ÄÔaà“Y‘[Ê(£—U_Ô'O†Z[տʸëèX¥ŸùyfåsõFgNV;Ð"õ†`
'rÛÉÀÖ$ /™XU¹5—JÂm‘ì;Ïûv[ -hÜ…¸oO|Å4“ª(ìit¦<"÷Ìq«V@j‡Î™”ÈÙ9ä™u·%ªr½›;g$<æN;,’NÉmÈÛrrxÍâcƒú1CûÃ`èÓ,'˜s·/UðB¯û…P£SÞ&s¾Ç~‚í•
ûê2t%”©ºDl˪^q+œ¨ÔAÂÞŠæÛ¯Ùs*¯ø~ÊØ‚SbÍ+
êïZỈj©×ÆÙVOßï¸Sß“¶Âå4\»×´8.ù ¢é÷-%-íÊÇb³†Diy[Û~’t|SsÆèo=ÂÛùòEñ¯ -X,ÉsºÇ×DÇé˜wŠñÖm
§€(jê’9r5©ð‰5<ªÑUB9ù)!&#_2?M¸¬"ª8(룡ÀöËÁå›tYLŠÖZ¬ó×FÚ+~“{ˆ"»î¨s¬¸V6 ‚ó,·Ý•:@ÊàoU€Ô|ÀÑÕã2`(–I ºö:õÝ[Nî‹' Ö¥ˆ=5þE+þYÕº0=ÁF¸Þˆ‘ðáh—`+>ñwÂSÎKqó²rÅô=ðe~f0÷øõ¢õטٿïSf¯ Ó®U;á¼ñÎÝVÁr=±›Å]šüOeÔd’L -ý„Š”r1u_Øšé»´Jîùr¿hºŸ„”¿=´u{ÁåH-yÜ:«w Å-lµ[ Åm¸¶‘UªÛ-)F±Z‚;óYo¸Þ¥–È/¦•½›£™¶›4xGkŠã}.Z¿}*Yy^–{/$e;ÕÏ'¾I·õzJ—Òa†ØÅœñâÆœ‹HÛ#éòK¦¯¯²“1zŽBIkÏ¢IîI2œ—ëž*YHŽ:|–å·ål.çÏ-пQrhIPZçËœzÐÞ'‰¡_:Þ$m±î]~N›ÕéüÛÁ3õË%sC¶!Aˆ;ý-R°ÅAmf(.(¼âõ¯_æñÑÖ»æW²zw.L÷å*ï13X€™ÊS"¥šoHzÄZz‰Ô÷+ -¡ªø¯’»ÍødõÕä¬b²¸ËÆŠZ}I©FØ:Ùýc.z~
Ö® -zžÇû˜;?}kz -¬p=»xIšÞ—›(ÿÖ†˜òÌ2[”1¬±lq÷a{ï~׬TFhf¿Bå\š>,¿ojtÖ*®x›$&'®ÆßešÖúžèU–BÊC»Ž&cþËñÿÿHTÈ`Ò¼‰ŒãÄ? +xÚíRy<”{ߎŒ“ e7$7Y†YlY²5™’mlÙŠ¦™Ã˜aÌ0v Q¶“B¶’$qdM!KNY +“5»„’gªçœó¼=ï?ïçýïù<÷ýÏ}]ßëwý®ûûýÊÉàlTŒˆÔó –J¡« h +…ʪO äîA0Š_UG +9 ‚nP¤•}ÈÎòŽõ¿¤úÑË “-ðÞ_íÙmú·*Þ›Dügêíà ƒ4ÀœJi”¥öà÷hæ ‘Äðþ±jBÇ“I#Š;Pß)’–ĉ8à¸áÉ~à7¤Án۷ȧpÇ,-áßú½†Ã“(tÛ@Ÿ¿\¿Š¿aôߘ݉ 8£(š-d¿~ýá.c +J$QØ+¡¡ ài4| ”½l¤£…2ÉŒDP¨tö€Ý“PÀJƒ~¦º6€¤RÀ¯ä7¬ô +¾vnµá•¬ýã¯qÐß +Ò5ÖsE»Ÿ-ï%Cýž—¢½p«|›s¸ø´
iƒØò0sÝä†u—æÀ@‰{oE•Ü:êœÇÖtJ¦Uz…*8‘OÁøWç +x®F°dßð +1—îSÿ¡UVµõª-¬~xÏ ^ÿ| bâòdí.Â+ã +o¬}üඓó›Ö–‚a®ÌÄ€©séjž¯Ã':Û—åTi¯FcLWUïÈpp|e?P'PÍâ”™kD¤˜Jc)¥ž]óI!Ôqqí/TqD¨/v†¹l^…`k.ƒ×…òM%£›dò.9Ÿï©Î±¿å¡*)|pu$í\æµj\¸Ô6ÔÏäQÅ”ºOÝÚ3Iñò0BL%—óÝ£ˆù\²Íå³ú|=Ç_ÍÁð¥,™*ç-Åøƒ™‹p?ØL0uôàç¨à]ã"TÚŠ˜ÕP¢kU\l*0èá>Öš•M½o¹œÐ72„ö{²Z+ðéžç¡o!qAŸxfaÉŸã'Ún5:‹‹ñ5˜õmÝýx,µÈ9ñ`¸_¦˜¼A’rôŒ0þz“o%;Õ¢°; í3¤_L²Œ³Á{îØ7‰Ôȶ^+íÚù +ãý‡–}í™Õí:Ÿø9‹†ÃÀX4j%Žœº$·1m=éB©ÄÏyŸ±~™C¨3?Üu’sZBYÊVÎxõ»a”‰±çÑ™®2Ÿ®Š²Bú³Ú+Ó~RªéÕÇjå·ÌR::¸U¤wN×ô<ìt)ŠdmpLÍ…§v¿)/Ôm+zæÐ}åÓÈ^›öÅ”Ÿ½—Zö<Òxþ²/â]ÆSýíqYF§DúúíG»¥$nÎIúvŒR?zÂöò*_]T_;-y ω$aãÚWÚ_#°ç`ÿòæqÅßÄp<«D½ŒD¹ yõHÑÍp1YkÉÆCB²<\Ö»íyôÔM%×=™íü'ŠÑ÷Ï[˜ï.Dà2V³Pï +§L&?ÊïYÞTPëÛxp(¶ë¼4x™¤ço[+®^å_,|í†Î"Î;qš8{£ö|-Ï“DKªF =K”ƒwÀ9Y¬ÍBÁÞbÜ©QÛAk^éµ…¼áÀ_¿¨9¾Xcå¹ñJð1D
çS;½žHÔÔ}8äÌÍôÏXìXñØkU¾kšçúea¹U7'I«Ú´àfQ7qœÃ›1
ê©‚åƒÒsؾŠjÇ.ŽvÚ†÷Ýÿw$¿äÈl!‡”¨i'¯ß§Þ´S$ZÚ¥ïŽQ·ïK^öó¿+‹ +‡í^ro§& +ÖÊ¢Éûàg÷V”<³º—ù.µ1.ÃwÑÊ•»PMNÇÅO(¼Á¿õ¥px:×dýxX1–lß.íW$xë+÷â*X[·ÙgU¾e¹óáýœgwÐ[Ïf¿m¾€æ>>XíåŒzy†»¿íHÜ'ÿ,sÓk+=ø?¡*©(Zî•·§¬t^ø'¹]äÚ·ðÈ£f*
ÖñÎ…‹û=¦z.Ûð<°zfqEã»."¡Ú‰kõ“\´brº,çPtupeàM>êèE‘ˆðÂG-¹‘Æbo˜êS-öT›3EÑNö,bG_P2!°ÑSOÁ«Èì&£þñ2©§ó1ïUÅp¹¦/&Œµ\—>ÿâÆÀ°„oqì1+Ÿcó¤ÑËË5Á£½|9B?yêLÊ +áõ:*OxŸÉ½á¤êL÷lˆ@}‡¾÷ü%ˆZö÷“o.\4©àƒÿ¼Þ(*~`“ÛRþƒØN×BéK¸{¤Å̸ˆâŒ_§lŹƒ?—š·ªe-žºß7§—ð+Öò…Îäéþuüñ|tÔí²ˆâ'º÷œEã^iL5
ØÍÅÁ;yò‰†‘áÍIsg±·ê¶ƒN˜††>Ö»Tj7ÙÏ¥F:—%’©ß}¯r¥Ú׎B!±¼ƒf:)¬ÙkûíÓ!ÅwC¸ŒmGù7½ä Ç»w-fÄ!þŠAiÙ¡+õéyOöÀPbפ"T‰è)EBRòü“GíE¥!ئ4QzûIHVŒôÓ9¹ªr6²çPË£©˜MØïKš™9ž‚Ä”äÛ&?[
ªœP(Võâå>»¥óX9JÞvTòmõwïˆF½÷ð©mŽîÍ'ûï¼ü#(é¤Çæ´ë9̶ÅÝjÌdi‚qï©=þjJó¿yæ„z<–þ¼Ø{ºU°Þ.„KI*Sýi.&^áép§SaIËà…ê +Ž;ËÇô7A–‹æ€X»¥t ÷èDúP³-G9·€‘Q•ÃᣣÆ9ÁÏãó>Lïòap=§u2-KÏ—±S|Aèî’PR“+g1¤nUwµÜ:Ô6È +lã5?{ªz¤Vªï-Û#³‘4i–#ÿRòö%Íœõúzu‡ó¶§xóK[ŽQ6ŠY²]L8+ûfõ{Ѹ—^Ýü‡_ïM~ïQr»Ñir'I¹;CHÖT€sL2Zßû@ @K§`#ûSI´É°‰xFêªÑ.ÑüŸ®5=O²QÚú\ Ä +3Ë
ÐïvMà4‰òÐWxÏ›[¤ÓÜäá\Ó`xXëëkb5bÙ¡üH±=°ç“à%=\æ¾ìý¢%,e©qû^†aÊ/³!oH*mœ‘¥ÈâeËóÐò¬]‰ÇS"g²Ã“í²y£‹ÜÒÞZ«tg@î\H¶;¦Ùñ\Æ,½Øá!çêÅöå5åÞ½IþCþ•a‹HÞ?PÿÏú_ƒÿÄÓèTo<Í +ýØØpl endstream endobj 59 0 obj @@ -2297,7 +2294,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-61 -250 999 759] -/FontName/GPUPPB+CMSS10 +/FontName/HNSZSI+CMSS10 /ItalicAngle 0 /StemV 78 /FontFile 58 0 R @@ -2310,26 +2307,28 @@ endobj /Length1 1093 /Length2 3409 /Length3 533 -/Length 4120 +/Length 4121 >> stream -xÚí“y<”ý×Ç•©D„,ÕE¨lc†!Kö5ÛdK¶Œ1Ã0cFƒì»"n*{‰¬¡,ÝȾ†$Bɾ„è7Õ}ÿnO¿çŸçõü÷¼žëúçzŸs¾ç|®sÎWX -ÒÒ -Ò2`°0 Ató"aœÉÀ9ó?¢ä -ô>” NûP€8ïC8 -HÀàR´¾ÉrpyßÿgNÀºSÐzš -‰6òÏûG[´¿ƒ¥%ME£Àwïqb\?)¶n¿Vß/x¥ªc -E焉ïµ/d¿¦²†Ä$UMÄ‹¬7‰G|çЄé=¬"EL‰Å -hVšð5g¹æÊuÏhÎðËyæ·Ùpe¸+±é_˜ŠJ¬y"rëlKKMÿʺW¡Öñ‰±ÚÔEñ2æ -Lا3[¡ó²œÜ]¯"¸•]Æš?½qqüRéñ¯UqÝXçO›&5(¾T.KãÓÛ/ò>ˆ‡Åî‚ßÝ9mµKÍ›— -¯ö!ßØ´ÚÑ=šÂ±AÈÛVdƒqžííéþíF@Uqà\³(Úsþ\ÈÚ¤ËLGl.èºXu{©¼æ‚iOkd¢<Û!ëón9+Ý7EJŽSoÀñ>ãa!’ÃîÇ -_ñ,x”¯ŽN)§&í¤hÕ„UÊ>ç¼qÜÛ¢jšßt…Žr`ÊnÜ4Ù=â6A¬K¤6t/ G½ÂøŸápÞr³›ÔnRPŸœZõ
äÿ–ëßx¯Ÿ51¥¹iLìô¥‹ŸÊ%k*3–jŠ®ªî^BŸQÔèj×[Šñž
¹ˆ…¬¬tÎËÌÙ—d<«<jjò¬ôœ#ù÷›í¯~9g1ËÂŽ_î©’6ïØ{ÖƒÒ•¾|ŠgI®„¯u™OZoB·’š#&Ô’aºk|2Þþ.«Óôå -AQ… §Ø’ïžw -2Ë8õŽÞovoÀjæ9cèæÈKóÄö“Fqc±¯ÜÒ˜FÊ-„( ’™F4#ѽï¿/X(ÏÕ
Vàà_ÿÔ!ØZЖóÅ‚!”“œ¬±Ø™+]%Ñèçß’(ck1÷êôñ²L²ÿúæ/çëß”#£³&ºåNéîÅàfeÞ¦`í/{'yÒHwSàú÷á†õMÖîc‡}•<¤¤Ð¾¾¸«-“5«cAºÍú˜KëG(gîÃZÃÏž -=Xa–ž ©8l¹6 Êóâ;¼Ÿ‡Eò£2q«i¬·„ì@8U|ÅbºtS7¨PðUDgQnq0e‡£o>$EŸ’ñr\oB=£W¤¨¼Ø!4#²=„öêˆnQ œdp¹7i÷Þ®Ë5DHÑ6}Ú7.ax #('3Ì
€ygž<r?1ÀûZ>«€’ÐÚD¦ým7¾›‰ÜµÊOì¢í!T"²™Ë•Ë!‹4ú¦@óÞ“MÍG+éHïZúêu.d—+VþëƒkpÃxÙÚlof
Ní¼a§ãVTÂ
q0W©GMõ PÆé—y®ìàPÔÎk¼ˆ›M6˜§ž³ÜÂ88¨©xÛ3AU¸¿`±‡ÁÔa¢¢håù-è9¹z½ÂïŒ
Ø=קãf)u*ÙxEîï)WÃ6¯ ßN»Bº›Ù?Ñò/Êaÿ˜<‘ù½`ÄÛ^µ©²/|ðb³Œ FZ¦VryŸäÒùˆƒk<W$rXµíLNvyW1W;ÔBìq<äÍDqò3îÓéf.sMálFõéŸÜ”¿éXrC>äÃZ7@§ZJôÀúæ/?|5ÑÓÌyI‚[*½é—±•a´
:ôb@ˆXߤovÉcÑkf¢É‹Å uXþ“„²=r²ìÌ!¾ª`Ê^°RJêãò¦Û©çÕ„«°AÃÝú’vàÑœŒé5ßk¶Ïþ›n¦¢£|ÂÕíÛ8
RdUÅMç^ÌïÈf5žÌMݸý¥S)ÉQjügC]O*¥³µˆx…8e»Ò’ -âôuþÀ -z4ê"&ßʇ¨_A½µÐ‹Ol}á{kgÅÎâóŠížÂÌ”îgãBwXŸ¢ú¶ízqúc†´Ë,Ŷ%æw€ë€löÊ|
'”|+à£ßDäçÅ·«úSŸ<&`9jËÊiQne:…DÀÖçB–t+§ÍÚV?Ÿ~qóê€ËnÞ•Fãi
£Îhêòµ®†¶ àî²üëzë¨ÒIÝgÐ(ؤÕxÍl™W±Ý·‚U‘ù³Æø"¹|Íî=ÆÈa;y+Ý)÷eè׎ôJO+o5†Ñ¡žÂ©Úäéü§Š<˜J‹aïq0‹o/ Å}Ô`/ª$çë0^Vä3æüù‡†¢Õ,SÎ篶µ jgÈRÜb¹Ýö±“É –éŽ÷òó‡»/׸=³¶½®×˜²x\ë2âéùŒã‡Oè·ÅÆ¢ÆÝ®nÚð®7—Ifûœš ±y«º02hªXnƒbúD^Cº%äë×é?Ä‘½¦‹ˆˆ%¬¨ôƒRF_úx|7£DwÆåV¨¬„Ù0xx¢ßÊúE7„Ø;È®VÅ$—?ÐÙº.vÑSg¸KóÄy>YÞèëãgß.[:ÍOöq@¨Ïîä§n!Æ›woW^od8ì šYÕâ'¾³Ë6Š67,°ü\áì]1Mx*@91¯)3S[”çé¿©åöú¥—'P>öêÐø¾‰úvè¥â†ªiÔÑr¾`uûVöBìäÓóÆ
Q5)·¿RƒS7E³ó² -=úÆè˜:¿”×™ýQí:²¢eÂ:&8Ç/]kŸçb%Ðyl`Í_a ”À¨éîf‰3Õ+⾞v(À%Y´?MÊDQtŠò0,j+àw
-ÜÑgš}f“SîØBî>sU~ɬch4(cvÙáH¤æíõ¦¢ ~_…Yx QR^f·ép\±´“~ÏÚÛˆß.Ù—I;˜üáí=uLßâõÒÑk8ƒö¼Oˆ‡ü½‚vƆŸ}”ˆóª¹>˜Î=·}ÎÚÓ}‚‹X°9Ðà€š·µÄ³¨Ã4’©ŸwyõÄeRÜoèÜï½/‚oÞ>HÚä>{âðó3~ÕêgwÚ%¹Ê°ç)¦pòú¿,º–ÏO5‡1׆†{ÊcHjΰáåÞrÅË𔆻^m`~œnÂàÚÛ^vI^àU¹ÏÛ•ù°h8»®6S|Ó‚ùE|$i9¼xqq•¡0ê ó7~aÿ?Uû“IJœ^tÝnO£ë1WÞ¦SøZ})²`Žx$pɵ=–¨0¤
?l<ÄQêô›·ê wá´}Íä¥×gkTÝeµÎŒ1ÇöÕTV)˜4x3cý2uX{%Kô¹ÔMˆ¢¥OE
¼£H¬r3s¢Î1µx8{û¤HµhÏÂõã-=Ôp^¦9ߪP1în}…釜ÃñVZ«§j*°›ö&Ë’ f»·6„O.NEu2½é)¶h¯
ùJR¥þ—øÿüŸH€Â¡‘$2$¹‚ÁÿSãj +xÚí“y<”ý×Ç•!Ù¢º(*Û˜ae_³MÉ–1ffaÌ0Ⱦ!âV¡ÅB"k(K7²¯Q¡d—ý¦ºïßíé÷üó¼žÿž×s]ÿ\ïsÎ÷œÏuÎùŠ‰ ÒN$GŒ.‰H‘†Ê@•-c$*@edÁbbZdŠ‚#µQŒ2 +Çø$°íµ6“ëÊEq3Ò=<O¬÷Cž-`b«®Ø<–Ì‚ûÙ3qŽ¯8eQÜë—›E+¶ZêGœ +%ë_?žŠ™®aPFèx&IÞ¹ò¥„™øJËÉšGÀ§ÆãO‘ßµXU—¶ì+×w±>1õèIéXÜ|NdôI/šËœ"PŸ-Ã>)[w!aªIû¶PII:ƒZ/¢C¶á€á¤ÙVq@M¹9‹ûð¥ÕÄÀÚ”Ä]sd_hP
€xè-Ž¾(ÚJàœr),Ò]õ`mçüTw.è/aHÉ×vGIÞ»sœ”ií§Ÿ„'øÑ„52@ ɹH^ËÅ–¹ +:¿VSÆj˦բºšp„«¹´q
¨(P)7çT÷ÓîÏÍo3ëÞPÕŒm’k»ð-éÄ„:[îHV´[µÝ«cv8Õ€úuÇ÷,¸˜ÍiŒòöºáLi„‘õóýúŸ(——ëOÙuÆe|<7ûâ2çöÉÇ6ùúg[)¦³q rðÊ?Ï\¸ö¶\
œÛߌÜtÜz›Iåó8£®Ü^¿7ñAí}k©/#c&ñÃÉØ܉ÐÝŽ¥ lÓ—4ΰ¸”ê‰Dñõf©¨ï<Ú°ƒ{õÃdSôÁª´xœXv•™PK¶[žb7éôŠöŒ°¢‰WA»-_–Ç9.óS1ɵįŸÊçhXY÷)Ò¹Þ+51^—¾(UÎ^‰øx"h3|^—¿ûE¿ªÛ½x‹ÇWÏ¿¹PvøkuBOÎåã†Y-Z(ÏÊôøÖ³ü…Rñ»Æà·7ÆZïÐòçe#küˆ#W7¬·õ¦ñ|!æo)‹rÁxϼôõòøv5¨º$x®Eã5:lmÒÈu¦3>ä-YÓÊ]¦¤}‚ˆ,l‹NVâb²9ãž«µÒÕsM¼ô0í*œà÷&"LfÄãPÑË“‚>G•jbÓ*i)kÛiºÅ
`Õc +Où€»¯œv7iZ…Ä–· ý“y°åW¯™ípŸ Õ'Ó»L—Äb^`Oð¸lºÛOê6+kÎMúGËlº=ÀÍ™œÖÒ<.yüÂù2µŽUYËεŗÕw. FN¨huw,H†ÄùΆGŒAVVºæågCJ³žTDš=);íDyÏÿjëk@î)ìò¾ˆÃ{+Cä,:wŸô¢õå.\R,j[’3˜Ð¯¢åŠEœlÍBî¥Mt¸Åé<}1ˆ-ouå\+r†–R<mTe{ +NòÕø¾y Ëz³—ª~ôYpl¡n*r7ôó¼ÖVg*{·ÖGüÊV_ºŸ³—ô
VôBSA8áÞæ¥úå–¦wäð»(j:VMÏ”•ê}Érý›ñúèx9‰ƒ+Ž6Î$µRãv7ðÛo£KÜRHâêŠ}+¼Žmq Æw±Ål-/q¢ò£ñż9¯nê-…f–»U+gO]’D¸q•rV=’õúýŽ|Ÿš®³e*m<)ÃüµnÞ¾ &{úÄÔ½¸ÑÝÕŽæë‡ +%2óm_3Ö¦ÍFä5æìŽÄ¿Z.7°ãz‡ïÙ,ƒ ibÄc\Ž©·Î8‡˜gŽyË0»;h=ó”5|cô¹Å6â³HÇQ“„ñø{—®kM£Â”©l£Úј¾wß—M‡*òôC•y„×?vŠ¶¶ç~¶d ⥤j'D-våÉUK7&v€*˹Z-|ºü|¬R¾¾º{„÷e£Ú±‰Y3ý +çLp‹ê‘æíPÝ,Wg%òhOsðú÷‘Æõ
ΞÍCÌþÁç<eå’0þþøË“µXâ‹C!úƒ-†FØë©'îÀÚ"O’Ø_iž™$£<bµ6hxÌëü[B€§eêƒ*i³y¼¯”âH<VrÉrºlC?¤HôETWq^I(ugla’eLËzþÆ`B3«O¼ƒ¤ºØ©t0+²5‚ñéŒmUždq½=iÿξÛ-L”DÕ’C>î#m¼/+$÷A„; +µo?Úо¿’‰òa.ŸÕTæCu»á”¾Þ½7NT¨Ëñe×âÕÍq>l}_-ÒØæ{µfÌT +e~žïÆÝGo¿$ˆ»Ûæ€x+,MCCjQ*7¼’ÔÅ +{YŽ•Å+O¯COÛ*6}gmÄíº=~cΓV¯–CPáÿžv9bãŠØŒÛ ”‡¹Ã#ÀâüQŽú:¨7WõGo‘ÕÊx “ZÑ/³t&jÿšà%é\N]{3âΑUìåN0{'Q¼ e#YŠò„ÿx¦¹ë\s$—ICæG÷sMßô¬ø!ï`m_@ÇZK
DÀ†Ïß53ÐÎ}N†[{-Þ.ç/ÇêuÄñþ)ßìSÇc×ÌE$RK*Aš°‚GIå»®”T…³X&¡êPênè¹´ô‡ÍƒvS_žÖ@nbF·FÉθÁûsòÈ+þ6\Ÿ7Ü‘cBb5FÛyÒÔ¥s/öçJuæpšÎç¥Ï~¹ñ¹[%ÃUfú÷‹(¦\Æ`gõqÌv©5?Äëïòž¤µ’®"±“y\Ïù”yñcȆj´‚®î,Ò}RAÔ¶Aµ§¹¯Ý‘ñ`7çŽÄ:à…®Ð(o’’ËŠ>›ûX´Á°HwèèÄá´c¹ o5Ù»8?ª™×—[‚úKjë>ÌÛ¾È2Kf..áû 3#´ä·Ja±ú£!cxãMb£;dS0é‹Šá‰d‰«×’ï4‡«çßä#ó¦ˆÜ¥†ß(í"½PU©Í*ìÕNªš|¸¦y ýÚÒ 1¹í™ÿ!œ½57‡ß®ÛÊ3SúŸL‹<`ý*š[vë%™Y2.òp”Ø•6YÜÒl‚r¸¯ª +5 +œó¯„}Wš—ÚªHôòžã 8¯e…5r +…€Ï…-Ýí&UΘµ«y:!öìÚåA׃KM¦ÓZ&]± ôÅ+ÝíÀe¥—
61e“úO 1â°}z)ƒê‰Ú9ò›ï/ãzî…g«£fM ÅŠÚ=»¬Ñ#öxÊf¦sÞóð¯™U^Ö¾<,cýESu©Óï{²ß“&'—ÀÞáa–ßžAKúi3Àn0휢¿ã›òZ €5÷Ï?´T¬gÙr?}µ«Õ¸ˆC–+̶M
¶NwŠ¼Sšgî¹XëþÄÆîÎé>Sêâa‹ˆÇg²3¶Çǣ߸_Þ°=²ÞR.“ãwl&ÌaôµúÂȨ¹r¹ŠíQé‘VjXg|Ÿ@ñ™.Y !–prW÷˶™<|îçSøÝœó¦+!¯RÍh%rØ®ÅGà‘açgý0Rß·F5›bjPÁhPdÓ[òJ“—ÞH·¶À.eWx>UÑäïàÐ!ß +ÜÐqùÇRœë#¨wMxbÿDCô\勽:2æ`…P¨¦CwnòñÓƘڴ_i.¡é¢âÆ9ùÙEžýãl]Ÿ+ê×Ìÿ¨q]Ñ1ãIž–«·fÝIpµi|php#\it2‰UÛ# +ÜÑ€4(æ÷Î` +rM•Hâ’5S‘˜€"Nz— +—£ÑóvVM˜V*íÓÎ)ù4«zwúâïˆZ¶ö“7xÄN 0?=Ps¿avç }Š›<w¾²hï‘Àg¢ÅW +„i0öºÈàH/%,9KÃ6²ÜW¡µ¸}žÖx˧,Œ×OZ{ÝÇ-sÄ3ôÙ=uþ3ö!åFœûOkÌ”\³dMYŽ,Y\\e)ŠÙïòMX,ðOõÉlçgÝ7:2z-T·Ô£¾VÆ^ˆ.œ#^rëˆ')ë™M‡yÊœâòWÃ
Îw¨¼ðòTº‡‚Ήqöøþ†ªj…“F¯flž§è®dK<•½Q±¬¬…wKVm<˜¨wJ/ÉÙ:*^#Ñ»à=j:£c€þ~„mο:\R'Š¿ÇPyúïH¢µÎê±Ú*G܆Qͪ4¤Åþµ-ñ£«sTñC½¾ŒL*ºkÃþ24Ùÿåþÿÿ' ñ™B" Èn`ð¿ endstream endobj 62 0 obj @@ -2339,7 +2338,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-4 -235 731 800] -/FontName/DZVZKK+CMTT10 +/FontName/IOUJGC+CMTT10 /ItalicAngle 0 /StemV 69 /FontFile 61 0 R @@ -2349,44 +2348,46 @@ endobj 61 0 obj << /Filter[/FlateDecode] -/Length1 1651 -/Length2 9395 +/Length1 1594 +/Length2 8773 /Length3 533 -/Length 10374 +/Length 9728 >> stream -xÚí–eX”m÷îi¤¥†éîî–.Ab€!†în¤¥;$%é‘îVéFzÏóÆ£ïûß_ö±¿ícóßy{ó^뺮ch´tØ¥- -Î`(;7·@V]W—›ÀÍÁÅ%ƒÉÀ Z@AÎ`9(PÀ-,Ìv - / µje€BÜÿ`ëÿö -¼=¶Zøžû[ƒ×·øÝAx5¹¿IžSë7Á½ëüMÂðô–+ ô?F¿8-áò¶N˜÷ïèÿüÔqþžŒ0¼¼åo‚¿¨ÕßÄÍwcýþõ~ ¼®Í/hûÂ_Óî„ï -ýÇ]
¿“þÍ6 øz0ƒt^ª30/’p‘˜W12‡LÝ•G‡ˆé >8Š/&üh}»áWÇôkHr©ÉÓ᎟ É|çüýíãh Š{Hæè›)±=åÅO_’Ã|Nô±¤4®ðùêÎ2ùîr±4^ðÛÆ[õ{%ÓÞˆsvâÂý©
‘9</Z4鉵椨ڧÏËk^fÈІ~éi“sZY ^Ê~Œ -ÓðRs¸Ê@^Ǧq·GtCS`Óyp\9†þ–ç”…ÛL5®ÔÍ™2X>" -KqIŽYD߬e -ÔùþµOÝQ5næl•¥³æklpm^>¯µ^Y–É;ëÉB7Ú§®Àë·8”åÕ8ÉK̈’);‘~]©åIN.ˆÅæåMñ±½!Zîµ÷pÓ^1ã@±¯›WÜWJaV@áyѱ‹uœ`…εsÍ,#x‰Ig¿/±3¥{´¥ïY?·z>X—I-HáÝÀhÀþO†.£I]T7‰ @ñë‘ܽZ>¤êqêª Í§–‘rV:TÎÎ’‚‰æ€±ÑeÆ°íÒÕH[Ösƒ¹ÐA§ *L’Žs.]Ð×3Ÿ§Ï ;^8!¥gÝ/QKþ/Sí ù(º7OL;F…‘5Í6~²mpÄysšÐ)DMV¾±ôQpáͳ¶Ê¼¦J•‘±úÑÙ/.M]"§lAUáe¸-ç}dõJž°¦uœf3m¥’žÝ,áºy¶š¡PAF÷ZÍ;›¤â÷ÝHáS9(VÇP0ÉŽAã‡ÄU\›dB§”–TÔÈ'ä[r4æž»Ãlöß9 xßY¨T<s#Óo⤜U-%ÒQ_që|®{;{Ó×xŸøôNoU°ÿÒô.Þü‡×”S»Vê.9ÌyÚ*6k}b‹Ö8ÂЧ¼‘\Üß” -ÿÚB°efþ£
‰jD"(Cǵ”$[ˆP”ðΔrs[öã+¶Ñ·ì<•ä)/Üq?ó »Ý¶½e³Åø2ðiÛtæ:5å+KMbGÁˆ;jl]‰ÿÍÏÏßÜQDïÝ¢“zZ±6B#æÊn`ùûýÕD¬¸{Qaû7‘Á´½´¤ØÍßTWš¤™5H¤˜ŠÜéUAu¼“Õ™¾Û«„ã^¢„/zÇïM[çê7
Ð\ H7o¦%$$Åc-©êïÉS¬3ú^ï©—/=ÖfyLÄ}$°Ža2¼MåGŒ0uwMä`¿Dù¥™e£F‡0êÎïÜ~vD¥0ÊM ,µzfŸ
—â4_[/¦þ£9% F´ê¡x/M -ö½&Ä=ž²ÙY;*¢àö=jDÃDdæ×~H¦øÅ4"<\Ñ"’1÷~=h|WÒTddÌZ›B›°A¥gîm´ÓVè’È¿o3-xu¯Œ´-jéȹ߸íèÕPmŸ.ÈŽ[£xÝVמMr,q^u<Ž;ä×S™oŒM©òâ¢ÚË4ß&¶y¤ô”Ø”»’k;\Ýû%we Kg®¹óÈ9–´ªªù|%’ -¨J$^¥×c",Ö™ŽÞD ñuFø* qR\xwG}NVB¥sƒ²UË2Ç6ï¾Ùi›Àóä¼ññùëppírr ²¬ƒÄ¹V‰V1»¼ÁtÉ3ïÉùGðqN?q -ÍŸfïj‘½4&jù²¬Â±R†æè3W=@z'±p¼FqÈr) ©L×ó–E;æ>Æø,qô2È¿l·Cü&çôÄ‹`Îe–;S¬ßÀ%¯.kGÞilµhmëà\ùcù²Á@…˜0÷u’öC‘ÖwAj@qp¥ñg÷ú¥ÿ;±ðxƒµ ïtU«
\‡î¼Õ¡m¶|-{h{Œ|cCÚO6…jyïy40ç~0H¨‹ŠvãÛ¿DÿN›u/õRÊTk -Ê[Ñ–[¤ŒNèRü½=µ´¹¶Ës]@+œ\8‹¤5˜ –Ov
ÆéÞ¤&ꤌÔZ ¡¿ghìXÍy*T%r?šyÿ©]ãìs•1*Sè—äó÷i¼€C²‰ }s¶{ä÷F_ê®PŒ^ax àˆ(„hP-ÛÕž|lu¨¥ÏÞÄóßGAôºþJអ‰ì#W¬/™}}ô³¨§÷×ZÜÅ¢¡¾Ê5ªy‚gÿ̵Yî«œ#ñÑ’ÌWtò’¹»ç
%E@W¥f’z$³7.£Å#s;–]ñ|û Ú…@ ³ê°{ri3½\[êi°þÞÿ)7¾7¾ÒŠ˜¼þC¯MeÏé
¬iCÙ -«*–¹>âó¦ñõJÓªýÌ9G·A×ÎÎ3’äÌs,eÅ『M`>÷¹÷Œ€»IÑÊ7DÓ|éâoAS¹=_Uº‹ù@BüöiO5u"¿"SÓ.Ǥ{<KY)š´0çYÎ
±û„¨x³µ¹«dÛü•*4É%9ÅN–[àdÅ´ícíÔÉ}{ž;ÊóŸÃ#è}‚A˜ØO¥±xdÃ~Œœõ
œ/‘Î^I)~ð¬ORìŒù±y¶íeðÞÝ'ÛŠfLÜÒ šLÎRŽ§ËÊ¡gÓªLðö~e!Ä=_ìP@‡]}|!1À“Þ]Í=ÀÜ—wýd&Ýõøy:ÿ—Ÿ®O½‡ÉFÝrrþF%†¯úßB™,ñ°xÕ¦<l,0<b‰%få¼]QkÿÐOôêñ—¬6¼ñº²v>Ü`ŒÄJ^c—,å¦úhÃÊŸ—L -Pýas¯ÄùåW«r×úbÁˆ^¶y‚0ÿÚÁØ®&Zf!Kj|µªš•fé4Eö§C[öÝhŒö¶öNŒo†{©)› -e¬û(í ±åCÁL³T®Ü¥¾Ë—×aé3‰ÙMžF\†•iõÞJõý}áƒì·éQh×$t®»2»±ÜéUÏßÑJž™c ¬jh¶©„ ·6[«?o,LMÉ•Úr³ª¤’=Ö‡œ¡ïÎVW{ËyÏ^÷|Þ×iÍØà©Ê!¯Ô±å•<¸°g¡•ÊcIúh®ÔÄ«ƒÔ -¶.¸ÊTÏù:m:K†>¢å2·…ÆnIÑï¨[Tbù°å¥â§È9o˜–mÁB©VßÖúL†Æ¼_è]—PEZTpÊöö>O¿šö³|@ÓU'e’Åv‚pq¿øû;!€…šsj– -£%–pÁ&˜½ƒ -¸¿Š£¹†\öªY~àöºKT3ËeÕ×ÏèÉö½ÛìB(¸“ÖíÕƒÎÉv‡Dî< ñ'ñêg|¾E|”ÂäÃMZ¢íO¤©f‹$š4ooMoM•@}Ci¾€q™>»ÆÍUdÅõØoWì³×9¡Ú¤Ó½ŸÒ~N MaAö^[¿¶SŸíÇ6n´óÎn¸¶Û‚RÞ¿-ÝÙ-™–ýª ÛZyƒ™S”¤Æäk«c8ÊÒ{pº_ëÖ¥5þÛ– º;7?eBùÕìóR=Šq\õÉxåkÍ}¯Õ`¹æœ‹Ø)Cê¶õµã˜¤âÒ.c;Á›„ÖÆðLïåÕO‰²9=Š‘0…Òõ2¹ýdà9‘£g,À3”7k0‚À••ùªHÕ¿¤ËdNMQŸHшÑ2MÛ>´ÃòBj–Ú!G@èEQM¾ÊZ -<ÌÕ,Ì‹úÏTÐ&é“W«R•ß—wà~Ç°S81üAËvðjø…¯ƒØ -‚“ p -¸K:þÎ=?¾Ò-w°¥|®ÀUr‘Qn‚‚ï´øýù»~4¨˜š0šØ„²PîØ -QNz†7ÔI§ç²šùÇ"…Ìí¿íw5ÅÜÖ³áH9Š)ŠóBzw(*BêgC|QÐÑqÿn¡Å®>MY® ¼°õ>‹[V—ÉÙ™!Ü’‹Å(X#z4Œ‹c2M¿emæã·Dÿ¬²Xcf™uÃÚbNÍñ ihð!iÝe4vÛ„ji3‘Ž¢lqê£Y*c=´Öãéìöû ˜§¡ÂÇœür?s¬í(¬ -V6-ðçr…4àSö tìZÈJ‹’ÝòQWH?Ï× cYÁ-ëòkžZ<ÚÎÖ€”}!ˆÌ®ÑGñ®
åsëp8©´üý“³C"Ï»‡$•nŸŠ~þ^Q髬Rô‘ìó—_»–yßñ‹5wê:«Qkí&‡›w:ÄóZ…9ÊÞʘm¨·ãxmÈ|¤øî[ÌBšñë5ÈÃ¥D\‚31>ó¿3oonoŽ¹Mx¾È¶Ñ¨ã”9©‡ö8eX± ÒSGoZÙlÖa]ÈDAê¹IÝ¡QüÁ4‘€úF)bΰGK¸£žÝ*Ã9½QÚ*‰yÁdf¸Ç{RÂ@͈añ󼫫÷ïC»ÕÒÆ:“0,D‹Ì -|mÛÒØê‚Üu -A¸€ýL.0¥„µ4ꬰï h¹Âf”tb´+ŸŠNe|³`ü\©çg¦y®ûÌÀÂçh…Ò{÷¼©’¤Ô¡Î“$ùé^OKÛq«Ãú ¬ `À®hPæã¹-¢‹ -ht«ÖV›÷|Ì6P(|7Ky4ô*̼¸§¢Ð@?n¬û
Ž½5¦UˆAh`z"–ƒÔU«ÀƒC/ögﱎÚçïP]¤`Á«¸ Š¹/…ù-ü±X}LoÖ[ubxjAé«E‡‡YØxø»cÖ¹-ØÅÄdîìÉ?›O08‰üBŒ¼4²¨F½eWCr._Çð¬£gì´¦JfoÇNœ.~-0)Ø\uÅa¦ñ½›Jõܦ'èt.FîÏÝy·ˆ)µ:1À1žZôëígbÎÊÑM‘J¡cüh©cßx¦Ç„»”Ëu,zýûB¼u¶‚n±e–1´FŠF.ÛƳª‚¥e}ž÷Uõ§é·/Æ>‡Õbhæà•¾Ôlè‘ž„ *³öæ!'$I+ÏfskÝ"Uk™)W<Þs6—j1Žr,KJÌ—˜ûò‰,Ü$§ºÆ?ðᇃ2tµûžêQÉK:›ÛóÒÍ2Àb2j=Ûùy¤nãGÜ0.ž¸?UE,B[à¹&PzRmzFK8«ó€n‚OÙb8í~ÚxÃwtðõàÆLåKAŒºÂ:,-]"¢äáÏ\tôšÍ°ÿ¸íϱ^ïG)û6!ˆg'vc¤Œ‚Bä•<˸ÙL£Ë¯ùj3¡ŸÝº3öˆõËöæÒ þY_{lBùŠÀSÓ…‘kð”*£fÑ%X׎T}¢c²½¿²Î÷ìÓ]%iƒ0‚¸× Ì<Îe²ìHI¿h@
ó&f9_¯m}âóu3‰”ìφ}fêd5ÒÛöº+I½È+ÀVE¥Ý°jíŸÑa…™Ù9hŸFKPt^ŒIêUhMdÙ6ÈøØAÏ¡ÁÑ,3þʳÓ>gÊﬡ\ÑUPÖ8ÍÊîWA‚!fCð猰¯öýü!f¤‰Ü%)-Ë•ÙQ$3‡…*Þ¹ŸãÆå]®6Z´f7s싈#¼«D)³ÃÌÄ¢a·Î<ïúŽ¨zIF ¶(ßNU¡§ÛvF°öGWÔ=¤ÐdYÎé4Â'V^¢Î¤«ú)û¸·Te{k±.š=Û$îz.¦´ÉQE—Øg¤ Þ´h&s6g¯ñÉõbý
Tá=y3³$/PØE¬·Õ³Ô™ÁEÑ985?$t©¨Uè}ûÔÑZ‰ÇdWî›SõEG†àô¥€ë -ö‰ -vúVüÙáÖ7‹Þ‰°(Ù‘µƒ#¤3eÁ±Zɽü¸Xœí¯drüdØïŒb‡,j“ª¯£D¬^¥V·Ãš]mæä‹ÀŠHÁJнnìåÁÀlpðLQ$›š¾ecé‹J -&¶&߇ÎÕ7¹u(A´O4våÆ!a|g·æbøO¤`úTusz~IíÏ0ø2^[V¾6¥=Js z£Þ\«“{+£É+lÕŠYôØçr´‘0øâˆQïÜ–¸ðÃÚW8ÛuÅÌäü)‰/–VúbvQyPäÉwùɼ&=’x•j?Ã9ðKñ qrs²Ÿ»ƒFÍŒtäÎúC9wdj?²jÖÄdF>gIº`GÎ70Pâ“¢‹f‡C‰ ÅûëÀ+”ûéO”ë4껜éÎt=›|rìß›_Û}xÚ"+4ÁhËô+ðó -HÙ%jŸ¤úAa¼‡Ùq¸çè”VO:ld¿øVH±›Éš¯Wà…àQ„s6ôŒÃÙvféU!Ѹ»™aïwAm1ÕÈK£8‡6óÙ5¡ùº°v¶c}÷½ô4,Îvþ\lâ~Bòt »Ú%(ÕˆáÒ‡hËAÛ°‚¬{st<qgÁ‘ùL=ß‹RëôŠ/R¹ÙA>ïÌÁºˆz[ËÕN8¯…Ù9`2Ú\ØJf—‘¼©}‹›ÍžuÑô'a#ZB+T±j³¡y;`ïúíCr|Ø÷Ψ£mEtSšÓ,qö׺µ!ˆíïâ^§t=Lë*¥ãK£h¥/E»×;`wߟGd\ñôÎMsó<—K #£Ñr¥Ž{$¿l3™ø_‰ -£ÜN¾ª@^‰¿.ØßzÌ?ÿéTÁîG"!öx^ôMkR‹9Gà1ã‰HU>ïiGôJŸËs4ž&ƒolòëO7è]/*Æ 8¬£™‚)æõe\ÿ—ÌÿŸàÿ‰VŽ@ÔÙÉ ù¿ +xÚí—UTÛÝö®Ñw)žbÅ“àPÜŠŠ»C€ÐÜ‹»×âP¼P¬@"¥‡+RÜ‹·“ïÛÒîý?7gœ»3N’‹¼ïš¿9Ÿ1çZk$,Õµ¸¥-! +Žp7n0X «ª
À< ‹¬ÄÂ
ê—³pƒˆÀ""¼ +±†º;ü÷ª’›j%
·…A +cFó;f5Ö•3ý"J§›úƒ¾ Eîáòð‡^+]ôâ[øü»º±YX.ArÚ$µ²þÖm—^è2IVÇüí +bÕÎ}èueUêÔhÝEõà‰jšÏZó¯F^¨+úYï\¸„ +÷|Ø¥{Ìkm÷ùg&žžÅ}`±PM~9ðú5ñ“ã‹/iI5ƒ$fÖ‚¯©x‚"x•Ð)¯pµ%V.*‘éFu·‹<Òâ¯EÚAÐþSu½¤OÎ].lsú±?æÂeÌþ(GöI*žP8‹_Ì’}nNr˜7ƒ×]©¬˜¥p¤Š«Ì'!_dh}5°ÜÝ ŽQÓqÛn¤¬Mí¢¡¶‰Xrç8Ù¶ì7_Q T +s(‘ï!¡/Ð,h]•ç† +ïG{¢µÛ“БÜ9ô¡çÑg°j\ûÉó@…²Þ!ÿÝ
–Où’Ú˜®ã€PróÁäÇ;5ühÕ£•ÇíK9˜´R€ÅùãMþÃëQo
/6K®T"l9&Íô¦C¾8,ÓãP´°€ L} q6~OŸ/î„a¤tžµ§O-mãó0´¯°ŒÛÑEÐ_˜Õ°lp-óÄzü™"¿U¼¶ôQpâ˵¶Ê¼¤O‘‘±Zïæ‰K3Ë)YЗ{®Kùî9¼’ÆB`\úCÍôÒS+%ï@W~d(TgP1™?÷Φ(O÷¾, ’sÃmë¢ØÒk¨OøA`“DêADgIÏ~H½*w—ÿØŒÅs»ŸË~, +ù09üí…ÆO?(˜¡å\B‘-Lú”ôƘnwå;žl« ×O¿§éܼÔÉœîø°¯ü"®×-éÜ¡¶8½½c›ÆK/S’GØß%´åºcÆÔû]m|sÇxzë•Øߌ»>ýöê"o÷s5
ÁNdèîUD?c7#%^Әʗ…Fi65 +)¶ýBwfh-ß7”êLßÍñ¤£^O—I]¼˜Q`k«'ªØWu‚n9.|™>öààdÅÄÊS¾C"Ücæno„††Çâ$Œ×HÜGâ÷àB†¯±tŸ•EïBÕýzЫlù¹Éyƒ†—[¡~NÞ9Ÿ¹QCéV.(.Rª'w¹hŽò4u¢/T×›’ÃÑð/È~x<»•&q3˜Ò˨…÷ŽóV>¢Y!¶TK¿À†á0nÔQ`y%ä ”?ÚÆ•5ŽG—j|ù‚ÜÛ0º“*Äc.—ú»pGð¥j÷.•Þáú/Ï‘ù»^h/ÇëÄ=ˆ¸ì,ÉaÏ0º
îÕ¢.Def×%ÓH^E7 ûß3ï¡R±uül(+n,40ä¨IfŒ_uÁdfkj°ÓTø$‘w[jœor«„¶)b î6l¼êªíÓ„¸ Þ=»l_÷¯VINqù“rKÙ{Y83žë‘Æ·“n†Ð¡û]Kz¾Á{|çÑÝ +_ið~8ÆÊÿ¢íÄ‚ €DÆ5Ú@ÞèþÊ’®ílæ
¹U“ieÆ+ŽÁ¢GŠ‚2B²Û¹Þtaxz ´o;f¹LƒðÓ,—Èj=¿Íd*Íiñ¿XPÒóO®ã +z'ÉÜÄ•Ìfz®¬LòŽdåÉkÙ¼†0ƒ}¦kIÇ—öKþ0£Ç +FTÐ=T ñè~•¸~üÀ)ctF'1.à”n˜¼*Pχ¯?M¥ŒôAÖ3<ç¥Æ‰Éü‘Û¡£^û ¹'‰??F×ó…admri&¥îTŸz=½%V…‹anöÝd´&ÙIõÏ‹$fÇŠ²½¸ÁxÈ“PÁû¼B·¨‚)yºÍe¶ËY%.Š +¦}-ÑrϰÞ©lQ0´EãÕÄ礧¾d„t³ðrå„FçÇ£*a Ò#‘DUÅ©æ`7o.W9>Zý™xŒÜ‚†,6JMøÝ®·Zèß@àˆ®mâÛŽ´³Á¼_† RSá/Õó‰Õq½Gôç½buœáû—Þ¬%êÇàù@£ÜÆdui‡Ì(qÖ>®x”ÅH}_5ïE,T,6=¾·ÚÌ—^·\Ý4
ÅÐÍŒ×hÃg
øA1Êcž>Ô$.½ýᕸIÆA‚ˆM›aåt'ÝWT©x§³|ý}®èO›õlßêËäNð<õ>5®&ÉaˆSk1Ö†ŽJÓñõžN„|)²ÐW—¨3æôþ1rã‘ëh…Ÿ£ûš‚}N) ÆÌ
MSN·ìiÓ9†ÏŒPŠÜ¼Ã°Aüu.ºm–ê±í0S°äÄÞt^U=Bvx T+¹ùÆ“À´*6oc÷HøºÐÝiªÄÊþ³üúñ“ØóCÒ¯G¯Çõ§ÈØs<U7D´ +¦Ø×Qú¥:7âGmc›»íPŠîìÔª³£(8f¦Ñùi¥|ZïÃ
¹o«.¢ýþŠ§†üI©‡ÞCfaóôØä5Iü˜ŒT=÷yY¼#[M
K8[J$Ùì²cñ%#†HÆ|Å
Æ{A}ªÁ@fΘ6úê…q-¾ùT-´¢ïëœâê¡1„u?^Ô®¨Æ¿O;5CºuÔæÏo ¼x±Z3pÐ7òÖŽå5ÓªåFóù©Y8Z^j_VÔšÆóÛ™OÓ÷ŒYƒ„a +>ÿSa’vÝ H,ƒZ>Ù™œuºG‘'gJJd +ŒHJqÉa„5OÈdÚ½¡êö]a˧Üâ©Ÿìyè/J·Øœ•E¬öúcð°3’Z}hL»³Œ”'i<á-µ`@ý>ê®x•–]K¾#q|û¹«>v¯y™K¤}:ÁÒ6Â$(UBЀŤn}¾¶‹ú»ëª8€íkc½Tipck*«{™]C^"b +uÒ£ÏÀaŒ@gÆÄ^TNW4kÇkKfòRòÐûÓp„á;§Ç—ÜE‚NƒÓ|y«(3ß»3EÛ$9
††8P|ð~®0ÂÒYÛAÖ#B/g">( jZyŽª”¢q|ºhÆÞõ9õ•sÍT0?–{u¨d
‹1û©¹D¥C}5]Cïm)yøÃÌ¡‡5ÂÐR\á¤O}ìXú©SÁ¹¿yÂ5ºôü…âàHŒÿx‚Íø
åÄ;^•â®ÉNó§w,—…2D@óÀý¤šP‹
Õyn1;³Oh䔟PžÑØ~=ºÃÌIðˆ
¦P°N9ðõÎËÿô¦8q뻎–ôæÔ¾ìј<a¨‚¡ùÌÍŽ3wÔ˜ßÞXÐV¶¿^à3í¶c8ø>O/ãaŸ²î“¡q²W‚uE5^C¼±_Õ¿]´ñí²S•˜ôW/`&Šl0ÕÓ¼†*vàTïD¼Îñ‹cÉ\u÷wÚpg*Ƀ¦þl;ð‘ú¦í\ækÞÁáS@ûü;Ê]òò[»Å–á•”`_Û”$ÛX:.Àßtxp<¢súx#)?M2^¢™î6ãMÍ=˜ÔPj¶„Ïjò]qYñ®pemÞÝc˵µã—D/sÃÎb» DÊ1iÈD#Õ1e¦§Ë/³É'ñΛ:æÓ‰#ifîŽNw¤Iï˜Íùhùàb—8¾¢ òaõSا©™| L¼žHü1(Ä×õ
«ZÅú±¿°[ +ëåÜ\™XQ8iÜ欿‘(j+KlMì¥ô”ÃÃ-Üëqq¯7æWŽùîÄÂ*…®×«ñþƒ=7‹¥+òaÏßF™_Ô±aRüÐô&¡¢¼¦³=F)Y6IšzŽNB1¹ïϲ8¶¯Ÿn|ãúôÒzú̽nÙŽÙH´ën{CQ˜Õ©ž/OÀ€u
_Û™†ñú‚w.ô°ÄÎ7{ «1â%8NE$4š·dW>¼$ò;wå-¹ÓN3ö»0X‚Ýih Þ_^_÷+•FÍ +ý*³ºÿúõsû³…2ÃÛ¤ý„Cü_gU´"íEÜ'k%ìŒO„Êú$™ÖUˆVeTTj}lo¯c';NLmÅPŽf½J!À»Ã°·›<;ÞÁ
ëíÂÍn)J4óÇßûš”Ù-„Sý˪¼piÙ!«—¥4ø}Y}Z]±ÑjÚøY¢ ð*¯Ktu飖°Å!#KÂÂ^@5£–à}â…ªh‘ªAŒ•€·Ÿƒ?oôîuÚ'<ÂݾÄÐùÎèólšƒþfæU[/ñ $éØM!š];Å`¦MQ°®‚†"‹Ê°Mò!äHM£´À?¨ˆ&Ó¤8ƒ÷_·a+³š=H½ðí¢¹y|„¬ÓO0ëþâ£5Ýȶ$vÀÑÞÒaÞ¸Û^—sËÎ}¸0Î ÀÖ y½2ç4÷ú¾GëaךóõÙê¢Æ¿™Zªã¼B¼’È“Á^ DO Ílcöõí±…o%µ{ßõÉÂ@’ï +mPù¸T½ûǯ–ጠ+8âêñt½ÛŽ¼È Gx‚܆E«˜Òü§"#6#¦C±ˆ<Ú]qéæó†…ùøäô§Ze^!,²Lø7ûï$ˆîˆLAüôg*BW]|†…Œßï8x‰ò32«æEQ*²—übÒÆ>…{uñ´~‹ö-ž]0ýél¤V_XI¬7{›\ÄÛ¶`¡?¾™pP+¦¯Ð{[¢n‚Ó^}F»"€¢i¨sb(c¸BéÐ+–ÐfA•òãí°šÛ9ÑQ®Úýª†GÀªt:¦9JõeäNú#VPq[ÒÅÕíx䇔'Wzx¡xl”ãµûë˜9R+—Ï,éc^?^(ò1í³2zÒÊJ@û%cqDA«éPîzš÷íE–šùq±‘¤ŠÃûnÒÞ,D_³ÀÇNûÞû·êŠâW.‡úAŒo–©lµØ*j•y"å£Ex<—k37Xô¯×¥l
—e·»L±âáŠËH’MãºH6Á»xé+ŒéO·sB!Ëùä3~” +ÀÞ?Gl½3Ã;y3šcfë ÈÊ2ûYìWù€Úç³â_™9qÚnõï*ˆ±~Ùµ)ë}‘Ÿx-ß\Y.å8Ð k-Üïú`þIŠ +ئ$Í´¤ìGâë&fö¶¾`¶ÙzZ®ÓÝFNñ#ô#1a|Æ®÷;ůâ!Ô»ª•öh½¼h})Çþ¤=Þpÿþ¾á1ú"Æôâ¥ôï©«Ål”ï>VHÎ<\ê\ˆCö:B[S~®kC +P.}3…Û†«Â¨è‚E†ŸiêÏh@e‹—>`vÍVKãkI„Äž•„ïÛ.y¡¤‰¾KÁýLn* îûÚEknàhåòWœPRw×›¡PK#ßìÑy?Ò‚7N´Ýf:y|òæ/Ä |r®ÝHv'}5¨3\ðÔ6i“Ø1ES:´^‚t¢yÀZß4˜sv²‰]ÀÚUvÔr|J|Ç<û¼ž²ý# ÇFK¤}"q ÙÓ9RPÎgþ–
®3:øjé³3%KUYðDWîuÎK&="#.ý˜X™Š.Cçk,ØØ„9íJ\YÀŸþ¼–¼©a#yMXA÷i,Z“, çMúnÓmòÌã˜Ó¼Y<¢ú°Ù2ôÍ/N…mº‹!tÝ”ñŪ|Šàv~aþÈ) +ÐÓ© +ñAlÜÏß”µ¾’^ÜRÎn]ŽÕQmvÌSL5©B%hSÛÄ=GB±119)Kbºë@yY,×Ño¿ÉrŒ&Wèïëו„$v²o{ÚSµ’Adç"¿”x¡¦ï[Њœ˜æëÝ\|¢‘;±(Vwâm0/ý *ò[¹¼¦5<*øËëþYyçèÚŠ|UtMÊ°4$›ÈÂØ3Yâ”[‘_¤•«0†SaBwïÛ]"êDåkåÜL +K‡èJ»¨íij¿ß1ÅW²„?·•ãx–òÀrEæ§×¿¾%,|{¨I!‚þªu«Âñe« +†ïªO®‚Ñçá:{ìþ»…Í]Çv
ÿ®âòªMýóW›P²^>Î-#r¯ˆã–o¡šQ§õ`\Jàݶ/öTùîÛ2çrƒÔ¸U79ÃZŽ/ÿ¶HiñKëSlüµ°óéÚ²×\@T:’kñè}øV3"t”™î²'?|ÙÝÒ’2šÇv{K›w³%ŸKBÎÍ¿Ÿ$º"tÅðñá(:XÙ=%v¾¯óHf4—ÝZöJƒçï,»ãí£ +´¶>£0¹ˆôסŰ1©ANRt˜ ì³HzûΦÍçµ–µy^G/$¬qÚŠ•ØÐpYhÈZ‹
–F!FÇZd \ûž¦{B?µ3†sÈ“;å i®/´2ŒµM`tóþéûÚ™/Yd;ƒ²GÇ{Õ +xðZÝžÇÑiN ÷T²µ?Á6bçgÓfñ îVÂyí6pëšàO,óÀ¡~ç1ŸE¬‘ˆ+ßÇg1Á˜ªh•JÏÄüeeHo@"ñuš‘–Ù´n¦«À]£}¨ø—.šCN‰Ëx`K¯TÐk¥— ÒùÙ8MÍ‚ÛŠ´ïþdó˳XÙ +ì§Þ¯µåž íÝK2ˆŠU_%öw0”šxH[Ð
eQ«˜,ånÊ;ÐÔG}yC·j©Wò}‹W®åEývûy7Èü{Ì&ÙÑ»£ÏžlL(„È¿LZ«$Í޻Ê·hþÆœÏ@¤¬IƒÑ<¡°¿CG¬~£9ÖãÙÄfÖÀ|¡ÌÜuæ”Yª7²<]nÖ*½X½ü¶yoÎj¿%öBÕc÷X„;shò? +Ø—8ÿ©|Þ~rÛó õ›÷ØÃT7zsGŒ†¤Ì ÍÝÜ]mÞÖ#ÿÕkŽ¹ÜÏĈL(Ët¥§‡fXÅɈÛç.¡hßcõ¿ñ/»Üh«#¹,2Ü3óïª÷v"˜¤-^¢kÀãk)‰|Žözf &˜GHíº¯€ËhUNSþü)áƒ{Ù«§ê•E+Ç]Z\R•1®Ô„F„±ý†ì®ð-mÎÁ¿šnðí¢<?¨ÕÚŸ¦¤dŽ¯çˆ‹sdz[Aitæðk Ó«êèmiš¢.Ér c$†ÑòÇ#œ®RË‘cæ©r[ÆÉN`ŠYÂøzçÉgo³b5 {µuväv*nçŠ7>÷ßâN8›Lf¨¡›?œÜŽ5ºr&£m*Îó}(Rë—T¨Üðü~p4*žÏé£éàf´Š*œ\z7]°Õ|o_ŒÈÔoÛÏ© +²Í9Yl°~ƒÁÖŒG³|šçjÈ7ßL°Þ¥c ’PRäKŒ¬Žäå1$—‰Ñf±˜ˆ endstream endobj 65 0 obj @@ -2396,7 +2397,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-163 -250 1146 969] -/FontName/ZHMASC+CMTI10 +/FontName/ESTJUL+CMTI10 /ItalicAngle -14.04 /StemV 68 /FontFile 64 0 R @@ -2406,45 +2407,48 @@ endobj 64 0 obj << /Filter[/FlateDecode] -/Length1 1194 -/Length2 7478 +/Length1 1209 +/Length2 7701 /Length3 533 -/Length 8249 +/Length 8479 >> stream -xÚí–UT\ݶ ± …; -îÜÝ%hÐ`VP¸»îîNp'Xð -düróòåãäâcã -61²*9Z€l^Š˜YÕ &`£3(jm
TýÇ#@Uê2e -T„˜‚ ¶ÿ™ªú§œ"Èìd󟫲ŽFÖ`Q[sk‰í=3ëûÆÁR`W© -ØÑÄhfdí -£¿‰Èbü7½Ô4ù[‰õ¥¨éÈdý/Mþðgå -²uüë'þrˆÿ›ÍÀ/çr™ -H
q@]©|RèØê?úú.áÑŽ;ŽYG€æ›T¸Wx>'²µC§ié±)‘Äî#Éb†¸&Ž\Šä˜ØCuúućŒï³mÄ»Êx~ƒŽ¹‚?=ó!W‘´UÙµÈÄ]Ë0õû¥þäðVÅðŠ˜åo*wV<7ÿpqJ_ºÇ`5ìL¥Þ
D€B¢ôjû^¼ù[o‚*KdbèRÏ‘±U¤½A˜JQ(ìá÷6^÷lF6ªˆo:¾7wuhXïW%Š75iô¦À™_)-Ðô,{…h>È ž8Êtâ•<*s 1œ’ó/Èash¾ “iÅ–U–ú›ßÛŸ;[RÖ ŠòÙŽ5øL -Zì‚`‡È[NŸ‰'ü¦X¢ö]‘E—@úÈ…$N®2¿ng¹Ê§Ÿ”E'y(˜µ³Sov -Õ`ÆVÃ9ûȇßd}Y¸‘¯zŸ—ruAioß=YbŽ´>_rBU<…öšÞ¦ß~%Óíx~—£~Û2g"û+™ˆkFæ -\…ýÎETj Þg -q˜úX»ž6Eî3ÞŠé*Xý«“´ŠÜçɆNAþÅ™ ÖâÎýbpÁßM< -AÔÊ,È_ÅS£T$-8ÿ=«¢è|Ê'Ztª6†‹™»·1|ù'Cü{mÂreÞ£Íôy…ËÉ|÷Ó“kHÙùˆB#ŒyÃ)αÜóÖʯc'»uµc“¸äêPH°Úimœ~ñ½v€”ù[sÁ˜»Gˆ0ºxÞTꪷ—”XiTËqŒóYì0µÏeµ°ì
{aD>WiyÑ{bãŠ5¦ÊLë#ÿ8‰B±W&÷ÍÏ5írek´ßŒ>P!\Aû*½h™JÎD.ªß¬¢6LþO1¼D{²Ìà¥A€îÙÑáÒ¦R×tNJí‡bìÖFHyÄ)m4],»»ûûO“•¡âÎ9]Œ™§xKg¿á›Íd9GÒŸõY5êç¹›~ß,øª‚WýšÛ3Sè‰ä͈:^žU~£ä_©°¢I…ÂÓ¦o¨ßÑÌ_XÆ(ƒÖEó0´f.‘&°¾…9}Ò¯ø…rkí(¾‘?o•ÔC -¥ø®+çŠKÔ¾(‰²Áä±?'(ô]AƼºFÌCò'jeXØ÷çn?Ò¢§,(ÕñÙu¢ñ3Ú%[M]ÛÙñªwS+Á½§Û""ÖyEµo¼:õMO’¿ÏêüŒcñ¤·>§R¢±Þ²Þ8oâ¹ÉÁÈó1ÓÖ¢ÉI¸i -\Á§Ko•¦)¦ºÜÁžQÎŒZ2…?;N’0Ç*N:xÀN®—\Â<äÿâ3#¥¼…¨„ƒÒ»ìžŠšÉgC‚ë(Š0ŠŒO£—Ìu˜Ì°Û"bku¡å®5bˇq~+Ãœ¨ô“7¾!ï"¸»„´BHF¹ŒŸ;ÓJ6kuk\‡žQÏ('f;7=ª%uÈ©OäŸÜÌU™ ðŒì™Ä -B$Ä^;UK±)ú~ã«b -uÌZ\’&£x!Ýþúм½~eRDekض2¸rZ!ÉQ£!¸Ç²JÍ!äˆÉ__ˆ‹Ý·‡s(>Ó„í'ÌÈTÜ ¨»Ê*1žlPUõÕ¾jbõ¤³ -:äé¹bpT&
ƒcæ¹®Ñ-|'p1ëŒXhsÑÙ¯Z%1 ƸûT9H!É,'¾F3ú0Ö~†óÝà×=ê9á+*ßÈw-=ùÑIÅ:ևז‘}OÓü¶¾—’x¯¸dÅbM rÆ[úpÓÈ3'¾ZQŸ¬[¢.¯Èˆî…äYÚÖMbÛË[\^Ï¡¹“)HžÑÓ'F–@ƒúhW{uëš}nìHB~i?‡0¤ÚÚ맗îZJé|ÙÞ庆ÏËü2PÉǤ–cv¬´„>WõKÆ烛‹yû-Æþ†]ûðr#.›ÐWØ"W½%Æð@a“=§ö° -jauºqúrsÛ¯B¯Ò•=oÛÊGßF„O|½ÌÑê;[ÜzW"[púVÞ‡œÌ7«ÉÊáÕ6Uk0;ÿŒûþÃ,‡ žÍdVoDQqª_nØü^ä¾ ë€ï¨ éÉË:³ðÏ…É6¿W–<œP?Ö’fÃ.ˆGdd$ÆÐ7ÁTÝI¦uÏ•úøPu®j‰ŠØqÝ£žíµ†ëÏ×€¯îM#…=/„2BÚD};妥`3Jo»y/È™ÿc$wÆ\ƒ·‚× È|c6ßÀhôCÇ–ýG,ÜhÙ²Š
ÛÞMõÙMOs´åëIñÕW‘ó©
G-/¥kCÝÚG}D¶ÆbW¿¨{ʪ5îQÍí -¼n¡ŸË¡*JŒ6oà¬þ©™(§M´¥[þ`KývÓr?úlÎiŒOÎæú¹KŒ^ïfüÑ¿#/oí\Ù»¸@+4ϬqÿÜó•ôý;ó:þQ÷Û®NQñf -c™Á€pÝ*Æuœ™³×ÞŒ3{Ö2>
˜Õå–Ýö«ep²Éd_™u#«riV‘ -k×õ—}‚¹è¿T¨ßd(ñ¤8ÄÞ`¹^Vôm¹×)Õ÷ë5®qKá)óè¤ìq˜®šŠ+·³Uª«è3¼2Á9¬„ -%å÷om'üP¸¿ÉY1|ÀÍ5ï5_:q—¤ºUTÈ„q}²Îû’âÊþiÈÕ½<üb‹/*ŠË[Âk†tÖ>TÊkäÁÄ9×NJM«½¾„¦ç5[)ìg7Þ;§¼4µÒcjL=¤™ƒú2yDó;¨F’×îdWñÁ‡àN«ðl–;1c¯bÈCõ¬ž&ª›,Ùìé^ïg ì°Ñš7¾áÝóFÕ;,¥rîOšz6ÒlCø“vÒ -RÎ%vBXûzIjJFB”»\²9
W1\ÞK_؈Qïº"ÊýÐ8{h»]ÁJîŒba^ŸA|KÇg»lÓ]ýÀk(3xÖg¬–:øà3[v^pPUõj©¯Ì±¬‰^.w„J ö›YOF¶<«Ä@<'³Ÿ²r‰˜ìq+
A‰÷ø×K'%ôZ0LzÝRuëA³€Ï³S˜B& -ý¤†”¯®ã`Ûà>„=<T˜Ô*Z¼Xí¦Ó· ¼gðÈÇÇy†Æö< ùÖ?Ö/²ü¤¬_Í„Ê:ã‡Òᥘ)S|ÆO]V€li¥{d-„)¾¢s%TºS0?ÿh÷ÓQëîoA²*3 ù…‘ðvÜ“›,•qz}¢ô÷È·D™+§«µÏIrdVÎ}RµA§O
§ç®€EoZ -nqè½ç5e[£1²mÆ+Ä ŒzxK{L–›sfU±0‚d©€ðÉÙÀxË ‘Ñ…’þ
̺]=‡ HÄ3Šà¦È߀(Ei ^«»æœ ƒžª¢ZC·ÓêÓæq@èë{'óý¸ ã(Û2káîÚÑþS !ÄÞ…Š¼;Ö$Ñ…äm‡®¥6™qšÒ˜u¶ð”;RÑ–•f•™(ï”F‹“Í@(ª ‡€¾ÿ$á`%I Gd±îg]Mé¦åßK:Ïl²£µ³½*ä-=*?Œ`2a?˜8_’»ù%ýèöûÔ]·eÍú,RFDæ™BðÒ7åFmÙªV«&L.ÙÛã·ÕUk½±(]ç±t(Þ¯1ðS/ãÆë×j¤qØ›÷+J‚qI±+QF¥n*ê»Ã•ŽØb›nÓçËo맚&9U4›Ñš¨qûÁ˜ûód)üÅ9{°QjÐîIEG¾ÍBr80ŠA˜[›†,?òŽÔ‰ûÚƒ˜Ž¯e‘z#g]P™øWóôoë›ÕÀ›XlBj¥Ú—oôfk”¶E$g -!às²À56D¿«dþÓýµ
HûlÑ—«ùºjíA!!W"£Í P)wÎÎAÿÉ-yÙcze/ÿ© ¥o#½¨ÞáiÔxÛLõhõõÙas! ?®j]J‚xžúv®ø~ŸX‹T,²I«Sü¼P¯i÷¶.ñ³×©j%¸³üüFðyè$)‘þâ!ÞCtî|ƒª=’îF³¤l&Ýâï…t—€HðýÛ'ϯ°#„‡–“϶¹´2®v+$5ÈAT¸,×m{ç -†ä¼úhy\°k°Us6(2†ý‘ -(•ùC|íªÒÝfÁšìÄ -?éW¿!´uUÖº -úíÆÜ(ºíI³3ò߯˜ è-l¬ÃˆX»dð£,¹ ]y–€Aþ4d4&›5à¢úõº^A¤ëá`”LÃ~g*ƒ,ÙO€K‰ -Z€Í±#_5£¢SY¥”iت×l@*LtFœOóyÐ[Æ\*Žƒ!ož8bLjºÂüåÏúùüÿÿO0±A!6FP+ +xÚí—eTí¶ ±`Aƒ4nÁÝÝÝ]ºFh‡àÜÝÝ5@°
‚K ¸çr¾sîù2çΟYóoÖt÷zö»kï§w½µV=µ¦›ÈÙ +,ï…³q±s dÔt•¸8\윜Ҙôô200q†Êá`a +ài4þ +‚8×ÇŠÍŸ¦Óôù’ÓŸ/Lá¯;%k±QT%'4e¾A¯RLn 6Ô‘ãjè) ©½…ËË– )ÂÙóônÆR>"õìPÐiÁ +É÷0óòxÐô3•çì¡VTHÆh“ÎíoKÄØ@Œv?ðòuÉ~nGõvºe®9«©À›ˆØ0Õ³Mî¨{ +f¹ÖƒÀ[$½º?Ô¿~SÿŒ–ØIs‘ÊOZ}Ø?ÓS³!J»<Í{ñeÒ˜;1àÁ'_Ê©@¹à[ + +2Ì& +pà‡:…Oñ¼‹Í&.æï!ÂvƒG)>ár@¾“ø‘ïJ¼-*¶8…Úœ™‘ôRx®¢’¼Ž¤F‚³›ºÒ~aÜÿ2ì–Ty)ÒŒ‹ô”s§s”, +&«¶åt΄à\4ÎF#´úvK;õmŠ<Wž®û +Z%#ñÙ÷x'ÔfÃÜ–œÈê秿å.F»Äqd*|TÉü[óÃRæþÝGÕ}mÄÂ쨻GÇŒÃoì½®÷ + +$?˜‹Ã©]• ïK—ŽŸ
r‹œzÆðúwî±U‡#ª~¹Sùb’©ƒ\Ð…w=ƒæÌ*ŒJ!(Ê»oî$ÛÁ&ùí´Í=76‰Ö”üb@‘%f†%œŸ+Å|4Å9~"¬ŸéÿÖŸö5`8Ûr£ì‹dƒ¹_ð…í÷›Ø$žGçí³äâùõŠ)þ%¢8©¢±f–[áhƒ) +ѶÁ"¬#úæó<ÿCÔrgÍï…á
5Ç4\\3šëZ ¸‰éo‡Fî€JóW¦¤jHš˜q/RŽ6¹¬P”&7.Æ=è)N"hëŽ(qEMÑe–y"êM@½b>W,/Ü?OÊœ$²ß-FvhÓ +üèAq‹-ˆT¿‘ÿ@Ä–5eÔOΙW™®»ÙœÇ¢~p¬¨cøê4„ ›3d$_àó!T”JhÔø}ƒAªb>ßÂþؼèÙ!œ˜•;O‰ž°kŠÁ;³'NÊ"Ù‘(Ä_>¼Ïò[:>Ž +ßüò…’ÉG.÷´ìªJävZÃ1ðˆÂ)y½UÂÆuëÌ›ä¿RSjôaÇwS<@Œyôž—wÚçåöZƒÿ‘¼g¶‚´³_dÓM]ÿÀJ·
™ñª#É[H¯.BO4::úàÀ²uý£=ú˜g›®1y^_`©ô{¨õ¿»A.G“ÀÙÅÜZŸ&Ñs¿Ãx-b,z¢éÄýì
[Ö—rÈ÷w寷K` +<I÷¶„,öYkùpíDQ4õn|ZªewÀ¤EŠÙ%y†03 +ÇÁFHnÿc ²<Îwðäà´¸(
ù˜hªG†:>äP*ØÙ5œ“µÔûñ%XÌxm´Ñé›P%SZ†t,$èë ÏÁ–ÔRn°)jT¤ãAûUH«ÖTÚ©½‰äþj’é‰ôxC§V`SÓ‰ë(y$‚ +Ä +}éyôƒ)OJOdGnd—/´vË«¤ˆ2 +/S!I}j½6qÃ^ßèë.7;d`/ú—!8F.…™²¹ƒþyI×›>bטO[rõ˜ƒp#ŠÄî7ý¤‰Ò6¸?è
zØ×å+¯I’GñJØsøùS”)Ù^Ðl¥ãf{bî7 +ø¥…‰ºEÕ!XˆF½¢U;u+7•ÕÍ´·5¦gQÎØõÙã2÷‡³ÄÞì!j/Ø¿—ÜõRVùÒ[„Û‚Dì@C¥Xò¢üÏÉV¼*6Œ™f™;ÓuÎù‰HÕ Wø¶wðq£ã|ó™\Þ¥ÓæÁ#/|Æ>P!Wâvr»ÓØ ®¦·ìÞQß²_)Õ{½)ŒÏàX¡HÏv´Ä¼Þý.‡¤îÁ*™†¿æ|l1óì§ËÀƆÐâ¿ÕNúÿë«Þž ¦½;d:®¯!s§>4 ’„¤“ÎñVEtâD¦¯‡ÜéTU—poWŒ«¤ß/J6d”;T\5Lþ£“bÔi1Ekupö¢/ɯ;ô9>Ô%ý.=XÜi<úƒdõ|±ZaŸŠtü:µçí×ÔÑÅïÙ•WñÚ^¾eðó ßl-..dIt0Ê͈¼;L» ü*9èá øÔºËÛ|^XËÅšgÐ"ÅÇóÈœÆøB÷²48¤°YEZ™b&þ®¶/p
“FÞŸ¤£æ“¨êõ†PµÐeZÿ~\ÞÓSfêcÂo7˜Š«?W“iú +Ÿ¼Ãj‘´eÌÈÚV%’™Ø”àóz…¡$á¸DLŽäø¢‰ÿð€±SÙ¾ì·uD·Ä~W¡‡j‡ž/›n0ÃüÒÒlÇì6B^ÙŸ9 ow'òzÿtÔ¯ST¸r0w¤.Ï`©“Íõjø•$®©2éPj<âÞÑnIkO*†¨ +vv…giÙûÉÌpü‡X[s“3Ïš=wÕhÀìK,Å4©_;œ¶Ù²Lt'dd_¬¼Æ ÈŽÔá][øF‰ä‘jíè–M—N‡º›cîMæã=”
3‡]ÙÅÕvàØNïÈ
wãrí +Síb´†%—‡ÃB_÷'\pÉA!Äæ„äÅ)š7%kqGÊ`'¬!L (å¯xŸu…¿×Fó‰ +üžwH†/Ö€. ÃS(Oq¯É"+¼Š=ØʹK½ìÑýC@Ð4¦všÂâX3O½&Á—ƒ3- òñÌcst‹âšµŠp–l´Œ#`Ðo7é`˜ûþWU̱¾çBÿª±aLÅäg‘º#oœç«hµÞ—Îí:ÂfߺìI$YìUñÓì\«ú”_á˜ÞÎx±PòœªÚT±¡Sá6‹¢J½Ã3ù$äÊæ’ÊSšƒÉö÷>#{xæP̃¥‰f¯*,ùÓ66ÑZì!ˆDKûKqÌÑpeT &ùÛçõ`¼·¿TPX…o¹kàþm³vX/dû›Øß‹Y¼&ñz™v½ù•ËCcËíÊN„4…Óhe£Áp!hb±–ýù1Àï+±CßEr&ZW«Þé2Bo$«èÞg¶Ioàæã%©·ö{®yÞ^³ú9–[‚ØxJQòÑ]~絿—piÉ°í«,¿¿¿¢œ*qóó»;Ví'0q×g¿Ìô@b®ž¦Û]^:ÀeÚkjÄ ÿ6üÕëKã4‰@ÜÏRùAñ¡È_F¿‘ VZÙß{¶K-²‡ +;åy²9‡OX6õï76÷³\¦Â}n:fŸ×ËÁ†R¼N¬£AdÛ¤©ÈÙ¶ûŠ‡w`Q5SÅÓ~;Ý i¿ß¹=ï…ó=å0tŽû:¶·ÄÆð´´qw—sUiú¬‹2?lzhàð#à¶HG‰}¨iÉ¡ZMi˜ &ùª›'ù4±_ ?ÀZ“Ø“ãÐMi&"üš(Àcuù|`çÓ<^yÖ ¡U[_X3šc¯Ö$w\ÿP’´l-ù;"-úµQ¥fÿÇÁù«lUóìbÂ!<üG2ï@µŒIºÉAŸ·b Å-É<Üæò¦‰RM¹aɵY®°Sñê¦òØ£$‡hˆF»äèÐ~àvj±žûÂ>Ñ&"iÐ +‹ypºZªu’¤…DYš3fèì•E•$›ß9rÐé[)¨à/ÖPÕsæ(Û¥OårÿÓV
ëç×:¾t½ò~ª¾{Ù†ýîÈr¦4<þR—þH£¯DWµÌ/¥(¨w8œ<Û4K(Dï'ܸÃ*x’Y#-£ó_±ÎÇ7ûø_™ìÞÞ¯,»èÑ£ŠHh3Ò©•M$£l»h)ß\ŽZ:¡#óí‹óhàÄâ9•,"Ù¿t;©~™GJ—„d·$ªbÈûµ§‰æ™¼óÅZ2Þ‚]jmMÚæ(¼e@õ*¬9…”\èFÇOî¯xÕ¾¼2
yF +>›™\^ÔáN§½a^ðÌ]òÏæ¾Å¨ÛVºê™©Tþp÷µ×Uš@ô‡išEŸ‘`kßeí[.,NêÞ„%RÍØç$ܸ£ËN©í>5Šh‚CH#ýªÕ×Ñ,6Dãâxõj}0G¥Ì—Y„ÄbÉ*Û¦ZÏœìôù<š/ÂC|¶²”À¾\^Y‹›ö¹FÓHI[&5ïŠNT}%nšâa¹š»UøòrAE²¤™“-?)'–§qøÌ9ŒÚRí ²¸£"Þgz½‚|“â +Š¹b_ÈŠ:â˜$0db7²õê +¿°äQÚ.ÌöبÓB*=²*³¾oßæK-Ð|öKÔ QŸC¸CE©}qô÷ÙªGÀ¨Âþ‘ñD‡Ê‚`¯»µÍåÁâ.+v‘’0îíób÷Ö³r+¶5‚_YVÄB‡OVNâ€^êbØË18ãúîÝrõõ5VÙ5$Gk–m.œ´ÑÅ€¿ž-úF4ì#Gìv Û¬´m¾:YÂUD{¤èª÷mÓ¿M{On1¨|e÷Çr¾iJÄÂ+·tTW¶qWv¼‹œ"–ÆÊG_›ë›ŠGêØ8’rñg.d Èo|µùý[ÖzcÉf6ˆ¸uµ‰F2¤ç;Ý?àVjgI8ÓZ˜%:t‘ó«rû#‘h•O’3ÊQbVa]ðDCˆ1n.ÚQTM‘mÄséY>×nÈ3úé÷/Òd©Ç*)DªSßX<¤‘,Þ¬õ9<Úz[‡"5ΙÈ6ˆUôR¿niq½¿–…ž8ˆÆ±) +zâ_hëéWáê)/g4sÊ%û¿è1Ó¢kËpPeëÞåG*TXuÀ?>s3ß¹@ÓÇö
mÖÅ•î…~³Ï+•:×´×'r0Ãc‘ÿ6AX +6µEṘ£çÆa»øÀ‡_¥<u"tËðé”0q&ø‰Ä¦H¾¶FýwjϦԶSA»Ä[—öªYuUèK¤øEƒý§äêÞ„Pا€‡%Æ‹jÅžV™³ág ù/Ò$¿“ª¤H¿Ù$X‹=’±áIjŒ–f6ÈcA»¾7’F/“„£äïÚÍýŠ.îÑ*Í©ú8¹cÊt¼Ï[ÛMÃ,ãŒE!f¤¶äpퟃû4(5#üFÐ,
–âgd)ôþx¥¼2`R‚Ûeêȵ²¹–Ó>|üÈj¦WýæwÞ|Jì˜õÙawìFdl«‰UÐta‘sì5CU0|»P:€cþÜjÕéÅO[9IÝô>r™ÀK!Eß^n2ä@ku?0u‹õ´ûrÖ ¯ht+g +ûýLîԦ͇ûCþwø!kس9£w1ø†Y*ƒô?³ÉHÓûw‡ý8¬Ø´UÒ\QE6y¾Š¹Þ¯’†% ƒö‰§ +ÙeúÔ¼¶'\Qø~L£ÂA í*yç‰ñqŠË<Þ¢RîôݯJ~çÆ‚!)z06¶cî>Yê2úêïiÊcä„ÑR'—ƶS±Ÿ~Q }BIþª–ãpë-—åªôYœ‡•¡ªMåÐ_æ]h™*l¡ÆzÃ2ȱèJèì'2k,ú<–„¾Ê¿¢XˆñÇ¢·N±p_ù‘xìF¡|J8§u,«u9AŠå)0R:¼ùËk¼ý9¨ÀøLü É֋yèÕ]“.TS‡¨öV§¡6 ’9vÿö’kA`ÞNobšòµÃ>’J²8
•Ï©]OëyŸ‘"wJE×ç¥5¦ÐÏzh½%¡ÿZfÎ9µCy$Å&tµØ_¸i +Ohf§S¯ÉºÚ¨5RNŽ1Ù¡HhÜÏÄ•æBF¤¿A +Bëà<Àî5º}®qÅ'¶/6Ç2ºe#LÜÛ›(ƒM3Zgå?ÌÏÝÂ× endstream endobj 68 0 obj @@ -2454,7 +2458,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-6 -233 542 698] -/FontName/LJJGGB+CMTT9 +/FontName/XTKISF+CMTT9 /ItalicAngle 0 /StemV 74 /FontFile 67 0 R @@ -2467,55 +2471,49 @@ endobj /Length1 1736 /Length2 8750 /Length3 533 -/Length 9772 +/Length 9771 >> stream -xÚí–eX”]ûîéi 饻»¤‡aÀa€ai•n éFºS:$$¥dïó¾>ïÙÇþ¶=óeÎs]kߺ®u_÷°>ÐÖã–±q²+:ÁÜü<üO -†¿ -ÉÀì ` -ú‡DRýæççGRÁþH*§?$’Êù‰¤rùC"©àÈ_—ቤBü!‘TnH$Õ‹?$’Êý·D6w^?$’Êóùï*ÿQQ~áÛ¿K÷?›’¬¬“‡7·€[@Py -ÃÔ·ªbí¹\‹-2½ÛöžÉö¥¹’Êú´ÔõÝ@ŠôÏ5&ìN‘'%K{„JÚß{GŸ”Ž¯Ï¡ÄVÑìñ?6‰76×55î§0‹¼;^¿ÔÏ6WöŸ}±Šüf!¤Ô¡¿ê—w?5¥0
pg2èÎ܈mÑÞ` -ݼÀy;%°$v—&}Áúcs…ñšcѳþ†–Çû
nñQ£^W«cEf¬_‚ðt™§¨ßº\ˆ6>`PتŒõ…hR„>3iïš>¼™p—h®—U@á?Ô{âÒq6ëòÐ%{û£ÁMïeE×Ëôž ÿ¦õÚ8ŒZߎ$çVÍCÙ4yÝûãÇkRùBâ=»3VÇXyÕž3ÂÑ¡;ÅÓÕÉñ÷X8I›£¨ˆû&Æí·c%Þ\‰çß5cçc„o³£|;³DìÇràl0°u3™o™%ûÑo÷¤ï”üp;£òÀ'Ü!ívÛÃi~Ý• -ôóv”³h;ó¥BF^ÐDkv©â§ƒð Ei5zúÎkŒB+Á.èøŽÒ…ªœ"Ùöšë
¢¿ôõ¹ñ®=bºseßÆìÊ¿«i -ÇÈhe”ØíFùŠÑûœ!rþšmT:;º$øz•š`®™ÉHÏoÝRÍèøÉ›CÉß’Îî¦Òs)r»Su`¯s—Ýà%¼ß¡µˆóE€[‰[Æ4Ú*⃬2ùªwv -qHi”{4¸ìXò¤÷Gt›8_ÅrÚÊ·X,Ò;J%Ùp%DÖt"ÿdš4'OµÉ}Hø¸«$¡9™2ÝÊô¿Ìã_Œåÿá$GzƼŠ¿þ©¨.eIÆÿ¤ Íx*âB£Ã0)foL4vi©©ñÒ™91j!cP¾éèè›ÊÓØh)3xFf,|ZÒ´3P*| âç1~¢ÝðRò×ÖÏá´³¤ñC¹~{‡[Œ•û€1Ž¡ÕH_gÙBL¼#Îu˜ºáʳXMøiB¹êJŒ3E¼Û÷Å—ó¤fãÍâ`ÜÆŸ¤-šk®æ¤\¾ÂzBŠ‚+åšõBWt{÷NULÞî•=ÒñÐrù)£w${ ñkT•s˜±ûÐÇ°sgÍáløMÕDÇÏþ ¯¾UB»‘êk»¾7¾¬‘Õ²£É -Cëík²ÑÄÂJs{óìœ,™5Êþatø¥Lw;Ãñµ6
dë9˜Ì#'¼.¢O¬*{ò†ÁA[ghý[ºLMŽÜØ´OÙ§ú|ó•Üô‡Ô8¿êr2¤ -GYJoÊáù=Û„àS™m§ßëÔ
@1_}3ïÇ[¯óÅ°ÝîæËêóä›Aj…{¤8<a54R53«*ÐÆË2fÍ!¾»ªcïênõfüí秉L/<¼+–D,Â[cû}óSQ‰¢Æ-6Ò2†³LÍH³æ£ËðÞ±¦‚ÉC3L;ʲòw
½¾/߶kZÒ±1ï—¥§>GÏ/Yq,¼€‰jôTÌÍDœaŸ»âEtÏÁ-ýb¹ÐRÏ“€Ö˜¼5›?Uã\âJVÒ .7&""ʱ|ù8êI°zÑ…“ ÆÊÚRôq… -)Ž4¡KeϺAe˜@4å{Åd~|‚\c™£yY.ó»:7Ž¨‹® -âž“‡þ(öë¡Êé¹RN²±ÔA£ÁÓÅ'û‘Á·Ã…
¤î]<4VÅ¡|ËÞVw¼P†µQ¶ju™ýÈ’š¼ß$1[v+ÀƒÞÊ£-”Æv,4þàMy[fÝl$ -5ÆœÝæé}I-VuâÕ¦õ¶¦ZŠ6G-üùÏñâø¤Óúd& -«Žâß<rŸíuŒî~wmª?}ÑðES#u*ÅjaÄ)1Ããõ`_ojLN0ÕÁøkÌV-í)¢K‰8–7±2p,:AÁ+Mè›;˜;ÁÒšh»õX¼æ”Ê?1~Öœ°+†ª¹áÓ›uIP²,®‚±XℲ鉌™tÜíß:FÒtî8ÊEû½[mêýpYÅ–ý -ç¥!Ęsƒ§»§%®¼–)srût”ÊÐLX“¡h£â5‹õÝdÒÛjŠ'4ßú³XC´ÄÃ_•v÷&Îð*iâkP’¿¤Õ·mº.›iw9²k&齯›4¡5þÖˆiÇúáæ—à?XŒÓÔ0†uYŠ)~¼Ø›³A/ÅQä6•ÕŽ8æ¬m‰ÑY~`fE}84ïÏC?ý¢†AÝ;MѯìldQÅ)ý¸Žø¨l8“›d¥K“g;Å9þ…Õ]Ú}mèC‘b/Pºz€Ãh^¬˜ü`l‡ÎÀôò[ÕRÖÀ•ÁB]ùwq-ÛŸü_|Ž¤o´l;Tãp:¶A¡ÅoW›Yµy¾‡Ò;Üi½Û+=á%×ê÷ÊüM® €>ÓÕÖp“œÝ÷ÅÝ¡LËòF3˺B9µYž•Ô×xš§ýQH¹]èvŸK†b -Щuiýdý -VŒ)`Á) [ w01PËGا4zéNF¿ƒ>Á#°÷ŸÍ^ïÝ -Ϩ¼eyš·ý=î,Ã’KßÒˆó–Õ„ñ.4Ôìã×ðSV—·5¼E}òœÈ«cI¥–¤$Üéã®ð
Ý‘;†:½û:‰2ší3/,¯•<ßP¡&,<íf.))†.$Ô÷`9çk5ûo¡ßT$ÖQl&<ù¼±Ò‚›æ©£á‹b±dF4Oú3>•¡˜I#¾ Ô2uY!jé.Ê„ÕÆq&¢ã`I²ÜêR*ÊÞÿìÚdÿ.“¬jþy$êç5õÍcáË7•¨¸¶~ ”Ф¶‰³•VçÙæIø -‡j¼qÛÛX+¿zŒ¢cï«ï³¦vQÃjï‘\ˆf¦ÄOi2ô¡Í/±ßæÄNír¯ÞX6Aˆƒå¶žÎMyÑ>!eß² -îa ¬ÙOö,gx{<WM8VB®¥Q[ÒpõÔÖ+ÎhiÊЗoòùcQPW'>Vµk.ú -c}‰d¹k‡;ó&à'7ÆNä8¿‚m`‘§£«Úð¹WuèÛ{
WG¯kFª@ëp3“<!ŽPæžgÁ_óÌÓú7¯EÆÝ Çç>ëu¤Eë5haÙY™2XPæTÎÏüí ×~<Q<8ê“ÄJ·3þƒ„\äñr뱎x|OpË3ç)îu;\ÇIíDŒq1Ë’ÑUé½4žÛº…f®~/ºóšt8UQ1ü—V“Ä×Ñd®ü× -WoQl—Š“Ÿd©ß
€&vïñRÀÀÔt`
Á•N£b"V<£[à·.Ýh*Zò™€úE†°VªFì<¾•ÜxŽI% ”YOòi/)ët´ã}Açï5[¯Ç“¸Jý«'+]òÆßSÜkÓ%݃Ǜ0 -¯3ã(>èè_oó‘]xÄäzIVT}¨¬P~©Ùý0>U]HíN¶º—ì¾E8*¦^À;š{ÞUúé62$Ó|§1ßyXïwF“ë|¤Ì - ¼ÍÃI<¾Ï¼¤ê£EÆÞ5QH-åýøª”¢EΞ‰|7êŽ\V¼(m¡¨‰y]!@ñóŠ#£˜®ûz?ßä@¤Ue*Ø5‘Gîl6Fp¿ÖÏG5â‹ú†fI:™ ¹A}5uFꀄôAnÎE½Åg\Ë\énU·ìÑ|ˆÎ!QRíJl¤†Ñ‚ÃoAżùèR´Ü°¿4 -'Wæ#Žê±dlýˆóʺ¢jdË 7éc1Txj¸ˆz‹>Ò(„ãQɽ]oƒÑŽÐG·ütYµ9›cKe¦&î~ñ؈áÏ‹è¼ú€sÖ–ËWÅ•-¤å¼æ8FÛ/¦Ic¥Pÿ™ÎÊä]™]Ä^¼·,£§ÀÝVŸé(ŸO$‹aj½útÕk -¼Ïæä³ðå:=™KPc‚£Áq¤ðuƒ"¶,L©ÎÒw±DÇ“L‹¶¬ -·‚5èMçCÿãì‹)‰6÷ÆÙoï_~(‡`Wt?JZM·U{þr܇8ÔJ#™û2ÃWFÆ_O¦S¢?ø» µåƒ÷3ïˆ1EUú=ôE½ZR5
œŸJ|œ¬w’2¦qŒM'h`C¢®ß›ÊP‚ ˆÃå‚߮οŒA¿Œ¢¿ú¡¹ëäòá:Ôýˆa“ÙNÏ2ñò›(®ø$õÑ9L¢i'Þ®òÈŸ`ù«ß§¦ùö¦Ÿ¬¾¤Î¦ók«*Y–£@Á¶°Ùï_8†ýa¢…Ìß«†ñ}tÕ½|CæJÃW2jÛÉ~ÎâDÉ}¢\©Û ¡×W\ùØx˜É»¿èLI2V%Ñ' àwnz™«gzºkj˜¤Ålt+djL
«ôZTlrª¹Þ¡,„E:©î´c+2âc§Âì.åõ‹DéO¯äçyvã‚ã<š£w/YLFÌ#Íýå߆~lËÈš¿Ìæ.<:òIyÿñ.¥I)’_>¼hèÁKÂøºÝÊ»ŸéÓ -“ÒíOaÉ[Ð᱊Ão$C½“ás6öbä,ïÜ£W3¢rg¢I¦9Ì1&¿ ©'ósivWè8?x.!(…òßr©[ÃŽ_þl_¦DDNá°œlzÕ<&‰˜pëõËô\_€ZÖ›W* -˜ÿTL<nàRñ¯GGI¹$H¢Î/ø(+Ogµ‘÷õšÊ²)”!Ï{£—ÀdÐøËv¿JÐ{Qñš/uÊIÕ_™ŸÚæcð_dDK©ÒÜ$÷zÕr\º—)°(Ëû®éyT`»!]k-À²G6Æئ“üÐÌ{ê}áù*³÷iÐ箯tóÒ:åã¥Ãí2Z¬j -tPªž¿u¢×‹×Ú½i•’Îü mùz4¯Ù0¥†Î0ê½&žZi7~•gº•RϬ‚½À¦F§fP÷¸vbyEÄÀ‰/ÓðPéãžs C=;{è†J?¹ø†àéµ]p²§ñ·ú»ù„¹¢l -ˬ¯š?Ã÷Ò‰VßW„ú‡UU“?ØùÄGÒþP-$úzÞ×ùíz ”òÐ{¨-?é¼_(j«LS '7öõeë·ÃÇU ÞêÙ›!Y = -Sñ€G}Ðd3t¯ì{Yi‡!‚1)†_•Õ=þ)˾au†íƒÝ"•ø&p4ãÒ¶Œ¥à@åœ$¥”Þusr°Hz¨|'•I‚D|…ÄùGTT
l(eò¬ÂmdwmRNÑA²›³‚Š:UŸCµ˜ÐùÙÌõr~µ6ì÷·q,ˆ”·ý×diýÔ@›á[Ž -—ß5pGÃx“?–\œò“iéS¯(Q·‚vB…§¨51ú?aÍ(SÀÎéžoàÔ|E}›jÌPø”ÜÚ{ûÂk6ŠËX6äl;.xqMUq46´õpÊFO£éÞMYNæ¾ißÓÈÂ\÷ - ŠYm¨~c]$c(YѾLRK ¥fçá‚©ÈV‡/,²÷ãêæ®[¾"íÜÆÌW¸a½A<ô½ŽRË-Ì,ù¸–Ây+ÅÛš\JxrÎÿv= E·Ýá® -;I\¢ï.«}º´[Ä -Bœ™`eŽ’~"¾v™÷¢fγšÂ›LÒñ±žø|£-ñ`Z÷2öªÜHŸÒŽ*·eL–°Þþ5®ìÎ…wN¡=;oÝ€öû -«HZ -rÞS„9èÍøŒOÚõ˜mŸ9/»[®ð‡ä«®Ÿ ëŽÕ¶³Ù+¿‘µ©ËYÒ]-*“Ö1Û²{ˆÿTSmGS¢J6sý.\[˜ZA“¼â(Vî–´6žk’{R—šcõyùXÁ<Œ¤¢@`|þ -EîFXXÒáJh—È^Ykêc—ríÑ„æ{—D„î -Á)@AÖïÏkÌ„Oï‹°î–?1Ëq§Û -1švå½®¹oÔ3²ãlœéÊ÷˜ê¹|uˆ©…ß··oOç¶PQT´ Óè8°tAà£Ðtö`Ç{°e¤¯jÚÅœ£NØ:«(÷«Û° -Ò".±N9_æeã>JG/¿ 0°oÀ˜iŸóöf÷ý6iÛ‡«jh¯¢¶3çm¢D¾Da|#T›t¸?µqÄw½bö£DæŠÕ"cÐæÆÇrPt¨P{š7_ÉL¬À=ŒÒ09³±Ë¼¢çN÷Ò7ÕLrÉ-ê"§pé¯)Ê®À–Ï1ÏmÖù¶TY±\ë•gæË -ï…Ï©}}²{÷µó_ÊN´÷™šbÜ+âÝd&àxT¹"X¢!·ÕÁê[GÇÓR÷^†Èv›Rf0'ãIf+ÎcØ5f[ûšdÎð=~ÿÔŒi¥µJr äÁeº9fŒ+I-šQ4\{ì]ÏÐKq«hé×2h;h½+xϧCWW•Œí »%=?)?ízŒ˜³&ÇÙ-åˆb ã"qiùQ®}?!˜tâYUƒiý®ñ,†Ž(Šý—8?:ÖpþYÙRÿ²£‡³L!hÚ¢@C—pªö†ûéý^ˆöÜÖ^taÒ
îÒȈ¯ÎÄ¿G¾OåhEÁölë{qºõ/¸3ÞI–¦+4–ø÷«$ìaFœŠ\7JõWív= -æM%†W “'AÝñgÐ7BÛ¢dÔ"ÜíHªpÏy›:5Šô“}ëfzZ´!Ki †¢„夎_¢Ž_vkHx<x²¤&¼|Í·[ Ù²Ö· sÈÆ‹{]ÜŠªXö3Í„X®¼ËŒYtZý1"âs.ñN”³èµß‰"I7Á’ÞéÖKJƒóCl-‹©W^Íkϱ«ç:Êà9í€êÔ´MzþTý¹ð=h+UÛ¼úãÒA(E\7b8ÇQÙÑVÅ÷ùÁûÿü?± -ÂNŽ@¸Þÿø‘— +xÚí–eX”]ûîéi ‘.Qº»KziVéiéN éF¤;¤CBRJöø>ïûèóþ÷—}ìoûØ3_æ<×µÖúëZ÷uë-].ikG+°‚#ÁÅÇÍ÷ «®§' +àãæÅce•…ƒˆ#Lˆ +ðþeA\ î`k-ô€€»‚ÿeƒaÖÿÍ€LÛ¿xŒôT•u8ÿªè_ƒZ@¡çáô÷ª¿¢ÿ¥ù~kdvàw€ /7//2ùýÏ/³ÿÚLr´†ÀwBH + + c¡®.¿
äÞ GàoGÀóÂÃéöÛþÄÑú·…Äs]^üvž +þ‡üuþH*ÄIåú‡DR½üC"©Ü~KdsçqÿC"©<þÿ®øåãú·ý»tÿ³)ÉÈ8º{q ¸ø×™ ,úÄçŸaú0ˆ³+XYùÄðò>ø«'\áÈGñ¯w +¨(Uà-gïÁ…o ƒªb¦ÿ1‰èÒgx²AôüA–Î(Ž1ƒ?p¼7Ä…e;Ð(UtcTǃwÐgÏ–&Wý-PqMÖ~¾:€â³8GNÕr/ç¬ÌA—µ_ßéÄÍ + B÷ݲǑõ8£!a}L³$Haò®AU¬<—c¾E¦{ÛÑ;#ѱ4WRÕš²>¨@‘ö©Ö˜Ý1Âþ¤diapa¯_åG»âsïˆà£âñõ9”Ø2Šý!þ‡f±¦–úæ¦ý4~fá÷Çë—zYfJã³/WQƒÞ.׃:õ¶Q}sï§$w¦nLú=1ÍÂZL!›8ï¦ø—DïR¥.Xl®p"Þp,z4ÜÐr{½¤Á->Êd”ÄëŽ]9æ?QdÊú9O‡yŠ:_ðÔùB¤éƒ*ÆTUDˆ÷È(Dƒ"ä¹qÇx÷ôáÍ„›xKƒŒš?‚üÿ¡îó`çγYç‡ÎYÛôoú.+º_¥õ +Ù)ž®ijKŠ»ÇÂIÚI-OÜ?1n·#þ¾`ð*P,ï®;#l›åÛ™b?†gƒ‡ÉlË4É—~»7m§ä‡ëØ•;>áiëNË›ŽÈx˜<ò ¹ï¬ £xH¶)ûlçpB'¶æöòìÓG…ï>.®=±FWžUÚ“½¥«SÜåÕ´´í¡H«4Òi"%!ÏP:jO +¼zx¤½ýã²G‹g‘ê.+RÂ_Ò]©eÛ
TëÚecØk›i¤À^Ò +\nTØëÇe7xñù;´æ1s>pq똆{E\ eoÍÎ`k˜Õçþû/á ~t·¾ +‚’êåîÎ;ÜiAá=ÆNW1œ6ræ‹ôâGIFG6úã#j»†2ÍZ’¾§Xç<$|Ò]ƒÐœL™le¸‹]æò?Áò«<É–š1À¯"Ư*¨IšGñU’¤M…ŸBèïá#p¢&Eí¬’ˆÆ.-4Ô_91'¤CÍ¥õkÒ6|²A¹êe&qáÏÉŒ„NKš·¢K…„}ÝÇO”¡>‚Š~ZzÙœ¶4>¢(×ïîp‹±r0Æ2´ªãk/›‹ŠuƺŒP7^Ùs« +=‹O'WY‰v¢ˆsý¾øjžÔôaœi,ŒË裔yKíÕœ¤óWXop±|P•l‹nȪ¥NßÞ©²ñ»½²GÚîšÎŸ ¥±ôd4!¾M*²n‘3æ¢ßüûvî¬8œ¾©kûÚ=åѳŒï0TycÛÿÖ‡5¢Ff4©B~x½cM&Š¸SHqnož³å £VÉ/”¿ô‚éng$®Îº‘l=“ùË ³ÈS˪ÞÜpàÖÚàÀ–“{³ví3ö©~ŸÜG%7ÁµN¯»
èFÅ‘R›Òdx¾Ïb7!øT¦Ûi÷ºtüQÌVßÎÆùò4h6è°½ù¼ú"é¦@€Zþ)whm'd-ÿ̪2´é²ŒYc˜7Ù¶úØ«¦G¿Wë…þiÓK¯Š%asû°¶˜Ÿ¼T¢ÈqóÔô‘LSÒÌù¨2¼÷¬)`òt“β̼]@cŸÏÅ«wm#t¬EÌ»Çei)OÆÑóJ–A/a"ê½s3ágاF.xá$=sEpßø˜Çh)ç‰@+LžƒÚÍŸ*qα%+©çcaa¥˜6Þ<µDXƒÈÂÉcU])ú¸üKùdš¥²ç= 2L šÒ=ób²_^Çc£¹™Îó»Ú7¨‹.òbM“‡~(vë!Ji9’Ž21Ô£AÓÅ'ûAO¶Ã„ô%ïä Ý5 +2G€µlA„Í…êcN®óôÞ‡¤æ«ÚqªÓº[SE›£æö~Ç|çx±¼R©V†Ò…ÕGqï¹Íö9Dõ¼¿¶;Õ›¾hüŽ¢‰®•<•d5·fŠŸáÂñ|°/‚75&+boô5úV³ŽöÑHÓP0/ôÉÈ`iN´ßº/^sJæ½Qm‰ßÅÕÞðêÎ:Ç+ZWÃX¬pBØt…ÇŒ;ïöo"hºvd£|߯6÷U^V³e½Æye +.¶Çæ¬ÑKq¸Ld´Â9ëZ£µ—˜ZRßNÀrÑO?«bP÷M“„(¹ÂŸšWsJ=©'>*Éà"ÁGéÖàÞNvŠ{iyW«z_úP¸Ø”¦æo?š#*W ŒéÔœ^~Ç¢RÊ°2´U¨#÷>V¼³uû£ßËOôMí'CªŽÇÖ(´"¸
ª3«¶Â/ö°QúFú!muw{¥'<䚞ߣÈååÑgºÛo’ +)7°]ï?–¦D}tD®xŒÛ·[SqœÚŪºP/¡.)b•šæÐ!íj—ü‘8'¥]|PÛ' +#OìðMh0ûª9FI›¡Bk]×q†‹?ôÖ…ððÀòø¥&ÀNxÀ2EIu×òç]ÊgHÔ&1ÙÚ.çW¸´¾|5A9Î+ÒAý~pʦØ~æ8aVª×…/sÿ”¤8üä€<´ýë‡ÏaNS·ŒKžÍ|¡°q‘„ŠL2E”.FNVS×Ä6bÑEt`Êìhï’Vù
“ÝKraGª«Šîe?J˜V·ø8¢øØ_»Î¹íµ¸4i×ÜÔÉ0M•»°?®K˜ÿbw,´–AsV2LŸOA¶®,€·â°ÚÇX÷`»¯<]ÿötÝ{'Ä ¤]À‚S@·@n¯l¯š!†°KýÒä©3e4õúÀÎo6k½o+,½Bâ–åYîöwöسt‹Çòø†<˜·¬ÆŒw!!¦¾†µš°:7º®á-Bè“æ„_K(¶&&âNw‡mè|¹c¨×½¯ Ñ1ƒñÒâZÑã-zaüò‡‘® æ’’bèB|Cÿ–Sžf‹ïùúMEB=Åö'‰“Oûá+íÁ¸°iîzÞØa{AFxˤã3iŠ™Tâ‘BMçU±`¢Öž¢X],g:–ä)Ë¥"¨,ÿg÷&ûwé$³O_"^Sßü`1º|[…Š[¹õ¡ˆ/¹ÕDœ¥¸Ú4Ï6g@Â[8\ë…ÛÑÎZõÕ}{_mŸ5å°€úPkäê@$#9nJƒ¡m~‰ý6;fj—kõÆ¢zD$ »õlnÊ“ö))ûž 9UP/K@í~’GYûó ¹Â±rMõú˜’Nÿ«g°>1F>ÿþ<ãOŠ»»ð±j\rÐ)£_‹•ªq4.èņ½b³é($XºåéËvxí¤N‰m¯í„†hç?ûü +¦Ÿîè=ª•mª¿ˆ§<ÞÌúµ¾6bfeÌBvoxú³*DŸ gÊÆ»ÕQ#ú»±[ëi¨xÄt +iB番¼ÕÙ`¿$îÒêù„Y[P&®ì}ìÎÓj
hÆàI|
S"é›Çx8µâlN…±ïy¨3ÕKUG,,´ùå’fBj¹Çóãðy‰G:›¡¯
ò¿tá%£·º^ ÐÈ0™µ—,%„]P$ycè}<Å£-6È4J{$nÄ1³ ÊÃãšìïš‘ü¬nmÏœ’Ä{cåf<XÛû9|Î[<„‚)ÓöÌ1:”îh•g{V4ÅtOh +°™)7)“ž›“™Ô&ŠgW´Û<ÊGø-Ã4°…¥z0x„°¾ +G°¿ÚµÅyëÿ“c'bœOÞ& ÈÃÁEuäÎ̳&äݽƫ£7µ_ªAëpSã\AŽõ–ÞçAâ_sÍR6¯…ÇÜÇç>év&ëEé6jbÙZ
›0šSfTÍÏüé¤×z2Q<4êÈJ·3þƒ„\øÉrÛ±¶X\oPës§)®u[\‡IcŒq}Q‹’ÑUé½TîÛ:…¦.¾/{ršµ9UP1ü–VÅ֛Ф¯üÖ +WoQl–Š‘ŸdªÝ
‚&vïñPÀÀâÔtê`u•.Ãb"V<Í£/6ÀoÝ:QT´ä3þ
‹Ú¡ƒ¬TMúع¼+9ÙÖðlã*(³®ÄQÒ>RÖé(‡ûNßkŸ´]'>.õ«™¬XtÎϧZ¹×®Cº +3fZgZÇQ}Ð9°Þî-³ðˆÉ哬¨æP%H¾ü +R»/R9>UUHíF¶ºä¶E0*ªVÀ3šsÞUüá:2 Óx¯>×qØà{F“ãt¤Ìô§¼Íʼn—8¾Ï¼¤âIÆÞ=QH-éõ䪔¢UÖÙ®™|7òŽXV¸(m¥¨~S!áOñóŠ#½˜®çz?Ïø@¸My*È€5[öl6F`¿Î×[%ü³Ú†FI,:™ +¥o"EX +ˬ¾ªß +„¿–CäŸõ–é#â{ÓÚ=•„¤}Ü"…¾¢(41®ý]t«“Ob?9VâZ<'ï+ZžŠ +9ÅôêZéÒVóC”“Ì÷îïl +„I¸÷Ä´&¾*r[¡füJŸ,]í x»%^”·• +”ÏI’Ké]6'‡Š¤†ËwR˜ÄIÄVHœqDtIUÁ’ÆÏ+\¿ì®MÊ*ØKô°cVPQ§Èãb¨:=Ÿ¹þA®= ÚŽo~Ë‚H~7p])Cë« +ÚÛr¿ü®Ž;z|Ê“ô¡äâ”·˜LÝPzE‘¸¸"4ýCµ™Ñï)kz™<pNç|§ö³ ê»<PSºüǤ¶¾Û—ž³‘d‚϶cC×TGcÃ[Ï +©¨åveÍ[“¨"i‰ÒðŽe’:MU[wgL¶z|!á½W7w=r©çÖöd>Bcèb¤ùÚŠ,·0Ó¤ã: +§d/;<hR)áÉ9ß»uÿV]Üû»jìD1ñþ¸¬viR®á+1bHD¼¥8RêˆPûfÄyÞ“š9×r +o2QÛÛjâÓV”øƒiË4ØërC=J[ªœÖ1]Z»7t¸2;²\Ù…vì<tƒZùþðú¯dS®|Ñ„,ßÜ ÚŸ‰òqýÞòrUw'–%Õ}~æ7ZäÕ3øAò"'!¹°%A¡¼M@w›±JØ£(±8Õ¿µØ×᧴Xº‚œ-®:BåU¼ÏLÕò
iåuÞmR4„í‡qT@ãͪý¹&i¸ÀªÒ…°¾á¬¡p΀ø¶þ Þ3ãEÓ:BñåÍ‘œIG! A‚»L…Õ$Ùï)Bô¦¼F'z‹òÌ6ŒÏ–Ý,Vø‚óTV‚Î+Ézb´l÷Êod¬ë³—4EV‹Ê¤´M·ìÞÄáâ?ÓPÝѯ–ÉE¿Ó¢–× ¯8Š‘½%‹{<Ƀ=©ƒKͱú¢|¬`ØJRQÀ?>…"û
#44ñp%¤[x¯¬-å‰ó¹V«H|˽K"B7 +ù d +Çlê6«è½SÀ½ôIC5“\r‰8KáÉ_úiˆ°Ë³åÄqÌs™v½+UR(×|í‘ñªÂkáSJS¿ÌÞ}-¼W2“ýf…&˜ú÷Šxö†˜ 8U”¨Ënu²†øÔÓq·ÖçKÙl`SJe§?ÍhÃùÂzÍÙÞ±&‘=rk‡?05cRe¥Ž’ qpYÄ‹n†mÎËJR@‹f×{ß;üJÌ2Jê4ÚÃÎZ¯ +ž¡óéÕUE#; JÇϺŸ 欄ÈqvK9"YB“8·þ(׊ϺD:ñ€¬—ªQß™´a×hC[Åîs¬/k˜2߬L©_ÙÑÃY¦Á`´6- ·sUGãý4õODGN[ºéWi/ä‹&öÄKßG>ÏäŽhEÀölúpzô.¸ÒßK”¦É7”ø
(Çïa†}9¾n’(®Þ1è.&z + +bPíÎjjçøa’37=–’³ŽLIø;Ýií2F-³º*K±-ŽñÌ[ÄÓa +©Eÿ)ƒòÖd>¹˜„®Ôn¡MË=ÙjÍœ¦¤+½‹RÌË¥–À™9âã¬ê~íÁµ=¬áÔ *ÉÍ9ÄáÏôj~ÈÍ•|)ˆ'…^-DžuMÀŸAßiŒ”T•w=´%©Æ=çiqøéØ$ì?@öµ¾‡éhÑš,¹5ŠšZ8~‰:tÙd¤.îþàé^ ªÐò5ïnHDëZÿ‚hô!gîuñ endstream endobj 71 0 obj @@ -2525,7 +2523,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-150 -150 1020 1020] -/FontName/NDEZJO+LINE10 +/FontName/NWDPJP+LINE10 /ItalicAngle 0 /StemV 40 /FontFile 70 0 R @@ -2541,13 +2539,18 @@ endobj /Length 1736 >> stream -xÚíR{Tw¡@CW(òc!¨I&!(Q¤y!AÔ PX„1™„d’& •‡@aEA^>x(²VYA´`ÑÃ[ª¥YÅ_´bw -„j@¥*…A¥2(tœ´Ñ ª_IT<øÆa€BÿD ¶\¡S¢’(5pf»Ì•Ú°nË”!JTcÀVG!2¼Ÿ–\ˆ"j -¶Ï%ªÀvD…(5ˆˆD @¡¸”݈Åä¹ x˜X6,¸EqŠ·!@Ö Ê9yÀy~*€Ï$’cR!b<Ì—ã\Õ(ðßè[ÔÃ;N*åÃ2¼Ë‚`*Õ½¥ÀAHÈ"F0² Í¡q²Eaž–¢B&&‘"€òÖ‡ª¼Q-" -DÕÂ( †¥*d>€`¢ßgÏoo¾7™Ïá†ú¬}{Ñ@ÅÔA:Å»Âóôyý†ñÝ(Q-£Ìí'âﻯð?tãbB¹Å$€Jw°R ëøÅሠ€b"D-.™LÂäj<(âÔ‰@,Wæ~«aÜàÎyLwÃ1nÞawŽq3‡Ébɵ ë!:̈B]0‰¿§îÀÐØ8„Çt -y¸-.ŒS*L=`øßa1ŠïA´ˆ,øÄu`tj.Mv@¾3Íd+7/|Oˆ>}ƒ“õ.Ó§Ž~ìÕ%ÌeÊSrW¨‰ÉŸlñkÐ7>‚u‡?dОÚ9õ]Úûf{ˆ¯gŽÏ¦ ŠG#¬Ì#º·1ößo»ÿ ïVyÞ…JsMàÞúÄ¢›÷Œã— ¾Ì/zý£Ï^IÊ’%Ø> ÐfåðŽnë ¹“Gà‹ŠþMÙ?òttN†ž²gzÆð—” ï ³›ƒJÓÛlã¶ÜÖ/;§³K—Ÿ~MÞÏd'ø-U¤ÚÛÙŒÜo'ª?¾œáïŸçúq™mªÓER–ŸWÁÑ}E«ôsHѹÕË8¼T³Ö‹‡¦ÜÞÂÝý§VI?sy/J›Sh&§GÊÒfcíû õu‡"’`tãœD›åäE’:‰Au ØÄË£ˆ¶?{j螦pvå«ñË0Yâíê[—JÇÞcæ?l†W‘ͧY9rç™å=™Þœ¬-5Ä
QcO¹Kú'ÐL¦–yú¡6T,î\['…¼¦IçŒôånš¨]‘±óBó-öÕžž‡‘„:Këz‹Ü*}*{ûþ.8ÕÑ÷Uôþoô8ÿ:ó¤vV}×sùéO³O÷èz²%‡ÒŽOéçP—îßv€ÞËHζ„®ÿ2h‰ÖØøè·,å¡–I½UÝ™-ÝÃGnûO6‰šW”›÷Φ3Ï|j©«:·òД€ÍD¿3Œ‰¯|?í°al@ªšíñ]ÝŸ1–èLö·<Éòož«¢f-k`•'C,3+æU]ŸUëç‰Cçct…e†íŒµ»œ×U¸Ù"_¸•r£ÇÂ"˜Ô0œ7;)3>rx—ëLlE@#3Ç+•»tì£gÖ)Ú{9‰ühÿMðÒ˜ZxÇêŠ(xÆ¡µÞ¡03ÂîðÀ´Ìeɵk5›Š¬ŽÝXWñ¤+íKvÔ;Ëi4ÝzåÄçė¨ÝYi/…O«x®T_†$Ór»ZÃ\G—㊧Š{8ÊɘÃ%«bK£ÛWÞñݘˆª¹„
V'ŠQ×vóÏb¿?8T4Z}’ö·èSdÓ6=MS¨ýÕ¯vðF}»’ÊXb†¶¨Ùmµw€[]Ð`³aSpÆ£ôç-ÛÖÙ7Þص&)FK,)× -ÈùÛîXe;Ù7;
ŸIfŸ6^=›K$–[´ùá^>|;*KeÐZo?Õ·õ©åVÿÅq_vß9¥íàÙÛªŸÈ´œŸž%Ú=Ï
Íïíë‹ÐOvèé -Ž1ë°K;|ýøBtÝ^ùÖ,Ùä«OUÒaÌZ/±,9Jü9bÄ¥½‚[}ç¯q]wËܟׯñf®–ñ‡nÌ|è·ú5»ËDº3
6Œ®ß<Mv¯;¾ñU¥î»îÍíă»´¥â/ØGC)œ4µë-¯·6·‘fΤ7ÓÌÀùMÕUù§T¯Ä|rѳި¥,¥Æï¼k|ù^ +xÚíR{Twa†*®¢<Ê… &™„ HóB‚RƒBeÆd’ $!M@Vr +‘ãýD°"QëÈ +°aÁ-Ž}
¢œ“\æ§røLb&Ó1"ÁÃ|ÞÁUý‡ÿ¾E=|ãe2>,Ç»,,x1–£2Ý; +Œ„.b„ Ú1/_æ©a*bbR¨ï|¨ÊÕ"bªE ,S!óÿ6{~{ó½)üŽÀ_°öÝ,D0Š©ƒu±ïÏÓç1ô+Æw£Dµ Œ:·cœˆ¿ï¿Âÿ¥)Ä(&4†€•JXGÀ/G#Z€hqÉ2¦Pã) 6^$ +%aî·º3 +^Vöol&è,þ–¯cp2
”úéãŸSƒ}',n
F(Í#ìrLÛóÚ¾ìšÎ)[þ]ÆuE?“Y’°46ÍÁÞväAÉXýÉ•ÌÀÀ|·OÊíÒœ/‘³| +í/^e”KŽÎ«YÆá¥Y´]‚<5.ðîžßo´NþÉ”Ë{YÖ’J7;ã4Rž>w|ÿ‡io:c# &7ÏKµÙÎ>d©°‹\ŸˆM¼*4‰hÿƒ·†ámçT½N”¼ +“'Ý©¹}¹l¼ñí0fùä£xÅÔrš•K¥t]®Ïòådo©}(iŒ{Î]Ò?qn6µÌgÕ÷u»$’®µõ2ÈgÊ+ù¼‰áá|Á¦‰º™;/¶Üf_ÓëEê‰6
Vß»Wù'Võö›üUxº³ï«è_pÿ>û´ˆ~N}Ï{ù™ÏrΘêuúéáôS†yFÔ'e¶…†¤CE'Äy¥ä¡?ZF¢µ¶~†Ky(1¹·º'«õGøÈñÀÉfqKÒŠ +ËÞÙæÙψºêó+O ÙLô[㘄ª· CÑŽÆdªY½ÿêþ̱$RH ñ+°e"¬š–½¬‘U‘±,¬uš×õ}ÖmW霧Ž]OÐÄL»¯»h³Uh+õ¦ÞÊ*„Ü8œ?;)7=ú`d·ÛL\eP3×'»tìãç6©Úû¹HüèÀMðÒ˜:ϧšÊ(?xƱÁ±(+ÂþÈÀ´ÜuÉõëµ›Šß\Wù´;ýKv&Ô;Çi2ßzõäŸH¯DQ{²Ó_‰žUóܪ¾0
M¡çu· +‡¹N®'bŸÅžÜËiRNÆ)]Wݱò®ÿÆ$TÍ%\l´>Y‚ºuX~÷Ý¡¡ÂäÑšSô¿DŸ¦˜·hšw9\ûjoԿ繜%ñÒ·¸¯ö
r¯,t1nÉ|œ1ð¢uÛ:‡’¦[Bû¶äØÑR"Õóz!¥`Û]ëµlg‡‘ñsé쳦kçòH¤ +«ö€£Ü+GîDe«ŒZwÕÁÛCk
íüêø£5tÚŸÓw^i7xîŽêG +=÷ÇçIöÏÃóvôöõE¦8ê»Cb,:íÓÜxk+¹]¿B¾±H1;ËêS•vš²ÖFˆ¥ÇH?LŒ¸vTòãjîþ9¾û^¹Ç‹†5¾ÌÕrþÐÍÙV¿aw›Év¦ÃÆÑ
›§)Nãõ'6¾®Ò}mß³¹£‹th·¶LòÐè%ûX¨0õÃSæÄ°ÞŠK[YÖLFóXÝ\ØTS]pZõèj̧‘¡—¼LZËSk.¸UÂWîû™HEÅšŒÉ¿Ü—]à\ô»¦“Æv/ÿ¦„¿W”Þ¹w„ú_>„ÿøŸ( ’!°RÃÊáŸ@“ endstream endobj 78 0 obj @@ -2557,7 +2560,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-32 -250 1048 750] -/FontName/OVQWOV+CMMI10 +/FontName/GWGRXM+CMMI10 /ItalicAngle -14.04 /StemV 72 /FontFile 77 0 R @@ -2570,21 +2573,24 @@ endobj /Length1 942 /Length2 2785 /Length3 533 -/Length 3459 +/Length 3458 >> stream -xÚíRy<”mÛÆck£¥ÜdÙìDŒ¥’¥±Æ˜¹13ÌŒeHÖ"R–Ðk'•]ÈÉVB¶ÊVÊZ¶P!Û;õ<Ï×÷õ~ÿ¼¿÷¿ï÷Ý×?×qœçy\Ç}ž§´„…•’>žì -“I4%$©˜›› -`NƃÒï©ðOsæ žàëõ{Ô„†%pú$w"(!U`•?yÕ˜ -! -! -éñjtø«ÏV·yòYNõN*ËŠ î_ÃÑïÉÖír~/5¼V|·;Ç$e+™Äs&xöÞwB_oHpRwÃñ·5Öl¯·\•£ÅT‘k²
u$ω8ÁØà’u[¨n5*1{è*dªVôÅH䙣V}âZï5á;×ñyR"AM¾¸ÏÖO½~®Õu»::iɃI~71ÚßÛL¨£q±qÙJÜûÂóùßgà¾V}~BL(•Âõ×MêMËõ³¬¨vWêG&%`]í;çy”?%€:_xd¡šdU©"(p¾5DŽAGƽ_§®¹¦
DõÕŒ¬§±#“‰I—M
±&"Å°(åfu5aÓËú
U¶À‰’¢ùÝ\ã1º‹K0Ö‘Ò\³ÇP» -L8Sºv§o8ÜEôƒ¥ÖÊwCÅš`7JFM#KìcÚ׸º.¶š†]šöè¢Ëõ»ï3Î3Ælo©ðe-ïõvbWËês@j¤×F… ->¦¬ù-†/º7E;[&¯8)|Ýzö¢ç<™¡G>šµÛ-êŒÅ†9©r -±´±E8¾ñ®¸|Fð@aŸ [Jö«ÅG‡oñl‚NhnÏ٤Όö
»övwYä@kñ©‹ësÁz£7ïûÊ8=Òµ8÷.TÃ%‰‹Þô?3ïrk€ôu î»ÂÞ;÷J—r®OAÁ•2:D办W퇰jû½#iT„ïtãHÛþã,‡Æ$ò翽ܜIÖ☵쇮×[ÍR«Z¨×y%òÇ隢s8‹îBÛžrø\Ç›9Q½9Ec÷[˜ás.[~WØ»‚äf£Û{®äT~¿Š -sX;ZÁTÆGäJ¬H[™(Ž´”8¶inlQ_\ü.«§AD¬eWðî}éLkøJ±]¼cLÏm™Z ¶‰û¡˜B£ï‹YFH]¶w¥š×Œ3‚xy{‡j“R(uûJŽë¾—(”tY¥Óä7p˜ÃMEšì³½ Ääx¹XQN"¼uQç¥Ðø«VýŠŽBö@™µB¬ŒT;>=VÚ!tº+þ«‹qµ-–wL5†þÚäKÌŒõ|úbˆåþ\7*ªsÊÁ5NHÎÕ†p}˜Ûª)×PÊrhŒ@-ÉT¥ôg~{ˆ¸¤òùFA7̨,3ïÔòŒ®i¨">e—ÿüµ>.ŠÝFõÔ•Û|[oæUÖ
·íÓ¾¬ûýc\æHg¯™ŽûMj¾”yNf×ËMŸ|6§Oá3Ã^•%0¼¦óÔÞäD¿c
M€U±d_ªÐwœ:ïkÙŠÂrrrÙm…fïð«x•ßÍX qrìÝ×°êÉ¥|þp¼U!…K¥—~#Nd]zÓ̺Éç$º¼¬¸TH¹Ã'o2Ó•½!¯úù?¥L„ûS(‹¢#·µÂ©Õžpðî’¾Û3Ñ°µS<ÐýZà²ÿ¾7wÇ
ŸÏI\7Ÿ\çÑPVÎG©„8GKÆÜj´ßÛéïÈåØ'
-oõ°
¶|óšë¦(¯«½‰ÀRXЉˆ7Þw.5Û»”pñu=³‘ÜS²çPxã0ÎãÞúÙ±ÃòõÒºVl’ƒ¢ñ -ˆê®OR/³…í<Ö1LcO¼êÐU†ÊmAž”¥HsOõ„FìéÇdf²Žr‡Þ–›ÛΩ²k£r]oݱ5,®;˜°í5ž°»ž½&`>ÉâYà’¿}´¨áL†b˪`éy´cjͪQÿ.¬ªt“÷ÌâvíQ¼êÍ ŸfÇÐíÝVO3²„›Å¤³ØÇ÷“Ì.¥ -NLªnðW.ÖÝö]_ÔÐû˜=2€õ£‹ý=[hº
ÇÌ'¥‘ë6ŽÜ˜±è¬ÌÃc|Ž8ßþ¬#ºZ³ë™[»Û6NÒÒ[89¿q¢Fº\`fƒ‚WèîIÜ“™é^ƒŸpx¡w£Ø*ñ8{®}vÚYfñòS½ˆÉ)V”4+Ìä}ۢ솰\y€•^Få)BZ”³Ïs3ï-‡n*#ú}O´tªþÊøCÊþ°Ëy—Â}·Ñgž¨;§íÙ8;?ØþÌ»å·VÓß0[8ÉüVçÙq°ùSÒZ>evÒMH`y$V˜È²øuæJç1O*Sf¿ê«ýkBg›çÆrCPM®ÂGpI%ËÌ¥V—hSÈçÓ‘`ÁpÁ±ZúEµ½Æ¬¥óm*®yáÂÓ—Ïeæ¤|ÆGk¼0ø?ÈÿüŸÀA,…FöÂR<!õûùÒ +xÚíRy<”mÛŽÇ:ˆQÈRn²Çlv"ÆR²4Ö37&c†™±ÉZDÊ’åµF**ûš%RBBe+e-[¨ízžçëûz¿Þßûß÷ûîëŸë8Îó<®ã>ÏSZÂÒZIOvÉ$š†Ô,,L‘€qG ÒÒK#I†X¨ 55Õ +RüA<A"<GÜ@ ÿaË”äNÔÿ¤ñ~>‡üA +•áûéT`øÄ“ID:€Ý!ð“dÆ{ ÃÍ¿mìñõ»¸±‘xëýCþg³þ%Žõ&ée½}üh ° ãA +é÷Tø§9Oðóþ=jJà 8}’”*0„ÊŸ<jLñ–ÎpÇ©àO$áwÂèßOpŒ‰•Å‘¿¦ûgÔK Ñlè> €ø•þ#aF—(„@ÀC ŒDÆùûæüÛkF$O y +äÇ`‘H + +&Ç +oÍ +9^¯Å<u¦yuúv,Ÿ¸Dµ‰Pî%²ã‚}ÑÇzV×±â¨l5+u©~,*Š)=q!9¿ ´ý0Þ~ý 2ÿ‚HM¼—+`²EK‹sÛŠîß4^‰84Ì0pgÙ õkbòDM‹â¥€zù3õ#:‘Ó–ÿ°ñ³9õ® 9kŠay¤˜fv¡.™D'•tíƒ:ÓŸ}²yÁÔû¸˜¿Í×p>ºkS`‘œÚ½s8sÃñê ?,^¾*xлQ:jÖUêûd«ûB»YøÅiÏnú·<ÿ{¾ã<cL!V +_Öò_Oa'vµ¬?¦Eéq]oV¨äÛ“s¾ ÍðyϦhWÛ$â…¯GÏAô¬ÓôÈbàGó'ö‹:cqáΪB¬¬‘No|/<PôRÐ=5÷Õb¡“ã·VAg4·×lrWÖ“
ûR¶'²Èö’“ÖçBôFÓïùÉ8?е<û.TÇ%‰‹Ùô?{3ïzs€ôu þ»ÂÞÛwË–n,\›‚‚*åtˆÊe=ïúáµ–{G2¨¿éæ‘nÖý&¬†Æ$ +æ¿¿ØœIÑbŸµê‡®™è©Õ,4j‹¼ùãT]ñY\€eO‘]o|®óÍœ¨^§œ¢±ÇMÌðY×.‚ì]aJ«Ñ-ÎË…7ª¾_Á …;®ŒÜÓÎGäJªÌX™(‰ +²’8¶ia“bÙXRò.§·ID¬mWðÎ=éL{ÄJ‰}‚Slï-™TZ¶©Ç¡Ø"£ï‹9FH]ÖwešW³‚yyû†ê’R)
ûJMôß‹O’ J»3iò8Ìá–öbM¶Ù¾DbJ‚\œ(Þ¾¨óBhüU»~eg)!w ÜF!NFê >3NÚ1lº;á««q2µ#ŽwL-;†þÚôKìŒÍ|úB¨Õþ<w*ºkÊÎ%^HÎÍ–pm˜Ûº%σPÆ|hŒ@-ÉÔ¤ög}«F\Tù|½°fTžryFWŒ4T™ºÀËîêK.SŠýFíÔå&»;¦U–
÷íS~,ûbÝÞÎ]+6÷ŸÔ|!óŒÌ¦
V˜%=úlAŸÂgG4½þ*Kþ`xU籃éiˆ~çš +ËÝáWñ®¸“µêìÔ·¯iÕ‹Kù.½z¼U)…K£—}#Nä\|ÓʲÉç,º¼¬¸TD¹Í'o:Ó ½.¯úùm +6LQ^W{‰¥0£“þo%¼ïZjup-åâë~n+ÉYÊy(¢yçywýÌØaùFiG]ë HVÉAÑDm'×ñÇi—XÃwjXf°e^qì.Ç
åµ!OÈR¤¹J¦zÃ"w‚€Ìc239&†Üa‡†7CäÆæ¶o4ÙwP¹®µïØ–T‰LÜöOÜ]Ï]°˜dö*t-Ø>ZÜt:K±mU°ìÚ)nÕ¨VS¶É{zq»þ(^5=Ø·Õó!´T{·ÝËœ,án9é"öñý$“kµàá£'þù[[T¾‹Ù× Ü)ƒŒâ¢îAÌp¸x~úÜz³éÅï:¸¡GV8‰*[˾lKNíF +Û(»?›| endstream endobj 85 0 obj @@ -2594,7 +2600,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-27 -250 1122 750] -/FontName/JAYYKT+CMR7 +/FontName/YFKMCR+CMR7 /ItalicAngle 0 /StemV 79 /FontFile 84 0 R @@ -2604,26 +2610,34 @@ endobj 84 0 obj << /Filter[/FlateDecode] -/Length1 985 -/Length2 3523 +/Length1 1003 +/Length2 3713 /Length3 533 -/Length 4217 +/Length 4415 >> stream -xÚíUi<”ÿ»²IÈ–x,c0Öd+ûȲ
3faŒ]d'û¾´ˆ’5dY"{Ù²+Ù•HöÎôëüê~ÿóæ|λó9Ïóæ¹®ûþÞ÷u/ßÏæÕ7UAâíPêxQ*•Ôà†2 - ÑöDÀåˆÆ ?%iáð€Ì/éáú·ÉEp'é„H:/$•H<ã Q ˆž”
EÒò?–õߨúgpuFýžÔ¦³"°hŒÏÚñXW"Š -;ô6ޜۑ»,:È\mAi^GÅ<·¹Y)òæg}òô»MäC¢kÓ×W¼5#MÈ‘¦îñÊ…;‹
dòö#×¼t’DîÛì–SáÞ¨!-˜Ù}Ê%˜oaƒ%ÃŽL¶”EM‡«4Ì• p|ÛM4ú–õáñ>úÉ;¦5:·cÇW“±ò]Wn„Tï-b¥åÍ^ÈCdÁnñ¶/û}bâ®Ð¡%¿Åù4ùlÜLâEå\C_}ø*Í¢ԯz¹»Ó=Ëú¶Li4[k=ͤ (Ÿž‘8:²$°ý(r+*€¹üÚ¼ŽÞÜÎÂëL,LIÆØáöže0šîò0Ùâ -¾Å»{)|ü4®;QýEo«éý¹ÌÖ^ŸIbgUÄãLÁ}uÁS~XÚ3ÍJ/RøÌË,õDkí´¹`ê{|/çm«"‘ò}Ž±)¶_Ô±…ë°õ@Že:îIcÇ„.òµêÒJìZ\QåheK›z*úúSa+ýJ™ìãRùJ/›t³Y^£ÝÒËFôíµ±ôí…2¾¹~7Þ׿"ÊV9©8j ݬ(£fO¢xÐÄñ$6"³Àl~8
ú
Î1DÌȱSkOºŒˆ<}šV¢ž›øj-Ø»wÑN
XáýžøÁ|ó[2ßѨ,«{2½´-dÃqóŠÕ<Ô`å4(²Xÿ(~r!ï}rk)dú!B¿’ ÎBÏÑË~rŠ_‹Ux¾$™EoÛÁ‚)ŠÑˆýð(¼fÙÎ ü´ÛqxàyàâœÏ,+›t1_U]ššª¬|è©/ÃñiùBÎR±D*êc1oJVmÖ·^°pxÝ5L“ª¤€Xe•ÆÞÓ«ðV̺˜Ûàæe˜ÏÆŠ†fuæØfˆbÍ2Þy¼[ÀoqÐ?!g¬S;©>ì̼kÂV–ê ÕW«Í]Õ¥cB/8+¦ù8LÞ}v.XþÓ2ƒÜ]avœmÊCùö0 -a*6ô¨Ñëg¾TãŸ!Êþ:IlŽì†iÏ7ó©ÈÎì‡cYù=[a¦xšµâ—Þ®=?È6¾Ç%'%²¾ÏÛ=ø&$³B9}¯( {ÂÑÍ2½cÄ‹Îœ¹Ý@qHnÇzJ'ÈŒwÑdÍ›•€½â=E·“]¡„±kÉìÊ1cz+2ºrâœÙzc¸–«Ús²pÍAýoê2*ÅÉ
£Jx=;|:O`õ»\ë!2uåãr·Busv™Ñ|ЙŒKójƒ&=˜ðõ¥ /V…:Í$ÆîØH3x4ݯÇóœè4ƒ(Ø&°sºže9ñ‹{ó!,ahÕ4Óþan«5Ÿ
¸š¹jŠ#@âw$óªˆ wî"°è’GÀ½¢O/ìV¢û‘bFŠN(ªÝÝÐ\ ‘+Șb¡µ.q+ëúÍ®8ÉølyÎ;ÇÔUßU -!µËû%*˜{v²î^gwÑ$tŽÇvý8õìCz› -†Ýø¶Î¹ë™À·Ù™mV~Vvv¹(Ønä›ôÐöå qÃÅ-¿–ë&o´‡²XxËØõŠr‘PT)›Í#ÙSžEs]=¯¢Mû5ïá7?.S3Fvå&õœœ"·n¸û€1%Ðd+3åËÎz€R×;Šþ²`©vèNf¹w!¬mÀÇb#j¹@ßv>ž*Ð -ì;Ìi–ø837®Eý‚<#î©8ì3;íøSÜ™…ÝÇ -ðŽD–øÉòbÏÇÏȘ*ž•†ûñâws@Ïœ(Ã;ŽÞ«ÁOÎñÕ;ÏK²'¨×ó,Â>ÇY_wUáÕ7×ôžï½ä{ï¹Å&$…BòIÕè÷5§²#sâÇXå±J-®©:±÷êÕo»/ÑeØ)VE¤Š9˜äS\ì&_bEêë±ïfÕ$пý²IkîS.טß.yÄiûŠÞx$o»Z1ÎC²ÖjzÒ'/rþÍÞÜ€;Çb¼/}„PÒŠªË=no…;ŸÊ¾6|"{ÞZ—öÅ°ÒdupWÙ7¥V¿ÿã´Ñ‰Î}Ïàç'ÊC5¹X_5-h_K^•³ªQÕ¾þr.òÑz^êpS9»‹®”¼èZîö>Ȧ:’‰Mb•“¸xaêû`/ÈŽc÷›¦ÚÐ=àô[Ö-¥Ûêc
>1¦G°ibÖ‡òNY#lûÖ€úúö ‰”…¸ÆÁoçs*_7Ûm_[××|u`±(ç/KùßK¹äU‘@žƒMt™¨ß\7£–kqFï†óȨ¿Ñ>lÞßÆ„»¹%œÖÓH½Ûz²Ôô&é×êçÌãZæEl¡,¥Èý Í´D}¿ñìÍrôNÝœgu7vÂBa…@öMþíÛÂ+™ -õ#ø¤ScqŒ¯ÏÞzâ]Ivî‘(Ò.VœnÞA3U"kyaOÂM´ü äê#z<kóÙž›•:ïþQ•±ñ‹˜GxË9uœj&IËÍõ‚R7ÄÑÔJ¾»ƒiEªÝÄ—nbmp÷²îÂ4N¢çŽ5R.«vI½®`ã^g{Ð8[Õöx×týÌZ7À£%æµÃÂã67UV@Ä*EmõOÄA}Ý/ŒÛ®•z[¼wD›åøä*¨^pW×U-È1vJ)°,µŠuïÿ0Äýµ“ÛÛalÕCâî#ÈÅ
á³’€ËJLù?úÏgL¾¥Þ¿àia«~ÌxöóÊà%Û©JѼ»äÕ -Ÿ}íÆ>Œ¡ÐyT(Äå³Kxó.E›iF¿²·=ÇJñN׎¢$}á"š3o)ýrÑW\]ì¸1¨«ÿžä$„B½~üÝ[Ûs´wêô€Ï==ËOî2ÜNêµ›ªl³?G£áq˜wF}Mk`s‡áYŽ÷é,Iri8gà©xJ©¡¢–¼Àκξ5Pû}1¤,”"/„1ŽOš¾*ÿ†¢S}}§7ùLu:p†ÃK’cyoH"—)|‹É$j¾¥LìEÔ=®77¬‘±<…÷%Œ§"ÃK¹u+û5=g¯J…Heî~y¡“©{U@:Maã³Æ+¨Å8’K^¨0fK¨‹ÌÆ-»¾¦-ÙL¦¾‰‹èÂßn(²~•·4šÜ$è܉â˜v§X|ëi¼Æc -?~y£0ôN!«€à«õ§}&ß-‰6ºÈœšŸ>cTxo(ã¶û9+Ï™4N9|µÝyóEÿýËo=VÐ:ŸBöÕM[†Gq½º1ó¯6<Žpg&vÔüšû9lÄ>+}Ô3ZäÃø#JâZ´ßO -™ïžÅ¹Þ?ÿ0t˜¾iik…M¨ß=<al‘zï]ÐþüéwçÔwsx. ž´< ¼)®ñ6Ê7’Œ~xˆ±•{1ÈÓ‰!>ܯ=½Òqc€5ej_ê÷ ` -”Jõ#‡"\£7õ0Õx¦îi³ÏV`Ϥ–5¯Éþ]‘il¹Ò´ÇÖâ•€#ÍÎÂJÁr!ઇBöÚŒþ—¥Â€ôü +xÚíTy<”í»EÆVv¢ƒ×nfìDYÂ+KÖ¬ă1ÃÌØÅkW¶²o EY“]ˆ„²ïkv²¦t¦·ó¾ýÎû;ÿœÏùï|Îóüó|¿×÷¾îï}]×ýðó艩 qv(
–(‡) +âçWãàD4{ND) +ý§ÔõÓš. +‰vwùgT‹Ç *X +€þ¤Ð
´ +©&"{8†€ú“Ga‘ÿ4A*ÛŸ æÚºj†"6ôgLŽÆ½]ÿÎúCü'†ý¤âàÑ^€%T +…‘„¤÷¯¯;ÿØK‹À!ÑXÒHHË +@ˆž¿âÒ0vÄ£þE!@ìqîø_i{´Ç¿(¤ +‹ÚÖ!ºÚlÝï²2.ÃÂýBàfj‰ëþkªÍlIâãÅb½«ùÍ´+/䞖Ε{òYÒ̦y~ì’Y6¢m믎¦mËÿ-å‹ ëãÝýkblå e§¯¨wË^Ð +³ÇQd6rä= O}n6?˜k@óg¿‡O˳SÝsþ R< š¸N57ºc-Ðsx™ÒFX^äùòpÆ|÷8|úñºtZ×XrIkð¶Ãîµ;ó0ƒPD¡þiìØBîT|s d"®_Ž×`¦¥ïáåÏ£ãÕbž/ŠgÖÛ¼loÁxï‚û·Ó°ªe;ƒþâ.‡ÁþÚ€Å9ïYV6™BpE·M’šªœBÝÖ`lÒ3Az§f©…h"%Õwq¯³¬7Y‡<¥ÃtkÔ1ª’|â嚇Å7t›1'èÂË–ŠÒÞÛ+š¿R¥ï+U-ãœFºøŒ ±'ïF嵫Çô¹C/λ>øœëByÒì£ÕJPuîÕJ‹zý=Ÿ¼‹e.Hau™^~›&ÿqŒmBß|[(…0%ú£QïKÊ‘uˆ²Ÿv›»a’fí.|>Ùù8k8íY÷çþÐÛ¸ó…-^®Ý_ɶw‚bâã²NånËÊ®œÈ(ðïup³JîøàIcÎÔf 4 ¿o=®„ Â9kñ5?AL³Ú »ÓÖøÂÕÎy»×yÛͤÆúTUQ85z\í¬=ùžRЦ}N$”ÍÈ‹V6çͪ™}›È}ÇÅö5£}ƒéòƒ{ÀÇ9?]ÓAµH»‚½ïù'g4—ßÚPÏhˆÜÀ¯¡JgÇóÎhÞ„#¡[ÒiàÔLã”1^èQpe‘ã˜ÿJ¡~^È|Ì +íÅ@àÄÆky^^›[˜•\•ü$âÒCž*ˆZìëýæKç1!¾]{g•Î~FÐ +Zetƒ·My
¾Èßõ©l‚ž²‰”fÍpÄôU—:²ÕŠ±²ò²ž"“Œ^óm?ª¦o…f˜›'Ô%„Õ;½·Lïyeúp¯îwóçîˆý+&dé³ÜËw‹\==nRBSß©>Ò³îÙãñ¹©[R¯ë%P…¤¢DݸEˆ):³~¥¾õki'@UeE·nÕwöÊú6õõ@’“R0Ÿ—‚„†ÅqXúñFó.éßo3T€]}âì +‚èž®qø¸÷Û˜÷½¾ïÓoè,ŸÏÃ8 *â®îä_¨Õ{ê`LPanv«@àqaóÊ•:ùLø^{ôaE¸ÿû7ŠÜ¬ªŽõÉIŒz'“m‰s-\*´/¸²øðÖ÷¡gGˆ·;x‰ŠKEÝ?Q§›ûÜYñ½’8Ý¡¶ìÅáxÄ17%†HJº¾Ùò "µZI‰è¯›å:MSªáŸ}‚ú¢~%‘•9JíɆñÚ4&n|Lc|iÃœ™ï+VaªÅa™öáÆ@¥)}Ù“°b/ù•Zy(5.pWKUš{i +ÙR3¿ȥ +¦ãtχ +úŒ+nïhUd~--,¿Újœ×Õ@ã«y'áøL³Út5ßíÕVË-ö±¶²™Ë‹Ôvõ¬“ߨ(²â—]KšÎn +~¾‹3ú–Ù^my_Ûœ¹É²Ð—s-\3{½q“3Ìdoùýeò4µ‰o{+¼hÌ ·[sLêVòjX + +xÙjÁA{ÂŒæK‡”»]:æuh S€˜*õ<^>-ÇtýG›ÿÈ®f©xZèSëM‰«ŠOã¦Îï¶=~¯ç©W¿H}\:–f Vbžß^t¥&·båÉTDC\¸nÆÚ¥œt–üjáæxÞ糑ˆVÜX"RS½¾;^íÚ·ð5ñDŽ1ÅïeÆçÜÚ¯#R«µSˆÊë¤ëßp·'kÛNÞÍ +Gw}»C' Zʱeɨ¶à74óáGˆš’Ùò¾m“’Ïe÷Ø9Çl
wé9+ô“».N +cÈ9õÆ9bQ”ІÇèú)O¨Ei;Ùë…’nkX9ïò‘–ºßèÒ º¡Ä#jã´Éß{©a‘Ž|…²´BAE²¥/X’ò\ÊGòæj”‡¦ åÔ`n¯uäQg†&OhÚxñ[!"µšÉÔž!Qþµ¥Näµ¾…z›37JŒn#Ï:QMŠÊ nÅúfõÉ¿…JÖcÈtíøí›n›ÏŒí¡¨ê(αÌ]σõó¾¼n'ÇeRs5ëp‚¤á§ÕöZßéþä ¥Ó5ÆP5dŸN/Б´þ®—5³Þµ÷ž‘1)MA+ÐV0p6æîLðý&îä—<]·žs»ÌÄ&¼´jJ Wí>fŹ?ZŽrïé¹’óç)û÷‚!ëCëÅm“ˆFÉt +ž—¦ÎÐÔQv»`Çkñ1>]Þ7èΙ׶•ÙÊ£ÄluøÍ=B˜ÖKNäî>â‚?|XH%žŸ¡¬ÕàøŒU1FøT²A1™\6gi_Ʋ\ªÙ~jq‘I½"÷îc®”À©ƒf·`)¿úàîPµfÅ蹡?r={¤§,:˜]4€ß»îbÚñäÞ®û“å³Yf©lö£A%TŸœ‰Ìg?DÝp¯a÷Õ°2àÎÉP¢üͼúø)³W@d«´ú*Œ~• èœq+E endstream endobj 104 0 obj @@ -2633,7 +2647,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-15 -951 1252 782] -/FontName/ZAJUJN+CMSY7 +/FontName/FKUFBP+CMSY7 /ItalicAngle -14.035 /StemV 93 /FontFile 103 0 R @@ -2649,15 +2663,16 @@ endobj /Length 1447 >> stream -xÚíR}8TY–"FÙ¾#GEYfæ^š&RûÒú1B¦¤ÛÌ1îÎ̽\w4“<ùh—mSI)¥‰bCE¶µ”jË"2¾ú¢ÝJK=Õ¶}¬Ý‹í©Õþ³Ïþ·ÏžóÏùýÞ÷¼ç}Þß±²ôõg¤äèN4å NÀUèÌ(aYY¹R£q’pÃhèPGGT2€ò -…¦ÈéSâ -ÍŸR¡¢!„¤RÄpjò&„R\¥ŽzИ—™6:—ƒ8ð† -`¢‰a$Ř*:\%N¨¢úC-d.àb„l
…IäVÀ0ú=Œ÷>64äðÃ\\Hu›ù°lG -P{ž=àÏ·ý+1€À#UÐÃ
ð™ò»EA‚üyLºoë0œ™„j(aíÍœŒµ›nû|õ³sÍ3‚¾½T×Z²g¶¸5õù!!M¤—@úì -©««µµ{z 9ãêM‹V^ý¾ø†Š‹'o-Y™?ö¸EFt‘ƒ½ä²AGßµ3ÞuÖÉ%è$‰Ð «Iü,wS`žÀnÑÑW=‘1of½^·quձ̤¤Ö9hüâzëT´¿’óºï⥋öâ±#ý¢y:w…SrUÅFò™†t_Å9[¸¿,×o,Zïj6¾´ò qÒgéWó§ö/² -^½Q^mz%¼²É ù¨Zγ›ëz„\›v,ÅnCeáMÜÃæUY[創:É
¯”fLjûjN·Qºƒg#Õp¢}ßÄ€ƒš²ÏSŠ,[v¥µhù…!=)8Z“‚“F»{3;79Ç\ׇùDÆ}‡ŽÊ¸ÃË#4âTάÎ#þ“:¶€]Èèɺü¶üª‘M»dk{{no›ÔÓ¯We>Íåã7~—܈êjÆ…†è‡ÿžo§Û8$öLk=I‡"冪…‹C -W(/OÈ~Êä…6³~½3²ÔI¿Åmãíà€ûE¶ ÉeÖ½Þ¿-gˆêŸÁ‰I̱ó·o+ï24=ª¾±Þ¯õžøÍ´6ï½Ur±õ½ ÁÏWqN—Jf$¯yéDj›«T&çÆÆÿRó¦Ä:£F4!Çk)tøÛ–ZÒ,wáäv0ôˆ¹3§J?ûz{ɲŠÍÇnV{%?(u\>bßöÈq¸U1» ¤ÃÇ\ëñ0 )ŸrxÇÊDoÛ#§¦7-3îï?ÞrÆ4³8ÎaúÆÐrñ,Ue˜xž[Y^Ø}Ü,Èõî¹ëcô–¿dÝÙ¥úŽ–ïéf›ý®MÚ,¾Ý›úãá:"5¶ð”ž… E]6iKST?Ýïò
Û}c”Á×ZK¿T
ûÏøìQ:Ç![“ªc>-j»x†ßbÞ õrÞ¿JÓû„mxŽ0žÞÎ *›¦ªÝäbSÅoZqíÖÊøôµ£”Þg¶çfžìGPe_à’ÅfSê?ÁÉﵩe±%OŒR¿¬2;¦û|ÿr˜)-8ÁÕVÔ] -¾Ûb“«î^/Ÿ*ëgn‰Ôò:K—æpsŸžñMVM¸<Ÿ½Ð@þåbý/ðŸ( FѤ£ä,Öõ¢M +xÚíR}XLYN”šh}+m:EÑÖÌÜ[Æ(±ÏT²©IM*†äš9MwgæÞºÝÉŒôÐÇ®Ö +‰ˆ(•µ*”–Äai+¥éËWÙE6<´ÖÇÚ½Sëa³ÿì³ÿí³çüs~¿÷=ïyŸ÷wlýÙ)¹z‘ÍF9¨+ð.㔃°lm=(ˆÑ8Ixb4t¨‹ +*@y +—EÐ`¦‡½ŽÅ%¤p F +ÃY\?’y
2^þ±¿q5TÜK¥PøaJ¼.§`L‰+4He¤Š†’RHC©!pЛJq•r(êMc +\" d +Øè,âÌðh/\
¥þ8-‰ +¢§NqÿøuÀ¼…×£»Û„ÂB
#~Ï·ÒO/Jk;I‡!åƪó„ó›Bã—+/Ë~Êä…µ°~½=¼ÔÕ°ÕsËeA÷Š’Ëìú*|;SÎ2*4<3Œ›˜ã îØVÞml~ZUs9r]@Û]ñë)í¾;úªåb»»ã–õ¯äœ.•Ø$¯ùèEi[ªUfçœGÇÿRûº½Ä.£V4.Çk)ôøÛ[Ó,/áÄZv0ìÈT7NµaöµŽ’%›Ý¨ñI¾_ê²tؾíQâÛbv7LGŒºÚëmZ>éðŽ‰¾)&®Í¯[mîík8Þ“RežY¼ÁÙ2)¬\<DUYkÆ'žãV–ö·ñ¸söÚ(ÃÆ¥/Y·w)¤þ#å{zØ¿k7n_ŠéKýñp=‘WxÊÀJЪ.›°¥9ªˆŸîuû‡ï¾>Âèku@ª†ýÅ¢øìç»Æ [7ÖÄ~ZÔ~¡Šß:µQë㶥Z¯ï Ûø,ajÙÁ )›¢ªÛän_Ík^qõæŠøô5#”¾UÛs3O¾AƒPå£à…,&5|‚“ßk›RËâJž˜¤~YmqL¿ÿR˜)-8ÉÕVÕŸ— +¾ÛbŸ«îY'Ÿ,ë3Õ( +9¨åu•.Î[îée™ñMV5M¸÷ÏÀžëW ÿr±þøOH£hR‰Qrënu9 endstream endobj 107 0 obj @@ -2667,7 +2682,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[0 -250 1171 750] -/FontName/ANYURY+CMMI7 +/FontName/ETNNCI+CMMI7 /ItalicAngle -14.04 /StemV 81 /FontFile 106 0 R @@ -2683,15 +2698,16 @@ endobj /Length 2630 >> stream -xÚíRy8”{¶ÇPE„×2FËŒ™aBY²d9ŽEÔd^¼Œ™ÉÈQFÙ·ƒ¡±$²mJ&ê©ì´8‘¢ÉXŽœ¡ï|]_çû绾ÿ¾ë{ß÷ßý<÷ï~îë~^¸š“ÒŒH9ZQÈ4$…1,lñ€àˆFÃàp*H A²%CC}`?`u4Þ§+ø`08`A bR!_? m±}•…ÌA*äM š(ñ& -™Äˆ LÇ‘"˜ -ÜüÇÆþ¯ïÅè$’#!pU~5«¿µ ‰ù%0ˆN©€…RÉßS€_½9€Dˆø}×–F AÞfd_ 1z(´Þ×:l…€D'ˆæíøHÁàZ$¿w"ˆo͇Ž™ã!7çC;¿îökÓ‰ -… -[]+ÆÀ -TØÈ¢T„2]ŽfVŸ·twâA¸›â¢èÝ÷êÐ&þBS¾Réy!W^G6Æzz%6GÝ@ w‰>“ª‘ÿ0Ohc‹kf9†/^qgæ:£™~RŠkèŒbNžHMh=ø¨ÌgžŒR¿©àdn}9Áhr{(ǃKµ¾çâÆ¥‰ƒs¼îþö¯8c6ÆêÙ×ÓŽUºªÄ5™°>F÷o@.ŽT±(É£ê/„*+öŽFø‰%}¹TðñÊç¹Ðñ -¾v#‡bn×=>À•öL*Ò(®Î}ã@ ã,r8ÓÓóùD¯ -ÐÏJUÓ嶋™¶ÍÅÚƒu³õJá†×ΆáC‹zíD$ c²ÎÍ¥¬^W÷=£EÓqŠ
lQ7ËB#…4úÒ³¤2ª ÝR¬,L<«(ypb]S”/Ïd´^AÅ3:~ÌÄ•zQKfBœg5r½ÅÅÚäå82qkþ[a]+]¦ZzáÓ¬<²q˜ŽÚdlÑûÝüyà®â|Û«ØóÎ'[<ÜÔî÷xÅ¢àlµQ ^»¶=¨¼\ý"¶ŸÍ3Bªzö·—=ŸE(Y1>}à80µQ î2)ò£e´8>‘]¶•“–¾Jñ‰ÏªÜöE½–œwÚ&Úop«^2˜GRû)6“\§MŽ*6Ë2˜×gJZCM£QÉ\Yß:
ŽõñªÖZvÇxtdtnú–P¨ÅÑ$¿±é>{ÍùþòdÌ ÿôÝbâ1„EÚƹ{M›rè–2E3-Žëcžgã#Tü¡ìü¿èËÅ•×ï°pReË(Î[_ß_{7ùÑ/Ñ·êK硲Â_Ûéê&<¡Ø|ŸŒ¹6ªn¼dÐañö\ŸrÞÒªeŒWYåú0-ÉQLb$ãúøG%¢XÁfêc"ä¬Õ`'êšßžt¿å›šYÓ-{{H*þLkOiE+•u?W:Áý3›ŽSÔ½¦¹öC‰ÀEîöÈÄ"—†œÐl
éO[¤·e°¦?sÇÓêà/õö€NŽz˜g—OSÕïrÂØ¢;vGo…¤…Ë:=ýõÑŽßQ%ûܹcå¶3[EÃBhåK?(jŸ¸e§`òTà„‹=;͵†¶âyâ$š -•©aŒaÍs[Û8ú¬ÇÞé/VÔçW~A‘>¬’õLÜ@,VúÎ>Å·¿[öºeÉ×»K›ÌuûW2®6Ë7¶V'Ñ;{p¿)9>>·pqoiÎiº¿‰ƒÚ̾†º°x³Fj÷ãW36¼Â¦ØÝÏ¡´O~êéR¤¬‹¯Jšº·{ð槙—¹é<nWÅH6V±c\Ôµý¤åtµ µ[œX˜Þ‰;UÊ®=›¿Ó<Yû"ö—KÉQ\Qh@Ú¨üôàƒÁx([¤_®;`f €ëÙ +xÚíR{8TûFˆ¡ØŠÚ ËeŒ.sÍ„bä’̶ݺˆfa1f4f&C"[•»ìšÈ¥è¦d¢¶Ü*Ê¥›¹U4×&lÙCgŸžÓ>ÿœçüwž³Öúã÷~ßû{¿÷y¿×uqCZSè¾ ÆDbQXs€èììH ++ô¯d„I|FKN7 + C¡Åâ–l +Mþ'ÂJf¢Áo‹“¿A@‡/Á¿`cCÄ +ƒ7uÛ¯;é^öÙ=øºbÀ¾Ú9ÕÑÁ¢&æÝW†t/Æû¼žŸ_Ûx^Û²O1¢ÜDë¥ó}µ>röXFšâÃPÅÖr'Òyã°µ•GµHf†?ûùky÷3–)NQNa-n$Å:Ä™¢
ZÚ?6œH3oiU“¾´ü‚Ñ2£ÓOnÛ‰ÝAÕa/¼G™cµŒ’Xˤ_ž7œfmŽ-ÜÅB}ܤ
åw¯Å ÐsSYÔGHzÿeâìÙ3pÑÖ€Š'¼…V±c±Ü×Û”³ó¤b%6!/¨Êîµ(œ5.ülå™ìh»Àà•h+w1ÞŽÍ•Ê>Z)
MsaQÓ×6äfªTeâftà‡Ý®·¶¹çS#Ï(›‹ìÀzß´bU\ïX[-<Y–Ó³–²£Æ»~60:‚Šñj8X`Àg£µXªLëºós·GïEyhÌ.»ïYÕÑ(šiÌ7qâCÚ]!äÂÌë˜Fòp}×3ù5±×˜Ír}«åå>ˆÉm¼09ƒ¾,RÔì%ON®+ê徇ùøúöXùð¡ô¤Ö=JýwžWÖ¬U#Õ]lì/&™Íöæm¼÷‚m«Û+òž]57ºgZØÙóa×+þ°ƒ…^öÕŒƒ{+ð–ÁÜOq=+‘³ƒ•\zêÞ©Šòí#CѲ)_.ä¼ôy:bdQ=ÀipoÂý
[|{JÞ)…úEU¹oœé‘üY>bBœGñ ¦ý˜Ãm"Ê(õê$sÍØÙ¶×Ò6Ý°Ýwr.馷?~SF$Ø—÷Ì„MÔ+ÛžqtO§ã¤™(êà~VíV[½ÿ΋gm£°‘¡ w¿mZä‰Y‘šQŒÊ¸³¯²»cøôo^ú……)ËRž±ÖÈÐ}Òù3ôB/ê˜å;‰¨än`6‹W"kÕ(à‹ƒœ1;©ÌöáÏýjlÖäåB÷²‡Í‡ß¥â×ßžÍ|:¶&G tÙH²^øØNÌmØÝùy +ßo‰Ûâ¶W ']·xyèÞíò9=„q†—ót{—ÉŸíµæ«^$ôð„æHïn‹'¥Ï§švìOî‘F‚ÇWiÂÝÆd~4¦%&3ãJ׉â3ά‚Òü³*ÖÑ«¡¥'Â]Ö+Dô˜Þ¨SRu:
ˆˆO5¢‡ÅK[g™ŠM8 +öPãÐÓ؆TJ@>ßÞ·²µ†÷t$.&.?qG.0äÐÞ8t¿âzw~,¾OHxôn6ù ‚˜±júNãê–rádiEüólB´v+ôƒSÐÕøвºDW)ž²†ØþêΚSø±Ÿ(É•_Ú÷–üú„¥g)D÷'äùgNGóPµ#Å}γGDS'òb[»–aaEE¬ûýŒ’¬ü HÃw‹ÈÇrìõ†eZO©ÚëÂÕ6½=ìy# ýlu[œÊÍm2é„c])ÔÃtîÝ\¥$Ï{œl6Ø7B×ó™ìê÷JÎ 6Ä$ºÕçDdë+}Z«´>“ç2ñY0’Qk +i¼
”w!c_<JGèW½GðiI+
+o9¸ž¥âòè×Gïð|°ÿ–Ǧlm}/Ef–Íý Ny葆=¯
'ŸëÚdcØ¿Ž ”û#ÙJªìK5{g“ÛÚÆ7á6û¹®¼.¯âj¿Ò>í¬Çr¦² J·vh¼ýHÞî‘¥Vç©d9ÝTÁž¹\_¤ÖÐZ•ÂjïÂÿ¦Ij>1sn{IÎQV¥³îäŽú§,i¹&ýôÎû.g®|…3Ksº›C2Zð©«Cƒ¾<±2eüÜéÞ›Ÿ&ŸºMOäð›Ë³q&³OGLVŽÛï³hcäŸçn•£œiÇ)ŽàÕÏÛd“jt
‘ðË…ÔXÁ2¨Wɼìhß½¾D([¦Gµ3x²·€; +¹Q&Qþƒ´ˆ?s¢éíI¥`}à¦Fÿ2kBquJÑrPºf¸ÈÀòaÈèÜó§ïa>y¡]àç¸c¸‚"È›š•×ñNN´¢<wy%æ¿|`ÿøŸð£‚d“BfÃ`qok¨ endstream endobj 114 0 obj @@ -2701,7 +2717,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-5 -232 545 699] -/FontName/WSNUNX+CMTT8 +/FontName/QCLRYW+CMTT8 /ItalicAngle 0 /StemV 76 /FontFile 113 0 R @@ -2714,25 +2730,37 @@ endobj /Length1 1070 /Length2 4122 /Length3 533 -/Length 4834 +/Length 4833 >> stream -xÚí—WXSk³ÇA)‚,Š€´„N(Ò{‘M• É$Á tQPšƒTŠ4éDšÒDEl4Qš©ÒˉÛóííÙß¹9Ϲ;ÏYëfýfæù?3ó^¬ÓBV62:h¼;hˆÇeädåÔ - ƒ X ‰^ –š…ôlð(H– -þÿ}ôººxR¨Œ #¯ (Q¬‡‡ÿ×0;æb - @ñÏ›F]ª±†º HQJ'†ö‚´€Ô·µöa‡¦Á×VÖûJë÷¸†ž.ó¥—}ã}-ÆÇjííñí¯VñäM AØÊõäöuDgp0_é—¤G‹óÇje s2/ØkA}ã/8WKÝS -EгŒ¯ ïýÚ–»…xëvFžD´½C—:Iµõ¾ž¾>ÓL£†12K‘ʾ°^Á€{¦‡vbç ®gÇ^VˆÙ·[Õ–±‹®1ö™Q˜HhÓ49»Öb]GäîøÀÇ+À5ïþÍ$+³‘W$-±p‘Y-Ö»¨Ñ‚ªôå‰Ú_xRñMZÈf`Ù8š.(ûÔr°Ý§5««œZ 0°;=S!ë‡Dd…} -TÇpçw×;Ÿi Ól‹tž6f0_~ÚÂ䛣Dñ뮿.xÞy û¡rhÃøñ®ImÆ—ñQ2#7»Í¢ {¢ý!ð3ì#–¨tŽR’!¡·›[·à˜f͇ÁþhÇ{¡ÒK¯öfGf’iÒ”;ìêý&ÎF=[ѲXó.ýÖÁ%ßÞøñG_h%m.üÞç×áŸxóˆcÒÉõŽc‡wÄZç—X‹,j¢o•0™Ê„¢2&pÞtÄï'“ªÞ‚Hãˣ)»ö¦µ)¬¤š4˹\g-}8gvFÿz‰pÍ—”í®¤„® -[V+Í?˜¢¯®:®(ÌÐs©‹¥33cBͳDîZ >ù]¦'ÀvvŒ¶tû½‚¿H¦û 9”Ûô‚|oì]ðƒ¯šòÛÍöAG0öÉùqÊãR1ëéÁåÝPDü-Ê.Î -ŸÐ¶4×´
r›îd£]‘°¼þ$4sÆÜÝ)Ë£³·ÕîCà®p -ïKyÌí܃Ø
9C|L);'¥Â/;ÈIÝ–§Øq]Uéœ/³ÿ}ä½ó‹cBá¦ã‘6,û#]™úä[gÖ=(Lp/싈Åý¹K¡—téw2ÙcÛK4ÜÔ˜ŽMt‡~k‚¸ñ½]_3®ÌÓ”¿“?<x3ÌÂý~¦© -Õ†ƒ3¥ÌY&W†'†dÆýR
nÐÎÜ,¾ÓL.ò´/¹áH/U -Ÿ8â -ZÂÛ¬tì;?uò±é§nê™ê¯=`,îÆÎYÕ`Ǽç æ– ¨Î”Šs×I=üٻ߄vkÍqºõç‡Óh=bˆ7TTèÂeøÏœxg%¢æ±ZÀÑÁC|¨–¼ßzõè@¥•Q~̸ºJÒÙa=ŠAò¼ÈqÝã´Õ UJ›AÏôè‘sÆ·;¾’k]æ¯ 2µ'&Rs¸¡JâÇÃSÕN9uXm|ÏàTk“Óç.Ωv\þ€)JÒkmׇy:êÓ¸”ø…²åO3w™ó·<øñIœerjbV‚&8úÅb{¿y·§™ -¤“]‹qâŒv´›?'üòSêóxiÏšh›æ+ŠëÎÊÑö)etú̯âÚ*Oµ:–5´|×ìè;v‡è®)W×Êäh•–CŽ¾âÃ6¼ìUd!v¸Á&Bæô-(ßnÍénÅuH1Øí³ÇæJÂ¥cóQ–ê*a-ŠÔ_UbnHC²òZ£á/Fûž@ó|mT4ø4ìòIsþTÏsóv'®óì,m÷3}~«83vQ£ÓÏWéêHéèü\ܼ7¯áQÚfWÓÎÇÝÖ˜¶½nFÞÍ’bµ×Žxÿ7òSèѹ҆…¿fY<ä,èÒ~Ã
Çï"x‘(|J÷Yô“Å®º.ˆ{6I°1$vÒùñ;·ï•ØKM¢/ŠdfXKfѽ$1¤4(Åú®´AŠssü¢¿U¹üÙ“í©v8Ú*pó¶¯ÕLá«?²å̹uÑ]xƒß‹t[–æ'W߬4ø§VPÊN$+ÊÌ¡û¾.Ϥc¥Q%>.
\ªË½âÄ·°¨=ƒ~~Wt4‡kuàµHŽâZ‡pºæ0:8鮫ŸVŠ”ädA¶Q;Ÿ6XÂzéÞâQQ=#ÆÔZSÅdƈ¿£õäÓyám´½©*†ö¹sõðå™°·|Ú¸*ùÙâÄeýE}‹-.•[²òLç„Y)„Ѫ~j÷ñI–ýlÂ6q~h"ƒ!Ü]#}@üãJøÆ.Ëc=xýõT.û¶¦(ïçç0|ð/‰
æ¦@¯õÞ™%s͉iËÙ”–s)..OKsÑå ö]Ü# ««B›{,Àåµ£’KvCÆ`‡~wÌð°ÐG¶óó__9Òɯ4D…aolh*µ4òÛ¯_XdXê¹û®8¾göjN¨; -]ßRýüBèðØÍE3 ,¥ºQlÓIˆ¾»›G'¸ÎLTJz.n?y%ú
ËœŠè§Óí -‡OÞPë2×B$x+˜Ÿ—íJÂXÛ¶²¦nž¢M.)Œ½ì&Ò'º&zglE.¦«˜j«ï‰ã ´Üɱ.CïUÁœD6y3©\µ4žV‡VÎ¥iÛFY*Iꟸ -çÞŒÎ4Ô[À£$Šl·¥xT¸òïƽÔï¡c+|•¾gˆº¶›iá »¨|@2¤G² ÒÆž‘u0ѵ74÷Dš'ž§k>åmຽ$Sõ¥žc¼—¯4„*ƒ½[qcÀíC¡&x¦‚‘õ'¦ÓÖº€æ Ôì$îì«'’›RdfsÚf28ˆ“µó™Zò+{ížÆn… –,?ÄKt¯$Áþ—äÿüŸH€ò‘"‹$ø@ ÿ8dz• +xÚí—WXSk³ÇA)‘ÞYéÐ ‚ô^¥J‹„d’`:Š((MŠA*½ +Ho"Mi¢"6š(m«Hzâö|{{öwnÎsîÎsÖºY¿™ygþÏ̼따œ.ï áqD9y
@ßÒÞ^P‡ANÒ'€H"3@A
@W + + +“‡Á¨Ô÷__îÿ(fˆCáÑu'TT$€…P—ƒJ*@¸€Á¡A +0 + +µÁªpxä
sÀa.¦€ +SWúµ ¨ Äÿ¼iÔ¥ú{a¨‚$¡äpahÏË +Ê|÷Xïqjzmi+ZÌRÙ¸Ë=ütù˜?½üß«q~6ëoo±I$oI +iÇWGYžNíØ@t…†òWŒsK{
´º~ü®Q™4/÷‚£ÎåôÑ70±é¼ëC™»*áz–‰Uô]b@ûJ0_ýÎ蓨öwè +™ö¾·g®Í¶Ðh F
CÌÓdrÏoT1àžé£]8xC«9"±—”âöÖtä¢GjMüf•&“Ú5‡LϬ÷Xw×àQ…Û†ð‰à*pÅ{~5ÍÉnâ-@‹Fm"=GåÖÊô/h¶¢ªýycö_ Ô¼ÄRsX6f +É?µêðkËé.§WƒNÍVDÉ{& Yß‚Oc8G +{\¥é´Ú‡\gL,V@c~` +Í)1z¯‹Ÿwè}¨Þ4y¼kZ—õyâCgŒÜèóèžØ@X0\ʉcÔ +•ÉYA2b ôõðèÝ8g8Âa°³xTfùÒ•¾Üèl2M†jçCCÀ䙘gË£Ú–ë¾_;¹;zƒ?~ﯦ͇ß=ðþ2æ—hqÉh\6µÁyüðŽxÛŠòw[Ñ%-ôÍr&3¹pTÖ$ΗŽøíÄqRÍ[itte,m×Ѭ.•T›aÅ–Ï-uhùƒµ¹”Áµr‘ÚÏiÛÝ)IÝA*oxÆÆŽÔ¸ÃȽ=:÷!Yíî¾IEè{u#uÓY¹¸S]ˆBKg¿ó¯kÔNÃ&#Dz.6`}½/ú6ñÇä‡äÞ©—ıëghïOÎRŠ—òô’u¢éYÙ(|ˆB3+KoxR®Îgq>ÄÎÁËa’ƒNË—ôœ™j]4}uæÁéûµó)
t9yÁÙÐåZkoÊÆŠå5²ycÛµš"÷›6,Ôþ&ŸÁ]alÜŸ™¾[ʼhÉCóSÓkôž½ù·c$Í#ô2Œ¯ûG±uc‹ÕÛI9¤Š›,y¥ì®—µQ–šÃwb/©’+«6*U<‰ÖŸýl“%Ä{ëûx{š¥¸KcžêÛi‰úaÆóž®.ÛNf|ßƙ䚓'û¤];&=|©T[ú¤çªxZ®†Q›¥†ß•†˜¶çw–NzÖ±Æ<K¹Ÿ±¥l¢ñ˜v¢]»µtÉâ +lE]¼¢ð`šþaÍqe†Þ‹-X,¹9j>”%öîÕÐÃÑßäz3 ìgÆi+¶ß+Šf{‘ÃyÌÎ+öÅß?hòi¨¾Ýêr㟜; |7©w³ZÙ
G$Þ¤ìâ¡ñ&ªY»¶úÌ6âr»gxG,qo?xÕP+±´Í^r‚ÏØé$O›r~³ØÒ±D0Q:ΪuÊ™hÛŸ&üÅÉ””§3בÔeŸÑÖ~?áîÝ`¤^-ͽÙÉùÒVD˜³Í î™(¹µZôj2OÝ-²ds!ÁôÑð±šúí^ÒòXKN¥ ¢6#¶ -ÏÃí|¢dg]CxœÕ]=ÚMÒôÚË-=úb,ohi»)\¯½bñ¡*ÏŠZó¦RXiä¤þˆ•…–}ˆÇL;íª¤Õµ'áÙ³ž.i(X£½¦H?w™Kd‡X>ÄkáàÂaÄægFÙ9!yÉIAæ–"Å{üŠZ×B¥ã·Ø#ï]?XnŽ4›ˆ¶cÙíÎ6 ß”Úð¢05Á}°/¢–öçw.†_Ô£ßÉæˆï(×ôÐ`:6ÙþµâÁÿ"|cݤº@KñváHèÐKÏ¢l3] +f{/ôgoA½Ä×˯ï7ç¨ÛÒ0úýS{÷ ¾:/¡BŽ¥Ø~4Pû¿î³0œ¬Õ›šäâúª¼êHÊK“*Ôí6’OïæÀQŠ¬ïf»•ùñ}ÄDLtø´1<<²p~b
Ncàù?®äk@jç(S^ØâÍ—ñX›:‘` +†Ž³å?‚†vÖ.££×Õϸʕå€\ZQÇœd¼nTî½”¹´G×e®Û@¶@iEm¨LO8 ”(®û”ë°+‘à\a7•Nõ HJeZ(Kò<~¢\io/'F³4Æ%o'4´¹ÄõMçq†wäç½ìR¥Çô´Ü È€7n·t
¯ßÜ1ž›¦ï¨¡|zË:g«ý©“©‰”cÖyÉ3lq}âwbî+TÎVd1ç˜n^F°ËM¤^§½Qv»…Z)6ìíX~7Ê™^ª9yÄ ¤/ðŽÓ¯-Ñz>xô’æ}&Ñ%éc)ÑÇða¬u™Ì–¿ér],èéB®¬t÷Apõ¡Í±vŸ†¡×ï•ÅEåÔ‰xÙqÿbÝ™Ï:z¡b„€1æ¯ia«â¨²íÅê@Ÿ9Ç8>y”¡ñ>æIã‹Ú¤éüÊ
D9¤¿ð!ª*F[ö•jL½Ešü²Œ·#Øè:v}êâg7HßÒ73X?Æ`,ëÁ¬mj±ã¾ó«â$TWZ•õ5R¯@îîWáݺCó\…‘4Ú”O‡vã²gÙÞÙˆêGxsvrÅh¤î·]9:Xmc\7qZ-å̈>Å0uAô¸ÞqÚ‡I5*[!Ï›œôéÑó&·:¿ëÜ.#²u&'Óóx *Ç#Ó5Nº~qZkzÏàRg—×ï)Á¥q\ñ€)FÚg}×y&æÓ„ŒÄùÊ•ÁO³w˜x àS>¸Êå-ÖƆLrHØÄ÷}=òn5A+ Já{°ƚãýôëÓf̃À¹SB\Ø*Îò¯Aj‘©7ZÂN=ñÙÁ\3 +ZFê@;$Ѓf¶4#F¸êïârV£YätûöLØ@ +ÆI—)*¦H#+-‘Ûa äºj%žÄ2¦" +8kKŽ”±ˆõÖŒùò™Ð½-s„Õ;<hÔ0µxhܽSB\M„ÏÖ7ß@påžtÿ±ª½‹¿â$¶ø•i/trEœ¯Gå–¨ó õ/aÄ£a„£'Ë%WØÞHï3®,²´·ÖýÚ%Éø„%XÙ5ÒßÃB([µ³¦Ï°a7t¹×2•ìŠ÷’ü¶Ga\^5ÍÛ¹A[„â'`^/bîKs(/\+>’n°‘œš°v¬Ãˆîb0üzœW¬³Ã‚µÈËOéÏe½ËibíZ./*o¸ªÆ:¦UÒ0¿Jh¯>Ùæ\aÜØZüM«³ÿØmz §öþiíÂhÎ6YäØë~¬QãË>e¢Q§l2lÞÀ’òõæ¼ÞD ©$»uæØ|y¤lœ‘P!Êê´ZD«2õW•˜Öƒ¬¾Çh$åÃèÅl1Šïµ¯â‡ŠŸ&€BÝ~®ŸxoܪáÂu™£íyf `“`Î!f|êù]=)]˜;Ëwã*¥c~y4£ézÜci»ÉçFô %^gýˆï÷ ã +‹Ÿ²C~`üÆã9þb³Ø‹R¹YÖ +—9tI©
Ió¾«hg¡Äݘ¸hSO¾ÿìÉö Lm¼u–ýËC¦Èµï¹ +<zèn¼áùo¥zËSkoV‰šÊÓ«(UHŠ
eöP‘¿[Ð3ÙxYT¹Ÿ[#·úJŸñ-,fÏp@ÀËéþ0ø»F4gYS$]K„œtǘU“_;MFzª8׸ƒ_,g½xw騘¾±ã"j½¹j* c,ÐÙvâé‚H¯ÚÑLCkMîZ;|i6â%¿®Fq®,yÅ`ÉÀò^k°[õ…Öœ³V +aì{±úb€F>Åj€]Ä.! Md0‚{jfJ|\ÜÜey¬o¸–ÎíøÂÞåûÜÃÿœÜhaôÙîI-»YhMÎXÍ¥µZ§¹¹=ÈGß±ïyIÚ\ÞâÜkc.•^vÎ2;
zyêåFF„?²Ÿ[øòÊ™Nx¹1&{}SK¥µiHÀqcäüÃrïwe‰½sWºqÂ=A˜±±äY]=S÷qm ÊYÚWDûëÃ=@Ãõ“‹o‚×νy¿Kêè¼äaßy„ÇëÄ×iѪ[Âæðž$ôéƒéÓbÞâbg®M† +» z@2¢G² 2ÆŸ‘u1±u×µöD[&Ÿgê=åkœˆâ¾µ,Wó¹žg²W¨4…«C½[õ`ÄíC¡¦x¦BÑ
l3.ƒÝ@sHzn +Oî¶Ôæ4y—¹¼öÙ,Î {dB¦ÖÂê>‡§ñ?"„Ê‹WàezV
S`ÿËòÿ þO$@ùƒHEü ÿ endstream endobj 133 0 obj @@ -2742,7 +2770,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-2000 -2000 2040 2040] -/FontName/WUFVHX+LCIRCLE10 +/FontName/IWPXPG+LCIRCLE10 /ItalicAngle 0 /StemV 40 /FontFile 132 0 R @@ -2759,13 +2787,13 @@ endobj >> stream xÚSUÖuLÉOJuËÏ+Ñ5Ô3´Rðqöröq54P0Ô300äRUu.JM,ÉÌÏsI,IµR0´´4RðO.Q02V02°22´2µ* -J-Ë,†+2êTð*ÍS00E(âRUpÎ/¨,ÊLÏ(QÐpÖe®Q똛Z”™œ˜§à›X’‘š´/91G!8?93µ¤ROAÁ1'G!¤±X!(µ8µ¨,5E‹ËÐP!%蔤ÔôÌ<.}'<óÒòÌ!Â)¥P)ý²Ô"ó4À¾ÒT +J-Ë,†+2êTð*ÍS00E(âRUpÎ/¨,ÊLÏ(QÐpÖe®Q똛Z”™œ˜§à›X’‘š´/91G!8?93µ¤ROAÁ1'G!¤±X!(µ8µ¨,5E‹ËÐP!%蔤ÔôÌ<.}'<óÒòÌ!Â)¥P)ý²Ô"ó4À¾ÒT 3óJB*`fƒu€ù†>0„Š2+¢
@!
T„0V,š…®yÉù)™yé F¦f ‰EE‰•\Àtä™*T*d楤V(¤V >ÏþC;
-Ëh$Ú¹& ZHÕýfwõü6o_£1Çj•;ó[ÿ.jæiùs¢ ‹íܦôŠn5{½ôà“ª!ëªó^~ŸÆLɶÌÔ–;±gÙê´ïѹµWV\Þ=ïéö·óDߊìK”ÐgýìÔk rÀ™N7—n»•Ó¶g<xë>ÿAú²Ï ç§ãúóRè”À³ÀŒ# 76˜ÄN>½íTЇ%<«'†™µž”Ê X%•¥½\lÚgçS½Ê›oÖ<]Áßþk.ó‡cÌÓ&n\r§j^ÚݤУQ³o_ézœùiõ›‰‚*¦³§ññ=~ê³g¹oEX^ÞÂ)ß…šÙ$O–_,¨—¯swV‰¬hñoI¡oŽëå\…4Z$wÝûϼõËÌÒz´„W>«¸Ÿ¹u’õ…{o´ËX55Ö@#Ò¡h•žéëÖS׸?ßèsY©gÏ%E.ëË£a3\ö¼úêÇÃñ.Àþî”×zGn¬Ì[´R' 2õËç Õ>‘×^ýíxPÿËV¢Àô„E¬«É£gm\ý–^48]õlÖ_í
vok.ßÑOçg¾§ýA¶ÊgÁKƆ7êÝܯYÝÙ¦Q2i©Ca£˜NýŠo£o~¼½ÇäÁ£ðÐéLóü&ìþuÛÕÆ_[묌Ž¦óMvìÛã69¥£ñö–ßIÑ{U—–=Ù¹ûrkQM|—ÀÍÙ.Ò÷½âwwãœÛòÁÇéxWr¿þjvÿ|M‘×Û¾ìc¯ómãÈžì"yZ2&àƒëö -6þ´ÂË~žÜ.-³zÙßï©Rù?¾›*19aZW:é¾êGý?3J?èÛæ,ç¶W>´ˆU¯ÅèDZ‡[>L\qR&ãLõo±ç!+nù¯:fzy £Ìéίº§$-»Ùì"Ø÷F¾ôç)«7žÏÊjíq:ÐøzÓ³Âb†ðU;ì4˜::¦ÚYó€ýq‘ßFVóîu«g¨Ÿš”+ób÷Û‡åÂÚ]RÓÚ
÷k5OžX[yéM¼àóâ KóºRö_ˆ>ÁS–šÌsè[µ:wzf5ãŸ3ïw¼WÖ¶údõ×F*î‚·ÓQ‰é¾þü9Rµ:m¥Åé Ò:ùZÁÝ×Δj5Q¿p·×ðÙõç5îsîT>‹p‰TytÔ“ë’Æ# Å'wžÝ«pGDuÉ’Õ)’2š®Q†…É9©‰E%ù¹‰EÙ\\ +6þ´ÂË~žÜ.-³zÙßï©Rù?¾›*19aZW:é¾êGý?3J?èÛæ,ç¶W>´ˆU¯ÅèDZ‡[>L\qR&ãLõo±ç!+nù¯:fzy £Ìéίº§$-»Ùì"Ø÷F¾ôç)«7žÏÊjíq:ÐøzÓ³Âb†ðU;ì4˜::¦ÚYó€ýq‘ßFVóîu«g¨Ÿš”+ób÷Û‡åÂÚ]RÓÚ
÷k5OžX[yéM¼àóâ KóºRö_ˆ>ÁS–šÌsè[µ:wzf5ãŸ3ïw¼WÖ¶údõ×F*î‚·ÓQ‰é¾þü9Rµ:m¥Åé Ò:ùZÁÝ×Δj5Q¿p·×ðÙõç5îsîT>‹p‰TytÔ“ë’Æ# Å'wžÝ«pGDuÉ’Õ)’2š®Q†…É9©‰E%ù¹‰EÙ\\ endstream endobj 136 0 obj @@ -2775,7 +2803,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-24 -250 1110 750] -/FontName/GCRFCN+CMMI8 +/FontName/RNOWPB+CMMI8 /ItalicAngle -14.04 /StemV 78 /FontFile 135 0 R @@ -2791,16 +2819,15 @@ endobj /Length 2342 >> stream -xÚí’{<TëÇÝ6ä©F–;Ř1Œm¨Ae*#Ê¥Œ™…•™53î·’ŠˆM…Ù%R’LM©$!¥%rÙDrK¹Eì¡ÓÙç´Ï?çsþ;Ÿó®Þç÷<ïïý®çyu5wRI¶7HfÃ\c -ClÌáFèêÚr@bÛi\`,,ÀV0Åh3"KÄã]À–Ê|ý¸€áR•@bˆNƒG×d Mè4&@eÓ!Š -àqAàÈf€øÇRWð›#È€x¬³\¢“`_&cp(4î›’¡±âÒý -ËÞ0¡³Y,Ú?áüLþ)2L¼—£¿þ·
;$ÜØ›â…0ã#ÿµp7ä›<ÚÜkŽ]Vé<„¹ËNØÓï±$†€tD.ôp±…Íkt7tINΣÎÙ+‡š;R²‡3²3¸ùúã©®Z!úŸ7¼<¢gDíêì"¸R‰®ªÓhûÊŠù[DP∨3ékÙÕ×[ëæZÄPVuU^–W„G«˜'k5Ò2Æüîå>½±î+ìÐomRщ3§LN¦Zl·h‘M.MÈ+uv¼.wåköüêD² -uÕrý{míJÔmy!W7…H¬J[ÉÑ<æ¥zô¬1QœCÏÿíwñ“Ĭ²Ž¹K2u [¡ˆñ·®7dmK%©§ê¶·•¿km–<~3+_1rÕ阨°5ÌÛO_è6ÉniO|£K®írê×áîMíIÊ ËßGQ©èûpõvl÷KœE© Ôcj¶Œ_‰ku)žRrÛQY8lI5ìÃ=k¹Zào“ß]×oHÍ|%ÞxE| -3®a‘§5ßE·÷÷‹T3Øüvúk_|œí -:‚¹´Ö:˜(»Wé…jxiº -¹
;€¿œÕ?yY…ì"¾öÆÔéÔ°–Û3¢àfعÄ`M×ê‡V¡SqÕ7¿ºƒ”l=qæ0ñ(©”öáôl¯y송‡’j÷'Þ®ŸÓw ͧù9õvªG¦‘g7ÚJǵ#_)_喙ù‰‘ÿþžàáMDÉíê0É´<õq‰13ÚðSçŽ/á\¼w°Æí¹×î¾'ØkdßNxŽ÷^—Ð.ùØùÕ]lƒ|¼³vIÅNÜÓg©h@«÷dsrtç6å4·ªtÈK%WçÐÞKæ)Àz£|q¼nU[ŽüžT•„xa`:;Çñ$Àƒ aÛ‡ -žL,0Šá¦ÇØ«—gŸsl‹Xµ>ÞÑ«-ôÔ?¸}ÿÁmÙm%þÿ›‰™ê” -ݽ‰ÉzòXp™»rø]U‚r~§¦ä±<ÇÅÅÉ´¨doô¤—Vï£óÆ£Á_IBX¡sÊÇ‘²”îBîÙ+tÆ;3WäwÆ-#>/‰¿¢ŽÇ›(ö9m˜A²^%ŽÉœelžŠïÍî=“"vÑMüDÎS’ÏÄñEOÕžÛàø&êݼ¸ûØ.›RéMé
ϽlóqYŠMœÓ±ê¶ª®¥ª·â톺²&&foŒÐÈ#Š‚)«o
8eÍD}YçñFÞÓôúL»‘̯„Üî—ÆNb˜s2oVÅÛîÚ§Ð4k68"ͪ¿ˆ{Ž”P:>ã¡MËSM©ó¨]gîeiYYô¹1qXUt‡Þ}g¬íQîˆÝñG"܆’‹£RRŽ÷9üáW2üP˜ÝÕÑN1T®¡hÎ<û±Æ ÆÁÔn˜’˜zÊ6¸V©Â^ÛOŽŒ¢ÎØD®³Òa?¾ÐŒß 1·ÖúåqÉYä!*ÐÌév}¶ï`凔[Ú'zN‹m>íNR©~aVÞ/X1Š°Z›éE»¶ VV¦õˆBt½Tx¿XcM.Ɗϻe¯EuÄ{ýeroz«:;[~ëÔ…ì<âtHÅ—ãX-þ\c¾ô½ÙÐ/úÈ׿’~1x–+@>èY–g’«ŠNlË[° Wßá˶pŠSÍËÖj‡)RDE
ß+˜™]ßÀé ò܇jPSí÷Æ”sfrüÊoÙ#FÕ^ûeŸònÂøu?¤cÑù^¹ö¢¾Ñ¾OÏú*OËׄGDî\7¼z~Y¾‹`xÆdÁ칺Ù/¿V´šœ`màP\FšXyøE2}aç¡=u×|ñ!2õ‹-³7óè™è‰„'n¿òbN2µE±È±3©bîA)q +xÚí’{<TëÇÝv2È-¢F–;Ř1ŒÝ Ae’¹•1³°2³Fc&÷KI囄Ù%R’L¦TÒE„HJ䲉D¤ÜRìI§³ÏiŸÎçüw>ç]ÿ¼ÏïyÞßû]Ïóêj:QI¶/HfÃ\c +ClÌáFèêÚp@bö4.H0`+ ˜b´%âq„.`à +ã@þ\ÀÀÆðk•@bˆNƒG7 +û¦CÁd(d8A\z +fs…G +÷+¤^-¹®ÜëM:™uY•Ü H^WS¾º@NíÑÏ)—ûóÆìÍñòsþã9iꪦš‘›qªÍä
¤Ýº©[`(Æg÷Q‰Œ)gI«ÁÁFª†¶½‹ò¥ÀFÑšòb÷‰ C{·±¼rÇeGÐÊ¥bGvQ‘gÆ5ê€f×îõúáX-£ú{¥<gŸˆ#nqŸ&¼n7·õºLG<ñ-9|âÀaüøùµÐþdwŧ*YÊäNì0þBnKÂôe²«øÚ«3‹¤cZmDÁµðÓg‰WÁû½kîZ…ÍÄß»öŤleë‰3LjGHü˜Œ·™óæqFï®ÐÀPû>ðvþœµi>ËÏïn´S™:b4‹<µqÄF*¾ù\éJÝuÌOŒ¢7·/#˯ß_‘Q¨>)á;§
?véþÁÅû†hlÑΖ—}áéŸÄV“y5å=9pEB»ü}{ÔO±
r .Úå5N¸Qç’1€ÖÀñÖb¥˜žmJuY4J¶!¡íNæÉÃzïŠùâxݺÎ| ø
©ñ ñÔ`súüÇ› +QÑ£c·Šçæ×7qº‰<ÏÑû‹ò¨™®[“‰ûª8òsùUÕöˆwª/òNŒú¶`zŽÔÙÙóF©þœ¾ÑžmƒµÇCäîGDDƒn\1<}rYµ“`xÒdÑì‰4º5 ¨^ô9qófy‡²JÒÔªCOS¼³Nw7\öWÀ‡J7.µÏ_+¤çÜY¤'ytªÊDh¸éí +¥Ž=)5w*ˆÃÈÄ"ÇVÊPŸ5Üz6GùŽwÍöI¨ò‰]¬´Êü„è©MÈyë'Ä>†øG¿|Þ©9›(¦™’–51”«ÐÐØðüCWí:H*5^Iò7]ÖÐMõ¦7SfÅb¿áè¾ÑúÈi(©4wü'˃ƒªýyÒ.æüÅ8l»é}ï!çÀQI#)gúC i}©š?ë#Q'<͵ÃÂ'Jjn•Ã€¸ÆWs<®'wdfn¿t9¿S›Ý¯°]ýú¿\ˆÿüOЙ Ãe³hœ@â +´Ãr endstream endobj 143 0 obj @@ -2810,7 +2837,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[14 -250 1077 750] -/FontName/HVFCTG+CMCSC10 +/FontName/BGZLHZ+CMCSC10 /ItalicAngle 0 /StemV 72 /FontFile 142 0 R @@ -2823,20 +2850,25 @@ endobj /Length1 885 /Length2 2464 /Length3 533 -/Length 3092 +/Length 3091 >> stream -xÚí’i<”ýÇ£„!Æ2ÙsÛÉ2‹]"Kv²/IŒ™{ÆŒÆÐHÈZ$IRÖ¬e+„Æ•'k’5¤AÙ gªÓótzΛó9ïÎçÜ÷›û{]¿ëúÿîëúËHØ:(`IÞ ‰HQFª u -¨ µµ‘€A°€Ôš:j:jÚˆ`D -%ã}|)€¼‘Â7•&` - -¦€dÀš„ÉÄߥ.àwÖ ð{Öœ‚&à1D ~„ðA&x*ˆµÅS0¾ -Rƒe÷û7æX6¬LÄsÏ–y-ì éÁA_ð”ZøCÃ8veç%œ=×–‚¢Å|ƾ5/Ë9 }6{}x[C•ŒÉ¹ÐÒún„f.ïN¼5q0rËÅ1[7ñ^‰"³iJ9Bíf¦4ææ…-ªºc=œ=6=2_È¥<øO´œ63>5Oˆ‘8°1ØVÁµ9ïjåOyK«/²_`‰Ú5ë4?½w]°û%í†ÉåújA¦í¾ëaŸ]¸uæU½êDcdÚt¯Gñqì¡èõmß`ëjyfI¿¼¿-Æo~”m+{iª—œ02s¶b«ÔÑ{$¾<‰£7,8Û˜íºô2õ¥kÚðîNÈÓdÃc¢:lçÝ☫Õ>ŒDVÚEÕTUt‚ì;nÛ¹È×" GòÚw,–5‰ònÞ·óS‡©˜=g‚
íÍìËæ|6òÓð7®÷³wn£¼aÑÞoM™Oíϻ߃/†Í ³dlÝ‘0«“£oúQ‡5BÔ¨.®i]»Z—Ö.ê~Gnc_ãRá–‹âü1,ôä QVhA{ï]rôZ«”;W«öˆÓþ“M’)7€þa?oèäxî»äÛ»J‰©/vï¿+5Telo¿²44Põ%e²<Fj3zºfrÑa¼Ïêp€¿ØõÓÚÄN«!?æ+:[ìAª«ƒ°–\²_í¸¨fÒã0î›ò]ïÔ+ÆË]Ò(ˆ6 -¾S2²zBå³{…Xî@»¤…gL䟀®ïî-áånõòK–éïbHp.¡à²I«ísã'4œßÙÉÞÕéZÅÎr¹Ã£¯Øœ`Q*:ˆú:y͆+ïužûukSq.” -»ÕÜ(ŠÏíëü‹%iÃÔïóbze/˜ÒýúK| -Ç=’¦ë£©n»_O¯5%ó7ÚÆ-;ÀÌz¼¥>ß{û™¦}9–}Ý7LýŠê¸¶Mé‡<—µðdõœg¸hÍlÙcfƒ¢Ð[§ó®}É·xa`—È*ÖAãœ}ªt'ý,4ïãGef/÷]rdñœ9vâ°8[‡3YKÒ-YžtUê¶?xt«Ò€Øž¤ÆMºVÉ9ò~÷™ºŽD3ų1'ÍPmV€`ž¬PÙ’?æéЦTNWâ¨ãŸ°;¨Ð {çý[¦üV€-‰>2úàéâ9ƒQ¯³<ïßd|™±wvÍ6_íyãë¾ð&}p:)hçÄسÕG>KNþû×4<ú¤$uj{Þó³4híª¬l>=8¡SWë˜oJ/èÚWÿ4'®glX*Ðà'=üœ9ÊÜ:àh)¼Ï‡s²dÚç% -¼…·Åyqú˜:X¢x0ãô€iLs\nƒþ¨èÌÙ#î&9É©W0þÝã™RSfoU
=¬‡å¬¶¯v¶Ñô[:/ Ûò¸>–B'"sz⬴ÑÖŽ‚!ižY*B>ñ…¼!ÉŦU¡xZg±G‹®„oWŒÉÀsÏ Ú•Ó -DZ>MõéÅ%Ó´ëéº;ÕëÜ7XמÞïOa2î5º9ÏqV‡Á›Nj÷‡í¤«yæüŸSÈä0GWS–ŠW2äÍá‰S²õß´(ÄGp}\0$¢ŠÍ¶&ï²lj~É*2q]O[_3Õ½½rãîE1é—‹Û|ЇÎÅE§
ý!ûå¾a\µbÓ'ƒ‘l¥oÊj|åÐd³Ô–åµò,†ç²ù]-“ThMHO[Y=rÈ6‰ÌÿŠ
$6{VÈ·ý5qN™^l›Éjdýí-™¾·µ!é]\Qµ5ku^ËlýùZµr» ©Ž„{±júÏîÀ
ºËõ1™}ªŠP9Ç+íåv¦úaßT]WÉò˜o÷ùJØ[ª¥1GÕ¿$-Ö»f²Z‹X¬ß°qíÕÚцÌÈ|+~fª¦æî”@Ú¡½›¬abI¯ÓôéAI´KÙ'X5GL†›`±Õë#ôm}ýcáEJúïÌ^ÔÐëQzÃÏR.4bu’¬Ÿç¤®÷õL¼òøn^›¤¨ØÎú¥wNá—¡g‚ã·ó™è…›·é¹¹h;“©‡2+u x~£Ï²ˆÄ2“q~€:($ÌõlõC„iUf`~ÒÒsl‚_¹²úÉ©Ø–íî¯ÚK5Wúo²&d„ñ苸<¯ã¡7UERRm•»˜>D<8#_þÌ̵èÈY!â@ÝÌ8Nú ±C´Â”b˜â©•Øo¼´Ë’f´RŒ°¬ÝynZ–9‘Í6Iº‰uxhºLZÞ_°ªc.S^On½öÇh¦~þUXÒ[”$¼³=uÆ‘'* k$O/éÜäõ˜Ëq³UVž^íÍan‚l‡+ÔÌTÝyX'jøz]\ÍcÆÙ8¨tÇÒ©`Þ9:ú´¥ïØBéP=SÊv…Ò⣞Âz([õ
jïA“Sù*…¢ï餀–LœŒÄÓ -iÜC«”2¢<×–¢µ±|Mb²µ@Y/«j|DHÝ',8¥ÌŸ;?™ðAíBdÿ®Ï_«8$äWe¹ß;½¸›F¼d]pd—• ¬5±ÄzÙ ƒÚ›Ò¿ë1]{–I)Aé'¾A•>ÁãyÝ +xÚí’i<”ýÇ£„!MöÜv²Ìb—È’d_cæ†1£14²…’$IÊšµl…ÐØ¢òdM²¦•4({"áLuzžNÏys>çÝùœû~s¯ëw]ÿß}]iq;%},É4&)JHe¤6`hehgˆD +àzã‰ø7WfD ÐøÆüLƒä@†/@ŽáS`¸Ä’ˆ„ +ÄâƒüÏšQÐ<FŸèM +ÆÀ¡ à÷8HÄþn‚1¹ïà&®–¦® +?×ú#mƒÆ)ö!6þ¦ÿÎÈ¿˜1"2ž +¸!”$CÈx~¹ÿvÜ!"†„Ž”š:€&“Ñ!Æ
bŠðD,H@*Ã3\™H¢0J +®ÍygK?jÍ[Z}‘íK䆈i§ÙÙ¨}ëÝ/i7Œ/×W0m÷ÙXýì<À=¯âY'r#ݦs=’c¯0ý`¯O»Ø»hWË«P›úåmѾó£l[ÙKS½äø‘™s[¥ö¾Ü#qåI½¡AÙFloÔ¤–©/Ó†÷tBž&ïüUÐa3ïË\úa䲺ðHdMUE'Ⱦãö§À“ùš$¡^ێŲƣ‘^Íûweê0µåŒ·¦½¹“}ÙŒÏZÎ}þÆù¾+[‘Q÷è6ÁåõÖ„ùô,Ñûý7ø¢Ù‘0ÖˆÖñ³Ú9z&eqXCD½¾Êâšæµ«uiýa"nwd7ö7.n9)ÌÇBOa…´÷Þ%GµjB¹s5k:8Õ´.‘rèöõ‚NŽç¾K¾½«”È:ðbÏ»’CUF&q¶+KCU_R&Èc¤6çkÆíÆû,]ýýD¯È›Ô&tZ®ú2_ÑÞâ`TY„µä’}kÇE4’n€qß”ëz§V1^î”~P±@¤Qà嘢¡mä*ß‘Wˆå>~´SZ°QÆDþIèʉî~‘^îVOßdéþ.öxÇÚ:?.;€´Ú>7~RÝññì]ÎUì,—;qÑz +Íñæ¥"ƒ¨¯“׬¹ò^ç¹]·2ãB)³[΢ø\¾Î¿X’2ÈAíõ:/ª[ö‚)Ý·¿ÄÚrüqà#™hº‘ꢿçõôZSòîF›Øe;˜i—äç{o?ïži_Ža_÷ U»¢Š:,¦e]ú!OØ)\5lÙG}ç.Z³#[ô˜Z£(ôÖ鼫C_òÍ_èI`í qÎ>U¼“~š÷qŒ£2³Ö‡û.9¢xÎœ
;é*ÆÇÖáHÖ”pI–#]•¼íÛªÔ'¶'©r“®U²DŒ¼ßsv€®-ÞLñhÌI3På'˜%ËW¶äÅyxú·)–SÆ9êvO9$ß sçý[¦üV€-‰>2úàéb¢þ¨ç9ž÷ï2¾ÌØ:A»f›¯ö¼ñq[x“>8¸sbìÙê#ï%¿kêî}’Úµ=ïw³4hl>38¡]WkŸoB/èÚ_ÿ4'®kdP*%ßà+5ôœ9ÒÌÊÿX)¼Ï›s²dÚû%?Ïín÷ö³WsÝ<èÜy>^m¨¨ýiDÓztoð_"n€¼Ï¾¶X™¼“9'Íçz=;LB4õ _¢•îœen0¢sôÂDàë/«‡žw®—WN¹Ã&‡sùÊBufó÷¹Àà7/(j; +³Pª„ƒD™$ÏØ´² +*fdíƒ trB ˆó—æ±-ÀÒšžµ©›Z.{^m÷žÒ–Q+í +„·›G](ñ–¯ì.OÛfx±è"Þ`V°œDìw¥¾êý¼ZOtöcú‰nÑàÀ,Ô\[ØåIãó\ýª—´4]‘vwQÚ•¶ÖñÌÝ<ö™TVÀ-¼
ΓÓÛÄμ ѧûOcšcsôFEfÎu3Î)èHN½‚ñëÏ”œÚ0}«bàn5,k¹½xµ³† ßÒ~IàØ–Çõ±:‘Ók©…¶²NóÈZPôŽ+ä
N.67© +ÑÇÓŠø8‹Ý[tÄ}º¢hMú{U¯œ‘'ÒòiB¨O/.™l¥]O×Ù©Vç¶Áºöô~ +“Q¯ñÐÍ!xŽ£&ÐtJ«—8|DªšgÎï9…Lµw6aÙ¡p%CΞ0%sH/ÀñMÛÁB|8×ÇR +ÀZJ¬–õÓ1¨})ý»Óµ6a™””ö âTé<ž÷ð
°âÓd3¢Ëm² aJ|‚t«ŽŸP'Ô_^œ;{¾¬E͸§pÇǽ÷¹µ.ê‚Âzó11Áã•´3a=³Zâ›×pñž +â«KÓ +\ÒÇRb{tÀ[À©eI[ñ¼9‡\Ia~ooéµ™¨¢G<.°ÔÁßÏ"þËòÿÿ
0M¦üÑd?ä‹9¾ endstream endobj 150 0 obj @@ -2846,7 +2878,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-341 -250 1304 965] -/FontName/ITRDAB+CMR5 +/FontName/YBQGDB+CMR5 /ItalicAngle 0 /StemV 89 /FontFile 149 0 R @@ -2862,14 +2894,15 @@ endobj /Length 1855 >> stream -xÚí’{<”ùÇ%M–\FÑíc]27&fÛ ±‘K…uÛ1óOfæÑ\˜ÉE¡{©ílhiÜ&‹ã¶‹(©u‰œeOisÉå³µÎy{þ9¯ýo_çyž?~¿ï÷óûüÞÏç÷Ãè{ùš;2á0Ðæ -Ì Xpöð!,ï„Â`œy ] -Ž‰£þåº&^Ÿþ=GÂáA" ¤K@„Èûa¼a/.fBÜp€H:Ðy<º…G¬ˆ$K -M?œï]<y¤}«þ³û©D;ܪÕËh%ßí‚7·GO.ZiÐÚ{;Gq²•cHk~—ŒJ[Ò -j°ƒÖD¿
uiõ£òឪö»C|Øå¡<MÁ°+y9¸«ñcêè°yÈ‚ØàÞ÷Þ¥57Ê‹Ïg~×dý:.6RobzSbòãÐ6ÍŠû¥™œ€ýÕ©ùM8Í©O‡9Ø9UŸ‹+?”m•F¿Je0Fi_Ûß>äî{Y’£¢©Ý÷Yòc'‹…Äû3ÚR^Žþ|£->nQRߌ÷NdŸÑNšks,ÉcŽÄ 3Ä=¬Ë}We! þ÷Bbô ^_õËÝý}õç‚êqï¨^êT.»Ù#ls4Õ"h“ÿ~( ‹¯Ñ”5ë¨/¼çÓÜžY½Q(x“0d Dg9Ñ3öO1gu1újØù=àýŤ+Š&±†?׿™²¥Ÿ¦Û'Gö>
;“«¶Böj¨{9¯ÒñÅ˶b-Ü°¶9Ï[¿òUg)¨Lq»öõS»»ŸJoEæ®f÷£ÿr“w²öÇÝV¥1hßÀ¬ƒ¦ã²ˆÑ±vJae§Aš‚BÇ£ --~o¦Á
¢™å©ž©vÏ}l¡µö§]ß.ã}-–›¹JºIÔYkʾ•‘a:G™˜¨Ó7µ[S= sý•Ec¶³ï¢éâê-šisËÑãAÛ7‡ÇeKÇÜd_Ù½-¬ŽâÔªcƒ)—¼’:ŒÊöª'škO×¤Ø ÷aZéÒ&2™ôÉÝo—º -‚=o(ÉîRñ îÁÍmLwòྵ6‰³•Š[ÕË[LdWLuÙ.MDßCáÉŠ1y‚Ç\IÐû˜-qÁ±„¡|°§øàΧØ"xÊ”ÉÌw,6a¦WëŸIÚYõ¸W£Lï…¡î&¦Úm·NMºí¾9°MŠ¤;¹eb–¦Ùª2–ò§ª‚ɦîŽÁ¸Ñaað*¨`ýYz–“Tn¼…ìš¾Õ „ž7^? %$õ«¦Ó6e±oxDxVªz‰µ¢DîýçëÎH\ó#™¢²ÍŽ·Ì"Ëépå4йD‡“Ýu†“5©»ê/ù͈¼ -@/®5›û3µëüi3J£ù%àû±ÈÙ#ŽE§LLµÌ6UéŸìHîþiy;øMõŽ¹í ¹_îH·z< (á©“êöo¶õéþéNÚžÒëû*Л_ææÉè{¢òÅüìMA”‡##Agƒ¯Ø&kKòTr£À¯û8[äJ×;§ ˜ÂW·ŸË)W<Ô["ë<*Ë?é–J¿ÖÖ?nÆ6½ºÈ—yöàçƒú¿Á€Áé<Ì¡ó"Q¨_dÑ€ +xÚí’{<”ùÇ%M–\FÑíc]27&fÛ ±‘K…uÛ1óOfæÑ\˜ÉE¡{©ílhÉ%¹MÇmQRë9Ëž,Òææ³µÎy{þ9¯ýo_çyž?~¿ï÷óûüÞÏç÷Ãè{ùš;2á0Ðæ +Ì Xpöð!,ï„Â`œy ] +Ž‰£þåº&^Ÿþ=GÂáA" ¤K@„Èûa¼a/.fBÜp€H:Ðy<º…G¬ˆ$K +ÛMµÈ£Úä¿ +Èâk4GÍ: +o…ÁÂ…4·§AVo +Þ$[ÑYNôŒýÓÌ9Ý¡DŒ¾vaxé£2™¢I¬áÏ
o¦mé§éöÉ‘}OCÇOç$äªÉÈ^õ/T:¿xÙ^¬…ÛÖµäY`d_u•‚ʧñk_?µ›µû©ôVd^°ájö +<ÉcÊôÆ?fK\p,a(ìíA>¸ó)¶Èž6e2ó‹M˜é5úg’vV?îÓ(×{a¨»‰©vÛÂ-ƒS›n»ïDl“"éInœ£i¶)…Œ§ü©º`ª¹§s(nlD¼ +êE–žåT&7ÞBvM_ŠjBÏ›®Ð’TÓi›²Ø7<"<«T½ÄZQ"÷óõ‹g$®yŽ‘TQÙÇfÇ[f‘åL¸rè\¢ÃÉîǺÂÉšÔ]
—üfE^ W×™Íÿ™Ú}þ‡´Y%‰ÑÂ2ðýxäÜÇ¢S&¦Zf›ªõOv&÷ü´²ü¦fÇüö„Ü/w¤[=žÄ„–ðÇUŠÎ•él¶õéùéNÚžÒëû*Л_æÈè{¢Š¥üìMA”‡££Agƒ¯Ø&kKòTr›¢À¯û9[äJׇºf ˜ÂW·ŸË)W<Ô_&ë<*Ï?é–J¿ÖÖ?aÆ6½ºÄ—zöâçƒú¿Á€Áé<Ì¡ó"Q¨_|§Ñƒ endstream endobj 161 0 obj @@ -2879,7 +2912,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[21 -944 1448 791] -/FontName/TJJPKH+CMSY5 +/FontName/WUTMGY+CMSY5 /ItalicAngle -14.035 /StemV 101 /FontFile 160 0 R @@ -2896,9 +2929,9 @@ endobj >> stream xÚSUÖuLÉOJuËÏ+Ñ5Ô3´Rpö
Ž4U0Ô3àRUu.JM,ÉÌÏsI,IµR0´´4Tp,MW04U00·22´24ãâRUpÎ/¨,ÊLÏ(QÐpÖ©2WpÌM-ÊLNÌSðM,ÉHÍ’œ˜£œŸœ™ZR©§ à˜“£ÒR¬”ZœZT–š¢ÇÅeh¨’™\¢”šž™Ç¥r“g^Z¾‚9D8¥´ -@W¦äçåT*¤¤¦qéûåmKº…dgaqºán¥99~‰¹ ãAá„!˜›™S UŸ[PZ’Z¤à›Ÿ’Z”‡®4<â6ßÔ”ÌÒ\tYÏ’ÄœÌdǼôœT]C=cSˆDf±[fEjJ@fIr†BZbNq*X<5/Ý)ÀÐ;D?ÄË+ÀÛC±É€Ä̼’Ê‚T„j0ßÁRQf…B´ž!P!ÂX±h–¹æ%ç§dæ¥+™š)$%Vr +@W¦äçåT*¤¤¦qéûåmKº…dgaqºán¥99~‰¹ ãAá„!˜›™S UŸ[PZ’Z¤à›Ÿ’Z”‡®4<â6ßÔ”ÌÒ\tYÏ’ÄœÌdǼôœT]C=cSˆDf±[fEjJ@fIr†BZbNq*X<5/Ý)ÀÐ;D?<4Ä×=R±É€Ä̼’Ê‚T„j0ßÁRQf…B´ž!P!ÂX±h–¹æ%ç§dæ¥+™š)$%Vr iùE\ X543TÐÏÍÌ+-‰sazÄÉ)¿¢ÚÈPA×ÒÄDÁÐÄÄBÁÜÒ°U]h^faiª§‹‚©…!$¼’K‹ŠRóJÀéF0~Z&0\SS+R“¹fÏÍdŒ×‘ÕþšðåÀU¥ð]'ÎÝÜ0K=j“¡¤ßù¦ÉA¬Mù~ÓcÏ;®óyaÇÌ3÷äoš^˜ÛhÍ™sl‡Í}åËx·ÈÏ,[cl”|’ãÎû³{}Z˜Þ2,Î+iOöå˜%êËâ®°%Ž:ÖÜë½.¬þpoþ殺„ýîQéŽÛ„º^P›ZTÌj°è÷ûc'>Dr8V|]ùP:½åÞYý͹oúK*nµš'=à>yT{EÞW^%ýN«öùïŒnÛü´vò„Sm/î%»ï¯÷øi¬´¸èèõfVÅ~ýÊ%7¨ŸNuʽ+¶3à‘ØJ~s
I.ÿ5îN›³Uh‘+K\µö©ï×>œêôô×;!}ÿ^‚›ÆÍ=/»x¾95ÑáKЊ޳޺ëæìi± -¼?KÔ¤Ó´þ’ﳇs¶®|=Û:ån©Ä‰u5ïÔ¿Äz?£a9룖ðõÕm³r/õg›ßÐ9üTf—IïÙÍ~¿g÷<]9ícȤ
_/»Z´réHgÌú‹1îÜzíí?‹u‹§dgêþ²ÙÊøžýyÈß2l¦G&šDÄœd¬Î=¶)èÈÁ\:S´zN4‰‹-»ÆõåòkƒÁð·[6ÉZ[õw½æà|lR×<QâóÁ–ÒêÏ6W܃}/ùº3ë{¹—³îÏ#³óëf„œ>w-ÍÛvqçº{Þ…¸<¸?e1[¶íŠužŸkÄÖ&yŸLôQ¿Þn¾á\ÄÍöG!/=ä¶(ìØ8ûüÝŒWNgD¾±éȲ>Üí¶›#¹êîɸy-~þÚ_çÚEºõ|ûÄj@!à5`Xœ“šXT’Ÿ›X”ÍÅ +¼?KÔ¤Ó´þ’ﳇs¶®|=Û:ån©Ä‰u5ïÔ¿Äz?£a9룖ðõÕm³r/õg›ßÐ9üTf—IïÙÍ~¿g÷<]9ícȤ
_/»Z´réHgÌú‹1îÜzíí?‹u‹§dgêþ²ÙÊøžýyÈß2l¦G&šDÄœd¬Î=¶)èÈÁ\:S´zN4‰‹-»ÆõåòkƒÁð·[6ÉZ[õw½æà|lR×<QâóÁ–ÒêÏ6W܃}/ùº3ë{¹—³îÏ#³óëf„œ>w-ÍÛvqçº{Þ…¸<¸?e1[¶íŠužŸkÄÖ&yŸLôQ¿Þn¾á\ÄÍöG!/=ä¶(ìØ8ûüÝŒWNgD¾±éȲ>Üí¶›#¹êîɸy-~þÚ_çÚEºõ|ûÄj@!à5`Xœ“šXT’Ÿ›X”ÍÅ endstream endobj 164 0 obj @@ -2908,7 +2941,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[37 -250 1349 750] -/FontName/CCGVHN+CMMI5 +/FontName/ZREWPU+CMMI5 /ItalicAngle -14.04 /StemV 90 /FontFile 163 0 R @@ -2921,15 +2954,16 @@ endobj /Length1 771 /Length2 1364 /Length3 533 -/Length 1944 +/Length 1942 >> stream -xÚí’iXSWÆÝX*Ë°(9È–¶@Töe@#ËŠŠ!¹‰W’\¸$4APŠ€Šì ZTdGpC”¥¢‚¢ -ŠPEŠ”•Å"ˆÎŸ>cçKŸ~›gîùrÎÿÿž÷üÎ{®.ÍèÈBCa7”/ ’ÍÉTàìããi
¤SÂ8c0C€ |† -päÁÂdðC°æIM˜.ðC™,›àÈåß…-‘ÀŽ„±(˜eŽÃ‘É€…0 æ |iÊ“ÏFe©Ì†nEÁX¤”I”“…ò¹bÀ‚Ù8Ò6Tz,¥ùÃ`ÿ…ëKs7!—»Á[°_ÈêwmáŠÿ-@yáBŒ”cü/¥tx‰Íf!BÞ—]Oƒ‹0ù.ˆd+sÈj©ŽDº!"˜EC̽€ÍàF‹u˜Ïú’Dß"ÉÙÙýïÛL—Þv©Ic |¿8ÐoêÅ5ù·µ4#`È‚ÈR¡t|žíúâ0W>e!|°°¶cˆqÔÊÂÚì'„Ï‚E - ZXK=-ì -Gî«Ü—`Õ÷¶A© °Ä|¬…ü옽Íqßž‚»ÂòôŸœù'^ºí54ÊP;«zë|3ÃÕŠQÛ‘ÔºG)°Q×¾f×ÈIÃd»aBz×.q¤”iJøntkü’O›|õ¦
y¦÷—Š<9â•-_Ñ+Z~©DöÐQƒA¥¡Š‡Õ -ç?n³º~üQÖ³-9>™E9ʤûÝF#ÁÝèš8z¡îØèj÷êâ¾µ/ÚïÓûN¤ÆV·æ°qŸ»]îž×.Y-÷ÁA¸¯r•lóÐÁB½ôËýær¯›K§ááet1ÜÅꢽÁm$³Ò„Ú®©f⬆ūžó ©%«Þo®Žxź7ï²¼êÔí´–åSæTÓ^oÎNªÐW6¤ª‡:ÀŽâè¶'à & -Û(²T±…®tó‹^†Z<þØ•â¥SýBŽ"×”
ýÉ÷ƒÿ &f`”ÇÀÂp¸–Íð¼ +xÚí’iTSI†e1(¨,# ¤-!7l¨0ì€F–Cr®$¹pIè„EiDTd‘AAvD7DYZT\A&Ú(J+ÒH³ub#›ÓÆÓgìù3gþÍ™[ª¾ï·žzëèÒ|ˆ,4vEù"ÙŒLN^^îV@:… œ3Êwf`* ÛÚZ!@æ +¹ÜÞ‚ýBVj3xWüOÊ +`x¡,ã-¥ÃKl^0ò¾îº\„éÀçpa@$[šA–Ku$ÂÁ,"`† +¿²zâr!^›·Y¡ä8¹²$mcr‡ª
ç´øÝ_L”2*6Ô]óy¾vTŸÐ3 ¶…}‘í¨ô›;Ô´`Vi’"µBoÎÞÕx©¯leM8fgKrÏd…WÈà_ngF_ÄÝü°~e]½êdòw“S"==¤»°Ó½Ù§¨ÅßÍÅøúNŸ5¥Í>a
½rý›uÖ˜~¸A«Ì³{¼á‡Ûë</wŽÞ>%Û“Þ=V§D%L”d¹- ÿr/g¢85GþEc†Ç°ºïõ>ë¦'ׂ~Jd¼õŒ*Ì×£F +=#6=©H¦ïS¸`g¯ =7ê¹âüÙð,K0…¿¿'F?xb„âûÎíVv.!ÍtLQR|³´W†/ãÄ)Üó¯¾i:Q‹Z[€ZÑ^zD¦%æØTèÇòJeŽ¬4º¬´>ûN£Å»:¡y}×– Ú Züô¶*=Ä +ÒÐm*L´–Œ¨¦½%,6<Ø3ÕÐ3ŽEjþ\û¬|ÕE—
u:¡®ÆŠ3ºïS÷=S—ë¼Úìì¡)ÃG”#¬þòqås&sê]¯|¯~ŸÎÔïÈ¿ýÙÆÄ‚^¯~?}ÿýÝ6í©å³á«M×䵬¼ùäS[Æ`ÇÇ +†e÷š®Ë2¡ðW¬•[iC㪓k™Óå7LÛ:>§>I^y'(*쇶©WÎì~ÊÕ÷½zÄ¡1-5ÏÅ¿ï·¢ôCGóVÔI´ôÆóÄ<üÕÊ¢ §I6r¼=‡é[g$k³:áâ÷ÝA½ë'çgòÒBwù‹,Tl ËÝü’×ÁEOæ»’=tj_ÊSä[² ÿòÃýßà€Ʌ˜ endstream endobj 179 0 obj @@ -2939,7 +2973,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-35 -250 1148 750] -/FontName/DRACLL+CMTI9 +/FontName/BSWRLP+CMTI9 /ItalicAngle -14.04 /StemV 70 /FontFile 178 0 R @@ -2949,39 +2983,35 @@ endobj 178 0 obj << /Filter[/FlateDecode] -/Length1 923 -/Length2 3025 +/Length1 943 +/Length2 3095 /Length3 533 -/Length 3693 +/Length 3771 >> stream -xÚíRi<”}ÛÎV¥ì’æ";Œ=a,Y³B3]3Œ±eK¢ÅZ¶lQ”¬‘-;¡PÉ>¸oÉ–-kÊòLõÜwÏÛó~yï·ç÷\×—ë8Îãüó</Q!3ËãZx’3¨G"RŽ£(U - -ÐòvPÊ€J©¬ŠT‚ÁDÉß¹^ -ÀC8 -àºBD˜ì÷LD ô“Æ{{üUòÉ^´\€-§$@K‰' þ -¤ÂOòÒƒü@¼DÁ] -í@›LàB"þ/UA½’IßÙŸ„ - K"‚c4¥øþª£Q4|þ‹Bu!y“ò4òù… ëEëçoŒ¦aÐ$þbÙŸKù›Qd‰Ð?ƒüû|µµI~ÇåÑÀq9ZBŠÖ‡ô?…g‰§7h Ck‰T–SúÁâ¼ÉdHùñ[Óv÷vhëA?KKç†èe¥×œVë{…«º>†å´«¨hЉï{ÌÏ’0<JÍ ËNî'×ä¶`”cÜëߎ7'èkê`áZwø¶O©(\@úgÞ}VÅ7AkÊ$ʲ»;6¾ -ô—Ô@—Ç=r;¤š®·Z~ôW¤ÔBûøü¼ÅN\|qߨf}âûÂS§ÏŒÕê¶>.G<4¼x0€•s/ëzdTÓm¹ê°
ȶ*tIŒW$ò.>}`OM©¨^”ÿn~e'Rqy> üüë못Ñ8³¾éÂÃé‚ÇC:©ÆgƒÑì"€
3ΡwèTà0¯»®ò™²#›Y—µn¤Õ~ ²þÌé`s‡3ÅÞ$¢ëÖ°´’uB¬¢yDcöÊñ«Ž`jL"}l:Ý…pþdN{×.Ÿ3Ë£§…×8=ö[Õü¸%c³>ãYÒ«&–\×UƒÙÑe¾©oõ©®Îa®å\Zc -~>\æ>ûÙb›®&p*¤K‰¡ú”gÞ¾W}/{û0†u[_vÒ{Ÿ£ËK±-†Fõ¥TÞØ-§¸XßÙŒYÿ†qø+[·SÛûÖ>I¾[c>‰Ã6YcÝjí™~×ÏuÅ* ëУ+ÓCz)«ÖEÊÛ<‡êOUvù¨œ¬»¿wûX¿v÷ÚqÆ’¾X2W䥿aÆD°žjU{›\9tòIÓäù8Ñ›í
s/Ï3d_÷t¼{ -öSpóX…McÖýçøDš ô¼>S’¬±&פڹ½\‡r©–ÛCÌ'ÛÎ|Doõz—ÞÌ>qÂÞP¹÷bažØ·»!}iJ›I˜íqÜSÊgÉw¿ü´Ä=ùµÏsŸ¸úl…ߌ.ŸÛG¨,¼ÏXF)vÁX?èÏ5õ
Dª2=ñ¨À\³+ã+Ýͨ¨Ì"ò›ôßwž…¯îí¸æ7ö–Ê—ï,µûÅà}¦ö«#‡[¾Þ/`ZRùÐ9G=ûà맢ž…ÊÐØíéçMw°0¡â…”ý,aîÞ!7Ǭº”é«u¿¦H0ø–<Ï/¿r:DJ‹|852X"ÐøQu(ÑH½9W†Á¹\zv
.$ƒœ‰r_ˆ±â›Øeíš±ªÑóË?JͨÂGyÞ·}°²z={ù2™·Ñ6èÈåíL«FÛùW‰;U‹D§ò)qÞÍOÎù[-
]™¶§ˆ™©¡˜Šð!êX/”Úõáb³Åuã´¤'üußSù¹“29•K¬gVSílž1©=Ìw£<D¶,'¨5‹ÄœMSn–àæ°+ÁT‡jP-²îù³Så>˜äéJÄC’À-Ô{ÿiú™¯sQòVµïœ³›¸«ÞIU…—Üò;²&>ßÔÈ¿Ò3«o¤ƒRÒxg)[ˆþ&etþua³ú·…²˜½Ðû™ìP~ŽkÂ’ãùg¢ÔÞ×ðµæ3¸Os<áça” <6É?d.Mòé¾È¨Ü‚Ú(kï¨f|áü“ù&z:®jgRi¯€éuxºX}UYí,æv®”U”÷Ø23¯ðª ë…uöƒ˜é'«ýùµse¡t7FĽǧyà£4ο|ò"éÉQ–oJ2~Ï’ƒ;–ÅRb©CåDË=„é©Á¾WšåÄ„+)‚ÍË.Sˆ×.s¿\.CÜc&@o,ç«–ò]㱧xhºpZ;y)²Ìµ"{a“Ç’¿4¢gï4ZÞàe°sT—³òâ:½c}Ü*ÔÄ=êÕÖà°8¬7cÚ+Q%%¹V1°$ì\ŠžØ•y)ñäñOKÁÅEzVU]6òåØÂŽi×)yÑ}µ¡}œ*áv
š'߇ïÚ¸“¨cÐw:{«IÔëÜlÁí³šÙºk‹WÀ^—Ê›©ð#‚þ³îêUï,ˆÈ¶Æed:VOª1¶vÞ)€wøî vQÅXêVúôëíëBË
ïÚ:#÷Gù”J54;áÖ‚&¦ÏÜŒV>ÀK6¨åj ËÜ|.þFCϲk×tï°š/:Ž&•# -îž>½SIÑ7RD1%G’ªÄXjõ'šþÐä¾sùÀì© za¶WBÏ]“ü¦Ä]gb.%h«XÅJ_ez'ξöè¡”é -+½ï««ð«–Æpõ=Ã=ë,3:ƒÃˆ1ÏèB@|Á뚸ƒ"¹sý.þ³fîŒÝë
‹WîyRôÏ2ÓËÝýÃ-Š£âÛtµ.cÁ„À,ËsbÒxÀWÙ·á!…-aœ€ÛvfŽç ;—Ý‹ÛSn
#.ïyŒ©Á«U‹Êœ%9çâ%V³oë8çÒ“üãìU`_ -ò¶¡á¨N ¯%£\©óîßMÒjÞÈ ¹gp]åïåëÚ™1»1lpï³õTá½¾€ùÙì’RæÜÞBg—æwlÆOJF7„y8ð5úWâ2VÙ›Škì›Ý脉cÍ›":__¬ë¦ËCÃÁa¦ÝÀ æòË'V•²ÖÃtBª+•ô’ºqèÚËehج¥ùÌrŸTÛOÆ¢Qã®éÝfDÝÀüŒš¦iŠWáîgË'Æ9B<ÙÌ”%ãù´›ðu³!cmúÌâ»_:ÙדGÇì’v?ÐÖ×Ü[‘é\Ê‘™¿È¥)À¾’ð¨gm×ð^Œ8ÓF—´x¦T=3Ù‚ÀãKI¿ò†Ã#9á¶¯Ó aðý“²9±ýÝ'¢q¯<±2üâðY–½2æyñ_ä1§ÙŽZ,l‡;Š³j'«k[†Ã;¿Ðµ#Í¥sg0×γôÓ—ÏÚ…Øå1ÞO{©¥›fWŒ<£qåKó›‰ëjmÏo1pK†¹µ -Œœ`Ðs[W,ò¬}ZÚ/ÖRÇ÷1õ¥ç\°óÙÙi‚ë°Åzjbe—Po½¹6Às;Ëÿ~IÂCT&u9€S èb”‰‰ßá°³ÇÑÛ±'¾°pÜÕ¹"ˆévû†à*èÅ0a3ZƒU½+»ÄPwÄa3Ö<?˜òQÊ®øć41}†šÙ‰¾>O¶ •=…»%–žIÞj2Yí—ëBíWº{ì„á(°<›ã£5„ßÄ/õɾéµJw} -YNÌ‹ŒÐŸ‹}Ø -ê4,zmKˆ¦´D3K -EˆÒ‚ç³U -ùºG
u¶”k59pγ©6)÷÷ð9Š¾ë7Ëñ>…³hµk<*PMàšâ0Ug)µî6™()äaw_£ƒ'VgÉ×Êõëð^ù£j=š;²á]"»âTŽë>Hš_ƒˆ—OïȸÃÑ'Þ¦~®³YܼG@úyÞaíÜÍ*dFA”œ£”Kpêd -ç¼G‚íãbþŠ?ù£z{ ôÑ?G_ ´íú‡…8ØU7 tQxu8òÿùÀþkða€#€X2…äŽ%_„Áþ1sŠ +xÚíRWXSÛºTJPºXˆ°AJ TA téA’B!¡(E‘^-ô^A¤oŠˆ"Ø("Š‚éÒûz÷v_Ï}¹ß};ßYóeñ9þ1ÿ9…Í$Õ±DGP›H KÂ¥àJ + +Ã,CAgýžIàDäÒXŠÇ_%oäE͈RsŠÔ”X"ï`A'ÔˆHíR³üŸcý/©~7צàñFh÷ïößçô/e´;ï÷ߢ»…’ +ƒS…ÔõןíoÍ´"Gp¤r +i +‰È?ž:µÅ_Ø G} èb iéÇp4ö|â«+-}§PvN„<WTT¥ùƒ¾*ðˆ@~€¨>ÿ`Mþ÷¤Æâ6¤B¬{KÏèÓ›:j:ÌŒœkvÛôò®Ÿ/â(Éf’ë(l¬ê«3÷¬|di/ŸµîöJï;{Ô}i¯Q~ÇãKQqkÊ>߸6~ƒeá¾ÃÒ¡†³ÖÞN¬Cle…ún¬W˜!³r㢟$J7„¬ã¬ÿ^9Òw:*›Þ ±RX;Úo¿´þ5LîÛü•ÛWáJû1ãwSåÇÓù$ƒ^X"XNVDä(»6›®ÿ +}nå%"Û™AïÒ>—‹‹êÓ%}²?PÉcÅ“]sA4Kfuin–óÝMëSÝŸ¾]¤Ç×WðE$ñ\Ì>DËuB˜ÆtæËù|üaÊú‡ùUŠÊLÔ:3¶h"ÃpªMp^Ã>ƒlǺ7|â‡{yJE£÷7ôÞæh¼<y¼m+»ìð¢âØë9Â'‹¸¼Ù½õÁèÝ©ˆ[£ý~4D°b!å(cˆ;åEPä°e§mƒÖV*óM½í;ó¼2Ë.8¡ +¸"!§ËU7%`ÓÑ„&°¶azÂG•ü'$r-ž‹nÚcŒLì ¶”é…NÍõ›¾ÚñÅgWúrbOÈHë×òñÎû¾ÈÛgœ¥±ã4Õt ó~9ºXKž2oÞ»Ïð(æIdóbk€y/<!#q7%&»?Ì<Pù¶nÏtï±]âç€BúÊÕÈšd¸º¡q± V†/Z^áb–ÑIÔ•Eã>ÒItœÛböŸPf+zÂÅLå]&~·–'ÛŒœe>½eµõô™C ¢Âu_lðq«VŒ
ŠF†C›œîs™ëZ1ξñŠÜM…h…©šDpYcà5ôÎîTÅ3N7Fpôòo¸æ?ËÐO¶*Ù_¦?~鮿}¡“¼NÂŽ\;¿b®?k +»½áõ‘œ«ï&äg +×sç£Ö$hi6øâC¿¼*}ÚÙΕ=¾9±eð ÎecÛ9¥Ñc«¸–Uø\TËu9åÂzýú”nñúáSFÏYÒ¼T˜N
~c¬oðXäúD}]M´¹-Íð&ñV’„Ú|O]\Rªrècp]3_›õ‰¶ƒ÷ñ–±]ô4TO.|%ùòñÄ›,yUMÊy÷´›Ú¶OÒú³]Ø•Aš¡lcòú_–×y4ïÉ3%k}h½ŽS]¨Ûv‘ +lEÙ5¦Ñ-¬Dãpû£á´?$dS™4ÞDIñªI©r³#ã±Ã~UU5ÖÑÈ«aÏY:v’m B^…¡÷+¦l¾[ȵĺ`õ‚e¹ÊŽ +è5ÌjHYeM-°´<ÐX&Ôr |¥S¸ÒþQ¤÷È¥ûü‹µôuFK–»3¸Ã.|]¾~Ãh&³<Ä„Î3\ןe£}xwC+“ˆhyü©Å<—ó©QŸ³¿ª¨”õW%Ö‘çÇ’¼ÇŸQ‰2ÌHò“ZÜív„·'²a¶“YUx©€Üáåª +Ýæ0v<_Å7:ÅžŠa4ÐèhNN˜u²ñ¾g|)?N3U¾ürFƒ×k,GémPî¤V¬€³òIoᙼ¹øòñ>)‰l¼w¡vÐ(™è·’·2ïŸ3[wœˆúzNÅ]¿ÿ§øÎnKéhbAÖkWŸq-“óPOæl…CÏÛqÓµ—û¥Û›%Wª9î|9<">Çù¶¢Xµãظ¯èÒ nSTöl³6ùâ¸íÁëî°l×9õÖ΢Œ%«Ç1JhÂó_V*IÏÉi¢†a²ÎZJ¬Óóƒ¸3Q=o¤‘Ÿ—’{Võ–zEGjCØnûõ³3¦m¨ +Pdà(שoÌŠå¤Ób”kÌ:wµ¬ãOç15ÐêÓ°Ôíµc2E»Î‡[+‹y=ÀÍk¡0ú‚Øq¥¼À£oâqñœºo•sÚ— Óžg$ddÒ*.QÒútTõ¨z´áD¦ä9sïšÆýÊ´g*¥eo*ôÛ£Ox¦[ˆhÏÝ0Vc{µë\æOžó¼Š®3ÌHw¾g6vvGhÞd£Ÿ´ëaÕ•w™è)rì“_Þš$¬xÔd +Yˆu¤‰}v<-*&ç–ÜotÜ"_…'¸É‡Ãòuè3ºÉòžëÁÂk–
âš·eÙBÉ÷Z“½Y”g M¦ +×½\¦-¤/½Tfpd/ðrC›Á”MøBË3ë•oÉž@Îâ¥B_fFçù³ií§o$T$ÉU2ºå¼Ð…{NÑÙ@ß1ô—tIýŠ,ŒÉ6IÊÔw¶nÉD5)eŸ M6²ŠÎŸŽ:Ÿ²wD|üc}㉣¨ÏŸ‘‰_Q¶Š,óÝU?øãóš<ÔâÉ™a†¡ÔŸLôðq¯º þ5Á-¹(bdÀïsñ)„:ÿ¹j5Ÿûüþóïß+ãЯÚ@C±K/bö®nu2A3qo\ó^ä„Ôղߔ`×6£‘¨MiŠQ¶8£å««Êåê¶ïEÙg½½®Å\ì)‘•e»¦¦O¿©NäÎkÕr<¯t‡1Â7ìX”^J-qRøôrN–mseé2÷¤®±è@Áø+¤•MPom®bÅغնöük5^àºÀáMgÇ ¦åk„«GŸZ÷>°ZEô IX0÷åâ#dÙà‡ëÍ7Í2{—C"«Ï盛Õî6¯\Lo0_~Á}enÂõÈ¡‚óë§NÞ¨ncTYWgo9cœÈè?øŹ‹n'jĬ»‘hñH‚=²õ궀&«äƒ@‰¯¸«œ4õO¹(N-4Ö›˜‰=lÂS endstream endobj 1 0 obj << -/Creator( TeX output 2004.11.15:0922) +/Creator( TeX output 2006.02.03:1049) /Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks) -/CreationDate(D:20041115092509-08'00') +/CreationDate(D:20060203104920-08'00') >> endobj 5 0 obj @@ -3263,199 +3293,199 @@ endobj xref 0 194 0000000000 65535 f -0000330651 00000 n -0000334016 00000 n -0000333664 00000 n -0000333869 00000 n -0000330815 00000 n +0000333127 00000 n +0000336492 00000 n +0000336140 00000 n +0000336345 00000 n +0000333291 00000 n 0000016129 00000 n -0000174339 00000 n -0000174155 00000 n +0000175402 00000 n +0000175218 00000 n 0000000009 00000 n -0000178208 00000 n -0000178021 00000 n +0000179270 00000 n +0000179083 00000 n 0000000985 00000 n -0000181073 00000 n -0000180878 00000 n +0000182135 00000 n +0000181940 00000 n 0000001966 00000 n -0000183520 00000 n -0000183334 00000 n +0000184582 00000 n +0000184396 00000 n 0000002900 00000 n -0000189591 00000 n -0000189397 00000 n +0000190569 00000 n +0000190375 00000 n 0000003801 00000 n -0000191766 00000 n -0000191578 00000 n +0000192744 00000 n +0000192556 00000 n 0000004791 00000 n -0000196949 00000 n -0000196763 00000 n +0000198273 00000 n +0000198087 00000 n 0000005774 00000 n -0000203277 00000 n -0000203090 00000 n +0000205362 00000 n +0000205175 00000 n 0000006726 00000 n -0000206665 00000 n -0000206476 00000 n +0000208749 00000 n +0000208560 00000 n 0000007700 00000 n -0000214705 00000 n -0000214515 00000 n +0000216788 00000 n +0000216598 00000 n 0000008630 00000 n -0000224679 00000 n -0000224491 00000 n +0000226762 00000 n +0000226574 00000 n 0000009551 00000 n -0000239987 00000 n -0000239794 00000 n +0000242209 00000 n +0000242016 00000 n 0000010453 00000 n -0000241858 00000 n -0000241672 00000 n +0000244081 00000 n +0000243895 00000 n 0000011376 00000 n -0000252498 00000 n -0000252311 00000 n +0000254921 00000 n +0000254734 00000 n 0000012361 00000 n -0000255699 00000 n -0000255513 00000 n +0000258121 00000 n +0000257935 00000 n 0000013333 00000 n -0000333769 00000 n +0000336245 00000 n 0000014318 00000 n -0000333819 00000 n +0000336295 00000 n 0000015937 00000 n -0000330918 00000 n +0000333394 00000 n 0000023162 00000 n -0000258998 00000 n -0000258811 00000 n +0000261619 00000 n +0000261432 00000 n 0000016190 00000 n -0000263419 00000 n -0000263233 00000 n +0000266041 00000 n +0000265855 00000 n 0000017115 00000 n -0000274104 00000 n -0000273909 00000 n +0000276079 00000 n +0000275884 00000 n 0000017843 00000 n -0000282653 00000 n -0000282468 00000 n +0000284858 00000 n +0000284673 00000 n 0000018808 00000 n -0000292730 00000 n -0000292540 00000 n +0000294934 00000 n +0000294744 00000 n 0000019535 00000 n 0000020275 00000 n 0000023046 00000 n -0000331023 00000 n +0000333499 00000 n 0000026567 00000 n -0000294774 00000 n -0000294580 00000 n +0000296978 00000 n +0000296784 00000 n 0000023224 00000 n 0000024154 00000 n 0000026439 00000 n -0000331128 00000 n +0000333604 00000 n 0000030530 00000 n -0000298533 00000 n -0000298347 00000 n +0000300736 00000 n +0000300550 00000 n 0000026629 00000 n 0000027578 00000 n 0000030413 00000 n -0000331233 00000 n +0000333709 00000 n 0000087051 00000 n 0000030592 00000 n 0000086946 00000 n -0000331512 00000 n +0000333988 00000 n 0000114813 00000 n 0000087113 00000 n 0000114732 00000 n -0000331617 00000 n +0000334093 00000 n 0000117375 00000 n 0000114875 00000 n 0000117246 00000 n -0000331722 00000 n -0000122908 00000 n -0000303060 00000 n -0000302864 00000 n +0000334198 00000 n +0000123104 00000 n +0000305462 00000 n +0000305266 00000 n 0000117438 00000 n -0000304814 00000 n -0000304621 00000 n +0000307216 00000 n +0000307023 00000 n 0000118433 00000 n 0000119413 00000 n -0000122740 00000 n -0000331830 00000 n -0000126790 00000 n -0000307746 00000 n -0000307559 00000 n -0000122972 00000 n -0000123959 00000 n -0000126613 00000 n -0000331938 00000 n -0000130298 00000 n -0000126854 00000 n -0000130131 00000 n -0000332224 00000 n -0000133810 00000 n -0000130362 00000 n -0000133704 00000 n -0000332332 00000 n -0000136817 00000 n -0000133874 00000 n -0000136711 00000 n -0000332440 00000 n -0000141048 00000 n -0000312893 00000 n -0000312696 00000 n -0000136881 00000 n -0000314911 00000 n -0000314716 00000 n -0000137538 00000 n -0000138523 00000 n -0000140857 00000 n -0000332548 00000 n -0000145624 00000 n -0000317558 00000 n -0000317368 00000 n -0000141112 00000 n -0000142096 00000 n -0000145407 00000 n -0000332656 00000 n -0000150779 00000 n -0000320954 00000 n -0000320765 00000 n -0000145688 00000 n -0000146681 00000 n -0000150635 00000 n -0000332944 00000 n -0000154561 00000 n -0000150843 00000 n -0000154455 00000 n -0000333052 00000 n -0000164049 00000 n -0000323120 00000 n -0000322924 00000 n -0000154625 00000 n -0000324589 00000 n -0000324395 00000 n -0000155648 00000 n -0000156638 00000 n -0000163892 00000 n -0000333160 00000 n -0000169049 00000 n -0000164113 00000 n -0000168918 00000 n -0000333268 00000 n -0000171766 00000 n -0000169113 00000 n -0000171624 00000 n -0000333376 00000 n -0000174091 00000 n -0000326843 00000 n -0000326648 00000 n -0000171830 00000 n -0000172782 00000 n -0000173998 00000 n -0000331419 00000 n -0000331338 00000 n -0000332129 00000 n -0000332046 00000 n -0000332847 00000 n -0000332764 00000 n -0000333567 00000 n -0000333484 00000 n -0000333948 00000 n -0000333971 00000 n -0000333993 00000 n +0000122912 00000 n +0000334306 00000 n +0000127070 00000 n +0000310148 00000 n +0000309961 00000 n +0000123168 00000 n +0000124155 00000 n +0000126893 00000 n +0000334414 00000 n +0000130578 00000 n +0000127134 00000 n +0000130411 00000 n +0000334700 00000 n +0000134090 00000 n +0000130642 00000 n +0000133984 00000 n +0000334808 00000 n +0000137097 00000 n +0000134154 00000 n +0000136991 00000 n +0000334916 00000 n +0000141328 00000 n +0000315294 00000 n +0000315097 00000 n +0000137161 00000 n +0000317312 00000 n +0000317117 00000 n +0000137818 00000 n +0000138803 00000 n +0000141137 00000 n +0000335024 00000 n +0000145903 00000 n +0000319959 00000 n +0000319769 00000 n +0000141392 00000 n +0000142376 00000 n +0000145686 00000 n +0000335132 00000 n +0000151058 00000 n +0000323354 00000 n +0000323165 00000 n +0000145967 00000 n +0000146960 00000 n +0000150914 00000 n +0000335420 00000 n +0000154840 00000 n +0000151122 00000 n +0000154734 00000 n +0000335528 00000 n +0000164328 00000 n +0000325520 00000 n +0000325324 00000 n +0000154904 00000 n +0000326989 00000 n +0000326795 00000 n +0000155927 00000 n +0000156917 00000 n +0000164171 00000 n +0000335636 00000 n +0000169328 00000 n +0000164392 00000 n +0000169197 00000 n +0000335744 00000 n +0000172070 00000 n +0000169392 00000 n +0000171928 00000 n +0000335852 00000 n +0000175154 00000 n +0000329241 00000 n +0000329046 00000 n +0000172134 00000 n +0000173086 00000 n +0000175061 00000 n +0000333895 00000 n +0000333814 00000 n +0000334605 00000 n +0000334522 00000 n +0000335323 00000 n +0000335240 00000 n +0000336043 00000 n +0000335960 00000 n +0000336424 00000 n +0000336447 00000 n +0000336469 00000 n trailer << /Size 194 @@ -3463,5 +3493,5 @@ trailer /Info 1 0 R >> startxref -334114 +336590 %%EOF diff --git a/Master/texmf-dist/doc/latex/coordsys/putfile. b/Master/texmf-dist/doc/latex/coordsys/putfile. index 141479c77db..b57c7952bc6 100644 --- a/Master/texmf-dist/doc/latex/coordsys/putfile. +++ b/Master/texmf-dist/doc/latex/coordsys/putfile. @@ -8,7 +8,7 @@ ## ## ## This is the coordsys and logsys packages -## Copyright 2000-04 by Mogens Lemvig Hansen, +## Copyright 2000-06 by Mogens Lemvig Hansen, ## mlhansen@uniserve.com ## ## This program may be distributed and/or modified under the @@ -23,8 +23,8 @@ ## putfile := proc(fn::{string, list(string), set(string)}, P::specfunc(anything, PLOT) ) - option `Copyright 2000-04 by Mogens Lemvig Hansen`; - description "version 1.0"; + option `Copyright 2000-06 by Mogens Lemvig Hansen`; + description "version 1.1"; local L, fns, i, V, scl, FH, ttl, pt, path, ext; global StringTools; L := [args[3..-1]]; @@ -87,8 +87,8 @@ putfile := proc(fn::{string, list(string), set(string)}, if scl <> [1,1] then fprintf(FH, "%% scaled %a\n", scl) fi; V := [ map2(op, 1, L[i]), map2(op, 2, L[i]) ]; V := map( u-> min(op(u))..max(op(u)), V ); - fprintf(FH, "%% horizontal range: %f..%f\n", op(V[1])); - fprintf(FH, "%% vertical range: %f..%f\n", op(V[2])); + fprintf(FH, "%% horizontal range: %f .. %f\n", op(V[1])); + fprintf(FH, "%% vertical range: %f .. %f\n", op(V[2])); for pt in L[i] do fprintf(FH, "%f \t%f\n", op(pt)); od; @@ -96,8 +96,8 @@ putfile := proc(fn::{string, list(string), set(string)}, end try end do; end; `putfile/grabcurves` := proc(x) - option `Copyright 2000-04 by Mogens Lemvig Hansen`; - description "version 1.0"; + option `Copyright 2000-06 by Mogens Lemvig Hansen`; + description "version 1.1"; local L; if op(0, x) = 'CURVES' then L := [ op(x) ]; @@ -109,8 +109,8 @@ end; end; `putfile/cleancurve` := proc(CC::list, V::list) local C, B, pts, pt, m, i; - option `Copyright 2004 by Mogens Lemvig Hansen`; - description "version 1.0"; + option `Copyright 2004-06 by Mogens Lemvig Hansen`; + description "version 1.1"; C := select(type, CC, ['numeric', 'numeric']); if nops(C) < 1 then error "no numeric points in %1", C fi; B := C[1]; @@ -147,13 +147,13 @@ end; fi; pts := [pts]; if C[i-1][1] < C[i][1] then - pts := sort(pts, (u,v)->evab(u[1]<v[1])); + pts := sort(pts, (u,v)->evalb(u[1]<v[1])); elif C[i-1][1] > C[i][1] then - pts := sort(pts, (u,v)->evab(u[1]>v[1])); + pts := sort(pts, (u,v)->evalb(u[1]>v[1])); elif C[i-1][2] < C[i][2] then - pts := sort(pts, (u,v)->evab(u[2]<v[2])); + pts := sort(pts, (u,v)->evalb(u[2]<v[2])); elif C[i-1][2] > C[i][2] then - pts := sort(pts, (u,v)->evab(u[2]>v[2])); + pts := sort(pts, (u,v)->evalb(u[2]>v[2])); else error "cannot happen"; fi; diff --git a/Master/texmf-dist/doc/latex/dramatist/README b/Master/texmf-dist/doc/latex/dramatist/README index eaef1166440..f02b5d7bf2e 100644 --- a/Master/texmf-dist/doc/latex/dramatist/README +++ b/Master/texmf-dist/doc/latex/dramatist/README @@ -1,8 +1,8 @@ This package contains the following files:
- • `dramatist.readme': this file.
- • `dramatist.dtx': the package source file.
- • `dramatist.ins': the installation driver file.
+ - `Readme': this file.
+ - `dramatist.dtx': the package source file.
+ - `dramatist.ins': the installation driver file.
In order to get file `dramatist.sty' you have to run tex on
`dramatist.ins' (you'll get also the example files).
@@ -62,6 +62,25 @@ v1.2 Added support for `poemscol' package. Added various hooks for user customization.
+v1.2a Fixed a bug in the vertical spacing of \DramPer.
+
+ Changed name of counter 'linenumber' to 'verselinenumber'
+ in order to mantain compatibility with package 'poemscol'.
+
+v1.2c Fixed a conflict with the spanish extension of `babel'.
+
+ Fixed a bug in macro \direct: issuing a \<name> command
+ at the end of this macro no more produces unwanted spaces.
+
+ Fixed a typo in the author e-mail address.
+
+v1.2d Fixed a bug in the spacing of characters' groups inside a
+ dramatis personae list.
+
+ Fixed a bug with \dirdelimiter.
+
+ Fixed a bug with \speaksdel inside a verse drama environment.
+
- Bugs Report -
Please report any bugs you find, sending an e-mail to this
diff --git a/Master/texmf-dist/doc/latex/dramatist/dramatist.pdf b/Master/texmf-dist/doc/latex/dramatist/dramatist.pdf Binary files differindex 4e75a97a818..98d004d3b51 100644 --- a/Master/texmf-dist/doc/latex/dramatist/dramatist.pdf +++ b/Master/texmf-dist/doc/latex/dramatist/dramatist.pdf diff --git a/Master/texmf-dist/doc/latex/dramatist/marlowe-poemscol.tex b/Master/texmf-dist/doc/latex/dramatist/marlowe-poemscol.tex index caf5351a433..3767f128025 100644 --- a/Master/texmf-dist/doc/latex/dramatist/marlowe-poemscol.tex +++ b/Master/texmf-dist/doc/latex/dramatist/marlowe-poemscol.tex @@ -21,7 +21,7 @@ %% same distribution. (The sources need not necessarily be %% in the same archive or directory.) %% dramatist.dtx -%% Copyright (C) 2003-2004 Massimiliano Dominici +%% Copyright (C) 2003-2005 Massimiliano Dominici %% \CharacterTable%% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z %% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z %% Digits \0\1\2\3\4\5\6\7\8\9 diff --git a/Master/texmf-dist/doc/latex/dramatist/marlowe-verse.tex b/Master/texmf-dist/doc/latex/dramatist/marlowe-verse.tex index 32747b53455..38189340559 100644 --- a/Master/texmf-dist/doc/latex/dramatist/marlowe-verse.tex +++ b/Master/texmf-dist/doc/latex/dramatist/marlowe-verse.tex @@ -21,7 +21,7 @@ %% same distribution. (The sources need not necessarily be %% in the same archive or directory.) %% dramatist.dtx -%% Copyright (C) 2003-2004 Massimiliano Dominici +%% Copyright (C) 2003-2005 Massimiliano Dominici %% \CharacterTable%% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z %% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z %% Digits \0\1\2\3\4\5\6\7\8\9 diff --git a/Master/texmf-dist/doc/latex/dramatist/schiller.tex b/Master/texmf-dist/doc/latex/dramatist/schiller.tex index 80c5765506b..5d048fa43ac 100644 --- a/Master/texmf-dist/doc/latex/dramatist/schiller.tex +++ b/Master/texmf-dist/doc/latex/dramatist/schiller.tex @@ -21,7 +21,7 @@ %% same distribution. (The sources need not necessarily be %% in the same archive or directory.) %% dramatist.dtx -%% Copyright (C) 2003-2004 Massimiliano Dominici +%% Copyright (C) 2003-2005 Massimiliano Dominici %% \CharacterTable%% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z %% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z %% Digits \0\1\2\3\4\5\6\7\8\9 diff --git a/Master/texmf-dist/doc/latex/egplot/egplot.README b/Master/texmf-dist/doc/latex/egplot/egplot.README index 4a54c40137b..f2ae89b43d4 100644 --- a/Master/texmf-dist/doc/latex/egplot/egplot.README +++ b/Master/texmf-dist/doc/latex/egplot/egplot.README @@ -24,3 +24,7 @@ % v1.00 1998/06/17 First release
% v1.01 1998/06/25 Fixed bug with german option and negative tic mark
% values
+% v1.02 1998/07/08 egplot now supports gnuplot-3.5 and gnuplot-3.6beta
+%
+% automatic filename generation (numbering) for multiple
+% egpfile-environments in one document
diff --git a/Master/texmf-dist/doc/latex/egplot/manual.ps.gz b/Master/texmf-dist/doc/latex/egplot/manual.ps.gz Binary files differindex 229782b378a..2c80eeef149 100644 --- a/Master/texmf-dist/doc/latex/egplot/manual.ps.gz +++ b/Master/texmf-dist/doc/latex/egplot/manual.ps.gz diff --git a/Master/texmf-dist/doc/latex/filecontents/README b/Master/texmf-dist/doc/latex/filecontents/README index 01953808af7..7a0aa7970a5 100644 --- a/Master/texmf-dist/doc/latex/filecontents/README +++ b/Master/texmf-dist/doc/latex/filecontents/README @@ -1,11 +1,11 @@ - +--------------------------------------------+ - | FILECONTENTS: | - | | + +--------------------------------------------+ + | FILECONTENTS | + | | | Improved version of LaTeX2e's filecontents | - | and filecontents* environments | - | | - | By Scott Pakin, scott+fc@pakin.org | - +--------------------------------------------+ + | and filecontents* environments | + | | + | By Scott Pakin, scott+fc@pakin.org | + +--------------------------------------------+ Description @@ -35,14 +35,15 @@ information on installing packages. Copyright and license --------------------- -Copyright (C) 2004 Scott Pakin, scott+fc@pakin.org + +Copyright (C) 2006 Scott Pakin, scott+fc@pakin.org This package may be distributed and/or modified under the conditions -of the LaTeX Project Public License, either version 1.2 of this +of the LaTeX Project Public License, either version 1.3b of this license or (at your option) any later version. The latest version of this license is in: http://www.latex-project.org/lppl.txt -and version 1.2 or later is part of all distributions of LaTeX version -1999/12/01 or later. +and version 1.3b or later is part of all distributions of LaTeX +version 2006/01/07 or later. diff --git a/Master/texmf-dist/doc/latex/filecontents/filecontents.pdf b/Master/texmf-dist/doc/latex/filecontents/filecontents.pdf Binary files differindex aad4a3d71a6..0249ccf3fbb 100644 --- a/Master/texmf-dist/doc/latex/filecontents/filecontents.pdf +++ b/Master/texmf-dist/doc/latex/filecontents/filecontents.pdf diff --git a/Master/texmf-dist/doc/latex/footbib/footbib.dvi b/Master/texmf-dist/doc/latex/footbib/footbib.dvi Binary files differdeleted file mode 100644 index 967cd634973..00000000000 --- a/Master/texmf-dist/doc/latex/footbib/footbib.dvi +++ /dev/null diff --git a/Master/texmf-dist/doc/latex/footbib/footbib.pdf b/Master/texmf-dist/doc/latex/footbib/footbib.pdf Binary files differnew file mode 100644 index 00000000000..7edbc299e78 --- /dev/null +++ b/Master/texmf-dist/doc/latex/footbib/footbib.pdf diff --git a/Master/texmf-dist/doc/latex/jurabib/jbtest.pdf b/Master/texmf-dist/doc/latex/jurabib/jbtest.pdf Binary files differnew file mode 100644 index 00000000000..ba634f10a86 --- /dev/null +++ b/Master/texmf-dist/doc/latex/jurabib/jbtest.pdf diff --git a/Master/texmf-dist/doc/latex/maybemath/README b/Master/texmf-dist/doc/latex/maybemath/README index cd3cb9857c1..7d3fdf8f3b6 100644 --- a/Master/texmf-dist/doc/latex/maybemath/README +++ b/Master/texmf-dist/doc/latex/maybemath/README @@ -1,8 +1,8 @@ maybemath LaTeX style, by Andy Buckley <andy@insectnation.org> -------------------------------------------------------------- -maybemath provides LaTeX macros for making math bold or italic according to -context. +maybemath provides LaTeX macros for making math bold, upright, italic +or sans-serif according to context. The \maybebm and \maybeit macros can be used in math expressions to make the arguments typeset as bold or italic respectively if the surrounding @@ -17,6 +17,15 @@ of contents usually replicate the title in normal width. be italicised if the surrounding text is. \maybeitsubscript is provided to shift subscripts to the left if the expression is italicised. +\maybesf makes the argument typeset with \mathsf{} if the surrounding text +context is sans-serif. Note that there is no sans-serif italic math font, +so this command is not compatible with any italic-forcing commands. + +A convenience macro, \maybebmsf is available for handling boldness and +sans-serif issues at the same time, as these are probably the most frequent +problematic environments. Other combined handling is possible with nested +use of the above commands. + Thanks to Viet-Trung Luu on comp.text.tex for providing the first steps to solving this problem. diff --git a/Master/texmf-dist/doc/latex/metaobj/license.txt b/Master/texmf-dist/doc/latex/metaobj/license.txt index 4c164b36df7..d79c68c99df 100644 --- a/Master/texmf-dist/doc/latex/metaobj/license.txt +++ b/Master/texmf-dist/doc/latex/metaobj/license.txt @@ -6,4 +6,4 @@ It implements many of PSTricks' features. It is released under the LPPL. -Denis Roegel, 14 June 2001. +Denis Roegel, 3 August 2003 diff --git a/Master/texmf-dist/doc/latex/metaplot/README b/Master/texmf-dist/doc/latex/metaplot/README index bee9ed74584..47158a5d4b1 100644 --- a/Master/texmf-dist/doc/latex/metaplot/README +++ b/Master/texmf-dist/doc/latex/metaplot/README @@ -14,8 +14,7 @@ potentially in flux. Bug reports and other suggestions would be most welcome!
The documentation currently consists of a preprint of a paper on
-MetaPlot, to be given at Practical TeX 2004, provided as
-metaplot_preprint.pdf.
+MetaPlot given at Practical TeX 2004, as metaplot_preprint.pdf.
A set of examples of MetaPlot usage are also given in the /examples
directory; these currently consist of the figures for the afore-
@@ -25,8 +24,8 @@ files needed to produce them. ---------------------------------------------------------------------
Changelog:
-Version 0.9
- Initial CTAN release.
+Version 0.9 Initial CTAN release.
+Version 0.91 Bugfix (bounding box of plots set to 0.0-1.0)
---------------------------------------------------------------------
License information:
@@ -45,7 +44,4 @@ the Gnu Public License (GPL). Author:
Metaplot is written by Brooks Moses. Bug reports, feature requests,
-and any other suggestions should be directed to bmoses@stanford.edu.
-This address is expected to cease existing in spring of 2004; check
-on CTAN for an updated version of this README file with an updated
-email address after that date.
+and any other suggestions should be directed to metaplot@dpdx.net.
diff --git a/Master/texmf-dist/doc/latex/mwcls/CZYTAJ b/Master/texmf-dist/doc/latex/mwcls/CZYTAJ index 9464819f011..c51138fa83a 100644 --- a/Master/texmf-dist/doc/latex/mwcls/CZYTAJ +++ b/Master/texmf-dist/doc/latex/mwcls/CZYTAJ @@ -3,7 +3,7 @@ Moje W³asne KLaSy dokumentów dla LaTeXa 2e ========================================== -Copyright 2000-2002 by Marcin Woli\'nski <wolinski@gust.org.pl> +Copyright 2000-2003 by Marcin Woli\'nski <wolinski@gust.org.pl> Pliki w tej paczce mog± byæ dystrybuowane i/lub modyfikowane na diff --git a/Master/texmf-dist/doc/latex/mwcls/README b/Master/texmf-dist/doc/latex/mwcls/README index 0e7d40b85f4..b27f33b86c1 100644 --- a/Master/texmf-dist/doc/latex/mwcls/README +++ b/Master/texmf-dist/doc/latex/mwcls/README @@ -3,7 +3,7 @@ My oWn document CLaSses for LaTeX 2e ==================================== -Copyright 2000-2002 by Marcin Woli\'nski <wolinski@gust.org.pl> +Copyright 2000-2003 by Marcin Woli\'nski <wolinski@gust.org.pl> Files in this bundle may be distributed and/or modified under the diff --git a/Master/texmf-dist/fonts/source/public/dingbat/dingbat.mf b/Master/texmf-dist/fonts/source/public/dingbat/dingbat.mf index 6d93e280c62..cc4c96c6a01 100644 --- a/Master/texmf-dist/fonts/source/public/dingbat/dingbat.mf +++ b/Master/texmf-dist/fonts/source/public/dingbat/dingbat.mf @@ -1,19 +1,19 @@ % Dingbat characters as of 3-3-89 by Doug Henderson % To be run with plain.bas. -% Last modified on 3-20-96 by Marcus Ohlhaut (MO) - +% Last modified on 3-27-89 + font_size=10pt#; % make the pxl or pk files be in ...\pixel\pxl1500 - + def clear_all = clearit; clearxy; enddef; - + %%% % turn pt,in,cm etc. into pixel values %%% - + mode_setup; - + %%% % define your variables here %%% @@ -44,25 +44,25 @@ flu_height#:=30pt#; anchor_height#:=150pt#/anchor_scale; anchor_width#:=130pt#/anchor_scale; anchor_depth#:=0pt#; - - + + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + % Very thin weight stroke for flouron (not advised for < 600dpi) %thinish#:=.25pt#; %thinthick#:=.45pt#; %thickish#:=.75pt#; - + % Normal weight stroke for flouron thinish#:=.5pt#; thinthick#:=1pt#; thickish#:=1.5pt#; - + % Heavy weight stroke for flouron %thinish#:=1pt#; %thinthick#:=2pt#; %thickish#:=2.5pt#; - + % Strokes widths for the flower from 1-12 (= 1 pixel - 4.5pt) flower_one#:=.25; flower_two#:=.5; @@ -80,11 +80,11 @@ hand_scale=6; hand_width#:=110pt#/hand_scale; hand_height#:=80pt#/hand_scale; hand_depth#:=0pt#; - + %%% % define your pixels here, do this for each variable defined above %%% - + define_pixels(glyph_width,glyph_height,uniform_square,triangle_size); define_pixels(check_width,check_height,check_depth,dash,thinish,thickish); define_pixels(thinthick,flu_width,flu_height,a,b); @@ -93,11 +93,11 @@ define_pixels(flower_six,flower_seven,flower_eight,flower_nine,flower_ten); define_pixels(flower_eleven,flower_twelve); define_pixels(hand_width,hand_height,hand_depth,dash); define_pixels(anchor_height,anchor_weight,anchor_depth); - + %%% % define a macro which pauses until the user hits the return key %%% - + def whoa= s0:= readstring; enddef; @@ -120,11 +120,11 @@ pickup pensquare scaled 1.6pt; chunkypen:=savepen; pickup pencircle scaled .35pt; ringpen:=savepen; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% Let the dingbat characters begin %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "Anchor for TUG dingbat contest"; beginchar("O",anchor_width#,anchor_height#,anchor_depth#); %%% @@ -138,7 +138,7 @@ beginchar("O",anchor_width#,anchor_height#,anchor_depth#); x6=x14=x18=x19=90/130w; % x6 x14 x18 x19 x27=x28=x45=54/130w; % x27 x28 x45 x17=x35=x56=66/130w; % x17 x35 x56 - + x7=107/130w; % x7 x8=114/130w; % x8 x10=112/130w; % x10 @@ -150,25 +150,25 @@ beginchar("O",anchor_width#,anchor_height#,anchor_depth#); x21=65/130w; % x21 x23=55/130w; % x23 x24=50/130w; % x24 - + x29=53/130w; % x29 x30=48/130w; % x30 x32=21/130w; % x32 x33=26/130w; % x33 - + %%% % y variables %%% y1=y10=65/150h; % y1 y10 y2=y8=43/150h; % y2 y8 y3=y7=45/150h; % y3 y7 - + y4=y6=25/150h; % y4 y6 y5=13/150h; % y5 y21=y23=130/150h; % y21 y23 y22=136/150h; % y22 y45=y56=20/150h; % y45 y56 - + y18=y26=y27=y35=118/150h; % y18 y26 y27 y35 y19=y20=y24=y25=124/150h; % y19 y20 y24 y25 y17=y28=40/150h; % y17 y28 @@ -177,7 +177,7 @@ beginchar("O",anchor_width#,anchor_height#,anchor_depth#); y14=y31=38/150h; % y14 y31 y13=y32=50/150h; % y13 y32 y12=y33=54/150h; % y12 y33 - + %%% % path assignments %%% @@ -186,7 +186,7 @@ beginchar("O",anchor_width#,anchor_height#,anchor_depth#); z7--z8--z10--z12--z13 & z13..z14..z16..z17 & z17--z35--z18--z19--cycle; ring_of_anchor = z20..z22..z24; - + tilted_anchor = the_anchor rotated akilter; tilted_ring = ring_of_anchor rotated akilter; %%% @@ -196,7 +196,7 @@ beginchar("O",anchor_width#,anchor_height#,anchor_depth#); fill the_anchor; pickup ringpen; draw ring_of_anchor; - + %%% % after clearing previous path (upright anchor) fill the tilted path %%% @@ -206,13 +206,13 @@ beginchar("O",anchor_width#,anchor_height#,anchor_depth#); %showit; %message"When thru viewing, press Enter to continue"; %whoa; - + labels(range 1 thru 4,45,5,56,range 6 thru 19); labels(range 20 thru 33,35); - + endchar; - - + + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% "Hand pointer to the left"; beginchar("N",hand_width#,hand_height#,hand_depth#); @@ -245,7 +245,7 @@ beginchar("N",hand_width#,hand_height#,hand_depth#); x26=62.5/110w; % x26 x27=75/110w; % x27 x28=74/110w; % x28 - + %%% % y variables %%% @@ -274,21 +274,21 @@ beginchar("N",hand_width#,hand_height#,hand_depth#); y26=71/80h; % y26 y27=72/80h; % y27 y28=67/80h; % y28 - + collar=z1..z2..z3 & z3..z4..z5..z6..z7 & z7..z8..z9 & z9..z10..z1; thumb=z25..z26..z27..z28..z24; index_finger=z4..z25..z24..z23..z22..z21..z19..z20; the_bird=z17--z16..z18..z19; ring_finger=z14--z13..z15..z16; pinky_finger=z6..z11..z1112 & z1112..z12..z13; - + pickup razorpen; - + draw collar; draw thumb; draw index_finger; draw the_bird; draw ring_finger; draw pinky_finger; labels(range 1 thru 11,1112,range 12 thru 28); endchar; - + "Flowery flouron"; beginchar("J",flu_width#,flu_height#,0); % first stroke = x1 thru x8 @@ -326,9 +326,9 @@ beginchar("J",flu_width#,flu_height#,0); penlabels(range 1 thru 19); flower_x:=currentpicture; endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "Right flower"; beginchar("K",flu_width#,flu_height#,0); currentpicture:=currentpicture+flower_x; @@ -336,24 +336,24 @@ beginchar("K",flu_width#,flu_height#,0); currentpicture:=currentpicture shifted (w,0); flower_y:=currentpicture; endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% "Flipped left flower--matches J"; beginchar("L",flu_width#,flu_height#,0); currentpicture:=currentpicture+flower_y; currentpicture:=currentpicture reflectedabout((0,.5[0,h]),(1,.5[0,h])); endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "Flipped right flower--matches K"; beginchar("M",flu_width#,flu_height#,0); currentpicture:=currentpicture+flower_x; currentpicture:=currentpicture reflectedabout((0,.5[0,h]),(1,.5[0,h])); endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "DLA satelite dish"; beginchar("I",a#,b#,0); numeric zero; zero=0; @@ -365,7 +365,7 @@ beginchar("I",a#,b#,0); x11=1/10(x2-x1); y11=9/10(b); x12=3/10(x2-x1); y12=.53(b); x13=9/10(x2-x1); y13=5/10(b); y10=4.5/10(b); - + % draw the bottom platform of the dish pickup pensquare xscaled .5pt yscaled .5pt filldraw z1--z2--z3--z4--cycle; @@ -382,9 +382,9 @@ beginchar("I",a#,b#,0); % draw z11--z13; labels(range 1 thru 13); endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "Left flouron"; beginchar("E",flu_width#,flu_height#,0); pickup pencircle; @@ -410,9 +410,9 @@ beginchar("E",flu_width#,flu_height#,0); penlabels(range 1 thru 18); holdit:=currentpicture; endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "Right flouron"; beginchar("F",flu_width#,flu_height#,0); currentpicture:=currentpicture+holdit; @@ -421,25 +421,25 @@ beginchar("F",flu_width#,flu_height#,0); currentpicture:=currentpicture shifted (w,0); holdem:=currentpicture; endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "Flipped left flouron--matches F"; beginchar("G",flu_width#,flu_height#,0); currentpicture:=currentpicture+holdem; currentpicture:=currentpicture reflectedabout((0,.5[0,h]),(1,.5[0,h])); endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "Flipped right flouron--matches E"; beginchar("H",flu_width#,flu_height#,0); currentpicture:=currentpicture+holdit; currentpicture:=currentpicture reflectedabout((0,.5[0,h]),(1,.5[0,h])); endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "Check mark"; beginchar("D",check_width#,check_height#,check_depth#); pickup pencircle; @@ -449,9 +449,9 @@ beginchar("D",check_width#,check_height#,check_depth#); penstroke z1e--z2e--z3e; penlabels(1,2,3); endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "Square (filled) with dots border design"; beginchar("C",triangle_size#,triangle_size#,0); x1=x3=good.x(1/2triangle_size); @@ -461,7 +461,7 @@ x5=x6=good.x(3/10triangle_size); x7=x8=good.x(7/10triangle_size); x9=x10=good.x(2/10triangle_size); x12=x11=good.x(8/10triangle_size); - + y1=good.y(1/10triangle_size); y9=y12=good.y(2/10triangle_size); y5=y8=good.y(3/10triangle_size); @@ -469,18 +469,18 @@ y2=y4=good.y(1/2triangle_size); y6=y7=good.y(7/10triangle_size); y10=y11=good.y(8/10triangle_size); y3=good.y(9/10triangle_size); - + pickup razorpen; fill z1..z5..z2 & z2..z6..z3 & z3..z7..z4 & z4..z8..z1..cycle; pickup bigdotpen; drawdot z9; drawdot z12; drawdot z10; drawdot z11; - + labels(range 1 thru 12); - + endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "Square (unfilled) with dots border design"; beginchar("B",triangle_size#,triangle_size#,0); x1=x3=good.x(1/2triangle_size); @@ -490,7 +490,7 @@ beginchar("B",triangle_size#,triangle_size#,0); x7=x8=good.x(7/10triangle_size); x9=x10=good.x(2/10triangle_size); x12=x11=good.x(8/10triangle_size); - + y1=good.y(1/10triangle_size); y9=y12=good.y(2/10triangle_size); y5=y8=good.y(3/10triangle_size); @@ -498,24 +498,24 @@ beginchar("B",triangle_size#,triangle_size#,0); y6=y7=good.y(7/10triangle_size); y10=y11=good.y(8/10triangle_size); y3=good.y(9/10triangle_size); - + pickup bigpen; draw z1..z5..z2; draw z2..z6..z3; draw z3..z7..z4; draw z4..z8..z1; - + pickup bigdotpen; drawdot z9; drawdot z12; drawdot z10; drawdot z11; pickup lildotpen; erase drawdot z9; erase drawdot z12; erase drawdot z10;erase drawdot z11; - + labels(range 1 thru 12); - + endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "Z border design"; beginchar("Z",glyph_width#,glyph_height#,0); pickup bigger; @@ -529,18 +529,18 @@ y1=y2=0; y7=y8=1/3good.y(glyph_height); y3=y4=2/3good.y(glyph_height); y5=y6=good.y(glyph_height); - + draw z5--z6--z7--z8; draw z1--z2--z3--z4; %draw bot z5--z3; %draw top z1--z7; - + labels(range 1 thru 8); - + endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "S border design"; beginchar("S",glyph_width#,glyph_height#,0); pickup bigger; @@ -549,158 +549,140 @@ x1=x6=x7=0; x2=x3=x8=good.x(glyph_width); x4=good.x(2/8glyph_width); x5=good.x(6/8glyph_width); - + y1=y2=0; y5=y6=good.y(1/3glyph_height); y3=y4=good.y(2/3glyph_height); y7=y8=good.y(glyph_height); - + draw z1--z2--z3--z4; draw z5--z6--z7--z8; %draw top z1--z6; %draw bot z8--z3; cullit; - + labels(range 1 thru 8); - + endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "Overlapping thick\thin line border design--- character 1 (top-left)"; beginchar("a",uniform_square#,uniform_square#,0); - + x1=x2=good.x(1/10uniform_square); x3=x4=good.x(4/10uniform_square); x5=x8=good.x(uniform_square); x6=x7=good.x(2/10uniform_square); - + y1=y6=good.y(0); y2=y3=good.y(6/10uniform_square); y7=y8=good.y(8/10uniform_square); y4=y5=good.y(9/10uniform_square); - + pickup chunkypen; draw z1--z2--z3--z4--z5; pickup bigpen; draw z6--z7--z8; p1:=currentpicture; - + labels(range 1 thru 8); - + endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "Overlapping thick\thin line border design--- character 2 (top-middle)"; beginchar("b",uniform_square#,uniform_square#,0); - + x1=x3=good.x(0); x2=x4=good.x(uniform_square); - + y1=y2=good.y(9/10uniform_square); y3=y4=good.y(8/10uniform_square); - + pickup chunkypen; draw z1--z2; pickup bigpen; draw z3--z4; p2:=currentpicture; - + labels(1,2,3,4); - + endchar; %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "Overlapping thick\thin line border design--- character 3 (top-right)"; beginchar("c",uniform_square#,uniform_square#,0); - + x1=x6=good.x(0); x2=x3=good.x(6/10uniform_square); x7=x8=good.x(8/10uniform_square); x4=x5=good.x(9/10uniform_square); - + y1=y2=good.y(9/10uniform_square); y6=y7=good.y(8/10uniform_square); y3=y4=good.y(6/10uniform_square); y5=y8=good.y(0); - + pickup chunkypen; draw z1--z2--z3--z4--z5; pickup bigpen; draw z6--z7--z8; p3:=currentpicture; - + labels(range 1 thru 8); - + endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "Overlapping thick\thin line border design--- character 4 (middle-left)"; beginchar("d",uniform_square#,uniform_square#,0); - + x1=x2=good.x(1/10uniform_square); x3=x4=good.x(2/10uniform_square); y1=y3=good.y(0); y2=y4=good.y(uniform_square); - + pickup chunkypen; draw z1--z2; pickup bigpen; draw z3--z4; p4:=currentpicture; - + labels(1,2,3,4); - + endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - -% (MO) The following commented-out lines are Doug's original definitions. -% -% "Overlapping thick\thin line border design--- character 5 (middle-right)"; -% beginchar("e",uniform_square#,uniform_square#,0); -% currentpicture:=currentpicture + p4; -% currentpicture:=currentpicture reflectedabout((.5[0,0],0),(.5[0,0],1)); -% endchar; -% -% They have been replaced by - + "Overlapping thick\thin line border design--- character 5 (middle-right)"; beginchar("e",uniform_square#,uniform_square#,0); -x1=x2=good.x(9/10uniform_square); -x3=x4=good.x(8/10uniform_square); -y1=y3=good.y(0); -y2=y4=good.y(uniform_square); -pickup chunkypen; -draw z1--z2; -pickup bigpen; -draw z3--z4; -p4:=currentpicture; -labels(1,2,3,4); +currentpicture:=currentpicture + p4; +currentpicture:=currentpicture reflectedabout((.5[0,0],0),(.5[0,0],1)); endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "Overlapping thick\thin line border design--- character 6 (bottom-left)"; beginchar("f",uniform_square#,uniform_square#,0); currentpicture:=currentpicture + p1; currentpicture:=currentpicture reflectedabout((0,.5[0,uniform_square]),(1,.5[0,uniform_square])); endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "Overlapping thick\thin line border design--- character 7 (bottom-middle)"; beginchar("g",uniform_square#,uniform_square#,0); currentpicture:=currentpicture + p2; currentpicture:=currentpicture reflectedabout((0,.5[0,uniform_square]),(1,.5[0,uniform_square])); endchar; - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - + "Overlapping thick\thin line border design--- character 8 (bottom-right)"; beginchar("h",uniform_square#,uniform_square#,0); currentpicture:=currentpicture + p3; diff --git a/Master/texmf-dist/metapost/metaplot/metaplot.mp b/Master/texmf-dist/metapost/metaplot/metaplot.mp index d26c938d6ce..3bd6219a35a 100644 --- a/Master/texmf-dist/metapost/metaplot/metaplot.mp +++ b/Master/texmf-dist/metapost/metaplot/metaplot.mp @@ -1,5 +1,5 @@ % METAPLOT: primary plot routines for the METAPLOT package. -% Copyright(C) 2004, Brooks Moses +% Copyright(C) 2004-2005, Brooks Moses % % This work may be distributed and/or modified under the % conditions of the LaTeX Project Public License, either @@ -12,7 +12,7 @@ % % This work has the LPPL maintenance status "author-maintained". % -% Version 0.9. +% Version 0.91. % % The n < 1.0 release number indicates that this is a beta release; % the author at present makes no assurances that the command syntax @@ -20,7 +20,7 @@ % release. % % Bug reports, feature requests, and all other suggestions should -% be directed to Brooks Moses, bmoses@stanford.edu. +% be directed to Brooks Moses via metaplot@dpdx.net. % Load MetaPlot axes macros @@ -63,6 +63,15 @@ def plot_instantiate(suffix inst)(suffix plot_object) = % Pointer-function to plot_object's plots, scaled and positioned. vardef inst.plot(suffix name) = + begingroup + save xleft; save xright; save ybot; save ytop; + xleft = min(xpart(llcorner plot_object.name), 0.0); + xright = max(xpart(urcorner plot_object.name), 1.0); + ybot = min(ypart(llcorner plot_object.name), 0.0); + ytop = max(ypart(urcorner plot_object.name), 1.0); + setbounds plot_object.name to + (xleft,ybot)--(xright,ybot)--(xright,ytop)--(xleft,ytop)--cycle; + endgroup; plot_object.name xscaled inst.pagewidth yscaled inst.pageheight shifted inst.llft enddef; diff --git a/Master/texmf-dist/source/latex/ccaption/ccaption.dtx b/Master/texmf-dist/source/latex/ccaption/ccaption.dtx index d8d92d7135d..a7ebcb96ed6 100644 --- a/Master/texmf-dist/source/latex/ccaption/ccaption.dtx +++ b/Master/texmf-dist/source/latex/ccaption/ccaption.dtx @@ -126,6 +126,7 @@ % \cs{caption} with subfigure option} % \changes{v3.1c}{2003/11/14}{Made \cs{label} work after \cs{contcaption}} % \changes{v3.2}{2005/03/21}{Support for bilingual captions in longtable} +% \changes{v3.2a}{2005/03/29}{Fix bicaption labels} % % \def\dtxfile{ccaption.dtx} % \def\fileversion{v2.6c} \def\filedate{2000/03/15} @@ -139,6 +140,7 @@ % \def\fileversion{v3.1b} \def\filedate{2002/10/18} % \def\fileversion{v3.1c} \def\filedate{2003/11/14} % \def\fileversion{v3.2} \def\filedate{2005/03/21} +% \def\fileversion{v3.2a} \def\filedate{2005/03/29} % \newcommand*{\Lpack}[1]{\textsf {#1}} ^^A typeset a package % \newcommand*{\Lopt}[1]{\textsf {#1}} ^^A typeset an option % \newcommand*{\file}[1]{\texttt {#1}} ^^A typeset a file @@ -434,7 +436,7 @@ % \captionstyle{\centerlastline\\} % \captiontitlefont{\scshape} % \setlength{\belowcaptionskip}{10pt} -% \ifx #1\@empty \caption{#2}\else \caption[#1]{#2}} +% \ifx\@empty#1 \caption{#2}\else \caption[#1]{#2}} % \end{verbatim} % \textbf{NOTE:} Any code that involves the |@| sign must be either in % a package (|.sty|) file or enclosed between a |\makeatletter| \ldots @@ -1892,7 +1894,7 @@ % \begin{macrocode} %<*usc> \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{ccaption}[2005/03/21 v3.2 Extended captioning and new floats] +\ProvidesPackage{ccaption}[2005/03/29 v3.2a Extended captioning and new floats] % \end{macrocode} % In an attempt to avoid name clashes with other packages, all internal @@ -2428,6 +2430,7 @@ % name in % language 2, and short and long in language 2. Both texts are put % into the List of as numbered entries. +% \changes{v3.2a}{2005/03/29}{Fix empty check in \cs{bitwonumcaption}} % \begin{macrocode} \newcommand{\bitwonumcaption}[6][\@empty]{% \begingroup @@ -2439,7 +2442,7 @@ % \end{macrocode} % Do the optional labeling. % \begin{macrocode} - \ifx #1\@empty\else + \ifx\@empty#1\else \label{#1} \fi % \end{macrocode} @@ -2471,6 +2474,7 @@ % short and long in language 1, name in % language 2, and short and long in language 2. Both texts are put % into the List of, but only the first is numbered. +% \changes{v3.2a}{2005/03/29}{Fix empty check in \cs{bionenumcaption}} % \begin{macrocode} \newcommand{\bionenumcaption}[6][\@empty]{% \begingroup @@ -2482,7 +2486,7 @@ % \end{macrocode} % Do the optional labeling. % \begin{macrocode} - \ifx #1\@empty\else + \ifx\@empty#1\else \label{#1} \fi % \end{macrocode} @@ -2514,6 +2518,7 @@ % short and long in language 1, name in % language 2, and long in language 2. % Only the first text is put into the List. +% \changes{v3.2a}{2005/03/29}{Fix empty check in \cs{bicaption}} % \begin{macrocode} \newcommand{\bicaption}[5][\@empty]{% \begingroup @@ -2525,7 +2530,7 @@ % \end{macrocode} % Do the optional labeling. % \begin{macrocode} - \ifx #1\@empty\else + \ifx\@empty#1\else \label{#1} \fi % \end{macrocode} @@ -3809,6 +3814,18 @@ % The definition of |\@if@contemptyarg| is based on the improved version % that Donald supplied, only the macro names being changed. % +% For checking if an optional argument is present I used code along the +% lines: \\ +% \verb?\newcommand{\com}[4][\@empty]{...? \\ +% \verb?\ifx \@empty#1\else %argument present? \\ +% Unfortunately I was not consistent, as Benjamin Bayart found\footnote{Email +% to me on 2005/03/29.} when he used an optional argument that started with +% a double character, like \verb?\bicaption[ccapt3]{...?, which caused +% nasty things to happen. In these cases I had coded: \\ +% \verb?\ifx #1\@empty\else %argument present? \\ +% I really should have known better as this results in TRUE with +% \verb?apt3? being left dangling (and typeset). +% % \bibliographystyle{alpha} % % \begin{thebibliography}{MCCG95} diff --git a/Master/texmf-dist/source/latex/cdpbundl/cdpbundl.dtx b/Master/texmf-dist/source/latex/cdpbundl/cdpbundl.dtx index e74d31c7c6d..01d80c3291d 100644 --- a/Master/texmf-dist/source/latex/cdpbundl/cdpbundl.dtx +++ b/Master/texmf-dist/source/latex/cdpbundl/cdpbundl.dtx @@ -5,7 +5,7 @@ % % This file is part of a work named "C.D.P. Bundle". % -% Copyright (C) 1999-2005 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. +% Copyright (C) 1999-2006 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. % % The C.D.P. Bundle may be distributed and/or modified under the % conditions of the LaTeX Project Public License, either version 1.3 @@ -31,10 +31,12 @@ % \fi % % \def\filename{cdpbundl.dtx} -% \def\fileversion{0.33} -% \def\filedate{2005/01/01} -% \def\docdate {2005/01/01} -% \def\doclongdate{January~1, 2005} +% \def\fileversion{0.34} +% \def\filedate{2006/01/01} +% \def\docdate {2006/01/01} +% \def\doclongdate{January~1, 2006} +% +% \CheckSum{4829} % % \changes{0.30}{2001 Jul 01}{First release of the C.D.P. Bundle} % \changes{0.31}{2001 Dec 01}{Added support for the \protect\opz{usePS} @@ -45,8 +47,13 @@ % \protect\packlass{\protect\articoletteracdp} class and of the % \protect\packlass{\protect\cdpaddon} package to make it compatible % with the \protect\packlass{\protect\hyperref} package} +% \changes{0.34}{2006 Jan 01}{Improved interaction with the +% \protect\packlass{\protect\hyperref} package} +% \changes{0.34}{2006 Jan 01}{Corrected positioning of floats +% in float pages} +% \changes{0.34}{2006 Jan 01}{Added \protect\texttt{\protect\bslash place} +% command} % -% \CheckSum{4756} %% \CharacterTable %% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z %% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z @@ -73,7 +80,7 @@ % \DoNotIndex{\setlength,\setcounter,\addtolength} % \DoNotIndex{\expandafter,\do,\relax,\advance,\multiply,\divide} % \DoNotIndex{\DeclareOption,\ExecuteOptions,\ProcessOptions} -% \DoNotIndex{\",\.\@} +% \DoNotIndex{\",\.,\@} % % \IndexPrologue{ % \section{\indexname} @@ -81,6 +88,7 @@ % is described, the ones underlined to the code line of the % definition, the rest to the code lines where the entry is used. % } +% \setcounter{IndexColumns}{2} % % \GlossaryPrologue{\section{Change History}} % @@ -117,6 +125,9 @@ % \newcommand*{\fopz}{$} % \newcommand*{\packlass}[1]{{\normalfont\ttfamily #1}} % \newcommand*{\filedir}[1]{{\normalfont\ttfamily #1}} +% \newcommand*{\env}[1]{{\normalfont\ttfamily #1}} +% \newcommand*{\cnt}[1]{{\normalfont\ttfamily #1}} +% \newcommand*{\sty}[1]{{\normalfont\ttfamily #1}} % \newcommand*{\eqref}[1]{(\ref{#1})} % % \DeclareFixedFont{\lhnss}{OT1}{cmss}{m}{n} {12} @@ -131,7 +142,7 @@ % The C.D.P.~Bundle\thanks{This file has version % \fileversion, release date \filedate; % last documentation update: \docdate. -% Copyright \copyright~1999--2005 by G.~Mezzetti +% Copyright \copyright~1999--2006 by G.~Mezzetti % (see page~\pageref{S:Copy}).} % } % \author{G. Mezzetti} @@ -164,7 +175,7 @@ % \label{S:Copy} % \vspace{-\parskip} % -% Copyright \copyright~1999--2005 by Gustavo \textsc{Mezzetti}. All +% Copyright \copyright~1999--2006 by Gustavo \textsc{Mezzetti}. All % rights are reserved, except as noted below. % % This document has been produced by feeding to a \LaTeX\ typesetting @@ -255,13 +266,13 @@ % on the top of their first page. These classes and packages serve to % prepare this kind of letters: they can print the letterhead, both in % black-and-white and in color, depending on what the user requires, -% but they can do many, many other things too. +% but they can do many other things too. % % \subsection{Credits and disclaimer} % % The \packlass{\letteracdp} document class was originally based on % the \packlass{letter} standard \LaTeX\ class. During the time, it -% went through so many deep revisions, that by now it bears +% went through so many deep revisions, that by now it retains % practically no relation with the original \packlass{letter} class; % but we want to acknowledge the ``historical'' source anyway. The % \packlass{\articoletteracdp} document class uses some ideas borrowed @@ -294,7 +305,7 @@ % available through the world-wide web). The only pieces of % information you will find in this part are how to install those % classes and packages and how to generate this documentation. This -% part, however, specifies to what extent, and under which conditions, +% part, however, specifies to what extent, and under what conditions, % you are allowed to use and distribute the classes and packages % presented in this document. % @@ -389,7 +400,7 @@ % black-and-white if you don't load this package. Experience by trial % and error has shown that some configuration work may be necessary in % order to obtain (more or less) correctly-\null looking colors in the -% seal. This happens because different printers can render color hues +% seal. This happens because different printers may render color hues % in different ways, sometimes producing surprising results. % % The configuration mechanism works as follows. For each printer @@ -407,12 +418,12 @@ % % The task of a color definition file is simply to define two colors % called "slight@col" and "strong@col" (when the definition file is -% read, the "@"~characters are treated as ordinary letters). +% read, the "@"~characters are treated as ordinary letters): % "slight@col" is the color used to paint the inner of the D and of % the P in the seal, "strong@col" is the color used to draw the lines. % You define these colors by means of the "\definecolor" command: see -% \textsl{\LaTeX book} \cite[Section~7.3 and -% Subsection~C.14.3]{LaTeXbook} for information about colors and the +% the \textsl{\LaTeX book} \cite[Section~7.3 and +% Subsection~C.14.3]{LaTeXbook} for information on colors and the % "\definecolor" command. % % The file \filedir{\example}, too, contains comments which explain @@ -481,7 +492,7 @@ % % The \filedir{\cdpshues} file should contain only zero or one (but % preferably one!) "\DeclareCDPSealHuesDefault" command. This command -% can be used only here, and only once, since it deactivates itself +% may be used only here, and only once, since it deactivates itself % when executed, and also stops \LaTeX\ from reading any further in % the configuration file. In its unique (mandatory) argument, one % puts the name, \emph{without} the extension \filedir{.def}, of the @@ -489,10 +500,10 @@ % your configuration file, because the effect of any other command is % undefined. % -% The \filedir{\cdpshues} file included in the C.D.P. Bundle contains -% comments that help you to modify it in order to declare your new -% default color definition file(s). The recommended way of doing this -% is: +% The \filedir{\cdpshues} file included in the C.D.P. Bundle contains +% comments that help you to modify it in order to declare your +% personal default color definition file. The recommended way of +% doing this is: % \begin{enumerate} % ^^A ( paren match % \renewcommand*{\labelenumi}{\theenumi)} @@ -546,15 +557,18 @@ % gracefully even if the file is absent. % % The \packlass{\adiseal} package expects to find the image of the ADI -% seal in a file in Encapsulated PostScript format called -% \filedir{\adiseal.eps}. The image should be exactly \( 60\,\mbox{bp} -% \) wide and \( 42\,\mbox{bp} \) tall; larger images will be clipped, -% smaller images will not be well aligned. The resolution is not -% fixed by the \packlass{\adiseal} package, but of course the best -% results are obtained when it matches the target printer resolution. -% I don't think that with this information you will be able to -% manifacture the correct image by yourself, but at least you can -% check if a file that you have does (not) fit! +% seal in a file in Encapsulated PostScript (EPS) format called +% \filedir{\adiseal.eps}, unless PDF output is being generated, in +% which case a file in Portable Document Format (PDF) named +% \filedir{adiseal.pdf} is searched for instead. The image should be +% exactly \( 60\,\mbox{bp} \) wide and \( 42\,\mbox{bp} \) tall; +% larger images will be clipped, smaller images will not be well +% aligned. The resolution is not fixed by the \packlass{\adiseal} +% package, but of course the best results are obtained when it matches +% the target printer resolution. I don't think that with this +% information you will be able to manifacture the correct image by +% yourself, but at least you can check whether a file you have got does +% (not) fit! % % Of course, even if I cannot distribute it under the \LaTeX\ % Project Public License, still I have prepared and made available on @@ -636,11 +650,13 @@ %\address{ % Revinu~J. \textsc{Drofnats}\\ % Department of Farm Ecology\\ -% University of St.\thinspace Anford\\ +% University of St.\,Anford\\ % Haga Alto, CA~94321 (U.S.A.) %} -%\signature{R.~J.~Drofnats\\Professor} -%\date{January~1, 2005} % as usual, date is optional, default is \today +%\signature{R.~J. Drofnats\\Professor} +%\date{January~1, 2006} % as usual, date is optional, default is \today +%% Place where the letter is written (optional): +%\place{St.\,Anford} % %% Since we are writing in English, we redefine a couple of words: %\renewcommand*{\subjectname}{Subject:} @@ -661,9 +677,7 @@ % This is the optional subject of the letter. %] % -%% A string to be prepended to the date can be specified in an optional -%% argument to the \opening command: -%\opening[St.\thinspace Anford,]{Dear Prof.~Reid,} +%\opening{Dear Prof.~Reid,} % %this letter is typeset using a \texttt{letterhead} environment, so it %will be printed with the letterhead of the \emph{Coordinamento} above @@ -831,10 +845,10 @@ % % \item[\iopz{noPS}\eopz{usePS}\fopz] % The \opz{noPS} option requests that the CDP seal be typest using -% only the standard \LaTeX\ fonts, so that the output be printable on +% only the standard \LaTeX\ fonts, so that the output is printable on % any kind of printer, even without a PostScript interpreter. On the % other hand, the \opz{usePS} option requests that it be printed using -% PostScript commands: this enhances its graphical quality, but +% PostScript commands: this improves its graphical quality, but % printing the seal will require a PostScript interpreter. The % default is \opz{noPS}. \emph{Warning:} If you use this option with % the \packlass{\cdpaddon} package, parts of the seal will be @@ -972,11 +986,6 @@ \EnableCrossrefs \CodelineIndex % \end{macrocode} -% A two-column index is better than a three-column one, because we -% have some rather long entries. -% \begin{macrocode} -\setcounter{IndexColumns}{2} -% \end{macrocode} % If you don't want to include the second part of this document, % \emph{Implementation}, uncomment the line containing the command % "\OnlyDescription". @@ -986,8 +995,8 @@ % Finally, setting "\hfuzz" and "\vfuzz" to 0~points is only one % of the many neurotic symptoms of the author! % \begin{macrocode} -\hfuzz=0pt -\vfuzz=0pt +\hfuzz = 0pt +\vfuzz = 0pt % \end{macrocode} % Now input this same file, using \DS\ conventions. % \begin{macrocode} @@ -1040,12 +1049,12 @@ % will eventually be removed, I hope! % \begin{macrocode} \ProvidesClass{letteracdp} - [2005/01/01 v0.33 (**incomplete**)] + [2006/01/01 v0.34 (**incomplete**)] % \end{macrocode} % Print a copyright message on the terminal, just below the name % of the class. % \begin{macrocode} -\typeout{Copyright (C) 1999-2005 by Gustavo MEZZETTI, +\typeout{Copyright (C) 1999-2006 by Gustavo MEZZETTI, all rights reserved.} % \end{macrocode} % @@ -1063,9 +1072,9 @@ % \subsection{Initial code} % % \begin{macro}{\Coordinamento} -% Define the following macros near the beginning of the code, so -% it will be easy to change them. The first is the full name of -% the \emph{Coordinamento}: +% Define the following macros near the beginning of the code, so it +% will be easy to change them. The first one is the full name of the +% \emph{Coordinamento}: % \begin{macrocode} \newcommand*\Coordinamento{% Coordinamento dei Dottorandi e dei Dottori di Ricerca @@ -1074,7 +1083,7 @@ % \end{macrocode} % \end{macro} % \begin{macro}{\CoordinamentoWWW} -% The second is its web address: +% The second one is its web address: % \begin{macrocode} \newcommand*\CoordinamentoWWW{% http://www.dei.unipd.it/\string~assdott/% @@ -1191,7 +1200,7 @@ % \counterindex{emptyaddrlabels} % The following five counters are used in connection with the % address labels optionally printed at the end of a compiled file. -% The \texttt{emptyaddrlabels} counter holds the number of labels to +% The \cnt{emptyaddrlabels} counter holds the number of labels to % leave blank when starting to print (the first sheet of) the address % labels; this is useful if some labels on the same sheet have already % been peeled off. @@ -1200,37 +1209,37 @@ % \end{macrocode} % \counterindex{addrlabelrows} % A single sheet of address labels contains many labels. For example, -% in the well-known (in the U.S.) Avery 5352 format each sheet contains -% ten labels, organized in two columns and five rows. Other formats -% contain different number of rows and columns of labels. To cope with -% all these different formats, the number of rows and columns of labels -% is kept in two counters: \texttt{addrlabelrows} holds the number of -% rows +% in the well-known (in the U.S.) Avery 5352 format each sheet +% contains ten labels, organized in two columns and five rows. Other +% formats contain different number of rows and columns of labels. To +% cope with all these different formats, the number of rows and +% columns of labels is kept in two counters: \cnt{addrlabelrows} holds +% the number of rows % \begin{macrocode} \newcounter{addrlabelrows} % \end{macrocode} % \counterindex{addrlabelcolumns} -% and \texttt{addrlabelcolumns} holds the number of columns. +% and \cnt{addrlabelcolumns} holds the number of columns. % \begin{macrocode} \newcounter{addrlabelcolumns} % \end{macrocode} % \counterindex{label} -% The \texttt{addrlabelrows} and \texttt{addrlabelcolumns} counters -% are usually set once for all by the code provided in a suitable +% The \cnt{addrlabelrows} and \cnt{addrlabelcolumns} counters are +% usually set once for all by the code provided in a suitable % "\DeclareOption" declaration, as the result of the user's request of % one of the options devoted to specifying the address label format -% (\opz{105x37labels}, etc.). In some exceptional circumstances, -% they can also be reset by the user, but even in this case, once set -% they are not changed any more. They are therefore not real -% ``counters'', but rather (style) parameters. The following two -% counters, instead, are ``real'', \emph{running} counters: they hold a -% running index which identifies the current label. The \texttt{label} -% counter holds the index of a label inside a given letter +% (\opz{105x37labels}, etc.). In some exceptional circumstances, they +% can also be reset by the user, but even in this case, once set they +% are not changed any more. They are therefore not real ``counters'', +% but rather (style) parameters. The following two counters, instead, +% are ``real'', \emph{running} counters: they hold a running index +% which identifies the current label. The \cnt{label} counter holds +% the index of a label inside a given letter % \begin{macrocode} \newcounter{label}[letter] % \end{macrocode} % \counterindex{totallabel} -% while the \texttt{totallabel} counter holds the global index of a +% while the \cnt{totallabel} counter holds the global index of a % label, that is, the index of the label in the whole document. % \begin{macrocode} \newcounter{totallabel} @@ -1351,24 +1360,24 @@ % precaution is taken. This can be useful if one wants to alter the % default behavior, \emph{e.g.}, to have letters that are two-folded % rather then three-folded, or to allow folded letters also when using -% a paper format, like A5, that normally does not allow it. Useful, +% a paper format, like A5, that normally does not allow them. Useful, % sure, but it rises a problem: the algorithm that decides where to -% split the text between the part that must go above the folding -% and the part that must go below it requires that the value of +% split the text between the part that must go above the folding and +% the part that must go below it requires that the value of % "\foldedheight" lie within a certain range. Obviously we cannot ask -% the user to know what range is acceptable, so we adopt the -% following solution: we define an ``internal backup'' of -% "\foldedheight", called "\@folding@ht" for historical reasons; -% then, the user is asked to call the macro "\checkfoldedheight" -% (see below) whenever (s)he changes the value of "\foldedheight"; -% this macro check the new value and, if it is OK, copies it in the -% internal dimension "\@folding@ht" (actually, after some scaling -% conversions), otherwise it sets an internal flag which disables -% folded letters and issues a warning. A slight variant of -% "\checkfoldedheight", which differs only in the warning -% produced, is called automatically at the "\begin{document}", so -% the user is \emph{not} required to call "\checkfoldedheight" if -% the changes to "\foldedheight" are made in the preamble. +% the user to know what range is acceptable, so we adopt the following +% solution: we define an ``internal backup'' of "\foldedheight", +% called "\@folding@ht" for historical reasons; then, the user is +% asked to call the macro "\checkfoldedheight" (see below) whenever +% (s)he changes the value of "\foldedheight"; this macro checks the +% new value and, if it is OK, copies it in the internal dimension +% "\@folding@ht" (actually, after some scaling conversions), otherwise +% it sets an internal flag which disables folded letters and issues a +% warning. A slight variant of "\checkfoldedheight", which differs +% only in the warning produced, is called automatically at the +% "\begin{document}", so the user is \emph{not} required to call +% "\checkfoldedheight" if the changes to "\foldedheight" are made in +% the preamble. % \begin{macrocode} \@newrigidlength\@folding@ht % \end{macrocode} @@ -1684,6 +1693,15 @@ \do\@signature@style % \end{macrocode} % \end{macro} +% \begin{macro}{\@place} +% The place where the letter is written: starting from version~0.34, +% this macro is used as the default value for the optional argument of +% "\@makeopening", "\makedate", etc. It is logically and functionally +% analogous to "\@date". +% \begin{macrocode} +\do\@place +% \end{macrocode} +% \end{macro} % \begin{macro}{\@begin@letter@hook} % This hook is executed when a letter starts, at the very end of the % process of setting up the ``letter-making'' environment, just @@ -1711,7 +1729,7 @@ % \end{macrocode} % \end{macro} % -% The following macros are defined only inside a \texttt{subject} +% The following macros are defined only inside a \env{subject} % environment. We want that they cause an error if used outside of that % environment, but we also want to be sure that their names are not % already defined. We achieve this by calling "\@ifdefinable", and @@ -1750,9 +1768,8 @@ % changed from the default when a ``presentation'' is entered. % We'll discuss all this later on. % \begin{macro}{\@b@frompenalty} -% This is the penalty inserted at the beginning of a -% \texttt{sender} environment---the environment used to typeset the -% sender address. +% This is the penalty inserted at the beginning of a \env{sender} +% environment---the environment used to typeset the sender address. % \begin{macrocode} \do\@b@frompenalty % \end{macrocode} @@ -1765,7 +1782,7 @@ % \end{macrocode} % \end{macro} % \begin{macro}{\@e@frompenalty} -% This is the penalty inserted at the end of a \texttt{sender} +% This is the penalty inserted at the end of a \env{sender} % environment. % \begin{macrocode} \do\@e@frompenalty @@ -1773,7 +1790,7 @@ % \end{macro} % \begin{macro}{\@b@topenalty} % This is the penalty inserted at the beginning of an -% \texttt{addressee} environment---the environment used to typeset the +% \env{addressee} environment---the environment used to typeset the % addressee address. % \begin{macrocode} \do\@b@topenalty @@ -1787,21 +1804,21 @@ % \end{macrocode} % \end{macro} % \begin{macro}{\@e@topenalty} -% This is the penalty inserted at the end of an \texttt{addressee} +% This is the penalty inserted at the end of an \env{addressee} % environment. % \begin{macrocode} \do\@e@topenalty % \end{macrocode} % \end{macro} % \begin{macro}{\@b@subjpenalty} -% This is the penalty inserted at the beginning of a \texttt{subject} +% This is the penalty inserted at the beginning of a \env{subject} % environment---the environment used to typeset the subject. % \begin{macrocode} \do\@b@subjpenalty % \end{macrocode} % \end{macro} % \begin{macro}{\@e@subjpenalty} -% This is the penalty inserted at the end of a \texttt{subject} +% This is the penalty inserted at the end of a \env{subject} % environment. % \begin{macrocode} \do\@e@subjpenalty @@ -1871,24 +1888,24 @@ % the letterhead and of the footer. % \begin{macro}{\@logo@box@base} % This holds the main part of the CDP seal; more precisely, that -% part that appears both in the \ldots\texttt{letterhead}\ldots\ and in -% the \texttt{logo}\ldots\ page styles. +% part that appears both in the \ldots\sty{letterhead} and in the +% \sty{logo}\ldots page styles. % \begin{macrocode} \newsavebox\@logo@box@base % \end{macrocode} % \end{macro} % \begin{macro}{\@logo@box@addS} % This holds the part of the CDP seal that should be added to the -% part contained in "\@logo@box@base" in order to obtain the seal as -% it appears in the \texttt{logo}\ldots\ page styles. +% part contained in "\@logo@box@base" to obtain the seal as it appears +% in the \sty{logo}\ldots page styles. % \begin{macrocode} \newsavebox\@logo@box@addS % \end{macrocode} % \end{macro} % \begin{macro}{\@logo@box@addL} % This holds the part of the CDP seal that should be added to the -% part contained in "\@logo@box@base" in order to obtain the seal as -% it appears in the \ldots\texttt{letterhead}\ldots\ page styles. +% part contained in "\@logo@box@base" to obtain the seal embedded +% in the \ldots\sty{letterhead} page styles. % \begin{macrocode} \newsavebox\@logo@box@addL % \end{macrocode} @@ -1902,10 +1919,10 @@ % \end{macrocode} % \end{macro} % \begin{macro}{\@name@and@WWW@box} -% This holds the footer used in the \texttt{firstletterhead} and -% \texttt{foldedletterhead} page styles, which contains the full name -% of the \emph{Coordinamento} and its web address. This ends the -% block of box registers, too. +% This holds the footer used in the \sty{firstletterhead} and +% \sty{foldedletterhead} page styles, which contains the full name of +% the \emph{Coordinamento} and its web address. This ends the block +% of box registers, too. % \begin{macrocode} \newsavebox\@name@and@WWW@box % \end{macrocode} @@ -1915,14 +1932,14 @@ % It is possible to specify several addresses (both for the sender % and the addressee) as well as several signatures; the various parts % are separated by "\and" commands. Strictly speaking, it is an error -% to expand the token "\and" anywhere but inside the \texttt{sender}, -% \texttt{addressee}, and \texttt{signatureenv} environments (the +% to expand the token "\and" anywhere but inside the \env{sender}, +% \env{addressee}, and \env{signatureenv} environments (the % environments used to produce the sender address, the addressee % address, and the signature, repectively); hence, the correct thing % to do here would be to initialize "\and" to produce an error % message, and then redefine it in the various environments, as -% required in each case. But alas, the code for \packlass{\letteracdp} is -% still incomplete, and this is one of the things I still have to +% required in each case. But alas, the code for \packlass{\letteracdp} +% is still incomplete, and this is one of the things I still have to % finish: I don't know exactly how to handle a misplaced "\and", so, % for now, I simply decide to ignore it. % \begin{macrocode} @@ -1933,9 +1950,9 @@ % meaning. % \end{macro} % \begin{macro}{\andcc} -% Only inside an \texttt{addressee} environment, the token "\andcc" -% can be used in place of "\and" to separate addresses of persons to -% which the letter is sent as a carbon copy. Its default definition, +% Only inside an \env{addressee} environment, the token "\andcc" may +% be used in place of "\and" to separate addresses of persons to which +% the letter is sent as a carbon copy. Its default definition, % however, is to act as "\and". % \begin{macrocode} \@ifdefinable\andcc{\def\andcc{\and}} @@ -1971,7 +1988,7 @@ % Set "\parindent" to 0~points. % \item[L (for ``leave indent'').] % The value of "\parindent" that was in effect outside of the -% current \ldots\texttt{letter}\ldots\ environment is retained. +% current \ldots\env{letter}\ldots\ environment is retained. % \item[O (sorry, I don't remember for what).] % Set "\parindent" to the width of the last line of the salutation % (\emph{i.e.}, the argument of "\opening" or "\makeopening"); if the @@ -1996,8 +2013,8 @@ %\end{verbatim} % when you want to declare that the address has intentionally be % left void; when the address is actually typeset (and this happens -% inside an \texttt{addressee} environment), the command "\voidisOK" -% will be expanded, causing the warning to be suppressed. As for the +% inside an \env{addressee} environment), the command "\voidisOK" will +% be expanded, causing the warning to be suppressed. As for the % command "\and", the right thing to do would be to define this % command only inside the environments in which it can be used; but % there are complications arising from the fact that the text @@ -2007,9 +2024,9 @@ % to "\@empty", so that it will be ignored when it occurs out of place. % (We do not "\let" it equal to "\relax" because the latter could % confuse an "\ignorespaces"; on the contrary, "\@empty" disappears -% upon "\write" and "\mark" operations, and this is quite OK.) -% Where appropriate, "\voidisOK" will be redefined to achieve the -% desired effect. +% upon "\write" and "\mark" operations, and this is quite OK\@.) Where +% appropriate, "\voidisOK" will be redefined to achieve the desired +% effect. % \begin{macrocode} \@ifdefinable\voidisOK{\let\voidisOK\@empty} % \end{macrocode} @@ -2025,9 +2042,7 @@ % terms of the font-dependent units like ``em''. Of course, the % hanging indentation includes this horizontal space; note, % however, that if "\subjectname" is empty than the -% "\subjectnamegap" space is not taken into account (older versions -% of the class left this space even when "\subjectname" was empty, -% but this bug has now been corrected). +% "\subjectnamegap" space is not taken into account. % \begin{macrocode} \newcommand*\subjectnamegap{.5em} % \end{macrocode} @@ -2059,12 +2074,12 @@ % contains more than one line, the lines are aligned at their % midpoint. In order to accomodate the various conventions, the token % "\signaturealignment" is inserted at the beginning of the -% \texttt{signatureenv} environment (the environment one uses to -% typeset the signature); it is the responsability of the surrounding -% \ldots\texttt{letter}\ldots\ environment to "\let" this token equal -% to "\raggedright", "\centering", etc., as required by the particular +% \env{signatureenv} environment (the environment one uses to typeset +% the signature); it is the responsability of the surrounding +% \ldots\env{letter}\ldots\ environment to "\let" this token equal to +% "\raggedright", "\centering", etc., as required by the particular % letter being produced. This makes it easy, for instance, to define -% an \texttt{asletter} (anglo-saxon letter) environment that prints +% an \env{asletter} (anglo-saxon letter) environment that prints % letters that obey the U.S. conventions. The default setting given % here has no special meaning: it just sets the signature ragged % right. @@ -2322,6 +2337,11 @@ % \subsection{Option processing} % % Nothing special to note here. +% +% \emph{Begin to think (v.~0.34):} should I change the defaults as +% follows: \opz{boldsubject} in place of \opz{mediumsubject}, +% \opz{italicsignature} in place of \opz{uprightsignature}, +% \opz{shortindent} in place of \opz{indent}? % \begin{macrocode} \ExecuteOptions{a4paper,10pt,oneside,onecolumn,final,% mediumsubject,uprightsignature,noPS,indent,105x37labels} @@ -2343,9 +2363,8 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % \begin{macrocode} \if@use@eepic@ % \end{macrocode} -% We check whether the \packlass{eepic} package exists on the -% system: if it does, we load it, otherwise we force the -% "\if@use@eepic@" flag to false and issue a warning. +% If the \packlass{eepic} package is not available, force the switch +% to false and warn the user. % \begin{macrocode} \IfFileExists{eepic.sty}{% \RequirePackage{eepic}% @@ -2369,27 +2388,40 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % % \subsubsection{More initializations} % -% The following initializations have not been put in the -% \emph{Initial code} section because it is traditional to put -% them here; moreover, some of them actually require that the code -% for the options has already been executed, so they must be put -% here! +% Some of the following initializations could have been put in the +% \emph{Initial code} section, but some others require that the code +% for the options have already been executed. % % \begin{macro}{\date} -% I was ready to swear that I had copied the following -% redefinition of the "\date" command from the standard -% \packlass{letter} class\ldots{} Anyway, we redefine "\date" in -% order to make the changes to the date local instead of global: -% this is useful if one of the letters has a date which is -% different from the others. An explicative comments is left in -% the code too (because "\date" is a command defined in the -% \LaTeX\ kernel). +% We redefine "\date" in order to make the changes to the date local +% instead of global: this is useful if one of the letters has a date +% which is different from the other ones. Since "\date" is a kernel +% command, an explicative comment is left in % the code too. % \begin{macrocode} %% Command \date redefined to make changes to date local. \def\date#1{\def\@date{#1}} % \end{macrocode} % \end{macro} % +% \begin{macro}{\place} +% This command records the place where the letter is written (added +% in version~0.34): it is analogous to "\date". Starting from +% version~0.34, this should be used instead of the optional argument +% of "\opening", "\makedate", etc.\ (however, the optional argument of +% those commands may still be used, for compatibility). Note that the +% comma is added automatically, but only if the argument of "\place" +% is nonempty. +% \begin{macrocode} +\newcommand*\place[1]{% + \ifx \@empty #1\@empty % if #1 is empty + \let\@place\@empty + \else + \def\@place{#1,}% + \fi +} +% \end{macrocode} +% \end{macro} +% % Usual loading of the suitable \filedir{.clo} file; see the % documentation of, \emph{e.g.}, the standard \packlass{letter} % class for explanations about the following three lines of code. @@ -2407,7 +2439,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % \end{macrocode} % \end{macro} % \begin{macro}{\thelabel} -% The printed form of the \texttt{label} counter is changed to include +% The printed form of the \cnt{label} counter is changed to include % also the number of the letter it refers to. Note that we do not % change "\p@label" (the prefix used only when printing % \emph{references} to the counter), but actually the command used to @@ -2439,15 +2471,15 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % We now initialize the style parameters that contain the penalties % inserted around the address blocks and the subject. This values % will never be used in practice, because usually the address blocks -% and the subject are wrapped up in a \ldots\texttt{presentation} +% and the subject are wrapped up in a \ldots\env{presentation} % environment, and these environments completely redefine the values % of these style parameters. The values given here will be used only -% when a \texttt{sender}, \texttt{addressee}, or \texttt{subject} -% environment is used without being wrapped in a presentation. These -% values allow a page break without penalty before each of the blocks -% and at the end of the subject, mildly discourage a break after the -% address blocks, and discourage rather strongly a break at an "\and" -% or "\andcc" token. +% when a \env{sender}, \env{addressee}, or \env{subject} environment +% is used without being wrapped in a presentation. These values allow +% a page break without penalty before each of the blocks and at the +% end of the subject, mildly discourage a break after the address +% blocks, and discourage rather strongly a break at an "\and" or +% "\andcc" token. % \begin{macrocode} \@b@frompenalty\z@ \@i@frompenalty\@highpenalty @@ -2654,8 +2686,8 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % just what the class does, and the final visual effect is, let % me say, pretty good indeed\ldots % -% To sum up, the strategy for setting the page layout parameters -% should be as follows: +% To sum up, the strategy for setting the page layout parameters is +% the following: % % \begin{enumerate} % @@ -3042,8 +3074,8 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % issue a warning and set the "\if@do@fold@" switch to false: the % following two macros, which are used below, take care of this, % providing two different types of warning. They take two arguments, -% used to modify the warning printed to the user: argument \#1 will be -% either the word ``short'' or the word ``tall'', and argument \#2 +% used to modify the warning printed to the user: argument "#1" will be +% either the word ``short'' or the word ``tall'', and argument "#2" % will contain text giving further help. % % \begin{macro}{\@folding@ht@warn} @@ -3425,8 +3457,9 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % called directly by the user). The code passed in~"#1" is executed % before the core initializations provided by "baseletter", but inside % the group implied by this environment; the code passed in~"#2" is -% executed as the last thing. Other arguments will be picked up by the -% "\x@baseletter" or "\y@baseletter" macro. +% executed as the last thing (just before "\@begin@letter@hook"). Other +% arguments will be picked up by the "\x@baseletter" or +% "\y@baseletter" macro. % \begin{macrocode} \newenvironment{baseletter}[2]{% #1% @@ -3441,7 +3474,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \cleardoubleemptypage \c@page\@ne \refstepcounter{letter}% - \typeout{Letter \number\c@letter}% + \typeout{\lettername \space \number\c@letter}% \interlinepenalty 200 % smaller than the TeXbook value \parskip\medskipamount % \end{macrocode} @@ -3543,7 +3576,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \@baseletter }} \@ifdefinable\y@baseletter{\long\def\y@baseletter#1{% - \@cut@andcc #1\andcc @@@% + \@cut@andcc #1\andcc\@@@ \def\theaddresseeaddress{#1}% \@baseletter }} @@ -3567,16 +3600,16 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \the\@lett@decl \@begin@letter@hook } -\@ifdefinable\@cut@andcc{\long\def\@cut@andcc#1\andcc#2@@@{% - \@cut@and #1\and @@@% +\@ifdefinable\@cut@andcc{\long\def\@cut@andcc#1\andcc#2\@@@{% + \@cut@and #1\and\@@@% }} -\@ifdefinable\@cut@and{\long\def\@cut@and#1\and#2@@@{% - \@cut@nl #1\\@@@% +\@ifdefinable\@cut@and{\long\def\@cut@and#1\and#2\@@@{% + \@cut@nl #1\\\@@@% }} -\@ifdefinable\@cut@nl{\long\def\@cut@nl#1\\#2@@@{% - \@cut@par #1\par @@@% +\@ifdefinable\@cut@nl{\long\def\@cut@nl#1\\#2\@@@{% + \@cut@par #1\par\@@@% }} -\@ifdefinable\@cut@par{\long\def\@cut@par#1\par#2@@@{% +\@ifdefinable\@cut@par{\long\def\@cut@par#1\par#2\@@@{% \def\theaddresseename{#1}% }} \newcommand*\stopbreaks{% @@ -3919,14 +3952,31 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} }{% \endnormalpresentation } +% \end{macrocode} +% +% \begin{environment}{normalpresentation} +% The environment for making a normal presentation: +% \begin{macrocode} \newenvironment*{normalpresentation}{% \cleardoublepage \@setup@pres }{% - \par +% \end{macrocode} +% \changes{0.34}{2006 Jan 01}{At the end of the environment, +% changed \protect\texttt{\protect\bslash par} into +% \protect\texttt{\protect\bslash @@par}} +% Changed the following line from "\par" to "\@@par" (v.~0.34): +% \begin{macrocode} + \@@par \addpenalty\@e@prespenalty \addvspace\belowpresentationvspace } +% \end{macrocode} +% \end{environment} +% +% \begin{macro}{\@nofoldwarning} +% Warning issued when folded presentations are not allowed: +% \begin{macrocode} \@ifdefinable\@nofoldwarning{\def\@nofoldwarning{% \ClassWarning{\@letteracdp}{% The paper format you chose does not allow\MessageBreak @@ -3936,59 +3986,213 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} Warning issued% }% }} +% \end{macrocode} +% \end{macro} +% +% \begin{environment}{foldedpresentation} +% The environment for making a folded presentation, possibly +% splitting it into two parts: the part the actually fits in the folded +% flap, and the other, which is merged with the text below the +% folding. I~think it's better to include some comments here. +% \begin{macrocode} \newenvironment*{foldedpresentation}{% +% \end{macrocode} +% Are folded letters currently allowed? +% \begin{macrocode} \if@do@fold@ +% \end{macrocode} +% \emph{Yes.} First, assure that we are at the beginning of a page; +% note that \emph{numbered} pages, here, are inserted if there is a gap +% to fill in. +% \begin{macrocode} \cleardoublepage +% \end{macrocode} +% The contents of the presentation will be saved in "\box0": set up +% parameters, color support\ldots +% \begin{macrocode} \setbox\z@\vbox\bgroup \@setup@pres +% \end{macrocode} +% \changes{0.34}{2006 Jan 01}{Added setting of +% \protect\texttt{\protect\bslash boxmaxdepth} +% at the beginning of the environment} +% Added the following line (v.~0.34), even if the depth of "\box0" +% will be checked later: +% \begin{macrocode} + \boxmaxdepth\maxdepth +% \end{macrocode} +% \ldots color support, we were saying\ldots +% \begin{macrocode} \color@begingroup +% \end{macrocode} +% The reason for this "\penalty" will be explained later~($*$): +% \begin{macrocode} \penalty-\@M - \prevdepth\z@ +% \end{macrocode} +% \changes{0.34}{2006 Jan 01}{Removed a superfluous setting of +% \protect\texttt{\protect\bslash prevdepth} +% from the beginning of the environment} +% Removed the following line (v.~0.34): we have no need to insert +% interline glue here, and it is even wrong to do it; we will insert the +% "\topskip" glue below with a trick (which, in any case, would remove +% the---incorrect---interline glue inserted here). Why did I include +% this redundant statement? +%\begin{verbatim} +%\prevdepth\z@ +%\end{verbatim} +% \begin{macrocode} \else +% \end{macrocode} +% \emph{No.} Inform the user and substitute a normal presentation. +% \begin{macrocode} \@nofoldwarning \normalpresentation \fi }{% +% \end{macrocode} +% +% When the presentation ends, if we were making a folded +% presentation\ldots +% \begin{macrocode} \if@do@fold@ +% \end{macrocode} +% \ldots finish off the box\ldots +% \begin{macrocode} \@@par \color@endgroup +% \end{macrocode} +% \ldots and save its "\prevdepth" for later. +% \begin{macrocode} \global\dimen@i\prevdepth +% \end{macrocode} +% Insert the equivalent of "\foldingfilbreak[0]": if possible, the +% "\vsplit" that will later split the presentation should try to split +% it here (\emph{i.e.}, not to split it at all). +% \begin{macrocode} \@f@ldingfilbreak\@fold@basepenalty +% \end{macrocode} +% But "\vsplit" might prefer to split the box at the implicit +% "\penalty-10000" inserted at its end; avoid this, since it would +% defeat the "\vfil" of "\@f@ldingfilbreak":\nobreak\space($**$) +% \begin{macrocode} \vskip\maxdimen % "discourage" the break at the \penalty-10000 +% \end{macrocode} +% End of "\vbox". +% \begin{macrocode} \egroup +% \end{macrocode} +% Now "\box0" contains the presentation, but it lacks the due +% "\topskip" glue atop. Of course, we could have inserted the +% equivalent (in normal circumstances) of the "\topskip" glue by +% setting \[ "\prevdepth" := "\topskip"-"\baselineskip" \] at the +% beginning of "\box0", but this does not work always, since it could +% insert the "\lineskip" glue instead. We are admittedly whimsical +% here, but, in order to achieve exactly the same result yielded by +% the "\topskip" glue machinery operated in the main vertical list, we +% use the following trick of "\vsplit"'ting "\box0" to \texttt{0pt}. +% A legal breakpoint exists for this: it is the "\penalty-10000" +% inserted above in~($*$)! This breakpoint comes first in "\box0" and +% it is mandatory, so the "\vsplit" operation will stop immediately +% (without consuming time); nothing will be actually split off, +% everything will remain in "\box0", but with "\splittopskip" glue +% added at the top! Moreover, although we set "\boxmaxdepth" inside +% "\box0", we check again for possible excess depth (can't figure out +% how it could creep in, however). So: +% \begin{macrocode} \splitmaxdepth\maxdepth \splittopskip\topskip \setbox\tw@\vsplit\z@ to\z@ +% \end{macrocode} +% The real splitting of the presentation is done by the following +% "\vsplit": the baseline of the first line possibly remaining in +% "\box0" after the "\vsplit" must be at a distance of +% "\@below@folding@skip" from the folding, plus the "\parskip" glue +% and, of course, the normal interline glue (we are in mid-page now). +% \begin{macrocode} \splittopskip\baselineskip \advance\splittopskip\@below@folding@skip \advance\splittopskip\parskip \setbox\tw@\vsplit\z@ to\@folding@ht +% \end{macrocode} +% Now "\box2" contains the part of the presentation that does fit +% in the folded flap; we append this box to the page (actually, it is the +% first thing contributed since the "\cleardoublepage"). Since +% this box already includes "\topskip" glue at the +% top, no further interline glue must be inserted above it. +% \begin{macrocode} \nointerlineskip \box\tw@ +% \end{macrocode} +% Thanks to the above setting of "\splitmaxdepth", we are sure that +% the depth of the previous box is small; so the following line will +% take us exactly on the edge of the fold, with null depth\ldots +% \begin{macrocode} {\baselineskip\@above@folding@margin \nobreak\null}% +% \end{macrocode} +% \ldots where we insert a costly, yet feasible breakpoint. +% \begin{macrocode} \penalty\@highpenalty +% \end{macrocode} +% If everything fitted in the folded flap, nothing remained in +% "\box0". +% \begin{macrocode} \ifvoid\z@ +% \end{macrocode} +% In that case, just leave appropriate blank space (the "\prevdepth" +% is already zero, so the interline glue of the following line will be +% correct). +% \begin{macrocode} \vskip\@below@folding@skip +% \end{macrocode} +% Otherwise, take the part that did not fit out of "\box0"\ldots +% \begin{macrocode} \else \unvbox\z@ +% \end{macrocode} +% \ldots so it is now in the list of ``recent contributions'' +% ("\unvbox" does not exercise the page builder); remove the +% "\vskip\maxdimen" added in~($**$) just to fool "\vsplit", as well as +% the items added by the virtual "\foldingfilbreak[0]". +% \begin{macrocode} \unskip % remove "\vskip\maxdimen" \unpenalty % remove "\penalty\@fold@basepenalty" \unskip % remove "\vskip \dimen@ plus 1fil minus ..." \unskip % remove "\vskip -\skip@" \unpenalty % remove "\penalty 10000" +% \end{macrocode} +% Now the list of ``recent contributions'' contains exactly what the +% user put in the presentation (and did not fit in the folded flap). +% Restore "\prevdepth" and conclude as if it were a normal +% presentation: this makes a perfectly seamless join with the +% following material, as if the folded presentation had been a normal +% one, extending down to this spot in the page. ^^A ( paren match +% Not bad, uhu?~:-) +% \begin{macrocode} \prevdepth\dimen@i \addpenalty\@e@prespenalty \addvspace\belowpresentationvspace +% \end{macrocode} +% Ah, yes, also inform the user of what happened: +% \begin{macrocode} \ClassWarning{\@letteracdp}{% Some text that did not fit into the folded flap\MessageBreak was moved into the main text below the folding;\MessageBreak warning issued% }% \fi +% \end{macrocode} +% If we were not making a folded presentation, then conclude a +% normal one. +% \begin{macrocode} \else \endnormalpresentation \fi } +% \end{macrocode} +% \end{environment} +% +% Back to uncommented code. +% \begin{macrocode} \newcommand*\iffoldedallowed{% \if@do@fold@ \expandafter\@firstoftwo @@ -4004,6 +4208,11 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \makesubject\relax \end{normalpresentation}% } +% \end{macrocode} +% +% \begin{macro}{\@f@ldingfilbreak} +% The ``upper half'' of "\@foldingfilbreak". +% \begin{macrocode} \@ifdefinable\@f@ldingfilbreak{\def\@f@ldingfilbreak#1{% \ifdim\prevdepth<\maxdepth \dimen@ -\prevdepth @@ -4016,6 +4225,10 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \vskip \dimen@ \@plus 1fil\@minus \@above@folding@shrink \penalty #1% }} +% \end{macrocode} +% \end{macro} +% +% \begin{macrocode} \@ifdefinable\@foldingfilbreak{\def\@foldingfilbreak#1#2{\par \@f@ldingfilbreak#1% \vskip -\dimen@ \@plus -1fil\@minus -\@above@folding@shrink @@ -4036,8 +4249,8 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \@esphack \fi } -\newcommand*\foldingfilbreak[2][\z@]{% - \@foldingfilbreak{\@fold@getpen{#1}}{#2}% +\newcommand*\foldingfilbreak[1][\z@]{% + \@foldingfilbreak{\@fold@getpen{#1}}% } \newcommand*\makefoldedpresentation{% \if@do@fold@ @@ -4074,9 +4287,9 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \nobreak\medskip \fi }} -\newcommand*\makedate [1][]{\@make@date{#1}NN} -\newcommand*\maketopdate [1][]{\@make@date{#1}NY} -\newcommand*\makebottomdate[1][]{\@make@date{#1}YN} +\newcommand*\makedate [1][\@place]{\@make@date{#1}NN} +\newcommand*\maketopdate [1][\@place]{\@make@date{#1}NY} +\newcommand*\makebottomdate[1][\@place]{\@make@date{#1}YN} \@ifdefinable\@empty@signature{\def\@empty@signature{% \ClassWarning{\@letteracdp}{% Empty signature% @@ -4174,7 +4387,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \@opening }% } -\newcommand*\@opening[1][]{% +\newcommand*\@opening[1][\@place]{% \makepresentation \maketopdate[#1]% \@cdp@reserved @@ -4254,11 +4467,63 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \newcommand*\PS{% \ps\@ifstar{\@PS@rubber}{\@PS@rigid}% } +% \end{macrocode} +% +% \begin{macro}{\stopletter} +% User-level hook invoked (before anything else) when a letter ends. +% \begin{macrocode} \newcommand*\stopletter{} % \end{macrocode} +% \end{macro} % % \subsubsection{Address labels} % +% This part of the code should probably be detached and put in a +% separte file to be loaded on demand. +% +% The general idea is the following: +% \begin{itemize} +% \item +% a \env{labels} (or \env{baselabels}, see below) environment +% produces one or more sheets of address labels; +% \item +% inside \env{labels}, several \env{labelgroup} environments wrap up +% the address labels pertaining to each letter (a letter may have +% several address labels associated with it, if it has several +% addressees); +% \item +% inside each \env{labelgroup} environment, individual labels are +% produced with the "\basemlabel" command. +% \end{itemize} +% The \env{labels} environment takes care of such things like jumping +% to a new page, etc.; the \env{labelgroup} environment merely changes +% the way address labels are numbered, but does not otherwise affect +% the printout. +% +% The user may either: +% \begin{enumerate} +% \renewcommand*{\theenumi}{(\Alph{enumi})} +% \renewcommand*{\labelenumi}{\theenumi} +% \item\label{autolabels} +% include a "\makelabels" declaration in the preamble, to have +% address labels generated automatically via the \filedir{.aux} +% file; in this case, appropriate commands are written in the +% \filedir{.aux} file by each +% \env{baseletter} environment, which, when the \filedir{.aux} file +% is re-read at the "\end{document}", automatically generate the +% required environments and commands (\env{labels}, +% \env{labelgroup}, etc.); \emph{or} +% \item\label{handlabels} +% produce the address labels ``by hand'', including directly in the +% source file, where (s)he want the address label sheets to appear, a +% \env{labels} environment, containing the appropriate +% \env{labelgroup} environments, containing, in turn, the individual +% "\basemlabel" commands. +% \end{enumerate} +% In principle, it is also possible to mix \ref{autolabels} +% and~\ref{handlabels} (and to have several \env{labels} +% environments, too), but this has no practical utility. +% % \begin{macrocode} \newcommand*\returnaddress{\thesenderaddress} \@ifdefinable\@emptyaddrlabels@err{\def\@emptyaddrlabels@err{% @@ -4294,6 +4559,14 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \@emptyaddrlabels@err \fi\fi } +% \end{macrocode} +% +% \begin{environment}{baselabels} +% This is the actual environment for producing sheets of address +% labels: the \env{labels} environment (see below) is simply a wrapper +% that offers to the user the opportunity of changing some settings +% before invoking \env{baselabels}. +% \begin{macrocode} \newenvironment*{baselabels}{% \cleardoubleemptypage \c@page\@ne @@ -4350,7 +4623,28 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} }{% \@killglue\clearpage } +% \end{macrocode} +% \end{environment} +% +% \begin{environment}{labels} +% It is the user-level environment for producing one or more sheets of address labels. +% Its default definition simply invokes \env{baselables}, but the +% user may redefine it to set some style parameters. For example: +%\begin{verbatim} +%\renewenvironment{labels}{% +% \baselabels +% \setlength\fboxrule{.2pt}% +% \addtolength\fboxsep{-2\fboxrule}% +%}{\endbaselabels} +%\end{verbatim} +% will draw a thin border around each address label. +% \begin{macrocode} \newenvironment*{labels}{\baselabels}{\endbaselabels} +% \end{macrocode} +% \end{environment} +% +% Back to uncommented code. +% \begin{macrocode} \let\@beginlabels=\relax \let\@endlabels=\relax \newenvironment*{labelgroup}{\stepcounter{letter}}{} @@ -4371,7 +4665,18 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \stepcounter{totallabel}% \stepcounter{label}% } +% \end{macrocode} +% +% \begin{macro}{\ifactuallabel} +% Macro for the user: "\ifactuallabel{"\meta{FOO}"}{"\meta{BAR}"}" +% executes \meta{FOO} if the label is not being skipped, \meta{BAR} +% otherwise. +% \begin{macrocode} \let\ifactuallabel\@firstoftwo +% \end{macrocode} +% \end{macro} +% +% \begin{macrocode} \newcommand\basemlabel[2]{% \begingroup \def\startaddrlabel{\par @@ -4526,6 +4831,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \newcommand*\enclname {Allegati:} \newcommand*\PSname {P.S.:} \newcommand*\headtoname {A:} +\newcommand*\lettername {Lettera} \newcommand*\today{\number\day~\ifcase\month\or gennaio\or febbraio\or marzo\or aprile\or maggio\or giugno\or luglio\or agosto\or settembre\or ottobre\or novembre\or dicembre\fi @@ -4554,8 +4860,8 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % \begin{macrocode} \NeedsTeXFormat{LaTeX2e}[1996/06/01] % LaTeX2e is required! \ProvidesClass{articoletteracdp} - [2005/01/01 v0.33 (development)] -%% \typeout{Copyright (C) 1999-2005 by Gustavo MEZZETTI, + [2006/01/01 v0.34 (development)] +%% \typeout{Copyright (C) 1999-2006 by Gustavo MEZZETTI, %% all rights reserved.} % \end{macrocode} % @@ -4577,6 +4883,21 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \do\if@loX@in@toc@ % \end{macrocode} % +% \begin{macro}{\@letter@bookmark} +% Support for pdf\TeX\slash\packlass{\hyperref}. If pdf\TeX\ is +% being used to typeset the document, if the \packlass{\hyperref} +% package is loaded, and if the user does not ask us to avoid it, we +% shall generate a ``level~0'' bookmark for each letter we shall +% typeset (sections are of level~1, so they will be bookmarked under +% letters). This command serves to this purpose: it is defined either +% as "\@gobbletwo", if such bookmarks are \emph{not} being generated, +% or as a suitable invocation of "\pdfbookmark" if they are. To begin +% with, we set the former alternative, which makes it act as a no-op. +% \begin{macrocode} +\@ifdefinable\@letter@bookmark{\let\@letter@bookmark\@gobbletwo} +% \end{macrocode} +% \end{macro} +% % Space above and below captions for figures and tables. % \begin{macrocode} \newlength\abovecaptionskip @@ -4605,20 +4926,51 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \@toc@in@toc@false \@loX@in@toc@false } +% \end{macrocode} +% The option \opz{letterbookmarks} causes the bookmarks for letters to +% be generated. Upon expansion, the 2~arguments of +% "\@letter@bookmark" will become arguments of "\pdfbookmark". We +% also need to ask the \packlass{\hyperref} package to generate closed +% bookmarks. Note that the user can later overwrite this setting; +% note also that nothing will happen if \packlass{\hyperref} is not +% loaded later. +% \begin{macrocode} +\DeclareOption{letterbookmarks}{% + \def\@letter@bookmark{\pdfbookmark[0]}% + \PassOptionsToPackage{bookmarksopen=false}{hyperref}% +} +% \end{macrocode} +% The option \opz{noletterbookmarks} supresses the bookmarks for +% letters. +% \begin{macrocode} +\DeclareOption{noletterbookmarks}{% + \let\@letter@bookmark\@gobbletwo +} +% \end{macrocode} +% The option \opz{openletterbookmarks} causes the bookmarks for +% letters to be generated and to be presented open to the reader. We +% ask the \packlass{\hyperref} package to generate open bookmarks, but +% only one level deep. Note that the user can later overwrite this +% setting. This is made the default option, below. +% \begin{macrocode} +\DeclareOption{openletterbookmarks}{% + \def\@letter@bookmark{\pdfbookmark[0]}% + \PassOptionsToPackage{bookmarksopen,bookmarksopenlevel=1}{hyperref}% +} \DeclareOption*{\PassOptionsToClass{\CurrentOption}{letteracdp}} % \end{macrocode} % % \subsection{Option processing} % % \begin{macrocode} -\ExecuteOptions{plaintoc} +\ExecuteOptions{plaintoc,openletterbookmarks} \ProcessOptions\relax % \end{macrocode} % % \subsection{Class loading} % % \begin{macrocode} -\LoadClass{letteracdp}[2005/01/01] +\LoadClass{letteracdp}[2006/01/01] % \end{macrocode} % % \subsection{Main code} @@ -4634,20 +4986,33 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \newcounter{table}[letter] % \end{macrocode} % -% The \packlass{\hyperref} package generates references to paragraphs -% that include also the "\subsection" and the "\subsubsection" number, -% because it assumes that paragraphs are numbered within subsubsections. -% While, on one hand, it is not necessary to actually have subsections -% numbered within sections, subsubsections numbered within subsection, -% and paragraphs numbered within subsubsections, on the other, to assure -% compatibility with \packlass{\hyperref} one must at least -% \emph{define} the \texttt{subsection} and \texttt{subsubsection} -% counters, to assure that the \packlass{\hyperref} package may safely -% mention them. We do this here, so that \packlass{\articoletteracdp} -% can be used together with \packlass{\hyperref}. +% Stuff for dealing with the \packlass{\hyperref} package. The +% problem is our non-standard hierarchy of sectioning commands, with +% paragraphs placed directly below sections. In this version (0.34) we +% choose a different approach than the one we adopted in version 0.33, +% redefining "\theHparagraph"; of course, this must be done +% \emph{after} \packlass{\hyperref} has been loaded, and we could not +% find any better place for this than the "\AtBeginDocument" hook. +% Within the same hook, we also redefine "\theHsection" (the counter +% used by \packlass{\@hyperref} to generate hyperlinks to sections) so +% that sections with the same number, but included in different +% letters, will have different anchors; we fix the bookmark level for +% paragraphs, too. +% \begin{macrocode} +\AtBeginDocument{% + \def\theHletter{\arabic{letter}}% + \@ifpackageloaded{hyperref}{% + \def\theHparagraph{\theHsection.\arabic{paragraph}}% + \def\theHsection{\theHletter.\arabic{section}}% + \def\toclevel@paragraph{2}% + }{% +% \end{macrocode} +% If the \packlass{\@hyperref} package is not loaded, we assure that +% "\@letter@bookmarks" acts as a no-op: % \begin{macrocode} -\newcounter{subsection} -\newcounter{subsubsection} + \let\@letter@bookmark\@gobbletwo + }% +} % \end{macrocode} % % \begin{macro}{\hyper@last} @@ -4657,12 +5022,13 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % redefinition of "\@starttoc", possibly writing unwanted % \filedir{.toc}, \filedir{.lof}, and \filedir{.lot} files, and (much % worse) causing trouble if the letter happens to contain more than one -% "\tableofcontents", "\listoffigures", or "\listoftables". Of course, -% this means that the user must be informed that (s)he has to delete the -% old files by hand.~\mbox{:-(}^^A ) paren match -% \spacefactor\sfcode`. \space -% Note, anyway, that the automatic check made by \packlass{\hyperref} -% would not work with the C.D.P. Bundle in any case, so\ldots +% "\tableofcontents", "\listoffigures", or "\listoftables". Of +% course, this means that the user must be informed that (s)he has to +% delete the old files by hand.~\mbox{:-(}^^A ) paren match +% \spacefactor\sfcode`. \space Note, anyway, that the automatic check +% made by \packlass{\hyperref} would not work with the C.D.P. Bundle +% in any case (because it looks for \filedir{.toc}, \filedir{.lof}, +% etc.\ files, not for, say, \filedir{.toc1}, etc.), so\ldots % \begin{macrocode} \@ifdefinable\hyper@last{\let\hyper@last\relax} % \end{macrocode} @@ -4697,7 +5063,24 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \@nobreakfalse \endgroup } +% \end{macrocode} +% +% The "\@begin@letter@hook" macro is invoked whenever a letter +% starts; we want (possibly, see above) a bookmark to be generated for +% the letter. Note that we use "\theletter" for the letter number +% presented to the user, and "\theHletter" for the number used to +% generate the anchor. +% \begin{macrocode} \g@addto@macro\@begin@letter@hook{% + \edef\@cdp@reserved{% + \noexpand\@letter@bookmark + {\lettername\space\theletter}{letter.\theHletter}% + }% + \@cdp@reserved +% \end{macrocode} +% +% Actions for closing a set of toc/lof/lot file and opening another: +% \begin{macrocode} \if@filesw {\escapechar\m@ne \immediate\write\@out@table@list{\string\}^^J\string\{}% @@ -4706,6 +5089,10 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} {\string\@deferred@clopen{\number\c@letter}}% \fi } +% \end{macrocode} +% +% Uncommented code. +% \begin{macrocode} \@ifdefinable\@deferred@open {\let\@deferred@open \@gobble} \@ifdefinable\@deferred@close {\let\@deferred@close \@empty} \@ifdefinable\@deferred@clopen{\let\@deferred@clopen\@gobble} @@ -4768,7 +5155,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % \begin{macrocode} \@ifdefinable\@addfullstop{\long\def\@addfullstop#1{% {\nonfrenchspacing\ignorespaces#1\unskip - \ifnum\spacefactor>\@m \else.\fi \/}% + \ifnum \spacefactor>\@m \else.\fi \/}% }} \newcommand*\nopunct{\spacefactor 1001\relax} % \end{macrocode} @@ -4792,17 +5179,27 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \setlength \dblfloatsep {\bigskipamount} \@msetlength\dbltextfloatsep {2}{\bigskipamount} \setlength \@fptop {\z@ plus 1 fil} -\setlength \@fpsep {\bigskipamount} +\setlength \@fpsep {1\bigskipamount plus 2 fil} \setlength \@fpbot {\z@ plus 1 fil} -\setlength \@dblfptop {\z@ plus 1 fil} -\setlength \@dblfpsep {\bigskipamount} -\setlength \@dblfpbot {\z@ plus 1 fil} +\setlength \@dblfptop {\@fptop} +\setlength \@dblfpsep {\@fpsep} +\setlength \@dblfpbot {\@fpbot} \setlength\abovecaptionskip{\medskipamount} \setlength\belowcaptionskip{\z@skip} % \end{macrocode} % % \subsubsection{Title, section heads, figures, bibliography\ldots} % +% \begin{macro}{\maketitle} +% Without the \packlass{\@hyperref} package, the "\maketitle" +% command can take the same optional argument as "\maketopdate", for +% specifying a short string to be prepended to the date; and in this +% case, the new "\place" declaration will be automatically honored. +% But the former feature will break if \packlass{\@hyperref} is +% loaded, and no remedy seems feasible for this, since +% \packlass{\@hyperref} assumes that "\maketitle" hasn't got any +% arguments. Note also that a period is automatically added to the +% title. % \begin{macrocode} \newcommand*\maketitle{% \begingroup @@ -4817,6 +5214,11 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \setcounter{footnote}{\z@}% \maketopdate } +% \end{macrocode} +% \end{macro} +% +% Uncommented code. +% \begin{macrocode} \setcounter{secnumdepth}{\tw@} \def\@seccntformat#1{\csname the#1\endcsname .\enspace} \ifcase \@ptsize\relax @@ -4966,6 +5368,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % \section{The code for the \packlass{\adiseal} package} % % This part of the file goes into \filedir{\adiseal.sty}. +% \emph{Very obsolete:} eliminate? % \begin{macrocode} %<*adipk> % \end{macrocode} @@ -4975,7 +5378,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % \begin{macrocode} \NeedsTeXFormat{LaTeX2e}[1998/06/01] % LaTeX2e is required! \ProvidesPackage{adiseal} - [2005/01/01 v0.33 (development)] + [2006/01/01 v0.34 (development)] \@ifdefinable\@adiseal{\def\@adiseal{adiseal}} % \end{macrocode} % @@ -4994,25 +5397,35 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} } % \end{macrocode} % \end{macro} +% % \begin{macro}{\@seal@graph@file} +% \changes{0.34}{2006 Jan 01}{Got rid of the \filedir{.eps} extension +% in the name of the file of the ADI seal: thus, the extension +% \filedir{.eps} or \filedir{.pdf} will be automatically supplied +% by the \packlass{epsgif} package according to the actual +% typesetting engine employed (\TeX\ or pdf\TeX)} % The name of the file which contains the image of the ADI seal is % also kept in a macro, to allow customization, but this macro is not -% made accessible to the user. Note the image must be contained in a -% file in Encapsulated PostScript format, and that it should be exactly \( -% 60\,\mbox{bp} \) wide and \( 42\,\mbox{bp} \) tall. +% made accessible to the user. \emph{Note:} the image must be contained +% in a file in Encapsulated PostScript format or, for pdf\TeX, in +% Portable Document Format, and it should be exactly \( 60\,\mbox{bp} \) +% wide by \( 42\,\mbox{bp} \) tall. The appropriate file extension +% will be supplied by the \packlass{epsfig} package. % \begin{macrocode} \@ifdefinable\@seal@graph@file{\def\@seal@graph@file{% - adiseal.eps% must be an Encapsulated PostScript file + adiseal% must be an EPS or a PDF file }} % \end{macrocode} % \end{macro} % +% \begin{macro}{\if@use@pixmap@} % The following switch is used to implement the % \iopz{nopixmap}\eopz{usepixmap}\fopz\space mutually exclusive % options: see subsection~\ref{sS:adisealoptdec} for details. % \begin{macrocode} \@ifdefinable\if@use@pixmap@{\newif\if@use@pixmap@} % \end{macrocode} +% \end{macro} % % \begin{macro}{\@temp@adiseal} % A ``scratch'' macro, used as a temporary storage in the sequel. @@ -5065,7 +5478,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} }% } \if@use@pixmap@ - \IfFileExists{\@seal@graph@file}{% + \IfFileExists{\@seal@graph@file.eps}{% \IfFileExists{epsfig.sty}{% \RequirePackage{epsfig}% }{% @@ -5186,14 +5599,14 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} %<*adicl> % \end{macrocode} % -% The purpose of this file is simply to supply ``glue code'' to -% support the legacy \packlass{\lettcdpadi} class. The document -% class is ``redirected'' to \packlass{\letteracdp}, and the -% \packlass{\adiseal} package is automatically loaded. Options are +% The purpose of this file is simply to supply ``glue code'' to +% support the legacy \packlass{\lettcdpadi} class. The document +% class is ``redirected'' to \packlass{\letteracdp}, and the +% \packlass{\adiseal} package is automatically loaded. Options are % properly shunted, too. % -% It should be time to expunge this file from the Bundle, perhaps -% [v0.33], but it is also true that it uses so few +% It should be time to expunge this file from the Bundle, perhaps +% [v0.33], but it is also true that it occupies so few % bytes\ldots\space(that is, an entire block of the disk!). % % \subsection{Identification} @@ -5201,7 +5614,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % \begin{macrocode} \NeedsTeXFormat{LaTeX2e}[1998/06/01] % LaTeX2e is required! \ProvidesClass{lettcdpadi} - [2005/01/01 v0.33 (development)] + [2006/01/01 v0.34 (development)] % \end{macrocode} % % \subsection{Initial code} @@ -5225,8 +5638,8 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % \subsection{Class and package loading} % % \begin{macrocode} -\LoadClass{letteracdp}[2005/01/01] -\RequirePackage{adiseal}[2005/01/01] +\LoadClass{letteracdp}[2006/01/01] +\RequirePackage{adiseal}[2006/01/01] % \end{macrocode} % % \subsection{Main code} @@ -5251,7 +5664,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % \begin{macrocode} \NeedsTeXFormat{LaTeX2e}[1998/06/01] % LaTeX2e is required! \ProvidesPackage{cdpaddon} - [2005/01/01 v0.33 (development)] + [2006/01/01 v0.34 (development)] \@ifdefinable\@cdpaddon{\def\@cdpaddon{cdpaddon}} % \end{macrocode} % @@ -5316,7 +5729,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % Again, we use one of the ``scratch'' macro to save memory (the other % ``scratch'' macro is used as well inside). % \begin{macrocode} -\def\@temp@cdpaddon@a#1printer:#2,#3@@@{% +\def\@temp@cdpaddon@a#1printer:#2,#3\@@@{% \def\@temp@cdpaddon@b{#1}% \ifx\@temp@cdpaddon@b\@empty \def\@cdpaddon@printer{#2}% @@ -5333,7 +5746,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % a \opz{printer:}\ldots\ option requesting a color definition file. % \begin{macrocode} \DeclareOption*{% - \expandafter\@temp@cdpaddon@a\CurrentOption,printer:,@@@% + \expandafter\@temp@cdpaddon@a\CurrentOption,printer:,\@@@% } % \end{macrocode} % @@ -5718,11 +6131,12 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \let\@temp@cdpaddon@a\@undefined } % \end{macrocode} -% The following line informs the \packlass{\hyperref} package that the -% bookmark level for paragraphs should be~2. -% \begin{macrocode} - \def\toclevel@paragraph{2} -% \end{macrocode} +% The following line has been removed from the code, since the +% bookmark level for paragraphs is now fixed in the file +% \filedir{\articoletteracdp.cls} (v.~0.34). +%\begin{verbatim} +%\def\toclevel@paragraph{2} +%\end{verbatim} % If hyperlinks are not requested, we can release "\@temp@cdpaddon@a" % right now. % \begin{macrocode} @@ -5764,16 +6178,16 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % ``transparent'' to the "\spacefactor", just like parentheses % (the "\spacefactor" is saved in "\count@"). % \begin{macrocode} -\DeclareRobustCommand*{\facesmile}{\@face\smile} -\DeclareRobustCommand*{\facefrown}{\@face\frown} +\DeclareRobustCommand*\facesmile{\@face\smile} +\DeclareRobustCommand*\facefrown{\@face\frown} % \end{macrocode} % \end{macro} % \end{macro} % % \begin{macro}{\@face} -% The low-level command that draws the face ("\bigcirc"), the eyes, and -% the mouth: the latter is passed as an argument, so it can be a -% "\smile" or a "\frown". +% The low-level command that draws the face ("\bigcirc"), the eyes, +% and the mouth: the latter is passed as an argument, so it can be +% either a "\smile" or a "\frown". % \begin{macrocode} \@ifdefinable\@face{\def\@face#1{% \leavevmode @@ -5819,7 +6233,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} %%% the name and the release date, respectively, of your file. %%% Note that the extension ".def" must be included in the file name, %%% and that the date is in the format YYYY/MM/DD. -\ProvidesFile{cdpshues-example.def}[2005/01/01 Printer-dependent file] +\ProvidesFile{cdpshues-example.def}[2006/01/01 Printer-dependent file] %%% %%% Define here the colors to use to draw the C.D.P. seal; %%% "slight@col" is the color used to paint the inner of the D and @@ -5838,7 +6252,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % \filedir{\epson}. % \begin{macrocode} %<*epson> -\ProvidesFile{epson-stylus-740.def}[2005/01/01 Printer-dependent file] +\ProvidesFile{epson-stylus-740.def}[2006/01/01 Printer-dependent file] \definecolor{slight@col}{rgb}{.8,1,.8} \definecolor{strong@col}{rgb}{0,.266667,0} %</epson> @@ -5849,7 +6263,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} % This part of the file goes into the definition file \filedir{\hplj}. % \begin{macrocode} %<*hplj> -\ProvidesFile{hp-laserjet-4500.def}[2005/01/01 Printer-dependent file] +\ProvidesFile{hp-laserjet-4500.def}[2006/01/01 Printer-dependent file] \definecolor{slight@col}{cmyk}{.1,0,.1,0} \definecolor{strong@col}{cmyk}{.5,0,.5,.5} %</hplj> diff --git a/Master/texmf-dist/source/latex/cdpbundl/cdpbundl.ins b/Master/texmf-dist/source/latex/cdpbundl/cdpbundl.ins index 45876cc9e48..c19b8da1ee8 100644 --- a/Master/texmf-dist/source/latex/cdpbundl/cdpbundl.ins +++ b/Master/texmf-dist/source/latex/cdpbundl/cdpbundl.ins @@ -3,7 +3,7 @@ % % This file is part of a work named "C.D.P. Bundle". % -% Copyright (C) 1999-2005 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. +% Copyright (C) 1999-2006 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. % % The C.D.P. Bundle may be distributed and/or modified under the % conditions of the LaTeX Project Public License, either version 1.3 @@ -25,7 +25,7 @@ % only part of the Work" in the sense of the LaTeX Project Public % License, and is not allowed. % -% January 1, 2005 +% January 1, 2006 (vers. 0.34) % \input docstrip @@ -58,7 +58,7 @@ This is a generated file. It is part of a work named "C.D.P. Bundle". -Copyright (C) 1999-2005 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. +Copyright (C) 1999-2006 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. The C.D.P. Bundle may be distributed and/or modified under the conditions of the LaTeX Project Public License, either version 1.3 diff --git a/Master/texmf-dist/source/latex/coordsys/coordsys.dtx b/Master/texmf-dist/source/latex/coordsys/coordsys.dtx index 9249a7d662f..1221d4950f1 100644 --- a/Master/texmf-dist/source/latex/coordsys/coordsys.dtx +++ b/Master/texmf-dist/source/latex/coordsys/coordsys.dtx @@ -1,6 +1,6 @@ % \iffalse % This is the coordsys package, coordsys.dtx -% Copyright 2000--04 by Mogens Lemvig Hansen. +% Copyright 2000--06 by Mogens Lemvig Hansen. % % Run first coordsys.ins then this file, coordsys.dtx, % through LaTeX and read the documentation in coordsys.dvi @@ -20,9 +20,29 @@ \usepackage{url,varioref,color,coordsys,logsys} \IfFileExists{eepic.sty}{\usepackage{epic,eepic}}{\relax} \CodelineIndex%\EnableCrossrefs -\OnlyDescription +%\OnlyDescription \MakeShortVerb{\"} \makeatletter +\DoNotIndex{\@circlefnt, \@empty, \@ifpackageloaded, \@ifstar, +\@tempcnta, \@tempcntb, \@tempdima, \@tempdimb, \@tempdimc, +\@wholewidth, \\, \addtocounter, \addtolength, \advance, +\afterassignment, \arabic, \baselineskip, \char, +\color@begingroup, \color@endgroup, \colorbox, \count@, +\DeclareOption, \def, \divide, \edef, \ensuremath, +\ExecuteOptions, \fontdimen, \frac, \hbox, \hfill, \hrule, \hskip, +\hspace, \hss, +\if, \else, \fi, \ifdim, \fi, \ifnum, \fi, \ifx, \repeat, +\ignorespaces, \leaders, \leavevmode, \let, \line, \lineskip, +\loop, \makebox, \mbox, \MessageBreak, \multiply, \multiput, \n, +\NeedsTeXFormat, \newcommand, \newif, \next, \offinterlineskip, +\p@, \PackageError, \PackageWarning, \PassOptionsToPackage, +\phantom, \ProcessOptions, \providecommand, \ProvidesPackage, +\put, \raisebox, \relax, \renewcommand, \RequirePackage, \rule, +\scriptsize, \setcounter, \setlength, \settodepth, \settoheight, +\settowidth, \space, \stepcounter, \string, \t, \textfont, \the, +\thicklines, \thinlines, \unitlength, \value, \vbox, \vector, +\vee, \vfill, \vrule, \vskip, \vss, \wedge, \width, \z@} + \newcommand{\nextlinelabel}[2][1]{\@bsphack \@tempcnta\c@CodelineNo \advance\@tempcnta#1\relax @@ -375,7 +395,7 @@ % Grave accent \` Left brace \{ Vertical bar \| % Right brace \} Tilde \~} % -% \def\fileversion{1.3} \def\filedate{2004/11/15} \def\docdate{\filedate} +% \def\fileversion{1.4} \def\filedate{2006/02/03} \def\docdate{\filedate} % \title{The \textsf{coordsys} and \textsf{logsys} Packages\thanks{This % file describes version \fileversion, \filedate.}} % \author{\copyright\ Mogens Lemvig Hansen\thanks{% @@ -409,7 +429,8 @@ % % \subsection{One Dimension} % \DescribeMacro{\numbline} -% The "\numbline" command typesets a number line. For example, +% The "\numbline" command typesets a number line.\index{number line|(usage} +% For example, % \begin{quote} % \begin{verbatim} % \begin{picture}(200,20)(-75,-15) @@ -469,7 +490,7 @@ % "\vnumbline*"\oarg{spacing}\marg{from}\marg{to} % \end{quote} % The syntax is similar to that of the "\numbline" command -% \vpageref[above]{numblinesyntax}. +% \vpageref[above]{numblinesyntax}.\index{number line|)usage} % \begin{quote} % \begin{minipage}{.2\linewidth} % \begin{picture}(20,100)(-17,20) @@ -486,7 +507,8 @@ % % \subsection{Two Dimensions} % \DescribeMacro{\coordsys} -% Use the "\coordsys" command to typeset coordinate systems. +% Use the "\coordsys"\index{coordinate system>with intersecting axes|usage} +% command to typeset coordinate systems. % \begin{quote} % \begin{picture}(200,110)(-50,-50) % \coordsys(-50,-50)(150,60) @@ -517,7 +539,8 @@ % styles. All the coordinate-system-drawing commands have similar syntax. % % \DescribeMacro{\fcoordsys}\DescribeMacro{\fcoordsys*} -% The "\fcoordsys" command typesets framed coordinate systems; that is, the +% The "\fcoordsys"\index{coordinate system>framed|usage} +% command typesets framed coordinate systems; that is, the % axes are at the left and bottom edges of the system. % \begin{quote} % "\fcoordsys"\oarg{h-spacing}\oarg{v-spacing}\parg{ll}\parg{ur}\\ @@ -533,7 +556,8 @@ % \end{quote} % % \DescribeMacro{\bcoordsys}\DescribeMacro{\bcoordsys*} -% The "\bcoordsys" command typesets boxed coordinate systems. +% The "\bcoordsys"\index{coordinate system>boxed|usage} +% command typesets boxed coordinate systems. % \begin{quote} % "\bcoordsys"\oarg{h-spacing}\oarg{v-spacing}\parg{ll}\parg{ur}\\ % "\bcoordsys*"\oarg{h-spacing}\oarg{v-spacing}\parg{ll}\parg{ur} @@ -566,7 +590,8 @@ % part of the \textsf{amsmath} package). % % \DescribeMacro{\coordgrid} -% The "\coordgrid" command typesets a coordinate grid. +% The "\coordgrid"\index{grid|(usage}\index{grid>dotted|usage} +% command typesets a coordinate grid. % \begin{quote} % \begin{picture}(300, 125) % \coordgrid(0,0)(300,125) @@ -586,16 +611,19 @@ % \end{picture} % \end{quote} % If you load the \textsf{color} package before the \textsf{coordsys} -% package, the labels will be printed on a white background. +% package, the labels will be printed on a +% white background.\index{labels>background of|usage} % % Typesetting pretty grids with dotted lines is not easy. -% If a grid does come out ugly, try to increase "\unitlength" +% If a grid does come out ugly,\index{grid>ugly|usage} +% try to increase "\unitlength" % to allow for more dots between the lines. % You may also reduce the size of the dots; % see the "\gridstyle" command \vpageref[below]{gridstyle}. % \DescribeMacro{\coordgrid*} % Alternatively you can use the "\coordgrid*" command which -% typesets a coordinate grid with solid lines. You could then use the +% typesets a coordinate grid with solid lines.\index{grid>solid|usage} +% You could then use the % \textsf{color} package to colour the grid, say, gray; again, see % the "\gridstyle" command \vpageref[below]{gridstyle}. % @@ -607,11 +635,12 @@ % typeset coordinate grids with a syntax similar to that of % the "\coordsys" command \vpageref[above]{coordsyssyntax}. % The starred version uses solid lines; -% the un-starred version uses dotted lines. +% the un-starred version uses dotted lines.\index{grid|)usage} % % \DescribeMacro{\gridstyle}\label{gridstyle} % The default size of the dots is the with of "\thinlines" -% and "\thicklines". If you intend to print your grids at a +% and "\thicklines".\index{grid>size of dots|usage}\index{grid>style|(usage} +% If you intend to print your grids at a % sufficiently high resolution, you should reduce the size of the % dots by issuing a "\gridstyle" command. On my 600\,dpi printer, % these sizes look nice for points: @@ -637,7 +666,8 @@ % \end{picture} % \end{quote} % -% If you make grids for the screen, I recommend using colour. For example, +% If you make grids for the screen, I recommend using +% colour.\index{grid>coloured|usage} For example, % \begin{quote} % \begin{verbatim} % \definecolor{gray}{gray}{0.5} @@ -664,13 +694,15 @@ % \meta{thick declaration}. % The current "\gridstyle" applies to all types of grids: % dotted, solid, regular, or logarithmic. -% The default style is "\gridstyle{\thinlines}{\thicklines}".\label{defaultgridstyle} +% The default style is +% "\gridstyle{\thinlines}{\thicklines}".\label{defaultgridstyle}\index{grid>style|)usage} % % % \subsection{Bells and Whistles} % \subsubsection{Manual Labels} % \DescribeMacro{\sethlabel}\DescribeMacro{\setvlabel} -% All the number-line and coordinate-system commands format the labels using +% All the number-line and coordinate-system commands format the +% labels\index{labels>manual|usage}\index{manual labels|usage} using % the commands "\sethlabel" (for labels on horizontal axes) and % "\setvlabel" (for labels on vertical axes). If you set labels manually, % you should use the same commands for a uniform appearance. @@ -701,8 +733,9 @@ % \subsubsection{Thick Tick Density} % \DescribeMacro{\hthickratio} % \DescribeMacro{\vthickratio} -% By default every fifth tick mark is thick. You can change that by -% redefining +% By default every fifth tick mark is +% thick.\index{thick ticks|usage}\index{ticks>ratio of thick|usage} +% You can change that by redefining % the commands "\hthickratio" and "\vthickratio". % \begin{quote} % \begin{verbatim} @@ -718,7 +751,8 @@ % % \subsubsection{Different Scales on the Two Axes} % \DescribeMacro{\rescaleby} -% LaTeX\ (the \textsf{picture} environment) does not support different scales +% LaTeX\ (the \textsf{picture} environment) does not support different +% scales\index{labels>re-scaled|usage}\index{scaling labels|usage} % on the two axes; "\unitlength" is used for both the % horizontal and the vertical direction. % However, you may create the \emph{appearance} of different scales by @@ -740,12 +774,15 @@ % \end{quote} % That is, % \begin{quote} -% "\rescaleby"\oarg{opt}\marg{num}\marg{den}\marg{cmd} +% "\rescaleby"\oarg{symb}\marg{num}\marg{den}\marg{cmd} % \end{quote} -% multiplies the labels by $\frac{\meta{num}}{\meta{den}}$; -% both \meta{num} and \meta{den} should be positive integers. -% If the optional argument is present, each label will also -% be multiplied by \meta{opt} (which may be a non-integer). +% multiplies the labels by $\frac{\meta{num}}{\meta{den}}\meta{symb}$; +% both \meta{num} and \meta{den} must be integers; +% and \meta{den} must be positive.\footnote{Multiplying the labels by +% a negative number does not reverse the arrows, so I suggest using +% boxed coordinate systems in that case.} +% The optional argument, if present, represents a symbolic +% (non-numeric) scale factor; see the example below. % The last argument, \meta{cmd}, must be one of "\hlabel" % or "\vlabel". % @@ -776,7 +813,7 @@ % As you can affect the width of the dots or lines of a % "\coordgrid" with a "\gridstyle" command, % so you can affect the width of the tick marks with a -% "\tickstyle" command: +% "\tickstyle"\index{ticks>style of|usage} command: % \begin{quote} % "\tickstyle"\marg{thin declaration}\marg{thick declaration} % \end{quote} @@ -793,7 +830,8 @@ % \texttt{\textbackslash tickstyle}.} % % \DescribeMacro{\ticklength} -% The "\ticklength" command controls the length of the tick marks. +% The "\ticklength" command controls the length of the +% tick marks.\index{ticks>length of|usage} % \begin{quote} % \begin{verbatim} % \tickstyle{\thinlines\renewcommand{\ticklength}{4pt}} @@ -808,7 +846,8 @@ % Note that the \emph{command} "\ticklength" must be changed with % "\renewcommand". % -% If you prefer tick marks just on the outside of the coordinate axes, load +% If you prefer tick marks\index{ticks>style of|usage} +% just on the outside of the coordinate axes, load % \textsf{coordsys} with the \textsf{outside} option. % \begin{quote} % \begin{verbatim} @@ -838,7 +877,8 @@ % % \subsection{One Dimension} % \DescribeMacro{\logline} -% The "\logline" command typesets a horizontal, logarithmic number line. +% The "\logline" command typesets a horizontal, logarithmic number +% line.\index{number line>logarithmic|(usage} % \begin{quote} % \begin{verbatim} % \logline{-60}{210} @@ -873,7 +913,8 @@ % The "\logline" command only typesets an axis; it does not change the % way \LaTeX\ and the \textsf{picture} environment interprets coordinates. % The equation below gives the relationship between the coordinate to -% "\put", $x_p$, and the apparent coordinate, $x_a$. +% "\put", $x_p$, and the apparent coordinate, +% $x_a$.\index{labels>logarithmic|usage} % \[ % x_p = \meta{spacing} \log_{10} x_a. % \] @@ -899,12 +940,13 @@ % "\vlogline*"\oarg{spacing}\marg{from}\marg{to} % \end{quote} % The syntax is similar to that of the "\logline" command -% \vpageref[above]{loglinesyntax}. +% \vpageref[above]{loglinesyntax}.\index{number line>logarithmic|)usage} % % % \subsection{Two Dimensions} % \DescribeMacro{\logsys} -% Use the "\logsys" command to typeset logarithmic coordinate systems. +% Use the "\logsys"\index{coordinate system>logarithmic|(usage} +% command to typeset logarithmic coordinate systems. % \begin{quote} % \begin{picture}(220,125)(-70,-65) % \logsys[5](-50,-50)(150,60) @@ -980,7 +1022,8 @@ % thick tick marks (powers of $10$) on the vertical axis; % the default is 50 units. % The starred version omits the labels. -% All the arguments must be integers. +% All the arguments must be +% integers.\index{coordinate system>logarithmic|)usage} % % \DescribeMacro{\loggrid} % \DescribeMacro{\loggrid*} @@ -988,7 +1031,8 @@ % \DescribeMacro{\semiloggrid*} % \DescribeMacro{\logloggrid} % \DescribeMacro{\logloggrid*} -% The "\loggrid", "\loggrid*", "\semiloggrid", +% The "\loggrid",\index{grid>logarithmic|(usage} +% "\loggrid*", "\semiloggrid", % "\semiloggrid*", "\logloggrid", and "\logloggrid*" commands % typeset logarithmic grids. % \begin{quote} @@ -1019,7 +1063,7 @@ % thick tick marks (the powers of $10$) on logarithmic axes. % The starred versions use solid lines; % the un-starred versions use dotted lines. -% All the arguments must be integers. +% All the arguments must be integers.\index{grid>logarithmic|)usage} % % % \section{Filling the Coordinate Systems} @@ -1111,7 +1155,8 @@ % % % \subsection{Curves} -% For plotting curves I recommend the \textsf{epic} and +% For plotting curves\index{curves|(usage} +% I recommend the \textsf{epic} and % \textsf{eepic} packages.\footnote{Both are old \LaTeX209 packages that work % fine in \LaTeXe. The \textsf{eepic} package re-implements the \textsf{epic} % package making use of \textsc{PostScript}. The \textsf{eepic} package @@ -1119,14 +1164,14 @@ % I especially like \textsf{(e)epic}'s "\putfile" command which allows % you to calculate your plot with some external program, export the points to % plot to a text file, and import that file to have \LaTeX\ draw the plot. -% For external program I use Maple. +% For external program I use Maple.\index{curves>with Maple|usage} % The \textsf{coordsys} package includes a piece of % Maple code that exports a Maple plot in the form "\putfile" expects. % You can therefore take advantage of Maple adaptive plotting % algorithm\footnote{Maple cleverly calculates more points where the curve % wiggles.} in your \LaTeX\ plots. % -% Here is how it works: +% Here is how it works:\index{putfile|usage} % In Maple, read in the file \url{putfile} which is part of the % \textsf{coordsys} package. % \begin{verbatim} @@ -1196,14 +1241,15 @@ % % To draw a curve that requires (or looks best with) different scales on % the two axes, you can use the "scale" option to -% "putfile" in Maple: +% "putfile"\index{curves>scaled|(usage}\index{putfile>scale|(usage} +% in Maple: % \begin{verbatim} % > plot( (x+2)*(x-1)*(x-2), x=-3..4 ); % > putfile( "cubic.put", %, scale=[10, 1] ); % \end{verbatim} % Now all the $x$-coordinates in "cubic.put" are $10$ times larger % than they should be. Thus re-scale the horizontal labels -% by~$\frac{1}{10}$. +% by~$\frac{1}{10}$.\index{labels>re-scaled|(usage}\index{scaling labels|(usage} % \begin{quote} % \begin{verbatim} % \rescaleby{1}{10}{\hlabel} @@ -1268,7 +1314,8 @@ % \fi % \end{quote} % -% If the plot contains more than one curve, "putfile" generates +% If the plot contains more than one curve, +% "putfile"\index{putfile>multiple curves|usage} generates % one file for each. You can of course specify multiple curves % directly, but they can also be the result of the "discont" % option to "plot". @@ -1316,7 +1363,10 @@ % \fi % \end{quote} % -% For logarithmic plots scaling is almost always necessary. Consider the +% For logarithmic plots +% scaling\index{curves>logarithmic|usage}\index{scaling labels>logarithmic|usage} +% is almost always necessary. +% Consider the % graph of $y=\frac{1}{1+e^{-x}}$ for $x$ running from $-10$ to $10$. % The $y$-coordinates extend over five powers of $10$, so scale by $4$ % to make it comparable to the range of $x$-coordinates. @@ -1355,8 +1405,10 @@ % \end{picture} % \fi % \end{quote} +% \index{curves>scaled|)usage}\index{putfile>scale|)usage}% +% \index{labels>re-scaled|)usage}\index{scaling labels|)usage} % -% Use the "putfile" command as follows: +% Use the "putfile" command as follows:\index{putfile>syntax|usage} % \begin{quote} % "putfile(" \meta{filename}"," \meta{PLOT structure} ["," % \meta{options} ] ");" @@ -1369,7 +1421,7 @@ % as is. (So if you do not want "putfile" to meddle with your filename, % give it in a set.) % -% The only possible option is +% The only possible option is\index{putfile>scale|(usage} % \begin{quote} % "scale" "=" "[" \meta{number}"," \meta{number} "]" % \end{quote} @@ -1389,11 +1441,11 @@ % you should use the optional \meta{spacing} argument to % the command that draws the coordinate system, say % "\logsys[30]("\dots -% \end{itemize} +% \end{itemize}\index{putfile>scale|)usage}\index{curves|)usage} % % % \section{Installation} -% Extract the \url{.sty} files from +% Extract\index{installation|usage} the \url{.sty} files from % the \url{.dtx} file by running \url:coordsys.ins: through \LaTeX. % Then generate the documentation for the \textsf{coordsys} and % \textsf{logsys} packages @@ -1435,17 +1487,21 @@ % % \section{Acknowledgements} % Thank you to Scott Pakin -% (\url{pakin@uiuc.edu}) for his input on the implementation of Euclid's +% for his input on the implementation of Euclid's % algorithm. % % Thank you to Svend Daugaard Pedersen -% (\url{Svend@DaugaardPedersen.dk}) % for catching an error in the logarithmic systems % and for suggestions that led to "\gridstyle". % -% Thank you to Staffan Lundberg who found an error in my understanding +% Thank you to Staffan Lundberg +% who found an error in my understanding % of Maple's structured types and thus prompted me to polish the -% Maple code for "pufile". +% Maple code for "putfile". +% +% Thank you to Jan Hegewald +% whose questions led to an improved description and implementation +% of "\rescaleby". % % % \StopEventually{ @@ -1460,7 +1516,7 @@ % \begin{macrocode} %<*coordsys> \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{coordsys}[2004/11/15 version 1.3] +\ProvidesPackage{coordsys}[2006/02/03 version 1.4] % \end{macrocode} % % \subsubsection{Declaration of Options} @@ -1606,18 +1662,18 @@ % which should be either "\hlabel" or "\vlabel". % After % \begin{quote} -% "\rescaleby"\oarg{opt}\marg{num}\marg{den}"{\hlabel}" +% "\rescaleby"\oarg{symb}\marg{num}\marg{den}"{\hlabel}" % \end{quote} % the result of "\hlabel"\marg{x} should be -% $\frac{\meta{num}\times \meta{x}}{\meta{den}} \meta{opt}$. +% $\frac{\meta{num}\times \meta{x}}{\meta{den}} \meta{symb}$. % \begin{macrocode} \newcommand{\rescaleby}[4][]{\renewcommand{#4}[1]{{% \count@=##1\relax - \ifnum\count@<0\count@=-\count@\fi \ifnum\count@=0\relax \@tempcntb=1\relax \else \multiply\count@ #2\relax + \ifnum\count@<0\count@=-\count@\fi \@EuclidGCD{\count@}{#3}% \count@=##1\relax \multiply\count@ #2\relax @@ -2337,6 +2393,7 @@ \def\coordsys@c{}% \fi\fi\fi % \end{macrocode} +% \begin{macro}{\coordsys@w}\begin{macro}{\coordsys@h} % Finally, "\put" the pieces down. Here "\coordsys@w" is the vertical % coordinate of the last typeset horizontal axis (usually~$0$), % and "\interval@line" is defined by "\intervalthickness" below. @@ -2350,7 +2407,7 @@ \fi \next} % \end{macrocode} -% \end{macro} +% \end{macro}\end{macro}\end{macro} % % \begin{macro}{\vinterval} % \begin{macro}{\vinterv@l} @@ -2450,6 +2507,7 @@ % \end{macro}\end{macro} % % \begin{macro}{\intervalthickness} +% \begin{macro}{interval@line}\begin{macro}{\vinterval@line} % The "\intervalthickness" command defines the two commands "\interval@line" % and "\vinterval@line" that draw the thick line indicating the interval. % \begin{macrocode} @@ -2476,7 +2534,7 @@ }% } % \end{macrocode} -% \end{macro} +% \end{macro}\end{macro}\end{macro} % % Then a few defaults for "\interval" and "\vinterval". % \begin{macrocode} @@ -2490,7 +2548,7 @@ % \begin{macrocode} %<*euclid> \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{euclidgcd}[2004/11/15 version 1.3] +\ProvidesPackage{euclidgcd}[2006/02/03 version 1.4] \newcommand{\EuclidGCD}[2]{% \@EuclidGCD{#1}{#2}% \the\@tempcnta} @@ -2536,7 +2594,7 @@ % \begin{macrocode} %<*logsys> \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{logsys}[2004/11/15 version 1.3] +\ProvidesPackage{logsys}[2006/02/03 version 1.4] % \end{macrocode} % % \subsubsection{Options} @@ -2551,7 +2609,7 @@ % \subsubsection{Package Loading} % The \textsf{logsys} package extends the \textsf{coordsys} package. % \begin{macrocode} -\RequirePackage{coordsys}[2004/11/15] +\RequirePackage{coordsys}[2006/02/03] % \end{macrocode} % % \subsubsection{Main Code} @@ -3034,8 +3092,8 @@ %<*putfile> putfile := proc(fn::{string, list(string), set(string)}, P::specfunc(anything, PLOT) ) - option `Copyright 2000-04 by Mogens Lemvig Hansen`; - description "version 1.0"; + option `Copyright 2000-06 by Mogens Lemvig Hansen`; + description "version 1.1"; local L, fns, i, V, scl, FH, ttl, pt, path, ext; global StringTools; % \end{macrocode} @@ -3118,7 +3176,7 @@ putfile := proc(fn::{string, list(string), set(string)}, % Finally, extract the title, if any. % The title will be included as a comment. % Since the title could be a multi-line string, we must insert "%" characters -% before any new-lines. +% after any new-lines. % \begin{macrocode} ttl := select(type, [op(P)], 'specfunc'('anything', 'TITLE')); if nops(ttl) = 1 then @@ -3140,8 +3198,8 @@ putfile := proc(fn::{string, list(string), set(string)}, if scl <> [1,1] then fprintf(FH, "%% scaled %a\n", scl) fi; V := [ map2(op, 1, L[i]), map2(op, 2, L[i]) ]; V := map( u-> min(op(u))..max(op(u)), V ); - fprintf(FH, "%% horizontal range: %f..%f\n", op(V[1])); - fprintf(FH, "%% vertical range: %f..%f\n", op(V[2])); + fprintf(FH, "%% horizontal range: %f .. %f\n", op(V[1])); + fprintf(FH, "%% vertical range: %f .. %f\n", op(V[2])); for pt in L[i] do fprintf(FH, "%f \t%f\n", op(pt)); od; @@ -3163,8 +3221,8 @@ end; % "putfile/grabcurves" will flatten to one sequence of \meta{curve}s % \begin{macrocode} `putfile/grabcurves` := proc(x) - option `Copyright 2000-04 by Mogens Lemvig Hansen`; - description "version 1.0"; + option `Copyright 2000-06 by Mogens Lemvig Hansen`; + description "version 1.1"; local L; if op(0, x) = 'CURVES' then L := [ op(x) ]; @@ -3182,8 +3240,8 @@ end; % \begin{macrocode} `putfile/cleancurve` := proc(CC::list, V::list) local C, B, pts, pt, m, i; - option `Copyright 2004 by Mogens Lemvig Hansen`; - description "version 1.0"; + option `Copyright 2004-06 by Mogens Lemvig Hansen`; + description "version 1.1"; % \end{macrocode} % Remove any non-numeric points. % \begin{macrocode} @@ -3233,13 +3291,13 @@ end; % \begin{macrocode} pts := [pts]; if C[i-1][1] < C[i][1] then - pts := sort(pts, (u,v)->evab(u[1]<v[1])); + pts := sort(pts, (u,v)->evalb(u[1]<v[1])); elif C[i-1][1] > C[i][1] then - pts := sort(pts, (u,v)->evab(u[1]>v[1])); + pts := sort(pts, (u,v)->evalb(u[1]>v[1])); elif C[i-1][2] < C[i][2] then - pts := sort(pts, (u,v)->evab(u[2]<v[2])); + pts := sort(pts, (u,v)->evalb(u[2]<v[2])); elif C[i-1][2] > C[i][2] then - pts := sort(pts, (u,v)->evab(u[2]>v[2])); + pts := sort(pts, (u,v)->evalb(u[2]>v[2])); else error "cannot happen"; fi; diff --git a/Master/texmf-dist/source/latex/coordsys/coordsys.ins b/Master/texmf-dist/source/latex/coordsys/coordsys.ins index 439f205d738..6533a29459e 100644 --- a/Master/texmf-dist/source/latex/coordsys/coordsys.ins +++ b/Master/texmf-dist/source/latex/coordsys/coordsys.ins @@ -1,51 +1,51 @@ -% The coordsys and logsys packages, version 1.3.
-% Run first this file, coordsys.ins, then coordsys.dtx
-% through LaTeX and read the documentation in coordsys.dvi
-%
-\input docstrip.tex
-\preamble
-
-
- This is the coordsys and logsys packages
- Copyright 2000-04 by Mogens Lemvig Hansen,
- mlhansen@uniserve.com
-
-This program may be distributed and/or modified under the
-conditions of the LaTeX Project Public License, either version 1.3
-of this license or (at your option) any later version. The latest
-version of this license is in
- http://www.latex-project.org/lppl.txt
-and version 1.2 or later is part of all distributions of LaTeX
-version 2003/12/01 or later.
-
-This program consists of the files coordsys.dtx and coordsys.ins
-
-\endpreamble
-\generate{\file{coordsys.sty} {\from{coordsys.dtx}{coordsys}}
- \file{logsys.sty} {\from{coordsys.dtx}{logsys}}
-% \file{euclidgcd.sty}{\from{coordsys.dtx}{euclid}}
- }
-
-{\catcode`\#=12\gdef\MetaPrefix{##}}
-\preamble
-
-
- This is the coordsys and logsys packages
- Copyright 2000-04 by Mogens Lemvig Hansen,
- mlhansen@uniserve.com
-
-This program may be distributed and/or modified under the
-conditions of the LaTeX Project Public License, either version 1.3
-of this license or (at your option) any later version. The latest
-version of this license is in
- http://www.latex-project.org/lppl.txt
-and version 1.2 or later is part of all distributions of LaTeX
-version 2003/12/01 or later.
-
-This program consists of the files coordsys.dtx and coordsys.ins
-
-\endpreamble
-\nopostamble
-\generate{\file{putfile.} {\from{coordsys.dtx}{putfile}}
- }
-\endbatchfile
+% The coordsys and logsys packages, version 1.4. +% Run first this file, coordsys.ins, then coordsys.dtx +% through LaTeX and read the documentation in coordsys.dvi +% +\input docstrip.tex +\preamble + + + This is the coordsys and logsys packages + Copyright 2000-06 by Mogens Lemvig Hansen, + mlhansen@uniserve.com + +This program may be distributed and/or modified under the +conditions of the LaTeX Project Public License, either version 1.3 +of this license or (at your option) any later version. The latest +version of this license is in + http://www.latex-project.org/lppl.txt +and version 1.2 or later is part of all distributions of LaTeX +version 2003/12/01 or later. + +This program consists of the files coordsys.dtx and coordsys.ins + +\endpreamble +\generate{\file{coordsys.sty} {\from{coordsys.dtx}{coordsys}} + \file{logsys.sty} {\from{coordsys.dtx}{logsys}} +% \file{euclidgcd.sty}{\from{coordsys.dtx}{euclid}} + } + +{\catcode`\#=12\gdef\MetaPrefix{##}} +\preamble + + + This is the coordsys and logsys packages + Copyright 2000-06 by Mogens Lemvig Hansen, + mlhansen@uniserve.com + +This program may be distributed and/or modified under the +conditions of the LaTeX Project Public License, either version 1.3 +of this license or (at your option) any later version. The latest +version of this license is in + http://www.latex-project.org/lppl.txt +and version 1.2 or later is part of all distributions of LaTeX +version 2003/12/01 or later. + +This program consists of the files coordsys.dtx and coordsys.ins + +\endpreamble +\nopostamble +\generate{\file{putfile.} {\from{coordsys.dtx}{putfile}} + } +\endbatchfile diff --git a/Master/texmf-dist/source/latex/dramatist/dramatist.dtx b/Master/texmf-dist/source/latex/dramatist/dramatist.dtx index 456d100e210..64b27a31ae3 100644 --- a/Master/texmf-dist/source/latex/dramatist/dramatist.dtx +++ b/Master/texmf-dist/source/latex/dramatist/dramatist.dtx @@ -1,6 +1,6 @@ %\iffalse %% dramatist.dtx -%% Copyright (C) 2003-2004 Massimiliano Dominici +%% Copyright (C) 2003-2005 Massimiliano Dominici % % This program is free software; you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by @@ -49,6 +49,7 @@ \makeatother \OnlyDescription \EnableCrossrefs +\CodelineIndex \RecordChanges \providecommand\envname[1]{\textsf{#1}} \providecommand\clsname[1]{\textsf{#1}} @@ -60,7 +61,7 @@ \end{document} %</driver> %\fi -% \CheckSum{1008} +% \CheckSum{523} %% \CharacterTable%% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z %% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z %% Digits \0\1\2\3\4\5\6\7\8\9 @@ -88,6 +89,18 @@ %environment (\envname{CharacterGroup}) for characters groups in %the \emph{Dramatis Person\ae} list; added various hooks for user %customization.} +%\changes{v1.2a}{2005/05/21}{Fixed a bug in the vertical spacing of +%\cs{DramPer}. Changed name of counter \textsf{linenumber} in +%\textsf{verselinenumber} in order to mantain compatibility with +%package \pkgname{poemscol}} +%\changes{v1.2c}{2005/07/26}{Fixed two bugs: now the package works +%correctly with the spanish extension of \pkgname{babel} and a +%\cs{\meta{name}} command at the end of a \cs{direct} macro no more gives +%an unwanted space. Fixed a typo in the author e-mail address.} +%\changes{v1.2d}{2005/12/01}{Fixed three bugs: restored a missing +%backslash in \cs{dirdelimiter}; customized lengths in character groups +%inside a Dramatis Personae list now work correctly; \cs{speaksdel} is +%now appended to characters' label in verse drama environment too.} % %\DoNotIndex{\@afterheading,\@afterindentfalse,\@break@tfor,\@empty} %\DoNotIndex{\@ifstar,\@let@token,\@namedef,\@nameuse,\@nil} @@ -113,7 +126,7 @@ % %\title{The \Filename{dramatist} package\thanks{This file has version %number \fileversion{} dated \filedate{}.} \\User Guide} -%\author{Massimiliano Dominici\\\texttt{mlgdominici@intrefree.it}} +%\author{Massimiliano Dominici\\\texttt{mlgdominici@interfree.it}} %\date{\filedate} %\maketitle % @@ -499,8 +512,9 @@ % % \begin{macrocode} %<*dramatist> -\ProvidesPackage{dramatist}[2004/05/10 v1.2 Package for typesetting drama -- Author: Massimiliano Dominici] +\ProvidesPackage{dramatist}[2005/12/01 v1.2d Package for typesetting drama -- Author: Massimiliano Dominici] \NeedsTeXFormat{LaTeX2e} +\RequirePackage{xspace} % \end{macrocode} %\subsection{Conditionals, options and counters} %The following line checks wether a class defining |\if@openright| @@ -599,7 +613,7 @@ \@drversetrue \if@poemscol \begin{poem} - \setcounter{linenumber}{\value{storelineno}} + \setcounter{verselinenumber}{\value{storelineno}} \setcounter{printlineindex}{\value{storeprintlineindex}} \else \begin{verse} @@ -613,7 +627,7 @@ \fi \if@poemscol \end{poem} - \setcounter{storelineno}{\value{linenumber}} + \setcounter{storelineno}{\value{verselinenumber}} \setcounter{storeprintlineindex}{\value{printlineindex}} \else \end{verse} @@ -813,10 +827,7 @@ %The macro |\Character| performs three different tasks. First, %it creates, being \meta{name} the third argument, the command %|\|\meta{name}, for use in stage directions; in order to achieve -%this task it uses |\@namedef|, and a new defined command, -%|\intsp@ce|, which takes care of inserting spaces when needed and -%which is inspired by |\text@command| (both for this and for -%|\@namedef| see the latex source). +%this task it uses |\@namedef| (see the latex source). % %In second place it creates a |\|\meta{name}|speaks| command, used %for printing the speaker's name. It uses, for this purpose a @@ -843,10 +854,10 @@ \def\@xcharacter[#1]#2#3{% \stepcounter{character} \@character{#2}{#3} - \n@me@ppend@nddef{persona}{\roman{character}}{\castfont #1} + \n@me@ppend@nddef{persona}{@\Roman{character}}{\castfont #1} } \def\@character#1#2{% - \@namedef{#2}{{\namefont #1}\intsp@ce{#1}\check@spr} + \@namedef{#2}{{\namefont #1}\xspace} \n@me@ppend@nddef{#2}{\@ppendname}{% \if@drverse {\speakstab\speaksfont{#1}\speaksdel\par\nobreak\addvspace{-\parskip}} @@ -876,7 +887,7 @@ % \begin{macrocode} \newenvironment{CharacterGroup}[1]{% \stepcounter{character} - \newcounter{g\roman{character}} + \newcounter{g\Roman{character}} \grouplist{#1} }{} % \end{macrocode} @@ -887,9 +898,9 @@ % \begin{macrocode} \newsavebox{\tbox} \newcommand\grouplist[1]{% - \global\n@me@ppend@nddef{persona}{\roman{character}}{% + \global\n@me@ppend@nddef{persona}{@\Roman{character}}{% \begin{lrbox}{\tbox} - \begin{minipage}[c]{.65\textwidth}\raggedright + \begin{minipage}[c]{\CharWidth}\raggedright \leftmargini=0pt \begin{list}{}{\itemsep=0pt} \dogrouplist @@ -898,14 +909,14 @@ \end{lrbox} \parbox{\CharWidth}{\usebox{\tbox}}% \parbox{\ParenWidth}{$\left.\rule{0pt}{\ht\tbox}\right\}$} - \parbox{\CastWidth}{\castfont #1}} + \parbox{\CastWidth}{\castfont #1\strut}} } % \end{macrocode} % \begin{macrocode} \newcommand{\dogrouplist}{% - \ifnum\value{g\roman{temp}}>\value{gtemp} + \ifnum\value{g\Roman{temp}}>\value{gtemp} \stepcounter{gtemp} - \item\@nameuse{gpersona\Roman{temp}\roman{gtemp}} + \item\@nameuse{gpersona@\Roman{temp}@\Roman{gtemp}}\strut \dogrouplist \fi \setcounter{gtemp}{0} @@ -920,16 +931,16 @@ %argument is, obviously, mandatory. % \begin{macrocode} \newcommand\GCharacter[3]{ - \stepcounter{g\roman{character}} - \global\@namedef{#3}{{\namefont #2}\intsp@ce{#2}\check@spr} + \stepcounter{g\Roman{character}} + \global\@namedef{#3}{{\namefont #2}\xspace} \global\n@me@ppend@nddef{#3}{\@ppendname}{% \if@drverse - {\speakstab\speaksfont #2\par\nobreak\addvspace{-\parskip}} + {\speakstab\speaksfont #2\speaksdel\par\nobreak\addvspace{-\parskip}} \else - \item[#2] + \item[#2\speaksdel] \fi} - \global\n@me@ppend@nddef{gpersona\Roman{character}}{% - \roman{g\roman{character}}}{\castfont #1} + \global\n@me@ppend@nddef{gpersona@\Roman{character}}{% + @\Roman{g\Roman{character}}}{\castfont #1} } % \end{macrocode} %\end{macro} @@ -947,69 +958,6 @@ \fi} % \end{macrocode} %\end{macro} -%\begin{macro}{\intsp@ce} -%For details about this code you may have a look to -%\Filename{ltfntcmd.dtx}. -% \begin{macrocode} -\let \nospace \relax -% \end{macrocode} -% \begin{macrocode} -\let \check@spr \@empty -% \end{macrocode} -% \begin{macrocode} -\def \intsp@ce #1{% - \def \reserved@a {#1}% - \ifx \reserved@a \@empty - \let \check@spr \@empty - \else - \ifx \reserved@a \space - \let \check@spr \@empty - \else - \check@nospace@ #1\nospace\@nil - \fi - \fi -} -% \end{macrocode} -% \begin{macrocode} -\def \check@nospace@ #1#2\nospace#3\@nil {% - \let \check@spr \maybe@sp - \def \reserved@a {\nospace}% - \def \reserved@b {#1}% - \def \reserved@c {#3}% - \ifx \reserved@a \reserved@b - \ifx \reserved@c \@empty - \else - \let \check@spr \@empty - \fi - \else - \ifx \reserved@c \@empty - \else - \let \check@spr \@empty - \fi - \fi -} -% \end{macrocode} -% \begin{macrocode} -\def \maybe@sp {\futurelet\@let@token\maybe@sp@} -\def \maybe@sp@ {% - \@tempswatrue - \expandafter\@tfor\expandafter\reserved@a\expandafter:\expandafter=% - \nospacelist - \do \t@st@sp - \if@tempswa \space \fi -} -\def \t@st@sp {% - \expandafter\let\expandafter\reserved@b\expandafter=\reserved@a\relax - \ifx\reserved@b\@let@token - \@tempswafalse - \@break@tfor - \fi -} -% \end{macrocode} -% \begin{macrocode} -\def \nospacelist {,.;:?!)} -% \end{macrocode} -%\end{macro} %\begin{macro}{\DramPer} %\changes{v1.1}{2004/01/19}{\cs{DramPer} is now defined in a standard %way and has an optional argument (to use for footnotes and the @@ -1050,7 +998,7 @@ \newcommand{\dodramperlist}{% \ifnum\value{character}>\value{temp} \stepcounter{temp} - \item\@nameuse{persona\roman{temp}} + \item\@nameuse{persona@\Roman{temp}}\strut \dodramperlist \fi } @@ -1073,9 +1021,9 @@ \newcommand{\@direct}[1]{% \if@drverse \vskip2\normallineskip - \parbox[b]{\dirwidth}{\dirdelimiter{\emph{#1}}}\@centercr + \parbox[b]{\dirwidth}{\dirdelimiter{{\itshape #1}}}\@centercr \else - \dirdelimiter{\emph{#1}}\unskip + \dirdelimiter{{\itshape #1}}\unskip \fi } % \end{macrocode} @@ -1083,7 +1031,7 @@ \newcommand{\@sdirect}[1]{% \if@drverse \vskip2\normallineskip - \parbox[b]{\dirwidth}{\dirdelimiter{\emph{#1}}}\\! + \parbox[b]{\dirwidth}{\dirdelimiter{\itshape #1}}\\! \else \starrederror \fi @@ -2125,8 +2073,8 @@ %free software license, such as the GNU General Public License, %to permit their use in free software. % -%\StopEventually{ -%\begin{thebibliography}{10} +% \StopEventually{ +% \begin{thebibliography}{10} % \bibitem{knuth} Donald Knuth. % \newblock \emph{The \TeX book}, % \newblock Addison--Wesley, Reading, MA, 1996. @@ -2137,10 +2085,10 @@ % \bibitem{ver} Peter Wilson % \newblock \emph{Typesetting simple verse with \LaTeX}, % \newblock (Available from CTAN, \texttt{macros/latex/contrib/supported/verse}) -%\end{thebibliography} -%\PrintChanges -%\PrintIndex -%} +% \end{thebibliography} +% \PrintChanges +% \PrintIndex +% } %\iffalse %<*schiller> %\fi @@ -2794,6 +2742,7 @@ And, when I die, here shall my spirit walk.\\! %\iffalse %</vmarlowe> %\fi +%\iffalse %<*pmarlowe> %\fi % \begin{macrocode} @@ -3136,5 +3085,6 @@ And, when I die, here shall my spirit walk.\verseline %</pmarlowe> %\fi %\Finale +% \PrintIndex \PrintChanges \endinput diff --git a/Master/texmf-dist/source/latex/egplot/egplot.drv b/Master/texmf-dist/source/latex/egplot/egplot.drv index 57a1dcc6089..10f5c5b4b36 100644 --- a/Master/texmf-dist/source/latex/egplot/egplot.drv +++ b/Master/texmf-dist/source/latex/egplot/egplot.drv @@ -32,7 +32,7 @@ %% Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. %% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -%% \CheckSum{376} +%% \CheckSum{449} %% \CharacterTable %% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z %% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z @@ -52,6 +52,7 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \documentclass[a4paper]{article} \usepackage{doc} +\usepackage{multicol} \IfFileExists{mflogo.sty}% {\usepackage{mflogo}% \def\GP{\textsf{gnuplot}}% @@ -60,7 +61,7 @@ {\def\GP{\textsf{gnuplot}}% \def\EMP{\textsf{EMP}}% \def\EGP{\textsf{egplot}}} -\usepackage{egplot} +\usepackage[gnuplot35]{egplot} \setlength{\parindent}{0pt} \def\manindex#1{\SortIndex{#1}{#1}} \EnableCrossrefs diff --git a/Master/texmf-dist/source/latex/egplot/egplot.dtx b/Master/texmf-dist/source/latex/egplot/egplot.dtx index 78f345b9a8b..5e875969676 100644 --- a/Master/texmf-dist/source/latex/egplot/egplot.dtx +++ b/Master/texmf-dist/source/latex/egplot/egplot.dtx @@ -19,7 +19,7 @@ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % -%% \CheckSum{376} +%% \CheckSum{449} %% \CharacterTable %% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z %% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z @@ -40,8 +40,14 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % \changes{v1.00}{1998/06/17}{First released version} -% \changes{v1.01}{1998/06/25}{Fixed bug with \texttt{german} option and negative tic -% mark values} +% \changes{v1.01}{1998/06/25}{Fixed bug with \texttt{german} option and +% negative tic mark values} +% \changes{v1.02}{1998/07/08}{Added options \texttt{gnuplot35} and +% \texttt{gnuplot36beta} to allow output of +% syntax of \GP{}-3.5.\\ +% Added numbering of \GP{} files to allow multiple +% \texttt{egpfile} environments w/o explicitly +% defined names in one document.} % % \MakeShortVerb{\|} % @@ -70,7 +76,10 @@ % enable the user to let \GP{} do calculations and insert the result values % into the generated output. % \end{abstract} -% +% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% \begin{multicols}{2} +% \tableofcontents +% \end{multicols} % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \vfill % \section*{Copying} @@ -90,7 +99,7 @@ % Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% \newpage +% % \def\topfraction{0.9} % \def\bottomfraction{0.9} % \def\textfraction{0.1} @@ -130,13 +139,14 @@ % In addition to the image inclusion commands \EGP{} provides the user with % commands to let \GP{} do calculations and include the results into the % document. Unfortunately these features are implemented with the UN*X text utils -% and so they are only usable if these are installed on the system. Since the +% and so they are only usable if these are installed on the system. If the user +% does not provide a name for the \GP{} file the % names for the PostScript and the result values files are built by appending -% the figure/calculation number and a three letter extension (|.eps| or |.val|) -% to |\jobname| the user has to choose a |\jobname| that is short enough so -% that the generated filenames fit into the conventions of certain operating -% systems. -% +% the number of the \GP{} file, the figure/calculation number and a three +% letter extension (|.eps| or |.val|) to |\jobname|. So the user has to +% choose a |\jobname| that is short enough so that the generated +% filenames fit into the conventions of certain operating systems. +% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \section{Usage} % @@ -145,13 +155,28 @@ % \label{sec:options} % % \DescribeMacro{Options} -% Besides the options of the |graphicx| package the option |german| is -% recognized by the \EGP{} package. -% -% If |german| is specified the calculated values and the tic labels of the -% diagrams are changed to show a `,' as decimal point character. The default is -% a `.'. This feature is also implemented with UN*X text utils and is only -% available if they are installed on the system. +% Besides the options of the |graphicx| package \EGP{} recognizes the following +% options: +% \begin{description} +% \item[|german|:] If |german| is specified the calculated values and the tic labels of the +% diagrams are changed to show a `,' as decimal point +% character. The default is a `.'. This feature is also +% implemented with UN*X text utils and is only available if +% they are installed on the system. +% \item[|gnuplot35|:] If |gnuplot35|~(default) is specified the \GP{} commands +% generated by |egplot| will be compatible with the syntax +% of the official \GP{} version~3.5. Of course the user +% has to look for the right syntax in his \GP{} code +% himself. Special care has to be taken for the +% |\egpprelude{|\dots|}| and the |\egpfigepilog{|\dots|}| +% commands since these are used to implement the missing +% |reset| command of \GP{}-3.5. +% \item[|gnuplot36beta|:] If |gnuplot36beta| is specified the \GP{} commands +% generated by |egplot| will use the features of the +% beta version \GP{}~3.6beta. As mentioned above the user +% has to look for the right syntax in his \GP{} code +% himself. +% \end{description} % % \subsection{Commands and Environments} % \label{sec:commands} @@ -260,11 +285,13 @@ % This command can be used for e.g. |replot|ting the figure to the screen or % |reset|ing to the defaults after every figure. % -% The default is: +% The defaults are as follows: % \begin{quote} -% \qquad{}|reset| +% \begin{tabular}{lll} +% Option: & none, |gnuplot35| & |gnuplot36beta| \\ +% & |load "reset.gp"| & |reset| \\ +% \end{tabular} % \end{quote} -% % % \subsubsection{Calculating} % \label{sec:calculations} @@ -307,8 +334,9 @@ % \label{sec:procedure} % % After \LaTeX{} has done it's job for the first time you have to invoke \GP{} -% on the generated file~(default: |\jobname.gp|). Then another \LaTeX{} run is -% necessary to include the figures and the results into the output. +% on the generated file~(default: |\jobnameX.gp|, where |X| is a number). Then +% another \LaTeX{} run is necessary to include the figures and the results into +% the output. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \subsection{Examples} % \label{sec:examples} @@ -414,7 +442,8 @@ % \begin{macrocode} $f(\pi/4)=\egpshowval[sin_quarter_pi]{sin(pi/4)}$ % \end{macrocode} -% and get $\frac{\sqrt{2}}{2}=\fbox{\egpuseval{sin_quarter_pi}}$. +% and get $\frac{\sqrt{2}}{2}=\fbox{\egpuseval{sin_quarter_pi}}\footnote{I +% couldn't figure out how to remove the trailing space, yet. Any hints ?}$ % \begin{macrocode} and get $\frac{\sqrt{2}}{2}=\fbox{\egpuseval{sin_quarter_pi}}$. \end{egpfile} @@ -481,10 +510,10 @@ and get $\frac{\sqrt{2}}{2}=\fbox{\egpuseval{sin_quarter_pi}}$. % % \begin{macrocode} %<*style> -\def\fileversion{v1.01} +\def\fileversion{v1.02a} \NeedsTeXFormat{LaTeX2e} \gdef\filename{egplot.sty}% -\gdef\filedate{1998/06/20}% +\gdef\filedate{1998/07/08}% \gdef\filemaintainer{Axel Probst}% % \end{macrocode} % @@ -493,19 +522,32 @@ and get $\frac{\sqrt{2}}{2}=\fbox{\egpuseval{sin_quarter_pi}}$. \ProvidesPackage{egplot}[\filedate\space\fileversion\space Encapsulated gnuplot LaTeX Package (\filemaintainer)] % \end{macrocode} -% Every option we don't understand is sent down to |graphicx|: +% +% Load the required packages: % \begin{macrocode} -\RequirePackage{graphicx}[1994/12/15] \RequirePackage{verbatim} \RequirePackage{ifthen} +% \end{macrocode} % +% Now the options are specified: +% \begin{macrocode} \newboolean{egp@german} \setboolean{egp@german}{false} \DeclareOption{german}{% \setboolean{egp@german}{true}} +\newboolean{egp@oldgp} +\setboolean{egp@oldgp}{true} +\DeclareOption{gnuplot35}{% + \setboolean{egp@oldgp}{true}} +\DeclareOption{gnuplot36beta}{% + \setboolean{egp@oldgp}{false}} +% \end{macrocode} % +% Every option we don't understand is sent down to |graphicx|: +% \begin{macrocode} \DeclareOption*{\PassOptionsToPackage{\CurrentOption}{graphicx}} \ProcessOptions +\RequirePackage{graphicx}[1994/12/15] % \end{macrocode} % % \begin{macro}{\egpwrite} @@ -527,14 +569,20 @@ and get $\frac{\sqrt{2}}{2}=\fbox{\egpuseval{sin_quarter_pi}}$. % This environment encloses each \GP{} input file. The single optional % argument gives the name of the file. % \begin{macrocode} -\newcommand{\egpfile}[1][\jobname]{% +\newcounter{egpfilenum} % 1998-03-07 +\setcounter{egpfilenum}{0} % 1998-03-07 +\newcommand{\egpfile}[1][\jobname\theegpfilenum_]{% \def\theegpfile{#1}% + \ifthenelse{\equal{\theegpfile}{\jobname\theegpfilenum_}}{% + \stepcounter{egpfilenum}% + \def\theegpfilename{\jobname\theegpfilenum.gp}}{% + \def\theegpfilename{\theegpfile.gp}} % \end{macrocode} % Open the \GP{} file. % \begin{macrocode} \if@egpio - \immediate\openout\@outegp=\theegpfile.gp\relax - \egpwrite{\egpcomment\space \theegpfile.gp -- % + \immediate\openout\@outegp=\theegpfilename\relax + \egpwrite{\egpcomment\space \theegpfilename -- % do not edit, generated automatically by \jobname.tex^^J} % \end{macrocode} % append the defined prelude and write it out: @@ -622,20 +670,26 @@ and get $\frac{\sqrt{2}}{2}=\fbox{\egpuseval{sin_quarter_pi}}$. % \begin{macrocode} \def\egp@{% \egp@start% - \egpwrite{print 'generating picture ---- \theegpfile\theegpfig.eps'^^J% - set output '\theegpfile\theegpfig.eps'^^J} + \ifthenelse{\boolean{egp@oldgp}} + {\egpwrite{\egpcomment\space --- \theegpfile\theegpfig.eps ---}} + {\egpwrite{print 'generating picture ---- \theegpfile\theegpfig.eps'}} + \egpwrite{set output '\theegpfile\theegpfig.eps'} \egp@includegraphics{\theegpfile}{\theegpfig}% \egpcmds} \def\egp@x#1{% - \egp@start% - \egpwrite{print 'generating picture ---- \theegpfile\theegpfig.eps'^^J% - set output '\theegpfile\theegpfig.eps'^^J} - \egp@includegraphicx[#1]{\theegpfile}{\theegpfig}% - \egpcmds} + \egp@start% + \ifthenelse{\boolean{egp@oldgp}} + {\egpwrite{\egpcomment\space --- \theegpfile\theegpfig.eps ---}} + {\egpwrite{print 'generating picture ---- \theegpfile\theegpfig.eps'}} + \egpwrite{set output '\theegpfile\theegpfig.eps'} + \egp@includegraphicx[#1]{\theegpfile}{\theegpfig}% + \egpcmds} \def\egp@def{% \egp@start% - \egpwrite{print 'generating picture ---- \theegpfile\theegpfig.eps'^^J% - set output '\theegpfile\theegpfig.eps'^^J} + \ifthenelse{\boolean{egp@oldgp}} + {\egpwrite{\egpcomment\space --- \theegpfile\theegpfig.eps ---}} + {\egpwrite{print 'generating picture ---- \theegpfile\theegpfig.eps'}} + \egpwrite{set output '\theegpfile\theegpfig.eps'} \egpcmds} % \end{macrocode} % \end{macro} @@ -668,7 +722,7 @@ and get $\frac{\sqrt{2}}{2}=\fbox{\egpuseval{sin_quarter_pi}}$. \def\egp@checkfile{% \ifx\theegpfile\relax \errhelp={Outside an egpfile environment, I have no clue as to where^^J% - the GNUPlot commands should go. I will use egpdefault.gp^^J% + the gnuplot commands should go. I will use egpdefault.gp^^J% for this graph, but you'd better fix your code!}% \errmessage{I detected a egp environment outside of egpfile}% \egpfile[egpdefault] @@ -686,7 +740,7 @@ and get $\frac{\sqrt{2}}{2}=\fbox{\egpuseval{sin_quarter_pi}}$. {\includegraphics{#1#2.eps}}% {\typeout{% egp: File #1#2.eps\space not found:^^J% - egp: Process #1.gp with GNUPlot and then % + egp: Process \theegpfilename\space with gnuplot and then % reprocess this file.}}} \newcommand{\egp@includegraphicx}[3][scale=1]{% \leavevmode @@ -694,7 +748,7 @@ and get $\frac{\sqrt{2}}{2}=\fbox{\egpuseval{sin_quarter_pi}}$. {\includegraphics[#1]{#2#3.eps}}% {\typeout{% egp: File #2#3.eps\space not found:^^J% - egp: Process #2.gp with GNUPlot and then % + egp: Process \theegpfilename\space with gnuplot and then % reprocess this file.}}} % \end{macrocode} % \end{macro} @@ -733,13 +787,15 @@ and get $\frac{\sqrt{2}}{2}=\fbox{\egpuseval{sin_quarter_pi}}$. \def\endegp{% \endegpcmds \ifthenelse{\boolean{egp@german}}{% - \egpwrite{!sed -e '/[0-9]*[.][0-9]*)\ .show/s/[.]/,/' \theegpfile\theegpfig.eps >\theegpfile\theegpfig.tmp^^J} + \egpwrite{!sed -e '/[0-9]*[.][0-9]*)\ .show/s/[.]/,/' % + \theegpfile\theegpfig.eps >\theegpfile\theegpfig.tmp} \egpwrite{!cp \theegpfile\theegpfig.tmp \theegpfile\theegpfig.eps} \egpwrite{!rm -f \theegpfile\theegpfig.tmp}} {} \expandafter\ifx\expandafter*\the\egp@figepilog*\else \egpwrite{\the\egp@figepilog}% - \fi} + \fi + \egpwrite{}} \def\endegpx{\endegp} \def\endegpdef{\endegp} % \end{macrocode} @@ -792,11 +848,13 @@ and get $\frac{\sqrt{2}}{2}=\fbox{\egpuseval{sin_quarter_pi}}$. \egp@checkfile \global\expandafter\advance\csname c@egpcalc\endcsname \@ne \egpc@@def{\egp@@name}% - \egpwrite{print 'calculating value ----- \theegpfile\theegpcalc.val'^^J% - set term table; set output '\theegpfile\theegpcalc.tmp'^^J% + \ifthenelse{\boolean{egp@oldgp}} + {\egpwrite{\egpcomment\space --- \theegpfile\theegpcalc.val ---}} + {\egpwrite{print 'calculating value ----- \theegpfile\theegpcalc.val'}} + \egpwrite{set term table; set output '\theegpfile\theegpcalc.tmp'^^J% set samples 2^^J% set zero 0^^J% - plot [0:0] \egp@expression^^J} + plot [0:0] \egp@expression} % \end{macrocode} % % Here intensive usage of UN*X text utils is made to extract the calculated @@ -811,10 +869,16 @@ and get $\frac{\sqrt{2}}{2}=\fbox{\egpuseval{sin_quarter_pi}}$. % % \begin{macrocode} \ifthenelse{\boolean{egp@german}}{% - \egpwrite{!tail -3 \theegpfile\theegpcalc.tmp | head -1 | cut -f 2 -d' ' | sed -e 's/[.]/{,}/' >\theegpfile\theegpcalc.val^^J}} - {\egpwrite{!tail -3 \theegpfile\theegpcalc.tmp | head -1 | cut -f 2 -d' ' >\theegpfile\theegpcalc.val^^J}} - \egpwrite{!rm -f \theegpfile\theegpcalc.tmp^^J% - reset^^J}} + \egpwrite{!tail -3 \theegpfile\theegpcalc.tmp | head -1 |% + cut -f 2 -d' ' | sed -e 's/[.]/{,}/' % + >\theegpfile\theegpcalc.val}} + {\egpwrite{!tail -3 \theegpfile\theegpcalc.tmp | head -1 |% + cut -f 2 -d' ' >\theegpfile\theegpcalc.val}} + \egpwrite{!rm -f \theegpfile\theegpcalc.tmp} +% \ifthenelse{\boolean{egp@oldgp}}{% +% \egpwrite{load "reset.gp"}}{% +% \egpwrite{reset}} + \egpwrite{}} % \end{macrocode} % \end{macro} % @@ -833,11 +897,12 @@ and get $\frac{\sqrt{2}}{2}=\fbox{\egpuseval{sin_quarter_pi}}$. % avoid this but I don't know how. Any wizards out there? % \begin{macrocode} \newcommand{\egp@includevalue}[2]{% +% \InputIfFileExists{#1#2.val}{\ignorespaces}% \IfFileExists{#1#2.val}% {\input{#1#2.val}}% {\typeout{% egp: File #1#2.val\space not found:^^J% - egp: Process #1#2.gp with GNUPlot and then % + egp: Process \theegpfilename\space with gnuplot and then % reprocess this file.}}} % \end{macrocode} % \end{macro} @@ -847,8 +912,8 @@ and get $\frac{\sqrt{2}}{2}=\fbox{\egpuseval{sin_quarter_pi}}$. % \begin{macrocode} \newcommand{\egpshowval}[2][*]{% \def\egp@@name{#1}% - \def\egp@expression{#2} - \egp@calc + \def\egp@expression{#2}% + \egp@calc% \egp@includevalue{\theegpfile}{\theegpcalc}} % \end{macrocode} % \end{macro} @@ -870,10 +935,20 @@ and get $\frac{\sqrt{2}}{2}=\fbox{\egpuseval{sin_quarter_pi}}$. % \end{macrocode} % \end{macro} % +% Define the file prelude: +% If the user specifies that the official version \GP{}-3.5 is used a file with +% the name |reset.gp| is generated at the start of the \GP{} run. Wherever a +% |reset| is done in the \GP{}-3.6 file this file is |load|ed instead. % \begin{macrocode} -\egpfigprelude{set terminal postscript eps monochrome dashed "Helvetica" 17} +\ifthenelse{\boolean{egp@oldgp}} + {\egpprelude{save "reset.gp"}} + {\relax} % \end{macrocode} % +% Define the default prelude for the figures: +% \begin{macrocode} +\egpfigprelude{set terminal postscript eps monochrome dashed "Helvetica" 17} +% \end{macrocode} % To get e.g. Computer Modern as font for the axis tics you can specify the % name of a CM-Type-1 font file as fontname option of the \GP{} postscript % terminal. @@ -885,12 +960,20 @@ and get $\frac{\sqrt{2}}{2}=\fbox{\egpuseval{sin_quarter_pi}}$. % \end{quote} % To see the correct font in the Postscript file you have to use the % appropriate fontmap when calling dvips or you have to download the file -% |cmss17.pfb| as header file. The error message of dvips can then be ignored. +% |cmss17.pfb| as header file. The error message of dvips can then be +% ignored.\\ +% +% % % Reset all options to their default values after every |egp|, |egpx| and % |egpdef| environment. +% As mentioned above the file |reset.gp| that is generated at the start of the +% \GP{} run is |load|ed to implement the new |reset| command of \GP{}-3.6beta +% if the user didn't specify |gnuplot36beta| as package option. % \begin{macrocode} -\egpfigepilog{reset} +\ifthenelse{\boolean{egp@oldgp}}{% + \egpfigepilog{load "reset.gp"}}{% + \egpfigepilog{reset}} % \end{macrocode} % % You can configure \EGP{} by putting the appropriate commands in the file @@ -913,6 +996,7 @@ and get $\frac{\sqrt{2}}{2}=\fbox{\egpuseval{sin_quarter_pi}}$. %<*driver> \documentclass[a4paper]{article} \usepackage{doc} +\usepackage{multicol} % \end{macrocode} % % \begin{macrocode} @@ -927,7 +1011,8 @@ and get $\frac{\sqrt{2}}{2}=\fbox{\egpuseval{sin_quarter_pi}}$. % \end{macrocode} % % \begin{macrocode} -\usepackage{egplot} +\usepackage[gnuplot35]{egplot} +%\usepackage[gnuplot36beta]{egplot} % \end{macrocode} % \begin{macrocode} \setlength{\parindent}{0pt} diff --git a/Master/texmf-dist/source/latex/egplot/egpman.drv b/Master/texmf-dist/source/latex/egplot/egpman.drv index 538540e8ea0..e7c5a08b24f 100644 --- a/Master/texmf-dist/source/latex/egplot/egpman.drv +++ b/Master/texmf-dist/source/latex/egplot/egpman.drv @@ -32,7 +32,7 @@ %% Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. %% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -%% \CheckSum{376} +%% \CheckSum{449} %% \CharacterTable %% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z %% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z @@ -52,6 +52,7 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \documentclass[a4paper]{article} \usepackage{doc} +\usepackage{multicol} \IfFileExists{mflogo.sty}% {\usepackage{mflogo}% \def\GP{\textsf{gnuplot}}% @@ -60,7 +61,7 @@ {\def\GP{\textsf{gnuplot}}% \def\EMP{\textsf{EMP}}% \def\EGP{\textsf{egplot}}} -\usepackage{egplot} +\usepackage[gnuplot35]{egplot} \setlength{\parindent}{0pt} \def\manindex#1{\SortIndex{#1}{#1}} \OnlyDescription diff --git a/Master/texmf-dist/source/latex/filecontents/filecontents.dtx b/Master/texmf-dist/source/latex/filecontents/filecontents.dtx index 730a9615d3c..09c421bc605 100644 --- a/Master/texmf-dist/source/latex/filecontents/filecontents.dtx +++ b/Master/texmf-dist/source/latex/filecontents/filecontents.dtx @@ -1,15 +1,17 @@ % \iffalse meta-comment % -% Copyright (C) 2004 Scott Pakin <scott+fc@pakin.org> +% Copyright (C) 2006 Scott Pakin <scott+fc@pakin.org> % ------------------------------------------------------- % % This package may be distributed and/or modified under the -% conditions of the LaTeX Project Public License, either version 1.2 +% conditions of the LaTeX Project Public License, either version 1.3b % of this license or (at your option) any later version. % The latest version of this license is in +% % http://www.latex-project.org/lppl.txt -% and version 1.2 or later is part of all distributions of LaTeX -% version 1999/12/01 or later. +% +% and version 1.3b or later is part of all distributions of LaTeX +% version 2006/01/07 or later. % % \fi % @@ -20,11 +22,12 @@ %<package>\NeedsTeXFormat{LaTeX2e}[1999/12/01] %<package>\ProvidesPackage{filecontents} %<*package> - [2004/08/16 v1.1 Create an external file from within a LaTeX document] + [2006/03/11 v1.1a Create an external file from within a LaTeX document] %</package> % %<*driver> \documentclass{ltxdoc} +\input{filecontents.inc} \EnableCrossrefs \CodelineIndex \RecordChanges @@ -63,6 +66,9 @@ % \maketitle % % \changes{v1.0}{2001/07/31}{Initial version} +% \changes{v1.1a}{2006/03/11}{% +% Clarified/corrected the \texttt{\string\string\string\documentclass} +% restriction as per Robin Fairbairns's suggestion} % % ^^A The following were copied verbatim from source2e.tex. % \DoNotIndex{\def,\long,\edef,\xdef,\gdef,\let,\global} @@ -84,10 +90,10 @@ % % ^^A The following are specific to filecontents.dtx. % \DoNotIndex{\@currenvir,\@gobble,\@gobblefour,\@ifundefined,\@makeother} -% \DoNotIndex{\@undefined,\day,\do,\E,\end,\I,\if@tempswa,\L,\LaTeX,\loop} -% \DoNotIndex{\MessageBreak,\month,\newenvironment,\number,\repeat} -% \DoNotIndex{\reserved@b,\reserved@c,\two@digits,\year} -% \DoNotIndex{\*,\^} +% \DoNotIndex{\@undefined,\active,\chardef,\day,\do,\dospecials,\E,\end,\I} +% \DoNotIndex{\if@tempswa,\L,\LaTeX,\loop,\MessageBreak,\month} +% \DoNotIndex{\newenvironment,\number,\repeat,\reserved@b,\reserved@c} +% \DoNotIndex{\two@digits,\year,\*,\^} % % ^^A Define some commands to help delineate my changes. % \newcommand{\startfcchanges}{^^A @@ -145,18 +151,26 @@ % into the file. % \end{quotation} % +% \noindent +% (The comment about |filecontents| being valid only before +% |\documentclass| is, in fact, untrue. |filecontents| is allowed +% anywhere in the document's preamble.) +% +% \bigskip +% % The \textsf{filecontents} package provides a hacked-up version of the % |filecontents| and |filecontents*| environments that lifts the two % restrictions stated above, namely that existing files are never % overwritten and that |filecontents| must be used before the -% |\documentclass| declaration. \textsf{filecontents} is therefore a -% more convenient way to write external files from within a \LaTeX\ -% document than is provided by default by the \LaTeXe\ kernel. +% |\documentclass| declaration (really, the |\begin{document}|). +% \textsf{filecontents} is therefore a more convenient way to write +% external files from within a \LaTeX\ document than is provided by +% default by the \LaTeXe\ kernel. % % % \paragraph{Sample usage} % |filecontents| works much like |verbatim|, except that it takes -% a (mandatory) filename argument: +% a mandatory filename argument: % % \begin{verbatim} % \begin{filecontents}{myfile.tex} @@ -184,16 +198,16 @@ % |filecontents*| is therefore useful for writing non-\LaTeX\ files such as % Encapsulated PostScript files. % -% If you use the \textsf{ltxtable} package, you may find +% If you use the \textsf{ltxtable} package you may find % \textsf{filecontents} particularly useful. \textsf{ltxtable} is a % crude conglomeration of \textsf{longtable}, which allows tables to % cross page boundaries, and \textsf{tabularx}, which enables tables to % stretch to a specified width. \textsf{ltxtable}'s interface is a bit % cumbersome, however; it requires that the |longtable| environment be -% contained in a separate file. With the \textsf{filecontents} package, -% you can create this file right before the |\LTXtable| invocation, -% which is far more convenient than having to place the table manually -% within a separate file. +% contained in a separate file. With the \textsf{filecontents} package +% you can create this file right before the |\LTXtable| invocation---a +% far more convenient alternative than having to manually place the +% table within a separate file. % % % \StopEventually{^^A @@ -237,8 +251,8 @@ % \end{macrocode} % % \startfcchanges -% In the original code, a pre-existing file would not be overwritten. -% In the new version, the file existence check is used solely to decide +% In the original code a pre-existing file would not be overwritten. +% In the new version the file existence check is used solely to decide % whether to output ``\texttt{Writing file `\textrm{\meta{filename}}'}'' % or ``\texttt{Overwriting file `\textrm{\meta{filename}}'}''. Control % flow then always falls through to what used to be the |\ifeof| case diff --git a/Master/texmf-dist/source/latex/filecontents/filecontents.ins b/Master/texmf-dist/source/latex/filecontents/filecontents.ins index a88cd8a68d3..5800b1bfd20 100644 --- a/Master/texmf-dist/source/latex/filecontents/filecontents.ins +++ b/Master/texmf-dist/source/latex/filecontents/filecontents.ins @@ -3,16 +3,18 @@ %% driver files from the doc files in this package when run through %% LaTeX or TeX. %% -%% Copyright (C) 2004 Scott Pakin <scott+fc@pakin.org> +%% Copyright (C) 2006 Scott Pakin <scott+fc@pakin.org> %% ------------------------------------------------------- %% -%% This package may be distributed and/or modified under the -%% conditions of the LaTeX Project Public License, either version 1.2 -%% of this license or (at your option) any later version. -%% The latest version of this license is in +%% This package may be distributed and/or modified under the conditions +%% of the LaTeX Project Public License, either version 1.3b of this +%% license or (at your option) any later version. The latest version of +%% this license is in +%% %% http://www.latex-project.org/lppl.txt -%% and version 1.2 or later is part of all distributions of LaTeX -%% version 1999/12/01 or later. +%% +%% and version 1.3b or later is part of all distributions of LaTeX +%% version 2006/01/07 or later. %% %% --------------- start of docstrip commands ------------------ %% @@ -26,16 +28,18 @@ This is a generated file. -Copyright (C) 2004 Scott Pakin <scott+fc@pakin.org> +Copyright (C) 2006 Scott Pakin <scott+fc@pakin.org> ------------------------------------------------------- -This package may be distributed and/or modified under the -conditions of the LaTeX Project Public License, either version 1.2 -of this license or (at your option) any later version. -The latest version of this license is in +This package may be distributed and/or modified under the conditions +of the LaTeX Project Public License, either version 1.3b of this +license or (at your option) any later version. The latest version of +this license is in + http://www.latex-project.org/lppl.txt -and version 1.2 or later is part of all distributions of LaTeX -version 1999/12/01 or later. + +and version 1.3b or later is part of all distributions of LaTeX +version 2006/01/07 or later. \endpreamble diff --git a/Master/texmf-dist/source/latex/footbib/footbib.dtx b/Master/texmf-dist/source/latex/footbib/footbib.dtx index 6b5cc08abe1..dfe812c8255 100644 --- a/Master/texmf-dist/source/latex/footbib/footbib.dtx +++ b/Master/texmf-dist/source/latex/footbib/footbib.dtx @@ -1,12 +1,24 @@ % \iffalse -%% File: footbib.dtx Copyright (C) 1997 Eric Domenjoud +%% +%% File: footbib.dtx Copyright (C) 1997-2005 Eric Domenjoud %% %% Eric Domenjoud, %% CRIN/CNRS & INRIA Lorraine %% E-mail: Eric.Domenjoud@loria.fr %% -\def\fileversion{2.0.1} -\def\filedate{1999/05/06} +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of the files footbib.dtx and footbib.ins + + +\def\fileversion{2.0.4} +\def\filedate{2004/06/04} %<*driver> %% %% To produce the documentation, do the following: @@ -40,7 +52,7 @@ %</driver> % \fi % -% \CheckSum{2050} +% \CheckSum{2068} % % \CharacterTable % {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z @@ -102,7 +114,7 @@ % \index{#1s:\levelchar{\protect\ttfamily#2}\encapchar usage}\@esphack} % \newcommand\SpecialMainNonMacroIndex[2]{^^A % \@bsphack\special@index{#2\actualchar{\string\ttfamily\space#2} -% (#1)\encapchar main}^^A +% (#1)\encapchar main}^^A % \index{#1s:\levelchar{\protect\ttfamily#2}\encapchar main}\@esphack} % \newcommand*\NonM@cro@[1]{\m@cro@\iffalse{#1}^^A % \let\SpecialMainEnvIndex\fb@tmp\ignorespaces} @@ -138,14 +150,14 @@ % \newcommand\FbIndex{\Fb@Index\SpecialIndex} % \newcommand\FbMainIndex{\Fb@Index\SpecialMainIndex} % \newenvironment{FbPatch}[1] -% {\vskip-\MacrocodeTopsep$\m@th \setbox\z@\hbox{$\braceld$}^^A +% {\vskip-\MacrocodeTopsep$\setbox\z@\hbox{$\braceld\m@th$}^^A % \braceld\leaders\vrule \@height\ht\z@ \@depth\z@\hfill % \lower.5ex\hbox{\kern1em{\tt footbib} #1\kern1em}^^A -% \leaders\vrule\@height\ht\z@\@depth\z@\hfill\bracerd$^^A -% \vskip-\MacrocodeTopsep} -% {\vskip-\MacrocodeTopsep$\m@th \setbox\z@\hbox{$\braceld$}^^A -% \bracelu\leaders\vrule\@height\ht\z@\@depth\z@\hfill\braceru$^^A -% \vskip-\MacrocodeTopsep} +% \leaders\vrule\@height\ht\z@\@depth\z@\hfill\bracerd\m@th$^^A +% \nobreak\vskip-\MacrocodeTopsep\nobreak} +% {\nobreak\vskip-\MacrocodeTopsep$\setbox\z@\hbox{$\braceld\m@th$}^^A +% \bracelu\leaders\vrule\@height\ht\z@\@depth\z@\hfill\braceru\m@th$^^A +% \nobreak\vskip-\MacrocodeTopsep} %\makeatother % % \newcommand\LATEX{({\let\TeX\relax\LaTeX})\TeX} @@ -184,7 +196,7 @@ % the unit. % % The mechanism used to put a reference only once in each citation -% unit may require several runs of \LaTeX\ before the references find +% unit may require several runs of \LaTeX\ (usually at least two) before the references find % their exact place. If necessary, \LaTeX\ will issue, near the end % of the document, a warning saying % \begin{center} @@ -194,10 +206,17 @@ % Using |footbib| in a document \meta{doc}|.tex| produces a file % \meta{doc}|.fb.aux|. One must pass the argument \meta{doc}|.fb| to \BibTeX\ % to produce the bibliography which will be put in the file -% \meta{doc}|.fb.bbl|. +% \meta{doc}|.fb.bbl|. The exact sequence of commands is +% \begin{trivlist}\leftskip=\leftmargini\parindent=0pt\item[] +% |latex|~\meta{doc}\\ +% |bibtex|~\meta{doc}|.fb|\\ +% |latex|~\meta{doc}\\ +% |latex|~\meta{doc}\\ +% \dots +% \end{trivlist} % % \begin{description} -% \item[Note:] This name might cause some +% \item[Note:] The name \meta{doc}|.fb.aux| might cause some % problem on systems which do not allow a double extension in % a file name or put a limit on the length of file names. % A user command is provided to change it (see section~\ref{sec:custom}). @@ -400,7 +419,7 @@ % \item[] \DescribeMacro{\footcitelabel}^^A % \DescribeMacro{\putfootcitelabel}^^A % \DescribeMacro{\footcitelistformat}^^A -% The list of citations in the text may not be typeseted in +% The list of citations in the text may not be typeset in % one step as done by the |\cite| command of \LaTeX. % The reason is that the command which creates the text of % the foot reference must be inserted after each citation. @@ -445,7 +464,7 @@ % |\putfootcitelabel{\footcitelabel{|label $n$|}}|\\ % \meta{insertion of the text of reference $n$}\\ % |\putfootcitelabel{|\meta{end of list}|}| -% \end{trivlist} +% \end{trivlist} % % Each component of the list may be redefined as follows: % \begin{trivlist}\leftskip=\leftmargini\parindent=0pt\item[] @@ -511,7 +530,7 @@ % may be redefined by |\renewcommand*\footreflabel[1]{|\ldots|}|. % \item[] \DescribeMacro{\footrefstyle} % The label and the text of the reference at the bottom of -% the page are typeseted in the style defined by the command +% the page are typeset in the style defined by the command % |\footrefstyle| which may be redefined in the preamble by % |\renewcommad\footrefstyle{|\dots|}|. The default definition % is |\normalfont\footnotesize|. @@ -636,7 +655,8 @@ \@addtocurcol\else\@reinserts\@addmarginpar\fi}\@latexbug\ifnum \outputpenalty<\z@\if@nobreak\nobreak\else\addpenalty\interlinepenalty \fi\fi\fi\fi} -\@tempa\@doclearpage{\ifvoid\footins\setbox\@tempboxa\vsplit\@cclv to\z@ +\@tempa\@doclearpage{\ifvoid\footins\ifvbox\@kludgeins{\setbox\@tempboxa + \box\@kludgeins}\fi\setbox\@tempboxa\vsplit\@cclv to\z@ \unvbox\@tempboxa\setbox\@tempboxa\box\@cclv\xdef\@deferlist{\@toplist \@botlist\@deferlist}\global\let\@toplist\@empty\global\let\@botlist \@empty\global\@colroom\@colht\ifx\@currlist\@empty\else\@latexerr @@ -650,14 +670,14 @@ \@opcol\clearpage\fi} \@tempa\@makecol{\ifvoid\footins\setbox\@outputbox\box\@cclv\else\setbox \@outputbox\vbox{\boxmaxdepth\@maxdepth\@tempdima\dp\@cclv\unvbox\@cclv - \vskip-\@tempdima\vskip\skip\footins\color@begingroup\normalcolor - \footnoterule\unvbox\footins\color@endgroup}\fi\xdef\@freelist{\@freelist + \vskip\skip\footins\color@begingroup\normalcolor\footnoterule\unvbox + \footins\color@endgroup}\fi\let\@elt\relax\xdef\@freelist{\@freelist \@midlist}\global\let\@midlist\@empty\@combinefloats\ifvbox\@kludgeins \@makespecialcolbox\else\setbox\@outputbox\vbox to\@colht{\@texttop\dimen@ \dp\@outputbox\unvbox\@outputbox\vskip-\dimen@\@textbottom}\fi\global - \maxdepth\@maxdepth}\@tempa\@reinserts{\ifvoid\footins\else\insert\footins - {\unvbox\footins}\fi\ifvbox\@kludgeins\insert\@kludgeins{\unvbox\@kludgeins - }\fi} + \maxdepth\@maxdepth} +\@tempa\@reinserts{\ifvoid\footins\else\insert\footins{\unvbox\footins}\fi + \ifvbox\@kludgeins\insert\@kludgeins{\unvbox\@kludgeins}\fi} \fi \if@tempswa \PackageError{footbib}{the output routine of LaTeX changed} @@ -741,8 +761,10 @@ % \end{macro} % % \subsubsection{Declaration and processing of options} +% {\MacroFont % \begin{option}{oneside} % \begin{option}{twoside} +% \leavevmode\vspace{-1.2\baselineskip} % \begin{macrocode} \DeclareOption{oneside}{\fb@twosidefalse} \DeclareOption{twoside}{\fb@twosidetrue} @@ -750,6 +772,7 @@ % \end{option} % \end{option} % \begin{option}{firstcite} +% \leavevmode\vspace{-1.2\baselineskip} % \begin{macrocode} \DeclareOption{firstcite}{\fb@firstcitetrue} \DeclareOption{firstcite(page)}{\fb@firstcitetrue\fb@pagenumtrue} @@ -762,6 +785,7 @@ % \end{option} % \begin{option}{citeonce} % \begin{option}{citeonce*} +% \leavevmode\vspace{-1.2\baselineskip} % \begin{macrocode} \DeclareOption{citeonce}{\fb@citeoncetrue} \DeclareOption{citeonce(page)}{\fb@pagecitetrue} @@ -782,6 +806,7 @@ % \begin{option}{crossrefs} % \begin{option}{crossrefs*} % \begin{option}{nocrossrefs} +% \leavevmode\vspace{-1.2\baselineskip} % \begin{macrocode} \DeclareOption{crossrefs}{\fb@crossrefstrue\fb@xcrossrefstrue} \DeclareOption{crossrefs*}{\fb@crossrefstrue\fb@xcrossrefsfalse} @@ -793,6 +818,7 @@ % % \begin{option}{split} % \begin{option}{nosplit} +% \leavevmode\vspace{-1.2\baselineskip} % \begin{macrocode} \DeclareOption{split}{\fb@nosplitfalse} \DeclareOption{nosplit}{\fb@nosplittrue} @@ -815,6 +841,7 @@ \let\fb@nosplittrue\@undefined \let\fb@nosplitfalse\@undefined \let\fb@checksec\@undefined % \end{macrocode} +% } % % \begin{macro}{\chapter} % \begin{macro}{\part} @@ -968,7 +995,7 @@ % so that their expansion produces the same character with a catcode % 12 (other). Then an expansion of the key yields a % \emph{verbatim} copy of it. This mechanism allows the list of keys -% to contain itself commands which expands in the normal way. +% to contain itself commands which expand in the normal way. % All characters which may both be active in the document and appear in the % key of a reference must be treated in this way. Since \BibTeX\ allows almost % any character in a key, it is safer to consider all @@ -1010,7 +1037,7 @@ % citations and as input to \BibTeX. % The commands |\footbibliographystyle| and |\footbibliography| do an % immediate |\write| to this file. However, since these commands may -% be used in the preamble, it may happen that this file is not yet open for +% be used in the preamble, this file might not yet be open for % writing at the time they are used. We must wait until the end of the % preamble before opening the auxiliary file to give the user a chance to % define its name with |\footbibliographyname|. Therefore, we define the @@ -2088,6 +2115,9 @@ % \end{macrocode} % \end{FbPatch} % \begin{macrocode} + \ifvbox\@kludgeins + {\setbox \@tempboxa \box \@kludgeins}% + \fi \setbox\@tempboxa\vsplit\@cclv to\z@ \unvbox\@tempboxa \setbox\@tempboxa\box\@cclv \xdef\@deferlist{\@toplist\@botlist\@deferlist}% @@ -2178,6 +2208,7 @@ % \begin{macrocode} }% \fi + \let\@elt\relax \xdef\@freelist{\@freelist\@midlist}% \global \let \@midlist \@empty \@combinefloats diff --git a/Master/texmf-dist/source/latex/footbib/footbib.ins b/Master/texmf-dist/source/latex/footbib/footbib.ins index 6f5d166ff7a..b8a775220e4 100644 --- a/Master/texmf-dist/source/latex/footbib/footbib.ins +++ b/Master/texmf-dist/source/latex/footbib/footbib.ins @@ -1,9 +1,19 @@ -%% File: footbib.ins Copyright (C) 1997 Eric Domenjoud +%% File: footbib.ins Copyright (C) 1997-2003 Eric Domenjoud %% %% Eric Domenjoud, %% CRIN/CNRS & INRIA Lorraine %% E-mail: Eric.Domenjoud@loria.fr %% +%% This program may be distributed and/or modified under the +%% conditions of the LaTeX Project Public License, either version 1.2 +%% of this license or (at your option) any later version. +%% The latest version of this license is in +%% http://www.latex-project.org/lppl.txt +%% and version 1.2 or later is part of all distributions of LaTeX +%% version 1999/12/01 or later. +%% +%% This program consists of the files footbib.dtx and footbib.ins +%% %% To produce the LaTeX package `footbib.sty' process this file with TeX \def\batchfile{footbib.ins} diff --git a/Master/texmf-dist/tex/latex/ccaption/ccaption.sty b/Master/texmf-dist/tex/latex/ccaption/ccaption.sty index f816c75102f..ba1087b2cda 100644 --- a/Master/texmf-dist/tex/latex/ccaption/ccaption.sty +++ b/Master/texmf-dist/tex/latex/ccaption/ccaption.sty @@ -23,7 +23,7 @@ %% This work consists of the files listed in the README file. %% \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{ccaption}[2005/03/21 v3.2 Extended captioning and new floats] +\ProvidesPackage{ccaption}[2005/03/29 v3.2a Extended captioning and new floats] \newif\if@contsubfigxx \@contsubfigxxfalse @@ -207,7 +207,7 @@ \newcommand{\bitwonumcaption}[6][\@empty]{% \begingroup \@if@contemptyarg{#2}{\caption{#3}}{\caption[#2]{#3}} - \ifx #1\@empty\else + \ifx\@empty#1\else \label{#1} \fi \setlength{\abovecaptionskip}{0pt} @@ -222,7 +222,7 @@ \newcommand{\bionenumcaption}[6][\@empty]{% \begingroup \@if@contemptyarg{#2}{\caption{#3}}{\caption[#2]{#3}} - \ifx #1\@empty\else + \ifx\@empty#1\else \label{#1} \fi \setlength{\abovecaptionskip}{0pt} @@ -241,7 +241,7 @@ \newcommand{\bicaption}[5][\@empty]{% \begingroup \@if@contemptyarg{#2}{\caption{#3}}{\caption[#2]{#3}} - \ifx #1\@empty\else + \ifx\@empty#1\else \label{#1} \fi \setlength{\abovecaptionskip}{0pt} diff --git a/Master/texmf-dist/tex/latex/cdpbundl/adiseal.sty b/Master/texmf-dist/tex/latex/cdpbundl/adiseal.sty index 0429bd51229..a78c119a25c 100644 --- a/Master/texmf-dist/tex/latex/cdpbundl/adiseal.sty +++ b/Master/texmf-dist/tex/latex/cdpbundl/adiseal.sty @@ -9,7 +9,7 @@ %% This is a generated file. %% It is part of a work named "C.D.P. Bundle". %% -%% Copyright (C) 1999-2005 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. +%% Copyright (C) 1999-2006 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. %% %% The C.D.P. Bundle may be distributed and/or modified under the %% conditions of the LaTeX Project Public License, either version 1.3 @@ -48,13 +48,13 @@ %% Right brace \} Tilde \~} \NeedsTeXFormat{LaTeX2e}[1998/06/01] % LaTeX2e is required! \ProvidesPackage{adiseal} - [2005/01/01 v0.33 (development)] + [2006/01/01 v0.34 (development)] \@ifdefinable\@adiseal{\def\@adiseal{adiseal}} \newcommand*\ADIWWW{% http://www.math.unipd.it/\string~favero/adipd/% } \@ifdefinable\@seal@graph@file{\def\@seal@graph@file{% - adiseal.eps% must be an Encapsulated PostScript file + adiseal% must be an EPS or a PDF file }} \@ifdefinable\if@use@pixmap@{\newif\if@use@pixmap@} \@ifdefinable\@temp@adiseal{} @@ -71,7 +71,7 @@ }% } \if@use@pixmap@ - \IfFileExists{\@seal@graph@file}{% + \IfFileExists{\@seal@graph@file.eps}{% \IfFileExists{epsfig.sty}{% \RequirePackage{epsfig}% }{% diff --git a/Master/texmf-dist/tex/latex/cdpbundl/articoletteracdp.cls b/Master/texmf-dist/tex/latex/cdpbundl/articoletteracdp.cls index e4b14d03b97..25b17bbf96a 100644 --- a/Master/texmf-dist/tex/latex/cdpbundl/articoletteracdp.cls +++ b/Master/texmf-dist/tex/latex/cdpbundl/articoletteracdp.cls @@ -9,7 +9,7 @@ %% This is a generated file. %% It is part of a work named "C.D.P. Bundle". %% -%% Copyright (C) 1999-2005 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. +%% Copyright (C) 1999-2006 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. %% %% The C.D.P. Bundle may be distributed and/or modified under the %% conditions of the LaTeX Project Public License, either version 1.3 @@ -48,8 +48,8 @@ %% Right brace \} Tilde \~} \NeedsTeXFormat{LaTeX2e}[1996/06/01] % LaTeX2e is required! \ProvidesClass{articoletteracdp} - [2005/01/01 v0.33 (development)] -%% \typeout{Copyright (C) 1999-2005 by Gustavo MEZZETTI, + [2006/01/01 v0.34 (development)] +%% \typeout{Copyright (C) 1999-2006 by Gustavo MEZZETTI, %% all rights reserved.} \@ifdefinable\@out@table@list{} \@ifdefinable\@in@table@list{} @@ -58,6 +58,7 @@ \def\do#1{\@ifdefinable#1{\newif#1}} \do\if@toc@in@toc@ \do\if@loX@in@toc@ +\@ifdefinable\@letter@bookmark{\let\@letter@bookmark\@gobbletwo} \newlength\abovecaptionskip \newlength\belowcaptionskip \DeclareOption{titlepage}{% @@ -79,16 +80,35 @@ \@toc@in@toc@false \@loX@in@toc@false } +\DeclareOption{letterbookmarks}{% + \def\@letter@bookmark{\pdfbookmark[0]}% + \PassOptionsToPackage{bookmarksopen=false}{hyperref}% +} +\DeclareOption{noletterbookmarks}{% + \let\@letter@bookmark\@gobbletwo +} +\DeclareOption{openletterbookmarks}{% + \def\@letter@bookmark{\pdfbookmark[0]}% + \PassOptionsToPackage{bookmarksopen,bookmarksopenlevel=1}{hyperref}% +} \DeclareOption*{\PassOptionsToClass{\CurrentOption}{letteracdp}} -\ExecuteOptions{plaintoc} +\ExecuteOptions{plaintoc,openletterbookmarks} \ProcessOptions\relax -\LoadClass{letteracdp}[2005/01/01] +\LoadClass{letteracdp}[2006/01/01] \newcounter{section}[letter] \newcounter{paragraph}[section] \newcounter{figure}[letter] \newcounter{table}[letter] -\newcounter{subsection} -\newcounter{subsubsection} +\AtBeginDocument{% + \def\theHletter{\arabic{letter}}% + \@ifpackageloaded{hyperref}{% + \def\theHparagraph{\theHsection.\arabic{paragraph}}% + \def\theHsection{\theHletter.\arabic{section}}% + \def\toclevel@paragraph{2}% + }{% + \let\@letter@bookmark\@gobbletwo + }% +} \@ifdefinable\hyper@last{\let\hyper@last\relax} %% Command \title and \author redefined to make changes local. \def\title#1{\def\@title{#1}} @@ -111,6 +131,11 @@ \endgroup } \g@addto@macro\@begin@letter@hook{% + \edef\@cdp@reserved{% + \noexpand\@letter@bookmark + {\lettername\space\theletter}{letter.\theHletter}% + }% + \@cdp@reserved \if@filesw {\escapechar\m@ne \immediate\write\@out@table@list{\string\}^^J\string\{}% @@ -176,7 +201,7 @@ \@ifdefinable\@temp@table@list{\let\@temp@table@list\@empty} \@ifdefinable\@addfullstop{\long\def\@addfullstop#1{% {\nonfrenchspacing\ignorespaces#1\unskip - \ifnum\spacefactor>\@m \else.\fi \/}% + \ifnum \spacefactor>\@m \else.\fi \/}% }} \newcommand*\nopunct{\spacefactor 1001\relax} \setcounter{topnumber}{\tw@} @@ -195,11 +220,11 @@ \setlength \dblfloatsep {\bigskipamount} \@msetlength\dbltextfloatsep {2}{\bigskipamount} \setlength \@fptop {\z@ plus 1 fil} -\setlength \@fpsep {\bigskipamount} +\setlength \@fpsep {1\bigskipamount plus 2 fil} \setlength \@fpbot {\z@ plus 1 fil} -\setlength \@dblfptop {\z@ plus 1 fil} -\setlength \@dblfpsep {\bigskipamount} -\setlength \@dblfpbot {\z@ plus 1 fil} +\setlength \@dblfptop {\@fptop} +\setlength \@dblfpsep {\@fpsep} +\setlength \@dblfpbot {\@fpbot} \setlength\abovecaptionskip{\medskipamount} \setlength\belowcaptionskip{\z@skip} \newcommand*\maketitle{% diff --git a/Master/texmf-dist/tex/latex/cdpbundl/cdpaddon.sty b/Master/texmf-dist/tex/latex/cdpbundl/cdpaddon.sty index c9e0a36d4df..44c9edd9999 100644 --- a/Master/texmf-dist/tex/latex/cdpbundl/cdpaddon.sty +++ b/Master/texmf-dist/tex/latex/cdpbundl/cdpaddon.sty @@ -9,7 +9,7 @@ %% This is a generated file. %% It is part of a work named "C.D.P. Bundle". %% -%% Copyright (C) 1999-2005 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. +%% Copyright (C) 1999-2006 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. %% %% The C.D.P. Bundle may be distributed and/or modified under the %% conditions of the LaTeX Project Public License, either version 1.3 @@ -48,7 +48,7 @@ %% Right brace \} Tilde \~} \NeedsTeXFormat{LaTeX2e}[1998/06/01] % LaTeX2e is required! \ProvidesPackage{cdpaddon} - [2005/01/01 v0.33 (development)] + [2006/01/01 v0.34 (development)] \@ifdefinable\@cdpaddon{\def\@cdpaddon{cdpaddon}} \def\do#1{\@ifdefinable#1{\newif#1}} \do\if@using@cdp@ @@ -75,7 +75,7 @@ }{% \@temp@cdpaddon@a } -\def\@temp@cdpaddon@a#1printer:#2,#3@@@{% +\def\@temp@cdpaddon@a#1printer:#2,#3\@@@{% \def\@temp@cdpaddon@b{#1}% \ifx\@temp@cdpaddon@b\@empty \def\@cdpaddon@printer{#2}% @@ -88,7 +88,7 @@ \DeclareOption{hypertext}{\@use@hyper@true} \DeclareOption{plaintext}{\@use@hyper@false} \DeclareOption*{% - \expandafter\@temp@cdpaddon@a\CurrentOption,printer:,@@@% + \expandafter\@temp@cdpaddon@a\CurrentOption,printer:,\@@@% } \ExecuteOptions{color,plaintext} \ProcessOptions\relax @@ -287,7 +287,6 @@ }% \let\@temp@cdpaddon@a\@undefined } - \def\toclevel@paragraph{2} \else \let\@temp@cdpaddon@a\@undefined \fi @@ -306,8 +305,8 @@ \let\@back@folding@tag\@undefined \let\@cdpaddon@printer\@undefined \let\@temp@cdpaddon@b\@undefined -\DeclareRobustCommand*{\facesmile}{\@face\smile} -\DeclareRobustCommand*{\facefrown}{\@face\frown} +\DeclareRobustCommand*\facesmile{\@face\smile} +\DeclareRobustCommand*\facefrown{\@face\frown} \@ifdefinable\@face{\def\@face#1{% \leavevmode \count@\spacefactor diff --git a/Master/texmf-dist/tex/latex/cdpbundl/cdpshues-example.def b/Master/texmf-dist/tex/latex/cdpbundl/cdpshues-example.def index 631e6de7f9f..01a14f34de3 100644 --- a/Master/texmf-dist/tex/latex/cdpbundl/cdpshues-example.def +++ b/Master/texmf-dist/tex/latex/cdpbundl/cdpshues-example.def @@ -9,7 +9,7 @@ %% This is a generated file. %% It is part of a work named "C.D.P. Bundle". %% -%% Copyright (C) 1999-2005 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. +%% Copyright (C) 1999-2006 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. %% %% The C.D.P. Bundle may be distributed and/or modified under the %% conditions of the LaTeX Project Public License, either version 1.3 @@ -59,7 +59,7 @@ %%% the name and the release date, respectively, of your file. %%% Note that the extension ".def" must be included in the file name, %%% and that the date is in the format YYYY/MM/DD. -\ProvidesFile{cdpshues-example.def}[2005/01/01 Printer-dependent file] +\ProvidesFile{cdpshues-example.def}[2006/01/01 Printer-dependent file] %%% %%% Define here the colors to use to draw the C.D.P. seal; %%% "slight@col" is the color used to paint the inner of the D and diff --git a/Master/texmf-dist/tex/latex/cdpbundl/cdpshues.cfg b/Master/texmf-dist/tex/latex/cdpbundl/cdpshues.cfg index a2eee85af1c..f65f2ccba85 100644 --- a/Master/texmf-dist/tex/latex/cdpbundl/cdpshues.cfg +++ b/Master/texmf-dist/tex/latex/cdpbundl/cdpshues.cfg @@ -9,7 +9,7 @@ %% This is a generated file. %% It is part of a work named "C.D.P. Bundle". %% -%% Copyright (C) 1999-2005 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. +%% Copyright (C) 1999-2006 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. %% %% The C.D.P. Bundle may be distributed and/or modified under the %% conditions of the LaTeX Project Public License, either version 1.3 diff --git a/Master/texmf-dist/tex/latex/cdpbundl/epson-stylus-740.def b/Master/texmf-dist/tex/latex/cdpbundl/epson-stylus-740.def index 98df00cb29a..96e5d7a64a6 100644 --- a/Master/texmf-dist/tex/latex/cdpbundl/epson-stylus-740.def +++ b/Master/texmf-dist/tex/latex/cdpbundl/epson-stylus-740.def @@ -9,7 +9,7 @@ %% This is a generated file. %% It is part of a work named "C.D.P. Bundle". %% -%% Copyright (C) 1999-2005 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. +%% Copyright (C) 1999-2006 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. %% %% The C.D.P. Bundle may be distributed and/or modified under the %% conditions of the LaTeX Project Public License, either version 1.3 @@ -46,7 +46,7 @@ %% Right bracket \] Circumflex \^ Underscore \_ %% Grave accent \` Left brace \{ Vertical bar \| %% Right brace \} Tilde \~} -\ProvidesFile{epson-stylus-740.def}[2005/01/01 Printer-dependent file] +\ProvidesFile{epson-stylus-740.def}[2006/01/01 Printer-dependent file] \definecolor{slight@col}{rgb}{.8,1,.8} \definecolor{strong@col}{rgb}{0,.266667,0} \endinput diff --git a/Master/texmf-dist/tex/latex/cdpbundl/hp-laserjet-4500.def b/Master/texmf-dist/tex/latex/cdpbundl/hp-laserjet-4500.def index 3a84a5d2125..780ed1786c4 100644 --- a/Master/texmf-dist/tex/latex/cdpbundl/hp-laserjet-4500.def +++ b/Master/texmf-dist/tex/latex/cdpbundl/hp-laserjet-4500.def @@ -9,7 +9,7 @@ %% This is a generated file. %% It is part of a work named "C.D.P. Bundle". %% -%% Copyright (C) 1999-2005 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. +%% Copyright (C) 1999-2006 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. %% %% The C.D.P. Bundle may be distributed and/or modified under the %% conditions of the LaTeX Project Public License, either version 1.3 @@ -46,7 +46,7 @@ %% Right bracket \] Circumflex \^ Underscore \_ %% Grave accent \` Left brace \{ Vertical bar \| %% Right brace \} Tilde \~} -\ProvidesFile{hp-laserjet-4500.def}[2005/01/01 Printer-dependent file] +\ProvidesFile{hp-laserjet-4500.def}[2006/01/01 Printer-dependent file] \definecolor{slight@col}{cmyk}{.1,0,.1,0} \definecolor{strong@col}{cmyk}{.5,0,.5,.5} \endinput diff --git a/Master/texmf-dist/tex/latex/cdpbundl/lettcdpadi.cls b/Master/texmf-dist/tex/latex/cdpbundl/lettcdpadi.cls index 6989683ca08..a63114dd94d 100644 --- a/Master/texmf-dist/tex/latex/cdpbundl/lettcdpadi.cls +++ b/Master/texmf-dist/tex/latex/cdpbundl/lettcdpadi.cls @@ -9,7 +9,7 @@ %% This is a generated file. %% It is part of a work named "C.D.P. Bundle". %% -%% Copyright (C) 1999-2005 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. +%% Copyright (C) 1999-2006 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. %% %% The C.D.P. Bundle may be distributed and/or modified under the %% conditions of the LaTeX Project Public License, either version 1.3 @@ -48,13 +48,13 @@ %% Right brace \} Tilde \~} \NeedsTeXFormat{LaTeX2e}[1998/06/01] % LaTeX2e is required! \ProvidesClass{lettcdpadi} - [2005/01/01 v0.33 (development)] + [2006/01/01 v0.34 (development)] \DeclareOption{nopixmap} {\PassOptionsToPackage{nopixmap} {adiseal}} \DeclareOption{usepixmap}{\PassOptionsToPackage{usepixmap}{adiseal}} \DeclareOption*{\PassOptionsToClass{\CurrentOption}{letteracdp}} \ProcessOptions\relax -\LoadClass{letteracdp}[2005/01/01] -\RequirePackage{adiseal}[2005/01/01] +\LoadClass{letteracdp}[2006/01/01] +\RequirePackage{adiseal}[2006/01/01] \endinput %% %% End of file `lettcdpadi.cls'. diff --git a/Master/texmf-dist/tex/latex/cdpbundl/letteracdp.cls b/Master/texmf-dist/tex/latex/cdpbundl/letteracdp.cls index a4a6536873d..ec49dbdb124 100644 --- a/Master/texmf-dist/tex/latex/cdpbundl/letteracdp.cls +++ b/Master/texmf-dist/tex/latex/cdpbundl/letteracdp.cls @@ -9,7 +9,7 @@ %% This is a generated file. %% It is part of a work named "C.D.P. Bundle". %% -%% Copyright (C) 1999-2005 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. +%% Copyright (C) 1999-2006 by Gustavo MEZZETTI <mezzetti@math.unipd.it>. %% %% The C.D.P. Bundle may be distributed and/or modified under the %% conditions of the LaTeX Project Public License, either version 1.3 @@ -48,8 +48,8 @@ %% Right brace \} Tilde \~} \NeedsTeXFormat{LaTeX2e}[1997/06/01] % LaTeX2e is required! \ProvidesClass{letteracdp} - [2005/01/01 v0.33 (**incomplete**)] -\typeout{Copyright (C) 1999-2005 by Gustavo MEZZETTI, + [2006/01/01 v0.34 (**incomplete**)] +\typeout{Copyright (C) 1999-2006 by Gustavo MEZZETTI, all rights reserved.} \@ifdefinable\@letteracdp{\def\@letteracdp{letteracdp}} \newcommand*\Coordinamento{% @@ -144,6 +144,7 @@ \do\thesubject \do\@subject@style \do\@signature@style +\do\@place \do\@begin@letter@hook \do\@end@letter@hook \def\do#1{\@ifdefinable#1{\let#1\@undefined}} @@ -292,6 +293,13 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \fi %% Command \date redefined to make changes to date local. \def\date#1{\def\@date{#1}} +\newcommand*\place[1]{% + \ifx \@empty #1\@empty % if #1 is empty + \let\@place\@empty + \else + \def\@place{#1,}% + \fi +} \input{size1\@ptsize.clo} \setlength\lineskip{\p@} \setlength\normallineskip{\p@} @@ -715,7 +723,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \cleardoubleemptypage \c@page\@ne \refstepcounter{letter}% - \typeout{Letter \number\c@letter}% + \typeout{\lettername \space \number\c@letter}% \interlinepenalty 200 % smaller than the TeXbook value \parskip\medskipamount \ifx\@indent@pref L\else @@ -765,7 +773,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \@baseletter }} \@ifdefinable\y@baseletter{\long\def\y@baseletter#1{% - \@cut@andcc #1\andcc @@@% + \@cut@andcc #1\andcc\@@@ \def\theaddresseeaddress{#1}% \@baseletter }} @@ -789,16 +797,16 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \the\@lett@decl \@begin@letter@hook } -\@ifdefinable\@cut@andcc{\long\def\@cut@andcc#1\andcc#2@@@{% - \@cut@and #1\and @@@% +\@ifdefinable\@cut@andcc{\long\def\@cut@andcc#1\andcc#2\@@@{% + \@cut@and #1\and\@@@% }} -\@ifdefinable\@cut@and{\long\def\@cut@and#1\and#2@@@{% - \@cut@nl #1\\@@@% +\@ifdefinable\@cut@and{\long\def\@cut@and#1\and#2\@@@{% + \@cut@nl #1\\\@@@% }} -\@ifdefinable\@cut@nl{\long\def\@cut@nl#1\\#2@@@{% - \@cut@par #1\par @@@% +\@ifdefinable\@cut@nl{\long\def\@cut@nl#1\\#2\@@@{% + \@cut@par #1\par\@@@% }} -\@ifdefinable\@cut@par{\long\def\@cut@par#1\par#2@@@{% +\@ifdefinable\@cut@par{\long\def\@cut@par#1\par#2\@@@{% \def\theaddresseename{#1}% }} \newcommand*\stopbreaks{% @@ -1135,7 +1143,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \cleardoublepage \@setup@pres }{% - \par + \@@par \addpenalty\@e@prespenalty \addvspace\belowpresentationvspace } @@ -1153,9 +1161,9 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \cleardoublepage \setbox\z@\vbox\bgroup \@setup@pres + \boxmaxdepth\maxdepth \color@begingroup \penalty-\@M - \prevdepth\z@ \else \@nofoldwarning \normalpresentation @@ -1248,8 +1256,8 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \@esphack \fi } -\newcommand*\foldingfilbreak[2][\z@]{% - \@foldingfilbreak{\@fold@getpen{#1}}{#2}% +\newcommand*\foldingfilbreak[1][\z@]{% + \@foldingfilbreak{\@fold@getpen{#1}}% } \newcommand*\makefoldedpresentation{% \if@do@fold@ @@ -1281,9 +1289,9 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \nobreak\medskip \fi }} -\newcommand*\makedate [1][]{\@make@date{#1}NN} -\newcommand*\maketopdate [1][]{\@make@date{#1}NY} -\newcommand*\makebottomdate[1][]{\@make@date{#1}YN} +\newcommand*\makedate [1][\@place]{\@make@date{#1}NN} +\newcommand*\maketopdate [1][\@place]{\@make@date{#1}NY} +\newcommand*\makebottomdate[1][\@place]{\@make@date{#1}YN} \@ifdefinable\@empty@signature{\def\@empty@signature{% \ClassWarning{\@letteracdp}{% Empty signature% @@ -1381,7 +1389,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \@opening }% } -\newcommand*\@opening[1][]{% +\newcommand*\@opening[1][\@place]{% \makepresentation \maketopdate[#1]% \@cdp@reserved @@ -1713,6 +1721,7 @@ mediumsubject,uprightsignature,noPS,indent,105x37labels} \newcommand*\enclname {Allegati:} \newcommand*\PSname {P.S.:} \newcommand*\headtoname {A:} +\newcommand*\lettername {Lettera} \newcommand*\today{\number\day~\ifcase\month\or gennaio\or febbraio\or marzo\or aprile\or maggio\or giugno\or luglio\or agosto\or settembre\or ottobre\or novembre\or dicembre\fi diff --git a/Master/texmf-dist/tex/latex/clefval/clefval.sty b/Master/texmf-dist/tex/latex/clefval/clefval.sty index 374e8c2e1ca..f65e8c3a2e8 100644 --- a/Master/texmf-dist/tex/latex/clefval/clefval.sty +++ b/Master/texmf-dist/tex/latex/clefval/clefval.sty @@ -31,7 +31,7 @@ \newcommand*{\@setTheValue}[2]{% \ifx#1\relax \protect\G@refundefinedtrue - \nfss@text{\reset@font\bfseries^^a0????}% + \nfss@text{\reset@font\bfseries ????}% \@latex@warning{Valeur de #2 en page \thepage\space non d\'efinie}% \else #1\null \fi} \newcommand*{\TheValue}[1]{\expandafter\@setTheValue\csname diff --git a/Master/texmf-dist/tex/latex/coordsys/coordsys.sty b/Master/texmf-dist/tex/latex/coordsys/coordsys.sty index 82f4fbaefc6..f4490f483e3 100644 --- a/Master/texmf-dist/tex/latex/coordsys/coordsys.sty +++ b/Master/texmf-dist/tex/latex/coordsys/coordsys.sty @@ -8,7 +8,7 @@ %% %% %% This is the coordsys and logsys packages -%% Copyright 2000-04 by Mogens Lemvig Hansen, +%% Copyright 2000-06 by Mogens Lemvig Hansen, %% mlhansen@uniserve.com %% %% This program may be distributed and/or modified under the @@ -22,7 +22,7 @@ %% This program consists of the files coordsys.dtx and coordsys.ins %% \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{coordsys}[2004/11/15 version 1.3] +\ProvidesPackage{coordsys}[2006/02/03 version 1.4] \newcommand{\ticklength}{\relax} \newcommand{\vtickmark}{\relax} \newcommand{\htickmark}{\relax} @@ -75,11 +75,11 @@ \newcommand{\vlabel}[1]{#1}% \newcommand{\rescaleby}[4][]{\renewcommand{#4}[1]{{% \count@=##1\relax - \ifnum\count@<0\count@=-\count@\fi \ifnum\count@=0\relax \@tempcntb=1\relax \else \multiply\count@ #2\relax + \ifnum\count@<0\count@=-\count@\fi \@EuclidGCD{\count@}{#3}% \count@=##1\relax \multiply\count@ #2\relax diff --git a/Master/texmf-dist/tex/latex/coordsys/logsys.sty b/Master/texmf-dist/tex/latex/coordsys/logsys.sty index 0bdd97daa09..ac8a978bba7 100644 --- a/Master/texmf-dist/tex/latex/coordsys/logsys.sty +++ b/Master/texmf-dist/tex/latex/coordsys/logsys.sty @@ -8,7 +8,7 @@ %% %% %% This is the coordsys and logsys packages -%% Copyright 2000-04 by Mogens Lemvig Hansen, +%% Copyright 2000-06 by Mogens Lemvig Hansen, %% mlhansen@uniserve.com %% %% This program may be distributed and/or modified under the @@ -22,12 +22,12 @@ %% This program consists of the files coordsys.dtx and coordsys.ins %% \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{logsys}[2004/11/15 version 1.3] +\ProvidesPackage{logsys}[2006/02/03 version 1.4] \DeclareOption{centred}{\PassOptionsToPackage{centred}{coordsys}} \DeclareOption{outside}{\PassOptionsToPackage{outside}{coordsys}} \DeclareOption{inside}{\PassOptionsToPackage{inside}{coordsys}} \ProcessOptions -\RequirePackage{coordsys}[2004/11/15] +\RequirePackage{coordsys}[2006/02/03] \newcommand{\loglabel}[1]{% \ifnum #1=-2\relax \frac{1}{100}% \else\ifnum #1=-1\relax \frac{1}{10}% diff --git a/Master/texmf-dist/tex/latex/dpfloat/dpfloat.sty b/Master/texmf-dist/tex/latex/dpfloat/dpfloat.sty index 8865453fc04..15eea00940d 100644 --- a/Master/texmf-dist/tex/latex/dpfloat/dpfloat.sty +++ b/Master/texmf-dist/tex/latex/dpfloat/dpfloat.sty @@ -1,13 +1,37 @@ -% double-page float package +% ======================================================================== +% +% Copyright (c) 2006 The University of Washington % -% Copyright University of Washington +% This work may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.3 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.3 or later is part of all distributions of LaTeX +% version 2005/12/01 or later. +% +% This work has the LPPL maintenance status `maintained'. +% +% The Current Maintainer of this work is Jim Fox, fox@washington.edu +% +% ======================================================================== +% +% +% double-page float package % % Jim Fox -% fox@u.washington.edu -% http://weber.u.washington.edu/~fox/ +% fox@washington.edu +% http://staff.washington.edu/fox/ +% + % +% Version history +% +% 2006/10/05: fix footer placement (suggestion by Mark Henning (mh@homolog.de) +% 1997/09/21: original + -\ProvidesPackage{dpfloat}[1997/09/21] +\ProvidesPackage{dpfloat}[2006/10/05] \NeedsTeXFormat{LaTeX2e} % This package allows you to format a double-page figure or table @@ -71,8 +95,8 @@ \let\old@xtryfc\@xtryfc \def\@xtryfc #1{% \expandafter\if\csname LP:\string#1\endcsname L% - \ifodd\count0\global\@colht\z@ - \typeout{I moved a leftpage float from page \the\count0.}% + \ifodd\count0\global\@fpmin\maxdimen + \typeout{dpfloat moved a leftpage float from page \the\count0.}% \fi\fi \old@xtryfc #1} @@ -83,4 +107,8 @@ \fi +% assure that any remaining floats are printed +\def\@dpf@mtlist{} +\AtEndDocument{\ifx\@deferlist\@dpf@mtlist\else\ifodd\count0\else\typeout{dpfloat added a blank page}\clearpage\ \clearpage\fi\fi} + % end of dpfloat diff --git a/Master/texmf-dist/tex/latex/dramatist/dramatist.sty b/Master/texmf-dist/tex/latex/dramatist/dramatist.sty index 74d814fc64d..eee9a2f05cb 100644 --- a/Master/texmf-dist/tex/latex/dramatist/dramatist.sty +++ b/Master/texmf-dist/tex/latex/dramatist/dramatist.sty @@ -21,7 +21,7 @@ %% same distribution. (The sources need not necessarily be %% in the same archive or directory.) %% dramatist.dtx -%% Copyright (C) 2003-2004 Massimiliano Dominici +%% Copyright (C) 2003-2005 Massimiliano Dominici %% \CharacterTable%% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z %% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z %% Digits \0\1\2\3\4\5\6\7\8\9 @@ -37,8 +37,9 @@ %% Grave accent \` Left brace \{ Vertical bar \| %% Right brace \} Tilde \~} %% -\ProvidesPackage{dramatist}[2004/05/10 v1.2 Package for typesetting drama -- Author: Massimiliano Dominici] +\ProvidesPackage{dramatist}[2005/12/01 v1.2d Package for typesetting drama -- Author: Massimiliano Dominici] \NeedsTeXFormat{LaTeX2e} +\RequirePackage{xspace} \@ifundefined{if@openright}{\newif\if@openright}{} \newif\if@drverse \newif\if@poemscol @@ -81,7 +82,7 @@ \@drversetrue \if@poemscol \begin{poem} - \setcounter{linenumber}{\value{storelineno}} + \setcounter{verselinenumber}{\value{storelineno}} \setcounter{printlineindex}{\value{storeprintlineindex}} \else \begin{verse} @@ -95,7 +96,7 @@ \fi \if@poemscol \end{poem} - \setcounter{storelineno}{\value{linenumber}} + \setcounter{storelineno}{\value{verselinenumber}} \setcounter{storeprintlineindex}{\value{printlineindex}} \else \end{verse} @@ -213,10 +214,10 @@ \def\@xcharacter[#1]#2#3{% \stepcounter{character} \@character{#2}{#3} - \n@me@ppend@nddef{persona}{\roman{character}}{\castfont #1} + \n@me@ppend@nddef{persona}{@\Roman{character}}{\castfont #1} } \def\@character#1#2{% - \@namedef{#2}{{\namefont #1}\intsp@ce{#1}\check@spr} + \@namedef{#2}{{\namefont #1}\xspace} \n@me@ppend@nddef{#2}{\@ppendname}{% \if@drverse {\speakstab\speaksfont{#1}\speaksdel\par\nobreak\addvspace{-\parskip}} @@ -229,14 +230,14 @@ \newcommand{\@ppendname}{speaks} \newenvironment{CharacterGroup}[1]{% \stepcounter{character} - \newcounter{g\roman{character}} + \newcounter{g\Roman{character}} \grouplist{#1} }{} \newsavebox{\tbox} \newcommand\grouplist[1]{% - \global\n@me@ppend@nddef{persona}{\roman{character}}{% + \global\n@me@ppend@nddef{persona}{@\Roman{character}}{% \begin{lrbox}{\tbox} - \begin{minipage}[c]{.65\textwidth}\raggedright + \begin{minipage}[c]{\CharWidth}\raggedright \leftmargini=0pt \begin{list}{}{\itemsep=0pt} \dogrouplist @@ -245,27 +246,27 @@ \end{lrbox} \parbox{\CharWidth}{\usebox{\tbox}}% \parbox{\ParenWidth}{$\left.\rule{0pt}{\ht\tbox}\right\}$} - \parbox{\CastWidth}{\castfont #1}} + \parbox{\CastWidth}{\castfont #1\strut}} } \newcommand{\dogrouplist}{% - \ifnum\value{g\roman{temp}}>\value{gtemp} + \ifnum\value{g\Roman{temp}}>\value{gtemp} \stepcounter{gtemp} - \item\@nameuse{gpersona\Roman{temp}\roman{gtemp}} + \item\@nameuse{gpersona@\Roman{temp}@\Roman{gtemp}}\strut \dogrouplist \fi \setcounter{gtemp}{0} } \newcommand\GCharacter[3]{ - \stepcounter{g\roman{character}} - \global\@namedef{#3}{{\namefont #2}\intsp@ce{#2}\check@spr} + \stepcounter{g\Roman{character}} + \global\@namedef{#3}{{\namefont #2}\xspace} \global\n@me@ppend@nddef{#3}{\@ppendname}{% \if@drverse - {\speakstab\speaksfont #2\par\nobreak\addvspace{-\parskip}} + {\speakstab\speaksfont #2\speaksdel\par\nobreak\addvspace{-\parskip}} \else - \item[#2] + \item[#2\speaksdel] \fi} - \global\n@me@ppend@nddef{gpersona\Roman{character}}{% - \roman{g\roman{character}}}{\castfont #1} + \global\n@me@ppend@nddef{gpersona@\Roman{character}}{% + @\Roman{g\Roman{character}}}{\castfont #1} } \newcommand\speaker[1]{% \if@drverse @@ -273,53 +274,6 @@ \else \item[#1\speaksdel] \fi} -\let \nospace \relax -\let \check@spr \@empty -\def \intsp@ce #1{% - \def \reserved@a {#1}% - \ifx \reserved@a \@empty - \let \check@spr \@empty - \else - \ifx \reserved@a \space - \let \check@spr \@empty - \else - \check@nospace@ #1\nospace\@nil - \fi - \fi -} -\def \check@nospace@ #1#2\nospace#3\@nil {% - \let \check@spr \maybe@sp - \def \reserved@a {\nospace}% - \def \reserved@b {#1}% - \def \reserved@c {#3}% - \ifx \reserved@a \reserved@b - \ifx \reserved@c \@empty - \else - \let \check@spr \@empty - \fi - \else - \ifx \reserved@c \@empty - \else - \let \check@spr \@empty - \fi - \fi -} -\def \maybe@sp {\futurelet\@let@token\maybe@sp@} -\def \maybe@sp@ {% - \@tempswatrue - \expandafter\@tfor\expandafter\reserved@a\expandafter:\expandafter=% - \nospacelist - \do \t@st@sp - \if@tempswa \space \fi -} -\def \t@st@sp {% - \expandafter\let\expandafter\reserved@b\expandafter=\reserved@a\relax - \ifx\reserved@b\@let@token - \@tempswafalse - \@break@tfor - \fi -} -\def \nospacelist {,.;:?!)} \newcommand{\DramPer}{% \@ifundefined{if@openright}{\clearpage}{% \if@openright\cleardoublepage\else\clearpage\fi} @@ -342,7 +296,7 @@ \newcommand{\dodramperlist}{% \ifnum\value{character}>\value{temp} \stepcounter{temp} - \item\@nameuse{persona\roman{temp}} + \item\@nameuse{persona@\Roman{temp}}\strut \dodramperlist \fi } @@ -351,15 +305,15 @@ \newcommand{\@direct}[1]{% \if@drverse \vskip2\normallineskip - \parbox[b]{\dirwidth}{\dirdelimiter{\emph{#1}}}\@centercr + \parbox[b]{\dirwidth}{\dirdelimiter{{\itshape #1}}}\@centercr \else - \dirdelimiter{\emph{#1}}\unskip + \dirdelimiter{{\itshape #1}}\unskip \fi } \newcommand{\@sdirect}[1]{% \if@drverse \vskip2\normallineskip - \parbox[b]{\dirwidth}{\dirdelimiter{\emph{#1}}}\\! + \parbox[b]{\dirwidth}{\dirdelimiter{\itshape #1}}\\! \else \starrederror \fi diff --git a/Master/texmf-dist/tex/latex/egplot/egplot.sty b/Master/texmf-dist/tex/latex/egplot/egplot.sty index 2989278caa1..169d4279745 100644 --- a/Master/texmf-dist/tex/latex/egplot/egplot.sty +++ b/Master/texmf-dist/tex/latex/egplot/egplot.sty @@ -32,7 +32,7 @@ %% Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. %% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -%% \CheckSum{376} +%% \CheckSum{449} %% \CharacterTable %% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z %% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z @@ -50,22 +50,28 @@ %% Right brace \} Tilde \~} %% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -\def\fileversion{v1.01} +\def\fileversion{v1.02a} \NeedsTeXFormat{LaTeX2e} \gdef\filename{egplot.sty}% -\gdef\filedate{1998/06/20}% +\gdef\filedate{1998/07/08}% \gdef\filemaintainer{Axel Probst}% \ProvidesPackage{egplot}[\filedate\space\fileversion\space Encapsulated gnuplot LaTeX Package (\filemaintainer)] -\RequirePackage{graphicx}[1994/12/15] \RequirePackage{verbatim} \RequirePackage{ifthen} \newboolean{egp@german} \setboolean{egp@german}{false} \DeclareOption{german}{% \setboolean{egp@german}{true}} +\newboolean{egp@oldgp} +\setboolean{egp@oldgp}{true} +\DeclareOption{gnuplot35}{% + \setboolean{egp@oldgp}{true}} +\DeclareOption{gnuplot36beta}{% + \setboolean{egp@oldgp}{false}} \DeclareOption*{\PassOptionsToPackage{\CurrentOption}{graphicx}} \ProcessOptions +\RequirePackage{graphicx}[1994/12/15] {\catcode`\#=11\gdef\egpcomment{#}} \def\egpwrite#1{% \if@egpio @@ -75,11 +81,17 @@ \newif\if@egpio \@egpiotrue \newwrite\@outegp -\newcommand{\egpfile}[1][\jobname]{% +\newcounter{egpfilenum} % 1998-03-07 +\setcounter{egpfilenum}{0} % 1998-03-07 +\newcommand{\egpfile}[1][\jobname\theegpfilenum_]{% \def\theegpfile{#1}% + \ifthenelse{\equal{\theegpfile}{\jobname\theegpfilenum_}}{% + \stepcounter{egpfilenum}% + \def\theegpfilename{\jobname\theegpfilenum.gp}}{% + \def\theegpfilename{\theegpfile.gp}} \if@egpio - \immediate\openout\@outegp=\theegpfile.gp\relax - \egpwrite{\egpcomment\space \theegpfile.gp -- % + \immediate\openout\@outegp=\theegpfilename\relax + \egpwrite{\egpcomment\space \theegpfilename -- % do not edit, generated automatically by \jobname.tex^^J} \expandafter\ifx\expandafter*\the\egp@prelude*\else \egpwrite{\the\egp@prelude;}% @@ -116,20 +128,26 @@ \egp@def} \def\egp@{% \egp@start% - \egpwrite{print 'generating picture ---- \theegpfile\theegpfig.eps'^^J% - set output '\theegpfile\theegpfig.eps'^^J} + \ifthenelse{\boolean{egp@oldgp}} + {\egpwrite{\egpcomment\space --- \theegpfile\theegpfig.eps ---}} + {\egpwrite{print 'generating picture ---- \theegpfile\theegpfig.eps'}} + \egpwrite{set output '\theegpfile\theegpfig.eps'} \egp@includegraphics{\theegpfile}{\theegpfig}% \egpcmds} \def\egp@x#1{% - \egp@start% - \egpwrite{print 'generating picture ---- \theegpfile\theegpfig.eps'^^J% - set output '\theegpfile\theegpfig.eps'^^J} - \egp@includegraphicx[#1]{\theegpfile}{\theegpfig}% - \egpcmds} + \egp@start% + \ifthenelse{\boolean{egp@oldgp}} + {\egpwrite{\egpcomment\space --- \theegpfile\theegpfig.eps ---}} + {\egpwrite{print 'generating picture ---- \theegpfile\theegpfig.eps'}} + \egpwrite{set output '\theegpfile\theegpfig.eps'} + \egp@includegraphicx[#1]{\theegpfile}{\theegpfig}% + \egpcmds} \def\egp@def{% \egp@start% - \egpwrite{print 'generating picture ---- \theegpfile\theegpfig.eps'^^J% - set output '\theegpfile\theegpfig.eps'^^J} + \ifthenelse{\boolean{egp@oldgp}} + {\egpwrite{\egpcomment\space --- \theegpfile\theegpfig.eps ---}} + {\egpwrite{print 'generating picture ---- \theegpfile\theegpfig.eps'}} + \egpwrite{set output '\theegpfile\theegpfig.eps'} \egpcmds} \def\egp@start{% \egp@checkfile @@ -141,7 +159,7 @@ \def\egp@checkfile{% \ifx\theegpfile\relax \errhelp={Outside an egpfile environment, I have no clue as to where^^J% - the GNUPlot commands should go. I will use egpdefault.gp^^J% + the gnuplot commands should go. I will use egpdefault.gp^^J% for this graph, but you'd better fix your code!}% \errmessage{I detected a egp environment outside of egpfile}% \egpfile[egpdefault] @@ -152,7 +170,7 @@ {\includegraphics{#1#2.eps}}% {\typeout{% egp: File #1#2.eps\space not found:^^J% - egp: Process #1.gp with GNUPlot and then % + egp: Process \theegpfilename\space with gnuplot and then % reprocess this file.}}} \newcommand{\egp@includegraphicx}[3][scale=1]{% \leavevmode @@ -160,7 +178,7 @@ {\includegraphics[#1]{#2#3.eps}}% {\typeout{% egp: File #2#3.eps\space not found:^^J% - egp: Process #2.gp with GNUPlot and then % + egp: Process \theegpfilename\space with gnuplot and then % reprocess this file.}}} \def\egpcmds{% \begingroup @@ -175,13 +193,15 @@ \def\endegp{% \endegpcmds \ifthenelse{\boolean{egp@german}}{% - \egpwrite{!sed -e '/[0-9]*[.][0-9]*)\ .show/s/[.]/,/' \theegpfile\theegpfig.eps >\theegpfile\theegpfig.tmp^^J} + \egpwrite{!sed -e '/[0-9]*[.][0-9]*)\ .show/s/[.]/,/' % + \theegpfile\theegpfig.eps >\theegpfile\theegpfig.tmp} \egpwrite{!cp \theegpfile\theegpfig.tmp \theegpfile\theegpfig.eps} \egpwrite{!rm -f \theegpfile\theegpfig.tmp}} {} \expandafter\ifx\expandafter*\the\egp@figepilog*\else \egpwrite{\the\egp@figepilog}% - \fi} + \fi + \egpwrite{}} \def\endegpx{\endegp} \def\endegpdef{\endegp} \def\egp@@def#1{% @@ -200,16 +220,21 @@ \egp@checkfile \global\expandafter\advance\csname c@egpcalc\endcsname \@ne \egpc@@def{\egp@@name}% - \egpwrite{print 'calculating value ----- \theegpfile\theegpcalc.val'^^J% - set term table; set output '\theegpfile\theegpcalc.tmp'^^J% + \ifthenelse{\boolean{egp@oldgp}} + {\egpwrite{\egpcomment\space --- \theegpfile\theegpcalc.val ---}} + {\egpwrite{print 'calculating value ----- \theegpfile\theegpcalc.val'}} + \egpwrite{set term table; set output '\theegpfile\theegpcalc.tmp'^^J% set samples 2^^J% set zero 0^^J% - plot [0:0] \egp@expression^^J} + plot [0:0] \egp@expression} \ifthenelse{\boolean{egp@german}}{% - \egpwrite{!tail -3 \theegpfile\theegpcalc.tmp | head -1 | cut -f 2 -d' ' | sed -e 's/[.]/{,}/' >\theegpfile\theegpcalc.val^^J}} - {\egpwrite{!tail -3 \theegpfile\theegpcalc.tmp | head -1 | cut -f 2 -d' ' >\theegpfile\theegpcalc.val^^J}} - \egpwrite{!rm -f \theegpfile\theegpcalc.tmp^^J% - reset^^J}} + \egpwrite{!tail -3 \theegpfile\theegpcalc.tmp | head -1 |% + cut -f 2 -d' ' | sed -e 's/[.]/{,}/' % + >\theegpfile\theegpcalc.val}} + {\egpwrite{!tail -3 \theegpfile\theegpcalc.tmp | head -1 |% + cut -f 2 -d' ' >\theegpfile\theegpcalc.val}} + \egpwrite{!rm -f \theegpfile\theegpcalc.tmp} + \egpwrite{}} \def\egpc@@def#1{% \global\e@namedef{egp@k:f:#1}{\theegpfile}% \global\e@namedef{egp@k:v:#1}{\theegpcalc}} @@ -218,12 +243,12 @@ {\input{#1#2.val}}% {\typeout{% egp: File #1#2.val\space not found:^^J% - egp: Process #1#2.gp with GNUPlot and then % + egp: Process \theegpfilename\space with gnuplot and then % reprocess this file.}}} \newcommand{\egpshowval}[2][*]{% \def\egp@@name{#1}% - \def\egp@expression{#2} - \egp@calc + \def\egp@expression{#2}% + \egp@calc% \egp@includevalue{\theegpfile}{\theegpcalc}} \newcommand{\egpuseval}[1]{% \@ifundefined{egp@k:f:#1}% @@ -231,8 +256,13 @@ {\egp@includevalue{\@nameuse{egp@k:f:#1}}{\@nameuse{egp@k:v:#1}}}} \newcommand{\egpassign}[2]{% \egpwrite{#1=#2}\egpshowval{#1}} +\ifthenelse{\boolean{egp@oldgp}} + {\egpprelude{save "reset.gp"}} + {\relax} \egpfigprelude{set terminal postscript eps monochrome dashed "Helvetica" 17} -\egpfigepilog{reset} +\ifthenelse{\boolean{egp@oldgp}}{% + \egpfigepilog{load "reset.gp"}}{% + \egpfigepilog{reset}} \InputIfFileExists{egplot.cfg} {\typeout{egp: Using configuration file 'egplot.cfg'}} {} diff --git a/Master/texmf-dist/tex/latex/filecontents/filecontents.sty b/Master/texmf-dist/tex/latex/filecontents/filecontents.sty index 01a4b5be38d..8936cc18ebc 100644 --- a/Master/texmf-dist/tex/latex/filecontents/filecontents.sty +++ b/Master/texmf-dist/tex/latex/filecontents/filecontents.sty @@ -8,20 +8,22 @@ %% %% This is a generated file. %% -%% Copyright (C) 2004 Scott Pakin <scott+fc@pakin.org> +%% Copyright (C) 2006 Scott Pakin <scott+fc@pakin.org> %% ------------------------------------------------------- %% -%% This package may be distributed and/or modified under the -%% conditions of the LaTeX Project Public License, either version 1.2 -%% of this license or (at your option) any later version. -%% The latest version of this license is in +%% This package may be distributed and/or modified under the conditions +%% of the LaTeX Project Public License, either version 1.3b of this +%% license or (at your option) any later version. The latest version of +%% this license is in +%% %% http://www.latex-project.org/lppl.txt -%% and version 1.2 or later is part of all distributions of LaTeX -%% version 1999/12/01 or later. +%% +%% and version 1.3b or later is part of all distributions of LaTeX +%% version 2006/01/07 or later. %% \NeedsTeXFormat{LaTeX2e}[1999/12/01] \ProvidesPackage{filecontents} - [2004/08/16 v1.1 Create an external file from within a LaTeX document] + [2006/03/11 v1.1a Create an external file from within a LaTeX document] \begingroup% \catcode`\*=11 % \catcode`\^^M\active% diff --git a/Master/texmf-dist/tex/latex/footbib/footbib.sty b/Master/texmf-dist/tex/latex/footbib/footbib.sty index 8a1210399a9..739f984a06e 100644 --- a/Master/texmf-dist/tex/latex/footbib/footbib.sty +++ b/Master/texmf-dist/tex/latex/footbib/footbib.sty @@ -20,14 +20,16 @@ %% original source files, as listed above, are part of the %% same distribution. (The sources need not necessarily be %% in the same archive or directory.) -%% File: footbib.dtx Copyright (C) 1997 Eric Domenjoud +%% +%% File: footbib.dtx Copyright (C) 1997-2005 Eric Domenjoud %% %% Eric Domenjoud, %% CRIN/CNRS & INRIA Lorraine %% E-mail: Eric.Domenjoud@loria.fr %% -\def\fileversion{2.0.1} -\def\filedate{1999/05/06} + +\def\fileversion{2.0.4} +\def\filedate{2004/06/04} \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{footbib}[\filedate\space v\fileversion\space(E.Domenjoud)] \@makeother\` @@ -56,7 +58,8 @@ \@addtocurcol\else\@reinserts\@addmarginpar\fi}\@latexbug\ifnum \outputpenalty<\z@\if@nobreak\nobreak\else\addpenalty\interlinepenalty \fi\fi\fi\fi} -\@tempa\@doclearpage{\ifvoid\footins\setbox\@tempboxa\vsplit\@cclv to\z@ +\@tempa\@doclearpage{\ifvoid\footins\ifvbox\@kludgeins{\setbox\@tempboxa + \box\@kludgeins}\fi\setbox\@tempboxa\vsplit\@cclv to\z@ \unvbox\@tempboxa\setbox\@tempboxa\box\@cclv\xdef\@deferlist{\@toplist \@botlist\@deferlist}\global\let\@toplist\@empty\global\let\@botlist \@empty\global\@colroom\@colht\ifx\@currlist\@empty\else\@latexerr @@ -70,14 +73,14 @@ \@opcol\clearpage\fi} \@tempa\@makecol{\ifvoid\footins\setbox\@outputbox\box\@cclv\else\setbox \@outputbox\vbox{\boxmaxdepth\@maxdepth\@tempdima\dp\@cclv\unvbox\@cclv - \vskip-\@tempdima\vskip\skip\footins\color@begingroup\normalcolor - \footnoterule\unvbox\footins\color@endgroup}\fi\xdef\@freelist{\@freelist + \vskip\skip\footins\color@begingroup\normalcolor\footnoterule\unvbox + \footins\color@endgroup}\fi\let\@elt\relax\xdef\@freelist{\@freelist \@midlist}\global\let\@midlist\@empty\@combinefloats\ifvbox\@kludgeins \@makespecialcolbox\else\setbox\@outputbox\vbox to\@colht{\@texttop\dimen@ \dp\@outputbox\unvbox\@outputbox\vskip-\dimen@\@textbottom}\fi\global - \maxdepth\@maxdepth}\@tempa\@reinserts{\ifvoid\footins\else\insert\footins - {\unvbox\footins}\fi\ifvbox\@kludgeins\insert\@kludgeins{\unvbox\@kludgeins - }\fi} + \maxdepth\@maxdepth} +\@tempa\@reinserts{\ifvoid\footins\else\insert\footins{\unvbox\footins}\fi + \ifvbox\@kludgeins\insert\@kludgeins{\unvbox\@kludgeins}\fi} \fi \if@tempswa \PackageError{footbib}{the output routine of LaTeX changed} @@ -639,6 +642,9 @@ \ifvoid\footins\else\@tempswafalse\fi \ifvoid\fb@ins\else\@tempswafalse\fi \if@tempswa + \ifvbox\@kludgeins + {\setbox \@tempboxa \box \@kludgeins}% + \fi \setbox\@tempboxa\vsplit\@cclv to\z@ \unvbox\@tempboxa \setbox\@tempboxa\box\@cclv \xdef\@deferlist{\@toplist\@botlist\@deferlist}% @@ -701,6 +707,7 @@ \fi }% \fi + \let\@elt\relax \xdef\@freelist{\@freelist\@midlist}% \global \let \@midlist \@empty \@combinefloats diff --git a/Master/texmf-dist/tex/latex/jurabib/frjbbib.ldf b/Master/texmf-dist/tex/latex/jurabib/frjbbib.ldf index 59d490eb047..b2c0c20324c 100644 --- a/Master/texmf-dist/tex/latex/jurabib/frjbbib.ldf +++ b/Master/texmf-dist/tex/latex/jurabib/frjbbib.ldf @@ -115,7 +115,7 @@ \def\transby{par}% \def\fromgerman{de l'allemand}% \def\fromenglish{de l'anglais}% - \def\fromfrench{du fran^^e7ais}% + \def\fromfrench{du français}% \def\fromdutch{du n\'eerlandais}% \def\fromspanish{de l'espagnol}% \def\fromitalian{de l'italien}% diff --git a/Master/texmf-dist/tex/latex/lcd/lcd.sty b/Master/texmf-dist/tex/latex/lcd/lcd.sty index f80140d1a9c..68d40c6696b 100644 --- a/Master/texmf-dist/tex/latex/lcd/lcd.sty +++ b/Master/texmf-dist/tex/latex/lcd/lcd.sty @@ -133,19 +133,19 @@ \DefineLCDchar{rb}{01000001000010000010001000010001000} \DefineLCDchar{alpha}{00000000000100110101100101001001101} \begingroup -\catcode`\~=11 \catcode`\$=11 \catcode`\^^b5=11 \catcode`\^^b0=11 -\catcode`\^^b7=11 \catcode`\^^e4=11 \catcode`\^^f6=11 \catcode`\^^fc=11 -\catcode`\^^df=11 \catcode`\"=11 \catcode`\#=11 \catcode`\&=11 +\catcode`\~=11 \catcode`\$=11 \catcode`\µ=11 \catcode`\°=11 +\catcode`\·=11 \catcode`\ä=11 \catcode`\ö=11 \catcode`\ü=11 +\catcode`\ß=11 \catcode`\"=11 \catcode`\#=11 \catcode`\&=11 \catcode`\^=11 \catcode`\_=11 \DefineLCDchar{$}{00100011111010001110001011111000100}%$ \DefineLCDchar{#}{01010010101111101010111110101001010} -\DefineLCDchar{^^b5}{00000100011000110001100111110110000} -\DefineLCDchar{^^b0}{11100101001110000000000000000000000} -\DefineLCDchar{^^b7}{00000000000000001100011000000000000} -\DefineLCDchar{^^e4}{01010000000111000001011111000101111} -\DefineLCDchar{^^f6}{01010000000111010001100011000101110} -\DefineLCDchar{^^fc}{01010000001000110001100011001101101} -\DefineLCDchar{^^df}{00000011101000111110100011111010000} +\DefineLCDchar{µ}{00000100011000110001100111110110000} +\DefineLCDchar{°}{11100101001110000000000000000000000} +\DefineLCDchar{·}{00000000000000001100011000000000000} +\DefineLCDchar{ä}{01010000000111000001011111000101111} +\DefineLCDchar{ö}{01010000000111010001100011000101110} +\DefineLCDchar{ü}{01010000001000110001100011001101101} +\DefineLCDchar{ß}{00000011101000111110100011111010000} \DefineLCDchar{"}{01010010100101000000000000000000000} \DefineLCDchar{&}{01100100101010001000101011001011101} \DefineLCDchar{^}{00100010101000100000000000000000000} @@ -205,9 +205,9 @@ \linethickness{0.7\unitlength}} \newcommand*\@LCDend{\end{picture}} \newcommand*\do@LCDspecials{% - \catcode`\~=11 \catcode`\$=11 \catcode`\^^b5=11 \catcode`\^^b0=11 - \catcode`\^^b7=11 \catcode`\^^e4=11 \catcode`\^^f6=11 \catcode`\^^fc=11 - \catcode`\^^df=11 \catcode`\"=11 \catcode`\&=11 \catcode`\#=11 + \catcode`\~=11 \catcode`\$=11 \catcode`\µ=11 \catcode`\°=11 + \catcode`\·=11 \catcode`\ä=11 \catcode`\ö=11 \catcode`\ü=11 + \catcode`\ß=11 \catcode`\"=11 \catcode`\&=11 \catcode`\#=11 \catcode`\^=11 \catcode`\_=11 \catcode`\%=11 \obeyspaces} \newcommand*\calc@LCDsize[2]{\@tempcnta#1\multiply\@tempcnta10\relax \@tempcntb#2\multiply\@tempcntb6\advance\@tempcntb2\relax} diff --git a/Master/texmf-dist/tex/latex/maybemath/maybemath.sty b/Master/texmf-dist/tex/latex/maybemath/maybemath.sty index 0b88a0c127f..0cbe49e8550 100644 --- a/Master/texmf-dist/tex/latex/maybemath/maybemath.sty +++ b/Master/texmf-dist/tex/latex/maybemath/maybemath.sty @@ -1,9 +1,11 @@ -\ProvidesPackage{maybemath}[2004/11/29] +\ProvidesPackage{maybemath}[2005/2/22] +\RequirePackage{amsmath} \RequirePackage{bm} +%\RequirePackage{xspace} -%% A few commands for making math fonts bold or italic -%% according to the context of surrounding text. It is -%% particularly useful for avoiding problems with math +%% A few commands for making math fonts bold, upright, italic +%% or sans-serif according to the context of surrounding text. +%% It is particularly useful for avoiding problems with math %% boldness in section titles causing unwanted boldness %% in e.g. the table of contents. %% @@ -17,35 +19,74 @@ %% Author: Andy Buckley <andy@insectnation.org> +%% Mode names for bold, ext-bold, italic and sans-serif contexts +\def\@boldname{b}% +\def\@boldexname{bx}% +\def\@italname{it}% +\def\@sfname{cmss}% + + %% Use the bold symbol if reqd for math fonts -\DeclareRobustCommand{\maybebm}[1]{% - \def\boldname{b}% - \def\boldexname{bx}% - \ifx\f@series\boldname% - \boldsymbol{#1}% - \else\ifx\f@series\boldexname% - \boldsymbol{#1}% +\DeclareRobustCommand{\maybebm}[1]{\ensuremath{% + \ifx\f@series\@boldname% + {{\bm{#1}}}% + \else\ifx\f@series\@boldexname% + {{\bm{#1}}}% \else% - #1% + {{#1}}% \fi\fi% -} +}} %% Use \mathrm if not in italic context -%% (``backward logic'' for a reason) -\def\italname{it}% -\DeclareRobustCommand{\maybeit}[1]{% - \ifx\f@shape\italname% +\DeclareRobustCommand{\mayberm}[1]{\ensuremath{% + \ifx\f@shape\@italname% {#1}% \else% {\mathrm{#1}}% \fi% -} +}} + +%% Use \mathit if in italic context +\DeclareRobustCommand{\maybeit}[1]{\ensuremath{% + \ifx\f@shape\@italname% + {\mathit{#1}}% + \else% + {#1}% + \fi% +}} + +%% Use \mathrm if not in italic context +%% and \mathit if in italic context +\DeclareRobustCommand{\maybeitrm}[1]{\ensuremath{% + \ifx\f@shape\@italname% + {\mathit{#1}}% + \else% + {\mathrm{#1}}% + \fi% +}} %% Maybe-italic subscript shifting -\DeclareRobustCommand{\maybeitsubscript}[1]{% - \ifx\f@shape\italname% - {\!\!#1}% +\DeclareRobustCommand{\maybeitsubscript}[1]{\ensuremath{% + \ifx\f@shape\@italname% + {\!\mspace{1mu}#1}% + \else% + {#1}% + \fi% +}} + +%% Maybe-sans font change +\DeclareRobustCommand{\maybesf}[1]{\ensuremath{% + \ifx\f@family\@sfname% + {\mathsf{#1}}% \else% {#1}% \fi% -}
\ No newline at end of file +}} + +%% Convenience command for following bold and sans-serif contexts +\DeclareRobustCommand{\maybebmsf}[1]{% + {\maybebm{\maybesf{#1}}}% +} + +%% For reference purposes :-) +%\DeclareRobustCommand{\maybemath}{\texttt{maybemath}\xspace} diff --git a/Master/texmf-dist/tex/latex/pdfscreen/pdfscreen.sty b/Master/texmf-dist/tex/latex/pdfscreen/pdfscreen.sty index 6a16d6e5190..f2c93522cb1 100644 --- a/Master/texmf-dist/tex/latex/pdfscreen/pdfscreen.sty +++ b/Master/texmf-dist/tex/latex/pdfscreen/pdfscreen.sty @@ -990,7 +990,6 @@ \newcounter{slide} \newcounter{slideoverlay} \newenvironment{slide}{% - \clearpage\begingroup\parindent0pt% \stepcounter{slide}% \stepcounter{slideoverlay}% \ifnum\theslideoverlay=11\setcounter{slideoverlay}{1} @@ -998,7 +997,7 @@ \PDFSCR@Warning{Overly counter reset to zero}\fi\fi \ifx\@overlay\@empty\else \PDFSCR@Warning{Overly file is \@overlay.pdf}\fi - %\noindent\begin{minipage}[c][\textheight][c]{\textwidth} + \noindent\begin{minipage}[c][\textheight][c]{\textwidth} \newcommand\realnormalsize{% \@setfontsize\realnormalsize\@xiipt{14.5}% \abovedisplayskip 12\p@ \@plus3\p@ \@minus7\p@ @@ -1053,8 +1052,7 @@ \renewcommand\huge{\@setfontsize\huge{40}{48}} \let\Huge=\huge } -{\endgroup%\end{minipage} -} +{\end{minipage}} % \long\def\buttonbox#1{% \leavevmode @@ -1256,15 +1254,6 @@ \setcounter{secnumdepth}{4} \fi %% - -\def\includesrc#1{\begingroup\pdfcompresslevel=0 - \immediate\pdfobj - stream attr {/Type /SourceFile /SourceName (#1)} - file{#1} - \pdfcatalog{/SourceObject \the\pdflastobj\space 0 R} - \endgroup - \pdfcompresslevel=9} - \endinput %% %% End of file pdfscreen.sty diff --git a/Master/texmf-dist/tex/latex/pst-bar/pst-bar.sty b/Master/texmf-dist/tex/latex/pst-bar/pst-bar.sty index ed014a1471c..09377686fff 100644 --- a/Master/texmf-dist/tex/latex/pst-bar/pst-bar.sty +++ b/Master/texmf-dist/tex/latex/pst-bar/pst-bar.sty @@ -3,4 +3,5 @@ \input{pst-bar.tex} \ProvidesFile{pst-bar.tex} [\filedate\space v\fileversion\space `pst-bar' (ahr)] +\IfFileExists{pst-bar.pro}{\@addtofilelist{pst-bar.pro}}{}% hv 2006-01-20 \endinput diff --git a/Master/texmf-dist/tpm/ccaption.tpm b/Master/texmf-dist/tpm/ccaption.tpm index d97172fdcd4..62fd2b07002 100644 --- a/Master/texmf-dist/tpm/ccaption.tpm +++ b/Master/texmf-dist/tpm/ccaption.tpm @@ -3,7 +3,7 @@ <rdf:Description about="http://texlive.dante.de/texlive/Package/ccaption.zip"> <TPM:Name>ccaption</TPM:Name> <TPM:Type>Package</TPM:Type> - <TPM:Date>2006/01/11 23:51:37</TPM:Date> + <TPM:Date>2005/03/29 19:14:00</TPM:Date> <TPM:Version>3.2</TPM:Version> <TPM:Creator>rahtz</TPM:Creator> <TPM:Title>Continuation headings and legends for floats.</TPM:Title> @@ -19,15 +19,15 @@ provided for specifying your own captioning styles. <TPM:Author>Peter R. Wilson</TPM:Author> <TPM:Size>562373</TPM:Size> <TPM:Build/> - <TPM:RunFiles size="24649"> + <TPM:RunFiles size="24647"> texmf-dist/tex/latex/ccaption/ccaption.sty texmf-dist/tpm/ccaption.tpm </TPM:RunFiles> - <TPM:DocFiles size="390239"> + <TPM:DocFiles size="391839"> texmf-dist/doc/latex/ccaption/README texmf-dist/doc/latex/ccaption/ccaption.pdf </TPM:DocFiles> - <TPM:SourceFiles size="147485"> + <TPM:SourceFiles size="148425"> texmf-dist/source/latex/ccaption/ccaption.dtx texmf-dist/source/latex/ccaption/ccaption.ins </TPM:SourceFiles> diff --git a/Master/texmf-dist/tpm/cdpbundl.tpm b/Master/texmf-dist/tpm/cdpbundl.tpm index fb8fcf22258..d89ab771cb1 100644 --- a/Master/texmf-dist/tpm/cdpbundl.tpm +++ b/Master/texmf-dist/tpm/cdpbundl.tpm @@ -3,7 +3,7 @@ <rdf:Description about="http://texlive.dante.de/texlive/Package/cdpbundl.zip"> <TPM:Name>cdpbundl</TPM:Name> <TPM:Type>Package</TPM:Type> - <TPM:Date>2006/01/11 23:51:41</TPM:Date> + <TPM:Date>2005/12/31 23:00:00</TPM:Date> <TPM:Version></TPM:Version> <TPM:Creator>rahtz</TPM:Creator> <TPM:Title>Business letters in the Italian style</TPM:Title> @@ -24,7 +24,7 @@ contents, etc., independant from the other ones. <TPM:Author>Gustavo Mmezzetti</TPM:Author> <TPM:Size>1011922</TPM:Size> <TPM:Build/> - <TPM:RunFiles size="95092"> + <TPM:RunFiles size="96073"> texmf-dist/tex/latex/cdpbundl/adiseal.sty texmf-dist/tex/latex/cdpbundl/articoletteracdp.cls texmf-dist/tex/latex/cdpbundl/cdpaddon.sty @@ -36,13 +36,13 @@ texmf-dist/tex/latex/cdpbundl/lettcdpadi.cls texmf-dist/tex/latex/cdpbundl/letteracdp.cls texmf-dist/tpm/cdpbundl.tpm </TPM:RunFiles> - <TPM:DocFiles size="692070"> + <TPM:DocFiles size="692929"> texmf-dist/doc/latex/cdpbundl/00readme.txt texmf-dist/doc/latex/cdpbundl/README texmf-dist/doc/latex/cdpbundl/manifest.txt texmf-dist/doc/latex/cdpbundl/overview.pdf </TPM:DocFiles> - <TPM:SourceFiles size="224760"> + <TPM:SourceFiles size="241674"> texmf-dist/source/latex/cdpbundl/cdpbundl.dtx texmf-dist/source/latex/cdpbundl/cdpbundl.ins </TPM:SourceFiles> diff --git a/Master/texmf-dist/tpm/chem-journal.tpm b/Master/texmf-dist/tpm/chem-journal.tpm index 446bc0d271a..22e5ecc2c0f 100644 --- a/Master/texmf-dist/tpm/chem-journal.tpm +++ b/Master/texmf-dist/tpm/chem-journal.tpm @@ -19,7 +19,7 @@ Chemistry Chemical Physics. <TPM:Author>Joerg-Ruediger Hill</TPM:Author> <TPM:Size>72575</TPM:Size> <TPM:Build/> - <TPM:RunFiles size="72575"> + <TPM:RunFiles size="72613"> texmf-dist/bibtex/bst/chem-journal/jcc.bst texmf-dist/bibtex/bst/chem-journal/jpc.bst texmf-dist/bibtex/bst/chem-journal/pccp.bst diff --git a/Master/texmf-dist/tpm/clefval.tpm b/Master/texmf-dist/tpm/clefval.tpm index 670f33aab63..b1cb5e4e600 100644 --- a/Master/texmf-dist/tpm/clefval.tpm +++ b/Master/texmf-dist/tpm/clefval.tpm @@ -3,7 +3,7 @@ <rdf:Description about="http://texlive.dante.de/texlive/Package/clefval.zip"> <TPM:Name>clefval</TPM:Name> <TPM:Type>Package</TPM:Type> - <TPM:Date>2006/01/11 23:51:46</TPM:Date> + <TPM:Date>2004/05/26 16:43:00</TPM:Date> <TPM:Version>1.0</TPM:Version> <TPM:Creator>rahtz</TPM:Creator> <TPM:Title>Key/value support with a hash.</TPM:Title> @@ -20,7 +20,7 @@ protect them. <TPM:Author>Yvon Henel, Josselin Noirel</TPM:Author> <TPM:Size>399187</TPM:Size> <TPM:Build/> - <TPM:RunFiles size="3927"> + <TPM:RunFiles size="3924"> texmf-dist/tex/latex/clefval/clefval.sty texmf-dist/tpm/clefval.tpm </TPM:RunFiles> diff --git a/Master/texmf-dist/tpm/coordsys.tpm b/Master/texmf-dist/tpm/coordsys.tpm index 2ec412863c6..01abf9188a9 100644 --- a/Master/texmf-dist/tpm/coordsys.tpm +++ b/Master/texmf-dist/tpm/coordsys.tpm @@ -3,7 +3,7 @@ <rdf:Description about="http://texlive.dante.de/texlive/Package/coordsys.zip"> <TPM:Name>coordsys</TPM:Name> <TPM:Type>Package</TPM:Type> - <TPM:Date>2006/01/11 23:51:58</TPM:Date> + <TPM:Date>2006/11/09 11:38:02</TPM:Date> <TPM:Version>1.0</TPM:Version> <TPM:Creator>rahtz</TPM:Creator> <TPM:Title>Draw cartesian coordinate systems.</TPM:Title> @@ -16,17 +16,17 @@ environment. <TPM:Author></TPM:Author> <TPM:Size>489740</TPM:Size> <TPM:Build/> - <TPM:RunFiles size="33379"> + <TPM:RunFiles size="33382"> texmf-dist/tex/latex/coordsys/coordsys.sty texmf-dist/tex/latex/coordsys/logsys.sty texmf-dist/tpm/coordsys.tpm </TPM:RunFiles> - <TPM:DocFiles size="344207"> + <TPM:DocFiles size="346702"> texmf-dist/doc/latex/coordsys/README texmf-dist/doc/latex/coordsys/coordsys.pdf texmf-dist/doc/latex/coordsys/putfile. </TPM:DocFiles> - <TPM:SourceFiles size="112154"> + <TPM:SourceFiles size="115166"> texmf-dist/source/latex/coordsys/coordsys.dtx texmf-dist/source/latex/coordsys/coordsys.ins </TPM:SourceFiles> diff --git a/Master/texmf-dist/tpm/dingbat.tpm b/Master/texmf-dist/tpm/dingbat.tpm index e30ff4fea4b..0784b66579c 100644 --- a/Master/texmf-dist/tpm/dingbat.tpm +++ b/Master/texmf-dist/tpm/dingbat.tpm @@ -3,7 +3,7 @@ <rdf:Description about="http://texlive.dante.de/texlive/Package/dingbat.zip"> <TPM:Name>dingbat</TPM:Name> <TPM:Type>Package</TPM:Type> - <TPM:Date>2006/01/11 23:52:19</TPM:Date> + <TPM:Date>2001/04/27 18:30:00</TPM:Date> <TPM:Version>1.0</TPM:Version> <TPM:Creator>rahtz</TPM:Creator> <TPM:Title>A dingbat symbol font.</TPM:Title> @@ -15,7 +15,7 @@ for use in plain TeX and in LaTeX. <TPM:Author></TPM:Author> <TPM:Size>186229</TPM:Size> <TPM:Build/> - <TPM:RunFiles size="40453"> + <TPM:RunFiles size="40077"> texmf-dist/fonts/source/public/dingbat/ark10.mf texmf-dist/fonts/source/public/dingbat/dingbat.mf texmf-dist/fonts/tfm/public/dingbat/ark10.tfm diff --git a/Master/texmf-dist/tpm/dpfloat.tpm b/Master/texmf-dist/tpm/dpfloat.tpm index 29bdf730acf..3c109e666d3 100644 --- a/Master/texmf-dist/tpm/dpfloat.tpm +++ b/Master/texmf-dist/tpm/dpfloat.tpm @@ -3,7 +3,7 @@ <rdf:Description about="http://texlive.dante.de/texlive/Package/dpfloat.zip"> <TPM:Name>dpfloat</TPM:Name> <TPM:Type>Package</TPM:Type> - <TPM:Date>2006/01/09 00:44:40</TPM:Date> + <TPM:Date>2001/04/27 12:26:00</TPM:Date> <TPM:Version></TPM:Version> <TPM:Creator>rahtz</TPM:Creator> <TPM:Title>Support for double-page floats.</TPM:Title> @@ -18,7 +18,7 @@ floats will appear side-by-side in a two-sided document. <TPM:Author>Jim Fox</TPM:Author> <TPM:Size>4859</TPM:Size> <TPM:Build/> - <TPM:RunFiles size="3555"> + <TPM:RunFiles size="4556"> texmf-dist/tex/latex/dpfloat/dpfloat.sty texmf-dist/tpm/dpfloat.tpm </TPM:RunFiles> diff --git a/Master/texmf-dist/tpm/dramatist.tpm b/Master/texmf-dist/tpm/dramatist.tpm index 83f9dd2208e..f476a48e896 100644 --- a/Master/texmf-dist/tpm/dramatist.tpm +++ b/Master/texmf-dist/tpm/dramatist.tpm @@ -3,7 +3,7 @@ <rdf:Description about="http://texlive.dante.de/texlive/Package/dramatist.zip"> <TPM:Name>dramatist</TPM:Name> <TPM:Type>Package</TPM:Type> - <TPM:Date>2006/01/11 23:52:27</TPM:Date> + <TPM:Date>2006/11/09 11:42:32</TPM:Date> <TPM:Version>0.0</TPM:Version> <TPM:Creator>rahtz</TPM:Creator> <TPM:Title>Typeset dramas, both in verse and in prose.</TPM:Title> @@ -19,18 +19,18 @@ list. <TPM:Author>Massimiliano Dominici</TPM:Author> <TPM:Size>519444</TPM:Size> <TPM:Build/> - <TPM:RunFiles size="15811"> + <TPM:RunFiles size="14793"> texmf-dist/tex/latex/dramatist/dramatist.sty texmf-dist/tpm/dramatist.tpm </TPM:RunFiles> - <TPM:DocFiles size="377142"> + <TPM:DocFiles size="331237"> texmf-dist/doc/latex/dramatist/README texmf-dist/doc/latex/dramatist/dramatist.pdf texmf-dist/doc/latex/dramatist/marlowe-poemscol.tex texmf-dist/doc/latex/dramatist/marlowe-verse.tex texmf-dist/doc/latex/dramatist/schiller.tex </TPM:DocFiles> - <TPM:SourceFiles size="126491"> + <TPM:SourceFiles size="125750"> texmf-dist/source/latex/dramatist/dramatist.dtx texmf-dist/source/latex/dramatist/dramatist.ins </TPM:SourceFiles> diff --git a/Master/texmf-dist/tpm/egplot.tpm b/Master/texmf-dist/tpm/egplot.tpm index 7ea1e7c941c..85df3c8f735 100644 --- a/Master/texmf-dist/tpm/egplot.tpm +++ b/Master/texmf-dist/tpm/egplot.tpm @@ -3,7 +3,7 @@ <rdf:Description about="http://texlive.dante.de/texlive/Package/egplot.zip"> <TPM:Name>egplot</TPM:Name> <TPM:Type>Package</TPM:Type> - <TPM:Date>2006/01/11 23:52:37</TPM:Date> + <TPM:Date>2006/11/09 11:45:25</TPM:Date> <TPM:Version></TPM:Version> <TPM:Creator>rahtz</TPM:Creator> <TPM:Title>No caption.</TPM:Title> @@ -16,15 +16,15 @@ generated with gnuplot. <TPM:Author>Axel Probst</TPM:Author> <TPM:Size>292147</TPM:Size> <TPM:Build/> - <TPM:RunFiles size="10288"> + <TPM:RunFiles size="11465"> texmf-dist/tex/latex/egplot/egplot.sty texmf-dist/tpm/egplot.tpm </TPM:RunFiles> - <TPM:DocFiles size="237516"> + <TPM:DocFiles size="151649"> texmf-dist/doc/latex/egplot/egplot.README texmf-dist/doc/latex/egplot/manual.ps.gz </TPM:DocFiles> - <TPM:SourceFiles size="44343"> + <TPM:SourceFiles size="48482"> texmf-dist/source/latex/egplot/egplot.drv texmf-dist/source/latex/egplot/egplot.dtx texmf-dist/source/latex/egplot/egplot.ins diff --git a/Master/texmf-dist/tpm/filecontents.tpm b/Master/texmf-dist/tpm/filecontents.tpm index 2ab0aaebc42..7b45842deae 100644 --- a/Master/texmf-dist/tpm/filecontents.tpm +++ b/Master/texmf-dist/tpm/filecontents.tpm @@ -3,7 +3,7 @@ <rdf:Description about="http://texlive.dante.de/texlive/Package/filecontents.zip"> <TPM:Name>filecontents</TPM:Name> <TPM:Type>Package</TPM:Type> - <TPM:Date>2006/01/11 23:53:18</TPM:Date> + <TPM:Date>2006/03/12 02:47:00</TPM:Date> <TPM:Version></TPM:Version> <TPM:Creator>rahtz</TPM:Creator> <TPM:Title> @@ -24,15 +24,15 @@ filecontents/filecontents* anywhere. <TPM:Author>Scott Pakin</TPM:Author> <TPM:Size>146581</TPM:Size> <TPM:Build/> - <TPM:RunFiles size="4662"> + <TPM:RunFiles size="4674"> texmf-dist/tex/latex/filecontents/filecontents.sty texmf-dist/tpm/filecontents.tpm </TPM:RunFiles> - <TPM:DocFiles size="126890"> + <TPM:DocFiles size="183118"> texmf-dist/doc/latex/filecontents/README texmf-dist/doc/latex/filecontents/filecontents.pdf </TPM:DocFiles> - <TPM:SourceFiles size="15029"> + <TPM:SourceFiles size="15490"> texmf-dist/source/latex/filecontents/filecontents.dtx texmf-dist/source/latex/filecontents/filecontents.ins </TPM:SourceFiles> diff --git a/Master/texmf-dist/tpm/footbib.tpm b/Master/texmf-dist/tpm/footbib.tpm index ab162d974fc..7e84e724eac 100644 --- a/Master/texmf-dist/tpm/footbib.tpm +++ b/Master/texmf-dist/tpm/footbib.tpm @@ -3,7 +3,7 @@ <rdf:Description about="http://texlive.dante.de/texlive/Package/footbib.zip"> <TPM:Name>footbib</TPM:Name> <TPM:Type>Package</TPM:Type> - <TPM:Date>2006/01/21 00:25:32</TPM:Date> + <TPM:Date>2005/05/19 07:50:46</TPM:Date> <TPM:Version>2.0.3</TPM:Version> <TPM:Creator>rahtz</TPM:Creator> <TPM:Title>Bibliographic references as footnotes.</TPM:Title> @@ -23,12 +23,12 @@ Any standard bibliography style may be used. <TPM:Author>Eric Domenjoud</TPM:Author> <TPM:Size>214223</TPM:Size> <TPM:Build/> - <TPM:RunFiles size="26266"> + <TPM:RunFiles size="26423"> texmf-dist/tex/latex/footbib/footbib.sty texmf-dist/tpm/footbib.tpm </TPM:RunFiles> - <TPM:DocFiles size="98664">texmf-dist/doc/latex/footbib/footbib.dvi</TPM:DocFiles> - <TPM:SourceFiles size="89293"> + <TPM:DocFiles size="261220">texmf-dist/doc/latex/footbib/footbib.pdf</TPM:DocFiles> + <TPM:SourceFiles size="90858"> texmf-dist/source/latex/footbib/footbib.dtx texmf-dist/source/latex/footbib/footbib.ins </TPM:SourceFiles> diff --git a/Master/texmf-dist/tpm/jurabib.tpm b/Master/texmf-dist/tpm/jurabib.tpm index fbbb6d722c4..3eeb3c70766 100644 --- a/Master/texmf-dist/tpm/jurabib.tpm +++ b/Master/texmf-dist/tpm/jurabib.tpm @@ -3,7 +3,7 @@ <rdf:Description about="http://texlive.dante.de/texlive/Package/jurabib.zip"> <TPM:Name>jurabib</TPM:Name> <TPM:Type>Package</TPM:Type> - <TPM:Date>2006/01/21 00:25:32</TPM:Date> + <TPM:Date>2006/11/09 12:25:19</TPM:Date> <TPM:Version>0.52p</TPM:Version> <TPM:Creator>rahtz</TPM:Creator> <TPM:Title> @@ -29,7 +29,7 @@ bibliography entries is possible by the special language field. <TPM:Author>Jens Berger</TPM:Author> <TPM:Size>1515565</TPM:Size> <TPM:Build/> - <TPM:RunFiles size="541038"> + <TPM:RunFiles size="541032"> texmf-dist/bibtex/bib/jurabib/book.bib texmf-dist/bibtex/bib/jurabib/comment.bib texmf-dist/bibtex/bib/jurabib/jbtest.bib @@ -53,12 +53,13 @@ texmf-dist/tex/latex/jurabib/ptjbbib.ldf texmf-dist/tex/latex/jurabib/spjbbib.ldf texmf-dist/tpm/jurabib.tpm </TPM:RunFiles> - <TPM:DocFiles size="524148"> + <TPM:DocFiles size="586421"> texmf-dist/doc/latex/jurabib/changes.txt texmf-dist/doc/latex/jurabib/docs/english/jbendoc.dvi texmf-dist/doc/latex/jurabib/docs/english/jbendoc.tex texmf-dist/doc/latex/jurabib/docs/german/jbgerdoc.dvi texmf-dist/doc/latex/jurabib/docs/german/jbgerdoc.tex +texmf-dist/doc/latex/jurabib/jbtest.pdf texmf-dist/doc/latex/jurabib/jbtest.tex texmf-dist/doc/latex/jurabib/jbtest.url texmf-dist/doc/latex/jurabib/jbtestbt.tex diff --git a/Master/texmf-dist/tpm/lcd.tpm b/Master/texmf-dist/tpm/lcd.tpm index 0fd8cf0b421..2c73d37d793 100644 --- a/Master/texmf-dist/tpm/lcd.tpm +++ b/Master/texmf-dist/tpm/lcd.tpm @@ -3,7 +3,7 @@ <rdf:Description about="http://texlive.dante.de/texlive/Package/lcd.zip"> <TPM:Name>lcd</TPM:Name> <TPM:Type>Package</TPM:Type> - <TPM:Date>2006/01/11 23:03:17</TPM:Date> + <TPM:Date>2006/11/09 11:48:55</TPM:Date> <TPM:Version></TPM:Version> <TPM:Creator>rahtz</TPM:Creator> <TPM:Title>Alphanumerical LCD-style displays.</TPM:Title> @@ -15,7 +15,7 @@ Assumes 8-bit input in its internal verbatim-style environment. <TPM:Author></TPM:Author> <TPM:Size>131572</TPM:Size> <TPM:Build/> - <TPM:RunFiles size="12898"> + <TPM:RunFiles size="12835"> texmf-dist/tex/latex/lcd/lcd.sty texmf-dist/tpm/lcd.tpm </TPM:RunFiles> diff --git a/Master/texmf-dist/tpm/maybemath.tpm b/Master/texmf-dist/tpm/maybemath.tpm index a74af6caa61..2fd71477396 100644 --- a/Master/texmf-dist/tpm/maybemath.tpm +++ b/Master/texmf-dist/tpm/maybemath.tpm @@ -3,7 +3,7 @@ <rdf:Description about="http://texlive.dante.de/texlive/Package/maybemath.zip"> <TPM:Name>maybemath</TPM:Name> <TPM:Type>Package</TPM:Type> - <TPM:Date>2006/01/09 00:44:40</TPM:Date> + <TPM:Date>2005/01/25 17:16:00</TPM:Date> <TPM:Version>1.0</TPM:Version> <TPM:Creator>rahtz</TPM:Creator> <TPM:Title> @@ -28,11 +28,11 @@ if the expression is italicised. <TPM:Author>unknown</TPM:Author> <TPM:Size>79829</TPM:Size> <TPM:Build/> - <TPM:RunFiles size="3037"> + <TPM:RunFiles size="3951"> texmf-dist/tex/latex/maybemath/maybemath.sty texmf-dist/tpm/maybemath.tpm </TPM:RunFiles> - <TPM:DocFiles size="76792"> + <TPM:DocFiles size="77282"> texmf-dist/doc/latex/maybemath/README texmf-dist/doc/latex/maybemath/maybemath.pdf texmf-dist/doc/latex/maybemath/maybemath.tex diff --git a/Master/texmf-dist/tpm/metaobj.tpm b/Master/texmf-dist/tpm/metaobj.tpm index a4fdd760f5f..b589acfc101 100644 --- a/Master/texmf-dist/tpm/metaobj.tpm +++ b/Master/texmf-dist/tpm/metaobj.tpm @@ -3,7 +3,7 @@ <rdf:Description about="http://texlive.dante.de/texlive/Package/metaobj.zip"> <TPM:Name>metaobj</TPM:Name> <TPM:Type>Package</TPM:Type> - <TPM:Date>2006/01/09 00:49:07</TPM:Date> + <TPM:Date>2003/08/02 02:05:44</TPM:Date> <TPM:Version></TPM:Version> <TPM:Creator>rahtz</TPM:Creator> <TPM:Title> diff --git a/Master/texmf-dist/tpm/metaplot.tpm b/Master/texmf-dist/tpm/metaplot.tpm index e8c62b320e0..d81db91a634 100644 --- a/Master/texmf-dist/tpm/metaplot.tpm +++ b/Master/texmf-dist/tpm/metaplot.tpm @@ -3,7 +3,7 @@ <rdf:Description about="http://texlive.dante.de/texlive/Package/metaplot.zip"> <TPM:Name>metaplot</TPM:Name> <TPM:Type>Package</TPM:Type> - <TPM:Date>2006/01/09 00:49:07</TPM:Date> + <TPM:Date>2005/03/13 00:42:00</TPM:Date> <TPM:Version>1.0</TPM:Version> <TPM:Creator>rahtz</TPM:Creator> <TPM:Title>Plot-manipulation macros for use in Metapost.</TPM:Title> @@ -27,12 +27,12 @@ suggestions would be most welcome! <TPM:Author>unknown</TPM:Author> <TPM:Size>565467</TPM:Size> <TPM:Build/> - <TPM:RunFiles size="16715"> + <TPM:RunFiles size="17542"> texmf-dist/metapost/metaplot/axes.mp texmf-dist/metapost/metaplot/metaplot.mp texmf-dist/tpm/metaplot.tpm </TPM:RunFiles> - <TPM:DocFiles size="548752"> + <TPM:DocFiles size="549634"> texmf-dist/doc/latex/metaplot/README texmf-dist/doc/latex/metaplot/examples/cap1.cc texmf-dist/doc/latex/metaplot/examples/cap1.mp diff --git a/Master/texmf-dist/tpm/mwcls.tpm b/Master/texmf-dist/tpm/mwcls.tpm index 91a891f219a..0e46a967199 100644 --- a/Master/texmf-dist/tpm/mwcls.tpm +++ b/Master/texmf-dist/tpm/mwcls.tpm @@ -3,7 +3,7 @@ <rdf:Description about="http://texlive.dante.de/texlive/Package/mwcls.zip"> <TPM:Name>mwcls</TPM:Name> <TPM:Type>Package</TPM:Type> - <TPM:Date>2006/01/11 23:55:23</TPM:Date> + <TPM:Date>2003/05/09 19:35:32</TPM:Date> <TPM:Version>0.65</TPM:Version> <TPM:Creator>rahtz</TPM:Creator> <TPM:Title>Polish-oriented document classes.</TPM:Title> diff --git a/Master/texmf-dist/tpm/pdfscreen.tpm b/Master/texmf-dist/tpm/pdfscreen.tpm index 30b3b8058f2..5cf95801237 100644 --- a/Master/texmf-dist/tpm/pdfscreen.tpm +++ b/Master/texmf-dist/tpm/pdfscreen.tpm @@ -3,7 +3,7 @@ <rdf:Description about="http://texlive.dante.de/texlive/Package/pdfscreen.zip"> <TPM:Name>pdfscreen</TPM:Name> <TPM:Type>Package</TPM:Type> - <TPM:Date>2006/01/09 00:44:40</TPM:Date> + <TPM:Date>2000/07/10 12:03:27</TPM:Date> <TPM:Version>1.5</TPM:Version> <TPM:Creator>rahtz</TPM:Creator> <TPM:Title>Support screen-based document design.</TPM:Title> @@ -19,7 +19,7 @@ document without any extra effort. <TPM:Author>C. V. Radhakrishnan</TPM:Author> <TPM:Size>1065600</TPM:Size> <TPM:Build/> - <TPM:RunFiles size="208367"> + <TPM:RunFiles size="208085"> texmf-dist/tex/latex/pdfscreen/but.pdf texmf-dist/tex/latex/pdfscreen/button.pdf texmf-dist/tex/latex/pdfscreen/left.pdf diff --git a/Master/texmf-dist/tpm/pst-bar.tpm b/Master/texmf-dist/tpm/pst-bar.tpm index 1dc65a71a8c..f481f6d3e86 100644 --- a/Master/texmf-dist/tpm/pst-bar.tpm +++ b/Master/texmf-dist/tpm/pst-bar.tpm @@ -3,7 +3,7 @@ <rdf:Description about="http://texlive.dante.de/texlive/Package/pst-bar.zip"> <TPM:Name>pst-bar</TPM:Name> <TPM:Type>Package</TPM:Type> - <TPM:Date>2006/01/09 00:44:09</TPM:Date> + <TPM:Date>2004/09/15 14:58:00</TPM:Date> <TPM:Version>1.0</TPM:Version> <TPM:Creator>rahtz</TPM:Creator> <TPM:Title>Produces bar charts using pstricks.</TPM:Title> @@ -20,13 +20,13 @@ that beta releases typically carry. <TPM:Author>unknown</TPM:Author> <TPM:Size>126659</TPM:Size> <TPM:Build/> - <TPM:RunFiles size="14855"> + <TPM:RunFiles size="15379"> texmf-dist/dvips/pst-bar/pst-bar.pro texmf-dist/tex/generic/pst-bar/pst-bar.tex texmf-dist/tex/latex/pst-bar/pst-bar.sty texmf-dist/tpm/pst-bar.tpm </TPM:RunFiles> - <TPM:DocFiles size="111804"> + <TPM:DocFiles size="111823"> texmf-dist/doc/generic/pst-bar/LICENSE texmf-dist/doc/generic/pst-bar/README texmf-dist/doc/generic/pst-bar/pst-bar-doc.pdf diff --git a/Master/texmf-dist/tpm/rsc.tpm b/Master/texmf-dist/tpm/rsc.tpm index cf5f4722d29..f9f74e91bcf 100644 --- a/Master/texmf-dist/tpm/rsc.tpm +++ b/Master/texmf-dist/tpm/rsc.tpm @@ -11,7 +11,7 @@ <TPM:Author></TPM:Author> <TPM:Size>20797</TPM:Size> <TPM:Build/> - <TPM:RunFiles size="20797"> + <TPM:RunFiles size="28105"> texmf-dist/bibtex/bst/rsc/rsc.bst texmf-dist/tpm/rsc.tpm </TPM:RunFiles> diff --git a/Master/texmf/lists/footbib b/Master/texmf/lists/footbib index 9809b2c04b1..5e62476964d 100644 --- a/Master/texmf/lists/footbib +++ b/Master/texmf/lists/footbib @@ -1,4 +1,4 @@ -texmf-dist/doc/latex/footbib/footbib.dvi +texmf-dist/doc/latex/footbib/footbib.pdf texmf-dist/source/latex/footbib/footbib.dtx texmf-dist/source/latex/footbib/footbib.ins texmf-dist/tex/latex/footbib/footbib.sty diff --git a/Master/texmf/lists/jurabib b/Master/texmf/lists/jurabib index 2f216816413..0d6c5d4b563 100644 --- a/Master/texmf/lists/jurabib +++ b/Master/texmf/lists/jurabib @@ -3,6 +3,7 @@ texmf-dist/doc/latex/jurabib/docs/english/jbendoc.dvi texmf-dist/doc/latex/jurabib/docs/english/jbendoc.tex texmf-dist/doc/latex/jurabib/docs/german/jbgerdoc.dvi texmf-dist/doc/latex/jurabib/docs/german/jbgerdoc.tex +texmf-dist/doc/latex/jurabib/jbtest.pdf texmf-dist/doc/latex/jurabib/jbtest.tex texmf-dist/doc/latex/jurabib/jbtest.url texmf-dist/doc/latex/jurabib/jbtestbt.tex |