./PaxHeaders.4632/cb2bib-1.9.90000644000000000000000000000013213344506453012417 xustar0030 mtime=1536331051.317585128 30 atime=1536331050.985588102 30 ctime=1536331051.317585128 cb2bib-1.9.9/0000755000175000001440000000000013344506453013733 5ustar00constansusers00000000000000cb2bib-1.9.9/PaxHeaders.4632/cb2bib.pro0000644000000000000000000000007413344506254014210 xustar0030 atime=1536331050.985588102 30 ctime=1536331050.573591795 cb2bib-1.9.9/cb2bib.pro0000644000175000001440000000012313344506254015573 0ustar00constansusers00000000000000SUBDIRS += src/c2b/c2blib.pro src win32 { SUBDIRS += src/win } TEMPLATE = subdirs cb2bib-1.9.9/PaxHeaders.4632/configure0000644000000000000000000000007313344506254014246 xustar0030 atime=1536331050.985588102 29 ctime=1536331050.64559115 cb2bib-1.9.9/configure0000755000175000001440000002632013344506254015644 0ustar00constansusers00000000000000#!/bin/sh #------------------------------------------------------------------------------ # cb2Bib configuration script: # - Checks for QTDIR # -- If set, checks for qmake at QTDIR # -- If not set, checks for qmake at PATH and other usual locations # - Manages Installation directory data # - Runs qmake # # Modifications for the cb2Bib Gentoo build descriptions # by Hugo Mildenberger and Andreas K. Huettel # Copyright 2009 Hugo Mildenberger and Andreas K. Huettel # - December 2009: do not use temporary files, fix sed regular # expression, set both enable/disable for options, and add # call to qmake option. # # Modifications for the cb2Bib Debian distribution package # by Filippo Rusconi # Copyright 2009 Filippo Rusconi # - June 2009: replace ' ' with ':' along with use of IFS=: as # word-splitting delimiter for PATH-related tasks (Thanks Lionel # Mamane). # - September 2009: protect all shell variables against spaces. # #------------------------------------------------------------------------------ # ( originally based upon 'shell script to configure doxygen', # http://www.stack.nl/~dimitri/doxygen/ # Copyright (C) 1997-2001 by Dimitri van Heesch ) # # Permission to use, copy, modify, and distribute this software and its # documentation under the terms of the GNU General Public License is hereby # granted. No representations are made about the suitability of this software # for any purpose. It is provided "as is" without express or implied warranty # See the GNU General Public License for more details #------------------------------------------------------------------------------ platform=`uname -s` echo echo "Configuration script for cb2Bib (Unix/Linux/MacOSX)" echo f_prefix=/usr f_bindir=/usr/bin f_datadir=/usr/share/cb2bib f_desktopdatadir=/usr/share/applications f_icondir=/usr/share/pixmaps f_qmake=NO f_make=NO f_enable_cbpoll=NO f_disable_lzo=NO f_disable_qmake_call=NO while test -n "$1"; do case $1 in --prefix | -prefix) shift; f_prefix="$1" ; f_bindir="$1/bin" ; f_datadir="$1/share/cb2bib" ; f_desktopdatadir="$1/share/applications" ; f_icondir="$1/share/pixmaps" ;; --bindir | -bindir) shift; unset f_prefix ; f_bindir="$1" ;; --datadir | -datadir) shift; unset f_prefix ; f_datadir="$1/cb2bib" ;; --desktopdatadir | -desktopdatadir) shift; unset f_prefix ; f_desktopdatadir="$1" ;; --icondir | -icondir) shift; unset f_prefix ; f_icondir="$1" ;; --qmakepath | -qmakepath) shift; unset f_qmake ; f_qmake="$1" ;; -h | --help | -help) f_help=y ;; --enable-cbpoll | -enable-cbpoll) f_enable_cbpoll=y ;; --disable-cbpoll | -disable-cbpoll) f_enable_cbpoll=NO ;; --enable-lzo | -enable-lzo) f_disable_lzo=NO ;; --disable-lzo | -disable-lzo) f_disable_lzo=y ;; --enable-qmake-call | -enable-qmake-call) f_disable_qmake_call=NO ;; --disable-qmake-call | -disable-qmake-call) f_disable_qmake_call=y ;; *) echo "-----------------------------------------------------------------------" echo Error: Unknown argument $1 echo "-----------------------------------------------------------------------" echo "" f_help=y f_error=y ;; esac shift done if test "$f_help" = y; then cat </dev/null | grep GNU`"; then make_prog="$j/$i" break 2 fi fi done done unset IFS f_make="$make_prog" fi if test "$f_make" != NO; then echo "using $f_make." else echo "not found." fi #- Setting dirs and start qmake ----------------------------------------------- echo sed -i -e 's%^.*cb2bibdata\.path .*$%cb2bibdata.path = '$f_datadir'%g' \ -e 's%^.*cb2bibdoc\.path .*$%cb2bibdoc.path = '$f_datadir'/doc%g' \ -e 's%^.*target\.path .*$%target.path = '$f_bindir'%g' \ -e 's%^.*script\.path .*$%script.path = '$f_bindir'%g' \ -e 's%^.*desktop\.path .*$%desktop.path = '$f_desktopdatadir'%g' \ -e 's%^.*icons\.path .*$%icons.path = '$f_icondir'%g' src/src.pro sed -i 's%^const QString C2B_DATA_DIR.*$%const QString C2B_DATA_DIR("'$f_datadir'/");%g' src/c2b/cb2bib_parameters.h f_configs= if test "$f_enable_cbpoll" = y; then echo "Setting clipboardPoll enabled" f_configs="$f_configs -config enable_cbpoll" fi if test "$f_disable_lzo" = y; then echo "Setting lzo disabled" f_configs="$f_configs -config disable_lzo" fi if test "$f_disable_qmake_call" = NO; then echo "Running $f_qmake $f_configs -o Makefile" "$f_qmake" $f_configs -o Makefile else echo "Writing qmake flags to file 'qmake-additional-args'" echo $f_configs > qmake-additional-args fi echo " " if test "$f_make" = NO; then echo "-----------------------------------------------------------------------" echo "Configuration ended. 'make' not found." echo "Build toolchain might not be completed." echo "-----------------------------------------------------------------------" exit 1 else if test "$f_disable_lzo" = NO; then echo "-----------------------------------------------------------------------" echo "- NOTE: cb2Bib requires lzo library. If it were unavailable in your" echo " platform, reconfigure using --disable-lzo." fi echo "-----------------------------------------------------------------------" echo "- NOTE: Type 'make distclean' or, preferably, untar again to set other" echo " configure flags." echo "-----------------------------------------------------------------------" echo " " echo "-----------------------------------------------------------------------" if test "$f_disable_qmake_call" = NO; then echo "Configuration ended. Type 'make' and 'make install'." else echo "Configuration ended. Run qmake, and type 'make' and 'make install'." fi echo "-----------------------------------------------------------------------" echo " " fi cb2bib-1.9.9/PaxHeaders.4632/CHANGELOG0000644000000000000000000000013213344506452013550 xustar0030 mtime=1536331050.601591544 30 atime=1536331050.985588102 30 ctime=1536331050.601591544 cb2bib-1.9.9/CHANGELOG0000644000175000001440000011214213344506452015145 0ustar00constansusers000000000000002018-09-07 RELEASE OF VERSION 1.9.9 2018-09-06 Fixed gcc compiler warning (Thanks to F. Rusconi) 2018-09-05 Updated abbreviations.txt file 2018-09-05 Added alternate abbreviation and full journal processing 2018-08-27 Set to remove conflicting braces on extern author strings 2018-08-27 Updated netqinf.txt file, set reliable queries only 2018-08-27 Added merge metadata actions to netqinf syntax 2018-08-27 Added parsers for arXiv and Crossref 2018-08-23 Fixed break of query chain on single network error 2018-08-07 RELEASE OF VERSION 1.9.8 2018-08-07 Updated bookmark and abbreviation files 2018-08-05 Ported deprecated jsMath newcommand macros to MathJax 2018-08-05 Fixed sub and sup scripts conflicting with MathJax 2018-07-27 Added PDF user manual 2018-07-27 Updated documentation and improved navigation 2017-06-28 RELEASE OF VERSION 1.9.7 2017-06-27 Set MathJax default local for increased security (Thanks to F. Rusconi) 2017-06-27 Fixed broken Cross Ref link 2017-01-14 Added missing Qt dll to Windows installer (Thanks to M. Ivanovski) 2017-01-07 RELEASE OF VERSION 1.9.6 2017-01-07 Fixed regression when invoking internal editor for Annote 2017-01-07 Fixed MacOSX build (Thanks to G. V. Wyngaerd) 2016-07-16 RELEASE OF VERSION 1.9.5 2016-07-16 Fixed main panel tab order regression 2016-05-20 RELEASE OF VERSION 1.9.4 2016-05-18 Set internal editor for Annote 2016-05-18 Updated jsMath interface to MathJax 2016-05-18 Deprecated clipboard poll, removed Qt5X11Extras dependency 2016-05-18 Removed unused What's This button from dialogues 2016-05-15 Set QRegularExpression/PCRE to in-document searches 2016-05-15 Fixed c2bReferenceList QUrl encoding 2016-05-15 Fixed output in c2bconsole 2016-05-15 Updated build scripts for Windows 2016-05-14 Included upcoming QtWebEngine together with QtWebKit 2016-05-13 RELEASE OF VERSION 1.9.3 2016-05-12 Updated and cleaned building scripts 2015-08-10 RELEASE OF VERSION 1.9.2 2015-08-09 Code cleanup through cppcheck 2015-08-09 Removed old modified QRegExp 2015-08-08 Updated indexing 2015-07-24 RELEASE OF VERSION 1.9.1 2015-07-24 Set QRegularExpression/PCRE for full search indexing 2015-07-20 Fixed Qt 5.5.0 compilation 2015-07-18 RELEASE OF VERSION 1.9.0 2015-07-18 Ported to Qt5 2014-12-20 RELEASE OF VERSION 1.5.0 2014-12-18 Fixed document indexing when conversion to text fails 2014-12-17 Improved keyword sentence extraction 2014-12-17 Added modified XPDF code to separate superscripts 2014-12-10 Improved PDF to text postprocessing, code checking and de-hyphenation 2014-08-18 Fix missing keywords for two c2bscripts/*.desktop files (Thanks to F. Rusconi) 2012-12-23 Updated netqinf.txt for PubMed (Thanks to S. Kreisel) 2012-11-05 RELEASE OF VERSION 1.4.9 2012-11-04 Minor improvements in keyword extraction 2012-11-03 Code cleanup and micro optimizations through cppcheck 2012-10-23 Assure tmp path is writable when operating remotely (Thanks to A. Norton) 2012-08-02 Disable Open button when Postprocess does not produce a file (Thanks to J. Welford) 2012-05-15 RELEASE OF VERSION 1.4.8 2012-05-13 Fixed gcc 4.7 compilation, Debian bug 667129 (Thanks to M. Klose and F. Rusconi) 2012-02-17 Added a warning whenever external document to text conversion fails while indexing 2012-01-15 Minor improvements in keyword extraction 2011-12-20 RELEASE OF VERSION 1.4.7 2011-12-17 Added keyword excerpt view 2011-12-13 Optimized keyword extraction citer cleanup 2011-12-05 Propagated --conf flags to child processes 2011-11-18 Improved citer navigation 2011-09-18 Added document similarity view 2011-09-18 Added POS tagger and keyword patterns 2011-08-14 Added automatic keyword extraction from documents 2011-08-03 RELEASE OF VERSION 1.4.6 2011-08-02 Set minor improvements in volume, number, page recognition 2011-08-01 Made shortcuts customizable 2011-06-29 Added XCode ./qmake/cb2bib-osx.pro file (Thanks to J. Ralls) 2011-06-29 Updated netqinf.txt for PubMed 2011-03-21 RELEASE OF VERSION 1.4.5 2011-03-21 Fixed build error, set explicit X11 (Thanks to F. Rusconi, J. Corneli, and A. Wintcher) 2011-01-23 RELEASE OF VERSION 1.4.4 2011-01-23 Consider import multi keywords BibTeX entries (Thanks to C. Dri) 2010-12-17 Added Cyrillic to ASCI transliteration (Thanks to V. Koval) 2010-12-06 Updated bookmark's file netqinf.txt 2010-11-24 Documented comma separated value CSV to BibTeX procedure (Thanks to G. Ranger) 2010-11-05 Fixed three bashisms in file c2btools/bib2pdf (Thanks to F. Rusconi) 2010-10-19 Set executable inside cmake build tree (Thanks to F. Rusconi) 2010-10-11 RELEASE OF VERSION 1.4.3 2010-10-11 Fixed two-letter initial, 'Yu. Last' author parsing 2010-10-10 Fixed trimming leading spaces in Annote verbatim sections 2010-10-10 Removed hard-coded monospace font in Annote's CSS file 2010-10-10 Fixed opened files seen as modified in when using Qt 4.7.0 2010-09-11 RELEASE OF VERSION 1.4.2 2010-08-31 Added initial cmake configure/build/install 2010-08-31 Set fixes and testing cmake configure/build on MacOSX (Thanks to D. Swain) 2010-08-30 Set calling external tools path independent on MacOSX (Thanks to C. Szepesvari) 2010-08-22 Minor code cleanup 2010-08-21 Fixed wrong author parsing if ForeName is missing in XML PubMed (Thanks to F. Rusconi) 2010-05-24 RELEASE OF VERSION 1.4.1 2010-05-23 Improved journal recognition 2010-05-22 Updated bookmark's file netqinf.txt 2010-05-22 Skip saving void documents when "Download document if available" is checked 2010-05-22 Check for document existence and mimetype prior to downloading 2010-05-22 Refactored network classes 2010-04-24 RELEASE OF VERSION 1.4.0 2010-04-23 Set c2bCiter to remember display format 2010-04-22 Set clipboard connected mode default in c2bCiter 2010-04-22 Remember last current citation in c2bCiter 2010-04-22 Updated several icons in editor 2010-03-21 Set workaround for cleared line edits showing cursor (QTBUG-7866) 2010-03-21 Postprocess DOI to clear URL formatting 2010-03-21 Added chronological view in c2bCiter 2010-02-22 RELEASE OF VERSION 1.3.7 2010-02-21 Validate author in PubMed XML parser 2010-02-21 Avoid stopping network queries when one fails 2010-02-21 Set minor improvements in year, volume, page recognition 2010-02-21 Updated style sheet for reference browsing 2010-02-20 Fallback title to booktitle to file name in views 2010-02-20 Set --sloppy to accept all files 2010-02-20 Consider shortcut to write/update source document's metadata (Thanks to S. Kreisel) 2010-02-20 Consider c2bCiter's filter to be connected to clipboard (Thanks to H. Seifzadeh) 2010-02-20 Fixed Medline parsing in some cases with uppercased hyphenated words (Thanks to F. Rusconi) 2010-01-05 RELEASE OF VERSION 1.3.6 2010-01-04 Added 'Fore IJ Last' formatted author recognition 2010-01-02 Minor improvements in journal recognition 2009-12-28 Minor improvements in PubMed XML parser for journal pages and year 2009-12-26 Fixed two cases of author capitalization which conflicted with suffixes and two-letter initials 2009-12-21 Minor improvements in abstract and keywords recognition 2009-12-15 Adapted configure script to Gentoo build descriptions (Thanks to H. Mildenberger and A. K. Huettel) 2009-10-26 RELEASE OF VERSION 1.3.5 2009-10-25 Fixed a regression in single word approximate strings not working for documents 2009-10-21 Fixed wrong automatic extraction for DOIs followed by commas (Thanks to X. Helluy) 2009-10-21 Set reference field shortcuts in manual extraction 2009-10-21 Consider setting manual extraction selection keyboard aware (Thanks to H. Seifzadeh) 2009-10-15 Consider fallback journal to booktitle for inproceedings in views (Thanks to H. Seifzadeh) 2009-10-13 RELEASE OF VERSION 1.3.4 2009-10-12 Skip copy/move document on save if BibTeX file is not writable 2009-10-11 Updated bookmark's file netqinf.txt (Thanks to H. Seifzadeh) 2009-10-09 Added minor improvements in author, pages and volume recognition 2009-10-09 Included citeid in check repeated 2009-09-19 Fixed a typo, --tempdir must be --tmpdir, in bib2pdf (Thanks to F. Rusconi) 2009-09-11 Protected all shell variables against spaces in configure (Thanks to F. Rusconi) 2009-09-10 RELEASE OF VERSION 1.3.3 2009-09-06 Added 'fix string: context' search type 2009-08-26 Optimized search in files, and implemented fast matching for approximate strings 2009-08-26 Fixed compiler -Werror=format-security errors in qDebug calls 2009-08-18 Added --sloppy switch for --doc2bib and --txt2bib actions 2009-08-11 Fixed export entries from search browser 2009-08-06 Added relevant Prism metadata recognition 2009-08-03 Fixed possible separator duplication in keywords 2009-08-03 Wrote a more clarifying documentation for automatic extractions 2009-08-01 Fixed a regression not converting '2nd' and '3rd' PubMed author suffixes 2009-07-27 RELEASE OF VERSION 1.3.2 2009-07-27 Do not ask if document should be saved when closing search results browser 2009-07-27 Added <> document ID placeholder that keeps both IDs syncronized 2009-07-26 Set not to expand pathless filenames in USB mode permitting to use host PATH tools 2009-07-26 Improved check repeated and added check repeated on save 2009-07-25 Consider <> ID placeholder and set cite and document separate IDs (Thanks to O. Sluciak) 2009-07-23 Fixed wrong file name in missing converter message 2009-07-23 Updated build scrips to not require external tools dependence 2009-07-23 Set calling external tools path independent 2009-07-10 Added <<author_all_abbreviated>> cite ID placeholder (Thanks to D. Huang) 2009-07-05 Improved configure and tool scripts (Thanks to F. Rusconi and L. Mamane) 2009-06-29 RELEASE OF VERSION 1.3.1 2009-06-27 Added Check Repeated functionality for current reference 2009-06-27 Fixed parser not processing last field in inverted comma style BibTeX 2009-06-27 Set netqinf.txt to use internal XML parser for PubMed 2009-06-27 Fixed packaging, double copying scripts and initial external tool setting 2009-06-01 Fixed c2bciter script not passing all arguments (Thanks to F. Rusconi) 2009-06-01 RELEASE OF VERSION 1.3.0 2009-05-30 Updated configure script (Thanks to F. Rusconi) 2009-05-23 Added module c2bCiter and command line action --citer 2009-05-23 Set cb2Bib not to process clipboard updates if main panel is closed 2009-05-23 Set standard shortcuts to conform to user's desktop 2009-05-23 Improved to ASCII conversion and collation algorithm 2009-05-20 Added example query using HTML to text conversion in netqinf.txt 2009-05-20 Added pre-process script med2bib (Thanks to F. Rusconi) 2009-05-20 Pre and post process scripts cleanup (Thanks to F. Rusconi) 2009-05-17 Fixed wrong display of proper names for BibTeX files written in reverse order 2009-05-17 Improved abstract and keywords heuristics (Thanks to J. P. Eckmann) 2009-05-17 Cleanup command line messages, fixed wrong mention on temporary files deletion 2009-05-17 Convenience script dl_cb2bib renamed to c2bimport 2009-05-10 Improved document to text conversions, removal of non-textual symbols 2009-05-10 Fixed set initial references.bib to user's home directory 2009-05-10 Made temporary file names dependent on cb2Bib session 2009-05-10 Fixed a regression on Windows uninstaller not deleting install directories 2009-05-10 Added convenience shell wrapper c2bconsole on Windows 2009-05-07 RELEASE OF VERSION 1.2.3 2009-05-07 Fixed a regression when setting unsupervised processing 2009-05-07 Renamed settings key for metadata writer 2009-05-06 Improved journal name recognition 2009-05-06 Added conversion htm2txt_query and htm2txt_referenceurl actions in netqinf.txt 2009-05-04 Added --configure command line functionality 2009-05-04 Added --txt2bib and --doc2bib command line functionality 2009-04-05 RELEASE OF VERSION 1.2.2 2009-04-05 Set reference list sorting case and diacritic insensitive 2009-04-05 Improved author string parsing 2009-03-31 Consider parsing reverse order and comma separated author strings (Thanks to D. Comtois) 2009-03-27 Added network access through a proxy host (Thanks to T. Deneux) 2009-03-25 RELEASE OF VERSION 1.2.1 2009-03-25 Improved the pattern/regular expression editor 2009-03-24 Fixed a potential crash if expected and actual captures in user's patterns mismatch 2009-03-15 Improved/optimized journal names lookup 2009-03-07 Added line numbers in embedded editor 2009-03-03 RELEASE OF VERSION 1.2.0 2009-03-01 Moved Qt requirement to version 4.4.0 or later 2009-03-01 Use plain text optimized class QPlainTextEdit for text editing 2009-03-01 Updated bookmark's file netqinf.txt 2009-02-27 Improved built-in network capabilities, including redirections and cookies 2009-02-27 Added author to network query excerpts 2009-02-27 Code cleanup through cppcheck 2009-02-22 Updated build dependencies for Debian 5.0 2009-02-05 RELEASE OF VERSION 1.1.1 2009-01-17 Added heuristic recognition for authors (single and multiple blocks, natural order) 2009-01-10 Revert Latin ligatures in document to plain text conversions 2009-01-10 Improved author string processing 2008-12-27 Improved pages, volume and number recognition 2008-12-23 Convert ' & ' to ' and ' in journal before submitting a network query 2008-12-23 Fixed a regression on month, editor and cite ID fields 2008-12-21 Updated to Qt 4.5.0 QRegExp/QString semantic changes 2008-12-21 Fixed spec file for openSuSE 11.1 build (Thanks to M. Hüwe) 2008-12-17 RELEASE OF VERSION 1.1.0 2008-12-07 Added cb2Bib's Annote viewer 2008-12-07 Added --html-annote and --view-annote command line functionality 2008-12-07 Fixed some issues regarding command line filenames and filedialogs in Windows 2008-12-07 Synchronized BibTeX browser panel with reference line editors 2008-11-30 Code cleanup and refactoring 2008-11-30 Removed no longer needed external client for opening files 2008-11-21 Fixed an issue with percent encoding/tag substitution custom bookmarks 2008-11-21 Updated bookmark's file netqinf.txt for new ACS journals and Science URLs 2008-10-22 RELEASE OF VERSION 1.0.4 2008-10-21 Added 'any word/all words' type searches 2008-10-20 Fixed buttons enabled/disabled in search dialog on Qt > 4.4.0 2008-10-20 Fixed 'About panel' bookmarks not displaying dynamic links on Qt > 4.4.0 2008-10-20 Improved pages, volume and number recognition 2008-09-19 RELEASE OF VERSION 1.0.3 2008-09-18 Recognize and process page format '123-3pp' 2008-09-18 Set arXiv ID as BibTeX URL field 2008-09-18 Fixed a bug when scrolling to 'Edit reference' in search if multiple edits were done 2008-09-17 Force USB mode 'cb2Bib --conf' to use relative to BibTeX document filenames 2008-09-17 Improved managing of relative document filenames 2008-09-17 Added 'Export Entries' to export selected citations in BibTeX editor (Thanks to to A. M. Elena) 2008-07-21 RELEASE OF VERSION 1.0.2 2008-07-20 Added 'Edit reference' in search results 2008-07-20 Fixed a regression for LaTeX-Unicode conversion for letters Å and Æ 2008-07-20 Set LyXPipe in Windows 2008-07-20 Updated PNAS Url 2008-07-10 Optimized approximate string when searching linked documents 2008-07-10 Use Qt::AA_NativeWindows to avoid flickering on Qt 4.4.0 2008-06-17 RELEASE OF VERSION 1.0.1 2008-06-17 Fixed a bug that could result in computing negative word stretch in approximate strings 2008-06-15 Fixed a bug sometimes blocking the reference list filter in BibTeX browser 2008-06-15 Arranged BibTeX browser menus, made context and selection sensitive 2008-06-15 Fixed a regression in BibTeX browser actions not properly showing in menus 2008-06-15 Set sub and superscript conversions from HTML alt tags and [sub/p .] tags 2008-06-15 Fixed BibTeX parser failing in some cases with nested braces 2008-06-15 Added 'Update Documents Metadata' in BibTeX editor 2008-06-10 Set BibTeX to Unicode letter conversions for \LaTeX{} syntax 2008-06-10 Fixed a regression in clipboard's panel multiple line syntax highlighting 2008-06-10 Added tag <<title>> for automatic queries, updated netqinf.txt 2008-06-10 Set better flags for calling ExifTool (Thanks to P. Harvey) 2008-06-07 RELEASE OF VERSION 1.0.0.1 2008-06-07 Fixed an error in inserted metadata from PDFImport and multiple files 2008-06-07 Fixed a regression preventing from setting correct djvu extension 2008-06-07 RELEASE OF VERSION 1.0.0 2008-06-07 Updated cb2Bib's license to GPL version 3 2008-06-07 Added metadata writing through ExifTool 2008-06-05 Set double braces to be seen only BibTeX preview and save 2008-06-05 Removed BibTeX separator for author queries 2008-06-05 Updated configuration dialog 2008-06-05 Only set pdf extension in 'file' when none is given 2008-06-05 Set Utf8 as default codec for files on Windows 2008-06-05 Fixed minor bug in suggested regular expression for page 2008-05-31 Added metadata reading and parsing 2008-05-25 Fixed 'Postprocess month' not following settings 2008-05-25 Added Select File in File context menu 2008-05-25 Added clear functionality to combo boxes 2008-05-07 RELEASE OF VERSION 0.9.5 2008-05-07 Set LyX pipe selection for Qt 4.4.0 filedialogs 2008-05-07 Fixed 'Search in files' headers and browser 'Select' icon display for Qt 4.4.0 2008-04-15 Fixed missing HTML special character encoding when searching by field 2008-04-08 Contributed regexps for Earth Planet Sci Lett, 2008-04-08 Phys Earth Planet Inter, Geophys J Int (Thanks to L. A. C. Silva) 2008-04-07 RELEASE OF VERSION 0.9.4 2008-04-07 Updated bookmark netqinf.txt file 2008-04-05 Set optionally file entries relative to current BibTeX file (Thanks to A. M. Elena) 2008-04-03 Added tag <<selection>> to dynamic bookmarks 2008-04-03 Added dynamic bookmarks to cb2Bib context menu 2008-03-31 Moved basic edit actions to 'Edit' context submenu 2008-03-05 Added cb2Bib browser context action 'Open Document Url' 2008-03-05 Set cb2Bib browser link preference to local article file, to URL, and to DOI 2008-03-05 Set PubMed ID as BibTeX URL field in PubMed extractions (Thanks to S. Tabibzadeh) 2008-02-01 RELEASE OF VERSION 0.9.3 2008-01-31 Added bookmark menu in the embedded editor 2008-01-30 Fixed/Improved PubMed IDs extraction (update netqinf.txt) 2008-01-30 Fixed ISBN recognition for cases 'ISBN 0: 0-0000-0000-0' 2008-01-30 Fixed an issue when parsing bib keys formatted by KBibTeX (Thanks to D. Car) 2007-12-07 RELEASE OF VERSION 0.9.2 2007-12-07 Fixes/workarounds for filedialog and Qt<4.3.3. Added exec icon for X11. 2007-12-05 Optimized BibTeX parser, searches and composite searches 2007-12-04 Fixed merging of contiguous search excerpts 2007-12-04 Fixed a bug when deleting search patterns, avoid accepting empty patterns 2007-11-25 RELEASE OF VERSION 0.9.1 2007-11-25 Fixed ISBN recognition for cases 'ISBN-0: 0-0000-0000-0' 2007-11-25 Added filter mode selection to browser/editor reference list 2007-11-25 Set filedialog to remember last size 2007-11-25 Fixed compilation issue on Debian 4.1.1-21 (Thanks to A. Matuszak) 2007-10-31 RELEASE OF VERSION 0.9.0 2007-10-30 Show 'search in files' output in text mode if no hits but search errors 2007-10-30 Consider 'editor' if 'author' is empty for cite IDs 2007-10-30 Customizable page number separator (Thanks to C. Ullrich) 2007-10-30 Consistent update of shortcuts: Use standard ones, and Alt modifier in other cases 2007-10-30 Updated Editor/Browser menu 2007-10-28 Added 'Search In Files' for selected text 2007-10-28 Code refactoring: Added resource class c2b 2007-10-27 Remove patterns '(Editor)', '(Ed)', ..., prior to processing an editors string 2007-10-27 Improved heuristic guess for ISBN 2007-10-27 Improved heuristic guess for abstract, considers tag 'summary' 2007-10-26 Updated message dialogs for better desktop integration 2007-10-26 Fixed shortcut for 'Deletes temporary BibTeX output file' 2007-10-26 Set c2bUtils into namespace, some inlining of utilities 2007-09-17 Fixed wrong renaming of non '.pdf' files when original filename has several '.' 2007-09-05 RELEASE OF VERSION 0.8.4 2007-09-05 Setting relative file paths and temporaries when launched with --conf option 2007-09-05 Minor code cleanup 2007-08-02 Updated netqinf.txt file 2007-08-02 Updated PubMed/Medline parser 2007-07-05 RELEASE OF VERSION 0.8.3.1 2007-07-05 Fixed a regression while parsing command line 2007-07-05 RELEASE OF VERSION 0.8.3 2007-07-04 Fixed memory leak from cb2Bib not freeing c2bSearchInFiles 2007-07-03 Fixed file dialog captions when using Qt 4.3.0 2007-07-03 Do not show cb2Bib's main panel when launched with '--bibedit filename.bib' 2007-07-03 Reorganized settings and updated windows installer 2007-07-03 Considered user configuration files, --conf flag (Thanks to S. Oom) 2007-07-03 Fixed Debian/Ubuntu packaging script (Thanks to L. Eraly) 2007-07-02 Updated configure script 2007-06-07 Fixed some dialogs not showing when using Qt 4.3.0 2007-05-07 RELEASE OF VERSION 0.8.2 2007-05-07 Fixed 'Unknown Error' when copying/moving files from PDFImport on Windows 2007-05-07 Scape < and > symbols in browser 2007-05-01 Fixed regression 'Copy instead of moving non-local files' for external clients 2007-04-23 Added approximate string search 2007-04-08 Added search highlight for abstracts 2007-04-08 Added PDF search excerpts 2007-04-08 Added cache for PDF search 2007-04-08 Remember Browser font size 2007-04-01 RELEASE OF VERSION 0.8.1 2007-04-01 Copy instead of moving non-local files 2007-04-01 Improved/optimized Search in Files functionality for composite patterns 2007-04-01 Syncornized BibTeX Editor and Browser navigation 2007-03-24 Set raw mode view as default, instead of tagged mode view 2007-03-24 Set unique BibTeX parsing. Fixes parsing in Editor and Search in Files 2007-03-24 Improved BibTeX recognition and parsing 2007-03-24 Improved PDFImport functionality (Thanks to E. Gaubitzer) 2007-03-18 Updated netqinf.txt and regexps.txt files 2007-03-18 Added <<excerpt>> tag for queries 2007-03-18 Improved journal and pages recognition 2007-03-18 Cleanup and reorganization of settings management 2007-03-16 Remove from PDFImport file list unsuccessfully converted files 2007-03-16 Remember last directory/file in PDFImport filedialog (Thanks to E. Gaubitzer) 2007-03-13 RELEASE OF VERSION 0.8.0 2007-03-11 Added HTML browser view to BibTeX editor 2007-03-10 Added 'Search references in files' functionality 2007-03-10 Avoided cb2Bib's tags from interfering with heuristic recognition 2007-03-10 Improved heuristic guess for volume, pages, and number 2007-03-10 Added clear functionality to line editors 2007-03-10 Updated all dialogs to make them consistent and desktop aware 2007-03-10 Fixed preparser 2007-03-10 Improved Find in Text dialog 2007-03-09 Fixed Reference List not displaying booktitle 2007-03-06 Fixed a rare wrong passing of optional arguments to external tools 2007-03-06 Fixed history in filedialogs 2007-03-06 Removed wrong slash in filedialog filenames when file did not exist 2007-03-06 Fixed wrong editor exit when document is modified and cancel is pressed 2007-02-18 RELEASE OF VERSION 0.7.3 2007-02-17 Removed duplicated blank lines in external process logs 2007-02-17 Convert HTML character encodings in PubMed reference import 2007-02-17 Fixed URL encoding for opening files through internal desktop service 2007-02-17 Remove braces in <<title>> replacement for Bookmarks 2007-02-17 Fixed <<pages>> replacement for Bookmarks (fixes CR bookmark) 2007-02-17 Remember word un/wrap mode in editors 2007-02-17 Check if DOI is a web address in BibTeX editor before being opened 2007-02-17 Added web search customization in BibTeX editor 2007-02-16 Fixed/improved uppercased 'title' capitalization 2006-12-06 RELEASE OF VERSION 0.7.2 2006-12-06 Added choice to write 'title' in double braces 2006-12-06 Fixed pasting of formatted text to BibTeX editor 2006-12-06 Fixed CR regexp in netqinf.txt to not to read HTML-encoded DOI 2006-12-06 Fixed a subtle bug preventing viewers from updating if text was selected 2006-12-06 Added raw, non-preprocessed clipboard view mode (Thanks to M. Wegmann) 2006-12-05 Updated configure and install doc for MacOSX (Thanks to Konstantin and P. Koshevoy) 2006-12-04 Added "Download Reference to cb2Bib" functionality 2006-12-04 Updated cb2Bib command line syntax 2006-12-03 Added Mac OS X cb2bib.icns icon file (Thanks to Konstantin) 2006-12-03 Added missing mingwm10.dll file on Windows package 2006-10-30 RELEASE OF VERSION 0.7.1 2006-10-30 Set default configure prefix to /usr (Thanks to T. Fischer) 2006-10-30 Fixed configure to use -prefix path 2006-10-30 Fixed LyX pipe not shown at file dialogs 2006-10-30 Revert to internal file management if file copy/move/open client is empty 2006-10-19 Fixed local file open on Windows 2006-10-16 RELEASE OF VERSION 0.7.0 2006-10-16 Fixed a regression when setting line/column in Editor 2006-10-16 Improved BibTeX file selection through combo filename list 2006-10-16 Added Editor's modified flag 2006-10-16 Set KDE consistent 'Save'/'Save As' icons in BibTeX Editor 2006-10-16 BibTeX Editor remembers Reference List position 2006-10-16 Set consistent labeling in file dialogs 2006-10-16 Added file history in file dialogs 2006-10-16 Fixed a regression related to wrong file dialog messages 2006-10-16 Consider integrated desktop service for URL opening 2006-10-16 Use QFontComboBox for font selection 2006-10-04 Fixed a regression when copying/moving files from PDFImport 2006-08-31 Fixed a regression when selecting fields in cb2Bib panel 2006-08-30 RELEASE OF PREVIEW 0.6.91 2006-08-30 Fixed a regression in droped files encoding in PDFImport 2006-08-29 Added queries by DOI (Thanks to T. Geissmann) 2006-08-29 Updated netqinf.txt information file 2006-08-29 Fixed a regression in the network functionality 2006-08-29 Fixed a compilation issue on Mac OS (Thanks to M. Bongard) 2006-08-25 RELEASE OF PREVIEW 0.6.90 2006-08-25 Ported to Qt4 2006-05-15 Updated netqinf.txt for NAR 2006-04-24 RELEASE OF VERSION 0.6.1 2006-04-24 Updated netqinf.txt for PNAS 2006-04-24 Keep 'File' synchronized with 'CITEID' 2006-04-24 Concatenate multiple 'title' in regexps, as 'Title: Subtitle' (Thanks to McKay Euan) 2006-04-23 Added tooltip to 'File' with origen file name 2006-04-23 Cleaned and updated network related classes 2006-04-23 Schedule dropped or PDFImport file copying/moving until Bib item is saved 2006-04-23 PDFImport rewritten, fixed several bugs (Thanks to M. Wegmann) 2006-04-02 RELEASE OF VERSION 0.6.0 2006-04-02 Added highlight for 'author|issue|title|volume' in clipboard 2006-04-02 Added contributed regexp for PROLA (Thanks to Martint) 2006-04-02 Added unified, platform independent new line recognition 2006-04-02 Fixed missing '<<NewLine>>' on OSX (Thanks to McKay Euan) 2006-03-28 Fixed ScienceDirect regexp 2006-03-28 Updated Wiley InterScience Example 2006-03-22 Updated cb2Bib's icon 2006-03-22 Added JTCC journal 2006-03-18 Fixed 'Copy/Rename: Keep .djvu, .dvi, .ps, .ps.gz, .tex, .txt extensions' on Windows 2006-03-18 Fixed RC_FILE (Windows and OSX) 2006-02-21 RELEASE OF VERSION 0.5.3 2006-02-21 Added SISC journal, and added contributed_re.txt (Thanks to G. B. @ RWTH) 2006-02-20 Added 'Insert/Overwrite' flag to editor 2006-02-20 Added 'File Save As' functionality to editor 2006-02-20 Copy/Rename: Keep .djvu, .dvi, .ps, .ps.gz, .tex, .txt extensions 2006-02-20 Added preparser scripts isi2bib and ris2bib 2006-02-20 Added external preparser functionality 2006-01-23 RELEASE OF VERSION 0.5.2 2006-01-22 Fixed BibTeX parser for ending non-bracket cases (eg. 'year = 2000}') 2006-01-22 Added Title and ISBN automatic guess 2006-01-22 Fixed Abstract automatic guess 2006-01-21 Added custom syntax colors 2006-01-20 Fixed referencelist.cpp for icc/64 compiler 2006-01-15 Get default font color from the Window Manager 2005-12-12 RELEASE OF VERSION 0.5.1 2005-12-12 Added 'Set active LyX pipe' in BibTeX edit menu 2005-12-12 Added edit menu in BibTeX editor 2005-12-12 BibTeX parser considers non-bracket cases (eg. 'year = 2000,') 2005-12-11 Fixed syntax highlighter for commented lines 2005-11-17 Added http POST command 2005-11-16 Updated netqinf.txt for CR 2005-11-14 Updated netqinf.txt for ACS 2005-10-26 RELEASE OF VERSION 0.5.0 2005-10-08 Proper capitalization: FIRST MID LAST -> First Mid Last 2005-10-08 Added JSTOR regexp (Thanks to B. Goodrich) 2005-10-08 Added citeID customization (Thanks S. Oom for suggestions) 2005-10-07 Set default path /usr/local/bin/pdftotext on Mac OS X 2005-08-20 RELEASE OF VERSION 0.4.6 2005-08-20 Fixed: Set current file when 'cb2bib --bibedit fn.bib' 2005-08-20 Extended Unicode to LaTeX to all entries 2005-08-20 Added equivalent processing for author and editor strings 2005-08-20 Added 'Full Author and Editor Name' option 2005-08-20 (Thanks to J. Schelp and B. Goodrich for suggestions) 2005-08-12 'cb2bib --bibedit', show main maximized if no files are given 2005-08-12 RELEASE OF VERSION 0.4.5 2005-08-12 Fixed memory leak from c2bEditor 2005-08-11 Added web search also in Editor's Reference List 2005-08-11 Menu improvements 2005-08-11 Unicode <-> LaTeX for infinity symbol 2005-08-11 Fixed viewCb2Bib button behavior in BibTeX editor 2005-08-11 BibTeX editor button functionality: edit/set editor on top 2005-08-11 Allow for multiple BibTeX editors 2005-07-06 RELEASE OF VERSION 0.4.4 2005-07-06 Fixed bookmark and regexp editor: save before execute 2005-07-06 Fixed netqinf.txt for PubMed 2005-07-06 Fixed cb2Bib idle in multiple queries + debug file option 2005-07-06 Alternate Journal Name no longer stored in 'annote' field 2005-07-06 Added 'Journals to Full/Abbreviated Name' in editor 2005-07-06 'configure' adapted to knoppix 3.6 (Thanks to cognite) 2005-07-02 Removed 'install' checking in 'configure' script 2005-07-02 ClipboardPoll disabled as default for Mac OS X 2005-06-16 RELEASE OF VERSION 0.4.3 2005-06-15 Set Postprocess widget to modeless 2005-06-15 Added menu entries 2005-06-15 Added heuristic recognition 2005-06-01 Added line number indicator in editor 2005-06-01 Fixed translating '&' to LaTeX multiple times 2005-05-29 Do not reload current BibEditor if ref added to a different file 2005-05-29 Code rearrangement and cleaning: c2bBibParser 2005-05-11 RELEASE OF VERSION 0.4.2 2005-05-11 Added reference navigation in BibTeX editor 2005-05-09 Improved search capabilities in BibTeX editor 2005-05-09 Added LyX pipe citation procedure: 2005-05-09 adapted from R. Stephenson's Tellico 2005-05-09 Added Reference List in BibTeX editor 2005-05-06 Added desktop file 2005-05-04 Uppercase greeks, also in "PNAS-style" {}, (), or [] delimiters 2005-05-04 Added automatic conversion for "PNAS-style" {middle dot} 2005-04-23 RELEASE OF VERSION 0.4.1 2005-04-23 Added scripts bib2pdf and bib2end.bat 2005-04-23 Added Postprocessing of current BibTeX file 2005-04-23 (Thanks to J. Tan for suggestions) 2005-04-19 Added command line 'cb2bib [[--bibedit] filename.bib]' 2005-04-19 Added 'author' to 'Convert string to LaTeX' config 2005-04-19 Added 'Selection to Unicode' in BibTeX editor 2005-04-19 Added 'Selection to LaTeX' in BibTeX editor 2005-04-18 Fixed Clipboard change notifications 2005-04-18 (Thanks to L. Lunak for help and ClipboardPoll code) 2005-04-07 RELEASE OF VERSION 0.4.0 2005-04-06 Added customizable input preprocessing 2005-04-06 Rearrange main window buttons 2005-04-06 Added Editor Search capability 2005-04-06 Fix Modified Editor and Exit main window 2005-04-04 Initialize 'view BibTeX' Scroll Bar position 2005-04-04 Remember 'About' Scroll Bar position 2005-04-04 Added Contextual Help 2005-04-04 Added convenience BibTeX File editor 2005-03-17 RELEASE OF VERSION 0.3.6 2005-03-16 Added ~ 10 more Unicode <-> LaTeX translations 2005-03-16 Improved 'pages' postprocessing 2005-03-16 Consider inverted commas as BibTeX delimiter 2005-02-17 Remove start and end blank in BibTeX field string 2005-02-09 RELEASE OF VERSION 0.3.5 2005-02-09 Parse whole netqinf.txt if 'No article found' 2005-02-07 Remember Config page 2005-02-07 Rearrange About/View BibTeX buttons behavior 2005-01-21 RELEASE OF VERSION 0.3.4 2005-01-20 Add 'Make Network Query' button 2005-01-20 DOI automatic extraction 2005-01-19 'PubMed Search' import (J.Name. year month;vol(n):pp.) 2005-01-19 Add significative error messages for missing filenames 2005-01-19 RegExp/Bookmarks Editor arrangement 2005-01-19 Added convenience bookmarks 2005-01-18 Consider author suffixes in Medline extraction 2005-01-18 Consider Medline AU if FAU isn't available 2005-01-15 Include DOI in Medline extraction 2005-01-14 RELEASE OF VERSION 0.3.3 2005-01-14 Added 'PubMed - Medline Journal' recognition 2005-01-13 Introduced simple Journal-Volume-Page queries 2005-01-10 (Thanks S. Vega and probono for suggestions) 2005-01-08 Added last name prefix 'vande' 2005-01-07 Added complete ACS journal list 2005-01-04 Arrangement copy/move/open for local/network files 2004-12-29 RELEASE OF VERSION 0.3.2 2004-12-29 Previous add conflicted 'van der Wal, Jan and Lieb, Jely A.' 2004-12-28 RELEASE OF VERSION 0.3.1 2004-12-27 'Abcd, E., F. Ghij, ...' citation style (Thanks P. Magwene) 2004-12-27 Fix slow highlighting 2004-12-21 RELEASE OF VERSION 0.3.0 2004-12-20 Consider interlaced authors-affiliations, removed <<moreauthors>> 2004-12-20 Regexps deposition note (Thanks J. Vertrees) 2004-12-20 Enable/Disable 'Add BibTeX to file' button 2004-12-20 Added convenience RegExp File editor 2004-12-20 Render disabled icons in grayscale 2004-12-14 Valgrind memory leak debugging 2004-12-08 RELEASE OF VERSION 0.2.8 2004-12-08 Fix a wrong enable/disable behavior in PDFImport button 2004-12-07 Convert to lower case titles completely uppercase 2004-12-07 Fix: PDF renaming consistently managed by cb2Bib instead of kfmclient 2004-12-07 Added error description for file related warnings 2004-12-01 Added 'IOP Electronic Journals' import 2004-10-22 Add abstract|introduction|keywords|key words highlight 2004-10-19 RELEASE OF VERSION 0.2.7 2004-10-19 PDFImport via pdftotext (Thanks F. C. Coelho for suggestions) 2004-09-19 RELEASE OF VERSION 0.2.6 2004-09-19 TeX <-> Unicode translations for Greek letters 2004-09-19 Choice for title Unicode -> LaTeX conversion 2004-09-18 Added some few journal abbreviations 2004-09-18 Fix wrong recognition 'First S.P.'(Thanks S. Oom) 2004-09-18 Fix 'Last, DE' - conflicting First and initials with suffixes 2004-09-18 Added author prefix 'da' and suffix 'Jr' 2004-09-08 RELEASE OF VERSION 0.2.5 2004-09-08 Choice for short/long journal names 2004-09-08 'month' postprocessing (Thanks F. Hedman) 2004-09-08 Added 'Alt D' to delete temporary BibTeX output (Thanks S. Oom) 2004-09-07 Added 'Alt R' accelerator to start automatic recognition 2004-09-07 Proper recognition for 'First I Second, ' 2004-09-02 RELEASE OF VERSION 0.2.4 2004-09-02 Previous fix conflicted with 'First I. Second, ' 2004-08-31 Fix message pointing to wrong file (Thanks G. Palfinger) 2004-08-30 RELEASE OF VERSION 0.2.3 2004-08-30 Fix wrong recognition 'First SP, Second WE, '(Thanks S. Oom) 2004-08-30 RELEASE OF VERSION 0.2.2 2004-08-29 Experimental: kfmclient to retrieve pdf files 2004-08-29 Thanks F. Hedman: 2004-08-28 Improved automatic URL recognition 2004-08-28 Added BibTeX fields 'eprint' and 'doi' 2004-08-22 RELEASE OF VERSION 0.2.1 2004-08-22 Workaround for acrobat, mozilla, qt 3.3.3 issues 2004-08-17 Fixed 'file' - 'eprint' duplication in BibTeX output 2004-08-13 Set 'article' as default type 2004-07-30 RELEASE OF VERSION 0.2.0 2004-07-30 Improved visual input/output presentation 2004-07-29 RegExp format changes: Added extra line for reference types 2004-07-29 RegExp format changes: 'authors' -> 'author' 2004-07-29 Extend reference fields list 2004-07-28 Input reference type list 2004-07-12 RELEASE OF VERSION 0.1.4 2004-07-12 Fix "F.-S. Last" author name processing 2004-07-12 Fix to compile against Qt 3.1.0 or later 2004-07-11 RELEASE OF VERSION 0.1.3 2004-07-09 Improved 'ScienceDirect' import 2004-07-09 Improved TeX <-> Unicode translations 2004-07-09 Added 'Nature from Fisrt Paragraph' import 2004-07-08 Added 'DBLP article' import (thanks to P. Woelfel) 2004-07-08 Consider also '&' as a separator in author automatic recognition 2004-07-08 Fixing 'empty-field {}' error in BibTeX recognition 2004-07-07 Improved MakeCiteID for composite names 2004-07-07 Consider composing sufix 'III' 2004-07-07 Added LastName prefix 'dos' and 'del' 2004-07-07 Corrected JCICS extended journal name 2004-07-05 RELEASE OF VERSION 0.1.2 2004-07-05 Added 'ISI Web of Knowledge Table of Contents Alert' import. 2004-07-05 Fixing: 'Last, FST' -> 'F. S. T. Last' (but not 'LAST, FIRST') 2004-07-05 Proper last name capitalization ('LAST-NAME' -> 'Last-Name') 2004-07-04 Escaping math characters '∂' and '−' 2004-07-03 RELEASE OF VERSION 0.1.1 2004-07-01 Escaping accented characters (MakeCiteID and authors and title in MakeBib) 2004-06-29 RELEASE OF VERSION 0.1.0 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������cb2bib-1.9.9/PaxHeaders.4632/AUTHORS����������������������������������������������������������������0000644�0000000�0000000�00000000074�13344506254�013413� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������30 atime=1536331050.985588102 30 ctime=1536331050.573591795 ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������cb2bib-1.9.9/AUTHORS��������������������������������������������������������������������������������0000644�0001750�0000144�00000000016�13344506254�014777� 0����������������������������������������������������������������������������������������������������ustar�00constans������������������������users���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Pere Constans ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������cb2bib-1.9.9/PaxHeaders.4632/LICENSE����������������������������������������������������������������0000644�0000000�0000000�00000000074�13344506254�013350� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������30 atime=1536331050.985588102 30 ctime=1536331050.573591795 ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������cb2bib-1.9.9/LICENSE��������������������������������������������������������������������������������0000644�0001750�0000144�00000104505�13344506254�014744� 0����������������������������������������������������������������������������������������������������ustar�00constans������������������������users���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. http://fsf.org/ Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. <one line to give the program's name and a brief idea of what it does.> Copyright (C) <year> <name of author> 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 the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: <program> Copyright (C) <year> <name of author> This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see http://www.gnu.org/licenses/. The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read http://www.gnu.org/philosophy/why-not-lgpl.html. �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������cb2bib-1.9.9/PaxHeaders.4632/doc��������������������������������������������������������������������0000644�0000000�0000000�00000000130�13344506452�013024� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������29 mtime=1536331050.59759158 30 atime=1536331050.985588102 29 ctime=1536331050.59759158 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������cb2bib-1.9.9/doc/�����������������������������������������������������������������������������������0000755�0001750�0000144�00000000000�13344506452�014477� 5����������������������������������������������������������������������������������������������������ustar�00constans������������������������users���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������cb2bib-1.9.9/doc/PaxHeaders.4632/cb2bib_user_manual.pdf���������������������������������������������0000644�0000000�0000000�00000000130�13344506452�017312� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������29 mtime=1536331050.59759158 30 atime=1536331050.985588102 29 ctime=1536331050.59759158 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������cb2bib-1.9.9/doc/cb2bib_user_manual.pdf�������������������������������������������������������������0000644�0001750�0000144�00001313646�13344506452�020726� 0����������������������������������������������������������������������������������������������������ustar�00constans������������������������users���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������%PDF-1.4 %äüöß 2 0 obj <</Length 3 0 R/Filter/FlateDecode>> stream xRMK@ W,gʀ ēſoJd $/o^bG՜;kpC 9lrՂ8k*CBG{x>5'G8ӹ \ޚqn,/q@B[f6}uC6Oͭ;MNjO}3ែ(\TABoXyv}U&6J`fEjDNRh"Ⱦ`Ȑ] SsiZTTi~$E5 ܈]qFg5 ?ea.q,ay sWE]bF1u2:!iWKHJG&ǡ" <}a#+pb|G ůEP]D3|O endstream endobj 3 0 obj 397 endobj 4 0 obj <</Type/XObject/Subtype/Image/Width 1338 /Height 325 /BitsPerComponent 8 /ColorSpace/DeviceRGB/Filter/DCTDecode/Length 53474>> stream �JFIF������C�     �C   �E:"���������������������������� ���y곬^Vi$]Qin4) *CtBn DmJ85.R%RRlL4%U1D3प2) jR`6ک�t5@�j+TGЬ�3Rz=25Ǯ&~OQ2Ε!` IM 2}%R4!0L0-.}M3C!EJ4&D蘘lEeiSSq^QJH4xN/Nz:[)I P4“ N1 a&۪ 4~v5{:zq'g>[y#'|Jݩg93Y�Y! PIA# (%HC2 pOmʆʴ [(,r# ,HuY'DQ+kNZ8,F-utYIRws隨"UdRoDM/Mn1TL):`r+LGbwӻ,^sNhd�(J�?WZ@R%DIEHȒJ***J (%XAlkUC6!MJ jMMPUM*"nYk,趲)\>@Ic%|;}&e#{,ytN}Fsxrtcn((D_G+ͨ`c v 0h',:&w''Xy1y^,)#"{zlM2 ��4 Pks\gwp\kG#+#sC=MjchD܅Q():Q9քg1R*Mc>^@VHy + J5 ĘB>kS,zs*b0̼FSYԢ儕r^Q0†8T ` hy]}\[;W'sDןzS@��:@B`!ORYՓBd-S^lFgnt=d Dƨ̵P#5ZbI6؛*QXrJ2lC/rw5Mv.t'qv/yŋlwq/ےctכXظp9"7kvŗ=U/,rKNJ^y*j&jSB 3q|=+Ӧ*�`@?Ioϛl4Rs\G:2&`tj1U'wgMr\踮<G2Qv>Uԓ;RrrOd$Ĝ˥oITM=ßVgP.fTL5lNq|ٞos6sar!zj=EJ#-+ ʝ|zEpgGk(:茍&ϭFS\=( P  :h4"Sקtr٠\�` o]f砷lwh侦`ΨYL$hA*IJa UnAHSJZW5*vW.uTM'O<,ūz'jҰ-C Mz'>*VM/ ф~ݻlʭZ" D3- ֈ D͢ Q{eR\p#t)1� � 0p������):8>n-99=LB,DD%Z$A BFF8Dk+ɪZ$HS}p6nHlrY+L C 5>ɧTgF][W6^{դU2JJ?7`~A.|Fe ae!-%) R4%HJ7jZ)6T+#5*.� p h`&&�2�S:Ѭ3l$bU"FTB1痷>g8NȌ.dsu)-Am)&j *W%7z=Cy|_G 9{{%*+2+'Y05l ��hdBT ! R TR%R$ +DVTUBU#N+;z ��`  �Wڭ/RF1djDY�y \^Jˉ4$J*�4Vz2dSt["-uVJ< lT@6$؆4L� KPC s)z4Gd){ 8:N`|t,GIʫGj1uZ),&J=ü(���` ���?)E/dZ\R` gkϣLfQR4R -*JHCPIZf⣯Xsr;6#r1#TA`7nM� �@ 2z'<ީQ<.{(}y|׬\|>|>>p>|F|}>>x6{9v.z5̻Hҳ] "ΣJR\f讁����M�!C|o~:.e2j00k4S(*r҉ %HT&BB)L$J ld]VsVUmgn'HCp H`����C"%猺gs¢XsW~'aIz2E:sik^:~a:>i(4}">q} |:_Q1_08 O 5==_NϪ\d?z/S2  @@Gzvu_C l81)*aĖ4IFV jTB@bJ jA5oLD&T 0��bc (3z4GLroL嬸94cj8=nn6ՙ}?g>_ϟ7'*,KΗQԹTuҹrRKrrr rrs@So<ӯ{pv^A'ݹj5XoNjӇu$Zg"fh!NF9A,$ P$*fRJ@Q c�L QfO6yuO!5QG>:ߓo#ŊvֹkOvpt)˲YtF*]f&.RVIM! fY.eAs-THZ"2Jڔ2iz>',GxRWzIܙ*@�kN k$%y�C@&B @%H% * SH+ JRD� lp� )4f*j nTbWiLe`2bqY,Y mHLE )+yW8=Q1ɥhsG}טk<U>3#矿'^į^g6^><) U|ogzԙ<-;s{n>|P!$hA ��$sDIqCj!0 i!*$*VF(<ޕȳzrI"sY>G:<{Lgby:{6x=}e1͹fh /y׻Ǐ[={{>oo<QMS,Yģqb{u.`\N')]//Krsz\$yғ [y;'v;Y_Q!0$*BL&!Fȹ̈́BJ Qh[*J�K1̰qjPPw6;_oo"s{u5v'ާ׹SS2he9Vn9fi�S!ʾս8W]yWtgޓTs1NSB覀bDKuIjJHi4n4  ̴KSSկ2Fh6٭b L4'!4�\]3 D%�$j%ZY91#ˬ񯦼x\^m/G7g{I]g9U3E: Nr]3y|vzyʳT<roTs23@37 [͍"s4'U9= 霪ƨ \餧Igӎ΃7VKDXt"G.z$:fj:o菚Xtk&!�A Tt4 D(@i!�#竚zO֭8tYerQB[J]2hErty\j,<>{d;VxRzI-d-<ַ]??kT5îgGb#qfBɹ70h̥6.sV:͚IMTYo>]3w{\=??휝8J�^m @hA*"5(d! [#Bi hH&4}'pY`6M4@BS65]ϥ9#@J�AX%A !oWhk; CK�@! �#`� H� �(�FRրv˷O oÀw Eӄ%P )  #0�L!�L $�d $$$�-������! "1#02@3APB$C`��(RJ> ]o#57�I}_my/IrUIxt8j.eүFIŽGq#$4*Ƌ˓7,i(Er\\Xm%8E~iNG-bY2�PY+BI:غYO[/_/|d? \kh8/+IѲR]QF#㧟Z(.4Bn*K)Gj$8N5JRy$x4S9b }QJ/rtjWV5օQ g|/ֽ?"_/ȩ�ģ+Ro< VThʭ|IH5Yc,,}rQ27||R:>\ C$(q&e kr3a2P%%K7Flr_M W[QFt]ߏ&W/_ /n_�ɒνdd̆uf_¾">`$IZ2"_eEjI뫣#FE TDgt!K2;jR*]rOUG>⩩NJ!B*R÷ņ8c.o:2_%_RrV%4ug^&D%፫NdeKYHdѓ2m\%K/|~' CpܸBXT/l�HԲT^!פd�t81;,lԚ,kgFWcn' lgُPRK[*_sd�Q_dm̯ זdU-oJ Tdf ƳK2H˙D⏘A\11IFjTq</*sse$/'gK,utRQ|%x�~/`aǁC9Dț'g'P,G+� Rvm.>YK5C�gy?|o/9^12^ N B sU~!Ou8sc BdWq[9[4<5|W7ϟ㜴*eC),95L\Or3'3V%>h~Z6FbıGg/]+WZFkצ|DnM'5~(�|y�'�kʞȲm>Ա$BKh%-Qd|{2dj$Q%}c2Q gkqyGT苿ʌy5ɆV \8O;p=My;p4G/CKEt(@흔,h#hj}(+a]ҶJ1c!~eɏ�-=o#rc/$.jy',\ƛWQN9u˕jSrᄶ/';Ŗv\r1}T8/qR|Xȼ>DgcXr}Y|ǖ.�,G/, ,X[\tv;hZ545e>Ҋ+|vYDDܢ31Cl'uT$aIQ䯫{g _w*<Tpa˖eAV\xW/qrʻQC *PJ2i&iw$Չٵџ=c*dBgb~EIGޜVJTr}WJj1<߼C&vرPjvnj֍գVWyf/D"߾R6ļȂs!7kȵ_nku74ܲQ0c)}_.^܌%<Z3Qz9y1q%ɏ%q)I9VHS{\j3ej2E�]5(~KGϡ:qp˄Rw~;p'+e|cMQqM,nԇĬxL3Ԏ4hњ2yEQEyf҆%>)cdj.*0o 5ް>1q'!+zیabe#~#^}Q{g¾,! M 5YykBQޘPeqp]Trl'U&7"PFҢi6;J"ﶔ]^J+Й�&L1<90 Wտ{/䳑cLnVQvGbGNY"8]_`#-zh>|EtՉXD}ɉY.*jy\ɏI,̹-:6#% cKyY-ϑT;jxq}bוEO3^k}U^I.v5֊Q_M/CbTK՚+UrbDGYɗ"r;5+t/"vܤ U Ut?Q*>|t^liIFYU8({]71ܥ[w236pǍ9r4b/Q�dK.mI%LXH<IOhϓsyLr{n_+'(QgRTwI,mP.++-zlŲ8hQQ(^:/s-~ԒGXoX㏅I/ ird2KX:CU̩6Ey2҅xw\j6]+YQ7c.3(F 讵ҊtWZ3_.o#E]<QlƲFdlNEX"7'MԚ_rmK,1ɬ8pMrXjSbyrd\Qʼnf%Pլxu~6sa$dJY`Yb8M�Ԣ3<ɓiy"VaF$W9$<;;rl#;2;aDmC5lM˔ImもÎ/Hb<yr,B OهJ&~[8Q^=,& 2a)E(QFkbned.fgH8rh/,.1؂5heYcD?U),i\#N1B1[#2&9ifn]⼦pҎEQ^켙"rOg�b3s]cFhٮYLv76ٱ+SD$R!#rilJsd)B(~ƓQXQKZ/+-wdq?#*͗U}t6x8(U9HXaeȣTȷ77%n}dr%c#bnEmkJeF8#7̰ù ;M*�4茯$ssm.Ϗǡ*I5Xske4QEYKrMUڌaaVry!QL%%ҽ;"\Ǐ ᓎ<~�_cscccccccb͋,66,�,gAbVq%_YM3]WeGqƵ y#&nTb_cʄ`W5?+mo7(paX!ֿ͍͋6Guvm#}²4k)Y{ͤwGq,\gBwtvG�_Y=s}kE2E8G%6 1Jv,ٳL7DŽ.lnnlYGpL#;3gӝ *=6677;p2\eLlcgӣ#L,N�H1.ScW[+#<y;km} Ǒfy3JY LJ`J+y=͟Nv" H2&#r>gzgrF6ey<f;;>gH.b'f}`džfH;'KiqlUc$7},U~ el^MDǖ9zr8,PQK]nnl9oeMX#d|&Lyd͛EQEjjhԎ̎Ďď;;;;2;LCSSR.HM 3P8|vZ6g.YХD,elt,QGx܈eIXlnn9f罝3`drbrʐɖEQFmqĐL$.$O؂;Q4FUuMۈA">l|i jSB8$GG,d8CGs&2c.TG&ߕ\܄bqXz/KEŃIucscc4;n-#K:Dh|<gQEj,RbM1pиBklPEq,C8BdFedCd2L2b5^"Y}k}oG4Q]lYfŖWnnlX"ذ!(Dy("(|$)>QF&.$B Q^667766,,� ,,͍DKKbhp#xs̵"3!73R\"6*^".�EttWnnllwrڜPK<6EPG&GG,QEzlز6__8.<Y<'gqyT2Ȗy%Kt7Ѿ�TWO,�͍˓;Rgj(f9<"K>D[eQDqII<xDQKfŗ袊(Yelllllll__"+IcR2q,p#'vY1e/Ǭz7ѿy}/eQY}kfśܙڊ=6c%%%ɜ܊(R8e"<I2<4JYe,Mc;>'D>QLٝF-eiLT.R>'u2ת%%"Qx"*pɫNף/o]OWK){QozٖngnLDN16l7$q.\9EQDqG&GJYeQ]<*CcI$o.<ظ>G3菢GHK}<؁؁؁؁>|H 4i8١rX1be 232h'k9,X~KGʉMJn<̳dmfgml٬"K%R>J(A<Y2<2<xQHlYfދ/LcȇȊ)ǞLO1`l\&.X ^F;pӸw ṹ<c|#2^hNC&'5hD6?鮴C�Q^776},ة3{"nk6v;EQE $pJDxdx]lز/袏ij$KIF&.,q!A"l;p3f[/ ,͋,},,aq ˈ$SR_J4?^h̆}LoF7Mx~nYmڍ|<dD)t#<I2<D1+e(K2DH&Ly%.,mɑA Q^;̶_K66,S54;hD&5Q*%"+fŖJwgE$WT5bqW:~|!WK,ML=;2f8K,QE JDxdx񈢗cnl_K/E1H)'҅LL "^GpݖZ,ͺ(GlHe_,QEtK eZq(K|z+YuW[> rb)Ō8*r(DH z,ۮŖY}+ty(%"\<}(X"<92<4+n}lk#FvѬKHز�7Gr'v'z'~'~'~'z'v'q_ᢺ_GJ5TNON,z}']o[ˎ}d.lK,Ҋ(X#œ#Dp%ubK6ehbY%De$#1+/'nl_(D|>Gvl+;>G3菡G#}OH#Go2>;G} ,Ye%=dry뮭7TQ.Ly(<yH 1l_KF,Etr%((ye#Q#ǔE.wѫ5Gll_#>J>eb͋.ATx-#tw;pøw;pr8gbz7%tJ#E8-\&cɼz|U+WJ/jG ##Ŋ$뱱Ǟ_J(6r"rX),ND8dxB:Sv=,JE<CD|Go,ě\8!q"Høwṱe�7͇Lz<DM{9rM'9)7j]Ǎ,n_� E*lU}[.^˲rԟ"Lrl#HQ^3fOeQeB(ʉhyy:$Q]qɛ2,Et]颺ߦ96إ$n&~IOekE��#�����������0 !1@P`AQ�?KtΆ/4'h7_]I2"oBv!XЅPU#B&1cc<JBDžBİ!^.)Tǁp!Rxv1c[QczBU;6< xX*LwWeSċ0M܅Uݙ*2ʘ<dq2[[scX-I̞q�$����������0 !1@PQ`Aap�?>~$sK>#zc?)qqprnnnnnn9qqpϪEh}ɾ*B!B1ˋ"*F9#ǥaøsTe|j;shBpB!B|\= BYp *r3z1~+дQZ*2㶅 c!Q2! |=*2Tc$!Sa<왒7"7&'Ă)4k<�5�����!1AQa "02@PqBR`b#3cr��?L'|4AQ<I:$|{L`!(8)4omٵ7Tg~;#k�N2B.Ѫ3V�"98!iNcEH4OqOtduD:>{lL�ȇ^9"Q]=i ۢ6(f۱ܿFפ]?b/g!D-WS}Jt>N53r6W'S<MtdIwiJ೤xg #b^H\ UJ"iN<~,nϗ?a.ȅj~jeO! ! Bd7,n9)/I"R%!VU+n&,b@x'GzcmvNdopV̊t'щg/[QE[̩ӥp&|"_Ʋ}H:iZ+LiЭݸw:ociDjtE~rb<gQgȹ}/t7WFD"iHMgTu|7݆u8k ЋyDDhL$iE"U W!XC\2TǪ2)Y)tRn)Ff9rT4.fWK7,H 6ONPѺ#u :%ψꮔRtSRnNd/?m.�#NHI'NB.f"Ks#j ;*v)cqCL噇uȇMՙ ]XtGEx1^QFTҳK^bEx6ɵuӡןsxTx 1>ϴ{xO"ldv6Z_-vg^>thIB TM7'lw"Zg\q(U_US*EPl{1$F,m:~J6S'We~s zd~b+D(:?i,%#H7kXO*}OpQ^ΒoE/='NNIL:LI[\v>gOR.Lq'j ET៩ v+]XksjSP*zftf3rX&5ʤ]EHu#Hj)W̆,z|G"x":ԣkVkV<ι3=M0DfĴJd|*"nB T"" 7b-3GE*٢q짍/̭YJ/ZKgiGQMSy1麳+z*S :jo?6x&lnGRj7RU-IҹY*`ṫ ='tz tu>mkHXzrdΙ2g6- t2#N$LܛoYZ)e).*2ʮsv(m%e-r)].6ՔvtsCӿIyXOR.TF4M6*JUCK*_!#4>,>ܟܜ7u'4ێd7~ }}!<>4E^sϝ΢_}1Ztb 3&4AiЖn9BW$B!!)\ڰn-SByY>Y߈1X/;L)s9#%Ol'ܚL9&5iDF&pf||YNx6Qm%4=^S_L.ܹ_w,yͲj.eigbk`ǸΦ.u wbI'&[DDAsRR?ܭ%% J}WS8�3|ku<ۧ)b;n%V&N/nίeӖ%GN GR^嗼%HY(2l\MT݉%OMߺjzvU_bU*D K} qUpqTRJ>NB]F<<{U̅޻ס(Kl8CD]R.([-CUU5?D5cK<Yt`{:îWk2} QWdK< r`w].îpPejMK6:g9*QB8b),nv1r<IJɱҧr"qSܙ {[?_sL$ `䎇BxNN $dyw7<q G[U\%<W(;qt4Ul)h)mG#Y_o-LӦOQ&{6mV DQ+mW T#v7|X %w"p\ CUW1j%*nBHJYeK&j1~MXYGQulAv]lRGFY \cߡ5dN aoBG4v7E�hڗ?qip,ɥSE9e|[FڗŗoG#K-3e䚝ɁcuCq-ہVYN*J,O,up$Qspt)7,ζ�Re-x_!V^[$Ÿ Mm_K[z~\qdSB.[Hm%�t<`O"?v^'͘[Mq6TISsp].9)^0Nϒ& 8"Joܿ_krY{ݴlVYk&RL)r6FlwUI* y3I=& wp`cLHXZ??9{l[CT2},mҲR>%D&1^OQ0zLi'zY=FQ=%1-QF}zϗk.g| USnmL!vt[6w͛x8~ƗL&ts&L3ɓ&Lՙ0^ TbK>o/2sWL|&tf5s&|0` 0`&t'"<5Rr'˿+OH"0`.i%ϑdθ0`Ǜ iq{jT%%T? nj dr.ƙ-{L,Xƹ<H�EC/'eٍ2d=iw>2\ifx ܹyI "1̲=.9);?O3d`3%4,`EfC\0p3>]EvfK-.&urdɓ&tɓ&L3 i>lCӓE_y?&~:YivYEvY3Ɨ13w5ɓ: `2gLt9nsHgNDg"-6K"-r{1sdΘ10dr >ɧCӹr9ޖG"i]:Xs]nL3<J<|Ů]ovs,gs%]c0Id`̙E48<KY0Oܷ嗿,eǵι\? o _ĹucKoK-.3}1ȹ?LYFL&L2&_39?e˯]b{=Kw1y9fL4q&L2gL2dFOIz(ϴF<{>~K. n<ܙq&tkZz,NHzu:5ǶXΘ.\=yN%鏅vHD C|SsWWG㑟:ca/Ĺk�)������!1AQa q0@��?!ׁ$F DЫcLU8떫Э;aī^F 54e1QY1 A< 0bHZ:I0S%^ì+m5οiyaB^ ᱱп 勄%-"X H"T0P_Aelb_ыcJ BdٳM4?M "%)~_e.FɓK)JR^ؒ át%DXm!.~0}/P2C<1vx6Q~:UFbHJLJDwZ/sjX#BRc#ii0c$Y:A+TB�)e }oU,65=(|XS_-q!*xo\rof} , ЯDzzV~'QȈU!_"D; !lx ًo <eX=': }$߱"|&e軱"&n kfbiGFWM b%>z.tدobyYF&Y6586w ,. dv{O0GوP*m7P-?~GQvm$ԋ%t"ߦe ,~^E熅/_¾ N44Dܺ/g<֐ CHm{t/ H|j_B�"j[<n<z603hKߑ� �ҔVp(niBhٙlI]s4ȄZ^3I{4х쥼oRvWN{4 .4$4[!WLx\f / bz#tGK'[6U("(jȅ#&�B! Ibyڴƿqx'dj<Ba|i#Ɂq,�6I/iV.K 0$%]gCtKZdaUC:D$xLIŘ<# >_Ά4Vސ!")= _HY?O!BO uQ$'0^2B>GBJ]B/!!h؍^dhNS1E?L RFf!/}QckC(. ^t*cCqqSQ6vkeۍ�EAD"_BjyB5AnU{Brui5=Iy'I8ic񍶉gDzut~D%C]?LCg}�֢t%�DE� |hm /Hsռ}l!o ([CaPePN[[>5uνsC$&P=$|{p|t6)Z! |BhY!!piS~zVl3Xt2FƷnS#K-l@+lkIBT &*"/ȋKbYjGcƇ;ZHx&*َ)='[*az<t#e;*-Ks޿袟;B~l2v]MّTbm/mC 1{<~Q>WFR&ɍc�;�ŮW3Kd ޵="ukd 2蟃ڝac*YbSˈ* //Q/[|!foc{! 'BqBq8!, !Ke'5؝t4dK l!f64~S,W(Gh^ADav':"mrf;x;};Z B,/ᏕЇ1KJgi4߱ؽz5IGutg%]#Lpy r3Gb hS=LEK.R}^ELW[ױ!6� SD!%5sϛv3u7tySyhi aXx%�vk脄B$%OԽp^WHft]>`M GlCv¶f�A0m� ayl~hDAD! (^"_E_q8AtAKЗxTz!+o:-oNYU)؊߂ٖKfz`3m%$m6ؑK1݇$bgI+)쇠$e&:ã$Y5)bf<N8`X&"]I 4,㢭/>vŖoz3@? HCd:n6-t`vFC񻵵Mg6&ַ.z~I,�| 6Ѐ鲶CZ81WO#b$�Oێ_¾.zjWFxu-jF" ʯoɏH4dBn>lYs|6k-䴂ld ,ŒJ;cFhj}1!9&Iyǂg;xF^z<6X}0‰S1lxŬgf}J͢H-UgV%'˂s3DF�-obسK;V3W*,[Eg`z$+~Yؽt$m:Eq"IEdGFdM N73:Vh7F[NfBq`#!}hS+vU- "48HW&ɵQL$b954gt?> �wƆCJAކ݅-}ׇMuBΆ7r\*j>vߊ析OYCeG'7Lqg="F8ddlkbݖK$0[to$=/F$R!)0<pZ%%z*z{卖xo$dcD2$ F_lL+OƠ/f?И&a<M̈эKX 5)G>^3A__s|o9* 1 +`-!R �o L6�<#V,MyBۘ ;Пf<Uo'egDFPZ ʼ;{7dU/WhziK)t2 PT.zߢ"t8|5mmcŭ-8hH^ֱO~]'YΗCU\pk/Cckt4lOP?Vh!7$2"!! v,?&{,Z ; Y ؅̛/T]eǁFNA2g]н"gt2(cx!lIxMo]6�O%{Vuda.A$OWc y F0hhRЩf(LR[h3^m4'%wL)K.{B4LCPUU7Y +{ 5oЭO/aL5AݡW=t�]w!:;8'=/Kd2VđJ+~/aNג D<)ڕ᎝g=7!�}r�%|t-ZYz;-7ك%4MMv'>K/?@lޓb^ׄ%SIFa#s⊊œHCk~7Ny{=cB}1943~GUі'}!o^;Eixl _zcNalk$ž(e<- m"y1'ҙyf $&mv3RK34)`D'dk9K9<>nW3'y, J;azv>jO=9*'<>W7S_e=^J&R14dٷ?`/EO(&\vCX)&īgB_ $ZM/HG05؄eҰ�<  Z hv7| R,3!&4&"UbI&lmAJvcO +ϏG}SZ!S5X~Rd)ֿsefZ�7T=, ΘiHc',1,U ͹OB]֟Wti�y G+=(Ŭ}@ )o2"E_N%ٖe͍­T<v_ש5S[ƑA~3»Hc̷;S,u#cgIT@X Omb$ݛ#ŷh׳[4Xi[&lz1ٴF)It:fJ *&CSz3XpҗcF`!ENjr,8d XiSkz%p1)ѣ~F5F|<FTzȿ _g^C�0c1jt&m۩p*m`ȥ/5,yz0/ XHy,}8N'|c'ĴJMT[D:>2g$fy:؋7c1W2= Jy4&[퉕v4WhPbv&LF|TŖhF!&X`Iע{xy�w鐐|cbSsxK՘/BפN"ڌV.I$QΞKfjY*V[/2Tt" 4LZ2ϱ㬰{dynƄaQU]={<'44B1_Ɲ/ѡ6CRBX,,/YH:MTX 0}q9|ODN'[=G"JD2߃ ؍_B[א՞OB̔񒞯&ȟOW-9Y<i G>. \ۮkcc^x!W9.'#Ko�y+>?F"mJK�#"2[o xL$ٵm)J. 4 )}$\a~9B}m[K/f_mBBpk4#! 8gdw >N/>\X�o|? /3SC'OZHF$'ŢI|>4Q6qzGz ]u:BMMj15X&fBD¢<�Ut{iVm eey&FKY>([b0B2譄Y5[.joD'loJDd'{.T6tkopϒ-!(u7B|'3B|'q8i&O4ॣX& gQ!e;JGks N=!,T+}zoAo-qY5dɲR]Ʋ;*GF"Lbjr G n_B%]?�f*lɅlD'b܉Ÿ{wFeSr"-Ї.m6S-W1E'=kLPgkBO;N'N' ?h'-sB )|5O"_)OC)'3&_{:<dOc~ؗCA ~7 1$dk&9om{/lfߑ!l& fuҼ0"Qm%,g姙<.W|RINt,ն&LE>H\2q6p݋-HkH"]X:).`Iξ=|_3g3\{XgC�ߎ@nBSD+> |(.UO66K}K�o?$'//1egk3?m$^NE7i-WuH-\%ef=,%Tg~+Շ? k iM(N' 1ú=c D4:\B Agɓ3 oFi>�bC|N'͸wx<#g$gC1"g?efOɔѥό"^ǝAs} BKm޷Md<<Ή O1#;El+%RX.>d\dC Ӎ'? 8d05!k8 l [}6HB&'¸ûȃlmCLL?<`~L?'o65:2 3l^pd2"Iv۠xr]]0L=pN:ɍؼvxC"l}`D!>P&xIyB{e|S}XQeF4O7�WE-$&7L}Uy [1?E/>H*3cQ_\(+�V=m="C0 ?\ȟBwƭ(1~L#rĮDv.N*H\ 9"|'XI#6{qGbNJjKlO#eᔧߚ>IZ7ʟK3ql2)8O(,3_b!v6f>ϤGG쾊~Lr' "pl[B}^4 x^E$]ĬJ! Ut? l^sljOhb֑GJ$)Q q8о/7c-|^gMP-E|Ğ0xG?IO }Bx3�=Cm lCa_h0*/7Cu݉R rH oœA%#z#5O L*Ux_ )50Ee"u!V}'xt6c!+f͉;>!1|5OEC-ȷBfغShHL!!7=)ؾLf}| ĒؓEY4H|NJkL|3oHkg> E=n/\" ;1h0Yr/&> j.Z/ HD(D'+0[,]x't TuBi uKcb7įN{'{|om!܏$~Hv/�>b~Ě:^ )q詠6[*|kZXGׯ0baz"w" "z(f;e>E A#@3!Kòhm)fF$A#'߃;( P8v) K\ 9c(l 1nf_oc]=%uEЉ=HG!!>΃wS4GM1~] *4kM@W7B/(G{T+m edć~Ř�'^:lC0?df̄fFȋȾUc*%pԂ!ϖZĽ B.!8C;G] I7e_!wMti\ /yRD!Nj $HВ|CA}I'!4#fDl4/?d~G)� G_&Wǿxy*aױ9̉nO& *Cv3l3 (hâ | CD0q uHҏUYzXH׹)A"! @Ӌ ۝qJd"o(W f׆]d{lᚌ(ѵCOɍ&8ߏF1Fy3 7 ?%%K>ϲ[gv`YQB*\jsJdl`\=+B|gʹ5C 2!+ WJ;A�;m򢝚!&=*$h2~hRL!3/qKe,!2:В再ľ0F.,5~xf|G#l~fM/e2m'Lpl 0U}<O+W' Paq5|p2ڂ]#^!=yPViXKk4F[lcfxH"0A@rӒ '|l4_e15=1�*Q6|o:18s iM%Y_~%S/Ϸ\G8~ /f-`ء-,aDF|Q0my)^ }zE) 0r+ CAsCEǘ m%i≯" o0mV  3|R8Vg#CBi M {.ǴC M Q+0"/ɕЊZ3dv-ʧB2=s;D2^!, 8!a;e-啌 fW t䅡}$yN=fSn7 ZQR)?Pp!vA%zN;(`lqAm Vh0ɏ$qw^D/! i ip]eBo~BD/2Xl\?zz16.tt 7T!p|�d{D_eB !xdA>Bك.-yFln+z0VOЅ?Fz.hڽtO7K)#D'Jx%%ү s c;1Ҫup_s  W+ 2}/đ.!ΰb)LѹC;:%uDc^ŖW#llc<CcP>#b�4 0Ƈ!b\BJ,뎅>�Cx<aq|# yeKّeF_D-τ/cNt} DFSd唾_FJ*ZCT26ƫV.௰NlŸ `[|PAK?S_ 6y%\ixE0klqBfk �5E'  5?�ɻP<x>(pVW]^đe" dQ+"z% fd76 p�-Ixo##4e0lnH_$G>lㅤe3E”ȹ/A[YcDOB&$Rɦ�Ĭѣa `H!~-ƙ_a&!i1ճ:064GH h CyW+\ S;zkfzgϳz=H$y?/9<:ߡunǢ`g77$F53,َ~ߑOCsFŕ~ϱ /c,짼";h7@fc5}ɂl$F3#Ti p@9^asut<)D CB%p\l''PBn:ɮNkXWk4-=P~y-ӆ<~;aHJŖU*l!!1,>o%=Y`<?ckԔk.i:4!FC2͗l-ދ,+cQ'GƽQ߂6GRLF~16'Dm Al ^xܚ Te*0H$GB;*4k Қ5CD C Ż= YlyVbO._e>'F$ 0YCg+П!ҍ]~ bY\~J/Kc~~$F^!cVh|^^ F$f"*)-~x ZLfٗu{M WBD!l- l$JB!iODl]Nݨi p Gm䫍c7bgK{FRs >aAI/.?bAwq=`~Aj�oG;`#OHSd#-:\ Tnm1g0xa=%D肇_7K}< 0Y6N:}06d25Cl؂(utTCޑ JeB= r8G<uc^pyjR\hj?Hw6_ckMзivK qgD5FK�&3وyUґj&2co%2R%Oۨݬ!_tkavh!w &)cQ` m |#06s_cpfqgWXzCi�fs"H66>ohisKxB MXPCCTSio#U+"l15[HhgHlLSyG lonpjr^# lۄ5. jn+:R\) |pfcaQ_`oN3E2&< 5M+G[J/άC_% \O$1NkI6z} 70$cD$"i,rS.GQ݋,DD{ dThJΆoO,\1„ፇ!,Cv,>Í ܜ)>G$ .mVkTKI"N{±ܲ ~ Є&R;|~85;(6-BQITS>u5NJ7&Ƹc6!y( K:v5 8/&\xṁ*$9sB0(#{⌧� �����g 7RVUǿœTym^@ oŸc(@oz9o.ý )2 "9 Ϡ @>q=+m}+C>$s nƤ9p5ˠ|FTmơyKV  .ڥķ` BG*^AˈmI�%<\*zgelM c7>v~^ D 蛳 :?Z;l 0rl˵ד12WYH*iXnRgI-CP< kajϩRذ`=׿mX }zC./4 JgZv] B=IA גm yizƔ.�,@̨!�1뒈} b_^~3bx(7n1Rr!q V#XZ.$pk3ť5R8v;-FzCY8oY'1]ÀyDLIB>lяru>bӧ?Wʍ}W/}�vdV�"vʈW4<bKgJ;1ӿ2 _fY+ݳ*g԰\z�30 9*d@'* ⱸ:J_V ,2 @1GQ,+VIKQmWQ];w"n.YqŝGY4E[Z D:$)!9k9wh4p[VV9_ޥ-:KMt4LaJj;0MP2k{.ެ.SwUzݪ9@*hN+9Y/pA4G9,+;"հCf֕i`zHN {@�ު!\Zٯ[7oܒ9<Thh/ITtGZG̒J5 N9kY6P+2[U5-szZRqSzyخ*7̫ЂV X$'dRĕw@z'O{I)CŪ�~� XDRDs,TsPOAo1x`FVWVPYcոF_)𧳐ap"6`MJmN9}YIUB]m/G,1q܅� 2]A-Ի'._m]-2r 8�]t�{�ǣ?|Ƞ (`t'�||}|!Ȣ}C�!���������!1 0AQ@aq�?\7Grw _k0;B7�~7>'ezE,'qSESng_z/<!\= 潯}V|+6~wyD{yInzpd _[xXߍc/7 }t ?Eܯ/־&D7 ǤR bd't�/z5(w H$O).'\w6\ b_)Q|O|{Je#("XNoo|q'٤X\w<t/.dWBFD#k_^F""#F|FO.dC؎ar,La_`� ͮ0nXw7kb*E� <(+ Д7hc~fR1^g|hBBS++:FS!^�D'C_<+ ` ohYOS3B.RlhbG_!#EDAL&V?G3>=a}D!K /6o1GHbQElAF! Fs\ؐ6EqaHp ebD,pYf0|(f Vt ^ 1$/ɍTTQEFBW ,j8LJ% ۅ! HE3l"^7f3ED}""495!(U452"0ct,燔B𻟡w N3~X3YCGcugX!�%���������1 !A0Qaq@P�?o3 f<sE&n/Z&5ѣf} eMyD4Mf>g'Ƹ~am.cgsOL^4Z3>> |D4t%re66CY_YZɼg|6tA*o?7zF6%!8LCXcɝt>.zѳ H;dZ5e-.1cXn!.MzByžrO1:ΧgNclѨy<D'zg踣FhbGNw l)qqFŏ&;<K?GҷtxmHG! EѮ{h)k c{X�蝡{ED] /H')J\Rᔘ/Ќ+++±vZ?ò(eѻOjo롤X7�L]E B%,Q1~kòl](u1Y$qt_ _/Dv#{! ՟(CKH|6QO1|FC/٤ Ţ+d&tyyuHo&nnʔƾ(CAhGG^?IO~K+$ /cpKѢ;d96Loa걦Tm8>U Pvϲ#B11O # #4B-͸3f2 w<(t:MСO!O?e } hQx,e5vcSbm \,3`wassPF$:;bgR7ex|^Shh M4B1dü\6# lHH!C&b0(aoGoDdd6Qy/$#kB2d4,l'*S?Ta!6S PiOFC"AQe<Q_E!S"!ݏO wFq_dݝB ,ГeD X]@(D!+#:::&Kn|5qA5$4CQfȱqX Ų}bps2eY+8u.Q_1jv`llH1D4C ގ{; B*`(e..:hbe/ =c(LI etz a mhGhż>>Hi`205#�'������!1AQaq ��?R 6߈mF5�bR;f E{{ej8]w@RA%5%@)p &yH/Q)+ 9\h3DDq4+qeVX&Z$G"XaEv6ah1(R8eWhw\ K9g:* erIzM_UƹW;{x|=@U:M&E81\h i'ËE"]@`(̠3/;n Xbhj yQ`ݱ/SG�đ5=Ƶxt%cp*+s#pXٮȈ*ed]rl]w�8)~ -vo!&ё�ub{MtT Pwh΅b S%G| ˪% 2F�f%&%pyqRHѽLbKMH`Xܪ_҉7mCR �y | .%?ܹvRDH˸` }nĭor xl ګ6y@RG!-)~ wTًA'xPxGVa>ȏY[Ś% ^@Xі9M P (CCyc،̒`r'A[E kÖIzɍ29%.)"�ėo[WFta "bvuu\p#)U@ p>}29ؾrL# Ī01z T USm@JQN`̖6bSF om%+B /q\:!K :qAj�hGL WT #`.Wc,�"v+-8Am~f&R#[{<r^uxB1Z,G5�Pp_ 29 xmo|QLs tt�6~H3jrSh"WӨV?Q/į0l2Qa9.Y\ V1Zv24B =En7kwո.'g%& 2 2]LfP y3VS 7p ttw.Q:ULtm4 +ZԵeTÁXvp320R? +#VC/qOHcUJ[yAo;!o'v,8�+D3(Ow:7c| ?";>?Có;: ZC߈%ED13]5o"_ )ϒs~ɀeFyCB Yp,.RZUQsJ8Xc6xb*`6`r 0{ħ ^X!�JXxmbY-pf'P9_)XCr`ykO+N>%D YOir/9f0s2 YwG[xǀb'6�+ٓUQ)W"L0TO5/>"\pӎ|1>WԢeQ1�E Je_~%bUW*[�Krf^eJ+,^ELn a5e O15B.)tq1(@ DMW1 2c&hf 6X %q2a �-\vА,V!PT64y~(\[9$y<Up15q)$[Eog'pàw~3 &NoEs!J "@REw!N:e�؍mzw�ʧ'i߲\{�`s7UӘ๭\vKS WuOME\ Q@^b[P; Nqw 3 ʫ>!5+71O7@+fFgPb#6'CT"[w. 9Nq;27o9^ `Zv.œaS_.2ۑսJHrO/+,q YO��`3ΧwpQy7/aVG37oDm̛t4z%Į.V5ӷ13*4Q#Lm%̹ዷ9TQ1Z V +[ *¹e,h0jGtJ.V(Y+ bєcTh1ZAMGĮl;*?ط9C#5Jy 7PnRdy=Lv0ap%�&Js̼hLB6'%,)$Jфb#L<x ^zӻ|SCS+ ƾ?1`+4k*)BBCU8NaN5b{&Y[㿘0xqZL ]QDqu`Ѥ>8X9MD1�"{;5S,z_%|@ U`_?ܴ򗣈+w9tFW(>!Bەx/R2E;_p56@B%3]GejKh:1_kbKkQGT(,#3sQFJngӵD\ Yt1q㻀x>cv,pH습k#ӛ($~;דFLWSYs)1�CU%m(^%1)~ r/4A{0q8�V@{^%-u2|C/1 唻K2-�S)@􈷙m2T)VXd@b 3'#+d ޳�G8Y}Ms֢w0;o;=XJ(۸}K91/f -E,9?xt2dn7x L&k~v8` pV~ѱ -X8Tkt7i;+oaoʆ9|>+Buq?%^fp?ۘt>"jE AJƥ)@8/Ltb;^̲P 41['r**`ՕbRQmG <̬C;%j{J8Pxq);;%5d 1D?/q"a I^`/k;`9XUl]/k/0.\9@ kǬ{!Od* ثa qT5 r#NE$1oq96x6ĺ3.eac=BVDNUw=+*i]@aG<>"13Ube̮SQf'~_|AU3 }L1ZD[^@-vr !lQEj9HopvbZOH%֫yevUpCN(W9pbTn5WO"9h1o"x /<z'̥UM왃;@�w X[™)feV,R&y|J`�^ygX)VqǨJyrwÎY2WhMُ0PQ`f JϓNLI;#cd/Yk.<v 1\krg0bM|_Y4KK C>W_EӦ#/9 j[d,<Qu;< u�uܼcˈ`|"m]oRilPO]D'u '+f70ø%n|J`b %@ƃ il<+��hxWEňپl!xrl+Zb mlZ(>#i f*? ݳ̳w9 >*4&:5s g2|R^(9=LfݰVe?:u\@R$P7 7}KP>ȟ8I Elq.:4EIpL?Cm$�U.YרX7L\WQb%9|E C!ߙ!삢` psZԮξV�R>z~ 僆$YP�@�^RRN+h�Z@+�!,̿rWJA�|j ݶQ(7( x >1N46(!L^X�`r `4zGu)& 0U<,ѐj0UFY)zvW3BpK_JZ?fFap}zԱK3�Gn9A m?%QY�hIEoqCHlQ :ɲ9-('H]Ct _He F+*e1}Sf?n^|##*AfƔ7Ru@WC#!r?ATy% B .]DA*9ǰ=1ᳩ^=,-m, X(*l>oiʴ`|o %4~1ר6âE\ol ,N3a&o:uL%ΠTݐx 7|Ѩn&J[[*fN"!v =4~WQōU U ~#3aD|Ю YuS}0:{._DAh ЁdD/!hC145\F5aKZ%0I<GU d4DM+\�YYcW21ő1!Eh 0[]F+'y96CdRjƎ3n mߩ"q 7X)Mh׀ Ka0G,cYB<¨ Ʈ/.fЮ=.&euEhU9nNiu &0ܲ[WzOٙ�s1�R+0VeQ}K9-0H.�8Tцt2‚`4BGюnKJaC*^xKl!@gf:hգ ebޫ5S.IO#)2^E_fd~CESx%0vvKa2qs? j)_G O>g[ PyK3OA ѮU;`!}^"K`/c C}$?~@Sd;BQ8q<�Fm`Jn 6{xa9K,Z{4 n՗܎EJ#2-5(hhƲ8te=Eb[+8!D|0+НMyW<Q^Ls7: /#8ђ;2OsIJNptO|þv4Q.fԖD3EQH!t LD_1G2 *<PJc7P0hu6I "4:` ^ m+Ml-iJs/j/vrҕ ~R~<zkEE 'lsd),v N ;~,L_KݹzV;/ [SR)uyBTi ! gk hZ5]F=A-lτWaloX%]rß8Xmun)ۮH頪d3K!awYHIod沇$毜?1vko|lZ$rNcFw//>uL@jriCcݷj�HR,h? @LZ$r)9 :�Lg5!*۵0So'c�tçKo:(ӿQpĢ<ΫWk,7X,ϸnEy6x`TlpOIg 5d1*Up7:iD>?JSIeD:ЋoUJ3�L -+S]OB*hcAC@A[^D_oݷNԱXl߹geV]U<6Y2 %w ft70Rִ~b9$^zVr+@|EEp( :6ɱǖ.*Ս.zrqQ!*M#ኵ\eGJ4ˊ2pW(k3T]D-,o5 |wFEษ@y�(<:@ohJ&5' g.`S ~YrG Q$z,:Oid4(rsjAsA[f2� Ϸ�]Uߨ@RP:1VpnŦm;̫h_XƽFu|oo>*\2ŮHe.biFG0(t+\t-uVPvpE`Jv~H)ށ$vM,3ψKM媴5cܺ !SN"BB'2겦ciG5g+taYcb~}r�M0wyih+Q[@ۊW+UNtƆP䌟w\|?$B#Y~L:zeVϓ'vl^u8F#D+BkaRΪ_jg=s8&V1]`w;h<?8@^"*?A3l1ɶ}ξ?@ט6p5?]fo ۢ8Q�,iY{�0@;&5Go�̠進y)zL 8Qs/S7_uEhMf/ jLi5~cT~c-&L*:L7#,Fڋew|f+0Jmq�e;HBۈ3(1FpxN�A4-.`DYK,{V*_>bCT((�ckRvw $]Z"ayq*ԗ$>OŒҭ s 4jał � me// <OQe7+]Ec, (n?0gNp0sFκŭfw H]+TjFl�7q &0\;Nfs4dUra3vS 13V~)Ӝz>“1qH`KE;}Wi-9Ρ�3K 8>B@zXۣ3E J`" & :@S\CF/@60̂.jkۡ|>"%S?1e1im[ψ1UGs,(8nɗ |?!c<Pf^eJa6Jט/aJLL>.or7Ad12jo_0yУ͚ԲmcP_70aNf(`=5}ʯQ,;CbUFY"*WUS4#hQKZ:-S.JeccPW=%ˈ AQZ` *�A{+TfИ'̪Z,e_1ᶾW ]QvZ)B<oM!W>seo7�J.�zz~!]&-j l*4+f�p^ى0 P_>75jJR.<*K/^{ +@%_<1|(=h�` s;+@qLT˗h+ :bi@sWK7@eCNǺ/Ɉ)A|[aab*lqzɒ̊Zy%[/ Xۃm#C�Y[u=ABֻ�@ٗ` 0=z`D j RO=,*"x((BLob)F4鎳^ɥ^>�%Ag87�' kcreaf :-T )P|^aZ)]{:-r&0e¹X ޠUXf \7 ^`�qi� tAcL9��%"��|=MJ <D!'q(]W{NB NP)SF >�rbž%lJAKP +DZGQ"/8f#NRUW̰тz^]Ɩܑ3> * y*ϸ F'=,�q WaZmT!_4i_O8.Tb``tus%]GH6~RK&hˋaIG..z`J Kb%v ;ȨB=]V&9So.ԊĶ-o9CV@Kuu|FѫPmEceAio7TcrPq3-P50Ad"m\v\d ׹qAVo1`xR#ҡ[3J[CxUE@ b8X!TqU]ry \ꡟp�œ yb(7q[ Th>!AjsG@=eǷ,1e Ck(̸^.6X ޅ]*c_# Paz@}rܟ@L'-)0e4Ύ`v=ܾ6{:ւU{h\?% 5_APg9/Om/R9䕛4Jl0X"a =cw+^b 1BO;>ey<2w+aOqs\f(*F _C*:.AwKnũ1*V*J )s(0|"%Ɯ%ſ?i*8/wD�>V%~RD+RJ>fBcX4|Q 9qK\v7xi^"pN̋S,O8UZcX+.&�!w- *W\\2G=v놆=ݧkճVpgUw eǺ>c5W\(.X'J@KQˢbU9|DP I<pT1xC x1@1@|!]zCe )*L߈@'XLTlMX(Q,9̬j @' dHj]PktJ0ټs1Ib\bP'nXB[uu 3PNΉp闽L9LpFC5Q^eܪe)R q-y,M?@'HM__JAM.T ?繒X�'%qS#\bm@ef Eܯ8Y!1?1L1ccPr-[P;0^&Ye *;\TP-Q�.tf/ ^%Į1_ψR4(W&<n%9Ki-)jS6cܵX ޹S"gEY?,LW^2ilvo|;}LDݵ~&c|q Q1El<;m%Z/eh>0U*dž/q^`mMļN0 bS_ƘQspvoD溢JSB"s*_U.{4-j̠N%<aK.Be(By` }L/ʬYMSaDu_-Vԣ.lu切"U&\&M?,]mscuA6ʼny1}BC] }LDfcC5eqB GiYdA4$b+Ȳ.%qGb_ F]\,&̟U�.Bas5\p-GpbC C`eJ7~X1ֽCܨ+qrKg<uaKm|I_t#09 >9j<=zEDD=~#ˉZ}B4φ;;-~eZu<9~nq1�N+wM_\!uU?6[[GYj0*:C/W3Fm;ƢpvwGR4* 3rɜ|dNdqŽ Eroq mm_ynZKo>eyT[po@jC Zu@˯7qnͿ1m3X%Fk5D.TU$ y3B8BV*90O۹@!DV"UMB8a#(<�)BI0rM,zJES25 UiԪK|Jă]9~A^S 11I*1jW0w?^ Yqƣc[`av="%s(Yw jfyQ+$Ho3.Qm %MMPJN2ǁ5o7 5M oR iJa{~bib8� F(jU1rw4kn-+\n;cw[ǒn^aN-|T)W~#*sX(T1P  lDd,~fj|v K�]E1H_7W}bt"e^S mn;3NՖfjru ݚe8fnB 0-gPJS/?0yX5d۸})wGA3 ++y�JˡλCK)?qqq[jW]soC8W8*wUP`!ĦIT�?bԮ"$nRgԔd楮L@\Vu�Fڥc !w#*C<J+ZRܦ9%m<DMĈENpF]E0) lfgrJ@4@3- y@LnqRťK +s%Be ۗVE u4.^Uaj9 f6@:󘃊2�z!M%SC ~e'GyJONV9-"kKJփb <*(\k=ձ*}LӔTLcS(g(G,��R )Y-_z׹UV#˸nAܺKLz̡*pgǽj:Y *4 蔐4j~F4 6A}|D|~m V~xdwX890EQYM-DJYDe$ɱ&tr%Z݄&ÕkGJ`@ ;oNg؀PC$7(nU@?ѢWܠfd@nnPkq`>#MjfVH<@K*Q}:eM*a-87yhQ1{pTn9nd/~jd?ч0ߨS]C=Uzܻy^7l;53~!šZzfsAVj�Y@!طL170y1Gq3R숇1μ2WFYGL0Jن&hkfOCp//�?2^3#MV&f8^<K*eeKC�@b$l[4`^5+kb*_KyK~2t*�R�U=:j1稃 \�4Xc}<X 5)хٰ2@ J.]qF!D0/LVQhxR82RMHMԾ%:d�l^czaEe]J/z.l8ΡVc*7a̫|J+%F?&S5-"^mƌmhXJq+>,ʡ*1S.cQN@tLK�BtʷN� IJV/@sW* e qa9Ux/ UW{/U%u3e\GSg`e6<M >ڻQ±:nQv }&q,ψ-au k,>}G<)0q g| nEeE1�J�6}ANF�l@%Ƭ#TAw nz0c+ PLр}N#v�'^Nuwɶ\LWcntܳ5ܺ 8Q3d""Ljb y؁; }Gnen!_q(e[j^.]dgW M#S5)nYalrr<t6'k"kG0/qJD=\6JWp~"ԸJSc9ܺziuX499J⥌Kc0w,L2Tڲ7lqnn 5㘟DO2olf&nBٞ&}D, A{"Hx#amzOE^:*ĺĨş1y+(qt^їܤoԮ ܲe_D6 �b`cE #Pp9/!⽥�yTg`svb6yE[P|. ,BF=ܠX:*֠b#;<,ԊCeܟR �WS=Yr{,a(t/l ^LAH\ n%X2^SoaU5Ecܠ\J RgőƢbȽuD?7)2C,#}j-+_n}0[%P/1Af0!N`3KRY"NZpcoQ޼ӈ�?&TD[KRivT ?xUG:d_W_[h3KP\ws-s;"&. Q*s!Z\ʮq~o`ƅ /\ؿɹ�8&0Q@/#4˻+"%5v/%+A Bcj7U-,gQV4S(|>n0T9qRlI㸊ke۶0ȃ@b ?*h-u4\½KHiݾ%2pL&\�Cg+Vn[dP*P.&,P+<G A2?1o/. |ikSQ?sx>f`o]y ?"1C/LOq+`8X3B{@?$+ =\ʡsTN; 3Cz֦`q fV1r�-bN: f%0lDA]Eٸ\yPp^ķtb*2s�z�>%sFp3@ODH `9?V\mZ 1 'b\5 p((Wġ``\08'Q ~cX4pġPicM,K7G5B+;E t@ 2_2b56i9x;!]y/mbpm?pUuaP*R[eL e诿 /T2쁱"QUpTʼMKla8E+qccl,>byy 7ۗkg pS�5-UF2C!Haod2"!,o3O 3Tii}@(",LdՔ`T[b; >Xx/ &LfZ :8m'Ƽ׸@V"-T>`J_bJkPӊ8 ]:\r9¿YFR U0i2jųu(` D�sj[-�&c f"L�0yQBf=' �ꥳvT1ŢXP`.@mӘ\WKYN >b蹨2V )m,/!/U-NNj6ķ `aB@!` W3:86%V%1$U3s06u4>fW&اl?SrIka|3C潫m2e/ZgZ<L74,'G �c�c11fP!/yQ}Ek 3+솕!J:J1S*p&2_.;?pʴ*6Ŀ㛏^f\ԬTuo1{R?xF�&ůqKx!FH& xPz/Ĺ;1855hh(\<QΡŢgbD6Wi7̣K42hLMFӨk8h^O<0w0j}Jw\>ZkJy ex)3SL 3%]L׈xDj3!6/=@jVfn ዯh@/$s?0~QUP~𓐆8n3ŵ6+> YGо> 22-G@3 u0Գ|bݏf#Q.m||�1@8}J ^ [ʎj 7=�)}Dl` Szb_[~HM=0�yhJ ;f8}& | spbࠇ|,{5Y}U%ԯ̲RS8G8%m\3DF,SP*9ޢ+|?cs 2y{xW~_2alSPFؔX^۹|9qDX}FDejePգ)b0ӘQ7m6P,:<JSChEU*qH5n&ecX/>bc)lB*T%|Y?@rD Vc.0qb4$583[ MUy%t2,\McvEKEH75 :oq&T\SO{?' 0T^3Sl2HxDO%Z6irǧ3Ɵk#!]-3 +ǸTsw=LC_9Ľ#l$X|Elő�\"i*dLQ3@6<|Esf/o9%rX$x4E8ʨk3s+^J =LJ9vx7LPW|M%7tC+#eA2k27M騫"&)QoSBu ٮLk7un#W11wj)Jg@";0.Y>浊EyLM P0J"\K`3L 6DFa%"2F;H}%idQz37j%_2pGr9J0܌ĹJ&e8 %#2&.1̛pEE/1KA9@ǙE׉amyAfu2)�o.]~U)@ҞCq�4TX<Z{%}hss0,qxfTKrK,KJc̺F ��e)(P̴r#k,�v" Pyh(01NZ="URUL+V{x"B~>~<V-|t`!En,+k>%^UCB.g"g  l| Q-�Fs+U\¥T6|9z*jaͅ],^azaQ?0"S Z<iԦh4 r<D6UQQ0U7s, ew(\Mj= gdTb̵s蕎h3nSK<XeFfȹnz#bhesu:LZyIvj xܰX*U5?曨 p �~K>[HUF5s.n˪%k&(!uR~r36a*oKdyƗ%Ysgq(oTƝo׼NUxb,̢1~>eݡ9JL:%\O ޢi?RQqi֏ ]K<Oo9V d0,TfӌZV¢]Am&.:Xô039}d<DKK(_C,W]nK/,U_د;: {s4YJʯ0@"#+ bܖupmJrQ A̤R*�YfbGvO,mRG>ez 6*�8z"!R*})r doZj>uL61 Zf i^Q=|'Ku2EP#f2 \�QАk9䆔CX#Hu0'"0s4A繡|Z+#c۸dF^be˻L艵lU~f| |J[ȋ'An$PD_ݯsķ5GP@^9Q,R_ax%L�ݟ7]?2Ʀטgbb|ʋsq/A2+L|q6-6n,.4a[ĬG#xPF9DJ^z_IYXkƅ�oxFH2]%C-bS#,6.~?Antso)|Ep,*f(y;ƺ6SmbS`E)wLYoWy/p�d4X//x_hNHrb~ɻKb&r~~YF׸?P)KT%ǣe_0 #͘u�c2sڧ%(y`ܫjx+z:p3Zx"*Q˸FlmGq2(Q(AXQ"#YH(>%%iRF_Daוq Zsm J 5.c`0 ^|f-Dp9r*,*h^M8$\s&+S6T4w.c G<J0axupJ{LHbabj9_qt~<$e.)tK%wif9&j.Z^õUef~Ms~#+QS>|$?@eI� 2�W$VK**?0Ee# kf.^w MgRGYg IqǧS;O"<`q7.Ȝ1\_To v^es Z96e^%pjv"Z3&ޢ(U0/1j1|r 6 eRGEW>#dw)3AWD&9,-RmE^%恒*ڽ1]G,؞f>�GE:^\/O^&Z-99qQ44=)͒Tx"8_OJm?n@o l%`sx /,Σڽ aG-bN*s%%-rܲ1KL/0$yA> P1NQ\o^rKO.!eZ%P.xLqa^Է]&YOg#Yq.5^'2XX~?4P0 CPC)1dDT1 }ʦ*($"h`ܰ u!dU)nbbcٖ0d; ~+ j[fiJa G#B jY[QcM7�rla3 P(-|O+e<ѣ?Pd\~i .zh7rv-gr((cC۩ɣY.kPVEAi@MM5ٵ?Pe*�w̱a�&ToVJhGrjTTFr\ԭ5,ZzĶ\{/Tycp%3 TqbQU^X1M_`-P{P O:EKY\ [Qؾ%% JC[|(�(`˘Qt-wS 0EpiEb:ߴ o%-x@,rQr_).b83P8,YcJ bf,Cl0D[�%hx}%-rl?QgB芅/?pbp,^9Wk?0+!Q2/=|A>a\F{Tr.*Ç11"D1lvDblr]зPQŗ\E g1P嚊ӸߔrgRD@ɞ!"kB,"4[fE28w2mxmew+.^w#UC1B1B97^e w.b,(#e KFy}%yj6lf|&{WQ\7cj,rL Gar &gyѬ}^cqkmCU+~*gqT( ?B4[pyA#QWkSqYJmY¿0Z  oF.Ht EZW :|!1T2!|GT/b#kr|ŶIc_fi`D8?1J p_F=@LNG/\~7]j*k4y Ky|~YQ]0<B"uJ'A}S_rc �uRО(98->%\0}r-MKX6BOpңoi8-`?Wr/> Q�RE8ܰ?/ Q*5WÙgV([tC)KO7nn))qrX� kŕr,*T(mF]Ў+l<cUW}RQNk,KmġD20g( "7bÍ7d}(fV!}R9rNˊ+1 O8B= o YR(.RW6+rT -LlAZiMKlWR ߈Es 멨/+QQa.X^61n@&SpDyj +:73J\gpUh?8nYĵL� ڭfʆRO2771y3,f-D`j;- ?hi~ĩzo4QtVµlJ<pVOdԢqQmo�RfVz G2-WK 2e^]3yU.6((pJ(2D#@Vce7)"QXyfKFOQw  oR#N@ m0\lc1bNV\Ǡ#WQE꠼*<8i<1CgO25iIj^=~ <"تJ*\b! !P̞. c.R*(+ԫϘ-2r bV<)@=Wm1)/Q|j" l*Lq.H-D9E ](~"cGR�~~7E.B9Nŗ}1ւdK3ה/ hV7S5,XD_PGE5uZw >F厐yk,, \D |g6D0~.G8ms"։̮]5qH08m=abE<55rڂL W.TkAFv8X\L[S2n?,k�U@GqNsPB:�6 jۊ;g,H*jgYwCu}͂֜MZ~ͼ\q(k/:,�m1F]s)ag�A]ƨU ol9lӘWF|fGP@hK!N3`C4,G'[bXxe1̵p{4AVzsU,~0Q<�kd=&�K)JJepu2arfCp: Us Wٻ4dq~'רK-J=VZ J}|M-q E<ʕ/z2>nE/YGlX( oQ:>l=CBW3!D 8^0*`2pCqp&!wmȞbLqb:^} ܣku�^u' aSOY88# NUCqq_3GP; *@(n $/hB҉J3K<B\/ g7t{DoQ"7O,1ֈ ]:D@Dn`+`,m41mD*gt\S~.TDhrITyf2>m>]�SF . EM#isc,FQuM:KnZ%e0Kse RŬͽ- G1qGԦDsD' Fwf; 51Y//#(?bM~"-tE1|):eɚT W&?\"%]b'j)~an1z'۠N {Ly~!MR"IqED<{rdQO틜*j<iR爾i̫:ؗv ~lz}R&XL5@>E<ᘫIX 4o(J*ax"4}LӍwL@aŚ z]2\ 5k o]Bۛ^nO�9} nV\ #`~ mEҪ>Y<%ʥ6i/pG c\Jѻ[5a\bZ荕\Nfq8 8b.Se;'nʳ"iH)[J*=�>!G&5&IB@0[4T>v fZ <AˬékY gZLHm_̨z(* S sk'ܞ؜z}Yu ׈hb8/O@Z. j\mPG70k im69fEmp+d]Ϫ`" ;1 # }[5.*b+|L9ܣao4REZ` _L�p7̱kRX/wdQ1zx_bMe%2DUd22{UcS6 o) VVbUqYfcϩK9xQ\ k^_mx%<K ۴č:"ەa[v[_\-avWu% [ /p~ BQK;ns4fiwV\|pWLԣeŽ>wؔ~j5薰0g�>ߘXnV`|DЈe@P6SQ�QI Y|(�D:)[a*0EB8Cy<*XZ@Q=ռtg;ڸS`{(%X7[='$/䱟HBPEP4�TWZ\nVf e7 丱\4{@obkY.',aqCY!Iu܌ F GGN/%%y aZǪF n`x~" D̻ts"<PYɀVu b�^!vbx6%nT+ưs;?(j1mǙ9(|qQA^`(.+^Jbp]Aő.*rIxeW(XGdlMRb_2 |E50W endstream endobj 6 0 obj <</Length 7 0 R/Filter/FlateDecode>> stream xZM6W\T}Y l Jo[ҿ_iF֌8QPhjv*0Vﻟ*ߨe|*6vm z._9(=郂 L/?\(كӯv 7$T{O~ kYoۨt̿rc(�HD,U' 'pPW[i;6x œOhCH2! a$3:$A} EΤ~d]u\d'0' H~UuT5h3-~LZC_w/WeOi]P{lB_$6^" Imkȓ%&#r "qS\Μ5]y/'6JV%ؐWpB~ C0"Ij? w} -u֨j^Ig*PkqFLͤ Ew!9\'ն(Wo]9J3qxLA\ot.bƸpq \Y8dMvMu O2FH$U8Y3+!e$|;:Q`,LgsN sx][3,^5&[yH?PW( *uE)EdW<6)gVqX2.cHQݲn,:R\oͰ`rsMߑwiH#dW*M1ƥL xjW<E4u[Mwt jP�,:dE3J;Y%Yn%zLy$ddfi;m:)0>!PNOy.ެ\5ySNVH [;Zҕ_7*ASK i #}7KWUZ uwP" ntk{I]/8BaSBhueٜ0Hf\=</s8c])ȥ[ +B1^%cTσ[-n̡R4r7 ʄV1Zxn{~JHng/;{-QAZȅ[:=ty O3mf%x+U=1^ ' Hgc;6y fix3$%3&3!E+we1^Nf9KG⮧d'i`;F/} nAG9^4RMߋyL~<d_Fb{T/gBs Aѝ PXsݓr3M٠޵F4nlz|'|<t51u/iY 9D+s:hw"|;2J9=0 oa{̏b VsTQo7 6#092MCs)('3mi^۸m<B^`:L+*cZ+CTY.m�gOvSEX?gW"ʎSzXڨw#rFq;/tg 1w Z&}0xV zZ^.bhT-y)<%F|M� t)CR2 ~փ^,�_7 !bruEsse o04 AzSH!l.WT/Jç& wo 7lRk7e endstream endobj 7 0 obj 1619 endobj 9 0 obj <</Length 10 0 R/Filter/FlateDecode>> stream xͫ͘6W\XGɒ 9X!ִCh1[@ sly<OIzϠ4O# 1 ߿2mp} v=}ovVzB/ ,eLI>Y͢6x.ʮghֳ^zƧt~k.t_ aʤ$߮@j3@!">$BFEh:-ZEa# hla$6rўn谺E{"%9B_qY7NRV\ΣX .٨d̗GI3@m.?oT ZO։e0~[L\*uSNȍA_z.ء}-1q ,`0S`W yd2h3DM,L/z.q@.-|#DN{PtTD i}NQv -P~d;\Vyix+n= f,IjCrۤ1.?8 $c]ꑄijCp'pUR^jv1A7LK G dP \ԴvFl5=b,.9ۗCBƣa&NT^e>zM':ZdmY}kUP灝n&`OF 2~ {m5bu2Gƾul 1 lZn6#{6ظRkMXLBFOZV t=Vw0ȝ6yBvi;EGœ8/fi%t3H1z9F<S=ϛs֎ oLi%A**|CY3KNiX[XmoM!E\ q48H0iIx!G{ߎh=b+' 2֧^ianwr< .i>UH�z$0[k:7»;`%x+.e02ܗd~o_)>s?4~P!}sRF46=ǃFx8(r.2FD>H}iNBѧx|7YFe=`Flj bNY7KEy1Dz endstream endobj 10 0 obj 1185 endobj 12 0 obj <</Length 13 0 R/Filter/FlateDecode>> stream xZI, ϯsڀAS3=r=@AN }KDRjJGu7s.f/7/Iw_/K?Gk_?\_t^q1ϼ\7e]˷ja [.9X-k痫^k7,WggScғ7vK|>}t2NIS8DO WcW.qa"aKX~Lcnh1}㋁0yvp81rfsE(9ntࣁHF^`M (43=ohƻۨ4W=:%TDϚ >vMYf�L!~ �YWRT|JJRgE/dil\aƞ`%a0N7@2 *."�r U9*"w&{ܮxڍ֢%WiRG<l޳8YÚ]`6? ,o$PtzSVO0"5+&N/B*R#[%. F=li&=靆k`#th&B\TSo[ɂ<ʬ%m EgN¶`A$$Y8gjd灶G k �hLGTa'lHp'|ivжa/( a]J9AY' ' 6qf6nd~G#x<*T9V' N 2&X,gLru3W~ QP+ˣ]Nxld8�NOp p]N/J7srȒkW桢[ k@2J 7BC(O)_H2kk5G3JP^YdEV*<'~/>g;yٖ ElWš#ZW_hJqb욭Eg"PG|1?H_PkEm*7?wf]?4lB${<YgysT ~0QI`F>V`H +J~]H7ҧiK6}CQl_ޖZ;Meft6ݹcDFt+c<I[GussַA*^Cm˰-{GEh9 Yƹ`BI:,>$EAY*4g8MEI䀃k($]>p!iG^irxOۅP^2Esli( Ni f0"߯~ۈII DA`)E?uytXs9dp]"sx#3QG6wʹj}Yd8(j2:H.%$#H&4}QZQ?մV&j^'y4EkũKDPEDR2LZtD8J[&:U_k' 8EqoWu(sJj[[*5pȠ��EqE{y>ʕIq Y-;xmtʟo˼.t<۳+07H(E(zev5eӍ5G¥Ho͎ ڨXť_!kp5?E%f,6Tv58͌|}9SiƮ'zy4s‚н%!i7VҖ`zRoV \ŭʹ*0K 0C!* F2yf6yG>&q&iqVoCH6B8H9u",HdQD>5=j$fvZ$8@'"SqjRDhWw.,UrT0Pb+: -hͫv 5{!W{ Q#hb00+p!֢}:C1.C9 a�>#N3Kv+DDr<&PUD<RWV<d|yM9%cPnފjוCUY f~&(Gvrյb#^B\/3Ɏo}]BM2fH\\ubS�k ˌ~Ār# (uCABķ[:6nw=JƷʔ=R놪G]:)fh[W>n:ɶʫK@Co*LxGL!"պos 1Y!сH(\߰cYY\B#:SMO'|9ON=\tWeAIk?Ksfˍ(}\uպT&{j,(1 ӸfJd5M#L�DV==idPKQYeK"Dʻ^1R?/6͋ n o(`bj̏3yzј@V7́]Y _Rr򥊢 50Є {%-7/tm|_mi.3% C΄4}:A0>JB@:_㧐 =oo(f1K'nvR|&»#g8si ) mXK|,<LLAr+OI @蔁y(C}J# (Tn!7HTKG9%Erwt;d}KLP Zꂌ$ ]ꮲ]=pbk!ZpŒr.Ή vh+3p@tmJ!M,BLʳɈnLغM+_ endstream endobj 13 0 obj 2799 endobj 15 0 obj <</Length 16 0 R/Filter/FlateDecode>> stream x\ˎ+ ߯z�;zW`݋h "@&DY`0nJ%yxHY\?{?ً:F^~7_?? qqNR> yVo*G7XWvsW4G&r\s?(g)pxm:|_mG /IKq_]V_a:W0QiOyJކ+ɬEΎozx d\ efU85x cE]]q-2 çx{ЃDz`p8!hI)ײzp{�<FP~F+ެ7[Z=N$ϙj-p_ GV/K{ޤL_?HVLxJ=a"HqVS_Z6g.~/I�bWrXVJhV8ᷠWFsk+$ +;U %.Ĝ65NSy#kCxY caoxѨe`ZUw%x;7%7XTX0$1) {!s#k+i6oԴK+h |'7*Dìծ} J]Bpy,vs#21 68(%\�]"L[w:Kg<e$^Bۺce\/KF}R SCty+\(Nq\DBj=V+,2RJ䫹< gQ@#g.B%?u gL+\vޣb�~J: 6,Ճt~-ɽ# z^hx<L.6iua/ܽtCMAB% Cށ0%lfTnkmj) m _.£Y釹(r(J&%)2I˹3{:S1D`5%dj ?ETҖ;jS F7C@*G>X*8[P ;In2W<j#1U(4I"_^7ɂ VlF@ayizv}؆z]QdZE̞ g*�4G Vr՘ SJUf}h6v:.VS =/Gir_=D BR ȁ?N 2Z]4HxgBG�c[i% 90H9ДVyvc=l%iՋ zjnN-<oT2+7np ~.o4�xC.C )FVDhJQ ߣ N @c!h@o!ͮ^hY�FxqbYI%oXz˕Ο/#x(M2lkx'E$JR2CuـU/6$hks<ζfӔ8cϭw~\ftmj06Ei)LH2re4&7"vv}N_1}ed[)? =Oü0/NeTZ!H\БtaQBgW+X@3[m::nuh %]:;R '+8M.5L9FY Q~&WZ.oȵX ;@0P6yP!$E+WBJ*p_EфB!_QHLS x-icl(3tH4V%+0^TI(\)i)PsZ$%|} K5K'QU:]`*|w'), vua /)arAre=5LjyvesZՃtZ?oHHvh\Y[ML G6m= fmXeE8 #U N`L tu0g/Yd.9́v4NbmK4AL-4̋q.&9S!x@^#hPeel`Du<[x'WVV'x2XE) lUoxw-V?.5Um=L¦J8Z6СQj`eE 8so:%k3A?wUw H֍eҲX:f 7qOW]IWQ4xDf4"nJVw*D cEV$#{قZ9BE̍,f4) ra%iCGj?m ZM[ C<�F& ZXkd>WىtP;:kC%5|jty˚T9y5`QCX."֭zJo-!Ql֞"QJSE$aLd~ m$r(ފ1ϘD(Ǒ`iSݦ^ Ŷ  -ՇJt \6 0j�]071 ml5Y߃O(Ml[u%CC*V@@謍?ԬT`Rs:@ f^=lCVөCH`P*^9vT1l]*n"warTxyFUlVX&I##%A<kN(ԏw|PfZ(4B{&xJ|H߿y.hOmeIdX|YV#;^O3 |5&O2O=. Z} +hv2pRSZ2V5ZLS-/o:aEFP 쵸Zx:Q[KV8vNEWmC&\ImSUDx3 T˹&"�}#ngj)!M,-^lO bXOw=x Vn,jMx،J|#dse_2 ϝj{6wZʩll[Ǭ8p5e! nE/౾Au)\,_WR%pp2+ޣ%bh̍ZehwS0-ռ~#6oe3%}d}oUz 4ԺɅࡔ?s�=ٺILN:G>$߼8S5SJs]4& ?.8V*r;>LEیA*JM$exδWgr0*Sv(Z�z2u(ѱ.5YG:X= VGhWwٝ(Cilz"eDoof[]k jK r&QƇf@UkGT�kD`" 2m+7J֎c r$ұ@w7JsR>O",s>S /�N-]$mshQXu)lG\<go{:9H˅Sx u!:}gM)5a1RivڄSj/Ojܨ\/O!#v2o.MS<t$#jfplUIy3}NM6uSòT:zHі۷I~{ ܴ9̍,t1SI4ҭȅ6Gg4}@p7�s|蘥 :Fiև 2~w5>naAka kL"0tr'kTK0&XEZ0/m@1hQp[*<~fh0J:蝍98kݓ] pSd\i:TI@4(5 ~#i~+eHi b4E$Bbu.$G'B K=)\lsYr 0OVIdV,a3pVjiPjULwiA?=(Q\j}YN@Y_?y6YK(*q~v]{ g}60kQaDC|ߨ5?ג*’ B~֯~U endstream endobj 16 0 obj 4026 endobj 18 0 obj <</Length 19 0 R/Filter/FlateDecode>> stream x[ˎ+Whm@ ~�Q Ub0�~H*>=370<WjuzV* xIj.h,o??/ Xݿ0}8}i{Z{DtzOwsyz姫|03\?,B$_oxӏ" Z 1U>mZ/7u~>ͷ7;.^x</(  lxA�qxIRƩwKZPNbvyJ>le/?DXa{$݆KbFI\aR0 &�1Yh;ZTmyFqXXEՙ(gh.m) }v &v<_‹eɩHr^쟨7yyŎ&f>m]ծS(3kP7ToOؼ=)/g_%4 :\KMɖm.TGKVy9lϯh &cT(JzTݺr@@N�UݴnBUX _fN!ou[hT(6/  ';Eg~Ōīt$~ ja9W!01 6CwO>鄃UFSf)U(agtXejGک )43/0DŽQې*_ rKq}=IŦh=+)Tr^,0.Nd^X[,]+c$žKao_H ݌ eȜk 0܍()-A]9o`7p3a;9y#+U 2od6v()|`Fi1WG:BjeH~̈́҂CZ_W5WTtS ЭmbI' bꄵ[Pn>9( w]`%MWJ[7�FFB 2̆xZXA/ݢ iUIj؍UtLs'sVkx ;pv~"BJg&ʮMvwǖOËz[H '%H%MId 6f2Q#A WyP�Y4/ dQZ2,I(rxK ou24lr 8SƐ]-dܨ!kIa2䍓M'�k#qY. ?32]%;)ldgJ<f|1]ٻ.oRD(8Z d,柿;G_$Ngl~%:Jͪ/H EuxAK0HQp> a9'Lyn<l#aZMx;fc:{Bg71/e4Ԁ6u'X#,�a@0`&g}ou@k-g+wp3Fw* \8x$oȲQ[McYER߉"쳖%cr;4nxԙ6vݜX-Jʨ֎gmXPQ%%tXU2ď|hPN !�5GH , /xi'(PyPx,PqkOBp["'h3gŒCbcqҺPՋ(]rL ~$yпeR+be$HJMgƒm\qB%}r3B[Lہ!?DIU9#?˚ե#_,ۡ|ЫGP~Gr>mڎR$Ք( )Vkդ#mT) G\%M @ *HQQ}`}iu(PK7aw)M4I*(bĊbL gGF2*1dJ1SR1DF3,5,r:7/x)LK--3u%TX˸> fтW#O;Pp,g?Uq`ٞP \-[IXY'+<e{OY篘Iha+I見&o9w]1;yYG8dP7y+KDcn^,~Yo?Q+r 4{ݸ\|jexU*l쁂DV7Eb+%3w( @DvL0,K75n⍋wk<3o"gr B.eP0Ѹy擵IuԮTDlk�Eh% Km|D#EEnyoO,aB;9[pȟsr3=E pb+uZM 8)H43{=Kƒ9XdǢ«} ž"�E!F{3d`g=,dV k]:uKFYDX.6ԟV]VE+<cK+ٴc{ؔ/)~OT祧^Fp46T(Rw<%s l (%><!r3(,:6;VnvVYDbNIuƟ=#%,/d9m@�>BСnn[>NTȺ7510qFJ;{j?DjAQ@5PC}_s jnPs&Od:ͫKx bDX~֑ a1EݯTaSWo ΰkoa;lN&fErܷ;/j`CMfڑv܈+끓c??Q ɫƣ>,EAn@JeZUR ӔuVw 4{|^cp.z#!gK6N-UڰU@M`J\"F-Q\,Zidz׃ r{l`ƲzUCkN�Q:՜}q'Vxi)+I {�H춡+9HHb"ϋW#=%!6F.h-{Q:q"X fv2~֝`[ff:öAՎTjKuKp͝8t(1;ϡwll s*4'1qߤTA~LLDah NE>.3f=OP.qI-\6Pyr9/8V8xGgxxh xP9 endstream endobj 19 0 obj 3259 endobj 21 0 obj <</Length 22 0 R/Filter/FlateDecode>> stream x\n+z=@w) hp@AV�L~H*Rw`E<uX/; cVsQepoFrx"Ş>}Þ:}|r#*?^`\ż髸 Uh)7yvvn*mVv^0d٬qVW~K2:Z)vv󿹗R.M{k><n?ҍSK kTTM[EQ&T^n-}K '/-~z'(4IY[5{:}C޻H9ښw16Žŭ!W0PvLV wi>(~vt/`dލ0`tL ߄kQ Ti"N n񶡜eqӞ5eZ\Y/X/J(z �kI+m~s ׻{ j27܎ƺ3ky[X% XJaZ^v%,f`-ڏ DZ$YhkMoDn^y6"OdE7?�^Jvqqy=Z0/fIAaX4bR/`Yഒ895^C jۺ3 EnSRz^jAw:~zQdST{d3pk[:WL.Aڙ7؏un M)$ 7 $Z@kS<Ⱦl!ZT0`nx%c7l1w@*c \@CMatbuR=3(D_rg%H5;$FnjbQ\ -.RrNdrzK!h;Tkj IlR&[E!T6' 38@WAU3^#h%juf![6MBݰDEGDnҼI,wmE55u:.]6PxT!xa.9a iB\dS.3?�ۢi5 (] EfYIBYp=&yER/gY%.0 Esnv|I2QؘV8)z+sY*,`űș$8 Z[\Omv1=)dVXSXƎS /U;͈Gq83“cYD*fJ;.$aeC"Cɣ>lGόL%i*^茆 k=0ERJNUdt +zF9xVHN cN:sM*cPG VKӧI"s͍]]DDAbLs*U',j EƶzSf.r; 7B !򎩮3cLn6x)Y2&FY s2mQzMcϖRk0Ci>g(\!*eǀ>]s'wpC*䓎9Ru[~II%z^KPOHtnF'nƍ(9RHrkRX1ɶ^vzч~"; GtgQa|TeA@(aqM`i7zAx]SJ^(2.@&m,x @:Xf0A I&|v/OT {kShyaD ;er@N4΀ Qإ B/ڌK bTNh)Tlp+eDC TfJajO%qRjzV{"%c툾 5yi0c&%Cl'(gg []6AZw,iDd*7ɩ �qܜl/4jUiDەB51fxP9)9&Pa7 q "F+IMR ?;%D$6JfF[*�zZ�Ic} QbfSL7!ۅO2l2m>&S F2eTn^Rļ^"znY屡c=ȋL\H) Mm#E&8Dp+" %aE/셾/7pRc 5'da1 7,ipg<R27=:ho;@46|kvrK~ق+ ڃބ oB)1i$Ɠr/ jk)\9x;sqؼ[0:VQ+*> fU'y[�ywqS@,k LArum\dĉܐT'V$N(.XrỨ{f] ZRVF�A#ax8Lg ki�3Or&\GiK ^v Rq<ǛrB}@EէH2B\w4v|kK#XJn.FE񬋀Lfd|NH$=2)n YL[]p̚( Avi>P7vPg!N"[|i&~ԶP7f>%rqQyF"P6:X),1jQ*T(|D. ̢_&,Yĵ%M d 8$s4R9lG,qH[7ԠicoWy|ʚ:)9;muQHN h 3n7Tl8ˡ=ID#eʥQ$֑H^Y{]8O Tz@$T\szVwT $(3⻜婚\o1&1dLc*?GuNٲ7\/28c<U�\/I֠VA{y=H!3rnd1YǯT-D}*,tA3jK>EثZ h\6hͬj+UުslU2ie!yy+QXBR՜@To YC$px*Ye)e׌&�A.H?/g{q;9Tbn㉥3YGwsy܃tdS{<G} '`W7z#zoiT-'2 #D~ޅpV~pz'ϰ{X48m�`B Ӿ݉MuUAj=t-cyhԴ:u ǐ&!Z+"sGh+Ga(rGOYF]Q[c9lgbvD0Ck,r~�o`BkEUwvtVz|thCbUJ9x".8Ɂ Ȯ,r �_&|z|<%1 endstream endobj 22 0 obj 3476 endobj 24 0 obj <</Length 25 0 R/Filter/FlateDecode>> stream x[I,@e Z 4`| Uo0A,X"B-N7:X#O㷯rWF~؃4~k>Hu"ϯׯ _E"Q]YEJ?wYq~GGs˪.rZE8]ywX=Wnr7\ , oRny=&uyS(W zw?3Jrwdl cٺ=e;TV)8Fz='8!g';fԂN&ar _ᓨ@x4he钊*}`(.=mG}DɘT91>iS$.Pw:?۪t[m<&~V2&J[wmY7'QF  J@7)=zx푝;CNHv]Z.9 qRt[PuC< > رf zG Yj# 7{.mq:[χ'3NTWV 5�v(ړA0�!`ʭrŠ^@$dފD89as m^bQ/:a*"1]:dltc{|]u؁" f w%�~3hXGR"yQm֗b<h ܎x 7U0z}{:5BdƆqʘ%C,?* l*yT9.U9-P=08@G9kn#_#:U$`ʡl8ag.cf(H(pƂ&y.Dg쑦v^4%KmZJG(gm9k@S0m F+pF; ZLax�dۖotEJ`| SRpzža~wT&1UE ],�n%!a<(3 a_QSee2ᅭAm<5U`իDb72x)R RM)*ކfefpryaO_AxY\^:ئ ;Tk`S랈b5.Y�R+q^9ڰ0.Pե; +Ļ A:?h@o`D{Leh_A%xB}(a0DQ_/$h,b?-orE|e^ :uM-nyC9ox]IJnG^Bk06� "nbQ۝YžQ?gL+2.~ژw=)ek.F:Όdp2;Xv*Gm1KR̕i!d,L\Ey-UiC7Ħ!T0Ҫ.[;Jlt&S/h6'UOE$OrP&p2q[C*U9^߸ .Y}Y+5/A훠>FWUXʡYafe"-Lì̞l(OLuyB0tH"a!^5Wg 8fvD+cϑVqRNYtܺDŽ(Yq@nF?uL':Zzd S=5^Qe<L~34M _J`B#up2P$*tWfbUOfv{6]}cܻW|VyPgR3F6AX򨑓2,EMOsRRuUQ<b|V+bUkLZb9 Q_X@0yl+)x;鮢uY秢@/X-BP4Ҭ>ؗ%FV7cqY-ʚ"d䈅C p9IH]hE@V0%ְi̒0kI2U5,e&vL<+žxbh[')0}sLhL߸Ԡ^Ϟra |&4ae=ݿs,uآCJ  G-ޜ�9+ lI@-C7ɶZa|J "*ƚb(|iˢ>*/P]B;Aׂٸ+͛we dY`PL%DigA[�D.',@v)[r !0S#o^@,YmyY-Ktke酤@6r΍ PkcY"Ux%42 8Nd]7w7SX$m0 OXJ:%ozR'FL"f^WTmbfYj4(x0Tl&yPw-RjQ?vQv}ׅrN}TrT Q.USJM\,: z4W—!>6-D6YYx`=aN$DKv0hiL}otu K>r<Ȍ_TZUy󸺶l0]`)PŮ (G0,֚t; (,abJ++B(f N-"I›Z?9Nm]K>/"=s} <mjFV$.I"4#e]}1f96?ھ( >=-s҄<X|,6e8A)5TAWZAdO{xq9^Uj9o൞5߂/cH/o^K;h8M}˲S_bzAIa C]\BT|Tqkt~?}I dεK"5?$MA;!9ZLd hV TAGBx{Lfd;##;z"x ir%*h/P:PNpMGLFy[Lsl!p="xB{$BaraޖdЎrZґc ˕³Pp&I?/l 6Ln endstream endobj 25 0 obj 3080 endobj 27 0 obj <</Length 28 0 R/Filter/FlateDecode>> stream x[I+ܳ -%oc7ɞ12߱ y{|Ou;?~gNOoOFuvx =,:Ӧۻ5ɼitZ'n#񝺪a<wGxGTweF͟]]\ƇVpo@_Y\te|hLʭ+hpc UzH bXMh3>6}؈>] O,wǏg7(=kTW#m0Pg$ 1Ce ŌjF<f"$s"Oud:_E N3s'_1V4'h: b#:}J 6> (Mg޴G"lmӷZf lF 7 RkWb<yH,f]fCHcɰ ;|DnI9ľ~5 `_qEq'c%+e&6GԱAs-`yb6־Aq!8'#NK8H##"pv_eݢ 2g�1 Y=%É8!AP_@ޠ 4f*#*3IF2e)l�‘4r[T)T~9@Ib6K'Wqe6 NʦNd R}/;Xh˹}w發D[8`$2)q&1o\'8Ĺ"*Z\njlq!??˒5Uj; @K⠧Y{ ].{Ӏ%Ȇ20E֕v@su,vqSt'N/o<t& 7՝4_wuXUH'c#S]= �`3;ry ߠV3r-(qBDff+^_E%_+UXEu~Nq]S,'G;5hwjv1 U\R>ɎDzf|:J3@08-c1tdX琝NBS يېNk)[sX\ET1l4\JY j >m0_YA%7NLM<5l }ъZiTv5HjT~Wld|%6%  mKHlAN})t`{+S!ʢ=_ b,jɂ[~! + .1Tz[@2&}: ƧJZM*O2YvLU; ]80"SC4D,Avf'흘Fo0*m�@4 e;4Uζ#0VG~ p03 uXm!:2km8xp-JƝn 6Ȗ0l-Viwyj]""Vs*?C[7\zV<P fwE "0dm{t怫K76ha΍@G)N,n&.d)雴yEG?msGĈF#~k沈ic*Ҡ UuG%cIw2  &i-N1T'  e*V-Ep"ݫSv ϡ80V-m ghp&zu~(+ ?t.`Fߵоl?�]Lu�{!\.^M IZdIO59tʧa`02Y۟al:{ih汫cg"m8kg6o;ƃ8^;{XZ~"@H_Ƒ"ʬD|*\LUi-ŤA"8*u`V<a=7x @? -fFJ1@EH=O{<풲騡i[ho: <()XazX.v|�}>iKMC=)Lby>A^V*En+XʶDTb_&$Y \WY�$&Qp6}Fǖ3rQp; =dg]g΁XJb,S,MpO9&6m&*Kw-7FNz-eTZQN_yy43CAps*b'ZK�yS ތǓ{LX`-wŘ],?4O1&]s#ٹ~s;Y*z9µuQ[_'u6U67a=SMyj#xå AϾ}>Os&t^mywpduWX\O7?{7J:*�meپKMn kG�8xq X3iSx >O,KSh/J@nOa3|mRIWTˬ:4ӣ6J!3I7vdyB*fTZV\^v^Ĭm[TvRR:&x9U!?G}hFOŕb�9 Ɛk\=.` Ttd |1Zo"ކ{«Bvp�FM?3vaUs?i.ʁⴹoukX^ �+egty3Z<,oU8|aC͖v28z`~7͛Eẽ) M])``oٷwaϤ{zBxXp;qprab2k0` Lp׊ kV:Q'{j+<.kq,>Bx/~-kxbury◮[&WPF]Bk<`}0&0]1xjx<f'{8Fm;W(RO:YV36;̂%_)8Lu Q>@)ûݞ6*eڱY1#2s*RQcbR̋^hO7#MN\Y*iZuzsd_?vmbe endstream endobj 28 0 obj 3145 endobj 30 0 obj <</Length 31 0 R/Filter/FlateDecode>> stream xZ$G+^VFCABv2ZG8k@;+E3 =(s;!Z8Ƿ_ 7jm4A>~~zw;dޕn*L:NVh*N''ԓ^q:B7ވ+k\o3BBH慰wǟkәfAD q{hT? 7|hWYZ]XXxI7S)K(TeZʿuN\%#ƇY:aTDJ<7Ø_I`3bp{ V#n&&6.Z<),4F59bSɥ)iSPdFh2G^Iw3yʌYՁ|2x{6Sg;Am%Kliv [F|h,*y"POn�+�#zԅL3*Rfd2i-ma>bD -۶k=K<[̪Ĺغ[B+Q"4$Cמ`z6mf֐y#|\NTV/,$k &>$�T;=<<&mN;gc?٭UD_[[oQIڰ6¾_{qkV@W:1GI9vz0(dH%X=SJ�g\�N,+\yn JlsMSV.oK/kRJ^ 0M3"oYI z)!%OcMG&$IQV lըIV:3(/Id>҉fr,md4gA{ޒ pE.7G:|xv(G/tQMzEdE?He4L0^܂O4^+{%U@J6TӨ<pm8샢w| bFZ9O" XK 9&H$]#6i9iZ,/U1̫S^ l~a7P*2BMA;><l&82*bvgѲ=l E.4Fbd^LQ>G{2 XmnEb8ӫnJԎE}E:-UNx.P"c?9+ \=Ź)66Ii#]8BN C@7A`$| hΠHfF^ tY M$$o-HI~ DwxkP]9^ufSa?#FkæRgK7bdT'%V\bNT{8G2&"Ǣ|= c23& /- rU3V'*iPjkBfs1'=d1jrJLޯ53J %9s AQ�q#/^H+J RgWAEA\ Zt$D٤=]qhs۱2́΍cfAQIT`k$@y1 &ԊċF maD+ܕe1qqg;4pǺiZ^/8]:էYRPvƬ#)a* ku4o&f>D&VV/妰ūGZ<&f,dֵw#V4Cj4զI˱`vGį=d,U5zL(|J ӸF S#X&Z.m\BoxR8hl8-@ᴨ[إ/`V@֑JJmAJd~HzdH[ʕT$<<fݧɱTX;GH}�g;58a5Zn +Q�O�dX\J[%6QJjbXWيhrڳ2 ?>VMRKwF|eMxL 8G<F#˵kPֵ� ݅DTR_'5f~3T__p}7q2SI<4?)/46n"J*H[tnRͪ̕X]̥A dk^EZ2y%IHU^aKR\ jloRP+DC+C{CByuh% #C}dvo1/+rqn6z7R9ְ{^LF..vGʕ[ d17Ƨyy\qxf4oj1jaQ".UM$8,~j.86]F?hտF> endstream endobj 31 0 obj 2276 endobj 33 0 obj <</Length 34 0 R/Filter/FlateDecode>> stream xYɎ6Wl;")Q@@琛rr �%Zi kתW+4{&8ۗ_>5koZm߾4_?q_:SoZ~^]{[�6__ o0fF@ZjaF|y1/iSvi<J�.WB݀&`.[|`-yZh:� Ka-u|g�gV}m'eof+d~hӧ0\<g l皮 8;F} 9 nUo6yH|Nt,[c>}E$}EJIe5Ҟ:z9d^'yW+Ui Ap*QcBtpl_̯3#4y0YIb+H[#Tgtb^AOG:D=AòwǢ*̙) # 0d&zC-r\F^@bN) BYhy}AqWd$E*jȒ \g|쳵W[6ӆy&YvC KfGXmiX/[Hʞ _W3DA$�m Mcz21]%<Z#Xdo#(lIzu"tlΤq8$d$Zz՝�Ԕٯ8? DnIF#I 奃O('�ӑBfG"*(F"B>B3OI2L?;|(S۵ ͔s4YWm(1ݪ9bV+@̋1o[}]Cߨ\>C at=ΙFZ"$S#~|`rFl77gp[h{>{nΩpg\vqL#F ?!ƈQ۶in}Z:JKIN}$Ahv ?:+]ƙW _"~˶U%$U^kNLӄd.cM% ;d6(Fi0[A_n:!՚ se=2qur+H4`?gEAȴP9M~K' wGߡ o A_q>t?(LI-ŨI�K>t?TuTtD�؎pRC(1-2G<I\0pB&Vy~RkW \N{~.8faxAh-)w,?&J -*UakZWѻa׫gCDŽG)y6Ha[} 0%UFUy y%^ 2e^K{m똋:)Ia3sA,ggyә:# w'ͩXT-++pm3ފK'"y{qyZLY 4n"ch;3'U j3[.YqrO\[fV\gSy+iun%<ղ i`#Zۏ6fK åUV~`q3>ǺU3OW|q sQ\ -:i;Min+4` ݰYkbs:ڮ6*B{H/]BΝKmfZflsa { pf\MbN)&JfW7#4c#84 ,<^[Wb=@T[݃ۜW *6]>Ihuޅ6a|m@y׫SzAEi=\ąY9%) CDzG|L$<GBnbUWFGFZal-R~N#:_@)WUbJ c˜F9F/}nP*< endstream endobj 34 0 obj 2037 endobj 36 0 obj <</Length 37 0 R/Filter/FlateDecode>> stream xYK+ϯu`` @!\"pJz=pBvu=I*L{dSrpJ_~L%M?>8}~6p0}FO-3;C4+!\Y> &文䁻gk<#́3̴_xn.a+2 /~k_XONUXt I>.l 6"YϐBz\7wז&`^ #59;O; NR=D{ ~'dzZxe> ލ;@M2W3f`Kfӻ{3)lNdTsL0NKKu\Nq騵Bb$kw�$+Yzd??4{"Ezuw MlȚo4-܎,eǴ lV`I^hX4$/I,$v)fB63ɿ|(iUL# s76;lG(篐Zc] ,#=!ڢ-9Ҽ=Dƶ+7B"=cOx4?G$<?h |,khMˉ "X&P9ޅ9̜x0x#'~Q`yG:7gj̝d+@x)`7~P E5U tb&)^|jt Z;ݯD"RSr< 88&I"d9-߳y}4f9;E^`5Nm0:;�7OCٜ~ MQU15؂lT 63@IlPqIQuª'\~ɖ/MS a[BbC!TD7#ؾ"iik f`+JJ\!P(a\mb76֋uX Y8cTXNr9}u\ۇ+Z)O?sXp9:Û,gVTnnG.j'- B҂HH<䬥 ݋{.f!0n 0QĦwL4tY*X$%ʖ<hmwJ)gřGȋi8ב҆[~% <Ro3h 'qȊ@Ac ajg)J\0ah凒gtфuliJx^`>)C5\ MExdĘk- mb*TV GQieXl<h|V�^c\^ ~fW9AL1fzlL%R?OߎO!ؼXHF2)Jʫ:V'4PH̛jAcv<H0>((ZʆKM -h9bWNallȵ n#P mvQBOc56rRD}\+zؒ,Wun5lߕJ6H7RIAEn 1D69)pgzV>U.b*|r` Şϝc#SkՂп1wrJ޹tМme}c;Pvג ]R9>&%Z5Aɕ5eIghK*ƫr^n V?W% lm}I1(2c,^ZVMnDn fe!/ilxs}ŧ5=HZbE5`7ɡ|ZY(gI(Ƽq"a1:]wX %r:  9wֳ`~GA*S|ug AgfRK{lfҼnU98 R+KZ> ̵mJ_Q'L[?pv3k%h_ DI(1%HΫODloU[<= ŚzƸEż]RBK1?L5,ŠxzCPq~Iyw4K[78a6bԒYQ9d)(=#3p{"F-3]CeNgBMn5 gX$RHNEM 7CCJ:ұ'8%N2貟 endstream endobj 37 0 obj 2100 endobj 39 0 obj <</Length 40 0 R/Filter/FlateDecode>> stream x[M ϯyIEIm`` $Eo]^+H}#�MlɖH!QWp՗u\ˏ?֯YJ]_=>Դ\퇺/C>/j@=.ZMu>(¬'3׏g0;e׬uO~DlycO Ѧz2~~ayG^bתgo_{Z'VZ )|B?5(4P.y $6oA>aI�zIy:O̗_u=檭V _6 HkRZY5k?ATL᳿2Q3-<(?=P.YS` jk)ԍ~GB5-h4AG!⹍L:hw$[+Bk&|ra+o,GN8CWD>g . 3>6 �2 @jPOmOyS[ZC`WOUf }k2N 4%]JÇlZڛ2#&i$ (Mz AWna2Ś0Ra@U05F!}0I}o+ۀ0NT?ȘJ�/|t06i<\G᳘qj܎=Vga7ԭ ':}ylDwQR}bpv=^jO\* [JKűau` a$(QCxJHZϒ{ t�Qp EϞ޲V"<Tiί£C};`1~Lhh<>n׆[踱zX8hD1]0lӽ< ZDŽH6(,x0@V:Xlp'wC1 2 22&Bk I@<ǃ=Y�4|h~ƥPy.ls$Yvo1wEwR$pbLxMRkl:<j"DDt3 Udz&wrZ];T[ud?�,i +e xCѥSH6I<*UK#th0n hJ UKE9QrL9/yD5ɜˑ}Iz9ᕧ/{)⪇(/ ȤbHq )}DF{.2Λ8<I=uS}QT0Rq,XX9IFl{0?& 6)kˣ"778NO[1,|#7^n0IݢaHA)8M B\% ݒڊ~̾y;]+ *Kac?n02{L/G^Y!`g>ڶȒ up#"I%=y�^Stj߆+O\NMRzH[d\Sr1%붃1N W~fPPkD<͐F{IahGRՁf" ʕs,[b,$gQCc8ui(UU;a Q.1RG\@gYJK�*8xdXQ+Dlp:-HܰtR?pID:6SIp| F&N_aEA5חc1ǽ_* g*Ef#E t$ݦi︻yYm^@#=zlNLX^PQg|2fp 3*l!m)Ӊ1IG^M'i}W~J`\|P/CɂJyI ƖWa( !s7̶!&v᭟{k F*Q+2ghfOy6&&3햃"ݫ22@ᆅ'&UKE\Ww;NWkncJR"T;RȐ]e3#W;[!!3cr ^[)\'p!W3ߛ^2ߙa"jxo;::,q69LdOZ(#j*7*gwn; -A9z1K$z-쿇! BaG^W YqYСfbX @Jɂ ϋ5c:͒aوxHW,i*KpU&S.Hґ+r}|73%Y=haB+VˆwsdѰmM.I% dg\ KAMy xiUaV<Ybw8I^O'`H m7TvDg<9x*4NS]?徖dvN F7|K)oҸCCsql9>Zqnwz͙ 6aJbS~?_Sh:pM0  E z(ݲiz-9J.*=rZwH T]KKwuL[CE+bbF-Q6ih_E'H[a nHC*c�;*y" m)Zy ?2[Q7Jzɋ<f\TO nzŨPd&E#Xx鱤{�)S&-<w8cSzW3LRfim뜦4 גsϯBяv`_``=3m K ڜmsŔΛX,N=〹iN+ebTz֪(}eQ56%\VuihMW}TWS4ϛ^@YOh@i,&z\aH]p/2bBE`+1b@r`}> BCp#鞳~9M3b;0H K.*`^!0}$lpEt ]uNMfSp38iXŠ=RⴶݏdX&jy"l]]߬ߓwY8k:}p7a'�oQX౦ 6ϯm*ѦDWtPHk裡F-i(E =O-}Dwb|٣؍_ oU4q'Pv~ Y?+g~.ǧTJofoŶ:$~͋x*9lSU3Q ~dQ6Y- ;;_yd+Dρ7+٤N@gW=Ձgh rN>-@K~T?NXHxh`d\!bx endstream endobj 40 0 obj 3428 endobj 42 0 obj <</Length 43 0 R/Filter/FlateDecode>> stream x\I+_M>6g ><}_Uz3^Kʪ-c"R;_7.n?7;ۄ]0Mn7Cw17*vy!~eߋMbSýǤ{.71-eۺi=]ݳVBcd/ s 'q|.<*cj0Q؃io,9˓A&y9mqwSf)?}{~KK˪kߜdKS`-hGX"hGkZd$ïNW+/_fegd+pwkG&>PE5{D :/[P5?1$NnqZ;mt= mu) ߴLmSJDRQ 4/v_5c3)?qu/lEʦ/'G˃L<֏<Ԭw]j윍f) VcSiC 6f]&fÍ!: B7NVMYZkU#.!#8)x *{g:+ˢ?#~ u!N^6/3}X Lc xٶٸ,@\HnԻ !" HIҊaMk';y y~S$Aߒf#k)DZ?M േ[u+«\IMF}pw#Z'͏='ao"J'QEClσe KՑ]!Gg{l*fdnN^(хҶ<Z0KQH!q>%os0Nyu6eX!y ܠXdtz $m05O&ZӴH_o!gY ,H4DLi3ӝ̾7Oh,L>*Lg5NĪ 9˗K<l̉d~jxPP^0Rjçr,xލo?R욂cFן-u C .9GDiقr1ȖY yg i! -k\Cw:=|A^|\52BQyLQI#hk&kX(Hm{/=M|= r),URծ[d5`pt\yB,3tIk>Dr紐cLS >\9<nRPT@Q7)Y+q W)2'X\ɼ*E!b9J12 Rͼp"FspVcNsR3{v>w~."vyRяp(@`1$QAo0n]dC FHcO?dɑoFk D (C<(ĘLh^dp R-SCxIr->a̵<i ;]K]qU2yf}e`ȆRMlp�/�6+c[ϣа2.耨[ͼYqu+åT5p~PNWZ1ŏ,`lWHoC�d?P뺂)QS!c]a2Nert1V"xByv P[g\?落 ;j5[oXi[x5N@eRav^̖uaKIY[ ̦m<| 5ztP43f1I XW S69*n#eCl([tN INtna_)_;N-K47jvegr 5T[�ine=1%fnʸ{QF0 7T7$/A[^HjjؠUrs'8Qd60(e6Vm~-C (6BA^1]cLenf`iĺSwAc?V}(M 'qпJskh*\z{ |Z=6=#֠5#}S &W"H?jXa@1WM%sqE&E$B%|^q geyo|/]W`R`fj7ZpP]kw Mfb t_*ZLn!DoaI64 zrm>9!]Lf̀˔T $\bM--*v4LV@zܽ2H@ WL1Lm )huˍ %,0N�Wfo/ L b956x~H 6A * >SkT0K*{2{AAI \BILa"JwѾo>X]PM[)Vm+ͦ-T ?Y/H@[ %�`�-x>㛊9ײS<mJIߋ] X5Y[XtܭWLDtmw/LN S.yilqSu F JUB �I?e[7,NoƓ>F)d՜t9$dls*R*8V@0#|<�7d< rp}SZl3]wzh݁WFVωYm/OrB7-ؤ;6%4u h ~ll �E6u-jM2gd_YV! r(nwt+deU*CJHR{(_8ΥiөK Rc=BISK3i홮wAc}Ou8h2{INv,47%'Ԗ1=HʹN#yÍ&r36z^VxӐSYUNxƍKETⷽMdS4k DD8XODŽ{e*Nם5p{ˡVى Ts�6I}ii]U}ep9IXᬓ,G$5&Ts҈]NҾ8/k5Ær \b¤{/1&ȱ1fB,Gw;;mz݉#Ŗnsl,\{0BHPǻ#K4VY1s:2>݅mTrRži*u_kl&)s~GޏVf=@Yfx\6+}!r>P �INB{S2GQ~\BGuW\~"cx 41\l8Ûun&U~$޷|p O? `,ȆS&U%SzӃn^z PeuN yy|Mw@ ӏ4Y˪=nHM gӜxʑHq[ s!vk'glw+1I{O\r1K7(ʃքp4$Cڃ'UsG>tb1"i'S( ,3.'Ϗxsn B a@YC걿m?wVw@~ugcV"ТnQU- 0)Bj}.)2!뚔lˤ>݂hk9 XODT# ݨz$!tl8s МzCs?=BoPq|Wyqd ʼ,BHTc0j,VfQjvSRMr4l&H' ^ZSc1Fk*G${PAȽ<#wJUN0XNT[(adqg6&b8a]TwN:%D+K8?(;?ؐL1`=UKކz$y ʏ[]l']ql MPBae+/�\[ endstream endobj 43 0 obj 4126 endobj 45 0 obj <</Length 46 0 R/Filter/FlateDecode>> stream x\Ɋ$WA5EBFf»^ {߷+]4TuFF(;;M^ߋ0u2r~#.?} m|O}pqw4+!^yݯ惺o_ogo6+ >xJ7zW/Vy7|dRW5xgﳛm_'?v iSݚmHWI>X.KOJj&fKw'X{~]+w=+&>AN[&8`~ =FqI/N"h VJ@Y¢^6.r B$N*[ZY~$PkEj 8JΚo hu9˗>(uͦJ 6f ޜ\ *k/Dį$ CmT7 0W&k NjTb-5ՆI^PAv\< jPZGAftr#(UtIq0l_y4aO7+~MK#( nMWkz,l cм&^W#"n 9:udZm&r8z@9uV;/Y.VNw!_n `w;+ D{1xxm;uu"TIŞgM<٪KddMlsv Oil`FA$_E%^KG+ZX>ve8-o,xaS|Oi 0!:c 8<7Ms+-){yH*=f ;E |Rz-rUYV Q20eFiZϡ <ĐC0#|E.aLwV2uwu"ܯp*&YJ> C.t7?d!:}dз# 6 NV#x^MŦҐL&0]Yp QhN`HT5\HOM`2ܞA6u 6#֭b tbD6)ָwTu@ynЮ6&퀰.8̬0.'Z#s$>*B+vĸ"!b[#ѩJUEٖs,oA&R'D~5sޝD]lGPp|O9&)k䥁 > C/q\3-BȲT9I<_ B]%рJ}0:=̴*aXQM@>Zu=i-ϑ-Nv;trZz36@7brD  iHYǠ=�f}`minRS$ǝZmj`{8t1KȅB<OE{uσ:w6:\wm Ť!lQ \'zbT|o-gوAf^ܗJ:eĻ`wԩ<8)a!ufEq,fD[?4 +yRF,nkk'?5&0dlq !IM<D0wͤrOEu-H6cn#؝g΂ 4L2CUlk쾧s/? nl9>BAE;9]p`6O$`<!A#|${C'y tBw 6B,5ǠaGd7Jk+w]V8zi9z+tJ><?M#_qjj'߬Mlʈ &孌4TQ|uLÕ,A = K.v)A!=j&a3ސNIv)7kOg>Q?VU@!N_b\)s/6Oh\Yg؊c/=IAh8 Vr%0y<VOg ;IHȽD99E+xFXIB:_f4ips6cɛHaɟ H?[xA9s{`|(xE>S(SmZnlU[prfZҺD ӝhq< 2 )nXS*e4x*5y) }^XpH)"yLJ< hTgg z/LwjP'=ƼղTDaѩr[`HGUlj\`N5I"�"/fY~rJPyeGɻ=dXUSO4$ I3v{3BFK\ۍ09|z.R &w_<1_{Am $m~VIILa( ~k+'80<MD)ݿI^u10In8*HVW"͜ ]5VzbJ &s5ݠ+Hgs6[qtKjN XvRS>1YHOal̟Ac띢$2Aٹhn~rdb4l3ٷ:' _rW7wQ2 $#(@?%,bkMLzM[W[oYl64}t9EL|iߣpx\b` 2e%8VN80.j_ַ@z<Cwˌr!osNVJ_ZFa77x٠SHI+kxz^YˆCx2Ʉ]p� rό0Mxet"Pl;j5)3mZf'd,.B7aYb}T=H b;a#]) 3c5Hsܕ٘BK}R.U&?J}ÈN| gZA%}Wq5bok87 wAu ,9HIy\qG'DJbvOJ$gXaʪGR{ )-M*jWK [4f+TykQTlju+n%5]jS/1`<`HYl¹/,bcr䤎#.ST6|Js`Rqbzhn6Aˆ&*jAN`߆h8Òznz'sj'kϜ 8 :ߨj756=J+i:dWv~[(Q!nȢdwxZ ≆PЭS;U!mjPxժy1$T Kj~4`p`jλCs*p=ޟ=L\S1!XoWB4T1 WT}Zë<)O ^@ H"hV} WaE'4@q,XTڢS)ue'[{;):lM$SGf~'fVfZqѻużS,嚲$Ú<I6 QisBT0s'hXRr-q02 j$f]/-끜Рʼn7?Jh ZJگb<8L?٦ td)ȝ}6m.O1@k?\s#&8p::<4wj贖ީ9ܡr׮lNIO_Я.إ,;0}_8U'#wտ }ߩڧ_ih7Wf|k$* endstream endobj 46 0 obj 3772 endobj 48 0 obj <</Length 49 0 R/Filter/FlateDecode>> stream x\ˎWx=>E 0 Xm{� dq]fd w*/IssW!KYSyN^i62_NO?֏EL'NJ{WyU_ɫR?uw1ҐvwSW1o/bwng#7>ܦ4tYq,5g+xX]( n Y\O'~_PڋqqZ3 h _/0u+Drm;<j7WHUnK3'TOAW,ϐw"+%3?EI>{'7LaZW|rX_!DKq1J%phoT[y  >xpaã]7.=<W~6_FuC9wؘ :[ mJh3OǛы#ܼ~ńMh[s~Et,NqpIRLQl 28lX&)(\X(tF $H)dK8X7NS00!f }ZSU|8<:j4M*=*IR~ib9&ȍdPM̴,Z F֤Jr/16"OdcV a$!wl`|Seb?J!209S(ua�˖)2k�B.s7w$qL�i3=!y§On<P ޲9y+GLLy>N',{4^eO]P͠ܓ<$ f0i.&:-Mp[BVQxp%|36.~%5Rbf]Xx ,6=EhSsӊ.Ąc bȅZPvw?2"s(`bѢ;�3_0ɞbpw6Z!9aYUGoHjW9C޹d%EMr4:)ˬ;.œlEb/IqYfG?Y{)ڗn;Kfs^)0kKC<ҫ|H?2j2.-C7֣fyI+-HrvٿjHpkTn|bTr9VMdG)jkX eJY.Σ|6st' p'/qS2".  㱃{ 4; "gi ׫LF3R"Xd(7zcݱn+\Y[UۛI׺uzj?R'5R7yEMEC??5GL iEЧ q.eI4TxAMyC#.frBz@V.,Bv|d\$?(,F�PYV̢YF e*T-,SJ'�o;CR0{:Ibfv?fmhU,N+Ms̈-uq Ǘ hDOHj*MT1l h+fC8N۹0ig> `..ϮGC:̧j^oPQtSI*�z8,� Ny2FVUkLz1غpF`Z'!Mtݻ5Ѹ5@fhaJ^Qd\PTjߔ@nJTp%9A{r~U9b7BZZ,a-g%!2[0$1ZjhU/+r\.2xG�5*zʆFivȍ"nFKrأj?6 Q #)5XM,X]h ' !ш JE˜JMnӼ!r2LKܤMuK=5RϺGtgZ cFY];6^&m1ԋN+ZA@w]YL 3.‰y 1픂Cbj:a)h*6f da-} An'!f#MLBīAdO #Crb,/?@Q&q;Pg]A-C n^3UOǫ-=j4( ߐ{\*܎L6l ='Y1:<2U!'ڷVΤەњ{vԙ5|yB,f\kڀ(tvtMqc w QSʴVxqGJG2 daA{|{nP.{N.Rg*l\&VuIs~ݧ2aBHn/cu8QD>-T1:p 7 ]bΛX%+niڶ~%|BTo(m:gV2aj.TC "j:r7_H`:rVwewOg(gt%lSjnB IMqɌ1U̢R:,.X/�Q1'ouvrq.m=vPm]{8U 8ʶsh,HgRM+jJc q1[~ ^`ཿ_s 3{$WJ< ej eڜ .J4|'0vV1n'(ڿ ĕ%Ƀ�.U1ܐmbp�^妢4MoMȼ[GQߧ⽣bpu6X,uh{yL|hۄ ϱ20`Kܡ3Pݻn>c|{j�[DG9˕"DAFKj:TS @(()WlQ̒#VʴLqZG;;yAHVC"jq2`Ui+snɒi*x 4qK5t C7.XzP _qg9>e}JlN lMZJ)z1URcW:)1-s2" hIH"GXmRdhk4:Li/yӭޏ+4" q:mi(R.:ܰnO#+\uq= 5Tܞ鈴^egks6f(=d<g:D1hUޥ\ٞC?t G.9=hî{gb9@xcs/a)+QkJIӞkh+54%& D_U(lZ1iyz&}JEI܌lAI65;Ci>uZ'psPι\Z(T>ɂn-?Xp=ܹ%##nzsKʩ9z~Nbni_'G2t"SJ&qAz_}W$)g/M[FO�14Msv*/= s,[ˎ\1 ' ]k]bROMC᳐˥pr[knFJ",Uyk<r,imT:P=zKigB0G#xa;@ZF'acV[lW֦Y'OÔhwd)xv%pn^�[.?A1V5Yٞub)Ϙü/Xt״o[=۹:b;v E۶tVk\|�W7rZ|( @D&ϩQc](r)SfG>Ht/hٿ 6 endstream endobj 49 0 obj 3804 endobj 51 0 obj <</Length 52 0 R/Filter/FlateDecode>> stream x[nk+n;�ɲ5` tȢ~~*u8ymI%YSMI}~3moo/GF~?@_ֳyWWqʞ_6וwZ_m_5???v~5~r6ъ0 +i7" 'qW> !eXhI:wi<EC y}7ڋOVW0K~zMt1S+?_}zuBӆt8RueҲWq<Y; 2zVq2If`k(-t#OS2.6.P<x~N[)(^앆56iPYGe*zDQup!2ĒEZF7)n3y&gx3z+DCwUda{$@|<OV6Vҍ+_Y@F֋fKLg HjPNip+q$9ՎE@Cj.Gm+?mfa<x)6�cV;YFĚJ(]Dfn%xz4,7VH:N vR><Sv]4:!š�擞HJHIzuǞ~_r9 GYtuK&.50'ق_^Th/{!_+8|A'[fW�In#Lt'a0@Py ]S`զr\IOv6&oj_&$S|ֺ%[dXi`b!WC4rZ;YJ F)o`< amY^S Up:|nު1KEPc MBƥ'fξpq0,Z%#ט܏*o /1\&:Ф\[?'`$tx@ U>eƛ"o[aۏj%R5H�moJpT}L1hSPPm9{HRY_ wn̰lY80%kV#xVS0mfC=SU9(&<?PfCBH6rJJ=`?SYdPXdzU#C%> YuI*sުri9C5V Uޥ#b22lm4 1ì qeh.]CK\nS�:tfr n)! Sɬ,}"2O;TfD+ne><PC1Õ?nDPq{ZX0Ap/5]w#cXt~͡]E%?2i1u?>C*w0TdfiU0.DѡG)) Q% =/s4a1r4-Uqpr7I5"-'Nnes|KQ&+hkZ /BHKpbwdO<:8B)<gs4LsI~LF7 ʬPA4p5{*ߔOownd ?N6~ӯ!حՇڴjӮDWk7ݔ_y֚Z,RVڙMzRtaLI& w̲Mg{t|}됭qӻ2/&f?3#Ei7TZ=17}{O.r`2,!=O{d殺Mav_k*{GJ띞jC[ӮəRebjݴ%>#HULT2:\]!O uUhLaAaf}nkh7[gR-w1]Pa+8Iƨ_Ddx V<(r$T Bd lcuNu^]�~F⃾Ԗݗt]<B[=95|Z gԡh~0Q-)H٣r[TduY^�FNdIa)/YQ^KQ!SLOCCS̜ߍH5B>nF˵ʶXS eZ �^Y@}$7r2Ǒ53Ps$+N1 J!`R8P_|$ӠzHB{rDx"iS2ƪ4%h)s%RYfmPE3ZR{ԙ%= -nfsp͋�a*֬Hq=e/0{@|R^+)pLQ*R=\!Ad(oG~!$C]QXDU"PزS�-czr6'Hԉx96H )ڑoYC5/b+]46ۼrW&Y,rjpV1NP7ʍ~~v'�~3[#?UZ<\6뉁BD>JG8Ն\hƎn.6`8ZMLm}z1 3h`žWIiZ/<r^ t/e3D>uY\CSeTUDH[-@:,68CqI:SK^6 #S-wɰIy|`hX.A>} Va%_v$]xc2>/x/5"e.M<o;WQŶu9"Nߨ0rEo\=)ZKLZ5Z-ʕ]6x6o&4ƘE0Uz91PJ fBϼL֯g$JpEaF&E69x IeF$p5K,g[%Q o M 6|!?> Rd~MfvHϪXB{&gbڲӐDr}w� x@} u5h3.f=jaM n-njS ^:(ֲؼo=(Q- )l@}) &H>8$NIr ,J}~IR. [zN9=\-b_I,ifT&L4g=O(p e �iZ _zz+u@#H[VFèL!{z ;8S_x?E֭ݔGe^.oe×U푺nC�^u[=.44A) /=D�$own. f/~=>) endstream endobj 52 0 obj 3349 endobj 54 0 obj <</Length 55 0 R/Filter/FlateDecode>> stream xK37>瀽z` -{%Y.n3_>x!JRYϗ|O>×__/4Gevx˯߾Kt>];ۼ,`1 yf0yۚ3@1D'aݚ5i isfpfXWcaP;�c?J_YyZ;W~8Y9q NxX? +i >+1L"PzЀv9<^@Tzh_aZF)8*a|pQW33p}cdUы%3h.-8}i@c 024.;dҢ2 a=OB8Y=[ƊF 0nI?wɏ2Z6JGD=q 3{b&n=oU$$_ȇEXua[b L1p%#$$퍐 (-lbITVcl ؚ(}#A{Z*ZiB 3 f;='l1BM"U4ۘORr$(+)ܥX_o-,ԐfZ_Aӕ>3-F6h޼Ae}i5쨎ƹ[DYW,Xº>ӈW &>4 ͖�=i+"Cj!ЂIM,_;BI҆>tkY(b%~)f=גk| bK;~f\4c37b4ە GV].Uυ}Zr/]Jw[_TnH\ ib̒jpK,%4>K-7Ah +v #Fʸ.˨goFy76A dC&@B (fpLA6CLz!I"IP~%m~钚PBn_hPtp~$&pEL1Τ+]9 \6{ 6(�G?#1E&-=9v&P7~h騂~�)'~L>Kk:ԉdQPIhY5hA@H12\Yw8uʩ'% ﳑI&JڃWpގyd0\|N1şsߊP+3{]ĎCNX|Z0-[UZOO5"d= V\4>Ngc ZAc=]z؇TOWa4 4܃69UmkrrE0^ {N楛< aDؒAoMU'ZkoْgJȞ"B#'Ϻ, וU p|U3"y?Qca',]? 37%gBơyZJ)eB-D so�٘56)j)JY"�ʧ^$@"R ]MI0}A,+{q }l- KsRM4 j/�Vw*,p#yG R(xU"xɦ=<~m3r֖ 7P(1-LgVux1px䵁5Nόo8頯 h2xip.aPx1U!qxv:CWj(we5- ;K\6aD85 ^. KfG +@go$BnyL m:aݷm[J"nS[ Qk}HW|6<D7 W״7tC\.!Z>f*9V^λ)v}U`(V/dqĢscJs4yț)G<RlGcrjB%%4!c0Zܫ<"$q.w HsQK&`\9ȡX=3H/2 |7FM:!8:B1=uk?]$2旲\eQ}.KZ50~ UXdT%-#}&#*VOhn%Ջzw?Ð9n 7<gT-ó3~3:B-9='jREuE_ƨW TS #[6qqkp?# 5|_ȊEdnͤX\˯w*<q&FC\ؿKFhvQچzcqiP'5"Tyז޴ɭi ~Ę0JF6;>zߗtAjA~A3a,?r.[c p%Tt~LP{t4p5�s RJ4qG=}T4:6.8 F29hz<ǩ3ٳt} =:ZsYttxBc}[Ky7<3 h^!߯{V)GEQ[KKjk�XX/$H6ͻGbӳ;dbC]@}T@P<X' }amI([j+{na ' EnZZg.y|UzB ەozu_ 6p"؝ȍ$M>Ox!r[AT39%s \}k*ȧc4pK덩E':.{[F(+qf7JOEa٩JIj[4@t_PL"7pG }%J]DV7@V;Gh[R1<ڢxaqX+Oom@v@oFMsG9^If&PKnx3_HdNN!5\r8qv(CLSIv!Jt#k1Լpѯ?فl5QoSJu,~B¹E\ յTXYwJ s)ʭ2fN+olp+բO zۯ 5?(dz֯S7kVUu<wj9T}Zjc$�URSGԐڻ:f?ST7J-3sfZ:$]QM}\*>'m3GEǂϏqx;PKcNomٸ!ŋM=o=ykPsL4JνQ[n<!ev(d|SpB ||7PAf}F22XS5r ? 2w)}xN uO1<* _ǧn8!t>xN |x=OOw dwZ |7PAf>Ow dN1t`N` = boX23 لtfgS3,n8 endstream endobj 55 0 obj 3466 endobj 57 0 obj <</Length 58 0 R/Filter/FlateDecode>> stream x\I,@eJ EBewo1`\CRHAZ2E[.nF~'|n~ۄz//y^z]>iP0z+Y*w`beXA]p}nuo_ofnWM߄j_"Awe d٫ K{rcG$?5r }_Gsckg8 wz^< 삦_j]ޙ ,i}zp6  [Oy?ֳ}nJmZMQkDY;{sQj؈A,ݗ)+rA7tqv�eCU>cY3au6j3`FΚ9]"!qb mDױ=h}p |kϔMu,yngWdIYٛ ;]JAjPRX9e-x^"~F"<zw|xɡkɟH$<"3{ Z ^;yVH nscSt8 n -Xk0ASthxN ҫ晒-VZY / ٞ7X!𕐞Z61#{5HoKoWtY+ 61c }(KL4>*,]xT+TjzjDޡۼz8jET=j~;϶Q:JR<l3kiP^S%5rZo+to&~g-9:hU7p*^ (ѳ`Y&ĭ6M$SlZ@$lmsPJ#@HŰŮye^Vؗ[ Txi|V^nR*/c1 >q[]uM*É`#FSW /+.Joq*?xdfN8(ɴD`xԬ^mAc 7˖*[!j7Tu8vSKu9 ñ⶘'VCE҄ $1/~BfeJu}\6[x5Ѱu(a 7t[/|Ò[ͣgM.O.NȟsXzD*ޖ2Q%5~.LLXF5lp2!t+1wB�EHtӅg.e"é3I98wM\mdl}oK>\A}uak[�*Ʃ#/?.u�2E*<F7S$C%PM�Tn W: ~\Vūω!X[czyĜWG S |v;?]m!" �LKhTȅBE @(@w<;p)+eusu٦/$Sj7|.acpژ%B`IhASX<hҩяt$&uXa1 Zfx>jK|z(ߧs;y 3b]a =?C&eɺXpk +-pY3td vն:I xtWF݄kh@j;׫ٶ ruӎAhܕl}TOָZ4eIXUS|gnj̐gƗlU?RE54Df_6 rAǎ"% qJ틨ۊ\:$*$r08n}޳!u8pX>z3/Jrr$$jFUyqb?QrN)QСH gP@ 1\9�0[\֣xocҊߖ:$L5du 톊ђD l!yۧUr ~=NtJj_(ً9xD3pT#uךKnUKnK̋-h|_wU9vBgQƵHu[ÏZVޢwY=s }Y2A}ḳ*O{۵$9\ABThHE¯ aC).+j.#dV!yW+X$</2H܆ uy\ T1 쑽wfGb ~T{ESngNDzXid) grYSD/䭲�Amm(`PałXH %^x|+8 nTK`!):1ҕٽb]@5!J6,6gD˲6yU_b.UvҨ �MI9kJcw4&ռJU.sGchЧTqeM[)ʇE!srق >+׃{:c= n)71,2p z\rr=U1vTZL^o2SEDpX`�-Vz"ަ/L5nu�b(,ݼں@ ZwVt^&x)34`hpinl5 EZ5#?Q LO NtÎv>)AU-Mه❝CkxژCiOk5Δ:4/ZH*%q2A Liɚ!-5<=mI`s6ɋr=\l 8tZT)^#:|#BA?/ם `4d1/u_l!K {9"V)xVa\Ùps�C.baYYY,ˉ[pQ,=]x`k^`5 nîjLZ4NxlrEO|3ٻwNE4֖6[g3)rbBi5=h[1Kz-M<МL択(VGsl:7Ge[Id:ZT6T�[&&dNH(z#ZrAR:" 5 W]DH*oa&,%}=Q09lH*a9TeMGc^-PA̪WdV@hs2Oi)2[LmuJVX3 O)T4pw.ay7N8mڄrR@j"C9*L'j71IX>ԐRr S:iqܰ$dA6'!,X=yD610&nfq7qnfS2ip@{u|h̹AJºM.  u2^4PoHm$1cv'@={50T(Zrԕ$4A%zRj�/c 0 ًa qc EQ%:ECtPz5!J K&Oy|*4Ea$a᠙={"GDLc}0Gv]]Ar�j~8_ _o,75[ 5<;Xf$ ͸Q\QΨ\M)/39Fi/? 8l!!@ h.@kH])xegҮ0'D5g% ;EIוbjxLv9@GnwS]pB!*վ5>k'( ⎱?-(>˘wV-1|aG&>G@ߌ VB Fѹ7&ֹXRJBj,j(4s^aD8! endstream endobj 58 0 obj 3830 endobj 60 0 obj <</Length 61 0 R/Filter/FlateDecode>> stream xɎ+>_pm�i$rrH~jaqiu=CxbYEԛ>򿃂9Dᷟ_/m·Oo}77{ ^|iS w~7s7#go�ϻggϨ^*^~`Vަ^1msmktqT˵Hh7u+nқܼ+M]q&l~SWrb-ۨ7u+o+NbXe6ujSWL7uLqSW6u8+LeŏcT^wPßn@~_ͻ6v_U+k( bt|ؾHԉ+Ƿ_^~Z bB@54j|; ߎH#z U?{lju*&F+Qt6H` ~  .#`X11szM$ͫTkJbCHa9n轈]~ݥDv,c.($diR8}Vdg�xZjxk!!tDtaiY m_g{VDuѓ('xlkO ̛ooE_�`}&y=14meY uƢ suź 3 9C3Z5jsҧ-65iµaVy~9ڽ9+`d -=j^Y=a,VOXGX].&f&v+0і.YmBQ^ܬn$ {3PP�7c>s!]80&j3A%f9qfNkPbU@<53̫KbFcd+0ے.70 N8᧱3<؃oQ]R,>ܒا FP!\sʼn, A6I5fhy.Zʉ`BxQqQpa9iD{Q3؋uq7HbؽHy#;-}JIb�*FPܖF#Rxs5B pБ]m*pQ)5( o% 3քAhg<l@K1UpXp~t&K@&A5Ae*=敞%�o bwhHg[ `t~\rZ֕a\ % aٿAT0ԔgT3Rc[Og^GMCZ #<OA#W}ӚEqUN*-UMnM`Ǝ|IsOy;҆xa {MwP2 AOEF;d'\M0zhD.fl\j ࿐s= : 4|ρN 97Gdj4dWɍ<}|9(*z3WWe'g2j>tuvN6ؼHǮ,[Fu\Χn! o=G:k, /2 jK-9a #y?w SKk)ۈ崙ڬHұKC᭵xKdw۸h 9uE"!6C&n[ӵ9V4^v b)a윖iN%V`l<$ş I.xrs[ & 3(ص8ƽ &Xm:Uw٥s2!yGċ8 M7M֞pQ- 6_` |xBϙ&e H0/k%N;R0){f!L5sԊŅ4w֤tWkqu:Z--Ma6ߥԧp"'GB(xe @Mb X/7OWGB/)lgy�L:iMEsyRY:'ԢkG <GBh!"wq ;ayL=j}\8@Y &ND<KW9JBNFCjR:ݾ$ *Q2k _pMڡk~ZgZ (!UAUhRbh$fMy4諒Ǘ;B&3Hr#Yse͈ #bǣ֠6.:[ۍt|o jyQ%ӷ@1 WLnp/\0+9|^͌Q3jDb{ 4\LjdA07sTM}"b,cZd0s>dsB5$  n깉+WLsб yC>j¶R(TRT>zP$-n[WE֙tlm|e|daSȚ&+#F /C v/KzMn7l#cҟ^)+@;% phm~FI xJ⸀,bݸ:n?=`idusYz(֕lFZ0<+݄Ⱦ9\#q9 ylkd0j%"B潺ڂ1>|Wwkjs4ƺƔsQ`Fԕ5\SlVĘF{((4FilH1eC}]SJh>T fhdcNBReu5$24]u]U.o8t?~얲+(}?gdT=8UWR5 &Z<J2е-nyVx/ۦ=M vU.ӭjjmDϬ"U?IBt(_gઈ0qiVꝚ<D^%WUna<_e*.听B公7C5e�exRIтA=JNMuVd^89esNOp@U =3 1 ZYRaY;j΋1ukNi/)033%P)Fբ2*)^ͦ%upF@SjO" Z@D1!wS4ha|nkjCl*YUZZ,.kbԣ"Yav jU[wYv12XP2~Ș U!rsq4�qb\>FtTx*؊t�WJqO,[׏Gl9VSjs^5J$j,1;& FJuS)(aK-jEiU=?bۂYtAdfGW[+4#+]cTx=BZhgZ?; wI _in>;VŒϽm>P|<ϭnRk̬ <e\~/w(({v:㧟xnu;{v.>~VCA)sAP~ڨ_PP ~v#vH(3v*cgh/v=<eXMŞt9=$h; < Jw<NVa-P]PP ~3F (z5G}ϭnRӹOsAP+[/Q:?=dxnu;ʼpGsۡOV  < Jo.[2'|Q_PP ~|xnu;ʼ < ʄGPft=A.xA(ij] (g :._|}pA.v((ٱ ͭ8se=T}ϭnRv˜w;ʼ͘>~U J=dxnu;ʼO(zPP ~?'sAP/, < Jo=v((:E endstream endobj 61 0 obj 4073 endobj 63 0 obj <</Length 64 0 R/Filter/FlateDecode>> stream x[[~_ ӑJW&yyK6$E7mɽp8},SU$>?nrg8E^_/<Eeߟ96gsS_ggM)=nƳ4,,._~}؁xv m;jʕGd3˳R%˳K+SRǚ [.`yhQv{0)AtEk~Bm:vٕ&"vL%Z `A]yPGf<J&U{q v401vhvB*sݫ󞖭H $5*Jx {7*_O(>v󦯗WnWߔ7.Zkm/@7xyYMW!tI7+QˊX3RCbLwADQ{X:͊JZ.ᝤ�|+{JVˠ72'ŋ:Vw%#Ccڐdfnn˝,!{/߿||5!ZLR+Nkv)LO~E>|Ġ;͓%;~3YمhҔX3Fn_̶Gr[VBK/`K&SHqC΀)Sͳ%AօA\f(]>1fY_0Bk|%m&쯼h<$\ ݕE]0TרK;N)M*qWEK.yrg1c9 M*cQ=pa 8Z7],2s]:d/$sü3r.(6R&Y)P*,>X GVV+XXJLS۲k/UpQ: /hwn\ZzD+e$/%VuU0og( HZQpl*{SSX99;U)DPWK.5^æ&㜰L]Nd2o۔`ӝ!QL(몡}*Xj.3FseQ$vX:cY9\6#V~Z:2qf< 6EᱨmJ+ِX;t=פتtm Sz3}IJ"7tH8yzvnh`\昢IEuUU]QA4u^{mgMKy;Ⱦv?(ŠL@R]/ 6b)YJU@Sr!3L 7g-)+�D3"[=l#@`Ֆ Oi E.RZ;W0eYunjm jZw A-xNB_o7`snz5i xKSev_6ۯ\j9>?F:1<'p.n%$vعN'7|7Yf92i'pw«:,dW&:{ I<Z�D[Qմ|-;YӚ|Cu,ˉ]5(ˉKp8Pm|}KѢ&qqY_,puxTec[> ^Ua w!4m'd@2 VU pFYWzixx4 'v|^˷C4nxCc,=)G[2\LG7zNcNW퍮 䫺ڙ>&~YC0ڇ8{3m-)`x&ss '11װ\d،4zPئgsz ~!|i6芌2-xsӘC<3^/3t|Cv]<ίCU8f_tPOuc陙T$m`:׌3 ';)3xKu<wz= Кs+ZqOI{ m>T,o',  S6+<ND0Kާs0 bxL&mNT]Lތ9 a:kd>=dpIa1̘cԊR<a!p2f]9v)Vp�[ːÜ1}ܥ過b)_3f,Zޓ+lTBbl4OfCyGYb Zl"w36R)1 j/)ߝP+;zU_VϼS-(b|`?%usR%sIlqw) c"3v|kÈ,M)|בx'TӸk$=o `qqBn'�w8ijI;4UبG%9m}W\bNOKop#K/M.AyӼ"xy"i]v t-K*7G18[M=*/8OSzel[Π΢I> 1m/ڡ#M8O68do=IW8훱gO }k ૎+ĊSȐ7u|w*d=ZVW!CV.\5Z&7a\+dȂ/Z6*dƏW.~VW!CV|,},/BޣR?K!+>Y^Z] Y[Sk0}v?Q%4bw3\F6z\w3`9rG*TȌa zY^Z] a2PWHωIZ007E^Z] YdU߅Q>(*dȒoPU "/Bt_ |j*dƇa=RUȐOaY^Z] հ)*dr+TȌHVW!At>+^3"E^Z] YVN|۾BvXyiu2dY>z 2A=R8haPiiu3\Fj$IuW<|#g},/BLӰ)'l`>,7: +am+jW8g^9eeW rlQc xېM endstream endobj 64 0 obj 3089 endobj 66 0 obj <</Length 67 0 R/Filter/FlateDecode>> stream x\ˎ, WڋwAyxEg](\s1_X£dy\qo~1]/] ?.?~>1ͣ룼`L^&�lyW템W٦33p>X\Lw"{!4E -PhSE룽 u2t>QDE9hLva y@!h/'w > :C}q7=v1f>IwSYtn9ޚ>o5ߺ}-o9Hry@-rYХt\\zKɅ}%LメW]LΤdvsb).[,<]LwBvFVk<Zt^dз:�]FVvBvӹ-=ہJ`bZ:RJuWq ch]?"gl0W8A*iMj G_?o?C<'f&y.'4&luHemm_{-b)IecuQ'T)J‚UԠ-+N-Q$+X3<}p?n�%K ݹߜy}2Uz6=ޣ%`˦u= יR,W4 `d^\he]6~}'o*&2pJ%3eLݬ ^EϹZ,;{s k31ƚOɽ\rg31H%qKgL `(Җ5t[?`׻G*N|<p59)ve3boS?CTeNf@/#J9 Me6Lm!ss(rB|\Q33E\Vw;&gRϟ-ySX6MfZ9Ц~MI2' sq/fwׇa&&gPB<j MwW{IL?f]o5YpbcT~{LI1fǥzof;qNn[de pʀ3.P6 "0-|s{[삿(q3?EI;Hʖӹ,o+qu.y8O jn:$ۆ}W{i n G%ց?8 8E\¼2&e&lr:kCu2΃itx7ݓC=ِҡx~`յ~;¤zTSN37=Nj׎-?9t3MYLRcfZ Ҫ}.x" 7ӱ9Z\)y^K2ۯ%(Ogվ4;bqҐ(NM Ddbn1,nC|76cI.FGff#a!NA'wK}љ un-7}>I1],Nq_Ccфrp_L)pa)-Ƚ(ceSg8R{gs |^>wxp|?f5}6t?pj/g3E*.ޣaieRx2?Ge9[\v+uYspބ&?ĩUVQVPdun;I0nCW:rS!7נf eMA&g B[ka\ڄaSzK/aHM#{v[G2|ҥDŽvk3sm=e|G!iVn 2Iڐt/:LhZfGרx/͙hto+w>ˠ( ..k? 6p/LKtdkP~Y)]. ~v ^>tSR৲ϔ* |3ϔ* Ήu|gJhK> ?S@6|[ Yhoϔ* 7!:ͯ* +> /+ d?OoWh^W~Tli8)UA ~,y/LIH~T)~*7S ; 6.L Rmϔ* NUu|gJh)+ d7f{*?S@\AD_RanRRSE ?S@TlXUlt!M~TYI_Qnߙ:lvd;JVn͟U(foV~T|L7|ShfgJs. ?Q̩L题/L R}ńϔ* /L R0'LUaNRRrC|_UA >T~tlt JůL RSggJȆOt|gJh?+?S@o¿R@|oGYR%_R8OgJȆO ?S@|FcgJȊ7t|'JhFYWJȆO}W0ϔ* :~Ժ@GYRS^~TY?+Ji-okj]AV|դ4l' a 4Ȋ& o a 4HσPR.l3 4Hq{*?S@6|-t=4 )U@ +?S@^_Q+?S@|G3 dj^_Q9VeD+`K*moNÜDPWp 6 G@vްذ{-U(k_ nMC endstream endobj 67 0 obj 3023 endobj 69 0 obj <</Length 70 0 R/Filter/FlateDecode>> stream xK>ÖahwO9ܲXe~,oU*]%[]]][/?|.Wf߿e^]?\~]uJcs34Ri\m56x?-eW36SqE-Cei1GZg26f�َ(͞DjV3s2yA=ꋺZR҅+[.j?;POWZ&jx^ª?ӫrן|~H"eAQC"mZ!I3j%`x"W j ޢ1a>Z& <G 3+j Ll08'G1 Y[R؊Ra:v5+8K[͸{⧆Ic4uF-x>q(U4XVW2K^3Y$cP�wj*#UI"{y8q5Gw5o)SC#q ~Z}eED3SX۱"pprZ['Ƙ6xOlєR&`C#cN/;J;Xܪ(~9Xn]䃉]2][q{3?QЇY‹w r-_oo>a 襟z0ь։+Ho�m~G7>xqa)n'ܴ(s '4 N?haMbۅ@C%19V fGAY'ĦȾ Hq2n% :%Uz eR"Ob.'&幙2>&J4G6ԂFyF;jLŸ,(IAϤS: k(NF^,oX+N/ϻ|iX, v)6";, ۢYVVb{ŻFZWeC4 EhH1tGM Eo|XƏp$o )XU0)):5Gr7.'v!>x6 E5{7ጫ'ݷ`+/mWH*Ӕ|8 Z1IŜopNu(J$qd  n8A9sv 8{24G~',[b�dD3W9$8SgZ"E, UDIΚsNz{)S{IZu=%y,ܷdl /mT΋Q恣왳Z)tkDR(JǬپ1u0i+kA2x13]N]#[?Vc:~sǾ%6qm<@Ǘtˉ&db`(˴3gRwRյRƽUZt:/xBHcgpGG <it{S{DZlL61%ផU,U>WN⧦RܒYur(_5q\q:?5}2[L@}{XCAkMU*B%Y^x\s3!X_8KK*"u_~OuWj<LVxw4ie %&A +EԴ\>"@p"</6$N+=3%.Frkd^F`$1H;f-(\Oz&Brc[7n$hvU4R"D˘P2ؗ**$rĵY9#5nلɚq&( |D]P.^UĿJL'_sѰ \Չo֩beɬʱBSY=kT&5CȍR"m8s5W*bm-\Wy/ޒ?ЂpfʜKfi>ᶵ4VEY_Rg,/Yc%{Lp/CIMfquRkT50&EW,`eVt~4im䘎Z\JKGI^n#~"5v)7GVvG#)c, Tb0УUmRWزvBÓ&|U{ČMͦۜ_{# =s5 fXL@-#Oa*8\}w,1WY%֥t : =B=S^t n%Q۶j+~*2MԤIK*Ԟ܆ɻq{Οv?mcЄhJ^Q=�;o~<`GO82S9w$h'g&F+Ru8rlKML+UkY<NYm`O&wN&ԿS5:q9_N\ nHL#z&(vaT<0hlld?i}OƜ:`aOPeUMyg:XA: G(x9'qfP~s‚1N^'$.l o|RP7x~,BP=8ߴcPakB>-suM~9ӔJςP*E$T[uŰbujU�qH.�mE@i9g}uj xՖ'0/?T Z06o9g䇒B2ta\$VqmcJ֙'KQ¶ȑNV1.w;JkI<I > ` o8iݹGMqi/|r].fν|bs}vT-<M{HVj}57^dq'K(JaM?.-v_]SZt>sA?.ހ;'xKj<!Ϙf�+␞e?9c?Q?8Ɵp9ƟpBF?�<+<xBXpp+=g3|N(xOy?ǫF+J3|N(m_pj<Qf^ǫᄌ?6|ej�ѝϐR !pF>'O_c /l<C!xHJ͑5%p1�N6_ ]g endstream endobj 70 0 obj 3191 endobj 72 0 obj <</Length 73 0 R/Filter/FlateDecode>> stream xZMo4 W9]X`rK=5)K~!j4+ PW3#Erc^鷧 %){ONy2/K6n9ϧ_)-%_ʽܳhzoEbwrB,A:1/sSnbnBhy,:rM}Kσ}1$e,De,e,Xe,e,e/˘Ѝ2RKC1|1eccǘ˹˘K˘12\X[z$%@)gPʸ~#idݷN֜j XL2xڈ\[ ج&`헧oO?x lly{Ǯ sѐa|7ŜGVk1,{YnWfjэ%Lo�Znyr֏x09' '<NbXy!@?Rk<6PTJ$liZZ=o+~f1PkO{[houŭx づb9.pK^n,=8b'ph=: +enlG6>pD GP\6!9^Ǚ;~E8sn)`H6Ҥ>w!0臌00v6śv\ʎؼ J38Ôz> `>|vn'u~tdPN\Te`U45l3׵j9C|$P9IMi0 Yn�`(EJل'W pf~ݘ!Q۴N'vay[FomF>y/Ig{ҀՖ;1o5?:;׶Fт<J*&Wy((ESH3,sk̰dK=yY49l#>p~2'e?=i{e.]r;!90Z& I4F]L61hD_rVT?\a;ػy4 aW!-~@1By8>zo|4lFJ[ꇸj;v!\ <>ݲ]s0o.ΞMyFc-H"ZyAV r`K{y.; 0{]<|k\֏=v>\ n*>0ǟq|SpUgs'Иm:ʮN;$g9 qgaMfw;fXy <湝2lofy;rwdH vvbu)OSIށ9OZ<WYU1LP/L T?r~8/ZWo]1.Ӈ2.t_r&6,ogOUOf;9 %.wR? ;q҃<8~:zC\m`ק zΧui:uֹ-Դƞ Y`'+:,^cQ, *Y!ZC&X(k4/+72&$:.P w\ gF lS+Kf~.+w-Elgvβ�?ۅ}K5|kC![MlfwQA4|~E),BSck 3"jͪ86nrQMJ䷳kU\dS Iaf1"s-. T CJ;i7UɉfBCeY&"ĩkCx EŤI.ݬhbs |fM^S%~y'$֗RkJƋ!5a%Ch+ͽTO_4&f =Z#%?jDD'MF0݄&Z׍u@MeCƮx?kmQ("MoAsٗm}~X9$N=nMn魙rcglmD&-iRk5K8ٺnhfikRդyI55u98X%aUsC}ǧD}p+l~*AunZW+ץnɼ&Β` y_WDv-8kfs)njϳ71_qYr.]3i3絩9nQdK^ сFM>ROhtP7@9Y%ODZ$9Ir,7uwTbZS.,ݔl'~ ?/r$oЛ_[[@_'yEԊ_@>S~shOPaTD'c|PA!sw'*/ ]e4g8~RU^FC_=㫼 +{2 }a]兾1hB*~GTy ƽ 7Wy VH=Wy ƽ7Wy VHŷ( o)ID*/Bا*ͣ)rGi<W=CEl +ǃ2 ]c^I +PA!k;c|PaT|Qy ye2*_y4VPȚ|G9h⇃}[e4W8E1H硸ָw)*/ p2 1/*U^FCR9Fe4TP_y4VX!?#~ Yc^㫼 +_e4TPȚ;bGe4W[NۦH endstream endobj 73 0 obj 2929 endobj 75 0 obj <</Length 76 0 R/Filter/FlateDecode>> stream xZI+ϯ(@4�9>9v�#/@|w-\zQSTI0xzbwbUP__q0'CrpL_~|W㔌x0M>!ŏL*o>fosw75_4_9lNs%\i]HG|<Ž$ƜuDÇvqϘ9Ϧ==K[=XgwZfdw w凸cӮҮ`î~כ{+Mlxk^>_b:$o8|@ϟ >~}|G7=/`B> WOWk| ߌ֜\j՚}$yɄhTQg+C-4̖|qK]h9.fU]j`Sz@ =̤z҄Z;7s>7@TYqO_8B~sxeWB''vw"IpI&3 Y| E>#FE~UwHL4� V<E7tR�,e#^/h-͇P?I p,5#YN+` ) i6LSWeUl"Ms[ <N0SrJuRZ{4'iE{նF֛w:$8ŗJdKskD$rXzInq4<9$""ϰ Yw|ҋ%b_O*Qil{H:$#XӒõّO LfsR!z@ N- ' 7ZV. |L@sd -" !S8K\ "W_ C&R4wrcaba! G2?(![rQŌf-0sxU$ zE.tEMsj}Q!21N !SBFuMYuxn(Y s=wPn5U  v(ij伌H^)FeWr}s}03Ngg;,?>bL憍95\'I{nq>wnV wYe…*q!Lc/ -T|mm53c{,~8zo]o "z^yM\pT9197N&T"/BLjA][v{\Yj YAlq ǥ$&^:}먡AmӖ,j ƇVQՕW1 |Gqe գ"GWq&mjRצ] /QSgQmr%$ejiܢNᴃƲo79'sE/}K2&.#ܛBcrD7,AC[Kի� dzK7�n9?SUe:R<ӸUZJɕ594 T% ~.ep'i4V8 "8vf Xi$GGzvg?iCw3&u?K4zw D&k/<i؍ϳ?nz^;gԏO&{red%rq{Rc&2M<; x!lLguwTn8XMn]XwS܍og<KNX֯ۗ>NIv{VdTɸfغʦlz-~2+gs16Ҏ)U}5MJX谦lph׼I G&$pA-Mۜ7J [ŭ)^rt[ ǩtn+)-jEdQWͳ|D5ִlE#g0>rNfOi˳R&Օf'3ܕYi�վؐoQՋ\i=(B$*rQ5_>Qe`!�S | ӷTo'sHn= 98e\ê^9͏zObLaR"PE:/y??۲wrC7?ˏcyX]O%)z]IE*8.\J ՠ7{Bۊ$lL/Jٱ@\_aqf8mzZ Jbt<?i H2_HQݴ JIPAUE8#rq,/y�SM ޱwZp~).WnЧ"I):$Kc+|P% WzudTu!W8 $}B.C,^G]_t ୏_ueh˪O"x^P~<rKQ[<^G]Y=g$}B.Cg^G]Y{B.Ct_}B.C,�Sue(K_uehߦ~ Ko{P k\tPC^ ۞zj^uehxLQ\L'#:24qzl6{ sIů}Q"OG>_ue(ն飧m{ &3~Nzudd/:+\h>>zQA|ŨJ.CG7Dh endstream endobj 76 0 obj 2730 endobj 78 0 obj <</Length 79 0 R/Filter/FlateDecode>> stream x[I# _�v mrd 2!E-Rr9F{+~""O$.uF^ӿeB-Ni|]ExzW z d3I*?ճeu4yzw&{.I$7}V =}w!&UÛw\gx]˻W.= ,L׿~OC z�m%`YgTgxm~8E4B^φ`0Xu7"to GxA kh$ ~Vgw) M28 q̦&8:>vID;Ta@= dgb(%T T]hmn,anC -UfEF]Amv2UEOST<QgܪEJf+{ui5z)Oc{ "}*ʄrs!6SK_^?.({0';WJ::+ԨJ3@5\ d~ŶXuTbhY[)p|KQ5Ab~NM/>XG-*-̈́iqMGg!i,Unbaps`bRAL֯cGCM2^ .FStWڱ֡ yi*YʼngjvBvV9'<5.5C9 OˆR LWo6%MXI(+q?MYC� uXٮjY% hS,!~'_h} e yE2 YF4Es(aX|B,VmˁK3[Vh :۔2xe~zIu:G0wU9,ȂV%2ߊ$@'sqCsBٸh]y֕YW|mA*,> ㉶LѦK$eRCL.YL^ƶ"EDYkfr]<m OEg&i0nʯ O!.JGٍtqۈ__2+!G7fK99tE #YF`l<wY\*JN@5|=xE΂۳ypZƤbS_4[A@0l]oE#YoB 'RX:R^4~.^5 3pF�ؒ I3":-(V%9 m,zZ$`dcJׁ=}U\Zq .#A? \#Rѭ8sLVk@:xtd0hnO܅7xK!>`.5<csjB3`&PPҁ&�yNt`hC2v+;:FT r1v7i9|SnB{\dɑ*8v4S6XZe)\<FwYUj/S۠9HnW:E[Br|7ϓHRBvW6FManZZr"K:qZ轰8Aq8 3 !?1+q|k1&V{ιQ %:hJcz*Ǒ_x/pcYa`JKy7ݢ71h0tփ \dk>sg/:Fi DZoP;T@T(hzJ:$;$O[^PR0WlڃW5ĉ(8(#F0aa%Lt G/qD -�8 #vnd&�Birr-_wt<_*pZJqW2c] ~^+hOU #<ʩ<h5i[`pƠ0TU{^Tv5̽i)MWlp *~eFڦ'4ذA+[a,n㾩T�S"%;$Űԗ*=Nɸ[XX)GVkmZ]!`^WsAs0ѬExC r�ۧZ?m:1!MwJ vwQ^RI6[܎w6%R Qk4mmȂf5o3 A"iE\]2Ә{S n: 1.(VjI9 @LM4Y3ղoc7FO=\LEZ2IɺAI3Va`bs?Sl+ό3Btk5GVe+H@p鮳vWݝ51/􉫹1`A~ V{IaTFTN 4kD+fL5qX㻪 >qeūqѪ.-͖5@ѹTD/EgϚҹ^j6l1Ĩdž4Ij]˕D> >nb6U",F<ˤ)jFhiN[9{M.&KRx(g,ZT2I R*}˥*!6>d�&N3i<\aXyLz-F1Lj2ʆY,-ݎ UG*0xu]o~`4%0j(`\M2_vjdMKΤ\(AHT:{zx#>vcCDvd6k)6ŬlV(0Nuᓚo.6X'rZ^FW>Qu^D`ih�͞m~pg|͊˹b(tVRn6w3TR|fwۥCHwyUC HxuQ'F@8X3E@5X*tgv#Qq K$H5~Oz;?JKyw2<N!qjOOߦI釮~Oߦ DY3o COwN?o dSm:!ԥS׌Bp4My endstream endobj 79 0 obj 3246 endobj 81 0 obj <</Length 82 0 R/Filter/FlateDecode>> stream xYK6y;d=36!d!^zٖO=ӶC_Ui;C?~삃KqU\Fֿyd{v_,to^(_ehțb#)%z-!KBvL[<rooZ<#Bm!K\K6uGGl y6uGY~ޖvAHaqKz)L+^2fGRօPoh厐)VBd n)DŽ -"trc'gߌC"Y+ykCw$˛`р`@:ʠwKmVr58tƫM f:'3O⳻fPRȯt8+`y*e0||}>I|,c&I/puܿS"P�GY5 AeOiC+!8ʨe ہv ݵ- G*S*̽.}e djGʄ:)0j|We*tSN:#MDj|0Da e 0n*+S፮}w.%hYk|*'ŋԼ<x}ގM1Q&ȉՏR[۰V%җBDKD[:u؈| 0[E =K }O-!Dsj(h'G;~'`\(4L03QzE i^GM`W8W@֫HD䁬W]aJ6@TEq)ZeY Y?5% P] npێ C#{O9~Sڬ#g[Y;3SDsZD4#n#;IJ,=ʪm&}BeG�QuZzW""wb姕w ^OQpګpKաݧ"c _OU8r>:C]]+T0I7>j'%\wź=)9 ]F%WiD8Xƪ6D"OadN>> %ÂbJ=j<te?~2ݙmGwQx^[\0*6@M>.qX|A dt>-7/,gJiݢ&xixZǢ"~a5!֣FLާ`3ADc2,HꧪNfXfdۇ#0"_ u\<ҼzˍL4uab5ssQߖV͢9W*|cQ[ozϳOC!YZcn;1fR]9W{C޼ f}5jNXJ, ]bCClf3PrI:{XTL7 T(>ԡ&)5r[,nh.ZO4[rtޡwڻnmJ{:3hWE8q[Dkrϧw0w ;hЎ}K=kM<Gzm+s}l|1=&6U_|*(`qtpS_< +(~G7MqFWqs endstream endobj 82 0 obj 1712 endobj 84 0 obj <</Length 85 0 R/Filter/FlateDecode>> stream xXK7 W9]Qo�] P44K~IJ8^gv Htwu \rE }mϝ:$?s1 0>فuT$`5j 3'(,@^2Dyt/ o,#]X~ 3J)Drqv0.@·@NKr*:El d9/@MA&PjR0x; *S$�ca<QӁ҆ea~8& "-Iea~x&L ,2=R͎%nHtw]1/G]]>*#<<קvەH%vE)Zu#ع<U+32t۰wtHfQ+zV�֏.*=PGv(nb.}1p`+Bel ego{wTJc+E'f'28J6LQ"7Eρt7ni3r#klF+VXvFufi4 #̖3f>KL (/L7IV|ԏk_T>Pd AiI\2idJÁSh Ż\tK~~= >v:BGSs8 TJB261{=9o8XR[toEkkgUUYpbsypXJH*XJ6|V._q Cڒvo;^9a-mNXLm|s¤4 yǡyc{ٱ b}: ~؍$arT<m^\cS7p.3oqlFYM*rzgL>MtgO3 ggenq*Bpx?KwcX5kw\%ig.7Хsx85ߡ7e8:xaqd]X Ԩcu6r _u# }n(iA T-sR-eCם4[%;x#WۢX7@Ka=J<FUoflm0nR Nj3Tnnp|i̿[ƾhTRۼ̆o0KZȌIx-̸\Ǡ=Dyyo]r fOKSMf&%NpOKܘ1n_RWG_0 endstream endobj 85 0 obj 1274 endobj 87 0 obj <</Length 88 0 R/Filter/FlateDecode>> stream xZK6W`]`� P֤@K~3|I"edX|~$?;?f0G}_qt:ΡQ\<@b,`UL%F51z-1)FU1C6h&Zb<XC=lSbj`ML͵PUupM!MlCx*z4=bGCx&&Q`U hzVPxp!!/| O/DbLz|Seד<ILGyRz|R'o/?_P~;%F8Oy]9 <S݉V~nTg+ -}y\]y„IDRݠSӉ;Ƨ`�W0i �t%~L" K@0Č-^>z-ߵߨ\7$.݊#;;Dcp߽"LMrV<?5/ vQwc.MMN'{ oT0(߈ ێ'2oQ!%Aqg[wܦ@0~7nt'k7 ~Cm zfti%WmylR1XY0K�7ɨ|2iFL10!9kltܶɮw^apᬻɺZq~!1F`u%vҎ2eUѤ}*1wY}tCsլ[␐BT >k^&Qk! \f=i(3’a=͋RSA7Qd[ano 6h2 e_"?`3 8No7��y$iObAJ( i)څPuyȗ߳׌�ðaKMC;#;D>,O.C/-?Qxkt}bv{~vX r5V3z8 ' $8<7'xF|;ѝ}^#:tt&EW7e^܋,SFXY3ryw4at6Y_p )c̳Kz/JWUq*:A+5OWeKE`js51* Qrt*k*nNB%vMB*5w]@B(v; v>|@VwxɶnR|žCp,oQ]?ͺiMg0S#^@�DW ew|xL.gjP͓mb;�y�p cTHĹS!} NkL5G,RX ٙl{ƧF,Ώrʙ)G7줜7i&] ^s8rRKD61"XfLA~087FB}k\n)g lW�$�Br#/HŝjRSe-%U3y?TS!=Lq$}W\^ƒYi0nȯrĝe{X] ɸ:X9Y$Y j]WۄO*~EOdOZy2++<<`턔F`pt'{*S=`QeѼҬbwm3%iyp߳ endstream endobj 88 0 obj 1713 endobj 90 0 obj <</Length 91 0 R/Filter/FlateDecode>> stream x[I+y@rFnj|=30x ~%rT?y0-r勵N$?<9 w_8;"N~y},䄸?Oxϯ||".j=Uu962~:Cqlɏ|%e?TH hM>I}p))ZoB^| 9OǸyWqy S0 qDXM$yyU7pG.0سjqړˬrbNV{a۬Ղ)w,|~ *<M-D!j.� 2S52ln A%QPa+%au5NOAU06_,9JmL`r9V;FwN[Koq.F>snAfLb˲',vplrQ#�ܞgҽ^Rz!HKB各80)} ܮg%&] ߙc(YJC"o x}a))mX'{vG+KY<3h/2FbP0$9r&#AȈ(gG`a!C!'TXмiֺ"'˄FoW>+0 -7>[m"J' /<'ЩL:9༹(Llo7xĮ֨ޯ/Ek΄]pKo G*.뗩eW<<h=G'Z8^x<{= or6P@(nrX gE6'wސ7bMPlƨ:˴wSXMfrߙkTnmIRuDPoP)zVIaH})c2dt@Y/QE =^6Q\ V|l7߇-?@6%"bv\:<Em BDq!YMc97T{,"ף+Σع4KM?I 8$Sƒ܉Ub2l 3䔄12\M߿vr:^XrNnF /kZ 2ϲ:pHSnQ71Wbia?xpy6X/KI_y`|梑p$|\ 4H6,q*}YzGǽ-'<$쬾w"kz{z.7{w'tגs] UA$9Q>͆bb%cMFF-) [i9Rj5 Sy\hz38ƥl& N+Yp*hY/n9* Ǟw,:=e1s%$021u Nm.)% "k"o-`b(x(MKWInaǍʸgyٴmx+dSJ(\0{TV`RG <3ȏ}=*'OȤ/"ݱCY*z}+IgX@hަtΘJjh%#q4h5e7E?\+Xδb#z6ރ'%{Wy I*Z =bY *'8SZ4ZS mR`Qf"6Ј6S}P.E[g,|Na8SORWD'4Q sJ44&)W)oD0pB[�ү G(2kDHLWOLmQJX46qHhDa#d_4,Wעuk&<Ju5ZWŲGs(r[w0]c(0*ϴnc]Uiаd$ڰb*[F'*f)n*,YYGixq"BőGBw;J9Q|!�/~H`,T\<2/Av)9~,]⢻$ P-ViiP[GjV|f>DF;Y3vbZ (+x!鑹.AIj Cq?Enb 8|/!R_0dUg"Vkڍ}Qeu.Ukk~Fq0"e tg"MtdI6sP) Z2锫! `~-i)wbr2ZK:jbKQphhJ,ә "rA\n2=*M`j')cӚ1$upИJpDZ<C9j) kY6O9 Mo,&6|߲mHp2ݫJ}Ѥ<hɱ{Ӎ`w8f"Zqo ɫ,vvtZjj6!Z-&{VͯYKDϣD&1N"YJ\c>Q8fQs4 <YS4b=UpX>sgQd=qҡT'+qt(P5@z3"K Wc[9F ܌<}3hCnApU-&i%[ix..7cP{0:ԑDڃ6Y4bCy ]8N@bLOl^b)ݎc *Y ֫iYiIuΆŐOjʐHo V>6eɌ@Iop9Tr[VaM')HS+\<2PEf}JU8 [To麚 oJO8ӽ x0¦Rr}?fx+ɔV/PI&Q.Q5x;jc)nXe&?9aсGDIҞ!^38ĵ-}'1ۢܞ۪Bl+)'J擆UƒxdE(2Y)!TV\Dv[$ՐjAH[&g=Σ6y3 :@F;XiؾaW2b_IK=z:yiW ;KfRIwCgHFl{)K ce SZ endstream endobj 91 0 obj 3191 endobj 93 0 obj <</Length 94 0 R/Filter/FlateDecode>> stream x[[,~_φڭazg7' y0yJ@uRI,̙R]Jˮ|׉zW1ůfonu7=_iYII;lgM?WcW冺l&ØOebg~g>>~L ĩ1<S?ݘMM}{.:<=|7.1]a~0ng+a0+ۇ_Ϗ/XMꆭlLb4Got?mġn_New<:~{X VStLfm̸QK +)>DžmCK M*�ݖ',AkSs!p8I_ԸljEf,}3 sԎljlRʂvv*+HɧmȢ]{ `$ks΋$j] J;<ʂDZ#8U{@cN qU<n;()3K *Mު.5|Q z{ m%ȚζgXi`CVUQ%+ >U8Ş,%BGGsqfD3Nc!_r g$..PFC2M7mWEӆBM=ʿ]{(m:DEpVA 9N=xY2iY \ j3ՖrQrd HH4d2i+ȔB(bQ#kG>UzE46 { � c6{G<Pjck!]<AisɐƐ"xCnDX! =-Ų3 `#x>*d#GzLEd"P`0pF`g Ր>|vƉ#CaT(yr@;d6LjͬWnkAJPYm"oW0@=\<;%σAs^8M!5&.-tmR=|W=KXKѪ2À=P{N؈QD }0KT'؇vg6c5|ʯ/NqMG~DAuVcrJmaY5^\]^2?0A`(tZ<`D6VNt:7Qז䘶xim_B/WRN@LV@I0!  /TD>as&rˣ9!CĤ*@ei(+4�jDpQ?;N7pm DdR@\Ai ⑒C"Es3y#3u/k]&>J,ׄSϹC Sڠ7QxB6Ǖ43dMwAܤTm7hK[l$%쩉"ḯP;j5 H|nvc4#wAl BUrfͨMPM-ѦN90`8McJ5v߁H fr * $Vj>2 AIl/(e,z Н &R0W&nBc2e.%F)A4Rh]^  8B.bx02zo zzUAܯ"W .S} trѵC$8PYT's,Jeʂ[х.Vkf<#\5W3o.goaah|(~"]&4x3#( _M4j!!j">ԸA :-nCG@;utvi 3^M>yPvR){Gq T BC*XSgi#f\3!QI6�ci9Rn"z.h>k(LIptIQƔ ZbEk`:u[LJ[*֞ frQ}AN.LXG=?@7pqaJ}вz N Qի}?0!=p(�[cݮ"<;ЎY\J}Nμ}BJ?p# W8 hBM Wlv#PjX٬D,UV7AsτjV :=]‚'Ds RoĝaOrm.H^O3=/Pd ͝0s&(WH(PVݑy~5ۄ/u[zت~.�xX]wؔjޝ-BRw 5v/qg?ԇ!fwau6|{T'acq27믭Hݦ C;?e_1/ˀ.qjſ^9jqua<]EfwQx߂� 3&Q[^}A,A2LG{wfNDXy95hwծmֽ.tkN͸_DJh\K!ge.Qi#j #? h6Yk`;{#SlL7m(r:q"u'Ή\\pW"j {]]ik\h` lhmansXE9q(' V̗)@y"p_|rI]'h{൪uA;(#Ĺ/ Lw25iN=UݟSB|W#^멗y'ov^N|"6swK:5|Pb,^탛կ%Z |Z}-4�S5턟\OfMrSmbؾMm7b*w- -+ wM#XON endstream endobj 94 0 obj 2878 endobj 96 0 obj <</Length 97 0 R/Filter/FlateDecode>> stream x[K yz20 MaS,2E=U�=n[O#R+L{YUNVNjZ}1uzW5?O|Y)|k﷬d竞@]V(Oll'+k2>y7BYV,b7^>>_~a@+vG8? ԛz^v1V|l o|vWͲWX+7=�0,kǶ]t[=Bh]޷k]UlWw6eg40:^/0Z.�~^MGRG_fϠuYDLo S]*!T>?'+A&˂X1QʣJ8F/eѣZ0K܅ur9=R#{Luhd ԣDюɛ40̵ 2=~)ku0V;,]W0p^iºݪ@i[i+za/y8Ψ?ypk}g .:)g$ �i< )._80 �qa8w웗g=*]8(!%s"$tpQ2#g1uf∍E{y ^I[~b~B'R^EMl_ ˕芙,5�awٱbړi?{@[#l�if]ߒ@6*d6!�٣,/ ?g@xr&~A_i%=b=2Owdḓ|eNIKE=QtT10ԃ1hLST9pyoPD # 34&icb6^Rs X緕͋kPg Ba*ifǚL3GQ@vbQAg.l6lxdbdHP9gG>k5Y,! 41>,O8=Kp926S2SC% E4 4M$?(7hq,EQNqhqNVC R8i='9aJ 鏰ELpsw?6KcŠ,�'KA*83sHf&3@9*3geD2G#jx{N2p΂h{ӈѪ{;V)_ 'Z}Ef@.bӥ#5-AӳGrEeWOAu0DM w$@r>-yA"-PC[,l[v8TIC^5ֶf Ͷܸf *)<:@PMO p[ PIW[e!C<%2pc7YM lE"t%e OXV%R628`_ R0ٹ*1'3ŖҴ:Y DmkT?fNYxxys0uI˻k H R-7`.}*df!dmxpD681%ȋ P3rk&z/dGZL8QCEMbV/qy4)V~R�{]zPcm Y&LVn'3 ͹fmoўe0EoSv"r&v'#(ϖG.~A<rxnGl[cHʟ+"Vݻ<j9_ohF2?8Zj<G|\:MJB|@)eԫ, MzF䢱ĴI瞪ChuMQG?Ւ b5+sG{! ]tPVF_W'O4-i+cc9�U)UZcyL2f E"?ȫuQ`.)|[7vµb({~%h<}g?f~2>Hڸժ@$&JmNwvLP#\L.lOT_Llx.L'TF~r[ i3VQGY;K~,^{x:G*Qgi{ts <Tx{=s/*zf4 _\ev -V F u7f=U+8h}~OZmܓZ9HoRuNd~G=c te UM7:c.wJ%9Mˌ"x@5G= '5FtߪĬ#CAo@G@TldJ@>/7 y`攄]LEURba}Si,cA5NT|=-vd\1yβXO(m6F'Y)`y".r0XWN_[T i2 ٣bߖ|30u UOdv -FNluTpG\| {2H5b0b %<վBeGa3~P7F-%0:10w^}egqӧġs<gutN>:9CL3[ZD(@33.UFv._w>\fb1>A%8.ShR ABž<[͊l2ve}`Y0cpc{�ے="…_Tdq&$rNqk%:}P�4DҌ[aNn]œLgEC$BWUv l=L%+ q!YU9W@^Ӳyſ'r)J[(n-b -ɯ!h_?|6^ hGb>ΈޥVu+Cy.]@}6i4RXE,HP ?=\;<Ro躷 PPoN&'4N5Yn|J񔸪{\d#=i1~9B}dDCx}&oqTeyo:&t{ Η殘&TaKx7Gq;noCE6ƗAIa<dVFA8\?U endstream endobj 97 0 obj 3273 endobj 99 0 obj <</Length 100 0 R/Filter/FlateDecode>> stream x\I+ϯـԚ CSb0[q֌�ZdU_m.N U_*~?~~wj\O?~}沜ZEϧ_ ca_T1&t3ˬ4O>sDmn=Y`?_WW+Wޯq=W9z60p-ýfmw$ +.LlgGm*.Sl'=V8_py1ZT%5[sZY$x$ÕoLERY~6ݯ6_?ӄ*R\4,o׳=LD!G Cqm]E13#3 ۝ЂO Nf0e8jn@ݍ-L0% WZrf{=Wk!fw]?~;H="Zz)rJos e\00•oZ ޘo-9a\_q ($;p¬9\/ o-wt!c AGoyZ&'c;F O봚=NsZIs%� ՘%_J8:÷E6.�#ws Ɲn_%IԑNV|w( H6\V;<G‘eB-\ŵK%N(nRod T\W$Ty*&z5wʩ7̝VK&Hj م>wb9>*:uK%_ǂT)gM8+HIse}NaS lqs RB `nԽ U/;R1}2|A J@>FD7P6�z�n}GB|z|!dxB.;{D +~ZkBcl; SKb S b:[qAB�_7 z@nY[H{~<gĨU*~>4$Zj[0$ pqr^FS#Dbe:0,")W9dwm&N-s?~m0:bqKaWAQy[L*J>i弨=3}'=^#EstRfMk,BTCY*W`+R4&dirHM{i$wF{H~֞d9s~CMmeW+ %@b;VAqҕSh-IxI_/Bn!5 J[ 6֩] FHՒa0Grw@3 6Xg='o)l7 x2VޡI;h||N2ݠ|s{/>K v@W. **Ͼ~B"\ޫu[#? m�5(Y G*\Ge\L8�%**zk|ITdtxiHo# !b)1em>6DP?Q dRL;(`O7w; C*e"Н8"X4U|K} ʩ=T0# ZDT�uӐ??9&rC=JFiJ[eXڂ}?߅{B J] Q\6 ˹YFӺ\ eiLކ+9LΥij8y1d\`$)Xkbx>G3E;>.m[`3C\#*|HVs$ /݋i+{wąȤO.V%buWdW*E}_2CY]X]*Ba;)zOYSjH~:Ivk"]R5 �iemES$^ <p }\Jy ~?P+ !Y"X`b:m!V1>tyօ].ށqIQ,+1fj f Lr+f%Y W5[[hWR=T8lrtcW@"~.;9,QS<rJ-*Q@B)Odsӟ?}Ng7~ ^!aSFVd5ć[)%>hRyK@wTx^ZhIqUEC^eWIuJL6oTP,w}MshޮIE>)QaTRFlM¹nQ?yL*θ"YW١h#~n69eQtYB1 #ɹ`D$'fDJS>hslWQprG# R-S8, 5jL7Sچ ρX]3"ϘQ,AuLl<(›5_ GB{5.dshTJ5mmZYSp%{ebXK^ MUSc[tp +wSIs})u莄a~,3L嫼.RNxmuC!66K[=8s`\^(icU?6f[p=楈 1 0(cqn^Ŷ nU3䦭{OӳR`noݱZ:=Ҕm%+;Rc1J>nG:*}=V- ǓgZ!x$sU%VUGdYkd9 J0:*2o~sR開 o)O}ipv:װ+?]r4I;K  2:ߙx[�jo޳0`cUk#g{qSIr*2Dzt."/raClO3S5mK+mjBc'ϰh,ze[XtܴC YiY\D,uNttR0̭*GUWQbõO4߲\)\~]eU9$]ʾ ]\ 1}A֓*?M#Q`'-G>dH! y>d}3GT8_>x oإ.n0#=t>ly}ͷVUw+{7UaGrO#u~8oo_Oݹjv'|![ހcC\?ݭ'# ihKOﯦ7%eZ_Iɼdz\.$tz\uawVj~C^7& endstream endobj 100 0 obj 3437 endobj 102 0 obj <</Length 103 0 R/Filter/FlateDecode>> stream x\Ko$W(M@`f rrJ�A d- ÒvdzPӫm6ן^7<,[x|ퟗ?|uc/~ۛ][ofߦv:M~ejҨ-?|.~oWr<.=K-^? e}0jF_z2=]<>&O'yi4; [ts^1etqzDiƴ4exG!W*j\Ț 9"~Ik.Dyud;_X>b-&Mo˻QYreoD$mODD8 o4 4tFQ>\شrs={zv`,׫yޱЗuBY)֣m$='G-/ۮYƺY~$ɶg}/Z T~pP�'ϷU "JzAh9r"'Ki⤸Oipq]d.€#+A%p z GxxiN7�,jѲqniCh(t}<AiqKogI_UZDJ@'v(~d FlAXhPJ>=~_'.4r ea%`Hk ۼEPo�a]mbC'KG_}6?LXD{9Sg@tC7\C'896Cv\9 M׊O+eUP&kݽDlbk6?pcB,Y)N>?{fw;],8}=S /h`H;r7!`0AO( ~K! I/8eWtWm hY/pV>bp6$#/D"χ+h Ob0_hqJ 8sr S'zzdlKD7ڊ 2=JP7qTP"S8x߆ϐ@4V,ƒ&P% A_'{ &cV!qt',A8J[R"졊Ix!~,LK{LE ng !LRA6_i;0&I&ؽƬv�Yz"'`�$w5G`ܔXVJk6cmEiRvRiB]ȳ$_ƒ$Ha ·WG N6{8`Q3L ɟqeEAӅ+g*#vk Ac%0ZH׳O G^Xkm6%z=uITf4 @ 8E/f1yd|h�s ho"DJ*b +:ͨ\ɋs�Awu-]8ߧНzj3.M3JZ}qXΌq~ dF}HK I>@X`Rvna**dTK_Kʹ{%o:m-DgLLa9A(vSQaL^a>&R`6y FM#\9BCrZ #/->ɤA.ɺ@ Lu"_P]U6JKq/;pޗ SM50Kqct$ғOd_Daqp+MzckqI2TCz 5>br(R8ŸNPw ep[FuNԸ2`8Էn"G`%jE ܒ8pڴǒ6Sr|=�5:T1qqJbΩ'WFݣW4҅~)Q]#ЎKڑG;6P{22"y]$ Bϖě֘`x3>OƛvMD3GH$#Jmڗ2WFР$BȑN/2&}5"qǍ8 l"##ކz6Od9 FK< >*$)`N;md!]`ߝ`=(v*M|H%ay<EC^Z鈡E(2!d3<= ˹+f.\X?9iOq6  b԰4Ed[qԐGXjjeA"ܽ|� 5`H2 5W@ ~ 5;VYR$$h<:f~g9#KWaW!ˊ+$PB|]'s EDCÃشr/t\z @zHqCeRYrhkhf|y\{[ !6\ԲS*wRgk_dfAfyEG�zլÔNM J٤HPU%b ]p`F<9xd@.rX23C')VS K7-fw _Qa;Po#0d{~qBMbfN6u @[%-)zmwnP8pQ)فM?@IgCsdCvДI-xKxjڴa)EL֦%ǕzzK5qeXP,5֒it͛2>auaa%SEߔ;Y[3fQ mg60Ӣ5vT/ZrPk<}n4T&ST ZYh8㚭o*<RK TX<V#dd~'ιd~G7IR2 d [o 9%TF�"vcoPYJm7HI(]�/ V7vqdAu z%j.VH߬x$فDΥq+QMgr(7M %kMzSM8t]%:rm|ltfOxzع {w؁6Cb,D4JTHCyVNͩUkCbh)~ �xԴjΚ.2ߧ{9\PӦs95pۈom|Lv9emjcR#Y|ӿn`KLݻw=g+I]R%B`U>Ʋ]k ?~|.XbW?-kfL6>L B>+fly9)'Dams7ݿl҂;ޙP/4a2іZhd]S~/I\ideF a&LU7M=oWl zͫa||ٌZ2B# JȥˋPT4y[Xf䋧#!�.J+CAW">^Nvz<_" \iln;4"rI]\7&w|wj~+ӄTsUg2$񔑄ֵ%c(/ & , HD׺sջ ,ZU< n1y_5Z'%|+$|G-f)TO޸x;HVs x =`'155&SsN7g/"H||v~ywU!x?x endstream endobj 103 0 obj 3711 endobj 105 0 obj <</Length 106 0 R/Filter/FlateDecode>> stream x\Io#W<n�mr@An CK~G-ܪ-,oB友muo\>Qzٿ^6(u/_a/\~zܛgeoMZo&xjߴü)L0x9<&6 /?ag\CK`aSm9o\VqWiM<6G Ѿ^aKrh/_/*]ߞ -c˶\sA[oɜ06+ ["<]mz﷯.W^u9ZeY%T~}\=Ԭ&ޕ粚Cieg?ڨ0 f^lZcvz$7 3o0xO"p_F_D5k-lU x[id;#l^ 2T� yzpD'?C$=@9Y+fK;'ԛk.MԤ`œC҄)kY;:LG`h ތA$[nKUHGfşrP0K&p[3˖O^}5Gǁ`)@zvzdcۈ-Xw t<+?q`2_!rN>7kzqI6:x&Z^ٞMn*nhܜ.ngö;0𼸑9qx>}Էu` .EE̘+zƩPD܊HcɭkxsĄ]8HBd zPn>mّ |# Z8ݒ OT/.K@*!J<DUw#Ed(,d#*&gde%�$s5jMDx CZ0X�O0$&ύl:�"k61>^余c? Li;�X@P#!$gtMu4&|`$JQhh<ojab9&Y.55G Y}f`I*\Sfdai9h6j5{C~NM؆5!&pm5ȣx(#[Y(Vgjv F~ LFDžG^ƃElbgeM:@pv N~u:Տo.ʿK#f`C�F]KpB$eḝ*"_ze'�]RJ(sez;ljR9[o"l?Rxpf]l5 \Җo`U5sRDe["}T_eW _L IrDѸ`JEx$JF8Ҳ"'6a핇v#OR'3V4FI! %]�]KM-vQ<N5 ״˲[h)05@S ) ~{& X"'qʆҝaei@0- \+OO^S2:I“i8I~vz^zK)]YoXڲ a03ў kiverU2@ZbN Z둁VtL\?dHH%oNܖ`9$ųȨU-%Feq{M/P=Op®9Hzd)z׫z,Vkz i?Fӵf{c+ Chr\{6s Nah4;J̔V>FC-4<4- ([qDg_Hɸr٭¦tPi ( sV"a>rs91 EHUlԣSzX$;GNO,8O[ 5&{$wd)s#s"-yeu{& wb90:`3z(ĺS.,T74Fpr8vCM KT^ \jh~vx!1n1ly t;E r&( +"?ݙ?ldp0` V1G a`�_o %$Ao(] mP,ӗސ\V1 B&S *xQ9lFvKeTULe\4` ]8U*EY`FL!<U&ŨS YH˄Gf]ZC, HY+2h\xXf!h9.+ jlUb&hXK~ 2aMϳUXӞ`Ƀ,KNVи#vf;h|Z*c+bٰW\qEkw=2UaIHu/Xayk!:Z]R!FZv #o)0>&,5$Yu, !εIj{ 5Nt@]DYQ-&`R0"l\\]g hd5QޕXK<~*1vZ~�a!^yxtT1WF+3k`*\ o>`|'";",a w O1L+2"ԡ0LAZLaǹ0I�O:2:zc=di6\&Hu@+ ف^L#e4tQhs]J&TG 7,fٽq uB,T=B.Dz:(")H%=qYS Cِ^M7nD۵. d̎gf!F2P%=sjR-Iǫ8g5s&v\yL^.KHo3l`PerdGu&2XMx]"'Ch\yPO[of)R&K>REe*AsP#ro~ <cV˒ .S#rJ3r,0#WhY�,y}xxep<& ,s}e\\0jTd>cu[}?41U@p\K#x{~RTudL#KO9F>6k&e"wGN& bsX塆s%?4HԍE2 @ T m$HpHd(rr=7v]zJ>Ll* S|粞eVK<5=e!.w827p+㬅<${wtJ>0Y)ȥ;qJQ~-w(ZWN^t6luNFץ�kKqoS0=]Jzh@9d@'Xi˸?vR C?jmAQO`L+KS$ox z {YaΝ6ե~_Ly[w?t$nXL8I2!M/HE#Ys}{#O@r�ëC&v K]e#JƯڠoԚkUJ)sf6&4BU`\)�wt>\@-˵+;j}L=4iq̝,E!]+2+QF~%V-7B2`ۨ^Q_4\=BVFavx%9tu#ٱ mBѝ_*ZȢ0.msh=2[&urBb*THXxJ9)3T(yyΉn�C޾V}ɓ Ie[=]|"_.`9>}?^B8ouo-WBDW϶�V3-$!aE C7K.m#\ BF6vlvV-Ըï9qKem!fI!d;Iz&g.?u II'M&g ::gڕ 4SE. endstream endobj 106 0 obj 3999 endobj 108 0 obj <</Length 109 0 R/Filter/FlateDecode>> stream x\Iϯ(M` @F|s2@AnI⿟ުza7 k$]W -N=3NN~ 꿿eZ +.O~>Cɳ))=]ܓ+bBqzkdzxeQH!?<I/}U }I~˫y*8_Wj%tWTynyV82| M*z)׆U^m\twKA5Je�;釣5'&o! `^.דwɟH$kH0:s7VcϰcXN,*Vq8soJnsfw0 Bn &DZd+$ML(h{BO{:~Z +f$kuwm-?BK|^rxMK88v=k?{gfr8)(eOiE%/f]Ag'=Y]nuY|rAtEGt/+uvN[)sෳeMFx+寒y V^LD8bb{̜c:N XfѪWmVf;Tv7c.Ӯ_aQ>f9 qA8ώ ?Y(?f!&0 mPtt?ap; 3UNRƨ$IyP(Ό͠Qu7$i Ϙ"i`VaV>jħ8eE#AB,\456vH"\Ird%3<6zНo5=4o,<_;2dsn|?: `Ճ,ތ,vO  &H9&\竉INhS%F`6Q{y,0m;n6JjMF qT؂_az ":=f`IЋ5&*^+:Į` -0 xI%LVe)[u C;Bg;шn0;<iZE ^_X)󍶫. aܦ[ ֘MnKY'T#Q7U_eDGa`6`&:U?"~]H{9 WxOr=|ZESvAT^Um t5w3AcYyeGhlr,� ~ 'Z6W+2p+% {(/ޙfr()I s7r 0kdY0-,ayN1 :@1G^\ɉMF2ʎ &JAГ,II%Ch?d@*+еpKPgcsZ\'̑A}\Mc aIP‡x1 A c3މ>EӚ6(_`t(O$t o~fѰԊrK*0bi+H9?,.T,< m,FIr&'(s<~9{} qͥEߨ\SˏKd̔-존x. RW%.eȟHvȾFc#Y771Ix#ŸZd]qreUT†'fNP*-8ux8Ֆ(L Upz8m9 0M LӀ%4)�Za.Izq\18تn}KWwkTi?χj(G|`w�Z) k{| 'Aj�[% G"Ǩʽ07' {0WSG= 3c9o# Rgw"M |A19W{�y!ZԭXBƥvT03zN慌{L$lTY6J7js<T.�dzbtn!BҖ^J-Eg{2Lܩ|]F,wOXaȈivBT"z$ %/I,$!Q%ud\?GQlsc6�x)0'aڈOXg`L$晏*[g.:KPw=c2K\2S"MIX`wdir97v˾WݹΥL5yIij2CDV‡Y9Y‹}IA͍{jyo@H@vO_*ۯ"M7Ik !xr*m&Tm4J~#[Wv1^}u*Ea:kaM>NnPOH(IyӮ,Wfǩ}{[]4[AwtN!z hmm4Cw8O8 bzX,Q i0Zc2Y<U[>5̕Np�PN) JGuץB2l}Ae8kVnML +w%?+W۾M;\.s9B\%ޜ'=n;wsL)kGg },H?t[i4 l |VC -JT΀:QѳF{س;) Xs6`٬+pHEܩy/.o)zUXWw+S@.sʚݹY&Δ к^"e鴘߰;lFԭ5KօXŬOԷh7-&g8$Uc|~Iv[Ω}o)h6[F wOyםrԜi=\6/}<CGfּfm穓҉ד_Ք]0zumݰS2gX/) ~# SĂXexU ,a&W Y4n#b(uef3F+Y)ZxŐNTtcICF[M)S~~!‹Gۯ=Nr3U0(Mv7/\Av`rаf C]B=Ӛ܉DREl=f4cISz31ᵃ՛7U=RؘOJƐʵy7\٬rWa#ClL6 C#[BEME@V/s3"؈sOewHw * >CE UE'0p >+8NzI!q6zg_Yڷz`F-,{gqd~wǔ yUlF:ٻ)"Hm%&d+ik̼H}ı&O 'K#\߾bE̎c;㲰|}\*)GsK(bX.)UD1sI_&t=9֯U.X[aNSRs(0"B㶒uPzJPjuUvҀk4 NH 뛄Y[}E2![E/m^R"$ӟ:÷߁I?W [Y^dgcIkNk4!.8ǵ}x8:M }x8:M ƕ}xe<+c;=k8!.NWNcqdul\oOU endstream endobj 109 0 obj 3740 endobj 111 0 obj <</Length 112 0 R/Filter/FlateDecode>> stream xZIϯ(]M@ �9 ÷$}w-TS$Eg#`$]WKiNsg/d_o/~ q<^AgGop@A}Sظ;wru͠~DB@`:¥mN$"O=g}dz p1(͇q lf35V~1x O?>߾[M-}l:g&{6~p6v厛>4Kc[vǘ&6{LMlFME!j�F  3/)/pvKpnv7�xdĻ=CE5.ӻ#MYհGs>9aӕ#}ep ƠWCm FDAkwo"^ }aЅn w(VOV讐k^*}^"DV;;�iUhlaAfS5{Om DJ3\ɒsމ>’gYmoO( @ VxC ٭gsau]1 y/cK2p !b<2x21g` hdj06)D;\kHO1@+F&�Zg@*$pfmX + Jh*!T E R/`D8OssL), sfˠZIQzlo&4d =neYjn#*֣؅}4s) ]þ~Ke]:1C6( l^xZ&U̶",Ϟ?jLMgo? ź FB"(ƂkpV#?.08CR$ZKSUof%Q_5.:&BTS~KG i+Ccr+u7 P "iRRy(&YwBL"'h4Ƿ ݭ8;A';>(enDCPCd12%T1*.3އd~ H`pW SzH=@WE#99S3Dx-)~BS�Sxhs!T`e^HB'�ӿxg>X(K=փ;Uؽtyt+ Y lr%˼4|SE%{ߒbᘛEœ\(foɱcd) OhsbS,,aZQ7H^rk}pD%X$Ʀ8z.Ǟ LޠJ 5b,Fьy? 0+WˡNS)D*17d/GukmX8UCMKOy-,N!_-1o]H*I,| eiǝbËYCs%ʬzCz=;ZzGHz&9&H w>YGaF{Mwػ<*86Uy^f\&ibǢ/t!W"H&ThŬ}Y .a\"�C'IjP T% >�s +^A6g c)ʙ) d !i4ȥq1T_ta7*q=nTWP:.h�%CoЋ\̧�Mw*n\V_'ǝ NhX=+FC=w (ği !x,<ч k;Cԃ0+ncT~nH[Qj%1lS^րP+ǮZb (PK53Sg0IU5د“gLȺޝ# m(,=!iȣ!ɛ"ց* z}Vjwv7P_+B$6_P U;RXFo߯5˲4X8 RMCτ5^\H+zH)xB弖v7dla 0,߷U~oڏ'/ﶵ[jr:L  <)EdD1/`s%r;Vl{Ӊ4d=,QwU@)Ϗt9fοRACJNIyS^fo,5sHɶ0c/UIxo{+oemկܷt?Q@o-.H?ߓ⛩X4lK6+ۜ8:sKu.4rK oz+Ŋ^x yʂGgaNT ͎e]y5^=^s؅YN䷩v9ٕ]y6^( /O�+ endstream endobj 112 0 obj 2463 endobj 114 0 obj <</Length 115 0 R/Filter/FlateDecode>> stream x[Iϯ賁鰸 4Mr30@FnU܊{xpOĥ#-p巋d5\q_/狱ᕛ\>q\@_> toBEGMX|d^(�Whޔ[ 7Nh&?uX1̌{x�@[X/oϿ||k}9UDP Ѵ9\T'҈K[+d/,C~@k=Lkȭ8>WH3hqy.խhJh9غ"3&rqhBܵ!VAb͌Өe#)$W0i9ꏶj`ҭnKHn vKI*9EΙW~$ E@|%E|L#$D]YzRqR9bĥzeѴTn%KvYHtE =}k>;mȅ(zod1J6VUv'9dx.Ro,5ʄYҦQ>/ `E <QYפf$DF$s1NJRZ J| *+݋z֜XlMߣ шM -$/rL0#y DJTRߒƥL֋FX"o;LڒF2iyr} R.Ԑ}5& 3|ObS3bN!2b53_U{gcUUbmaX\'/tdȤS0P&^~)3~8:%q"^̢= iCJMC"#%ꄢ#Jơڢ( ;WmSd;f6, ]du@ܷK)#m4RNTnFI$1Ss,ZC3{fkaLgkS!HW~L ⡖<~"ʃ!QHIYfBjd ڰ3$}C0)O1^]bfEۍ}1\ )ҖrTI@|걧X1&Zx" mԹj;ָ*VĿηʕ\ۆ~0Eg摅)K"ڱkAȢHwF[\%%LuWy|=qZR2]!&U-;*W̕_Et k*])NSxr+;8EP$&np+{S23w!,-pU= ۔Ncu5d�ˌ,cnU٘A`p]J#;+XlYՄb|@>z\&C\iXq vY2[}+�}$mC6[5lr[!o)rP|9eSȺv;L;'[Um=̫P̜WP9s"k'DEKdWE%A.ݞhmb>U+*~ qhmk)^~:뢝:s8#ƆqO QO `LDQJ!nH^ 1ň[̾2I;1 k1[hT"T1F潂'I4# H><Πt:g Nf ]׫rv9Qz4:iyEUӟ= Nnl ײP;yi8]^MpfAHE; W$+Xv? kPX*&ّ+|:E z?& A32#QʈC/0˻h'^BCN]A/oWȺG4c9Mь1oRMeamehF"T^#jX&|a@Gp)ir?TL= wQJN❘rv:"U [W"Ƅ RNnKét9 d\WCJ%ϥf6^YZXyEJTȡ0 3Ntz4v4sW<؄/4FN+M#IcM.Өr7d Գ'0M)UyW Arߖ_g&|2Uv%iKءde sڏل,5U?ڟf&Hc>K\:OK-.gAAGYs!0\J$_~[׊mw(V*;g7=CX1x4*ӝs6p fK+tã2AaLֻ :>�!a u]!lfBwՏ>I*t;{G꺾房ս.D=?ޫF*okpz̑V Ql8z|Ճ{`kOUoK#Dsi▄﫧I_=l5f$r}W .wrTm?7BTsVo endstream endobj 115 0 obj 2604 endobj 117 0 obj <</Length 118 0 R/Filter/FlateDecode>> stream x[I$˱fFBSPmMv7Ka<}%YY=c@ TF-O ş)8}/?>y ./zy>͓=/'=�xo(OSRӟa9}.E_/EGe.=}^fƜI[ظ:pn<f/OA]VF/jY'&|i1=~~bv ={.g~G~x^h O3)x/ڕ6N4`!'䐵nL8i bKf;=$a6f5z!Fo6%YN.R YTۻT{/삨{J^n(@=f[f ׃yfVcS:w)4I<M1-ٱM&h3[$iSܐmW6y >FDZTk$!r&)>F'Xg%Mh?DB`bdj(HS�֧^'?$g!Fj B`qV23!ta5X_1\BHЬr ".dYCT; JHYtm!M2Eq_^.$1*CE 4r&Wg*(EfL(q7j 6>TK+3ɻs bq(ʎV„{YQfM$|ݵߋ5 �Y1PUi p˓$H}<o:<3\۠Bmӻ[-INb$*q$bEi/Ha:Hjf;I&N7e ~k-חAt+ @ 6dA]a!P;C5&얋:bV#TaExL+b \\,xdjٓ!qnRg9Asg78M^RqgE\uUk`DQlMr2deئNk9<~'.d&YL{W1Q$#v}7i4"!qJt;tbvѯ*>N3t+J^TNUa赍8D+$Ȳ~r@V8e.я%=85QD(}sePP͵kpYPm%YԥIAUk[Bh^AL*IMɂ"86ҝ)&@[eqٔ9ďx5l"7XMQ`%DQzo{zn؆IWCK`YJ۩xcUJXRuUeN v>ٍ|κo-kTRT.uە)-~Í*b7I\4;aBxE =HVd#%Cyˠ/@>$ :>GVCԸ`Mڮeg 9 3‚ֶ>V]JE-Ԙf~/2m86:ې-GEЪKM~YhMWƺ2c );QeBi=88Wd \SlUx EtrcՠNOӮM/J~(egɧȵ.XPPAeT%:[ 0G!ٻ0X>By6j*yF_jx Dև7@- ^:E@ mrLbA[%vJ*óvbj=y@)ѪD_ŝdh7)V^#z- ^d)YfUn $y⹎&?W;zٷK,;H"M 8_|,^A~t-J=L)2ltfBȟYq8UmMdO)K9hde jN5Xf|'N,ۇ;1aI1n 3M}z- ~1 I ~[8'}ا=cštU e7+Pދ5el`)JXse3[ee()Qobq5 uuvzR""q 7c\\GuU E-Keoo1沭@-/Hќ=8^,[H ~4\�_cׅ:nZNC=ԠR:斨)*ຜ2(KB^P⌚L>6" `]2[,({%TL%L<6I"mx}w+ա,;҈p895Mwlu62zW~e?Q@um T#{~Yh99 zU Nm8aeo&N%<ү&0&�X֌4he>ᴎ5^ؘo W=esi̸"~֣7lD<;!`ģb<F+yG,>@&,,kY&vR^3[|!o]U4Oo`"D,Ƅ6kͶ"t0kmݳoxC<e~ e __δ"zuDtV{ʴ Z :8Uݭ޹zS17X=r|> ҧVXK|ߧF'{z: ´w^;'kAԤlٛ_F endstream endobj 118 0 obj 2786 endobj 120 0 obj <</Length 121 0 R/Filter/FlateDecode>> stream x[K y;z 0 X~& -Ie~b=(YR`<T"?):q;]pyv󇰃fC ~{^x޳{vvNk`BE?vGno?͖hohO?):?.M9\`P-.ppr)rknDDFl /~*]D3'̫+h8Y{`/+ m7 *.fn'{8#( G REh=)hێW$"~NhShTxPSjC C]PufϛSbn5w}wy+EoI@XTS"nHDк;D/H+mծZ;PƜbCxe8ợE;FV@_4fz]uyBN]Jêr LgRul bNji{MA\GL"!3͍h*jhK"~#z?<Ybϩ?܉ꊘGsn%ae/Bxek^cphUtSߊ4 &UNSwbGrkI[&rJ3ΐfbYOEl5}ůjXRo~=gmNj6Uv�cD17mĵcȆ>3> ~sH?ԃ%ѽ!EYA?< HL:(FvV "(ӪRۘp_;wz U3>џ~w0-ՙș]ZL$6Ld/{R2ho08I39Gx0 Mqlq04ACpK1'ۦp$̗۰ Ii ,gdbc|:d="vh6 di zT ІK2|ؠ#pYP)^RbDz-'AU pĭYZ-M�֢ۘp-ay jYns ʖTbjMk: #<Ωܚ6Bz.>cdƊ,{"vj&@c gqLVudI_ocsiO4T?7bq )s+Fg م :03'YR+O4W+dw*dFSfvP\MW$W&5a0GЀAč$@ҵZ.B;a-szΪOlّ |-V,Y4=yI:9> CjI3LY1?DS/]H5ø6ihvA ab0θcR 󁉗|2KvTRZP" Yߘi-jdMx^3ߛ 4%M%`*34U[=b+l0Btu yB'b`+dfEV})@*ӕOZ i_8'FNmP.ҿEjXaac!rtHLL24E $kJ-ːU2s^,z宗/WιQy_&hV{JFy} A%0XQ1t~`EKG\̹Va}L(spxc6lr ϗ[8,fIs`彩Kr]\I%d׊t-6QП,5RG-zE<Ki Xhp6ZNAԬnYDk1T=Croj=r+FyRv[910Lfa'm.)K>N&oR}nU%]N�Ī›nyN$VGzBF-k5`^nWZk[{һ FY #g1y}0'vh;&Sj_uә86 r< ӳK;;*B3$n(>/5 N^x(cc*;lP<z뵨ZW"<^Aj(O\OJwLIa v:-%91iVr�њ:+};?$6ӟ}lTMB;m]9^_vCo#> Z*u鎛jLh5yYInGf򻄸(a\)>q߾g&x>h ^:|jCNj^L 3 M$dWUPo+X{쬶Vޗ^ЧQ8-D5fKB] {k-ƴؘVg$֝X4>o|liATdb! +V/tf*m)O3'Q% EJͽyg20odL#|O6JHӭnZ.•\ 7 satΐ'} ߦF4я�k 5`6LdAK-7:0ȮĶdŪӒy6J9?oN[q]llL2e +'6HF)9;ZVtZ/9E bxDbF+Ԗ˟J$v ~`ѿv͠N;z>@-M_wǍM6ɫFP.6mn($M?@_ B«BWFmRFriOqɫ endstream endobj 121 0 obj 2874 endobj 123 0 obj <</Length 124 0 R/Filter/FlateDecode>> stream x\Iϯ賁p4{99%v�#_SŭEiQsBE^.ț߾Mf/|i_oݦpM_?]~.4<HIYu~ <fȀ@ooW^|O"?kQwa+廻Krw).WuW/a Ϯ(fGIh)khq%x>̓$è#32}/6K[l^^!:>j^~h74 a» |7|V-6Agi9N!-RbC#9(|/LL)>k1~#"u`H)>~_6~]][ >Q>6|* (혘i~qc<LI/' ܊ec QVѫ({%a)h&&#J' @POv"I0z)OAI2yAi0&(H~,k:Vur0YQD)! -(4h-OymEA\O2RvWI|c>GZOJ?U"R/s%�E\;f( ECjfCIA(EׇCRL+(Pd&m3$D%GSӷv][8~մvU0=7!WBٸp9moxԛDdL6.'t|Fld21qА3 >NbBZUYM[(O7IFHc|.3ۓg4U1/%2 ŻE];�E_V,l(N­rQzx|`"<UqTp2T?d3a 5;7Nnq⃠~Nzei@F X59t3yr EhmNc|6w(}\dkv-2@ *mYmP6Q™𚃃=OȈjY[gȋ˹�Y&?X>+/CX$})n!Ye(YI_Xt8ng6hK>u�H٫|yUoa@>!:eAF>vv౰n>,8ra}Op Kr{ Y$~:X\P+aiX5r.O'ȓʍoh!ʗ }2:,nm pȉ-]ֻruZL e'9&pI;1͕OJ@ y%%-Ltxe*wv'm%$2 $WY l'gZN7۪3|Y& ^Ț)j=V2Dk@pe{U5_HLKڨ;jBZunXR�yb|RFKmh ӿm>΋ԥ |*yX$⋪<mjVc[*>Dy3*!T%4`8<uQ@\ Չ3SE$ٙ_y[7 rE( +ʧrhS8UIcsVjœ|:GZY&܃c˝sFj5v'XW7GX@ (ٜL!Q8{A7L6s"ǨC/]*SDGOOb=BpɯGtHMʋMA =fNinͼN,dt.d:WD#s-7`1s7n?]_P)$,` 2vK/U;]ӔuÚSC '@Ӑl0ࢭ6-YkH&7c3m0zMXJPU=*o1h1mJ<W8ҫ~Y)^i|V.ѰFqӘy]=0+K&RTDԵ6=V!Iص|b d*٭u%RnBiFնXɛ.@θ><21)>ق<)׌'<BY{XRצ|p;筚H,M �{O52F`q 8�AGSJ4!x"nHy? Gcb~L\\s/X;"46MA|Ø]am։$bIw=it((K:$K=-8<i)7E'T5~u0tѡL^7g``C{z7׻ͧ ^&8(me1;ȮږDOP]64=:ba')eTr7L Dpۜ*lAt-b)DyZ<3ͫ%@( ]s*^R!V럊5 S4H^W+(abԠxw"xa ˥`Jwjc6RHH!3@ 8wEA}H@%էNJ7MIGAW3}0H)~X:[71Zph&pJO-kN]rN1sqVs/: uSWT'O.tViMjz>M{٥A^IgN,QEʼn-H;z')ᅩ~7m}BR@,!3Up0w]u+nWpI9>*.&/}60Re <kb{ηS\A~LJȓ^USr.߃ti :Vxl19P�TT)+R_SimBeaS<6ʘVz>!m՜ ghZWBi�A6ߦ<lB+_OsK]uM˥SBh}Swϲ!~pZUsQ0Q"g V}8RshͲ 2 ̐\M``6$Jܽjk 7eV7.Cq6^7w>݋_iS~"] {ٷC|=W!X؅=L+g͍.^&FT>W]a,}MA-cxi]ݼٲ7hkT'%~:|IO@_&.WĆ_/bFn f[}=คtЋȁ!Pd,bV6X#L|Ut˰D { (rt+!<I7U]Ek ]4)fLzq `GDW3K:W/ #ـNwq<w0֧81-y|k8qᄼ-q~N%JV,'В?\ R^ endstream endobj 124 0 obj 3528 endobj 126 0 obj <</Length 127 0 R/Filter/FlateDecode>> stream x\ˊ,Wzz ʮnwc7x1xe໙߷DH6foUe2'Tӿ/7,\fOtE]ixFiV:^>vݻhsכ}۳{l_t3smoM|E=j=/4x_Vz_4iKh<7Cz_+tg\#,K,CnfzFd{,^tkz࣬XD6J@ALVB2-,9=/TUQӏ=MfjPd=#y褻ltQ-Un1iYVJ?mQjcwrI$:ȀukviOU;G4$LnFZI_ Q*xDqqWWׁH[txyD�_h)TiijlZw)D"C"Gv:N`5\gqrĜW1!mH>j,VmQ奣$CXa8TD\&K'M '%~aޘɧ*C*!-ۡc؂Q,)ѦVDBE+G[UvǢ`sYe8�qQA˞4MGMA]DE2~!Qt& FR=n2+#!6D[eB w:H?Șl%FKn*h@4"ꀜ#iuߨk<Q:YsddPQΒs�MP Ԁu*f}Kj^f*{~`aեh!LqxJWMl{:yݐ?'eNJ^e-NYIWvP-WMe 7n#l*,=+}')9yT\;IQC�' \_ 3X^wXa( ,gkUաJJu{ ^jMIXk=oਗgQn6ky5: /Eп巴?I]<\-O>̦!̽lT_p2A5?| <X'X"ɀ�R<-f{|?QwQ/%9@b  D]�Feϭq AnbER,*_fl�A8QkI6w->e4ٮJTk6-@p۵[<p9Yi4n0ݞiثi\ E�'!p h[3Zk; 7+Y#`(M 0{[DCoƒBty*]¾=zP9]nU9RH֒tV<Ib+ Y$ k{}۔y 6l7J$3<uT{gNl$͎f j?):Yh!�<҂ arrԼn `Vإ6] >v0-[*GZ?e'َ¿ 18Tz"'4N&:(/S'5^,ݪOE| ]N!i̗0",dFC%ϔdpl[X&f;=gJ4tjf{۔e(s\*>/-ڂL�:=E   @ܰnb;M,UwH+zWI<~Y%$SeuOI1N53fZ4܀ Ѯ(S̬6\Ё.;-- Ʊ<JF T>E~fq"IK݀7FqO-e%U�VAn5PbBcQL$2 F݆07q Ow.yk͹}dk]x$>wvM,o;Y^'#6YV@\P\w{U<-"B)$uXBu62%2>.}.ScYnwͲQO)9j.K?wR[U_1'ڻ.q%R"a;lR]<mY~6Mc%k9Dg۠Nfe0t¡[ }-Hfa8;̒47R?tE͘/4òa>Kukqlan M4 +`̣ ~aw%c| d[3n H].Bڃ@;kG6'PZ7j1~ᒜyQ$B^'G.G#@�&%JMN}X)``Y[h*%xbŝ[@H-: J|@P=9qtbOFEZnP=<][nar5}@hOTxܞ2g7B9۩s^g  C:9WWb@䁝,S"8]TƩF]HP(|::cا<DHa1zCo&+vT;ۊǭPv (1eaS;wjOCNv?A:;vokmkNFB&+*u]._oPɎ8'|l W ?ޔQN>vQ=.S syU5zU 0ysF kpO*֦5L 7Y-zZ2zے} ~S| rFly9m<U IZc_CV54w]֝G_Ԝr][Nkg1*G='=`Ԫs8P*Ԍ0gR~1I> =Xn-֫5j67j6ֿ[ug} {P}s D/ڸ#! DT'9$0I0{>xT{ #k׾sԵwOv x  @`"eSurU3ayѱ !y0+0D^*L 16b$DW7k[&BP.n}kn:|58n13]7o&-:gynxs g7LkO1�'|SlaɏA"6Q|V\w, r3"gKa 8:*!80L{o|&cXmM T/ʷ0`I# qaQgZί#kh2Y@[wp@Yu됲<f߯�?ؼ endstream endobj 127 0 obj 3392 endobj 129 0 obj <</Length 130 0 R/Filter/FlateDecode>> stream x[I+y@r.@#naɞ12߹ǗYz *c/>]ie>}ߝQo5+uO;Þ9}ëվ_V{zv\SdW\Uk]+p]=>IpW|ݣ16<sO3zC—B/I$kOVb]|\) Ho q3S99\=z.oIT4<ϗ{5kP&A%uiJTtV&_?M̞ZM}h(2^ߏy$ECEAv֣jStYn?Ȝy2TPtIL"@^cs-Vej攭v;E㓾ď (:#cD[}շzVvqicZ7gh?+ 2 1zD$B$K�9d%^ݲ?Fͦp#O&}y;j0bp<z@<CJ_:}mM 9QܑQDt �J'TľQLMF,&ۉs"qdRe↝<qESBnRrk|eX^¿rs7i=q-F^9q?d8ve/=/+U;Nsj]u#s <UV? <D݇/\Sט0[cUHe_Q1Wz j F7V1xVW|Ǫr #[_PQ><Joiԑ\}RNg}N?3O}|tϚ o\B1&_]h_xr7q>_S֏բnCKeԚxO2db̃ %(KRJPFPJ\Cy4%]3LeX4czqZ+ Hy/D}E ,/Rְ )*ZY1PĪp"z\?XY&:NRbQ}s'0,mOridB-aO{"vlk2߶V(LB[ncr"� �fm=f)nM"pp)[G̊oZ!ȸla"A<'-h8(W[ #[jv(V::Ui5"CL@86{B)rl&VPD0Qj3QR`}GcU8>j;ݛ-;Cu7rI5Y~Ƕ'y 5yP7"Zhm)XK~e=*dF $wY5"mzH ݡgEᣕ78X_vb-ic5 0Q%6MCˇq_);v{o=KV[+, 831ɱMi(d(O+u #�ܵ)dg;#MHyG/BHܵg@O>ԳPf&T%2JtnJq^a%6^D_De&qGaqnh<fqšH bGBl tGGy{7I8#� t5`~*p2Tۢ1:ZUզUQ![2T4laR^ u/mERm*t"ҕֺw:!<(͛ E/+p۾νo ȖΊA0Q'w{rӟ "dzY9 I|8ޘoJ.mBTQA38^L'ItYL{Xȓ<k*H(xh,j|zX ͤ4xfXIR sU=$CHjF!3>J҃rN݇; 0TnWAw@MTkȕe͕ålwDw4 ΢;BdjRwr%^ 4Wsx7|P *# iz'wk� /@ujUܪN.o=+(E� :ldOZTE<RCh~C_X̶z&BsvĨmZe? VEʏ{HT/uUaH Iӟ5P`%̭JU?2tm]ag}qԩ1vЉPsw eZi6ˌPa?!͗w64=F5u;yZ.&9~ 6)E.dQBmۙBK[Mw J{ Q).)rjzo89Ae9V~x^Ka+HB;EMbOA�gLRzfSj�况9JV쉸ȑYed>|P+k7#~^! @yRpk4,T$ؤl ҳY$ 9mH˂ۣlJ)|G]SL$_Yxakۄ}EP_Wk-MTU8?$`؅aihN}`[qUX΂QÂ`H z8F?z#X]\n#r`[݄<Ӕ՘6q_3َ�@p<񝇏kIO8x+Ij\U`n(Qt>[hGjĠ%\t0p(@{$ϯ 0װ( ,Ԧԃ-8d!L4%c)WMa\R`0�:"UcRM\r7c \ъnJ`efCMIFi L@+3evΉ ?^}t8x!_fyz7.c=>}?3>99ɯ[ك AmL-nzMp.$.;/-ZFZx;pj03ߡ3Zn } Y(nյrr Z Lv(ѰsqBRe0ٝjA4LGԱЭ(Kn vIWQ3YWVҖY. 6CyR,;=}uKn8ibQ%nS7je<4 [E臚3ת$yKC uatpjG?ޟC`@f'|sHe"g}: J.'mh UwT1#x[^g�l~(í`c/ :*H&%J%LS%FRl0_U?% endstream endobj 130 0 obj 3386 endobj 132 0 obj <</Length 133 0 R/Filter/FlateDecode>> stream x\I,ϯ`ڹW L|=ɖ B2]{,T3Luufƒ_|)qsٳ:FӷqכuU;}>IuoR\_}ޤ󏕼B]ޗe'b'C7̇H?/w͏>3-q0FZGx/!nyV? q e=:N?Ks)0^WqQPxeYm}&y-hϫ3}N =`-Oo_o?,;t4EV/ Y?zu:FQ`"$R G|K2~0*6<j╌onueU#-%N}){Tv�y& !yq4 )(j.^:kc@ Β^OG$ y+M߷7]j~3X/'ʟ3Yky ׅ •/ۜiQ'=f}E fD% u#6q?҉_=PTqh�YM+Q;&7s6{҅/[�aa᳛ʛp驼U'kNo+W|J&]C^.-dx) |*Cߵb � .GI 4y(|fP  a^uHt/EزspPa-G0pk:J+wWu�=`7S^lRbka (h,3!cڐgHQK6Gwi?x_ty'U(% [Ė@0g7R4ɞ,SU+cAG>{zcaS[#ǩP='p4̥ Qk췊qt/پ[ jT|풙333nSJY"Y%v(21̔edD;KpXH<mZ5,WQshS K28_ƞPF:"HGP-4*2"J8vmhF;x؅MjDd-sĉ4XΚvtJ]\I:CXOX5tqmƛ m(*|z2b�B�W0=ARB]3OTT:ݾ]>:у Agv'2WzkJ3\kD]K2N5}Q~x�heY'�U Xt!T@9>oرR>b$#h"o�;SUT&sQ0/&0`PhR1Wgm*pT�lv*3�FPfgB-)eODrh^J~FC BrpDGrܺ]ڈ[ڈG�cP|0س~4GʵRV~on~ZАnxmBA(r(f⠷X~#YH/(2XyRʔL}n 㣱8 / " ?ݠ0<$ �DLDaT9`_GQHbA-hG>9a %5[I, |pY#Ux!nx!O6'aqQ%Y6عw}5SLfo8dab:D$-yw߰S#kŧW!m6渴Dr prY1V>E܀cR5M1˛!>m=-99TV7kOZ+ E57RNK䂧$u{He.GVqyH.nvaICYܮ(*EW)H=n�*k/@Rm}w[ىu2tfeR9 .5F,$1>&mʸ\όa-Y?Máo'U2q&GR6/tfS&օFjuM/4A)FASNUMKJ]#e$`#`hͣQM(.w$%~P>%?Kڪ('$N L&#vXD#H|)p~*hTjP-ǮE6@i)«9bQ^w5FqZo/f\!A0ܩX  yŠB;Le/[ V'YWnޑ3Xb9O5~V~flA`C&6v8>d ZrHgẌ9s14+`y95f_\$d ]h$4`cEE3|tno&aB&N ϿSG9ڶ %kuq�^,~G+hKt<GGsWb l6vm:VQ4m'ka78(.{=WŞk͠GnG6U6>!?+@&ٵNR1u "紣2 ޼u Um0h2jBT~M ?EMP:p;w# |W4,%h?9xjDmu!DSN l 3|qV4@QpvJ_7PQ Bϔml҂dp%*Aޚ͏iQ%epxj[bmȏ7;H&>xIPJSRLwl\Oe꼓F~"/q�.r`~WP[!hRµ kyF:t=;Jo/ہ;]2bwCI'@t@;<*QtaI߆/=Qݻf;$H+θ0imoQakGOv; "h_9E�f|Q$[a<?wzɓWm7mn:;[ p[nq, o;)Ll' פϤ+,DnÚVǽD�/u>Ӹ!Hv~F\/b~,-7D2W1Iu?^Z2e]FwOՒ=<yF0+biO!Pv]n("sy.#cj\DG1~_+u+Mzg8W*.tѝV_99Pҵ՛g{ڿPUs+v<JW~Z<Esѽd >u@ۗk4۔Up1)S/kE_)Xޘ 88KyGk2~*+/:u 8lD4=JUv\7ExtBjeyR`^Y*ejBM*kZgEðʚr_9hW4qAͶFwSCQă4缭Bm:!`ǐڿ9c\}z;WZl誇e6)ACx㕸Q7ڦ϶'1 ;iѴw͓čnhX 9izͲ�[-{")[Oa;ެw`Y1l Vr9s֩ YD6 endstream endobj 133 0 obj 3652 endobj 135 0 obj <</Length 136 0 R/Filter/FlateDecode>> stream x\I4ϯ`ڹMCWό7>l`,sYKk$l>4S]Kf/^DI\^0yo?1|bG,e>>R ?*o*U^Z>/7s#7yU۫;% _7TRU۫{:ףR鯟xy|-W^e~N[_*/fiV]t_ß p3MKدUmsnr[[ۂ-qO1 @ݹµ2|\qwJ"o6]o:K)>E+JK<T/z GMQ#4oyڕR(9ӃtDx[ " m,zJb?`)&/i{Z9q A@]5I}nmL(VNK xrd٭HGZY45m(6 <WO #K*7~ٜ".Fvdҹw{�jrU|'14IAq詘SsOUy&Ĝ|Vh95zU(G?&zvtl%smqL9m1~ݍ5EC(?UZ(_,*V=gj0Rlb WZhec7XgWB]='k,Y'݆_\NU*E󰅉b]QC(ԸCcZ fCi:p;s K_I^i6Ua! @61W} ¶kkm�SK!^GŇ\~EWEgg<xQ2_<=ܴP@`|2!-�L)NDqrCQ~.rĽF-m*2lj8GbVT�k p]6JڤK:x\V t@N~atA$kUt\ک:6$T:OpPEI,DsJef-�kїDxru/W0n}; Ew(m^׮.n3Vp{icFVsabz2eUPp\rw8uJ Q\Ye࿝\N`CR;_wYNJpP΋>S^wW~$^E Kt,&khrl1)XX47DR UziQ2.$ X"xRmrH`T.9mEƳZ!<=@R$Xr@xTX{PN3c!If~Nۤx K=WT('nUWζZ1Ѻ8wH%Z32qTGR7J{uy;s7"REi{/Ҷ` ye8rbr?fQqdzF2cC6f.dKe/bf bpKTbnY. XJ-2A&B5M|Ab5V^J S™Ew,CRdWJh bV?@s[l^U&dV۰ݔGZi1`(wϝT"Q'|Cwu�GlݫFXDGF L++ p9BL"cXA,%4xu"Px'Q<fٓ\QX&Ψ�$L/1}C4if֘*K�am(k>`+X֦$HrI`SeDM#E��'@KXg~cL*;;fMPTAŽ ({2NvŚ+9M^n]@_-v&Tmyk.aBM`gK hֽp~Y)3:*fv<)'|\wO1\Q8ۢ}j\\$BE\{/4+sOڎ~IWr 5Ƶᙴxv:!^=ԑHGq)s_)3Oms'.>zٳU F%O 5D]P-AJm ^ŗZ47sљH%=^q'hM#+S>,ޜH3>�# P�yu>í.Dy][vvL, B8uW~]h L*Ri*Rծ-9 {D$ + Sg$ch3>}d+ RMcQcY(/сBq!G* R_41T-)A_Qi1]jmcDmD<&mI 1ȱ HTZw|eZ)4w/x6RTi & %;Q<c|)53uPo#h't?z2x/Z<ІVu=YռpV:ɮQx9i�+miRV{^!v{C+=Qm6o5UVwuZVA<ͻ#Ӌe[e > CDlD$.}kHoqL]"D.vrT9h j>n?QVg?Gϸ?FFj ,q@3eп6\ڼk4JV- NܻmTSy~H:E<9&ӒZC"J$cD}ww�EM Ӿ>D,.xjfm&pQ〯GkvYyp^ݵ.R#2P$jyҩκ,L]}(%ͶƐѓ3J:Gv`W'b?&Io?J䤛$|vAxK[,ɂW7t]B@ߣqh$�',zF@W;Rް�,O InWSMӾoECT2uuu]W0ޣ[@ aO杚?Iȟl"nOIal;&  ]]!j<E8OEXxnxd.n\[vUL;k=]X^|"Q?_٪Y~>ǭE!nն}E*8?;cXێm:?F){= p)16@3ve r/6$L"cCs!WkM@[>X:k;6ʋ{eo8r4h{&VitxBsQ 6bapIy1:yh֑"h8.mrowݠik6w-BKT!`d?ռi4x)a*Axʨ=vŝ>1~W{.U2Ьʍxv$`zWdP* Qh[q!E>TNmlLwmEH6a endstream endobj 136 0 obj 3511 endobj 138 0 obj <</Length 139 0 R/Filter/FlateDecode>> stream x[ˎWhm;,Rhht�Y^ nỊ,R_ ϝQKYS;^Ue?&":~MOyyI_or:{{!M?yM,.V.ûMH0ΰ @L۷aq)u+7!7.M̛E7u^7U p Vs]4O7_ v ȼn /q݀pa7٠[L<6]__vI7+S{TeaQw0[q7MǗϿՄ47/Bխ7 ,9kŔ:xAxųp?4 KJXpewm~jE9ҝV_Jq-p]h`|[ȍ1qE|�zw濧аY*g\,p2vQ8e͖lLӏ:w 筥F+`u_qA]vƓ^/[z,5>;R !$lv{dm/{:&􆉛' 9ħ5L%XWR}ĊcOPx p7cORk];lDMBv/ȁF5H4D7Sӎ}d",yʫҖN^ڂ~`t/Β}3UWɌ /\ S5bE2fK4p R.6@Ypr¥\PR0j m#ӄks9P=X+ U1龗얱W2_b prвy:hf:N/if0 9Dz갻n<adZXYKt !.rHUC|5,L!&vw_KqR<NI.G!zr8Ca>-E Ox!=$i#f(@/1-U2fpWvuPT2l芟0WsJBe16xYHԂ-*/*U]j}Ue_pT4&9NFJ85~95HAS{5y|Et PˌO?Y\,6H덗 CRA }Th[yF"Y5)8`PSoȅkBfo.PvuS2@.],QٜZ Фg+j%ANfρ)=<<RN@^ѭ�2+6t)/9xGT,5*EDHߏ/ z~ &@Ly9I|C }Td"i, r~RީmjeQ Dg eKIq d+(=x] Z@fLA H)G@{):8EG3%҄ IA3{d#IBԈe)4-sWrWbW \J*!2$3 Hd'FW I/KJ %I[ik7%4u:t?~wHa�JZ<Uh&}{BWM2 H,:p{J2M ,]++nߩ1>c�;hM`fq`qz_¢+\%]TSzƦyc_>y.=xb}^UJkq1LzkL1EASaF CD̵eqWik8O0O%Q`n<n GG 31ԏyro*S íWa |71\,�ZukbV&ʀZ/)ؑX?{tR#]*yT(,rviq&x)tqOO[=+}Q`Q!5Z;sZeB]meԋ-1+]Ƨj7<@Y;˃, ;_{.m3r6�8@st,Ҽ fb`3\\iYl9g:p0GiYG_ߘ{L&8-:Jx#c)Rb#lMI)"|R{\_M0�+ W);-v&;H̑[D,lXMf8%b¡(E$d'DdYЁNcIPOŐlsmzJ 8ci$FH~z:X,TR (Y \ /X`W42S V ;fl1ؾCDOD恳  Nrk I6`IɹE x枿MbÊ>$أ#=|Y%R'>0Q:̈`(L9 28=4\o Ŝn _!K@;R,so{l\ XD1x(3yGhIQ+09ݜ-xu'{0ln{ #g\` ,a<w.f)WX9G2� RXHf>O1"MH �gcv t0 Њ#Cc^IM>/Y75hJ9ZXOi^s!"yC'=O0Ƴ2jקNt!Yl!>\X_ a]@6@4Jqx1ֲ,"Ԭ=ot*΂uAYuƖZcZEKl/`Z]LCX/|Y%c!ߌE:vA|s%-kk"0d!F8l'7so; յ]jO3U|=9r&'Hk"C;+/G2(4{v@ͼ+ ar�YE$ՆAtBnZe<Zc/<L gMfTZWR?~c]~)T DY~HW)GR|ϬicOQ bp|A,7J os8hK4Gǽ!K:ߙU:ͪ2&ٜf˸X_ ~Э;5e"irXA^PF{o<M\L6/37S8e'uF!@(k|tLI #xk/":eL,zVTP\@: WPFr GG[h衣22.{tń|#ǣvR<S endstream endobj 139 0 obj 3323 endobj 141 0 obj <</Length 142 0 R/Filter/FlateDecode>> stream x[IkdWy@R T*O1/kė˫>4dK>r6~_8;N_~y}>-jW꼞>yÇ=iso/j~u/^oE_}\]Ծ(>‡~ю.K>}DŽ{_ԯg[=.:|gKǙ辴[\zZ=.j6y&ޑM Vei=18/r]rWWafM Ū %EW5OOO?Կ[PFrʫ֊Mޤ^BI ΆGSi|i;9ora1P}Q[|Jo%s~?H#_wbϛxV4�eq=w$=,).ZFwVJÆHOk}2:񓴙ղ-Gu\3B^ԝvvBq-ԁ7}_ &At1j*x{gq&JaXH0C)<ݵ!ޤp=o\ 3F)_weˮ6᥺fhRҼϩ-;-c-k"BIz1EҲCL@zziOVnm.j([5xU/S +*Je(6 6FnEJrcObڪ$%-a~Q>g{Fր|�Z* s!  ޑ;+0Gk25SM F@TJ.г P JgZ. O6Ի/noe8c4I@K1 zK\k\A:x[ad;  ? 9Q(|ow]n+`:.W`I/V'uz>pvҋʎ>[Hoe(2ri1 dD <Ծ2+ؒi 0nbnw8hk3ڭ\`1Y^}+abjڞX6<Sl6PR Mxpw:nUZI >A3D9Uie_ dʊX fy >gpFꪘWBx g֙\YuCa#rB%]E*,Geg`!/VT ^uxuXuK 0 ϛr!Q|0VzeIʺN no75V|0g,ŰrU9UC,њ۵EUjbQQm )Ȉ)s4@_] C85y9,R)Ct X][UkҬY{ۮTS[[8![)=d a >q!:dШƧsM4FIdp.bS۠nHdpA Q2ẐňD=H09E,`0@br]&UY69ջ ( `y/s je[LE2٥ X|sD|z)^&_Q[:-EYiĬñ_B\"ՙQ5 >Yi7Y#J "] ,kDasYRi2@ZIW Dΰ,c/ekUF>MUʿ!& Bs2E`FW:T)=Re(V8եN  mGiټBԥ)~A5PIp]0:$E* |`r EZL"<iǝ~?x WP}MW9Y -,H8*٠ƚj!IVGDbJx'f6, UbUTˆum:Jc9>Lz%uQgr$x:[ъ=T^N/fO'2/?~lµyjn}VFmz Zզ_=qd}q% x0Ay;V lZ(uSZURᢟ2˞MU-솜3*,d?S6LSK?[UԢIU]k&H Uж $kؕZ tSj9`, Ih$)EN9@J x |h&Q5QOI: Z%s K�]I^-IN I+b-6Z%g�q`Tו-2ffX0d#5`8NW%H ]nn;(onwZRUdp͕0G�҂33qLۆ8ʋ)`̬Z#f7;..}qK НVM~h`ͳ.hxɞt]KU"ڼIqljviJr)0{{_,EޮĬ<>n 6 59o|بFrȹ4)UQ҆[f ׽#4,RhvB_Jm]pf 1ˎ0ke3VDΩm rS, lvL( du!lՌGz6X�L3GMR]?A\& Wkɚ*M|ugVU\=%@麱9eFICi<> P} $,UY2|htɣErƳU?5UK:%.M3f+sF$N�֪ XU&p+jLyodQu.װEIelhZO2`h*%ubӀ(n �T|`$ v)Q$UiTӞ FzdL~&. ,I֔:J c~߃Ī_Ed]T=�Ol ǽb6{,LWD_)wʵY8 k 篊h췇RiT)c4EuqXn`-pj3ZZ[C Ni$ZFۊ@C X;NB&Q&=al| F`Ǘ4'T0ýُCEA2פdD@X ^:%LfWf=-drNǚr *=HvuHWiЃ\]G2f-6>}kuOϷ.w?u{YG[KTRGKz18`#)MG zSozjEC])Oem endstream endobj 142 0 obj 3375 endobj 144 0 obj <</Length 145 0 R/Filter/FlateDecode>> stream x\j,+z= 9UKWmnlWx }gf#"QՒg@Wꮮ̌8qQ-^巧_nE]V#__q:*ċ|򻻾HuWiU_Our>W_"~خ2]v}pylO>~5],Wڻ_>xV CIϼl.RC> צ>G~U\}K,M%:0(x8آVf)u;]UNjADx- 0\b5h ӇWz9w$'@vO׊xԈN4 ßUųg vo!܁LTim(:Ev@kwDR//߇x'D-5sjZZ-Q׋5^K8flH ޗ&!u_WbgĦMB[6obWO N8*I[hyrVe^tW©4 qƣ{'2wm#9B{VzH^-ꙛ _:ldaui[e#*^J.D8Z8|-9zt|(P-hiV:Kb(?eDuO8,I0|`K@܅NnrҐͿ+2q.jD=(l< ؽzm M]'`[ +e"҂//kt|=PN(gN(m+d#P*0QedaKQZa-ޡd3o p <{ݔHG�Ɨzk?iTͿەտd~-叿gi^Ԝ׳Lyq[!M_ppΔ=j(0 u8Wu^"A:F uC`'WXlgV̦�6i^5]%Ij!L`כс] FT$qVqFD?(hАs8^H]R4κcn gURfQ @˄R% fEbB?T8r;v,˃Rڋ-[Lz[6'r*1s\`hK{$*U0TrKg88DUXvTkH 4S<!·sl{7Yox[95Y%y9ʟIIVbdwQnU2vWs)H/-0ղmd#5X~$Ag; LR`wkS3Q_{7ba/DFŐ$L\8R,U!^RG6W N`47~W<$+SR:`JJq(s1tփلl x=}KU=tpmFXe@(YyH]gkMۃ T>tp:T@7~`IŠ c)Ҫw{SQ]&/j21ke1r˺ZdFPQ4ÀL۸"Sނ, DRd̄F&Q;DmO{IT(}' S)L.맚U=G(Qz,Fߟ!p!i!'<en6Y &tM,JߺWf)/FœWTz#8dT[<Ű|W)Ց Y-JhLdV6 N k&P7Ʊ.zY?T 2^tZy ɻ t8x ͓�@nyss._))N$M/8@{;T˺NΑDHMَpb1r7~)JӨ+oU{E*?/%S BLFxw�I3c1;%nM.xALjf*e1N6c$B^,h#yǪOchO{�!19)K˲vJ{(, }@f"eu}F,b UN98  #?VlM!GV' ʛW-$e1AРpT{4 gBsbVeቷdL<狁A)r;sYx>knS?hqQC$OyfʣJ06iq m5:I\G{@[QZ߮dqB:4]PuOT@"׶)Mg8SDj"ӎn4:SM^oGf`5Ku!ž朐qXQ~?%7%VTɦ80Z*^˦2I`zFUڢy/40R4Yl V`$8e^QնsuX/it`25!?kN@6[a:O 9QEP^9"+:qgeyo4yµZ>(awތ-qgye6G苌.'՝ԁ'A:w^x0bnt2lԊrnMħڴe5kk/Ogt8U7n 3Qn]2iwiZZ¼QpSz$'* Rۙj]q+XaNHMK1W^GiL7gN$our$ µSo9' SC6i~IG$G&2*ڵtnd7wfb=`E,8с@=s UuR-il-LEHF#Bt\,MvɿF=Rz֧}[Ga4Z6[l8T +YONʅ a'@"|HVX[j56g>ҭN9uh~ {!SKW1ѣQWDžwh6k$Q0xRH Lڵ .|,#SuZn8B.چ<&S (gJ_ h)zJAYX9Ui8!V f^jN9xo`zD'*鞚GpZ϶9Fih`bLxQE nOB݃,)6O/Z (Dgo`rk8C :x$-N * nkx�)[l�zO`'9)0*7j/$jlHxP1kf1$׎<9\z#P S9lVzUAg7XqU g;,la_)f1hdf, bo)5dž FYq*{H,,^5=|vd3YV!7穁ʹty1y{S6dr`01{b@*3&6n!SFi'zTғE{wýFFiENRb_@k\M PtF[s)P~yˁ|n:F';܂Zz.w LgK{}+tk)GTL_VR4THU)0'EUè{kW?VFı_?KԚ~~@='uTލlS+;(e6d8醟R\b%5V )6yHöK?)!Qi&7K>PKk@H!&Z+*9L'b_!ߋmA[HO kaƌ/je:LQȌ!VtG>O ͛]sJg< (~ endstream endobj 145 0 obj 3772 endobj 147 0 obj <</Length 148 0 R/Filter/FlateDecode>> stream x\[4}_1φWXfvvys8?JRc7;Hu=M_~yEu|3eoۏ/|eORo?<EO?:a3j^7۫{܆wuv{u.}{qiqg^臚ot2~nx_jt<}U8-]n oOPySxM+WYF:+pl$^mֆh5?b^6y?Ij~͟kYO b4ƝkgV>Q&>(G6K뼉VQAbrjfdpƼi/\Fvt^sm1K\ V�')tu2!yAvr%+PtIT*ήCBZ'Cjmt5nAIuCz,++zǍow`6N^z[e׋ͺeZXm[.~wiCo?<n˟0fڗ\֋vu2jqnjT[׿Z2'h5.LV8q _ϕ0ޓPXb|\Xqڑr `CmJ ƃ^ylB 9>vAD�@Ln_ntǺH9P ~˳s\\vd9o~/`'I.ۻ?-Ǒz$ ҝӪ*F\~ӇI]g7r)FkI 3@cU2 zৄd\F Y:|@�ݫ'&aXE(Ւ^b2۞ OP}C^HPK |2Ġd9f:kwFO!3Y,/IGW^g^S{^ uX3Pؒ&-5h}K1b0a�_Bd\զMOC 8W((bFSZ& ej!N16^YN^A&0v1p![:)?2vulNY)2%6C09Z!җtxGͷ@m`�$P&'c[T9S0=J%1Ѕ:"1uBw(vwkYdF %N* -߀1 em3�L6bf6:IxгW ي,(6ƱGQ}j83jposalH*[]qYs 495Pr-RGp$Ɵ (#vyߍhv:,W_`٫Kʟ.^?_h }KTeA%r\ɛM l, v;e,tcÒߍ:sDhhH)V1ԓu.EK&J*>R@ LֈDV9�_]mrͯ^0sr2GJ).kd͚>jU)Hʱ 9fG^閹Lښ;R�9-]SYdؾ4AibvK*XohUSI(<C!F ,Vw tR;D$9bEZԱP.*S0qBzݓY8 ZVtr*f9vʘ'φ\}dc]32 ?pBv_v.8' oAm.eV [as2U rl.--1 lU@"*Xp2O ߥpi8V}C.IU Ig28L(\THxKe?+9ȖzT9m:q\O713]?tC4-OaupveTh7t*>%pQV1iW'817ZA$9p8v(;IbAw@Y=ܦ v:_a0c2QDU}+O}wrգorE8ȍ*1Zr4/U*n.2q�&soq=T;ܫ ^C0I8xS/:$Z3A̙ @>rS RC-& ږ e9)\|H1Mn@E;. 794^푻$vQ3R{vz &lf~<Җ '܊\\,<"m_( Ԇ>?ceN' .oEٓ2o|tqaډF6t.w\]&1㲇!0ȺbKdAPݹsHQo(= d0칺]@=d_|'˘$#Q|<%"K�<!pyEqBT#Tq/au*;o(w^;op[J�֦Ow~ -WSK,aKVlQNM1jL@cYei<|3@ɝd$#c]h׀0':>+R@yuWVٷ .`|Q$ qfRw�-$qCCgIhJ  dٸN}IN 3s%Sڜ.<?% Y9oU+ɒ >$ /Iڞz-u34:>@Ͷ_<Nf9u_O(FD+$Xu2|"΃S!/7JDH%yn؂;Ad*cU #Gq Gn?kצvaBN(|^ ٟ"Fj]AQG%sF ; &zUS]r'Qq/ N~(Nd3 XA#t?gz]*ݒF $Ɏ}j#bN|Sp (CI\Ky*�E˧$V\mA�zs].fg~3_Qoeӹ1zÀ9`S9d+ysg~$O@w_]+:W|!~oJLR^8盫z5v|>UzanW=۠184#KuwˡIWZ70 'J# |M]Ϊo <*�Ι8|^'(^8e`o5G#X H;CtY"m̑L0CЊJr/K7ˮ_)S+M,hxQYU/[H'Z^l0;H-u8�UqJjV\G :\�!PS2խrt60K΃7 zNuR}\[{sT"ȹ`e˺nYHc1uxZ8LK O M3|2df†JUI5*e\.ȉ'|]DlPϪjЧFq?^w"܉odU"Ciܳ5qE=/d= endstream endobj 148 0 obj 3612 endobj 150 0 obj <</Length 151 0 R/Filter/FlateDecode>> stream x\Iϯ賁p(`hz:oN!)q⿟Z)̳DZZHz֗ߞwQ/\O'eK?ye[³ ~?Ӌ,�UϦl�s&IggYOiI(`l$Ū4C~/X,8X?�{M㧿v5/ҝv/j5 747iu/ܮWj_ >V=Ac$tC# z,>uI'<ûоj'4p0*<;DfDEZ͜($x&,">hҺ?<02e^@ Fe6܀ ʨYkդf`m?EeJaTb^@7`>5 co-$AAbuw8Q,@閤+O8d]}$H8 X/v:v;INkWvڑg#5})E'lޱUNdefy:RRh4`=޷Ҝ90rkǺ87<oټB4Tɫ^0!CoQ$ u]�5Py\֔a$*6,=rpl8XC anָʰ%hg7Un2$4 T<Q1;T9Ǽ!Pw*fr'A`zƸ@v3^_mUp7eݾ?P-g9Jd8 R*I^M#XFmuXZcb$ݱIשX5QJHai� yd62f S*IƚġX*rz`>}wQ=C&Pd% 9Ik8Lur:BWuKA#yi%z!! =PVY͡i;=u( ;j'm<H!b_90wQc-w%8(j2 T_ ,u/?>Ǐ<8%N@N!uk1}hٳ>6}O !'�KO;.Ĉ.M( +D= BqQ%:2K&caבnf*b Ipْ42J*ZasLɖvc$hjV:3BhO׮aMPwMWy{\W;T)`yL흜"_cнv cS_‹͌@"%#1@%.șIF}F#x T|u+8J=6֛r)vA^ * U�(sQFISĐdG,k s ![r$_@d_ Ðb#u6:RVØIٛM;g2dsmåXؙ 0'c63fPD.(۸`wHv-_,eAi,Ξ4h} `>R^+³hNc*Q*)@QJ nU)l<`(@9՘]QUX 2Lր\пȼOc.Uyz,L wCш<D`>d$fmNݽ8BnWMgdb$N1JJB7T �DӖ&Дb22D / i�7ͥړ8�DT[-e|޷ʾSV ,;UIjj?OُZ0Ժ\X"WI< t\,mo(1 O T/qTpd7 g=78!f-.ŒUE LX6hr* j2zO2cOAT[D zJ]VYGwGt'r~3IDKFe%㒿7vbJu X()pRY8L[{Qj9-b(\",�4bQP͊>#wchǑqRIu![Z!-5I?Dۇ: 7܋pTrrEqźL~ dvj Xnh].Ŷޱqj>l14QU2m7hcȚ}_ǩw&  7&wg)G)ȞިB Y^&=G/T-vc[6@-UIu b:�x7:^aN3s;)tqdow m1CnIS*›Drywr�rm/.!@7oq&esJ#*"P',o4]T 巸I]x嗋x.sk?wm-Y8يr zͮ' )+Ah-}S߬S-q֥#BWu'NS{y0L{k:lBOTG`Vȍٞ$ir$aݩK9#$qG<mXQK={(Tʝ#M/]lwM9SQ|b[:͕`/NбͰO YhVա9)|&չ\YNpwt JAvq'ekʉcuvP9l9yRY(ȔD0]ai٤_klr%lvnIӞt )Gj)Nöo5|Ȯ寧;B2dL5v=T_V}Vߕ["-~EY;;Ч{$QOZקI{KP-V@uqYbA^PozstwGĝ~$d nOe[yw)ݯqڜ")/=ox.\餘pv)!GiJUڼjAXLXi,Us3>JWÙ p{tuP/f榽(8ڳ1{kHhi=R3-WY=>:xxRr쟪t^I;_P4V Ix5 K[j~Uꮴ;oF]Wnu9Ѿ#k{U$#Zܲjt̴_u\O8MXG%a Z2G&턯oqOơ$!^S;Va$w%hڶNYdœ۽O*X ٣,KQʾ/V3$m\#ߤ NA_8ȒG')ȷ{S�j/*Yf5L{wxW-xϧ[w :Xq\VW`7j̫^Y|{1g[GϜUpe/|_Þ[$_ܬ&} jF'( 3c7Ks˷Hogqdw4`B?`:3]V!RJVoJAn"#s,%IA-V0kE| 08y&4a!`݄V(7hw!W Gfmh| 9 ')Yp)ahH-!;4vx`<scV G4}I\/Œ"5LN}R~YNisZ+fqf@/~r3|/sI-x\ЛޡS1x^t5@n>+·g<Ԟ D?1ܚ͙M6c=_ ;Gj!4>c=_ ;Ij!> c=_ ;>#|5HL~iL?aB2}ĞԜ#A#Ob<Ӌ%aH/ G:ZŰyiV" endstream endobj 151 0 obj 3975 endobj 153 0 obj <</Length 154 0 R/Filter/FlateDecode>> stream x\ɎW,ʹr & lɀa\=_FVKFUd23/î|3bZӷ^ e|Wsu>9!'.ϟ*fou?b~_n╭_^M8W[Ce!k,�wlRG |q' &&n3>E~jos&n 1X'ᤐr<k`vv3ϗ_u[ܦF]z.ӲZ]qN\4CUkfիZp]f_wƙ+EHCiofgEWKvE:U׽7[)R%z(`v*0& Um"ʟфSZUAm;o:)]ͼKv{ؓ]4 cz?ʺ>lV!v|Btfu*ɭ<hKazHBkdh�_Ui�> Oo0c`}-bPi$8y80{]N%+{һwl4pNіEsN P0+oEr**\Dg CuJm|ά+4,{'`WN^`w t~�:MM;s?-̹$c qZ|11r#lBMg[3{gyQpcդ(pXZbхT"9')FwʫC7cT ��uFA8fdeHbؒZ߷jen2$f{s#&//{뒠3rw VP6 "¯[Y}ܢT1m�㸰Aq6Og`\R8(``Ȑے/g5T,%C̊aVʽ]hdM-b#C9RdLD#瘵,gZS ޡ?AbTY>_c$r #,'k23�2)\aX)c)8tgYJw[D8C ~*�x`5ݬc!pzuZ^*|z 䫅 >ȩߝ.7sBTtTU$ ^_?"� Qfқ d-:Z;aZFSAj�#0o3@ńoG^?b8C@]צ!1rg /EYF* 'G$|WBĮSK*jEE6rjB  ;5"fMb<eZȦk#f0ܑ=jJ>OYkJ]j Mo5mW >|WHbQa84Eo=gFVɈ~_<�$ÃtD][9q]TC+MȴDUʶozz"C7*Fנ%L.0Mq B{ȄW1M+ >I� mJU5LUF%i+'L:z.R6 o~;M%U12yRQ ղ9 )s# F;w84* {tR�dI ^"Pᴿl6 ܲvgt/6  ۤ1HK`>jC)-@o xRlnK?m̀/t1+M,[ dAyl[َن P@ߑ"b)k,P%t:Kjl=uvӡGp uN Ԩ 50<7藈Z֯a%AKms.L<)<]Hfoɮy2+fVZ%<aKw0!ovfnֈdmv*PZ).o4Bk"r弔yg  {cƣGGCv2X-[+Aƒ!h|b;CZX]+y)hi'�|h$NWAWG㹑 OT&ѐ}&Uѹ[FTr<h Ia"fWZe LcQZ+(4eM1h.VEviGW+&H'A_7'{lFt]eq˙pqQ3;i�\٦:!/W "{Gvn$mptFMz}tfˑֺUEGh`v#~\4xXNDI&AibsvGXJ)i݌BғXz{F�Yn|ODшgd܀RG0n_g&-Wwfu� eD :?ps>1^ $y 7pL3N(97zj'h(Eޮ-1+!ԗ)"~I夯Fa]j՛;.=x,>ºCZpmObs5|aŎ2q- <sgKn1N8[lX*v"xig& XⶪK�2U^[7HhXg %<U-= zhָE .K|Hh-lS 0G};W*{T\:5Br*85JhXƷ\$[ \tUȊrVhs͠AAw g Jւ5^j:P4칷QΫix`^ J6ƂG=) Unhz֖5af̫36cQB3@BZDe?\ Ϭ=ðoЛ 6VKUC14ir"LmUg 0~P %RG:m#*Us9~6> %47fޛ)(K#_2N7QL\j4Z =njj1gBr̦]&@}7c*!Gb˴D@دlc5G?8s[ih*G& 5/- $2: cYOr921&'ʪ7 M7<0�ϾlQ6hNQPkG\w(jGI@9 YBEKl1' :3 6/Pf}6rA=0KOhV_EoC> i[�UhM/,I aT`պYh DKGs{?Xn7=W?4$'=8ڹOZYD _Kgkk[όR}U[�D$mui} .!cbĺ endstream endobj 154 0 obj 3483 endobj 156 0 obj <</Length 157 0 R/Filter/FlateDecode>> stream xZK#7Wy=e0 n8&9@TTRw{a`'{V3N?Nwv8Ow=H5}*.(R.J_Q.*VZŰJoQ_tGS\V"m3ʴԋ2MX!<-V%Cʠ\Z9Hw_[4MWL.JYZd["-<[Te`Gxʔ6ngmc7Ҧ[5Ъhj%_~8<>;y| 67y${ƭ]-,RVу8VrUd+IIK;~tUVEWgjBԙHWH"#OD:pLVK0gkȭt9dBxq*~۔ SS{~yc(դ`ܵ2$.La| oEu\Yg @llԸu/JCXtU+F~t<[$[?-z Y\h:/alco<n؝78E’AlDco_*RYKA +VQr,gmB9U܃v׎b:WBoa,DÄBIBÀO$(>^9[U#b"ZM˜0ڊ[X٩ۙ  a]KH*QꍨKjK ڜtɁvGވpCA:jxjwu<Uwݗ*"}TiC]\4.]pd'!Ow/T[JHpްSYmơ4ŵ&hK;!%MXu2R@M) eNL^ox`r~ƚf^w=T֕�C$ ?18 a6fq_7-^voXs9@@ :<@v#T]\8o%'RlWb�:8 {"+j ~`̒%1,ޜ6睪ׅDqJƠAzJۜlri Caq5r:r5w4zaȕ3 ?>%>C#W5CEH fˆVr >xaBS*f߶O%bKz ظ->_&rAݓ qV먼b!p_;]O0OqeWD>$U~$QiV85 oxK" H'1T5˺myZ4C>o mѩm d7 # |(+!zwrgj<NdSEi;A`nݴMiFr\0!Lec+G|I=dTii<Paj@%K{A3. uH M'2~Gj�-$B!#<mHFP\x@UHdW>nRh^}ʙL̶rno(EQdfFrQ[\s鞙#0BոBN8wӔ6\+'D<@<I2@wB Dᰒ9^4r _%A!k͈T :lLKUd7,J'rMqf3)+3)+RWac}t.JlM7UmW?6alt/C]'�M09I(,ɐܤ5y98pոe_FDI(nP؉!lh J1y.kY\S!B2@B?qܝKqJ;it[>v}mSS6r#e[ y]'O̬tCk9E;j9/tITyY1/<3lz4{R9@S@d:S^v5)g̼ SYnאx m͛P"^yT"{<vB_׻jy2&K]ل+*S3 '.&T^,?H'xc}!*rVt5,?Fs6E-;xFg0)-ܑqYZ %fьr _^̾Zz5s.Eb|i4k)C;o;1Z(�:yݍ`9B^ {ԵG8yt`<U#kX~8n67(6a7*XÝm3#(o;sSobZfg)!&]1v endstream endobj 157 0 obj 2318 endobj 399 0 obj <</Length 400 0 R/Filter/FlateDecode/Length1 3140>> stream xVo[Wҥ]ۥǻ֑<RYIqT#ol5C1<4* $&Q  $~ _&hGKls>,:FY3F/7ʩA࿂ˬKn7*U7'ob'e,j^ /Hݽ9gʵ捛�!:Sˀbǐ@P@Y=}|4az?zݵxX.F*}TD,ޠoWJ-0=G: ]"h+z@їM~@ <}E;?Nŧ2] ^A^;14Lc§FRGc¯WHdHc"KӨ4>Gg'q>EEpy_Px奘[O7]E%#~~a8&+2o S)ӳ2Fj\OG|lG;ExTr|Xt _ԦͫՎ м/Mۚ I"M' �h4whRf-zux5ns`yRZ[T[3ADN1'oq/ 夙WDQD+mE%xJX9%XbbQ*/r*&"6'6q,Ll30 ^GwcXCLZ&eL]4hx|+q|+H[~I%zLc){y\S;$OY#DZъ;1;,; 'ys⏜: Knٵ4{aޱZs Y;pg{EOQb/>{'N=+4wJzA)IwOw7|2<.]y8H-4Y!exQ8}G=�pǛCW <ײ|:FӪ5x. u/$I>%4R%ޱ峭jŲj53dr -r˓Ծb^\>cVJ'R6KᩏyY 7Vfvw\QGwt٬ZE>4n=Y<mLqҽiyefٵלܨ`[έJԹ][VYq@6 7܎k*kJ%=s.Ue25eQu6-d&>/:tה!떝ۨ:լUjUMwGtH|^,gi @9jy*XsɡmjE5o&+CMK4CIx10'ɀnNqFxFZTE KE[ VQ'qMy)F/#GДR8*ʺBA*^jM )TL)ûz3bU-وRW:x<ƚТ'ot?{޻Gנ)L*x 0hozC I&q2kl_ۂ_|Cbm%YKT i7u~;iGŕuMt:륂STv+!ʻ:uG.Blj4X#}m ;ՁvV)w 4.{}*8N.Y;o{% ]vK}Hbf~kZ} XVrF endstream endobj 400 0 obj 1772 endobj 401 0 obj <</Type/FontDescriptor/FontName/GAAAAA+OpenSymbol /Flags 4 /FontBBox[-179 -312 1082 926]/ItalicAngle 0 /Ascent 693 /Descent -215 /CapHeight 926 /StemV 80 /FontFile2 399 0 R >> endobj 402 0 obj <</Length 221/Filter/FlateDecode>> stream x]AO 96&f&=?´؁L)VM<@x7kQ13.qe0H|pPewMJ oKƹ16ү-78=8Y;{@ޯ~Mg j[8=O6=u.;"_mKd USU-4[? }Xd-ISSNc2K2{?'ŴSe}~my endstream endobj 403 0 obj <</Type/Font/Subtype/TrueType/BaseFont/GAAAAA+OpenSymbol /FirstChar 0 /LastChar 1 /Widths[365 355 ] /FontDescriptor 401 0 R /ToUnicode 402 0 R >> endobj 404 0 obj <</Length 405 0 R/Filter/FlateDecode/Length1 15000>> stream x{{xT9sdr9 B.C-Cn$$$1& I E4UkJJʼn,⍪J*E`NϜ |䜳{^ @&1( ^Bۖ]3(l)(ٷ<f*BSW:%V!nhk_~\ [uA>g/3yemK B~?vm/@^Z?<=;0؉*L;6A90|<xA7MhNOHL|rJjZ+dNO/pfϭWYU= ;!k(߈tW;;By|MF04\S.z ՀP`EƆu jWWUΫ[^VZR<'P4{ ,Κ9eRzZjK8%l4uϱ h­e!&Uer[EU9L.o ImRl\Qm!U mBqk(�-;2ioEi&I˥45CzgBjMS3f|CR+ʯ*kP"t2FH&}#xl&Ȥ#tZXiY[{3 ȥj*Q %!ARꦤȔnɦvmIsiCLur(C. elx+MKBUT]TQF3i%|5) fxˁCCT>:6:y,Ј4WF0;[! OjK/ 7Hj%W$mj[9aah�-Lhs]s$/P kr0DZiSg#*l6yrp|G[hRЮT0듇lV0+yRK&A@oh!Q|y| Ҭ6Pa8erYwM# B"ЦIl$; zKUa侐C..%{aErP2W(LWRմ[QnQn%5#ةi~4 KȴPRhA"(7w73NyUE z\P[|FtǦ}g5KIR9$p :DZJxԌ(eHeZ;lP^IEt4fa /|2 "Z& *t%j廇rUj;%tm=D4fpYnM ef|w"sCsx;ҐNZ8DP>/zUA5F;-3 T[rHC!yaL5؞M t.U řS �i"`#GRF-%ҌD3tz6Z旍be-%212Q:Q�a#5hktjAe1EAeք;QyDFZl75^qQoMw~@]<] lpAeR;U]CAِ D8 &y6›B8diy-/\�. 7kCjflI)wHJ*hH ; �AJ X# YF@(+7oBɶ2.>EևsWvRn *"rG=v +ZY3pAM"G[ SXyYBi[HKcR} )Gø7lfO(ߞVUx+^>ӧZ� ȈbѤ7ns]D0ϛ&'|i$.ݳqU7b82o~13WK3奝X6}rrbptP᠜�qziVnn*-DE" Æ URl}>J|SN6lWN~a}<%۲nY0\5rYDb :bY]nb+M 9ܰd8y99-*>pu}Ï}By>L[:Ϝ HRX9< 36ZlCiclAfT4<(ɺĎA >P ssQy<m[Ï|KO8ܧXnC̽׬x_8/yWL=3) heZSQQ u@|p!#ɔdHp'"c(2Ty5NJϣtO%y#*,';.w"aGߨjі'4Q[7LՏI'左d/Yw]55e꼌3\Ky #Htۊ.:Rdߣ۠*N\>{|ݸx0Pv>BQR6q|()w~}~"q"#pfIA@s.qJ*5]v&\)z&.RؖZMv"ԀԽc5Zᠰ(ZXT4g`nÈ3ܩyw<(2m+~m92@y&z0D)+#XE%bsT l$ᮿ뮹 .)@cL@5I@n7c`7>>IDp NZ']padfC{"CI4 /)8{KijIZE3S 7v|Enzo#jj:0Q,!~XnYVLAaA�}/qkЗE܉oQ݆"+l)7*{+H؉8fAp qqF0M" ij8j"�V�op<?}f=|wU9,3$*Ѭ\BV r`¼vJ `DA|͎`t(n2KN]Qڬ3`ԡgc}<79fkOu?Κ.rǮ[\ a*熘;ޏzt�z FcQ ѶeYpyVj7r-+g|<n=7s.< w9pq˯~f|x<@(6J fV+$V,[wnw,ω3r1i^ M `Ȭ :QςT0]H?jVUuFR\tN> iAڥ;/ymv-#'=f_x 3kG*W>7dW7/?N'V<аwacS>̪`)~hwM @cFھǟآE5E WX%t@Ecm4J&dtEqs Aĉ$jYT G$2( S |wT">zX11V(/*RN+ڵw(w3J Q XZ@e `+1%`3m_a Df|yx6$!}6PA }}J[]㞫u_ͯ νM<-g47T<:`ĀV ܂<HBM)qFcgtb;?hE U-6Brqn} NJ/+pTkV5sFswpٸ6oP.rFng5$)ffQü1eҎCWM āqak6[DQW 8-h9;Њvu;-m ulN_3CDM%2FcL UE4!_ HM6,4jCtO 7h!!{ n s׊=\5-؎oZ;=sPT@*@Z2Mo!\ Q8&"+P: #E͚ʌf9=s(&9j_?N PHLb"(d( =a<b<& ulN+'i"SMZdi6D=N6VM&ᰔ"I/2|gF[a+LHWp�{ `:g?q?W^f wJ{n³l-:" LIR,J 4HEz.TH5:ŲX="Ժƺl_d}`撕WfJ3SG^k^xtU|s'�[`KqG b5'3ÈF!A0,c&t2FAMY&UQ1IK`E 1⍄+SuaRҊߺ.e"hZՂ$1qf†̩4D<8r0",P`-�JZee+l ܬ;^"iB?nTHݬE ph&Dh2)21.J[\%9MUAgw߲k?Uހ+ە}CLI[l9Qo#9MZ.&Mփ-.& DS*eQY-P)z,aV Ӡpp׻͕S<⁙:/&+fs΃ooN=xr`g8Om!Ƭu ="2Hs͈zS0$n6[%FnGxT:A̶꣱5Zެj 5ܿBЛ?>RwU_/ 9z7lM"%bXvAOj]bN_հQOC*Ǵzd=XzRH=<�ܭՁCX0%:qF ALz:mげ/8{B *]xr'ޤ=}F&3܏-@IrH !bY) .nMytr;o}ӹǯ8~Rpx?>N1 Fn 0r ̐ݑH9ߖ7]6~yth[eQ|⛯+GUr"|_hz ށF=N(01:bBK64�dv3GoWNaǽxXy1Ff4`f츰= GTH6-;YS||BBhLsFc`J?4P U|<6ö>OS߈hb{0()ybj>`tZϦ@7.·|,!ϔw'V,x"2~psK3t ӭ. gGnRIQM}\n}n'|']7X\Ӿ-i {|T_3rҢ{?/3fV.=pMw#* HFt^�uf5uXC]{T=w"\85)( @ k<~|I Ib“ C9> T E6(gB $:8q9Aa1sFĨXƠq52)KZy30E'9}GN>fI͜XǬYP֩3#4t_ (-`` ȡ)p_rFyA`k:^Ѽ 5fX@KE##BɅG٫%߄F�{r'k?Q7vQ`7[) ap 9~ * Ȭ 'f`-0ɀ�\EN<4diiAD| cp!`R&l?nM$q oǺyGRE5N͢7Q粰6KwO/? KAzsA۱/<BgRo^k^^Hѱ߼p1$nbt0ecCLe LO6Eg}<H=xޯ!m{9}:Z;~]EGnxMy,ΆE3 Ae�zf^i% K꺆%,2;h.LOSd 43FA^`nά`rL|\(c @/;c~|*W<hVuOǺz)1^ =gDžFyJMB]S[ٌ?Q]8-:o )_Q�tEal4x,]z R Y#WP B:35ʋ 7?q]lUYB+`�e&VTJ+wзRg7dQZ(Eq] շOFg�+ W"ߖc+;]74,:{+6~nֺji{ˍrVi9\̯[ilGyO[quS+ ݄�w.,HD_2͗H鱊t ae<fØ ]zUkʞE _VܫlVnUlӧ5W ȕ!z=Sl6!�Z xɠD_ S P(ݝw˓|HO`ŀ>@Vl L|<P>ɗ+=ڠ1f .b>! W]-xIqo4<팓},{ƗzǾ5z;Rxׯo,LXipp7nzg^q:LL'8zID@<0~ӂ ᕶ^2 )oO_#3ה{k-ثy&6W =rn6^wbr^TR5^0a@Y0$D ˔UN_DPFv|-'ȀaAN;9x;\-l[;cxqY�oG_'wy0>zr#`Jք·-8!$]4+dB>cQV"2Iqȅ-:EP77Qz/6z@3їTk͟s^S_U)M V7VT0#l"#XC-r9]y]v6<-ŃWmŝWbbEG я`f2'<<X܌ó cZ`ds7e3D~! yqMtޖ-K~q_񵋶=%HRA𣞸+#MaAܚu:oh8#qq.@$-|N!D x^}@TZ�pt7(Swuߜ'ڕL^05oëR|ˢsʗ9#kxP 6)9ې-5͒TX3vA4'@C_JZU^n#\@o7 ^z<7'~V,koٶ>˿G~>Q>KOn۸r:j#HSx=%2�WNv Mu*/@H #7sϐYtm0_61]� W|Ʊ h9i"~r>PYOLV/NsR�/>-ME 69a<zOiIL[Yټed[4".&D cn<R㨞E^L$D_o0QU A 9R =KϕvoZY]km;ִs'|Ѳ'7=]ʟ=}HS벺KKu3;Vo?S.,cpcCj UdNbco!>}A}S?vG;4 3Ͳ'3=6..PcO\/eHIXQb~PdY{HwI~@ԪGO 0 |<R!6�pG'Jyoҏyݡ{qixvʏk/>%xyEa5-Yԓ7mh< *׎nWƖmm꜅+ff4Ⱦ4?AQ]i YjٖnhrBCP[ vS s^xxĎ֦y+jկE[kZ)]{Wi[9sbK9BX<1`H)Q, [d@:Ͽ~:pcH` )_doHw+k׿壿:Qsns5"j^!`Զ8ZJ= 0,G9F*/)^\,!.n ?GEf±xn,3FoOD51C8%IB7;?a_FGX -f=b@Kh ;a<5h7rpg(�mE"6,kEw/@MFL@}E6oCdAr5K؁F#.5AQ` Aoߠ=^v#d7E*ZJ3Z<<0W;Sb)5cPagpp6Rhd=*s**RP'z3q u*d2/0c}+ů"]F{zwoNpq÷F8cg̔i27=iyZ^cKв%,sdU^-1[mng4Iנ9`dD^qx>՟B- ʌ4\Kt4Lh+nGiirţof*H 逖AWՔJV~|F Z  *')ZEd搇ܨyGzji,Ft%-m=pDK֣˻7tKmmҲ޾˻_I9ٙp˙"]C*o]=uA_jiaUsun2rVHkន}yySG�"LQkhE&Ԭ{@j;zWJQ*VK=m륥R~ { +ww/tLm]}ӳ֭[7M^SdOu:;v &0ZuiN_2xh5SZsfO[m5y֪Hˁy%e5 2%*\ \PjG\mo2ԋzԯR vrQ6lr( {*GB%ަߋVZ�eB(_`Bv{0#k{?Ȅ?K=hj-ISM-TWOGx k^rE&ImK~/WGTp[mZBɯumloJeDS˴STPyF?USC]Idk'cQŃqڠ]$wyyߕk.̐|'C𢡄%4&U0XRm+iibc?1>$cI<ϯNLj$AWlaG*rF'7.ъ-夅d[0^t=z}X.Q|HɓFvqJ]HE!j\y[vD U܅!)!Xj0BG?-?0^ endstream endobj 405 0 obj 9961 endobj 406 0 obj <</Type/FontDescriptor/FontName/FAAAAA+OpenSans-Bold /Flags 4 /FontBBox[-619 -292 1317 1068]/ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1068 /StemV 80 /FontFile2 404 0 R >> endobj 407 0 obj <</Length 553/Filter/FlateDecode>> stream x]͎@<aLZ,yC~o�AaI*{lwnξMCsszvcjbz׮O ]3ۓ6zL%v/zdߗwyzOv8OIuj<>W~NdIxY|/-f|lx^R?Ƙ:}. mudt}8lطJ/zZB%4ϽlTh~+xKkn:zE]A1W5CT-r CLaU_T߫&x[/_ƿ6~x)_c_/+8CQӑߣ#M~Ncf0CG_=wvxpPj>=xHf$p=<@A =؄{AM/C~?!@{Wm7~mc;<Ec_cl6͓?/?B|Lr%%wnqdK endstream endobj 408 0 obj <</Type/Font/Subtype/TrueType/BaseFont/FAAAAA+OpenSans-Bold /FirstChar 0 /LastChar 76 /Widths[600 637 619 657 434 590 497 795 568 454 305 855 740 514 632 755 564 259 632 570 671 627 632 657 548 604 305 568 689 664 660 632 981 564 331 578 338 338 942 966 550 666 691 579 812 620 657 560 387 321 285 795 331 570 285 570 570 649 570 570 413 570 305 487 570 724 570 765 266 290 570 570 750 477 331 331 624 ] /FontDescriptor 406 0 R /ToUnicode 407 0 R >> endobj 409 0 obj <</Length 410 0 R/Filter/FlateDecode/Length1 7196>> stream x8{|SU߹զMG7\ZMۤoWC>mjK:Y7WttZQ9, ovG1DvDH;7i-owKϹ|s%ahaXw{]Kw�$ S73H{kM�.�ՙ]k,f>�ͦ3Ϣ|q*4�I3Pq;}Nog"MW`/A~D8"]dM`_)p7h:9}D= @g()ΰBRkbbq:!!1)h72 LРyX18q-[ɰ`<žItF+?<$g03|ByKXl8oap>Xr{vjkminjlXV_W[S]UtTK.Y|㢅 J r97dfXR z]|\lFR*8!K)鼡#8O5w89NC=/.CIG;x)_iɎ]I#)IbK'?Nڛv"/]e2eH" j^QoyTysOف>ؘ ćјXcnG K 0782bNWjjv;fEHCfAlRRVH*$K]hˡ]zXב ^*zP7:Cm![R֖)ON)ZkZ%H |kp 篥xekTHms U |e#Y'z!4Նnhrw]!h-uRbJĤW=_`Y`d0-̰BӰsFu`%r^$(gd3!`mZ!K NN4k=-/-B(/eY"ZoJH/#" f\ Ð/ ѿ{R�Ύ4B[;{s硆 됋) RP>U]ꖳ-Dդ ::ZRSW3D;[,ĞE> 3y!A +#3!KJ0{qvnEhB>(f3Yn$Q6w]P^u: tuf9bURy7cfE#D@(_JWcqd*mżaRݐx5F*'))v*y9 ¨dᑆ 5rELyOY݂O^7il4=rEɐk5شdaI&S6OOT%ShuI6R u!j\F|nЎ3rDŽFv-9P Ų4=еԵ[s,Q;>om a*:ѹs2TJOj,o>lLq2M=I#9DhBBv`E8IiimD(Дcv]c2qyPA<2$GQE&QA {vi*KJ '淚rf#DX&a):J1\)K#t%E־I"V-%!Z);1] 8VWg+O,%85Wa6_ݦ\}L�}�s^(͆҂| [DH.Pv5h8 (XNSͨUzHKR +dO(M+29H˳;S/swV8G:T$~ z[Ӟo牯<wOni<2x^;MNQ)&YM#d:Aœ">K&u}0oǚjlӉcuyaݽutle V=lٙ7ZKJ=YDo0$UDŔ3`3fO$S$ MeQYXa<ۭ <0;^) ‡EpGR|o/]=7T{f{:J4&`K˖1DȺDI;}^G>NVnho jazw䷏}7a'uX0$NgIPj&Xz􌧔bB#$'^PX lŦHmr ֽObO&ZV>ElЄ9n[V[V w'kŇQ>mno}9,E{2~A>&Jr3h3&LoF&Є(Kw$m=ݲH(5<]Y2lˤ?}ެm9"]ߜgEW;[S%-5f+מʚDKJP+fz]:6GȞε$rAIv 3ޗb}W~qpؘwaHӺJ˟:I\I+{3?Z>Yz `kMLhU~ta~$FI 'Ly¦Xw_ݦ ;|W?CYf-o= ?WOeϝLǓW3L{||ANVGb2HK"b$&VOE4|6wBr{ 5'>` 'qZq:5 ^ERD2-t2YiUfqd!RH\YM-]{~_1 NVX:>G79r14h6cbMlﲩ &P sL <| '7dOxyΎ杫u+E|ypɝ/0cxns;ch4QKXd#OJv ?~Be(Ak+=;S�6,ƥ^wviTrh/Y81Dz(ļk࿫C^[7*N=7>>MzYoYټvfyxut4`Yd?y V"*j%UV-"/_UX80T mi=ƙL3E4\5{-DO; G|:(S#g8^zpYα{IYӰs]^whO1ĴݼBmmzzO4`)΅iY;7Ѣ" ̇Ww.`Of]s ʷZK8Gg_kضQ_2?we@i ;WAdOA]�}Lrۥ WfLvl֒ w/ a-m><sY9�,;^h㻖XRxHǰ8GN)1jRvEM{z\XEMߚjְ=h=vc!Ơ8@kz˛vd *^bgwҢ^ u~iVv㖦/~(gƆU_'ۢXϤC^[5h"묙= |k^8"w_?wrvRpK"(V& {4W'P:7qtg$8p0Bh`!]LGdpr WI!c2v7)�;žfbD\/A='DF3/� t FZPYˢ0ɰ1 +@ (eVc/\±0~%((%Al $0Q#SYhcEa1Fa0ǣ2 ~jn`±=qFx uGowow{=A< 8U~w <^@noo }^&, t!Oi||d/ 4_[ P#tzy~5g{6|7 ad|o(ހȝwZ`=ࢼ7zNv'^p v`=^ _6WOF\?ݶ,Hk* N+JzGK:dBȇ(T�9HBi?*Bm:{d~׈4B<"}�CWCN(CN,yx67)}z^.zMse&Sӵh^yY Q{6 ]ˠG6{L¹[}ԬW^SP?"z,B�~~bA.£28/jwFuse%^ :(GߍZ61;r4>9HT\V5.qtaI~XyOXWZ5N5yit\WjDHS"Y4o=KK%P%:=ʺdW2fvm.ѹ6�pz #F ѶqDKiZ)Rz+rQB{7Ϫ [?Kg\ 9;&<M=)5  endstream endobj 410 0 obj 4585 endobj 411 0 obj <</Type/FontDescriptor/FontName/IAAAAA+OpenSans-BoldItalic /Flags 68 /FontBBox[-513 -292 1291 1068]/ItalicAngle -30 /Ascent 1068 /Descent -292 /CapHeight 1068 /StemV 80 /FontFile2 409 0 R >> endobj 412 0 obj <</Length 327/Filter/FlateDecode>> stream x]n0 <EݡBh8�41Q~mc;qYjuzk<Lk6J^zh]mL3 <ⷐfьxo*Ve `gDE! tSbRk}q ŒZ W$)D^UE˩%N>P$3R yKϷ;f:s?0S͑B~d>#ĩB>1S33eN?= tw_ +FZ)}:8>ZyVBv[-7:T Z endstream endobj 413 0 obj <</Type/Font/Subtype/TrueType/BaseFont/IAAAAA+OpenSans-BoldItalic /FirstChar 0 /LastChar 23 /Widths[600 518 594 473 410 259 604 595 594 557 584 604 550 550 550 550 321 550 550 285 420 296 296 595 ] /FontDescriptor 411 0 R /ToUnicode 412 0 R >> endobj 414 0 obj <</Length 415 0 R/Filter/FlateDecode/Length1 9640>> stream x9{|չnMv<${ dMyBB`'`&ȃdCJ "DEFD�`Jik-֪ZkkVE2ߙ݅`~N239;;~7R!D#[kEKЯº5^3d~pwya?Rk_5ִؖ3t_zN׽My@\`o v3gz:k]Wu:/N=\ Etyp =;7BhbXa#@)QJUPp:4L # ȨӌظxΜLLJNujW+˔tBSIS O2ꮩϤR4:2J'=.Tڈ.vc0ڊ6blYhX\_va͂ʊR{Iq-7ϛ;`v~^nVfFzZjJrRL>Մ)R97E: /uvY٣<%ivY䜜/&//QS91 ^if#۾7i6kyhY%<79�V /a&InBl2W[. ۛG<\RXp!�)|NeJ*, ڝ.v^b2 1/PLRdEL n,ZlQxsC0wo-,D(-%vBV][XT$jynk_cD׈"U,:\Rp)ϕ7;'ZxN=vP7u�GLb齂m9_Һ*QhCK90_țgO D #6 qhPeXj&==36V;E&A#Nqk1 þ1a]8W!c9$P̚>Lʍo|M@R+ c5( ->GXm%�؜~23` Q"S{u [z<?M(Qsa㊳7X E:Xg:jE9H(!eIaMo6 8,;q;ЬMs,vTU:9&=2#(U2 +/OQ[ qqlB8KH Nj,irY0T 90CEZ4*rEtEsn^=huوzd-!o7) ԄheterZ{nnXW⼟ +DD\6;$<^N !-F3+\|c<z:UEiڊxuј ootu"al&9sd,EIiJuPMm ɽۭ8U�Qi} % =�N 8CDe`Me P4 `^$jMc0NFOࡱ 7bF|nmtC4  %Ɔmι!xl,b~>j1w!||\1L׊x2BiX9�IeXq0wj`hD D(#;Ú7>MW\}C NnQ_0!TeL20*&<JWjGB *#a6tnN*FC*Lo>3cmB$_91꩝^-(3HCAL >j"m*!DDT LݬL>!)Wi ,e0ZtZ'ONէ\}'VHO/p1 T+N`G6(BzZ q JD?y=n<'"3OTNE/Rm*5r3\#5]3cNn':,l|2Ǘ}` @ FqFX�tuRTf Gj%wN<&fh4JDY(fҳx&T %U HU PATyE:X6(='/?<h@@<S>Ćk?x'yۢW?<3Gջ}>Tmu?o{]oWl~yy?X]ZwS/mꪻ#o`%`-&(֦ a*%S+%D#@؜m>x"MHg~ʷޛo~LV4iLc(l3J3R]*(HW* jT|Ϙy|˂R>=ͮHǤsf[v?諊wN©n93TOV疂c3z#2BBZb@ `Dc0\')RIUoZwufnβGfۈ1Y;t;`miwO]VCG@BB#.O@$z珟}f%{.]}Xa=#sg - |r6߿3 CDehx}=Il<,@SNGNsx޶aԭ̒^9!'£>i8tFiP Rl+ӢYf5̪?(hvl>ڼagv'zIu ݓͰ V8VG RJzEɹF(%EL8!aGQ.魥O4TsO>hl+ʺWޚ>gwS+,Ϯ-iL(A1(٦ljF3 : Jx=[c2^|!eUfpGWͺ ŽoǺ鋍91"-+j>aҴ|14)4*!WKu;N5J|h9a nQ}udߏrZ۳sYz&CŮׯY;$w5ԇG_"Ba +3?ǿEeڒrrn! K )P Ft�BlgeZKpA2k=dj Q$~5(MA ]h /_:{|vn >1[6t~|B޾}&έo8:�{))`2h 4RAE2umC K, i8ikevޟКO{ k~O1)Qٜ7><+^ I^p@ _tHbQ ^f(~ "D#FԆ3Kg<%Unid~ѿlxo|-:s5gt�W~1("Qp6PDE("JP(-E \k\6G8>K C[W[u?q5iUC¬5Li{eZOmx`źMO: YlEF(`)ES# 8 T0&Mȕ 'ݐ !a %N~b(Ma I>8j|{ˣ'+i駐ð ,jCv,^uKO,@2؂XD)Me@v>;cV=DoJO~q0<#\G*K.w7\qSQ&i4&2':$p0 2ZgyO4,u|?b]n-tnu+FX2X EŨܖbZ2P D+ j$[Mʄ!L0{/Ged" ,+l,H\Akkl8Pg%'ب7g}z6?v{yo5m kxzΡ|t66.\S訫鿅)_5rkfTaƻ&^ywǞYV ̷W^и;<L#Z ,޹nɢ ѤA,((0X$@HQ1Y<DV0B00tP@뿿g.hÿ=OdjeOydVTt~ʎxOc.~𮚁E ?,)}wR@ނABxCXZI >QvhnvK?ձ':#^q~Jbj#d%5"m�1!!:9Եy-r*}NVzS`lg{OY,]ɂ*l4LPB9i'I'?AQJCQh]/3yRҀ|r>erXCOcwk_by?OgTMTX9 =VR/g[6E\ӷY~8AQÔeYY۳,uBnځCR`C87.JM~x39�-Ežlqم$ u~֏ڢ 9$ $7S˿ 2mlCBxxBJ9`e/t2T|B_㸉 ҥV9M;],9sb~g}F-靅Mz\z_U'W[p[o=խNnՅ\b0B`_bk}peI+\q24ڴ=2yui֮5<*%u{=vw̲=(`P~Z8/rWμ +߳)cmkCx/pKmև/qi{!؄TcgHVD,JZY[izixתj˜\',TܚKG%O<h:(V! stRn.Tzd��܊.䘠z:шYхG$jlٻ;vUhSMKp LR*&QLbb˄|a@rVet#>ۖY]_G,Yo^zklD'6}̜"/ ܸjw/,JFȬ6$lCGgVE'%~�jbn~G._.DL㎃"앋 į$nXZOSԀNwtM6U KCTt6U.f)7RPW/Ľq'όަ5 }ekW.b v XD0Omrt0|cyt 5܃pk (  ZBZh FهҝHE=ͨb>�~5o[`>+΢S 5RAL :Xv+ŀKlU@){pS% -EFpDiJؙ_XR7[gدqJMUyISݩz5H4s**[: m_y0a j"?LDTHav{ա N!h}]N1~8�0t^Cdȷ^HG0L?LJ*3aaQG~U(4h9{?3a %ގunrz\kw`oG=egfe#++n_抻{{{ގ=.WuhrriܵwrqYYZ\VzG|]ׇvqNt;+�7.Z\1:Vw }Vo_5Iz{dd ;ݭЛݙy{.w_G{H^ /O*6;=s:myTzwo{*Ⱦb{M= FwvpCn䂬BNh;jEݨ ^yzlNCYA*0n| zSߍP:Z87@|Cj`D+ڭr 0* 0h?,DJgf0뇨vO/,+޽h%Qۿ)ɣ"c{.Sʼ!*c W W-=/ Vtꄑ</#Kc}6Hivveiܲ$>qDS�'nC<͆2܌w.Arq tC|=G/JW&'h3SJf*++Чn`0~J?+|5~`±Ak4h4 5T7JPp@ ؊1ZX'KՄrJ ]&bb=y5V54.sacam(J̮w\P%�ƎQg4y-Z܌j]7!B endstream endobj 415 0 obj 6573 endobj 416 0 obj <</Type/FontDescriptor/FontName/EAAAAA+OpenSans-Italic /Flags 68 /FontBBox[-498 -268 1229 1047]/ItalicAngle -30 /Ascent 1068 /Descent -292 /CapHeight 1047 /StemV 80 /FontFile2 414 0 R >> endobj 417 0 obj <</Length 408/Filter/FlateDecode>> stream x]n0E|"W"!4)>Դ@`"59dJ];~=ФN]kIHV|m/žpNtPUQ٪/#۳}~}]N*Zut<5sso}Kv:6-ƞ)VnWGd{Y*%S8>$= glBx.%õ y\sɽނN>: gkſ K%X3h/:s^ +9X3gp6_L7YS#zɽZ/?eH4`\0?cڛs~yy0ubFTL endstream endobj 418 0 obj <</Type/Font/Subtype/TrueType/BaseFont/EAAAAA+OpenSans-Italic /FirstChar 0 /LastChar 43 /Widths[600 550 550 550 312 550 550 259 565 493 395 584 561 577 428 324 564 252 474 577 577 577 550 550 720 478 461 500 253 501 547 676 702 253 472 461 550 577 450 252 716 312 872 394 ] /FontDescriptor 416 0 R /ToUnicode 417 0 R >> endobj 419 0 obj <</Length 420 0 R/Filter/FlateDecode/Length1 16096>> stream x{y`e;3ܓmhthKiGZJ9l(e@li -r\P@X\ވx벻(.z4N|%|<-MuH 5sWZz!l_nƙs=B͜}ό_ GH3uյ"U C:^p߷~NS> `%TЍB( /ϩ}½knkk/By-3P~765|$ ?PM_:(!,ǫFl쎈(gX;N/rʀi̬Aكs 6\ F;n|鄲~W<e@߿x+rqalsnne mDkz)['t>Oyyח3P!Q!֠Sm@6 -FԆwɾʊeJǏ;ptA~ި# 6tHAYiKL+Źc#&hk5jAs,a0JqqUĻLRT]8 ŕQ7 %_*]~bBJ\U]B{z{b5 KH.<uOP uyRF7n7PԺwշWV3JUhPBOj<݆/ z,4_:2?v R҄F)SQ~2ָj[{TDӫuRmJ?m$mߔOI~;Hyd:kIY:%=Kb?/JlG7TjxD~fUY�nk+\mUmGL\v@kkvJh5NZ_C|-TW}5_tfl�nʆ5Gh:L ޻tAMM*r*b-K-ë$m6?_T+TLE#~ÏNf6rR}J_PUTs ${� &*7_t &+Gi<R~U.L*ByߛouHbRaDu!O?Uj[ҥd7LT&4ʟؕ+*/HKPy yz e"_lZVY;[t^H'UTçJyeDd!B t:6>iJgpP@/*'AG*\PFO*^K+TqGsUb' 2IP?zӤUQxz *t}k@ ͮ0BL- 7sTREyAU)I>VҽQ(\1CyHV7b 9|C/Hvfr}[xKsQ&H%RhBUa`SԠ%.LZ1^/5!tMX9L d^R< Ux񪉓+WWd03j@_h<悠2V3w"Die (FJè( %( y-lB[)̫ἂW1zy�ӪPsp?;2(^r@u{, *z\a',4@]"AV]TQ~oQcCv a?n1I!ίFHZKs<Wb;K@~L5`JLu&JNM|�w0A*d;a ԌTNz,n;ӤH=sO`%wz*";J@P71AVeuld͌ά3;%ɢ\Oǜ~Mx#G)8Y힌lKq Y<U4dfaLz22,C-Zx٤Eiu/KK27W?/>J=>~|awyy[Ǔ_N~8Fisd ;k5bS/"2>7E&!<vH2̸.?:}|W?8׊[pJc=ZC7瀬]_-(y4Ѩ&:rf6iL<⣀ ;b7(zrB|V8a6 8QRIPeUy9B_^0]Zزcۖ-d?_+Y_q( s`A/"QUd1`6)jJ| GማYDqm +Dd67ߙoʓo]˝S7[غz{?F]  N^�3P7Fk 28a(d,Qq=HUzIk*kV%I&Stf7c埮L8/8;DjrO^3ɛb7Z  ̛]:H4 E^U3FlCPAAHfSVC2_l!N4xpv6,fپhO'b,E |$aK$fCʑ8 aӽ_('- }j]w]j={+Sn˩]bGʼ)  x z ژH@0cZd |6ErMfwN~DVt TK))-=yy~3t/ʆ_~ΙE{w1"ta┌֎m5*՜ӀѠr>oU0pf�9W೨R$5?'(Hp^I2IYY;SyT꫸wUy&cy3Q2l8~HZm4OيתW5dHcC\'0x�je`]3hh#/s-}TvOglcͰECKIC8Áxު@M.0dJH<6h9z&;ܱܵ]fZ+UX%z?WA!E5!vNjzZgT s6f9BQ+T3v5vCjAzREEj 9-0w"b6K`&;]~uׯbc{|gzosړw/\Hle[+r\+R˪TBY0IQT' t[pnzO˩Sk_solXeU|ɥE+շ}36O4:AP[vN-lO5F9=vhʼI${W:ɼ-|/Ȃ5|r3Lo$t:EczQuڰ�KRDϲ8IaO`c`WG=/[Y'L:y9B v;`M.f:VRr**K8c3= e'ٮn}sm_)?ڱmGǦ7?)Ǐ'cH޸rAgA&/f25fc̑>Ilh1rB&3sK%[$x׎H, ?ƜYNYN>>Vg^< Jݫ&kF(kf/W�ZuVZ66¡>W4PO}Թ?<c#]&Z=6 S" w*·/OkիMx<4Kyi`a,J-ɃP_YmD`H O Jf2|0Z{f~3"'^=('q՘gmx'7\vN+& yM*ӫ 69OGe/b7vQ^7o`< \ '<z"(?F#\mɑuùt pL>񑚑Y>ah&Nof_h_?>p )}GZ$<)hSكX%Q r8FQ~vB'HWЛL`IYœ_>g][?Ǜ_qǯOʗM[^83w|˿l-l~0b@ _z|S(Kiְb|S˟M5O 9)0dE*-ǎqF,Q- r۰8|8>LZx؇nۑi.vGAm633ŋ*xǏ>X{IGO\ <b)/Km([|Ic]nje }`F+$uдUYqboę|QzPl\iyCOnP "@be38u6+j'NHHUԦe/{m|ɖi }fwfa-YWGn}`W;yG't.rifPt/8ހxdjbFëTbf(Ln+([/_ uIVNsMOl\ZPa`ՈEf /q5Xo" 7d.D�Bwy|'>+ɟtc[ay4q7q2(.Yq7>"-.<f|~6 >.AR iGA]]}�& P[6Ftͭ]Wjx֤.lOMtgRs5kT~_Nr` Pۊ|j|rQ| `p'] x`>5r|g8`?x>`7V3:a7 g([o x�Ul!W`SX2~1O5O3^lX}f X5riI YLk`;־[?8JlOɪht@ *’"hw< |Y!ì\#y ef<Z:,i5U[[6n9 x_w/CeEL's<"3*0J^ȝ�: !09zDX+ LO ,GPp5sN9ٙu2cBanjunɞ_S1kU5CC7<S4h4Z̐ F47a rBN+ ]\\&Oȋ#0ky@` ϖg71YF^ uU *~]jo�"Y^ˤe ;/Y,nYՓ'$&$:gȝk'P߱oMo?/_ӑ]uWO<jOB1eEo>̛i9zBzىʙ0bA)9Ө0tĐ4 HNjpsPh&.f@MC40r[2 zf-PP= L7AuD y=N78q|.^-Vj f:I8 ^6.E=ܰZlGA(ZOȂ' h =ڰDx@$2+�-`&(va } :NA4Z1 l&w^QC^n;CZ.(#LP<cux=ƌNmRi5a5@bTB;e>׃`fFc(k9p((7bXA^wF~T>g_ <~yLզ 6.] P$b ,f�\`<ÃJ#1ߓ7_>&qǮNȫ% O|6G̬e9 )`gd5϶W^}G~Is*w\~|85̧8R/m ľkA, w *AUCF (P׍0J\0yux\F!6yh`*m={.1א #R#BW%9[&0IN |q\zǫS! XQH'}eY))۱iZL:Vw3Fb~:fՅge50/25MyV,*GYLnft;6=桍=~=~r:jrGv~J&av_!VΟbDEE.wa-U"!cP}<3}+M;-7v:bYV߼Wߺr5�|`;mamwUɋq¯h^+ (}IT =ff)ysnp~TBOZB(f#o?K_'~wӢ!X^,`R- WS< &oakr;/.uI[Wl 6EfU@9iqa&uӝw}:NV0M9 Jx3ނ ꉱ[ a=]byQ3I4lhW#|zVe)q*pIwo7 �XQSdWv3/ӈqMGQPQPɩ{ќr¢ڛut0 b^[�] $3삭m43yaD#<]|Ôɸ%kaqJ0rXK8 jъ}ZQ9hifҽDm,2dx3/LՋacQT$*XD-b-Uqk4;Nh&_`|YwȫxlR6QH|3YWdy<pFt6o\TM(o_'T|$�Xs841%x4t#$:QhtD}|z6Cz!E;> inzUu)~N[{0FtoRʣ8 k6<{3 GOxZ }o%>H%>[#>5 v~_o[?p-` 67p|I>- 60e�bzE5XJ<}LtO 87{[xZ|m&H%V(9MqI!fOk55gU1>f^ACm3avs! %Q`-y3A>g]>|nٺa烛l,L :ۭ@ǻaa N;4A dN/h7̩0/"X#pc|jl&*t+V_�{JHSav֥9a%yFH/gRُK7O; rw+t+2UHn=WJpS>6BH^,gn[~̛ Dq8F1>£K89΄iWȹ@m/aIb�ycJQkF`=5* 徚 C$Y�s%Z9lLe??N^W&VuX4<K2 (<D B225;R6N1"Ҭ+QGHx5pTCϢvPq4eY>77rz%f/d2sfԠGIlv"6y?gy+>6֪6tjѠe5qEmYyD9H&�`},M8_4^Ǜޤ7q p^SQT>D P(RY`BdQ,ryr@#S>W\PT_5e8|E9:?ǩ# do\k)._cXއCxjrs*UT+XxQ9bysi JVn8x'FV!a N0rCNg*Xamo~ |5ͣ!y\ŗo|v㈭cȉO�Q /Ww$rЎWC'ԂyŞ j:NgWBD*&9bX>cܑ,p,"qxNAKn98=MT%f'(y#ۡsVaLT˛-ź[[w/4=<SGq˶BcY?`Vd]`Om`pr$JmQQZFDXSGc~[BB}RLV6Iw-znTf-ӱ1SpƎ}ku=OC 3=P:# j)6Nc6C6"9kKIoM>EfP#+ ٌu;9e|&7#x_Nf^Y8n+}<{]' M[I#=F׭?uB%b,KEG,AsGwՔ^<k! ֨ġh,h1Bj›F>57%\%$E"4AW_aAWNHY"8tOL_|p闝8<;_~xh]mX;{|E\xҹ7֎{o߽bՏ 3ﮝamSP3ĝ;!8H\Zzr5t|U^+d̵k5D^3rAfxMosn"9c!857EOc3omSlPg%xsapJY!i >aM1 xgqXG67j%߹>賙oߵ÷Rjfӫ8qYطj^C\Zy\ })35 /ouuʯ]( "d|4 :,7h:yT~mĴVСTE<eҺ5<`x `]$O7ίd�X NC\o+x<.?blW?tsv?\_ߵi-|<~ֲ!RD~}?o7 fG~~�P MG޾H4~}Ӥ|cNK""#URB姠DcݿMOܳgb1~kCkw<iN^\^^ZZ^^n{h7L;?LY㲽]~띟<=S^v/W~E\A</O,}:0gׄCJUc qº^Hoǚ*:E -r5_ ?r ã6iI-BG~{M@Y5ayŲtNG$*k9 !:ú:7E` 3(80憽@<ΨZQ4//cG9ZlF@{=~ -'Yh93 5Y)}UBz9Cы 4 u N5 dJ'AfI,R\2 qsʚ.duQtI(-]oA Xq2?0'+NjR2`'ٿq9\) w?Rݣ:Np )8!Ლ=&_&W3^BsD֢>}O΢KѕNmZ61%Caa5hk/ĻD�HvfyE$YZVXZY7l}m [X>Pm@?QnC *3FŠP>3CePc}PY@Vt1T~?b>TC93T6x:ׄ׆*32AØPEffr̡fv#y TV=C &UM%[Ce=!bKf64[W몭nvkaf}WFZz�HOq7o:רyM[8nkb沺F4ͭkr pu7F6̮uuWMkjJ%v4Uͩn5oFx깵9׹f645 s]5uM-=<^׷4IM]`Ps 7'XW[0s.>e1 ХoUhshPK+͌iVz 43uvgs꘢Q&(566Eu0E-j(ՠy&W=Ժ3pe4Jit<7qQPnZ hn<AɅ&B\ ^Za\555JZl~(XW+:[R&)s4V*}=~kEgBP7՞]J{{R֢ۤPrZRC{jRgM7ߚ_syLCk{ <&4vR=Z`ʮNτATNIp(F</xwaJ3VHSk3�˻M.tUpLEl!Ƙܘcؒ1%ؒ؄L"ӷ"bby[\-6\aRz`4FK'dtAdWXU8+[ +Dhodb獌edx Ab<bE1OLN.9*+K*D0ϯS*`޷|:42ğ1k Fi-ՒܒFL^?_ endstream endobj 420 0 obj 10950 endobj 421 0 obj <</Type/FontDescriptor/FontName/DAAAAA+OpenSans /Flags 4 /FontBBox[-549 -270 1203 1047]/ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1047 /StemV 80 /FontFile2 419 0 R >> endobj 422 0 obj <</Length 641/Filter/FlateDecode>> stream x]n0E -E`ib081Ep$:P˂,՝;M.\Qvim44姮otM_kgmLdq:?]Vl}~w[~i//S:i0?ކw:~ʋlt|>_細Uv~MyDŽ!b%QKñIM٪(j[go{\rj~yj9O-r=g,Z90 r+r9Vrmk/7#-#!8legdX[ Y9\~@&U# ;!e68l/W~^B!YP!!C8_<"{l?:DClwcK})TDQ uUz?XzUzؔQzVzBV71_u5ɯ[c j5ɯW0l>L\6)JϿ8D:ƣ�EDxg_GSo}{qV@猋o$\YS^y65h>e* N endstream endobj 423 0 obj <</Type/Font/Subtype/TrueType/BaseFont/DAAAAA+OpenSans /FirstChar 0 /LastChar 95 /Widths[600 832 259 476 612 571 647 252 477 556 338 408 561 245 604 612 613 613 612 930 252 353 503 523 547 467 613 252 925 602 729 516 591 266 778 777 553 577 632 524 500 548 278 932 753 737 902 519 618 728 630 321 571 221 400 295 295 367 612 267 595 556 571 571 778 613 266 266 571 571 571 571 571 571 591 570 571 551 500 571 645 560 728 678 604 378 367 378 550 577 571 541 571 448 571 823 ] /FontDescriptor 421 0 R /ToUnicode 422 0 R >> endobj 424 0 obj <</Length 425 0 R/Filter/FlateDecode/Length1 795/Length2 5099/Length3 532>> stream xeTTmB:Db`!SZdF niD@T@J󾯞wuuf):0:N>n>^1SG8J GaD"]p4fWhik#mQob ? 4 俟w.,\|ZА篘_OhS-+ E|P UFY9KWnQtE"o96`w P@P(k F= xoΓ_PEY"<  刹i:b|Vhٿ @o! 8! 7! (x?t`n$\?ɍ?tn\Ѝ (?t?tn|t;w W4ܼ-D < A2ↈ&Ltux!b )+1P  ,qӰ T`|BKkHʝ}H3aL|H?G7ݺFtP,r4,aqPN:p/ȋ:jz7gOA|?hkJK<;;P'|n!C rs5kG}zVאx1/Bir$0:O&-d\ �lH92'& t"O e [wdXA&^z*Ib/ɯ, >|/z8PVw�6t.^iN 3I7n*ǹ FwQo's翁=˛YU\&Il$x>{)\׀ʼn;o> ! V6&:?/=ycB[ҝ7/v _7*#E(o`FS,Y=3h݋c8 "C}&I |pC~84K~%5_ swpNŷݐ)@M5.}6RqVɤRxUyyى}`\QT\?k%/xR�jz#b77_z?.,{ċg'Wy-"jZQѫ_W`g0ixcB"~OrqJl#NJP.6N(ZҾETq {m.l(ub+L*.iܝ&x!q9^E&`JD4<C{He2S� BCb븄O)k' ӽ<U ogܿlP* bF.H)%W#:LW)=DktT5UmP5=]t* h*M5~ImL/?H0U-"VcMiA_H% dFd `g<:ـQ/'�evwUb WD kص#ʂ|i'dA[i8sypq,ۨ*ڦtɏi=F1wQ&3\JD.rp=6#ZX\xIi 4'پ, %a3Lx0$K:=ܢtN-o$clwOv OF�¯-qd~rYs5u% 7#pHk-% (CܰA/qIG"I{X u1M;&/Hw+2=mbӎ\nac(̶q 0 {>*Jƾs~}1xJ N�~ڼr z-dH*V?.BbR?SwVE"ޟ GѻFjV5` g2`JD<6`KNhTžlF[m^YTyKN5d2;䓢JFUTo%'kXK4ٴLJz\ o]kCʛtבQi7bT'gzڲ˟ejEbF|RǢe׫ �:ؔSS%dvLK( WKN6^u8S5)zO3(^vs{Ǚtt.鰫$szI=>3a)<ʮ2Ó-gmw~w~JQde&'5VR%hvƟf7? 3s5c 8:0}П$>`[RK;zϹχZ7–*t%'^«JW46MhUﱥҗ]-@s&zm><%&vzT9}Fe=%ZsҠ+fJ-W0y&q:W+ Y,5?@KOJ8` 3E(,DkF Z?~*n^Of0RSߓ5j֔~ǣ,/s|G96Ϡ!{3;}МpeeS&a1$Oaމž<:tr LsHy,PRͰKEK xM4KTrږTTU|I,Z 7_ ,|zF-tkGaVAo>4Lnn|)^0f]q�4UM`} ZOtɀ4[δ|tgJ:JͷU]UE_B(L3q׳hI3AnJCb9@eьِ2`m i?Y*1Jo|<~( 2dm&ݑ xա58e�lHZ*}+r=$.z^i~xgead|8$٣wzmR{vk\r:{އɳ%i1+1j4S.PV4i46syxB愯9;^9 mL(]P_WyzoV)/[DVHEm}]^䵫V_Yv1W 8à]ӘϏy_@Du1f^D.(7k 6^™KZlԀ]5k:zb93.c0$XlX7XΛ9w,;{ޕmOPFMJ3?5Um I<a_xlb1I`U+JSv1uc;pNL&s&qj;2{1Y�aS1uJ!d~"I2|K(tc3`繁4VGe cKrRΪ_8 e<Ex {310Mu[~RxZx|5^ }[ޖm=6)U"L|-=AFf>^8,:؎Gs(<7CZh2S]Y 9Ή l"W&·y &"ϙ%}z%4x|8 ,I 1w JҶZg\;vC.Cj&K'NЙbP$6O.锺5kjn uFQ'z"zε?klt̚{r1I/2X:ͫ1N1nExƙt =;GaBed�@.z]0x!{^Ofyt0D *bMle֜1SKn89$[3ݤMDH�0/BiZ򖈕j`r~ۑJhPvt󪊰0vYr.M�mY.\ v J2@%Y朂>\`&w{4_.yp`}sV@*Ĺu8 bz7[ <'k%|#_u"Ԯ`D�F^pZR7` t@_vRJ?Tw?エٮV%Ig]ő ܅$&eáf�Ec)MߪWe-x4:輺hO& ,=|Kme Ulp q{1zj'm9ҎNlCg=K"e';O'b<X�"/-o[ȡ1݊L&l؋ֳ;":5uU1r-,kL5m1#L$ҹIlu뷂Gq0{UT;\h8< =0(a G&_%Y<(- bn^RI~뇭oT:}޳DyB [TCb> ºA?E@jEqGJ'bMO7= i!Y #s(\AAC'H7&NZK\~oZBS8NMR},vAP kF{'aD</>H9VȳyK:*WO0?6ǂMFNIڥnbu6+wT gO0DvinU{GW_66dO,l�k%,Rٵ.ۢMntp8| u;JV.8CsVRR͌7${ȣ: ySex~'"!OjJSvmwCDWg+gφiJjW 4üt}<U)s/<$;pt{0B#y/RŋSd6|ȮuNtNh}$vެy' #őO=oe\jjMfkP@ko10S`yMU3rw+"R7NNE/?1.*>0[rn= L.5܉hGp}ypWQ٩;f8sd[d'<}REP |n~u9ZTܩC{b|؅|`TxӘڛ^(#;sU%%eNGz敽nUȈ*̹PkMEidbg!UcmGG,T)/B^R+۰aI;�2s ԠNܽٙ:rB!x2Bbdݲ@$DH~kh7=)4;yH$k#&cNWbEhUv;ΥSiʎ$6E=T>M]? OAn ަ:FY o&y/@  i; k򬳝]bQT:׵_#]N?CnK4It:kC8" b^mw!Dq+W24(x4eތM 7X p4k4] endstream endobj 425 0 obj 5620 endobj 426 0 obj <</Type/FontDescriptor/FontName/CAAAAA+LMRomanSlant9-Regular /Flags 4 /FontBBox[-470 -292 1483 1129]/ItalicAngle 0 /Ascent 1128 /Descent 292 /CapHeight 1128 /StemV 80 /FontFile 424 0 R >> endobj 427 0 obj <</Length 320/Filter/FlateDecode>> stream x]n0 <EݡP(:Z$=�ML4B職_lMځg&,sm9|uj`]oi; 2Wѫmi6ݘAk9 A4l|ܭ,(yjs;@H]Zr?/['x_,bVԨaךy""�[lJ/$.<# s2W{ 9#HD>r>B>qȼC.cҜSsaM\1=ˈGdΗ?KW?9#4EMN!9:<77hol endstream endobj 428 0 obj <</Type/Font/Subtype/Type1/BaseFont/CAAAAA+LMRomanSlant9-Regular /FirstChar 0 /LastChar 22 /Widths[280 728 286 571 286 514 514 402 514 571 571 457 343 756 457 314 571 699 542 400 571 942 742 ] /FontDescriptor 426 0 R /ToUnicode 427 0 R >> endobj 429 0 obj <</Length 430 0 R/Filter/FlateDecode/Length1 691/Length2 3475/Length3 532>> stream xgTYC')+'{8 = MҤUJP@:!a5|?ZYguy{?.o썀$% B0& @WGP)  pEw$w%p%#( p迄 p/�O][lH�6 ^-ɟ&p_d�5wŠQ?ݚ D\* �`0)5@a�]5 (B!0FWn?#Ю :h+Hp__x0j22@ @]A�"H1W%w+4 |I��?  @.�W?@�']%1IWQ?* ']E IWYPsq E?f7$  A^.eDvo̓_Ɗ[X朔#CiGnؼE^pK|TB` κ0ρH<Y,B.5 Xt.78 rۖ^7Ty Xz2 ,k#H_c SS?-2hey"|BROOM7]Qiy5GfVk:Vݲ1ϾECX )v)FL?uC$mxZɷ*X!ڈZW GYy8+pp @)8�_T<<='>ƒ DY>~NC3#oIq<G7v*J=J oגƬs^$.j{abhЍoVP@6Q˒_A߉ ^~ZPæ?BЛ Y0Oy˳$XQmX=KY&}eo&מ$a 9%h-}$*�^C :/t C>0Ò8fRm16'hͶabE+ M>1]AriIQSP)-$ aLDӾ֞:3QJ[*Ny#>tܥnO"wL7X D-5-pr_pY  7�< E7nۺo\4ם֮PRA IixpǽZΛ0 HZ0,,"/f�IX6V;K$&3yy$So, +dÚV40 5]~3~3¯dIZ0ٚu9,W{~EUo#D^h6_ 5kiG5۝=ҲbK)Uƃ'j`ҴqbG./DRSm+tq'=)wjw3NgpZ0>9MPvbuw:֌J%fZfdU.zD8jv* 9p#3GQM,S=̶l]I t>79^r /\_zp�?%~ )\|8D0XY>BD/ZWd|ĚT /$<kvͻʥO.I-ۍ>:GR[Pr{wƞc 6&rije^eqJɇ$< _X�;Q + Yέ˸jr\J6HINN[PK"[q/*H9d 3b,PO1<*2sӦz egT+Ψ: i85R9EJBFܚ!A_FFIUC~"F-8@Q>g\qSX[馡s_>tЧ=4Vזhv9P/h-\=5&1M3>{SreH}uFi56iKT]ܗ[l4Sz oXi]jwVnɎK.Ïj;[ct4I{dr3':Etc THG&XW2ׯǍKp2&gZ `F�V?S@u4DzvT%~" oNb .#}}bvBz.hK'(YBBT Nc;0s'Mio 5;a5C W]vX$swHgH[{Q =R\ Pxg;GkcKiBADנf4?W؃ģ01c mF'&\''JDTйܯ ={઺ 5tn%J$jD˘ћ3ut5buI=i5n OԁVzL q$i8M|lts' QVS#E`Z :jE^^Li,-[:t֕M^&_LG.T5$ DśMzH6ڗ@GJY%Ψλv#gA2@Oj҇p;e \<~rDڂ]|M{r⥶\2d{(NC3}"@o5j \|hz& mF5]0w;u{BąZ/>y* GrN=Z3M߈9 ֓n'w~-` {TEwj_~q�[OJ-jdXL힚mO7T8fQ=ւh\VE|,&jZdRWY}EIGhql%xng֛1HQ]k2FAaTEJoMYCI^|EfNߌoxiE+ˉh<>&(DE(\/G0Vh&x*ݢ嬔]8A#Q.Dy_!Yb4S߱!)|:xm|ݏz^PAL_K~G]|js)*izm>\!{<\ױ0 _( %C N+J;7K@V#<=fݡxjh) eE.nk/u|ez#O>VCk *&RT mxʍϥ/I4 )<䭫RLy5ra̗[<m$$]˳C=}&n='Ф'.`.}h~bwiGE0Z`b %} G㷪.Ѻ[:m7ylz-Y%em-J2bTW_zlöK(lt?Gp-Ԍd1%yiQѺ\z>&AcfPH X@A˩L{g19{ J+(!)-QGfOPZth(1f@pmoףXFv eCJ]hiNj YRjPM07ݒd=q\K} G`hpu V}OzMstѽU.5[Fr[fOBsO?THWԧiޙs+Bk#J~"%Η/f*cє=eLH,RqsyV`F;-8+z2=j}yjd;6wur04Pe}$$L}yzwOl7J!&ڽ"J1Ŕ%kqϳ.9AoФ !HU\) L_yiܕz'Ȳ&ANr"bs}q3Blyei~w`l!6DN|{\p`BOY"I!,)1i2"Ϸ&m<ed}MI ~xH0$pC7z*^Znޕ\F/Z|M endstream endobj 430 0 obj 3960 endobj 431 0 obj <</Type/FontDescriptor/FontName/BAAAAA+LMRomanSlant10-Bold /Flags 4 /FontBBox[-511 -295 1637 1134]/ItalicAngle 0 /Ascent 1133 /Descent 295 /CapHeight 1133 /StemV 80 /FontFile 429 0 R >> endobj 432 0 obj <</Length 291/Filter/FlateDecode>> stream x]n0E /E+$R>T0@-ckVtfޑ}Um*i73,y5hT$I+i9o-V sQk6F>ݪL,IYR B׾n,w?m@Sp> X4`q\ҢiJJ%ydI'cV:N3 |@΃ƞOy;AK㞧\M|| z6_Fj  )Ig]}٪a endstream endobj 433 0 obj <</Type/Font/Subtype/Type1/BaseFont/BAAAAA+LMRomanSlant10-Bold /FirstChar 0 /LastChar 15 /Widths[280 511 639 575 818 319 383 885 454 527 474 1092 559 639 639 319 ] /FontDescriptor 431 0 R /ToUnicode 432 0 R >> endobj 434 0 obj <</Length 435 0 R/Filter/FlateDecode/Length1 26600>> stream xͼ X[ǹ0<9ڗ  MEB0f1l ;8K:6Sv6MnI]nmIo9xI?? t̜93A�3�~m���jnƐB@eCc6}?#�L"�bvݦC'}�Igi"}',<-"0ɧ<mJ"om]-7o{!#]H6ҿỳ@7yj�kWcc$i)~$)yV$HerR4Zg4'-IV=ّt=Y\_^~AaQqIiYy kCu7[V^ճ_ac7`�}S`+�?+G!^�qI=sT? π[kp? g OQ <F{3UB  &37# 9&Mp?$H/� ܁*zA2>@$^`5a2 @R˅ gd0ݠ%9D܆d6�/ eۊc5$YN�7cQ� �8 0l�5?C`45 ~jX hk]nZP.T TWUҒ‚loVf;Lq$ۭ&SrT" Fd>ۼoq9BLw m(xmy[PvmM&/Մ ef5iAҷ8:mtf\BFI2v;ia a-0ܲ~6WC;%U;eLNrw;NAw(9DI_;psGlwffͫ5#P-t9/ ]چ!۩s>b1пc80;{`^Oş|p>Q^[SpurLqkKc%"'9 la <aٱ�0wV/r<s[Kb 뚻;3h[OJȿa/25u1 0im`9{=>9F,>Yj Ycvq 8Ƈg|@ͫb;f[Sk#ͳ.ShYNȨ]04Z[tC 8}-M[f|]֎y$Ne{I>D5{czGzaWtMbomռ7PCl D@r4wO@謡 ^C>�![>wtt vRD#J;O^g8[;W8꛻:b>1u8:nK[2NR# I8u^씐/G�.RT*u@3XM1f 5ChS2;Of"m #$!ҍPDai8op ::m|΍Gr ckzM*`0;yzWwV/eC=[|l8Wy<(iSzv ySZ^OvQ70XQ&&F.-UUr[O]g8vT yq�/"ZJ iF3gx�fP מ@(,A4qe12^(JƄlt}vv8D? G)Dycj^~Zh`;fsS A mD7Sx˞3rO؟=IS9r9H}ik-g۾xy*&OD30ˁy6-"$GV=NqU6*-18ܒqj > boN6YБBCR}I8#chݿ*=#VdMhj)ڔkvDzԺR1tt.8m)p�úδ4\ҙ-,hkDMu P*Q jEZd.0q>2]].N0SA~@fwUfy/D'K?듐/Uؑ*H> Y $۳0r5/+Yx7ܻ~]MO/l/($k\mn]q|FyJffw7tGអ{~8c߷,۽fs&9 �;gѐmA/.X퐵,<̘`a52`nrXJP+ \xbٲ>L@ nua8U4 lls8>@g)0Ija0*g{O HGPF@Ѻk˕5㫊+HWb$4td{31,|"hn̯^'%9W횲mr78ݶl?ЍKofd}p|TO.VL98Ï2px [$0^)A2$cH.H` XI!1Q:EK^*E�j,г@Dj˥RN>&c\ɲX,c #a՘H\X > jsfs+9']s Fv)tHOǏEF^<6̀F&cH @H7||᳅z>b _3P hy:=Hsmqw1yvX*A@m_LK%i@;EڬpR gRkEaK( $tnQ!$|0\# C ʽj# E'!&{Si]LghCMݚx|Çw3ȚUbtؽ4]ye y 9߻q"g<"n"!B MY&`XH./t]ȏh7._c[ tL;L&lrKU!H`:rk^ $ )J |^VhDYO.ߧ#|`cD׼t68 ۚʡG'ÄLJ2{PĩdB"[Ae pp{$4�k T֠i> d~sy||~`|ٌlN9sy<c>gOhN ͦ=Nf9<)YYg}gǯfu1jd\wOm/4<li&\vmaҚZL~-5lج޹菐-c WMP Nі hm;ep#;9&@2b%hTrV$֎t/e,e&|@#ԥ*'Mb2 LOW%%C<9ɤ0͏85J G2<҂`}dק+<vtƆ~0{oڷle9TӰ$gsGʑWٚh_oݎ\DZ i>+C(Hҹ I( a92WQ EbWAܿa AIJ:LSoJjC]7\(9k aTBR`!˱d{jևzS2 (',ðe  x,RVȁ8,Q& uG.Qx$O4|{jπ|w>93 K!Re(82+tyǼz^ykf{[%DP+ʏSBe(VN*}r)΍OԙqA)c,8cɱ'dAt fs韢5zA_0ci=E!oykIZ}iCssxEr}uM/ҧXu  .x|r6?Xt0ܞa0=m4:S m:mȣq s0 QZ;r(=<S7,?iW4ez+GÙ(n 9hG>ؚԴݰ55Oy^'f>InMHݹsq �Q bxZOȘf30`:kq"ZZ xr Q[SE%pvAr#|ԑuEW<;o[? !7' Qi~i)lso Kń װ鹙R藺PGʤ$Mcd?mtJmN2E`߱&#P�'snA9+sPJ!L@Nl] BD^'yCgXfm#nv's\%EPܩfJ%^Uݯ> "R X b$̤=:F1E~⒵4_Z~4N85sM`~Î,sźkae\V[Ӹ+|_gd.=O|Ɛx@:%+7CN8 qA7!@'@ӗǻI\URpL~R~V#+8IVgHǙ;QjB J,` 1<D[+&L7A o 8ܱO߃^e߻ԏ=.̒y ]H! "?""?Ebw�.ٍaijHmQeʔ%{D&3QɠS^4ˌ*b P9plj o'.)~p;$Xb}z(OFJ>>A"cIjDb$ƒ@c##"&Q@D.>vp3ޘb0952=j'y2X!JT뻀#W"5RzDPL&P#| [#aC~\ĉ{hotG8q/ etCoboAy%~<ʋ{nԡRl`AeՉ;ŨwW ||bj Gx1Ir3~-I/%9p<-+�Zၔ3Cg>79݇=z =lSןD{PőED>&!ɺȉ4* �HUcӥscRI+MH?8)JJF+by/'ȍd&ox٘\o} C #oK²[l>zQFqy2xAw/]c3ɈSv 5^ 0U1|7?T{i8t]c ʶ U+fVfMm76/ܶ(3Kކ|KTGyؖ 2B_[ٝ1 D!bHNٗl Y :ٰ'j[ ar^85YVs/,_}ZAaA�7hM`'L_ x`wxiˆ+k-e}3eqYo|qK5k,/'$$%'xh _vplCAg,fB-Tyl ܑ4˷,΂v(2E)-b6Ӑ�&bvЬh*-BEEjWm3ϥT-0@CqP.u͹.egp4 m``^\=EeQ;@1G"eQkM "u ~1>iT'],%tL,{x̣ [rKdl|_FhgQ($sasA^k.BzuYZ{^= 7}S Tgw7 8Ըjg`SEXdIЉ0"6 FnRόZ瀞㈹߂11nCI2U㴈HmRX#"b@>H 5b׺kMp`6VBCQ;P!5"No@L */V2'' Cv$'8ƫry* brJqzW./FP] .z4p1ϯK} 'TlviM%k9x4y)7= dQu�gkm톧6x#,^Vx 2n2vAbB .Giwu 0P$bF [P/Dnc1Bg!&/"fP1,XDZ#Qΰpt|Nj7܉Z؍K~S]U2Ťg}}N!c}JR(A)uiĘ�J\R(2)%FJYl3,#_-c2V.d6B2$" e$g%F)HF+#s>-, hJRTayc>l|?~d6r}H ~T&&+.'C%hFÍ" as.B u A>K&Rqpy-Ʃ7.8(I09ŨAUv%<o <]孹_6.kW'0 {;q0,Cx |e�C�(g�9FB8K_؄P-~>uL5BRRU2VkgQRsY0�N-9P"M'J7}E&e_Ⓖfߋ̺"ւ\8 ѽ^KܨS*a /z;}Q'< x=zk&Y_9vD$RQ9S MR�ŤRĒeHK$H TH{fOk V<Ǽ2=Ka.L'9K� xދ o pp'>9S/XXD^IMXbXP#r ؇NܖvTMy`@ H"vN$n"t:ߋ|<ǔ(RR3VAYIR IU KDsg蝗B"Bs &T[p"!=Py2#>Xj>C]9T8 RI"OjQPX Va{Ѩ>!R9VGuH4tM!7I6dr 3\e%u7TX9t DFWF\ū_U 7㰜P:ti4 U WUTJ5}":Icx"+jSC o5ϼxU^R~8.>6ds|OenK1QjR1/Ӈ/#M+*$jfXf\gُX2K{AԞ"CAHaDO{�QrG#]G|G88f8`CA*v;$jB8)`zY -o{k`k5y#`򘧾\<u([wHf%hxVٶm $@a[! e]>;9<<d9?t"R"ɼ#-- ΂,y: Ldj]H.gA7#@#=K.U«_yP(DergcQJN~_o96+ׇRu+S?c5juw\Om0_wɕՃSY?xf_Hd5 d2cI,Ӽ6.Āga1Ȅe!avC%,Ep{QՈ*:Sח,׸㮻"஻C.[gwYgz ߂:V^5@rt sV\ sFz0r y'N,xGȎ!?/(cd铣6l6d&sĴ0ytktG\0>-~N4% N>=z=n Zx"eZ3s{pІ`@]r]x`ω=ӽI#akws`[1q|cX8^2tӚKVN) Lvs- ݂6-r'LF۴hц 0\`Ly#H_AŹ+pEŊ$\,'$dx;{EQO:(=h]_uu,PF>\F\bH;bg/޸ŭަx͓O==0W JCGbd{hf N4o*/x<)hȯoWM@k巎#(k:[YW3;k32B]ei#<Q3 ՠay˃ 4Fr"OK)[;E�1Ǚya8kqq>c S&*Yc0ϽУl=xy.4Hg᯶=4uO7<ȇдb<`Eo_ʊ5IwWw-ͻWНA7_1d[~ԝa5]O-jV.*0K%Dԫ祚^/JX ^KDM ze\`BonYލ8clorSl -D@Ɇ eCT6YOyps&t[F)T 4Up9_kZЖh*uo*b'nÃbC !4tPVJvK>юt/%==!/ SvTEPKD%W8QtyjRW6"Xf}7>eEv뎶ֶ jrV7'vztFS;PTe([YmsKNYUb.;%5~JwZ.H/,ϱiU'-&?c:c_wS6K\;\.\#y6kkj2AAk ;cl^.^; hczޞ\<OMb^NKP %ߪLVwN+!wշ涮՝vS<xWݮw]vT])_ߎ#,Ž ă|͠aڰπ}PfG/Y#i8gDFY5';&;)`!X) Lw<|*/ר$2aKc%gˇÔ [7Oz�ollyd M>{|a`%^Ͱz="`X 'bqnfA"F.%WBb8-*t"v�Y(Dqz.N xS,C,6lj#@f?|῔F ax=+ |*~ŵ<P;#D^>Ud|`&ܐlt)^]r,Q-vk6Me("T ӄy#Һ{̽b7!%ea➞+.(ZbI.0]t߂afk#nxtLz掬_6O;=KPVwc\w; v 6E+Ǒ{cwZ^7GqB$X:*#+q xn &̐bA5$Ye +60kGik7i&]?Z!5[4TBMPZdտN{z VV!'V @֩ \|Èqhh 1"{Ԛ"f$P.E+*9Ȕ�+8ɷ$РvZO,mtyP)B �r!6pt qiشtЄMT2Y%MaDF,ӄVVC`C=&hb^B&KҨ1 n1v|sU#ӝ>x,a& |:3f.[t([I?%r[acUq52o).275VHMtp(˟1c 5@uPq'J %<OJNqTA/"ZG!da8H01Q_JdzPs^gx6 _^x饂ԗT/[^bHD]cDv~\d[;/*>>1rZT%Wtd]cfee32ox[)Z]J~͗C['6޴oOhoM|UG!.eh,XXv @�|'QV\r( L^1\tǶ&`tz<Vw# ig?[G6F&ޗEܨa/rWwbTl OwXuo#=cܪHˏ*aB]d%:# ?#%{BHDdx_d|6bX,e;@|90/Fub#r;Ç1*ooo(9 I,Wu;ַוD@( 9Dpg�C}߈,q`tAUL'$ 1q$1#2N" S6exQX9̈́Λ.^d2Xfh 0J T&&ޠi&MS n7){HQjXX.u==})7vnEw rZz7'0L@:u׮ar?R o;F#_ki}ŝ#pcH�P+#onM|S4Y)&,2C5"7`ZHa$R C*9A>LCNezo_uƉ>E3SanDX͚mE4dB[RB6L.'PZE#;;  ٛ`%0t#['ٲه2F& Qz SGa5¨=׵߄wͫM%c-S J~wfmRW_ֹŅT !z OvlI9$} oהp6xtt%mڒ? vA.=(EBeff}"F, p }�K$q$p<0͊Q9'/VފMuъd2OLMqԐCNg^3){^V)Xz;W\T UQYIKOj+`^Esr%M;Z#,{?҉Bϵ&G~QJ%yVHEJ$֨0OT`fWɭ3O3%`O<33t,QZ22Ҽ;SP̌o(;gzه&I’ZXo{0{vSM֛b{~`a9Ϯ1IE-tŀKT^&lR|WDUQ-D¦ϛ6|ہXBP=gV2O"1 OC%Ot XEcI.(b #Pӽ*v#ZC�B22A-{70 ׷)IZ/0.=}}pY~=/<6rzgirhcc_^v”("_NN-i(T飼Ȯ٥4.{c*Mz_g*2y,?V1Sq޲)cs?ggԼReed0L C6Ȳm^^vW7'f +KX㥗.ZTiBC4R/K+>|tT;+&8bB*Nk.Km_W+f³rog`K{vĝ˭5Vx SQUS&Q2m9:j[m+Skr7!>e* 7ZlKkpVlnr ڃooXz@.gꒋR⳪+<ܒKTVդ\QVZ>!Kczp7OuyCZB]rb\]Fj$7V70OE- ;Ģ:OѮ&&f4G4jk#)4٭#]cb'3嚐LjLnpj,r8D(h>|ZP':y]Yzp_Oq4^LtRpmF` s8MltsSI{P0= $%! 5L#8()< JJ%bKbfby"'̇lB*j%U%*,WA%JSB2_9ܧd 鰄n}H3p|*ZR–ĸR/VBbqXP/1-itOqVӧ u!'&ƥsXvMCqJTBhZ,~#}==^("tv,: 饡K!)p(]RwG}$lmFF)$z\Js=X.IN|{D:\&Q(<_IdJ6d9J}#-+=^r/wI2¨~#x^,K k}>O8d6 9{΢хwPAlwy~5l`d" XO390'g/P&F YsI1s Pdnًjԡ^,tT\lTA|z2G!ĠAeD~&VnZ._]APt]ZՊ4ϊJwG_Y@ kJ?dZVyxU Cd5=%7t1~OaRPӶLÉtRek"y:d7 +)N9d'(4}�ZA+"¢86{]}}\X{K2G#u7+[<i-UiA VT]SIXU e7#+ G gD7zQ8V̧JA< 8&$E!{ޘ�E` h�8v:;)(Kz{a~s`ߦ5ib5V<Qba4oqx8{I`ouè;O4n)лoGB(TJJw5^_Kw ݢDOa܇Z+b9K@ćD"S ORPU*R5F,$3:JC2i>RFB!D$UY%;&c1%BtbDѸ-:M}Ckr 6C҅BXitYXNhg!}dF>>[_.0[E ׺aZL|T;Ѹ)|=VR(IUe�0JU1| 캰وNO D}Vxx"zGTMKГ�0JaC� -]c]@6[ "vK?vpb8|̯.WC8\ݒ6<4E-Yִihv9Z-P6%,mGM3^3 s0uneQ(3B 5*;ŸFO#YAdBr9&3$ˏ\c`]͢|1`']/DYLtH]uP`LsS{^*",\wu}Ck|#ݥnzEy:>]rcNt>PP`hUUʮ5]qG ;UvgTWW3Ҳk w 3D̖[Aa]p'ژhFĈDi@*54Z,G (&P[-& sr|"r{s|t^Ipη`PӮAםQmO#ӒC>3i4Mnu#wZ#~R-vB'HxQͶן`H_ uq[ijкn†S{^v/5L5Ӛ&j'<?GߌcBٛA1?c?ܕLQڔ/ +ؔ"VDLLlƨMK&%SE", hXebKFM# 10O.T>|Ʒ x]�ы\8ȿ@ =8NrLИ#<%EᩃD4$+'&'Ձ6 JU,!-PCiMK5#m,͕"D$_4 )KC[iAHKO\ZآOЯi#M:.dÞ�S`b-|ƨ UߒJ|ݖtd@bCD8c!D#18&.cɍgUjXjDg7|7K,pXV6,"w1"Bux.ԟlh &K}ȍD־^3\d<RQ/x] (A?,.:(»i*EGqD(Gp0V*De ( -iXG0*H%H@IPΎzaa"G" G n9 z=|ޔl e!Om�cyH8W,z"bBGe2DI@Eѓy]Q',='J{CxMq1!Bl9\{G_ˈЮ"޺KOH<QUWa^xq`a[" XX%Rz E beRA L4tQXKoF\AX!H k8> -F! Z?7 [e IΤ}ILʜ'醬^9'TX,;[‹29)ɫkU jƶ(.xbgfgab1Q&;h D!1wo+spz3C]O^Q~T4 }“]yE#'Yc_mh\a~ǔS-/3vQ@צC<Rr218SQM 03|hC| ^朴&GR&",j%NA*bM8iK}4 |UrXGpBL=FV$wCt"2*^l_g>v-<|my;w}+[z#+Qa>#[qOmhjP?ǰBSAyaI m*veC]C7uun!]NKǨ)7 7(-Ͱ^`m@ iܲ O(W T(KHDbHTStmԬanw j534GNPo 8XƑ.~ ?j>M@'O]uah Q!F'QP2X# Ї_W.\UhI:RS,ըi'BIyqYu|1yMQz'QڦJrEշU u6j=vw7g5R'6 [jmIK OOqβ $W0ʍ5}t[O'¦7וR·O;5%Κ|ҿµc;nٰ9~`|kqٺzOJ]^Ap/5+L<a-[$|BRCBOt~* f#qeK7<8e>r`S:iCx$l7u1Y:P/3with@sN x{dZi[b1=`pP+@Ÿ"a{H_;&j9Ί&*<R+˜ikjF[rŧv͏m:faMҚC͕4_ZPtݳ<t7M(éz80C˖&\(9i*ɜZL*oL ȞU8=\ {{B(u u '.aN55; >1pCWeY%w/NUbN%MZU'HTm9WP?U}߰ߙg򗑕̿F !Յ~ >EI~-I͂Ou?twH,z < ;/It8C>7yRF{HϏ&ҚeL U H}c _kNJJ';k#RHȘ7 �3PO<1]_`]D7#B*y[NvȻ߈|Vb@12K٪<<|GZuqOkh]BwJ!Pdx+%dr6*W U{_$ޒeFRVRW"M;vd9Sr•Ele˂hdH]Dؾ~}Kk `$⍦RH,8KHXZ vWci \ci)PXZNưrWd,XZ*GMuFJrX$PX<\K3H,͂D|k,-"'ci1 KK9KKA"s>"R,�ؼXZ ~U`hztlS64[nvvepʰՍͲUnd*L&'' d-uMmÓ~Dѡk7 5 ?Q9vpd`p–iuI.ʽ ON N[[֊,[jpd?2`k]j444vP(\;81O*N'0=1<90m2kiգc12hk쟚Y?55Vnݺ5?Vy-vt=>68089nL<kM d@#dhYpt,̦h ࠍv?I C0v*ktbwaou+^bk �ÄO'܄{.&$�@?ARu`"J6& -@ZUNBڴt9,')R}l$e 7k'7GF>*[G&J򦵤dDx)ϟ O&sȈ(IJ^$0_'2%9,Fjj SFZTfWj"hϣ$> vs$o*)M+m(O DrcH/*e:6oLjm7E(cL㠰Hg }n&ЈBW1 eAMCWiO?$' 1r%p%8Lp]uG8k88D;·bf~v[t[+n̷|x㧇>E~ ?t㧘$C?~~rodV `WOc x>hjArQ~QW+0:@9".h; 㞃F 9�Y4ke+s>l? lg?c?|wF}so߂ co@o{1Rf} y_6>z=j;}:|ziVӺ 2~y_D<G?ޓϢs~,@ǞiTIhn*2%% r;e7f߃it<w4/[w]˒3BT;?UD3S6tm.+.[?:@4zd9LAèFoٷB[bVNB9d/& $h >郇Yo9Pn=̺e}kۛg w"8Ia&@S[&6Y>|\>Y]A![u]!`ܻ]mc!ncrqi(y\fUcxCsV4P;I-a͈o/ Nw06-`> |\F@^G"Z=? 5iU!Hp@UWwګnR/~Re qS+<-p<e޹^y-󠭫;vtO3$YNŁɩɩiicIbNMRp?r$7I!Z$ᨤgFZ3҆ԝ,WO $H@&M�o:~ endstream endobj 435 0 obj 18916 endobj 436 0 obj <</Type/FontDescriptor/FontName/HAAAAA+LiberationMono /Flags 5 /FontBBox[-24 -300 607 832]/ItalicAngle 0 /Ascent 832 /Descent -300 /CapHeight 832 /StemV 80 /FontFile2 434 0 R >> endobj 437 0 obj <</Length 625/Filter/FlateDecode>> stream x]͎0=Or_a"E2菚pR Byrm.ft0x9l];ξ v͐P.m9ɛJתf>;ߖl}wgnn)}4%9NGJԍyVySUz=4v|NKMx)vԷ&NC]R,UWY-"jijQhGd\"yC\K7 ^9ya"o;fg}tߑϑͿA?`??๎9/>%/Swqkd# BD?~g s:~:Bw `?/GG^BǛaG^z뿎s86OhzCk' ~'t~AgcO?h61?K/a j0֤_Пh~̏{h(_a{o4֧?:~oZCNO8?{yCV:rm* J endstream endobj 438 0 obj <</Type/Font/Subtype/TrueType/BaseFont/HAAAAA+LiberationMono /FirstChar 0 /LastChar 95 /Widths[600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 ] /FontDescriptor 436 0 R /ToUnicode 437 0 R >> endobj 439 0 obj <</Length 440 0 R/Filter/FlateDecode/Length1 8800>> stream x8kxSב3!?$W\mH01b[Ž!~'2E’[%Ccq:Ph$+tnJC&M$h&%ݴIM6! M6nms%Cv~+sg̙33g76<j` +y�L^Cy�nS_d`$q}ܾy ?;�2#$ci?_9f  c^a|X-,O1|0=xL`(ro 9 Gc/@4xd8yp>A61H?v40ѐj4-p,Yﯹ ;�fc3ߴ"Y1W:r (L8rc J0E<x ~RI t: ߇7 O:߄=9Lxa|D8*<vqs!4[=ʚ$}<@/fx vsuf?xW 3>!t-beg_3Q{,�.051\7wK |~ <=H֝E؉i+c)*g}8a'퟇ 6gǷ53�46uuvܼnmMMkj57^liJPYhr3mV9͘dC((^5Xil` B`D^ˣ~MS%ξ88zr TE^hP \#x_-k:NbI#n'A/{41SPjE9 4**Գb4V<4MYiЇ^$]<L{c{'_f *m>136[imri!\iheLjsU=DM,*e(]K $("e`;6Ud,013Iظ4񐇡G&f@֬~\XYhӸ" k{O 9A>Pa!h/˰$βn󳑳#Y]ldtvtBliBQSP h(P(V2n:LV5dM,&Ь(Sؔ1Mb[\&ǣx\ Wkew4�5gI3~ @>ͩDLj<Y>%1Mˬߛ9= L7M`6ߓ9?D.x K1gS^{|>MiɾvS_%yhyRg5j\}Cin[[0$> E(J9-(Yq|71Z { PjגY:j]>MfhdO!k,gJr UQѰPL3Sg"DHNbe9/ҭ˚ckcѽpD:8vE35oY\jkt*xp<4w1JB =4`).軟gML;Zcr?۶cJSpLTA.Jfl(bV7qt=iٞNIz]x!YS9FeD a I TFQA'xNK!NpquMT.Rn?G?f9*j9IKUBuQcZF DXQ~ǘգ\έ`G\.:M'cYs2IpL k5'y@YdIG5'6n7pt!>0/v 챋[,KLJ50rFcuꈈ'RL" e=ΞIsrq%:%ev3YiR:knZiuk?߿j8˻\~;\LkA(P:3it~)6C:N2ŷFZ _s|Mj~)x >z;Mq<ǝ�xJ 1}}:{.nSl*Ž-3'׏%&YShBq*55kjyGzEd\wlH*+/ $tzf5}ț/}[~>ZX_ݴ�;lq T2 v^@g8 ɂU_/sh"†3s=ngO;z\B{2+s=lws+3lY! w_~zۺ`7;Ɛ M1˄)Td}[�?x` `P]44lF̼- Nd Hfd0Trj"fOKe9rՒβIv ==3cvĎ%"{oz47=mdn^M;JD|]?<MiyOnwESJo!0/?=ZE>򳨨жF+EN˶fKmVȦeeVԛdfSnnqcZG;m k2 )Oyfl]3}OUse7 gbJ?FjK9|^(YٖG؝0ҵ.k5?>6]b jN">D̦1yi/`tWy4Ln鐉22 2o^Z3J-XfAY+*-i&nEcܣ[zNnoWCxwg,V d,YJ |jߘz7O\0 hL 6,ɷMt*wh˰-OWg2knn#%&aE1_vN7%lŕڳ^ȅxN2ZiP$% bnzōETȲpjZ- IJ79JZYDQ+gCwuw1Ϟ;wu -`U0?s>g(9sF4sbSKbRIvےbrmْ^,?lurw,$TZ /T?÷ۺsQϕS|rS}UJUTo}hӕ6oNM[a6fq?CF<gf+=+V(w{KxsrBhbrugZp11J7+U.8܏hۺ-m?,]DzyNׇ{s۩ `@ f "/Xq,p{mWs.J*xӤdաOgTZ|%OM̼9i ӛtq.[\)We y If!,ՈAW5̙%57jSYԺ'ٟU1힌W0*QU9u,ǽxI19HISf/Dr`[7,tb}[}.GKVTh?WkK-Yv;2+RK\Kp߇r˝ [o;D-sh+h Rw^̟VZ9B2;j?=WY< Jݔ1!Hu%)C:_9lp >›q+4_y+?,# xCfyxU X,  XL/`'`eŷp!W'0cW6 Wv:pWN0OfX#(v[ d~ya&`JI"㿞 P?bNRD!a('`&p.~;.}1w쪬\&rc V.7 :۶:CTECCAӾfy *p  o}_;)4 up]x[pu74 u2$-(#,vT.s>` M *6Dca" ]br`((w^7҉Xñ~2{@48˴EWWS6tBC@,c sǎ@xA팄!Z?6m-4%Gtd\zCmqr9 L|dZd8%s7;w lp mv~,IIfC=a1z( *鷌vA7RQ AjF?yv}.\KCVC'-p3Qt�q7tD Cߟտou=Ld[E;D+Cnϟ+_E^XL19ȓ$cVB_y(ͺ.;9"U|ӵ \4|я9{u1'F'7(iذ _ݺu:=ױv?\+7!סC?㽙xw2)kȜ5}rЫ;i5rXdٝ͝>OZ0={ۡS7k4> rz/u󉓐/'\j [#MygKK\{㜿%J]]O d$?=/E."{ȻbjwsQ\tإjV6u>_z|׻}%uu|.tܑNj$͗g3rh?L4rFAiP.%)ԮSO O=/< rEvE(ZÓd<vQV<pR㠅NP;CKf%Ԭ%^x-j:.5Yf,occMz,ԎP;%j�X<"}Tj=?}p$?07z|j3BhƓy }ޟ@EևF:A|++>tptuwwQR}:E$NU-Y`]t0%W"}h+X{d`96 8=fIƍP;ʥRi$'ŨE[ӥbf0OKj<;d<~Z-"^6DI]yܮ$7eٴP PSؚ'ETǹOy P6oaKZ͗2\]"]d^ K;Ȫvjm ^iJjh']jiZkj[Foƛ!Y3^a^+ەeCKe]ֲѲ"X,NK%loy2cI%% Olz;eeI3ZJ hEWk=tGR탺͚çw7kAT`? uX46R_++E/Nt@!( FEXldd!#4FDE酞Sia c#e$6_Q/A endstream endobj 440 0 obj 5532 endobj 441 0 obj <</Type/FontDescriptor/FontName/JAAAAA+LiberationMono-Bold /Flags 5 /FontBBox[-26 -300 613 832]/ItalicAngle 0 /Ascent 832 /Descent -300 /CapHeight 832 /StemV 80 /FontFile2 439 0 R >> endobj 442 0 obj <</Length 290/Filter/FlateDecode>> stream x]n E|t;ɲ8E0vj0^ CJ]0U͵QFof-XK% b8HR!}Ti9oFSQfkV9'Fn>,IYR !B׶-u?}@Sp> 5`q\ҢKJ%yt=dI'X:N<_<gOs]y=ϧA9hp%0z03| 7ug|?Q"O¬|JR?I{o endstream endobj 443 0 obj <</Type/Font/Subtype/TrueType/BaseFont/JAAAAA+LiberationMono-Bold /FirstChar 0 /LastChar 15 /Widths[600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 ] /FontDescriptor 441 0 R /ToUnicode 442 0 R >> endobj 444 0 obj <</F1 433 0 R/F2 428 0 R/F3 423 0 R/F4 418 0 R/F5 408 0 R/F6 403 0 R/F7 438 0 R/F8 413 0 R /F9 443 0 R >> endobj 445 0 obj <</Font 444 0 R /XObject<</Im4 4 0 R>> /ProcSet[/PDF/Text/ImageC/ImageI/ImageB] >> endobj 1 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 2 0 R>> endobj 5 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 158 0 R 356 0 R 357 0 R 358 0 R 359 0 R 360 0 R 361 0 R 362 0 R 363 0 R 364 0 R 365 0 R 366 0 R 367 0 R 368 0 R 369 0 R 370 0 R 371 0 R 372 0 R 373 0 R 374 0 R 375 0 R 376 0 R 377 0 R 378 0 R 379 0 R 380 0 R 381 0 R 382 0 R 383 0 R 384 0 R 385 0 R 386 0 R 387 0 R 388 0 R 389 0 R 390 0 R 391 0 R 392 0 R 393 0 R 394 0 R 395 0 R 396 0 R 397 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 6 0 R>> endobj 8 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 335 0 R 336 0 R 337 0 R 338 0 R 339 0 R 340 0 R 341 0 R 342 0 R 343 0 R 344 0 R 345 0 R 346 0 R 347 0 R 348 0 R 349 0 R 350 0 R 351 0 R 352 0 R 353 0 R 354 0 R 355 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 9 0 R>> endobj 11 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 330 0 R 331 0 R 332 0 R 333 0 R 334 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 12 0 R>> endobj 14 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 319 0 R 321 0 R 322 0 R 323 0 R 324 0 R 325 0 R 326 0 R 327 0 R 328 0 R 329 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 15 0 R>> endobj 17 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 304 0 R 305 0 R 306 0 R 307 0 R 308 0 R 309 0 R 310 0 R 311 0 R 312 0 R 313 0 R 314 0 R 315 0 R 316 0 R 317 0 R 318 0 R 320 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 18 0 R>> endobj 20 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 294 0 R 295 0 R 296 0 R 297 0 R 298 0 R 299 0 R 300 0 R 301 0 R 302 0 R 303 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 21 0 R>> endobj 23 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 284 0 R 285 0 R 286 0 R 287 0 R 288 0 R 289 0 R 290 0 R 291 0 R 292 0 R 293 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 24 0 R>> endobj 26 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 266 0 R 267 0 R 268 0 R 269 0 R 270 0 R 271 0 R 272 0 R 273 0 R 274 0 R 275 0 R 276 0 R 277 0 R 278 0 R 279 0 R 280 0 R 281 0 R 282 0 R 283 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 27 0 R>> endobj 29 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 263 0 R 264 0 R 265 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 30 0 R>> endobj 32 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 260 0 R 261 0 R 262 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 33 0 R>> endobj 35 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 257 0 R 258 0 R 259 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 36 0 R>> endobj 38 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 252 0 R 253 0 R 254 0 R 255 0 R 256 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 39 0 R>> endobj 41 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 241 0 R 242 0 R 243 0 R 244 0 R 245 0 R 246 0 R 247 0 R 248 0 R 249 0 R 250 0 R 251 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 42 0 R>> endobj 44 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 236 0 R 237 0 R 238 0 R 239 0 R 240 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 45 0 R>> endobj 47 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 230 0 R 231 0 R 232 0 R 233 0 R 234 0 R 235 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 48 0 R>> endobj 50 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 51 0 R>> endobj 53 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 229 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 54 0 R>> endobj 56 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 226 0 R 227 0 R 228 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 57 0 R>> endobj 59 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 222 0 R 223 0 R 224 0 R 225 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 60 0 R>> endobj 62 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 219 0 R 220 0 R 221 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 63 0 R>> endobj 65 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 66 0 R>> endobj 68 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 69 0 R>> endobj 71 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 211 0 R 212 0 R 213 0 R 214 0 R 215 0 R 216 0 R 217 0 R 218 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 72 0 R>> endobj 74 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 205 0 R 206 0 R 207 0 R 208 0 R 209 0 R 210 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 75 0 R>> endobj 77 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 203 0 R 204 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 78 0 R>> endobj 80 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 202 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 81 0 R>> endobj 83 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 84 0 R>> endobj 86 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 87 0 R>> endobj 89 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 201 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 90 0 R>> endobj 92 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 93 0 R>> endobj 95 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 197 0 R 198 0 R 199 0 R 200 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 96 0 R>> endobj 98 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 189 0 R 190 0 R 191 0 R 192 0 R 193 0 R 194 0 R 195 0 R 196 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 99 0 R>> endobj 101 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 186 0 R 187 0 R 188 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 102 0 R>> endobj 104 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 185 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 105 0 R>> endobj 107 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 108 0 R>> endobj 110 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 180 0 R 181 0 R 182 0 R 183 0 R 184 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 111 0 R>> endobj 113 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 114 0 R>> endobj 116 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 175 0 R 176 0 R 177 0 R 178 0 R 179 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 117 0 R>> endobj 119 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 173 0 R 174 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 120 0 R>> endobj 122 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 123 0 R>> endobj 125 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 126 0 R>> endobj 128 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 167 0 R 168 0 R 169 0 R 170 0 R 171 0 R 172 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 129 0 R>> endobj 131 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 162 0 R 163 0 R 164 0 R 165 0 R 166 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 132 0 R>> endobj 134 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 161 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 135 0 R>> endobj 137 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 160 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 138 0 R>> endobj 140 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 141 0 R>> endobj 143 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 144 0 R>> endobj 146 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Annots[ 159 0 R ] /Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 147 0 R>> endobj 149 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 150 0 R>> endobj 152 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 153 0 R>> endobj 155 0 obj <</Type/Page/Parent 398 0 R/Resources 445 0 R/MediaBox[0 0 595.275590551181 841.861417322835]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 156 0 R>> endobj 446 0 obj <</Count 87/First 447 0 R/Last 511 0 R >> endobj 447 0 obj <</Count 0/Title<FEFF0043006F006E00740065006E00740073> /Dest[5 0 R/XYZ 56.7 803.4 0]/Parent 446 0 R/Next 448 0 R>> endobj 448 0 obj <</Count 10/First 449 0 R/Last 458 0 R /Title<FEFF004F0076006500720076006900650077> /Dest[11 0 R/XYZ 56.7 803.4 0]/Parent 446 0 R/Prev 447 0 R/Next 459 0 R>> endobj 449 0 obj <</Count 0/Title<FEFF004400650073006300720069007000740069006F006E> /Dest[11 0 R/XYZ 56.7 513.2 0]/Parent 448 0 R/Next 450 0 R>> endobj 450 0 obj <</Count 3/First 451 0 R/Last 453 0 R /Title<FEFF005500730069006E00670020006300620032004200690062> /Dest[11 0 R/XYZ 56.7 162.9 0]/Parent 448 0 R/Prev 449 0 R/Next 454 0 R>> endobj 451 0 obj <</Count 0/Title<FEFF00500072006F006300650064007500720065> /Dest[11 0 R/XYZ 56.7 131.9 0]/Parent 450 0 R/Next 452 0 R>> endobj 452 0 obj <</Count 0/Title<FEFF0042007500740074006F006E0073002000460075006E006300740069006F006E0061006C006900740079> /Dest[17 0 R/XYZ 56.7 629.7 0]/Parent 450 0 R/Prev 451 0 R/Next 453 0 R>> endobj 453 0 obj <</Count 0/Title<FEFF004100640064006900740069006F006E0061006C0020004B006500790062006F006100720064002000460075006E006300740069006F006E0061006C006900740079> /Dest[20 0 R/XYZ 56.7 744.3 0]/Parent 450 0 R/Prev 452 0 R>> endobj 454 0 obj <</Count 0/Title<FEFF0041006400760061006E006300650064002000460065006100740075007200650073> /Dest[23 0 R/XYZ 56.7 219.7 0]/Parent 448 0 R/Prev 450 0 R/Next 455 0 R>> endobj 455 0 obj <</Count 2/First 456 0 R/Last 457 0 R /Title<FEFF0052006500710075006900720065006D0065006E00740073> /Dest[26 0 R/XYZ 56.7 570 0]/Parent 448 0 R/Prev 454 0 R/Next 458 0 R>> endobj 456 0 obj <</Count 0/Title<FEFF0043006F006D00700069006C006100740069006F006E> /Dest[26 0 R/XYZ 56.7 539 0]/Parent 455 0 R/Next 457 0 R>> endobj 457 0 obj <</Count 0/Title<FEFF004400650070006C006F0079006D0065006E0074> /Dest[26 0 R/XYZ 56.7 236.3 0]/Parent 455 0 R/Prev 456 0 R>> endobj 458 0 obj <</Count 0/Title<FEFF004300720065006400690074007300200061006E00640020004C006900630065006E00730065> /Dest[29 0 R/XYZ 56.7 743.2 0]/Parent 448 0 R/Prev 455 0 R>> endobj 459 0 obj <</Count 5/First 460 0 R/Last 464 0 R /Title<FEFF0049006E007300740061006C006C006100740069006F006E> /Dest[29 0 R/XYZ 56.7 518.5 0]/Parent 446 0 R/Prev 448 0 R/Next 465 0 R>> endobj 460 0 obj <</Count 0/Title<FEFF0049006E007300740061006C006C0069006E00670020006F006E00200055006E00690078002000730079007300740065006D00730020002800740061007200620061006C006C0029> /Dest[29 0 R/XYZ 56.7 481 0]/Parent 459 0 R/Next 461 0 R>> endobj 461 0 obj <</Count 0/Title<FEFF0049006E007300740061006C006C0069006E00670020006F006E00200055006E00690078002000730079007300740065006D00730020002800520050004D0029> /Dest[29 0 R/XYZ 56.7 85.4 0]/Parent 459 0 R/Prev 460 0 R/Next 462 0 R>> endobj 462 0 obj <</Count 0/Title<FEFF0049006E007300740061006C006C0069006E00670020006F006E002000440065006200690061006E002000730079007300740065006D0073002000280064006500620029> /Dest[32 0 R/XYZ 56.7 566 0]/Parent 459 0 R/Prev 461 0 R/Next 463 0 R>> endobj 463 0 obj <</Count 0/Title<FEFF0049006E007300740061006C006C0069006E00670020006F006E002000570069006E0064006F00770073002000730079007300740065006D0073> /Dest[32 0 R/XYZ 56.7 370.5 0]/Parent 459 0 R/Prev 462 0 R/Next 464 0 R>> endobj 464 0 obj <</Count 0/Title<FEFF0049006E007300740061006C006C0069006E00670020006F006E0020004D006100630020004F005300200058> /Dest[32 0 R/XYZ 56.7 249.7 0]/Parent 459 0 R/Prev 463 0 R>> endobj 465 0 obj <</Count 9/First 466 0 R/Last 474 0 R /Title<FEFF0043006F006E00660069006700750072006100740069006F006E> /Dest[35 0 R/XYZ 56.7 214.2 0]/Parent 446 0 R/Prev 459 0 R/Next 475 0 R>> endobj 466 0 obj <</Count 0/Title<FEFF0043006F006E006600690067007500720069006E006700200041006E006E006F00740065> /Dest[35 0 R/XYZ 56.7 176.8 0]/Parent 465 0 R/Next 467 0 R>> endobj 467 0 obj <</Count 0/Title<FEFF0043006F006E006600690067007500720069006E00670020004200690062005400650058> /Dest[38 0 R/XYZ 56.7 563.2 0]/Parent 465 0 R/Prev 466 0 R/Next 468 0 R>> endobj 468 0 obj <</Count 0/Title<FEFF0043006F006E006600690067007500720069006E006700200043006C006900700062006F006100720064> /Dest[41 0 R/XYZ 56.7 465 0]/Parent 465 0 R/Prev 467 0 R/Next 469 0 R>> endobj 469 0 obj <</Count 0/Title<FEFF0043006F006E006600690067007500720069006E006700200044006F00630075006D0065006E00740073> /Dest[44 0 R/XYZ 56.7 465.3 0]/Parent 465 0 R/Prev 468 0 R/Next 470 0 R>> endobj 470 0 obj <</Count 0/Title<FEFF0043006F006E006600690067007500720069006E0067002000460069006C00650073> /Dest[47 0 R/XYZ 56.7 596 0]/Parent 465 0 R/Prev 469 0 R/Next 471 0 R>> endobj 471 0 obj <</Count 0/Title<FEFF0043006F006E006600690067007500720069006E006700200046006F006E00740073> /Dest[50 0 R/XYZ 56.7 710.6 0]/Parent 465 0 R/Prev 470 0 R/Next 472 0 R>> endobj 472 0 obj <</Count 0/Title<FEFF0043006F006E006600690067007500720069006E00670020004E006500740077006F0072006B> /Dest[50 0 R/XYZ 56.7 517.2 0]/Parent 465 0 R/Prev 471 0 R/Next 473 0 R>> endobj 473 0 obj <</Count 0/Title<FEFF0043006F006E006600690067007500720069006E0067002000530068006F007200740063007500740073> /Dest[53 0 R/XYZ 56.7 813.5 0]/Parent 465 0 R/Prev 472 0 R/Next 474 0 R>> endobj 474 0 obj <</Count 0/Title<FEFF0043006F006E006600690067007500720069006E00670020005500740069006C00690074006900650073> /Dest[53 0 R/XYZ 56.7 652.8 0]/Parent 465 0 R/Prev 473 0 R>> endobj 475 0 obj <</Count 2/First 476 0 R/Last 477 0 R /Title<FEFF005300650061007200630068002000420069006200540065005800200061006E0064002000500044004600200044006F00630075006D0065006E0074002000460069006C00650073> /Dest[53 0 R/XYZ 56.7 184.6 0]/Parent 446 0 R/Prev 465 0 R/Next 478 0 R>> endobj 476 0 obj <</Count 0/Title<FEFF004400650073006300720069007000740069006F006E> /Dest[53 0 R/XYZ 56.7 147.1 0]/Parent 475 0 R/Next 477 0 R>> endobj 477 0 obj <</Count 0/Title<FEFF004E006F007400650073> /Dest[56 0 R/XYZ 56.7 263.5 0]/Parent 475 0 R/Prev 476 0 R>> endobj 478 0 obj <</Count 0/Title<FEFF00630062003200420069006200200043006F006D006D0061006E00640020004C0069006E0065> /Dest[59 0 R/XYZ 56.7 813.4 0]/Parent 446 0 R/Prev 475 0 R/Next 479 0 R>> endobj 479 0 obj <</Count 1/First 480 0 R/Last 480 0 R /Title<FEFF00630062003200420069006200200041006E006E006F00740065> /Dest[59 0 R/XYZ 56.7 122.8 0]/Parent 446 0 R/Prev 478 0 R/Next 481 0 R>> endobj 480 0 obj <</Count 0/Title<FEFF0041006E006E006F00740065002000530079006E007400610078> /Dest[62 0 R/XYZ 56.7 531.1 0]/Parent 479 0 R>> endobj 481 0 obj <</Count 0/Title<FEFF006300620032004200690062002000430069007400650072> /Dest[68 0 R/XYZ 56.7 627.7 0]/Parent 446 0 R/Prev 479 0 R/Next 482 0 R>> endobj 482 0 obj <</Count 4/First 483 0 R/Last 483 0 R /Title<FEFF004500780061006D0070006C00650073> /Dest[71 0 R/XYZ 56.7 264.9 0]/Parent 446 0 R/Prev 481 0 R/Next 487 0 R>> endobj 483 0 obj <</Count 3/First 484 0 R/Last 486 0 R /Title<FEFF0050007200650064006500660069006E0065006400200046006F0072006D006100740073> /Dest[71 0 R/XYZ 56.7 70.6 0]/Parent 482 0 R>> endobj 484 0 obj <</Count 0/Title<FEFF004200690062005400650058> /Dest[74 0 R/XYZ 56.7 760.6 0]/Parent 483 0 R/Next 485 0 R>> endobj 485 0 obj <</Count 0/Title<FEFF0049005300490020005200650066006500720065006E0063006500200046006F0072006D00610074> /Dest[74 0 R/XYZ 56.7 521.1 0]/Parent 483 0 R/Prev 484 0 R/Next 486 0 R>> endobj 486 0 obj <</Count 0/Title<FEFF0052004900530020005200650066006500720065006E0063006500200046006F0072006D00610074> /Dest[74 0 R/XYZ 56.7 235 0]/Parent 483 0 R/Prev 485 0 R>> endobj 487 0 obj <</Count 23/First 488 0 R/Last 510 0 R /Title<FEFF004100640064006900740069006F006E0061006C002000460065006100740075007200650073> /Dest[77 0 R/XYZ 56.7 813.4 0]/Parent 446 0 R/Prev 482 0 R/Next 511 0 R>> endobj 488 0 obj <</Count 7/First 489 0 R/Last 495 0 R /Title<FEFF0045006D006200650064006400650064002000460069006C006500200045006400690074006F0072> /Dest[77 0 R/XYZ 56.7 776 0]/Parent 487 0 R/Next 496 0 R>> endobj 489 0 obj <</Count 0/Title<FEFF0042006F006F006B006D00610072006B0073> /Dest[77 0 R/XYZ 56.7 649 0]/Parent 488 0 R/Next 490 0 R>> endobj 490 0 obj <</Count 0/Title<FEFF00550070006400610074006500200044006F00630075006D0065006E007400730020004D0065007400610064006100740061> /Dest[77 0 R/XYZ 56.7 298 0]/Parent 488 0 R/Prev 489 0 R/Next 491 0 R>> endobj 491 0 obj <</Count 0/Title<FEFF004500780070006F00720074002000530065006C0065006300740065006400200045006E00740072006900650073> /Dest[77 0 R/XYZ 56.7 75.7 0]/Parent 488 0 R/Prev 490 0 R/Next 492 0 R>> endobj 492 0 obj <</Count 0/Title<FEFF00520069006700680074002D0043006C00690063006B0020004D0065006E0075002000460075006E006300740069006F006E0061006C006900740079> /Dest[80 0 R/XYZ 56.7 695.1 0]/Parent 488 0 R/Prev 491 0 R/Next 493 0 R>> endobj 493 0 obj <</Count 0/Title<FEFF005200650066006500720065006E006300650020004C006900730074002000520069006700680074002D0043006C00690063006B0020004D0065006E0075002000460075006E006300740069006F006E0061006C006900740079> /Dest[80 0 R/XYZ 56.7 267.2 0]/Parent 488 0 R/Prev 492 0 R/Next 494 0 R>> endobj 494 0 obj <</Count 0/Title<FEFF004200690062005400650058002000420072006F0077007300650072002000520069006700680074002D0043006C00690063006B0020004D0065006E0075002000460075006E006300740069006F006E0061006C006900740079> /Dest[83 0 R/XYZ 56.7 674.3 0]/Parent 488 0 R/Prev 493 0 R/Next 495 0 R>> endobj 495 0 obj <</Count 0/Title<FEFF004100640064006900740069006F006E0061006C002000460075006E006300740069006F006E0061006C006900740079> /Dest[83 0 R/XYZ 56.7 412.8 0]/Parent 488 0 R/Prev 494 0 R>> endobj 496 0 obj <</Count 0/Title<FEFF0050007200650064006500660069006E006500640020004300690074006500200061006E006400200044006F00630075006D0065006E007400200049004400200050006C0061006300650068006F006C0064006500720073> /Dest[86 0 R/XYZ 56.7 207.1 0]/Parent 487 0 R/Prev 488 0 R/Next 497 0 R>> endobj 497 0 obj <</Count 2/First 498 0 R/Last 499 0 R /Title<FEFF00420069004200540065005800200045006E00740072007900200054007900700065007300200041007600610069006C00610062006C006500200061007300200063006200320042006900620020004600690065006C00640073> /Dest[89 0 R/XYZ 56.7 470.6 0]/Parent 487 0 R/Prev 496 0 R/Next 500 0 R>> endobj 498 0 obj <</Count 0/Title<FEFF004D00610069006E0020004600690065006C00640073> /Dest[89 0 R/XYZ 56.7 376.4 0]/Parent 497 0 R/Next 499 0 R>> endobj 499 0 obj <</Count 0/Title<FEFF004F00740068006500720020004600690065006C00640073> /Dest[92 0 R/XYZ 56.7 647.9 0]/Parent 497 0 R/Prev 498 0 R>> endobj 500 0 obj <</Count 2/First 501 0 R/Last 502 0 R /Title<FEFF00520065006100640069006E006700200061006E0064002000570072006900740069006E00670020004200690062006C0069006F00670072006100700068006900630020004D0065007400610064006100740061> /Dest[95 0 R/XYZ 56.7 588 0]/Parent 487 0 R/Prev 497 0 R/Next 503 0 R>> endobj 501 0 obj <</Count 0/Title<FEFF00520065006100640069006E00670020004D0065007400610064006100740061> /Dest[95 0 R/XYZ 56.7 556.9 0]/Parent 500 0 R/Next 502 0 R>> endobj 502 0 obj <</Count 0/Title<FEFF00570072006900740069006E00670020004D0065007400610064006100740061> /Dest[95 0 R/XYZ 56.7 67.2 0]/Parent 500 0 R/Prev 501 0 R>> endobj 503 0 obj <</Count 2/First 504 0 R/Last 505 0 R /Title<FEFF0050004400460020005200650066006500720065006E0063006500200049006D0070006F00720074> /Dest[98 0 R/XYZ 56.7 355.3 0]/Parent 487 0 R/Prev 500 0 R/Next 506 0 R>> endobj 504 0 obj <</Count 0/Title<FEFF0049006E00740072006F00640075006300740069006F006E> /Dest[98 0 R/XYZ 56.7 324.3 0]/Parent 503 0 R/Next 505 0 R>> endobj 505 0 obj <</Count 0/Title<FEFF004100750074006F006D0061007400690063002000450078007400720061006300740069006F006E003A0020005100750065007300740069006F006E007300200061006E006400200041006E00730077006500720073> /Dest[101 0 R/XYZ 56.7 178.2 0]/Parent 503 0 R/Prev 504 0 R>> endobj 506 0 obj <</Count 0/Title<FEFF00450078007400720061006300740069006E006700200044006100740061002000660072006F006D002000740068006500200043006C006900700062006F006100720064> /Dest[110 0 R/XYZ 56.7 499.2 0]/Parent 487 0 R/Prev 503 0 R/Next 507 0 R>> endobj 507 0 obj <</Count 0/Title<FEFF00500072006F00630065007300730069006E00670020006F006600200041007500740068006F00720020004E0061006D00650073> /Dest[113 0 R/XYZ 56.7 813.5 0]/Parent 487 0 R/Prev 506 0 R/Next 508 0 R>> endobj 508 0 obj <</Count 0/Title<FEFF00500072006F00630065007300730069006E00670020006F00660020004A006F00750072006E0061006C0020004E0061006D00650073> /Dest[113 0 R/XYZ 56.7 141.8 0]/Parent 487 0 R/Prev 507 0 R/Next 509 0 R>> endobj 509 0 obj <</Count 0/Title<FEFF004600690065006C00640020005200650063006F0067006E006900740069006F006E002000520075006C00650073> /Dest[116 0 R/XYZ 56.7 185.4 0]/Parent 487 0 R/Prev 508 0 R/Next 510 0 R>> endobj 510 0 obj <</Count 0/Title<FEFF0052006500670075006C00610072002000450078007000720065007300730069006F006E00200045006400690074006F0072> /Dest[119 0 R/XYZ 56.7 365.4 0]/Parent 487 0 R/Prev 509 0 R>> endobj 511 0 obj <</Count 22/First 512 0 R/Last 512 0 R /Title<FEFF0053007500700070006C0065006D0065006E00740061007200790020004E006F007400650073> /Dest[122 0 R/XYZ 56.7 151.2 0]/Parent 446 0 R/Prev 487 0 R>> endobj 512 0 obj <</Count 21/First 513 0 R/Last 533 0 R /Title<FEFF00520065006C00650061007300650020004E006F007400650073> /Dest[122 0 R/XYZ 56.7 113.7 0]/Parent 511 0 R>> endobj 513 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200031002E0039002E0030> /Dest[122 0 R/XYZ 56.7 82.7 0]/Parent 512 0 R/Next 514 0 R>> endobj 514 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200031002E0035002E0030> /Dest[125 0 R/XYZ 56.7 617.9 0]/Parent 512 0 R/Prev 513 0 R/Next 515 0 R>> endobj 515 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200031002E0034002E0037> /Dest[125 0 R/XYZ 56.7 350.9 0]/Parent 512 0 R/Prev 514 0 R/Next 516 0 R>> endobj 516 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200031002E0034002E0030> /Dest[128 0 R/XYZ 56.7 681.1 0]/Parent 512 0 R/Prev 515 0 R/Next 517 0 R>> endobj 517 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200031002E0033002E0030> /Dest[128 0 R/XYZ 56.7 222.1 0]/Parent 512 0 R/Prev 516 0 R/Next 518 0 R>> endobj 518 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200031002E0031002E0030> /Dest[131 0 R/XYZ 56.7 472.6 0]/Parent 512 0 R/Prev 517 0 R/Next 519 0 R>> endobj 519 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200031002E0030002E0030> /Dest[134 0 R/XYZ 56.7 813.5 0]/Parent 512 0 R/Prev 518 0 R/Next 520 0 R>> endobj 520 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200030002E0038002E0034> /Dest[134 0 R/XYZ 56.7 417.7 0]/Parent 512 0 R/Prev 519 0 R/Next 521 0 R>> endobj 521 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200030002E0038002E0033> /Dest[134 0 R/XYZ 56.7 101.1 0]/Parent 512 0 R/Prev 520 0 R/Next 522 0 R>> endobj 522 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200030002E0038002E0031> /Dest[137 0 R/XYZ 56.7 489 0]/Parent 512 0 R/Prev 521 0 R/Next 523 0 R>> endobj 523 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200030002E0037002E0032> /Dest[137 0 R/XYZ 56.7 189.2 0]/Parent 512 0 R/Prev 522 0 R/Next 524 0 R>> endobj 524 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200030002E0037002E0030> /Dest[140 0 R/XYZ 56.7 664.7 0]/Parent 512 0 R/Prev 523 0 R/Next 525 0 R>> endobj 525 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200030002E0036002E00390031> /Dest[140 0 R/XYZ 56.7 444.6 0]/Parent 512 0 R/Prev 524 0 R/Next 526 0 R>> endobj 526 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200030002E0036002E00390030> /Dest[140 0 R/XYZ 56.7 287.5 0]/Parent 512 0 R/Prev 525 0 R/Next 527 0 R>> endobj 527 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200030002E0036002E0030> /Dest[143 0 R/XYZ 56.7 727.5 0]/Parent 512 0 R/Prev 526 0 R/Next 528 0 R>> endobj 528 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200030002E0035002E0030> /Dest[143 0 R/XYZ 56.7 71.8 0]/Parent 512 0 R/Prev 527 0 R/Next 529 0 R>> endobj 529 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200030002E0034002E0031> /Dest[146 0 R/XYZ 56.7 601.3 0]/Parent 512 0 R/Prev 528 0 R/Next 530 0 R>> endobj 530 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200030002E0033002E0035> /Dest[146 0 R/XYZ 56.7 346 0]/Parent 512 0 R/Prev 529 0 R/Next 531 0 R>> endobj 531 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200030002E0033002E0030> /Dest[149 0 R/XYZ 56.7 469.7 0]/Parent 512 0 R/Prev 530 0 R/Next 532 0 R>> endobj 532 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200030002E0032002E0037> /Dest[152 0 R/XYZ 56.7 292.1 0]/Parent 512 0 R/Prev 531 0 R/Next 533 0 R>> endobj 533 0 obj <</Count 0/Title<FEFF00520065006C00650061007300650020004E006F00740065002000630062003200420069006200200030002E0032002E0031> /Dest[155 0 R/XYZ 56.7 615.7 0]/Parent 512 0 R/Prev 532 0 R>> endobj 398 0 obj <</Type/Pages /Resources 445 0 R /MediaBox[ 0 0 595 841 ] /Kids[ 1 0 R 5 0 R 8 0 R 11 0 R 14 0 R 17 0 R 20 0 R 23 0 R 26 0 R 29 0 R 32 0 R 35 0 R 38 0 R 41 0 R 44 0 R 47 0 R 50 0 R 53 0 R 56 0 R 59 0 R 62 0 R 65 0 R 68 0 R 71 0 R 74 0 R 77 0 R 80 0 R 83 0 R 86 0 R 89 0 R 92 0 R 95 0 R 98 0 R 101 0 R 104 0 R 107 0 R 110 0 R 113 0 R 116 0 R 119 0 R 122 0 R 125 0 R 128 0 R 131 0 R 134 0 R 137 0 R 140 0 R 143 0 R 146 0 R 149 0 R 152 0 R 155 0 R ] /Count 52>> endobj 158 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 726.1 149.6 742.5]/Dest[11 0 R/XYZ 56.7 803.4 0]>> endobj 159 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[56 513.5 209.7 529.9]/Dest[155 0 R/XYZ 56.7 615.7 0]>> endobj 160 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[90.4 509.1 224.8 525.5]/Dest[59 0 R/XYZ 56.7 813.4 0]>> endobj 161 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[116.2 437.8 382.3 454.2]/Dest[95 0 R/XYZ 56.7 588 0]>> endobj 162 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[230.7 33.7 365.1 50.1]/Dest[59 0 R/XYZ 56.7 813.4 0]>> endobj 163 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[116.2 33.7 204.5 50.1]/Dest[59 0 R/XYZ 56.7 122.8 0]>> endobj 164 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[151.4 64.2 194.2 80.6]/A<</Type/Action/S/URI/URI(http://www.math.union.edu/~dpvc/jsMath/)>> >> endobj 165 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[218.9 492.7 353.3 509.1]/Dest[59 0 R/XYZ 56.7 813.4 0]>> endobj 166 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[116.2 492.7 189.8 509.1]/Dest[68 0 R/XYZ 56.7 627.7 0]>> endobj 167 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[243.4 134.3 397.1 150.7]/Dest[131 0 R/XYZ 56.7 472.6 0]>> endobj 168 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[344.4 183.3 498.1 199.7]/Dest[152 0 R/XYZ 56.7 292.1 0]>> endobj 169 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[116.2 242.2 189.8 258.6]/Dest[68 0 R/XYZ 56.7 627.7 0]>> endobj 170 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[324.7 701.2 459.1 717.6]/Dest[59 0 R/XYZ 56.7 813.4 0]>> endobj 171 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[194.4 701.2 295.7 717.6]/Dest[47 0 R/XYZ 56.7 596 0]>> endobj 172 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[116.2 701.2 189.8 717.6]/Dest[68 0 R/XYZ 56.7 627.7 0]>> endobj 173 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[76 34.8 287.6 51.2]/A<</Type/Action/S/URI/URI(http://doc.qt.io/qt-5.6/QRegExp.html#introduction)>> >> endobj 174 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[56 291.3 267.2 307.7]/Dest[110 0 R/XYZ 56.7 499.2 0]>> endobj 175 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[112.6 62 294.9 78.4]/A<</Type/Action/S/URI/URI(https://arxiv.org/abs/0902.0755)>> >> endobj 176 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[317.3 78.4 567.8 94.8]/A<</Type/Action/S/URI/URI(https://arxiv.org/abs/0902.0755)>> >> endobj 177 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[341 206.5 526.1 222.9]/Dest[80 0 R/XYZ 56.7 695.1 0]>> endobj 178 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[196.3 206.5 312 222.9]/Dest[38 0 R/XYZ 56.7 563.2 0]>> endobj 179 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[90.4 206.5 191.7 222.9]/Dest[47 0 R/XYZ 56.7 596 0]>> endobj 180 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[282.3 43.4 548.4 59.8]/Dest[95 0 R/XYZ 56.7 588 0]>> endobj 181 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[116.2 43.4 256.1 59.8]/Dest[116 0 R/XYZ 56.7 185.4 0]>> endobj 182 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[409.9 394.5 542.1 410.9]/Dest[41 0 R/XYZ 56.7 465 0]>> endobj 183 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[77.2 410.9 150.7 427.3]/Dest[41 0 R/XYZ 56.7 465 0]>> endobj 184 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[449.9 427.2 567.7 443.6]/Dest[41 0 R/XYZ 56.7 465 0]>> endobj 185 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[325.3 518.4 409.6 534.8]/Dest[35 0 R/XYZ 56.7 214.2 0]>> endobj 186 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[117.2 198.3 251.6 214.8]/Dest[59 0 R/XYZ 56.7 813.4 0]>> endobj 187 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[261.4 635.8 404 652.2]/Dest[44 0 R/XYZ 56.7 465.3 0]>> endobj 188 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[150.6 731.7 327.3 748.1]/A<</Type/Action/S/URI/URI(http://www.glyphandcog.com/textext.html)>> >> endobj 189 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[56 42.5 195.9 58.9]/Dest[116 0 R/XYZ 56.7 185.4 0]>> endobj 190 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[79.2 124.2 211.4 140.6]/Dest[41 0 R/XYZ 56.7 465 0]>> endobj 191 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[56 203.8 104.7 220.2]/Dest[53 0 R/XYZ 56.7 652.8 0]>> endobj 192 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[460 220.1 567.7 236.5]/Dest[53 0 R/XYZ 56.7 652.8 0]>> endobj 193 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[285 376.4 463 392.8]/Dest[77 0 R/XYZ 56.7 298 0]>> endobj 194 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[116.2 376.4 258.8 392.8]/Dest[44 0 R/XYZ 56.7 465.3 0]>> endobj 195 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[56 505 311.9 521.4]/A<</Type/Action/S/URI/URI(https://sno.phy.queensu.ca/~phil/exiftool/)>> >> endobj 196 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[170.4 664.2 210.4 680.6]/A<</Type/Action/S/URI/URI(http://www.jabref.org/)>> >> endobj 197 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[56 87.3 98.9 103.7]/Dest[98 0 R/XYZ 56.7 355.3 0]>> endobj 198 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[435.8 103.7 567.8 120.1]/Dest[98 0 R/XYZ 56.7 355.3 0]>> endobj 199 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[274.5 103.7 406.7 120.1]/Dest[41 0 R/XYZ 56.7 465 0]>> endobj 200 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[116.2 103.7 269.9 120.1]/Dest[134 0 R/XYZ 56.7 813.5 0]>> endobj 201 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[311.1 412.8 425.8 429.2]/A<</Type/Action/S/URI/URI(http://www.fb10.uni-bremen.de/anglistik/langpro/bibliographies/jacobsen-bibtex.html)>> >> endobj 202 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[56 747.9 198.6 764.3]/Dest[44 0 R/XYZ 56.7 465.3 0]>> endobj 203 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[346.2 95.8 453.2 112.2]/Dest[95 0 R/XYZ 56.7 67.2 0]>> endobj 204 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[438.5 530.6 539.8 547.1]/Dest[47 0 R/XYZ 56.7 596 0]>> endobj 205 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[56 59.7 115.4 76.1]/Dest[41 0 R/XYZ 56.7 465 0]>> endobj 206 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[458.5 76.1 567.8 92.6]/Dest[41 0 R/XYZ 56.7 465 0]>> endobj 207 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[56 255.1 115.4 271.5]/Dest[41 0 R/XYZ 56.7 465 0]>> endobj 208 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[458.5 271.4 567.8 287.9]/Dest[41 0 R/XYZ 56.7 465 0]>> endobj 209 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 780.7 221.8 797.1]/Dest[74 0 R/XYZ 56.7 235 0]>> endobj 210 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 797.1 217.8 813.5]/Dest[74 0 R/XYZ 56.7 521.1 0]>> endobj 211 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 29.1 134.2 45.5]/Dest[74 0 R/XYZ 56.7 760.6 0]>> endobj 212 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[56 154.9 171.8 171.3]/Dest[23 0 R/XYZ 56.7 219.7 0]>> endobj 213 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[293.1 289.1 381.4 305.5]/Dest[59 0 R/XYZ 56.7 122.8 0]>> endobj 214 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[132.5 289.1 266.9 305.5]/Dest[59 0 R/XYZ 56.7 813.4 0]>> endobj 215 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[56 289.1 127.9 305.5]/Dest[125 0 R/XYZ 56.7 350.9 0]>> endobj 216 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[432.8 305.4 567.7 321.8]/Dest[125 0 R/XYZ 56.7 350.9 0]>> endobj 217 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[274.5 305.4 428.2 321.8]/Dest[128 0 R/XYZ 56.7 681.1 0]>> endobj 218 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[116.2 305.4 269.9 321.8]/Dest[128 0 R/XYZ 56.7 222.1 0]>> endobj 219 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[393.8 489.6 482.1 506.1]/A<</Type/Action/S/URI/URI(https://www.molspaces.com/cb2bib/doc/c2bannote/annote.tex.html)>> >> endobj 220 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[260.5 552.2 394.9 568.6]/Dest[59 0 R/XYZ 56.7 813.4 0]>> endobj 221 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[116.2 552.2 234.3 568.6]/Dest[35 0 R/XYZ 56.7 176.8 0]>> endobj 222 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[77.2 146.9 233.3 163.3]/Dest[101 0 R/XYZ 56.7 178.2 0]>> endobj 223 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[372.7 163.3 567.8 179.7]/Dest[101 0 R/XYZ 56.7 178.2 0]>> endobj 224 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[77.2 179.6 120.2 196]/Dest[128 0 R/XYZ 56.7 222.1 0]>> endobj 225 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[430.9 196 567.7 212.5]/Dest[128 0 R/XYZ 56.7 222.1 0]>> endobj 226 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 107.5 280.2 123.9]/A<</Type/Action/S/URI/URI(https://arxiv.org/abs/0705.0751)>> >> endobj 227 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[248.4 172.9 349.7 189.3]/Dest[47 0 R/XYZ 56.7 596 0]>> endobj 228 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[195.2 551 316.7 567.4]/Dest[53 0 R/XYZ 56.7 652.8 0]>> endobj 229 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[354.2 89.3 477 105.7]/A<</Type/Action/S/URI/URI(https://arxiv.org/abs/0705.0751)>> >> endobj 230 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[223.2 439.9 395.4 456.3]/Dest[113 0 R/XYZ 56.7 141.8 0]>> endobj 231 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 617.1 198.4 633.5]/Dest[95 0 R/XYZ 56.7 67.2 0]>> endobj 232 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[161.2 666.3 210.1 682.7]/A<</Type/Action/S/URI/URI(https://sno.phy.queensu.ca/~phil/exiftool/)>> >> endobj 233 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 699 372.4 715.4]/Dest[86 0 R/XYZ 56.7 207.1 0]>> endobj 234 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[77.2 780.7 233 797.1]/Dest[95 0 R/XYZ 56.7 588 0]>> endobj 235 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[391.9 797.1 567.7 813.5]/Dest[95 0 R/XYZ 56.7 588 0]>> endobj 236 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[222.1 63.7 361.6 80.1]/Dest[77 0 R/XYZ 56.7 75.7 0]>> endobj 237 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[77.2 63.7 195.9 80.1]/Dest[134 0 R/XYZ 56.7 417.7 0]>> endobj 238 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[482.3 80 567.7 96.5]/Dest[134 0 R/XYZ 56.7 417.7 0]>> endobj 239 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[77.2 486.4 233 502.8]/Dest[95 0 R/XYZ 56.7 588 0]>> endobj 240 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[353.2 502.8 567.8 519.2]/Dest[95 0 R/XYZ 56.7 588 0]>> endobj 241 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[322.2 145.1 452.6 161.5]/Dest[74 0 R/XYZ 56.7 235 0]>> endobj 242 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[169.6 145.1 296 161.5]/Dest[74 0 R/XYZ 56.7 521.1 0]>> endobj 243 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[302.4 161.5 513.6 177.9]/Dest[110 0 R/XYZ 56.7 499.2 0]>> endobj 244 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 161.5 297.8 177.9]/Dest[20 0 R/XYZ 56.7 744.3 0]>> endobj 245 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[329 194.2 430 210.6]/A<</Type/Action/S/URI/URI(http://bibutils.refbase.org/)>> >> endobj 246 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[77.2 292.6 238.1 309]/Dest[110 0 R/XYZ 56.7 499.2 0]>> endobj 247 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[486.1 308.9 567.8 325.3]/Dest[110 0 R/XYZ 56.7 499.2 0]>> endobj 248 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[232.7 486.1 439.1 502.5]/Dest[20 0 R/XYZ 56.7 744.3 0]>> endobj 249 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[77.2 666.2 232.4 682.6]/Dest[20 0 R/XYZ 56.7 744.3 0]>> endobj 250 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[448.2 682.5 567.8 699]/Dest[20 0 R/XYZ 56.7 744.3 0]>> endobj 251 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[210.1 748 326.9 764.4]/A<</Type/Action/S/URI/URI(https://arxiv.org/abs/0705.0751)>> >> endobj 252 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[77.2 47.3 125.4 63.7]/Dest[116 0 R/XYZ 56.7 185.4 0]>> endobj 253 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[425.4 63.7 567.8 80.1]/Dest[116 0 R/XYZ 56.7 185.4 0]>> endobj 254 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[114.5 358.2 286.7 374.6]/Dest[113 0 R/XYZ 56.7 141.8 0]>> endobj 255 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[77.2 456.4 169.6 472.8]/Dest[86 0 R/XYZ 56.7 207.1 0]>> endobj 256 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[315.5 472.7 567.7 489.1]/Dest[86 0 R/XYZ 56.7 207.1 0]>> endobj 257 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[185.2 37.1 228 53.5]/A<</Type/Action/S/URI/URI(http://www.math.union.edu/~dpvc/jsMath/)>> >> endobj 258 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[424.4 53.5 475.7 69.9]/A<</Type/Action/S/URI/URI(https://www.mathjax.org/)>> >> endobj 259 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[116.2 238.4 200.5 254.8]/Dest[35 0 R/XYZ 56.7 214.2 0]>> endobj 260 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 65.5 308.5 81.9]/A<</Type/Action/S/URI/URI(https://developer.apple.com/xcode/)>> >> endobj 261 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 128.7 268.7 145.1]/A<</Type/Action/S/URI/URI(https://www.qt.io/download/)>> >> endobj 262 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[362.5 736.4 523.1 752.9]/Dest[140 0 R/XYZ 56.7 287.5 0]>> endobj 263 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[375 622.2 541.6 638.6]/A<</Type/Action/S/URI/URI(http://www.gnu.org/licenses/gpl.html)>> >> endobj 264 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[56 652.7 150.2 669.1]/A<</Type/Action/S/URI/URI(https://www.molspaces.com/cb2bib/doc/changelog/)>> >> endobj 265 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[128 685.4 286.7 701.8]/A<</Type/Action/S/URI/URI(https://www.kde.org/)>> >> endobj 266 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[246.8 35.8 295.2 52.3]/A<</Type/Action/S/URI/URI(http://bibutils.refbase.org/)>> >> endobj 267 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 52.3 357.9 68.7]/A<</Type/Action/S/URI/URI(http://www.xpdfreader.com/download.html)>> >> endobj 268 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 85.1 347.3 101.5]/A<</Type/Action/S/URI/URI(https://sno.phy.queensu.ca/~phil/exiftool/)>> >> endobj 269 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[77.2 117.9 136.6 134.3]/Dest[35 0 R/XYZ 56.7 176.8 0]>> endobj 270 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[463.7 134.2 567.7 150.6]/Dest[35 0 R/XYZ 56.7 176.8 0]>> endobj 271 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[214.2 150.6 368.2 167.1]/A<</Type/Action/S/URI/URI(https://www.mathjax.org/)>> >> endobj 272 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 371.5 359.7 387.9]/A<</Type/Action/S/URI/URI(http://www.oberhumer.com/opensource/lzo/)>> >> endobj 273 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[223 453.4 284.9 469.8]/A<</Type/Action/S/URI/URI(https://www.qt.io/download)>> >> endobj 274 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[223 469.7 284.9 486.1]/A<</Type/Action/S/URI/URI(https://www.qt.io/download)>> >> endobj 275 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 591.1 165 607.5]/Dest[68 0 R/XYZ 56.7 627.7 0]>> endobj 276 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 607.5 179.7 623.9]/Dest[59 0 R/XYZ 56.7 122.8 0]>> endobj 277 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 623.8 225.8 640.2]/Dest[59 0 R/XYZ 56.7 813.4 0]>> endobj 278 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 640.2 357.5 656.6]/Dest[95 0 R/XYZ 56.7 588 0]>> endobj 279 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 656.5 224 672.9]/Dest[98 0 R/XYZ 56.7 355.3 0]>> endobj 280 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 672.9 219.2 689.3]/Dest[77 0 R/XYZ 56.7 776 0]>> endobj 281 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 689.2 325.3 705.6]/Dest[53 0 R/XYZ 56.7 184.6 0]>> endobj 282 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 750.2 372.4 766.6]/Dest[86 0 R/XYZ 56.7 207.1 0]>> endobj 283 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 766.6 175.7 783]/Dest[35 0 R/XYZ 56.7 214.2 0]>> endobj 284 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 49.6 245.9 66]/Dest[119 0 R/XYZ 56.7 365.4 0]>> endobj 285 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 66 231.3 82.4]/Dest[116 0 R/XYZ 56.7 185.4 0]>> endobj 286 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 82.3 263.6 98.7]/Dest[113 0 R/XYZ 56.7 141.8 0]>> endobj 287 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 98.7 262.2 115.1]/Dest[113 0 R/XYZ 56.7 813.5 0]>> endobj 288 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 115 302.6 131.4]/Dest[110 0 R/XYZ 56.7 499.2 0]>> endobj 289 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 131.4 367.8 147.8]/Dest[101 0 R/XYZ 56.7 178.2 0]>> endobj 290 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[188.1 355.2 303.8 371.6]/Dest[38 0 R/XYZ 56.7 563.2 0]>> endobj 291 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[390.4 371.6 507.2 388]/A<</Type/Action/S/URI/URI(https://arxiv.org/abs/0705.0751)>> >> endobj 292 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[77.2 584.1 134.2 600.5]/Dest[38 0 R/XYZ 56.7 563.2 0]>> endobj 293 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[464.9 600.5 567.8 617]/Dest[38 0 R/XYZ 56.7 563.2 0]>> endobj 294 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[328.7 37.1 483.2 53.5]/Dest[119 0 R/XYZ 56.7 365.4 0]>> endobj 295 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 37.1 302.6 53.5]/Dest[110 0 R/XYZ 56.7 499.2 0]>> endobj 296 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[77.2 102.5 161.1 118.9]/Dest[44 0 R/XYZ 56.7 465.3 0]>> endobj 297 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[454.5 118.8 567.8 135.2]/Dest[44 0 R/XYZ 56.7 465.3 0]>> endobj 298 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 347.8 223.6 364.2]/Dest[41 0 R/XYZ 56.7 465 0]>> endobj 299 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[77.2 544.2 182.7 560.6]/Dest[59 0 R/XYZ 56.7 813.4 0]>> endobj 300 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[468.9 560.6 567.8 577]/Dest[59 0 R/XYZ 56.7 813.4 0]>> endobj 301 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.8 642.3 215.1 658.7]/Dest[59 0 R/XYZ 56.7 122.8 0]>> endobj 302 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[334.6 705.5 466.7 721.9]/Dest[53 0 R/XYZ 56.7 813.5 0]>> endobj 303 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[308.5 764.4 436.3 780.8]/Dest[77 0 R/XYZ 56.7 776 0]>> endobj 304 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[244 149.4 397.7 165.9]/Dest[146 0 R/XYZ 56.7 346 0]>> endobj 305 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 165.9 218.4 182.3]/Dest[50 0 R/XYZ 56.7 517.2 0]>> endobj 306 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[77.2 231.3 195.9 247.7]/Dest[155 0 R/XYZ 56.7 615.7 0]>> endobj 307 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[505.1 247.6 567.8 264]/Dest[155 0 R/XYZ 56.7 615.7 0]>> endobj 308 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[325.2 247.6 478.9 264]/Dest[146 0 R/XYZ 56.7 601.3 0]>> endobj 309 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[296.7 362.1 429.3 378.5]/Dest[98 0 R/XYZ 56.7 355.3 0]>> endobj 310 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[335.5 460.2 457 476.6]/Dest[53 0 R/XYZ 56.7 652.8 0]>> endobj 311 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[77.2 460.2 281.7 476.6]/Dest[53 0 R/XYZ 56.7 184.6 0]>> endobj 312 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[503.6 476.5 567.7 492.9]/Dest[53 0 R/XYZ 56.7 184.6 0]>> endobj 313 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[216.9 541.9 301.2 558.3]/Dest[35 0 R/XYZ 56.7 214.2 0]>> endobj 314 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[208.9 649.8 336.7 666.2]/Dest[77 0 R/XYZ 56.7 776 0]>> endobj 315 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[77.2 649.8 182.7 666.2]/Dest[59 0 R/XYZ 56.7 813.4 0]>> endobj 316 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[463.2 666.2 567.8 682.6]/Dest[59 0 R/XYZ 56.7 813.4 0]>> endobj 317 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[77.2 780.6 120.2 797]/Dest[146 0 R/XYZ 56.7 346 0]>> endobj 318 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[412.4 797 567.7 813.5]/Dest[146 0 R/XYZ 56.7 346 0]>> endobj 319 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[472.9 44.4 567.8 60.9]/Dest[50 0 R/XYZ 56.7 517.2 0]>> endobj 320 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[56 797 145.5 813.5]/Dest[50 0 R/XYZ 56.7 517.2 0]>> endobj 321 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[234.3 110 366.9 126.4]/Dest[98 0 R/XYZ 56.7 355.3 0]>> endobj 322 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[246.7 257.2 389.3 273.6]/Dest[44 0 R/XYZ 56.7 465.3 0]>> endobj 323 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[222.8 355.4 354.3 371.8]/Dest[17 0 R/XYZ 56.7 629.7 0]>> endobj 324 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 420.8 297.8 437.2]/Dest[20 0 R/XYZ 56.7 744.3 0]>> endobj 325 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[232.6 502.6 387.1 519]/Dest[119 0 R/XYZ 56.7 365.4 0]>> endobj 326 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[77.2 502.6 206.4 519]/Dest[110 0 R/XYZ 56.7 499.2 0]>> endobj 327 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[454.3 518.9 567.8 535.4]/Dest[110 0 R/XYZ 56.7 499.2 0]>> endobj 328 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[145.1 617.1 416.6 633.5]/Dest[89 0 R/XYZ 56.7 470.6 0]>> endobj 329 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[114.5 747.9 215.8 764.3]/Dest[47 0 R/XYZ 56.7 596 0]>> endobj 330 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[227.3 184 381 200.4]/Dest[131 0 R/XYZ 56.7 472.6 0]>> endobj 331 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[263.7 279.9 529.8 296.3]/Dest[95 0 R/XYZ 56.7 588 0]>> endobj 332 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[188.1 534.3 274.2 550.7]/Dest[122 0 R/XYZ 56.7 113.7 0]>> endobj 333 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[267.8 550.6 362 567]/A<</Type/Action/S/URI/URI(https://www.molspaces.com/cb2bib/doc/changelog/)>> >> endobj 334 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[90.4 581.1 244.1 597.5]/Dest[122 0 R/XYZ 56.7 82.7 0]>> endobj 335 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 470.1 223.4 486.5]/Dest[122 0 R/XYZ 56.7 151.2 0]>> endobj 336 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 486.4 281.2 502.8]/Dest[119 0 R/XYZ 56.7 365.4 0]>> endobj 337 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 502.8 266.6 519.2]/Dest[116 0 R/XYZ 56.7 185.4 0]>> endobj 338 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 519.1 298.9 535.5]/Dest[113 0 R/XYZ 56.7 141.8 0]>> endobj 339 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 535.5 297.5 551.9]/Dest[113 0 R/XYZ 56.7 813.5 0]>> endobj 340 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 551.8 337.9 568.2]/Dest[110 0 R/XYZ 56.7 499.2 0]>> endobj 341 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 568.2 438.5 584.6]/Dest[101 0 R/XYZ 56.7 178.2 0]>> endobj 342 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 584.5 239.4 600.9]/Dest[98 0 R/XYZ 56.7 324.3 0]>> endobj 343 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 600.9 259.3 617.3]/Dest[98 0 R/XYZ 56.7 355.3 0]>> endobj 344 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 617.2 269.1 633.6]/Dest[95 0 R/XYZ 56.7 67.2 0]>> endobj 345 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 633.6 273 650]/Dest[95 0 R/XYZ 56.7 556.9 0]>> endobj 346 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 649.9 392.8 666.3]/Dest[95 0 R/XYZ 56.7 588 0]>> endobj 347 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 666.3 236.4 682.7]/Dest[92 0 R/XYZ 56.7 647.9 0]>> endobj 348 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 682.6 231.4 699]/Dest[89 0 R/XYZ 56.7 376.4 0]>> endobj 349 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 699 398.2 715.4]/Dest[89 0 R/XYZ 56.7 470.6 0]>> endobj 350 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 715.3 407.7 731.7]/Dest[86 0 R/XYZ 56.7 207.1 0]>> endobj 351 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 731.7 308.2 748.1]/Dest[83 0 R/XYZ 56.7 412.8 0]>> endobj 352 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 748 444.5 764.4]/Dest[83 0 R/XYZ 56.7 674.3 0]>> endobj 353 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 764.4 435.5 780.8]/Dest[80 0 R/XYZ 56.7 267.2 0]>> endobj 354 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 780.7 347.2 797.1]/Dest[80 0 R/XYZ 56.7 695.1 0]>> endobj 355 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 797.1 301.6 813.5]/Dest[77 0 R/XYZ 56.7 75.7 0]>> endobj 356 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 39.4 340.1 55.8]/Dest[77 0 R/XYZ 56.7 298 0]>> endobj 357 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 55.7 231.8 72.1]/Dest[77 0 R/XYZ 56.7 649 0]>> endobj 358 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 72.1 254.5 88.5]/Dest[77 0 R/XYZ 56.7 776 0]>> endobj 359 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 88.4 210.7 104.8]/Dest[77 0 R/XYZ 56.7 813.4 0]>> endobj 360 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 104.8 292.5 121.2]/Dest[74 0 R/XYZ 56.7 235 0]>> endobj 361 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 121.1 288.5 137.5]/Dest[74 0 R/XYZ 56.7 521.1 0]>> endobj 362 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 137.5 204.9 153.9]/Dest[74 0 R/XYZ 56.7 760.6 0]>> endobj 363 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 153.8 246.6 170.2]/Dest[71 0 R/XYZ 56.7 70.6 0]>> endobj 364 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 170.2 149.9 186.6]/Dest[71 0 R/XYZ 56.7 264.9 0]>> endobj 365 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 186.5 165 202.9]/Dest[68 0 R/XYZ 56.7 627.7 0]>> endobj 366 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 202.9 215.8 219.3]/Dest[62 0 R/XYZ 56.7 531.1 0]>> endobj 367 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 219.2 179.7 235.6]/Dest[59 0 R/XYZ 56.7 122.8 0]>> endobj 368 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 235.6 225.8 252]/Dest[59 0 R/XYZ 56.7 813.4 0]>> endobj 369 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 251.9 163.6 268.3]/Dest[56 0 R/XYZ 56.7 263.5 0]>> endobj 370 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 268.3 197.2 284.7]/Dest[11 0 R/XYZ 56.7 513.2 0]>> endobj 371 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 284.6 325.3 301]/Dest[53 0 R/XYZ 56.7 184.6 0]>> endobj 372 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 301 248.2 317.4]/Dest[53 0 R/XYZ 56.7 652.8 0]>> endobj 373 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 317.3 258.8 333.7]/Dest[53 0 R/XYZ 56.7 813.5 0]>> endobj 374 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 333.7 253.7 350.1]/Dest[50 0 R/XYZ 56.7 517.2 0]>> endobj 375 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 350 234.1 366.4]/Dest[50 0 R/XYZ 56.7 710.6 0]>> endobj 376 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 366.4 228 382.8]/Dest[47 0 R/XYZ 56.7 596 0]>> endobj 377 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 382.7 269.3 399.1]/Dest[44 0 R/XYZ 56.7 465.3 0]>> endobj 378 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 399.1 258.9 415.5]/Dest[41 0 R/XYZ 56.7 465 0]>> endobj 379 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 415.4 242.4 431.8]/Dest[38 0 R/XYZ 56.7 563.2 0]>> endobj 380 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 431.8 244.8 448.2]/Dest[35 0 R/XYZ 56.7 176.8 0]>> endobj 381 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 448.1 175.7 464.5]/Dest[35 0 R/XYZ 56.7 214.2 0]>> endobj 382 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 464.5 260.8 480.9]/Dest[32 0 R/XYZ 56.7 249.7 0]>> endobj 383 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 480.8 312 497.2]/Dest[32 0 R/XYZ 56.7 370.5 0]>> endobj 384 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 497.2 333.5 513.6]/Dest[32 0 R/XYZ 56.7 566 0]>> endobj 385 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 513.5 323.2 529.9]/Dest[29 0 R/XYZ 56.7 85.4 0]>> endobj 386 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 529.9 336.4 546.3]/Dest[29 0 R/XYZ 56.7 481 0]>> endobj 387 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[91.4 546.2 161.9 562.6]/Dest[29 0 R/XYZ 56.7 518.5 0]>> endobj 388 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 562.6 244.4 579]/Dest[29 0 R/XYZ 56.7 743.2 0]>> endobj 389 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 578.9 237 595.3]/Dest[26 0 R/XYZ 56.7 236.3 0]>> endobj 390 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 595.3 236.8 611.7]/Dest[26 0 R/XYZ 56.7 539 0]>> endobj 391 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 611.6 212.8 628]/Dest[26 0 R/XYZ 56.7 570 0]>> endobj 392 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 628 242.5 644.4]/Dest[23 0 R/XYZ 56.7 219.7 0]>> endobj 393 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 644.3 368.5 660.7]/Dest[20 0 R/XYZ 56.7 744.3 0]>> endobj 394 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 660.7 293.6 677.1]/Dest[17 0 R/XYZ 56.7 629.7 0]>> endobj 395 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[162.1 677 225.3 693.4]/Dest[11 0 R/XYZ 56.7 131.9 0]>> endobj 396 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 693.4 204.6 709.8]/Dest[11 0 R/XYZ 56.7 162.9 0]>> endobj 397 0 obj <</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[126.7 709.7 197.2 726.1]/Dest[11 0 R/XYZ 56.7 513.2 0]>> endobj 534 0 obj <</Type/Catalog/Pages 398 0 R /OpenAction[1 0 R /XYZ null null 0] /ViewerPreferences<</DisplayDocTitle true >> /Outlines 446 0 R /Lang(ca-ES) >> endobj 535 0 obj <</Title<FEFF006300620032004200690062002000550073006500720020004D0061006E00750061006C> /Author<FEFF005000650072006500200043006F006E007300740061006E0073> /Keywords<FEFF006300620032006200690062002C00200063006C006900700062006F006100720064002C0020006200690062007400650078002C0020007200650066006500720065006E006300650020006D0061006E0061006700650072002C0020006200690062006C0069006F006700720061007000680079002C0020006C0061007400650078002C002000500044004600200069006E0064006500780069006E0067002C002000500044004600200073006500610072006300680069006E0067> /Producer<FEFF004C0069006200720065004F0066006600690063006500200036002E0030> /CreationDate(D:20180907163710+02'00')>> endobj xref 0 536 0000000000 65535 f 0000295384 00000 n 0000000019 00000 n 0000000487 00000 n 0000000507 00000 n 0000295556 00000 n 0000054142 00000 n 0000055832 00000 n 0000296083 00000 n 0000055853 00000 n 0000057110 00000 n 0000296434 00000 n 0000057132 00000 n 0000060004 00000 n 0000296659 00000 n 0000060026 00000 n 0000064125 00000 n 0000296924 00000 n 0000064147 00000 n 0000067479 00000 n 0000297237 00000 n 0000067501 00000 n 0000071050 00000 n 0000297502 00000 n 0000071072 00000 n 0000074225 00000 n 0000297767 00000 n 0000074247 00000 n 0000077465 00000 n 0000298096 00000 n 0000077487 00000 n 0000079836 00000 n 0000298305 00000 n 0000079858 00000 n 0000081968 00000 n 0000298514 00000 n 0000081990 00000 n 0000084163 00000 n 0000298723 00000 n 0000084185 00000 n 0000087686 00000 n 0000298948 00000 n 0000087708 00000 n 0000091907 00000 n 0000299221 00000 n 0000091929 00000 n 0000095774 00000 n 0000299446 00000 n 0000095796 00000 n 0000099673 00000 n 0000299679 00000 n 0000099695 00000 n 0000103117 00000 n 0000299853 00000 n 0000103139 00000 n 0000106678 00000 n 0000300046 00000 n 0000106700 00000 n 0000110603 00000 n 0000300255 00000 n 0000110625 00000 n 0000114771 00000 n 0000300472 00000 n 0000114793 00000 n 0000117955 00000 n 0000300681 00000 n 0000117977 00000 n 0000121073 00000 n 0000300855 00000 n 0000121095 00000 n 0000124359 00000 n 0000301029 00000 n 0000124381 00000 n 0000127383 00000 n 0000301278 00000 n 0000127405 00000 n 0000130208 00000 n 0000301511 00000 n 0000130230 00000 n 0000133549 00000 n 0000301712 00000 n 0000133571 00000 n 0000135356 00000 n 0000301905 00000 n 0000135378 00000 n 0000136725 00000 n 0000302079 00000 n 0000136747 00000 n 0000138533 00000 n 0000302253 00000 n 0000138555 00000 n 0000141819 00000 n 0000302446 00000 n 0000141841 00000 n 0000144792 00000 n 0000302620 00000 n 0000144814 00000 n 0000148160 00000 n 0000302837 00000 n 0000148182 00000 n 0000151693 00000 n 0000303086 00000 n 0000151716 00000 n 0000155502 00000 n 0000303297 00000 n 0000155525 00000 n 0000159599 00000 n 0000303492 00000 n 0000159622 00000 n 0000163437 00000 n 0000303668 00000 n 0000163460 00000 n 0000165998 00000 n 0000303895 00000 n 0000166021 00000 n 0000168700 00000 n 0000304071 00000 n 0000168723 00000 n 0000171584 00000 n 0000304298 00000 n 0000171607 00000 n 0000174556 00000 n 0000304501 00000 n 0000174579 00000 n 0000178182 00000 n 0000304677 00000 n 0000178205 00000 n 0000181672 00000 n 0000304853 00000 n 0000181695 00000 n 0000185156 00000 n 0000305088 00000 n 0000185179 00000 n 0000188906 00000 n 0000305315 00000 n 0000188929 00000 n 0000192515 00000 n 0000305510 00000 n 0000192538 00000 n 0000195936 00000 n 0000305705 00000 n 0000195959 00000 n 0000199409 00000 n 0000305881 00000 n 0000199432 00000 n 0000203279 00000 n 0000306057 00000 n 0000203302 00000 n 0000206989 00000 n 0000306252 00000 n 0000207012 00000 n 0000211062 00000 n 0000306428 00000 n 0000211085 00000 n 0000214643 00000 n 0000306604 00000 n 0000214666 00000 n 0000217059 00000 n 0000324920 00000 n 0000325040 00000 n 0000325159 00000 n 0000325279 00000 n 0000325398 00000 n 0000325517 00000 n 0000325636 00000 n 0000325795 00000 n 0000325916 00000 n 0000326037 00000 n 0000326159 00000 n 0000326281 00000 n 0000326402 00000 n 0000326523 00000 n 0000326642 00000 n 0000326763 00000 n 0000326929 00000 n 0000327048 00000 n 0000327197 00000 n 0000327348 00000 n 0000327467 00000 n 0000327586 00000 n 0000327704 00000 n 0000327821 00000 n 0000327941 00000 n 0000328060 00000 n 0000328178 00000 n 0000328297 00000 n 0000328418 00000 n 0000328539 00000 n 0000328658 00000 n 0000328819 00000 n 0000328936 00000 n 0000329054 00000 n 0000329172 00000 n 0000329291 00000 n 0000329406 00000 n 0000329527 00000 n 0000329686 00000 n 0000329830 00000 n 0000329946 00000 n 0000330067 00000 n 0000330186 00000 n 0000330308 00000 n 0000330513 00000 n 0000330631 00000 n 0000330750 00000 n 0000330869 00000 n 0000330983 00000 n 0000331100 00000 n 0000331216 00000 n 0000331335 00000 n 0000331453 00000 n 0000331573 00000 n 0000331691 00000 n 0000331809 00000 n 0000331930 00000 n 0000332051 00000 n 0000332170 00000 n 0000332292 00000 n 0000332414 00000 n 0000332536 00000 n 0000332720 00000 n 0000332841 00000 n 0000332962 00000 n 0000333083 00000 n 0000333205 00000 n 0000333324 00000 n 0000333444 00000 n 0000333596 00000 n 0000333715 00000 n 0000333834 00000 n 0000333984 00000 n 0000334106 00000 n 0000334225 00000 n 0000334389 00000 n 0000334507 00000 n 0000334623 00000 n 0000334742 00000 n 0000334860 00000 n 0000334979 00000 n 0000335097 00000 n 0000335213 00000 n 0000335332 00000 n 0000335451 00000 n 0000335570 00000 n 0000335692 00000 n 0000335812 00000 n 0000335958 00000 n 0000336077 00000 n 0000336199 00000 n 0000336320 00000 n 0000336440 00000 n 0000336559 00000 n 0000336710 00000 n 0000336829 00000 n 0000336949 00000 n 0000337071 00000 n 0000337191 00000 n 0000337312 00000 n 0000337469 00000 n 0000337613 00000 n 0000337734 00000 n 0000337887 00000 n 0000338035 00000 n 0000338157 00000 n 0000338313 00000 n 0000338479 00000 n 0000338619 00000 n 0000338767 00000 n 0000338925 00000 n 0000339087 00000 n 0000339207 00000 n 0000339328 00000 n 0000339474 00000 n 0000339635 00000 n 0000339781 00000 n 0000339927 00000 n 0000340045 00000 n 0000340165 00000 n 0000340285 00000 n 0000340403 00000 n 0000340521 00000 n 0000340639 00000 n 0000340759 00000 n 0000340879 00000 n 0000340997 00000 n 0000341114 00000 n 0000341231 00000 n 0000341350 00000 n 0000341470 00000 n 0000341589 00000 n 0000341710 00000 n 0000341831 00000 n 0000341982 00000 n 0000342102 00000 n 0000342221 00000 n 0000342341 00000 n 0000342460 00000 n 0000342580 00000 n 0000342701 00000 n 0000342819 00000 n 0000342939 00000 n 0000343058 00000 n 0000343179 00000 n 0000343300 00000 n 0000343419 00000 n 0000343537 00000 n 0000343657 00000 n 0000343778 00000 n 0000343898 00000 n 0000344018 00000 n 0000344139 00000 n 0000344258 00000 n 0000344378 00000 n 0000344499 00000 n 0000344620 00000 n 0000344739 00000 n 0000344859 00000 n 0000344980 00000 n 0000345097 00000 n 0000345215 00000 n 0000345334 00000 n 0000345450 00000 n 0000345569 00000 n 0000345690 00000 n 0000345811 00000 n 0000345931 00000 n 0000346051 00000 n 0000346170 00000 n 0000346292 00000 n 0000346413 00000 n 0000346532 00000 n 0000346650 00000 n 0000346769 00000 n 0000346891 00000 n 0000347056 00000 n 0000347176 00000 n 0000347297 00000 n 0000347419 00000 n 0000347541 00000 n 0000347663 00000 n 0000347785 00000 n 0000347907 00000 n 0000348029 00000 n 0000348150 00000 n 0000348271 00000 n 0000348391 00000 n 0000348508 00000 n 0000348627 00000 n 0000348748 00000 n 0000348867 00000 n 0000348986 00000 n 0000349107 00000 n 0000349228 00000 n 0000349347 00000 n 0000349468 00000 n 0000349589 00000 n 0000349709 00000 n 0000349826 00000 n 0000349943 00000 n 0000350060 00000 n 0000350179 00000 n 0000350298 00000 n 0000350419 00000 n 0000350540 00000 n 0000350660 00000 n 0000350780 00000 n 0000350898 00000 n 0000351019 00000 n 0000351139 00000 n 0000351257 00000 n 0000351378 00000 n 0000351499 00000 n 0000351617 00000 n 0000351736 00000 n 0000351857 00000 n 0000351978 00000 n 0000352097 00000 n 0000352214 00000 n 0000352335 00000 n 0000352454 00000 n 0000352575 00000 n 0000352696 00000 n 0000352816 00000 n 0000352937 00000 n 0000353056 00000 n 0000353175 00000 n 0000353295 00000 n 0000353414 00000 n 0000353534 00000 n 0000353653 00000 n 0000353772 00000 n 0000353891 00000 n 0000354008 00000 n 0000354127 00000 n 0000354248 00000 n 0000354369 00000 n 0000354488 00000 n 0000354609 00000 n 0000324443 00000 n 0000217082 00000 n 0000218942 00000 n 0000218965 00000 n 0000219159 00000 n 0000219451 00000 n 0000219615 00000 n 0000229665 00000 n 0000229688 00000 n 0000229888 00000 n 0000230512 00000 n 0000230980 00000 n 0000235653 00000 n 0000235676 00000 n 0000235885 00000 n 0000236283 00000 n 0000236545 00000 n 0000243206 00000 n 0000243229 00000 n 0000243434 00000 n 0000243913 00000 n 0000244251 00000 n 0000255290 00000 n 0000255314 00000 n 0000255509 00000 n 0000256221 00000 n 0000256760 00000 n 0000262492 00000 n 0000262515 00000 n 0000262721 00000 n 0000263112 00000 n 0000263369 00000 n 0000267441 00000 n 0000267464 00000 n 0000267668 00000 n 0000268030 00000 n 0000268258 00000 n 0000287263 00000 n 0000287287 00000 n 0000287483 00000 n 0000288179 00000 n 0000288724 00000 n 0000294344 00000 n 0000294367 00000 n 0000294568 00000 n 0000294929 00000 n 0000295159 00000 n 0000295283 00000 n 0000306780 00000 n 0000306840 00000 n 0000306973 00000 n 0000307149 00000 n 0000307295 00000 n 0000307486 00000 n 0000307624 00000 n 0000307823 00000 n 0000308057 00000 n 0000308240 00000 n 0000308429 00000 n 0000308573 00000 n 0000308715 00000 n 0000308893 00000 n 0000309084 00000 n 0000309328 00000 n 0000309570 00000 n 0000309819 00000 n 0000310050 00000 n 0000310240 00000 n 0000310435 00000 n 0000310609 00000 n 0000310796 00000 n 0000310993 00000 n 0000311192 00000 n 0000311373 00000 n 0000311556 00000 n 0000311747 00000 n 0000311946 00000 n 0000312132 00000 n 0000312419 00000 n 0000312565 00000 n 0000312687 00000 n 0000312878 00000 n 0000313073 00000 n 0000313214 00000 n 0000313377 00000 n 0000313552 00000 n 0000313740 00000 n 0000313866 00000 n 0000314061 00000 n 0000314241 00000 n 0000314461 00000 n 0000314669 00000 n 0000314805 00000 n 0000315018 00000 n 0000315224 00000 n 0000315459 00000 n 0000315754 00000 n 0000316049 00000 n 0000316247 00000 n 0000316538 00000 n 0000316861 00000 n 0000317007 00000 n 0000317157 00000 n 0000317466 00000 n 0000317632 00000 n 0000317797 00000 n 0000318020 00000 n 0000318170 00000 n 0000318445 00000 n 0000318697 00000 n 0000318917 00000 n 0000319141 00000 n 0000319349 00000 n 0000319552 00000 n 0000319760 00000 n 0000319931 00000 n 0000320133 00000 n 0000320349 00000 n 0000320565 00000 n 0000320781 00000 n 0000320997 00000 n 0000321213 00000 n 0000321429 00000 n 0000321645 00000 n 0000321861 00000 n 0000322075 00000 n 0000322291 00000 n 0000322507 00000 n 0000322727 00000 n 0000322947 00000 n 0000323163 00000 n 0000323378 00000 n 0000323594 00000 n 0000323808 00000 n 0000324024 00000 n 0000324240 00000 n 0000354730 00000 n 0000354893 00000 n trailer <</Size 536/Root 534 0 R /Info 535 0 R /ID [ <17A5510B76C1DA943563F593C2D4DBF3> <17A5510B76C1DA943563F593C2D4DBF3> ] /DocChecksum /366E2593701EF9A7D18D23D3F08881A4 >> startxref 355573 %%EOF ������������������������������������������������������������������������������������������cb2bib-1.9.9/doc/PaxHeaders.4632/cb2bib_user_manual.md����������������������������������������������0000644�0000000�0000000�00000000130�13344506452�017141� x����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������29 mtime=1536331050.59759158 30 atime=1536331050.985588102 29 ctime=1536331050.59759158 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������cb2bib-1.9.9/doc/cb2bib_user_manual.md��������������������������������������������������������������0000644�0001750�0000144�00000410006�13344506452�020540� 0����������������������������������������������������������������������������������������������������ustar�00constans������������������������users���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- author: Pere Constans description: 'cb2Bib: Bibliographic Reference Extracting and Managing Tool' keywords: | cb2bib, clipboard, bibtex, reference manager, bibliography, latex, PDF indexing, PDF searching title: cb2Bib User Manual --- Bibliographic Reference Extracting and Managing Tool \ \ © *2004-2018 Pere Constans. Last updated on 2018-09-07.*\ \ Contents -------- \ [Overview](#overview) [Description](#descrip) [Using cb2Bib](#usage) - [Procedure](#procedure) - [Buttons Functionality](#c2bbuttons) - [Additional Keyboard Functionality](#keyboard) [Advanced Features](#detail) [Requirements](#requirements) - [Compilation](#requirements_comp) - [Deployment](#requirements_run) [Credits and License](#credits) [Installation](#installation) - [Installing on Unix systems (tarball)](#linux-tar) - [Installing on Unix systems (RPM)](#linux-rpm) - [Installing on Debian systems (deb)](#linux-deb) - [Installing on Windows systems](#windows) - [Installing on Mac OS X](#mac) [Configuration](#configuration) - [Configuring Annote](#c2bconf_annote) - [Configuring BibTeX](#c2bconf_bibtex) - [Configuring Clipboard](#c2bconf_clipboard) - [Configuring Documents](#c2bconf_documents) - [Configuring Files](#c2bconf_files) - [Configuring Fonts](#c2bconf_fonts) - [Configuring Network](#c2bconf_network) - [Configuring Shortcuts](#c2bconf_shortcuts) - [Configuring Utilities](#c2bconf_utilities) [Search BibTeX and PDF Document Files](#bibsearch) - [Description](#descrip) - [Notes](#notes) [cb2Bib Command Line](#commandline) [cb2Bib Annote](#c2bannote) - [Annote Syntax](#c2bannote_syntax) [cb2Bib Citer](#c2bciter) [Examples](#examples) [Predefined Formats](#example_patterns) - [BibTeX](#ex_bibtex) - [ISI Reference Format](#ex_isi_format) - [RIS Reference Format](#ex_ris) [Additional Features](#toc-additional-features) [Embedded File Editor](#bibeditor) - [Bookmarks](#bookmarks) - [Update Documents Metadata](#update_metadata) - [Export Selected Entries](#export_entries) - [Right-Click Menu Functionality](#c2beditor_menu) - [Reference List Right-Click Menu Functionality](#references_menu) - [BibTeX Browser Right-Click Menu Functionality](#browser_menu) - [Additional Functionality](#c2beditor_qt) [Predefined Cite and Document ID Placeholders](#idplaceholders) [BiBTeX Entry Types Available as cb2Bib Fields](#entrytype) - [Main Fields](#main-fields) - [Other Fields](#other-fields) [Reading and Writing Bibliographic Metadata](#metadata) - [Reading Metadata](#metadata_read) - [Writing Metadata](#metadata_write) [PDF Reference Import](#pdfimport) - [Introduction](#intro_automatic_extraction) - [Automatic Extraction: Questions and Answers](#faq_automatic_extraction) [Extracting Data from the Clipboard](#clipboard) [Processing of Author Names](#authorproc) [Processing of Journal Names](#journalproc) [Field Recognition Rules](#heuristics) [Regular Expression Editor](#regexpeditor) [Supplementary Notes](#toc-supplementary-notes) \ []{#overview}Overview --------------------- <div class="contents"> <div class="textblock"> cb2Bib is a free, open source, and multiplatform application for rapidly extracting unformatted, or unstandardized bibliographic references from email alerts, journal Web pages, and PDF files. cb2Bib facilitates the capture of single references from unformatted and non standard sources. Output references are written in BibTeX. Article files can be easily linked and renamed by dragging them onto the cb2Bib window. Additionally, it permits editing and browsing BibTeX files, citing references, searching references and the full contents of the referenced documents, inserting bibliographic metadata to documents, and writing short notes that interrelate several references. See [Release Note cb2Bib 1.9.0](#relnotes190). **Current version: cb2Bib 1.9.9**. See [Change Log File](https://www.molspaces.com/cb2bib/doc/changelog/) for a detailed list of changes and acknowledgments, and [Release Notes](#relnotes) for additional notes and information. ### []{#descrip} Description cb2Bib reads the clipboard text contents and process it against a set of predefined patterns. If this automatic detection is successful, cb2Bib formats the clipboard data according to the structured BibTeX reference syntax. Otherwise, if no predefined format pattern is found or if detection proves to be difficult, manual data extraction is greatly simplified by cb2Bib. In most cases, such manual data extraction will provide with a new, personalized pattern to be included within the predefined pattern set for future automatic extractions. Once the bibliographic reference is correctly extracted, it is added to a specified BibTeX database file. Optionally, document files are renamed to a DocumentID filename and moved to a desired directory as a personal article library, and their metadata is updated with the bibliographic reference. See [Reading and Writing Bibliographic Metadata](#metadata) section. cb2Bib facilitates writing short notes related to bibliographic collections. Notes are written using a minimalist markup on a plain text editor, and can latter be converted to HTML. Related references and links become easily accessible on any browser or by the embedded cb2Bib viewer. See [Release Note cb2Bib 1.1.0](#relnotes110). ### []{#usage} Using cb2Bib #### []{#procedure} Procedure - **Select the reference to import from the email or web browser**\ On Unix machines, cb2Bib automatically detects mouse selections and clipboard changes. On Windows machines, copy or Ctrl-C is necessary to activate cb2Bib automatic processing. - **cb2Bib automatic processing**\ Once text is selected cb2Bib initiates the automatic reference extraction. It uses the predefined patterns from file `regexp.txt` to attempt automatic extraction. See [Configuring Files](#c2bconf_files) section for setting the user predefined pattern matching expression file. After a successful detection bibliographic fields appear on the cb2Bib item line edits. Manual editing is possible at this stage. - **cb2Bib manual processing**\ If no predefined format pattern is found or if detection proves to be difficult, a manual data extraction must be performed. Select, either using mouse or Shift+arrow keys, the reference fields from the cb2Bib clipboard area. A popup menu will appear after selection is made. Choose the corresponding bibliographic field. See [BiBTeX Entry Types Available as cb2Bib Fields](#entrytype). If operating with the keyboard, first letter of the field is set as a menu shortcut. Thus, typing 'A' sets selection to 'author', or '+A' to 'add authors'. Selection is postprocessed and added to the cb2Bib item line edit. cb2Bib field tags will show on the cb2Bib clipboard area. Once the manual processing is done, cb2Bib clipboard area will contain the matching pattern. The pattern can be further edited and stored to the `regexp.txt` file using **Insert Regular Expression**, Alt+I. See the [Extracting Data from the Clipboard](#clipboard) and [Regular Expression Editor](#regexpeditor) sections. - **Download reference to cb2Bib**\ cb2Bib has the built-in functionality to interact with publishers "Download reference to Citation Manager" service. Choose BibTeX format, or any other format that you can translate using **External Clipboard Preparsing Command**. See [Additional Keyboard Functionality](#keyboard), **Alt C**. Click "Download" from your browser. When asked "Open with..." select cb2Bib. cb2Bib will be launched if no running instance is found. If already running, it will place the downloaded reference to the clipboard, and it will start processing. Make sure your running instance is aware of clipboard changes. See [Buttons Functionality](#c2bbuttons). For convenience, the shell script `c2bimport`, and the desktop config file `c2bimport.desktop` are also provided. - **Adding documents**\ PDF and other documents can be added to the BibTeX reference by dragging the file icon and dropping it into the cb2Bib's panel. Optionally, document files, are renamed to a DocumentID filename and moved to a desired directory as a personal article library (See [Configuring Documents](#c2bconf_documents) section). Linked to a reference documents correspond to the BibTeX tag `file`. Usual reference manager software will permit to retrieve and visualize these files. Download, copy and/or moving is scheduled and performed once the reference is accepted, e.g., once it is saved by pressing **Save Reference** button. - **Multiple retrieving from PDF files**\ Multiple PDF or convertible to text files can be sequentially processed by dragging a set of files into cb2Bib's PDFImport dialog. By starting the processing button, files are sequentially converted to text and send to cb2Bib clipboard panel for reference extraction. See [PDF Reference Import](#pdfimport) for details. - **Journal-Volume-Page Queries**\ Takes input Journal, Volume, and first page from the corresponding edit lines and attempts to complete the reference. Additionally, queries consider `title`, `DOI`, and an `excerpt`, which is a simplified clipboard panel contents. See [Configuring Network](#c2bconf_network) section, the distribution file `netqinf.txt`, and [Release Note cb2Bib 0.3.5](#relnotes035) for customization and details. - **BibTeX Editor**\ cb2Bib includes a practical text editor suitable for corrections and additions. cb2Bib capabilities are readily available within the editor. E.g., the reference is first sent to cb2Bib by selecting it, and later retrieved from cb2Bib to the editor using 'right click' + 'Paste Current BibTeX'. Interconversions Unicode <-> LaTeX, long <-> abbreviated journal name, and adding/renaming PDF files are easily available. BibTeX Editor is also accessible through a shell command line. See [cb2Bib Command Line](#commandline) and [Embedded File Editor](#bibeditor). #### []{#c2bbuttons} Buttons Functionality - **About**\ About cb2Bib, bookmarks, and online help. - **Configure**\ Configure cb2Bib. See [Configuration](#configuration) section. - **Search references**\ Opens the cb2Bib's search dialog. The search is performed either on the current BibTeX file, or for all BibTeX files on the current directory. Optionally, the search is extended to reference's files. Hits are displayed on an editor window. See [Search BibTeX and PDF Document Files](#bibsearch). See also [Configuring Utilities](#c2bconf_utilities) section to configure the external to text converter. - **PDFImport**\ Launches cb2Bib's PDFImport window. Files dragged into PDFImport window are sequentially translated to text and sent to cb2Bib clipboard panel. cb2Bib automatic and manual capabilities are then easily available to extract and supervise reference extractions. See [PDF Reference Import](#pdfimport). - **Exit**\ Exits cb2Bib. - **Dis/Connect Clipboard**\ Toggles automatic cb2Bib and desktop clipboard connection. While the automatic cb2Bib-clipboard connection permits reducing keystrokes, the disconnected mode is needed in cases where multiple mouse selections or copies are required to complete a reference extraction. See also [Release Note cb2Bib 0.4.1](#relnotes041) and [Release Note cb2Bib 0.2.1](#relnotes021) if you experience problems with this feature. - **Network Reference Query**\ Starts Network Query. It usually takes input Journal, Volume, and first page from the corresponding edit lines and attempts to complete the reference. See [Configuring Network](#c2bconf_network) network section to customize querying. See the distribution file `netqinf.txt` and also [Release Note cb2Bib 0.3.5](#relnotes035) for the details. - **View BibTeX Reference**\ View current reference as will be output to the BibTeX file. Eventual manual changes should be done on the item line edit. - **Save Reference**\ Inserts the current bibliographic reference to the output BibTeX file. This action decides whether or not a reference is accepted. Scheduled actions such as PDF downloading, copying or renaming will be performed at this time. - **Open BibTeX File**\ Opens the current BibTeX output file. Right click within the BibTeX Editor window for its particular functionality. See also [Embedded File Editor](#bibeditor). #### []{#keyboard} Additional Keyboard Functionality Most keyboard shortcuts are customizable. See [Configuring Shortcuts](#c2bconf_shortcuts). In the following, default shortcuts are used to describe functionality. - **Alt A**\ Starts [cb2Bib Annote](#c2bannote). Specify the note's filename in the dialog. A new note is created if the file name does not exist. The cb2Bib Annote is opened as a separate program. Exiting cb2Bib will not exit the note's viewer. On the viewer, pressing key E launches the default text editor. The viewer will track the editor, and will update the note's display each time the editor saves it. The viewer's functionality is disabled if cb2Bib was not compiled and linked against WebKit. See [cb2Bib Command Line](#commandline) to use Annote in command line mode. - **Alt B**\ Edits the Bookmarks and Network Query Info file `netqinf.txt`. - **Alt C**\ Preparses cb2Bib's clipboard through a user specified external script or tool. Preparsing is necessary to catch formatted references that can not be easily extracted using recognition patterns, or that are written in ambiguous formats. Many available scripts or specific user-written tools can be incorporated to cb2Bib through this external preparsing capability. In addition, simple, one-line scripts can be used within PDFImport to provide, for instance, the journal name when missing from the PDF first page. The cb2Bib distribution contains the sample scripts `isi2bib` and `ris2bib` that convert ISI and RIS formatted strings to BibTeX. See [Configuring Clipboard](#c2bconf_clipboard) for details. - **Alt D**\ Deletes temporary BibTeX output file. This permits using cb2Bib output files as temporary media to transfer references to a preferred reference manager and preferred format. **Caution**: This feature is not intended for the users who actually store their references in one or several BibTeX files. Remember to import references prior to delete cb2Bib output file. - **Alt E**\ Edits the regular expression file. It permits an easy access and modification of stored extraction patterns. New patterns are conveniently added to to the regular expression file by using the **RegExp Editor** button functionality. - **Alt F**\ Launches a file dialog for selecting the source file name for the BibTeX entry `file`. Selected files are displayed either, as the actual source filename, or, as the target filename, depending on the file copy/rename/move settings. See [Configuring Documents](#c2bconf_documents). Alternatively to **Alt F**, documents can be easily linked to a reference by dragging the document file and dropping it to the cb2Bib panel. - **Alt I**\ Edits and optionally inserts the current regular expression pattern. See the [Extracting Data from the Clipboard](#clipboard) and [Regular Expression Editor](#regexpeditor) sections. - **Alt J**\ Edits the Journal Abbreviations file. - **Alt O**\ Opens the currently linked document for browsing. Documents can be easily linked to a reference by dragging the document file and dropping it to the cb2Bib panel, or with **Alt F**. Linked documents correspond to the BibTeX tag `file`. - **Alt P**\ Postprocess BibTeX output file. It launches a user specified script or program to postprocess the current BibTeX file. The cb2Bib distribution contains two sample scripts. One, `bib2pdf` is a shell script for running `latex` and `bibtex`; this permits to check the BibTeX file for possible errors, and to easily produce a suitable output for printing. The other one, `bib2end.bat` is a batch script for running `bib2xml` and `xml2end`, which converts references into Endnote format. See [Configuring BibTeX](#c2bconf_bibtex) for details. - **Alt R**\ Restarts cb2Bib automatic engine. Takes input data not from the system clipboard but from the cb2Bib clipboard panel. This permits editting the input stream from poorly translated PDF captions, correcting for author superscripts, or helps in debugging regular expressions. - **Alt W**\ Writes current reference to the source document file. This option is intended for writing and updating bibliographic metadata to document files without needing to use BibTeX files. Only local and writable files are considered. - **Alt X**\ Check Repeated looks for existing references in the BibTeX directory similar to the current one. The search is done for exact cite ID, and for title and author field values, or, if empty, for booktitle and editor,using the [approximate string](https://arxiv.org/abs/0705.0751) search pattern. See also [Configuring BibTeX](#c2bconf_bibtex). - **F4**\ Toggles between Main and Other Fields reference edit tabs. - **Esc**\ Quits cb2Bib popup menu. The cb2Bib menu pops up each time a selection in made in the clipboard panel. This saves keystrokes in a normal bibliographic extraction. Press **Esc** or **Right Click** mouse button if you need to gain access to the editor cut/copy/paste functionality instead. ### []{#detail} Advanced Features Advanced features, and processing and extraction details are described in the following sections: - [Automatic Extraction: Questions and Answers](#faq_automatic_extraction) - [Extracting Data from the Clipboard](#clipboard) - [Processing of Author Names](#authorproc) - [Processing of Journal Names](#journalproc) - [Field Recognition Rules](#heuristics) - [Regular Expression Editor](#regexpeditor) Configuration information is described in the following sections: - [Configuration](#configuration) - [Predefined Cite and Document ID Placeholders](#idplaceholders) Utilities and modules are described in the following sections: - [Search BibTeX and PDF Document Files](#bibsearch) - [Embedded File Editor](#bibeditor) - [PDF Reference Import](#pdfimport) - [Reading and Writing Bibliographic Metadata](#metadata) - [cb2Bib Command Line](#commandline) - [cb2Bib Annote](#c2bannote) - [cb2Bib Citer](#c2bciter) ### []{#requirements} Requirements #### []{#requirements_comp} Compilation To compile cb2Bib, the following libraries must be present and accessible: - Qt 5.3.0 or higher from [Qt Project](https://www.qt.io/download) for cb2Bib prereleases 1.9. - Qt 4.4.0 or higher from [Qt Project](https://www.qt.io/download). On a Linux platform with Qt preinstalled, make sure that the `devel` packages and Qt tools are also present. - QtWebKit or QtWebEngine library (optional) to compile cb2Bib Annote viewer. No special action/flag is needed during compilation. - LZO 2.03 library and headers available at [http://www.oberhumer.com/opensource/lzo](http://www.oberhumer.com/opensource/lzo/). If LZO2 were unavailable on a particular platform, type `configure –disable-lzo` or, equivalently, `qmake -config disable_lzo` before compiling. - X11 header files if compiling on Unix platforms. Concretely, headers `X11/Xlib.h` and `X11/Xatom.h` are needed. - The header files `fcntl.h` and `unistd.h` from `glibc-devel` package are also required. Otherwise compilation will fail with `` referencelist.cpp:227: `::close' undeclared ``. #### []{#requirements_run} Deployment Although not needed for running cb2Bib, the following tools extend cb2Bib applicability: - `MathJax`, available at [https://www.mathjax.org](https://www.mathjax.org/), for displaying mathematical notation. Simply, download and unzip it in a desired directory. See [Configuring Annote](#c2bconf_annote). - `ExifTool`, version 7.31 or later, available at <https://sno.phy.queensu.ca/~phil/exiftool/>. - `pdftotext`, found packaged as `xpdf`, and downloadable from <http://www.xpdfreader.com/download.html>. - The `bib2xml` and `xml2end` [BibUtils](http://bibutils.refbase.org/), to test the postprocess script `bib2end.bat` on Windows platforms. - ... and LaTeX and friends, to check for BibTeX file correctness and to get a nice printing through the shell script `bib2pdf`. ### []{#credits} Credits and License The cb2Bib icons are taken from the *Oxygen*, *Crystal SVG*, and *Noia* icon sets, to be found at the [KDE Desktop Environment](https://www.kde.org/). Several people has contributed with suggestions, bug reports or patches. For a detailed list of acknowledgments see the [Change Log File](https://www.molspaces.com/cb2bib/doc/changelog/). The cb2Bib program is licensed under the terms of the [GNU General Public License](http://www.gnu.org/licenses/gpl.html) version 3. > ***Last updated on 2018-09-07.***\ > *First released version 0.1.0 on 2004-06-29.*\ > © *2004-2018 Pere Constans*\ </div> </div> []{#installation}Installation ----------------------------- <div class="contents"> <div class="textblock"> ### []{#linux-tar} Installing on Unix systems (tarball) The following is the general, platform independent install procedure. - Unpack the distribution file:\ \ `tar -xzvf cb2bib-1.9.9.tar.gz`\ \ - Move to cb2Bib directory:\ \ `cd cb2bib-1.9.9`\ \ - Type the following commands:\ \ `./configure --prefix /usr/local`\ `make`\ `make install`\ \ Installation is now complete. **Note:** If the `./configure` step would fail while having the appropriate Qt libraries and utilities installed, try ` qmake` instead of `./configure`, and configure manually the required file directories once cb2Bib first starts. To uninstall type `make uninstall` from within the cb2Bib compilation directory. ### []{#linux-rpm} Installing on Unix systems (RPM) To build an appropriate RPM for your platform, type, e. g., `rpm –rebuild –target=i686 cb2bib-1.9.9-1.src.rpm` or a distro-dependend, equivalent command (perhaps `rpmbuild`). This will compile cb2Bib and build the required binary RPM (often placed at the `/usr/src/packages/RPMS/i686` directory). See also [Release Note cb2Bib 0.6.90](#relnotes0690) regarding `QTDIR` environment if having compilation problems. Once the binary RPM is build, installation is as follows. To install your RPM binary, simply type `rpm -Uhv cb2bib-1.9.9-1.i686.rpm` To uninstall, type `rpm -e cb2bib-1.9.9` ### []{#linux-deb} Installing on Debian systems (deb) To install cb2Bib, first make sure that you are actually using the packages for the proper Debian suite, as configured in the `/etc/apt/sources.list` file. Next, issue the following commands as root, `apt-get update` `apt-get install cb2bib` to resolve all required dependencies and install the program. ### []{#windows} Installing on Windows systems On Windows platforms installation is simple. Just launch the Windows Installer `cb2bib-1.9.9-install.exe` and follow the installation wizard indications. To uninstall, click the 'Unistall' icon. ### []{#mac} Installing on Mac OS X To install cb2Bib from its sources, make sure you have the following build tools on your system: - Qt toolkit version 5.3.0 or later (qt-mac-\*.dmg):\ \ <https://www.qt.io/download/>\ \ - XCode from Apple:\ \ <https://developer.apple.com/xcode/>\ \ - bin-utils via darwinports\ \ \ - **Buiding with make/Makefile:**\ \ Type on a shell window:\ \ `tar -xzvf cb2bib-1.9.9.tar.gz`\ `cd cb2bib-1.9.9`\ `./configure --prefix /Applications/cb2Bib --qmakepath /Developer/Tools/Qt/qmake`\ `make`\ `make install`\ \ - **Buiding with make/Makefile (no configure and no lzo):**\ \ Type on a shell window if `configure` fails:\ \ `tar -xzvf cb2bib-1.9.9.tar.gz`\ `cd cb2bib-1.9.9`\ `/Developer/Tools/Qt/qmake -config disable_lzo`\ `make`\ \ - **Buiding with XCode:**\ \ Type on a shell window:\ \ `tar -xzvf cb2bib-1.9.9.tar.gz`\ `cd cb2bib-1.9.9`\ `/Developer/Tools/Qt/qmake cb2bib.pro -spec macx-xcode`\ \ Open `cb2bib.xcodeproj` with XCode and build from there.\ \ **Note:** It has been reported that qmake does not make usable XCode projects from subdir qmake projects. It is possible to produce one-single `.pro` file for the whole project, by typing `qmake -project -r` to create a base `.pro` file. An example and detailed instructions can be found at `./qmake/cb2bib-osx.pro`. See also [Configuration](#configuration). </div> </div> []{#configuration}Configuration ------------------------------- <div class="contents"> <div class="textblock"> ### []{#c2bconf_annote} Configuring Annote - **Annote Cascading Style Sheet (CSS)**\ This file contains the style sheet to personalize the appearance of the HTML notes generated by the cb2Bib. The cb2Bib distribution includes the `tex2html.css` file as a CSS template. - **MathJax Header File**\ The mathematical notation in the text notes is displayed by [MathJax](https://www.mathjax.org/), the successor of the [jsMath](http://www.math.union.edu/~dpvc/jsMath/) Java Script library. Its location and configuration must be specified inside the HTML files in order to be known by the browser. Check and eventually edit the distribution file `tex2html_local_mathjax_header.html`. Should web script be preferred set script source to `https://cdn.mathjax.org/mathjax/latest/MathJax.js`. - **Include CSS in HTML**\ Styles for the notes will be included, if checked, into the HTML file. In this way, all the information, text and layout, is contained in one single file. - **Use relative links**\ If checked, linked local files will be set relative to the current HTML document. - **Annote Viewer Fonts**\ Selects default and monospaced fonts for the Annote viewer. Changes in the fonts might need restarting the viewer unless using some of the latest QtWebKit libraries. The viewer is disabled if cb2Bib was not compiled and linked against WebKit. Note also that fonts specified in the CSS prevail over this selection. ### []{#c2bconf_bibtex} Configuring BibTeX - **CiteID Pattern**\ Specifies the pattern for formatting cite's ID. Predefined placeholders are available as a context menu, by right-clicking this edit line. Placeholders will be substituted by the actual reference field values. See [Predefined Cite and Document ID Placeholders](#idplaceholders) for descriptions. - **Author and Editor Name Format**\ Sets Authors and Editor names in abbreviated or full form, if the latter is available. - **Journal Name Format**\ Sets output journal names in abbreviated or full form. Note that this feature only works if journal names are found in the `Journal Abbreviation List file`. See [Processing of Journal Names](#journalproc). - **Number Separator**\ Sets number separator, e.g., ' - ' or ' – '. Spaces count. It applies to `pages`, multiple `volume`, `number`, and `year` cases. - **Convert entry strings to LaTeX**\ If checked, cb2Bib converts special characters to LaTeX commands. Most BibTeX import filters do not process LaTeX escaped characters. Therefore, keeping this box unchecked can be appropriate when using cb2Bib as a temporary media to transfer references to non BibTeX reference managers. - **Set 'title' in double braces**\ If checked, it writes extra braces in title. This will keep capitalization as is, when processed by BibTeX. - **Postprocess 'month'**\ If checked, cb2Bib elaborates the 'month' string on a BibTeX fashion. E.g., 'April 1' becomes '"1\~" \# apr'. No processing is done if the input string is not written in English. - **Try Heuristic Guess if recognition fails**\ If checked, when automatic recognition fails, cb2Bib tries to catch some of the fields of the reference through an heuristic set of rules. See [Field Recognition Rules](#heuristics). - **Check Repeated On Save**\ If checked, cb2Bib looks for existing references in the BibTeX directory similar to the one being saved. The search is based on exact cite ID match, or on reference contents, by considering title and author field values, or, if empty, booktitle and editor, and using the [approximate string](https://arxiv.org/abs/0705.0751) search pattern. If similar references are found, the current reference is not saved, and the similar ones are displayed. Pressing the **save button one second time will proceed to actually saving the current reference**. Note that this feature is not applied in command line mode, when using `cb2bib –txt2bib` or `cb2bib –doc2bib`. See also [Additional Keyboard Functionality](#keyboard). - **External BibTeX Postprocessing**\ Use this box to select a BibTeX postprocessing external tool. The name of the executable, the command arguments and the output file extension are required fields. Arguments, any number, are passed to the executable. For the sake of generality, it is required to specify the `%finput` and `%foutput` placeholders. The first one is later substituted by the current BibTeX filename. The second one is substituted by the current filename with the specified output extension. **Caution:** Be careful if using the same file extension for input and output, e.g., using `bib` because you want to use a beautifier or a sorting script. cb2Bib has no control on external disk modifications. Therefore, if the script failed, the input data would possibly be lost. See also [Additional Keyboard Functionality](#keyboard). ### []{#c2bconf_clipboard} Configuring Clipboard - **Replace/Remove from Input Stream**\ If checked, input stream is preprocessed by performing a customizable set of string substitutions/removals. This option is mainly intended to remove image HTML `alt` tags. Although not visible, `alt` tags reach the clipboard when selecting and copying text. Author lists with email icons may contain `alt` strings that would interfere with the author names processing. In addition, this option is also appropriate to help translating special characters to Unicode and LaTeX. Use it carefully, as to avoid unwanted or unsuspected substitutions. See also [Extracting Data from the Clipboard](#clipboard). - **External Clipboard Preparsing Command**\ Preparses input stream through an external, user-defined tool. Use the box bellow to specify its name and path. cb2Bib executes the command `tool_name tmp_inputfile tmp_outputfile`. You might consider a wrapper shell script to fullfill this particular syntax requirement. Two examples, `isi2bib` and `ris2bib` are provided. To test them, make sure the [BibUtils Package](http://bibutils.refbase.org/) is available on your machine. Otherwise, modify these scripts according to your needs. See also [Additional Keyboard Functionality](#keyboard), [Extracting Data from the Clipboard](#clipboard), and the examples [ISI Reference Format](#ex_isi_format) and [RIS Reference Format](#ex_ris). - **Perform always, as part of an automatic extraction**\ Performs preparsing each time the recognition engine is invoked. **Caution:** cb2Bib, when not in disconnected mode, starts the recognition engine each time the clipboard changes. Thus, it might send arbitrary data to the external parsing tool. The tool might not be prepared to handle **'any data'** and might fall into a sort of **'infinite loop'**. cb2Bib kills the external tool after a reasonable waiting. But, if the tool is called through a wrapper script, killing the script will not end the tool itself. Therefore, **check this box only when needed**. If you write your own preparser, design it as to write no data to output file whenever it can not process an input properly. When the preparser produces no data, cb2Bib sends instead the input stream to the recognition engine. In this way, preparsing and normal cb2Bib functioning will work harmoniously. - **Do not show log**\ If unchecked, the external process messages, and the input and output streams are shown in a log window. Showing output logs is useful for debugging purposes. - **Add document metadata to Input Stream**\ When checked, if the document linked to a reference contains relevant metadata, then metadata will be added to the current clipboard contents. The metadata is included at the time of adding the document to the current reference, e. g., when dropping a file into the cb2Bib panel. If the document has BibTeX information, cb2Bib will automatically set the corresponding fields. If it has not, but relevant bibliographic information is found, this data is only added to the clipboard panel. To insert it in the edit lines, activate the Heuristic Guess (Alt+G). The option **Prepend** or **Append** to the clipboard contents is provided for conveniently writing regular expressions considering metadata contents. File documents are linked to the references by the BibTeX tag 'file'. See also [Reading and Writing Bibliographic Metadata](#metadata). ### []{#c2bconf_documents} Configuring Documents - **Rename and Copy/Move document files to Directory**\ If selected, each file 'drag and dropped' onto the cb2Bib main window is renamed to `DocumentID.pdf` (or DocumentID.ps, DocumentID.dvi, etc.) and moved to the storage directory. If unselected, the file URL is written to the `file` BibTeX keyword, without any renaming or moving of the file. The actual copy/move action is scheduled and performed once the reference is accepted, e.g., once it is saved. - **Copy or Move document files**\ Choose whether copy or move Network Files dropped onto the cb2Bib main window. See also **Use External Network Client**. - **Set directory relative to the BibTeX File Directory**\ If checked, the document file is copied/moved to the current BibTeX file directory. If the Documents Directory box contains a **relative directory** it will be added to the file name. For example, if it contains `articles`, files will be copied to `/current_bibtex_path/articles/`. An absolute path in the Documents Directory box will be ignored in this context. Note that the file dialog returns here relative file addresses. Consequently, only the necessary portion of the full name, instead of the fullpath filename, is written to the BibTeX entry. File retrieving from within the cb2Bib browser will be relative to the BibTeX file absolute location.\ Use this option if you plan to store in a same or a related directory the BibTeX and document files. This option is appropriate for storing bibliographic collections in removal devices. Likewise, when cb2Bib is launched in USB mode, by means of the command line switch `–conf`, the alternate option is not available. See [Release Note cb2Bib 0.8.4](#relnotes084) and [Export Selected Entries](#export_entries). - **Insert BibTeX metadata to document files**\ If checked, cb2Bib will write bibliographic metadata to the linked document, once the current reference is accepted and saved. See also [Reading and Writing Bibliographic Metadata](#metadata). - **DocumentID Pattern**\ Specifies the pattern for formatting the document's filenames. Predefined placeholders are available as a context menu, by right-clicking this edit line. Placeholders will be substituted by the actual reference field values. See [Predefined Cite and Document ID Placeholders](#idplaceholders) for descriptions. - **ExifTool Metadata writer**\ cb2Bib uses [ExifTool](https://sno.phy.queensu.ca/~phil/exiftool/) for writing bibliographic metadata to the attached documents. Select here the ExifTool path name. On Windows, remember renaming `exiftool(-k).exe` to `exiftool.exe` for command line use. See also [Writing Metadata](#metadata_write). ### []{#c2bconf_files} Configuring Files - **Journal Abbreviation List File**\ This file contains a list of journal names equivalences: a capital-letter acronym, standard abbreviated form, and full name of the journal. If an input journal name is recognized, cb2Bib will use the standard abbreviated form for the `journal` bibkey. If your usual journal were not within the distributed, default `abbreviations.txt`, you could edit this file, or point to a personalized abbreviation file. **Note:** Changes in the abbreviation file only take place after reestarting cb2Bib. See [Processing of Journal Names](#journalproc). - **Regular Expression List File**\ The cb2Bib distribution includes the file `regexps.txt` with a few set of rules for reference extraction. This includes most of the scientific literature. Extracting from email alerts or publisher abstract pages is a *volatile* task. Information does not follow a standardized structure. Extraction pattern may then change as often as the web design needs to. Besides, such extraction from the clipboard is system dependent, in a way that produces different formatting of the text copies on different systems. You can use your personalized `regexps.txt` file, for testing, debugging -regular expressions are reloaded each time the automatic recognition engine executes-, and fullfiling your particular extraction needs. - **Bookmarks and Network Query Info File**\ The cb2Bib distribution includes the file `netqinf.txt` that contains bookmarks data, and server related information for bibliographic querying. Note that cb2Bib treats bibliographic queries as generalized net bookmarks. This allows accessing almost any online bibliographic resource. Check this file for implementations details and customization. - **Browser Cascading Style Sheet (CSS)**\ This file contains the style sheet to configure the appearance of the bibliographic references when viewed in browser mode. The cb2Bib distribution includes the `references.css` and `references-dark.css` file as a CSS examples. - **Part Of Speech (POS) Lexicon**\ This box must contain the address to the cb2Bib distribution file `lexicon.pos`. This file contains a set of patterns and related POS information required to Index Documents, i. e., to extract keywords from documents for the c2bCiter module. - **Search In Files Cache Directory**\ Directory containing internal data for Search In Files functionality. If an existing directory is selected cb2Bib will write all internal data on it. If otherwise, cache data will be written on the same directory from where BibTeX are searched. It might be, therefore, convenient to group all this files in a separate directory that does not need to be backup, and that can easily be deleted whenever desired. ### []{#c2bconf_fonts} Configuring Fonts - **Font Selector**\ Selects the main window and editor font family and size. - **Context Colors**\ Doubleclick on context color items to select syntax highlighter font color. Besides syntax highlighting, and to ease manual bibliographic extractions, cb2Bib has the following coloring convention. 'cb2Bib unrelevant text' colors non-word, non-digit, and cb2Bib's internal tags. 'cb2Bib relevant text' refers to the reference's year. 'cb2Bib highly relevant' attempts to guess text sectioning, highlighting 'abstract', 'introduction', and 'keywords'. ### []{#c2bconf_network} Configuring Network - **Use External Network Client**\ cb2Bib manages local and network files in an equivalent manner. Network file retrieving, however, requires sometimes password and/or cookies administration. The KDE desktop incorporates `kfmclient` utility. A command `kfmclient (copy|move|exec) source [destination]` permits copying or moving files, with `kfmclient` taking care of advanced browsing preferences. By checking this box, cb2Bib will use the specified file manger client. - **Use Proxy**\ If checked, cb2Bib will access the network through a proxy host. Set the Host name, the Port, and the proxy Type. A login dialog will appear if the proxy requires authentication. Login data is not stored, it must be entered at each session. - **Perform Network Queries after automatic reference extractions**\ Network queries can be used to complete a partial reference extraction. For instance, provided a reference 'J. Name, 25, 103' and an appropriate pattern to extract it, cb2Bib will attempt to complete the reference automatically. No query is performed if automatic reference extraction was tagged as BibTeX. - **Download document if available**\ If checked, cb2Bib downloads document files to the directory specified in **Rename and Copy/Move document files to Directory**. See also the file `netqinf.txt` for details. Download is scheduled and performed once the reference is accepted, e.g., once it is saved. Note that when document file is local, e.g., when PDFImport or switch `–doc2bib` is used, no document is downloaded. - **Keep Query temporary files (Debug Only)**\ cb2Bib may use up to three temporary files to perform a network query. If this box is checked, the temporary files are not deleted. This facilitates the testing and customization of the information file `netqinf.txt`. ### []{#c2bconf_shortcuts} Configuring Shortcuts - Customizes most key sequences for actions shortcuts. Concretely, cb2Bib specific actions are configurable, but not standard actions such as 'Open', 'Exit', 'Copy', or 'Paste', which are already predefined to the standard, specific key sequences for each platform. Shortcuts are customizable for the cb2Bib main panel, editor, and reference list actions. Single-key shortcuts, i.e., for manual reference extraction and shortcuts in c2bCiter, are non-configurable, since they they closely map non-translatable BibTeX keywords. ### []{#c2bconf_utilities} Configuring Utilities - **To plain text converter**\ Selects the external `some_format_to_text` tool that cb2Bib uses to convert document files prior to reference extraction and searching. cb2Bib executes the line command `converter [options] inputfile tmp_output.txt`, where `[options]` are user defined arguments. As a default, cb2Bib launches `pdf2cb`, a modified PDF to text utility found in the XPDF package. Modifications are available at xpdf/ directory in the cb2Bib sources. Default arguments are `-q -f 1 -l 1` to extract only the first, title page when used within PDFImport, and `-q`, to convert the complete document when used within Search in Files. Appropriate for PDFImport could also be a document metadata extractor. Often metadata contains structured information regarding document authors, title, and source. A simple shell script wrapper could be the following `any2text_search`: ``` {.fragment} #!/bin/csh # Convert documents to text according to filename extension # any2text_search input_fn.ext output_fn.txt set ext = $1:e if ( $ext == 'djvu' ) then /usr/bin/djvutxt "$1" "$2" if ($status) exit 1 else if ( $ext == 'chm' ) then (/usr/local/bin/archmage -c text "$1" "$2") >& /dev/null if ($status) exit 1 else # If using pdf2cb /path/to/pdf2cb -q "$1" "$2" # If using pdftotex # /usr/bin/pdftotext -enc UTF-8 "$1" "$2" if ($status) exit 1 endif ``` </div> </div> []{#bibsearch}Search BibTeX and PDF Document Files -------------------------------------------------- <div class="contents"> <div class="textblock"> ### []{#descrip} Description {#description} - **Search pattern**\ Patterns and composite patterns can be either [approximate strings](https://arxiv.org/abs/0705.0751), strings, regular expressions, or wildcard filters. Patterns admit Unicode characters. The scope of each pattern can be the reference as a whole or be focused on a particular reference field. The fields `year`, `file`, and `journal` are treated specifically. The field `year` has the qualifiers `Exact`, `Newer`, and `Older`. The field `file` can optionally refer to either the filename or the contents of such a file. Finally, for `journal`, the input pattern is duplicated to the, if available, journal fullname, and they two are checked against the `journal` actual field contents and, if available, its expanded contents. For example, typing 'ijqc' retrieves all references with `journal` being 'Int. J. Quantum Chem.'. Or, typing 'chemistry' retrieves any of 'J. Math. Chem.', 'J. Phys. Chem.', etc. This expansion is not performed when the pattern scope is set to `all`. - **Search scope**\ By default, searches are performed on the current BibTeX output file. If **Scan all BibTeX files** is checked the search will extend to all BibTeX files, extension .bib, present in the current directory. It might be therefore convenient to group all reference files in one common directory, or have them linked to that directory. When **Scan linked documents** is checked, and one or more pattern scope is `all` or `file`, the contents of the file in `file` is converted to text and scanned for that given pattern. See [Configuring Utilities](#c2bconf_utilities) section to configure the external to text converter. - **Search modifier**\ cb2Bib converts TeX encoded characters to Unicode when parsing the references. This permits, for instance, for the pattern 'Møller' to retrieve either 'Møller' or 'M{\\o}ller', without regard to how the BibTeX reference is written. By checking **Simplify source**, the reference and the converted PDF files are simplified to plain Ascii. Thus, the pattern '\\bMoller\\b' will hit any of 'Møller', 'M{\\o}ller', or 'Moller'. Additionally, all non-word characters are removed, preserving only the Ascii, word structure of the source. Note that source simplification is only performed for the patterns whose scope is `all` or `file` contents, and that and so far, cb2Bib has only a subset of such conversions. Implemented TeX to Unicode conversions can be easily checked by entering a reference. The Unicode to Ascii letter-only conversion, on the other hand, is the one that cb2Bib also uses to write the reference IDs and, hence, the renaming of dropped files. cb2Bib can also understand minor sub and superscript formatting. For instance, the pattern 'H2O' will retrieve 'H~2~O' from a BibTeX string `H$_{2}$O`. ### []{#notes} Notes - cb2Bib uses an internal cache to speed up the search of linked files. By default data is stored as `current_file.bib.c2b`. It might be more convenient, however, to setup a temporary directory out of the user data backup directories. See **Search In Files Cache Directory** in [Configuring Files](#c2bconf_files). When a linked file is processed for the first time, cb2Bib does several string manipulations, such as removing end of line hyphenations. This process is time consuming for very large files. - The **approximate string** search is described in reference <https://arxiv.org/abs/0705.0751>. It reduces the chance of missing a hit due to transcription and decoding errors in the document files. Approximate string is also a form of serendipitous information retrieval. </div> </div> []{#commandline}cb2Bib Command Line ----------------------------------- <div class="contents"> <div class="textblock"> The complete listing of command line uses follows. ``` {style="font-size: xx-small;"} Usage: cb2bib cb2bib [action] [filename1 [filename2 ... ]] [--conf [filename.conf]] Actions: --configure [filename.conf] Edit configuration --bibedit [filename1.bib [filename2.bib ... ]] Edit/browse BibTeX files --citer [filename1.bib [filename2.bib ... ]] Start cb2Bib citer --import tmp_reference_filename Import reference, usually from ad hoc websites --doc2bib fn1.doc [fn2.doc ... ] reference.bib Extract reference from document file --txt2bib fn1.txt [fn2.txt ... ] reference.bib Extract reference from text file --index [bibdirname] Extract keywords from document files --html-annote filename.tex Convert annote file to HTML --view-annote filename.tex Convert and visualize annote file --view-annote filename.tex.html Visualize annote file Switches: --conf [filename.conf] Use configuration file --sloppy Accept guesses in automatic reference extraction Examples: cb2bib Start cb2Bib extraction panel cb2bib --import tmp_reference_filename Import reference cb2bib --bibedit filename.bib Edit BibTeX filename.bib cb2bib --conf Start cb2Bib in USB mode cb2bib --doc2bib *.pdf references.bib Extract references from PDF title pages Notes: -Use switch --conf to particularize specific settings for specific actions. -The file cb2bib.conf must be readable and writable. If it does not exist, cb2Bib will create one based on predefined defaults. -If starting cb2Bib from a removable media, use the command 'cb2bib --conf' without configuration filename. Settings will be read from and written to /cb2bib/full/path/cb2bib.conf, being therefore independent of the mounting address that the host computer will provide. -To import references from a browser select when asked c2bimport, which expands to 'cb2bib --import %f'. The browser will provide the temporary reference filename. -A number of factors influence the reliability of automatic extractions. Consider writing customized regular expressions and network queries, and use metadata when available. Important: -The commands --doc2bib and --txt2bib do not append the references to the references.bib. They create a new file, or silently overwrite it if already exists. ``` - **Note:** On Windows use `c2bconsole` instead of `cb2bib`. See [Release Note cb2Bib 1.3.0](#relnotes130). - **Note:** If using reference extraction command, see [Automatic Extraction: Questions and Answers](#faq_automatic_extraction). </div> </div> []{#c2bannote}cb2Bib Annote --------------------------- <div class="contents"> <div class="textblock"> The cb2Bib Annote module is named after the BibTeX key `annote`. Annote is not for a 'one reference annotation' though. Instead, Annote is for short notes that interrelate several references. Annote takes a plain text note, with minimal or no markup, inserts the bibliographic citations, and converts it to a HTML page with links to the referenced documents. From within cb2Bib, to write a note, type `Alt+A`, enter a filename, either new or existing, and once in Annote, type `E` to start the editor. Each time you save the document the viewer will be updated. For help on Annote's syntax type `F1`. If cb2Bib was compiled without Annote's Viewer, typing `Alt+A` will start the editor and HTML viewing will be committed to the default web browser. From the command line, typing ``` {.fragment} cb2bib --html-annote annote.tex ``` will produce the HTML file `annote.tex.html`. See also [Configuring Annote](#c2bconf_annote) and [cb2Bib Command Line](#commandline). ### []{#c2bannote_syntax} Annote Syntax The resulting HTML file `annote.tex.html` can be seen at [cb2Bib Annote](https://www.molspaces.com/cb2bib/doc/c2bannote/annote.tex.html). ``` {style="font-size: xx-small;"} % annote.tex %\c2b_bibtex_directory{/home/constans/Documents/BibReferences} %\c2b_makeindex \newcommand{\RR}{\mathbb{R}} \newcommand{\mnial}[3]{(#1 - #2)^#3} \title{cb2Bib Annote} \begin{abstract} This documents describes cb2Bib Annote. It succinctly lists Annote's minimalists syntax. \end{abstract} \section{cb2Bib Directives} \subsection{Make Index} \begin{verbatim} %\c2b_makeindex \end{verbatim} \subsection{BibTeX Directory} \begin{verbatim} %\c2b_bibtex_directory{/home/constans/Documents/BibReferences} \end{verbatim} \section{Simple Markup} \subsection{Uniform Resource Locator} \begin{verbatim} - URL: https://www.molspaces.com/cb2bib/doc/c2bannote/ - Named URL: https://www.molspaces.com/cb2bib/doc/c2bannote/[cb2Bib Annote] - On a blank window: _https://www.molspaces.com/cb2bib/doc/c2bannote/[cb2Bib Annote] \end{verbatim} \subsubsection{Example} - URL: https://www.molspaces.com/cb2bib/doc/c2bannote/ - Named URL: https://www.molspaces.com/cb2bib/doc/c2bannote/[cb2Bib Annote] - On a blank window: _https://www.molspaces.com/cb2bib/doc/c2bannote/[cb2Bib Annote] \subsection{Bibliographic Citations} \begin{verbatim} \cite {key} \end{verbatim} \subsubsection{Example} Citing cb2Bib \cite{cb2bib_key}. \section{LaTeX Markup} \subsection{Document Sections} \begin{verbatim} \title{Title string} \end{verbatim} \begin{verbatim} \section{Section string} \end{verbatim} \begin{verbatim} \subsection{Section string} \end{verbatim} \begin{verbatim} \subsubsection{Section string} \end{verbatim} \subsection{Document Environments} \begin{verbatim} % env = abstract, equation, itemize, and verbatim \begin{env} \end{env} \end{verbatim} - Note. equation rendering requires MathJax \cite{jsmath_key, mathjax_key} \subsubsection{Examples} \begin{verbatim} \begin{itemize} \item Description 1 \item Description 2 \end{itemize} \end{verbatim} \begin{itemize} \item Description 1 \item Description 2 \end{itemize} \begin{verbatim} \begin{equation} \int_D ({\nabla\cdot} F)dV=\int_{\partial D} F\cdot ndS \end{equation} \end{verbatim} \begin{equation} \int_D ({\nabla\cdot} F)dV=\int_{\partial D} F\cdot ndS \end{equation} \subsection{Mathematical Macros} \begin{verbatim} \newcommand{name}[number of arguments]{definition} \end{verbatim} \subsubsection{Example} \begin{verbatim} \newcommand{\RR}{\mathbb{R}} \newcommand{\mnial}[3]{(#1 - #2)^#3} ... a subset of $\RR$ values ... ... the monomial is $\mnial{a}{x}{2} > 0$ for $x \ne 0$, and $\mnial{a}{x}{3} \mnial{c}{x}{3}$ for $x < a \land x < c$ or $x > a \land x > c$ ... \end{verbatim} ... a subset of $\RR$ values ... ... the monomial is $\mnial{a}{x}{2} > 0$ for $x \ne 0$, and $\mnial{a}{x}{3} \mnial{c}{x}{3}$ for $x < a \land x < c$ or $x > a \land x > c$ ... \section{MathJax Example} \begin{verbatim} % Example from https://www.mathjax.org/#demo When $a \ne 0$, there are two solutions to \(ax^2 + bx + c = 0\) and they are $$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$ \end{verbatim} When $a \ne 0$, there are two solutions to \(ax^2 + bx + c = 0\) and they are $$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$ ``` </div> </div> []{#c2bciter}cb2Bib Citer ------------------------- <div class="contents"> <div class="textblock"> The cb2Bib Citer is a keyboard based module for inserting citation IDs into a working document. Conveniently, the command `c2bciter`, or its expansion `cb2bib –citer`, can be assigned to a global, desktop wide shortcut key. This will provide an easy access to the citer from within any text editor. Pressing the shortcut turns on and off the citer panel. Once appropriate references are selected, pressing key C sets the citations either to the clipboard or to a LyX pipe, closes the citer panel, and returns keyboard focus to the editor. By default, `c2bciter` loads all references from the current directory, specified in the cb2Bib main panel. On the desktop tray, the cb2Bib icon indicates that the citer is running. Its context menu offers the possibility to load other files or directories, or to toggle full screen mode. Search, filtering, navigation, and citation are keyword based. Pressing keys A, I, J, T, and Y sorts the references by author, included date, journal, title, and year, respectively. Key F initiates filtering, and Esc leaves filtering mode. References are selected when pressing enter. Key S toggles the current selection display, and Del clears the selection. The combination Shift + letter navigates through the rows starting by the letter. Advanced filtering capabilities are available if documents are indexed. Document indexing, or term or key sentence extraction, is performed by clicking the tray icon menu action Index Documents. Once indexing is done, after pressing Refresh, pressing K displays the document extracted keywords, and pressing G, the collection glossary of terms. On a keyword, pressing R display all documents indexed by the keyword. On a document, pressing R display related documents. Relatedness is set from keyword based similarity measures. Key sequence Alt+C toggles clipboard connection on and off. When connection is on, the clipboard contents is set, each time it changes, as the filter string. This provides a fast way to retrieve a given reference while browsing elsewhere. ``` {.fragment} Usage: cb2bib --citer [dirname1 [dirname2 ... ]] cb2bib --citer [filename1.bib [filename2.bib ... ]] ``` ``` {.fragment} Display Keys A author - journal - year - title I included date - title J journal - year - author T title Y year - author - journal - title ``` ``` {.fragment} Filter Keys D Delete last filter F Enter pattern filter mode G Toggle glossary of terms view K Toggle document keywords view R Display related documents Left Move to previous filtered view Right Move to next filtered view ``` ``` {.fragment} Action Keys C Cite selected citations and close citer window Del Unselect all citations E Edit current citation's source Enter Select current citation Esc Exit filter mode or close citer window O Open current citation's file S Display the set of selected citations V Display document excerpts in keywords view Shift+ Keyboard search naviagation U Open current citation's URL W Write notes using Annote ``` ``` {.fragment} Tray Icon Actions F1 Citer help Ctrl+O Open BibTeX directory Alt+O Open BibTeX files F5 Refresh Ctrl+F Search in files Alt+L Set Lyx pipe F2 Toggle cb2Bib Alt+C Toggle clipboard Alt+F Toggle full screen Index documents ``` See also [Release Note cb2Bib 1.3.0](#relnotes130), [Release Note cb2Bib 1.4.0](#relnotes140), [Release Note cb2Bib 1.4.7](#relnotes147), [cb2Bib Command Line](#commandline) and [cb2Bib Annote](#c2bannote). </div> </div> []{#examples}Examples --------------------- <div class="contents"> <div class="textblock"> This set of examples considers only simple cases of predifined bibliographic formats, which at present are most frequent on the Web. For complex cases that would require *ad hoc* regular expressions, see the cb2Bib's [Advanced Features](#detail). To test the examples, launch cb2Bib, and select the text within the boxes (type also Ctrl-C if running cb2Bib on a Windows machine). cb2Bib will extract the selected reference. ### []{#example_patterns} Predefined Formats - [BibTeX](#ex_bibtex) - [ISI Reference Format](#ex_isi_format) - [RIS Reference Format](#ex_ris) #### []{#ex_bibtex} BibTeX ``` {.fragment} @article{Efron, title = {{The Estimation of Prediction Error}}, author = {Bradley Efron}, journal = {Journal of the American Statistical Association}, pages = {619 - 632}, volume = {99}, number = {467}, year = {2004}, } ``` Nowadays most authors and publishers websites export references to BibTeX format. This is the safest way to retrieve a reference with cb2Bib. Select from `@article` to the last `}`. cb2Bib imports the reference. Once imported, cb2Bib permits adding the abstract, keywords or renaming and relocating the document file. #### []{#ex_isi_format} ISI Reference Format ``` {.fragment} PT Journal AU Kohn, W AU Becke, AD AU Parr, RG TI Density functional theory of electronic structure SO JOURNAL OF PHYSICAL CHEMISTRY BP 12974 EP 12980 PG 7 JI J. Phys. Chem. PY 1996 PD AUG 1 VL 100 IS 31 J9 J PHYS CHEM ER ``` Example provided for testing `isi2bib` external preparsing script. See [Configuring Clipboard](#c2bconf_clipboard) for the setup details. #### []{#ex_ris} RIS Reference Format ``` {.fragment} TY - JOUR AU - A. J. Coleman PY - 1963 TI - Structure of fermion density matrices JO - Rev. Mod. Phys. SP - 668 VL - 35 ER - ``` Example provided for testing `ris2bib` external preparsing script. See [Configuring Clipboard](#c2bconf_clipboard) for the setup details. </div> </div> []{#toc-additional-features}Additional Features ----------------------------------------------- ### []{#bibeditor}Embedded File Editor <div class="contents"> <div class="textblock"> cb2Bib contains a practical editor suitable to manipulate the files related to a cb2Bib session. Abbreviations, bookmarks, regular expressions, and BibTeX are readily available. On BibTeX mode, the editor contains a Reference List to ease file navigation, and to extend the editor functionality. The BibTeX editor can optionally be turned to a reference browser. #### []{#bookmarks} Bookmarks Bookmarks pointing to local or network files are available at the editor menu bar. They provide a fast access to external resources. Concretely, they are suitable for retrieving working documents, writing notes, or for accessing internet databases. The editor bookmark functionality had been introduced in the cb2Bib version 0.9.3. Currently, bookmarks are set manually in the `netqinf.txt` file, see [Configuring Files](#c2bconf_files). Each bookmark is an entry line with the form ``` {.fragment} editorbookmark=Description|Target file name|Shortcut|Icon file name ``` having four fields, description, target file name, shortcut, and icon file name, separated with three (required) vertical bars |. ``` {.fragment} # Bookmark Examples: # - A URL: editorbookmark=URL Description|https://www.molspaces.com/cb2bib/doc/bibeditor/|| # - A separator, which is a blank line: editorbookmark= # - A TeX document, which will be opened with its default application: editorbookmark=Document Description|/home/doc/chapter1.tex|| ``` #### []{#update_metadata} Update Documents Metadata The Update Documents Metadata functionality is available at the Edit and context menus on the BibTeX editor mode. Documents referred in the BibTeX file tags are scanned for metadata. If the BibTeX reference does not coincide with the bibliographic metadata, the document metadata is updated. In this way, metadata is synchronized with the BibTeX file contents. A log window appears, and possible errors are reported. Reported errors are, non-existence of a document file, read-only files, mismatches between BibTeX references and the actual metadata (often due to HTML tags or other illegal characters in BibTeX), or that the writing to the document format is not implemented. Note that this process will update all documents referenced in the BibTeX file. **While this process is safe, it implies writing into the documents.** Therefore take the usual measures and backup your data. See also [Writing Metadata](#metadata_write). #### []{#export_entries} Export Selected Entries Selected entries can be exported to a separate BibTeX document. Click on `File->Export Entries` menu option, and provide an export filename at the Export Dialog. Optionally, export will copy the document files attached to the citation. The copy of documents is similar to the cb2Bib 'rename/copy/move' general procedure. See [Configuring Documents](#c2bconf_documents), on **Set directory relative to the BibTeX File Directory**, for copying options. Documents will not be overwritten: copying of existing documents is skipped. Possible issues are reported in the new document, as LaTeX comments. #### []{#c2beditor_menu} Right-Click Menu Functionality Default Key Action ------------- ---------------------------------------- Ctrl+F Find in text Toggle word wrapping Selection to LaTeX Selection to Unicode Journals to full name Journals to alternate full name Journals to abbreviated name Journals to alternate abbreviated name Update documents metadata Shift+Ins Paste current BibTeX Alt+P Save and postprocess BibTeX file #### []{#references_menu} Reference List Right-Click Menu Functionality Default Key Action ------------- -------------------------- Alt+C Cite selected entries Open document file Browse by DOI Web search by Author Web search by Title Web search settings Clear entry selection Refresh list and browser #### []{#browser_menu} BibTeX Browser Right-Click Menu Functionality Default Key Action ------------- -------------------------------- Alt+C Cite selected entries Local search for selected text Web search for selected text Web search settings Clear entry selection Refresh list and browser #### []{#c2beditor_qt} Additional Functionality ----------------- ---------------------------------------------------------- Backspace Deletes the character to the left of the cursor Delete Deletes the character to the right of the cursor Ctrl+A Selects all text Ctrl+C Copy the selected text to the clipboard Ctrl+Insert Copy the selected text to the clipboard Ctrl+K Deletes to the end of the line Ctrl+V Pastes the clipboard text into text edit Shift+Insert Pastes the clipboard text into text edit Ctrl+X Deletes the selected text and copies it to the clipboard Shift+Delete Deletes the selected text and copies it to the clipboard Ctrl+Z Undoes the last operation Ctrl+Y Redoes the last operation LeftArrow Moves the cursor one character to the left Ctrl+LeftArrow Moves the cursor one word to the left RightArrow Moves the cursor one character to the right Ctrl+RightArrow Moves the cursor one word to the right UpArrow Moves the cursor one line up Ctrl+UpArrow Moves the cursor one word up DownArrow Moves the cursor one line down Ctrl+Down Arrow Moves the cursor one word down PageUp Moves the cursor one page up PageDown Moves the cursor one page down Home Moves the cursor to the beginning of the line Ctrl+Home Moves the cursor to the beginning of the text End Moves the cursor to the end of the line Ctrl+End Moves the cursor to the end of the text Alt+Wheel Scrolls the page horizontally Ctrl+Wheel Zooms the text ----------------- ---------------------------------------------------------- </div> </div> ### []{#idplaceholders}Predefined Cite and Document ID Placeholders <div class="contents"> <div class="textblock"> - `<<author_all_abbreviated>>` Takes first three letters of the last word of all authors's last name in cite, and converts to lowercase. - `<<author_all_initials>>` Takes capitalized initials of all authors in cite. - `<<author_first>>` Takes first author last name/s. - `<<citeid>>` This placeholder is meant to be used **alone, and only for document IDs**. It takes the pattern defined for the cite ID. If the cite ID is modified manually, the document ID is synchronized automatically. - `<<journal_initials>>` Takes capitalized initials of journal name. - `<<pages_first>>` First page. - `<<ppages_first>>` First page, written as, e. g., 'p125'. - `<<title>>` Title. To truncate titles exceeding a maximum length `l` use `<<title_l>>`, where `l` stands for an integer value. - `<<title_underscored>>` Title with blanks set to underscores. To truncate title to `l` characters use `<<title_underscored_l>>`. - `<<volume>>` Volume number. - `<<year_abbreviated>>` Last two digits from year. - `<<year_full>>` All digits from year. **Note:** If `author` is empty, `editor` will be considered instead. On conference proceedings or monographs this situation is usual. Similarly, if `title` is empty, `booktitle` is considered. **Note:** Only one placeholder of a given field, e. g. `<<author_first>>` or `<<author_all_initials>>`, should be used to compose the ID patterns. cb2Bib only performs one substitution per field placeholder. **Note:** cb2Bib performs a series of string manipulations, such as stripping diacritics and ligatures, aimed to provide ID values suitable for BibTeX keys and platform independent filenames. Currently only ASCII characters are considered. </div> </div> ### []{#entrytype}BiBTeX Entry Types Available as cb2Bib Fields <div class="contents"> <div class="textblock"> cb2Bib includes nearly all standard and extended BibTeX fields. The complete list is as follows. The field descriptions are taken from [The BibTeX Format](http://www.fb10.uni-bremen.de/anglistik/langpro/bibliographies/jacobsen-bibtex.html) written by Dana Jacobsen. #### []{#main-fields}Main Fields `abstract` An abstract of the work. `author` The name(s) of the author(s), in the format described in the LaTeX book. `file` Usually, the PDF filename of the work. `journal` A journal name. Abbreviations are provided for many journals. `keywords` Key words used for searching or possibly for annotation. `pages` One or more page numbers or range of numbers, such as `42--111` or `7,41,73--97` or `43+` (the \``+`' in this last example indicates pages following that don't form a simple range). To make it easier to maintain Scribe-compatible databases, the standard styles convert a single dash (as in `7-33`) to the double dash used in TeX to denote number ranges (as in `7--33`). `title` The work's title, typed as explained in the LaTeX book. `volume` The volume of a journal or multi-volume book. `number` The number of a journal, magazine, technical report, or of a work in a series. An issue of a journal or magazine is usually identified by its volume and number; the organization that issues a technical report usually gives it a number; and sometimes books are given numbers in a named series. `year` The year of publication or, for an unpublished work, the year it was written. Generally it should consist of four numerals, such as `1984`, although the standard styles can handle any `year` whose last four nonpunctuation characters are numerals, such as `\hbox{(about 1984)}`. #### []{#other-fields}Other Fields `address` Usually the address of the `publisher` or other type of institution. For major publishing houses, van Leunen recommends omitting the information entirely. For small publishers, on the other hand, you can help the reader by giving the complete address. `annote` An annotation. It is not used by the standard bibliography styles, but may be used by others that produce an annotated bibliography. `booktitle` Title of a book, part of which is being cited. See the LaTeX book for how to type titles. For book entries, use the `title` field instead. `chapter` A chapter (or section or whatever) number. `doi` The Digital Object Identifier is a unique string created to identify a piece of intellectual property in an online environment. `edition` The edition of a book---for example, \`\`Second''. This should be an ordinal, and should have the first letter capitalized, as shown here; the standard styles convert to lower case when necessary. `editor` Name(s) of editor(s), typed as indicated in the LaTeX book. If there is also an `author` field, then the `editor` field gives the editor of the book or collection in which the reference appears. `eprint` Electronic document file. `institution` The sponsoring institution of a technical report. `ISBN` The International Standard Book Number. `ISSN` The International Standard Serial Number. Used to identify a journal. `month` The month in which the work was published or, for an unpublished work, in which it was written. You should use the standard three-letter abbreviation, as described in Appendix B.1.3 of the LaTeX book. `note` Any additional information that can help the reader. The first word should be capitalized. `organization` The organization that sponsors a conference or that publishes a `manual`. `publisher` The publisher's name. `school` The name of the school where a thesis was written. `series` The name of a series or set of books. When citing an entire book, the the `title` field gives its title and an optional `series` field gives the name of a series or multi-volume set in which the book is published. `URL` The WWW Universal Resource Locator that points to the item being referenced. This often is used for technical reports to point to the ftp site where the postscript source of the report is located. </div> </div> ### []{#metadata}Reading and Writing Bibliographic Metadata <div class="contents"> <div class="textblock"> #### []{#metadata_read} Reading Metadata Metadata in scientific documents is, unfortunately, rarely appreciated and not widely used. When it comes to bibliographic metadata, the situation is even quite deceiving: there is no accepted format specification, and the reliability of publishers' metadata, if any at all, is questionable in many cases. cb2Bib reads all XMP (a specific XML standard devised for metadata storage) packets found in the document. It then parses the XML strings looking for nodes and attributes with key names meaningful to bibliographic references. If a given bibliographic field is found in multiple packets, cb2Bib will take the last one, which most often, and according to the PDF specs, is the most updated one. The fields `file`, which would be the document itself, and `pages`, which is usually the actual number of pages, are skipped. The metadata is then summarized in cb2Bib clipboard panel as, for instance ``` {.fragment} [Bibliographic Metadata <title>arXiv:0705.0751v1 [cs.IR] 5 May 2007 /Bibliographic Metadata] ``` This data, whenever the user considers it to be correct, can be easily imported by the build-in 'Heuristic Guess' capability. On the other hand, if keys are found with the prefix `bibtex`, cb2Bib will assume the document does contain bibliographic metadata, and it will only consider the keys having this prefix. Assuming therefore that metadata is bibliographic, cb2Bib will automatically import the reference. This way, if using PDFImport, BibTeX-aware documents will be processed as successfully recognized, without requiring any user supplied regular expression. See also [Release Note cb2Bib 1.0.0](#relnotes100), [Configuring Clipboard](#c2bconf_clipboard), and [PDF Reference Import](#pdfimport). #### []{#metadata_write} Writing Metadata Once an extracted reference is saved and there is a document attached to it, cb2Bib will optionally insert the bibliographic metadata into the document itself. cb2Bib writes an XMP packet as, for instance ``` {.fragment} P. Constans arXiv 0705.0751 Approximate textual retrieval article 2007 ``` which is similar to [JabRef](http://www.jabref.org/) but differs on that cb2Bib strictly sticks to BibTeX and avoids (perhaps unnecessary) syntax specialization in author strings. The BibTeX fields `file` and `id` are skip from writing. The former for the reason mentioned above, and the latter because it is easily generated by specialized BibTeX software according to each user preferences. LaTeX escaped characters for non Ascii letters are converted to UTF-8, as XMP already specifies this codec. The actual writing of the packet into the document is performed by ExifTool, an excellent Perl program written by Phil Harvey. See . ExifTool supports several document formats for writing. The most relevant here are Postscript and PDF. For PDF documents, metadata is written as an incremental update of the document. This exactly preserves the binary structure of the document, and changes can be easily reversed or modified if so desired. Whenever ExifTool is unable to insert metadata, e.g., because the document format is not supported or it has structural errors, cb2Bib will issue an information message, and the document will remain untouched. See also [Configuring Documents](#c2bconf_documents) and [Update Documents Metadata](#update_metadata). ### []{#pdfimport}PDF Reference Import
#### []{#intro_automatic_extraction} Introduction Articles in PDF or other formats that can be converted to plain text can be processed and indexed by cb2Bib. Files can be selected using the Select Files button, or dragging them from the desktop or the file manager to the PDFImport dialog panel. Files are converted to plain text by using any external translation tool or script. This tool, and optionally its parameters, are set in the cb2Bib configure dialog. See the [Configuring Utilities](#c2bconf_utilities) section for details. Once the file is converted, the text, and optionally, the preparsed metadata, is sent to cb2Bib for reference recognition. This is the usual, two step process. First, text is optionally preprocessed, using a simple set of rules and/or any external script.or tool. See [Configuring Clipboard](#c2bconf_clipboard). Second, text is processed for reference extraction. cb2Bib so far uses two methods. One considers the text as a full pattern, which is checked against the user's set of regular expressions. The better designed are these rules, the best and most reliable will be the extraction. The second method, used when no regular expression matches the text, considers instead a set of predefined subpatterns. See [Field Recognition Rules](#heuristics). At this point users can interact and supervise their references, right before saving them. Allowing user intervention is and has been a design goal in cb2Bib. Thus, at this point, cb2Bib helps users to check their references. Poorly translated characters, accented letters, 'forgotten' words, or some minor formatting in the titles might be worth considering. See [Glyph & Cog's Text Extraction](http://www.glyphandcog.com/textext.html) for a description on the intricacies of PDF to text conversions. In addition, if too few fields were extracted, one might perform a network query. Say, only the DOI was catch, then there are chances that such a query will fill the remaining fields. The references are saved from the cb2Bib main panel. Once Save is pressed, and depending on the configuration, see [Configuring Documents](#c2bconf_documents), the document file will be either renamed, copied, moved or simply linked onto the `file` field of the reference. If **Insert BibTeX metadata to document files** is checked, the current reference will also be inserted into the document itself. When several files are going to be indexed, the sequence can be as follows: - **Process next after saving**\ Once files are load and Process is pressed, the PDFImport dialog can be minimized (but not closed) for convenience. All required operations to completely fill the desired fields (e.g. dynamic bookmarks, open DOI, etc, which might be required if the data in document is not complete) are at this point accessible from the main panel. The link in the `file` field **will be permanent**, without regard to which operations (e.g. clipboard copying) are needed, until the reference is saved. The source file can be open at any time by right clicking the `file` line edit. Once the reference is saved, the next file will be automatically processed. To skip a given document file from saving its reference, press the Process button. - **Unsupervised processing**\ In this operation mode, all files will be sequentially processed, following the chosen steps and rules. **If the processes is successful**, the reference is automatically saved, and the next file is processed. **If it is not**, the file is skipped and no reference is saved. While processing, the clipboard is disabled for safety. Once finished, this box is unchecked, to avoid a possible accidental saving of a void reference. Network queries that require intervention, i.e., whose result is launching a given page, are skipped. The processes follows until all files are processed. However, it will stop to avoid a file being overwritten, as a result of a repeated key. In this case, it will resume after manual renaming and saving. See also [cb2Bib Command Line](#commandline), commands `–txt2bib` and `–doc2bib`. #### []{#faq_automatic_extraction} Automatic Extraction: Questions and Answers - **When does cb2Bib do automatic extractions?**\ cb2Bib is conceived as a lightweight tool to extract references and manage bibliographies in a simple, fast, and accurate way. Accuracy is better achieved in semi-automatic extractions. Such extractions are handy, and allow user intervention and verification. However, in cases where one has accumulated a large number of unindexed documents, automatic processing can be convenient. cb2Bib does automatic extraction when, in PDFImport mode, 'Unsupervised processing' is checked, or, in command line mode, when typing `cb2bib –doc2bib *.pdf tmp_references.bib`, or, on Windows, `c2bconsole.exe` instead of `cb2bib`. - **Are PDFImport and command line modes equivalent?**\ Yes. There are, however, two minor differences. First, PDFImport adds each reference to the current BibTeX file, as this behavior is the normal one in cb2Bib. On the other hand, command line mode will, instead, overwrite `tmp_references.bib` if it exists, as this is the expected behavior for almost all command line tools. Second, as for now, command line mode does not follow the configuration option 'Check Repeated On Save'. - **How do I do automatic extraction?**\ To test and learn about automatic extractions, the cb2Bib distribution includes a set of four PDF files that mimic a paper title page. For these files, distribution also includes a regular expression, in file `regexps.txt`, capable of extracting the reference fields, provided the `pdftotex` flags are set to their default values. Processing these files, should, therefore, be automatic, and four messages stating `Processed as 'PDF Import Example'` should be seen in the logs. Note that extractions are configurable. A reading of [Configuration](#configuration) will provide additional, useful information. - **Why some entries are not saved and files not renamed?**\ Once you move from the fabricated examples to real cases, you will realize that some of the files, while being processed, are not renamed and their corresponding BibTeX data is not written. For each document file, cb2Bib converts its first page to text, and from this text it attempts to extract the bibliographic reference. By design, when extraction fails, cb2Bib does nothing: no file is moved, no BibTeX is written. This way, you know that the remaining files in the origin directory need special, manual attention. **Extractions are seen as failed, unless reliable data is found in the text**. - **What is *reliable data*?**\ Note that computer processing of natural texts, as extracting the bibliographic data from a title page, is nowadays an approximated procedure. cb2Bib tries several strategies: **1)** allow for including user regular expressions very specific to the extraction at hand, **2)** use metadata if available, **3)** guess what is reasonable, and, based on this, make customized queries. Then, cb2Bib considers extracted **data is reliable if i)** data comes from a match to an user supplied regular expression **ii)** document contains BibTeX metadata, or **iii)** a guess is transformed through a query to formatted bibliographic data. As formatted bibliographic data, cb2Bib understands BibTeX, PubMed XML, arXiv XML, and CR JSON data. In addition, it allows external processing if needed. Other data, metadata, guesses, and guesses on query results are considered unreliable data. - **Is metadata reliable data?**\ No. Only author, title, and keywords in standard PDF metadata can be mapped to their corresponding bibliographic fields. Furthermore, publishers most often misuse these three keys, placing, for instance, DOI in title, or setting author to, perhaps, the document typesetter. Only BibTeX XMP metadata is considered reliable, and only documents already processed with cb2Bib or JabRef will have it. If you consider that a set of PDF files does contain reliable data, you may force to accept it using the command line switch `–sloppy` together with `–doc2bib`. - **How successful is automatic extraction?**\ As it follows from the given definition of reliable data, running automatic extractions without adhoc `regexps.txt` and `netqinf.txt` files will certainly give a zero success ratio. In practice, scenario 3) often applies: cb2Bib guesses several fields, and, based on the out-of-the-box `netqinf.txt` file, it obtains from the web either BibTeX, PubMed XML, arXiv XML, or CR JSON data. - **What can I do to increase success ratio?**\ First, set your favorite journals in file `abbreviations.txt`. Besides increasing the chances of journal name recognition, it will provide consistency across your BibTeX database. In general, do not write regular expressions to extract directly from the PDF text. Conversion is often poor. Special characters often break lines, thus breaking your regular expressions too. Write customized queries. For instance, if your PDFs have DOI in title page, set the simple query ``` {.fragment} journal=The Journal of Everything| query=http://dx.doi.org/<> capture_from_query= referenceurl_prefix= referenceurl_sufix= pdfurl_prefix= pdfurl_sufix= action=htm2txt_query ``` then, if it is feasible to extract the reference from the document's web page using a regular expression, include it in file `regexps.txt`. Note that querying in cb2Bib had been designed having in mind minority fields of research, for which, established databases might not be available. If cb2Bib failed to make reasonable guesses, then, you might consider writing very simple regular expressions to extract directly from the PDF text. For instance, obtain title only. Then, the posterior query step can provide the remaining information. Note also, especially for old documents, journal name is often missing from the paper title page. If in need of processing a series of those papers, consider using a simple script, that, in the cb2Bib preprocessing step, adds this missing information. - **Does successful extraction mean accurate extraction?**\ No. An extraction is successful if reliable data, as defined above, is found in the text, in the metadata, or in the text returned by a query. Reference accuracy relies on whether or not user regular expressions are robust, BibTeX metadata is correct, a guess is appropriate, a set of queries can correct a partially incorrect guess, and the text returned by a query is accurate. In general, well designed sets of regular expressions are accurate. Publisher's abstract pages and PubMed are accurate. But, some publishers are still using images for non-ASCII characters, and PubMed algorithms may drop author middle names if a given author has 'too many names'. Expect convenience over accuracy on other sources. - **Can I use cb2Bib to extract comma separated value CSV references?**\ Yes. To automatically import multiple CSV references you will need one regular expression. If you can control CSV export, choose | as separator, since comma might be used, for instance, in titles. The regular expression for ``` {.fragment} AuthName1, AuthName2 | Title | 2010 ``` will simply be ``` {.fragment} author title year ^([^|]*)\|([^|]*)\|([^|]*)$ ``` The reference file `references.csv` can then be split to single-line files typing ``` {.fragment} split -l 1 references.csv slineref ``` and the command ``` {.fragment} cb2bib --txt2bib slineref* references.bib rm -f slineref* ``` will convert `references.csv` to BibTeX file `references.bib`
### []{#clipboard}Extracting Data from the Clipboard
Clipboard contents is processed according to the following rules: - Perform external, user-defined preparsing on input stream. See [Configuring Clipboard](#c2bconf_clipboard). - Perform user-defined substitutions on input stream. See [Configuring Clipboard](#c2bconf_clipboard). - Check if input stream is already a BibTeX entry. If so, process entry. - Check if input stream is, in this order of preference, a PubMed XML, arXiv XML, CR JSON, or Medline entry. If so, process entry. - Preprocess author names: PI JOAN III -> Pi III, J. (care of name prefixes, suffixes, and removal of ambiguities). If otherwise, - Extract DOI\ (DOI, URL and FILE/PDF are preprocessed, performed before the automatic recognition takes place.) - Extract URL - Remove leading and trailing white spaces, TABs and CRs. - "\\r\\n", "\\n" and/or "\\r" replaced by the line indicator tag ``. - Replace "\\t" and ten or more consecutive "\\s" by the tabular tag ``. - Simplify white spaces - Start the automatic recognition engine. If the automatic recognition engine fails, optionally, a heuristic guessing will be performed. See also [Field Recognition Rules](#heuristics) and [Reading and Writing Bibliographic Metadata](#metadata).
### []{#authorproc}Processing of Author Names
cb2Bib automatically processes the author names string. It uses a set of heuristic rules. First, the authors separator is identified. And second, it is decided whether or not author names are in natural or reverse order, or in the 'Abcd, E., F. Ghij, ...' mixed order. Cleanup author string: - Escape BibTeX to Unicode - Remove digits from authors string - Remove any character except `-',;&\.\s\w` - Simplify white spaces - Consider composing prefixes `(da|de|dal|del|der|di|do|du|dos|la|le|van|vande|von)` - Consider composing suffixes `(II|III|IV|Jr)` - Some publishers use superscripts to refer to multiple author affiliations. Text clipboard copying loses superscript formatting. Author strings are clean from 'orphan' lowcase, single letters in a preprocessing step. Everything following the pattern **\[a-z\]** is removed. Fortunately, abbreviated initials are most normally input as uppercase letters, thus permitting a correct superscript clean up.\ *Caution:* Lowcase, single, a to z letters are removed from author's string.\ *Caution:* Supperscripts **will be added to author Last Name** if no separation is provided. Users should care about it and correct these cases. Rules to identify separators: - Contains comma and semicolon -> ';' - Contains pattern `'^Abcd, E.-F.,'` -> ',' - Contains pattern `'^Abcd,'` -> 'and' - Contains comma -> ',' - Contains semicolon -> ';' - Any other -> 'and' Rules to identify ordering: - Contains comma and semicolon -> Reverse - Pattern `'^Abcd,'` -> Reverse - Pattern `'^Abcd EF Ghi'` -> Natural - Pattern `'^Abcd EF'` -> Reverse - Pattern `'^Abcd E.F.'` -> Reverse - Any other pattern -> Natural
### []{#journalproc}Processing of Journal Names
cb2Bib processes journal names according to its editable database, stored at `abbreviations.txt`. This file contains a list of journal names equivalences: a capital-letter acronym, the abbreviated form, and the title of the journal, all three on one single line. The `abbreviations.txt` file has the following structure: ``` {.fragment} JA|J. Abbrev.|Journal of Abbreviations AN|Am. Nat.=Amer. Naturalist|American Naturalist=The American Naturalist ``` The first field, the capital-letter acronym, is a user-defined shorthand to access a journal title by typing it at the extraction panel. The second field is the abbreviated form of the journal. To adapt to multiple abbreviations in use, cb2Bib allows one alternate version of the abbreviation, indicated with an equal sign `=`. In the above example, the ISO 4 abbreviation 'Am. Nat.' is the primary one and 'Amer. Naturalist' is the alternate one. Finally, the third field is the full title of the journal. As for the abbreviations, the full title also admits one alternate form. Abbreviated and full title alternates serve two purposes: journal recognition and citation styling. The former is performed internally by cb2Bib as part of a bibliographic reference extraction, and the latter is accomplished in the embedded BibTeX editor by replacing back and forth abbreviated-full forms, in order to set journals in accordance to the guidelines of a particular publication. Journal names processing is performed whenever a string is recognized as 'journal', and, additionally, when pressing `Intro Key` at the journal edit line. - Retrieves Journal name in **abbreviated form** if found. - If Journal name is not found in the database, returns input Journal name. - Search is case insensitive. - **Warning:** Journal codes can be duplicated. If duplicated, returns input Journal name. - Retrieves Journal name in **full form** if found. - If Journal name is not found in the database, returns input Journal name. - Search is case insensitive. - **Warning:** Journal codes can be duplicated. If duplicated, returns input Journal name. See [Configuring Files](#c2bconf_files), [Configuring BibTeX](#c2bconf_bibtex), and [Right-Click Menu Functionality](#c2beditor_menu).
### []{#heuristics}Field Recognition Rules
- **Abstract** - If `Abstract ` is found. - If `Summary ` is found. - **Author** - Check capitalization patterns. See [A Simple Extraction Procedure for Bibliographical Author Field](https://arxiv.org/abs/0902.0755). - **Keywords** - If `Key\s{0,1}words ` is found. - **Volume** - If `Volume:{0,1}` is found. - If `Vol.{0,1}` is found. - If `\b(\d+)[,:]\s*\d+\W+\d+` is found. - If `\b(\d+)\s*\(\d+\)` is found. - If `\b(\d+)[,:]\s*\d+\b` is found. - **Number** - If `Numbers{0,1}:{0,1}\s*([\d-]+)` is found. - If `No\.{0,1}\s*(\d+)` is found. - If `Issue\:{0,1}\s*(\d+)` is found. - If `\d\s*\((\d+)\)[^\.]` is found. - **Pages** - If `\bPages{0,1}[:\.]{0,1}([\d\s-]+)` is found. - If `\bp{1,2}\.{0,1}\s+(\d+)` is found. - If `\b(\d+)\s*-{1,2}\s*(\d+pp)\b` is found. - If `\b(\d+)\s*-{1,2}\s*(\d+)\b` is found. - **Year** - If `\b(19|20)(\d\d)\b` is found. - **Title** - If `\bTitle:{0,1}` is found. - **ISBN** - If `\bISBN\b(?:-\d+){0,1}:{0,1}(?:-\d+){0,1}\s*(\d+-[\d-]+-\d+)` is found. - If `\bISBN\b(?:-\d+){0,1}:{0,1}(?:-\d+){0,1}\s*(\d+)` is found. - **Journal** - Check cb2Bib internal database.
### []{#regexpeditor}Regular Expression Editor
Once a manual processing is done, cb2Bib clipboard area contains the extraction tags, plus, possibly, some other cb2Bib tags introduced during the preprocessing (see [Extracting Data from the Clipboard](#clipboard)). The **RegExp Editor** will generate a guess regular expression or matching pattern usable for automated extractions. The cb2Bib matching patterns consist of four lines: a brief description, the reference type, an ordered list of captured fields, and the regular expression itself. # cb2Bib 1.9.9 Pattern: American Chemical Society Publications article journal volume pages year title author abstract ^(.+), (\d+) \(.+\), ([\d|\-|\s]+),(\d\d\d\d)\..+(.+) (.+).+Abstract:(.+)$ The Regular Expression Editor provides the basic skeleton and a set of predefined suggestions. The regular expressions follow a Perl-like sintax. There are, however, some slight differences and minor limitations. Information about the basics on the editing and working with Regular Expressions as used by cb2Bib can be found at the Qt document file [Qt Documentation's QRegExp Class](http://doc.qt.io/qt-5.6/QRegExp.html#introduction). **Remember when creating and editing regular expressions:** - Switch the clipboard mode to 'Tagged Clipboard Data', using the clipboard panel context menu. - Extract the bibliographic reference manually. On the clipboard panel will appear some cb2Bib tags that indicate which fields are being extracted. Once done, type Alt+I to enter to the regular expression editor. In the editor, there are the four line edits that define a cb2Bib pattern, one copy of the clipboard panel, and an information panel. The information panel displays possible issues, and, once everything is correct, the actual extracted fields. The clipboard panel highlights the captures for the current regular expression and current input text. - Patterns can be modified at any time by typing Alt+E to edit the regular expression file. Patterns are reloaded each time the automatic pattern recognition is started. This permits editing and testing. - cb2Bib processes sequentially the list of regular expressions as found in the regular expression file. It stops and picks the first match for the current input. **Therefore, the order of the regular expressions is important**. Consequently, to avoid possible clashing among similar patterns, consider sorting them from the most restrictive pattern to the less one. As a rule of thumb, the more captions it has the most restrictive a pattern is. - **The cb2Bib proposed patterns are general, and not necessarily the most appropriate for a particular capture**. E.g. tag `pages` becomes `([\d|\-|\s]+)`, which considers digits, hyphens, and spaces. It must be modified accordingly for reference sources with, e.g., `pages` written as Roman ordinals. - **Avoid whenever possible general patterns `(.+)`**. There is a risk that such a caption could include text intended for a posterior caption. This is why, sometimes, the cb2Bib proposed pattern is not hit by the input stream that originated it. **Use, whenever possible, cb2Bib anchors like `` instead of ``. They prevent `(.+)` captions to overextend**. - To debug a large regular expression it might be useful to break it to the first capturing parenthesis. For instance, the above pattern will be ``` {.fragment} # cb2Bib 1.9.9 Pattern: American Chemical Society Publications article journal ^(.+), ``` - Then, check if anything is captured and if this corresponds to `journal`. - Add on successive steps your set of captions and BibTeX fields.
[]{#toc-supplementary-notes}Supplementary Notes ----------------------------------------------- ### []{#relnotes}Release Notes
#### []{#relnotes190} Release Note cb2Bib 1.9.0 The cb2Bib sources have been ported to Qt5. To highlight this major update in library requirements the version number is set to 1.9.0. Later, once stabilized and new functionality related to Qt5 enhancements are applied, version number will be set to 2. At this point cb2Bib has exactly the same functionality as its preceding version 1.5.0. To build the program, however, only qmake and its related config procedure are available. The cmake scripts have not yet been ported. Qt5 brings important enhancements related to regular expressions and string processing. Some careful updates to the cb2Bib sources are needed to fully benefit from them. They will implemented through the 1.9.x series. We expect by then a performance boost on full text, regular expression based searches. #### []{#relnotes150} Release Note cb2Bib 1.5.0 Included in version 1.5.0 sources there is a patch for XPDF 3.0.4, the default tool to convert PDF documents to plain text. The modified code separates superscripts to avoid words being joined to reference numbers and author names joined to affiliations' glyphs. Interested users will need to download the package, apply the patch, and compile it. Additionally, this version improves converted text postprocessing. This step normalizes character codes, reverts ligatures, restores when possible orphan diacritics and broken words, and undoes text hyphenation. Conversion to text and postprocessing is important for reference extraction, and document indexing and searching. It is therefore recommended to delete cached document-to-text data to benefit from the present improvements. cb2Bib stores cached texts in \*c2b files in an user specified directory. After that, by performing a search or initiating indexing an updated cache will be created. #### []{#relnotes147} Release Note cb2Bib 1.4.7 Approximate and context searches effectively locate our references of interest. As collections grow in size, and low performance devices, netbooks and tablets, start being used, complete document searches become demanding. Besides, it is often not clear what to query for, and then a glossary of terms provides guidance. Often too, interest lies on subsetting documents by being similar to a given one. Version 1.4.7 adds a pragmatic term or keyword extraction from the document contents. Accepted keywords are set as the substrings appearing at least twice in one document, appearing at least in three documents, and conforming to predefined part-of-speech (POS) sequences. Keyword extraction is performed by either clicking on `Index Documents` at the `c2bciter` desktop tray menu, or, by typing `cb2bib –index [bibdirname]` on a shell. During extraction, the `Part Of Speech (POS) Lexicon` distribution file must be available and readable. On termination, indexing files are saved on the `Search In Files Cache Directory`. Simply copying this directory will synchronize keyword indexing to a second computer. After refreshing `c2bciter` module, pressing key G displays the glossary of terms. On a reference, pressing K displays its list of keywords. Pressing R on a keyword lists the references related to that keyword. Pressing R on a reference lists similarly related references. Similarity is assessed based on keyword occurrences. Left and Right keys provide previous and next navigation. Pressing V on either a reference keyword, or a keyword reference, visualizes the keyword excerpts from the reference's document. To close excerpt dialog press Esc or Left keys. See also [cb2Bib Citer](#c2bciter), [Configuring Files](#c2bconf_files), and [cb2Bib Command Line](#commandline). #### []{#relnotes140} Release Note cb2Bib 1.4.0 The `c2bciter` module was introduced in version 1.3.0. Its name, as it was described, states its purpose of being "aimed to ease inserting citation IDs into documents". In fact, it does have such functionality. And, it has also another, equally important one: it provides a very fast way to retrieve a given work from our personal collections. Retrieving is accomplished through pre-sorted views of the references and filtering. Both, views and filtering, scale on the (tens of) thousands references. Usually, we recall a work from its publication year, a few words from its title, or (some of the letters of) one of its authors names. Often, what we remember is when a reference was included into our collection. Therefore, having such a chronological view was desirable. The implementation of this sorted-by-inclusion-date view was not done during the 1.3.x series, but postponed to version 1.4.0; somehow, to indicate that some sort of 'proprietary' BibTeX tag might be required to specify inclusion timestamps. I have been reluctant through the cb2Bib's life span to introduce 'cb2Bib-only' tags in the BibTeX outputs. I believe that there is little gain, and it costs, possibly, breaking interoperability. In the end, the choice was to not write any 'timestamp' tag in references. Instead, `c2bciter` checks for the last modified date of the linked documents to build an approximated chronological view. The advantage is that all, not just 'version 1.4.0 or later', references are sorted. Furthermore, if a reference is later corrected, and the document metadata is updated too, the modification date is reflected in the view. The obvious inconvenience is that no such sorting can be done for references without an attached document. See also [cb2Bib Citer](#c2bciter). #### []{#relnotes130} Release Note cb2Bib 1.3.0 When version 0.2.7 came up, it was mentioned in [Release Note cb2Bib 0.2.7](#relnotes027) that cb2Bib 'doesn't have the means to automatically discern an author name from a department or street name'. I forgot mentioning, that I did not expect cb2Bib would have had such a feature. Since the last [Release Note cb2Bib 1.1.0](#relnotes110), the cb2Bib internals had changed significantly. Some changes, such heuristic recognition for interlaced authors and affiliations, get easily noticed. Other changes, however, do not, and need additional explanation. From version 1.2.3, the switches `–txt2bib` and `–doc2bib` set cb2Bib to work on console mode. The non-exact nature of the involved extractions makes logging necessary. On Windows, graphic or console modes must be decided not at run time, but when the application is built. So far, logging and globing were missing. This release adds the convenience wrapper `c2bconsole`. Typing `c2bconsole –txt2bib i*.txt out.bib`, for instance, will work as it does in the other platforms. Lists of references are now sorted case and diacritic insensitive. For some languages such a choice is not the expected one, and some operating systems offer local-aware collation. Due to usual inconsistencies and inaccuracies in references, this decision was taken to group together 'Density Matrix' with 'Density-matrix', and Møller with Moller, which, in a personal collection, most probably, refer to the same concept and to the same person. Additionally, document to text converted strings are now clean from extraneous, non-textual symbols. Therefore, recreating cache files is recommended. Finally, this release introduces a new module, named `c2bciter`, and aimed to ease inserting citation IDs into documents. The module should ideally stay idle at the system tray, and be recalled as needed by pressing a global, desktop shortcut. This functionality, while desirable, and usual in dictionaries, is platform and desktop dependent. On KDE there are currently known issues when switching among virtual desktops. See also [cb2Bib Citer](#c2bciter), and [cb2Bib Command Line](#commandline). #### []{#relnotes110} Release Note cb2Bib 1.1.0 A frequent request from cb2Bib users has been to expand the command line functionality. So far few progress has been seen in this regard. First, the addition of in-document searches and reading/inserting metadata were priorities. Second, cb2Bib is not the tool to interconvert among bibliographic formats. And third, cb2Bib is designed to involve the user in the search process, in the archiving and validation of the discovered works and references. For the latter reason, and for not knowing a priori how would such a tool be designed, the cb2Bib internals had been interlaced to its graphical interface. At the time of version 0.7.0, when the graphical libraries changed, and a major refactoring was required, the code started moving toward a better modularization and structure. The current release pushes code organization further. As a result, it adds two new command line switches: `–html-annote` and `–view-annote`. The new cb2Bib module is named after the BibTeX key 'annote'. Annote is not for a 'one reference annotation' though. Instead, Annote is for short notes that interrelate several references. Annote takes a plain text note, with minimal or no markup, inserts the bibliographic citations, and converts it to a HTML page with links to the referenced documents. From within cb2Bib, to write your notes, type Alt+A, enter a filename, either new or existing, and once in Annote, type E to launch your default text editor. For help, type F1. Each time you save the document the viewer will be updated. To display mathematical notations, install [jsMath](http://www.math.union.edu/~dpvc/jsMath/) locally. And, remember, code refactoring introduces bugs. See also [cb2Bib Annote](#c2bannote) and [cb2Bib Command Line](#commandline). #### []{#relnotes100} Release Note cb2Bib 1.0.0 Approximately four years ago the first cb2Bib was released. It included the possibility of easily linking a document to its bibliographic reference, in a handy way, by dragging the file to the main (at that time, single) panel. Now, in version 1.0.0, when a file is dropped, cb2Bib scans the document for metadata packets, and checks, in a rather experimental way, whether or not they contain relevant bibliographic information. Publishers metadata might or might not be accurate. Some, for instance, assign the DOI to the key Title. cb2Bib extracts possibly relevant key-value pairs and adds them to clipboard panel. Whenever key-value pairs are found accurate, just pressing Alt+G imports them to the line edits. If keys with the prefix `bibtex` are found, then, most probable the data was written by JabRef or cb2Bib itself, and then, the values are automatically imported. The preparsed metadata that is added to the clipboard panel begins with `[Bibliographic Metadata` and ends with `/Bibliographic Metadata]`. Therefore, if you are using PDFImport together with a set of regular expressions, such that they contain the begin (\^) or end (\$) anchors, you can safely replace them by the above tags. In this manner, existing regular expressions remain useful with this minor change. And, with the advantage that, if recognition fails for a given document, metadata might give the hardest fields to extract from a PDF article, which are author and title. See also [Reading and Writing Bibliographic Metadata](#metadata). #### []{#relnotes084} Release Note cb2Bib 0.8.4 The previous cb2Bib release added the command line option `–conf [full_path]cb2bib.conf` to specify the settings location. This feature was intended, mainly, as a clean way to run the program on a host computer from a removable drive. The work done focused on arranging the command line and settings related code. It was left for a later release to solve some requirements regarding the managing of file pathnames and temporary files. This release addresses these two points. Now, when cb2Bib is launched as `cb2bib –conf` –without a configuration filename– it treats filenames as being relative to the cb2Bib actual location. Temporary files, if needed, will be placed at this location as well. Therefore, no data is being written on the host, and cb2Bib works independently of the actual address that the host assigns to the removable drive. The Windows' un/installer cleans/sets configuration data on the registry. Being aware of this particular, it might be better not to install the program directly to the USB drive. Just copy the cb2Bib base directory from a home/own computer to the removable drive, and then run it on the host computer as `cb2bib –conf`. #### []{#relnotes083} Release Note cb2Bib 0.8.3 cb2Bib accepts several arguments on its command line to access specific functionality. So far, the command `cb2bib tmp_ref` permits importing references from the browser, whenever a *download to reference manager* choice is available. In addition, the command `cb2bib –bibedit ref.bib` directly launches the BibTeX editor for file browsing and editing. This release adds the command line option `–conf [full_path]cb2bib.conf` to specifically set a file where all internal settings are being retrieved and stored. This has two interesting applications. On one hand, it easily permits switching from several sets of extraction rules, since the files `abbreviations.txt`, `regexps.txt`, and `netqinf.txt` are all stored in the cb2Bib's settings. And, on the other hand, it allows installing the program on a USB flash drive, and cleanly running it on any (e. g., library) computer. Settings can be stored and kept on the external device, and therefore, no data will be written on the registry or settings directory of the host computer. So far, however, this feature should be regarded as experimental. The Qt library to which cb2Bib is linked does read/write access to system settings in a few places (concretely, in file and color dialogs). On Unix and Mac OS systems this access can be modified by setting the environment variable DAG\_CONFIG\_HOME. No such workaround is presently available in Windows. See [cb2Bib Command Line](#commandline) for a detailed syntax description. #### []{#relnotes081} Release Note cb2Bib 0.8.1 Several changes in this release affect installation and deployment. First, the cb2Bib internals for settings management has been reorganized. Version 0.8.1 will not read previous settings, as user colors, file locations, etc. On Unix, settings are stored at `~/.config/MOLspaces/cb2Bib.conf`. This file can be removed, or renamed. On Windows, it is recommended to uninstall previous versions before upgrading. Second, cb2Bib tags are not shown by default. Instead, it is shown plain, raw clipboard data, as it is easier to identify with the original source. To write a regular expression, right click, on the menu, check 'View Tagged Clipboard Data', and perform the extraction from this view. And finally, cb2Bib adds the tag <<excerpt>> for network queries. It takes a simplified version of the clipboard contents and sends it to, e.g. Google Scholar. From there, one can easily import BibTeX references related to that contents. Therefore one should unchecked in most cases the 'Perform Network Queries after automatic reference extractions' box. #### []{#relnotes072} Release Note cb2Bib 0.7.2 cb2Bib reads the clipboard contents, processes it, and places it to the main cb2Bib's panel. If clipboard contents can be recognized as a reference, it writes the corresponding BibTeX entry. If not, the user can interact from the cb2Bib panel and complete or correct the reference. Additionally, this process permits to write down a regular expression matching the reference's pattern. To ease pattern writing, cb2Bib preprocesses the raw input data. This can consider format conversion by external tools and general substitutions, in addition to including some special tags. The resulting preprocessed data is usually less readable. A particularly illustrating case is when input data comes from a PDF article. cb2Bib now optionally presents input data, as raw, unprocessed data. This preserves the block text format of the source, and thus identifying the relevant bibliographic fields by visual inspection is more straightforward. In this raw mode view panel, interaction works in a similar manner. Except that, no conversions or substitutions are seen there, and that no regular expression tags are written. #### []{#relnotes070} Release Note cb2Bib 0.7.0 This release moves forward cb2Bib base requirement to Qt 4.2.0. Compilation errors related to rehighlight() library calls, kindly reported by Bongard, Seemann, and Luisser, should not appear anymore. File/URL opening is carried now by this library, in a desktop integrated manner. Additionally, Gnome users will enjoy better integration, as Cleanlooks widget style is available. All known regressions in 0.6.9x series have been fixed. Also, a few minor improvements have been included. In particular, file selection dialogs display navigation history, and BibTeX output file can be conveniently selected from the list of '\*.bib' files at the current directory. Such a feature will be specially useful to users that sort references in thematic files located at a given directory. #### []{#relnotes0691} Release Note cb2Bib 0.6.91 This release fixes a regression in the cb2Bib network capabilities. Network, and hence querying was erratic, both for the internal HTTP routines and for external clients. In addition to this fix, the `netqinf.txt` has been updated. PubMed is working again. Queries are also extended to include DOI's. A possible applicability will be for indexing a set of PDF articles with PDFImport. If the article contains its DOI number, and 'Perform Network Queries after automatic reference extractions' is checked, chances are that automatic extractions will work smooth. #### []{#relnotes0690} Release Note cb2Bib 0.6.90 cb2Bib has been ported from Qt3 to Qt4, a migration in its underlying system library. Qt experienced many changes and improvements in this major release upgrade. Relevant to cb2Bib, these changes will provide a better file management, word completion, faster searches, and better desktop integration. Upgrading to Qt4 it is not a "plug and recompile" game. Thorough refactoring and rewriting was required. The resulting cb2Bib code is cleaner and more suitable to further development. As one might expect, major upgrades introduce new bugs that must be fixed. The cb2Bib 0.6.90 is actually a preview version. It has approximately the same functionality than its predecessor. So, no additions were considered at this point. Its use, bug reporting, and feedback are encouraged. This will help to get sooner a stable cb2Bib 0.7. To compile it, type `./configure` as usual. The `configure` script calls the `qmake` tool to generate an appropriate `Makefile`. To make sure the right, Qt4 `qmake` is invocated, you can setup `QTDIR` environment variable prior to `./configure`. The `configure`'s call statement will then be `'$QTDIR/bin/qmake'`. E. g., type `'setenv QTDIR /usr'` if `qmake` happens to be at the directory`/usr/bin`. #### []{#relnotes060} Release Note cb2Bib 0.6.0 cb2Bib uses the internal tags `<>` and `<>` to ease the creation of regular expressions for reference extraction. New line and tabular codes from the input stream are substituted by these numbered tags. Numbering new lines and tabulars gives an extra safety when writing down a regular expression. E. g., suppose field title is 'anything' between '`<>` and `<>`'. We can then easily write 'anything' as '.+' without the risk of overextending the caption to several '\\n' codes. On the other hand, one still can use `<>` if not interested in a specific numbering. All these internal tags are later removed, once cb2Bib postprocesses the entry fields. The cb2Bib identified so far new lines by checking for '\\n' codes. I was unaware that this was a platform dependent, as well as a not completely accurate way of detecting new lines. McKay Euan reported that `<>` tags were not appearing as expected in the MacOSX version. I later learn that MacOSX uses '\\r' codes, and that Windows uses '\\r\\n', instead of '\\n' for new line encoding. This release addresses this issue. It is supposed now that the cb2Bib regular expressions will be more transferable among the different platforms. Extraction from plain text sources is expected to be completely platform independent. Extraction from web pages will still remain browser dependent. In fact, each browser adds its peculiar interpretation of a given HTML source. For example, in Wiley webpages we see the sectioning header 'Abstract' in its source and in several browsers, but we see, and get, 'ABSTRACT' if using Konqueror. What we pay for this more uniform approach is, however, a **break in compatibility** with previous versions of cb2Bib. Unix/Linux users should not expect many differences, though. Only one from the nine regular expressions in the examples needed to be modified, and the two contributed regular expressions work perfectly without any change. Windows users will not see a duplication of `<>` tags. To update previous expressions it should be enough just shifting the `<>` numbering. And, of course, any working regular expression that does not uses `<>` tags will still be working in this new version. Finally, just to mention that I do not have a MacOSX to test any of the cb2Bib releases in this particular platform. I am therefore assuming that these changes will fix the problem at hand. If otherwise, please, let me know. Also, let me know if release 0.6.0 'break' your own expressions. I consider this release a sort of experimental or beta version, and the previous version 0.5.3, will still be available during this testing period. #### []{#relnotes050} Release Note cb2Bib 0.5.0 Two issues had appeared regarding cb2Bib installation and deployment on MacOSX platforms. First, if you encounter a 'nothing to install'-error during installation on MacOSX 10.4.x using the cb2Bib binary installer available at naranja.umh.es/\~atg/, please delete the cb2bib-receipts from `/Library/Receipts` and then rerun the installer. See also M. Bongard's clarifying note 'MACOSX 10.4.X "NOTHING TO INSTALL"-ERROR' for details. Second, and also extensible to other cb2Bib platform versions, if PDFImport issues the error message 'Failed to call *some\_format\_to\_text*' tool, make sure such a tool is installed and available. Go to Configure->PDFImport, click at the 'Select External Convert Tool' button, and navigate to set its full path. Since version 0.5.0 the default full path for the MacOSX is already set, and pointing to `/usr/local/bin/pdftotext`. #### []{#relnotes041} Release Note cb2Bib 0.4.1 Qt/KDE applications emit notifications whenever they change the clipboard contents. cb2Bib uses these notifications to automatically start its 'clipboard to BibTeX' processing. Other applications, however, does not notify about them. Since version 0.2.1, see [Release Note cb2Bib 0.2.1](#relnotes021), cb2Bib started checking the clipboard periodically. This checking was later disabled as a default, needing a few lines of code to be uncomented to activate it. Without such a checking, cb2Bib appears unresponsive when selecting/copying from e.g., acroread or Mozilla. This release includes the class `clipboardpoll` written by L. Lunak for the KDE's Klipper. Checking is performed in a very optimized way. This checking is enabled by default. If you experience problems with this feature, or if the required X11 headers aren't available, consider disabling it by typing `./configure –disable-cbpoll` prior to compilation. This will disable checking completely. If the naive, old checking is preferred, uncomment the four usual lines, `./configure –disable-cbpoll`, and compile. #### []{#relnotes035} Release Note cb2Bib 0.3.5 Releases 0.3.3 and 0.3.4 brought querying functionality to cb2Bib. In essence, cb2Bib was rearranged to accommodate copying and opening of network files. Queries were then implemented as user customizable HTML posts to journal databases. In addition, these arrangements permitted defining convenience, dynamic bookmarks that were placed at the cb2Bib's 'About' panel. cb2Bib contains three viewing panels: 'About', 'Clipboard' and 'View BibTeX', being the 'Clipboard' panel the main working area. To keep cb2Bib simple, only two buttons, 'About' and 'View BibTeX', are set to navigate through the panels. The 'About' and 'View BibTeX' buttons are toggle buttons for momentarily displaying their corresponding panels. Guidance was so far provided by enabling/disabling the buttons. After the bookmark introduction, the 'About' panel has greatly increased its usefullness. Button functionality has been slightly redesigned now to avoid as many keystrokes and mouse clicks as possible. The buttons remain switchable, but they no longer disable the other buttons. User is guided by icon changes instead. Hopefully these changes will not be confusing or counterintuitive. Bookmarks and querying functionality are customizable through the `netqinf.txt` file, which is editable by pressing the `Alt+B` keys. Supported queries are of the form 'Journal-Volume-First Page'. cb2Bib parses `netqinf.txt` each time a query is performed. It looks for `journal=Full_Name|[code]` to obtain the required information for a specific journal. Empty, '`journal=`' entries have a meaning of 'any journal'. New in this release, cb2Bib will test all possible queries for a given journal instead of giving up at the first `No article found` message. The query process stops at the first successfull hit or, otherwise, once `netqinf.txt` is parsed completely (in an equivalent way as the automatic pattern recognition works). This permits querying multiple -and incomplete- journal databases. Users should order the `netqinf.txt` file in a way it is more convenient. E.g., put PubMed in front of JACS if desired an automatic extraction. Or JACS in front of PubMed and extract from the journal web page, if author accented characters are wanted. So far, this querying functionality is still tagged as *experimental*. Either the querying itself or its syntax seem quite successful. However, downloading of PDF files, on windows OS + T1 network, **was found to freeze** once progress reaches the 30-50%. Any feedback on this issue will be greatly appreciated. Also, information on `kfmclient` equivalent tools for non KDE desktops would be worth to be included in the cb2Bib documentation. #### []{#relnotes030} Release Note cb2Bib 0.3.0 cb2Bib considers the whole set of authors as an author-string pattern. This string is later postprocessed, without requirements on the actual number of authors it may contain, or on how the names are written. Once considered author-string patterns, the extraction of bibliographic references by means of regular expressions becomes relatively simple. There are situations, however, where several author-strings are required. The following box shows one of these cases. Authors are grouped according to their affiliations. Selecting from 'F. N. First' to 'F. N. Fifth' would include 'First Affiliation' within the author string. Cleaning up whatever wording 'First Affiliation' may contain is a rather ill-posed problem. Instead, cb2Bib includes an `Add Authors` option. The way of operation is then to select 'F. N. First, F. N. Second, F. N. Third' and chose `Authors` and right after, select 'F. N. Fourth and F. N. Fifth' and chose `Add Authors`. ``` {.fragment} Journal Name, 10, 1100-1105, 2004 AN EXAMPLE WITH MULTIPLE AUTHOR SETS F. N. First, F. N. Second, F. N. Third First Affiliation F. N. Fourth and F. N. Fifth Second Affiliation Abstract: Select from "Journal Name ..." to "... second author set.". The 'F. N. First, F. N. Second, F. N. Third' author string is automatically processed as one author set, while 'F. N. Fourth and F. N. Fifth' is processed as another, second author set. ``` At this point in the manual extraction, the user was faced with a red `<>` tag in the cb2Bib clipboard panel. The `<>` tag was intended to warn the user about the fact that cb2Bib would not be able to consider the resulting extraction pattern as a valid, general regular expression. Usual regular expressions are built up from an a priori known level of nesting. In these cases, however, the level of nesting is variable. It depends on the number of different affiliations occurring in a particular reference. So far the `<>` tag has become a true FAQ about cb2Bib and a source of many confusions. There is no real need, however, for such an user warning. The `<>` has therefore been removed and cb2Bib has taken an step further, to its 0.3.0 version. The cb2Bib 0.3.0 manual extraction works as usual. By clicking `Authors` the Authors edit line is reseted and selection contents moved there. Alternatively, if `Add Authors` is clicked, selection contents is added to the author field. On this version, however, both operations are tagged as `<>` (singular form, as it is the BibTeX keyword for Authors). The generated extraction pattern can now contain any number of `<>` fields. In automatic mode, cb2Bib now adds all `author` captions to Authors. In this way, cb2Bib can treat interlaced author-affiliation cases. Obviously, users needing such extractions will have to write particular regular expressions for cases with one set of authors, for two sets, and so on. Eventhough it is not rare a work having a hundred of authors, it would be quite umprobable that they were working on so many different institutions. Therefore, few regular expressions should actually be required in practice. Although not elegant, this breaks what was a cb2Bib limitation and broadens its use when extracting from PDF sources. Remember here to sort these regular expressions in decreasing order, since at present, cb2Bib stops at the first hit. Also, consider `Any Pattern` to get ride of the actual affiliation contents, as you might not want to extract authors addresses. #### []{#relnotes027} Release Note cb2Bib 0.2.7 The cb2Bib 0.2.7 release introduces multiple retrieving from PDF files. PDF documents are becoming more and more widely used, not only to transfer and printing articles, but also are substituting the personal paper files and classifiers for the electronic equivalents. cb2Bib is intended to help updating personal databases of papers. It is a tool focused on what is left behind in database retrieving. Cases such as email alerts, or inter colleague references and PDF sharing are example situations. Though in an electronic format, sources are not standardized or not globally used as to permit using habitual import filters in reference managers. cb2Bib is designed to consider a direct user intervention, either by creating its own useful filters or by a simple copy-paste assistance when handtyping. Hopefully someday cb2Bib will be able to take that old directory, with perhaps a few hundreds of papers, to automatically index the references and rename the files by author, in a consistent manner. The required mechanism is already there, in this version. But I guess that this new feature will manifest some present limitations in cb2Bib. For instance, most printed and PDF papers interlace author names and affiliations. cb2Bib doesn't have the means to automatically discern an author name from a department or street name. So far one needs to manually use the 'Add to Authors' feature to deal with these situations. Also, the managing of regular expressions needs developing, specially thinking in the spread variety of design patterns in publications. In summary, this current version is already useful in classifying and extracting the reference of that couple of papers that someone send right before submitting a work. A complete unsupervised extraction is still far away, however. #### []{#relnotes021} Release Note cb2Bib 0.2.1 The cb2Bib mechanism 'select-and-catch' failed in some cases. Acrobat and Mozilla selections were not always notified to cb2Bib. Indeed, this 'window manager - application' connection seems to be broken on a KDE 3.3.0 Qt 3.3.3 system. The cb2Bib 0.2.1 continues to listen to system clipboard change notifications, whenever they are received and whenever cb2Bib is on connected mode. Additionally, the cb2Bib 0.2.1 periodically checks for changes in the system clipboard. Checks are performed every second, approximately. This permits cb2Bib to work as usual, although one could experience 1-2 seconds delays in systems where the automatic notification is broken. If the 'select-and-catch' functionality appears 'sticky', possibly happening while using non KDE applications from where text is selected, check the source file `c2bclipboard``.cpp`, look for `'Setting timer'`, and set variable `interval` to 1000. This is the interval of time in ms that cb2Bib will use to check for clipboard changes.
cb2bib-1.9.9/PaxHeaders.4632/c2btools0000644000000000000000000000013213344506453014011 xustar0030 mtime=1536331051.321585092 30 atime=1536331050.985588102 30 ctime=1536331051.321585092 cb2bib-1.9.9/c2btools/0000755000175000001440000000000013344506453015462 5ustar00constansusers00000000000000cb2bib-1.9.9/c2btools/PaxHeaders.4632/med2bib0000644000000000000000000000007413344506254015321 xustar0030 atime=1536331050.985588102 30 ctime=1536331050.573591795 cb2bib-1.9.9/c2btools/med2bib0000755000175000001440000000507113344506254016716 0ustar00constansusers00000000000000#!/bin/sh #------------------------------------------------------------------------------- # med2bib -- Script to convert PUBMED format to BibTeX # cb2Bib Tools # # Copyright (C) 2009 by Filippo Rusconi # rusconi@mnhn.fr # # Based on previous work by # Pere Constans # constans@molspaces.com # # See LICENSE file that comes with this distribution # # Usage: med2bib input_med output_bib #------------------------------------------------------------------------------- # Using med2xml and xml2bib utilities from: # http://bibutils.refbase.org/ #------------------------------------------------------------------------------- #------------------------------------------------------------------------------- # Init variables #------------------------------------------------------------------------------- # Modify accordingly #med2xml=/usr/local/bin/med2xml #xml2bib=/usr/local/bin/xml2bib med2xml=med2xml xml2bib=xml2bib med2xml_flags="-u" xml2bib_flags="-sd -b" #------------------------------------------------------------------------------- # Immediately check that the needed programs are there: "${med2xml}" --version > /dev/null 2>&1 if [ "$?" != "0" ] then echo "Program med2xml (suite bibutils) is required." echo "Set it in your path, and/or modify $0 accordingly." echo "Ending processing." exit 1 fi "${xml2bib}" --version > /dev/null 2>&1 if [ "$?" != "0" ] then echo "Program xml2bib (suite bibutils) is required." echo "Set it in your path, and/or modify $0 accordingly." echo "Ending processing." exit 1 fi # Make sure we trap errors (we put that after the tests above because # we need the tests to fail, in case, without exiting immediately). set -e # Getting filenames from command line echo "cb2Bib Tools: Script to convert PUBMED-XML format to BibTeX" echo "" echo "It uses external package bibutils from" echo "http://bibutils.refbase.org/" echo "" if test "$#" != 2; then cat < c2b_tmp.xml "${xml2bib}" $xml2bib_flags c2b_tmp.xml | sed 's%^ISSUE=%NUMBER=%g' > c2b_tmp.bib # Clean up cd "${work_dir}" cp "${tmp_dir}"/c2b_tmp.bib "$bib" rm -rf "${tmp_dir}" echo "" echo "$0 ended." cb2bib-1.9.9/c2btools/PaxHeaders.4632/bib2pdf0000644000000000000000000000007413344506254015325 xustar0030 atime=1536331050.985588102 30 ctime=1536331050.573591795 cb2bib-1.9.9/c2btools/bib2pdf0000755000175000001440000000631613344506254016725 0ustar00constansusers00000000000000#!/bin/sh #------------------------------------------------------------------------------- # bib2pdf -- Script to convert BibTeX files to PDF # cb2Bib Tools # # Copyright (C) 2005-2018 by Pere Constans # constans@molspaces.com # # Improvements and modifications: # Copyright (C) 2009 by Filippo Rusconi # rusconi@mnhn.fr # # May/June 2009: # - Added checks to ensure that the used commands are available on # system. # - Make use of mktemp to create a temp directory. # # See LICENSE file that comes with this distribution # # Usage: bib2pdf input_bib output_pdf #------------------------------------------------------------------------------- #------------------------------------------------------------------------------- # Init variables #------------------------------------------------------------------------------- # Modify accordingly, by choosing either pdflatex or latex+dvipdfm #latexCmd=pdflatex latexCmd=latex ; dvi2pdfCmd=dvipdfm bibtexCmd=bibtex #------------------------------------------------------------------------------- # Immediately check that the needed programs are there: "${latexCmd}" --version > /dev/null 2>&1 if [ "$?" != "0" ] then echo "Program ${latexCmd} (LaTeX software) is required." echo "Ending processing." exit 1 fi "${bibtexCmd}" --version > /dev/null 2>&1 if [ "$?" != "0" ] then echo "Program ${bibtexCmd} (BibTeX software) is required." echo "Ending processing." exit 1 fi # Special case with dvi2pdf: if [ "x${dvi2pdfCmd}" != "x" ] then "${dvi2pdfCmd}" --version | head -n2 | grep dvipdfm > /dev/null 2>&1 if [ "$?" != "0" ] then echo "Program ${dvi2pdfCmd} (LaTeX software) is required." echo "Ending processing." exit 1 fi fi # Make sure we trap errors (we put that after the tests above because # we need the tests to fail, in case, without exiting immediately). set -e # Getting filenames from command line echo "cb2Bib Tools: Script to convert BibTeX to PDF" if test "$#" != 2; then cat < "${tmp_dir}"/c2b_tmp.tex < /dev/null 2>&1 "${bibtexCmd}" c2b_tmp "${latexCmd}" $latex_flags c2b_tmp > /dev/null 2>&1 "${latexCmd}" $latex_flags c2b_tmp if [ "x${dvi2pdfCmd}" != "x" ] then "${dvi2pdfCmd}" c2b_tmp > /dev/null 2>&1 fi # Make sure we trap errors. set -e # Clean up cd "${work_dir}" cp "${tmp_dir}"/c2b_tmp.pdf "$pdf" rm -rf "${tmp_dir}" echo "$0 ended." cb2bib-1.9.9/c2btools/PaxHeaders.4632/ris2bib0000644000000000000000000000007413344506254015351 xustar0030 atime=1536331050.985588102 30 ctime=1536331050.573591795 cb2bib-1.9.9/c2btools/ris2bib0000755000175000001440000000535113344506254016747 0ustar00constansusers00000000000000#!/bin/sh #------------------------------------------------------------------------------- # ris2bib -- Script to convert RIS format to BibTeX # cb2Bib Tools # # Copyright (C) 2005-2018 by Pere Constans # constans@molspaces.com # # Improvements and modifications: # Copyright (C) 2009 by Filippo Rusconi # rusconi@mnhn.fr # # May/June 2009: # - Added checks to ensure that the used commands are available on # system. # - Make use of mktemp to create a temp directory. # # See LICENSE file that comes with this distribution # # Usage: ris2bib input_ris output_bib #------------------------------------------------------------------------------- # Using ris2xml and xml2bib utilities from: # http://bibutils.refbase.org/ #------------------------------------------------------------------------------- #------------------------------------------------------------------------------- # Init variables #------------------------------------------------------------------------------- # Modify accordingly #ris2xml=/usr/local/bin/ris2xml #xml2bib=/usr/local/bin/xml2bib ris2xml=ris2xml xml2bib=xml2bib ris2xml_flags="-u" xml2bib_flags="-sd -b" #------------------------------------------------------------------------------- # Immediately check that the needed programs are there: "${ris2xml}" --version > /dev/null 2>&1 if [ "$?" != "0" ] then echo "Program ris2xml (suite bibutils) is required." echo "Set it in your path, and/or modify $0 accordingly." echo "Ending processing." exit 1 fi "${xml2bib}" --version > /dev/null 2>&1 if [ "$?" != "0" ] then echo "Program xml2bib (suite bibutils) is required." echo "Set it in your path, and/or modify $0 accordingly." echo "Ending processing." exit 1 fi # Make sure we trap errors (we put that after the tests above because # we need the tests to fail, in case, without exiting immediately). set -e # Getting filenames from command line echo "cb2Bib Tools: Script to convert RIS format to BibTeX" echo "" echo "It uses external package bibutils from" echo "http://bibutils.refbase.org/" echo "" if test "$#" != 2; then cat < c2b_tmp.xml "${xml2bib}" ${xml2bib_flags} c2b_tmp.xml | sed 's%^ISSUE=%NUMBER=%g' > c2b_tmp.bib # Clean up cd "${work_dir}" cp "${tmp_dir}"/c2b_tmp.bib "$bib" rm -rf "${tmp_dir}" echo "" echo "$0 ended." cb2bib-1.9.9/c2btools/PaxHeaders.4632/isi2bib0000644000000000000000000000007413344506254015340 xustar0030 atime=1536331050.985588102 30 ctime=1536331050.573591795 cb2bib-1.9.9/c2btools/isi2bib0000755000175000001440000000534513344506254016741 0ustar00constansusers00000000000000#!/bin/sh #------------------------------------------------------------------------------- # isi2bib -- Script to convert ISI format to BibTeX # cb2Bib Tools # # Copyright (C) 2005-2018 by Pere Constans # constans@molspaces.com # # Improvements and modifications: # Copyright (C) 2009 by Filippo Rusconi # rusconi@mnhn.fr # # May/June 2009: # - Added checks to ensure that the used commands are available on # system. # - Make use of mktemp to create a temp directory. # # See LICENSE file that comes with this distribution # # Usage: isi2bib input_isi output_bib #------------------------------------------------------------------------------- # Using isi2xml and xml2bib utilities from: # http://bibutils.refbase.org/ #------------------------------------------------------------------------------- #------------------------------------------------------------------------------- # Init variables #------------------------------------------------------------------------------- # Modify accordingly #isi2xml=/usr/local/bin/isi2xml #xml2bib=/usr/local/bin/xml2bib isi2xml=isi2xml xml2bib=xml2bib isi2xml_flags="-u" xml2bib_flags="-sd -b" #------------------------------------------------------------------------------- # Immediately check that the needed programs are there: "${isi2xml}" --version > /dev/null 2>&1 if [ "$?" != "0" ] then echo "Program ris2xml (suite bibutils) is required." echo "Set it in your path, and/or modify $0 accordingly." echo "Ending processing." exit 1 fi "${xml2bib}" --version > /dev/null 2>&1 if [ "$?" != "0" ] then echo "Program xml2bib (suite bibutils) is required." echo "Set it in your path, and/or modify $0 accordingly." echo "Ending processing." exit 1 fi # Make sure we trap errors (we put that after the tests above because # we need the tests to fail, in case, without exiting immediately). set -e # Getting filenames from command line echo "cb2Bib Tools: Script to convert ISI format to BibTeX" echo "" echo "It uses external package bibutils from" echo "http://bibutils.refbase.org/" echo "" if test "$#" != 2; then cat < c2b_tmp.xml "${xml2bib}" $xml2bib_flags c2b_tmp.xml | sed 's%^ISSUE=%NUMBER=%g' > c2b_tmp.bib # Clean up cd "${work_dir}" cp "${tmp_dir}"/c2b_tmp.bib "$bib" rm -rf "${tmp_dir}" echo "" echo "$0 ended." cb2bib-1.9.9/PaxHeaders.4632/c2bscripts0000644000000000000000000000007413344506254014344 xustar0030 atime=1536331050.985588102 30 ctime=1536331050.573591795 cb2bib-1.9.9/c2bscripts/0000755000175000001440000000000013344506254016010 5ustar00constansusers00000000000000cb2bib-1.9.9/c2bscripts/PaxHeaders.4632/c2bimport0000644000000000000000000000007413344506254016245 xustar0030 atime=1536331050.985588102 30 ctime=1536331050.573591795 cb2bib-1.9.9/c2bscripts/c2bimport0000755000175000001440000000147313344506254017644 0ustar00constansusers00000000000000#!/bin/sh #------------------------------------------------------------------------------- # c2bimport -- Script for calling cb2Bib in "Download Reference to cb2Bib" mode # cb2Bib Tools # Copyright (C) 2004-2018 by Pere Constans # constans@molspaces.com # # Copyright (C) 2009 by Filippo Rusconi # rusconi@mnhn.fr # # June 2009: # - Make use of quoted "$1" argument instead of $1. # # See the LICENSE file that comes with this distribution #------------------------------------------------------------------------------- # Usage: c2bimport tmp_imported_reference_file #------------------------------------------------------------------------------- if test "$#" != 1; then cat <