pax_global_header00006660000000000000000000000064111126240410014502gustar00rootroot0000000000000052 comment=3e6c2a495926e58ae06e4091e0e7bd31a0475fd1 qprint-1.0.dfsg.2/000077500000000000000000000000001111262404100137415ustar00rootroot00000000000000qprint-1.0.dfsg.2/COPYING000066400000000000000000000004401111262404100147720ustar00rootroot00000000000000 This software is in the public domain. Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, without any conditions or restrictions. This software is provided "as is" without express or implied warranty. qprint-1.0.dfsg.2/INSTALL000066400000000000000000000014621111262404100147750ustar00rootroot00000000000000 To build and install this program on Unix-like systems: 1. cd to the directory in which you unpacked this distribution. 2. Configure the program for your system by running: ./configure This will create a Makefile and config.h appropriate for your system. 3. Build the program with: make 4. Test the results with: make check For a more demanding test run: make wringer 5. To preview where the program will be installed, use: make -n install To install the executable and manual page in the destinations shown by the above command: make install Depending on permissions of the destination directories, you may need to be super-user to perform the installation. qprint-1.0.dfsg.2/Makefile.in000066400000000000000000000152611111262404100160130ustar00rootroot00000000000000 # Development tree name for this version PRODUCT = @PRODUCT@ VERSION = @VERSION@ TREE = $(PRODUCT)-$(VERSION) # Utilities used in building the program SHELL = /bin/sh CC = @CC@ CONFDIR = /home/kelvin/unixtools/autoconf-2.13 CTANGLE = ctangle CWEAVE = cweave DVIPS = dvips INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ PDFTEX = pdftex TEX = tex XDVI = xdvi # Utility options CFLAGS = @CFLAGS@ LDFLAGS = @LDFLAGS@ # Targets PROGS = $(PRODUCT) DOCUMENTS = $(PRODUCT).tex # Installation destinations ## The 'DESTDIR' variable allows you to install the program into a different ## location, e.g., for packaging, without affecting the compiled-in pathnames. DESTDIR = prefix = @prefix@ exec_prefix = @exec_prefix@ bindir = @bindir@ mandir = @mandir@ man1dir = $(mandir)/man1 man1ext = .1 BINDIR = $(DESTDIR)$(bindir) MAN1DIR = $(DESTDIR)$(man1dir) prog: $(PROGS) doc: $(DOCUMENTS) all: $(PROGS) $(DOCUMENTS) # Build executable program $(PRODUCT): $(PRODUCT).o getopt.o $(CC) $(PRODUCT).o getopt.o -o $(PRODUCT) $(CFLAGS) $(LDFLAGS) # Create C source from web .w.c: $(CTANGLE) $*.w # Build TeX documentation file from web .w.tex: $(CWEAVE) $*.w # Create TeX .dvi file of documentation .tex.dvi: $(TEX) $*.tex # View TeX documentation viewdoc: $(PRODUCT).dvi $(XDVI) $(PRODUCT) # Build PostScript file to print program .dvi.ps: $(DVIPS) -f @*.dvi >$*.ps # Build PDF file of program and documentation $(PRODUCT).pdf: $(PRODUCT).tex $(PDFTEX) $(PRODUCT).tex # Test programs and support for same wretch: wretch.o $(CC) wretch.o -o wretch $(CFLAGS) $(LDFLAGS) wretch.bin: wretch ./wretch # Build auto-configuration scripts configurator: rm -f config.cache $(CONFDIR)/autoconf --macrodir $(CONFDIR) # Installation install-bin: $(BINDIR) $(PRODUCT) $(INSTALL_PROGRAM) $(PRODUCT) $(BINDIR)/$(PRODUCT) install-man: $(PRODUCT).1 $(INSTALL_DATA) $(PRODUCT).1 $(MAN1DIR)/$(PRODUCT)$(man1ext) install: install-bin install-man # Uninstallation uninstall: rm -f $(BINDIR)/$(PRODUCT) $(MAN1DIR)/$(PRODUCT)$(man1ext) # There are a variety of levels of cleanliness # # clean: Remove object code, but leave C and TeX extracts from web # and generated documentation. The current build configuration # is preserved. clean: rm -f $(PROGS) *.o *.bak *.shar *.zip *.tar.gz *.dvi core *.out \ *.log # # distclean: Remove everything not present in the distribution. # This wipes out the build configuration; you must # re-run ./configure before rebuilding. distclean: clean rm -f config.cache config.h Makefile config.log config.status rm -f $(PRODUCT).tex $(PRODUCT).idx $(PRODUCT).scn $(PRODUCT).toc # # maintainer-clean: Remove everything derivative from the # master web. We don't delete $(PRODUCT).c # because that causes configure to fail. maintainer-clean: distclean @echo 'This command is intended for maintainers to use; it' @echo 'deletes files that may need special tools to rebuild.' rm -f *.ps *.pdf rm -f wretch.c wretch.bin # Create distribution archives ARCH_SOURCE = Makefile.in $(PRODUCT).c $(PRODUCT).w config.h.in getopt.c getopt.h ARCH_DOC = $(PRODUCT).1 index.html logo.gif \ rfc1521.html rfc1521.txt $(PRODUCT).pdf \ COPYING INSTALL README ARCH_BIN = $(PRODUCT).exe ARCH_CONF = configure configure.in install-sh ARCH_WRETCH = wretch.w wretch.c wretch.bin ARCH_FILES = $(ARCH_SOURCE) $(ARCH_DOC) $(ARCH_BIN) $(ARCH_CONF) $(ARCH_WRETCH) dist: # Make zipped archive of Win32 executable rm -f $(PRODUCT).zip zip $(PRODUCT).zip $(ARCH_BIN) # Make gzipped tar archive of complete distribution rm -f $(TREE).tar.gz rm -rf $(TREE) mkdir $(TREE) chmod 777 $(TREE) @echo "Copying distribution files" @for file in $(ARCH_FILES); do \ cp -p $$file $(TREE); \ done tar cfv $(TREE).tar $(TREE) gzip $(TREE).tar rm -rf $(TREE) # Check for lint lint: $(PRODUCT).c lint $(PRODUCT).c # View manual page manpage: nroff -man $(PRODUCT).1 | $(PAGER) # Print manual page printman: ptroff -man $(PRODUCT).1 # Test it check: $(PRODUCT) wretch.bin ./$(PRODUCT) --encode --binary /tmp/$(PRODUCT)1.bak ./$(PRODUCT) --decode /tmp/$(PRODUCT)2.bak -cmp -s wretch.bin /tmp/$(PRODUCT)2.bak ; if test $$? -ne 0 ; then \ echo '** $(PRODUCT): Redirection test failed. **' ; else \ ./$(PRODUCT) -eb wretch.bin /tmp/$(PRODUCT)1.bak ;\ ./$(PRODUCT) -d /tmp/$(PRODUCT)1.bak /tmp/$(PRODUCT)2.bak ;\ cmp -s wretch.bin /tmp/$(PRODUCT)2.bak ; if test $$? -ne 0 ; then \ echo '** $(PRODUCT): Command line file argument test failed. **' ; else \ echo 'All tests passed.' ; fi ; fi @rm /tmp/$(PRODUCT)1.bak /tmp/$(PRODUCT)2.bak # Beat it over the head with an aluminium baseball bat wringer: $(PRODUCT) wretch.bin @echo 'This test performs 13 nested encodes and decodes using' @echo 'various options and compares the result to the' @echo 'original file.' ./$(PRODUCT) -e --binary wretch.bin /tmp/$(PRODUCT)1.bak # E 1 ./$(PRODUCT) -e /tmp/$(PRODUCT)1.bak /tmp/$(PRODUCT)2.bak # E 2 ./$(PRODUCT) -e /tmp/$(PRODUCT)2.bak /tmp/$(PRODUCT)3.bak # E 3 ./$(PRODUCT) -e /tmp/$(PRODUCT)3.bak /tmp/$(PRODUCT)4.bak # E 4 ./$(PRODUCT) -e /tmp/$(PRODUCT)4.bak /tmp/$(PRODUCT)5.bak # E 5 ./$(PRODUCT) -e --paranoid /tmp/$(PRODUCT)5.bak /tmp/$(PRODUCT)6.bak # E 6 ./$(PRODUCT) -e /tmp/$(PRODUCT)8.bak # E 7, 8 ./$(PRODUCT) -e /tmp/$(PRODUCT)8.bak /tmp/$(PRODUCT)9.bak # E 9 ./$(PRODUCT) -e --paranoid /tmp/$(PRODUCT)9.bak /tmp/$(PRODUCT)a.bak # E 10 ./$(PRODUCT) -e /tmp/$(PRODUCT)a.bak /tmp/$(PRODUCT)b.bak # E 11 ./$(PRODUCT) -e /tmp/$(PRODUCT)b.bak /tmp/$(PRODUCT)c.bak # E 12 ./$(PRODUCT) -e /tmp/$(PRODUCT)c.bak /tmp/$(PRODUCT)d.bak # E 13 # ./$(PRODUCT) -d /tmp/$(PRODUCT)d.bak /tmp/qpdc.bak # D 1 ./$(PRODUCT) -d /tmp/qpdc.bak /tmp/qpdb.bak # D 2 ./$(PRODUCT) -d /tmp/qpdb.bak /tmp/qpda.bak # D 3 ./$(PRODUCT) -d /tmp/qpda.bak /tmp/qpd9.bak # D 4 ./$(PRODUCT) -d /tmp/qpd9.bak /tmp/qpd8.bak # D 5 ./$(PRODUCT) -d /tmp/qpd8.bak /tmp/qpd7.bak # D 6 ./$(PRODUCT) -d /tmp/qpd7.bak /tmp/qpd6.bak # D 7 ./$(PRODUCT) -d /tmp/qpd4.bak # D 8, 9 ./$(PRODUCT) -d /tmp/qpd4.bak /tmp/qpd3.bak # D 10 ./$(PRODUCT) -d /tmp/qpd3.bak /tmp/qpd2.bak # D 11 ./$(PRODUCT) -d /tmp/qpd2.bak /tmp/qpd1.bak # D 13 ./$(PRODUCT) -d /tmp/qpd1.bak /tmp/qpd0.bak # D 13 # -cmp -s /tmp/qpd0.bak wretch.bin ; if test $$? -ne 0 ; then \ echo '** $(PRODUCT) Wringer test failed. **' ; else \ echo 'Wringer test passed.' ; fi @rm /tmp/$(PRODUCT)?.bak /tmp/qpd?.bak # Default rules .c.o: $(CC) -c $*.c $(CFLAGS) .SUFFIXES: .SUFFIXES: .c .o .ch .dvi .tex .w .1 .bin qprint-1.0.dfsg.2/README000066400000000000000000000026021111262404100146210ustar00rootroot00000000000000 Q R R I N T by John Walker (http://www.fourmilab.ch/) Version 1.0 March 2001 QPRINT is a simple command-line filter which encodes and decodes files in Quoted-Printable encoding as defined in RFC 1521. For details on operation of the program, please consult the manual page "qprint.1" or its HTML equivalent "index.html" included in this distribution. For information on how to build and install the program, see the INSTALL file. Win32 users may, if they wish, use the ready-to-run qprint.exe file included in the archive. Source code for this program is written in the CWEB "Literate Programming" language in which C source code and TeX internal documentation are maintained in a single qprint.w file. CWEB programming tools may be downloaded from: http://www-cs-faculty.stanford.edu/~knuth/cweb.html but you do *not* need to install the CWEB tools to build this program; a ready-to-compile C program is included. An annotated source code listing is provided in the file qprint.pdf, which may be read with Acrobat Reader, which is a free download from: http://www.adobe.com/products/acrobat/readstep.html The latest version of this program may be downloaded from: http://www.fourmilab.ch/webtools/qprint/ Please report any bugs or documentation errors to: bugs@fourmilab.ch qprint-1.0.dfsg.2/config.h.in000066400000000000000000000013201111262404100157600ustar00rootroot00000000000000/* config.h.in. Generated automatically from configure.in by autoheader. */ /* Define if you have the ANSI C header files. */ #undef STDC_HEADERS /* Define if you have the getopt function. */ #undef HAVE_GETOPT /* Define if you have the header file. */ #undef HAVE_STRING_H /* Define if you have the header file. */ #undef HAVE_STRINGS_H /* Define if you have the header file. */ #undef HAVE_UNISTD_H /* Define to the name of the distribution. */ #undef PRODUCT /* Define to the version of the distribution. */ #undef VERSION /* Size of "unsigned long long", if defined. */ #undef SIZEOF_UNSIGNED_LONG_LONG /* Size of "unsigned long". */ #undef SIZEOF_UNSIGNED_LONG qprint-1.0.dfsg.2/configure000077500000000000000000001404431111262404100156560ustar00rootroot00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.13 # Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc. # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. # Defaults: ac_help= ac_default_prefix=/usr/local # Any additions from configure.in: ac_default_prefix=/usr/local # Initialize some variables set by options. # The variables have the same names as the options, with # dashes changed to underlines. build=NONE cache_file=./config.cache exec_prefix=NONE host=NONE no_create= nonopt=NONE no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= target=NONE verbose= x_includes=NONE x_libraries=NONE bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datadir='${prefix}/share' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' libdir='${exec_prefix}/lib' includedir='${prefix}/include' oldincludedir='/usr/include' infodir='${prefix}/info' mandir='${prefix}/man' # Initialize some other variables. subdirs= MFLAGS= MAKEFLAGS= SHELL=${CONFIG_SHELL-/bin/sh} # Maximum number of lines to put in a shell here document. ac_max_here_lines=12 ac_prev= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval "$ac_prev=\$ac_option" ac_prev= continue fi case "$ac_option" in -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;; *) ac_optarg= ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case "$ac_option" in -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir="$ac_optarg" ;; -build | --build | --buil | --bui | --bu) ac_prev=build ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build="$ac_optarg" ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file="$ac_optarg" ;; -datadir | --datadir | --datadi | --datad | --data | --dat | --da) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ | --da=*) datadir="$ac_optarg" ;; -disable-* | --disable-*) ac_feature=`echo $ac_option|sed -e 's/-*disable-//'` # Reject names that are not valid shell variable names. if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; } fi ac_feature=`echo $ac_feature| sed 's/-/_/g'` eval "enable_${ac_feature}=no" ;; -enable-* | --enable-*) ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'` # Reject names that are not valid shell variable names. if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; } fi ac_feature=`echo $ac_feature| sed 's/-/_/g'` case "$ac_option" in *=*) ;; *) ac_optarg=yes ;; esac eval "enable_${ac_feature}='$ac_optarg'" ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix="$ac_optarg" ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he) # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat << EOF Usage: configure [options] [host] Options: [defaults in brackets after descriptions] Configuration: --cache-file=FILE cache test results in FILE --help print this message --no-create do not create output files --quiet, --silent do not print \`checking...' messages --version print the version of autoconf that created configure Directory and file names: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [same as prefix] --bindir=DIR user executables in DIR [EPREFIX/bin] --sbindir=DIR system admin executables in DIR [EPREFIX/sbin] --libexecdir=DIR program executables in DIR [EPREFIX/libexec] --datadir=DIR read-only architecture-independent data in DIR [PREFIX/share] --sysconfdir=DIR read-only single-machine data in DIR [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data in DIR [PREFIX/com] --localstatedir=DIR modifiable single-machine data in DIR [PREFIX/var] --libdir=DIR object code libraries in DIR [EPREFIX/lib] --includedir=DIR C header files in DIR [PREFIX/include] --oldincludedir=DIR C header files for non-gcc in DIR [/usr/include] --infodir=DIR info documentation in DIR [PREFIX/info] --mandir=DIR man documentation in DIR [PREFIX/man] --srcdir=DIR find the sources in DIR [configure dir or ..] --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names EOF cat << EOF Host type: --build=BUILD configure for building on BUILD [BUILD=HOST] --host=HOST configure for HOST [guessed] --target=TARGET configure for TARGET [TARGET=HOST] Features and packages: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --x-includes=DIR X include files are in DIR --x-libraries=DIR X library files are in DIR EOF if test -n "$ac_help"; then echo "--enable and --with options recognized:$ac_help" fi exit 0 ;; -host | --host | --hos | --ho) ac_prev=host ;; -host=* | --host=* | --hos=* | --ho=*) host="$ac_optarg" ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir="$ac_optarg" ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir="$ac_optarg" ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir="$ac_optarg" ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir="$ac_optarg" ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst \ | --locals | --local | --loca | --loc | --lo) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* \ | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) localstatedir="$ac_optarg" ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir="$ac_optarg" ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir="$ac_optarg" ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix="$ac_optarg" ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix="$ac_optarg" ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix="$ac_optarg" ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name="$ac_optarg" ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir="$ac_optarg" ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir="$ac_optarg" ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site="$ac_optarg" ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir="$ac_optarg" ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir="$ac_optarg" ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target="$ac_optarg" ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers) echo "configure generated by autoconf version 2.13" exit 0 ;; -with-* | --with-*) ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'` # Reject names that are not valid shell variable names. if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; } fi ac_package=`echo $ac_package| sed 's/-/_/g'` case "$ac_option" in *=*) ;; *) ac_optarg=yes ;; esac eval "with_${ac_package}='$ac_optarg'" ;; -without-* | --without-*) ac_package=`echo $ac_option|sed -e 's/-*without-//'` # Reject names that are not valid shell variable names. if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; } fi ac_package=`echo $ac_package| sed 's/-/_/g'` eval "with_${ac_package}=no" ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes="$ac_optarg" ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries="$ac_optarg" ;; -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; } ;; *) if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then echo "configure: warning: $ac_option: invalid host type" 1>&2 fi if test "x$nonopt" != xNONE; then { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; } fi nonopt="$ac_option" ;; esac done if test -n "$ac_prev"; then { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; } fi trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15 # File descriptor usage: # 0 standard input # 1 file creation # 2 errors and warnings # 3 some systems may open it to /dev/tty # 4 used on the Kubota Titan # 6 checking for... messages and results # 5 compiler messages saved in config.log if test "$silent" = yes; then exec 6>/dev/null else exec 6>&1 fi exec 5>./config.log echo "\ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. " 1>&5 # Strip out --no-create and --no-recursion so they do not pile up. # Also quote any args containing shell metacharacters. ac_configure_args= for ac_arg do case "$ac_arg" in -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c) ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;; *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*) ac_configure_args="$ac_configure_args '$ac_arg'" ;; *) ac_configure_args="$ac_configure_args $ac_arg" ;; esac done # NLS nuisances. # Only set these to C if already set. These must not be set unconditionally # because not all systems understand e.g. LANG=C (notably SCO). # Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'! # Non-C LC_CTYPE values break the ctype check. if test "${LANG+set}" = set; then LANG=C; export LANG; fi if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -rf conftest* confdefs.h # AIX cpp loses on an empty file, so make sure it contains at least a newline. echo > confdefs.h # A filename unique to this package, relative to the directory that # configure is in, which we can look for to find out if srcdir is correct. ac_unique_file=qprint.c # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then its parent. ac_prog=$0 ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'` test "x$ac_confdir" = "x$ac_prog" && ac_confdir=. srcdir=$ac_confdir if test ! -r $srcdir/$ac_unique_file; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r $srcdir/$ac_unique_file; then if test "$ac_srcdir_defaulted" = yes; then { echo "configure: error: can not find sources in $ac_confdir or .." 1>&2; exit 1; } else { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; } fi fi srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'` # Prefer explicitly selected file to automatically selected ones. if test -z "$CONFIG_SITE"; then if test "x$prefix" != xNONE; then CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" else CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" fi fi for ac_site_file in $CONFIG_SITE; do if test -r "$ac_site_file"; then echo "loading site script $ac_site_file" . "$ac_site_file" fi done if test -r "$cache_file"; then echo "loading cache $cache_file" . $cache_file else echo "creating cache $cache_file" > $cache_file fi ac_ext=c # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. ac_cpp='$CPP $CPPFLAGS' ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' cross_compiling=$ac_cv_prog_cc_cross ac_exeext= ac_objext=o if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu. if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then ac_n= ac_c=' ' ac_t=' ' else ac_n=-n ac_c= ac_t= fi else ac_n= ac_c='\c' ac_t= fi PRODUCT=qprint VERSION=1.0 cat >> confdefs.h <> confdefs.h <&6 echo "configure:545: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" ac_dummy="$PATH" for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then ac_cv_prog_CC="gcc" break fi done IFS="$ac_save_ifs" fi fi CC="$ac_cv_prog_CC" if test -n "$CC"; then echo "$ac_t""$CC" 1>&6 else echo "$ac_t""no" 1>&6 fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 echo "configure:575: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" ac_prog_rejected=no ac_dummy="$PATH" for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" break fi done IFS="$ac_save_ifs" if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# -gt 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift set dummy "$ac_dir/$ac_word" "$@" shift ac_cv_prog_CC="$@" fi fi fi fi CC="$ac_cv_prog_CC" if test -n "$CC"; then echo "$ac_t""$CC" 1>&6 else echo "$ac_t""no" 1>&6 fi if test -z "$CC"; then case "`uname -s`" in *win32* | *WIN32*) # Extract the first word of "cl", so it can be a program name with args. set dummy cl; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 echo "configure:626: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" ac_dummy="$PATH" for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then ac_cv_prog_CC="cl" break fi done IFS="$ac_save_ifs" fi fi CC="$ac_cv_prog_CC" if test -n "$CC"; then echo "$ac_t""$CC" 1>&6 else echo "$ac_t""no" 1>&6 fi ;; esac fi test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; } fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 echo "configure:658: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 ac_ext=c # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. ac_cpp='$CPP $CPPFLAGS' ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' cross_compiling=$ac_cv_prog_cc_cross cat > conftest.$ac_ext << EOF #line 669 "configure" #include "confdefs.h" main(){return(0);} EOF if { (eval echo configure:674: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ac_cv_prog_cc_works=yes # If we can't run a trivial program, we are probably using a cross compiler. if (./conftest; exit) 2>/dev/null; then ac_cv_prog_cc_cross=no else ac_cv_prog_cc_cross=yes fi else echo "configure: failed program was:" >&5 cat conftest.$ac_ext >&5 ac_cv_prog_cc_works=no fi rm -fr conftest* ac_ext=c # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. ac_cpp='$CPP $CPPFLAGS' ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' cross_compiling=$ac_cv_prog_cc_cross echo "$ac_t""$ac_cv_prog_cc_works" 1>&6 if test $ac_cv_prog_cc_works = no; then { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 echo "configure:700: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 cross_compiling=$ac_cv_prog_cc_cross echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 echo "configure:705: checking whether we are using GNU C" >&5 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.c <&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then ac_cv_prog_gcc=yes else ac_cv_prog_gcc=no fi fi echo "$ac_t""$ac_cv_prog_gcc" 1>&6 if test $ac_cv_prog_gcc = yes; then GCC=yes else GCC= fi ac_test_CFLAGS="${CFLAGS+set}" ac_save_CFLAGS="$CFLAGS" CFLAGS= echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 echo "configure:733: checking whether ${CC-cc} accepts -g" >&5 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else echo 'void f(){}' > conftest.c if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then ac_cv_prog_cc_g=yes else ac_cv_prog_cc_g=no fi rm -f conftest* fi echo "$ac_t""$ac_cv_prog_cc_g" 1>&6 if test "$ac_test_CFLAGS" = set; then CFLAGS="$ac_save_CFLAGS" elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi ac_aux_dir= for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do if test -f $ac_dir/install-sh; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f $ac_dir/install.sh; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break fi done if test -z "$ac_aux_dir"; then { echo "configure: error: can not find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." 1>&2; exit 1; } fi ac_config_guess=$ac_aux_dir/config.guess ac_config_sub=$ac_aux_dir/config.sub ac_configure=$ac_aux_dir/configure # This should be Cygnus configure. # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # ./install, which can be erroneously created by make from ./install.sh. echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 echo "configure:795: checking for a BSD compatible install" >&5 if test -z "$INSTALL"; then if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=":" for ac_dir in $PATH; do # Account for people who put trailing slashes in PATH elements. case "$ac_dir/" in /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do if test -f $ac_dir/$ac_prog; then if test $ac_prog = install && grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : else ac_cv_path_install="$ac_dir/$ac_prog -c" break 2 fi fi done ;; esac done IFS="$ac_save_IFS" fi if test "${ac_cv_path_install+set}" = set; then INSTALL="$ac_cv_path_install" else # As a last resort, use the slow shell script. We don't cache a # path for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the path is relative. INSTALL="$ac_install_sh" fi fi echo "$ac_t""$INSTALL" 1>&6 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 echo "configure:850: checking how to run the C preprocessor" >&5 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if eval "test \"`echo '$''{'ac_cv_prog_CPP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # This must be in double quotes, not single quotes, because CPP may get # substituted into the Makefile and "${CC-cc}" will confuse make. CPP="${CC-cc} -E" # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" { (eval echo configure:871: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : else echo "$ac_err" >&5 echo "configure: failed program was:" >&5 cat conftest.$ac_ext >&5 rm -rf conftest* CPP="${CC-cc} -E -traditional-cpp" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" { (eval echo configure:888: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : else echo "$ac_err" >&5 echo "configure: failed program was:" >&5 cat conftest.$ac_ext >&5 rm -rf conftest* CPP="${CC-cc} -nologo -E" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" { (eval echo configure:905: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : else echo "$ac_err" >&5 echo "configure: failed program was:" >&5 cat conftest.$ac_ext >&5 rm -rf conftest* CPP=/lib/cpp fi rm -f conftest* fi rm -f conftest* fi rm -f conftest* ac_cv_prog_CPP="$CPP" fi CPP="$ac_cv_prog_CPP" else ac_cv_prog_CPP="$CPP" fi echo "$ac_t""$CPP" 1>&6 echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 echo "configure:930: checking for ANSI C header files" >&5 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include #include #include EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" { (eval echo configure:943: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* ac_cv_header_stdc=yes else echo "$ac_err" >&5 echo "configure: failed program was:" >&5 cat conftest.$ac_ext >&5 rm -rf conftest* ac_cv_header_stdc=no fi rm -f conftest* if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat > conftest.$ac_ext < EOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | egrep "memchr" >/dev/null 2>&1; then : else rm -rf conftest* ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat > conftest.$ac_ext < EOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | egrep "free" >/dev/null 2>&1; then : else rm -rf conftest* ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : else cat > conftest.$ac_ext < #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') #define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); exit (0); } EOF if { (eval echo configure:1010: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else echo "configure: failed program was:" >&5 cat conftest.$ac_ext >&5 rm -fr conftest* ac_cv_header_stdc=no fi rm -fr conftest* fi fi fi echo "$ac_t""$ac_cv_header_stdc" 1>&6 if test $ac_cv_header_stdc = yes; then cat >> confdefs.h <<\EOF #define STDC_HEADERS 1 EOF fi for ac_hdr in unistd.h string.h strings.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 echo "configure:1037: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" { (eval echo configure:1047: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* eval "ac_cv_header_$ac_safe=yes" else echo "$ac_err" >&5 echo "configure: failed program was:" >&5 cat conftest.$ac_ext >&5 rm -rf conftest* eval "ac_cv_header_$ac_safe=no" fi rm -f conftest* fi if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` cat >> confdefs.h <&6 fi done echo $ac_n "checking size of unsigned long long""... $ac_c" 1>&6 echo "configure:1075: checking size of unsigned long long" >&5 if eval "test \"`echo '$''{'ac_cv_sizeof_unsigned_long_long'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else if test "$cross_compiling" = yes; then { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } else cat > conftest.$ac_ext < main() { FILE *f=fopen("conftestval", "w"); if (!f) exit(1); fprintf(f, "%d\n", sizeof(unsigned long long)); exit(0); } EOF if { (eval echo configure:1094: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_sizeof_unsigned_long_long=`cat conftestval` else echo "configure: failed program was:" >&5 cat conftest.$ac_ext >&5 rm -fr conftest* ac_cv_sizeof_unsigned_long_long=0 fi rm -fr conftest* fi fi echo "$ac_t""$ac_cv_sizeof_unsigned_long_long" 1>&6 cat >> confdefs.h <&6 echo "configure:1114: checking size of unsigned long" >&5 if eval "test \"`echo '$''{'ac_cv_sizeof_unsigned_long'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else if test "$cross_compiling" = yes; then { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } else cat > conftest.$ac_ext < main() { FILE *f=fopen("conftestval", "w"); if (!f) exit(1); fprintf(f, "%d\n", sizeof(unsigned long)); exit(0); } EOF if { (eval echo configure:1133: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_sizeof_unsigned_long=`cat conftestval` else echo "configure: failed program was:" >&5 cat conftest.$ac_ext >&5 rm -fr conftest* ac_cv_sizeof_unsigned_long=0 fi rm -fr conftest* fi fi echo "$ac_t""$ac_cv_sizeof_unsigned_long" 1>&6 cat >> confdefs.h <&6 echo "configure:1156: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char $ac_func(); int main() { /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_$ac_func) || defined (__stub___$ac_func) choke me #else $ac_func(); #endif ; return 0; } EOF if { (eval echo configure:1184: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else echo "configure: failed program was:" >&5 cat conftest.$ac_ext >&5 rm -rf conftest* eval "ac_cv_func_$ac_func=no" fi rm -f conftest* fi if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then echo "$ac_t""yes" 1>&6 ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` cat >> confdefs.h <&6 fi done trap '' 1 2 15 cat > confcache <<\EOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs. It is not useful on other systems. # If it contains results you don't want to keep, you may remove or edit it. # # By default, configure uses ./config.cache as the cache file, # creating it if it does not exist already. You can give configure # the --cache-file=FILE option to use a different cache file; that is # what configure does when it calls configure scripts in # subdirectories, so they share the cache. # Giving --cache-file=/dev/null disables caching, for debugging configure. # config.status only pays attention to the cache file if you give it the # --recheck option to rerun configure. # EOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, don't put newlines in cache variables' values. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. (set) 2>&1 | case `(ac_space=' '; set | grep ac_space) 2>&1` in *ac_space=\ *) # `set' does not quote correctly, so add quotes (double-quote substitution # turns \\\\ into \\, and sed turns \\ into \). sed -n \ -e "s/'/'\\\\''/g" \ -e "s/^\\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\\)=\\(.*\\)/\\1=\${\\1='\\2'}/p" ;; *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n -e 's/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/\1=${\1=\2}/p' ;; esac >> confcache if cmp -s $cache_file confcache; then : else if test -w $cache_file; then echo "updating cache $cache_file" cat confcache > $cache_file else echo "not updating unwritable cache $cache_file" fi fi rm -f confcache trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15 test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' # Any assignment to VPATH causes Sun make to only execute # the first set of double-colon rules, so remove it if not needed. # If there is a colon in the path, we need to keep it. if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[^:]*$/d' fi trap 'rm -f $CONFIG_STATUS conftest*; exit 1' 1 2 15 DEFS=-DHAVE_CONFIG_H # Without the "./", some shells look in PATH for config.status. : ${CONFIG_STATUS=./config.status} echo creating $CONFIG_STATUS rm -f $CONFIG_STATUS cat > $CONFIG_STATUS </dev/null | sed 1q`: # # $0 $ac_configure_args # # Compiler output produced by configure, useful for debugging # configure, is in ./config.log if it exists. ac_cs_usage="Usage: $CONFIG_STATUS [--recheck] [--version] [--help]" for ac_option do case "\$ac_option" in -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion" exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;; -version | --version | --versio | --versi | --vers | --ver | --ve | --v) echo "$CONFIG_STATUS generated by autoconf version 2.13" exit 0 ;; -help | --help | --hel | --he | --h) echo "\$ac_cs_usage"; exit 0 ;; *) echo "\$ac_cs_usage"; exit 1 ;; esac done ac_given_srcdir=$srcdir ac_given_INSTALL="$INSTALL" trap 'rm -fr `echo "Makefile config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 EOF cat >> $CONFIG_STATUS < conftest.subs <<\\CEOF $ac_vpsub $extrasub s%@SHELL@%$SHELL%g s%@CFLAGS@%$CFLAGS%g s%@CPPFLAGS@%$CPPFLAGS%g s%@CXXFLAGS@%$CXXFLAGS%g s%@FFLAGS@%$FFLAGS%g s%@DEFS@%$DEFS%g s%@LDFLAGS@%$LDFLAGS%g s%@LIBS@%$LIBS%g s%@exec_prefix@%$exec_prefix%g s%@prefix@%$prefix%g s%@program_transform_name@%$program_transform_name%g s%@bindir@%$bindir%g s%@sbindir@%$sbindir%g s%@libexecdir@%$libexecdir%g s%@datadir@%$datadir%g s%@sysconfdir@%$sysconfdir%g s%@sharedstatedir@%$sharedstatedir%g s%@localstatedir@%$localstatedir%g s%@libdir@%$libdir%g s%@includedir@%$includedir%g s%@oldincludedir@%$oldincludedir%g s%@infodir@%$infodir%g s%@mandir@%$mandir%g s%@PRODUCT@%$PRODUCT%g s%@VERSION@%$VERSION%g s%@CC@%$CC%g s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g s%@INSTALL_DATA@%$INSTALL_DATA%g s%@CPP@%$CPP%g CEOF EOF cat >> $CONFIG_STATUS <<\EOF # Split the substitutions into bite-sized pieces for seds with # small command number limits, like on Digital OSF/1 and HP-UX. ac_max_sed_cmds=90 # Maximum number of lines to put in a sed script. ac_file=1 # Number of current file. ac_beg=1 # First line for current file. ac_end=$ac_max_sed_cmds # Line after last line for current file. ac_more_lines=: ac_sed_cmds="" while $ac_more_lines; do if test $ac_beg -gt 1; then sed "1,${ac_beg}d; ${ac_end}q" conftest.subs > conftest.s$ac_file else sed "${ac_end}q" conftest.subs > conftest.s$ac_file fi if test ! -s conftest.s$ac_file; then ac_more_lines=false rm -f conftest.s$ac_file else if test -z "$ac_sed_cmds"; then ac_sed_cmds="sed -f conftest.s$ac_file" else ac_sed_cmds="$ac_sed_cmds | sed -f conftest.s$ac_file" fi ac_file=`expr $ac_file + 1` ac_beg=$ac_end ac_end=`expr $ac_end + $ac_max_sed_cmds` fi done if test -z "$ac_sed_cmds"; then ac_sed_cmds=cat fi EOF cat >> $CONFIG_STATUS <> $CONFIG_STATUS <<\EOF for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". case "$ac_file" in *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'` ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; *) ac_file_in="${ac_file}.in" ;; esac # Adjust a relative srcdir, top_srcdir, and INSTALL for subdirectories. # Remove last slash and all that follows it. Not all systems have dirname. ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'` if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then # The file is in a subdirectory. test ! -d "$ac_dir" && mkdir "$ac_dir" ac_dir_suffix="/`echo $ac_dir|sed 's%^\./%%'`" # A "../" for each directory in $ac_dir_suffix. ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'` else ac_dir_suffix= ac_dots= fi case "$ac_given_srcdir" in .) srcdir=. if test -z "$ac_dots"; then top_srcdir=. else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;; /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; *) # Relative path. srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" top_srcdir="$ac_dots$ac_given_srcdir" ;; esac case "$ac_given_INSTALL" in [/$]*) INSTALL="$ac_given_INSTALL" ;; *) INSTALL="$ac_dots$ac_given_INSTALL" ;; esac echo creating "$ac_file" rm -f "$ac_file" configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure." case "$ac_file" in *Makefile*) ac_comsub="1i\\ # $configure_input" ;; *) ac_comsub= ;; esac ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` sed -e "$ac_comsub s%@configure_input@%$configure_input%g s%@srcdir@%$srcdir%g s%@top_srcdir@%$top_srcdir%g s%@INSTALL@%$INSTALL%g " $ac_file_inputs | (eval "$ac_sed_cmds") > $ac_file fi; done rm -f conftest.s* # These sed commands are passed to sed as "A NAME B NAME C VALUE D", where # NAME is the cpp macro being defined and VALUE is the value it is being given. # # ac_d sets the value in "#define NAME VALUE" lines. ac_dA='s%^\([ ]*\)#\([ ]*define[ ][ ]*\)' ac_dB='\([ ][ ]*\)[^ ]*%\1#\2' ac_dC='\3' ac_dD='%g' # ac_u turns "#undef NAME" with trailing blanks into "#define NAME VALUE". ac_uA='s%^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' ac_uB='\([ ]\)%\1#\2define\3' ac_uC=' ' ac_uD='\4%g' # ac_e turns "#undef NAME" without trailing blanks into "#define NAME VALUE". ac_eA='s%^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' ac_eB='$%\1#\2define\3' ac_eC=' ' ac_eD='%g' if test "${CONFIG_HEADERS+set}" != set; then EOF cat >> $CONFIG_STATUS <> $CONFIG_STATUS <<\EOF fi for ac_file in .. $CONFIG_HEADERS; do if test "x$ac_file" != x..; then # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". case "$ac_file" in *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'` ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; *) ac_file_in="${ac_file}.in" ;; esac echo creating $ac_file rm -f conftest.frag conftest.in conftest.out ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` cat $ac_file_inputs > conftest.in EOF # Transform confdefs.h into a sed script conftest.vals that substitutes # the proper values into config.h.in to produce config.h. And first: # Protect against being on the right side of a sed subst in config.status. # Protect against being in an unquoted here document in config.status. rm -f conftest.vals cat > conftest.hdr <<\EOF s/[\\&%]/\\&/g s%[\\$`]%\\&%g s%#define \([A-Za-z_][A-Za-z0-9_]*\) *\(.*\)%${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD}%gp s%ac_d%ac_u%gp s%ac_u%ac_e%gp EOF sed -n -f conftest.hdr confdefs.h > conftest.vals rm -f conftest.hdr # This sed command replaces #undef with comments. This is necessary, for # example, in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. cat >> conftest.vals <<\EOF s%^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*%/* & */% EOF # Break up conftest.vals because some shells have a limit on # the size of here documents, and old seds have small limits too. rm -f conftest.tail while : do ac_lines=`grep -c . conftest.vals` # grep -c gives empty output for an empty file on some AIX systems. if test -z "$ac_lines" || test "$ac_lines" -eq 0; then break; fi # Write a limited-size here document to conftest.frag. echo ' cat > conftest.frag <> $CONFIG_STATUS sed ${ac_max_here_lines}q conftest.vals >> $CONFIG_STATUS echo 'CEOF sed -f conftest.frag conftest.in > conftest.out rm -f conftest.in mv conftest.out conftest.in ' >> $CONFIG_STATUS sed 1,${ac_max_here_lines}d conftest.vals > conftest.tail rm -f conftest.vals mv conftest.tail conftest.vals done rm -f conftest.vals cat >> $CONFIG_STATUS <<\EOF rm -f conftest.frag conftest.h echo "/* $ac_file. Generated automatically by configure. */" > conftest.h cat conftest.in >> conftest.h rm -f conftest.in if cmp -s $ac_file conftest.h 2>/dev/null; then echo "$ac_file is unchanged" rm -f conftest.h else # Remove last slash and all that follows it. Not all systems have dirname. ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'` if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then # The file is in a subdirectory. test ! -d "$ac_dir" && mkdir "$ac_dir" fi rm -f $ac_file mv conftest.h $ac_file fi fi; done EOF cat >> $CONFIG_STATUS <> $CONFIG_STATUS <<\EOF exit 0 EOF chmod +x $CONFIG_STATUS rm -fr confdefs* $ac_clean_files test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1 qprint-1.0.dfsg.2/getopt.c000066400000000000000000000113761111262404100154170ustar00rootroot00000000000000/* Date: Tue, 25 Dec 84 19:20:50 EST From: Keith Bostic To: genrad!sources Subject: public domain getopt(3) There have recently been several requests for a public domain version of getopt(3), recently. Thought this might be worth reposting. Keith Bostic ARPA: keith@seismo UUCP: seismo!keith ====================================================================== In April of this year, Henry Spencer (utzoo!henry) released a public domain version of getopt (USG, getopt(3)). Well, I've been trying to port some USG dependent software and it didn't seem to work. The problem ended up being that the USG version of getopt has some external variables that aren't mentioned in the documentation. Anyway, to fix these problems, I rewrote the public version of getopt. It has the following advantages: -- it includes those "unknown" variables -- it's smaller/faster 'cause it doesn't use the formatted output conversion routines in section 3 of the UNIX manual. -- the error messages are the same as S5's. -- it has the same side-effects that S5's has. -- the posted bug on how the error messages are flushed has been implemented. (posting by Tony Hansen; pegasus!hansen) I won't post the man pages since Henry already did; a special note, it's not documented in the S5 manual that the options ':' and '?' are illegal. It should be obvious, but I thought I'd mention it... This software was derived from binaries of S5 and the S5 man page, and is (I think?) totally (I'm pretty sure?) compatible with S5 and backward compatible to Henry's version. Keith Bostic ARPA: keith@seismo UUCP: seismo!keith *UNIX is a trademark of Bell Laboratories Further modified by John Walker on 2001-02-19 to accept GNU-style "--xxx" options. The original code considered any option beginning with "--" as the end of the options list. I changed the logic so that only "--" without a suffix is treated as an end of option marker. .. cut along the dotted line ......................................... */ #include "config.h" #include #ifdef HAVE_STRING_H #include #else #ifdef HAVE_STRINGS_H #include #endif #endif #ifndef HAVE_GETOPT #include "getopt.h" /* * get option letter from argument vector */ int optind = 1, /* index into parent argv vector */ optopt; /* character checked for validity */ char *optarg; /* argument associated with option */ #define BADCH (int)'?' #define EMSG "" #define tell(s) fputs(*nargv,stderr);fputs(s,stderr); \ fputc(optopt,stderr);fputc('\n',stderr);return(BADCH); int Getopt(int nargc, char *nargv[], char *ostr) { static char *place = EMSG; /* option letter processing */ static char *lastostr = (char *) 0; register char *oli; /* option letter list index */ char *index(); /* LANCE PATCH: dynamic reinitialization */ if (ostr != lastostr) { lastostr = ostr; place = EMSG; } if(!*place) { /* update scanning pointer */ if((optind >= nargc) || (*(place = nargv[optind]) != '-') || ! *++place) { place = EMSG; return(EOF); } /* Test for "--" as terminator of options. Note that options which begin with "--" remain acceptable (for example, "--help"); only "--" by itself terminates the option list. */ if (*place == '-' && place[1] == 0) { ++optind; return(EOF); } } /* option letter okay? */ if ((optopt = (int)*place++) == (int)':' || !(oli = strchr(ostr, optopt))) { if(!*place) ++optind; tell(": invalid option -- "); } if (*++oli != ':') { /* don't need argument */ optarg = NULL; if (!*place) ++optind; } else { /* need an argument */ if (*place) optarg = place; /* no white space */ else if (nargc <= ++optind) { /* no arg */ place = EMSG; tell(": option requires an argument -- "); } else optarg = nargv[optind]; /* white space */ place = EMSG; ++optind; } return(optopt); /* dump back option letter */ } #endif qprint-1.0.dfsg.2/getopt.h000066400000000000000000000005041111262404100154130ustar00rootroot00000000000000 extern int optind, optopt; extern char *optarg; /* We do the following naming side-step to permit testing our local getopt() on systems which include getopt() and declare it incompatibly in stdio.h or stdlib.h. */ extern int Getopt(int nargc, char *nargv[], char *ostr); #define getopt(a, b, c) Getopt(a, b, c) qprint-1.0.dfsg.2/index.html000066400000000000000000000146301111262404100157420ustar00rootroot00000000000000 QPRINT: Encode and Decode Quoted-Printable Files

qprint: Encode and Decode Quoted-Printable Files


This page describes, in Unix manual page style, a program available for downloading from this site which encodes binary files in the "Quoted-Printable" format used by MIME-encoded documents such as electronic mail messages with embedded images and audio files.

NAME

qprint - encode and decode Quoted-Printable files

SYNOPSIS

qprint [ -d / -e ] [ options ] [ infile ] [ outfile ]

DESCRIPTION

The MIME (Multipurpose Internet Mail Extensions) specification (RFC 1521 and successors) defines a mechanism for encoding text consisting primarily of printable ASCII characters, but which may contain characters (for example, accented letters in the ISO 8859 Latin-1 character set) which cannot be encoded as 7-bit ASCII or are non-printable characters which may confuse mail transfer agents.

qprint is a command line utility which encodes and decodes files in this format. It can be used within a pipeline as an encoding or decoding filter, and is most commonly used in this manner as part of an automated mail processing system. With appropriate options, qprint can encode pure binary files, but it's a poor choice since it may inflate the size of the file by as much as a factor of three. The base64 MIME encoding is a better choice for such data.

OPTIONS

-b, --binary
Treat the input (when encoding) or output (when decoding) file as pure binary, and process end of line sequences as binary data. Encoding and decoding a file with this option preserves the exact sequence of bytes in the input, but does not perform the translation of end of line sequences normally performed by Quoted-Printable encoding.

--copyright
Print copyright information.

-d, --decode
Decodes the input, previously created by qprint, to recover the original input file.

-e, --encode
Encodes the input into an output text file containing its Quoted-Printable encoding.

-i, --ebcdic
Encode ASCII characters for which no equivalent exists in the EBCDIC character set. This renders files more portable when transported to EBCDIC systems.

-n, --noerrcheck
Suppress error checking when decoding. By default, if an incorrectly encoded escape sequence is encountered, a warning message is printed. This option suppresses the warning messages; the only indication that an improperly encoded file was read will be the program returning exit status 1 at the end of the input file. In either case, incorrect escape sequences are discarded.

-p, --paranoid
Every character in the input file will be encoded as an escape sequence. You must also specify the -b or --binary option if you wish end of line sequences to be escaped as well. This option is a last resort when there's no other way to transmit the file, but an encoding explicitly designed for binary data such as Base64 is a much more economical choice.

-u, --help
Print how to call information and a summary of options.

--version
Print program version information.

EXIT STATUS

qprint returns status 0 if processing was completed without errors, 1 if an I/O error occurred or errors were detected in decoding a file which indicate it is incorrect or incomplete, and 2 if processing could not be performed at all due, for example, to a nonexistent input file.

FILES

If no infile is specified or infile is a single "-", qprint reads from standard input; if no outfile is given, or outfile is a single "-", output is sent to standard output. The input and output are processed strictly serially; consequently qprint may be used in pipelines. The program can process files of any size supported by the system containing text lines of arbitrary length.

BUGS

Encoding a file with a large percentage of non-ASCII characters may dramatically increase its size. This is inherent in the design of Quoted-Printable encoding.

SEE ALSO

base64(1), RFC 1521

Download qprint-1.0.tar.gz (Gzipped TAR archive)

The archive contains source code for the utility, a Makefile for Unix systems, and a ready-to-run executable for 32-bit Windows platforms. Windows users may also download qprint.zip, a ZIPped archive containing the Windows executable.

AUTHOR

John Walker
http://www.fourmilab.ch/

This software is in the public domain. Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, without any conditions or restrictions. This software is provided "as is" without express or implied warranty.


by John Walker
5th March 2001
Version 1.0
The latest version of this program is available from: http://www.fourmilab.ch/webtools/qprint/.
qprint-1.0.dfsg.2/install-sh000077500000000000000000000112351111262404100157470ustar00rootroot00000000000000#! /bin/sh # # install - install a program, script, or datafile # This comes from X11R5. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. # # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit="${DOITPROG-}" # put in absolute paths if you don't have them in your path; or use env. vars. mvprog="${MVPROG-mv}" cpprog="${CPPROG-cp}" chmodprog="${CHMODPROG-chmod}" chownprog="${CHOWNPROG-chown}" chgrpprog="${CHGRPPROG-chgrp}" stripprog="${STRIPPROG-strip}" rmprog="${RMPROG-rm}" mkdirprog="${MKDIRPROG-mkdir}" tranformbasename="" transform_arg="" instcmd="$mvprog" chmodcmd="$chmodprog 0755" chowncmd="" chgrpcmd="" stripcmd="" rmcmd="$rmprog -f" mvcmd="$mvprog" src="" dst="" dir_arg="" while [ x"$1" != x ]; do case $1 in -c) instcmd="$cpprog" shift continue;; -d) dir_arg=true shift continue;; -m) chmodcmd="$chmodprog $2" shift shift continue;; -o) chowncmd="$chownprog $2" shift shift continue;; -g) chgrpcmd="$chgrpprog $2" shift shift continue;; -s) stripcmd="$stripprog" shift continue;; -t=*) transformarg=`echo $1 | sed 's/-t=//'` shift continue;; -b=*) transformbasename=`echo $1 | sed 's/-b=//'` shift continue;; *) if [ x"$src" = x ] then src=$1 else # this colon is to work around a 386BSD /bin/sh bug : dst=$1 fi shift continue;; esac done if [ x"$src" = x ] then echo "install: no input file specified" exit 1 else true fi if [ x"$dir_arg" != x ]; then dst=$src src="" if [ -d $dst ]; then instcmd=: else instcmd=mkdir fi else # Waiting for this to be detected by the "$instcmd $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if [ -f $src -o -d $src ] then true else echo "install: $src does not exist" exit 1 fi if [ x"$dst" = x ] then echo "install: no destination specified" exit 1 else true fi # If destination is a directory, append the input filename; if your system # does not like double slashes in filenames, you may need to add some logic if [ -d $dst ] then dst="$dst"/`basename $src` else true fi fi ## this sed command emulates the dirname command dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'` # Make sure that the destination directory exists. # this part is taken from Noah Friedman's mkinstalldirs script # Skip lots of stat calls in the usual case. if [ ! -d "$dstdir" ]; then defaultIFS=' ' IFS="${IFS-${defaultIFS}}" oIFS="${IFS}" # Some sh's can't handle IFS=/ for some reason. IFS='%' set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'` IFS="${oIFS}" pathcomp='' while [ $# -ne 0 ] ; do pathcomp="${pathcomp}${1}" shift if [ ! -d "${pathcomp}" ] ; then $mkdirprog "${pathcomp}" else true fi pathcomp="${pathcomp}/" done fi if [ x"$dir_arg" != x ] then $doit $instcmd $dst && if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi && if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi && if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi && if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi else # If we're going to rename the final executable, determine the name now. if [ x"$transformarg" = x ] then dstfile=`basename $dst` else dstfile=`basename $dst $transformbasename | sed $transformarg`$transformbasename fi # don't allow the sed command to completely eliminate the filename if [ x"$dstfile" = x ] then dstfile=`basename $dst` else true fi # Make a temp file name in the proper directory. dsttmp=$dstdir/#inst.$$# # Move or copy the file name to the temp name $doit $instcmd $src $dsttmp && trap "rm -f ${dsttmp}" 0 && # and set any options; do chmod last to preserve setuid bits # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $instcmd $src $dsttmp" command. if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi && if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi && if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi && if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi && # Now rename the file to the real destination. $doit $rmcmd -f $dstdir/$dstfile && $doit $mvcmd $dsttmp $dstdir/$dstfile fi && exit 0 qprint-1.0.dfsg.2/logo.gif000066400000000000000000000646401111262404100154020ustar00rootroot00000000000000GIF87aëµ÷±±±¯¯¯LIÏ­­­ÛÚî©©©CBf§§§ÑÑîÛÚÚççóÅÅËXV•ÔÑÝŸŸŸÀ¿ÆRNùKGüððõ™™™ËÊÊ•••ÊÊÉÉÈÈ“““â¤wîëéÅÄÄQO›KGÿ‰‰‰á˜b¼´»ìëêqoĵ¯ªyyywwwŒŠÛêêõooo¡  kkkºi.žžÏgœœà­ˆÂÁè™{˜˜——––÷íç___]]]îêèÆ²£ŽŽYYYWWW‹ŠŠNK÷ïïöãàÝLIõ³ª¤ÕÕíðîíþþþIFèüüüúúú~~}YY\ÞŽTøøøööö«’ôôôòòòðððttsîîîìììêêêëèëXTýèèèæææööù¯®åâââÒÐϧ¥çàààÚÚÚPPw„n^¤lBÖÖÖÔÔÔÒÒÒßßìäf ÐÐÐKGýÛv, žíÌÌÌÈÈÈÎo)GEºýýüÇÆÇüûûÄÄÄŒ‰÷ÂÂÂÞÝî§Švjgú‰‰Šóóò½¼½¼¼¼ññðNLººººƒƒ„´´´æååäããïãÚ‰xl¬¬¬IHbªªªcb–І„âaÞÝÝÜÛÛèèô¤¤¤ƒ€}¢¢¢××ÖLIÜiij÷ôòššš½¼îÎÍÍÕÕëLH鸶鑑¬|YŒŒŒÁÁÀõôó¾½½åbèÝÙëë󤤪‚‚‚¶µµ²±±|||°¯¯ÂŠa®­­äÏÁ¨§§¥¥¤ÚØØÞ}7ØÃµ±±³ôôø½¼÷fffbbbæaXVÖ”““üûùWWaZZZÇzAÒÒÓîîõ†……PPPäaíìôÿÿÿýýýÌËîûûûùùù÷÷÷õõõóóóñññÛ†GÐÍÊïïïíííëëëÁ£éééçççåååúöó—–ÔœššáááßßßÝÝÝß¹€°ãjûø÷ÕÕÕøöô¾¾ÅßfÑÑÑÏÏÏÍÍÍ_]Ëào××ÚtqúroøååëÃÃÃMK¢øø÷÷ööööõòòñKGö»»»¹¹¹···µµµ³³³,ëµþ H° Áƒ*\Ȱ¡Ã‡#JœH±¢Å‹3jÜȱ£Ç CŠI²¤É“(Sª\ɲ¥Ë—0c¾,rìÈ‘d8“Ù—ÌQ6zYR¼`7þP,XêCnªj•è€Ñ ¡å¬Àކ„3©ªÊW•tr¯¾Ët¶6Æ »ôáˆ3²:«íhÊLQ¬±Dh*âPÁįÛ£h´~†‘ |Áaºô¾U„2Ò|kl6ÒŠ…ÖkÐͰûfR´@O!ðÃÁ᫯ªÜà¯9C,P2Íhî^ð`‚$nB©Æ(u¯4l|Ü<6³ 0ḵÇ °C´‘E†¦,4K÷F…GÆ-Ÿä3‰¨èn{Ä8ƒ+À §$rË=ô×(%7¿YÏ0)ÐÀ‡#Q4‹òÌTm¬1ð¹`ç½þÜ×´ì2<;” ‚XV*°¢¸ ¨ e˜µÞwã4À8÷0ž®bF5] }L‰çŒKú„ªÌã‘§ŽQÃ~ñ@ÙÖí‹ -€ÒM£¦üyèàvú *“Lqºêă¤h5edƒ´”õ„ÁC :†5”¢îì1Ëðn,®Ê2k}ñàÃ8,˜’Λ ÂC%¼¢"î^׋½ö·RkmÛ߇¯ÿBG0!#t0Å|@ŸzÀa;H0 Ší(ÀšŸËÜ5PÀ*ûË „’Ñ„i€á‰è„"t„¾ÔãaP.Lð‰€bÕ`F‡¾&Á!LïØÆ¼4ÈC‰DˆþUp„RѨBŠƒ}‹J˜@—ÀÀP ÅO`1Â;l˜° 0Ìaq)‚Ç(FK‘ñŒ¤ %bfPá iE+Ð aˆ I0:Ñ‚Cð!¨Â “Æ« ‘Œ*)¦a° …Á!Æ1Öä&HȤ&qr„c𤡉'ËèKz’'´Z &5ÉJtrŒDå(­'ÊUfR'Ÿ¤U2–k8" t¸Ç* p€ ø°C&Àp Â0g”F‘%)bJ[² ®Ì%IîE…FÒ瑃3 Ù%&,ƒPpF4¦ÀÎ)D# PxB–1\æO8æþ\Í ‰'s6¡ LèPÔÄxeœ“)QXg;£ gÄ Ê((A"¥Ì“*WÎAÕÉΆ6 †SÌò ,| ÀÈDÚ 3L‚Y ‚3˜ñÏN%¤%©hMŸ¹Ò”Lah;ÝéQšÞ•!aݼipJòd±Ôèa 6´ãªy¸êUÙÀ NÄàX˜Æâ¹›LÓ ”©2ª0 ¶0g¢>ÄÓ2žPÕv  Ñ(Œ×HÃf À˜ÈK;òU­¶£«˜à‚5¦F©DçĆjP ÕÒWP€Œ-h•°yàª&¬‘WÃ@D8M€B4¦kX U þ‚G¡@[°cUF3º¢r>š"@[›`Z´â© TÅ;°ZثֱXlc›ðL¸*„uÑ`ªmЋ@Â×ÚwŽ  c¹Ë³²ÊÕ¢c¥®@Ñzpb>L#<‘X²4Ëh2¬Ê—:”!ƒdy™0„¼Àî2YÝB ¶a i@¡¬ÖAºíèé¡È‹‚:ô©:yH‚ÝF+L*…Oˆq3 P àÖæ 11o“êÓ¹"` 'ÞÂ$¸ &Œ3”#½¶è§¿l¡ÛÀÂv;_ް. ÚÅŒÎxÖkˆ(¤YØpbp]¡OŽòþžÐæØL¾ÎȰ¡ânÄ’m‚l9¾ŒèÆê$á4øÁô9sš«ââôΞ¼‰RjËŽT©v ƒ5Ôšø”¹:Ї¡£+"äGIiÂjìᾜÀ¸F3XlåH§Ú¼^`Gz³!Š4èÇÎÆ ¯Ø€hëü…` Äe3ke$`ÙjXKD8gê”üGÌqvY_®pdbÆèHù„™À¬vOU™Œ¤Ì•ÀíóeFðT˜ƒzãD§ãT»În$HþÈ8¯ÛmC‰`@f¨Bç„s‡–k[ Ù°€ŽíN+¡[ 2£Y×9ÆS2¦“%øMš€€Ñ¿3h7{ßê(â(%©Y‡ÝCXùXÈþî§?˜à„‚¯ìBã¿'X&ì“ú?(°ò±»¾:HÁ'Q.%ÑDV'%6ÖÒ+=ñ#ÊàOONÙgªòª „3} j w°rdqÕA ìs[4G¡dv|} `\0;¢n=…Ùe51Ó Ó³×ÄJ HuMÀ <ˆaG^ZP|&ø&h¶u`x{aÝN(RLð…œP8W ŒGX…“›ÑT WÏÒ?P…cÇH#âú ¢ÒIˆ„ÖÁ+€€À6ã7RÌ}+·e!‡“09Ô ´' Æ þa±rK††.C ¸‡0m;’ µà7CØy@ †îç‚ 19æW!U2jRÆP¨ˆŠXKƶ[…¸5„¡x‰¶;:p ›wjG )iø1hs ä Ë h‹}¡S„ËqE䌗Ø)=à4oˆÉ(€uØÝÐxѨ)¶¨Ã0t° Mø‰™¢)µh,”0ƒæPÔ5lÊxW0nÐ Òð@ñòè2>  WUI…˜œa Pt>„`‰óØo”à "ð è€_ö‰LÀ…‚øÑgišq ÖðŒ¾¸ óØ)ºÂ+SÙHþ¢Àx:’ó(Ž&À„Gæ‹C0í( vS Œ&8‡àÜÀ±X³ˆ/y|# rÓ`dA^µ€D’R3@y7¦v*O)%"£À C°ŽÊ¨¢ % l¡Ä1)™,öàí’Æ“á‡MÍðjÀ% àÅ ÕÆ:à“ucY0[i‚ß° '~žh 4 É•2 ™ k•9~bF pš¨I ›PB¹4Mó4´†VÃ2–4¢‚ó[ˆ\ ¦ 0$C res‰Ö"  –Õ1€ôâÇQà—;  =ãeÕ#‡©Œ?Ù mþ@l˜yº@÷ ª·”5‘•´y| tr° ±åé[YFÀÃ0 I©: Z dà&.3€ðϾ7¹"P%Ú9²ˆ¢>y"0bÚºð ©`þiw#è”jðpI »Ø‹×uZ0Åf@Fš§€úp|  À÷ ‡ 4`Dºǧ„äøE[š/>´Zo× ”¨¶ñr)k´&]«>`«Ç•€øà¯ÇR€C:”Á*«µz|j@§°5xª؃ W«´ªÚt”› «|¡-ð+›!Bj®^9æ@mx•h6EÊ+ 4ð ÷°ç `Ð ÜÀ ÝdprÀ« :0áÚo!˜àe•×ålÝ *)€ 7§Y®óõPð€š§ k‚é0þ€@ðxdØå à§ (+²c¬: ýfãØ^¤ Ê 4k³ ²!«.S­uŠ­Õ¹H“p+€ pšð°²ª² :[%[²Óz‰—g&ª?¬Ã¡Š9¿ƒ$Ã#‹É ïZEzRð p QFð€Ò€„àf°ù ß@@ë #Z‘™s ç€ *PG§ ª )ðµÇWãZŸ<`ùÙŸ· @¬Ž ðÞ—P@è -ð §Pœ[ ð7·ð M· eY2”‚±;» v¤ & +°»ã´×j¢Ôäl_`«þ  Ÿšk) ¶›p²¢Ë¾à +ª+®I Ò‡SG° jÛh#“Yø8äW…t&€°“@ºµ Ê€M9áysU° eðPaªmWs ‘x¶Ï² SÀ ç ù‰PÐðÀÇð€„ )P°¤° €¼I éÀµÚ¶ :€zÕ`±”©(ÒÐè ©P’Ð4 ๜Âo· Ñ ]fd<Ü™ Á­P° —PGHü&Ð µÔ” @äÀú0Vì4 CpP¤Ãp·&  y”¸»Šp¥Ú–6¢p;ìJ™þ§¿\¶©“²ˆ€¿$ ¦|…Ö%ËÕàm/ Â2˜{5£`, …; f`ç@ï€ ~úvjõé •P@’p‚p}Ѐ€«p—ð ªÀÉÚ 2ÚxŽA^Ì Ê(• n@ €‰à»Vs|› ‘vJmÊ,ÊŽ fpÊr`÷p«l,],½Ï‚O0 \àe`™@ » åÜoDjŸ· §ð 3 °ð Ä4Äà#ôvŠ@:„Bh!P°Ej ÑMÃ~”Ñ=ѽð€{ h‘ЈÈUEª@þÙ‰ÔÇAÑ@fÐ-ª8ãR.fzj»Ô Ñ ÓPXÜ >+®a€@•  : ÀndŽÐ Ž ÀР ’Ð çóve[,q9=¬u \б@Cm®›€5‡ðŽiB^¶ÓÓP Ö@_pÖi­*眭‡œZÑ@>]׎ 3Ýo4 ¸ Â0€    ç€@öаZÝt)è@“!6[ ¯ÐRp 6p¾°<༪rØ'| •°²mº¸à±¾ ðŠP$÷à¶èr7×(€Ø¥Ø,ØI0Ò?ÎâÀ…=7R:ƒþçÕçy9È Qp [ ®õ¹BŸ ‚@æàï% OÑ«•Pr¸ÔlÏ<*IG™ÕýSOà o¤¬CxÑE=¾[¼ÖèÖ‡jÊ€;ÒðúmÎØìÅ@ŠnN@% Û0tÖq@úz 0¢€/EY€$~ Û`¸@»º)%Þ§íûÙÍp i€ µ«½"pG%°Õ­]Ÿ·P -¼ .Œð  ½x¤G`Û€Ì qÁ]ÑÀ‘—Ð3§§5RÍ` ⃠¯9ÝqF‘ÆÑÀ¦dŸ+—tPQª1Ày—jÎ0 lÓlÐþ Âó½i$ Û]¬¢k• Ç%  ¸[¥˜!à–¡èÕ×TPè.ZC¯©dJäÕAn”@= ö ‚! 35Oþ¤ÓUðÀ ¦°â)@Œò’-íº ÒÐ pÙ\Ĥõì'Ã} §  ‰€ öÀÎÞöpù ¯PLË>•1û+Т*g(­ Y`E&1¾t +9¬KP€ ÚVÔ¾p·°Ðç0wáöJdŽL`ÉŽ`Иôav‘(Ò_Ü Û ðÖº<Ï à ’€Æ=Pì›0ƒ’~±Î€æªÁ‘ÈéaÏæþ2=‰ð“ÐLÌQÀç{ÃXvrÂm?×òÇvñ¯> ¦|çÏt`ó42&0¨@dàÐôà` Þô@è ”pIÉȪâÊR@ŒvyÓ!Ñдx˜aSïS¤óÞ ‡@“Q°’\•¹Ì_д  ›“^4ßOÞY ðÛÕÝRàÊŽ]õ°|PÏ›p  £ÐÁ1ß(^ÀPœïCÉà ¡Þ÷¬çÓðsÚ¤÷mT “×à¢î»b€“ØMÕðûÕ€×à©ÿ'Xó H¹ΰüMSþ@=ýÓYUWo…1êÍcœ=)º®aC?Ò’6Xˆ-Ñö.SŸÐÓ ÷øú×ß5ÁKÛ€Ööœ»` íNŸƒˆOt<Î¯Ñ T¦XÜe±–…‹#s èÐ!ÈŸðÅ’¦¬ˆ1Ž=r<ÒŒSD’%Mž„‡Ëƒ>2T˜lüS¦Ç"ÉœÕ9™S'œa¸„ØàˆJ“dÇfÒLö$˹<:šT™J3‹K¦ŒÉ2®Ëš@©†ó©N*W™©öI2¶l‘(ÓºµÉÜeÊ’)3+cOV©ÓÅŒFöx¬É¿NäÐfçK³dˆ-; Sc=þÓMÑcy/9Â$· M9çT£ÈƒT—†[VÅõk“Ã†Ý ¤â:GÖ¤9{ÒÄk³(XY 5â› )ÂT€ê‰é™GžŒäMÞ­O§T½|´&±á#†áaBŸXÓˆr?z I4G»Ýw°!V̘æ¥Ã®:&ÁP&šöx+«–j+¢B -T0à óSÆ÷à‰¯…w¾€"üÒKlÆþë )Z ƒ‹fŽ@ñ¨Ìéë¿aRØåžIì3±ÆŽP[fšX²a‘$NI$,–±-?&¦ñ/þàœk(+ͪԢ°¦2ăÑâE,ÝÿàY>ºqê`½ÛæÞøTCÆ9ûÜ/`•Hâ'&ÛÒÿæ”㎙ ˜7ÀR ájg€YÅ_ ÙÙZ‹ÈÍäÿ”På€6¬A5bÔ˜±f’ܤjwáݹç©C´£‘(”é÷#Ô”y"*¦‘Še´>LêWØEoÖU=FÑ{}átü4›ì<<‰ÖýÀ…߯¥Mã–Û»hìÅgíEYYÖÞ=-‚ * w¯áw_f{!_ž¢?ÊÉ3ïgŸ ž9‡÷êçÅ*.0‹NÏu+a—ÝýüÕ„kÜ+@0G¤þе'p~OAÛðž´@«Ï=pƒ˜¼jr‡ÙªPY'·ë¹ pÚãXx¾ðˆïä3_Ÿ¼Cˆ™**Ë L^¦¹‘›:Wz*”  ÕÈ;1˜Üëb‡µÙy 7î0 0VŒQÐF| S"H¼„Y0<à΀÷à.瘠܄å7ìPdŽS†4XÈ„¹aål E*è6<ËâI"€ØõkîS£H“Pm‰Y ãm–ÅÿPb«(Cmh×,0ò$[LcÛæ0’° yt. MÞ±UîÉÞ5Ç9¾¦ŽÖ(ŸÜ6…$Ñ=›Ѐªþˆ˜z’$ØÎ&ƒ—D³ Ö0fDÀ‘1’0ÐÑŽ º˜ð¸H6!Oy‹äa’ÒAÞp y;O:%ùÊð¸Èr@!åx²ñá2†BJ¾àËð3 Pß÷dšàžùlf~–Qhv`šL”§­i@mrÓŠ3ùÝJ¶¡Ha `'“·¼ªJaQH)g8p Ü Ñ@¤¼JËdáS–ÁRá>ÿsË\6„ (o6qƒƒ&ÔŠÅd(J dM俨45b´š× O6·I¬®*ŽIË:$eÜE¥tY‡XÄË9’jÜ)o(þ2I¸eÿ"-ùùBâuT0JL@2t‰Û]Ö:²Æ*‘š.Ûh%mÐQ²º S@eð$XR!2Á­ædiFWµ ³…‡®E#îêÊ·>U•l ;Ô~µšÓmA÷€ÅþQ¤¯‰ÀÒ6Έ‚´²ÿ{dÏ—Ylnv¬ÝäÞ~ÆÈµN—o]):GÆ /Ìo àF‰T«C6^w@#i·Ûðõ°&cpy“mf²¥ª{’K°sl²q•FE/:[R7¬Öõ¨KÎÑ7ßE­x#æòþ‡çM¯tØÞ/0 *}[hßDVJ¿¯qç9™·Pþï€Àn.‡ÌÕè®71Ö+„;«ª€n÷5Ý­Ñ…Á+ãÿ´µ”)ˆÕkXzªTŠe¦>¡Ü¢ÞE6y±LcSœV/Àá0|qœcž•Ç—m0XƒÌYìz*"¡0sÓ£ä Ï8XHpFL£LôN™¶È›M„µ¿šÉ>–ÏÌ=ÔõàÔf7¦TÂ^ÏR¨õýµ—Ósï©‘*¾=3oš-ð\Á]ý¸_¬Ó‘ÅŽ†B×u(vå©Ìÿ®qÀÏN»´¿fÁl§¸ÛƒíÁ£Hî=ü*b1…¨‡þÛÕF¿8f÷΢ ø$}œ<€CÞ°‘¿[·…·åáå&ìðÛØ’)ÅŸ+s«™æÍµù›Ag…—ú矚Ómº'\Ÿ^שoðêçêíU¯{ê´|ì3Ž{ÎÔÛÑΘ·SàaÛ•]Uødtñ5-þ$Wž3—ÇøÜ¬½y¸×êóVb{x—Ò»&°>•Â>j›¾s 0~û«üë˜Ù#¥Ú³:ÂK¿§0?¹©”¤ò 5³(.eÃ4ùs¶gë´‚“¶åSÀýó ΋;è» @êK27 S@*`@²‚Ș Ì£8 ä8 ì<îQ1ÃÓ:]R†)ðÀ±À—ªGx<ÈCþ3<¾ˆJ>ƒBbÒ¼ì?Uù¿ýbCÚy:‚&ЄŒ5$äÁ$ )„:ú[£ï«À𻽠tŠ „#*xÂøù𠨆d³Bâ“<„6T»ûªæË¶çã6l—CBCf¥ L@Âë°¹Ò¦Ô)"|вÀÃ^C¹F«¦jøÃÅa€48•²Š9äÂB:Ü3ûk ükDÍ¢³ŒD2œÄ3ü¹f¸Ä"ÌDYÛÄ·¡~;”¾±Ã"E“ÓCàC:¥°Ú‘]ÈÒ £Xd¶YDD[±E¿ÀÅPsÄ#D”D3$À£¨a ÅäÑü3g8FS„¼¡BsL2Pt Q$9}þÄ/òã2ÝÛ0fP¼“_HHð©±)DY<Äo–p‹qd>]\8ÿCG_TÇtZwìÇÚ£ ($¢™?ðâ:A„ãG²0Bú“7F+¬æyvЫŸÑ`¨‚,„6ø ³“ȉTDË[; L8Œt>#ÚHË+CJì›ÉÅ«a+?’—¤à‚Ô‰P^á`üÄf|Çg¼ºh̉i ›HÅœ€hÎË÷+ÁˆüÆ-\Áœ›.„Â0Ô¶^dÊ_\Çx´¨Ô E¡ã˜ÌÈ­Ô ]ø„œ¬†Úšï¼„É$̽%„#d¸É[ð€VHÞ©?Ÿ|  ”H»\ÄþiC¸/ÜË]ÔH¿¼¿¦ŒKJqì3ê>–¬‚ƒ‹ØPΉ€D …)³< ´=RÌ:SüDÞŒ#0jiP B$˜,n,;oZ¾¡¼?ï$G¤|Äa¹è+OQú˜©ê7÷s@sÆl̸q¨†f‘'Ô°OšAÎ t)Ì,?‚$@Ëë :ðë<eتÈKРDM¢dÄÏŒ$2(@«u©P“:Ïzr(|j™`{BøþOšÑ…ëƒ*(еÒ`˜RD³Ì<,õT9IrÎ+¹˜@ ƒS[¡1ͺ> UMÚ™¤rd¸šp†#•ÍÀŒ‰—"Ìœàc‹B¤F,hOI‡lx0¨†fPfºd`dèR/Íϲ<U¸-jSÁl€i‘ Сiŵº¹BºDDìGýD½| ”5>MR!ZRI(4E;^òP§€€l2¸†(h‚0á‰IJE6XËvûRåä0è)±Á8܈J8ˆÎÐV €mø†S #ËNWEÁaÕÔdA„«FÎ Š\íH }«ª©A?þõ(Ø$¡™’€€vȆLè,ˆf`‚µ8‚#` eh`ƒa I²Ä@Ö»Ç>s™<ýˆQqHOH7h„)àOÏct?UãɬZ†v%J«yWÚ1H<¥¼)°W§TÒÚüzP ™ «”—4Ä‚-˜ÖðØlHƒn¸†iˆ(h†f€‚(@†‰ Øã|I0eø†@B€‚y7ÿÙÙDG IÕ6–íÍ0€,ÆQЂÍ[,Ãw™Oy‚@5 [u">5OŸýÈ6ˆ“¢1!"Æâãä+È6ð‚-ØNàvȃ¤ÅTEBä ¯Åþ`È‚_90Ôh¼_P[¡@ó+™ªö«Û¨YY@3=á×á ¿- Kº²VÊQ%Ï}5Ï› P„  iø’»pØd@¹h&ˆT+º3BXŠÍÚœˆ8ÀOÐMå ø{0ݱmVà]ݱ€Îa°è„Vpƒnн‰Úݯ&…(Dô_ÎP½¼ëWá% â¢,ËQÒ\@³€õ0… ƒ,8Ž©mg@[¨ƒ:À*ˆ‚Õ¡ Š… _š‘´a(_²NôMßo3 „63K†ZpÇùÅ… °€Fxšü ¸­È|‡Atþ[LbQƒ¨»üûH©8¨3×JõÜœøƒÞµA! ¨_ȃÀ\Íå„:ȃZ€Ià”}búlïE«î0€áËÝô|8‡/ ‚f`‚¢("‰¹ ‘wäãßK„6ài(’äº$‡ójCCDÞs5P,r¨LÄ-˜W´S™å Œ9`4l†5Ôã±h>8.p€üi/øâZŽˆz€D ßøc® ß+ȆˆB (h0iØ†Í &ø[€Ÿ+áJ¸‡4à‚hÈäÝÛÓ$ c c´ ´Rƒ÷r’õªý¸ÔcI™ þýÔŽi‚»å Ÿh`±ÓÝ3_÷€Ièƒ5=¾šPŠsȆ`Öãzà€iY$Ѓd¶Ö¬ÍvØ‚Øk0a(x‚' Ú!Ðfù½´íXØ’kpm±â«`¥\xLq°1±"Óh˜ªe!šœ6© I Z帴ƒ¯EFÍ X™T- ¦–(,PàÿØû]…L°ª:0˜á9hha†Âˆ¶)ø0‹ÖO³î€<È/àLÀ„ˆ:`¾›ßúí„Dx‡IÀ–HU­!²fJ…¤=ÉSx…qõíe‹†}\—BÃf‚Ä£™MèƒixȾ‹þª¶Šc8ìë¥ÇÌNN@qÀDfXœ®ž1,(E¸Qèì϶‹Ðî”î¡%_#è…èðjš&0QÜ€cÆUØ…CàrpkM…kíãç¦UpG¨µÈSÒ¾^fx(ˆ†;æ¬Õ…ohæFÈÔ‰ghf¨ Eîñf‚&`ª†3Ho*eorƒ§‚(ée`ÖÆÍŠ&(ï(dÀ„ŽˆMl ‡I „*˜ù¦ofE”pNè ð¦ÑpWØ0á“—j ÷‹z@„‚]@…2ØÉRhk|ȸî’hîÀ8…@ ‡4¨î‹íñ© þYon|È„/ UM˜#@@Ke‡,Ïc¸‚vh‡,缎w˜Dk£©ò+Çr-¯å.÷ò:Àk¨ee\‰Ñ‚4×ë,_n¿psv`¼F†j𞉀Úò’póv€ó8ƒhvéxë^6븒©/(×ÓP( „sȇoàñë®x@‘I°sø‚,X‡#_Ñ@Nòœ˜__nHà&ç3¾X÷ N(Ž–V¹—áu§hqØ*(P˜8‚!öœ€3è†G=B==ô§Ø‚ vÊ `Øó²»\H…ú(gá‹.@}u¸¶˜apÝO8€cÍ‚hþèoWÝn‡k ¶_ÀìlÑuËxœfw F%kHÕû x7‰vÀKFY£¨‰Uøˆ€€|ƒ+5nÑÙjw S…20øÒ{©FPla6S4-Ý¿NÕØtøt]f#@kÀ€¸øG]†'ËŠ­Ö·žx“PR—ä H ðî'á r†Ÿ7‰o(:pŽx@cúˆH‡K@s0¼x‰Ÿx¨q݆ÙLAŽ×‰o8;ˆz€V],0ƒ²ÖcJxñR=U±•r!:‚eð–sÀPÏÚ×î¢od_‹Å°÷ó…u^ß„“Në„s؆) ¸š‚ª' EÀ€| qþžDÌ×…@€„ Á ÎdzP… ÐX~Y•Jeñ§P„N8ýp†mpSH‡–{‘ý„×(h€O g `àƒÐ]ü·2æJr'Ÿ|ÒÈûwI‹}u|‡ƒMX5{ú}Ýx‡d-wÒQÌE†&¡Û™Ì€Í½½Še@ýŸ¯‡ÐA°éΈcLlu(hð „ *–(“µ&ÇŒQ¬XñÈ2iŽÞHçc!È„› «äᕜFS˜)bñ%Ì—EŽ)ƒb-–œU—„Øô1¤ÂzñH!LR3„¢°tylÙ  àò Œ4ecråþZD™´vR3Àa“š±#P 3lG%4ÈS­™²–]÷¤9 ä¦À‚.lxȆ‰ÐEܺ×/Èz‡'S¢P€” |EI6s2…j(“>tÅ'}e¦iíË„À•…¥ [fè±Ä®E’1«æ]¢oÕ&ŒoØ­@’쀡²L/_¾Ç<™ÆíŸ4)R±ÔMÜÚòé(2Yœ±¬ø4*ñƒT­bmï×°ñ{‹KE U=m ÃÃ-&|"É=™pC3H8vŸt`yqÂ#0Àòð¡/7ˆ8"‰%šHâ†vÈÁ†&èŠÕ,3!W4Isa†þ®è;„x"'†¡ãŠ ("‚ ïpãŒgï±!€2p AZYb/)©ˆ 4KV4#[`¨áŠôòáWŠ8¤Š,2à"Œ2ŠiÑ1¼Mãˆ:}£È&µÁ&ÇÝrŠ|LR 3ÉP]žMD“ؓȨ’€ñé`tx  )ˆPÁ؅ׄïígÐ|W…ù¨n`‰õjÃøbª0§”À)|ú`ðtHÔ •˜àÁ «Ð!!Ñ,“Ì´Ê„D_È‘H'"H‘¸R˜ J§r.ºéª»î¹§ˆ Š R|›‚ª| (`HÃDµ­¶Üz .þ½R”„ì*¬ð)I”/½&BC*™\óDK4Má(°|’Ä·òŽ+‚¹ ›Œ®»ð†,…$"7Q áÒKÓEѯt2Áâ\²É ?²½øê˯t¼IóÅ9ö°Ë)Ý;,a”ÉC©´HÖ4㙵{q„2OHCmˆ€$4ô ‚ )Tr .6Øm.•¤ 1àÓF7Ó4J£«¸ÆZ_¿æwë«% ÓÂ+¯¨@Ã'§Ä]IÝwã­· "èÐB ¤ÑHxA¶nGn8âÜD»Aq 0 ´"Iì/ÔK‡èþ=ÿÁ'ò $Ч ÚAv 0F3%ã Ö‡V!‰Èîµ»]÷¾¾ñ•OÉ[^óž·À®äiQ¸F,,pWLàm—Ëœˆì†‹[èM §è$úŒk4z¨{L2˜ÐŒ)d¡Àpƒ(ô!¹`àƹ„áÐÀ‡À‡ 5…&€­fPÁU7«Vdq`äh ˆ X@|D"T0ƒNô@P´c:QÅäãip„5¢Ð ‘Q:L€¥Î!‡w€þv ƒ(‰4˜¡’–¼$&3YIsœƒnØ#Añ9 #ÑzÎ}ÆvÈDº!”¢”ƒÚpsh²–šL:( :Øá‘0éžàCŒDƒ±ÈÄ"íðŽ ¸A’æ ¥-£YÉ4d“¼T¦Îk°§Z4q+CùÈH¢ƒ’ÒÄ¥.y9ÊL˜RZG ÐØÊF.Ä‚ Pb h ƒ:¦KŠŸÐ#äò±õ@Á>…$a2”ÁŒ(TÝ2Aa|¤"­hÅ*ôQÈ\˜F3š“½JŒ%c˜0<€±%Pb±m8‚ „ pÑV@÷Å2An`!þJ\ØŠ Ô™ãÉX¨.|Üø‘…jT£ ^ý*XÃ*Ö¯VÃ× Ä6¾ð…mhuÎxνÒTe4ÁÓÈ!¨ªV¶^ ]+`ÇÊU¼ra¦Y­ÆŽZÆ#Rªh]+!®a ,ø•«– lX-‹¦²ÖFHO'4CÖxìZ³ºÕ¿bv°yi[ßz„c0õ¶¥­WÛ ©6BèØ(ð‘ÓVì®H*Ô6ˆã ¥;éAIx$,ã ΠÁ GÄBÀ¨$0Ȇnp Ҁ´úEÒý˜©©;Ð UÀÂ\˜¢ ìnwþe0-Ë0 04‚ ŸuÆ E[È™8 Êx°2˜À„êæw ÒF4¢…'0cþ0ˆC,b7O81Š;ŒÃdl ]†‰›!ã7#ÅM1Žs6± ìeÛöÒ2áÅ8jicaQ6’‘ f#»ÛÞ¶í²•Ýl¹²yÙɨµ+¦í Ä>%Åæ6,á\[c²ºÖÀ¢‘å-[ÚÙ£-7·¿}ìp7»s‡%¼1mWPA„L]B i8zÕž‚†ÌeXÇZqàn0„!œíÙúOM€OI7¸è£  né¨qÓkÛÁ!Ïö¶9Þñ"b£ÈÐîó¡ýå´JÞñû#?zÀ°‘.}éEÀÆÓþ¡NC˜Ž)‚+²t¢ƒ#®D¦ÐnW]qaþz.` .Hƒ‹J7Í“aó+ç³ÕyÛ­µÔÁß½fMàÛËr—‡:æÖ@¥L_øBN‡Tø@ÐYчwPÀâøÀÏ— Íõä%ðIÅdt|<Ëk]4ýA§óo} |hƒJfäe4Ãêú3ìa À` @F,¸ÈôžV4B‚.Pœƒ Qè4~$¯ÔæsŸę́CâU>ÆB/Ç•¨ÀÈwÿ1HhŒtV¨`öC(ƒQ 8ƒV03"¸#.R„-Òb\!3LC"æa€Âx†1Òc2Jbº%²—øe"­l"Ìu"ûI"FPAŽA ì‚ |@8‚8X@ ‚:tCDA3@Á†ñØ@3@¿mÅL$ZŒ¡¤–m5šMª˜^Ä$XlCª‚@TE3œ¤–5A^8ÛØPWRJÙ†-ÊÙVBᤖñX”MZ‚9Ù4A3DÄÂ5žÂ €B78ƒCùaA8ªÂ%‚tƒ#ô#¨þÀ=”DR*e‡5%Eôb‰$,eUæÉœ%eaRZÉUBÁ\íÝÅpAéŒ&‡1Ac"¤$þ‹3,d|(ÞAA$ú9ÞDF¢Æ\¤ h¤,|Ä‚9|(ÈÁ,d ¨8,[yƒ,€CÙmCHƒ×å‰%ÀÀ3§pÂ|V3¨Y!ì&sf)T‚­X2H›pª ˆC*Èœƒ5<Á2xÃT§7dAIr‘˜Œ+Às‚ ÌÂ5¸•šy ¤'8¸¸®+B¼Õ¶!+,goÎ4\£hÃf8 {,Ã4¼e €‚#`ÁMüa.ŒÀþ¨Äì-z šÃ)›2(Ü|~€+Ü'‚)Cr’¨p>Ã,°g4ƒ,ÈÀ(žB’pÃpjœ‚j.p¨,PßLƒ4AªªÃP ph.°¤!LA!ÀêÀ*Ͳ€*hgì*XôªÐÁ6LZ5\þdÄ¡üõŸÏ–i -RƒH”Êæ‚:P_,pèˆBðüɈP7<Ý3`” Øì «8«¢`ÏBª~€ÔÃÙë âërÚ¾vE¿î‡¨©EÀ&¤À °€ Ì_*ð:8!P˜Ã²Â8@" ¯:ì‚$ü¬Ò€ëC om"€BçQ €çB x@¸AâÁ.\‚$T­ B˜š£h*=$è3°Â%\B$w¼B#¤êDÂ1й€ËÈAñ'ô @‚\c Ð@¬í·mþopW£–ª àá.`€6HꀴÝ`Ïœ¢´@" î(Ð HÂ*àƒøÂÂ=ÌžA|€´€(ìñ.Ѐ Œ0+ïH( ê^bŸ&•‚<˜€$XÀ5L1Bb©–VB |‚:ü,丂+$™5¯¨Ù±'èÀË4¡ÎÀ!BPƒ$?c#¼ $² Ð@"à¡'x$¤‚ÖJ0¼ج' 5+P,¿Â, ôü p¤+xÂ/Øl$L>pCª²€ à ÀàºÀãB?–CÃB*ó 3@ãþ1¿m2GCFbÜ µ'°B9À‚»@`, BAK;À/ 0|‚ ä(Ø,@‚¿Axè$2)¶@4áµÿ‚ ôÁ$œáêô‚Y1”ª…” áAãÊHÈ@ÎîBô(®€ìÂ/üÂBdÀ<sB"{‚H(hmæÒ@’(¤B"´ÂK'A'(д0\‚*`À€B¢/zØìí¾Áü6{W6†Fƒ2¸S'¨:ŒÂ°B$—@'¬Â9¤ÕV/‹$èCXËE*|l9tµà(\cÚº5ÛJƒÛr0z¥Ð1B þŒ7ܱ °·{¿vèÀ+ܦ Bð4v.0‚*4wÈÍð³ ”@À‚ÏŽ¢¡Ö®w{ÿ{{‚6àCÈn«vÕ 4Cê«Çö«Ì¶6¼Ã|gé(EË€=ÐA¨ÃÌ7x´\‚ pv6t33*0—9¸A#Ù1 ð÷*Èðº€P¾Á(2³ ÈAxzÀˆ‚ÍŠú¶€þNÐ@¼C7È7}#( ÏÀD2Î:ÌÔVOt¤l-'‚û4,Üæ5&Ú¾5Ë52)\£ Ñܭκ$0Q9¶‚‚”0P#ÝCÐ1‚O€þ CŒ{Àײ‚$‚|læâ1t§À)Ð,À ì‚ Ûƒ8àà‘#ùα6¯œAá~üA Ð(47r¡éé6eJIs”$më˜AGk >0;¾l T*˜CÃú)4€Åru[ÀŽ ô@$‹÷ àÃhí²Ô` úã @$‚$Â:Æí|‰%p(Ð@>KzúRÀZm5H—wXƒt"äÅ–C°/û¨O„³„󯾢3œ #‚½¨@$ ºÔ_Æ;Á¬!ç‚ B$‚8ÂÄÂÌ‚p(° Ã*§¬²€Àª ˜ÇÈÁ :¡Yæû5šþŠMÀ!8,¤‚8‚4¬&··’—fC¦vLl1qüÁ ì¤åë9i ^¤ã)ŠÃ5?P_ ƒ¨ô¹¾*ˆÅþ|'¤Â9pÃ5|À¤âàj>]`ýGëØ®žl., ,ð5<ÝØ7· ؃ ¨CŒnláØÜo¨~Â'ìžO€4‚Ûêx·‚´ü»s(^ ,ˆ‚ÖÞê Øƒ#Dî2ôê…í›v¨'œ‚hCÀ9ÎJ‚ ô+¨ ˆÂs¢ÖÏ=!x8@Cœ ^û9#?—?@¨Ë•‹‘˜O‰D­˜kÌ)m¨DXPÄ¥€r€“aþÇܶhÊŽ9’dI“'Q¦T¹’eË"HœÕé0“fM›6àòŠŒ4-Wy‚éfQ£*a°çÈ’"@¡FyŒ Žg Y˜À Â$os=€Ô‡…cµÀ'ã¬CTïÌ,‡§À†Y²Ô͇îžÂ\ž:%$§$´½ºJpL`YŠñ‹Ï†%XI"ñ æMc–¬ÈËB æia.1Â`mã ² UÝ[ÎŽD 2ta¨5°¹X¨¢q/Ö”Ÿ"5!u|Œ*m}fy“¨ŽU§O3€Ú°yH9>Œ¢&‡…h&zrÀÚu0&¥ÙÀj þ‹’ì¹,—_’8e—d€/—72“:Ú ‡…x»$ãž‘#0¬i‰¤ QÄ£z)&£P¤)§Ä¡â9ЍSDJ)G¢p ÆE*¢Ydi\Xc YFYèXdXCA‚\`ÅIÔ\À9@Y²rŒTG–Y€1'9H…‘r¬â«È*ô1€V\‰ Üh„9úP€´ xú$.1H ¢+`8¡‚H"€ pƒºQ=¥#DRÑ T@<þ€6*p‰WØÃcÂ,.q Xèƒ|Ð/q€{HH…$^PÅT`î€-8„bQf(îÊp!ÒXÜo¯ÀÇ;Ü€¥>ØmàP4¢q ú%Â-€D+Èb38‚„ƒR´ } ̆F8¢‚úhš ð!ˆ @ 0G7¸A†w´B/Ä!R€W8‚ï(Ê@H¢*(€ ø !0dáksß5yô’((,}4a€q,,Ú"Ò&úºYGíÃæJà÷„*8¢°a*ì!t˜# mØ€(ú Tvˆ%YÜÐ7€â ï0Cþ#ñqÈá@>*“‰Z£ XøB,`PŒt¤8‡#¬! *p¡ ïÀ‡>PÑ;Ø¡øˆ©&Á…k|T€,hGP“Q;Â2¨à9àC……(P± Üci‡9äЇ|§¤|ŠQ ÄbÛøðS¾€@>8²)uqÊ€ÎjT@}CΑ tdÂdF3˜°Œ(\C¸‡Zƒ:TiL Žhƒ(± }ÂñrÄ5ªP BÄ¢ l%)(ÞцX‚ ÒÈÂ'à ÔŠâ¨ÌÀkx’¢ÈL3ºÚ)Œ¦œï4®¾þ¶™Îš„A° @šP\©¼$èTnÒ v>ì¸*)ÂQ£€…Fˆ# ™8GbñÁUÆBâˆE#¸@n€ÉšáˆI˜!g`àÂ4¢AÙF”¡ ø889 g<¡ѰÆ|Å `”aœ”F3–Ñ„(XÃf@Ç>É 2HXÝÈ‚4¢ à2d‚ûœ7¬&$Ã`ñ¬F7ÌÑžs¸wæhÒ0‰nlƒޏjŽ™_d¦Ádh„5¨0…j| ç,…Ù+a0lã°êQ2š,t£ E2~Ñnlã žñŽÀgTcÀèh±9&ñ,DƒMxÂJ'þqŽö [®FžðgT `±„ɰå*@¡ ËhF¸!ÁZu“(ÄÁ@ˆiD! UØF _¶ãÏJã º^waÍ’—L›é ƒ $á†kìqGb›‚u•‹à Ñpg¬KrŒd, S¨‚5²`jL£µ* í´£á gDcÕ°ªÐZ*tTÚTXð2–ÁŒhˆ¶¬„Ȩ™¡Œd$ƒ Oà6²p iK ËHœ•ñÊv2 Óîv5ª0J3¡ÞѨÂ5¸ß”ö›ÆÉF3®S,LcXèä5°åhŒÛÒ¦6ºýí„7£Ò̈Â4²@}WãÕ¨­þ ÅAÌΆ·£ðÖN!ÛF‚âŠÐGu‹6â„ÀÂ…—qt$,Ã0çÂ6tZ)  ÉPFœA…jä; !wF¼áŒ ?\æàžFh«€â'0ìV߆»Ý|ôW#›ï&yÉ®K“0H¡ ÄŽÐkeHØÊ½Å'ò1 Ÿì½ïI?˜ÐÍkÝßü2˜  e$vó•Fwé—!o8{ÝÏPpžÐy£4Ç8‚2ÒèØ3ÆLTvæÜçΣ;ô4¶ý× …f0#ê;O6½™ÑŒfÄþôÑ_~¥IÿyÏsž G?‚×Ó=}Î_õ¯¶<æK?þÐwö%ù.ò›¡|þft¿QµŸ:3\û&ðžöçϰî™Oï˜èöüLüLøfÏöî/þôoö(¯ï 0l˜ð»Ràìà š! /f€`¤«ò’îP0UPK£öVðû¯G’nÞhðÚo$jïûæÍ÷ÎòvKm¯o%|ðßTPm™°Ãæ—ð ™°ÿ¦°G†ð{0 µ$rƒÐ ³0 S0 Æ {ï #0ÖJãš*°(av¡a F áiá âð› ²`ôp ±© Q{œÐñ õMÐ ±»rP‘àëh-ƒ@zþ`Ì! ú­ëà¬þ°mïûìj â»L ì ¢¡ùFÑ '±mñq1uQÖ” ó¢Ïõ¢À†€ V±‚ €ÄAÔŠŽù”áèÊIG¯£!üp¡h!¸Ì®ôž±÷zíg1wÑ%PÎP°±öÚQâÍÉq §°×1›ÚÑ ñ'±´ààØ  Ò ¯±iÚá @4Ì­ \ :P` ²Û¡!cà!!’À ¢íñ$Îá2 ¡1%oq%›À+Î¥‘ápRôžñ%ã~FþJð¾ üúŒþþ¶Ðë2ÏmpDÈñq’át xÒ ñA!ãð &a¨ Õh~:+»‰¸¡ € oº”Í !>à-a p (Mç‚ry¡jÞÒª€Ï¼Ìïô²³H ³4 `ÿñ\á¼!ÎßîR-¡ á-3àæÎÒùŒôÒ-?€Ì2%f0 ó0“¼qî*’*+/®R,¯ ÖȨ`Æl¯ ÂÒ6&ä`°`‰Jä(æFA` 2` Fá\´¢€"‹ðš\&U²ÀPrÈà ¨`4(ïlÅ;GÔ3Iž!€ þ¥šAçÔð\P`€“æ 4¡";aò> UԡвÀ^ä´£5faµbQ?eÔ³5$E=ác `€žŽâ.3%²S6¥¢l8•Ë&Ú€  àCÌç7A4E¾!èàÉÇ%ŽÀ.c`ÀÎÉÌ Ò3òì°^Ä}Š¡ %Æ®``!d€Ðá ¢!F¿¬ ¦ RdAäÀb º¥œ-54’t 2¤ @3ÔïÂj0¿« Á/À6€8ëe*˜ $„Ì€NT;'˜AÈc Pakf!"/€X-0Kº Õ£cFVþ´{| Z@á#n/T4S‹B0@€qÎ:ÆA@dà©ìÀ  âb ©8ƒ{”í`à ˜OC„*¢Á‚xì¡ TÕýµÂtAFIDåŒéN´ûÈàcd ä@7_%*”Í9­ùØ1ž £Z äà šb¢ƒ 2`!œ@jA ´%â êu ~A`ƒä ÀâNª@ <&¡ ¬l‹vqŽ`d¡3ÿ’7‰vg¿‹ÔU.z ì!ôµÿŽjþ5aòª€œp°mŸ/]—ª6<‰* ª¡^ &g-N[IÁ3ÑÒüzVb§ 0µ&" uUwuY·u]—u‹"VàacoÏcQ÷uuww]·TOáJöd[â˜2~ÁT @A^¸ €!HÖ$oÀ@ºN*ÿm¿Ïzyð ‡P*E±ÿ”M¼á;Ó‹b1 »W{‹pþ•¨`Πa¶aMâ–aš•JÀ7øà ÷/ê¢æÊzi0.Ñ}•JÞ ¦áÍtðzçM*íQÙ–X3 |§€7ÉÕ·7«a]E`ôÁ :DÞæMl·7 ¬!qÒ„¿—òÚ´ ·:aè Ò@üb Vaò•QfØ{)ÕþBá2\á½°à3¿Ð{¡ñ:Ï1:†àN`Òáà†ax`ÄØÈØÄøŒÑ8ÓØŒÅ˜àáá˜L€¡9tN¦€ ²x‹{üxŒË˜ŒÕxÑ8Řàøÿ@ >!Î!†Ï~šõtþà€æÅá!RX!Ü ¨ öÀó :ï è1çÏø./ž`´ öRïßÀl|s!ÞÁÈດ–Û•_/öð÷žÀ¤áàw ÐBÞA9Ðý öW t`Ž%€=aPÁ ®a üàõ¦¯èAÛÖͲú|§¤aþülœ§Áœ! Œ"W8™?‘ÈTh+x^™”½1ÞVx¤TáÁ¡è’ù¤´Y ¡Ṙ¡ë”a€YùdX§W :!ÐჀaVð`(€ ºTâFYž—÷ÒŽDRËV…+•IM–õN6þñ— bTÀL ŒZ L ’@˜º©ú©¡ª“@L@ Œ:¤@tà6€¢@ç`â ä t ª:©“`©£z­Ùº©§ºª¯Ú<Àú`\%’—!O#A&€áf- ly@^`32z3€ ²À9¡÷¸ œÁß’¡-Så\áÝN²Ür!dáN>`¬Ò–ÈC2©“ž‘à+b f!™â ¡à™½&¦Y• —7t@Þr ``Û¶Á9ã@!ÁœS dá ¸@µsá¾€µ Àœs!ÖÀ³Ë`@™¹+ÛáÐâMlÚþ<,¾d¬a ÂΡ= (à0Ì"…BÇ0£ ¢ £1Êàª&™oÉ ÚrVÚÓé¦`<žáN` ‹ì{!À!¦3”½”*ÅæÎdhh WT^¡T|ÅY¼Å]ÜÅ_á˜éh ÄU <º¶^”-]?§˜©™ áRüʼn¼ÈWü`aÆi`Z !ÊTQ(žÄáø ð0ΦÀµ]àœ` f%Péx (€ á$¹sMf!Ìb> ô,i!4ÐÀ ¦`1` ü<<§ ˜apŸAÌÙB™OÁ¿`¶OanþÛ¤›?ò4`@(`!.ÀÌâîÁ f#R= t Ð ®á4î| dÃhã–Í!8nY¾ Â¥a ÇBG!@ãÛZØ^Ái£á_?ÎâÄ!¡Ö ÍçqM`ð!FM°Âtà ]A!–À .À/ž‰° ¿[=,Îá pØÍ‘=ÀaBíI¡vÃv ¸@(À´ì`ÜàwΡßýýß>àžÅ,`Dª¤R—å³œáµÆä¨ÅÌKà)¾âýÅÖåàßAz¨ÇzZ"¢ ÊOA쀜Æ`ÂËE`RaB‚V!¹»@IVÁÈ b=þrÀì¡üâÒ<Í\{ ’à?ú4c øà¨a[s€¦i°Ÿ¡ZAZÏBÝÑMÒ±" ÚAVN¡ˆf1þDð$RDAA~¡ìÁ¾à{ ~¡åwƒì@¸f^™UaTÒ ÀbeQ!ÑÕáéAÁr5Ä Ò^=†³‚ý,à þu D#ÀBÜ ŠÓ^¾  ½ Xm Û`ÃrñA‚ò'AÀ …#!0èÀ+jÿð!üb ø´LM•mí"Џºõ l.ú¥ú©¿ú±Àvë \hÍÚì3C⻘ ¨ þ ®.¾‚®úÑ?ý¥ÿú!Nû›¼«³&WÂמD NA6ÀD¥ ¼ÜÃå"—§ @YÈ…ð×¥U©C¨ÎÉCú– %º2³æ#%P |m2xë@p õm # a9<3ZÀЉpL’ ¸9Sv$hÐcÇ’5ƒá‘#FhF[âd×§]ì¹yvñM<ñ@ MB‡ä€ÙæÍ£‹N-^QóÈê2Ž y“âÔ ’`X"t"I†G‚Úl£RÅbN)Â*üòø«Õ;s&òðJŽ·Qe€U` DtÀL[v̘ê"É TÎÅÂD@`¦4q–¡ þU4òáÌÅJ’¸6€!ÄíµŸ€2“;×H’DçRW€™jMR«þ>¼øñäË›_TY“'Í 4kö„Ù²ùôëÛ¿Ÿ>3öíßËGrDßqËìßMäÇ`ƒö!ØŸ‚Ê$ãÝyÆ¡Œ4b!$Æ)’ÈñE4 23EGºIÑœwõ É=xÄ‹ Ìâ—V Ï[ Ї9Ü•‚0’ð‘Éo»`p‰$~E”JåâB=Ìp€Ž%ñ(ÝHÃL—^.¸Œ3Hé¶B$3 *‰H¢B"}´a†bÒ‰6Ú¨ðUX±à  ÁMtžœ‚ Ã!4Pa±Ø•Sþ ¨Ð‡9ŽˆóÁ3¬h3W]A:‰5X(VÎ ŒÑÀŠG£TÀ;¯]vx„3¨`]9N¤Ò!Í$3`k¯Å6"B &`° (XªÍ ‡ ¤M>ç4Òˆr&èÈK ̲Ä3NLpÉ2í’ˆ\@Á«…ê®ËîxE%”PDÍKo½öÞko¼ò# xï/¾Œ¯¾GÕ¯ºRñ[‡*ä 02Í5ѱ€b?æÈ^tÀxŠ6÷¼ö†0¼ˆ•.+ÊÆ¡˜­}ä‰'¬l˜ ©•„0/`¥N/ô±ÄFÃ`ÍQP1&l•$1C€Øƒ*€lþL7(ƈªèÐf+úÂdž,œr‰=â|_Cb¥'Ÿ$"Œ¾ÜÝ`pÑM¨°âÉ/8‚ì9\dj %è É+3ŸÒB>¯ZæsOæòKͬ\î $ 82ý²æŒ²Ñ6ìÅ&t€tà#Cà8ñIr8’œGnӀʴÛLòŽ€»À”´ÀèH$ÜnóÎ?}ôÒOOý…¾6†¿¬±Äà€ƒ8Xå´z+.2>rÀ(Âù¶gŠË.ã>竲‹ èL23°à,à"Z?(™À’°Çù’  TÌlf]ø‚5¬Ñ4TB/È(Ðþ†L”ÁY˜âˆ$¡‡èÃ3ѳ‰`€ Zt—rMxºp—` †Ë‚+¼7Š7ØLw(€¾pñ•C "¸$è‘t"¥¢,@q9°€¿Àƒ øi0Á;¤ûÕé„Õ„Òqˆ©ÅÀ‘Ä2ÞåQvpÄ6V9QÄâ[ÊQFqAIÀ¤!ºêIr’”¬¤%ŸW$D!f8¨A‡Lx2°Ž Tè¾ó¡M}ì£>È-@3j™¡>Î×¾{˜#3UÚ‰ `€;Ó zP;à2‚ÝëÖ3žù ¬5‚ t”$@!©þ/¢Ñx¸&È"`àÆÀ C’ mkß-ï" ØaÌIh€2ÂOzà f ©\ˆA°7!Eð° ˜™zp€.æâ2èÃåÄÀmàÚØ ^Š4®q5¾2]°¦ÀŒhàÄTÔ jõÏ]ÜE<ÙÛªxHGX#Å£Éi¬N¢ Té%ŠÔ¤*õyFÙÆä\0I Âr°ˆ:žÎh¦3„ËX°BˆÂ/±éÄ*Ü1ð¦I3½+2 9a´O­XE"œP€UP£'êÁ!6дì]âm0@ \m(g5ýJnþT¡›MP†¦À5…ÂbݨƤA³Ýóël›Hô·G€‚žw¹'+>ÀÉå [Ñ] $ÁY„ʤ=xÅ;.£‡ÂB¢†’=ˆ—Žb‡pB"PÙ((ƒ%Ý“ vq0P ³(ž'TÑH$»(okµ!ŠãÜkp?ò†#Ѩ×J0¦aÔ¥êw¿üEê1šP hüÆ38„=ì`%ؤ€Ž0lr€ß€u°NaÖÉáÂb¨"*pIƒ5|à*{¨$òÁ‡Í‘ °#ÄÐ[@Xç#íÃ:€:ôøèò™A Y€’q°#(þ³(ËpC‰äªl(XkOÇ, ~ÉY:ñBž~†k÷ÙŽáZ¯ ®qs°! Ôúèƒ À‘9ˆ£ÈË[ œñ+)`â°)¬ó aƒ«ø'z ƒ€ªu}ˆ!nê„rÌ¢ioèÁTžd¬O Õ@M_ ëX?ïʈF7Z¼'  ° V¤kŠ#ã# 'ÑÝìbïN<±E'增HBxE1‹'±@x…=ä`‡ñÁ&¼9XÂ(M PÃ/.X„ dÆ$LçC,€‘‰t‹Ð\à‚l1¦ƒT˜þ Ì €hƒ ó6PnÆ2žàŠqtdá é’µÛßwÕÕÆßÔÁˆ7°BwÔ]%V€64bÙN +q9D¦BÀ‡àá‰RJ:ø„6A2T†PeÅ=ì`°¢xåP8ÔèšAÝ(/ý/Öγf€"!¸°m®þ²PGñrÁ¸€Df{¿ŽËq¾¬°¢ÐY”yÚ¿ Ô³àog²·0ÀдΣ2(^ð‰B¬!æèXñ D²+£øÅ"¡ƒÍý>øN°‡Èßz¦‡Ô°è°6ÒÐG°s°3&.`z¹  õ¯ð&£t.ðxÐEœ§ÔpÝ.æŸdöðåàx€­Ç| "]w5hƒJu ‡F™p°à_' ²0c¤ xÀ@×9 oÐàƒ.è‚N€`Xøðƒk„2 ’p'``ÔЄ ¨ðn@þùàžà„z—T• âd Bð NÈ °Ð Nà‚†€NÀâp S‡xˆíA ®0 9à‡†ˆ$p„HRŒèˆR(O4Íà^9@ R訰³Ðˆ~8…Ô Šªˆ| ŽPLè„:Óg}@ y¨Dà*`uoPF$Ðeðžd„²@ *P^’@9ЊRRçp à‡oø 9 rð?„ FU™Øˆˆ¬˜ ù0‰  t`0 ¬à„ž /à‹oˆB@`à9ç„O—øÀ÷4a(ºè NðŽ@®vƒ ‘•t Lþ \`ˆ• ù`¢`%Œ V. æ° Ö° i€ðO’pp’Ð*P±è úÐ W„‚«€nÖP _€ùà…ÐB e@}*à|ÈkHé· r.) ‰ ©Ð”w² ÆQO`YÉ@–HÀÍ€±ð­Ðp R‡„•x‰sW±`Ð/°k™° ÒÑ@æ`Õ‰ ç0 e° —`”÷ öÐ ©_ ÛÐ è€   …‰v°¢À–»Pmà4p m0 â ¨ð cc‚qn`ÕþØ $‚à“f   0~¼Ù XÐ –¨9øX@ p— + Ûn¢ÀP0 „€„ ¢p4° mM™’¨Ð¸Cï0  ’° |@ï€ Lð­ÀQ4ÐÅD— Ì‘ Ê íB ˘`  r°¨p9Á7€>y YÐ ™ ©° ¨ ïÐlS3Öðâ@t  £rÝPÎÓÐ7} (&žÚÄ e ö€ ùaÝT0XàÀù€ ö 0J58§Oßx0ò.ÉÐÒðæÀŸú0~èàþÕs¹ S° æ`÷ û˜QðPPŽÐ¢Àc @NÜàÀ°€€ ¼æè`oŠ ÷@À° X` xÊ‚ }@£â`rp«$ú [y‚Ö Ý@‡Åbàr | ?æ_àbzSêë”\ 0ù™n )Y Ë Ó™ Ì@܈‚`tÐçç æ0 _P QÐ S˜  ­0© Ç£€t€e·*€ú•I‰  7 ™Í–X‚ ™À ¨€ ª¯ûj!Â9Jà±`W1Ao }`\PÕð;çðþ¬tèuH ‰çDâPÃÖ × OÀÊðÓТÔ‹ Ñ€Ü@ç€ç`±ðXòÑ Tð;i0­d ±ðštATPp4h Ù Ó° ` i`“À 6+¬F‡IË`PÀ@;O° M-; Àð}ÜU€\0)f ±à e`#DÓà ÎP_ð²™`gq „Ð e€Ïêqq ³ip™žr ~ `ฉY“ð±Ó Õpµr+$$ ÎU°³èÀ·Pk "’ rÿ𷛿àqoË ÜÀ×P7kYM ­±±™þж` i³dðUðYYàf ç Ý@Y°´†…æ@`0 Æ«»ÏùF˯٫½ïb Í TPž“ Ï ŒÀ‘0þ³ †&”„Õ@¹Ò@”{³#Ḛ̈4ÕpAÖ ¼Ípdƒø[Yp X°]MÀ÷Û¹Y@ËëY"‹dâ Ó`  ¿T0¿”+eÒþúù‹ðû‰Ë@!¦« ø‹U0 †XYd¹ Ù: ; Ñìá ˆQ *, ŸÃ9LÎÀ ,Àl Tp±P0Õð·< ˆa lˆí Ò ¿1ì¨Xп ò7ܰUà—|¿üÄþIˆÒà¿% EÁLÕ€!ÜÄ; ÎÐ •u0³ P@ ÌÄN¼¼Xð‰ Ò Ò€¼¹ÍpÃcÌ¿ó[ D¼]S«½‘,É’Ö ¾¨ qie | ñ1Ê  <²H/fÙû!Â/”¬dë¡ L ©| ïQÇ´ E@ ² ² ¦<²µ¬ «qÉ`–õaY[ê/Ç\Êô±ÌwìÌL0ÃŒ×LÍôaÊõ¡ËA‘ ÊÊ­ŒßÊÀLÍ¿ŒÀ׌¥ Ê«Ì 2!ÞœÌÕ\Ë|Ëï‘ÎÃÚÁƒÌÙ¬Í <–»lÌf‰ÎÁüµO ÊrÌL ëËéÜϲ,ٌЭ¬Ï“lÑüÊËj Öpžp Ú ¥1 E03/¼< ï¢/¯ì/#/(½üL–ÌÜÒ%M/0]}Ó8ÝÁÿ‚0<­Ó'ÍË>=00ý/û2Ô.=ðòÒAÍÔKÒNÍ/ £Òd‰ÊÅÜÓ3Ôî¢ÔwÜÕSÑ“Ô6­ÔS}ÑgÉ9Y0 CÚcµJhØûj[ÖuMtm×y­×úJkP”±0lÜP Î_{m؇؉­ØÍ“ƒ·! ôË –ˆÕ‹MÙ•mÙ—ɽ\ÊË<Ù˜íÙŸ Ú¡=×'-Ú¥mÚÔ;qprint-1.0.dfsg.2/qprint.1000066400000000000000000000106061111262404100153430ustar00rootroot00000000000000.TH qprint 1 "5 MAR 2001" .UC 4 .SH NAME qprint \- encode / decode file as RFC 1521 MIME Quoted-Printable .SH SYNOPSIS .B qprint .BR \-d | \-e [ .I options ] [ .I infile [ .I outfile ] ] .SH DESCRIPTION The MIME (Multipurpose Internet Mail Extensions) specification RFC 1521 and successors) defines a mechanism for encoding text consisting primarily of printable ASCII characters, but which may contain characters (for example, accented letters in the ISO 8859 Latin-1 character set) which cannot be encoded as 7-bit ASCII or are non-printable characters which may confuse mail transfer agents. .PP .B qprint is a command line utility which encodes and decodes files in this format. It can be used within a pipeline as an encoding or decoding filter, and is most commonly used in this manner as part of an automated mail processing system. With appropriate options, .B qprint can encode pure binary files, but it's a poor choice since it may inflate the size of the file by as much as a factor of three. The Base64 MIME encoding is a better choice for such data. .SH OPTIONS .TP 12 .BR \-b ", " \-\-binary Treat the input (when encoding) or output (when decoding) file as pure binary, and process end of line sequences as binary data. Encoding and decoding a file with this option preserves the exact sequence of bytes in the input, but does not perform the translation of end of line sequences normally performed by Quoted-Printable encoding. .TP .B \-\-copyright Print program copyright information. .TP .BR \-d ", " \-\-decode Decodes the input, previously created by .BR qprint , to recover the original input file. .TP .BR \-e ", " \-\-encode Encodes the input into an output text file containing its qprint encoding. .TP .BR \-i ", " \-\-ebcdic Encode ASCII characters for which no equivalent exists in the EBCDIC character set. This renders files more portable when transported to EBCDIC systems. .TP .BR \-n ", " \-\-noerrcheck Suppress error checking when decoding. By default, upon encountering a non white space character which does not belong to the qprint set, or discovering the input file is incorrectly padded to a multiple of four characters, .B qprint issues an error message and terminates processing with exit status 1. The .B \-n option suppresses even this rudimentary error checking; invalid characters are silently ignored and the output truncated to the last three valid octets if the input is incorrectly padded. .TP .BR \-p " ," \-\-paranoid Every character in the input file will be encoded as an escape sequence. You must also specify the .B \-b or .B \-\-binary option if you wish end of line sequences to be escaped as well. This option is a last resort when there's no other way to transmit the file, but an encoding explicitly designed for binary data such as Base64 is a much more economical choice. .TP .BR \-u ", " \-\-help Print how-to-call information. .TP .B \-\-version Print program version information. .SH EXIT STATUS .B qprint returns status 0 if processing was completed without errors, 1 if an I/O error occurred or errors were detected in decoding a file which indicate it is incorrect or incomplete, and 2 if processing could not be performed at all due, for example, to a nonexistent input file. .SH FILES If no .I infile is specified or .I infile is a single ``\-'', .B qprint reads from standard input; if no .I outfile is given, or .I outfile is a single ``\-'', output is sent to standard output. The input and output are processed strictly serially; consequently .B qprint may be used in pipelines. The program can process files of any size supported by the system containing text lines of arbitrary length. .SH BUGS Encoding a file with a large percentage of non-ASCII characters may dramatically increase its size. This is inherent in the design of Quoted-Printable encoding. .PP Please report bugs and documentation errors to .BR bugs@fourmilab.ch . .SH "SEE ALSO" .PD .BR base64 (1), .BR uuencode (1), RFC1521 .ne 4 .SH AUTHOR .RS 5 .nf John Walker http://www.fourmilab.ch/ .fi .RE .PD .PP This software is in the public domain. Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, without any conditions or restrictions. This software is provided ``as is'' without express or implied warranty. .PP This is version 1.0 of .BR qprint . The current version of this program may be downloaded from http://www.fourmilab.ch/webtools/qprint. qprint-1.0.dfsg.2/qprint.c000066400000000000000000000320421111262404100154230ustar00rootroot00000000000000/*2:*/ #line 70 "qprint.w" #include "config.h" #define REVDATE "5th March 2001" \ #define TRUE 1 #define FALSE 0 #define LINELEN 72 #define MAXINLINE 256 \ #define ASCII_HORIZONTAL_TAB 9 #define ASCII_LINE_FEED 10 #define ASCII_CARRIAGE_RETURN 13 #define ASCII_SPACE 32 #define ASCII_0 48 #define ASCII_EQUAL_SIGN 61 #define ASCII_A 65 #define ASCII_LOWER_CASE_A 97 \ \ #define Character_is_printable_ISO_8859(c) (((((c) >=0x20) &&((c) <=0x7E) ) ||((c) >=0xA1) ) ) \ #line 73 "qprint.w" /*4:*/ #line 100 "qprint.w" #include #include #include #ifdef HAVE_STRING_H #include #else #ifdef HAVE_STRINGS_H #include #endif #endif #ifdef HAVE_GETOPT #ifdef HAVE_UNISTD_H #include #endif #else #include "getopt.h" #endif /*:4*/ #line 75 "qprint.w" /*5:*/ #line 122 "qprint.w" #ifdef _WIN32 #define FORCE_BINARY_IO #include #include #endif /*:5*/ #line 76 "qprint.w" /*6:*/ #line 134 "qprint.w" typedef unsigned char byte; static FILE*fi; static FILE*fo; /*:6*//*13:*/ #line 240 "qprint.w" typedef enum{Rule_1,Rule_2,Rule_3,Rule_4,Rule_EBCDIC} character_encoding_rule; static character_encoding_rule character_class[256]; /*:13*//*22:*/ #line 409 "qprint.w" static int current_line_length= 0; /*:22*//*23:*/ #line 425 "qprint.w" static int pending_white_space= 0; /*:23*//*32:*/ #line 591 "qprint.w" #if (SIZEOF_UNSIGNED_LONG == 8) || (SIZEOF_UNSIGNED_LONG_LONG == 0) typedef unsigned long file_address_type; #define FILE_ADDRESS_FORMAT_LENGTH "l" #else typedef unsigned long long file_address_type; #define FILE_ADDRESS_FORMAT_LENGTH "ll" #endif /*:32*//*33:*/ #line 620 "qprint.w" static file_address_type decode_input_stream_position= 0; static long decode_errors= 0; /*:33*//*44:*/ #line 796 "qprint.w" static int decoding= FALSE; static int encoding= FALSE; static int binary_input= FALSE; static int errcheck= TRUE; static int EBCDIC_out= FALSE; static int paranoid= FALSE; /*:44*/ #line 77 "qprint.w" /*34:*/ #line 628 "qprint.w" static int read_decode_character(void); /*:34*//*36:*/ #line 650 "qprint.w" static int hex_to_nybble(int ch); /*:36*/ #line 78 "qprint.w" /*:2*//*8:*/ #line 149 "qprint.w" static void output_line_break(void) { static char line_break[3]= {ASCII_CARRIAGE_RETURN,ASCII_LINE_FEED,0}; fputs(line_break,fo); current_line_length= 0; } /*:8*//*9:*/ #line 170 "qprint.w" static void check_line_length(int chars_required) { if((current_line_length+chars_required)>=(LINELEN-1)){ putc(ASCII_EQUAL_SIGN,fo); output_line_break(); } current_line_length+= chars_required; } /*:9*//*10:*/ #line 183 "qprint.w" static void emit_literally(int ch) { check_line_length(1); putc(ch,fo); } /*:10*//*11:*/ #line 194 "qprint.w" static void emit_hex_encoded(int ch) { static char hex[16]= {ASCII_0,ASCII_0+1,ASCII_0+2,ASCII_0+3, ASCII_0+4,ASCII_0+5,ASCII_0+6, ASCII_0+7,ASCII_0+8,ASCII_0+9, ASCII_A,ASCII_A+1,ASCII_A+2,ASCII_A+3, ASCII_A+4,ASCII_A+5}; check_line_length(3); putc(ASCII_EQUAL_SIGN,fo); putc(hex[(ch>>4)&0xF],fo); putc(hex[ch&0xF],fo); } /*:11*//*12:*/ #line 221 "qprint.w" static void encode(void) { int i,ch; /*14:*/ #line 253 "qprint.w" /*15:*/ #line 265 "qprint.w" for(i= 0;i<=255;i++){ character_class[i]= Rule_1; } /*:15*/ #line 255 "qprint.w" ; /*16:*/ #line 273 "qprint.w" for(i= 33;i<=60;i++){ character_class[i]= Rule_2; } for(i= 62;i<=126;i++){ character_class[i]= Rule_2; } /*:16*/ #line 256 "qprint.w" ; /*17:*/ #line 285 "qprint.w" character_class[ASCII_HORIZONTAL_TAB]= Rule_3; character_class[ASCII_SPACE]= Rule_3; /*:17*/ #line 257 "qprint.w" ; /*18:*/ #line 295 "qprint.w" character_class[ASCII_LINE_FEED]= Rule_4; character_class[ASCII_CARRIAGE_RETURN]= Rule_4; /*:18*/ #line 258 "qprint.w" ; /*19:*/ #line 306 "qprint.w" character_class[33]= character_class[34]= character_class[35]= character_class[36]= character_class[64]= character_class[91]= character_class[92]= character_class[93]= character_class[94]= character_class[96]= character_class[123]= character_class[124]= character_class[125]= character_class[126]= Rule_EBCDIC; /*:19*/ #line 259 "qprint.w" ; /*:14*/ #line 227 "qprint.w" ; while((ch= getc(fi))!=EOF){ /*20:*/ #line 331 "qprint.w" switch(character_class[ch]){ case Rule_1: /*24:*/ #line 434 "qprint.w" if(pending_white_space!=0){ emit_literally(pending_white_space); pending_white_space= 0; } /*:24*/ #line 334 "qprint.w" ; emit_hex_encoded(ch); break; case Rule_2: /*24:*/ #line 434 "qprint.w" if(pending_white_space!=0){ emit_literally(pending_white_space); pending_white_space= 0; } /*:24*/ #line 339 "qprint.w" ; if(paranoid){ emit_hex_encoded(ch); }else{ emit_literally(ch); } break; case Rule_3: if(paranoid){ emit_hex_encoded(ch); }else{ /*24:*/ #line 434 "qprint.w" if(pending_white_space!=0){ emit_literally(pending_white_space); pending_white_space= 0; } /*:24*/ #line 351 "qprint.w" ; pending_white_space= ch; } break; case Rule_4: if(binary_input){ /*24:*/ #line 434 "qprint.w" if(pending_white_space!=0){ emit_literally(pending_white_space); pending_white_space= 0; } /*:24*/ #line 362 "qprint.w" ; emit_hex_encoded(ch); }else{ /*25:*/ #line 449 "qprint.w" { int chn= getc(fi); if(chn!=EOF){ if((chn==ASCII_LINE_FEED)||(chn==ASCII_CARRIAGE_RETURN)){ if(chn==ch){ ungetc(chn,fi); } }else{ ungetc(chn,fi); } } } /*:25*/ #line 365 "qprint.w" ; if(pending_white_space!=0){ emit_hex_encoded(pending_white_space); pending_white_space= 0; } output_line_break(); } break; case Rule_EBCDIC: /*24:*/ #line 434 "qprint.w" if(pending_white_space!=0){ emit_literally(pending_white_space); pending_white_space= 0; } /*:24*/ #line 378 "qprint.w" ; if(EBCDIC_out||paranoid){ emit_hex_encoded(ch); }else{ emit_literally(ch); } break; } /*:20*/ #line 230 "qprint.w" ; } /*24:*/ #line 434 "qprint.w" if(pending_white_space!=0){ emit_literally(pending_white_space); pending_white_space= 0; } /*:24*/ #line 232 "qprint.w" ; /*26:*/ #line 471 "qprint.w" if(current_line_length> 0){ putc(ASCII_EQUAL_SIGN,fo); output_line_break(); } /*:26*/ #line 233 "qprint.w" ; } /*:12*//*21:*/ #line 395 "qprint.w" static int is_end_of_line_sequence(int ch) { if((ch==ASCII_CARRIAGE_RETURN)||(ch==ASCII_LINE_FEED)){ /*25:*/ #line 449 "qprint.w" { int chn= getc(fi); if(chn!=EOF){ if((chn==ASCII_LINE_FEED)||(chn==ASCII_CARRIAGE_RETURN)){ if(chn==ch){ ungetc(chn,fi); } }else{ ungetc(chn,fi); } } } /*:25*/ #line 399 "qprint.w" ; return TRUE; } return FALSE; } /*:21*//*28:*/ #line 487 "qprint.w" static void decode(void) { int ch,ch1,ch2; while((ch= read_decode_character())!=EOF){ switch(ch){ case ASCII_EQUAL_SIGN: /*29:*/ #line 529 "qprint.w" ch1= read_decode_character(); /*31:*/ #line 565 "qprint.w" while(/*30:*/ #line 552 "qprint.w" ((ch1==ASCII_SPACE)||(ch1==ASCII_HORIZONTAL_TAB)) /*:30*/ #line 566 "qprint.w" ){ ch1= read_decode_character(); if(is_end_of_line_sequence(ch1)){ break; } if(!/*30:*/ #line 552 "qprint.w" ((ch1==ASCII_SPACE)||(ch1==ASCII_HORIZONTAL_TAB)) /*:30*/ #line 571 "qprint.w" ){ /*39:*/ #line 730 "qprint.w" if(errcheck){ if(/*41:*/ #line 780 "qprint.w" ('a'==0x61) /*:41*/ #line 732 "qprint.w" && Character_is_printable_ISO_8859(ch1)){ fprintf(stderr, "Error: invalid character \"%c\" in soft line break sequence at byte %" FILE_ADDRESS_FORMAT_LENGTH "u (0x%" FILE_ADDRESS_FORMAT_LENGTH "X) of input.\n", ch1,decode_input_stream_position-1, decode_input_stream_position-1); }else{ fprintf(stderr, "Error: invalid character \"0x%02X\" in soft line break sequence at byte %" FILE_ADDRESS_FORMAT_LENGTH "u (0x%" FILE_ADDRESS_FORMAT_LENGTH "X) of input.\n", ch1,decode_input_stream_position-1, decode_input_stream_position-1); } } /*:39*/ #line 572 "qprint.w" ; decode_errors++; ch1= ASCII_SPACE; } } /*:31*/ #line 531 "qprint.w" ; if(is_end_of_line_sequence(ch1)){ ch= EOF; }else{ int n1,n2; n1= hex_to_nybble(ch1); ch2= read_decode_character(); n2= hex_to_nybble(ch2); if(n1==EOF||n2==EOF){ /*38:*/ #line 684 "qprint.w" if(errcheck){ if(/*41:*/ #line 780 "qprint.w" ('a'==0x61) /*:41*/ #line 686 "qprint.w" && Character_is_printable_ISO_8859(ch1)&& Character_is_printable_ISO_8859(ch2)){ fprintf(stderr, "Error: bad equal sign escape \"=%c%c\" at byte %" FILE_ADDRESS_FORMAT_LENGTH "u (0x%" FILE_ADDRESS_FORMAT_LENGTH "X) of input.\n", ch1,ch2,decode_input_stream_position-3, decode_input_stream_position-3); }else{ fprintf(stderr, "Error: bad equal sign escape \"= 0x%02X 0x%02X\" at byte %" FILE_ADDRESS_FORMAT_LENGTH "u (0x%" FILE_ADDRESS_FORMAT_LENGTH "X) of input.\n", ch1,ch2,decode_input_stream_position-3, decode_input_stream_position-3); } } /*:38*/ #line 541 "qprint.w" ; decode_errors++; } ch= (n1<<4)|n2; } /*:29*/ #line 497 "qprint.w" ; if(ch!=EOF){ putc(ch,fo); } break; case ASCII_CARRIAGE_RETURN: case ASCII_LINE_FEED: /*25:*/ #line 449 "qprint.w" { int chn= getc(fi); if(chn!=EOF){ if((chn==ASCII_LINE_FEED)||(chn==ASCII_CARRIAGE_RETURN)){ if(chn==ch){ ungetc(chn,fi); } }else{ ungetc(chn,fi); } } } /*:25*/ #line 505 "qprint.w" ; putc('\n',fo); break; default: putc(ch,fo); break; } } } /*:28*//*35:*/ #line 635 "qprint.w" static int read_decode_character(void) { int ch; ch= getc(fi); if(ch!=EOF){ decode_input_stream_position++; } return ch; } /*:35*//*37:*/ #line 657 "qprint.w" static int hex_to_nybble(int ch) { if((ch>=ASCII_0)&&(ch<=(ASCII_0+9))){ return ch-'0'; }else if((ch>=ASCII_A)&&(ch<=(ASCII_A+5))){ return 10+(ch-ASCII_A); }else if((ch>=ASCII_LOWER_CASE_A)&&(ch<=(ASCII_LOWER_CASE_A+5))){ return 10+(ch-ASCII_LOWER_CASE_A); } return EOF; } /*:37*//*49:*/ #line 1021 "qprint.w" static void usage(void) { printf("%s -- Encode/decode file as Quoted-Printable. Call:\n",PRODUCT); printf(" %s [-e / -d] [options] [infile] [outfile]\n",PRODUCT); printf("\n"); printf("Options:\n"); printf(" -b, --binary Treat input as pure binary file\n"); printf(" --copyright Print copyright information\n"); printf(" -d, --decode Decode Quoted-Printable encoded file\n"); printf(" -e, --encode Encode file into Quoted-Printable\n"); printf(" -i, --ebcdic EBCDIC-compatible encoding output\n"); printf(" -n, --noerrcheck Ignore errors when decoding\n"); printf(" -p, --paranoid Paranoid: quote even printable characters\n"); printf(" -u, --help Print this message\n"); printf(" --version Print version number\n"); printf("\n"); printf("by John Walker\n"); printf("http://www.fourmilab.ch/\n"); } /*:49*//*51:*/ #line 1059 "qprint.w" int main(int argc,char*argv[]) { extern char*optarg; extern int optind; int f,opt; #ifdef FORCE_BINARY_IO int in_std= TRUE,out_std= TRUE; #endif char*cp; fi= stdin; fo= stdout; /*45:*/ #line 820 "qprint.w" for(;;){ opt= getopt(argc,argv,"bdeinpu-:"); if(opt==-1){ break; } if(opt=='-'){ if(islower(optarg[0])){ opt= toupper(optarg[0]); } } switch(opt){ case'b': case'B': binary_input= TRUE; break; case'C': printf("This program is in the public domain.\n"); return 0; case'd': case'D': decoding= TRUE; break; case'e': encoding= TRUE; break; case'E': /*46:*/ #line 904 "qprint.w" switch(optarg[1]){ case'b': EBCDIC_out= TRUE; break; case'n': encoding= TRUE; break; default: fprintf(stderr,"Invalid option: --%s\n",optarg); return 2; } /*:46*/ #line 862 "qprint.w" ; break; case'H': usage(); return 0; case'i': EBCDIC_out= TRUE; break; case'n': case'N': errcheck= FALSE; break; case'p': case'P': paranoid= TRUE; break; case'u': case'?': usage(); return 0; case'V': /*50:*/ #line 1047 "qprint.w" printf("%s %s\n",PRODUCT,VERSION); printf("Last revised: %s\n",REVDATE); printf("The latest version is always available\n"); printf("at http://www.fourmilab.ch/webtools/qprint/\n"); /*:50*/ #line 890 "qprint.w" ; return 0; default: fprintf(stderr,"Invalid option: --%s\n",optarg); return 2; } } /*:45*/ #line 1080 "qprint.w" ; /*47:*/ #line 925 "qprint.w" if(encoding&&decoding){ fprintf(stderr,"Cannot simultaneously encode and decode.\n"); return 2; } if(!(encoding||decoding)){ fprintf(stderr,"Please specify --encode (-e) or --decode (-d).\n"); return 2; } /*:47*/ #line 1081 "qprint.w" ; /*48:*/ #line 952 "qprint.w" f= 0; for(;optind> stream xÚVKoÛF¾ûWÎ!Pn÷ÉzJPçá*í¡îa%Òa‹Ë’+8þ÷™ÙYJ²$E!@»œ™Ç÷ w(?‘2)LÅ*©“Õæâ÷Åů„J@«dqŒõßéÙ?‹ Úk4Ó²ŒZAZ•¬*P)«Ä¤ýúåvþi&‰2œå2 ÞÎO?¿ÿvµ˜þt£Ì׿eHt§Ït®E’AÀœ¬Ø,ºÔé¼›)™úÁÍ2%Òz»ò­ëùÐe"4S:§\Ó\ƒœ•Uu”2h¬s"J¥ÁÁL*VDëën£4°”&u­us¤¸ãB?ƽi½™ß\ãN§_·Î7uöeh»™¬Ro—d›Ã9Ão? VWtH)@0¹¸^\ˆH§¨*"ƒL£œ• gJÁò>%x9“eú ΕJ?ºu‡;™þ5+Uj0f8–—²Œq¢ìa§Í„(˜9v×_§Ñëv¤Øýà¾vC“°íhõë&Zm—íŠr¬ÝƶÄ,ÄÔœUJ¾ “œkoç&¡ÅE5ŠÌ4û´÷²H×dÓ†¡º™Nu5mˆã½*zšì0u\C긹J:$ú’Ô÷nˆùÙè®nÐa×Ô” •"†Af•1¡NhH$¡AàU0PC„Óji‰—ótå:<ëZH½/ºí¾“];™Õ˜Jú¡ÝØ¡}ÄÖ1¦OrßüˆnžÖnDÚry> Çvô1µ½?¬’¿(ÐÝC:U™¾ûãj›Ósÿò…AÑ ¬í`W@éÈI@u,­Š¥Éª€ÝèáaÛŽëf$4þªtìí*nó¨nhSîòzl»~lþÝB t¤8:¸M4…>Δ¶l;; ¥}?)£c/–Ø‹øX»î­Ÿ,‡¡û`î0eà%q´¢„çúÃn#Ñ J†çéÜ¿ÉCt<ŽíîÄä|`CKúÃ:v—QS×¾,ÚScRÛlh·»‡ ‚hVíý3µ )Ëîesphv£u¼M²åÉ$ÜäÓ$qÃ9pÅOYë8z&\þdð 6­†šŽR¶=Ü1€´õ¡ðâµt9“›¬ÿŸÙîÊÍz °sm}âÈä0Ú¦9ìzcÌy¹õh‹|‡+EU%8MG4Oít-7ÞŒˆÚ!7ð> endobj 12 0 obj << /Type /Annot /Border [0 0 0] /Rect [271.6 658.79 340.398 667.646] /Type /Action /Subtype /Link /A << /S /URI /URI (http://www.fourmilab.ch/) >> >> endobj 14 0 obj << /Type /Annot /Border [0 0 0] /Rect [194.346 545.216 225.728 554.072] /Type /Action /Subtype /Link /A << /S /URI /URI (http://www.fourmilab.ch/webtools/base64/) >> >> endobj 1 0 obj [3 0 R /FitH 750.279] endobj 2 0 obj << /Font << /F13 6 0 R /F1 7 0 R /F3 8 0 R /F24 9 0 R /F48 10 0 R /F47 11 0 R /F51 13 0 R /F30 10 0 R >> /ProcSet [ /PDF /Text ] >> endobj 24 0 obj << /Length 25 0 R /Filter /FlateDecode >> stream xÚÍY[oã6~Ø·yÛ`t*5+’âEÀîŽÇɸð8©íÙì¶[¶…:RF—ÎÌîŸï¡H:VèÉú–¶ðƒ)‘:—‡ç|$qˇn Ò,D! Z³ûWÓWß_â %1Ýq¤«†íí§³¬Ý!*žæz2×Ij¦u§Ër¥#à'Ÿù÷Ñg‚Ã#vÕbÀРŢinZÝ@’Àä‰åÛî‡ÁHáé¸Ë’áf™3î˜VKžÍ·Ñçä^-ê^C˜¤U©šØÅÕ…€!øôð6x’ ÊÂæRsA–ˆúÖ\½Êw KCÄC‹ì7ÒÉ­¾qL †ŸG?‹5½“:ÃtæñD£ôâtë<£!T,«ÂÄÉ,QÏ$è× ü%­ûãÀvá<‡Þ]†ƒ€¸2<@M¸SÙ·Mìp-ÄÞòƒ½ÝÏY Éx³Ìø¾^¶eàeù'• ¢ÜÔ¨E•ÎêRŠ8bE";¦FÝUÉZ‘K,<™êRýQÿ¢÷zÐÓmMò¾ƒ‡{5ÞFò,J¿-u3*ŠêÞˆ-WQ©¥}¬²RÑÕž©WQÍ€"ú«eœÆ¸cÚ›íh/WµÈÐëNzƒz]ôóL¹d…™WY=`+ÙÔ4Úyü±Jr#k‘Õ_H/«J(Â@ÜÄÊteÆ.²õZ'M¯¡õ”R÷*ÃCϯšHCëë¦*»Bc—Q¯Üõž6*t0[TKcKÃ’Tÿ× UÃú³ÑkåÀàöÍõxðoØMu‡·Óî…»aÁ˜¨-W¡KDA¯ÏÏAÞdyòßL×|›ÛÊèÎÉ%•ÇpL(€„Å15dŠdÞ^öû¯¤@›ý$öbíû±¥á†K.TÀ¸’€‡‡ôxŒˆD< '`ÔëŽÇƒîUÿvÜŸ¾vÄhØÌ=¦/ˆU/Ê¡:. ^y\VùþL–㢠¦> ä ˆMnº=wïÂyÍéMI"/ÓäAmçµñ,.ä\põ ‹F½? ÷æØúÈݘˆsä¤×É21ß•CÉKvtÈ`L4$'„LÿÇw¶'ƒ+w}ì›}Ç/y~ð±²ÙºH–;¾EÅñ +ðõÜÑ(uŸ?]áìÑÆeM\Tiïî³äŸ°¸$¤yÌN)e×ïûcHÖ“þ˜°kwszŠ—¬g[8E;©àGãDÔq“Û$;ØA²épkî{µëP%ã­]%ö Ãþ( T¯n®'ƒ¢ŒÒ¹Þ©øÒëé®ur—Gùõ.´;S¤ˆ¨ðzY:¯)g´.tÿ]TÔ,¾«·8ðiS€*fÏ­iÙ¢a¶µšgk‡¶£Ãž-[béüø( mNÓç>U»4¶™{®’@dQÑ“YŽ[föÇìÛu÷§Äž/>Ò\³¯¯Ö ìjË$6jWá¿Þø‹'í¶=znìHu©€ y÷†38òh¥ÃbR»…@ÿ XŸx´rÚ&°‘Þ_ÝÓA}Úò„öžãtðïE9O2´ú§«¶Þa¾ŒJXPÿ_'?£ÎYùå!>—›‹y¼pŽ„M§oºÿêßN¦ãÁèêö«¸‡/É‹@«®›Îäg¼.ÜÜÑÑ#^ ®É€Wq.À ,΀Ørø9‘¿êO¯o¦g}OïFƒÉôõï:ÕUš@âù³Íô™–Ø~7A˸ÌÊco‚öãÌ#C©Ì+‘ÄÖ"m{g Žû–Æü¯>.Uå<«r]Ê5EÙ±[áÑ <„i6¯àh};}\<òƒÍügD_†¯E„«©ïÕ¬õkÅ´jΨޤú¿ˆgö®¬q‚j*Œ9Âò²Bö"+_ùÙã1endstream endobj 25 0 obj 1972 endobj 23 0 obj << /Type /Page /Contents 24 0 R /Resources 22 0 R /MediaBox [0 0 595.273 841.887] /Parent 15 0 R /Annots [ 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R ] >> endobj 27 0 obj << /Type /Annot /Border [0 0 0] /Rect [177.354 636.706 181.589 641.842] /Subtype /Link /A << /S /GoTo /D 17 0 R >> >> endobj 28 0 obj << /Type /Annot /Border [0 0 0] /Rect [220.581 624.751 224.815 629.887] /Subtype /Link /A << /S /GoTo /D 18 0 R >> >> endobj 29 0 obj << /Type /Annot /Border [0 0 0] /Rect [161.899 612.796 166.133 617.932] /Subtype /Link /A << /S /GoTo /D 19 0 R >> >> endobj 30 0 obj << /Type /Annot /Border [0 0 0] /Rect [214.853 600.84 223.321 605.977] /Subtype /Link /A << /S /GoTo /D 20 0 R >> >> endobj 31 0 obj << /Type /Annot /Border [0 0 0] /Rect [167.392 403.581 171.626 408.717] /Subtype /Link /A << /S /GoTo /D 17 0 R >> >> endobj 32 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 187.392 181.1 192.529] /Subtype /Link /A << /S /GoTo /D 16 0 R >> >> endobj 16 0 obj [23 0 R /FitH 750.279] endobj 21 0 obj [23 0 R /FitH 588.885] endobj 17 0 obj [23 0 R /FitH 442.435] endobj 22 0 obj << /Font << /F1 7 0 R /F3 8 0 R /F13 6 0 R /F24 9 0 R /F51 13 0 R /F7 26 0 R >> /ProcSet [ /PDF /Text ] >> endobj 41 0 obj << /Length 42 0 R /Filter /FlateDecode >> stream xÚÅW]oÛ6}Ø[ÞöŒía0±â§$tÐIà!‹»Ì@6¬C HtLT–=Kn—¿K^ɱ-§ˆÛ,EÂð^ÝÃÃs6ˆà‡ b>ˆUJS.ùìèx|ô┉lh1O¼Ó¸ø‹üü=þL÷I%OZ«B«Ä4‘3š²ÎúÛÛËáÅ8˜&o/‘ÑÙåë_aK rv>:~}Žë7£‹ñÉã~2¡©ŽYP J^;„R ±xBjEÑ^.h’tQÆSƒI'ó²œ<%muë¶8±U^® ƒ¼‹˜,MÎٲݭŒ)L›¶Â½+[ ܬlYÔ¸næè¶B³œÙ7jÓ4ëœY¹4YqÎ[· }†/Fh¯°Ï|HéBBsÐ-v2\)ß×­²å¸ Nf™'¤0[G2IS)ýWÓXŠ*¡Z¬ ±!ªÃzácšÜ:`r—Hn&Ä0ˆxt2>b-Õ˜H¨f)œUBeš:¾E4q)"*üzü»§Q´É¯ÍP’r!aåB´[ïïóP­Ñö ­ƒ8!ßöšH$UðÉ&¢ß÷ù–Pñ.ؤ0tQ›dÓ4î®ÀõÕð˜ÑË&~H²Â8t+ÓÏ' Ú‘ûttùæäúxxñúòÏë᨟Y2§‡µÙq?qJ5œzýdçtúóž|p¦pæOŸo’WMùD)MUØÉ®–…è2ax+ÖßCErwµ#‚R¡ˆm¯çªFiP­4(¸êycçÕ.‘C׌ÙŠ9y|Ààº|L÷((‹Rʼ¢‹œ“Þ# ’j%î´†¾¥`äC 4H£Ín¼PJ€Ä ¥[ܖ󛬄5ȇSBo,K\,–s¯v¹)VKS¿„Ý8%³¬ @bîv"!ª~«Æ¼ï˜S[N,aëíjfüÇMýúv9'«ÊA¥ØªUPli“%óea–îØÒVºSRÛÙ¢´“;ü+‡ú[Ý“ùgeªÜÔ4—ä*H1?¸¹0y‰CCCÝEa] ™7Æklœã†n˵)4#]Cm7wpÕLÍ ýdPÊ*‡:jû!àšø›ãUþ¾³–…õgŽÙžüYW6Œ˜í²wéÍSZB ôÖòzëƒ%Ÿ¤ù[ÔMô¶R4ôv·p¯bœ¾‡*Vµ½­ü¤ŒäÎgš9ª¤¹ñ_4¦‡МìnÍK´Ç—ŠƒžuæWý“SY?Z¾éEÇZ]z?Ú—Äž <–ävÌxÆW{ðâ<¡*VÛÔj²ÆæÌéðü¤ŸT3 ±Tìdí”Ø ¹^«1]×üŠüÓ(òO¢ØY‡ÕbÕ ¹ñ%³'˜¢ —ŸÓÑÆ³MÿøMæ{Zä‰zŽVM‹{?%(ñoc³„yöâDÆYõ»i'pVÖ󭉻G“8eð2sÏЄ2r™ØY>ræþ¸û1p(VíÇœù|_É3ðµ_ñ…øçaV»QÜ¿­’TŠ”_‚ÅçSš&‘ÚºLOø¼U p"]GÎç­ûø? Óïqendstream endobj 42 0 obj 1179 endobj 40 0 obj << /Type /Page /Contents 41 0 R /Resources 39 0 R /MediaBox [0 0 595.273 841.887] /Parent 15 0 R /Annots [ 43 0 R 44 0 R 45 0 R 47 0 R 48 0 R 49 0 R 50 0 R 51 0 R 52 0 R 53 0 R ] >> endobj 43 0 obj << /Type /Annot /Border [0 0 0] /Rect [210.619 711.425 214.853 716.562] /Subtype /Link /A << /S /GoTo /D 18 0 R >> >> endobj 44 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 638.698 181.1 643.835] /Subtype /Link /A << /S /GoTo /D 16 0 R >> >> endobj 45 0 obj << /Type /Annot /Border [0 0 0] /Rect [151.936 575.934 156.17 581.07] /Subtype /Link /A << /S /GoTo /D 19 0 R >> >> endobj 47 0 obj << /Type /Annot /Border [0 0 0] /Rect [135.653 527.117 144.122 532.253] /Subtype /Link /A << /S /GoTo /D 33 0 R >> >> endobj 48 0 obj << /Type /Annot /Border [0 0 0] /Rect [149.297 527.117 157.765 532.253] /Subtype /Link /A << /S /GoTo /D 34 0 R >> >> endobj 49 0 obj << /Type /Annot /Border [0 0 0] /Rect [162.94 527.117 171.409 532.253] /Subtype /Link /A << /S /GoTo /D 35 0 R >> >> endobj 50 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.584 527.117 185.052 532.253] /Subtype /Link /A << /S /GoTo /D 36 0 R >> >> endobj 51 0 obj << /Type /Annot /Border [0 0 0] /Rect [190.227 527.117 198.695 532.253] /Subtype /Link /A << /S /GoTo /D 37 0 R >> >> endobj 52 0 obj << /Type /Annot /Border [0 0 0] /Rect [220.337 527.117 228.805 532.253] /Subtype /Link /A << /S /GoTo /D 38 0 R >> >> endobj 53 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 514.166 181.1 519.302] /Subtype /Link /A << /S /GoTo /D 16 0 R >> >> endobj 18 0 obj [40 0 R /FitH 750.279] endobj 19 0 obj [40 0 R /FitH 626.743] endobj 39 0 obj << /Font << /F13 6 0 R /F1 7 0 R /F3 8 0 R /F24 9 0 R /F51 13 0 R /F7 26 0 R /F37 46 0 R >> /ProcSet [ /PDF /Text ] >> endobj 62 0 obj << /Length 63 0 R /Filter /FlateDecode >> stream xÚÍZÝoÛ8¿ç¾ßãÆ°§ 5+~“(úë:EE®ÍfŸºE¡Ør"Ô±»²¼éÞ_3$õeÉ_w®7ÈC$’çó7CÓA t Ù@KK,ƒñóÞ<{yAð®øàfêÖÜL>FâìÓÍ¿^^ð&Vã£ÄRfGWoþýÓåÕ[\4àF%i˜úðþúòêÆMyMXR³°æ[˜®g¬$®ý,ðWM…â$¦z06”_EΆTæãÅÙÓh’ÍïH‡2>°ÁûRº/oîSXÏE4]Ìf‹3f£Gø‡x´LÇE¶˜/ý‚ûd>™¹Å,JÝ6̸müPá ñ(›]~lYäiòà?ÏæH¼Xø·Ä¯ý°Zédø>‡YGEr; T«b é‘D8ã wÓ=3Ä Äù>G¾u4N'«< jÕ Ñ¢u©½À,z6ºyFcJ メÔD(9€ c­äé`úŒ›¢± F›jaiXÍ}JËšeó´Ú@-›)["œmm#y›ŸI¥g’EÉ—®4 ¡¦}@ЯÆ+PH âM'ùÄ__œžßø)Ã<¨Øóí†nA7_üÒeúÛ ,#õKS¿`œäy–Ü¥Ã<-Vùü…s“!•ŒÀQš¦ˆ4‡Ó4x &¼úót™ÎemeãUž§sd­X7¸ÃÑY:¿+îý³·=ý'Í=ÆTú†7dQdcøÈÒè÷3àd‘Mº&#‰•ê5™! µ`2LcífÅ‚IÊMµði™ '*.è×XÆ]Ùq0xV´%Õ¤C‰Ôº¦C»qÌBÍUË.¦ýºâ­EM]‘ƒû$ïÕ•0¦GB çe(Ù¢¨„)×I¨ù'ŒJ:zÝ 2–AÈVª°•7Ÿÿüæòòó›óëëËó·£Ï×£›_®¯ü' ö(…c•æúªb|<Åw—W£Ï£ÑOZÚ@>4mZk¤J}ÇÝ“!ïe¼ëù¸>Ù«®&Á“Q—-º`Ö‘4#¬Ç|›ÄÐ|EŸUpî"x¹Éf³G±­î² †vA+»Ðì¢çÜMõL= žÙp±>ÉFŒÐ-ïÁh긚ױ‹zNÊe›Ï%&üÂÇ®á;Z·DËR¯Ñ»L¿ê‰8Vº–ˆîv 5l/Ôl¤Á… ‹Ç÷ÎÆ_Já€ÑÆ Kb ¹l“$¶´Z÷4dÏ)¡¢ôÝIZ¤ùì0ƒêèñ>…$Þ›-pÁi%$_VÜ I([ÙqRmwð[GäßVYí†ÝTÅÁl©œÇl6CÞx…?V7äQ<´  ¼–++£Ë©š/ŠðÄ5à_‡‚x ŠÐ¦e}¿R.–‹)B@OÊ”@ë|6ÑPy¶,<ø†9ÄZ8ް W‘'Ù,LjÅX¿ô‹¥%3¿~™ÝÍý G[% tËüHI¼f¥ ôp·‡30óÕ20|ë¬>L%_¿Â«BZéÄù È´yØ+Àÿø ³û¤À'€û™#íÃJ~Ž\ã”P7qQ ¥Eåòë:`!y˜ýÁSE%"ÁÄ¿z©ã€?*Žx‹ƒãÅÊ×0K|‡æ.ÉæËðEÅéCò-{@3X=¬Ó*Á¨;C•ˆšg`Ê€—9ï»ÑU×:,6£ü T¯ŒqÛ’R)ÎÎÄ­ØØ–èÃɸÎlà_P0<-ʇ1’_LÆàÅ~(MòÙþq‰ˆZ¨(Yúw‡°‘Pšàö¿~p(÷õââÁ¿NykëåêÖU‰èõi±Î˜c¼JhJWØ~­ÂÀA½ì±¶õ #”UQáM‹‰éÚL<Ûq´@â*ˆO.¼,½€¯÷†ZÅ|gNUýRYSkß–5UŒ4J›¾ª˜*A ²ü¿µL') ©Öà€°bD«mxˆj*PH—+Ÿ(P*ÍÞ• 6%À³{ôb¨po+UiÈÛ–oã_C.æh‰ ©©í5£ Ø ‡×TÙ´³Ì*ÅìÔšèÛôaK*eî,·(ðnÌ^õÖI±%«ÚwÏ{ŒÃŠ=ÖÎ`èV¶à8Ív[G0ˆ}¬CnµE”(yýkWÝí©ê8L3e5k§vÂâ­ÀWƒÝ¿ô¶%K£¢Èg?¯àvšÒv1ܪl˜d`¼¢eÄPŽ»çíÇ|ïsù:xôá—ówŸ¾|Û-ª‹°Û«6½½jS;ª6ÊUÛ2…«¾nv(Vv¡JÙìVÖiëræ ·Ò;ÝŠíÑnZ«€·¶› ¡é¦\ZÑ D Ížú­½õ®r—‚•þÎþÉÉ'êZ÷ùëž|eS²7_Ÿx³9_ ¢í?_õ©Sö zÜǸ[s_1Ý¿ /K²Ú0dLT–¾ÄÞÖš0¼ ·ÛÂiì BI‚@Ýá\”võ‚"d‚Àœû÷Çû ‹([~M\û]ðu䎳°Ðú׉—Gºœÿ£$4Ƨµ ÜÁ=N!6õ-|RÐmȰ׵ÍQ:í-Qföè³S˜Ò|Ï>ûnAì‰õN<)Ä“}iØVésSç\H(eÊ[Ç&m•ua¾£dwÇBÁ o‰' ×!>Ý”P5^¢¶óé!Xa½,×Ô§×ÔgŽÝÓmi_jbcö?DMJúÒ‰Õvÿ¨W¦ÛôIN‰ßÀ¨hØ+2h‘aÝ6•ß§ßê– œw;Ñ…o£amßî“M)ËÔMÝ*sc0Âê:Âv$c(ûl‹SÃÁ9« ñÖ5'Œõ=‡ÉÜ¿—];x ];x —ö&´~ðSG·øò‡_Q„Y-ü@£è¢8“°y;n´N¶,{#-±cQþ0 ý–LÒqöÌNì9èܡܗª@Ì¡ÜÝÁþpÓâÇ0-AWGÊvGþ0;ò‡‚­˜>ÉÍkv›GÐw\†¹Tm¹5DzÈhÜ É­ê^· q_7¯.jŸ»ŒE´ü›??9âNìd;ñ“í$N¶“> endobj 54 0 obj [61 0 R /FitH 750.279] endobj 55 0 obj [61 0 R /FitH 714.414] endobj 56 0 obj [61 0 R /FitH 600.84] endobj 57 0 obj [61 0 R /FitH 430.48] endobj 58 0 obj [61 0 R /FitH 331.85] endobj 60 0 obj << /Font << /F1 7 0 R /F3 8 0 R /F13 6 0 R /F24 9 0 R /F37 46 0 R /F51 13 0 R /F7 26 0 R /F6 64 0 R /F30 10 0 R >> /ProcSet [ /PDF /Text ] >> endobj 76 0 obj << /Length 77 0 R /Filter /FlateDecode >> stream xÚÝZKsã6>ä6·­Ú [¤Úƒ¢¦rØ8ã)o¥&¯oÙ9Ðd±,‘Iã¿ÝH‘%ÛóH¦¦\e’x4Ýî¯b l¢ùD'†.'‹í‹Ÿ®^¼ýEè¸9áÿn=A4EFŽ/¤ˆV¨ƒS+,`÷H×K :¬ QºU#Z JM"ˆ·gÂK¯Ea$¡p‚ûZ(MÝhozøt&eÔÞ¤à½n@Å[2›¡‚ àØ¼.¾#l4›¼²hnÎ;›Ý>Ì›a|Ñ®‘…iùÊ?êúÐ>°ï›B÷]V»µÇ­œvÙ7†¹à)Ñ ÄçÒ°ã:‚ bÐRø•Úkp xu$¾à©«êÆž+h*Wþ‰Ê:Ý,‡›¼°¾«¶ Ëb.ÈÙs]zºÍÚÓ‹3¼í•·~Z¶¿¸*ý³¶a^É›ïã™·WFBÓ"Ï._þr”Aëe埿œ¿<»$þý'´R|©sà_ƒcĶî8øÏûuî- ?‘û[g\u;+¯Ã4'/ëÆÞú¦»]½¶¡û:sn»Áƒã„mE˜ºËªÆ/†rÅ–Ì?¤àl» D$¤MÙéF¯xÝ>ÐHpã•u"…QEžÖ†ùMhñëVÕƒ'’]»ˆZ: Ýõ®•ö.m“åß“…^TŽûÁÙÆÄá_8ìD#¥ÛIÝd ¨Ü›~˜ñ2_Æ9Q„*õ´Î `ÑÚ„Æl­Ó.Ú§ÃH¢õž #z TÂúÒÕø®Å`8>XµñCû(AÚ-ˆÊ_ÀFXÊ:oc ’m ¼áX€t¨¨ ¦~D´~ä¢|‘mòÚzõzlÚ8/ìÌ ‘IëôZ×f  ¸R­aíðD ¢nƒÃë@fëî}ý=bQ ;é™þ¸ù;NÚS©"t¸‡„™ùú×óx Šðñê€ê;¤¾ ±‚CÂÚ£¦NXwKú5bgĤ4bé†8GX´°€=è9ý{Œzè¸HêÀsÝŒšÓ¾á|1ÐÇ„6Zº\[àŒ4ÁgÔwÙ"ò sM ̯̻§ŠO~â3D™ôãDU”Å,j›YãmOÁƒ:;”>’ìWÝbÏ•“•9%«UrJTJù„þÐÒÜl€ÞœóqÞ ÝÐ6¼]­G’}fPGвCþ)'"Ë Øß‰4p®!l|Û'q¹‹€·’$Tu ý2_€Â¦<ÏÔOø¬v˜ãæD< ¥l¸<Çqgø!œ;¿Ï›µS—[7HNíŸ-ê¼,jç,ÝÄ›'z0VaÝ›Ü7þÓ»cºž6¬%e(Û]CÂiÚ“Éíj7’¾pJhjNeB~ù0êçï K²"eÔ„ŽZHþ‰²ÊF?Y6ƒª2eì°pW'ÍUé`J%ÀnLç‰zÿ*:jR¦ù0éê<„Ø®tðÝHÁñ—ï=;’ßK‡?ºú£¢>÷àÒ‘€ô#4õ€(~z…â˜nì:4´@ÔC|à –yÁzò"õåIÅFï¯|ϼ‹ 2ŠÈ¡»DÙG—©š¤Ý.÷ÂGîƒÇŠÕûªð¢§4.>€±s©Hˆ> ÖýlôŸc?[Øßó$¡Ï‰2bH_buøvÀNbŒ %u&EWXü|B£Ù|âÝòAm”ÄøPòãµ?Ð{¼r a{L~Bå`PŠ¥G´Ò'bŒ­†ß{kûÝîÙ‘Z­’„JùHñ‹óHñ‹Ø^TÓBHÄ ½^ìÅÉöwGÜQûÌQ’{ÁÌÑm'Ÿ=<%qòÿœ Ö[endstream endobj 77 0 obj 2816 endobj 75 0 obj << /Type /Page /Contents 76 0 R /Resources 74 0 R /MediaBox [0 0 595.273 841.887] /Parent 15 0 R /Annots [ 78 0 R 79 0 R 80 0 R 81 0 R 82 0 R 83 0 R 84 0 R 85 0 R 86 0 R 87 0 R 88 0 R 89 0 R 90 0 R 91 0 R ] >> endobj 78 0 obj << /Type /Annot /Border [0 0 0] /Rect [230.876 624.751 239.344 629.887] /Subtype /Link /A << /S /GoTo /D 65 0 R >> >> endobj 79 0 obj << /Type /Annot /Border [0 0 0] /Rect [215.351 600.84 223.819 605.977] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 80 0 obj << /Type /Annot /Border [0 0 0] /Rect [217.62 576.93 226.088 582.066] /Subtype /Link /A << /S /GoTo /D 67 0 R >> >> endobj 81 0 obj << /Type /Annot /Border [0 0 0] /Rect [233.975 564.975 242.444 570.111] /Subtype /Link /A << /S /GoTo /D 68 0 R >> >> endobj 82 0 obj << /Type /Annot /Border [0 0 0] /Rect [151.936 502.211 156.17 507.347] /Subtype /Link /A << /S /GoTo /D 19 0 R >> >> endobj 83 0 obj << /Type /Annot /Border [0 0 0] /Rect [210.951 379.671 219.419 384.807] /Subtype /Link /A << /S /GoTo /D 65 0 R >> >> endobj 84 0 obj << /Type /Annot /Border [0 0 0] /Rect [208.266 367.715 216.735 372.852] /Subtype /Link /A << /S /GoTo /D 69 0 R >> >> endobj 85 0 obj << /Type /Annot /Border [0 0 0] /Rect [208.266 355.76 216.735 360.897] /Subtype /Link /A << /S /GoTo /D 70 0 R >> >> endobj 86 0 obj << /Type /Annot /Border [0 0 0] /Rect [208.266 343.805 216.735 348.941] /Subtype /Link /A << /S /GoTo /D 71 0 R >> >> endobj 87 0 obj << /Type /Annot /Border [0 0 0] /Rect [208.266 331.85 216.735 336.986] /Subtype /Link /A << /S /GoTo /D 72 0 R >> >> endobj 88 0 obj << /Type /Annot /Border [0 0 0] /Rect [242.72 319.895 251.189 325.031] /Subtype /Link /A << /S /GoTo /D 73 0 R >> >> endobj 89 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 306.944 185.334 312.08] /Subtype /Link /A << /S /GoTo /D 59 0 R >> >> endobj 90 0 obj << /Type /Annot /Border [0 0 0] /Rect [198.304 256.134 206.772 261.271] /Subtype /Link /A << /S /GoTo /D 69 0 R >> >> endobj 91 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 207.318 185.334 212.454] /Subtype /Link /A << /S /GoTo /D 65 0 R >> >> endobj 59 0 obj [75 0 R /FitH 750.279] endobj 33 0 obj [75 0 R /FitH 541.065] endobj 65 0 obj [75 0 R /FitH 442.435] endobj 69 0 obj [75 0 R /FitH 294.988] endobj 74 0 obj << /Font << /F13 6 0 R /F1 7 0 R /F3 8 0 R /F24 9 0 R /F37 46 0 R /F7 26 0 R /F51 13 0 R /F4 11 0 R >> /ProcSet [ /PDF /Text ] >> endobj 94 0 obj << /Length 95 0 R /Filter /FlateDecode >> stream xÚí[moÛFþpßrŸ ô¨é¦på–û¾DàGitœÖQQ IšÒm•DU¢š¦½ö·ßÌîR”DI–mY0à"HH.ggggŸ™yv©ÐFhC³†–1‰™ht‡žv}ùœ6àYñFçÂÊtzoÕ|×ùï—ÏyC“Xã FILÛ:=yõ¬}ú5 5¸‰ˆR±õí7gíÓŽëMy¥XR1ê…~óï«×‚¦ý[ê çïC! ‰¸l„`ˆòb¤¦†ÅDÐRÏÙl6CÎyÀÜå2o2üÚd&H'£©k|K¹x™é$¸†I:ž¤Ót„bERdùèñ]|è'“¤ ‚¾ã‡¬è»»nÞ á}Ï–G^dš\Ø6ùåîU6Â+ Ž_Ÿ´­ž6©»/ô3 © ±v~ýÚô%‘à"7ûö(+²dM½U5otÑÕœ@×£Vçõ0¡L‰FÈ‘Âb%"•G„s¸üì°S!$ZZ¾E]†…ÐA¾éçj {ç°Èë`ÌÀ-ÚŸ¬š)Ð-O)­ôE>©9†jbóêÞF2rº’àÄh1oµ¿"eç'h‹8ÿª¦‚Âæ ÎêkX)ù´n`D$UeðEuå0Mé²r*c°Úšâ—þݤ‚ÿµa(ѵ’gк©–º´æÂ§½èöHÊ–ýÞ,5% ,žJ„Zr ¤`e Ø4&iãb‚P3¢¨(åJ0,ŽY‚¡;H¦ÓzàŒâúoêKC´ÒW—ÁË¥yç°ö¤>iÈ7à«2·4™ 0¢ü<• ‘@ülœ¢Ò$Šã¤¯›[ƒ¼X–¶}µ&/À*8Z^‰Ëz D‡Åî0D î×hÅlkŒP$êê á.HÔm‚,¦‘Ù%H@B.‰QrK˜x•‚ÇÉ>â¤*a!Ê3¶ÚP¦Óϰ˜Ki«<\•‡G×,‚Ù4íù–‘»NÓ.²†Õ*2ç˜ kÉ5*ªØ©¢nèMÖ•MÊaÌy¾µƒèéßB§úɨ7ÈF—øDƒüµý´b[ú@·}!n¿ñê¬ýëÓÎñË÷ã§kj ð~»”F•$ZÐm9*Ct¬¯Hj|mR£ËImµÜñyÑ­ÁÀlÊÞÿ¨év7îí‹2œLN̆S½>¨hrY§^‘-´)ÎÁ9P·®ÆÕBbP•¾=$ª^s|Òª'Ø¡J}K0QAk¶‚ ìÕLÜ[0½Æ,[W9Ö³:t:U]fRÂî_ÝUeþ¥ÁÖRû}«Ì¦^™!Œ2K•Yè8ǃ ‹¦âÑ6¦X±‹26@™N]Ë4ýe–Žº¶‡‰¬»PÀVm|ŸÆ³Âݾ¨¤_4CI%x|Œ0¯TÏÜs¾ª ŸO ×4ý8-Òá‘ÉwŒÑ&éyöÅæ‡N%;]Ã~¢½ðq Þ£0£^‹÷˜¿yÏõ*ÔËöiëýóVëYM—6à\sË*Åc"ã­E P«„¼¢H‰]¶q›6øŠÛZ¤Ê·/mRAÄ^¤‰uMFתV‹bÑ]ˆŽö¸ Íñ=$ˆNŽÏÎÚÇ_·ÞŸµ:ß®9(A:wK(Aí5ÛŠ%-HÄô½ÅÒI2™dÉeZžð³É¨®Ïžpêò.#Ùºx'ü‡ÙÀ‚u_ P¼æhx2_@«ûrÿJ±Z„l›ûZƒw£Ü][OOžµOÜ=ðŸìצTA2˜›ÁvtwE?ñÚpðêíÕÎ^ qDÏ#0wàÌ3ÇœApi‚_fyáÖU/Õ{0ÞÖ{höU„©kpç&p3L~ˆv‡Ý|8òpž €kÀ4>ºfÿ] ô•SEMŽ·M ò|ß4¢4¡L.]_O£°¹ÎV¡ñ˜æC?stËRÃû|6ðç59¨›|ðd\š üÞt6ê¥þ$¨â6¬:ñ)‰g§“a濵åcÄ¿ÛâÒU¢h«AyÂ4Ÿ;ôê¥ÓhcɳX匽’©jÈEbµQ M„Ï (U|HJ¥"ûÁy‡rÈ ÑµKA¤¶„to‘ówî»Å“zn6DGêZ{c¹as|ôÙÑš­1%4–7&6Ç‚îâ]çÍ+}íÏ©â N}ü°œ*âÔÏ–SÕAœú¯»vªÚÑ©êj§ª[;U&üÿó Óƒ8õÍÃr*;ˆSñó'þ]ç[LîæŸVb-žÜ'߆Y½{X€=Ljýña9U, üô Re›s€äD}­ƒ8¹á$îè›Áõ*¯òXÝGzE™8ˆWÿw×^½gX•ñêŸÌ«+¹ué“*'zî˜Õ/Zig¹ÑJmˆ²¿Þf¤?]«ýÇJ¸ÐûüYÄÆ´ÿ×~jé¯"¸&Š•Çötï¿WísÝý$€ÿˆ¼Ýendstream endobj 95 0 obj 2073 endobj 93 0 obj << /Type /Page /Contents 94 0 R /Resources 92 0 R /MediaBox [0 0 595.273 841.887] /Parent 15 0 R /Annots [ 96 0 R 97 0 R 98 0 R 99 0 R 100 0 R 101 0 R 102 0 R 103 0 R ] >> endobj 96 0 obj << /Type /Annot /Border [0 0 0] /Rect [198.304 723.38 206.772 728.517] /Subtype /Link /A << /S /GoTo /D 70 0 R >> >> endobj 97 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 638.698 185.334 643.835] /Subtype /Link /A << /S /GoTo /D 65 0 R >> >> endobj 98 0 obj << /Type /Annot /Border [0 0 0] /Rect [198.304 599.844 206.772 604.98] /Subtype /Link /A << /S /GoTo /D 71 0 R >> >> endobj 99 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 562.982 185.334 568.119] /Subtype /Link /A << /S /GoTo /D 65 0 R >> >> endobj 100 0 obj << /Type /Annot /Border [0 0 0] /Rect [198.304 500.218 206.772 505.354] /Subtype /Link /A << /S /GoTo /D 72 0 R >> >> endobj 101 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 463.356 185.334 468.493] /Subtype /Link /A << /S /GoTo /D 65 0 R >> >> endobj 102 0 obj << /Type /Annot /Border [0 0 0] /Rect [232.758 400.592 241.226 405.728] /Subtype /Link /A << /S /GoTo /D 73 0 R >> >> endobj 103 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 220.269 185.334 225.405] /Subtype /Link /A << /S /GoTo /D 65 0 R >> >> endobj 70 0 obj [93 0 R /FitH 750.279] endobj 71 0 obj [93 0 R /FitH 626.743] endobj 72 0 obj [93 0 R /FitH 551.027] endobj 73 0 obj [93 0 R /FitH 451.401] endobj 92 0 obj << /Font << /F1 7 0 R /F3 8 0 R /F13 6 0 R /F24 9 0 R /F7 26 0 R /F4 11 0 R /F37 46 0 R /F51 13 0 R >> /ProcSet [ /PDF /Text ] >> endobj 107 0 obj << /Length 108 0 R /Filter /FlateDecode >> stream xÚíZ[oã¶~è[úÔà·Ê@Í#ÞÉ.úpº»-rPloZ - ÅVÖÂ:vjËg»ÿ¾Ã›,š²¬8q³X,8¶H‘ÃáÌ7ß ‰G9üá‘$#É5Ò„¦·__]üçLGð@ÐÑÕít5û-û{üÇÕÿ i×Â#Ê·’Ü5Ó‘DZšV"ÒÚ7ÿøÃO—¯®L—1Þ{ùêù÷/._}› ."Œø^Ò5ƒ„Mû„ Šr,G‚‘ð2 dš#Fù~[ßmëñ„a’MÇDfób]LëríE—»×TŽ8¥þ½é<s”ËÐ^¯Ì˜,«ç¥û²jM´©×eqûü ,+—SèKt6+g¦™fÅÆ½².ÿÚVër†Æ¡xvy“ÊDrh£’»1ÇY±¶ŸËU5Kw‡À·Ð»òÓlÊڊ³·c¢2+/b)Ëu+ »W*c˜`Œ4çnâuµÃêâzÝ),â¿??¿´ï_šßlO¹¶‹Y'…©æåßŬœV·ÅÂõ-7Óâξ\nMw/žR$ó`N/¿~þâò¹éuñòê‚Hhà ,E„³€ÏQ­Fërts½¡)¢é¬½=O°vØÂtÓ¢·4JR¬šeþµ]ÕC”ãy;¯¦æí¹Ó:Ñ`^àEmµërù9Ø¥¶ Ü”Kó‚;bÿ;½ ÷£Küë`¸×Õ²X¿ j„Ù`³õn·*:p0‹€}š¬–wº$a©Ûº¤.Aör9s_V7îÿ¢Z–îÛ< ¶´ïp£÷¼XlVî›Uþ,`A Ê&X)¤r_ÒŒÙÉSçæàû,XÚmU‘'ñ²¹-kaˆÑb£#Ê4Ææ§åHqÓŠ,²¼ñ*k3 ´=–BLÀ4cøGošF@?]ãAì®@p©²Ï:`cŠDìá›·U=SÒ¡ÊA” ›ßsž§&F‘’¼ANPm ÷cœ 03jêAV6]›Mje „ù­UTÊç°u¡ýX.Nm d$8ÔM—‚M<Òð´Ø”Ò0D‰ðCý4&<Û.ÊÖŒéÊ!ZãHrÿ,5[°p f¡"e•7wE .ƒ ´µà¨ÏxJ4‹‡ýßÈŒ¥7¾¾ÁÆ Z­Ì˜™ùL•Á.ÅQdGPEïFÀÏ:PCç«–¯H¾I!N!ÞàO×H€L ?’8~€ÈC(Ò÷¡"¥|¿>m“'ŸïÀð9ˆ8û,úÎ I`ª [–Ž °@·O‰Pr2"Ádˆ`õ‘ Ò^ÌM©ºI=ÑÌNûòє˄hªZžî#ôàP­|ÄrAj:Ýú˜VÔ})wšï3 }éŽc$^T´y¶CÅÍ)ð’£Àì ê#0Ÿ˜;±¸¿Îó0²Û##À>Y:‰+ñM÷Aˆôƒé!’j°X°ÏÞMî[>¢É=|áåû¸×/‘—RðtºW;µèàÅØ)9)“j MêPny¡, xÑë³D@xâG|vã Í:n™ÆJ=¬ pEŽÅ@W}vÆõsé£L=¯|Ý&1…VU‡e‘é¤FÂ`óšó™’©œÃÊdDFŽ¢Ï“²3 ×ø8_1L8„±°'ÌÀC9ßi5ªì§k˜˜ß+wŽÓA©s J‡G¾øð@kHq D‡›€\¥1"¦1±‘9&qò†Ù/oœ§ºc¯Ï×ÞÍqgíñžº#QóØ-ÇE‡prã=}Np¼Fm§ßsÌåí)Ü÷[S•Ùnêý¢KD,–5,2íJXmGì8‹;pRɳu«Y»Nõ¼Xºã½éjiù¿qíWŽíÊoÝ{æxØþ·º0'€@Q—Õ´9µ"C+2fá¬Ë.:è8Ëb¹FJ³“!ÑSÿA»—ºEzßo~tÞê69SuûÃeÿâÜìÿEõºt›“f¾ M, M{ÌŸ45qËæOS&}ÌhÞœßÿ2VÌá³0ø¬ >û yƒÈïwúX¯ê¹ÿðƒ;ü0AxîCŒEÎ^{ ?„͆ÄAÈøÈîǬ÷‚“‘D¥p¡¹þÏÜ>þýk‡Œ7«Òüƒ.4t€¼¹+E%>¹ØB8y–:ø^:¥À`ê£ÕeŽÜõòÇ ¹”8!—¢q2E‚M‹DKy£h{™"ï¦_†ÅsÚW&Æ1ÖSGb žëá„qˆ ì¤h¢Þ§³R~Ø®$Ø/Ö}ÂJ–q,‰þ÷ór EÒ([‚€ ÜK »K ‰A¥ y-ç*Uˆ—*ï >ÔE4ø‡Â]Ü ž´ÝÁ߸l\Èܹâj±8ô0 Y„u a L}+àÇèØµ=·±žÓUVÊ£‹V`.òðé C¸ÑÙûSÏ`MTIê„[q¼ž4E“a'0»k¡ñMXŒ(“qU£­=‰ds 1, b{Ä> dƒÉî$¨Ê=‹{P¤=:K„l·ë ›v½~¾¶Á|Þ ¿ÝN¦«Û;xz½ðÉ;—–¹ìpzËÓpsã¶Mº¢«·”¦é¾+CºÇŽÁͪOÃeýKµi¨—\áô²Ñ€$ê±ÙY|7Ú ÐXˆ0—A`¸»Ý.ÉÂ488ÙŸ7ê[e©a§uò¾e®8¸‚árÝC³è4‚* •’sö'»J!Ž\¥C¯Rˆò*Åý‚¹Qß?»ýÓendstream endobj 108 0 obj 2367 endobj 106 0 obj << /Type /Page /Contents 107 0 R /Resources 105 0 R /MediaBox [0 0 595.273 841.887] /Parent 116 0 R /Annots [ 109 0 R 110 0 R 111 0 R 112 0 R 113 0 R 114 0 R 115 0 R ] >> endobj 109 0 obj << /Type /Annot /Border [0 0 0] /Rect [185.463 699.47 193.931 704.606] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 110 0 obj << /Type /Annot /Border [0 0 0] /Rect [217.62 663.605 226.088 668.741] /Subtype /Link /A << /S /GoTo /D 67 0 R >> >> endobj 111 0 obj << /Type /Annot /Border [0 0 0] /Rect [217.62 615.784 226.088 620.921] /Subtype /Link /A << /S /GoTo /D 67 0 R >> >> endobj 112 0 obj << /Type /Annot /Border [0 0 0] /Rect [227.583 460.368 236.051 465.504] /Subtype /Link /A << /S /GoTo /D 67 0 R >> >> endobj 113 0 obj << /Type /Annot /Border [0 0 0] /Rect [227.583 376.682 236.051 381.818] /Subtype /Link /A << /S /GoTo /D 67 0 R >> >> endobj 114 0 obj << /Type /Annot /Border [0 0 0] /Rect [226.829 328.861 235.297 333.998] /Subtype /Link /A << /S /GoTo /D 104 0 R >> >> endobj 115 0 obj << /Type /Annot /Border [0 0 0] /Rect [304.78 221.265 313.249 226.401] /Subtype /Link /A << /S /GoTo /D 67 0 R >> >> endobj 66 0 obj [106 0 R /FitH 750.279] endobj 105 0 obj << /Font << /F13 6 0 R /F1 7 0 R /F3 8 0 R /F24 9 0 R /F37 46 0 R /F7 26 0 R >> /ProcSet [ /PDF /Text ] >> endobj 120 0 obj << /Length 121 0 R /Filter /FlateDecode >> stream xÚíZKsÛF>äæ[þokÅɼ1ØT~È^m¹´^Y©=l¶\ Š(S„€–_¿Ýó"@@¤dÇɶ\e g=ýš¯¿ˆM(üc“”OR•‘ŒËÉüæÉóË'?¼bø­Åäriç\.þ˜é.ÿþÃ+1II–âg$cÆžž¿øÇ˳ó×8i" %Zg~èŸo/ÎÎ/ÝÛLì+F(g~Ò'?¾–DòÔr:|}&¥!4“(¢í´ë}g8›OfŒ“L1;çrU6Ó™P*™Wð¤É¢p?]·L¶M±ð=÷lŠy[Vþäôò óncT£õd&$Q |G‰Q8J„€ÇçË:Á•ŒïË2Djt%Êð]÷¾Mœ•­/°¦_Šó#Ÿ J(^ÎÛÀÓd^,¶uá]—v`‹“Á;^ex…HcÂR‚P¥ÐâÌLêb²Œ&Í8DPˆ0/dVw…`Q±YD‡(b †ý^¹ÌLrç«{%VË ÐT™ƒò1L‘·.7ETQƒ}PdF¤:¦bSLK~Ý›ùTñ¤nN¨ û£-š4ÉݪhWE?x-טO!”«¼Îç-Œ ‚É *J›¯«1Hf¥wÑîKÿ…2Y7íØRÐÅÐßv(߸'F4 "ÌHà3¶¢Ú9feà ëø%)!‹h1™”K?^Ù•,Êkç7oÊMòÙOÙ^9)Sž%­›0Çñ hãæåë¦r£·ym 2^{ÌÍ‚ú™É¢ª&ªJ¦3-ErQ´ÛzÓ8wªl:S2]^ü|:p9„$Õ*¸WÂyPBGå¼ ÐÚy ¶¼‹s6w˜7Mq3å:¹ZûM‹ÝìøÂþ¾ £2i*÷„žÏnlQmž¶ž¬|š£©ƒ4à‚%H –¼9"£¤PÑìôÈeCFò‚CbP*=éà#d×ëuu•¯ª§J'y]æàf“Ï ˆÄ#efˆy8^è}I’p!_¸€ý"ÿËÐ/Ý’öýØ>¡„YéfÃã©Ú|[×–PlÚ`1œè5î¥-)8r·úL‡üF…4&ÞOxNê¡(ís¥,Î8R&¬¾¬á~Äýh=·íÑö`þ^¥`{,¤ß tì*ñÓHôeD@*w/ÄÈ ŠÄE@ŽÅ# S:=‹ÚcìA+p Æ"¿*×e‹Ç¯ÏS#ÀCe, ¥‰ß‚SŒUñ}¨ÝxaìmŒº*[ßlnó¹oŽÓž ÂLðÍÅ”«áÛ§Å L½¯€ýJ´zÈu…Ùš™=ïGjgµí?ÿ:%œ5 NÈ ù eªWU]þV¹ã,‚—D°Î¯ðì i“7¾º)Ö­—mŸÄ ‚ºøh AífÝÚ‹žªiJ@=×_­ƒaGô‚9¾©ö±žÀð™æ$Õz.¿ÁÅ-ÞX¢6ãx±ÌôQB>øê~Œ §P_˜:ä³T¥¿É¹ú ãH®^¢]Œ7 ÿž€$¯ûA¡¯ Xž)Óû©”Lä8Ç])ð.ñÀ;+¬ À@dÀx`ìT–„ů_”)¤ÑÁ¯)Þ"‹Ñöî%pÿ“ûq,jpt“YÿàØ>€ È8ÓîžI Õiœø¿å‘}Fc"£éQi8ÖâÉqä È7ú§å|c·˃ì¯ý§ì>æpnï_óÎgüÞàFû‘éå~õ_^áËÿÈÂYÃendstream endobj 121 0 obj 2690 endobj 119 0 obj << /Type /Page /Contents 120 0 R /Resources 118 0 R /MediaBox [0 0 595.273 841.887] /Parent 116 0 R /Annots [ 122 0 R 123 0 R 124 0 R 125 0 R 126 0 R 127 0 R 128 0 R ] >> endobj 122 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 725.373 185.334 730.509] /Subtype /Link /A << /S /GoTo /D 59 0 R >> >> endobj 123 0 obj << /Type /Annot /Border [0 0 0] /Rect [226.78 626.743 235.248 631.879] /Subtype /Link /A << /S /GoTo /D 104 0 R >> >> endobj 124 0 obj << /Type /Annot /Border [0 0 0] /Rect [151.936 528.113 156.17 533.25] /Subtype /Link /A << /S /GoTo /D 19 0 R >> >> endobj 125 0 obj << /Type /Annot /Border [0 0 0] /Rect [151.936 405.573 156.17 410.71] /Subtype /Link /A << /S /GoTo /D 19 0 R >> >> endobj 126 0 obj << /Type /Annot /Border [0 0 0] /Rect [197.695 330.854 206.163 335.99] /Subtype /Link /A << /S /GoTo /D 67 0 R >> >> endobj 127 0 obj << /Type /Annot /Border [0 0 0] /Rect [180.206 270.082 188.675 275.218] /Subtype /Link /A << /S /GoTo /D 59 0 R >> >> endobj 128 0 obj << /Type /Annot /Border [0 0 0] /Rect [207.964 270.082 216.432 275.218] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 117 0 obj [119 0 R /FitH 713.418] endobj 34 0 obj [119 0 R /FitH 566.968] endobj 35 0 obj [119 0 R /FitH 504.203] endobj 67 0 obj [119 0 R /FitH 381.663] endobj 118 0 obj << /Font << /F1 7 0 R /F3 8 0 R /F13 6 0 R /F24 9 0 R /F37 46 0 R /F51 13 0 R /F7 26 0 R >> /ProcSet [ /PDF /Text ] >> endobj 132 0 obj << /Length 133 0 R /Filter /FlateDecode >> stream xÚ½XKoÛF¾ûÖ [) Üî›dƒp9P8£ ‡¶0h‰’ ˤËGSÿûÎî,ER¤l©N ´Ü™Ç7³³3f lðI "q9YÞŸý´8û lh1Y¬-Óbõ›÷÷ôÅÏ@j)’H:*WH“€D¡rMÂ(rä¿\Í/†e"t@¤lÎÍ.ß|x;¿|7®%á’;®É`áŽîK-eÁÄçŒhgˆá05Ê~†ÒK¦>¤w?åW—•ùÞ2€Eп¤Õ-âíÕm‚‹$[™÷ò5nlÓÌ‘ÊäÏ:É–Ii>•÷å6]NyèÝ"ÿ}lT>"ëMW]]&«føË_S¥½¸HóºtâË*¹/ÉÔ—‚g„çÇÛGÔbì40ûÎsŸ1)eý_çÛm>åø—m¦¾PÌ+êmò= ©gf‹£ƒ†f4¿è Y5š¯›4+ñ$ÂfX%®cüYÆE‘Æ›Y‹¤ª «zyÑ×ýu’¬^™¥òò‡*Í3Ã#2·>47ã,í¹Ù€(Yd”KN1zf‘£]†dÜki°aR Ž$3ª4Þ⾤{ 5;KcÄm\ÄË*)Ld*½óÌØ÷8PØcÆ­ß©¢i¶ÜÖ+ÉÂÆâUý°M—q•ànר¡Ç{’…æÝäZx©µ©*r³U½4gÖ{³hb &1w¦Ä߇º¼EvîÝÄV×~åˆTÞÅAÙC]ᲬŠ$¾Gú:w¶•õ j³§gÜž° #^ÎM¾£ÇZ&̵µ![%®øíÅW’„ÊÝûåí .0(/º©N8t@H “…© .Ú>¸ÀhoF{À….Åå2opmjS§´ú:"ŒEà¤$‘”Ö–¡©Š(Ñxò6Ý$h—쨸ŒïPï”³Ù⌹"Ï8àñ‰J"´­ô¢Dø¹ÃÊßÖoÚ«ì]Y!‘:#ÃmÝµŠˆÖH;ø’¤&С÷ Ö)e›ª¨_¨†õ]&Hi𽆞Dá.öÙ0øðr Ã#(QL;ú&©–C !a‚9s‰‡B ¹ã`r # ¬¥+özä 4QJ÷ò#]1˜‹£i Ñ´–bÀš}¸š§ ïy:ÔB*6"FbïkJdô£ãX$áÑX|óŒÇçŸÞÌç×ïç—³ë‹Ùìí0Ê!ܧðIï5¡aÃq=ÐÅæk÷8‡Þœ_]ÍÏßÍ®¯f‹ÏW—#XCÝè˜ÅÆ]cœâ‰ÀòˆJÙÉ‘A= ‚îƒpðÒ½î`ôl«¾·] ¾Rpg±g­³Ñúbš·nÖõ wívƼï6ï‡Ê“ˆ†õ©÷~ŒPÁ{ÑÛ`U7<#„~øûÏ{²-“¡.H Â'@eÀ鞤—ªžu—ÿUù"PÅ „îs¾‹nyØGA“mú(AMe?q»™KìN†¿e²4íx¹ßøfÚc ăõB§ôô¨þâÀéWû‡a6‚'ÀÆ 6ÀBg«})f.•ì4S—`AF ,3O'¤¤÷(b¨DÇdAÛ¼œ›Qƒj7Qey›à¦›ùpZoè5›|…Ü+üNÊìÛªáq$œÍÊÌš=Rъª]'ûÊ >ÊŒ{¡gI™ÝCœÝ­ŒûÔ­bü)óuµ/ [d{YÐ×ñ¹ØÍ”6×›1Ò¬±Ñ77%Îò æ²-~ºYY¹YYífXÕ›•œ‘`wSà ³XbIº•½mk¯öQµòë g*åÿaé‚§TÓ iF0ÝaÚ2Ó.h*p°3’â>õ"Iá{ W³èjdˆ¡'Œ/[%qf}«ÒÊÅ=€h]ìÕhºÔo_CSqÚ£ÿËfÿÆI¯|ðµ[šº(¦öŸ3Uã‹IxÛ²/`ŒR‹(œÉdÝ®¨µ¨q¬««q¬¼Y‰ƒ’¡§’Šu°™d›êvð”Âkì”DzµmÇèîÁS½d&cº×qÁ5ZŽM„’£Ñm’»ÑÀyöñóùûëOów—ç`Êæ4<®OXçs"Âwÿ¼è´ }ßà}aQnvU¢IWùÙéÁ¡o•jÇø?§Ç ä5ƒÊɺ߳ (j²xÒ‚ƒ½àÎBvB'Ä^Ø í!‰àæŸÒP©>¡F1þ’.„4‡ÿX¯ôendstream endobj 133 0 obj 1679 endobj 131 0 obj << /Type /Page /Contents 132 0 R /Resources 130 0 R /MediaBox [0 0 595.273 841.887] /Parent 116 0 R /Annots [ 134 0 R 135 0 R 136 0 R 137 0 R 138 0 R 139 0 R ] >> endobj 134 0 obj << /Type /Annot /Border [0 0 0] /Rect [196.892 675.56 205.361 680.696] /Subtype /Link /A << /S /GoTo /D 104 0 R >> >> endobj 135 0 obj << /Type /Annot /Border [0 0 0] /Rect [180.206 504.203 188.675 509.339] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 136 0 obj << /Type /Annot /Border [0 0 0] /Rect [193.85 504.203 202.318 509.339] /Subtype /Link /A << /S /GoTo /D 117 0 R >> >> endobj 137 0 obj << /Type /Annot /Border [0 0 0] /Rect [223.959 504.203 232.428 509.339] /Subtype /Link /A << /S /GoTo /D 129 0 R >> >> endobj 138 0 obj << /Type /Annot /Border [0 0 0] /Rect [214.05 441.439 222.518 446.575] /Subtype /Link /A << /S /GoTo /D 68 0 R >> >> endobj 139 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 380.667 185.334 385.803] /Subtype /Link /A << /S /GoTo /D 59 0 R >> >> endobj 104 0 obj [131 0 R /FitH 750.279] endobj 68 0 obj [131 0 R /FitH 492.248] endobj 130 0 obj << /Font << /F13 6 0 R /F1 7 0 R /F3 8 0 R /F24 9 0 R /F37 46 0 R /F51 13 0 R /F7 26 0 R >> /ProcSet [ /PDF /Text ] >> endobj 146 0 obj << /Length 147 0 R /Filter /FlateDecode >> stream xÚÍXKsÚH>ìÍ¿‚›ÅɼgäÔ¼6N±åòƒÓfË+ aTÆ(oþýöhf@òlÈfk‹*šžîžî¯¿n‰t0|HGÑŽ1Š)ï¤OG¿ŽÞ]ü—¬3šT2£ñÁÝ?G¿¿»`…beV¨D:ŽÝòyÿìú|põÁu˜Hjí–no†ƒ«‘ÝMØF³ S'ó·[Þ¬rÄ©×@•]×ë=.4ÂLtz” éÄP·G¸æÑy–Ý£Ñ8Ÿ? @·¹ !(¢Ú:šf Ïx4)f³¢Kãèvš[,Zfi™ó¥˜&óñ¬í•ª+3öV1±›ûs»*ÊlÜ»Yäó.ÃQ™ÜÛ½,Êç_V¥Ý³,YòdÕƒ/ ûÏi¹ÏçÉ⻹&Q±*_lD-Áq'¤ ÅÄÆF‡a 1¢X¹ß,ÌQT”fãÕ"s¹Vµ|(İtÂã¬+H”š¯Â|³@9#HK±–÷ÊL‰¡Ûâ+Ù|½elï¬ÃÛ'‹â)ô‘…dìüŒ Ü"QïdÒh#Qö”—ίrêì¯cë‹l¹š•ö~1íB2$b€:¤&E î¨öÆ[²†‘T tps^ -ˤÌS0“è[×À+‡æ…DXî‘À‚|%CWÒÊ{Ú4\×CPj£‡„5€«f±MB{ö¢.dA£2<-äX(Ï éÔ ¨F†cîié}¸_!Å7ÛI¸_"IÕ[÷Óa-ûµ©D¤™ççi>k)!ŒÈú$&O›\½t(~º? )âsùkK<1Ä£ga ¢QRåû¨?:"€ zè„ àÀ$ŒX¬;‹¬39"®“ÌÂAßNêæðNœ{ORÑÒV;À-´áÒiR&IËl¶ '¬ë5Ð#RV(nG2¤û(Ê@nÆW-ñí__´†¾³Œ4Ò«h©ž‰5b:nÐò9/SSC!$˜@\†P¢!¾T¦Èôù #áMbH“eràVúÓgƒÁ]ÿöÓéåÝÇÁ‡«À3Í¡©yÏN‚ê¦:kf«î5Ô¤&nù—ÖÁÁoþ«ÅS¤¤z¡»FÓÀº~óñI·Ç9ú¶Ë)×å ×§]øе°­nîwYLJ{•U«6nÌòyÖ‚YÐÒ¬yÕ<,Ý  ŠcÏËvÈš¶œK0ŸžóM£·Löu•ÌœûùÃܹ¿L“/•غè}iC²¥i¤Q = £ªg ˜ƒ<º‚_O¡¾òhüR•kKØÝzÜP’’Ô¤~n¯2 §VmÔN iö±IX<Æ8{µüÄËòc[Hýÿ@GqHpp_6Â3kšŠÇûBmá¡–f]Šxe 3G}ßR†›<õÐ2»5îaR}l›»ÝÕò0J<;§úwÃþèÓðªtPAr7/ÒݼHwò¢_=žØ*ï·’”{¤úº‚¿²ÌT„é>”Õ!ÕQ΋áåàªwÑïŸTèæ¿è*—¯EÙép§Д1û~þ-KËõ-þƒT×Ù¹aò¤1¡÷ z±7ÑÄób;«ÏƲ§í NZbKO9þLŸ‡ø"¦…›æê$ÁèrPù_¯ßO?¦°ÈÝ(°ü¾,3÷î£}éǹ¼o j›ëá…8ùID=Î&‰yIÐ2kÓupãÝ·1ÇYshœnV\@æ ÷‚ŠÔÞ«˜[aŒÞ—A•}À ä½ÿgŸÞû›ï|X| bš£tˆ˜*úöU{mAn óý Z"endstream endobj 147 0 obj 1393 endobj 145 0 obj << /Type /Page /Contents 146 0 R /Resources 144 0 R /MediaBox [0 0 595.273 841.887] /Parent 116 0 R /Annots [ 148 0 R 149 0 R ] >> endobj 148 0 obj << /Type /Annot /Border [0 0 0] /Rect [231.457 600.84 239.925 605.977] /Subtype /Link /A << /S /GoTo /D 141 0 R >> >> endobj 149 0 obj << /Type /Annot /Border [0 0 0] /Rect [236.743 517.155 245.211 522.291] /Subtype /Link /A << /S /GoTo /D 104 0 R >> >> endobj 140 0 obj [145 0 R /FitH 750.279] endobj 129 0 obj [145 0 R /FitH 714.414] endobj 144 0 obj << /Font << /F1 7 0 R /F3 8 0 R /F13 6 0 R /F24 9 0 R /F37 46 0 R /F7 26 0 R /F51 13 0 R >> /ProcSet [ /PDF /Text ] >> endobj 154 0 obj << /Length 155 0 R /Filter /FlateDecode >> stream xÚÝ]oÛÈñ¡oy»÷>y)…F,÷›¼àr9§ç"Hr‰Ú%Q6‰tIê÷×wfg—"Eʦãøz=1W»ÃÙ™ÙùÚ²“þ±ÃOŒJ„˓åöÑ÷çþò‚‰˜Ðâä|mÎWÿ>Ïþyþ7XÚ¯ÈPòØ­ò„–ʼn ƒ«\‡q’¸åŸÞ¼={uŽ 'BóPHå~8}þú‡³W ×20"(ÆhHlæRÅa$ÔÉœ³P;"˜KÚÝ~¾ÌŠÙ\Ä*ø4ã&Èp bYîŠO‚&«pJiAÏìß»tCÃ:¿p“¹{6—™Ÿ¸Ú58”AÝTYº%¼°^9ˆ´r{53ãæqPÒÊÕlŽ?ê:_䛼ɳúÛÙ\©(Èئ}Ýn ?š ^úW»efe:w\Î ¥,¯½xœK_¦Uº6kœƒ¥5=Ÿ½{~fQžl•]UYÑnyq³ÆJ¡ãù©Ã)‹;Œ ½˜4™}NWÙ2ߢøìNÕ$&È×±.7›…NG±"°…c¶»]V¬ºÔš`“ÍÔp@p|Ù+†¨'€¼ùp ª¤øÁ{&d]®š¬ór=G\i='¨ˆ'Òãù_¬Hs·”m󆄿R‚Û”~GV§Ë¥Õ*;ÊÐn¸Û¢Vü«,§¹Ä¥ËöÈp fYå K$P8dÜËPa·²&¡:6!XEÒÙÄ˳W§/O_ ­; ¥v0˲ÅN€ÂÙ\Jü<}GFòIjü‘~®ËꂦՊȰ&ãȱÞdß› L§…{¡Êš]UÀéëËÚcÉk‚÷ö “Î>a´ÊвÉj² À Ù“œ’d°¯UuT'(+-Xrqг7åÔÄA\äV1пàOˆ­ÅâMÒš%a· ¶vFs=ËÁ×WùEÞÔ tGàÁòMv€öí |ýùˆ&ttt e¡ÛJQòèófCƒMÖ8ƒõ¡í#H,œ ²hì6 ÷wWèÓ4é2,.Óìs.¬Ì P­Cê +òž`«lYn·pi“—ÅGk<T 4æª\ìêÆéÆöj“mÕöíúñZ²NÐé]º\fWM«´ÞEZZa iu‹­H¬¶Ò¦@g^9uk²tåÃM/\Ιg,-¹—³R¡mðË:JÔSgÞª3LÖË”¢„5åG§ç˜ ÝŒ%¡Ž lÅ!76€GaŒø£P`ôüH}–£^Àî"‹ÁP0œ#7õq¿S¨5­MrT‚8øÆ%¦ª‘NcDï$——l ‰wLß ±(TÌ;¥j¦ˆDñ ]y^ÐÜE´ßH„üY$ñI•¬[~À˜B.ãÐ3ÖÝÍ3§;-ñO‰Ví9ð8ÉØÑ}ÀÕ2›ÆÜ´Á< "&ï2pÄ,Œ#Ÿg½T4›3mpÄžõoÎ8äe‰vœé jxvQ”6?A[¹Ì7¬¯Ò¥·š5eF8KFä.q´þñP²D´dL×LÁìVÕ<ä_„±ñŠöt$¹ÒÃ8îÇ ?…ÅÝE÷l:‹;yIçu«¨LëÐ>ASABmÌ$UÅTÉ Oæ&Ýd1ø)~‹n–k0ºQ×¾˜Ý¦ëVk<‰èQ&¡T·‘X[û´‰ zƒlxØ`¦íi?%ÙšãˆgÒ¡æf‚áÿ¡õ1‡ê ÖcŽP€¶ÇüÀw¡iýÜwîç1=!—³ýîy Ù]”ô踚A?öf›:¢âÂéE‡ç¾)@Ò¿›@<Åh:âàM¨ŒGV8›ž|•}¾ºï›ÐHç,øP,·¼nÅ"D/„#Ê BÁ'F)È›Z›ç`’| Ü€ ä¤ÇMžˆÁÞ¤üB9ôI1~£1ñ0ò~ô(¾âz±Ø MˆƒÞ&“ýÜQ Ò “?‹àÚ¯âûà‘(3Áû=’ÿ>Ò„¾¤{i‚:j1_¨ê@M· q\¾à›ã8™$àߨªóɪÞw‹#ªþå†<𙽠„gÈÀ7“£ICÜ)õ}Rg¨Ô¡ÛãZôÍ}ÃÙxäEt7 ¡„áv4!öˆL‹ÕÆ¥´YU•EVîj÷³s³±/<ÕÃ+™#ƒ>\„ cwÉ{ã±¼7¹×lBÚÛ÷ FU}¥<î× L““Ü(“‘M6'%±U…κ¬j¢Pžh J:ÛÔÒ0»+Âþy4Àß³1j÷cYP ŠÇõXÔ§ëné\ƒÍS…¼B$·™ª[ÿãXúÒf—òH jÁ=Ì¿†tï}¤žÄLaFÖêó¡ñ¤9Àp sN;¥lÕLDTð€Ÿ4-ƒ]mk­8SгΖ¾Ô5 P¸D=—`ïÌÜ¥ÞOºUy;sàpìuÌZ:™p4l@ÀO¼HÏ©% 9§–€ä,Ø”XFÃV}ñiKR)Ö ¯VVÙûˆÉÂÐ$KlÌÕîc¬ÝÛ·é C{…òëµ2X`ÁUò¨­Z2˜âŒ€³ÏW›|™7›k«›«¨Šj†–’Ö­{uŒuu¡G ‹} )µ•]œ»,«ü?%U’©Ä‰» ¨Þ½ïQà P¬²l›­hì™ìo²¦Âmìk£qpµ«¨YÖÄKD²„¥Ÿve“­æo*¼DH%‡·žÂé@ê÷,ø=ß—mÍÒ•E—M}y÷605¢DPIéùXÏÀKó¾> w„Ý‹Úþ¶ Ždø·å ¨wgÞ½yöüt(ÿ‚’¾1w€ˆ'ýì†'7w¹ú2#îÄ̯ߞýýõ«óg/?œ?û~è¨#21Zèxb®«}ä‹ÙWöÅxMäîp•H¢(ñ}±3vÞ˜¶ƒ¥ô™ì»rkÍÎõuÝd[kŽà3RÛ„RA“}nh«VvUŸòæÒ¼Ùê}­”×âòb“ 'õ/ôÀ âœuƒ8è»AL8߆®uE3ľ”Òcß4•´¯ªù>v n•¼®0Ô±µ;Ú^L¤àe/žÀ¤Æ³í’ÜjßYÙEÞ!À»x<ïN‹¼AqQÇö÷#ßb…A½s$@Xm®çØÆÜ¸o.QÛ?Œ|2òÝJd~ÆöeÄÕ¾ñ5wÀ‚ã=s^7¢}=Ržwí·¢ç!#aÈÝ@’À6Ób±ÿ„Á@$ñ%|7ôÜ]ÑÓ6ÙŒçNjyA‰„0œƒ5KñÑ.8ŽMc¥Uðª,æž[³çÖȃÃïí½vÔJßœ2\gõâ”ï{ª„£JðNÂÇÒ´Ø_ધmÛηõîu‡ùÎ¥¾BB½o“ïaº+Z‡JBëPuo×›|µ¾_ß+Ã+’¦w®Ÿl{$Kfà ÛÝ®{u}, ½(×½>˽ò¬‡»¹O¬€ÞímIÿ MXñPvv:^H pqöû(¯ö5¤¼zÿê^§™dl‚ˆ•…ÒÔ=¿ýî!û*ÝCõ?êtÒºÝC*i¶Ñ¡ŸæÆ¡â7Õq€)ë»õÿ¦ëï¡ßöÒûör¬âÄŒ¾ŸçÆ/J± )@iµ~Ø ò9nu«ãV¥kÈøcÁz⿹xý6s_’VMûÉ$‹¿Ìdá›|Õæ;ÝïØlºó%ÙìÜÿxfªÀ“_Wàc5nžK+>¹ÆmS¬)%îâ+S_±Ä­'—¸õQn Dk=ñË+1ñ‹ƒ[Ë-¦/þ=œ‡úpŸî±BVûVÕÈi@«/ðóSPÍη}™µòŸ“â·ž›UîÕœ*‡®WB|Oú;›qºFÈžs0‰n˜m*•Ãÿ?KæÉ½«4øò ¡{~endstream endobj 155 0 obj 2947 endobj 153 0 obj << /Type /Page /Contents 154 0 R /Resources 152 0 R /MediaBox [0 0 595.273 841.887] /Parent 116 0 R /Annots [ 156 0 R 157 0 R 158 0 R 159 0 R 160 0 R 161 0 R 162 0 R 163 0 R 164 0 R 165 0 R 166 0 R ] >> endobj 156 0 obj << /Type /Annot /Border [0 0 0] /Rect [191.607 651.65 200.075 656.786] /Subtype /Link /A << /S /GoTo /D 141 0 R >> >> endobj 157 0 obj << /Type /Annot /Border [0 0 0] /Rect [261.843 627.739 270.311 632.876] /Subtype /Link /A << /S /GoTo /D 142 0 R >> >> endobj 158 0 obj << /Type /Annot /Border [0 0 0] /Rect [263.863 505.199 272.331 510.336] /Subtype /Link /A << /S /GoTo /D 143 0 R >> >> endobj 159 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 444.428 185.334 449.564] /Subtype /Link /A << /S /GoTo /D 129 0 R >> >> endobj 160 0 obj << /Type /Annot /Border [0 0 0] /Rect [188.756 381.663 197.224 386.799] /Subtype /Link /A << /S /GoTo /D 150 0 R >> >> endobj 161 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 356.757 185.334 361.893] /Subtype /Link /A << /S /GoTo /D 142 0 R >> >> endobj 162 0 obj << /Type /Annot /Border [0 0 0] /Rect [251.88 270.082 260.349 275.218] /Subtype /Link /A << /S /GoTo /D 142 0 R >> >> endobj 163 0 obj << /Type /Annot /Border [0 0 0] /Rect [232.742 258.127 241.211 263.263] /Subtype /Link /A << /S /GoTo /D 150 0 R >> >> endobj 164 0 obj << /Type /Annot /Border [0 0 0] /Rect [230.861 198.351 239.329 203.487] /Subtype /Link /A << /S /GoTo /D 150 0 R >> >> endobj 165 0 obj << /Type /Annot /Border [0 0 0] /Rect [306.536 186.396 315.005 191.532] /Subtype /Link /A << /S /GoTo /D 151 0 R >> >> endobj 166 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 125.624 185.334 130.76] /Subtype /Link /A << /S /GoTo /D 141 0 R >> >> endobj 141 0 obj [153 0 R /FitH 750.279] endobj 150 0 obj [153 0 R /FitH 432.472] endobj 142 0 obj [153 0 R /FitH 344.801] endobj 152 0 obj << /Font << /F13 6 0 R /F1 7 0 R /F3 8 0 R /F24 9 0 R /F51 13 0 R /F37 46 0 R /F7 26 0 R /F4 11 0 R >> /ProcSet [ /PDF /Text ] >> endobj 172 0 obj << /Length 173 0 R /Filter /FlateDecode >> stream xÚåZYÜÆ~È›ò”°pÂE4í¾›„à;ÚU6p´ŽµF€Ä@Ípv Í ’cYÿ>U]M¯9dEvœ`&ûªª®úêhŠ âÂÉ g–H}±Ü>ùêîÉç×âž­º¸[û1w«FB^þëî/Ÿ_« LJ=Ò²8IB÷ó«?Ý>¿yù](g˜ãÐõ·o¾½yyG³…Ú¯lã2Œù1tï{5Ó²]A…½Â®¡M̸2 )˜ ÃØd™0­mX綸\(e£ú}ÝdÛâèÝC¾¼”qô€&ªw— 颲jh´Õ‹7yhÏ…ÞdÔ¾ùüö)µÞá|ÿÖQ;-ð˜Ó”ôû– Ãl”¾i—i»óºÞ…5²ª*+z»Íê:½Ï<­Iô.o™éjUAt ÀÍ…,1Æ3Û<¤ 2{UYñß6QSíŠeÚd+zl‡€„á×EÀhý鄿.Li¹Ãþmz ¢yO“PEX¨ÜUu¶ùáR&+]-Ëb]•Å¥âQØÏüÎôbYnóMVÑŠ½³ÀÇUéO"«ùvx:àìŠ:¿/pg-m´)‹{hiE­±ž$ “°éIwâ6‰òyj²û¬BÉ(—Dþl «,è7¥Ò*"€ÎN§pŸ1)(ñô8“Sùw”±Hpvi˜êÀ§A…xÿ4ú)J5Mޤ*«Zõ”(‚)çRñ”s<8â\ÙƒzÎ…kI*i?N?ùš~;:öƉäuÖHEÙШbÍyŠc”ˆ¾Jk¤ ‡ƒ±RiË,èѪðìE¤í6^áÁ¾pØ[gÄ\“ÕŸ´æ,áûUæ±(ë&Ð ‘‡JÓ1ŽÛÕ$½8Z£mc ôørµ~ T?¦‡Vøs·ˆ§~ç²[™`æ$€!F=V_H ”þ–M%NÓ,ÑÚO{˜Ú3ª…¯›òMº¡å~¸4èrô7ÞW<¹º{"ZÏÓz 3é¼ûç,F‹âL¡m¿¥p`ïóÛhÀŽ—Ò`-¸?.^½í:ÁA[A^¨i|‘OX=Ñ-rüq*ÜâÝï&“hâRõì÷SSŠ™ê‚|= $½E¹ï¹áSÜu­ä_Ýüãêöúõw/_ݼxyõüõ×· )ÜAääÒ.83¢…v3kú¶+¼ž¬Ã)š“T›#T"]iÆu|é|OºëŒL8³I{2º}1Ý ´½s¿™Á@„¨ ª$>è¥iÇ{Ï­›÷”ÐÚ¦KŒlrðBݦ@.[ÞýûÉ5z0 †A öZ¤q ¨ö0'€昣ŒZ`Á9)89tï7>îUQÑ—'Úˆ®øÐU)UiÛ \ä¿…¸dƪh™Ö†úˆÐQ «¨öR@«<öM¹Õ`–ÖÌpËžOZ ]—¼}®÷ð<›1øy#‡Zäæu싹C »ÅÕ—°?:øÉVˆÑp>àD´çÆ;?ÐÒhÐ|HY4`“bZ3“ÄUv±î"àÖŽkqsë†à…¸owP‹^¼×Ö’ ‘ôÐxnÕ“Ó¸Fz¦¡Ï‚_ç E•'à¶sÚSpâ»õ¯o¾¾zýåóçß^½zõúúöÛ¿~y÷úë«—/îþ|¹ˆc}¶ùlŠþÂÎD}5Ù¦Uמ~¨˜¹nÄy5CÎ[UÿÓ$ ÃëCB=C˜f‚ë#1$ˆ€žÜ lA¥µ8²öŒ ÷ Hš)øF<<*J!èÓÆEßÍÙ}¬@/Õl8 ¦ÏbOÃio@³4arÔñ@Aõ@Aõ“AAÜÓ ‡àKáÆÛýa^Ǹ•í¸_<@àà´ûEðá$@س¢XQ€x± ×À*|åIÍVž”k'_…ŠX|¿¢#¢Õ®¢Ð_†¼EILg–¥ÏOV¡/†Dߨh‰‡ég¦U½Eß»¯7à›²í¼Þmh ŸÞ¡›~ÈÞ‡7«àáóõû®/ìGèTçMîƒ%é+!ݘ¶è„ö´nª,ÝÂ\©Beš!£ÄF¨la“ e5%J0Â3ÏVŒÌãï—±ö¥'òÖç{ÙcX±¢€í-=b4Ñþ~£G/¿Ž~ìË‹1}bó"”7ûè‘™IT§Ž—b=üWâ¿Ug¶ Òjpëà¶³`[£o¦Æ¶%œe®ÖXË.*wM»>è÷AõÁ…¥…l ŸaÍ­ ì"ÝÀ†Œ€ívñ˜%I|lq%¡GŸXüÑË%ˆ{l Ê0¡L?N X” öÀŠ„º˜¸ØØieÁÎö¡Å‘"u«/*±”zcƒtÜ[?žžv"˜ŠÏ8lôŸ|3 ñuŸcSÀ“(«z*/îßö‹4@ý^ÿ=S^ÿcÔìôÑ<üv¼zkÚyh¥Žj8Ò[bMmoÙ‰ÞÏô9@`ÿŠÊ½¡°#,XºÅ|M¡J¨ÈH<”Š^=¤5½ÂPÈ»ê=ˆÀ1-TbÅǧ*y˜J:Õ–ê–~aú¥Â‹ˆª¬ÙUµSú©›´i‡åæË”ª.ZðP,ÇQeHíˆ(©¬9ªÜŒE¤ä^¤˜^ù¾årWUˆf?©žc>´ž³0 xˆÈ íè×_Ï„]%J“Œ¼ á’¢«q$…"{e<JIù¥˜€Ë¹±”ý±T.Ú…< KYúQA |™ðŸÿ"·“|b·C¦äý¥6£ZX“æÉaÝÚç }ŒeRš“'³ ÈØöuñÇ0’ûKœ±2~ ûTÖ=Í·ŽÉ؆H6„²z6”uÊ}¬µQ‘Qy?ÜbZn"[4n(:µ­G‚ë]±ÜSŸ%aPº*MO[V{§ À†=ìz…¥t7ð˜(§àÇc"ðÐ>=¶Áò!õ̤˼Þä‚ÛB%ƒÖ‹«¬ƒäÞ=™.Ó͆dH—’Æ»tð법rW‘ÃAIWÁ=í–m¸'ࠇŬ<Ôìò¢«R£.wÕ2´½£Ã¬ä#ýØ5jNYQà_­hñN-(¢œÏÛóÔ½  «‹ðéÁùþMéñb1Ó6þ8ç kÎU …Šãâ Hxm¦– cp‚öˆ!,¬a€â§¡ÄJª4ž$'ìÀ}j;€yñä²¢/ÐþËè.Ë|5)±Û¯#ž?XYGòà©Þ½ÊPˉÒM]R«Î: FWÀ¬¯ûÐìÐ>;§}ÉXûÌ…} ´Ç2ì.}Ï]_Éh¢ /Õé‘^ëp±éßGyƒ‹Çº[ü|ÖäYã1ÎÆ¶Ã&µ3uHŠƒb¶¹Ú7]f²ê¾@•äǼ r-ý—D~ÓÃF”¹Ö }Z“’ëZbÑ¢n•¥+Ìzx¨|`£È~l¨E·^iE Á+­«r;Oq!4yW4Ñ\…›p޲„¼¯–þ’œ«}‘kq2¬îŽ‹KÞÇì¨ÕÞOM=’ßøéLø€q^|:DEâÜÆNHž|qõ èü_/ÓŒãdÈ/µV—ÿòkÂàe‰è–>$C°žx§‘ÿ®m‡-„÷ÃòȨ̈CÔ„€n;shÂÁ®qÇèÜõVҰϦó!àdFº¶Ì-£˜vxß2 £ÿIÁ}Ö,§+ÀYN¿ÑTr{RÆszÉÅ„ž†å7Š)gÇå­3?cÆbU#˜~af¶ÖùÅô^d ª«Ûë)u²¹óXÞןÁ¡ äÛQ)ì`îkð¦FúpÔÙcV æE”và/ºâç(Rè À0ÐH]‹!ìdCiLhÕÈšå ²ZìG>›ƒü¼N SûÃ_ÊÚ"øbé̆;ñÔ ÆÅ§ˆY`kxŸfç¿ä“"~ÿA;´è&¬9m¿1Eˆù\÷õúCöcÿVx:y—ØÎ!=ç2§)ÛÅñkuüêbø„>ïßt7Ã[%&_Ê„øIGuºm¿óÉÒÒë™l~!¹bÆÄ?gR¯¦ÌÀÿ’9ý\ÑZ/ZÇGŠÖB;ˆ˜>¶ÐSÏ…3àêœ €eJÇg…±?“‚J8Áäd4d:˜ÿ˜¸${säîß_H+endstream endobj 173 0 obj 3266 endobj 171 0 obj << /Type /Page /Contents 172 0 R /Resources 170 0 R /MediaBox [0 0 595.273 841.887] /Parent 116 0 R /Annots [ 174 0 R 175 0 R 176 0 R 177 0 R 178 0 R 179 0 R ] >> endobj 174 0 obj << /Type /Annot /Border [0 0 0] /Rect [151.936 651.65 156.17 656.786] /Subtype /Link /A << /S /GoTo /D 19 0 R >> >> endobj 175 0 obj << /Type /Annot /Border [0 0 0] /Rect [151.936 445.424 156.17 450.56] /Subtype /Link /A << /S /GoTo /D 19 0 R >> >> endobj 176 0 obj << /Type /Annot /Border [0 0 0] /Rect [204.89 370.704 213.358 375.841] /Subtype /Link /A << /S /GoTo /D 20 0 R >> >> endobj 177 0 obj << /Type /Annot /Border [0 0 0] /Rect [132.313 345.798 140.781 350.934] /Subtype /Link /A << /S /GoTo /D 167 0 R >> >> endobj 178 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 332.846 181.1 337.983] /Subtype /Link /A << /S /GoTo /D 16 0 R >> >> endobj 179 0 obj << /Type /Annot /Border [0 0 0] /Rect [204.89 144.553 213.358 149.689] /Subtype /Link /A << /S /GoTo /D 20 0 R >> >> endobj 36 0 obj [171 0 R /FitH 750.279] endobj 37 0 obj [171 0 R /FitH 520.143] endobj 20 0 obj [171 0 R /FitH 409.558] endobj 168 0 obj [171 0 R /FitH 320.891] endobj 167 0 obj [171 0 R /FitH 171.452] endobj 170 0 obj << /Font << /F1 7 0 R /F3 8 0 R /F13 6 0 R /F24 9 0 R /F51 13 0 R /F7 26 0 R /F37 46 0 R /F4 11 0 R >> /ProcSet [ /PDF /Text ] >> endobj 183 0 obj << /Length 184 0 R /Filter /FlateDecode >> stream xÚíZëoÛÈ/ÐoùV ý.B¡§-÷ÉÝòÁµ;i| ÜMkÐe‘I—¤îÎÿ}gv¹)RÇWôÒA,j³3³¿yRtÂ?:ŠØ(’†&FÓ»¹zñ§7”`@ñÑÕÜ.ºšý#øyüÏ«¿ÂÔzFÁt=Ë#7ÍG1Î2E´1õôß¿{þî —Œ¸b„ YOœž\œž¿û¦G\ ÂáÉ­¢Ü͋͂‰š„\Ž&ŒU3Azt˜!œŠšÎwE>ž°(˜&³U‘ÔG-‰""¨?t‘X‘_œ]½0põIœ„Ø'ÜèQ‘Œæ/h­H#ˆÒ¦^åUÙ&ïUYå aÚó¶Ò¤Œ„ •¼‹^öps³Lz¢sJXè/hšgc¦ƒñORTåx™â ?Yp|yršÑÁ9~ç({wcwò2Í7€X™%P¤Ùmk >P.Ê|^Sô "*’øã‘¸MâQʶÊrdê´y¾\æcfPè(ÀbGopäÁ=W(¼ÍÝ@§„Ã[•_aÑ¥j:n"ͦEb«¬«,KmQÏexÄê§nléœÔY5 ÕdšÛºkæÄ†J/)м(ýt•L+ǰ„;™Ùóe°Ê–Ii˰ D–«ûû¦ì‰EÐF%µ\õ ª¸?&}ó¦’íýU~_¥y†<è0ˆKwDšÍÒi옄S6O´k\ÑZ¤qSëtª÷ÑäÖ)ìÓ}8+b"¿Ú2!ª,Wö¬¹°ÓêÑ=ÞFâ[;ªÏOP[f³¸˜yô€y·€ÉWÕýª²u¶ ¾káªcÜ©½Y[9K'&>$å4¾‡ë4A=P‚ù€qÙo‘ÕŽvÚð½Ó¨×@̵Ÿ÷6yY¦ º¯Üñ7«ª½HÔp|UÔ§«,³pÂ’ÅÅÁØíÍòlRŸÁùz(«äkfí‡ÃUçhsöÁ€BóÂÌݧӶý ÝÆÖöçØj¯¯ Ž9ƒOµ[ÁG«kâZ†5æg7-rüöÓÙ¶ýö…lš(¥S •Kè…ït¤ }vúýÊZB4ñfõ-m™¸•Y’¯Jw;ˆ bJßfðÝ„ˆƱG! —3› !$+8K8FÃu“¡i!ú×›´46 "zèãºmѲմjf¦ˆün¨0TŒPÁÝN´ä£|Âμ¯Ù ¥<’Ò½|3ˆ´}¾;ÉU+}Û‹ËÚÔ„4›mA!uà#CâV¤¥ûìZoûZ©&TGu:ð€:½ t?Bx¨|‚Ýuö¤)N@`¼W'tÍ6ÓÍÎÆš‚±¯±–6„EÈÎ>Ô€Fî!‡n¨òá ©B¢¥vÓ”DÌì¡{~yÑ(?"ÊÐ]YXw:wQÔZš~?‘Æô# :”³*í©­ £ÝÚª} "£n¹=ˆðrò’µÙÞ»eò>½NÜŸ1ñ_ÃÛ‰a\€×Œx×÷vpA„˜Ö s«ÝùÐ©Îø6¦Ëj†±Ã®‰:íõPÐný%·¼›;:ÃDòÏõ9a'樦¬úŠR^BÌöÇÜij> H¯Ýýî¦áà͕zD  ¦’JÄfY}aËv÷ có–d@'”@öu0¬íŽ^¿œ¾œÚ§>=ñCE‹« ƒ{Pkøæ¡Jž¬œ—G®¦`FÁÙ¢Óv{sþöìúøôôýÙååõ›‹÷;¾º~{öoÒÔ£ÕyW0XHø³g¨F[ûˆÇñóÃÚ¾?Åùü©·”fX—!d²£žmd¤Q]Ûî¼.lÙvç6vð~ö¤ý3—ÏâŸÿÌÖ¡Ä@ Ðl(Šv¼5‡j€‚?ôëvF?Ôš§9bhûÛ‹Ó£{KYÈwb#ø]C\ƒÖ»ˆcCZŠ}ñÕê¥L±é0g+Â¥ìv ;\£šŸWôABŒ¦O½#͈Þíµ$zoñ_˶f¬ô³·É‡½¯èÑ…Fr£ÕÝN¡7Ö×ýíˆYÛï,·^Lžt8"ˆçî÷ë®ozM3Ÿâ¢.ý›_b4í%Ì-mûI§iy¿ŒëŽ%®¢wŽ@Zjµ<\B^ÄMW–hXÒ×9š€$N(õœ£}™9ÚSÕIHÈ~ØÂ {•m¹"wü¹æŠŤ¢OÉÍÔs®øeçŠö§sP=kN”V»z%!6ge³òW”–˜çlñ9[ü…³E÷~|0\7Áý;tììC€Æ5W ìµ_¶ÏCۂǯnX+û~ÕŽdî³L¦^Àv6;pO@P ÇÞ”gæ ¦ü–ÝÄoþÁØú‡endstream endobj 184 0 obj 2400 endobj 182 0 obj << /Type /Page /Contents 183 0 R /Resources 181 0 R /MediaBox [0 0 595.273 841.887] /Parent 188 0 R /Annots [ 185 0 R 186 0 R 187 0 R ] >> endobj 185 0 obj << /Type /Annot /Border [0 0 0] /Rect [233.975 469.334 242.444 474.47] /Subtype /Link /A << /S /GoTo /D 143 0 R >> >> endobj 186 0 obj << /Type /Annot /Border [0 0 0] /Rect [262.291 445.424 270.759 450.56] /Subtype /Link /A << /S /GoTo /D 180 0 R >> >> endobj 187 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 253.146 185.334 258.282] /Subtype /Link /A << /S /GoTo /D 141 0 R >> >> endobj 169 0 obj [182 0 R /FitH 750.279] endobj 143 0 obj [182 0 R /FitH 556.009] endobj 181 0 obj << /Font << /F13 6 0 R /F1 7 0 R /F3 8 0 R /F24 9 0 R /F37 46 0 R /F51 13 0 R /F7 26 0 R /F30 10 0 R >> /ProcSet [ /PDF /Text ] >> endobj 191 0 obj << /Length 192 0 R /Filter /FlateDecode >> stream xÚíYmoÛ6°où¶`(&3+¾‰äŠ~Èš¤óе[âÖ­PlºâHž$7É¿ßñE²dÉŽÓŠ,Š/ÏÝñŽw<á®"l0½>øirðüà=¢ƒÉÜΙÌþ0þ9ùåù)¤„!’Jùáã“WïŽÇo_›I*8ФôC¿ÿv6~;q«1]#sŒBâçÜúáõ(CŒTT¹aа1.QHù`D0Šü4Ô! „ps”få¥Î‡#¢h°„‡²¢H.Útñ`¦§´d0KÒO¦‹:Ï3»€IážáË\:úÅÙÜáÆn0ÍR÷~s™”~A±Œ«ÙÓ!ˆ¹ŒóxZjaÒå~o̰Öé†Dý÷*^x¬äSj7{äMaŒçÖÐ$”¹·f5µöPí¨A‘ÍKÓÁ"Iµk]ä:¾rÍ8¹†•lèªÇ˜Ù^W€Vn¨PÆ\g›œg‹Ef”¹)ÜxR¢áˆƒ&ãÔ!gùÌ쀕–¹ç4[ZŽ웤ôhÅ]QêëÂÚ¶,nˆ%J×±y¹3/2XÆ3Óˆ‚Rß–nÜh_¸¦C·­ÊSÂyêòN·uÑ }éü:)K=sÓ.œö¥ÑáÆ¸Ó{RTž„F' eÑÚ¯ÂùÕ¶¬ì(4º;GDÖ£©Œ‚‹Uéú2ïŽ*¾ÿ<¬¶ÓøK§Þ—• ½‰f©7ѺÁ¨¾ŽQ3ºvç:¢R÷ô6X °Áª–;ÉùY]¸p1½^Ù¶˜®¡+ØbÊ¥‹ó´1É•Iè±[O“к6ø«¢tãE‘¹–?cæ[«M`솽Ù1ºlžP0|RëŒCCX•¹¦—¸›’B„ë¼i¨%,±[óyÈag‰7p#[˜®™.õÔDœÍ” µ™F”R è¡å7 ZöУnr6.`H1f¡.;FpÄ)ó6œiw\³ÜûôÓ´:7m€®x^7·êf$œL°¯V$d(b`©ŠÅÊ”¬I“áCD)<®\ [ש°UEšX±ÈxÊ`ø®«zªJäÆ\I¤Ýš˜˜h’Áw=Õɨ)ñFVžw¶)ÔÃ}yØOHŠª€A5rQ¥‡Ó«ŒÑ5î:VÂfE~ƼGq¨Ê,Ä_¨wSÑ»Šþø©¬:·YÝøœõEIU“µ›aO t¿Ûñ¦[!k#±0")ü€aøÁ‚÷B‚¿º~µÇ«ÚÂW`²ñl@pà\à ŠBph¯ä ׃y­A„•¤¡BS@¸N1P ë‘­pöMñ{à–y’–±áL•JH=t.ÃHuîøü]½ûÌÞ…9T°èD)¹êf_‚HM,·Ÿ8¶#ãE¤yÊúO&HÐöIkJ,ÎÀ°È5Gaçvwç}4¶.÷+]”3“)ìœÆ¨!Ã~Î 7Ì·PîÃC|ôrÂV†‰0©Uaa‡#B+1IúÙ–€/Å©ÝÐàm V º·B0e‡Ï¦öÑ£•9PøÖu!à±ho[÷:ÞŠà}7ÇVÌ~Œ½7¸®µ Â|oúK ë$Œ$Û?jâò±ûzqWêÇîë³CG®XT£UOÇoN>ŸœŸ<}wöëÑä㛓·¯'?÷ð×ÃÕcöVÄœøð¶Rs›¿\Ÿ÷ë|ÕÒ‰û¬»—NÙü±V%érU"sÓÃN®‚SÍUÔÎUÍt×ÌUuŽ9zÏõ3ǦÌOf~fuiŒÁ h‘BBDÛ ÒCÄ\Õ3wVdcy%HJˆùÎbA†Ã÷»¢ÌîÚ²ˆë\BÝ»À)v_Í·{S$e’¥=LO Zñ|Ó©]®áo‘ºŽFJâÇúIÙ&;Í”IIïcJ¿D_½_ÔN¿T)ÙR˜]ˆ¾„eû;æS÷³¡aô¢Ð],ØPÁe›5Ù DBX±ª—ÝåÍ@ùv§1ãÎ'4%Ë ó™ê¿$Ò¬ÜhfoÐ ÏEÃc48NŠå¢ºV²Ë×_»öy©o㙞&×ñ¢çƒš˜ŒxÛ€-çàe[dbiÿ?e‹PAå{},iÜ‹3Ò36)#Ôß¼ßB9A4¤O´ñ‰66h#|H ‰Ÿˆãÿ’8’P@Ý„ô¨`s n'Žæ¦›Û*?ó‰ ô”'â¸ö‹úš‰#ºÔÃ(×7²#'c„ Ì!vÎäÒý¯„Û aº axuÝ,Xzæ{R÷,ô´2°u?L$À›#„B‚˜üa¿â-«Qµø›}þendstream endobj 192 0 obj 1737 endobj 190 0 obj << /Type /Page /Contents 191 0 R /Resources 189 0 R /MediaBox [0 0 595.273 841.887] /Parent 188 0 R /Annots [ 193 0 R 194 0 R 195 0 R ] >> endobj 193 0 obj << /Type /Annot /Border [0 0 0] /Rect [276.649 663.605 285.117 668.741] /Subtype /Link /A << /S /GoTo /D 151 0 R >> >> endobj 194 0 obj << /Type /Annot /Border [0 0 0] /Rect [256.044 639.695 264.512 644.831] /Subtype /Link /A << /S /GoTo /D 180 0 R >> >> endobj 195 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 447.416 185.334 452.553] /Subtype /Link /A << /S /GoTo /D 142 0 R >> >> endobj 151 0 obj [190 0 R /FitH 750.279] endobj 189 0 obj << /Font << /F1 7 0 R /F3 8 0 R /F13 6 0 R /F24 9 0 R /F37 46 0 R /F7 26 0 R /F51 13 0 R /F30 10 0 R >> /ProcSet [ /PDF /Text ] >> endobj 200 0 obj << /Length 201 0 R /Filter /FlateDecode >> stream xÚ­XÝoÛ6ÏÛ€íÝ@"'’"E= m–Šu[\ôaÝŦc­²”IrÓü÷»ã‘þ’ã¸ëâÇñx÷»Ošøã£LŒ2•³\¤£ÙêâÕô⻹Á‚–£éÂMç¿GŸÆL‚­íNÊRaünšÐ¶e,ÏpWhfòÜoÿúËo“Ÿ§H2’Z3‘+¿ñv:y=™N®oÜuÂRƒÈ¸¢}qC§Ê°DªQ,8Ó^ 6ŽyjÒèm_Ve_ÚŽ¹K ’,çDÅÙà6™0àM—M—v§\GÇJGE×ã,‹VÅ8V*ú»iË~,ò葈š}×m;>”UE£v]ã úeé7ïÛæ®-V8QQSÓ÷åÍÕd MâÛ¢³s"í»Þ®ºoa&Mt»î‰øa „Ö …ã5‰²V]C£YsïøY§~LêÅœ³\)§äCÙ/DZvׯ®~˜\ÑØß(¦i½[ÚšÖË®[—õMlÛ6-Óhe»®¸³(¢%Ë"{9'ºªü€8Yœé¨ohõÖËå&Åmu°]Ö³j=·Ä~ mÎÿ²h‹YïÀƵEÛ¬‚wôëш®/ë{NÂÉ®o-"/eË´=³m_l&€½ÓEr‚[ÂݤT ¨/{Îú’eqÔx.@aì%–ˆyØ’¢*\P}mgi[VG”‚3Íê¾²=Z_ °röÿè¢íJçN°Þ®©†;—å ·—~ŠÊ4ë =L'[cà©â¶[·óê‘¶ì'”Ç2º-îîÀÌD¶@ã#¯‚æg}¸mëÜ0ÙÚy NàWVÞ!BíýP;0gÙ!Ü&ñ(Τ1Ñ¢¨*BËhȹœeä;@²´ŸŠ¹•«¢¢…yÙÝWÅ“òh8‘YoØ5~±nêØû\æ|ŽlCBó$zå̤Ëfì|ƒîñøÈÜUŒŽæn!$¾‡\’KJ5¸¶hªªAA¼P pß‚Ê&³]ŽØ´‚p••mã;[Û¶è1o¸ugp&¿ˆÈþ³.ªMÃ-Ÿ `¯$þr?ÎŽÚÉù S))–à» WF SŠ )}JÄÑ¢(ÝHê°²‰™î¤<œùÖ®ÀÅ8¶ö,Õ((ïW—~ÉòK[5êÚÓbÈW¡ìÕ9¨,OS§árP!S2Tˆ'%]¶”ûð¤QÀ`'›ó‹ëé÷%JS†ƒR0nâ„,’ “X?PaÞ–×P–S~Ḛ̀TcYF~éÃö&¦5§Í'+}‰îo¢¯`ieYjö|á}¢|íW»õ”™,ÔøËâr77,7ÜSø«4´¸ˆÛ S\Í)‚^øþ"ÙµH®¡¨mi4ˆ |R®Qùa›aÈ ý•¨Ä}àLþƒ–„bá,©YRÍKŠ5\ªéÛÙY¡z`ŒX †€ Ð,ÑŸcWqÌ®ù¡]Ÿ8M]˜)e:ÿLåÖݺuå4Ks¹á~¾rÒœ¥\ØÌ±ã´C†E=ħ3ÏòL±ò³béæ-*O¡I–ÂwŸ¾ýÃöSäLªÌ3º¦z^ScÐøoá¾úH«ˆÝD2Ò^Ãâúà ûCß¶èþJP½»oÁÌà>ÁÉ Ë‚i饽ms)4‹*zSÏ|³é•Ùë6F—ƒdPI¡šA—RvK§ç>sÃÎFXtN ßýN0•PÜaVÉ%ƒ’›œÈáê0‡÷øžSpÀô@ŽìHÏ5ËÀ# b˜Ñú‹Sx~*…?›Á¯)ÿ ïÔ'øi¹X·`D É]¿,SôþO.)Ô‘N[v ¾ØWUGeÛ jD8>8ŸÀ‘¶¨ïüšLnÞÐAcTN'_à°1?tû…üÅܾOxZ[Ÿø³÷+¼P7Aw‚4Á¡åA{ÄBsÆ9æozÍJ–€Ö`ÐÜŒZ;ZlS¡ÀǨÊM®ÊŽ˜g“I3–I4ô“|¡~eî±|Š¢Hz¶Ò0ÉS|á œ ó _„=xf…Dœâ(@Ò4{†£³ß ù &D¶­Ñ¾ÈŽw³#¿C€“î–øØ€Ï £Ãÿ!cÎTjNrƒæa7â4Ói¸û›S]Œ:£‹!‘œÛÅì ’˜ ÈŸ<]ï |ŒÌõv_†E øú?c!w±È®ŸÇâ¸04 ª¿Žâ¡ÎÁ#?ßëNâñ?ùÆË':Ü8‚<¹ÿJ8Øendstream endobj 201 0 obj 1679 endobj 199 0 obj << /Type /Page /Contents 200 0 R /Resources 198 0 R /MediaBox [0 0 595.273 841.887] /Parent 188 0 R /Annots [ 202 0 R 203 0 R 204 0 R 205 0 R 206 0 R ] >> endobj 202 0 obj << /Type /Annot /Border [0 0 0] /Rect [220.581 627.739 229.049 632.876] /Subtype /Link /A << /S /GoTo /D 180 0 R >> >> endobj 203 0 obj << /Type /Annot /Border [0 0 0] /Rect [178.23 602.833 186.699 607.969] /Subtype /Link /A << /S /GoTo /D 197 0 R >> >> endobj 204 0 obj << /Type /Annot /Border [0 0 0] /Rect [180.206 589.882 188.675 595.018] /Subtype /Link /A << /S /GoTo /D 143 0 R >> >> endobj 205 0 obj << /Type /Annot /Border [0 0 0] /Rect [207.964 589.882 216.432 595.018] /Subtype /Link /A << /S /GoTo /D 151 0 R >> >> endobj 206 0 obj << /Type /Annot /Border [0 0 0] /Rect [413.229 554.016 421.698 559.152] /Subtype /Link /A << /S /GoTo /D 180 0 R >> >> endobj 196 0 obj [199 0 R /FitH 750.279] endobj 180 0 obj [199 0 R /FitH 726.369] endobj 197 0 obj [199 0 R /FitH 577.926] endobj 198 0 obj << /Font << /F13 6 0 R /F1 7 0 R /F3 8 0 R /F24 9 0 R /F51 13 0 R /F6 64 0 R /F30 10 0 R /F37 46 0 R /F7 26 0 R >> /ProcSet [ /PDF /Text ] >> endobj 212 0 obj << /Length 213 0 R /Filter /FlateDecode >> stream xÚÕVMoÛ8=ô–[ÿŽ ±~sE‘:N¢Í¦‰zj{Pl¥âH®ìt·ÿ~‡"e;‘’fct"€Ìh8£Çyo8QŠiii©e"š\ï½Éö^B„ÿ+e—ížlú‰€Š¿do_òHS«…)j¬ æÑ_ïßïŸÄ —’¼;>»'§±±dÿìüøäȹG\KªŒ NNÏŽO2øæ›hÊž‚ycT°.‚àÞŒØ×öDHCS.£„UaFQ}}WSDg8™—UáV‚,òfYV_i 2EON-xWA{˜¥t€Í\ ÎÉe=Ÿ×13äoŒä_}×ùÜ­ùKEò¦Ì/æÅÒ››bÑË¢rN+ÿjâñ%¤^¬ÊºZÒ~š’€OF­-šY¬¤’‹€õè^<èµ7Îö Óºs%*¥B¶ºH©‘ÎH9ÇŸ+¯“:™¨»‘eíç]ˆðêjmD~x£×ï ¯ìHQ% X_ôÓ¢©,ŸÈæ”I‹Yj¥l·-Wùªœ`^,²Š9 ^ízKw«xZÄÈÄ=j÷˜:Î{JÅlA‡ô•7Ë-;¤TBñpÿÝù¸/5<¬–aËŸÞ¼…‰1ª,¿ý…í\ 0LàY/¸[tuvPLêåOÒ*äs*Óì̉óã×àZ7þ·¨ZsÇá0`Ä¥ué!T*{“Füj€=.Q’¨¨ÝèCð?¡¼ÐwdNüBæ:ç±'B0§·˜ckæ¦ÃT?†9#äƒÌ±™ªùŽÄ]”UÞüè.w)™%#NSŒ‹5gMÔÑåúšq—9_oë.›ío¬/›jq³¤’©_^Çìa5°GÕq×XòÐOüZŽóÐurßWB&q H?ˆyhc¯˜çŒÂú€O¨Y0XMlךmšX22™ù«÷ª—nQ_æ‘4egX*ÄÿÁÒhVL\y^ݪHãÚÊ]Ú.}Ù2wþºYzò†HÂ!G[ñt’Rœç¤Ú‘¤ñ›ÑÁñ¨«Oƒ{T7MÝ[žÀp܃nÛCåY'´#ÈoÑcŠªhòUàØ§*Á‰oY¾˜wóÞÍjsmó«SªSýt~q–c8z{~Õù]¸ÚË›öYÕåt¨qªTþwå©›mòÆÄ·È6ùĉŒ|»©‘«^> E¬Gêâ{ÑüXÍ63Ä6œÏÓÿ0긒ù¸K8ïendstream endobj 213 0 obj 920 endobj 211 0 obj << /Type /Page /Contents 212 0 R /Resources 210 0 R /MediaBox [0 0 595.273 841.887] /Parent 188 0 R /Annots [ 214 0 R ] >> endobj 214 0 obj << /Type /Annot /Border [0 0 0] /Rect [151.936 699.47 156.17 704.606] /Subtype /Link /A << /S /GoTo /D 19 0 R >> >> endobj 207 0 obj [211 0 R /FitH 750.279] endobj 38 0 obj [211 0 R /FitH 726.369] endobj 210 0 obj << /Font << /F1 7 0 R /F3 8 0 R /F13 6 0 R /F24 9 0 R /F37 46 0 R /F51 13 0 R /F7 26 0 R >> /ProcSet [ /PDF /Text ] >> endobj 217 0 obj << /Length 218 0 R /Filter /FlateDecode >> stream xÚÅZK“Û6NUn¾å¨æbª*Â/´+?&Yo%¯=©=Ä9P¥aY"’²=ÿ>ÝA"G#Ç«r•E`£ÑøºûëæÐQÿèH±‘’1‰™ÍÖO^^?ù×Ï”àAÄG× 3ézþgðeü×õ`h7"ˆ`ºÒó‘"±ÂQÇÍðß¾{suSF,†Ò½÷ê÷ß~{qõz<áR¿¾¹ºÄ+¼k¼x÷þÍÕ/½e)ÓDÉæ}ªì8(ßN˜©IÈåhÂ(‰õHO§„sÕÈùßX‹ O$SÁ¶J›Í¨ÎlMeÍìeZ›º/‘‘(Íœº@iQ°)á¤ÎÒªÂ':˜ëu’Ïíð*ËͲ2‰Y‘Wd<¡!cÁõMV5Ìûi¹ÎêÊj˜,—eºLp~óî“aßûœÕ7ÅÖ¨9B™°Ì/ŠI¹Ü®Ó| :¡d.£Àè…g15‹õÝ¥ìl3f$Ôî&ó¾­hHbíì”cIƒeÿ#ÓvR>ï¯Cc"c}hA$?e™êÖn6ùV–”µÇÎ¥ ªíÆZº(kkƒ_®þ˜TõÝ®RkŸ”‹M_`~§ê¤¯ZÄ©zaE¥_ê4Ÿ§s{מ.üù&›¡¢7ö6)ÓüisŽœ)Ø´Žó¬Lgõêf3áöá>Œtx6Ei·} ÆQ¡¼Õ!‰däP}SÛ%êÅ8ܤVü¢X­Š1‹rùÒi1­Ór±]¦ÏÆÁã [Øö¥u’åöÊîÝÊ\¥5¼‡×2@Àña£3ˆf죻£¿øeS %R+V8|2ÊÆÀ^“‘ò ltf¼Ý¨n6ŠœÂx>ϸ Ü Øç°PR¥°>kVáÑâ¾o›w›_+KÀáV³2[gyR7Jdµæ3«:íœç^ØA]{Q’ÇšÄÜhÔ°g@Æ ÎÀU ˜h¡‚úÇÆV Ž@SÏVì²8´JÂ/D<‹As‡Ëá>c–\­ìÃ*[oVfmÂOjo;¾HV«I @"³î\Øqk˜_%ëæj†C:˜7·îðñ£¼¹X¥÷~@lÝ®’æikT;­–Yž76ãx›‡‹¯EVg*0o•ÚëµU×°Zæ}ƒoöÑN?ä):/>µû‹‚ŶK{°HÖ8}š-·q7¦à‹MLAä‡è­Yeg­Ç&ËÕvVÇÔ`©"oDÙƒ‹œUT ‘½-ïmÂ$9À°äàÎ*äR±G2&Ìc!ŒÈ›!¼r¦Þz •£{Ù„:±¹t·P…rž\^?¡ Õ¡‚)fCHçÊž˜\€Ÿ–íhL蜮0MD„Ù e4>îV&@íàŒ*Ãmèà‡ƒŠ*{†FœöBœ"ºõС íöŸ¬„ÀŸˆR|Nû&²BCÚ¼ºè§† ‡KÝh`YÔPv uGóÓ 4:œa ¥ &º»èÓ/¢Õ£˜ÙYÊ# !s[zÞÒ%¬OCB$ß"ï`½Óyšå›íäÙE²ÀAÛ´‰Gð|èœ#@}ìgólÑ72‰m ùÞA9}~@è©à»þJàQK®‡‘Ca­–8/v%%á1ó65-Óäcÿà5Ð&îÛº»ÒX·Ð‘'i •…g°_Ÿvþtòtˆ‰2ÚAù€e5Ä¢È7l×#…6\¶»ÙŸúBQÚ…„ï‡HQ¨Ü0æ.D“ðÊþåD:&¼ø-î"bF¥úX"fEÙ©I@Žl4´ Ö¶É— ©(1MáMK Í€ ³F÷¬¯ û;5?56’Eû^+¹JûÍíró¤ºifÚ* ¬Ýs˺Lòje2-†X³,übrÆß.åà h²¥¹2ŠÁoË<Íhn_ƒ4^CÖÜfF NnÖL@•{€gÀغà0w„·‰ÇݬÜn‰·;b[ ¤g .¿‹¬ß÷‰£~ð òsIüÈnšU«âsZöJ²S¼ý®ââ“nc†!¨†=¨2Ñl Estl:ŽL§u¨͇ŒÀ‰Òú[a(VÓP£Pý` ›7“NŠâPéÙ¢O¹æ%ͽÎA,ô©±ØÃtÄ ~’Û9¢¼ËŸNïI ÏzÎÅ9܇Ä~¼ßsM¯[c.šØ Á‘ëbôêÉò¶OZà*vÂ^Ú96,Ë©í%FåUÚ×C)¶ ¿áÁÄÆBp!}²A_gPŸÚ‚)ŸVì ‚‚L·,¦Pá2T¡H.ÓÑ¢%ú“8„h£w3ãï.Ø2~cÅžƒE$b{>'³¸~÷Çe_%BHŸGyÆÕ1,ñPFæIòYtô)½:+ì'³bs[fË›^~r}Jjó D9lƒ³½’8ËëÅÐ9Ǽ·ºZcÜr6»0`»bèI¡m8þŠ)4r3 <_–ɺ/ôŽ(»WN›kû—"¢GKÈ¿VBK…<`r‚9¶ÓU6°%\/f^`÷’ ÎJ?F4»¯ôcB‡ÝN™ÖÛ2Jx*rl/|>øÅøàÉ¡s~V§œ»\42>Oç¢×鮕×oe”#ý`vJU Á>:Ù|¯'óÀŽ€wÍð¿ÿ›·íÚn×Rý¦)»éŠ>zŠ8ÞœéYјqDºÅ/ó™í:Þ¿¸µíRØAîåÔ4¿°XüÕˆ‡5Í^ÑöÿEÄåyIœÁP\‚XigYדõLžÔÄLgs—r<]áB—ýrKQ÷ˆÇpã\ÜÙ8÷»ó»î ÖAPHÆ &c ÍïÆTp×:T^õŽzLv3lG¢ö“ÓÅáV=6sÑ'$T{TÒ©¾A§¾—’;æ]Ý0ÒgtžŸ×ynÒÕf0RêÖw)±{éu[%ËÁîWÜ~0²ßEh¤p13ýÑ©ØñõQvÖÓÊîI~/_½~ó Š¨õ&©³éÊ}dÛÖ»r¶Û-dà’1;%²y§Ì€Ó‹Ø§"V…¶<§,´ ZEÁÚô@ynZ¹ ÞÍ> endobj 219 0 obj << /Type /Annot /Border [0 0 0] /Rect [213.552 651.65 222.02 656.786] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 221 0 obj << /Type /Annot /Border [0 0 0] /Rect [251.953 304.951 260.421 310.087] /Subtype /Link /A << /S /GoTo /D 209 0 R >> >> endobj 208 0 obj [216 0 R /FitH 750.279] endobj 215 0 obj << /Font << /F13 6 0 R /F1 7 0 R /F3 8 0 R /F24 9 0 R /F37 46 0 R /F51 13 0 R /F7 26 0 R /F30 10 0 R /F16 220 0 R >> /ProcSet [ /PDF /Text ] >> endobj 228 0 obj << /Length 229 0 R /Filter /FlateDecode >> stream xÚÍXmoÛ6°où¶`"+¾K)Š¡MÓ!Úe­·}h»A±äXˆ-’œ6ÿ~GQ’)SvìÔI‡Ž$’Çã½<÷ñÀƒ?R ;Œ/×ö–e>ÛDjÔ‹âI¸˜•}²ˆ û ¹•ˆkdŸ¥Ê—·C.œp–DÚ¿ñ—2N£8ÒÎÍnÖà•#Á.!ÙÁ uÆgÝdŸÜŠ–Fà)0QÄg:²(£8Ïm«Iä1Üu6_S´ÏÒÛÊ z#Ϙ…AkÚêÂ<[8¯™ wl‹¡ Lîƒ[dø±øˆ)K­cQ‰p›µÏm˘ÇuÂ|ȱse›ØG- ®…gÀJO³<ï$Ÿ+¥®žb ˜áêXƒ9¸š3š&…¦6ã þ{[úUfP ªˆV_Rý¿ˆÇ}å@€(H÷!² dá­ kÍjÔ‡?˜ÂžLUw`}R&mn@×6GÓ8‡ÃsÂP? %ŠŽ¨ŸL,“\½é8-ôËçi2V3§ê•9—CWáý•2[5œ”õˆŠÈž‚JHÒFn¼¹¢Û"°X®¾G ŽÅ0%â-$„iÔ£FÄ_VÖ8g‘­ #PžDë{ÄsþúÌ© 7W–X¥ŽMœOÐntFIQ&éÕ")¦ 1±SNã¹.›—jñÆÑžH'»†¹úKXsE˜¯ ³4ÒKgqYÆy Á“•‰Ú]ÈÎ*4àel‹ ‘kÆq¡R„òà_zÜ! X™’àS$0²¬Ä|7ÄŒÂï*.Õr—3{¬Ælœxh­XM$ÀK hèrHE¼CJ2Ñ—’Á&q/‰£ùÎ}Ù ÚÚÅÇÒe<„ª:íÃH&ؽeïÞð'…ß=;Ö¤å¤G}œ jKÊÜ$ÍÑåÃ(3ÙÌ_ÈfÊLú‚v‚2ùpzB Ça]kœ¾:y}vÒ`¸Šä Îò`"Ddàòx01*Š{vb^æ†Mxe ›â*ª;ºvÐ4msôîÏS;>0blÏ  ú݆î2Ãë¾Hã-»é“=óÅÎA”~ã 2«Ããl¥’8S?‘ª(šµüáîæœ$)‚ÌNdÞÞ¥§1%‘dÍ©¿ {éÈ~ú€­Û‰'jð}}‡Í0~Ô>àÉè¾r¤êððljÁŸ„íKÔ—-@¼œhš´õÆ tšdRsFgó9ew–¤ÕÜP­ŸôĪ9¨GÒ¸2<•Y½z‚§qÕ\×CšæÂÓ$SàöH `ÃqwCŸ8•dºŽ¿„ó›Y\.§aͪõyÌh™.¸±&ÁÓ°HjÆ\$s¥ÀL˜ÆÙ¢˜Ý雋°¸®N5‹5—®ï å«f&ª¥‡i=3ŠWGjìa6‹¿’hŸTv“•Ý †[i¬m_MÓ­„a~ðî+ám=ù…¶Ïëz1±«]ØÖ¾¦XšÚCR6Õð[š¶jÎ9÷”_RÎ {˜´’)ºDº[ö=8¥'žøjkÛ’v¦iV>øJªÑ$™›égISøPºGšÉ¿::ò·Ö©½0E`<o}Ó¦ Š‘YeqçÞ'â¾òpðéc—GsKïigîd†Ù±%bÃ`;{NÛ#m×4ÁD™sCêbå»ÿkê^Ìâ¶—úŠÔ½‰ÇÉän—ÒëÒvKrlðLÏ—3EA¼5ÏÎ{Àƒª‡·§Ø¾öæ¿:S¤Î´K:Wë°„B|ÐØ –ˆoq³ÎÂU»èAc<ñÕºZüñ‚áendstream endobj 229 0 obj 1804 endobj 227 0 obj << /Type /Page /Contents 228 0 R /Resources 226 0 R /MediaBox [0 0 595.273 841.887] /Parent 188 0 R /Annots [ 230 0 R 231 0 R 232 0 R 233 0 R 234 0 R 235 0 R ] >> endobj 230 0 obj << /Type /Annot /Border [0 0 0] /Rect [262.369 678.549 270.837 683.685] /Subtype /Link /A << /S /GoTo /D 222 0 R >> >> endobj 231 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 593.867 185.334 599.003] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 232 0 obj << /Type /Annot /Border [0 0 0] /Rect [222.065 543.057 230.534 548.194] /Subtype /Link /A << /S /GoTo /D 209 0 R >> >> endobj 233 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 410.555 185.334 415.691] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 234 0 obj << /Type /Annot /Border [0 0 0] /Rect [210.923 359.745 219.391 364.882] /Subtype /Link /A << /S /GoTo /D 224 0 R >> >> endobj 235 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 251.153 185.334 256.289] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 209 0 obj [227 0 R /FitH 581.911] endobj 224 0 obj [227 0 R /FitH 398.6] endobj 226 0 obj << /Font << /F1 7 0 R /F3 8 0 R /F13 6 0 R /F24 9 0 R /F51 13 0 R /F7 26 0 R /F37 46 0 R /F30 10 0 R /F16 220 0 R >> /ProcSet [ /PDF /Text ] >> endobj 238 0 obj << /Length 239 0 R /Filter /FlateDecode >> stream xÚíY[oܸ~Ø·¼í?˜º(¢Ùzñ&RIƒÂÉ&…‹$NE±IòŒÆ#dFšJšLüï{ÈC݆ò%‹´»@6Ež;ÏùHÓI?t¢ØDɘÄLLæ›Ï.¹XZ¢‹ÅOÁç釋¿ÂR·"ˆ`Ú­ Ë|¢H¬Ì*‹ˆŽc·ü··ç§o. É„Å@!›}ÏÏ^¿>yóãtÆ¥ ^¾yaF,x;Õ:89wúæ/žXÊ4QÒí§1®ƒò-ÁLHMB.'3FIäÔ#£˜:>«¬Ñ1 æÅtÆt°Hñ³™N?§ó].ð+YÖié,V}Õ8áº1ú*­‹míÉå”pÚØ¿JZ±›í:ml“²Êò+óšµM’»•u–§8 ̳"¯ÈtÑ(8™‚Ö5ÒÔ­5[0FE–·«!¬¦63ª‰b  !‘V¡ô3X–'k ¥,ø4•Q”Yr¹N}s•$B54Ú€Ž#ÖjH¤5|ŸQ"ZwÜä²HÞ¸u^ 1I–W¨¥1ø/ÒÏ8W,ÖÞ‡T”U³IyµÛ¤À'¶N±[;zOGrÉF¤œJ\}ò335ü4Ñ( > û¤,#ízªy\AΩVãöS5ŒWŒH*Qjõ?X'DAµµy›Î³å5Î8Ó%ضÝÕ8Ä4‚A±«Ý¤°òשÕJ§KÜf°¿t»zâp5sR‹MVcÒšGþžrΑý F(gÎ=3Ï{Nµp«GdžST5(œ”‹;D+Ê™ŽŠh eõä<ØUé–+ hÎLè ªëªN7fÁ~•ͽ+\[d¤÷Õ.«ì18(¸„.…©Ë,OÊkŸ>:ÃÕ÷¡ —V[øH‘Ôe'üu‡Fu™äÕ:1'¶Ðcœµy`) …Ö{£Pb~]W8WàùNq §¬W|{1Ü@éiÓþ¶ºG2Ø42B éòˆÚœ¢Ž‰B'ÃßV›fÁã.{Œõ–ö+«|d¶5¥ Ÿ"C(ƒs'̓A/-€ªLÿ½ËÊ´²ö†SÏ_o=:MÍžŸ?zõ‡bDோˆ¦Mùd~¹Ü‡à U™^øuZUHÛì®WI3&ápîÒ gј\•#Ĭkb‹àÒºXÅMŠͦדàrËqk-v¹EÚó áÆ!©û¸èÂg¦WÅn½À1 ºÁº@bÔNê÷О#éüÅ]òóŒÆýÕôÝ¢˜QAbÁ±ŽÉ›þþ¶,lNÍÑÕ k†³Np›Š0Γ³¶_âmj!ÑFjH8‡? ux& >3MDd˜áá¦>v’HQ\¼ZeÆD|žèõ™Ñ3frå¥ç0ÀCm}jx© |2‚‹®>LeòºTQÑ”isѳOFZ· mWî·5hÿR4ºýi„tv ë|¬±†¬QiDf+¤¯ˆ˜D=áÐS ,`>eéþ8¥‚ÃoO%Ћɬ£4gÓÏb éÒ(¾ôU‚jXyç[_'²‹Ý½üs'ððñ Q‘º§P­ƲÐUCRí³z>…jàb§Xó~y©A´CŠ@,»Ý÷óßb(0a4ôk7,ë&¡¾ó„G$/~€ô‡&øÜ’2‡Êú;Jp\-l€•6ˆÈÁeaƒ°&\MrPÓEÌ`ÐöJÈNDáëw³ÏÞcW ¹B1Æëdî`~Q­LõèžÖsbÝ7“aèj:\¯ZÙ~Û>-m{ª,ÉYt\0Ò”S…ˆæöÙz£•ŶXùq»m#ÀñA©›,ÜzÅ"3íÁ^4$4ÉÄôK¿ïÜ&G„ h¡A¥p/É:àà0E‹C£^?Lû¨UY­À6ưÈS‡8û¸ÏDa´Jºîæðu1à†•óÛ<3m ‘1|&å:KK±Ÿí]?C-çe•>Fúl‰ºµøW;ãŒ×h ƒeYl|ø¬oÞ~ì -ÞâAj¿Æñ¡` }÷|“x’ü ÍMø|+Qœ0™J¸‰à“½X¶fÁa¸\Y&ëõ5Nã±ÃSåÞ¢•¸c‘6I¼p€Ä@Ñàá…ÖI•?¬‘›E °e¿*pbnð‘[¦-Dò1—u°ü{ž™›g·èRùRYHtŒð®r;!ù¬ØšTqΪ£XË}_fµj±>TÀgKŠÉó©“²ØYç÷“íví˜$ùØa{ÍË¢*–õCwkì…KÉ%â+Öf”yuà¯üÒ ·^Âj«¯¼OGÚ )¡ñ°mBqð€Ö´ˆðñ'O®>Ùr¬ßG‘ߨø ªªmžo¶c¯!—÷æÔ€a·×”q޼áÅíhväÛFÅ­mÓ´¶Æý‘Ç <@‘ã<Œë%öÞ¡ç!†1_ìúq§t·TTx|`ª{b¨%46iî}c EµþÚá£}·PMäð}â÷¾÷4áa¡l¹H—~°Àš#yyvþüÅÏÏNßœœÿóçÓ3{¬à½!Ð?*/ýt릹óôËÙú¤ëæ$Jêü¡¼;ÄÝË|(Ü#i3"Îäéx®‚ÿ½Ÿ‚ýåïn`!‰:Dª¨ožºá6;¸XmË,¯—ãÎ_PliYúàV‘P°ÛËDsŽž'y^¸'Uöä@% Ýá¡ÏGÆÛ[Csbú<àò3z'Ú>ÿºW©.¡’ÞW“eÖ>EjÂîËã•y¢Ì|Ï‚SÚÿ-Œ\4ûxì2g @ïêLÇîQŒÃuL Ë@™Ö»2»Du7öÄOÍ™Šaæ]}…s÷ËÊΡ«ºõ^ÿÍËÉŒJ¸nFÐ噆:Ä…“T õ¤L'ËöýHÁDhj-ió’Òvf¬)v7Û§¾UƒðòäÕ»þ©õÒÂô8H[ñeÕ³WÎúíêÙÁ³õ•—™C¤¶ôÞ7""ÌT—èîç ŽÏQ?͇ \C/¤‘—eš|{6ì å 8qMÄqwÃ9ú ÎýÀ¹e1òï](üë 9õ_EsÐsTø?©«ô¶²z³qMòÂÑä¸ùU˜_ö,^@—P²ñØ¿F™»÷¶Nä€AÏŸ}ú©ê¹\;PÚ>’Cž)"cus3ÐP¼hÔÞÖ z`£ïjPRö¢Fûüþç‘Ö à²ÚžÐýÈ Õ@@‡6Ëþ•q´ƒà, “ì‹Pñ½AøþÿÂ@x÷óU(áš}N(œß‰Â5 Cõ+¡ðè×@Ᲊ ÃU ŽŽ›z݂„„‰Žò·ÂÁ0ÆÕ/*gÆÿ?½yyendstream endobj 239 0 obj 2580 endobj 237 0 obj << /Type /Page /Contents 238 0 R /Resources 236 0 R /MediaBox [0 0 595.273 841.887] /Parent 241 0 R /Annots [ 240 0 R ] >> endobj 240 0 obj << /Type /Annot /Border [0 0 0] /Rect [269.758 639.695 278.226 644.831] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 225 0 obj [237 0 R /FitH 750.279] endobj 236 0 obj << /Font << /F13 6 0 R /F1 7 0 R /F3 8 0 R /F24 9 0 R /F37 46 0 R /F51 13 0 R /F7 26 0 R /F4 11 0 R /F30 10 0 R >> /ProcSet [ /PDF /Text ] >> endobj 245 0 obj << /Length 246 0 R /Filter /FlateDecode >> stream xÚåZÝoÛ6ÏÛþ£@›hñC¤”>µI6¤h“4õº‡¶²LÇBmÉ•äxùïwÔ‡-G¢-[ö°`(R'Öéx<þîwGòpÇ„¸#HGXrëx³³wƒ³þï¸sÚŒS™Áèk—˜½ïƒ÷ýßiG G¨'„#ÛqòÇ·?¾½¹ìÔ²º®o®Ôo´{׳îÛûÏ×7¨×;TXˆÛvþÒ§»ûë›A¦Óõ˜F&ÉeþίŸ2ÄH¡ÙÕ· xŒ0ƒ`ÄS±‡LJ”§e`ŒËJŸ³ç¬ÃanL=çˆ19N¦á×fþn (”vŒµä›L¼¹¶ƒA6ÞrI÷GEXnšO®Nµ³ù†¦‘»‹iRÑE-DxáÆó|õJ.H°bùÆóÈ’qÕø­ùfZfU E6x,“ˆ“‘Œ¢Š¯‰@&Û“²4 új†ù fI¸—à•̬*ÉÒBbæO+)<âO¥Fiª#pg2®Q¶+‰çÒóǾ¡o˜²àUe8`‹õ"á7ÕU2ˆàTk8‹Ø}Õ%gÈÁÒš˜‹²â @æâe½‘LQP‡GÁ ;É›ºÀ º¡* ÜŽ‘‰d6"zÍF© 28•Lü8#$/„O"%û3ûšä(ÿ&È>cé%~˜Ú~v58Ã9Eb“!›§agÃÊE”&²•—LDÕJýȈsmOÁ›~® "˜+¸+ùWÚ·Q™` c2p=EN6Sæ ºÐe+XÜEà"ºž-"YÅ€!ž kp3· E=âtåIJ»“°GìîÒHBÃs§Sõ%§ŽÃhæ*‡ÖÍÃ`i b,'öàmw{”tCT5ÖâÈä;Œ­€¸2¾"®Bbs¬²Œ,QŽ­Ôb’…EëJÙê2†­•ë8—×Ú^¦‡2é¾z]C1Ò¬SæºzšÁ&`±3Œ=J`?5WŽd$ÕGU#ˆ;¬1•o¡áÆTîÆš‰5Öði&rdÜ©s‡S‰ª m‚±¡«Šš "å¼Lêå€$ˆ®0¾#gÞÝß^þy1¨®@¸ ¤ÚÄ@!1‹˜U'•\Z¸¨éOu,N Ÿƒ½n½Æ_ Ù Ž¶£µ¿sÊ[M0Fß[›ð5œ+Âk4É›‚4×ü ÑW§#›í¡(\$©& Ö9EÄÛ±.š`ïĺÚX°BâHX×Ôf?Û‚9UÞfX8×UŽeÇë¬s2þïñ>€ jð ]ÅÕð·ƒãj•‡~àFOš`ØÅj5žÀˆÚE `3˜h6 ÍCßæ‹öZ´Ù²±†ùºÄ<8gë¼½á¶fåƒüͲ#‡ZSЗ~à çO‘ÿ0©G*É Z3Ž8&« 8¥íVw‹iîjœHK;Íê Š³w­>lH•ù/zõGGà>]1 î»Ôènéš ½¦@§ˆÛVcæé6fTcWöŽ‘¶ÐÎ’Åâ€X/‚òÌÖã4¼ ŽÁV[ÕuO¶¹óy,hðçÀo 6‡*=¼hôùÇ@ßÐùÞ‰Ð÷îâòú’ôl«ž»ÔážÜå­wn°qƒ’Rƒufèðÿ‚‚# (eyéý¨9+Ÿd4µ¾$yN‚¶qû—;ýÑnå0±ö)|4I’ùy¿¿\.Ñ8\D3ê‘7ékÌÅL5>‘ª½›ݶjbÕçûY'FÚžõ'XæŽþ„ϪÀé.³Æy>DîLýAºª³ ¶´× t¸—Iøùg$ãyÏé0ˆe¦) ³w’‰¬)nT‡Ôª¥á•p±²4»^C5î¡BËÙèg˜Tu•Ž[ô³~ÀZÖíæä˜xŸÞ³Qoʪ ñtû±ê¤Õ6A_µ™ØÝ_êàÎMÄÙ1áníÕ±5š_ÇšËI0…¯ÚçrRhNúvèøruÿùúöæ°ÓBÌ1à‹œÂÅܸýÝR$ýXÖn šLcµŠSÿû«/—oW‡] a ožÄÓƒIëÛ³©›ÈºåÚo[¿½Äi~Óº5Ã.ݧ֧Ҡö<´Ñm8Q½É&?ź×ÝïGbº¬¿”Ã$ §qÿgjª® ª©Ýl¬»,ÁCŸªÍÒàVV`@¦bŸLƬÖ]–êåÃZ:½endstream endobj 246 0 obj 1844 endobj 244 0 obj << /Type /Page /Contents 245 0 R /Resources 243 0 R /MediaBox [0 0 595.273 841.887] /Parent 241 0 R /Annots [ 247 0 R 248 0 R 249 0 R ] >> endobj 247 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 641.687 185.334 646.823] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 248 0 obj << /Type /Annot /Border [0 0 0] /Rect [232.481 348.787 240.949 353.923] /Subtype /Link /A << /S /GoTo /D 222 0 R >> >> endobj 249 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 288.015 185.334 293.151] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 242 0 obj [244 0 R /FitH 629.732] endobj 222 0 obj [244 0 R /FitH 375.686] endobj 243 0 obj << /Font << /F1 7 0 R /F3 8 0 R /F13 6 0 R /F7 26 0 R /F4 11 0 R /F24 9 0 R /F37 46 0 R /F51 13 0 R /F30 10 0 R >> /ProcSet [ /PDF /Text ] >> endobj 253 0 obj << /Length 254 0 R /Filter /FlateDecode >> stream xÚåZÝoܸè›ûÔÿ`>D xñ›ºCP䌤pqŽS×í¡¸»ò.ײ+¹’ölÿ÷I­di×ÞÀI †-Jr>8þfh:‰á‡N4›h™„‰É|}ôÃåÑë÷”Oàƒâ“ËeCt¹ø9ºŸþzùèÚö"˜ñ½’ºn>Ñ$ÑØË1Iâ»ÿúñâôÃ%’L87„ŠÐqööôÃtÆ%>^LyÿùâíÙ€“1DÊ0„yV oK0Ò˜ËÉŒQ¢¼Dd:£Âˆè,Íràaxt[×eº&Ø`“¥$‘²~yc§3Æudï³[*ªê´ÞT®]ÚzSævo2ºš2=¸ž: \7lñ“gëh³ÊuÇ®oY”®‘å:]9šy±¾]Ù:+òcø UDM¶tÏÔOlËÒ —QÍ盲tRµ§Zعë]dùõq³³¡ÂiÃ8gÇp‚á;Lc›‚é*óDÅ-JWá %~‰©XY×ÎÓµo¥åõfm›IêŠ ×.ˆ"H"D# pµ÷(½%¥šHü ±ïã…dœP(~‰e<äljÑÂSìçœ;-§’F×sGÖ¥JH̘§ú~Ȫ»CæÈé¦r"wv“„‡I~7ìbh_’ßzƒ$’ªŸÁñ•Š~ýéÝŒrI„é¯þr|]xÈÞ×¶Ä­”Ð=ê(JxüL}À¼JÕ4„IÚ·mgƈJ—7C)Ë#!ûÝõž®o›ÝQ”µ]8—]–Åz(¸Ò ÷£®m ÂùrFD,ûŒw(ÿf$ŽÁ~%BÝ.³ïtXɉT[«f°›G,ª Ýí­3ôǻÇo×þ€¨Dc¦ìm#«”lÅú-îzÓ•i2SŠPÙ“âCaMÇɲåÂz–]}iE|~qòîÓ§Þ^üóÓéùˆòTWíÙª¢ƒ‹BGï.0Ôh?pj$Dšˆ O̤´“åõG®HˆajKÎÝ.pîVõp%©ê¬ä›¡æ4&’o¸¼øû»áö¡DÙ÷….wMt»,Ŧê¼>ïÔLs’4îÿT¢ûTkØŽšâL6_d3M`Œbý±ûƒx‹jžˆzóÛ¡ú`XÊ¿^´Kï¿î\VÑ >tƒ5²•-+÷uQä¯jlJ8íWžÚw®'˳:P¥xô;P,]B£lîÚ€`l™¥W+[¹™ªÍ|ÊttãÒjhK¢”jn*ÆL$L°pâïÇá`_Ãñ`Cüã.«oœ‹ˆX“ø‘‹†Ë<¦YeWeZ>¼j4¡€¥P6´„G? m0”L¶ë þ>U$ÑL=¡×l;‰ßˆýY4Qm(:v2W…[;\=ëÚíêY'5¨¸v=iíF•ÀhITgkK†Fဒr°uU™qˆ JèÎ]fhÄz÷D½8°Ã°Ý#x$¶ÍƒðkúøgÔ_bÉŸ/É“«óý“1aB÷D¹Ì"Û}>–ˆåaÛÚÊo.ØÀkpŸÙ*Ë=âàÜí›9u8u´ š&¡}4‡8Žz~ö»MáB¼òñT†ˆeãþÓ綦êœcÉd6б‹ÊÇ E%XAÊ,urc›¨ó¹o”Æû—!e™Ã§¬ªm>x¬ã @Ë­›`/ý¿`/)½zaÏËðÄ6Ãè1ð:¨3V_bE3fE³ÏŠôÅÍÈ@l­èf|?5p.–so›«,‡ãÃyÝéësgº»+–öß› SöÇÞþŽ¢n7Éþ;vë£iñ1U}8½ÆXäÎézt8-,æŠsüSà,h Ep.ÄvΑØ€%U›¼  Bwl?ÊÚŽæWRt•3èF„1×â@Nû¡ÿzhɸŸ ®*;‚=y¨vëi˜Nú±"Þ^]HeØóur.ÓÅ•ÐFp‘Ò»VÜçž%†0 ›FíNIf‰$Œ²–p_fbËr*Ò•Õ˜EœæO)MS–ƒÇwøÐQ<‡cHèYò”iBA–2¡Ôïc2&„`a¿œç.„ü”åœyè—-}Ñm}ªº´éÚEö¬rýM±@§›U½ѲP×O"Ú¶’U”c°VâˆIwñlÇÊhíMU»žÛUm}“ùr¤SôØÑ·Í¡fsWÛ>]K'èâý…©í=Öz5°ñSë^qÔešW+Ÿü0í’|ž\àSEuáˆO.^ÿø¾ <Íëž‹®íÍŒU]ÓhñÈôÃÂZ1Íû¤Ç>/·wç?ºy™®åÑ©êíTl©³AQzåS¡úr¾Õ™§> pDKF¢¹k€NëʽÞÝdm^¯ R7YÕ|ïkæ³µK"qlîçn -Wv6[õq` 3€ÀšÐ@#8ÜÔö>Å9.r’x7š³tŒZÝ UŽGôô¦yµZ9wÏm¨ûÕ>qJ¾Ì‡³¯|û v€[SÁ+çÍfÝu‘ Vú›|:ÜN-ø$»Ó Ee>AK;…"]//f­»Ïoç‹´\à›hwv3²pÁœØ¿î²-á'9ËæeQËÚ½þ#«6xí'$ñ®ë\³"ÿŒ Ù&˜èÄû!¶O—îŒíðŽ†­ÛhÍÔQ,²ßƒù¶ÖÅ»t›²òeã/L[«8îÍí^Ö©¿„Á—°¤ra‡R“Öác–ÏSç&m-CûÅ&i>·«¿ñÁ’ïÅV7&4AÖÕ’íj5’Cǽì÷›ÀH…UMÌa° !¾.Š|D6‡åj²`„>*<‹’/œW”= ¢ŠgCÔm5l® GéõÝ…2A8¤äòàâ©°}0äí.Š›ãË®À§ŸN?p¶µ‡&pêy%÷YCÆi Ûk [¯w!X€‘Š=¾ lªô1¡±v—çÃ%â>ÞîŒÊ‡u#XK©è“#÷Õ:5YN½7ý’;næÏý^ß3•ìp 5s †‰¿¬fþ¨fˆAá œà9)bøá‡û`–ïF.ðˆô…SIHsMëïC–Ýmçc¸wC¼°Ç›Ÿµç®H‚Ô’·tû\2ËoÇ5onŸ«Ä¿ö+ѹ ’¸Mؾ²3ª¿ä6š|2 ÉÝÅpà}åx&'â ìóäÿ%¢ÔÒˆüò›45ÐdóG݃þe&ò_<·0læ(°Hê‰&Á•.mà±Ë>¤Oæ¥hÝ€^ü’»geç 4}|`Å’¬€=ÛóPHŸ wŒ&að()[endstream endobj 254 0 obj 2498 endobj 252 0 obj << /Type /Page /Contents 253 0 R /Resources 251 0 R /MediaBox [0 0 595.273 841.887] /Parent 241 0 R /Annots [ 255 0 R 256 0 R 257 0 R 258 0 R 259 0 R 260 0 R ] >> endobj 255 0 obj << /Type /Annot /Border [0 0 0] /Rect [233.477 553.02 241.946 558.156] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 256 0 obj << /Type /Annot /Border [0 0 0] /Rect [230.848 541.065 239.317 546.201] /Subtype /Link /A << /S /GoTo /D 224 0 R >> >> endobj 257 0 obj << /Type /Annot /Border [0 0 0] /Rect [289.683 529.11 298.151 534.246] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 258 0 obj << /Type /Annot /Border [0 0 0] /Rect [243.938 517.155 252.406 522.291] /Subtype /Link /A << /S /GoTo /D 250 0 R >> >> endobj 259 0 obj << /Type /Annot /Border [0 0 0] /Rect [224.013 310.929 232.481 316.065] /Subtype /Link /A << /S /GoTo /D 250 0 R >> >> endobj 260 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.866 154.516 185.334 159.652] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 223 0 obj [252 0 R /FitH 750.279] endobj 250 0 obj [252 0 R /FitH 409.558] endobj 251 0 obj << /Font << /F13 6 0 R /F1 7 0 R /F3 8 0 R /F24 9 0 R /F37 46 0 R /F7 26 0 R /F51 13 0 R >> /ProcSet [ /PDF /Text ] >> endobj 264 0 obj << /Length 265 0 R /Filter /FlateDecode >> stream xÚå][sÛ8²~ϯУ]µÂû¾y%£SY;c+{=§\ŠE'ªq$$O&ÿ~’’E  $•=5U[¢ÁÐhôõk2Àæ?20\# lp÷õÕO“W~KæwA“ûô™Éìßgçÿ7ùŸ?¿¥‰´´ß€@Jëüëñå›Ñ?ì*9JåŸÿòáz|9Éþ”Ðça9AògþÈ¿~þ–!Û8;6äí¾2®¦|0‚Dþ:ôl¼˜% Ò˜’"ÛWN¾$çC&éÙýòáayêìÛ|ñÙ~góµý—M³'îVËõz¸Jî“U²¸KÿŒŸm¦Ÿv#¬²wñ½—-ÁÛÅùíq5_lJQ‚4æù3†z%ØÙ!ã!ÞY’¾LWÓ»M²ÊÞ3Ÿ%‹sÐg›ùÿbÂ’Õ:ûxºÊéX,Ó7 †RT †ÄŒÏy:úÜ®I2ûÓùR0®ìùÛVÉ:Yýn_šÌì'ìì›ýe¹š­ aŒ±³f„ÕÃ|‘}OÎ,1òl³š'ëlóŠùÝt“øíK²{ºÈH' vÈhùf‡™æcÌ’»CÓ,ݽW£É+Œ!ƒ¡áFa@6óÁˆj5X%ƒûW$gaŠ„»Ç¶\Le™í«’Ų´À$ê/Û÷ï^ hû‹#e7ÍAÍ?¿zO ‡ÃQ²G²Aòü¾[ƒ!7¯2¼”XÃ8Û=XµëdóuyΉYò2_š Ú·L!ÊuŒ¥€ ¥(°¡0sT2Ÿ+I»ýûø’Bõ1+MgH¤™ì ™Uii I¤î¤þtø×F¢)Ý=‹ùc(¤9KjÇCö±éÊ2Êç»ÒÊm„¸÷Ì i"÷Ù±î¼?j^¥¥5W–[Y¦ú¦€“Z ³O‡q½½!÷dCÈÖKiD`áDå;ÿ»kç9õn<ãˆ69P-l»‡}ï;§'¸ñY*èÙí|væ/n^Ç·eajôꦠѤɑ§µ„é0û44Ý>òò¤Û"u g›3¤ä *cˆûÂÖkœÞæû‡>Ûú×××ã‹w£ÛëÑäãõeYœën… ¤¤‰gv#£Zɰ]P.¡14 €DR HÒ? ¼Tô Ø¿Ìq G¿|¼x{3~W>‹Š!Àʯábs±cø£¢"QÇÕÁP@¢ŸE! E|hŒ“p”…GC„h‡ZòóÕõø_W—s&?•¯&Ìñ°C&ˆnt”ãNƒ¦."Ú…$PŸ¸@„C&¾_ŽnߎFoÊÞ>e•^0¬¥‰Ž&ÁɃD¨ÛIÅ–ˆBC õº$Á­žGé[= '!¾zB¤a'©BùýÕßGׯl¸9ÌFÍ~‰,Œ‚"u4‘ÜÚq”İَ“‡ <äyxóáâõ¨´ø6VÂý²Ð|­¨:}íP¦^ð÷á16;Mõì£ïÃãH\JZ`Asb8Äv»Œ„—ý¤D’üêX4—å2b}¸Œ nbë2**cŸæ‹éêû.^%Qù¬\ùãU\# l_òxãUóÅãS9‚ Ô,ƒß% žˆ~\± ¼1kÓÿ…B›¯±¤1üô’'¨YHk Œ# ² V?S8û¾)‡iÁ3Æ:h°&‚U´©T¹®†VE…æõta3†øÙ§åæKöS²¸[Î’ìçébf`6k`éc°w0¤X#½‡µ Ó½Zi^Øùý%X>&‹ì§L¦?ÞÏÓ&Ül©ò~pÙˆ-X >ªŒJM½;ÿ<íåÓæ…yƒ™GE4š!Iù@™Š~…F'¬°Ûw_Ž,¤™®8áÚhî¼ÉV’z^šaöéÑwŒ@ “Vܪ±nÁ&©¯ale¦ ää)ºŸ†µâ¥é‘ÓA÷¼D”ŸúQqê|^ÓŒ˜Od“`AMÅ»/YNQ–غµ­‡Ÿíù ü&#áQEkÙŒwÓõº¬6$´7ƒ…ÚÔcxÐŽ¹“ÒPG‹*&!~´ž†î“ˆ'AöO‚êŸtï$©¹ŒwÀÆ ¤¨Ô[ã}—Çÿ,î¸9÷{ Ý̈/lÄBYÚ„©(etï¿wK’5χæu3[É¿Š«2Mô¾ƒic$çi/Þ±WOƒËØ[¸*ÿ+4RÒ®õ™a”øÒ .(­ÓHøË÷“Hí]y•.Íõvx‰d¶GžQ(5ßÛ#×piIZ–’jLk‘ú‡¼ã2‚$èÆß\íöEæ1H'$/Œ¨×.o€ª¸–5¼DC‡j­}«Í¬U Õ§òQ~èØ˜®ÖϲOR$1©QÍB$F‚‰Zå,©N™ØsûÛÓ<=¿IZÜâªm!Ì«ý1iN/ÙYZLÓ׈ ~ U§Ó½ûõ¹fH Ìê„`ÀÂkÉ+[üµ›«¹rÓ‚¿ÌÒˆqxA<$‹Ï›²ß „!Ê/ 4’Dµ‘&1RM $ñÃÄÁ$D ÅE‡Â8X”qQ¹S1‡&nNà] @ÜÀààpׄøS24RÅC9 3–B¦»Û«/© -¤d“=3 œÕÿ*èø‘#ql]MQâ@ð´þ¨FI) N =êjMú>ZwÊzN¥ˆóáÀÕøè ¨)â™k[(ÚCŒÐQ §_/j–KŠbÈúîi•ißÜA¦ñë½üÂJ…_ ©h-}¿.JNE\?f3WZцۤ ˜Yé‘9N¡Š¢þFHÉbm×,3Üìÿ|p  ¬ÐŽ 6µÒ?€¶¨íµ €# ‚RîMH…#ˆŠ:)ª%õâRI&#—+GpJ"âÏ“7ÒF…ÞµîÛþqŒÆPvi§$ÐŽí¢` [àtB V HT°:Á qJë\Ô˜˜3¤jÝÔ»Ä]û0c’Ê«Ú\·X¾tU¯7Ïþ¾é×ÝàÊ(¢ºjp³x á÷£§k³žoæË…Ó}H+݇‚Ÿ4g»†ðÉGùуIˆïÊ'¬[ÕX™À^¸Šò`ÞaEg̯=ÃË&v ëXNb)ûÏ=Å’ñkz‡' &“þI€øksvXÑ}4úéõ›ñë½k’§è„u®É,C¿Î5¹tT·^•¿nTE\¥ã+ƒ¡1É®«[‚5±ø(Tá‹$â3¶Q~¸$…Ë&ù:ßsÓHµ—9xØØ!¤ž©³(¨šÛlšž`ãÀÕêš@R¼¤®• ‹@¢)?2 · ¯Š‘õ}¤Ïš! Eü­âÖÍ|/ŠV­˜ƒàµ$ΗäÝLÒi߃&Ÿ'ºÙEÕ…!á/5 4 ut\(`O3ï_ꆒ@[±.ÙžkÄ)P¤€šEbY3 Ážskø=œ ‹=|wñÁÞØ³è62Ft¾Eµ˜©AÏe«Á°øW±PXÅÃŒ)ùÏ #UÔDJ3k”IÐq±Elèß$±aƒ•añ’mªà·M5"ÍœÕ+ŽL÷­7²ÐÐ.±ošpZ¨%‰ƒjÉÑÕ[WLˆß-¢Œê!ãýã2%¢`B§$¨þWA÷Ní#Z€ô°Y3 sJó(U!µ´(éEú¬÷®åF§c`…¢c;pBbx{;%¡óûŽ“Nï;·¤„ÕûmµZ®þ’ALg9ÄoO©þo~\Ï?/2ˆd}7}t0‘æ·9i†=Ö¼šÐH$wï/À|ñûôaž›Õ²wÈörÌ8"ûGf>èNbL |ûzyŸÃ*¤I5Ù:¯’é¯nLE¯3%í£Ð ñ9Jhå0²¢e:ô¾Œ‹†tU[›ƒÕˆ/ºp…+¢h¼½x3re3 é´­3âFÐq~=S¡žoß@¦­ôVIàý“К aˆA“l›Ÿ²üBÖfˆFÃJj‘óq0ktë÷ …Ú` >^X( ´ÿU`ý¯B aã>sêmŒ! ÅºŸ·ã÷£Û‹7o®G77·o¯®ÿz1¹}?º|7ù¹¬¢Z¨Bâµ¥8¸X5t›"tï™=Á$èèPD;F”¯¤‡½l;)žƒ¨•Œn/kaLg³U²ÞÛR™&èWUÿC ±_]ý¿ISp' ¡ðÃÍQ›,j|CÇ–/m'g/4Ì0ïË] 5U• nX¥‘ &:îlÀC[EGµç¡—ŽOm% Ù* $> =ë³ Hˆßo…ÇÑg;%õO'½Ÿˆ6r”ÀÕï—i^z²p5®%JV& Áãá½£'[xlfÆ•@ÓLM¾º~=ºýi|yqýÏÛñU`'P*­~ÚŽxlûVhÑrgý'ù²þ“|™ôÝã–°ýž¹²•â'Ý»2Jt/6¡ÅiD¹H˧Sâ{$‰P1’&º%AÆ'Awêrgª…¦p=>mÖNð/Ì*K\n„Y~œÝàAxјqŸ“£9¶BP:M†l 6â»sµìÝLåñ“ݲ[ûÌjöuù¸qé2ðo­õåQ¯íù1òXõßÿZõ“ÈXpÏ*Ž$+v9þùâo£Ûw£ÉÕ‡IhÃ,›.ß,LÊbH£bën33Q±éÌn&×ãËw·eW³PˆEbÍ87úÄŒ>àØ²lb7Ž™Y`AæFÀôiì™&ˆq]Þ³—ã›É›à=3×#BzÛ¶‚ul[^hr˜ª‰±¿'·‰§€xéñM™{£x÷Jk†`¸R×(ݱȩ´^åÎf¹Ýh¤áÕæSm•Qïx‹ïŸ>¹ð}e…åà ¹½#¿±àb{Ñuy0…] ô“'8â²p`çåTOÄh….«v.ã)³mžVˆ@±¤d¾xÊÙÄ8Y§ÐŽ"…¡Öi]ofŽ”Dsp½öŽ¡Q²þõ6!'@…Âø[TP¼îÆyŠfÞ¿Ê #R­ª$U³¾d-¤wÉAï•Ëö°Õ¥ùž46'š×ª5ßéz7l²Ø•)ñ¨Tum¬Bš½T»¼ßhѼTåx$)ìo&úÿö”–x¹"ýFÓ!þäQŽ‘Æ|pÚÝ¡t(@üÖG¶±Kø,ç‘â”îÎ×ËoŽ zj¤¯¨ç3C݇´r"R– F÷ŠÕÕ1«Ýaû èzÈŸžáæ9óFý~Ï&mйDµ™ªáºâ„Í /jˆïÇ—£÷£ËÐV϶Ÿ!&?B~¹EVѱA=ƒ)€èŽápZÀÈ€ÄAC‰¯ÓùÂuÐ*‡B¤ šÝTsÐãª9˜Q9D1—ô¯ÿ_ÚSWF8‘æ…Þ#g+è‹vâÚlk!8¢¸x'-Àù€8÷›¢¶‘04CÎ×]Ã'S¾‡þ–qöB'¼%'§\w]¤T˜o¶ÁWyÞG™«!‚qsµFÍÚ#´K`Ø8s]1#3ð[|CsqREâÅŒŽBo º4&ò¸‘¬¨’˜EÏ€ >»”“ªpŽâ4ìm VñA…ºžxç.weÛÅðÃ37_ÌœØÙª¢'¸9¼ŒõçÄÆæ§~ì„F“å3¸¯=•„A½¦SXÕƒ{úa½§NÝ{ŠûÏtUÚ(÷ÅDWÃP{€ÑCAR¨Û—-v®Sº¯æŸö©=N^éà'䈑N½ÅDpN]|H´àEÑNNÝAƒ±43›%égåL"0ìáuP‚4ËÕkfKqDyÑåã+;HS^]Õ£OÂa`ãð1zÙA(·‘b ²ÁóáúêÍÇדÐ(‰-™n–Naƒ›nÇYÙbb¶ÜKÞÍÍ“+á^§E¶¾ "ÑuY.£TþÒNI ñI`ªÓQHh¡JK¼˜C´gMîQ†Ê&šêî#ŠöÑÀª4/;(P9ˆ¶žŸíò¥ß]Ãó·P­¢ôW….IˆÝq­ ¬ãÔžp y×0¢(b¼h·]þöæb2r+  5ê´jT«AÚŒìºÛ1tˆ£„¬¤hÑø¸>7FÅÓ"$i÷5ÓHÈzîëçÞA‡r2Y!÷‚Û•—8ÙÄGgVÝö7ró˜;JƒM%Ö±}W¤5<-Z&#µ<-åäcúSñŒú+Äàš£lAè¿#¼w ¾Íbt5*hµ¼ Á^nN…wÎöÓµä ôÅ3GYÿz–,uY¦ZÌБe¸íàa!˺ëÕë¼ Ðpm‡xÐO»Ä·Öï¹§1U˜®€hÑ]ëå[öÿBÔ©ÿQWô•–EÝÍø_£«··/oÆï.Gonß_]¾+{ø0¯ÀÔ˜nÔà…Büž5 ß=¥?o‰ˆ¦M”h `Jœ*Xa¦ëÍ̶qTcV‘ˆGXÚð4˜ÒQ=;Ck™âƒ)“ÐBçR¥si·$ÈÞy¡0¥½:mØž2W!¤­|ü581Úf%D€kˆ°^*x‹IÔì¯:_®~ÌF| ÿ“¡YøFupñ—KÝÿ²*Ä=à×4p÷õ±ìíÄWx;ÁF4Ôi`X¦~B(2Ìd¹Ì’¾Ny Ãýü!ÏlXL¿&eÈ3­‘òÃkpÝ´R®þ†³-4ëþ^n–OYÊ‘£d”¦ìÞÆ`Â0(ë!uÁ¹™¢ÔârrýÑÑ8‡ ÆXÕÙ§ÍböЩ7^†×›‰ßñ®žñ­’Àû'Aô¾1 Ùì_ÿ>>ùLendstream endobj 265 0 obj 5227 endobj 263 0 obj << /Type /Page /Contents 264 0 R /Resources 262 0 R /MediaBox [0 0 595.273 841.887] /Parent 241 0 R /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 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 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 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 319 0 R 320 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 330 0 R 331 0 R 332 0 R 333 0 R 334 0 R 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 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 398 0 R 399 0 R 400 0 R 401 0 R 402 0 R 403 0 R 404 0 R 405 0 R 406 0 R 407 0 R 408 0 R 409 0 R 410 0 R 411 0 R 412 0 R 413 0 R 414 0 R 415 0 R 416 0 R 417 0 R 418 0 R 419 0 R 420 0 R 421 0 R 422 0 R 423 0 R 424 0 R 425 0 R 426 0 R 427 0 R 428 0 R 429 0 R 430 0 R 431 0 R 432 0 R 433 0 R 434 0 R 435 0 R 436 0 R 437 0 R 438 0 R 439 0 R 440 0 R 441 0 R 442 0 R 443 0 R 444 0 R 445 0 R 446 0 R 447 0 R 448 0 R 449 0 R 450 0 R 451 0 R 452 0 R 453 0 R 454 0 R 455 0 R 456 0 R 457 0 R 458 0 R 459 0 R 460 0 R 461 0 R 462 0 R 463 0 R 464 0 R 465 0 R 466 0 R 467 0 R 468 0 R 469 0 R 470 0 R 471 0 R 472 0 R 473 0 R 474 0 R 475 0 R 476 0 R 477 0 R 478 0 R 479 0 R 480 0 R 481 0 R 482 0 R 483 0 R 484 0 R 485 0 R 486 0 R 487 0 R 488 0 R 489 0 R 490 0 R 491 0 R 492 0 R 493 0 R 494 0 R 495 0 R 496 0 R 497 0 R 498 0 R 499 0 R 500 0 R 501 0 R 502 0 R 503 0 R 504 0 R 505 0 R 506 0 R 507 0 R 508 0 R 509 0 R 510 0 R 511 0 R 512 0 R 513 0 R 514 0 R 515 0 R 516 0 R 517 0 R 518 0 R 519 0 R 520 0 R 521 0 R 522 0 R 523 0 R 524 0 R 525 0 R 526 0 R 527 0 R 528 0 R 529 0 R 530 0 R 531 0 R 532 0 R 533 0 R 534 0 R 535 0 R 536 0 R 537 0 R 538 0 R 539 0 R 540 0 R 541 0 R 542 0 R 543 0 R 544 0 R 545 0 R 546 0 R 547 0 R 548 0 R 549 0 R 550 0 R 551 0 R 552 0 R 553 0 R 554 0 R 555 0 R ] >> endobj 266 0 obj << /Type /Annot /Border [0 0 0] /Rect [112.957 708.492 122.92 714.912] /Subtype /Link /A << /S /GoTo /D 250 0 R >> >> endobj 267 0 obj << /Type /Annot /Border [0 0 0] /Rect [124.025 696.52 133.987 702.941] /Subtype /Link /A << /S /GoTo /D 250 0 R >> >> endobj 268 0 obj << /Type /Annot /Border [0 0 0] /Rect [116.635 684.549 121.616 690.969] /Subtype /Link /A << /S /GoTo /D 18 0 R >> >> endobj 269 0 obj << /Type /Annot /Border [0 0 0] /Rect [129.705 684.549 139.668 690.969] /Subtype /Link /A << /S /GoTo /D 250 0 R >> >> endobj 270 0 obj << /Type /Annot /Border [0 0 0] /Rect [103.751 672.577 113.714 678.998] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 271 0 obj << /Type /Annot /Border [0 0 0] /Rect [121.674 672.577 131.637 678.998] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 272 0 obj << /Type /Annot /Border [0 0 0] /Rect [139.597 672.577 149.56 678.998] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 273 0 obj << /Type /Annot /Border [0 0 0] /Rect [104.26 660.606 114.223 667.026] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 274 0 obj << /Type /Annot /Border [0 0 0] /Rect [122.177 660.606 132.14 667.026] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 275 0 obj << /Type /Annot /Border [0 0 0] /Rect [140.093 660.606 150.056 667.026] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 276 0 obj << /Type /Annot /Border [0 0 0] /Rect [121.865 648.634 126.846 655.055] /Subtype /Link /A << /S /GoTo /D 21 0 R >> >> endobj 277 0 obj << /Type /Annot /Border [0 0 0] /Rect [134.64 648.634 144.603 655.055] /Subtype /Link /A << /S /GoTo /D 58 0 R >> >> endobj 278 0 obj << /Type /Annot /Border [0 0 0] /Rect [152.396 648.634 162.359 655.055] /Subtype /Link /A << /S /GoTo /D 169 0 R >> >> endobj 279 0 obj << /Type /Annot /Border [0 0 0] /Rect [195.09 636.663 200.071 643.083] /Subtype /Link /A << /S /GoTo /D 21 0 R >> >> endobj 280 0 obj << /Type /Annot /Border [0 0 0] /Rect [206.378 636.663 211.36 643.083] /Subtype /Link /A << /S /GoTo /D 55 0 R >> >> endobj 281 0 obj << /Type /Annot /Border [0 0 0] /Rect [217.667 636.663 227.63 643.083] /Subtype /Link /A << /S /GoTo /D 72 0 R >> >> endobj 282 0 obj << /Type /Annot /Border [0 0 0] /Rect [233.937 636.663 243.9 643.083] /Subtype /Link /A << /S /GoTo /D 117 0 R >> >> endobj 283 0 obj << /Type /Annot /Border [0 0 0] /Rect [250.207 636.663 260.17 643.083] /Subtype /Link /A << /S /GoTo /D 104 0 R >> >> endobj 284 0 obj << /Type /Annot /Border [0 0 0] /Rect [266.478 636.663 276.44 643.083] /Subtype /Link /A << /S /GoTo /D 129 0 R >> >> endobj 285 0 obj << /Type /Annot /Border [0 0 0] /Rect [168.938 624.691 173.919 631.112] /Subtype /Link /A << /S /GoTo /D 21 0 R >> >> endobj 286 0 obj << /Type /Annot /Border [0 0 0] /Rect [180.752 624.691 185.733 631.112] /Subtype /Link /A << /S /GoTo /D 56 0 R >> >> endobj 287 0 obj << /Type /Annot /Border [0 0 0] /Rect [192.566 624.691 202.529 631.112] /Subtype /Link /A << /S /GoTo /D 58 0 R >> >> endobj 288 0 obj << /Type /Annot /Border [0 0 0] /Rect [209.361 624.691 219.324 631.112] /Subtype /Link /A << /S /GoTo /D 68 0 R >> >> endobj 289 0 obj << /Type /Annot /Border [0 0 0] /Rect [226.157 624.691 236.119 631.112] /Subtype /Link /A << /S /GoTo /D 129 0 R >> >> endobj 290 0 obj << /Type /Annot /Border [0 0 0] /Rect [189.859 612.72 194.841 619.14] /Subtype /Link /A << /S /GoTo /D 21 0 R >> >> endobj 291 0 obj << /Type /Annot /Border [0 0 0] /Rect [201.771 612.72 211.734 619.14] /Subtype /Link /A << /S /GoTo /D 71 0 R >> >> endobj 292 0 obj << /Type /Annot /Border [0 0 0] /Rect [218.664 612.72 228.626 619.14] /Subtype /Link /A << /S /GoTo /D 150 0 R >> >> endobj 293 0 obj << /Type /Annot /Border [0 0 0] /Rect [163.708 600.749 168.689 607.169] /Subtype /Link /A << /S /GoTo /D 21 0 R >> >> endobj 294 0 obj << /Type /Annot /Border [0 0 0] /Rect [175.38 600.749 180.362 607.169] /Subtype /Link /A << /S /GoTo /D 55 0 R >> >> endobj 295 0 obj << /Type /Annot /Border [0 0 0] /Rect [187.053 600.749 197.015 607.169] /Subtype /Link /A << /S /GoTo /D 72 0 R >> >> endobj 296 0 obj << /Type /Annot /Border [0 0 0] /Rect [203.707 600.749 213.669 607.169] /Subtype /Link /A << /S /GoTo /D 117 0 R >> >> endobj 297 0 obj << /Type /Annot /Border [0 0 0] /Rect [220.361 600.749 230.323 607.169] /Subtype /Link /A << /S /GoTo /D 104 0 R >> >> endobj 298 0 obj << /Type /Annot /Border [0 0 0] /Rect [237.015 600.749 246.977 607.169] /Subtype /Link /A << /S /GoTo /D 129 0 R >> >> endobj 299 0 obj << /Type /Annot /Border [0 0 0] /Rect [179.399 588.777 184.38 595.197] /Subtype /Link /A << /S /GoTo /D 21 0 R >> >> endobj 300 0 obj << /Type /Annot /Border [0 0 0] /Rect [191.662 588.777 201.625 595.197] /Subtype /Link /A << /S /GoTo /D 169 0 R >> >> endobj 301 0 obj << /Type /Annot /Border [0 0 0] /Rect [142.786 576.806 147.768 583.226] /Subtype /Link /A << /S /GoTo /D 21 0 R >> >> endobj 302 0 obj << /Type /Annot /Border [0 0 0] /Rect [155.076 576.806 165.039 583.226] /Subtype /Link /A << /S /GoTo /D 71 0 R >> >> endobj 303 0 obj << /Type /Annot /Border [0 0 0] /Rect [172.348 576.806 182.31 583.226] /Subtype /Link /A << /S /GoTo /D 150 0 R >> >> endobj 304 0 obj << /Type /Annot /Border [0 0 0] /Rect [189.619 576.806 199.582 583.226] /Subtype /Link /A << /S /GoTo /D 142 0 R >> >> endobj 305 0 obj << /Type /Annot /Border [0 0 0] /Rect [121.865 564.834 126.846 571.254] /Subtype /Link /A << /S /GoTo /D 21 0 R >> >> endobj 306 0 obj << /Type /Annot /Border [0 0 0] /Rect [134.64 564.834 144.603 571.254] /Subtype /Link /A << /S /GoTo /D 58 0 R >> >> endobj 307 0 obj << /Type /Annot /Border [0 0 0] /Rect [152.396 564.834 162.359 571.254] /Subtype /Link /A << /S /GoTo /D 169 0 R >> >> endobj 308 0 obj << /Type /Annot /Border [0 0 0] /Rect [139.624 552.863 149.587 559.283] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 309 0 obj << /Type /Annot /Border [0 0 0] /Rect [156.659 552.863 166.622 559.283] /Subtype /Link /A << /S /GoTo /D 38 0 R >> >> endobj 310 0 obj << /Type /Annot /Border [0 0 0] /Rect [173.694 552.863 183.657 559.283] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 311 0 obj << /Type /Annot /Border [0 0 0] /Rect [190.729 552.863 200.692 559.283] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 312 0 obj << /Type /Annot /Border [0 0 0] /Rect [207.764 552.863 217.727 559.283] /Subtype /Link /A << /S /GoTo /D 250 0 R >> >> endobj 313 0 obj << /Type /Annot /Border [0 0 0] /Rect [107.103 540.891 112.084 547.311] /Subtype /Link /A << /S /GoTo /D 19 0 R >> >> endobj 314 0 obj << /Type /Annot /Border [0 0 0] /Rect [236.932 528.92 246.895 535.34] /Subtype /Link /A << /S /GoTo /D 224 0 R >> >> endobj 315 0 obj << /Type /Annot /Border [0 0 0] /Rect [200.32 516.948 210.283 523.368] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 316 0 obj << /Type /Annot /Border [0 0 0] /Rect [205.55 504.977 215.513 511.397] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 317 0 obj << /Type /Annot /Border [0 0 0] /Rect [95.678 493.005 105.641 499.426] /Subtype /Link /A << /S /GoTo /D 57 0 R >> >> endobj 318 0 obj << /Type /Annot /Border [0 0 0] /Rect [112.041 493.005 122.004 499.426] /Subtype /Link /A << /S /GoTo /D 58 0 R >> >> endobj 319 0 obj << /Type /Annot /Border [0 0 0] /Rect [128.405 493.005 138.368 499.426] /Subtype /Link /A << /S /GoTo /D 59 0 R >> >> endobj 320 0 obj << /Type /Annot /Border [0 0 0] /Rect [144.768 493.005 154.731 499.426] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 321 0 obj << /Type /Annot /Border [0 0 0] /Rect [161.132 493.005 171.094 499.426] /Subtype /Link /A << /S /GoTo /D 117 0 R >> >> endobj 322 0 obj << /Type /Annot /Border [0 0 0] /Rect [177.495 493.005 187.458 499.426] /Subtype /Link /A << /S /GoTo /D 104 0 R >> >> endobj 323 0 obj << /Type /Annot /Border [0 0 0] /Rect [193.859 493.005 203.821 499.426] /Subtype /Link /A << /S /GoTo /D 129 0 R >> >> endobj 324 0 obj << /Type /Annot /Border [0 0 0] /Rect [210.222 493.005 220.185 499.426] /Subtype /Link /A << /S /GoTo /D 141 0 R >> >> endobj 325 0 obj << /Type /Annot /Border [0 0 0] /Rect [226.586 493.005 236.548 499.426] /Subtype /Link /A << /S /GoTo /D 168 0 R >> >> endobj 326 0 obj << /Type /Annot /Border [0 0 0] /Rect [242.949 493.005 252.912 499.426] /Subtype /Link /A << /S /GoTo /D 167 0 R >> >> endobj 327 0 obj << /Type /Annot /Border [0 0 0] /Rect [259.313 493.005 269.275 499.426] /Subtype /Link /A << /S /GoTo /D 169 0 R >> >> endobj 328 0 obj << /Type /Annot /Border [0 0 0] /Rect [150.317 481.034 160.28 487.454] /Subtype /Link /A << /S /GoTo /D 33 0 R >> >> endobj 329 0 obj << /Type /Annot /Border [0 0 0] /Rect [166.614 481.034 176.577 487.454] /Subtype /Link /A << /S /GoTo /D 65 0 R >> >> endobj 330 0 obj << /Type /Annot /Border [0 0 0] /Rect [182.912 481.034 192.874 487.454] /Subtype /Link /A << /S /GoTo /D 69 0 R >> >> endobj 331 0 obj << /Type /Annot /Border [0 0 0] /Rect [199.209 481.034 209.172 487.454] /Subtype /Link /A << /S /GoTo /D 70 0 R >> >> endobj 332 0 obj << /Type /Annot /Border [0 0 0] /Rect [215.506 481.034 225.469 487.454] /Subtype /Link /A << /S /GoTo /D 71 0 R >> >> endobj 333 0 obj << /Type /Annot /Border [0 0 0] /Rect [231.803 481.034 241.766 487.454] /Subtype /Link /A << /S /GoTo /D 72 0 R >> >> endobj 334 0 obj << /Type /Annot /Border [0 0 0] /Rect [248.101 481.034 258.063 487.454] /Subtype /Link /A << /S /GoTo /D 73 0 R >> >> endobj 335 0 obj << /Type /Annot /Border [0 0 0] /Rect [264.398 481.034 274.36 487.454] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 336 0 obj << /Type /Annot /Border [0 0 0] /Rect [205.352 469.062 215.314 475.483] /Subtype /Link /A << /S /GoTo /D 33 0 R >> >> endobj 337 0 obj << /Type /Annot /Border [0 0 0] /Rect [226.666 457.091 236.629 463.511] /Subtype /Link /A << /S /GoTo /D 143 0 R >> >> endobj 338 0 obj << /Type /Annot /Border [0 0 0] /Rect [243.028 457.091 252.991 463.511] /Subtype /Link /A << /S /GoTo /D 151 0 R >> >> endobj 339 0 obj << /Type /Annot /Border [0 0 0] /Rect [259.391 457.091 269.354 463.511] /Subtype /Link /A << /S /GoTo /D 197 0 R >> >> endobj 340 0 obj << /Type /Annot /Border [0 0 0] /Rect [146.583 445.119 151.564 451.54] /Subtype /Link /A << /S /GoTo /D 56 0 R >> >> endobj 341 0 obj << /Type /Annot /Border [0 0 0] /Rect [157.749 433.148 162.73 439.568] /Subtype /Link /A << /S /GoTo /D 56 0 R >> >> endobj 342 0 obj << /Type /Annot /Border [0 0 0] /Rect [170.068 433.148 180.031 439.568] /Subtype /Link /A << /S /GoTo /D 57 0 R >> >> endobj 343 0 obj << /Type /Annot /Border [0 0 0] /Rect [187.369 433.148 197.332 439.568] /Subtype /Link /A << /S /GoTo /D 58 0 R >> >> endobj 344 0 obj << /Type /Annot /Border [0 0 0] /Rect [101.279 421.176 111.242 427.597] /Subtype /Link /A << /S /GoTo /D 104 0 R >> >> endobj 345 0 obj << /Type /Annot /Border [0 0 0] /Rect [101.356 409.205 111.319 415.625] /Subtype /Link /A << /S /GoTo /D 129 0 R >> >> endobj 346 0 obj << /Type /Annot /Border [0 0 0] /Rect [118.651 409.205 128.613 415.625] /Subtype /Link /A << /S /GoTo /D 141 0 R >> >> endobj 347 0 obj << /Type /Annot /Border [0 0 0] /Rect [135.945 409.205 145.908 415.625] /Subtype /Link /A << /S /GoTo /D 150 0 R >> >> endobj 348 0 obj << /Type /Annot /Border [0 0 0] /Rect [153.24 409.205 163.203 415.625] /Subtype /Link /A << /S /GoTo /D 142 0 R >> >> endobj 349 0 obj << /Type /Annot /Border [0 0 0] /Rect [170.535 409.205 180.497 415.625] /Subtype /Link /A << /S /GoTo /D 143 0 R >> >> endobj 350 0 obj << /Type /Annot /Border [0 0 0] /Rect [187.829 409.205 197.792 415.625] /Subtype /Link /A << /S /GoTo /D 151 0 R >> >> endobj 351 0 obj << /Type /Annot /Border [0 0 0] /Rect [101.356 397.233 111.319 403.654] /Subtype /Link /A << /S /GoTo /D 129 0 R >> >> endobj 352 0 obj << /Type /Annot /Border [0 0 0] /Rect [119.31 397.233 129.272 403.654] /Subtype /Link /A << /S /GoTo /D 141 0 R >> >> endobj 353 0 obj << /Type /Annot /Border [0 0 0] /Rect [137.263 397.233 147.225 403.654] /Subtype /Link /A << /S /GoTo /D 143 0 R >> >> endobj 354 0 obj << /Type /Annot /Border [0 0 0] /Rect [95.543 385.262 105.505 391.682] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 355 0 obj << /Type /Annot /Border [0 0 0] /Rect [113.802 385.262 123.764 391.682] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 356 0 obj << /Type /Annot /Border [0 0 0] /Rect [166.151 373.29 171.132 379.711] /Subtype /Link /A << /S /GoTo /D 55 0 R >> >> endobj 357 0 obj << /Type /Annot /Border [0 0 0] /Rect [178.21 373.29 183.192 379.711] /Subtype /Link /A << /S /GoTo /D 56 0 R >> >> endobj 358 0 obj << /Type /Annot /Border [0 0 0] /Rect [190.27 373.29 200.232 379.711] /Subtype /Link /A << /S /GoTo /D 34 0 R >> >> endobj 359 0 obj << /Type /Annot /Border [0 0 0] /Rect [207.311 373.29 217.273 379.711] /Subtype /Link /A << /S /GoTo /D 68 0 R >> >> endobj 360 0 obj << /Type /Annot /Border [0 0 0] /Rect [113.484 361.319 123.447 367.739] /Subtype /Link /A << /S /GoTo /D 129 0 R >> >> endobj 361 0 obj << /Type /Annot /Border [0 0 0] /Rect [131.512 361.319 141.475 367.739] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 362 0 obj << /Type /Annot /Border [0 0 0] /Rect [143.061 349.347 153.024 355.768] /Subtype /Link /A << /S /GoTo /D 141 0 R >> >> endobj 363 0 obj << /Type /Annot /Border [0 0 0] /Rect [160.267 349.347 170.229 355.768] /Subtype /Link /A << /S /GoTo /D 142 0 R >> >> endobj 364 0 obj << /Type /Annot /Border [0 0 0] /Rect [177.472 349.347 187.435 355.768] /Subtype /Link /A << /S /GoTo /D 37 0 R >> >> endobj 365 0 obj << /Type /Annot /Border [0 0 0] /Rect [194.677 349.347 204.64 355.768] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 366 0 obj << /Type /Annot /Border [0 0 0] /Rect [209.152 337.376 219.115 343.796] /Subtype /Link /A << /S /GoTo /D 37 0 R >> >> endobj 367 0 obj << /Type /Annot /Border [0 0 0] /Rect [225.529 337.376 235.492 343.796] /Subtype /Link /A << /S /GoTo /D 168 0 R >> >> endobj 368 0 obj << /Type /Annot /Border [0 0 0] /Rect [241.906 337.376 251.869 343.796] /Subtype /Link /A << /S /GoTo /D 143 0 R >> >> endobj 369 0 obj << /Type /Annot /Border [0 0 0] /Rect [258.283 337.376 268.246 343.796] /Subtype /Link /A << /S /GoTo /D 151 0 R >> >> endobj 370 0 obj << /Type /Annot /Border [0 0 0] /Rect [122.273 325.404 132.236 331.825] /Subtype /Link /A << /S /GoTo /D 38 0 R >> >> endobj 371 0 obj << /Type /Annot /Border [0 0 0] /Rect [139.312 325.404 149.275 331.825] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 372 0 obj << /Type /Annot /Border [0 0 0] /Rect [156.351 325.404 166.314 331.825] /Subtype /Link /A << /S /GoTo /D 224 0 R >> >> endobj 373 0 obj << /Type /Annot /Border [0 0 0] /Rect [173.39 325.404 183.352 331.825] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 374 0 obj << /Type /Annot /Border [0 0 0] /Rect [190.429 325.404 200.391 331.825] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 375 0 obj << /Type /Annot /Border [0 0 0] /Rect [207.467 325.404 217.43 331.825] /Subtype /Link /A << /S /GoTo /D 250 0 R >> >> endobj 376 0 obj << /Type /Annot /Border [0 0 0] /Rect [142.989 313.433 152.952 319.853] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 377 0 obj << /Type /Annot /Border [0 0 0] /Rect [160.196 313.433 170.158 319.853] /Subtype /Link /A << /S /GoTo /D 38 0 R >> >> endobj 378 0 obj << /Type /Annot /Border [0 0 0] /Rect [177.402 313.433 187.365 319.853] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 379 0 obj << /Type /Annot /Border [0 0 0] /Rect [194.608 313.433 204.571 319.853] /Subtype /Link /A << /S /GoTo /D 209 0 R >> >> endobj 380 0 obj << /Type /Annot /Border [0 0 0] /Rect [186.063 301.461 196.025 307.882] /Subtype /Link /A << /S /GoTo /D 59 0 R >> >> endobj 381 0 obj << /Type /Annot /Border [0 0 0] /Rect [160.09 289.49 170.052 295.91] /Subtype /Link /A << /S /GoTo /D 58 0 R >> >> endobj 382 0 obj << /Type /Annot /Border [0 0 0] /Rect [177.297 289.49 187.26 295.91] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 383 0 obj << /Type /Annot /Border [0 0 0] /Rect [194.505 289.49 204.468 295.91] /Subtype /Link /A << /S /GoTo /D 35 0 R >> >> endobj 384 0 obj << /Type /Annot /Border [0 0 0] /Rect [141.597 277.519 151.56 283.939] /Subtype /Link /A << /S /GoTo /D 57 0 R >> >> endobj 385 0 obj << /Type /Annot /Border [0 0 0] /Rect [159.04 277.519 169.002 283.939] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 386 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.482 277.519 186.445 283.939] /Subtype /Link /A << /S /GoTo /D 67 0 R >> >> endobj 387 0 obj << /Type /Annot /Border [0 0 0] /Rect [114.503 265.547 124.465 271.967] /Subtype /Link /A << /S /GoTo /D 59 0 R >> >> endobj 388 0 obj << /Type /Annot /Border [0 0 0] /Rect [132.518 265.547 142.48 271.967] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 389 0 obj << /Type /Annot /Border [0 0 0] /Rect [123.292 253.576 133.254 259.996] /Subtype /Link /A << /S /GoTo /D 38 0 R >> >> endobj 390 0 obj << /Type /Annot /Border [0 0 0] /Rect [140.745 253.576 150.708 259.996] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 391 0 obj << /Type /Annot /Border [0 0 0] /Rect [158.198 253.576 168.161 259.996] /Subtype /Link /A << /S /GoTo /D 209 0 R >> >> endobj 392 0 obj << /Type /Annot /Border [0 0 0] /Rect [175.652 253.576 185.614 259.996] /Subtype /Link /A << /S /GoTo /D 224 0 R >> >> endobj 393 0 obj << /Type /Annot /Border [0 0 0] /Rect [100.944 241.604 110.906 248.024] /Subtype /Link /A << /S /GoTo /D 59 0 R >> >> endobj 394 0 obj << /Type /Annot /Border [0 0 0] /Rect [118.243 241.604 128.206 248.024] /Subtype /Link /A << /S /GoTo /D 104 0 R >> >> endobj 395 0 obj << /Type /Annot /Border [0 0 0] /Rect [135.543 241.604 145.506 248.024] /Subtype /Link /A << /S /GoTo /D 129 0 R >> >> endobj 396 0 obj << /Type /Annot /Border [0 0 0] /Rect [152.843 241.604 162.805 248.024] /Subtype /Link /A << /S /GoTo /D 141 0 R >> >> endobj 397 0 obj << /Type /Annot /Border [0 0 0] /Rect [170.142 241.604 180.105 248.024] /Subtype /Link /A << /S /GoTo /D 168 0 R >> >> endobj 398 0 obj << /Type /Annot /Border [0 0 0] /Rect [187.442 241.604 197.405 248.024] /Subtype /Link /A << /S /GoTo /D 169 0 R >> >> endobj 399 0 obj << /Type /Annot /Border [0 0 0] /Rect [121.7 229.633 131.663 236.053] /Subtype /Link /A << /S /GoTo /D 143 0 R >> >> endobj 400 0 obj << /Type /Annot /Border [0 0 0] /Rect [139.174 229.633 149.136 236.053] /Subtype /Link /A << /S /GoTo /D 151 0 R >> >> endobj 401 0 obj << /Type /Annot /Border [0 0 0] /Rect [156.647 229.633 166.609 236.053] /Subtype /Link /A << /S /GoTo /D 38 0 R >> >> endobj 402 0 obj << /Type /Annot /Border [0 0 0] /Rect [174.12 229.633 184.083 236.053] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 403 0 obj << /Type /Annot /Border [0 0 0] /Rect [231.702 217.661 241.664 224.081] /Subtype /Link /A << /S /GoTo /D 143 0 R >> >> endobj 404 0 obj << /Type /Annot /Border [0 0 0] /Rect [259.016 205.69 268.978 212.11] /Subtype /Link /A << /S /GoTo /D 151 0 R >> >> endobj 405 0 obj << /Type /Annot /Border [0 0 0] /Rect [90.68 193.718 100.642 200.138] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 406 0 obj << /Type /Annot /Border [0 0 0] /Rect [111.404 181.747 116.386 188.167] /Subtype /Link /A << /S /GoTo /D 16 0 R >> >> endobj 407 0 obj << /Type /Annot /Border [0 0 0] /Rect [123.869 181.747 133.832 188.167] /Subtype /Link /A << /S /GoTo /D 117 0 R >> >> endobj 408 0 obj << /Type /Annot /Border [0 0 0] /Rect [141.315 181.747 151.278 188.167] /Subtype /Link /A << /S /GoTo /D 38 0 R >> >> endobj 409 0 obj << /Type /Annot /Border [0 0 0] /Rect [158.761 181.747 168.724 188.167] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 410 0 obj << /Type /Annot /Border [0 0 0] /Rect [176.207 181.747 186.17 188.167] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 411 0 obj << /Type /Annot /Border [0 0 0] /Rect [91.87 169.775 96.851 176.196] /Subtype /Link /A << /S /GoTo /D 19 0 R >> >> endobj 412 0 obj << /Type /Annot /Border [0 0 0] /Rect [103.943 169.775 113.905 176.196] /Subtype /Link /A << /S /GoTo /D 59 0 R >> >> endobj 413 0 obj << /Type /Annot /Border [0 0 0] /Rect [120.997 169.775 130.96 176.196] /Subtype /Link /A << /S /GoTo /D 104 0 R >> >> endobj 414 0 obj << /Type /Annot /Border [0 0 0] /Rect [138.052 169.775 148.014 176.196] /Subtype /Link /A << /S /GoTo /D 129 0 R >> >> endobj 415 0 obj << /Type /Annot /Border [0 0 0] /Rect [155.106 169.775 165.069 176.196] /Subtype /Link /A << /S /GoTo /D 168 0 R >> >> endobj 416 0 obj << /Type /Annot /Border [0 0 0] /Rect [172.16 169.775 182.123 176.196] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 417 0 obj << /Type /Annot /Border [0 0 0] /Rect [189.215 169.775 199.177 176.196] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 418 0 obj << /Type /Annot /Border [0 0 0] /Rect [206.269 169.775 216.232 176.196] /Subtype /Link /A << /S /GoTo /D 250 0 R >> >> endobj 419 0 obj << /Type /Annot /Border [0 0 0] /Rect [221.241 157.804 231.204 164.224] /Subtype /Link /A << /S /GoTo /D 36 0 R >> >> endobj 420 0 obj << /Type /Annot /Border [0 0 0] /Rect [237.672 157.804 247.635 164.224] /Subtype /Link /A << /S /GoTo /D 143 0 R >> >> endobj 421 0 obj << /Type /Annot /Border [0 0 0] /Rect [254.104 157.804 264.066 164.224] /Subtype /Link /A << /S /GoTo /D 151 0 R >> >> endobj 422 0 obj << /Type /Annot /Border [0 0 0] /Rect [169.15 145.832 179.113 152.253] /Subtype /Link /A << /S /GoTo /D 36 0 R >> >> endobj 423 0 obj << /Type /Annot /Border [0 0 0] /Rect [186.463 145.832 196.425 152.253] /Subtype /Link /A << /S /GoTo /D 37 0 R >> >> endobj 424 0 obj << /Type /Annot /Border [0 0 0] /Rect [94.015 133.861 98.996 140.281] /Subtype /Link /A << /S /GoTo /D 19 0 R >> >> endobj 425 0 obj << /Type /Annot /Border [0 0 0] /Rect [105.589 133.861 110.57 140.281] /Subtype /Link /A << /S /GoTo /D 55 0 R >> >> endobj 426 0 obj << /Type /Annot /Border [0 0 0] /Rect [117.162 133.861 122.143 140.281] /Subtype /Link /A << /S /GoTo /D 56 0 R >> >> endobj 427 0 obj << /Type /Annot /Border [0 0 0] /Rect [128.736 133.861 138.698 140.281] /Subtype /Link /A << /S /GoTo /D 57 0 R >> >> endobj 428 0 obj << /Type /Annot /Border [0 0 0] /Rect [145.29 133.861 155.253 140.281] /Subtype /Link /A << /S /GoTo /D 58 0 R >> >> endobj 429 0 obj << /Type /Annot /Border [0 0 0] /Rect [161.845 133.861 171.808 140.281] /Subtype /Link /A << /S /GoTo /D 59 0 R >> >> endobj 430 0 obj << /Type /Annot /Border [0 0 0] /Rect [178.4 133.861 188.363 140.281] /Subtype /Link /A << /S /GoTo /D 68 0 R >> >> endobj 431 0 obj << /Type /Annot /Border [0 0 0] /Rect [194.955 133.861 204.918 140.281] /Subtype /Link /A << /S /GoTo /D 129 0 R >> >> endobj 432 0 obj << /Type /Annot /Border [0 0 0] /Rect [211.51 133.861 221.472 140.281] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 433 0 obj << /Type /Annot /Border [0 0 0] /Rect [228.065 133.861 238.027 140.281] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 434 0 obj << /Type /Annot /Border [0 0 0] /Rect [244.62 133.861 254.582 140.281] /Subtype /Link /A << /S /GoTo /D 250 0 R >> >> endobj 435 0 obj << /Type /Annot /Border [0 0 0] /Rect [108.917 121.889 118.88 128.31] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 436 0 obj << /Type /Annot /Border [0 0 0] /Rect [407.669 708.492 412.651 714.912] /Subtype /Link /A << /S /GoTo /D 18 0 R >> >> endobj 437 0 obj << /Type /Annot /Border [0 0 0] /Rect [419.697 708.492 429.66 714.912] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 438 0 obj << /Type /Annot /Border [0 0 0] /Rect [436.706 708.492 446.669 714.912] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 439 0 obj << /Type /Annot /Border [0 0 0] /Rect [453.715 708.492 463.678 714.912] /Subtype /Link /A << /S /GoTo /D 250 0 R >> >> endobj 440 0 obj << /Type /Annot /Border [0 0 0] /Rect [358.682 696.52 368.644 702.941] /Subtype /Link /A << /S /GoTo /D 143 0 R >> >> endobj 441 0 obj << /Type /Annot /Border [0 0 0] /Rect [375.813 696.52 385.775 702.941] /Subtype /Link /A << /S /GoTo /D 151 0 R >> >> endobj 442 0 obj << /Type /Annot /Border [0 0 0] /Rect [392.944 696.52 402.907 702.941] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 443 0 obj << /Type /Annot /Border [0 0 0] /Rect [410.075 696.52 420.038 702.941] /Subtype /Link /A << /S /GoTo /D 209 0 R >> >> endobj 444 0 obj << /Type /Annot /Border [0 0 0] /Rect [427.206 696.52 437.169 702.941] /Subtype /Link /A << /S /GoTo /D 224 0 R >> >> endobj 445 0 obj << /Type /Annot /Border [0 0 0] /Rect [444.338 696.52 454.3 702.941] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 446 0 obj << /Type /Annot /Border [0 0 0] /Rect [350.896 684.549 355.877 690.969] /Subtype /Link /A << /S /GoTo /D 55 0 R >> >> endobj 447 0 obj << /Type /Annot /Border [0 0 0] /Rect [346.822 672.577 356.785 678.998] /Subtype /Link /A << /S /GoTo /D 59 0 R >> >> endobj 448 0 obj << /Type /Annot /Border [0 0 0] /Rect [364.756 672.577 374.719 678.998] /Subtype /Link /A << /S /GoTo /D 104 0 R >> >> endobj 449 0 obj << /Type /Annot /Border [0 0 0] /Rect [382.69 672.577 392.653 678.998] /Subtype /Link /A << /S /GoTo /D 168 0 R >> >> endobj 450 0 obj << /Type /Annot /Border [0 0 0] /Rect [356.115 660.606 366.077 667.026] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 451 0 obj << /Type /Annot /Border [0 0 0] /Rect [373.931 660.606 383.894 667.026] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 452 0 obj << /Type /Annot /Border [0 0 0] /Rect [391.747 660.606 401.71 667.026] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 453 0 obj << /Type /Annot /Border [0 0 0] /Rect [386.748 648.634 391.729 655.055] /Subtype /Link /A << /S /GoTo /D 17 0 R >> >> endobj 454 0 obj << /Type /Annot /Border [0 0 0] /Rect [397.209 636.663 402.19 643.083] /Subtype /Link /A << /S /GoTo /D 17 0 R >> >> endobj 455 0 obj << /Type /Annot /Border [0 0 0] /Rect [402.439 624.691 407.42 631.112] /Subtype /Link /A << /S /GoTo /D 17 0 R >> >> endobj 456 0 obj << /Type /Annot /Border [0 0 0] /Rect [397.209 612.72 402.19 619.14] /Subtype /Link /A << /S /GoTo /D 17 0 R >> >> endobj 457 0 obj << /Type /Annot /Border [0 0 0] /Rect [344.697 600.749 354.659 607.169] /Subtype /Link /A << /S /GoTo /D 58 0 R >> >> endobj 458 0 obj << /Type /Annot /Border [0 0 0] /Rect [386.713 588.777 396.675 595.197] /Subtype /Link /A << /S /GoTo /D 141 0 R >> >> endobj 459 0 obj << /Type /Annot /Border [0 0 0] /Rect [404.14 588.777 414.103 595.197] /Subtype /Link /A << /S /GoTo /D 167 0 R >> >> endobj 460 0 obj << /Type /Annot /Border [0 0 0] /Rect [421.568 588.777 431.531 595.197] /Subtype /Link /A << /S /GoTo /D 169 0 R >> >> endobj 461 0 obj << /Type /Annot /Border [0 0 0] /Rect [332.124 576.806 342.086 583.226] /Subtype /Link /A << /S /GoTo /D 59 0 R >> >> endobj 462 0 obj << /Type /Annot /Border [0 0 0] /Rect [355.028 564.834 364.991 571.254] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 463 0 obj << /Type /Annot /Border [0 0 0] /Rect [372.858 564.834 382.821 571.254] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 464 0 obj << /Type /Annot /Border [0 0 0] /Rect [390.688 564.834 400.651 571.254] /Subtype /Link /A << /S /GoTo /D 250 0 R >> >> endobj 465 0 obj << /Type /Annot /Border [0 0 0] /Rect [402.439 552.863 412.402 559.283] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 466 0 obj << /Type /Annot /Border [0 0 0] /Rect [419.889 552.863 429.851 559.283] /Subtype /Link /A << /S /GoTo /D 209 0 R >> >> endobj 467 0 obj << /Type /Annot /Border [0 0 0] /Rect [427.868 540.891 437.83 547.311] /Subtype /Link /A << /S /GoTo /D 117 0 R >> >> endobj 468 0 obj << /Type /Annot /Border [0 0 0] /Rect [444.773 540.891 454.736 547.311] /Subtype /Link /A << /S /GoTo /D 141 0 R >> >> endobj 469 0 obj << /Type /Annot /Border [0 0 0] /Rect [461.678 540.891 471.641 547.311] /Subtype /Link /A << /S /GoTo /D 142 0 R >> >> endobj 470 0 obj << /Type /Annot /Border [0 0 0] /Rect [360.443 528.92 370.406 535.34] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 471 0 obj << /Type /Annot /Border [0 0 0] /Rect [371.747 516.948 376.728 523.368] /Subtype /Link /A << /S /GoTo /D 55 0 R >> >> endobj 472 0 obj << /Type /Annot /Border [0 0 0] /Rect [365.827 504.977 370.808 511.397] /Subtype /Link /A << /S /GoTo /D 16 0 R >> >> endobj 473 0 obj << /Type /Annot /Border [0 0 0] /Rect [378.442 504.977 383.423 511.397] /Subtype /Link /A << /S /GoTo /D 56 0 R >> >> endobj 474 0 obj << /Type /Annot /Border [0 0 0] /Rect [391.056 504.977 401.019 511.397] /Subtype /Link /A << /S /GoTo /D 34 0 R >> >> endobj 475 0 obj << /Type /Annot /Border [0 0 0] /Rect [408.652 504.977 418.615 511.397] /Subtype /Link /A << /S /GoTo /D 141 0 R >> >> endobj 476 0 obj << /Type /Annot /Border [0 0 0] /Rect [351.86 493.005 361.823 499.426] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 477 0 obj << /Type /Annot /Border [0 0 0] /Rect [376.287 481.034 381.269 487.454] /Subtype /Link /A << /S /GoTo /D 16 0 R >> >> endobj 478 0 obj << /Type /Annot /Border [0 0 0] /Rect [341.244 469.062 351.207 475.483] /Subtype /Link /A << /S /GoTo /D 141 0 R >> >> endobj 479 0 obj << /Type /Annot /Border [0 0 0] /Rect [341.244 457.091 351.207 463.511] /Subtype /Link /A << /S /GoTo /D 141 0 R >> >> endobj 480 0 obj << /Type /Annot /Border [0 0 0] /Rect [371.057 445.119 381.02 451.54] /Subtype /Link /A << /S /GoTo /D 250 0 R >> >> endobj 481 0 obj << /Type /Annot /Border [0 0 0] /Rect [343.639 433.148 353.602 439.568] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 482 0 obj << /Type /Annot /Border [0 0 0] /Rect [361.845 433.148 371.808 439.568] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 483 0 obj << /Type /Annot /Border [0 0 0] /Rect [356.942 421.176 366.905 427.597] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 484 0 obj << /Type /Annot /Border [0 0 0] /Rect [374.748 421.176 384.711 427.597] /Subtype /Link /A << /S /GoTo /D 209 0 R >> >> endobj 485 0 obj << /Type /Annot /Border [0 0 0] /Rect [392.554 421.176 402.516 427.597] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 486 0 obj << /Type /Annot /Border [0 0 0] /Rect [357.472 409.205 367.435 415.625] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 487 0 obj << /Type /Annot /Border [0 0 0] /Rect [375.5 409.205 385.463 415.625] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 488 0 obj << /Type /Annot /Border [0 0 0] /Rect [360.12 397.233 370.083 403.654] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 489 0 obj << /Type /Annot /Border [0 0 0] /Rect [377.885 397.233 387.848 403.654] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 490 0 obj << /Type /Annot /Border [0 0 0] /Rect [395.651 397.233 405.614 403.654] /Subtype /Link /A << /S /GoTo /D 250 0 R >> >> endobj 491 0 obj << /Type /Annot /Border [0 0 0] /Rect [402.91 385.262 407.891 391.682] /Subtype /Link /A << /S /GoTo /D 55 0 R >> >> endobj 492 0 obj << /Type /Annot /Border [0 0 0] /Rect [415.06 385.262 420.041 391.682] /Subtype /Link /A << /S /GoTo /D 56 0 R >> >> endobj 493 0 obj << /Type /Annot /Border [0 0 0] /Rect [427.21 385.262 437.172 391.682] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 494 0 obj << /Type /Annot /Border [0 0 0] /Rect [444.341 385.262 454.303 391.682] /Subtype /Link /A << /S /GoTo /D 68 0 R >> >> endobj 495 0 obj << /Type /Annot /Border [0 0 0] /Rect [367.529 373.29 377.491 379.711] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 496 0 obj << /Type /Annot /Border [0 0 0] /Rect [385.2 373.29 395.163 379.711] /Subtype /Link /A << /S /GoTo /D 38 0 R >> >> endobj 497 0 obj << /Type /Annot /Border [0 0 0] /Rect [402.872 373.29 412.834 379.711] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 498 0 obj << /Type /Annot /Border [0 0 0] /Rect [415.443 361.319 425.406 367.739] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 499 0 obj << /Type /Annot /Border [0 0 0] /Rect [432.506 361.319 442.469 367.739] /Subtype /Link /A << /S /GoTo /D 35 0 R >> >> endobj 500 0 obj << /Type /Annot /Border [0 0 0] /Rect [449.569 361.319 459.532 367.739] /Subtype /Link /A << /S /GoTo /D 67 0 R >> >> endobj 501 0 obj << /Type /Annot /Border [0 0 0] /Rect [491.355 349.347 501.317 355.768] /Subtype /Link /A << /S /GoTo /D 224 0 R >> >> endobj 502 0 obj << /Type /Annot /Border [0 0 0] /Rect [355.626 337.376 365.589 343.796] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 503 0 obj << /Type /Annot /Border [0 0 0] /Rect [373.449 337.376 383.411 343.796] /Subtype /Link /A << /S /GoTo /D 242 0 R >> >> endobj 504 0 obj << /Type /Annot /Border [0 0 0] /Rect [391.271 337.376 401.234 343.796] /Subtype /Link /A << /S /GoTo /D 222 0 R >> >> endobj 505 0 obj << /Type /Annot /Border [0 0 0] /Rect [365.827 325.404 375.789 331.825] /Subtype /Link /A << /S /GoTo /D 242 0 R >> >> endobj 506 0 obj << /Type /Annot /Border [0 0 0] /Rect [383.747 325.404 393.71 331.825] /Subtype /Link /A << /S /GoTo /D 222 0 R >> >> endobj 507 0 obj << /Type /Annot /Border [0 0 0] /Rect [348.095 313.433 353.076 319.853] /Subtype /Link /A << /S /GoTo /D 56 0 R >> >> endobj 508 0 obj << /Type /Annot /Border [0 0 0] /Rect [360.65 313.433 370.612 319.853] /Subtype /Link /A << /S /GoTo /D 57 0 R >> >> endobj 509 0 obj << /Type /Annot /Border [0 0 0] /Rect [378.186 313.433 388.148 319.853] /Subtype /Link /A << /S /GoTo /D 58 0 R >> >> endobj 510 0 obj << /Type /Annot /Border [0 0 0] /Rect [395.722 313.433 405.684 319.853] /Subtype /Link /A << /S /GoTo /D 68 0 R >> >> endobj 511 0 obj << /Type /Annot /Border [0 0 0] /Rect [413.258 313.433 423.221 319.853] /Subtype /Link /A << /S /GoTo /D 129 0 R >> >> endobj 512 0 obj << /Type /Annot /Border [0 0 0] /Rect [423.278 301.461 433.24 307.882] /Subtype /Link /A << /S /GoTo /D 129 0 R >> >> endobj 513 0 obj << /Type /Annot /Border [0 0 0] /Rect [439.821 301.461 449.784 307.882] /Subtype /Link /A << /S /GoTo /D 141 0 R >> >> endobj 514 0 obj << /Type /Annot /Border [0 0 0] /Rect [456.365 301.461 466.327 307.882] /Subtype /Link /A << /S /GoTo /D 142 0 R >> >> endobj 515 0 obj << /Type /Annot /Border [0 0 0] /Rect [472.908 301.461 482.871 307.882] /Subtype /Link /A << /S /GoTo /D 20 0 R >> >> endobj 516 0 obj << /Type /Annot /Border [0 0 0] /Rect [489.452 301.461 499.414 307.882] /Subtype /Link /A << /S /GoTo /D 168 0 R >> >> endobj 517 0 obj << /Type /Annot /Border [0 0 0] /Rect [365.827 289.49 370.808 295.91] /Subtype /Link /A << /S /GoTo /D 1 0 R >> >> endobj 518 0 obj << /Type /Annot /Border [0 0 0] /Rect [378.83 289.49 388.793 295.91] /Subtype /Link /A << /S /GoTo /D 222 0 R >> >> endobj 519 0 obj << /Type /Annot /Border [0 0 0] /Rect [393.193 277.519 403.155 283.939] /Subtype /Link /A << /S /GoTo /D 33 0 R >> >> endobj 520 0 obj << /Type /Annot /Border [0 0 0] /Rect [410.538 277.519 420.501 283.939] /Subtype /Link /A << /S /GoTo /D 73 0 R >> >> endobj 521 0 obj << /Type /Annot /Border [0 0 0] /Rect [427.884 277.519 437.847 283.939] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 522 0 obj << /Type /Annot /Border [0 0 0] /Rect [358.797 265.547 368.76 271.967] /Subtype /Link /A << /S /GoTo /D 33 0 R >> >> endobj 523 0 obj << /Type /Annot /Border [0 0 0] /Rect [376.579 265.547 386.542 271.967] /Subtype /Link /A << /S /GoTo /D 69 0 R >> >> endobj 524 0 obj << /Type /Annot /Border [0 0 0] /Rect [394.362 265.547 404.324 271.967] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 525 0 obj << /Type /Annot /Border [0 0 0] /Rect [358.797 253.576 368.76 259.996] /Subtype /Link /A << /S /GoTo /D 33 0 R >> >> endobj 526 0 obj << /Type /Annot /Border [0 0 0] /Rect [376.579 253.576 386.542 259.996] /Subtype /Link /A << /S /GoTo /D 70 0 R >> >> endobj 527 0 obj << /Type /Annot /Border [0 0 0] /Rect [394.362 253.576 404.324 259.996] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 528 0 obj << /Type /Annot /Border [0 0 0] /Rect [358.797 241.604 368.76 248.024] /Subtype /Link /A << /S /GoTo /D 33 0 R >> >> endobj 529 0 obj << /Type /Annot /Border [0 0 0] /Rect [376.357 241.604 386.319 248.024] /Subtype /Link /A << /S /GoTo /D 71 0 R >> >> endobj 530 0 obj << /Type /Annot /Border [0 0 0] /Rect [393.916 241.604 403.878 248.024] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 531 0 obj << /Type /Annot /Border [0 0 0] /Rect [411.475 241.604 421.438 248.024] /Subtype /Link /A << /S /GoTo /D 35 0 R >> >> endobj 532 0 obj << /Type /Annot /Border [0 0 0] /Rect [358.797 229.633 368.76 236.053] /Subtype /Link /A << /S /GoTo /D 33 0 R >> >> endobj 533 0 obj << /Type /Annot /Border [0 0 0] /Rect [376.579 229.633 386.542 236.053] /Subtype /Link /A << /S /GoTo /D 72 0 R >> >> endobj 534 0 obj << /Type /Annot /Border [0 0 0] /Rect [394.362 229.633 404.324 236.053] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 535 0 obj << /Type /Annot /Border [0 0 0] /Rect [433.821 217.661 443.784 224.081] /Subtype /Link /A << /S /GoTo /D 36 0 R >> >> endobj 536 0 obj << /Type /Annot /Border [0 0 0] /Rect [459.973 205.69 469.935 212.11] /Subtype /Link /A << /S /GoTo /D 36 0 R >> >> endobj 537 0 obj << /Type /Annot /Border [0 0 0] /Rect [355.733 193.718 365.695 200.138] /Subtype /Link /A << /S /GoTo /D 143 0 R >> >> endobj 538 0 obj << /Type /Annot /Border [0 0 0] /Rect [372.9 193.718 382.863 200.138] /Subtype /Link /A << /S /GoTo /D 151 0 R >> >> endobj 539 0 obj << /Type /Annot /Border [0 0 0] /Rect [390.067 193.718 400.03 200.138] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 540 0 obj << /Type /Annot /Border [0 0 0] /Rect [407.235 193.718 417.197 200.138] /Subtype /Link /A << /S /GoTo /D 209 0 R >> >> endobj 541 0 obj << /Type /Annot /Border [0 0 0] /Rect [424.402 193.718 434.365 200.138] /Subtype /Link /A << /S /GoTo /D 224 0 R >> >> endobj 542 0 obj << /Type /Annot /Border [0 0 0] /Rect [441.569 193.718 451.532 200.138] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 543 0 obj << /Type /Annot /Border [0 0 0] /Rect [351.097 181.747 361.059 188.167] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 544 0 obj << /Type /Annot /Border [0 0 0] /Rect [369.207 181.747 379.169 188.167] /Subtype /Link /A << /S /GoTo /D 250 0 R >> >> endobj 545 0 obj << /Type /Annot /Border [0 0 0] /Rect [356.369 169.775 366.332 176.196] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 546 0 obj << /Type /Annot /Border [0 0 0] /Rect [374.411 169.775 384.374 176.196] /Subtype /Link /A << /S /GoTo /D 250 0 R >> >> endobj 547 0 obj << /Type /Annot /Border [0 0 0] /Rect [358.726 157.804 368.689 164.224] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 548 0 obj << /Type /Annot /Border [0 0 0] /Rect [428.591 145.832 438.553 152.253] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 549 0 obj << /Type /Annot /Border [0 0 0] /Rect [362.48 133.861 372.442 140.281] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 550 0 obj << /Type /Annot /Border [0 0 0] /Rect [350.136 121.889 355.117 128.31] /Subtype /Link /A << /S /GoTo /D 16 0 R >> >> endobj 551 0 obj << /Type /Annot /Border [0 0 0] /Rect [362.451 121.889 372.414 128.31] /Subtype /Link /A << /S /GoTo /D 117 0 R >> >> endobj 552 0 obj << /Type /Annot /Border [0 0 0] /Rect [379.748 121.889 389.71 128.31] /Subtype /Link /A << /S /GoTo /D 38 0 R >> >> endobj 553 0 obj << /Type /Annot /Border [0 0 0] /Rect [397.044 121.889 407.007 128.31] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 554 0 obj << /Type /Annot /Border [0 0 0] /Rect [414.341 121.889 424.304 128.31] /Subtype /Link /A << /S /GoTo /D 209 0 R >> >> endobj 555 0 obj << /Type /Annot /Border [0 0 0] /Rect [431.638 121.889 441.6 128.31] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 261 0 obj [263 0 R /FitH 750.279] endobj 262 0 obj << /Font << /F1 7 0 R /F3 8 0 R /F13 6 0 R /F24 9 0 R /F51 13 0 R /F37 46 0 R /F7 26 0 R >> /ProcSet [ /PDF /Text ] >> endobj 558 0 obj << /Length 559 0 R /Filter /FlateDecode >> stream xÚÅ“MK1†ïû+rT0cf&“b…z¨ZWăÔm¢?ÀŸov7µ¶ÛVÚ ²‡…¼3oÞ'“ 2éCåIy‰ɪÑsq\‡§È*-8Vå¸)*ïö>÷ï˳$Í –BV…[™•‡èk•„³|y1ìʺDq@HYèNz·]g›z].¡©µŸh+ ‹Ò„àš²—Iõ>êXQã§)j¹è•fv›²˜]½ µÌé÷”O£{$‹Nm‰iLòÒêvXB$Þ£ÒˆEZ¤·‡IÕ%²YVi´€Æ}ûlewƒ:Xìöš7‰þ?B\#èvU#H´Ó”À1¨×J›¼üt``â¹É_ד€îË `·zø€Ò›Üføñ/nô—0æ¸nzëþù ƒÅpÝÀÈÛ`‰Ù«îþ¾Ùendstream endobj 559 0 obj 335 endobj 557 0 obj << /Type /Page /Contents 558 0 R /Resources 556 0 R /MediaBox [0 0 595.273 841.887] /Parent 241 0 R /Annots [ 560 0 R 561 0 R 562 0 R 563 0 R 564 0 R 565 0 R ] >> endobj 560 0 obj << /Type /Annot /Border [0 0 0] /Rect [113.808 738.324 123.771 744.745] /Subtype /Link /A << /S /GoTo /D 104 0 R >> >> endobj 561 0 obj << /Type /Annot /Border [0 0 0] /Rect [109.665 726.369 119.628 732.79] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 562 0 obj << /Type /Annot /Border [0 0 0] /Rect [127.513 726.369 137.476 732.79] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 563 0 obj << /Type /Annot /Border [0 0 0] /Rect [145.361 726.369 155.324 732.79] /Subtype /Link /A << /S /GoTo /D 242 0 R >> >> endobj 564 0 obj << /Type /Annot /Border [0 0 0] /Rect [127.095 714.414 137.058 720.834] /Subtype /Link /A << /S /GoTo /D 242 0 R >> >> endobj 565 0 obj << /Type /Annot /Border [0 0 0] /Rect [121.865 702.459 131.828 708.879] /Subtype /Link /A << /S /GoTo /D 222 0 R >> >> endobj 556 0 obj << /Font << /F13 6 0 R /F1 7 0 R /F3 8 0 R /F37 46 0 R /F51 13 0 R >> /ProcSet [ /PDF /Text ] >> endobj 566 0 obj << /S /GoTo /D 1 0 R >> endobj 568 0 obj (Introduction) endobj 569 0 obj << /S /GoTo /D 16 0 R >> endobj 571 0 obj (Program global context) endobj 572 0 obj << /S /GoTo /D 54 0 R >> endobj 574 0 obj (Encoding) endobj 575 0 obj << /S /GoTo /D 140 0 R >> endobj 577 0 obj (Decoding) endobj 578 0 obj << /S /GoTo /D 196 0 R >> endobj 580 0 obj (Utilities) endobj 581 0 obj << /S /GoTo /D 207 0 R >> endobj 583 0 obj (Command line parsing) endobj 584 0 obj << /S /GoTo /D 223 0 R >> endobj 586 0 obj (Main program) endobj 587 0 obj << /S /GoTo /D 261 0 R >> endobj 589 0 obj (Index) endobj 591 0 obj << /S /GoTo /D (NOS) >> endobj 593 0 obj (Names of the sections) endobj 594 0 obj << /S /GoTo /D 150 0 R >> endobj 596 0 obj (Character is white space) endobj 597 0 obj << /S /GoTo /D 224 0 R >> endobj 599 0 obj (Check options for consistency) endobj 600 0 obj << /S /GoTo /D 141 0 R >> endobj 602 0 obj (Decode equal sign escape) endobj 603 0 obj << /S /GoTo /D 104 0 R >> endobj 605 0 obj (Digest line break sequence) endobj 606 0 obj << /S /GoTo /D 66 0 R >> endobj 608 0 obj (Emit encoded character) endobj 609 0 obj << /S /GoTo /D 68 0 R >> endobj 611 0 obj (Flush non-terminated last line) endobj 612 0 obj << /S /GoTo /D 67 0 R >> endobj 614 0 obj (Flush pending white space) endobj 615 0 obj << /S /GoTo /D 250 0 R >> endobj 617 0 obj (Force binary I/O where required) endobj 618 0 obj << /S /GoTo /D 20 0 R >> endobj 620 0 obj (Forward function definitions) endobj 621 0 obj << /S /GoTo /D 19 0 R >> endobj 623 0 obj (Global variables) endobj 624 0 obj << /S /GoTo /D 143 0 R >> endobj 626 0 obj (Handle erroneous escape sequences) endobj 627 0 obj << /S /GoTo /D 142 0 R >> endobj 629 0 obj (Ignore white space after soft line break) endobj 630 0 obj << /S /GoTo /D 73 0 R >> endobj 632 0 obj (Initialise EBCDIC Rule characters) endobj 633 0 obj << /S /GoTo /D 69 0 R >> endobj 635 0 obj (Initialise Rule 1 characters) endobj 636 0 obj << /S /GoTo /D 70 0 R >> endobj 638 0 obj (Initialise Rule 2 characters) endobj 639 0 obj << /S /GoTo /D 71 0 R >> endobj 641 0 obj (Initialise Rule 3 characters) endobj 642 0 obj << /S /GoTo /D 72 0 R >> endobj 644 0 obj (Initialise Rule 4 characters) endobj 645 0 obj << /S /GoTo /D 65 0 R >> endobj 647 0 obj (Initialise character class table) endobj 648 0 obj << /S /GoTo /D 225 0 R >> endobj 650 0 obj (Process command-line file name arguments) endobj 651 0 obj << /S /GoTo /D 208 0 R >> endobj 653 0 obj (Process command-line options) endobj 654 0 obj << /S /GoTo /D 209 0 R >> endobj 656 0 obj (Process extended ``\PB {$\MM \|e$}'' options) endobj 657 0 obj << /S /GoTo /D 151 0 R >> endobj 659 0 obj (Report invalid character after soft line break) endobj 660 0 obj << /S /GoTo /D 222 0 R >> endobj 662 0 obj (Show program version information) endobj 663 0 obj << /S /GoTo /D 180 0 R >> endobj 665 0 obj (System character code is ASCII) endobj 666 0 obj << /S /GoTo /D 17 0 R >> endobj 668 0 obj (System include files) endobj 669 0 obj << /S /GoTo /D 18 0 R >> endobj 671 0 obj (Windows-specific include files) endobj 674 0 obj << /Length 675 0 R /Filter /FlateDecode >> stream xÚíZ[Sã6î3¿"Ó'gf-¬»ô¸›…n:SØ’túÐíƒq x6±©,åß÷Ø’ˆëK lša†$²,éè;÷spσ?Ü“¤'¹Fš°^0;ú0>:>Å=ø-ho|UÌOþrëÿ=þõø”ö$Ò2BRZÛÇgï;õ]Ê™s~j>ÇŸNÌ—ÑÉ`<–vŒ’\Øm€|©ül¢>¾šëXÑ\ÞõÖWRˆ ßò5ìÐ×Õ6Hlšû¥Õ ŽÖïS¤¨´OÿÈÂI~›Ü‰bs«YÌ£$^?‡$°°°©I ®EÌo£ èO!ŠuÏÅiÎká}"¯¬ä6§­‘8W‰E5€¡(›‡qp¿~bWhDµXîXŸz&÷J¾}(©‡˜5 ,eúc$}—(g! ÿYøSe]Çv0 üÛbZE(a+ Wê`ÝÌ7‹%Q›hÑ]°„ûIJ ”Ñu˜Í `Ó( ˆ—iè[9Í[Ç*„J "Uy-ª_Á¬¡@Ôk¡×Âwë/s@7;@'}ðÎ\ˆOÖWÉÍ%ûfgAgº?ŸÌ¢¹a\`ÚRIM¬qéï¥QQIÜCžjc_È>¹ ˜lßUàÈ#MìËét‘ÝM'± h͢؟‰3õi¬ŠŸDËV8Š7¢˜Þ&Œà¯ i£õâI_›‘ïùí.†0BãV†½y܆…©‰äRo#Eèjª nPö#1ñš†o#ƒ1)x)¸¢ƒõs’4°^è%(‰ôÞ°×ðøÜ0×ÝM˜Z>KÁ•‰Ò°B½«F—7pÆÉ!²xQ0ß²‘æ7ˆÞå–ÚO­Ý¾ZĆFø…Áœñ0‹£òU¢•§lÇž{Ù¬¯Á¡¼£õQ¢‰õùeš\–Aé·>ÀO‘9 7ð §HÙ‚gÄ&2Ùë± ¦»Ž>H·è£ûv}t×7@w}Œí¹ÞbL CJãzëøgS뱄išÄa²°iÒ2£¦ëñ”É™ªNS@;æmÌ Ú#4õÖ=0œªp¯ã¤t@+1O¢µ,jdÉ•Í^”¹8jsqëøJÆx“U³ðãÛ)‘1Æšà›{¢þ4Ê,\'‡óýbQ rQù(SOÛôZ±Þ§ÜÛ¾¼D î€ç C\J"‡ÛH&æ(Ÿ-mHˆäV $µ Ôñ!GâÅÉÚHŠNHÒæH6Ið`y@ò•d’½°Lª’/ŠäãêššúYºpgž§^ª^¬‚(¥•ÛÃ%·ï´tpÜÄýœæÅRé@,i ’Ù BQw‰äy×RZcV†/éõbÆ}ˆJçUy¥Ät_5oÚQûSŒ{ÌºÒ ýÚ:—=YŸ–I$E›nÆ(>ŸÔƲ4mP ÿ‡ñ²Åá ¦¶‹Ôª€#°|E‘„ÓxHkãmýÔÇŒÂÿb¦\meÏá®f†•ã0$hÙúóó|ûz¬ÛìQ)¤¦4Ê)Á¤IWÌEh ðIjÓKQ¡¯MYdMž´à­rS¯MÝžêCËís°k& ¦ÑM’Ã|g õmš\§þ¬¬ˆåýif˪9G\%éÌßD½‹)G²U}ÜÛw9îšœò%G÷Ù<œ87ùÛ»rM‹> endobj 676 0 obj << /Type /Annot /Border [0 0 0] /Rect [188.756 738.324 197.224 743.461] /Subtype /Link /A << /S /GoTo /D 150 0 R >> >> endobj 677 0 obj << /Type /Annot /Border [0 0 0] /Rect [271.851 738.324 280.319 743.461] /Subtype /Link /A << /S /GoTo /D 142 0 R >> >> endobj 678 0 obj << /Type /Annot /Border [0 0 0] /Rect [210.923 726.369 219.391 731.505] /Subtype /Link /A << /S /GoTo /D 224 0 R >> >> endobj 679 0 obj << /Type /Annot /Border [0 0 0] /Rect [294.018 726.369 302.486 731.505] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 680 0 obj << /Type /Annot /Border [0 0 0] /Rect [191.607 714.414 200.075 719.55] /Subtype /Link /A << /S /GoTo /D 141 0 R >> >> endobj 681 0 obj << /Type /Annot /Border [0 0 0] /Rect [274.701 714.414 283.169 719.55] /Subtype /Link /A << /S /GoTo /D 129 0 R >> >> endobj 682 0 obj << /Type /Annot /Border [0 0 0] /Rect [196.892 702.459 205.361 707.595] /Subtype /Link /A << /S /GoTo /D 104 0 R >> >> endobj 683 0 obj << /Type /Annot /Border [0 0 0] /Rect [283.327 702.459 291.795 707.595] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 684 0 obj << /Type /Annot /Border [0 0 0] /Rect [296.971 702.459 305.439 707.595] /Subtype /Link /A << /S /GoTo /D 117 0 R >> >> endobj 685 0 obj << /Type /Annot /Border [0 0 0] /Rect [327.08 702.459 335.549 707.595] /Subtype /Link /A << /S /GoTo /D 129 0 R >> >> endobj 686 0 obj << /Type /Annot /Border [0 0 0] /Rect [185.463 690.504 193.931 695.64] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 687 0 obj << /Type /Annot /Border [0 0 0] /Rect [268.558 690.504 277.026 695.64] /Subtype /Link /A << /S /GoTo /D 59 0 R >> >> endobj 688 0 obj << /Type /Annot /Border [0 0 0] /Rect [214.05 678.549 222.518 683.685] /Subtype /Link /A << /S /GoTo /D 68 0 R >> >> endobj 689 0 obj << /Type /Annot /Border [0 0 0] /Rect [297.145 678.549 305.613 683.685] /Subtype /Link /A << /S /GoTo /D 59 0 R >> >> endobj 690 0 obj << /Type /Annot /Border [0 0 0] /Rect [197.695 666.594 206.163 671.73] /Subtype /Link /A << /S /GoTo /D 67 0 R >> >> endobj 691 0 obj << /Type /Annot /Border [0 0 0] /Rect [284.13 666.594 292.598 671.73] /Subtype /Link /A << /S /GoTo /D 59 0 R >> >> endobj 692 0 obj << /Type /Annot /Border [0 0 0] /Rect [311.887 666.594 320.355 671.73] /Subtype /Link /A << /S /GoTo /D 66 0 R >> >> endobj 693 0 obj << /Type /Annot /Border [0 0 0] /Rect [224.013 654.638 232.481 659.775] /Subtype /Link /A << /S /GoTo /D 250 0 R >> >> endobj 694 0 obj << /Type /Annot /Border [0 0 0] /Rect [307.107 654.638 315.576 659.775] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 695 0 obj << /Type /Annot /Border [0 0 0] /Rect [204.89 642.683 213.358 647.82] /Subtype /Link /A << /S /GoTo /D 20 0 R >> >> endobj 696 0 obj << /Type /Annot /Border [0 0 0] /Rect [218.534 642.683 227.002 647.82] /Subtype /Link /A << /S /GoTo /D 167 0 R >> >> endobj 697 0 obj << /Type /Annot /Border [0 0 0] /Rect [301.628 642.683 305.862 647.82] /Subtype /Link /A << /S /GoTo /D 16 0 R >> >> endobj 698 0 obj << /Type /Annot /Border [0 0 0] /Rect [151.936 630.728 156.17 635.864] /Subtype /Link /A << /S /GoTo /D 19 0 R >> >> endobj 699 0 obj << /Type /Annot /Border [0 0 0] /Rect [161.345 630.728 169.814 635.864] /Subtype /Link /A << /S /GoTo /D 33 0 R >> >> endobj 700 0 obj << /Type /Annot /Border [0 0 0] /Rect [174.989 630.728 183.457 635.864] /Subtype /Link /A << /S /GoTo /D 34 0 R >> >> endobj 701 0 obj << /Type /Annot /Border [0 0 0] /Rect [188.632 630.728 197.1 635.864] /Subtype /Link /A << /S /GoTo /D 35 0 R >> >> endobj 702 0 obj << /Type /Annot /Border [0 0 0] /Rect [202.276 630.728 210.744 635.864] /Subtype /Link /A << /S /GoTo /D 36 0 R >> >> endobj 703 0 obj << /Type /Annot /Border [0 0 0] /Rect [215.919 630.728 224.387 635.864] /Subtype /Link /A << /S /GoTo /D 37 0 R >> >> endobj 704 0 obj << /Type /Annot /Border [0 0 0] /Rect [229.562 630.728 238.031 635.864] /Subtype /Link /A << /S /GoTo /D 38 0 R >> >> endobj 705 0 obj << /Type /Annot /Border [0 0 0] /Rect [312.657 630.728 316.891 635.864] /Subtype /Link /A << /S /GoTo /D 16 0 R >> >> endobj 706 0 obj << /Type /Annot /Border [0 0 0] /Rect [233.975 618.773 242.444 623.909] /Subtype /Link /A << /S /GoTo /D 143 0 R >> >> endobj 707 0 obj << /Type /Annot /Border [0 0 0] /Rect [317.07 618.773 325.538 623.909] /Subtype /Link /A << /S /GoTo /D 141 0 R >> >> endobj 708 0 obj << /Type /Annot /Border [0 0 0] /Rect [251.88 606.818 260.349 611.954] /Subtype /Link /A << /S /GoTo /D 142 0 R >> >> endobj 709 0 obj << /Type /Annot /Border [0 0 0] /Rect [334.975 606.818 343.443 611.954] /Subtype /Link /A << /S /GoTo /D 141 0 R >> >> endobj 710 0 obj << /Type /Annot /Border [0 0 0] /Rect [232.758 594.863 241.226 599.999] /Subtype /Link /A << /S /GoTo /D 73 0 R >> >> endobj 711 0 obj << /Type /Annot /Border [0 0 0] /Rect [315.852 594.863 324.321 599.999] /Subtype /Link /A << /S /GoTo /D 65 0 R >> >> endobj 712 0 obj << /Type /Annot /Border [0 0 0] /Rect [198.304 582.908 206.772 588.044] /Subtype /Link /A << /S /GoTo /D 69 0 R >> >> endobj 713 0 obj << /Type /Annot /Border [0 0 0] /Rect [281.398 582.908 289.867 588.044] /Subtype /Link /A << /S /GoTo /D 65 0 R >> >> endobj 714 0 obj << /Type /Annot /Border [0 0 0] /Rect [198.304 570.953 206.772 576.089] /Subtype /Link /A << /S /GoTo /D 70 0 R >> >> endobj 715 0 obj << /Type /Annot /Border [0 0 0] /Rect [281.398 570.953 289.867 576.089] /Subtype /Link /A << /S /GoTo /D 65 0 R >> >> endobj 716 0 obj << /Type /Annot /Border [0 0 0] /Rect [198.304 558.997 206.772 564.134] /Subtype /Link /A << /S /GoTo /D 71 0 R >> >> endobj 717 0 obj << /Type /Annot /Border [0 0 0] /Rect [281.398 558.997 289.867 564.134] /Subtype /Link /A << /S /GoTo /D 65 0 R >> >> endobj 718 0 obj << /Type /Annot /Border [0 0 0] /Rect [198.304 547.042 206.772 552.179] /Subtype /Link /A << /S /GoTo /D 72 0 R >> >> endobj 719 0 obj << /Type /Annot /Border [0 0 0] /Rect [281.398 547.042 289.867 552.179] /Subtype /Link /A << /S /GoTo /D 65 0 R >> >> endobj 720 0 obj << /Type /Annot /Border [0 0 0] /Rect [210.951 535.087 219.419 540.223] /Subtype /Link /A << /S /GoTo /D 65 0 R >> >> endobj 721 0 obj << /Type /Annot /Border [0 0 0] /Rect [294.045 535.087 302.514 540.223] /Subtype /Link /A << /S /GoTo /D 59 0 R >> >> endobj 722 0 obj << /Type /Annot /Border [0 0 0] /Rect [269.758 523.132 278.226 528.268] /Subtype /Link /A << /S /GoTo /D 225 0 R >> >> endobj 723 0 obj << /Type /Annot /Border [0 0 0] /Rect [352.852 523.132 361.321 528.268] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 724 0 obj << /Type /Annot /Border [0 0 0] /Rect [213.552 511.177 222.02 516.313] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 725 0 obj << /Type /Annot /Border [0 0 0] /Rect [296.647 511.177 305.115 516.313] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 726 0 obj << /Type /Annot /Border [0 0 0] /Rect [222.065 499.222 230.534 504.358] /Subtype /Link /A << /S /GoTo /D 209 0 R >> >> endobj 727 0 obj << /Type /Annot /Border [0 0 0] /Rect [305.16 499.222 313.628 504.358] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 728 0 obj << /Type /Annot /Border [0 0 0] /Rect [276.649 487.267 285.117 492.403] /Subtype /Link /A << /S /GoTo /D 151 0 R >> >> endobj 729 0 obj << /Type /Annot /Border [0 0 0] /Rect [359.743 487.267 368.212 492.403] /Subtype /Link /A << /S /GoTo /D 142 0 R >> >> endobj 730 0 obj << /Type /Annot /Border [0 0 0] /Rect [232.481 475.312 240.949 480.448] /Subtype /Link /A << /S /GoTo /D 222 0 R >> >> endobj 731 0 obj << /Type /Annot /Border [0 0 0] /Rect [315.576 475.312 324.044 480.448] /Subtype /Link /A << /S /GoTo /D 208 0 R >> >> endobj 732 0 obj << /Type /Annot /Border [0 0 0] /Rect [220.581 463.356 229.049 468.493] /Subtype /Link /A << /S /GoTo /D 180 0 R >> >> endobj 733 0 obj << /Type /Annot /Border [0 0 0] /Rect [305.754 463.356 314.222 468.493] /Subtype /Link /A << /S /GoTo /D 197 0 R >> >> endobj 734 0 obj << /Type /Annot /Border [0 0 0] /Rect [393.434 463.356 401.903 468.493] /Subtype /Link /A << /S /GoTo /D 143 0 R >> >> endobj 735 0 obj << /Type /Annot /Border [0 0 0] /Rect [421.192 463.356 429.66 468.493] /Subtype /Link /A << /S /GoTo /D 151 0 R >> >> endobj 736 0 obj << /Type /Annot /Border [0 0 0] /Rect [167.392 451.401 171.626 456.538] /Subtype /Link /A << /S /GoTo /D 17 0 R >> >> endobj 737 0 obj << /Type /Annot /Border [0 0 0] /Rect [246.252 451.401 250.486 456.538] /Subtype /Link /A << /S /GoTo /D 16 0 R >> >> endobj 738 0 obj << /Type /Annot /Border [0 0 0] /Rect [210.619 439.446 214.853 444.582] /Subtype /Link /A << /S /GoTo /D 18 0 R >> >> endobj 739 0 obj << /Type /Annot /Border [0 0 0] /Rect [289.479 439.446 293.713 444.582] /Subtype /Link /A << /S /GoTo /D 16 0 R >> >> endobj 590 0 obj << /D [673 0 R /FitB] >> endobj 672 0 obj << /Font << /F1 7 0 R /F3 8 0 R /F13 6 0 R /F16 220 0 R /F7 26 0 R >> /ProcSet [ /PDF /Text ] >> endobj 742 0 obj << /Length 743 0 R /Filter /FlateDecode >> stream xÚíØOo›0ð{>G8ðê÷lcûº®•2iS¶±ÓÔ¡&P¥LêÇŸ 4[![IǪ&µrx(þóŒôóÓKÐcöƒ)HÒS\'á¥ëÙ›xvv)”‡D$¼øûvjœ}õ?.>Í?ÄÁUüîì=&âÍ01 ‚+/$ƶs?çi]TeFþ" í'˼]jÓìÖ†‚E #òB›Î±];/N~½©‚ÐÆìG»S?mdÀžº;!sÀx‡g ÖÃì"žá½dNÀ˜° Qʨ¡Ì@Ëf8·áº¥ý¡{ØØßÌZÔÍs³G÷Õõ¯Lv”©vô¯;ö©GªÔ›j¹IÖºæþrU}KVͳðÓª½ù]=ö’ÓÉÐ 7 ,$Zë…°ÒäXi$Ö‹2mJ2úYQ.*¥e„«Ç.üöjröb$û·yÚu"޽ ‡yçtdžTæà›)ô'ðhGI>Ò”°}â¥Æåñ_êbUÔE~;Ð.ìûp<µÎÃÙYµ^°}öù?Ù—#íŸWëuRfmG¾*ʼíÇo’Íí¾ò6¹”'p#ÐA}T>=Ôh$Ô÷IQ¶Joº‘}›Ê€r¥Ú>´ÄÉAŽ=/³ün€¸ë Ž—±£z|·`ú²N»¿m~Pÿ…•endstream endobj 743 0 obj 498 endobj 741 0 obj << /Type /Page /Contents 742 0 R /Resources 740 0 R /MediaBox [0 0 595.273 841.887] /Parent 752 0 R /Annots [ 744 0 R 745 0 R 746 0 R 747 0 R 748 0 R 749 0 R 750 0 R 751 0 R ] >> endobj 744 0 obj << /Type /Annot /Border [0 0 0] /Rect [505.129 520.168 510.11 526.588] /Subtype /Link /A << /S /GoTo /D 1 0 R >> >> endobj 745 0 obj << /Type /Annot /Border [0 0 0] /Rect [505.129 505.224 510.11 511.644] /Subtype /Link /A << /S /GoTo /D 16 0 R >> >> endobj 746 0 obj << /Type /Annot /Border [0 0 0] /Rect [505.129 490.28 510.11 496.7] /Subtype /Link /A << /S /GoTo /D 54 0 R >> >> endobj 747 0 obj << /Type /Annot /Border [0 0 0] /Rect [500.148 475.336 510.11 481.756] /Subtype /Link /A << /S /GoTo /D 140 0 R >> >> endobj 748 0 obj << /Type /Annot /Border [0 0 0] /Rect [500.148 460.392 510.11 466.812] /Subtype /Link /A << /S /GoTo /D 196 0 R >> >> endobj 749 0 obj << /Type /Annot /Border [0 0 0] /Rect [500.148 445.448 510.11 451.869] /Subtype /Link /A << /S /GoTo /D 207 0 R >> >> endobj 750 0 obj << /Type /Annot /Border [0 0 0] /Rect [500.148 430.504 510.11 436.925] /Subtype /Link /A << /S /GoTo /D 223 0 R >> >> endobj 751 0 obj << /Type /Annot /Border [0 0 0] /Rect [500.148 415.56 510.11 421.981] /Subtype /Link /A << /S /GoTo /D 261 0 R >> >> endobj 740 0 obj << /Font << /F47 11 0 R /F1 7 0 R /F24 9 0 R >> /ProcSet [ /PDF /Text ] >> endobj 220 0 obj << /Type /Font /Subtype /Type1 /FirstChar 0 /LastChar 127 /Widths 753 0 R /BaseFont 759 0 R /FontDescriptor 760 0 R >> endobj 753 0 obj [ 893 339 893 585 893 585 893 893 893 893 893 893 893 1139 585 585 893 893 893 893 893 893 893 893 893 893 893 893 1139 1139 893 893 1139 1139 585 585 1139 1139 1139 893 1139 1139 708 708 1139 1139 1139 893 329 1139 770 770 1016 1016 0 0 647 647 770 585 831 831 893 893 708 918 753 620 889 616 818 688 979 646 782 872 792 1343 936 906 809 936 981 702 648 718 720 1135 819 764 823 770 770 770 770 770 708 708 524 524 524 524 585 585 462 462 339 585 585 708 585 339 938 859 954 494 770 770 893 893 524 524 524 708 893 893 893 893 ] endobj 754 0 obj << /Length 755 0 R /Length1 756 0 R /Length2 757 0 R /Length3 758 0 R >> stream %!PS-AdobeFont-1.1: CMSY7 1.0 %%CreationDate: 1991 Aug 15 07:21:52 % Copyright (C) 1997 American Mathematical Society. All Rights Reserved. 11 dict begin /FontInfo 7 dict dup begin /version (1.0) readonly def /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def /FullName (CMSY7) readonly def /FamilyName (Computer Modern) readonly def /Weight (Medium) readonly def /ItalicAngle -14.035 def /isFixedPitch false def end readonly def /FontName /AAAAAA+CMSY7 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for dup 0 /minus put readonly def /FontBBox{-15 -951 1252 782}readonly def /UniqueID 5000817 def currentdict end currentfile eexec ÙÖoc;„j—¶†©~E£Ðª/ ùÈ­éÙÀX¸~›id}S5žQ!gt¤ê¡âµŽÃkÑJc;•r´NŒ^ô¢¬µŠ ¦X€5¿.ØSyƒŠ– þ+'êIÃqV˜œ…â:¿r㚉#,Ùô#È ždèBZ£¾÷ÞÖ *R’*"7Ù¨ÝyÝçÒQI¿e©ŒŸâ±ÏrZp(IJÿæ8»¦±#†Çó+£PÖ.¢Õ²NæÂÂCÍ;ý ð+[i-{'¾Ç)ïÜù/•ÝëPphÞ Qãì¸äCæ¾ A¡øÈœ;Ák5,4C«of^¬^ Ä"ìüXáWeBL‘œ'>¢@¾{.•·‰Ñ'b[¼·>PPë.±Èåó­D§W­,Å=‘{ý #VX†î6ÐÃÝnz¢ïœÄÇñTž`šqÃÂæN&=`¥~Ÿ+GãH ——XÏø£`žƒ —ý1ÿ`ý/›ˆH§­MÅÇçsN,/‡ ˘·»åk‘ÉÏ®—KÐ7y;‡ïÄ$°>:Õ×ùï×ò[—•x‰><·Ók….N!1¡ÒÚ# qŸvÙžuÁñ†Òª.pì/1Ó­‰Í­×)渟(›«&”^ Ï£ÃeVÇ¥³íd}“÷Ý€b Âåmï)ˆ“Øeìê+£êÀN¹¢€^õH'×\_ø!¶htä?MÉ*%·è¯è'L€ûØü”itÍ8Æ“ +Ûái᥃÷WÉwAUÓ÷Ðe÷3q /µâ‹íjgn0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 cleartomark endstream endobj 755 0 obj 1898 endobj 756 0 obj 767 endobj 757 0 obj 599 endobj 758 0 obj 532 endobj 759 0 obj /AAAAAA+CMSY7 endobj 760 0 obj << /Ascent 750 /CapHeight 683 /Descent 0 /FontName 759 0 R /ItalicAngle -14 /StemV 93 /XHeight 431 /FontBBox [ -15 -951 1252 782 ] /Flags 4 /CharSet (/minus) /FontFile 754 0 R >> endobj 64 0 obj << /Type /Font /Subtype /Type1 /FirstChar 0 /LastChar 127 /Widths 761 0 R /BaseFont 767 0 R /FontDescriptor 768 0 R >> endobj 761 0 obj [ 831 1097 1028 911 889 981 958 1028 958 1028 958 681 681 403 403 646 403 438 681 681 681 681 681 981 611 681 958 1028 681 1178 1317 1028 403 403 681 1097 681 1097 1028 403 542 542 681 1028 403 472 403 681 681 681 681 681 681 681 681 681 681 681 403 403 1028 1028 1028 646 1028 981 935 958 1004 900 865 1033 981 494 692 1015 831 1189 981 1028 900 1028 970 750 958 981 981 1328 981 981 820 403 681 403 681 403 403 681 750 611 750 611 438 681 750 403 438 715 403 1097 750 681 750 715 542 549 542 750 715 958 715 715 611 681 1361 681 681 681 ] endobj 762 0 obj << /Length 763 0 R /Length1 764 0 R /Length2 765 0 R /Length3 766 0 R >> stream %!PS-AdobeFont-1.1: CMR5 1.00B %%CreationDate: 1992 Feb 19 19:55:02 % Copyright (C) 1997 American Mathematical Society. All Rights Reserved. 11 dict begin /FontInfo 7 dict dup begin /version (1.00B) readonly def /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def /FullName (CMR5) readonly def /FamilyName (Computer Modern) readonly def /Weight (Medium) readonly def /ItalicAngle 0 def /isFixedPitch false def end readonly def /FontName /KBAAAA+CMR5 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for dup 35 /numbersign put readonly def /FontBBox{-341 -250 1304 965}readonly def /UniqueID 5000788 def currentdict end currentfile eexec ÙÖoc;„j—¶†©~E£Ðª*Bg·N³ÀÓ½ ƒØ‘l¦ÊKq*Þ²Xú«šææwüsм|QÍFïq˜Õþæv`æšz¹XòšMyåp"÷ƒë»¶Ôôì5OÒÞË©”Y¤ÅðÆë¡P(DTçÜ!Á[v´Á›„67XFšlU‡…²&3!R˜q©ˆ4‡Ýw”’Ýσ~j‡¸+Ûño¼uú£ “þ\÷c¼3Râ*Rç?쨤‡±ÿÄȯ@› gSr æÚRÊIƒž†¯zE_ÑðÎEˆMvï,¹¼X!ý%6]Þ¡ù°ÿLÿ%¸æMG£|­àÛ£ãÊ•ñ$·Õ×TQ„_·"w”¨`ulû³çpJR¢$HÃHÃÛíÔ’Wz«§ÕUé)Œ}¦8gõn)g&ƒÅñÀvJŽzÙØ­ç{IƒõoâÑ'#ªØ¿6h,û·!DÓØA©q÷¸*ÆÍY‡ÍÏ)«ÃÌ–^ëÕÖaôRÆàÇOžØÐųuUQ¡ràþ1ê4Avã&f¶…:0:^Œ.EZløüšfÜn'‘ÖR;ÙÛŽ¸/êô×ýö7#ƒÀyLEhÐyd†‰¡™Ô¶[¦FÏ•·d~K샅l'¨ï{:hnÚcTþ•sá#Á.ĺV§è¿¸ù·QGךt9hóo} GŸ¦ðnbgåÎ2v†¥HZ·"R\û;|¡ònDÂN–Ëœ°[Ö’È›#|òi÷z1ÜKuÈ@ ¼ýÎÆD<ÐèqÍqª0d«Þˆ,LR2,'ú‹AƉø'ûН€"Ï<AÀ´V (ƒWËù±çѪ$aåmky8H€Uôæ>*WÁ}!7)Æ€ÝF“TaLPYX×QÃ×að+Knâkq2¤oaý-—wR§½²Çã³<‚ 7QÓšÿd}È´S‚ËZè‚nl? Ø¥7ú]Ïü4]J«“¬ïýÛÉ4LÙrr÷Ú¶!%*5h„ަß‹bwpÚk`rÊÀòñÛǃ>-hó+³‘¢ñvðñÄSµÔž#ÌSU-¡·ðOKÔv\Û·÷(; ôÝúÎ#1ÈÐÜ/€+íÞªƒé6Ô6»©mjɹäH×2û|âÏUËÛ–¶†1âÝñ± «JP…òtr:<îŸFÎQo•M‹¹ÜÙ&LGŒR.L¬äòæþ>‡Í ‰`SÉpüYç˜ùL»U™"&“Ï~Qè¼8MY!z3xB·UWv¼þHó8Ú*ÁÏ„g’e|°OwÆæGiYG²™¸þøaè#n.q—¡šØ$˜Í¶/ƒ¼—mKˆ Jtöú·Í–šÉõì£h»,[ò¤Ãœ£pìò¢¼h$A³}ÿ@Ò¼8âѳÊ/¢¥°íµiÀ’®ÂÏùŸŒC960Mt‘ó¨Ð7ˆVxÙÖïk®ôUg›¾§4ZV­K~ÚDÆucç?³›a úÓç2"ñ"‘‘8ˇÏRj'8[³Š?õoî™Þèh‡~‹'€†Žw"i}¤;ƒH ëóÖ×ãÌpjÉÙÕR,€,„RÌ™-ZË^ÊòètL¬îöއ€Ó^¨ L?ñèÁ!t«r£³”ÈL'@‰†óˆû‰UD6¡>=^ƒ¥˜B”7ŒWp4JàÏl'_9ž!µ¬þ| Æ ¼¿ÓléT,™©¡Š°û')x<†Ú3÷Ó0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 cleartomark endstream endobj 763 0 obj 2613 endobj 764 0 obj 769 endobj 765 0 obj 1312 endobj 766 0 obj 532 endobj 767 0 obj /KBAAAA+CMR5 endobj 768 0 obj << /Ascent 694 /CapHeight 680 /Descent -194 /FontName 767 0 R /ItalicAngle 0 /StemV 89 /XHeight 431 /FontBBox [ -341 -250 1304 965 ] /Flags 4 /CharSet (/numbersign) /FontFile 762 0 R >> endobj 46 0 obj << /Type /Font /Subtype /Type1 /FirstChar 0 /LastChar 127 /Widths 769 0 R /BaseFont 775 0 R /FontDescriptor 776 0 R >> endobj 769 0 obj [ 627 818 767 692 664 743 716 767 716 767 716 613 562 588 882 894 307 332 511 511 511 511 511 831 460 537 716 716 511 883 985 767 256 307 514 818 769 818 767 307 409 409 511 767 307 358 307 511 511 511 511 511 511 511 511 511 511 511 307 307 307 767 511 511 767 743 704 716 755 678 653 774 743 386 525 769 627 897 743 767 678 767 729 562 716 743 743 999 743 743 613 307 514 307 511 307 307 511 460 460 511 460 307 460 511 307 307 460 256 818 562 511 511 460 422 409 332 537 460 664 464 486 409 511 1022 511 511 511 ] endobj 770 0 obj << /Length 771 0 R /Length1 772 0 R /Length2 773 0 R /Length3 774 0 R >> stream %!PS-AdobeFont-1.1: CMTI10 1.00B %%CreationDate: 1992 Feb 19 19:56:16 % Copyright (C) 1997 American Mathematical Society. All Rights Reserved. 11 dict begin /FontInfo 7 dict dup begin /version (1.00B) readonly def /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def /FullName (CMTI10) readonly def /FamilyName (Computer Modern) readonly def /Weight (Medium) readonly def /ItalicAngle -14.04 def /isFixedPitch false def end readonly def /FontName /ORXOGM+CMTI10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for dup 12 /fi put dup 49 /one put dup 50 /two put dup 51 /three put dup 52 /four put dup 53 /five put dup 56 /eight put dup 57 /nine put dup 66 /B put dup 67 /C put dup 68 /D put dup 69 /E put dup 73 /I put dup 79 /O put dup 82 /R put dup 83 /S put dup 97 /a put dup 98 /b put dup 99 /c put dup 100 /d put dup 101 /e put dup 102 /f put dup 103 /g put dup 104 /h put dup 105 /i put dup 107 /k put dup 108 /l put dup 109 /m put dup 110 /n put dup 111 /o put dup 112 /p put dup 113 /q put dup 114 /r put dup 115 /s put dup 116 /t put dup 117 /u put dup 118 /v put dup 119 /w put dup 120 /x put dup 121 /y put readonly def /FontBBox{-163 -250 1146 969}readonly def /UniqueID 5000828 def currentdict end currentfile eexec ÙÖoc;„j—¶†©~E£Ðª)s™§„̾…´™;.ëÞ;Ôr·ÏTeò…ji«–íK­/df5à¶A|Ç{S/…ØÇ )¡šSïcë\^ÈŸÆÂm‰çÙäp·+ïÚ#õßv¾¯Lé17¢íŠ©×Öýó~kÍàÙ ˜d#å– ]Ÿ»L•eVèßËúìGo£oÙ¥È\šõþÙÂÝÒkÜ ™9‹ŸMÕ™=ü 0)xfáÍ 1›kÙXž9Hÿ°´ç!.ÉvÖP™ØN 7§§qÃjÒj7!ì6CžìàÉ«T´w.]Ê‚ÐÔ¬Çô/´“ª£¿JÖìá†1]¾œýËèÓè0'Í:ú Ôf¨èÊqdÏU³2úÔ4‚tÔ¡Ë?@Ë^g+‚ Øþ0ùð[ðõµÌ K–îT•B/ºU¾é¿ÙFM˜zÄÒ7Âú† .UÎ{7‚£KÂ.=ãUÙ¯ñžI ŽC¸^ì訹…ƒ$ÒO7Ûù—-tæìG„rzÀ œJ:ÓÚ"½ia~ ÚõT"ò*Ê^MÍMùüч¥f·ûf0EM ÖÆÅ z8uÆËøìwió*?ÁÀrºÞÉw”Ôé5(*5nZœÙ«Ø Ä4*RƒäX§&’RôT»dR³žÕM3m ’ŽœÑ«&­ƒë ž.ÇP¢d8;]»F |H!µòÉ%Té ã[-¿Í˜€šŽÉü‘Þž †E|p¬°Vëù$MÀ¥»ÔUá]n1€1RÏP°¿} dó¡‚ í¼.{®µIþQŒ7™Æà‰µÕÖ^N-+C ßú#̲]•\MØ…1 pk2 ²\t,o)•2TúTÚ®æÔw‡}¼ÒŽšµv°êqý `×;líSãgs3c-ðh®ðþ}ûW9;Ú¤9¦¤Ã–ø`2©€ êá${}è;;ämò‰…˜ÿ^l¦•1'C.Öá]~/»Ù?ƒƒa„‚ü!iñc7øŒA°þî›<.ÝÐʤpIÂDmŒ1t}„ÅJþ]×àÐj_ÃΆiŸ† U­ÇµÌe4q8}áÅ’ —±lð¹Î~°Ù$‡Z0ÏÒ¯#+2Òa}îo‹«]Ø!È3ÌZ¿ÊÍaI¢‡’|øqxi·çÜ•‹#NÉÕ9 ¬¨5.+¦lRé[qĹöÛßòr[İ©œÙU߬Ý{(WoŒÇϔѢÓÕµ‡´#>i0‰ Ó1.EWNTQ0ªØÓT“4c]¼©[+ }ï–Ò}=mã¦î-”‡óáaû±~úž:¯@òu5“WáîÅ¡ýƒT,¹ô¢R,Τì ×±®»ÚP[šÉ*N³¡Y5žL´5<âq;’ƒvÂ[74v¦åýî(Ô¡äÎà8šìÎÇUôŸ~rb2°óT5g®á|ˆµ$¶-iÖ˜î·g±[_Tæý;ë›K*6ö­ ±+ò¡/*KÇv½š=†Là¼6®?€•š/ 7þsQ²¡:/ÓÚ~"ºi¢©ä¿h6ºp©v•¡éܭÂ>ùÙ9OA¯5™ºD½V%DˆAHšríÆß[U&ìüaç“Æ ,·%÷›|lQ†ÊÑt÷ÓŽ«;C^Û~ìwh¥|Ü ×eÅÝx){âŽÐ¶‘o3'Ìùî·_b¨TDÕ$TÚi]bx1\³ó —`œ Ò¶µýÂ2VIÑfôJfèôÀ,üŽ#üê¨z*)oo²¾9ÙßvßV‡ ‡Ž×6è, ‚vÑ]uoëY)€xÊ3ôÒ-ÚÖ ™[¥–dæÒqïùóyl\î‹OO[AbÄñÜ:æ«;GdÇ6“jËN¡è^NeuõÃý‚ԄБèî8œz…!G˜˜Øh{_µÆ]­ñ9Í+ “'5\ßÈì÷<^0òá¸C t޵-`\Dìn]XÖcÍ‹À4Œž6™›éäôË"wëÅ<[ û`ÌÌ’°÷QKi½,‹õD»éiš8ÊUèû²me®ú b~ÓÈê dí’5[ÞùNž~Å }?$4FLñŽ©%:u­ÒÁ§1·ïºUx6§r ð«k^¤Ãj*·ŠtåÕ´†ÿÔÉŸw3%#íŠ?þS£kŸ9Ç(b–óoq.Gh´M;Å}hzUµ·š­Õöª¿Õ¬?ù”ÄŒ¸R+ª[óYOd‘\cm®u% –ÁÄL. ÂÔñ3k rëñ®’ïwlÅ¢ Ì?AždeT*ƒ®”"YW«ðÙ–£¾‰¢Ñ2illHçIàÞ‚ò!^ÑO [!ÂÔ¦f€MLRƤ¶V+ûîp%X›Ä$žOñV‰ÃÖ?p~[ñï|4Ñ|Cà˜D‰#œ) HòÉàÔºñH2 í׿LÙ #Ïî«Ü®vÖËs&2þáÖÕ¥l˜g# ú*/ÆoɪÍsÇK<í=» º~¹8 ›†™ž“6˜°3Ô¡hªÐ/v\0ÿˆ›‘µ-ey¥äîàÕš#I–b v+{ÖϦßµ|† Qô›K–FðwLHŸYNÄ×Èð«8Tf¬ø§ƒ]P`0-ZÒüPBàYD÷Èìøk>ù þEtâ¸ÔæY·Ï$E‰¬¤7ZœèíYA¸„Pwº¬”{ê Ïu1ÆÓ&3KI@m¨æÐn?€·)«ÐwgÌyÜîÌßÙÕp|r £Ü1 V|þl·^¤,Ï#Øg>Yž-éóUÏ<ݲ•¼?žÀÞ(rÞÕæÏnõ&”¤°Á±'w_Ñ‘ý d\;4¯0ô nb7MðÇ) C¨Ö¨v8<ÂŽá-ùÔˆ$;Ü> 8éÇ8¬ëå,ûü¬‘A ¢6 1n´u‹6¿j*Æ‚Ø69q)à.`Û’M™pç<+Éñü¡)º¯û^÷¼…ÎF6K‡ °,wƒ‚›%%²ÒwwåϤsax'HÜX 2L:Æ=,(2zg²ÅÞ‹²»÷Ž-›=†í?r%Ê_éXJïýz7,ô­Þ 0#¨¡XØÛFêeœ$H@Ùø™m$Øõ‘íÙH×2Ÿï:4‚Ž1(´¤qT¦LûøË•=p!¿—hõ©&è±'yúS¨ð‹ OW‹©‘šTNCP«X™Ñe‹\j”^´ŽLè\`ÕF7ÊÈY¬€¦H­ ±Ö½Aþ%‡?ZËl}p4›eBJYw3ª›±7Nz„ar-ë—5FèåòОsyÁ•÷Ç ˜wµ¨y±P7ïä{[È}Îaã€;‹Ä¦ý颪œ±:× ªlø LŸš ­÷‘WZ7õ/!‰Wüø°¢a»º/þàûTI¬¢ùð[K+wÒ±‰ZsÔãGÃT,й“FÉæ† È™ïu Á J—[èmHoöÉ€& ¯‘Ò¾†R7’„"X- Yá`%õóé\Ūœ+yè׸Q›ŠOYÎ>Ó§2MÁ¦ë(Ì­ª+?ü˳¿võÄ7aaG?U!0-i†¨ƒû‹›ÚÃÒ“äÈ}sk”ä{(Èæ46C´ƒ§0Î1Ñ.?urùö±À¼¨ïwrÍÕ•Ñ?Ë™$•,à"në †ùžn¿·u“«&*BÉg–H—/]¶;´âF<`…Ú׎DTúÝÑ_7"„'ƒ²Øj«Ì-[¦ &QŠ:9Dä”ýõ‰¼˜“"ñÈšuTG­}ƒêðjh<àµpn‡ƒ\ð6ruN£?#_â¼òu9pEŽô$Ô(n²äQT:gØKàB‘Œ4Ó¤þ!MÂNeÈ,§¯-1E)/½ì{3j¡@ux~µì̇Óõç¥8³¶‹^ü°’àÕü]ÈTóѸà+U2zUƒd:¨äò®ä—‹~ÔHN» ±‘ò(> 4ë»»Vˆ­Íy0wg …uZÐZó)ôà¨b”«vJ¯qåiMÝ@ƒj€šlz‚áø~»•Œ%e`»¦Y›šZ®‰’!Œ+B‰Žïo0«»1hªáÙ.]Ž¼Äª^×Ã)RÍÉÒ»„sWâNdx¥Fóõ®{ nŒ²‡Ï›X±Ûó׎×®Œd–¦Š‘î1+ó é˜rùê'ó2B‰oÙ‘taU—ל†Ú­È´m-³€ Œ€’½L¨ìˆ°ò÷‚äBÙŠC–BÖí™a¼uúí:Ñ9¸Ãˆ·.ûf ÇЇÂI;NTÖá“÷SuÖ"Õ=,­Sñ³—Saï›K\ÖT­„Ÿ”Ê Ë+Bžž¦”¹ñø˜‰Zò(?º7¸†[´ #/LU» Qþü„ÖØ,ððöÁ§R£w?›NýMKbRjÙü8¶ÈJ!‹—Ä0"ö —YÛê5zœ†i„®í¸w€J î6f»ÚžUŸœÖ´9¢¢KÉON½,–_×dãûoë§íâp©µõjI6TSc×ö‹–ÝÖ³˜%‹ÆdÅY^ ¹ñ±‡o¶IÊ¢P þñ]!»mú æØ©OÒyo í 9rÔÍŒóoDWpRDª´åt_6üKS~<§§¾äu?!áP`5£ZïzŽÄ0Ó/>€0}zT-#éy¼WëP|!0µŒ“3øîla4\/J†Ó0.ôDÆtÝiþ€Šˆ/îe¥_ ‰¦Êk‡îÏu?¾ÃuXM²ôS¢Ä)2†R)dÃUü$"–7RﯚS…1iÊDãcÚ˜x€¦ÃÔ~9mq·'Ë_W’bfö˜Ü{» K•ߘ2ñž!˜„2gðƒŸM¿Ÿ` `yW Èíä÷c("9†Ajôâ3¡òÌÙŠQ•€àf¸ÙŒ5_ë_{ß\•ñWôC‡ßÍgi‚<–£Ü 3Ô`JKo‘à^eïGøÓ~_ªROû=¸j¤×²÷/9ÿkz®”Æ—20_aRºzÝLÞúyŸ½ç‚·w‹çõ/ˆ#¬0F*¬™½Rrx !ÕšÍÈÅÕ‡Ùa:Ž^nÍÇÛvv¦Pµ„ŠjÐCäþ¯;1„Ã4naHy¯ž4Bqÿ/Ü*|9ÔÜà_ô‡ì¨W ßsOmìï¾5 £I—êYìZ8`v˜æ5'EFˆs †7'%”n,üi½eFJ‰[(ôZ‹^ˆ…ìjÄÚCÒÞ{žÒÙ`Wÿœ«áí^w!èÁ]@©´~&:½aYaß­Îâ}våÒþ¥â¿‹¢·ì ÞvEòŒ"äaS’SŒ1kûŸ«wô­£«wé ¼Pæò—¡‹Qà)zF*¹[†%œ1¶M?œ…ÿjgæ7¦áa8ôˆ>R÷þyíÙ1F(¨n´#qòñï0›…pD¤ý¨¦"kɧ%;¢oÂæÖÄÅNfÉ;﫼)tqaÂ~ ¤±‡ÀË”çè;>ýG špZÉ€¶ééÿæNR—|-)¤—þä…¸<-Ø-C l ó¡½]w§ÞÄý9¯:K¨,¾>wWÖI“bÜíoQ!uµ³äP†i7Æ€<¨% ÜØ®ÿf|p*|'S÷MFÐj÷m\’OÚ$ìõoE@Z¶ˆ$󳕚Ïu®|ÚYøT“?¸6JgŠï“wT-Ÿ€ø“dø¬³àlÌ;²û¡Wj‰Ð·ÑA³Š×SÂhˆ$A†Þ¡Ç Y¢Éøø €ç ½…gÆebmmÛL…Ò¹uËÝ›wϵÕ|ìuñšßN8𬬢äYÐt×<¶ür‡ è =Úv)8w_3M¥Z;õ HžxgZÑ»g¬tIh¶3€ýN#u‡PúJ(> %á²6SàN}›jX‡]¦"oáÕù W£—¿‘ ÙÎWS‡’òÞï[>`ý˜}¡îŽ—ÙÒÛÃaTÚyû0ãÀ…9¿*tTëHÒ5ø”wˆ±‘CÕ,£l6i}é;aV÷Æ„¦z ÃQô ì‰ê\@’ºWx€Œ™ýøóu8Rªz¹â—î‚ä0­ïðØ5_´°Z®›|óýÙbòøu?c \cØZbÐÂrsZ°µŒ{1²\ë.•ìë«B†±¨‚̲+TªàzÁ™‹ó—V÷?î ®o•úx¨&q–ÔÆBœ(Av¿>¹]úv†oESD‘†Î —EÉœ6št³åUÀS©ÏĘ6˜c¬ÑI¼vQƒ2‹òîÖÉé_r³š’û|§l‹.•ÖÀÏ §×Oî®xz²€Ù.ÀPÑ7>ƤÞC¦udRn,ÕŠ…*(ÀIÆïG†£cÑ{§ W½x)¦´Äã©ALœ$?Êé&ùÚr§µeu,µ1±$ñ dÿ÷VÁñÖÔ^o {¬ý½™È§RÊÞ² ëÆò»«F@úaXé+5ì¡Í0•N'%~Ër†aIMšÌ;¥“]IÊ –#%yÙ[:sÓfžÙ«®“3^pŽ[jªAR¾D‚'_ãØ¤}ofu'yIË;š`…鵊ʱ9s­åQ¾*“gGIß)8¢‚iÌX~Ã4™‹+ÿõþáÕw+¥•Ñ-cEîhÎ#qVg_·ÆLžZéÑyëMܸÀ î¡úk.6Ôé_x[týa—åëOŸ™‚Hù-k¬>;q ‘”$Ôä¹òe˜ó2g•‚oPË«;Uͼ­ôÉ‹h ÃEµ4Þ| àÙÉÎÊåB÷¼ñ9F»&=’¶H”†9 \Z²ìÁ“Ûøþßqw¶Å~!Â7¹ÂŽm¢D8Ê…Þù™JNPCJŽë]îizìšÝ  ÙÉéâ#{Wj×”©xNV_¼…Ü ¸N‘'F=xÜaÀ_Ím20¼®3î~oÕ Uû" ¼^ù˜iú€£‡vð‘Õñƒ¹ŒU*(ÀX•hiÐE½ŸÉß|кO{æ\D.”§ER\5RՓؾ¼ƒÈ6ËJÂó_mÛ ³r¿îs«íì…{¸ ËÚ ÷OãRÚ곤ÆÀªÙAqÃöS ÎT€>8΢ƒô^:nÕTš]Ï8è_KëÇ©ä!€E©ÀK7eRZó¾+wIœŒ·ÇH?µ[EÔ=HØÈB<ü}€1äܳd"#Øæo.ØïF_Íø4ýª0~(—MÂC 1°ÃÁ3Îæ=sò‡«²3óGòÏ¥"¬[˜3jsò˜ËøGxfH€ŽÎP‘¾£n¶ûÛê%è²ÂlÃÃM³aô÷Nüðplm¡Ññø†Îeõ“9í¬Vþ‹;ìF“B^ûÓ«Þa :!s!mŒVíÒ B'5~¯ÐzϘ,•š÷ÅÞÃpF!uuAæ°¦g5Íb¨Ç'¢ºžð^ñÍ\cÉ"/¡œj¿J‰m#E»fÄ;é|ДBT‹]® Æ# ­¥gFmç'˜Ð0ú™¨YòÀç|²UR}5¸›Êê>y£’ÕúªL‹ ) ;-óöm± ýÔIT‰ñ-Ô›¬,pN¹­¶væßãCcIQîÚDÕ¡‡ØjNö£êïsºVëWÁdo¼ÓÚ ïÏô©Ž7y|ªõyô†jÈv3¿×5®)Éž[&„ÊLǤ« k ©?çàÅ¡3ß×bí¶¤ ‹³Q¾Œ€¦Á³W¾]QÖׯ‰þ)@o\˜é>² v±‘Â,ϧX·±w#“òw>Oúy•öˆË€búwíwQ¼%1€T“\‹ì–rùCKC9ù ³„¯8¨¹¡Y錰ø›-GœÃ¾–_dÖƒtRе¢?õØB»¦ ò¹Xt$EfOñÿýÜvY#µ[Ц…¶§Ï2¦"&…Ï­kÌf’ñ°ÖójgþľT`Y-Oóf\ gwYd[½^ø”РPÝÈb$1KiÖßÝUÐÑGÕEOa"WÇ H´Ð®Ë>‡\‹{p„:+Vc/ÑÄDÑRc€k£8$×þüY ;^Š8öµ+[ßt §®ú”|75?j†úùð8ÓGK¹ ŠAa;"áÜ¿Úô]A¦§x‰ÇqßBë«Z}‡bá`š "¶Aµ8×ûÈž' K4·EfŸ|s‹è¼ã”Ü<À#ÿõó‹¼…ËTçæd±ªÿ£ æQs{#UÑu\wžM—!^AN>œÎÐIÄ6´Ï¯Ç@lD&1>ÀLiiû¦wxÁk€ä'æt‚2ä„÷š¼/‚‹ è‹]"ñƒ¢AÄUns¾ö§7^(œ˜Õ2ޝ¾¬—©ë?'ßcÞÙ·YÄO¬µ|[-Õ èýan ¶ßªªÅUŠÍÅYoXb dkÛÔ—Ž©G\¯„@‹cñ3pV5¼é­ïê¥:õÅx'—ôY…¿Þƒ¦ ñðž7ÑGbóüCKO­À®pèàÇ9¥g¢U)@|’ nN…A ©ìŒ4QE˜×i÷~ÜÄÛ ÷f”—½-ÞÛRãj{0ЅËeŒµã½{gŒ×àù3=ðÝøŽ÷’¯V ܇ü Ø7šÅ–íI}Ç–òjvv9ñEü*¦Ç^ =—¤~+gì Úzê’: ½ÖsŽÝ¢¬ð˜µö±üXõÙÞ½)Ó…¾™cì=©i¯OîJ¤{óú¦…$Úæ 'diZÖI9þhãŠúå:®ñïHJƒ”Jjò"Û…j¸B/l~4˜c!%l…ÑN„ÆZØcºRZ¦‚>ÄÓ» )r¯úX´‘=Gj˜=_d¢µ¢¬~Ö5´1>iœ©@£ùýâÉ Ê+*lã“õEeï5?£që,¼Õ°~l.Ðý™%æäËÏȃþÔÜ/v¯iðÁèxMìÌ^[V°ÅÚØÁ™];oуT Úœ÷èîàçJròLí­”»h9QöíRØØXðÃBÄQ[…ëBØy– ÔàÁ®ìô"=qôŠM?Cf ¨¡™L°ÀÉ\ýð´\ ÛDÀ¾Л1›ÕŠág$à A…Ü&S‡™*Üá2èg˜{¦½@xÄgÛìɶÉD=>ózÕxrÿ]„·|¤$y *01\M(Åâåba* CDr ܺΥmhNÌåu%õy\r ñV ÓõT-³‘¶áó2¬6™m…\Â}H6HIýkffl ÿÕ«‚JÕñœhõ¡bÉVê3ðßë vq[  ¯,géy„’¢$•Ÿ\bÅ}ßODçéÐCX`2ìAG o»Oîšþ™S‘AzÍ“­À¿ë`““CG%¸æwýg³ÕÙÉ*¨Ša»ˆ…VÔ~µÿkTèOÜ6†vV5¬Ö }kipn<ÁñC}ýGL„L^iж…'ñAyw™(ÆÒn9ç-¿ßµ{ÚÎctÒz¤$qGÓ¤q\- «@ŠoÝhä;àÍË1¥*"¥w¨#ï¯XÌçÂS—E :TO¨°œëbÙ9/œnïæ¼¸õs·øÃ)¶†{Ûñ3Šºd«&tIÙë¼Y1:Fýî Mf›û“däãïeü«%@4¼ç„·z<²odzƎG™pxS ßw®<˜,#b>p'QYÓ[Wv=jñó×;nB¨ÙO› QYÜ?sÞƒ+7Z(QÀdžÿªÕåœÇh¾T0µZþbu34„„B|vÈl4x4¥Q’qLä²·®¨é·Ïpk¯oþ ˆZNc‚7ÕõüÉ=Ln0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 cleartomark endstream endobj 771 0 obj 11593 endobj 772 0 obj 1360 endobj 773 0 obj 9701 endobj 774 0 obj 532 endobj 775 0 obj /ORXOGM+CMTI10 endobj 776 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 /FontName 775 0 R /ItalicAngle -14 /StemV 68 /XHeight 431 /FontBBox [ -163 -250 1146 969 ] /Flags 4 /CharSet (/fi/one/two/three/four/five/eight/nine/B/C/D/E/I/O/R/S/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y) /FontFile 770 0 R >> endobj 26 0 obj << /Type /Font /Subtype /Type1 /FirstChar 0 /LastChar 127 /Widths 777 0 R /BaseFont 783 0 R /FontDescriptor 784 0 R >> endobj 777 0 obj [ 615 833 763 694 742 831 780 583 667 612 772 640 566 518 444 406 437 497 469 354 576 583 603 494 437 570 517 571 437 540 596 626 651 622 466 591 828 517 363 654 1000 1000 1000 1000 278 278 500 500 500 500 500 500 500 500 500 500 500 500 278 278 778 500 778 500 531 750 758 715 828 738 643 786 831 440 554 849 681 970 803 763 642 791 759 613 584 683 583 944 828 581 683 389 389 389 1000 1000 417 529 429 433 520 466 490 477 576 344 412 521 298 878 600 485 503 446 451 469 361 572 485 716 572 490 465 322 384 636 500 278 ] endobj 778 0 obj << /Length 779 0 R /Length1 780 0 R /Length2 781 0 R /Length3 782 0 R >> stream %!PS-AdobeFont-1.1: CMMI10 1.100 %%CreationDate: 1996 Jul 23 07:53:57 % Copyright (C) 1997 American Mathematical Society. All Rights Reserved. 11 dict begin /FontInfo 7 dict dup begin /version (1.100) readonly def /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def /FullName (CMMI10) readonly def /FamilyName (Computer Modern) readonly def /Weight (Medium) readonly def /ItalicAngle -14.04 def /isFixedPitch false def end readonly def /FontName /OCYBAA+CMMI10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for dup 58 /period put dup 59 /comma put dup 60 /less put dup 61 /slash put dup 62 /greater put dup 99 /c put dup 101 /e put dup 102 /f put dup 105 /i put readonly def /FontBBox{-32 -250 1048 750}readonly def /UniqueID 5087385 def currentdict end currentfile eexec ÙÖoc;„j—¶†©~E£Ðª)s™§„̾…´™;.ëÞ;Ôr·ÏTeò…ji«–íK­/df5à¶A|Ç{S/…ØÇ )¡šSïcë\^ÈŸÆÂm‰çÙäp·+ïÚ#õßv¾¯Lé17¢íŠ©×Öýó~kÍàÙ ˜d#å– ]Ÿ»L•eVèßËúìGo£oÙ¥È\šõþÙÂÝÒkÜ ™9‹ŸMÕ™=ü 0)xfáÍ 1›kÙXž9JS:6ÔV ™ =!™X>¹¸KMîãÑ)9ã!™ ÒI‚}–HWIUöª¡c©l=G¥e°ÂZ¿m>nÁ‡ä°Q‚k°Ð2=”1p·•%R`ùý%ò$ô]ûûÞ÷ÿ‹¿ïc{!®W+8›?v(+ë)Ì0ÓˆÇ!Yah“çtA?HÞ @‹ÆmÎ?á|¹øM X9Õ€Ö¨ˆ#Ù2 é:ùm— ,MZ+²¸Ç’\Ex9YÄn<á¢ðêÄ¿‹›2^FC[Þ`¼T×+ȬµÀ£D¬‡]ǸFF£$¸oØãB!>;A\äT hŽÙÁÒxìh½|5úù«:6Òü;åÏ–UÇ·í§6~åƒkŽ.ìT*{8î¾K¬`yÐ8¬³ÇÉ'—dT|-Q—k«©K©†myñ9 •ª9°ð1 |½ôA¸ÅfŸr ¯(Kõ*)Æ%_ʬñtPû¢`.rY?¼¿Ânrnä®ù{v2¼O_5;\gþÒ>§R¤¥{ïñ×4‰_ : áØã9pEz–~ÿ„öØGu E¸Ì[Ùn窙ÝÉài9ヽ¤u#=X­&>¿¯Â~J~П°ƒUöêtå0°t1Cò¨qs-bØ5±ŸÒÇýð„Õ 4AšÆG˧÷OE1Ü»Ú"®ê?»»@~ ÌR½Æ ¢”ÌO“ë‹öÔ>›¨XÕO8‘ŠÈ' IVÕ‘ðTnPü¯¦ÛÐ ‘#õìÔ«3³ÛL®3z‰ŽÙ›oH9@ÉuDøˆêðËë JÀsÐf*¨+ ­5èx/…Jöl ÀþñÍÑdc!¹=2~SØŒ è%ú•ªW½sxÙúÂö~}©Ù¾ÝM²ØdfÓr9ª}{ÅæW]Nér›zgԥ⊠Q1β08¿‘¤ëÞýrj{³^š•|gSíá™üHi'µYÎ/,ã]^wÐZhšýÙn„(¯¬f¾O+Ð¥ÛLÅÜã=µÿn:`AöQ€23CKu¡™˜Yô=cÙ±üä±Ó?ƒAh±jÖ´U¦–% шÔ-ŽFGœ°/+!ª–Î'(.SES€cÄëÝ,¹!e÷ì¡#вÀp/ô`žÛzL•óÓÞ^•3~ ›÷ÿm2‡LÃÍ0hIÅzyB™µ“•oáë({jüGjÈ¡îÄ*®|Ç‘¼*àÒâ|'J‘C4ï‡ß8äÆÛ6¼7ÿWýŠï.Òä@·'FjfCB ª˜ú+¾‰ !b{îÿéxÙ•¤23W;+Žý”‘ƒ)iCTÆÚ§¦?˾NÆ|*‹´ÙJIpoKWPG»ó¹¢Ê›âh‹…,©íw|”A̬ýZY&§ªáÚ•ö»!÷Œ °YÖNÊ{[Rùû=‰Ñ[%†`o¾gì½¹J0j')¾Z}„²q"P|j°|%ºu=ÐÌO±y?š'F¤QN¶XŽ÷VŠ#ÅàM:N±ûÎ,Ço÷† ™‹nGîÏ^¹:f­¡Û:¿Ž ¥í°]/øÊ-]±Ã¥oصbö"1ª#Áæõ@ÁÇ^j°¡”Ä d¯Š•m¶ Qã¿÷q¤ý°-£V‰jn` ¼ïZ9Réøâÿ}…ÝwRdÿ¨½G¦]Úv>Ó–’ÒÝÇ6"Æ)ùÒÿ\Ré9•ÅoÙ.÷‰J¯†ÆøË>5Žôü‡#šSÒõxäOâåCÞõ{MdgçWÄ[fÄÖ?ŸÉŠÈ<äg’]¸N‰ éªjGª¾'ÜʨiØBHœ‰Y. ÔòÓmûÔYîo\ö«Ýꌒ´œKD˜z‹ŽˆÊïù,¡«0‚2›úWA÷‰¬½J W§V»ÿ‰Ží 0¢s­ÿõü¿üË·,\kU ª×ðòá[ßl˜~Õp”0(÷¤mûyšºé®ÑÏi̪ßÑîrè€zÿŠ7ˆŸTo¹Q–÷Ú\¼G Øð…LÔÐãÖ×ÿ…Äõ3ÖfŽšGò·}SÝC±n‘Êá°JÂZ&¹7d-ýk×0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 cleartomark endstream endobj 779 0 obj 3606 endobj 780 0 obj 907 endobj 781 0 obj 2167 endobj 782 0 obj 532 endobj 783 0 obj /OCYBAA+CMMI10 endobj 784 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 /FontName 783 0 R /ItalicAngle -14 /StemV 72 /XHeight 431 /FontBBox [ -32 -250 1048 750 ] /Flags 4 /CharSet (/period/comma/less/slash/greater/c/e/f/i) /FontFile 778 0 R >> endobj 13 0 obj << /Type /Font /Subtype /Type1 /FirstChar 0 /LastChar 127 /Widths 785 0 R /BaseFont 791 0 R /FontDescriptor 792 0 R >> endobj 785 0 obj [ 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 ] endobj 786 0 obj << /Length 787 0 R /Length1 788 0 R /Length2 789 0 R /Length3 790 0 R >> stream %!PS-AdobeFont-1.1: CMTEX10 1.0 %%CreationDate: 1991 Aug 18 21:05:30 % Copyright (C) 1997 American Mathematical Society. All Rights Reserved. 11 dict begin /FontInfo 7 dict dup begin /version (1.0) readonly def /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def /FullName (CMTEX10) readonly def /FamilyName (Computer Modern) readonly def /Weight (Medium) readonly def /ItalicAngle 0 def /isFixedPitch true def end readonly def /FontName /BRNIBA+CMTEX10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for dup 33 /exclam put dup 34 /quotedbl put dup 35 /numbersign put dup 36 /dollar put dup 37 /percent put dup 39 /quoteright put dup 40 /parenleft put dup 41 /parenright put dup 44 /comma put dup 45 /minus put dup 46 /period put dup 47 /slash put dup 48 /zero put dup 49 /one put dup 50 /two put dup 51 /three put dup 53 /five put dup 58 /colon put dup 60 /less put dup 61 /equal put dup 62 /greater put dup 63 /question put dup 64 /at put dup 65 /A put dup 66 /B put dup 67 /C put dup 68 /D put dup 69 /E put dup 70 /F put dup 71 /G put dup 72 /H put dup 73 /I put dup 74 /J put dup 76 /L put dup 77 /M put dup 78 /N put dup 79 /O put dup 80 /P put dup 81 /Q put dup 82 /R put dup 83 /S put dup 84 /T put dup 85 /U put dup 86 /V put dup 87 /W put dup 88 /X put dup 89 /Y put dup 90 /Z put dup 91 /bracketleft put dup 92 /backslash put dup 93 /bracketright put dup 94 /asciicircum put dup 95 /underscore put dup 96 /quoteleft put dup 97 /a put dup 98 /b put dup 99 /c put dup 100 /d put dup 101 /e put dup 102 /f put dup 103 /g put dup 104 /h put dup 105 /i put dup 107 /k put dup 108 /l put dup 109 /m put dup 110 /n put dup 111 /o put dup 112 /p put dup 113 /q put dup 114 /r put dup 115 /s put dup 116 /t put dup 117 /u put dup 118 /v put dup 119 /w put dup 120 /x put dup 121 /y put dup 123 /braceleft put dup 124 /bar put dup 125 /braceright put dup 126 /asciitilde put readonly def /FontBBox{-23 -233 537 694}readonly def /UniqueID 5000824 def currentdict end currentfile eexec ÙÖoc;„j—¶†©~E£Ðª*Bg·N³ÀÓ½ ƒØ‘l¦ÊKq*Þ²Xú«šææwüsм|QÍFïq˜Õþæv`æšz¹XòšMyåp"÷ƒë»¶Ôôì5OÒÞË©”Y¤ÅðÆë¡P(DTçÜ!Á[v´Á›„67XFšlU‡…²&3!R˜q©ˆ4‡Ýw”’Ýσ~j‡¸+Ûño¼uú£ “þ_ùc‹‚2BžØ·Ïj=‡š-8Ý\DgùÝŒ] ³¦¿/%b›®Á™®‹ÔºnÙ»÷Ú¿ÐáSº±ÁyÔüâ b*ÍçÇL(Ð9sWí«F Rë:E·¬Mks­ƒH…02§Eô”?›Oíe+ƒZ¤—'¨´zÿK΃µ¶…–оi‚·f Ë<àÂ,¬ÝE“òDÁNìZ|JÄ#’ø¼BWþ¯3ô¿ê‘ÿÏ—MÖìp¢ÄÁäó(¡ë%ä5%ûÀ~(Ì5öBk}Aêj „Ýc'S•¥ªéáÈ,PµQ=âr ´Ù·}dêœl¹]$:7)àŽ¢@y"­œÛ£íšÇÂXáýÈs5U›Q}AôLÍï 1ÞMeA åþrr,°ïœrû÷°µ?¶þ(Vç¯9Ú’y·6„t74¨:=Bl—´4'Ô¸¢Ÿ¸èÂ×†Ë .¼yØ 7›n;<´ñØþà8åįÊÊÜ΃O z3`ÒñDd©ôž~§ˆînÜ£ð2ÿw±Âʇg?÷­Ñ¼–ÛÈÈ! ÄÕMfµì<Á³Ö NÇ[íESÃX‹½Nº£¸³™-ƒUÝ.䈿‚Ê|Ú„¹ _åF‚UÉ‚}hÓ7h œÇà; ‚í²k)šäg¿é«Yü‘5¨1 œB4˜Rj·Äôÿé®î1‰p ¿sº`•Óµ¿ùÈcýY>¤–ÜSZRC‘{ :¾2%)†„“¤„JPŸäº4€73›'ø!þWÑü¸Q© Ø ù":ÏÐC- Š¡²oU,U_¿{K¾¸ä ºB9—2P»\=O×ÔŽÁW'ea—²­yËNyµ ?—p’Lµz5A§Ä'‰w´]PÃk-‚Ï¿a?‰k>d{ÎňHKFH·ž[Jˆk¾h¥efݘ1G¦zˆ,òJÂG@ð T "^#ÞLÿÁTA9GÝç"ÈbÞEw3ø@ðݕɋ å–?™ËÖNü¾Ø^?àÀäÎà1'GM¢Š³IÒ; â==™¨…~Îq§ô¼Ûx Ãý=ywW -ªhWR=BàjÍç·?Æ_+·Qgç ?QÁÜ»ihò ®8 á Y¾¯œ%Z˜ñ{•: C7¿Y} ‚5®o×Fj}.§9µú.rÀç70ƒ]ÓØRfH?Lkí">š,gA]Ô5dX0w§œM¾â’ðMùEvRú›Ó€ ¡èÐe¿0µâKïéµ} !:By¬% ]’-œË6Âñv_üXŠïäGjQ0Œêû£u\ü2©m‘žW£Fdȶýhµ°½+ŽzB»¶xj#ä>VA¹¥JÓñl:Y“•é®_áeˆÖî/di„+ µè‹~¨U>/hQµÝ£¼%¥Uà÷‰~á›4ŽZr¢;>§=jÍûƒ#ý‚{ßl”¯p…?Ÿ÷<—@—Iñg§Þß%Ä;ÑôOψŽ6Ò%iB98¬7ßcÒ‚°Ù‡Ù4ìÿü "ªyI­| æ½4­æ4×/Oó/Nf©óÿé¶Mác¼t°< ›§<ÞöÆPe‡ßƒ™ô!þuD´+ªðþ`Ó~!y†Ýøêuå.,™O^LÈ¡-× Í:ÍøÿÈ7›7ƒ„í+’ëÔå»×A^Úd4NdÎ(V· /*5œÏÛ7!ËD¸ß¬¤Á´W·”ªo-mÄ3›cÌ Œê¢RζSÃYÀfµ¦\úÇ Ý‡ÃŽèþUQôõì1ᲟX0…§€`ßÌKFˆÉÏ—R¼±((ð£œÊXÇ Í9÷ª¡e{Á¯úÄBÌ톉á/‡ÛÑ>¯ë `ÇÏ/h*3'´òôÂêjâQr<œ—6u×Eb¶0ü6ÜbØ5)÷þÐ|¸‹´qà:'\dt³zýãÄPÊŸ% _£„|ùØ¡hwºëvµ! Ó»?ø«.ûŒû?uøà²Ín¯W’«s×Bç|úL_(¹‡B ´›pt¸„‡¿ž +N[!‰Õ…í²gªLõäÃå=—QlëO:øa‹©ŠRÅœâ7%WMÅê­a ˜ÛÒl¿œ'ÿ÷ó}nå¡‘ßKê¯<Í€ö‡³aÙÞX:¨ ýÈsåhilñ"°lÁ¼÷¾ó;g”º÷,^N'ØÈ{ÖÞ²¾Vžý4FA“Í4Õ°/Ñ v˜€œDª'i«š¬/…æ4„±Ž.Ý(\Sv‘½£„·[ñë0fPšC¸Gž­@ÁL¾Óq2øÒ€]7{ç.ÚÈt–è‹ç>îsNmhQ‹{å(‡{­–ܸ­<Ù)rMEƒðMÒÞ›è–T]š®ãÅpÚ ŽŸ XúGãìÑÏ×WgÓý[!m0 ,@ìl¿»íïÔ6\)qpIœéX­p¸—†+œ ò·Î\®¬rò IûñëA…h×õÎXgyãÚùiÛÖÔA¥®d¹Štþ±!Hò«”µ ,g%ãVô¥\HÇñÚI¨ÐÜóI`n‡É‚íU]Ñu¨DtÏG}ò!úüS|²¬k¾ð?ökîC¡Š,Òêˆyí|ÛYUž`‡Û§–R±åÎh¼–ü@áåÛÓ-[Ó8$¶Ã€Pv2¿ Ë·Lü¿”N‰Ç/‹­R„ 2p“j³C«ùÚ½6†Î&ô¬‘|Ÿ{񿀦tGk·¾ÆÄù¾‡¢Pð}>Ï~ɇÎ;³Xé­Üšùq¹]™ÿÓ´ñ˜ŠÏàdqñý¤D»{DÇiª"‹œ)>çÿÜ6£*'I®p2 íÚÌÉ÷“:ϧ üÏ2Áêç,o|.g©H˜ãÇ(ð1š÷Ë!Gñ±ŸÌ›÷­óºä^HÏCúèG£P4RkÅ‘€â£÷5ýü9æÙŽ © Tí>­{åeÇvë“=H²í´j‰›óX̓N¬ï[­¢ªä $ÓO£ïÝDÄ]½ˆ&mÂïš™ r7[IÖdo› '‘H›ZìäF¯¹¶ºÚýø‘»ýWÏûýÕ:tì¯ë z÷ø•C?¹£»Ñxû&Ær‹ >(Š}`w –Ü-Y ʶóŸk¯¯×±‡æ,ÁRD‹NKiΩ¦Ëõªup sçÔ…ÊS~¯Of=•1<£ˆl4OÏ7¦ªDóÓ¬a¤+úËz d¤·Ž¬«Ùd’ƒÙŒÍÑúý+Þ>|—á¯ûkž¶]ht©gÒ¼Åû}Æ™@VU0>zmôã*—²Ì·­s ï£OѼÇݾhÔmô0ªf1¹&U| SŸMG™ÿd¦/Q–8!0rfàM"¬uw3î—c³žì†ZñлP ËL?„'p9;OëUö·BRè¬Ç!"{¼ìthr¡õch¢ª6ûšN×+«^ð{½|Â{j²o±Ÿ¤¨(Åi]#ÝJ)*¬= ­ê"Õ¦¬8zâu tœ4#rÞ³mP¢„Wá §\J¢ üŠð˽gKj×ÿÖm èªkG–ïmZò æÄ €û¯k©­jjÚ¦‚ÀÓ…R9~ËT.Ö¶aù—"­šÃÌÚìÑX)ŸP3¿nŠŸ¬‘ÐjëÃï{|@ÝèX¤EdÞ‘sNæóõ‰_nä Æ ‰_ên£ãG^OÆÒ1z™CS,2ád,ê ìÑÏ\ So8™ñ°LŒØú8êÀÈû=^ÀpíØÞ<,Ìö‡’ìAÇꦽ4ú|C¡BeÔ½ãée ¾E’Ñ÷y¥ù™&çÒY21´ÿGçL®¨Ç-ÎÂêõ™V?’dù°ŠšñÞ½A?@¡†æ~6˜ÞÕw¿ú{Æ+à©z\½!- 4ÖÚ•‚ìÕÒLt¨fS÷;“#«ÍPŸéÙŒ”í÷#ûR4%ŒÉwÈ7ëÅ×(>uÕÝÌ̬H肺^ÔÓó#Vú»¾F qZÕ€óÚ‚’Àn冿4&·ÏÚ4ëµqÀ¨†tqšcÙ¢÷^A s±U·{"á=P0‹¬Ñº®%³ØFKŒ Û­ú&µFÍ÷#–BÞj刑ðŸ)<”– EiÃõ½baâ[ªãð4¤eaTíH‘Lz3§™û{²x¥òżðb{ÍŒœ=}³1¼Ô¶eFxò#öPS`ÁÈiV+å–¼68„ì/ç\u׌<ä¶óß•§¶¥-#™û‰.(¢aô»Á‘àã®Ýƒ]g!+6|ߥpœÕçë¼A5ê±b€5'´¬ö8Ž xì4æ ¿ÉZV·ºúMo÷ÅOÝPë4¿ëqó.œ˜sí¶™ÀóØ(8\LÕ};yèz×&b‚ð²šO rè*'°ÅÁ4AߺR’”ÑRV@:(Djm9 2¶¡±baÝZÏöß÷ÑÜ3a.½ÅØ…ˆq>AWDÈíY•¯$EÜ8û+Þ/£oëüMJ4õè%/¼MèâÏ£{E1x þ Ž|Æ*u›ßØ/kŸcôTz\¶ÑÅÚ_V=€ Sêùи¹8² Ë.ý€@V9’ ŒÉìlޤ–œýùSq1zæÂ2rÂMcJhì'eˆ=ç¤]é~éM¾¡ÙÁÊ pMöI´Ø¿r—ðDÕl8Úi,^:H5¡(°l d-± èSS?'%¬J]+?¿”}Ú–|%™?šÇSÑ’äj-º½A'®4í¸`„Låfè£u ʉpeÎÍXÖv Xévá#$-ëÖC$´~WV¢Vv“™©âx›L-¿’Õ âœðå阨aÅÙ”êI§êZö[ÉCÝ&÷îÊUF¦UÔWÌAy-4qÄa_x'i ·Lì $u‚G̬s­le)=ìePà˜ÕMH0ت›é÷]2fÛ\”äSï º1|Kv<,5¶™â/Aˆk ]þsù¬ÞÿUZÔ\‹?ó2²¿|6•3Öþ‘Ž¿d(øõêÐf# ¨11¬–ÅÄ ñ{—>'—19ýlJ¿ºAÚ‹´y)ÏX%óâLoRÀœvoµ}7otxñéûfíu»I €íƇcÔøÍ9ß¶` 3ú¹U˜öìê"CÌ]è^)´Žµ¤²7>ž<.Ë%¬ÌÁçu: ï¥Ìô:G-ÐÓ Í_Ÿ÷k‰S\.ÜÀ*Ç9Š šL_GÊk"×¼cAYm™‚Vî·¦¡<…û×g$' wÕÓÇ t ËK1 ß#¥ .¨ÇÇð5`àY¤Óìö(½Àÿ"”ÎI;—ˆ!(í ¤Ìï—Ÿä·…= 3†jG5v™JÓsúÊÊÅ>JY4üC4Ä’s-{`)Ϋºí-ðéÕŒ8|±hˆ}´ |œãt.ËçÇ­Ô½ºßøs­EÚ4þvîtø©äc|ßÌy[øÐcörH¥K#ˆP›ù˜pžÓ47Ú–Ÿt”ë°jþ6IÁ °Ü(|‹#`ØA“5ù ÁZ±´èWdŹ}õ';w”[ÐÎ;Þ‡"lämÆ[€“Zi–aÔC 65):•hc]@Ÿ£¼0¿‚S£Ý€—O:Ò¼õÎ]¨ìb­ˆp¹+£ÏŸù9¡[iaóRE°¢JDÙ:hïŸõG'#w|×6YçMüˆÌÖEÖYbt./&eÏÞì̱lüì…¶„ÿ+Mî ›÷äEwЬ´äãdŸ§oT‡¸ë*Ô©?â¨ÂàÆEÕqŒ§&,«DäóM"ø¼I&ÿ5'ÕÆö±í {`„_;)þoˆþkÍžt÷œÕ&DÙ™àN{ôÞ}Ö·ê´æñÀŽkdG?I+»,lhjê9æ6BÊ•‹ŠÙ-è¹XªK9õi™Å ¹9¬ÚÓÑxüðιwx%+È'ÔåÜ€éé¦$‹ŒïCŽÃé^˜úDorì(øé3nÉ1½¼ôº Bæ}éÀ°:—D‰°TZŠ7°¨Þš?§Â ø'± 8ޤ Ü'Ñnk…ûÿÚ|¦>¶óë lXű¯º’–¦Z—›¨tBð>ûƒÑ„y‘‹:!›ªA°,MŠ{ÇC–ñ¬çÑqEÝXUü¶Þ³†Ò­<Ø) „“ ›/Þ¨f×hgÞ”e¤Sâé‘óÚ×S¾‡fŸu@âì'YÅéâ]-1ØÎ&©dô+ídXaù È]®Eš¬I˜hpV‹„,ÊþY¸©Ã&™ ]°;§ØÅ\dÃÛ/Ë0àN{€°¿—RuÊ~Ëp÷þì 6°XØäRÉÍ]úâá:Ö#rlKü;9mMûdE  »hš‰#ç3Îâ³Éž¬Œ—û/d£ …¶¡å{eyl'º:!m¥çYcÐw¯XÀ.d2¦q§šYÓïð9È2êÆ +/BT³›.Õ8ž@MËË*ñÏh-ãp™œoe¾þP¿NÀ\s“8(C]™HÙRä¡@“W”¯ š˜(غÖÅ^üˤý‰Ž·›?éL sæFò[ùc·Ýg@•´"¸Î±£hhSìæÔJ¢??seƒ‹ì Çâ¥y÷ì¯Îà_7^3 Fùé©pÞ‹¦7`ø JÖ ´øus–Úë_«¶{Ç8΂Ù+³EÇæÐ–¸©yå­¢„Æ%â¡›¸ÕTSR©ÜDÉŸµA…>…{ГtP&¡:æëí9køµ6¡ëÌGF‰iE—Ê.µö¯&ç´D Õ/ÿÌßI÷SÂ;i''R*þD7$z^M%7“ÃJ"¿>(dBªê­Dî9¡ÆöÖ‰£™ø§öÙè(¾+ió˜CN˜håŽÈ®£f«çfFb2¿ó$éëî&f¥£Ÿ >óe&ET.¾×z*…âx® | ûðHP-{8éÒ'n)døú}ZÓ ×1'JµËK:€h?ÈŽ‚^‡ Ö‰eæ+Hä‰m™UN«ùº^¦k*Þ%³8Ò¤D½ÐC¦Wµ7¡‰\Ê!½Ѫ‚E‡©èZîùøn³§–/ÌsÈÅ@Q¡˜rÿ€„WþÏ'+#Çðí°ŒÚé å?g6&µ1‚»gÕ ŸµY;Í­òQô¬ hù¥noÏ_Ë ~N(ãÚˆHOjU¨â4tXú)îû@sXI0ä{5‚'|°âZ±€é’x¼tNæ{­’ž'²²¬9Bñôú4ªÜèÙˆ°@!ÿqøM-v¢lU›P{YˆìùçÁÞᓨÒZz„Äa ñ”O¤ÛUEkíæz§ÚãHTøÅä)2,¨ÊÄÁcPJÓêñ³»©Ã?ÿ¦žlÐsFK† ˆ±[ì KV²›‘¯FÌE¢Ñ¯U¦ÿ*þ‰û4nøeüÚÏ86¼{UÄêcJ¤`ÎîG£-"#4\—žíÚJ\w‡R¯|”æÖ'¡Ì»‹ùœ>‹—ѸÄËÙ)æƒLœq²¯•ó„ª÷qžŽü=ñ0¤´~Ó5Érš1ÄUü©’Ù ½¯ý¿&üq´óÌÊžo¶ i‚cùju-õvWGãpm}©˜ŸRÑEs=§ìI:áõ6d`,“ÛIÚ7™y@Šiî´u×+~qeS~cÚƒ/ê*SÏlYM–F÷ýR<…¦3§´n×LÁ4ØÄÐTÄ]ê $¦HN}6x§g-ÍåyîæèÙäƒbpÌ{ý6ýhû³„„5SbIÅ8±ö>XròØ Ä·56¡oÒLíS¢~ÖÒMúu…rq5ëºðŠ’ø}."hì;WaÆï¯W†‡£{ºÊ€ñ0°º¦m1кö*òÍ*Wm[èW$§0©‚…Á&{bv\Ÿµ 0l¥Á:óŒ¥íÚhŒ-TI :ƒlÑ0ƒÑžz$z9• ~ÐnR¥ÿè7;ƒUˆQ—qðË«iÉ–ln?AÃDlyÏ…Š‰îi=´àÙ›ˆ’ W“Yº?9 Ì2ÓFH<Ç0ü`V´Ö‰^Øž±fEÓ8wÅG‹’QÂhæß\a\1Ù„âÀ«ôy÷N5Ú6°$Cˆ(üÆæ‘ò#ù¤â—Z3œÕMâñµegÝm·O‰j<H¡UT•©V¨Ý^Ru8¢ˆq—"w‹ó·8\æöXů÷šNP¬÷=»VñhÈûóƒ0?î 9õcíð/ÁƒP¬I¬ßóæÍ˜U¹•þî&þ%`Ró†I@n‡¼t^­–ÂxØ$È_ßQà¿W_÷6Šßñ9Ȳëÿâ(^ÃD143_A g™¶HEb@¿Ùpð(T à< oK…ÉŒþ)yÄlõ]—ÝKµ«Ú“ï¹Â®ÙÜÿ= )ÿuZõùþñŒ aë¼òZ†DPBitml}Gמ‘ÖØ_FX—ýá ÍØgì—$‰³m‡9MlJ<7ïš2ê Sñ9‘ò_#B?•ÈE‘£¡h0ÎTrÞ]ykÌ4fŒÓׄëVîŽÍ€ºI»üÛ !ß±Ø^¢˜ålá­úcÚ$Û……¬œÃ2:¹kµ0¥ÃþWã– ج$¿±E@ÞZ!8!q-¶.ÜLî®ÎñšÌà“ÑN>Û„Ó^h$Ø …Ìû98ÜÇ-C)£”ÑÖÈÿL8P>#(3b>LLj| €Y«ærÈ´F^‡aðÀ™xLÜå¿ÿ üœÉº3Ï{¹ ^J(Jã ~m¿ À«1›lÎÁ Q‹ë;$Ù?FŸHÇ™|wÎIŒRHFP‹h”=Æn,XAâÖÃý<ŒŸ×È©põâÓºt±™s°‰­ìé[ÏBr™Øb¹ª>yBíeðŒ½¯i³Ë:B]`t¾ý.@i‚J#ÔÙ•aIÌé@ëÚ ,õbÅGîIðÖÚ9Iù5ǽ‡×ž¤3ÛÇË®šë}BÊHF KQÍúzÇ ÷ÿ¿&ü4Sã‘1fG…àÅq¹¿¦ü~Õ©ÑG˜¾Ø1]EÏP«3[F6Š6p•\†½å8¤(Ëy´u¿N˜ ‹:˜ãÑ ÐÙ¯ê©lg.ßR;Á=ɪ/Q†¾Ë1ÿ媔Ymc’ç‘aõ«+sŒé<­Gë&r›n—®’Qy¯mÑ€þ·M"oKÔpYNm¢ðEd6=æÕ/Åš}æ8n‹>€¼¥Àu_¢ÛZ-¹5ó#(uB‡céú;|·³¾D—MÔ(h½Ê¹fÙÊSjû,=¶²°> CäPŸ|mÑøüÃ3›<õÃgâ+ÓZk?*ŒI‚{3›ýÙqqпˆ7Òè—†ò¸ü¸ºí1¢ƒHˆ‚¾Ò!xŃ˼.²UCåöÞ’ÎÈ@’¨WM'ËúhPvdi¦#E ’"¢9ý“˜<Àp†$Ý4–%Ù£¨Ñr³ÚT³àQ*2mCœj:r I¼t°8,4Ÿó‘‹ÐäüPQZ<f¯Ñ N™A2 3ãaæªÞ4À‹Çíp)EYEK? ?±¯ü=M:œÃqhKå}”®„ZC«iÃ'gÈ¡"¾Zؼp¦¾uc1û—½)zè“ BWƒEú4ãq³(Ú7¶wŸ!ÑT ÷st\ÂíSF—OsLúk• CÖ­9=Ø”¤éÙo¬³®Æëå+ïcòeLÈö4Ë·Dø~•EñOË1æÑ Ëêÿå›ó!l¢ÝÚF“OáüB üKöŸ&c:HB¹Ë4דýrÍ<g÷5çÕyÔÍñÇTD.€ˆ²±\ÖPø ‘1˜ý_Ik\ØÞ©Ç~ïÅ‘¼ë“þõŸRÚ›ŒšGææû0C°b¸†J«Ÿ^iÛ€ƒ±Ë¿¨DViaªi‡ù°é£#ÞNO §rþŽ«êË¢µZ êû]¢ ¶G›$k÷ Ð@ÿ ïH=˪Ú[Üò·‹0CùOcœ ¨:¥Ô+ç ÉÔºûÙ$›fäò©AÙ}iì5SSÍ8œ ü±Óg$¥´>tgâ¤åV¹Q']Š|M’ãÛZž œZÛ¨,º{"Yë/Rœª±YG(Žè¤ÃMþ•øCöGUð]b›i¬¢µ‰î%Øôh Éß@Z!î[§3ß]\aø®Ën\@ÛŒñÔ!Kh”*™ÿF®²bïF k+’¾D-¿À–> §ÍW_€Y.©6Ðïßi%‡^å#þØ4ôi W³øÙ}$_ÍÑ!‚"êÜjÖ_¢éEOC ûÜ?O[¹T‹Ju-G0«lo§ê{ŸÕFõæûVÞc°6%x,ï\e3—±Q¨OŒLi@Õ)fB>Š8›œ±ÅììsÃÖÞ€ÜÄeó ËÊúzì„w…>L𡘠±é˜é³çôuAÄù“‘)ŠHìW)³Èó²qíFÀu£§?³ ,/øÅã|K7:¦(ÑóyÄž"{EöùeuÀG¼/QìÖ)ûâ4Ði%+ŠÍ¤óm Ð~×;#øÔæ/t»EÃð"62ð|{¾hÁúl˜Ð"êõ ²„q¶û@Å]E8>BV嘎÷>Ý\˜Ob;û/üõ¹|z¬nŸhŠ96Jî­YýÿLeÞYo%3ºp EÔ‡…½c÷<²qhøO4r[ üc‘.£:ƒL¹óéZ¤quùô–ct\η6£$rÓÇäVôcâ|Ñœ³ž‚âaçd„mcf½ºù&ä™Õ‹¶ŒÜ;£$#aF$ˆr«Úç-\Y2Õ³ž–¾I.#@ŒHiÞÛ› ”ÐX¿ ! ¡UG…‹Ø¯¨ÛnÆL°ƒã µ¤·•N½}ùâ9oÕOý6GJJZGñ šÏ^ÿñ;l”C',2ý²¥öÝkwúZ„¹åÕëdkÅ9¬ý|ƒñ‚b¦#%‰±©8y¢kòâá?ö×àÜŽ- Yo­+hØ=Ú+³Ç¨Ö~èàY›€²:Eõ†¿ÜpÆÎŒQ´~ÏÍŠjæýšhÇ®)H£p‡ƒÓÚ3w;†e½ž†ÞøUû’Ù0ôŸôÓú7Z–™0=Ž²Ê£Kõ¨tPöBB‡<á1 xlåãšà[O?cÄbu*Fø—ît!ò¨íBV_6^[²a¥²ê3LŠÎÄæ‘ÝEóTùX!!y“Ý6G視„…dïò}§‹ûç¹’£¢ó¹¥mãÿÃÙÒL Òä縄”£ ˜[8ëëKT š=tZâÔUs~†ÖÑ2Ë¥Ç͆»¼¿çRôÖÔµèfÔô"”'žàù³†èˆ}-5¹çÓcK-M“g½ø>~.•* ÇçG(ýnýö¢Pù”û3ŨQòè±–ÿÂSx\Úhl hH­'”‰ÍỜ@7ޝ†!<¾Î,º5b15Ö‘pñÜLoªˆ_Úã}æ—:ÏÁ{]ŸÛ·PCR¬ø;x­ÀåÃêªØ¤' Ïø¬ Œ°²Šèö%Ah'&?Þœ—êÓ>WÆ"S÷ ¡Ü M ¯L^P¥·¡³.ë…±Þ[ûKDå7d$ÝîÓûüóJûýz˜.-8/¸V¶ Æn©°0Vßó›Â 9m2ËÛIòm €~0û4-fýiƒ–†5ñŒYm¼¯;ñ2Mø6êôžzÔT@fÄÿЫk‹á…8<Ûi Êc‚"lç¾5WÇ9ft¢9û| °ã>­ÍÙIáÙÌÂú&h¹¦k†T_ðÅZ<¦÷hÈf¥x„öuõŽûh¦$Íüò\Éû®ˆ@-J ÏÁ)+`¿+ó03öØ<§;Ä©ððÑÎÐW¯9:óï4ÊnT&à¾B¦H?uåèꮢ­E3ùCøË×CmíRöN?¼SÍh羆¢]ÆÅEU•F?Ó[YJ¥z­ÞdäÓH'J ÿKU»HZ'I’òÇu¡€ÃvWÀI4…Ã=}ÒH©ÚaIF bë‡\žq?‡“”²¹f‹Æ[£Þ¶S£Ô•R|3bÉA¯]Ðá¨Hj&Œ^=ýà ¤øÇ‡´l XÛøÅ;ûŽ»N,è›õp» HfîBvSÂ7ašF«¸Ìé ÐÛqzRÜŃŸüåsÞ@y™:\RrÛ¹[`º^0³± ˜S‰é¢}æH¯`7o³õË+&Ë$6œ©MŽnPÊž ú¦#úò_¯ºB ·Ð‚¡ÿÖñ€&%úääàÚ‰·¨[–MdHj"i,0d`]E§H/ˆà9È”&–¨qÔäHŸ=úצPmò+ùCù*—邲å¯ã$äem Ñeé@ë{Ù2Y™k^OõTˆZØ< N¤AÖÅLþ,akR”)ð_S4Œ7MðúHD½n"WöËÞY|ÓCÒ<»©4é“4ìhã‹xŒG|37gúI|–4?<É¡›`lâWetÈ£J"‰É@«zDgHŸÂã ,P»µX…‰"‹¦’«‘¥–J3¶´À&B*„\êîÕ˜ í_ïñï•uFVñ8\CÕíþÒc ^Pg×ü1ã%R_ÿÅ»›ÄÈ=êô[ 6X±ÐƒëÝe÷󿃞ö†Å4ááÐX ý¿x'¾Zµ:¢åÒêcºHn_òÏóÄ€úR] é ϧÏ.?õè >º¾O=ì͉ø ˆÑ0¿wü&Ô.^¿”‡ö‘˜$æë3 _¦!þCƶ+‚mhÞo]"3µU‰lºm“ÓˆI`ÐŒ“ØÇУº-ôí¸òÝX6Õ£BqP ãˇf§½_]¼lçÆ¿­¹íSj¢¾Nñ®©”Ýͧ ý[Æ%k™Ú1˃M… Jßô”L$ÙO ;Àʵ¨à@û¨ÅN]þð¢?Ïb.uC„úîÿñÊSÆs 3úU©×–©ãu|†. ºuߦòíyÌûÉ$cÅîâ™›#îÇ ÝJÊEƒ€ëKVw‡—%åÊ•,ì¡æRY•#âÊÉüœÖÅ;*¯ûùGõýg Ým+ésæ#Ï¡úœ0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 cleartomark endstream endobj 787 0 obj 14974 endobj 788 0 obj 2119 endobj 789 0 obj 12323 endobj 790 0 obj 532 endobj 791 0 obj /BRNIBA+CMTEX10 endobj 792 0 obj << /Ascent 611 /CapHeight 611 /Descent -222 /FontName 791 0 R /ItalicAngle 0 /StemV 69 /XHeight 431 /FontBBox [ -23 -233 537 694 ] /Flags 4 /CharSet (/exclam/quotedbl/numbersign/dollar/percent/quoteright/parenleft/parenright/comma/minus/period/slash/zero/one/two/three/five/colon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/braceleft/bar/braceright/asciitilde) /FontFile 786 0 R >> endobj 11 0 obj << /Type /Font /Subtype /Type1 /FirstChar 0 /LastChar 127 /Widths 793 0 R /BaseFont 799 0 R /FontDescriptor 800 0 R >> endobj 793 0 obj [ 706 938 877 782 754 843 815 877 815 877 815 678 647 647 970 970 323 354 569 569 569 569 569 843 508 569 815 877 569 1014 1137 877 323 323 569 938 569 938 877 323 446 446 569 877 323 385 323 569 569 569 569 569 569 569 569 569 569 569 323 323 323 877 539 539 877 843 799 815 860 768 737 884 843 413 583 874 706 1028 843 877 768 877 829 631 815 843 843 1151 843 843 692 323 569 323 569 323 323 569 631 508 631 508 354 569 631 323 354 600 323 938 631 569 631 600 446 453 446 631 600 815 600 600 508 569 1139 569 569 569 ] endobj 794 0 obj << /Length 795 0 R /Length1 796 0 R /Length2 797 0 R /Length3 798 0 R >> stream %!PS-AdobeFont-1.1: CMR7 1.0 %%CreationDate: 1991 Aug 20 16:39:21 % Copyright (C) 1997 American Mathematical Society. All Rights Reserved. 11 dict begin /FontInfo 7 dict dup begin /version (1.0) readonly def /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def /FullName (CMR7) readonly def /FamilyName (Computer Modern) readonly def /Weight (Medium) readonly def /ItalicAngle 0 def /isFixedPitch false def end readonly def /FontName /RKCUFM+CMR7 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for dup 12 /fi put dup 40 /parenleft put dup 41 /parenright put dup 43 /plus put dup 45 /hyphen put dup 49 /one put dup 50 /two put dup 53 /five put dup 67 /C put dup 69 /E put dup 70 /F put dup 73 /I put dup 77 /M put dup 78 /N put dup 80 /P put dup 81 /Q put dup 82 /R put dup 84 /T put dup 97 /a put dup 98 /b put dup 99 /c put dup 100 /d put dup 101 /e put dup 105 /i put dup 108 /l put dup 110 /n put dup 111 /o put dup 114 /r put dup 115 /s put dup 116 /t put dup 117 /u put readonly def /FontBBox{-27 -250 1122 750}readonly def /UniqueID 5000790 def currentdict end currentfile eexec ÙÖoc;„j—¶†©~E£Ðª*Bg·N³ÀÓ½ ƒØ‘l¦ÊKq*Þ²Xú«šææwüsм|QÍFïq˜Õþæv`æšz¹XòšMyåp"÷ƒë»¶Ôôì5OÒÞË©”Y¤ÅðÆë¡P(DTçÜ!Á[v´Á›„67XFšlU‡…²&3!R˜q©ˆ4‡Ýw”’Ýσ~j‡¸+Ûño¼uú£ “þ\õ¸Ê»ŸülÃñé®2ò4ë`þ}ãI•±¬ÿRBŽ¢ ŽÔýsã“\ëÔ­pÀˆzEÈG®ÞA‘ÌÛ‹a4_Ðpý0ÄóuØAÝEG)¢Q³ö®|ˆ‚8B‚ýÖ*èîþÞdGWjú'¤‚©Ê×0Viäx²†ò#(ò®„ï=äœ@'q¢IªÁúT5i (Ñ´t†`È ?á¿E<øG¢KO„d¦<ê섪"ý^t„~Bkh•}Ñõ _2…áùXñÇðâoî|c™Ž¡2‹É„WÈ FÒÂü4bI¦dìû¢ÎP6Χ5ŸÊÀö†Ã»'îúEÕH÷½LæbjOƒÆŸé:S$:x6/0ŽÌ€Ý Iá7Íɬºã’‚âjzMŒ›•ò'½¢¢¯©ÚëóPC€²¢ÏŸë.š?³½>€ŸÆ)4‡§E^³¸yÒ´½F”+±$8–&G"ËYl?e½Y¹jt±+²šT¯I2! nþXKÀt`‰Ë±~h„]{> Qîäaãiσ\¾mFÇU#GŽvh2uöÙnÃ8½­WÕ;Rõ4¬ŸàEjÑ1‚B4²b¬ «¤;bëÚ9y[®lþ—V:Pªáñ•ˆ‡9òg`†©\šJ~ óM¡…¸h;«"_(WÕ«Ô¾¡•¬Å{ûŽ3® Ñç›j؈ւž° GËyfX´*$ê£ú§`óŠq'2™o•räHðà'êƒ~úÛ/ýpj ŽˆM1_VUØ5>¸§h¶N8͈¤{W·uÒ½ËóÉ35.¦©SÏ "éÙ}ÚÑ%k’#,ÒJO„Édä¨é‡÷GéO1nÆNùŧ‡¥ŠÏΰ´NjsvùæÿÌÃùõÂj6@HX Þ Ìñ®x$?Æu³¢—Õ_|T_ T ‚…¼±¸iJ) ^‚xëÁǘ|<Œ ¢8[íËØø¦ø£ëf­Þj0IÄvw´E´uR°9=x îÉF Íóz²<š<ÛÙ4–lYÁ£Ž&ÐNþJPý°~†VC¯ðûù»MF=|wÝ|[Èçp®+ýì8mX;ó`Ü¿M<YÚ}Ÿ&ŒH‡—ËNjïŒî #7TX‘¸g/T1³*šGÏa´‚ _;Çð)cýi“"±&€SÎlà ÖI0‡]ŒV!j¾þ+ß«Œ@U^y¼OÈÚLÎôèôG‹ÂÑ…“¸sg§º¢WðÊà…þ€b£€¢ŠpèþƒhØ”±˜ŽÂ²é ¿¤u §°Ò‚Ÿ›»êŽË™©MìLD7GR«Ôß(â„7E â›^7¼s#©Ï3%¡Tx% ÿ}5NÚöLùû7üÝӳǢS!«3)Ÿ‘x8y `‰Åßš‘I ´LÙ „uB¢Åqæ²ò¬óBÂc/27(¼`dûŽ¿CîC·ï7w¸s~"Éú6^-D}ì;w öîi³!)Ñ \š 7K à~'êE~>ñD;¹¾Ë³«÷ÅD7Œ–@aAAtPÛ¶(·“Ð6ÈZGe–è@8½íøL‹4Z­ôR‘ècÓó•3Z‹‰0¼ºaÙñŠ%i™èŒCVÒﮘ$Ã~TõO,Ùc¨UuYèþl5”2ÛŽü¼ƒÙ9N³ùX$=ÎMl—}O \&$M+ÓY޳d˜;‡Ãë1¶Ë³_r~N³ù]·ô™ÓÆÅ—»œ~ O`Ö Á©©œjð è«G0õPH8Lê26#¨bHsöuX9[§T|tK,{¬3áÃ#cˆŸC¤hØzì!„à;«Üh†ƒê˜&òV½~—ë¢wÊ>Èî€:ÆÖkí· _ÞU{î~9.Ž—’¶’h( Çt÷½#QX=wòfOÈMÒôôlÑÆ<ñçRáÔf±œkLëœé¶ˆèOþ3Hõq™—[^ß“¡ŒùǼüÂv”¾ Zãvú‡±«Ìxf`û÷w·NòôFÇ»;ŒlÒ©|3X59:u4¨¶°›bKAHÛ¼!Œ•ç‹ýæMMniDñ–{c¨ÈÈ@žR„¯¡8ð­:ÒÙîüÃKˆ\«GQ $;²-Ø C^?¸l¦öBh.Fs‡+±Ìí~­PÄ_JùBnó{³nöë–FÑîImë;Ž ëžó`Û¬†à9žœ–â}ÖW|ª[£¤¢$©Çt7e_´X„”ª”|cfoˆ.Ájt¶X-¨²‹x—Ϊî%—è?qGÅp‹§J(K™ M€ó£“¶ €]bî…ÍÕ] D… ¼[EJÿžZc÷rÈìÆ‘²Vû2oLšŰäŽÙ¢™vŸ5hÏÓ;Ù†íœÃïÎ8æÊÎ(Ý:ЮoTºíÅS|0iiOÞÛ3‘7˜íÍù)ÜÐ)vZWPÔæJúÌ›8\ rŠŽ9;H ÇO>ÃIÇùõíhÞ-ë-¦"Ð’†—ÉH/ÊÊu—üÅ3Ít™Ùæ“]¨kª‘Ôj¹$F+M¬ñ†Ì–Þ†ïyÞIGPèlË»ŒÏæùĪÒ• íœ=Yë*Î/w§—C¤}ð¶4ØVR@êì°Ú¼ 9b¼ëöüД}R»(v㘨.9RíÅ–÷È-ƒV¿Æ£tyá?Qtõ?SÏ)e" V»‰…Qç4m=:sÅI—KŸƒÁâVæçZÞÐ}n2>#ç¹\-XÔb4—+!‘”ø––› ©I‡oøµ¬`±É3¬¯Í¶½Þ²vW#þ\Bs+jà¦Åþœ¨‹ß>’F2ì 3ê’„|_ ,Žg¥öê*.‚‡íïKæÝ$¸j‚§¬ h×Åmåb„«N¬Þ5AŸh‘I.±`ëŽDØ>ßì®ÍØê+èos»,<ÄcÕZhÇ\®Åw!äºoÈ\ÇèÊÙ]{(Ñ)&Z ù¸žõï[$œjæÈ¸Ðp{‹@{ú-›øã°Æ|X9ñ.c0 Gæ‚R:ó˜?8²íßÁ`éÚ Â¡ñ-…ÒPy”n\Ÿû:¹~ÉÙên{P¹˜|¯ ›é®x#»òl Ø e]É%L;|;Æøð9X†RSV„8m¾R,yÁ³°Ï–ØZƒï—¹qêñ²t—°jºDÛKÓëWýaã[“(U˜ÑiÙÿ:Í èÓ5ب—%~­VrXIßž©K°iVp®eÂóRý†Ã´sRŽ}œ?m›(4ˆÂþÖ*æFQù˜Zjèš×µÙ)C­i¸g$ jô¶Xù‰ãÙÙpÊ·Åp%Ílˆ³í{yÖâ2SwBLد!î´Ÿ¬‰è&òÊ?—XS±§òƒléy7ÇGœèßT6Z3X¢Ã|¦LÕÕ"ä»q·È(ðâ#ð¤¹9‚Ÿ={‚‘ÄH€2¬Òñc¸kÊå»·4Y"|¾€t=ò©Qz³`½5ÒP ×¾tNÁ Ô£@OEGKwDy[8öàùȦ•g Ú i§s9çD‡¬çíÍߌÍÜp0­ì ÊÎÂ{Hû¶R€®ù¾˜)èë0p>I"ÿ€OYG+Ú#{\˜[IìnJx¨¤#Ç~|Ø|ŒÉ>üލàp¦¤8Ý3%ô d {²ÄGŒ̳zÓÎóšÛ7Q îp›Æ°ía„è&ÿ•MqøßÆZˆg¶œM@šàåõ‹(ØDï“Dd<ôR ~ém®}-D=†È«ÂY0ßOIª}5ÙÎw„ƒôQ‹÷’B• á½s7Ž@‰­ufÃ:ªtÙk µÄÛq G}㌯¹| 'ƒáb:y’MäûÂJç -EfÜ“>MìTÀz¬Çîó_î’kQ ›&×úÒû"y®ÔÊ¿wAWf se"à%ælÇ Yú𔺞͠R< † ÿÙÔ…e£Õ ¿›IX.¢ÊKµWðpÄHÖ"J­ŸÁõÚéN>7O‰yš­×ÄîÆ=šÚž à ž£E /TaVŸ±@Èèð>|Cuv}‰i#ê9ÞŠU[ìîýÁF~¿¿Y$» j_§rtë'y­9ʪ»¹I¿ ,bZ¶|mD™ç±%ÏR£%Îkh¥CŒdA£Þº¦ áâxc*ùkÕû‡o½Œåƒ”½40¸üLÎýÁ_î¯Ï:Ja.å‰WŠ”. ñÌìºpÄãgû$9P%ñM³3VóG®Úâà*>ÉÀp5`xì¹g¢¯>»× ÜâNÈ^&ÇŽ(Ìjš2e.‰yf´í)µƒ“§°®ìÀÓqš\Ú¬U§^Ùt4˜„` O„),'7¿nŒ9ÖzU3/Ô9i¬Éw|H T‘š”,Ž=]L‚AàÇóÞX¨Ô ´|Ôé©[ðwÄXØßÃß~Y„– Ù¶’d—Aìoó3î„A ‘nÚù3½ uU;ÝP n˜bõÅɃÀìæÏm;¦«…d¤=®oøã44ÿ´¯Æ ñqIð!DXW'Á@ldX ­Í¥üñÐç=>]/'ÜôäÂ4¶ Úk’ACOó}è°…5qµh LO¹7ÇLë.'-[n¸£¥Ðãd£Å0`x‚LÂQ>}HìIôhë\à·¶f·&êÕùÄoĈ<Ë"+µ½[)VÍæ@Ù@k±,TcÓ-=ÿ1æöÜ[?‡ÄûæAéK4Òg,Ësýÿ§goÈâCî/¢J’Îüx zšª¿:‡¦ͽ¾Ë^æä{ìôä…©wì18:û<†»N$AÈíŠòŽ7æñãµ@PRŽ­± Ry”Þè*(/]ZÓ“î´Ó 7 ÈBÆÇíR5ꊡaK'Z+‡5ºw¿·’ì?iÀojÀi$NªÎÞ@ÐåßeºÊjåŸìRÞ‘13—öÙU\"t­…Ñø5ìUd´šP]>XXš•Lê–ýËu¾·Eá“ËñkWóõˆì÷?Ê÷˜"ûÒxT«8ÝÌ·fÄšÉwuãWR9™Òº‘¤»Ì>M‹FZû÷H?ñü¢·6äŸoýÅO†ίóG„D]a(¦NÑ?~öqç¿ò$ÔQ–6Æ5Ø„‡è½Àø.ž¤Ñ+F‚@>U.Ö|: 4ñ< œç AÄT~› *6ËY~?SY¾·÷G—3Þ5±õƒÒ ñ&óç‹üdÆž¼;rîA¥!.ÒÓ5Näëö1{<“—¶a¹Æ{ ãmQîØZ1ÂýÆ´©Õ3ÚŸ–xÍCùbEí#i0eÿf6léolÇý×NoÀ6^%ލ<¡ìA´$Uz¶_Mƒ ðxZÙ’\@»ÁQ€oŠÈáþgï!S¸Ç뼤B‡{”}¶œT–‘ßV{ÆÐ‹T‘—êÁv~xˆQÿYïÔÊ}®Bɹ*Š#”¢F×W¾_Ï&wÑ /³|_¼5VÖ«e4æçˆk„«¦ºv^„1'5â!,Ýšv€„¦ŽÄ^ÞÎÙ±ùkñ6˜hdÈ(^î —F¡æs¡&DUQUx{±ßȽ<™Îz˲*Ýé2Êx¦ÒmíÂRì3 Ö{tPŒ¤"×”£JæðóÚö!&tàŸÊOǧ.»9_ýÆÝL¶½º',8Ú°Yn¢b#Ñ–1Üd©l®d7èÕ@é ‹;³ÐjÃìõ†j`a ¤jºsò;z;î…Ë|8¼‹B.dÛ"4 Åöû¤ø×eŽhHºÖ;O=”Üu"âM|Þ sG¦œU¬¨…&€+SE¾Ûìogê%¾pïœûÖwᬘÂÐ\Ãx» øŒ­×·¿«#™jBP¢Né§9†©‘”ôàéØËÃ×–—îñ”ÂÎâx2=ºæí¢ƒršË0åg°,¨þù›û»‡Ôè²”ÑÞNÐ+)àv­Œš*Íbit ¾J„•ù¦jvur¾øqwSž _-u-%hÃŽ±¦0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 cleartomark endstream endobj 795 0 obj 7366 endobj 796 0 obj 1218 endobj 797 0 obj 5616 endobj 798 0 obj 532 endobj 799 0 obj /RKCUFM+CMR7 endobj 800 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 /FontName 799 0 R /ItalicAngle 0 /StemV 79 /XHeight 431 /FontBBox [ -27 -250 1122 750 ] /Flags 4 /CharSet (/fi/parenleft/parenright/plus/hyphen/one/two/five/C/E/F/I/M/N/P/Q/R/T/a/b/c/d/e/i/l/n/o/r/s/t/u) /FontFile 794 0 R >> endobj 10 0 obj << /Type /Font /Subtype /Type1 /FirstChar 0 /LastChar 127 /Widths 801 0 R /BaseFont 807 0 R /FontDescriptor 808 0 R >> endobj 801 0 obj [ 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 ] endobj 802 0 obj << /Length 803 0 R /Length1 804 0 R /Length2 805 0 R /Length3 806 0 R >> stream %!PS-AdobeFont-1.1: CMTT10 1.00B %%CreationDate: 1992 Apr 26 10:42:42 % Copyright (C) 1997 American Mathematical Society. All Rights Reserved. 11 dict begin /FontInfo 7 dict dup begin /version (1.00B) readonly def /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def /FullName (CMTT10) readonly def /FamilyName (Computer Modern) readonly def /Weight (Medium) readonly def /ItalicAngle 0 def /isFixedPitch true def end readonly def /FontName /QUYEJE+CMTT10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for dup 32 /visiblespace put dup 48 /zero put dup 49 /one put dup 50 /two put dup 52 /four put dup 54 /six put dup 55 /seven put dup 65 /A put dup 69 /E put dup 70 /F put dup 73 /I put dup 78 /N put dup 80 /P put dup 81 /Q put dup 82 /R put dup 84 /T put dup 97 /a put dup 98 /b put dup 101 /e put dup 115 /s put readonly def /FontBBox{-4 -235 731 800}readonly def /UniqueID 5000832 def currentdict end currentfile eexec ÙÖoc;„j—¶†©~E£Ðª*Bg·N³ÀÓ½ ƒØ‘l¦ÊKq*Þ²Xú«šææwüsм|QÍFïq˜Õþæv`æšz¹XòšMyåp"÷ƒë»¶Ôôì5OÒÞË©”Y¤ÅðÆë¡P(DTçÜ!Á[v´Á›„67XFšlU‡…²&3!R˜q©ˆ4‡Ýw”’Ýσ~j‡¸+Ûño¼uú£ “þ_ùc‹‚2BžØ·Ïj=‡š-8Ý\DgùÝŒ] ³¦¿/%b›®Á™®‹ÔºnÙ»÷Ú¿ÐáSº±ÁyÔüâ b*ÍçÇL(Ð9sWí«F Rë:E·¬Mks­ƒH…02§Eô”?›Oíe+ƒZ¤—'¨´zÿK΃µ¶…–оi‚·f Ë<àÂ,¬ÝE“òDÁNìZ|JÄ#’ø¼BWþ¯3ô¿ê‘ÿÏ—MÖìp¢ÄÁäó(¡ë%ä5%ûÀ~(Ì5öBk}Aêj „Ýc'S•¥ªéáÈ-8ŸÑ*!èi™yž$©”G.¡®w g ¾ ªÒJ0Ùn¥r û;Òà¬Á¡ Kèr^×ã©o™x¼7p4Ù= C‘åyÃOùü#yËŸ[¾©â4éê¨9'nÀÙ*¹xÁxÛ/J}û¥oÖ¯†pë6OÞÊû¯e}hà1‘W6Ϋª‹¥À¬%(ƒi]I½‰«ïèiš ãí…´ŠË""žb3™É=çÙ5sJÚÚzbÁÔJÕ>£[Wåеü H ä2"ÛŽüÕÓùº0O¨y9.à¼Àá¦t³¡ü:=×$E€Çª Æ]t¥þoŒ¿`% Ì'EK¿—ÊKœƒ¥fr•‡RíK^yá†`vO^†ðžúŸv…òõ~ÈZwR‡³ iÞNMWçÐ3HS¢p+§T,q!s0Ï(عÆ;U–©´+3çÙ"”J8q3ƒÓdŠJñ`£°Èó7›¤7+åkX©Ö»øvšuGga懨ÀOü|?Ja \´âL‚p¢©|–äj¸ ž5ú Õ¬õÎÐò–hE·…ÎRý5’ÙÊ} Ëd˜߀˜Ø?eu6°¾æ¬sÔjDh*ï/Ó"„qJêrƨý«Wxíë #‹˜1™]¾Õ.²kKy;‰¥ö"%oÚ×ÓÜó(UÛY’Oâý![xµÔéíá;å–oÜÿ_*íAˆ*O˵c¬¨TtEîQ ã®&…Ä+KÔŒ PJ>è–»—¦CÔç¬êy–_Ùò–¥¿5žÔXKåÓà" ÉðÛÙè¨0¾Šá,pö–r0Æáý ÇBZo•¼3ë ¿ijŽ>žrÌ:ÅÔ«vÃÔÊö0…ùð¨ÓààIÄ7vç qŸtÀ@©'*ST‡g¶‚“8Eô.ÞZÚQpì׊Pæ%²äxž^òaé&(-X–%¯O¨ÀfµCmT¹sŸCJzª´Zø×¤…4¥k^H… J=o¸áì9vM¹ÓLg'ªÏ!ï¬Txå}á’¥©ô–M ì©F Ä{è'óãçtV ¾2‰A´NX§ªèã8 ÁFÓ]E­˜Ï ’{³æb&‘bfo—_ø%p–T1†Ž}ãÄ*‡ÏêÚ¢ÍUªëO˜4WÍ^êtÔ6U¶:05:aµ³¼ƒ"ª™¢0~Õr¼±n:ï%g@€†A—É e®`Š„OÚ€j’|Y¥€}#xH®ÎŠÍR~@äpaAY¸<î ßZŽ.#0ìȼ. ¿ Dk¸Q6Mç¶ßgDÈ›ƒH¿hr§øtàm”¼l)!|=îÎ~ÜtWPAß¾­âXx›ÔÉ®'é[ÒöY"£fý6S2P)õQ1åÑþÝùDõ¯¬Àl¸œ;†ž;æS¨z úý®$Ì¢!Áª)Q\·Ðdí’ ¤–D}N\½ip, ¼ª×ëÌâ‘:2Ô2N”÷ì^x"¹À6¶§õÏ?à_Oki³¦Ö§@’Ó2|•[¢Î(±ˆ_cô6ºw¨Lé*Üð^ÈÍû,&l»ýì¢!üàÉ+ŽÓÆU+¢.¯>êAZÄœ‚¸öÐXÈËYêÂVχ®ª% ðCšNí+´7an;H#¤áe2{f3zúU§IÝÁ9ØãxaÆ]X¥7ôW^¤^Ú.Øüø=Å…SÏ¡ p†Ý¬@ºÀAýäØÎµr$4í±ƒäq^š®§Ò‚’òfÞŒö¸‘]¾ÌøòZ^¨óX˹}ðù‹ãh¹©rÐÔl%ŽHb–÷% ð¢½n¨þ#hæ«odÙ®ñ:D[NÁ¶M)ðC”àXäþRæƒãŸëÆ8ô“1#©qÒ›³RéüÉų|µ°µ"ä$Æq[›²xoÇê©î½j-Œàî)B½zÚž-#Äìt£Âs0®b„0Ää¶ѼèÎÔ‘€=÷§N$cåšF<èZ«DrºùÇw¶û ˜ø·×êÔZŒ|•¶^ª£¡“œ&b­^gˆdÚ¥ešÿUô.8Z_%]pÄo„C]"þŠIj·Í *Úø®' =¤Ó4TX Á¾½YQòºÄÞÖéžÙÈò.0eë¹µ:Pª9+¯dðÍåÿݤê¯!´@¸Ër Á$1gYcQeÐ,“Î.-°´·¹ûZÇ5Í“jdº,ÿ Í'ª©ÿQ†¼Li»µƒ5s¸ÙQ¤ƒxh˜`€Ãº÷ßb&‹´©lÜŽÖÔ`lGó (¸¿ç! Á¬dcn#œzc°òÊx¿a,bžQ’óØÝM“dšøù…"!s…*ë]‚Ñ•²ä#!×ïwä`8ÓÈïi-:›Œâho˜ÑÀŸSâ(šà[ã Äûñœ»ZƒgÕp;ÉQ>qzµÿ¢š|ÉhZZž´šâXqÖÊaŸ„yj³ð~á„r æN± ÂÎB2@WqIU|ˆëÍaÉgHæ¥JçŵÈ569ÙûÛ"îÓßÄÜsßnjÀÎH°WÕ‡­1Ÿ°èc‚½}€{÷áq–©WÄs•’| £qÚÊ(?ýÇÇ1Öäá;ÑW’Æ!‹,óâÆ²}´ LøA_Âlú—“ΠôäuÐÌÐÏ0c»í_– HüðxW]*51'k‘N¾ üõË­¡«@0 •p ZÃS?¯Jé…3ŸˆÄ(­™ÎÔUf=[ȸ v2fÔIà ŠùIñ Ÿ*O— ϯò±3Ñ#×´±Wî`¶Ó%š Þ?а†<íͲ€v¸é測Á“™•\´0µ‘`ÕD·ip}D¸17æ¸x.RÅÙËF;ã³Tß-Ù#ß,G4³ÐÅ ¹èË=ŠÓál?ý/ˆ/3”Øw*a÷LÉ䄨ªßÅñ^'?Ù–}WyTxÇ´Çu{±Šaþ74·³œQšò⸡¢õ„èóYGÂð[æI#„uscRÕ‰»¡‡‹\"ß} òN2®8†¥ù #wÖNf¥¼0Yl­—jE ÆM!5å3c¼ªÆiK R ç]ÞšEì´"/ò˜ aÔ)š™G^Öúô£ô!º'ö"(Yýy"»£Îâ!qEßìÇíËVbü¯Ë ÷¥¥²WLÒ¥À*Õ«¬‰Í¶icÚÜ‘ö*Äþe@ß’å§ÅÕŠ‹€ œ<æÂ´2aGqµ—2S@M½–‰$fUúS®{ºûѬ„® Ai3Ñ+Y*bÃ,²¿³o|iÍÞ½Ï pè,ZT án: ¢ÒÛ/Mš3ôXB}OMšËÃèKäÀ3RŒoÙxϳï5KÄÈH1 þ´+)¶þ· Ø÷ 7 Ú{a l[f“H&w¿î¬ RüŒ“ YB_u劬A~„dLVV‰“é,Ì~%–‹2„6IXêoa¡Éç9\*pDDó@×#¾Ûê ¨”¯)Á’ïV}å ­ž—cˆ:jþÇN.c6"âŠ⟌8눘£&|vñk1Z#ÜČǛn ª=¶™‹©®¶-{W Šˆù*Ç_FIr Åäp²K®‡ÂãJø Ö£0:ê¼ quô€ÒB9uÿÌYì“•<ÓïKXÈÔ4sGV nýÌJÎõM{FðR.øÜô9\µIsÓƒï*ðà(¼!ƒ»5itKŠ­ ¦ÅMœthŠÏýÜæc6Žäa×ô™$ñ6Å21Ä»3ÙAÜ2ëêå Ä„ÙL6Èê¨yÉ^3h¥zŒõ¹8/4LˆQŽr)„vÌãf{¶>ÔPí&N”ÔùWÂûÁ×Ç—3Ön®Þâ¢ÿ-­•»8øÒë»Á>A¦ ¨¿Í®ªarÛÿ¥í*Èh[~_€KDŠ‹ÏòPæ¼ æ0ÂÕöðLòàþ wÐq„kDÚ^{Ø4<.v´©nƒz,ÞÍ–•´–P ±MÆ2‰@ë—_ÎL¨ÃD{cÑT+-¯Šz”¾¨´øê†—Ò»Š@\1ûÑþtt³>8Ä?hù€TþöóaJàä©wMÇZ=ï`™ª²bxgØ@xC)ç”%€»71|;Tä¹Òß´ëEdªý Oñ ²¨?…éÑ©J0xõ\šIùÿC,U/Ÿ·MÏxÑ·À 'OÄÌ–Ú9N»½‚’VêÁä´ ñ{–°ÿ̯CžD ÛµSýo8¾¡bêz–PV‘Û6æWªµ™îùôÂ#DZͨÖ÷a¦ªý¿Æ¤æÌMÙÃ@G±:Ï.‰Œ:1öÏëUü¶4/Ï–9ªÁæƒéQgn—¥*X½>5-”Ob½·µB€óëçn ç hó즊dƒ)iÙLóŸ2müŒBdV;µöˆJà"£èåÑσø«œ²î== ( ³WÿE9ü~OqHæ&Õzh€hz6*‡t€Úq9$Öà¸'{–Ñd_ dA¤hþeT7ò:¥Ÿl…3GSs„;ί dÓŸÜ2Õ ºˆ­Úå¶ËEßš§W“r&6Є¯óI“šîW/Eü¹?NM\‘î)A¦ì’{ŠŸÓëxiךŸ ®“ÝtéTLú úÐÜ`ç{›˜rŠéQÿ¸©±L†äÎN9‚îÜûØáºhp=b»- SªH”68•n×:ÏCh&€hö—î¬"`Žù“<±ì5jOþBr0i O´?INÚšæÛáí±q $é ú¼©œ@C"ŸÍ‰ÀvŽNuLJ²³n?ÙÐ š>^({ÖçmZ*IÈÓ©µJÑ“`º»ì&)aHôçYgQâ ‘•´¾ì°>#P´çÒVÆo@y3—ú>Žžl¹,›Y“Ö·“;ƒ<ò \˜‹¼‡Æ X` ¢è+‰m=Ž™š—¹"IƒÌ|É/}-Z¬ŠPçÃ×f6‹ÿ­µöÙýfÌC=iZ>:Ê _Tã¥râ§¡~.Ëã5Ý[PÏÙB„;,£1f5šµrÚÇ[ÝàWoáùÝ`D$ó‹ PðFñ«,4s9Aõ[J ‡ TJ  p›2¶…*ºt© ƒ{LnÀ=ýç½ W¾ïmIp¹C£ ¾–*¶ômáé20000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 cleartomark endstream endobj 803 0 obj 6414 endobj 804 0 obj 1057 endobj 805 0 obj 4825 endobj 806 0 obj 532 endobj 807 0 obj /QUYEJE+CMTT10 endobj 808 0 obj << /Ascent 611 /CapHeight 611 /Descent -222 /FontName 807 0 R /ItalicAngle 0 /StemV 69 /XHeight 431 /FontBBox [ -4 -235 731 800 ] /Flags 4 /CharSet (/visiblespace/zero/one/two/four/six/seven/A/E/F/I/N/P/Q/R/T/a/b/e/s) /FontFile 802 0 R >> endobj 9 0 obj << /Type /Font /Subtype /Type1 /FirstChar 0 /LastChar 127 /Widths 809 0 R /BaseFont 815 0 R /FontDescriptor 816 0 R >> endobj 809 0 obj [ 692 958 894 806 767 900 831 894 831 894 831 671 639 639 958 958 319 351 575 575 575 575 575 869 511 597 831 894 575 1042 1169 894 319 350 603 958 575 958 894 319 447 447 575 894 319 383 319 575 575 575 575 575 575 575 575 575 575 575 319 319 350 894 543 543 894 869 818 831 882 756 724 904 900 436 594 901 692 1092 900 864 786 864 862 639 800 885 869 1189 869 869 703 319 603 319 575 319 319 559 639 511 639 527 351 575 639 319 351 607 319 958 639 575 639 607 474 454 447 639 607 831 607 607 511 575 1150 575 575 575 ] endobj 810 0 obj << /Length 811 0 R /Length1 812 0 R /Length2 813 0 R /Length3 814 0 R >> stream %!PS-AdobeFont-1.1: CMBX10 1.00B %%CreationDate: 1992 Feb 19 19:54:06 % Copyright (C) 1997 American Mathematical Society. All Rights Reserved. 11 dict begin /FontInfo 7 dict dup begin /version (1.00B) readonly def /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def /FullName (CMBX10) readonly def /FamilyName (Computer Modern) readonly def /Weight (Bold) readonly def /ItalicAngle 0 def /isFixedPitch false def end readonly def /FontName /BMELQF+CMBX10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for dup 12 /fi put dup 35 /numbersign put dup 46 /period put dup 48 /zero put dup 49 /one put dup 50 /two put dup 51 /three put dup 52 /four put dup 53 /five put dup 54 /six put dup 55 /seven put dup 56 /eight put dup 57 /nine put dup 67 /C put dup 68 /D put dup 69 /E put dup 70 /F put dup 73 /I put dup 76 /L put dup 77 /M put dup 80 /P put dup 85 /U put dup 97 /a put dup 98 /b put dup 99 /c put dup 100 /d put dup 101 /e put dup 102 /f put dup 103 /g put dup 104 /h put dup 105 /i put dup 107 /k put dup 108 /l put dup 109 /m put dup 110 /n put dup 111 /o put dup 112 /p put dup 114 /r put dup 115 /s put dup 116 /t put dup 117 /u put dup 118 /v put dup 119 /w put dup 120 /x put dup 121 /y put readonly def /FontBBox{-301 -250 1164 946}readonly def /UniqueID 5000768 def currentdict end currentfile eexec ÙÖoc;„j—¶†©~E£Ðª*Bg·N³ÀÓ½ ƒØ‘l¦ÊKq*Þ²Xú«šææwüsм|QÍFïq˜Õþæv`æšz¹XòšMyåp"÷ƒë»¶Ôôì5OÒÞË©”Y¤ÅðÆë¡P(DTçÜ!Á[v´Á›„67XFšlU‡…²&3!R˜q©ˆ4‡Ýw”’Ýσ~j‡¸+Ûño¼uú£ “þ_ùc‹‹sˆ×t Úí?‚}¹ß´7-95†ãžç¬Ÿ¶©µÎM/®ÀåZà+üFCxw¹ö\#㺴úãDÝÉ«<ËÀa‚Ø=ÇVùÕ¾þË-°ã™—òdÔ½oe¥~”ÉÈ„š²é Ï£¬Í‘ÿRJ­rb±QźдÍUÒãiöè6È,YáåÇ?Þ?£ÊÒrÆ|l¿C¶oä¸g}¯î¡’ˆBþ±ôªhz­mÛä2qNyœúIØ¡¡(ó.‹($¼€AñæNÎ@SÄŸ ìišu¸'.Ÿ•‚m³öC3…€Ž3Љ –!vÏf¦.:ïm‘ÈŒ‡Þ°<æÌßO¶Q™†Ñt ñ!w=hwß…ß²i£Àz¦f½óÅ=¢1‹¡† ³N(ºÆè-ÛCå :Éß’w .BÀ÷½ÆÙ béw0$[ŽŽ‰¹"P˜œU£~NY®*ž6¶4Ÿ¢À›±õôC>NïÇ^?˜0ë^~o¾&f¬Z9Œ-ò(*ÏŸÊVV9 ƒ|J™ì7@ØsÏï.$‹DÊF“§‚YMÐi+M¿ÄÍ즒ÄDý¾÷¼SW[ò'1ç÷qy4­qZÃ;]6y·„É@FæÍ< ØÑöV&±N3ÏÚn²‚]ÄDúb a[Àsÿ½üÊKõ kÔƒý†9ùèÐ$[F=e ñ,&Ȩî)uv–Ãñ1DØêVIj­a©Iç#«µ…™“ò 5Ík~ ­…QÎäa’MÃjFJ¡±L3úû†.0ÆlÅVemÙ;Œ Ynžâ±ª´y÷ú£Ry­´h¦$¾&Õ'¿õíàgYŽ‹x¤¼û Qi-°¾»“ o —´7âŇka¥c¢g92ÂX3ú£]²*Þ#5ÓkîÉÕ°àÌQa?a°¸»éYÇtVSQj)ng„Èùàk‰(Fº3㊮FÕÝH~Q¸G Zxš8=÷9IB“rü•Ó{ÄÝ_áëYEMnŸ*ܧ}“ëÀKyWÀü3ÎK)U£Nº—ûÞ©ã>“[½GR"øõ‹¥÷õaç¬1®bÚ;:ÔjŒ®Ì3g¢©Šß²¥g¢Ò€¨7†s•áêÒ…÷RМÇhU§©ËS‰©h7ù~£ä¨d¬šú¶—UQ[ã²#ÛOMâýü/»Ü‚U%ÄáóL«qbË ±µëÊ”°†Ÿ´”GG>ÖÊhmÁï¢ÜC–19ãÛ ‰Y­LcªìwI+FŸ‹²† î)sí#‡¡æ2¤òTPˆ– Ž"L#ý¨á$²æ‹ôÓÿWbÒá8¶´y¦$; 7í*XÊL,q¦—è±]8 "Q¸SIJö†œb •û“yþÔ¶Åÿ!Õ k8 PÔáD—Œ³Ýµ%ÕC¢;è8_nPÃzŠ|èä%¨úüéb³7µŒK#–ál2†GAj:¢‚c"¢Q©êÓ9ÝØacI{¼¾kû¯‘~º®ï]ÖTÚà@«˜s»d~ØæåkI½Eÿu´Aˆ‰œŽy™)ä[:ß6tÞ]Æ?’„öXõÛ3«T û‡)*üÆš¤Ù¥÷dõ8e,'$ÙeT7OŒTl+‡º'#ß3ÕY4ö„•ž_45ÿï§…ߤQƒ6)AÍÕXÛLM²›3”´*1A°xOIEØb&e9¸ýÐ|ÅÌå ×Csãùíç§÷@ÀÂJ;¬s„.m¨PñüQDbÃ-6x~[`VãV`*Ú*²¯–¬ âõJ’ýI¤®¦ÝS"ïŸ%Ê<ùu“ž%vϼ¢Ç˜O<ºÀÅ8½’a·(µO–¼àH`ó˜K¹}ÀSW÷U±âuTTàÄ‘Àid³‘YCm™Œ€úÙ¢eøL¥ÓFÆ ³›Ñù€Wk&#¨,“¾µ]z‚°ôÀ#tÙ=«‘÷q¤>{.sL·F[[”é¥hQ8Á …kíÁnñ«‘b·ã±åˆT*pŒ ùKGQlÓ‹w±ÑÓ &Š[Äœ‹$•kçwjÜÖßÍðÝ‹TÊXT1’½¿1¿€(ŒuÜ¡uõ\yøöþ¨“å¿áÚ[¹^_Š#W•€ ¨ïô–HûuÍðrF(÷!p%Þ³‹9%{ þus©†?ŒD¯ë~HØi$sJ2UË[Ø^‡\´óÁÔ¬¸g]€)ÐÝê~-Ç ¿ª¿ãHBh5>¶¬Ù‡P®y@SB­Ìðì€a®ó{2gW)’X1º“ŠAcР¢0Ñ ?ϸöðAÞ&Ã,9GZïšG(z™Ô‘1{ *&«šôoÚOFàþkØÿ?*oÊnJ?TŠ»3³{œêt«nq)TÔbÑb¶zŽnàÛ Ê·6ší*Š`áï8Þ»}4_Þ…¾4­‹»8êÂmðHïÐëF-¡+J¶ Œ«¬Ë'bßÀ]¬øŽ@J¡à!à´™ëLsy­°Œp’s: E!f#…(#‚ûw²…N¹iÔºBWÌü1¢û9º3ª à(gAcü½ pjqåÂÅcÝ&Ët(U¥ÝË‚ÿ&³ªI0ǽGU{/ŠÂäÎó?hx>M` (æ¬/ ·|#³ä}S¼í˜©íÖå`ÕUpÍÆ (E0,e eŠù|Xî`f•YÔ¢|;= þŽcµ `û f.Ô…žFÏ¥„O8'ï3§áüU <ŠD Ÿ¿Uràp¹ÇÜ”LÐHùÐd}¡²÷Òò¿{¿®{g¡mÀëô),ÈîK}á±6TŒweÏ  @zql·z›1œ8»[¼å]õÓ”}R^ÔÛñbÜU·¼Œ 'Àà ‹n_®ö& ¹ ü©…ÎõulÙ4¬¯9 2þƒW±‹µ!´BÅ|ý¡¿Ø¦îi§f°Kb}G¾Mêí 4æ§ ü´’”e>y“ŸŽN¨ðu!áZîÜ*®m8[­‚`‚ŸŠcdÖ/ü 6çYÙÍŽ(F[økrU´ö‹nÆÒ‹G†ûÂJ@KŠš‘Nø„ŽÖeû>(ÆÓtxÜC†ƒÎR¨EÛ×›Ê%L;å÷mÞÇUˆQ.Þ¦8Nð¡Vô³ K²Ë îÞæaœ_7…Ê„+2H¹KÕeŽé?çÔèü §çç{À9 ?Êp’î[Ž"|†€2oÊàUÓ—‚Ãmk‰JÏèzŒ–k¼Û˜©¡+DÎy­—3²Áø–¸µÉ¦¢ÖªûÛ¤œm0ÇQ/¥xRs#v†÷£²Ú\ÖÆQá1|°›‘¸]=.p}pS¦Iø^¨ãô;"‰U€¿|!{pßÓ xÆØ¦³rW¸A0†$„Á‡wݘoùû}ú6žLïññA1?V7M |<Ïr”Ç‚ugÒ2 ¤³lɋʒÄϨó½xñCßéÅøMÓ;D•¤MÄåR@ìd’Yï¹³æ|A;lôø‚–ëïßx&#¯qü M…¯aç(T¶Ï ¿H€òv!„"W|*ž£Õ£‘oZò5΢µÀu0AÀøþá'"M=£Èˆœ±žàÜJ°šÛ!U%–Ã~&ʦqeFQöZ~yapÒüþ:¬u…½]¸¡°Mpâì.†{Sÿý=­“Ûÿ„Áª¾‹-û÷›³8×h¯·yèz“¼[ý%c/ϲ!Ô¤–ñ—A×8d(w„ A`öbÔ´`Ñt¥ åløÊø;~‚£¬@½]Š£)ìRÖö°'äëR¤EÛ ‰Ù€3>Ń9´Žz‚®º¦öÖgb¶1£ÁºÎZoöÖÖÖ ¾æ]^=_Þ„’*6æ%²ö‡­“ ¶Æô—Wœ‘ÔÆÐïÉuÇÙtùÅê-þëÖe‘ê“JËíüÜÏFcEØå}9!+‡„‹i„/™£É?%ÜÊérÀÕïMt+­°Q-2Þ|Ö yStvmŒ–ò¬Ýý¿ ¯†ðÃß=?Ýþê÷T‚ŽëBO…t»¡_ø—~¤!ܘvŸ)[gKƒù¬{6Ý‘w÷ßchÑMF¾  º‹'Á2W5á„1ufæjÒ)½˜zä¥'¤œ4ÍHSl,WÎòÔœ1| $_5a¤S{ŠÊâÁƒn{èFÞÖ´™_Y_é#¶pçðXöÀ¡ðÊŽTØ3"nõÄ_T ÚÉâàðUÖ(Þ@wÚw4Õ'³ø;ak",9jRÄwù=+Iâ¥zæèïìN<©æó8Z÷¿¢?Ò4ž6t<ÊS-Nìž@S–CÔ$@[Zû¨ŒÚwòdE$¾ØÜøÓâCf ¢ûxÉœƒl¡%/ý©8Ã?Å÷§V¿ó¨Hdjû§aWÚó9 Òn&J× D’³Ía<°Bba–œ›²~§¡ Áü ’¶t:Ë ÈŸç}Eã.hŽƒ· Ú84âT®45m³P>øÙruvd×KYìŸ,8vgTVºû_ñ'{ˆ…èòH]¥”ö ëRHê(¾ïó›5¡[„P„GÞþugCô6Ñ6£SãT»¯Ä¾oñÖ”î¨ãÜ—õŽr{jdónPQXkbñ?R¡ÓfJˆ(¬oVÞË¢Ÿ  ÜRà]Y'€ÌSÛ¿5jÊÐÉ~Ô4õ€¿‘ qòýhy|:þË/Û V—Gê1c_é/Rñ§>"ùTÓü#‡Š‚ÑùëøØ\¯ýþ/a€}SZëR½áÛ¥T·9Zéøã³h i[Ö/Õʆ‰4´j8Íñ9a ¯·~C·ä¸Bެ‘å«Ú›G ¡Ð™nF'š’þþàŒše£#Së_t½uÒ(¤íØ:ù°Á5[‚I± zZžŒ²'èÎKm˜N&ØÆÈu:˜t2µ˜¥éfÖóްßè1³4ˆ…,%{Ê9GuÚÛ3,zî¼ÀÛFÉ^^þäˆæ~{Ïåq#Ruùª#îm=µ²q$“½¾(å% èw'@Œ£ÎSº„à ç5UÕúh:N¨M¢DA³7}É ›8|¸(Çí±ØmmY=›=W¥ë÷¾^s{ÊãȽµ’Œ3R5*bâÿè’Ò0ßå8ß16¥oxé±w¦uOÞ_¿ÏƒQ!s ZW! ‘¼©bj{ ™…*¶m@}¼WËÙ¼盋G‹pŸrq×11ÛŸésì‹#i$½z}‘s&é¾f [Ùf2“P²uQvÝØiÏ÷’@u½“d]VÁÚ½K…Z€ƒü`~#ßàà¿#«J¾yÂ`ØWXDïBgtÝš|‘(OLùc–9¡øëN‹) ™·˜ig=Gå ˆ‚Å?$¡Aq”«é^n/MGÎä(”Dæ]7r¼QìäT›hÉ_ˆò´éfÜþM.{¯k¦r4øhP%Ó&q´; #.beÕ6É‚ˆzÞ)ðǦWû/(6/±&¯Šòè¾\ 1F¦›„ø1¬/mXÚL’ ÜÝ'sFº w! $l·ouŒb»¢æ?½Ë};ÛÊ>“x©í‡ïñPk8;åQJñ­»\•ƒ¤¡Ê[ûaÃØöõ±h6ˆú©úˆÈ‹ox$€Àn•›óG¿Jý ‡Oéq“5½ž°\Óº²nEâË·¯z‰ë°ml-.`ÁÏE:`²—BÌäÚI5êÛ½\Z‘ø‹q³vß6ç>BõLhõq ª¶uFæœ-zl?¸»äÑZTE•€ƒBˆ2ÝA/Ú_Æ]ò¢ü¨î(‘K‹[rA;¬ÉÀnM‰ÍdÈ͸@ \·S=½AEêÜè8¼awü¯p Ü·ûxoä²rp†Nìê¯n¯6êg´Ëð7޽•îñßV¹}÷íð45Rˆ©›>DùP¼2Õ ›ÓVÝ©µ> ø´9æ–¼K¦TíÐ'²ÄNYmLÆ!êÖe¼tšMÓ>¥Õ¢ Ѱ×P ޤUö=».2§ádŸà˜­D`͘¬._«½¥8kž> J®wi ¬bJ ~i r0¨p¸£º9ˆèìLiŽQí&\Q‰³>î]õCr Å=BÍ{]ó” ­6¤§‘p 33® î¥Ôav¹:ÕU|‘ ?ºU®îLdù¬°>úSïBѱ_àÂ$ˆZ±Ó«6Læh!Hª¨¥&%¯,¥OÃN ¡%ÒËïki™¶¾Ù{tt¯"Ž|ˆä£ÀðŠÎkÛêX: -h7Š/M覒¾ÚJuçlpzøëP½½)õ Ê=ò9´è^|ûӢƻ“pXÞ)Ÿ’*I»ßЭ3ý¶PïQ÷>!@jµ,"¥?GèvÄ8[غâ$¢=«[ÊGÎLQ‡ý…Y¾4§ú °LWlܬ4zõÙáÏW‹Û˂⶙KqÛ2†yLa%ú½2ãºXñohòÒ¾î&¤5âëNùìý ¹„^™JaçãP”Ò¡©hyiŒ±DOÒB`µ`k¶S¯|T ‰³ƒ[Är8Î+©j&Ñ#˜‡ÈŒÞK(*þD¤ÍØê:4,Ú¤ô¸ä!ž¦Xd9Š€)ïòg?ž†°µé 92¦nò®oƒ÷wŒÈÿ¸²xùþ¥g, SñŸò’ßtQ›¨=³– R[¶Vuç =g±.šŠ¸s7MNCºRm¤CgeèæL¥9a}åto†Ð:4¦A®NV‚„¥ê&%8ùR“wT†<ö©ZSÛ£©âù¯÷‚î¤Ì—?<Á!Œ'Ú¯¼"Ê£0ø]ô‘qµtõ§ôðÓÙ8Ý8þóûž&uK’áJ©^ì|¸“S“˜n.äTYŸéƒ5“÷ÜÐKé"7³©€&ß8¿£Û:ǺçeÙ .£ùÀ‹'!SéXvAɉµå¨dP†ÔH‹abt‡1§6R²dzébhËñ­D”P øÔVFoù'CÐg ëØmÈRž5ÄeÉYB+ݸŸ­ý8äíCÖŽXÝø;¼9ÒøPL(cR¹n65±Œþ_]´,yÉËßwŸŸŽ´7 î„+È¿í3Ï|ƒžëvÝK®d\ÓÓ°0ý¼)ëÐ鸞‡ï¨µ¾L•bÎí¹øÓ•.Ê„ÀÛâ4°•o ¥q×46´ ä$a|}ÍÂýGŠŠ»@€/ŒÛE~»­–¼ºÊäVâˆüg*C’6í¾pu¾­Ü³h L(1Ý>°FoˆKRþ¸‹àÊ—€f…½´!'Qt‡$­ï˜a¶S¯=4qn6JF9Ç/½Iå|JÈ¢%SOùrÊC®pï—ÖéþR[¥Â‡Ùì}]ÑJÿ;5fœ&$Ç~·ãñpˆv(ÈÝzÄ:„ŽË‘Ïš™XN(Û™G¥’Ò O5ï–óÜ0¹B%Õ×ïMK"™pKqé«Iž$Í• ±ðt±T@r|ÖŽ,/­›-ý–nLÙE!Ñí‘LÌÐöè¢úëTCnüv¶¨õ;7ÒÃgJd›êB¥Z!Òè½Ójo,ƒú¾|*„Ž^¯Œö‹Þ‡Wô%gxQïñ÷ 7„¸µxËÞñôÕÒ^ý°(K.RÚ14£&ßÁM SC>Š‚Ô¾W¸)0 ³ê`†ãÌØ¤@Æ&ïø" oHD—Æ«¤IãlÇ[WM%êS œåLÌ~F£+Mp@Ö¿>³3]$~f‚Íé(ï*œ$þoIÆ<øœð0JѦø®§¯9·fL_°Ì -ÄDEŽN'æˆËæußâj±ÖDÆ ä*€j– úJüz+Òª` {pz¾ô,½mu ´ÏïÔX…H­à ÃR‚‰àÇtްjAÒ¸x'0äÖé «–öÁA‹[“)ßyP2ýÐùéUÿ_©j O°¹YŸ©Cýdníð®>#yR¶Äâ´¯ì_NØÿÐÚnœ8x(î-²·õðøïÿ¯Ïó˜_nk ‘Û³âÜä[|å+t‹c## ¸™¼ ìQ/EàgQ¤‡ÉT‡y±â¹Äá}ac 'rÀ•}œÖ¯]ñ]IÂ}¾oQÑï².ͪ”3˜&W3cÚéñ¹›ïÐÌ-ŠgÅgˆ)¾& b4/ä¹Ì|ŒÅ7Û„ø©¾•‡[™¼…ŸiˇiÓ÷twí^O¥ie”§! ò݇¹—÷ˆÌ™£ž™ ãé«”˜Ï>®æ¤v"î×Ñïšß~sój ’ÍÔ÷j+'bÝfáñq˜\;}¯·ŸS³\×SŸóÇ:_ñX_á+k ÖubD—Ï•¨¨ á¼Ã"ŒJà|%ÒãÁ mÇ1T^µ²É¢¡N¾Ñ| ‚jeã•ÎÿFá BõìÕ2}´>æ^°®hõnDQ4[‚Ö9`šg5ç'/n®n¢w +䙯RxÔ¸Úÿ1IÒ ÝòÕŠÚ[6Câ}ˆÜßÿt’ˆ½ Ê£Ød\›)kôÇ%TŒŽ•À+d¼J¦h63;òt™KÈPÕ18ÏßK‰7c<ÔÕÖèh¶/|$­¶c‰;9˰º¢uÚ)­#Ó¦F¯7÷S œ8GŤÇdû p—;´í@ª;@ß $û‰+tÛô©¡ïSï jdùɦO ‰ãƒn=èw©|èݱjï ÒògÂîÂé Ôz¯¯6eÇÖqŽêú8§HÔOAï ÝÆAKS8nMðeÛ5Å•ª2M .ÊLVÓÌ=Âw2ëe±[D=-¶Ù7|8ÇD=0'F\×M¤*m¬ó {Ü;ûÙu¬sýÄU»°ìÌ?r¡Â²¦–cçî#`¤6òL#ô¬­j ‘œ¿´©5=VA¸šŽUA]œ$ cà2~µ`HÒ›ûQZËÓÐ6ßR ƒ.˜þ #wiBê—y’‹ù;¶JdC`S}Ø¨ÊÆCƵ³ §u#7"òFìEªŸUMÅøXD‰§Æ¯ºÌ=àц\°\rG £e-PK 8hAÕ|9NÄÑ=†`ßOሦSƒírY·ò”{Cæ®§˜¿øq{«½ yÂnR%Ä“P°öÇqˆ9*ö¤9e£ô:= •<÷ò¿ÙIëøÜ{ˆ¨§$ï;ÙUì-,:Þ~Zûµ\ ôÝB0Û\ :§Ù5ÍU×N)‰Û3"5âdS%‹öFï™T0$‰ ,ïÏg¼òQ-xÒÇ×—s¢ß{f§ô;ʈDþOîÚ“¥Å@0=—=H¾Ç‹ùßþ…XÕMˆ#ýÍ.Xu0Ÿ9B¹_¹qm¬nHAeÎäz*V²>o²…KÕ²>#=-û‰½ý„¸8¯fÍö`ˆ²å p˜A¨çX–4•NúïYàÀ¨YP µ-K–~ƒØ1¹Ýê´bAéÂìl0ÀBçÖUñÊÅî6³¨—WÕ‘š¨ÜûIa¦H%Š! š#:¸R¿œü6šk¸…?üßÎøËÆ­nw¯Ÿ¿XEDè®5犂vòÕA"*{dk;ÍnÐRã¡pGus„ ú®¤}tü?YëÛÚD·ýÙOë1ÙƒX×õðˆ¶Ëî_½òÑ–º`^äUI³Òwø W fÖí6+Ø_¹ìÔìÀ ¤ƒ%¸BMµb¶€˜³6gZÜÛ:¹ U×WiKøa >ƒŠåøÄÙp°uÙV«bøÖx‡¹O›téMì••~-R‰‡R¿ÈnY ucÜ+%Hâå*Ðãá,X^gUuè/ûV¬N&çæýPW¿øz[B« ^ËRkL«[$Óy_M‘)~9„ ÍqoÕ*€ÆÅŸ†3­ëw9ìtÛß¾ÁŠªÓ EÑl°3îWÎDAÍ\òGÝ0ŠÅ>Šò‡ÚuN¿®¦ѯ(ÛÙF¼yÚB`5)uÝ›Y¯ï6$|0—MRµÛLHÈCd6K¼Fqóq­©”¸ 6 Tû]Æ‹÷Æü®^"W‹û“Å¥žce„ã²ó;‘ɧ&VEœ]^7À4sI+ÞÄò‡²Ü$º~›!EAü&*ä’ß&4¢¯ Ùº‚;Ý(œ Îh²CB›Y ÐÉD5`¦¢76öëõÚnPX|•¾AòQùWÛñÀÉ>ûï0@sjb#›Rö“ ~c$Ñy(ªL? €’vÿ>7Ò/ú­Kç¤åÉb,äSeh ïà j½ßGí#òäÛˆXÜôSW´ƒúÌzK¬R^úš~‹EÖܵCSÈ+è¬sªqÔþ~Oc•îŸÆ$"é:|ypv}þ¢ãÒÑ>/½¿üiPÄ ¾kŒ]râ ^E"¸Mu.#zÒ½‹´Ê†Ñ>ÂÀdÈßo,Ó½Âç$8?rW±1>~öªä ¯çüqTp£Un>V[äº),GL3 Š„ÌëEè ¥†õ@ŸµX/¼p2ðŸêåy‚ÔBËfÚ2fÕÿ#¦ÝÑr‘ª jb]Š]¬b {6ºx1¢jh«)I‘ðìÕ˜Qz(Õ ›P]&‰¢¤U>žfS÷l¬W:,yA†ì7x!Ò¶±–Ç^}|¸cºw˹ã'“´¤=AO¡BLøÕä¯7¥c.±Lßjôk Çñ/ ˆè"BÐ#©¥¹–G]Â^Žt‰jÛÕ÷>B¸cuÌ!,ç¡N7te81Y£Ÿ÷ac¢ˆE¸¼ÞìèÌå(  ™Ÿb¢)ÊT ­A´’ÞI¿ÏÛ$sAn`"ί>3˜y—:{ íïâYÆ‚¸ÐåÔàâ±åP^y›Ô²¸Ð UFgb=lÎ[$°€;MðÆé²4˜Ÿ<Ή¾]bIÓî%.û&Û_((¯ƒîénÖ0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 cleartomark endstream endobj 811 0 obj 11389 endobj 812 0 obj 1445 endobj 813 0 obj 9412 endobj 814 0 obj 532 endobj 815 0 obj /BMELQF+CMBX10 endobj 816 0 obj << /Ascent 694 /CapHeight 686 /Descent -194 /FontName 815 0 R /ItalicAngle 0 /StemV 114 /XHeight 444 /FontBBox [ -301 -250 1164 946 ] /Flags 4 /CharSet (/fi/numbersign/period/zero/one/two/three/four/five/six/seven/eight/nine/C/D/E/F/I/L/M/P/U/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/r/s/t/u/v/w/x/y) /FontFile 810 0 R >> endobj 8 0 obj << /Type /Font /Subtype /Type1 /FirstChar 0 /LastChar 127 /Widths 817 0 R /BaseFont 823 0 R /FontDescriptor 824 0 R >> endobj 817 0 obj [ 664 885 826 737 708 796 767 826 767 826 767 620 590 590 885 885 295 325 531 531 531 531 531 796 472 531 767 826 531 959 1077 826 295 295 531 885 531 885 826 295 413 413 531 826 295 354 295 531 531 531 531 531 531 531 531 531 531 531 295 295 295 826 502 502 826 796 752 767 811 723 693 834 796 383 545 825 664 973 796 826 723 826 782 590 767 796 796 1091 796 796 649 295 531 295 531 295 295 531 590 472 590 472 325 531 590 295 325 561 295 885 590 531 590 561 414 419 413 590 561 767 561 561 472 531 1063 531 531 531 ] endobj 818 0 obj << /Length 819 0 R /Length1 820 0 R /Length2 821 0 R /Length3 822 0 R >> stream %!PS-AdobeFont-1.1: CMR8 1.0 %%CreationDate: 1991 Aug 20 16:39:40 % Copyright (C) 1997 American Mathematical Society. All Rights Reserved. 11 dict begin /FontInfo 7 dict dup begin /version (1.0) readonly def /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def /FullName (CMR8) readonly def /FamilyName (Computer Modern) readonly def /Weight (Medium) readonly def /ItalicAngle 0 def /isFixedPitch false def end readonly def /FontName /SJBCSB+CMR8 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for dup 44 /comma put dup 46 /period put dup 48 /zero put dup 49 /one put dup 50 /two put dup 51 /three put dup 52 /four put dup 53 /five put dup 54 /six put dup 55 /seven put dup 56 /eight put dup 57 /nine put dup 65 /A put dup 66 /B put dup 67 /C put dup 68 /D put dup 69 /E put dup 70 /F put dup 71 /G put dup 72 /H put dup 73 /I put dup 76 /L put dup 77 /M put dup 78 /N put dup 79 /O put dup 80 /P put dup 81 /Q put dup 82 /R put dup 83 /S put dup 84 /T put dup 85 /U put dup 88 /X put dup 97 /a put dup 99 /c put dup 100 /d put dup 101 /e put dup 104 /h put dup 105 /i put dup 108 /l put dup 110 /n put dup 111 /o put dup 115 /s put dup 116 /t put dup 117 /u put readonly def /FontBBox{-36 -250 1070 750}readonly def /UniqueID 5000791 def currentdict end currentfile eexec ÙÖoc;„j—¶†©~E£Ðª*Bg·N³ÀÓ½ ƒØ‘l¦ÊKq*Þ²Xú«šææwüsм|QÍFïq˜Õþæv`æšz¹XòšMyåp"÷ƒë»¶Ôôì5OÒÞË©”Y¤ÅðÆë¡P(DTçÜ!Á[v´Á›„67XFšlU‡…²&3!R˜q©ˆ4‡Ýw”’Ýσ~j‡¸+Ûño¼uú£ “þ\ôéÒ@[œÕ6]nÎÕ×hÖmlha‹ŒH+4Œ£Ž›¹ºüú­œ/?Ð3¶&˜nÔ=œ“a6E¸#’ÕÊá|´~.‚ÜÔ…Ë¡w,ä"»rƒ­g[eH§êi¨ƒìª>žÎu†ÖÏ ŒÕWÇåת>©~ºÓ–Ñ¿ÏJmdv‡Aíê [û¿4|ܾ.×V–z¶ÛÄ_¢£1. F¥ýf« |Xÿîĸ9^Rw] ü×ÛŠ³31S\D¤ËKZÍW`– äP”Š^êÝ3ê ’eÛŽÈ Í8`2?Òl;ˆÈŠ!eXxh Dfú@=$»—*I¸BÁ€äÒXÉÔ!ÐWx-b1ƒ £™³ÅòòÝC; p™À}½âhÐÿíQi¼Ð=H²ðX­bØgŒbmÇ£óR,™º–>ù_ŠÑ¸°ÓQ! äÂÅZØž¶Ar“]< £˜óîîÃQ–jt8ï?îB,mN3v լǵ+í˜Kú­6ï t‹Ð{äAJc—Q%ÒrúØ?væÿø60¾RmXsŤ+pú‘Ǹiñ:þUësõ‚ƒ‡“¸Ì)káÜÏPýWË\~Ú;’í” 7 T“.ÅN ¹„ü¤«}.¡‚¼ñ&:¢D°~Àê’ù¯4³LD¸V­Áð5bæŒgä¨AN”ÓªÚÑ&×é¶ûš+‹Â“§Ä»•É‚¶£¤á?ÌéÀ êì\SeÐké¬öáÏdäŒVóPzjmSƒȬߤj;-è0@€3q!Ì,ayÈ ,Ê–`yÛªi¨k·9kmosrAû~}wâ‡Ú‡$Ĥtºó¯Îâ¦t—®â&px: ÌßJ,‹ìM†e°òî'–×EA"NóL’Ëþ?ˆdFµ¯GÛ©½S§íúCý;Xön•Tuncp«dïˆç üÀ®Þ£zëüü8˜ÿä·é+”‹9ÈȤ«A½H¼•Ÿãî»ÉøÉô;Ù·ðcA}X5*É`(ðî µH¿1u4@òg§$:–Å”¹ámRÔ{‰ŽàcAŸÇä÷ïyuªÉ Ò1„Ã=”@ëƒã‰ >Z›˜ëœuˆ´: Œè§çdñˆDóJmšÀ? &©Zˆ N&E„› K$® %á6?ÊÁo_eÍþÑ=þ#æp Q•™xÐö¼Ï"Ì«Ä;Sza¾ëªTû9ºQóù/ÌD[¯J*U»ßž?Škk^‡_ÐÞUS†÷Ô`¯ZÞXû›Åv8HÃ-aìz»vÍÀLbÔÿß?ºAí²µñ¤žº Cv_7;cÚ­êñ`Â…K÷Ö¨Ó9—Þœcqœ"çòäG^´ Rjîƒ_èz%o=ïpNn¼fc¯ÔÐ+Wêkù7m àÔKí›Uç—Ÿżm+·çQ8tvT`³»•¶²oÎGʾÔW=DE“@ïO'£Gx™;;šùݽY±Ô´›ÚÜÒ:xò'¼!It¡B#s®·AKüM(•d>R)LõfHMÏôãV¾¥¶=WC¬;îp6ó¸X9ÛFþ‹Îh€uj»>»¤k(Î_'\‡„Æ”A‡áÍäšO]¶Žû5ïåù{-Y¨þ¡’éj!V'Y]cN?W1¦¾]ʬ=«U¾BÚîiW¸8?ü"ÔÀ;…¼{¦á¶l²2m¡8'&9å>†Ñh)ç—ZÄ¢ö’,ƒõ‘!,[œç÷·Œ§VÝ åå;œŸzƒït‡`”ïì1díMHG4÷ Æ ÔÊY²%žŽ6P F­­j†¬L‚0œ<8½wø‰~O°~­ÛºÌ{°M|˜çi“ÛœÔᣤ‘â]25? 6ÊÓEn–4ι?QÅ"Iñ¬²t÷–Ûp¨¼»Ï…¦!§ó9–T%þ ®|Üý—ˆÚ&k…s÷iEHGÍK~öMU^ž®©éõ8©3Ž-„(”D÷3 ÕIz «ãTüÆN¸ÎVw&̬4¥n,‡²"6$oåLy‘úB~ä¶:¤û¨ß"L\,âDMç„„ÔÜ59©v½C»ö—¢kP|ÔM'­ŠV®¯2”Â’½íç/Q>E9fÅWO!TÁ<£êÐûØëÐ6×9ž½!Rð˜Òq(jMš-ùìÅöÚ¤W^€Íüˆ t-±·™_1åGpWWÜ"’O%#ià¡0ú¿Ã~Â=®x±ÎÖAô¸C,ç7Î*‘a¬ÉìÔCKs`û×;èÔ8(ÆËñž»¿6:ÐD{{ÒŠW~#Éò%™¾ÐˆÈ'§®ŠÙsFüóM‰\V ¢é9˜%ÁîöW Ó[EŒÖÕô¬¡Ê“ ä¼0g#4}À¹cU² ŒIKI’ÉìL 4Ø¢7›žý,LÅʵXЃ0èdú %Ö§y×ãð{%k¯qˆò”ãp'ÄÕ,_BÔôS|pÆd°òÐÜËvP‘ÆÁ¼ÃÈ·tÆ´ `£¹ÿ¼ —Ú«c:ÿT¸íĬ6 r¸]n z£³‡¯mÙš»0Q¯SëØ LKäòr¤+«SKÃRs4 -Ý{.(q/¸Í0~ò3é ”Ì2Ú*.¨„Íö¼Y|§&¬¨Ôº ‰* ¹,e ÿadÚlñd†õ4ôÖ<$û ;¬ÝÛ‚q|ð©á'-'w²)ø8¤;ØïðT}sL²ˆ>šæ“ÅFMï­)l‹Ž“ %¹"ý|¹˜Y±ÑTò *ªz­£3Øo)1‰’¼OÅ2ïUÇç÷ʯl)Èþl>%9ÿÀ1Jÿ}]ê—Å‹8&º¼.ç P OF¥[‡dŠÍÚay7|ZÊÀö`$Õª¦ë¶?):ÚÍ%ªÈE†±•)Iã'U Ç¥Ù©m¸÷§ªøþ9Àº‡5Žàf²’Ž7™üçóò_Üñ›áøÑÃÏá¼ÉJ|Öö¸Ϥœ !mºz9îÌ'õú“÷œóôM±$ Û# Ü÷IÏLpμYzÈ[ˆÍ£D¦R°Âç§šÝlº%1ìûÄ!5²ý<ëù’ÜÄÊ šX…|,C{m€‚³›t+¸‹«êy‰J'Lç™ ù ÷gã„såAn÷VæìP´dÁÏT~©3ø¥»ss_ÓìiÖn ¤Q%Ï*´1 à¶5[ýkP!:Èa! (Ý®[W'ïî?¡Ÿ)Üœ”:”°FÚ±ý±ž>;µºYçþÚ ¶U“”ÇXÝ÷!9"aÏ£ñ§Ñ>&~Hæ»rÙ÷Ϫo'?t+æ´ß +²Üâñ§-Êš‡âدyði؈›ð$äÉ,oÁ@‹±ô4š}Ó_ßM>°à$„)é{Ë:V‘‹Uš¬Æ^ç!M£DqâiD¬~nlCxLWÐ<òÈñ|âëìÿn·ø”¿,ô°>½zåËy*“hbôIèHL ƒ‹O-hV(¶ˆ%ð½XofUN˜ OI¼ÒIv6[<N5‚]›9œ%ko‡Ï9=¢wFš{°Ï|j_ÉEFJâZ75âªyÏ4†ÔAϘA ¤ÊØ¢cºûiPŽŠƒŽµ<Õãªt%ñê;Ød=¯ÔÂä¹Åt5NX¯ªj]¯Ê~éÍ!ãLÓ /Ú‚Ÿjç& û>ø€ªî]-‘jfæE'‡õ¤Ù±yœ|«Ä‚–>g2ÌS¡•­u­ÂÔè–)ü0c¶ž„: Mú™¸…`~ßû7·­î„¶z` J¢//‘>/Ÿ¿ÿ6IÔÿø${ èQ0J=Xã‹Ä®¹"ôöRÆÄ¯Šô<ðµ–‘Ø^f\h2ä—uԥ̰L‚FÒéì-ª’l0H¹èô·ª›Õ¸Ú#3ËFØäû•—°¡kq‘nó àÏ_FΛ?xV¼Ä´Àâ¼ŒŠ³èì á°®ÈÀb¯×Rÿ޼ܶE=`è>Îmk’W?vÖR8¨LÛ#Ò¢%p[m¯ƒ‚Ñ1Çü?ˆÝ PJôm}îX@Í\/ýúÆõœ‡Ê5|Û)7$‘9µ§Pð}µë*™©ÝcÜvLA§!½‘‡aùÈtG¦;=­ÿ)p ½%ÓÞ:)2qª¹­¥¢=¤ãý ¸¼zÿÏÜC ûÀëÛ4{T ©Ú¤q*duçÜ6 >½Ù2¯ÁFgÃÏ…‘ë‚È–£Ê¢…ã+¬˜¶Ç¤GÍO1½ýÉ!£Ãƒå„V¢ý²RÇÕòaÞË ˱ˆ\ЄJJ–Ö/£ |øDÌ:¦B—P‚­ù~!Ð̶ֽáàÈßÐõ<7ãà@ëí@C[•Buì>MOPí†~û©¥i,’¡Ê}P;ùÜi«_Ü"ôäßÕd#Ã:X#b`×iú¨Æ˜5‹Âe¬®×0Øj±ÅP]èEpðÎzâø®«´AF˜¥£ÛzGÉißUOµp}q§c§©c8&Þ^ï|°~Oî,†ö‚º4S§cì$™3‘¡½TŠD˜÷†¢0Ð9KA×HŒ.ËR8´¦]ô¢·h1Õãå @…ÁÿÍðöŸwÕX¸›2\UÙOzü5‡W‚ʶç pá÷é? VåÌœŸ­;dŒ`)ú: ¾Ð(ú/O|ÑÊyóȃ6–hƒ"ÂJ+AQNvÓ°2gUƒÆ³¿#ü=~F;“ÐØTæü+í³ëÁ=>¢¢‚pÞëcáB4[*˜LÇ˳í?Š*” >6¢N\T4§ýëõNd"`ÅÓ¸üìÂgs-‰ ¶‘ïHËrìCøì_бR=–½-q«ï)ÕBb†Ò$„O'5ÀLüòŒHOnaw'›°ô³EP´ÇÊ¢¨6e8k¾@"A³~C1£`#gûÎC*ؤ{u { ÛÏ€AÃám7™v0<¾L´7³´hX>r»pW«ÕGÏõ/`TƱÆZü?dàë^Ôš;|;„„h™®42q ß¡#GcÛ°ñÂ\k.!w¶-p’zÚƒ'T}¦ðW0äxºW_û ¦r"Ey¯c^eZ‘L})™@]#‹×rñ²ñ&ažô£áåÒLÞÔ€ì!Vº5S?éZCQÕ²öýÒ3žuYzÒè.]€ÙF'­#Yã4QAw¬8ùç–'½¸-—ÞâÔ+Œ07>Ï$4Öi1m·æ´9[ uñ¨ÈÛÂïòTs€27FýzkJšSHiŒ"÷\ªcxŽl—1ý·uôŸ'òô&ó2I^p¾íãšr*RÒÌò¡Ü=§åÔ„eƒÈH.³Ðf“_½ÇV"ú•èyÁ|?67‰wëG’Æ£a˜:”"LŠêÂο”6¥ì¦¹]’¯<­R‰íŽfH§òX5ôÕî¬ïøÉ@ŒÖž·`È•ùÞ^ûCïG†h}÷¡tâ zS–*>¿L¦BW¬˜‡GsDs‚+WYmÛÊÆÇ¼ÕÊù')6 Ad‰}…Â0.óÇ‘Ä5`x>èîh0βjÎ AÎK žú0\ªšªžSÇÇ'J§»ùgU·þsí,ŠS[¥„Êr«4ð—LŒYæc’›‹6œD¼ŸÕâÜonˆ…ˆÊ‹æ[¸rÛúN'‘ôod‚»Ôâ£l¨+kÐUO~až‰‡×U7Ð!yT°=#p¥7¼Ð!QÏô—¼)2$r¯Ý®ÅÖ”Ç: y /…ÏÌ YÖi蕈ˆüõ+¥Ö3ôËy\¥®e@ѵC;·c/!rÀT®e‘êÉ‹Ç4Áe0Ô?gÌeq‘û<¸[y$óo)È}†[ka”¼… å'¶X œÛÈ’vÕÑ•­=ãèå#Á 8x8¦ü¼¨›ëj¶®[…fÃiÏó&g‰_ Mû‰!†OÕ;íý%ðU8‚”O|fäðl.åÎÆeïT ‹ê)\]A.•÷ýGiïÒ)½ÎÛþ­U% è&Þ/yÞHïËÊyÂÿTbδ{1—ÒdõUÀÑ}uðtþ²uó¬èhIå† ýÙR>É`˜Å³k[+ ¾'xŸ˜¾Û|þλ›wyå¸?†w½]$”Æ 5U0ÅH}³ÉÏûKW@,*’<¦Ö…&\w±[Úã°8[apÁ’tqç‚´¼*s¾ŸØE¤À¡`A¬OnQ›Þ_Ìàk®9š‚ý†-ÙèK²]‘?úO8:ëo`¥P:›žOKß…Ä£v·Pœœ.»‚î©çõõŒIãÛ»(\êùeÏ5CrƒÈ²ªÄHö¬o%TÍß¹ËW¬ýð 7' ²=ªšZ4jм•îèÄ"%œ:¼ ¶f–ÕJƒ ]‡°î(È€¦Úœ¢¦{µu³µ›ŠJ„ì–ìÎl|*ƒâŸ`ËšOy³ïU(C¯tz[œV ö=ª[ÙèªznWöš;¬-V‡ô~ú¼âÆÌ{ßl9¿œ÷T‹¼»TÃîÕ=‹Ùïðö+L_C*wш)+ÇÊééo<ÚÆ)õjc qw–\·Ï¾jË Ñ³–n"eê3æqo£2ùS¶Wu¼nKËÜK¼ôNz€w¯ZÙžVW‹»íÔžô¡„þï9¶üÒƒ™è«Â+°6oÌ5_ÖÔ‹\ À$lÔ ŒÙv©·)V'ÏåÑŠ×Õ hn?H}ßNfµèNZï„'òD%¨º…ÆÙì°x°5ŸÚ-‚ƒéªY…ÉÓÚÇöI©ãÑ%ↀêQoùôÃÁ5c”ÑõwCèëÏ"äIx.Ûg fþ½÷­æ7Xslp[e©OLz à)®h?O­Ã\ÀcúP±eººÓŽâjçý|Px§Qs‘Ø qþ‹y0‹S¥Têä°@,ìU Jàº_¦Ó Þ×ñÍÏ‚™—"Ö†!âœP3v bww€Ç’ȪZD€¬b±å‰Q„¬Ø¥lrD(çc ˜ÃjÚØZsquŠjNÜÖ´} ˜¿7¢ ùëµÚÚz²Û¹iÍ ½c¶0iØz2ý{ ˜…€ÉG’Z‹¸È…ý¯Ì~F]<¼Ý=ri?¬8!=ôIi¶¼úLøóѤ+ú{CΪ]Jœ¥bêq”]Å¢Kðs|cÞhÑ€t€Ç´]žšðÈÚUÓ€T¤›e^¸7LCÂjî\éìQ€(&V:L|þ ù—‡æ|Ñy5Ob,3Ëù°i€x@Ï^»YçϺ‹éK$˜œÕ"Lìü[c2Ð%6š@O£9øåÞ”/ýVƒX»Ý¶!‡·NqNµTžö|h°¾’#½–‚Q1nÃ) -AG 3 ³¤ïý·~¿X½{MFâhiÙ-ôÄöœJMÈ¢“»À:AtÓÈêÅ;*rªxä,SsücªlÆ*wÍuN±X/â%¸{=–Úîó™ŸÝÕAçAã·Ýÿü¹^K¨X6“ä}K3AÏqKî.®šz%Ħúg¶{=[s¥s½ðt²5…ðæ© ;ÎâR®Ë´Òã!âïP¯eú",‚K3ä$R$á¥)5ˆÅ ä½R¿ÇGUKÉOd~Û“ou^Êu7ï-³ûcÝ© -+9·Èâìxg?D÷L¹YÒ¬*¸8Ôípé¾Ö)!48îë :ÂÈV!‰5&æfã¾Âì«*y8÷qââC̸qæwK0›K Ž÷¼tmR¡;%µ»Ú¹l!#+\uòß">@W£ ÁÜò¥éL}é€EìYd½jEÉ !%„ÄïŽcÌ… ÐÄ|¬ g·õ¾¿X¨ÀHý¹PÆ’ñA]G2ðãq³èPlñr_€`}­ý±›,«I[ÜžŒÀD†âM3 Y ˆïrï¤Ú¬]7 }± ÍÕÚˆ÷¾F5•{½˜f’ŸÙ&eKØb)VWLë^®á4øÜÁT–!’(DòxÖ䯤”¿Ú÷ Ø(² å­mB=¡ºiÈ¡ÝE½É6õγ2ÜËFFÜS× eÔÄülqò±A˜4€´Ÿ3Æ[c½Òû6çx¦¨9†ñ³1½Cþ0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 cleartomark endstream endobj 819 0 obj 9859 endobj 820 0 obj 1406 endobj 821 0 obj 7921 endobj 822 0 obj 532 endobj 823 0 obj /SJBCSB+CMR8 endobj 824 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 /FontName 823 0 R /ItalicAngle 0 /StemV 76 /XHeight 431 /FontBBox [ -36 -250 1070 750 ] /Flags 4 /CharSet (/comma/period/zero/one/two/three/four/five/six/seven/eight/nine/A/B/C/D/E/F/G/H/I/L/M/N/O/P/Q/R/S/T/U/X/a/c/d/e/h/i/l/n/o/s/t/u) /FontFile 818 0 R >> endobj 7 0 obj << /Type /Font /Subtype /Type1 /FirstChar 0 /LastChar 127 /Widths 825 0 R /BaseFont 831 0 R /FontDescriptor 832 0 R >> endobj 825 0 obj [ 625 833 778 694 667 750 722 778 722 778 722 583 556 556 833 833 278 306 500 500 500 500 500 750 444 500 722 778 500 903 1014 778 278 278 500 833 500 833 778 278 389 389 500 778 278 333 278 500 500 500 500 500 500 500 500 500 500 500 278 278 278 778 472 472 778 750 708 722 764 681 653 785 750 361 514 778 625 917 750 778 681 778 736 556 722 750 750 1028 750 750 611 278 500 278 500 278 278 500 556 444 556 444 306 500 556 278 306 528 278 833 556 500 556 528 392 394 389 556 528 722 528 528 444 500 1000 500 500 500 ] endobj 826 0 obj << /Length 827 0 R /Length1 828 0 R /Length2 829 0 R /Length3 830 0 R >> stream %!PS-AdobeFont-1.1: CMR10 1.00B %%CreationDate: 1992 Feb 19 19:54:52 % Copyright (C) 1997 American Mathematical Society. All Rights Reserved. 11 dict begin /FontInfo 7 dict dup begin /version (1.00B) readonly def /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def /FullName (CMR10) readonly def /FamilyName (Computer Modern) readonly def /Weight (Medium) readonly def /ItalicAngle 0 def /isFixedPitch false def end readonly def /FontName /MGSJYE+CMR10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for dup 3 /Lambda put dup 11 /ff put dup 12 /fi put dup 13 /fl put dup 33 /exclam put dup 34 /quotedblright put dup 35 /numbersign put dup 38 /ampersand put dup 39 /quoteright put dup 40 /parenleft put dup 41 /parenright put dup 42 /asterisk put dup 43 /plus put dup 44 /comma put dup 45 /hyphen put dup 46 /period put dup 47 /slash put dup 48 /zero put dup 49 /one put dup 50 /two put dup 51 /three put dup 52 /four put dup 53 /five put dup 54 /six put dup 55 /seven put dup 56 /eight put dup 57 /nine put dup 58 /colon put dup 59 /semicolon put dup 61 /equal put dup 63 /question put dup 65 /A put dup 66 /B put dup 67 /C put dup 68 /D put dup 69 /E put dup 70 /F put dup 71 /G put dup 72 /H put dup 73 /I put dup 74 /J put dup 76 /L put dup 77 /M put dup 78 /N put dup 79 /O put dup 80 /P put dup 81 /Q put dup 82 /R put dup 83 /S put dup 84 /T put dup 85 /U put dup 86 /V put dup 87 /W put dup 88 /X put dup 91 /bracketleft put dup 92 /quotedblleft put dup 93 /bracketright put dup 96 /quoteleft put dup 97 /a put dup 98 /b put dup 99 /c put dup 100 /d put dup 101 /e put dup 102 /f put dup 103 /g put dup 104 /h put dup 105 /i put dup 106 /j put dup 107 /k put dup 108 /l put dup 109 /m put dup 110 /n put dup 111 /o put dup 112 /p put dup 113 /q put dup 114 /r put dup 115 /s put dup 116 /t put dup 117 /u put dup 118 /v put dup 119 /w put dup 120 /x put dup 121 /y put dup 122 /z put dup 123 /endash put readonly def /FontBBox{-251 -250 1009 969}readonly def /UniqueID 5000793 def currentdict end currentfile eexec ÙÖoc;„j—¶†©~E£Ðª*Bg·N³ÀÓ½ ƒØ‘l¦ÊKq*Þ²Xú«šææwüsм|QÍFïq˜Õþæv`æšz¹XòšMyåp"÷ƒë»¶Ôôì5OÒÞË©”Y¤ÅðÆë¡P(DTçÜ!Á[v´Á›„67XFšlU‡…²&3!R˜q©ˆ4‡Ýw”’Ýσ~j‡¸+Ûño¼uú£ “þ\÷c¼3Râ*Rç?쨤‡±ÿÄȯ@› gSr æÚRÊIƒž†¯zE_ÑðÎEˆMvï,¹¼X!ý%6]Þ¦ä_3+_h¤JØ¥0ð’£o¬'ùzþê –ø9¢¼K“$à€ï|“t¡V\)Z! ¹j#ZÅš›Ðz1ôœUA~ "p?”ÿ{u@š]A}¦s iãújB)ü~Ob ÄÆ°Ê{z;þ¨Oí9ÌûmT[²¼Äž^—d«”UlÔð$ïW›h¶Ü:¯„ ?Æ‚(r6Ž;BtÝÊ6¯cFÁCÇrÌ$/;!,K×q¡§Lš”í“¥ûeWôàuG¯× ˜ì£¸®h˜7–åñIQß[u2¢0ý£µuZ8µç—*«Á# ™üøq¸Ûô•Pºêœñ¹|¿ÇÌ–IŽÌ“‹¶pe}é#¦YÛ‡W{ Hs(çãùÃ}ˆ²„CE à¼îêäŒÍcˆóü;ïØÙÄ[e/SmV&±ÿ i×2Ç¡ƒmc\0ÀkíC'sp)åºX0¹èŠ@$Ã2jÒóOGµG9´ˆ%­f™÷ÑêLJìD@¿mª™Þý2b5–\cdy!‚‹òiìÈz+Œ­lx¶åa°—¾+ÇÊ2´S@uöIéYÑö5F>qgžROEowK*øþóØÆ;/‹™þsºD³Ï¦G£Ç¡Íx=>´JÎå u›jLDfâØ÷džk­åß4ÒÆü‚ÉëÔØ.ä vî¬Ë|Î1wªm·à% Q–iw½Œý½ôÐXDN}}‘xê™|¾E.gK{£Í ôTü¦ š >kµ&ÒÒ½mxâ“o.<nô¢&lõQ>¿IÔÙ, “‚ 7 L‰³ÒUí/ÇGGS©ƒL@PŸÌEdáõ·Ô‘ÏŸ5ß: :""lØ5ùȸéM-‹á/Êê5p¼ªÿ7þÌZÕ˜òB×8]4ÁÁt/Ä«É+Iüªëιc/xäêeŸ\Ý%ÚË SqÂúP=¬]ÅóåIŠ C!­å¬#áÊÔ½¼EÁ~í!™|kZµ `f<ÇÒæ§·$TtPx´Cí÷·á·Àçkõ¤n¹ñàó÷ƒKA˜ŽAYÑsrƨíF0¥Š,tùšu|¡¤žbk"]ØÞfL`ú­*ðyd­NÅä)ìQÉ÷Éùl¡œ1$¦?ŠÓá»èXN¥ˆÐ €EÐ>Äc‹ÃfÕèŸV=Íÿ[miGU>L’áfqcÏD t—˜.¯2'§-ì;p[ÌMŸôRÓÓ+¹êS"Ñ÷#bpôøë¯`1Ôi0ò³…ÕzàžéÀ‚C€±D] ~+KX>`·Ÿ¼ìÆoþÝì÷™ø9ûN(V%úåU™¿Ø0H¼?ìÓª~¾'XèPŠl¡ þ+MŽkг‚p(ã¹éIŠ-«Žþhqœ®—.í¹=fKræ¶„.¯¸¬y<,=l2ž“Ï0êùÃÀ‰¼F¼nd°¶¯ì¿ÛQ6£_ª@ësPNœÑ†¨&Ðÿù- ±ß&D¤r!Û€ÌOp]ìñŠÜ!&|šÊhŽî]–×ëÍDD•_GJÒIK¤¸'íÁ‘.ŽzËH*‰$Q]„"©A eì€ÀÀ…tƒ`Ã[°ªvv3&›ù­g}`5¹–ê dzˆ+“ÿuÅÎ éYžŸŠæcÛåÂvã¥päo‡<˜‘h,Ë0EAâ¡0ܲ‹2õîL?ænø(”wK}¸Û½y!•Lÿ¼°pÕ"iôÂÑNÓgÙ”ù°5xïåíÃ|HÙE´Î5é!t-÷¥ÂoÁЙt)ÏÀÏzõ›dx ›}£Ú ¬ƒ¯Ì¥!þ6Ôëί®?[`?Î]$>3~µ¶T!VÕgiÀ-®™ ÒfŠÖÖƒÈeQ¶Bx„7AƒàÞÓø$™¦‚jHçâu+w†»Çï§€ÕsàG)+züL— ±»qCó®‡ÂZä§ØäRiàê³Åb"µÚ©É“?&¤övÕ( ©¿¤ÆÍ|¼n’©'´?›]zùO8ñ1pm“V;Ø©eÓ²=¹Ð×â+.©kÓ1÷²½Õ¤[I.H2‰Lù/!A©[-;KOé YÉ9 X8rŒ¡FãS-r+*ÏSùÈ4úX¥s¡ [@/ö!cº½UÏ]?i/ÆöøÙÄ™"¶úŸ‹¨fçfhªéB~WˆUšzº8÷ iºè{±^u¹ÙÅaxƒÅ&ž=rg~&Bq[eËzPU¹j~ᇟ%ÿº°qo–(è€rWËgFû’}pR2P§ËN¿ˆôM0¨‡Û{é]Ñ”ïG6Q^îÝežýÜN?g¤Çòîþ#N‘x›‰V ±®C,²ÇÙPh:~uŒ“½ÅC(ȧÀ°{ö¼¿›¯zðh3 ZhÎÎß¿‹!òVŽ H/ø%§i¨ æ£Pmر;€ÿ–ñ»ï#‰/ú<¥â3¹²l*i%å¬à¼ÇCxyYÉgA°LØi¦ã«î˜óª}€«Wù`".‰H#È•˜e3 ü›ÒJÕƒa<¡oWs³VFÓiúa¨«5ñ“{銤e/\3­je¨ž gNGñÊeXK(¨½Æ…RCwÁ†Üż€d ®Äáäª þtËïã<³ñí𑸂+~ϹšéñÕ÷ø%ÎþA´ŽìñÛûaáT”P ÛžÄÎÆjÈb4 -±„f³o›\<âß4Šu“ÚôWÕ‡Ið3úûaŅϦÄ~¤Š»Ô"Z£öß;â,ùš@6ô„š¿‰¨ß*Ùž6cØy÷ Ó±nºSâWkù[)QÝ ý¡»Â퇪pÁVêT×¢½ÔuSV$tãìýÌÐìØ7VwIå6³‚ãÜú‰‡3©ÌÇ"¼Ú(¢F¡ƒ´•šÑ­ÊH0CÀ>ªàá-ñàxKwÉ(ý·^¨Àœ:Ó žüœ&öJ3ʨT™.e«òH¡7V&UÏT¯BŸL•r{Èç±Ã¼Eq#ÄùåœØvý/‡— !X» vÒzyŠ5QX`IGù&£·•;(9Éó xºÒAÜ…ìbmÆ}Ї áP½~)†ØaÿlŒS¨ª8—kÀ*HH\ e~ë‚ ™rÀþftïìÿÄ6õ•\Äõt4Êç”`SòItwÙz*ÚP¦Ž6B“ï Ñ ‹ªñ}Šˆ(èq ¹€÷·µÕéÏÛ ‰ ;¡]5t¨­¨uùx‡WU$,ÙÀ L¿:•4P¹™Û\ÂV™IT ÚQshk)Œ+Ý¿S ÏòG±8¢œ:EGGwEêÃXƹ¤_Úôöƒ'q‘gïѤ«¹Š]c]BAK[_%¤D³éèCäé‚QUuþ´‡k`mŒW²rkëoݱ\Ùd, gFˆšý“èÎ,6UèôÂce³!2„òÐòЀ¤…{,—áVÑ2Å\ÆÇŽòEKÐÙsžÛMuž윻’6Âʺ„vËç“ÎK§Z"(ök-ÍðïÉïÂëâ"9ê}{×Âú£"ùÕ~‡½Å6óy Èå’¬œ?*‚º3'çú&§˜Ã‹ÉÙöŽxžtZaÏœ”(éF´rT0ZKjšÛdÄoCCÑ›ýÏîøÕñíž­¦Cæ dyC›¹äFΗ*Ý^YÚ¨ —Š“ø¸"H¯{ôÓíT#Ñ<ѳlÈYŒƒ ³û^ˆø^«F <[ìÛHwqn—Ží¢Â÷û5aHìÏ!yÄ(f„Æ1;Vån¥E"²º йÍ¢¢<¦:_Ëç0˜ ÉÇ-ûÅf™æ=ø~÷Yjékº®3©½–‘ö-­k¢cçGUe/¿}P(¶E Jn0uüиÁŒ0ºžöóà ÷@ç¸Om•¸R{é9-3û’”5)4yä l=æÞYHX’¥)l¶Ó•‘þ2!ô¥Z$㇃ãfÀÇJÿ%bqàm&ˆ`‹r*b´Ã2.”/EÇM7ngÏI³O¢…4x”²úÑ^º$Qm¶!Z¡[Ñx®KþY³ì°U}´;qx/@öz³F R®Sª©ø'òB&Wßô03cì·@‚VHyäÀ5 ùû{(ªlS6wãï{µÏÊûØjĆVÏE¼Sz¬nýåWpYYv§Âñb6–eõ]3î°j~\ÓØÝúm’Á®l¹ëMßÝ¿ºà’QDx„“¾[GÙѤ-A+oÑC墤Ð9æ+9‘úvÛ²5þ(Ýn˜²HnJa¿þPèÀ¤r¤5ÆUëŽÜ™1 &„OÎ *p0{A› [ÖÙŽ FØhðøvE›žã Ù‡ŒÃÐÂÓ_‡ƒ’3fcµápE쬋«ùGd‘M¡‡ aœßOµnÞ‰¸˜©§¶F(½êć䓨ÿŸ/Яª/3“CDÆD`x±läò1öi4e c´,k‚É„>›¤«–¾Óø=T£ù·­'†Ñu†'!6Âá0é Ýo_úPÓÐk&…±q¾Ø5¾¡£]7ÖÞˆš O×vþÈ“ "Äà(+u´áô:ÿÿžmÇàJ±r~Ê[!¶$~°œIìr_ýóuIw}¸íâkã7| {;’3Þ ³ûzè}ÖG”bõI -8[p⯹amP+«µaÚ6£WW=nŽ-A<…i»­ŸKâ30ÞeÈI—ÔøßrwY ‡ðý“>å²äô§“C¦D”»OIÎaÕ2 ð/÷aî—}=Ë‚4yèã—¿Š9¦Ü¥g—xn½1oìªk"ë—³c#Ë,I2Ð<Ì46-2å¹a®@ÝJ2Ô¹Ø8hÝ=g\0) äßzeç’!?f9T€j¸ŠŸ-Ý|TJ·òkQ±Jå'þ/*êLвڄ& ¢Å]‡3 i¦ Ã#I’ orªÄº„Ó´Fí®€³FQÊ>ãHJud~³Õ Qÿ :ˆL…£óÿÑJ³ÌZÇÌ"ŒY®®ßIâv扫¼njÂ-œ…ÇÑš¬þXñõ–À|Ÿ´òµè×ÇÎëœB^öÙ,Œ꩎%€N† ž…‹­Ó·C¶¯HªüÃÔAõdNÏì)òiú¦­a S­Û+"IfÚw´@땵¤ã(/'®UŽÉ©À‘б‘£¾ Nâ˜WEngÒÚˆEÞ" " ÎPOG"š º-_(v°Ü­xajà„(ðŒ¦˜‡S)Ë›h-= b^ǯ<}ŸZä¸ÀsJT¶ãNÜMËT§t/Tß¾y²\É(ŸÏ ³|žUf´~È\¢ Ɇ¹1Œ -¢å³{nêæâç9ûo£YšºÅë\pZÝeíî¦ÍáxSðX^Ý”ä@ÉBn†€¹æÎÛz_4Ž‡Ì¤A­áhm… ©¿'kš4ðõ˜0JÚÈ­‹ög…ßch·–˜õ°h:x§¹È3Ó¶`^ûÞdð Ò… ;/ù: I~©ôÓ­›éÏ|jÁ}Â=;Oî …8¢ƒ„ GúÀ_Òà&ÎÕ`ËVÙ‚~ð:9ÈÛT]`Ò¿Iúõ|Áþ¸ Â« ߨDNÄ7ÚÔ¥ÕîñÚçjHP΋OÚ(‰çþ›Ë k&ýDr‡‡éH[Šbˆö!ʱ¯¯¶:Q}ú‹bÛy|I­„¸ƒ™sP·ßÕf±—ÔhT-ç¶/Ÿ¶õ˜#±ßÒ3ñáœ'×jÒc×`8§¥ŠüT–˜?šÖ@U/jÊûuÔ\2°ËŸÛéz0¦GÿR“a±¿òSÍ{‘qü¸ØýÜ€uýÍb¶ÒþMÃ&ƒ`ªÛ,PÑSmºƒØø_¥øFô}ù#KSüïyÇ68ôB>´Çé+ŒüÚ7¶•”ùjM¼Ý•‰èÿ°KOVµSü}ëR/>&õv`{M,È:ƒ*}¬ßѼLoððùFŸ XñnÜ+Â4ƒîÉËæ YW_p[çé±h3KV¡,†°.ˆçü<_úòmóbê"bS xÿVÜÄeãɶã{·Úûä ÉΈÙNýQw—|žÀùcS¤(Á4’—B¥{_åõdR¶X"Çwtàd¹p:X§ô=øeáþ:ãJS|kҥⲳgœ©…{¥ßœœˆ$ñô#ôy+ÅÑ”GõÌ»7ˆVöô„Üüâ,8ÇÛ†Z±5…âLAµÿJ7«ž3ÄýÕ¡e ^¡­êYÞÁw„ŠÎÞ§Pø5ˆ§”ýÖQ¸,_"^Ë¥V›6±Æ´6¦ž¾0*Öæpâ(û¶j̈¸ÉDzʱÒbÁÆ÷ðm­|«é}bíov“_)µõ8Ï®Rtóþ)úlYnÖÞm-¨NW2ó’7O“Ï¡M_j€º 'w'ïŽPjP°ö×=Œøò†èþF(Ôè6ìÖÀÞŠdCQ/" 1§x±7¿æÈtö…ól ’-^t”-²ÔI³wÕ:,ü9=Àùð9X‚J¶ ûkÁÄGMï}\ÓïG£Öx_ØÓBB‚P\ü˜?"ðÌpöÍ4ÑN2~¡dKÉÓEµœ1R 4ÉXÏ3%TÀXÜOf…wq8j¶Ÿù}ä¥ä DOEi¿O˧zú]ÏNßiÌ  ç¥0oÅk©6–àºÑÌX}WÒÓ%‘ã_íúaÞ ?y­€ÈŒ¿,?Q//²°[[2Ñg··öŒ÷*§ík¾W ûG€g- É›^ОÙe´¥ì_ì'ŠS®Îu¥7SMUG0MuÆP‰ …é“™ž ™YêvÒüçQò ÑûNIg ÄQƒ™_«QÇ;¸[ú¶¼yÉPLÁr ~ß3 —ÕᥕKïž}ÝŸM˧1$Nð¥O‚”h”"ª¨] äÏûض»t‹=†Œó n¶º#Zk‡­ŸLdÊiYÇÝbPÏÄ™ÊT®©#û"ÕHáwÀ¾¦ mu»µç_æ‘ÈX;Öu,•Ù¤5’*9°œ©q¡„æ®Ôs(NBãÖÃö–·õòÎÓ†¶ W|úÉåTõÙΔ—ýrnm{éýŽ|’¬uVñºâ!ÝG…ìm¨‹ÑÖ°…fú– ”s6`Q]/ð²ÕÝ\™A^²Åô´1"õ¾€û}ín½¯•ê‘÷KõÈõŸ}· I¦qFs©Ü '@ëÕдeVBzΘÒF¡ëÝ¥Šúþ -¬­K¡*¹l{ ­"‰EÕé”Ïd0ým [„s)Êœ,ò½£úFãÊRq³ÐÄ»¾‘Í4zQZ¯6ú@éLð£?qZ8 »N““P"¹CO®ò$áíÑF ‹\Ëãoº™=Iâ‰{öa¹PDHsýDô6;' ~íuò*g,y­ % ­ÂxÅrbñW"‚‚Õø1 ë,+Õ#\`iÓüKCl žŽê¶ì™mJ—ÎÜ]/QºJ^¸Xïß„ÙhúAÇÜÆÖìÝ?êèO‰á-BÆ#ZÂæ@Ø`OXÔ•wh“1Õ¢Œ<£¾µ‡±ÂÆú=œÒL Â…3’s?Ç»ù— ?~æTsS’ ÎÖ¢~f^£-ü_É ­Ôß â]¥HB(:ûŒ_“&Mõ)<õóFnF1úý1Å>7æF1G³VX-h)¶ÁŽ ? S5w–UòÜÉr.Ö¾h9r¢lǾ®‡3™8Œ¥ýÛ „uƒò²BMìTÆ4-Õ…¶>˜Ä€ØòcÌò$ƒ¬ŸÃ„1*$Â1°"!@^›ì;±K Vq±W#ÃNß•an÷<ªc7êÞ'f8š,ï+¹ŠI"³ É$±·O¡«:ŸÞ=)«W¸ÅLÎ!G1í^þfNóíž/:âØ¡Áø–åÓÛV €t©€½´_×JÝš—nþM9i†(Klœ? ^ÉϧX‰A%¤hs±ç¦ß¤d[‹]šÊM•¼5c–à’L éåëe©À(šu:ÓPÜ/DeÎ~qÑ…Óq/=ûü,ï_»-Ümÿÿ¸¨Rì·í üÿiðÎRÆÅwsÜ£¢¸Ž†86Uy7õÊ™¾ÌWâ3–Ú¡:’mb‚© œc ¶×]0÷§¤p¶p)~”ݶí])WáñX™¢¹ çVTh]¯-Ø«õƒ­Œ2|_ahQ,NX÷ tIh„`Œîn´Ì5$(XäÈÞ-;À¼«IïöÊ 3Á8‹I 2½ã¾Å€(¿þ‡89¦ØúòÈVÿMFÞ…Wgsuèó$^^×ó_ñÙ‡>Ѻ”þ²j³¢¸tpßhéeë՚ x˜L]˜è“æKY'v1Ü$;ßýÉ;Jïn©d—,!9™œ1d"‘ ¥&CØo¯2/SÉ]öX†M°ªŽššôxoÜÝ–z­@ÈÚé[ïlµnZ(ÚŸâù·¬F…'n¸Û÷Z2rF${m8M¼˜~‚•fÎå/¨ýPy!›‚ñ˿ԣ˜‚K™æ`:ýî’B£¹÷.ÙîÓQŽÏÓAçüKãß»|Ùü‹µ ̶VýpèlâgkÎà‡8I¢ïcæÔ[^æáËNŸY£…ѱÛ‡AL­ñ¯ØÒI ý€FqDHréOYÞ” !þ²Í cÜÊΣº`X;‡7úG"gL 0˜…Rm“…kæÜ ´=:®ÕÒ˜®ˆJRhÈöŠ,=‘ƒ;—E"ÖÓÄÒ}cÂiâ[Ó¢Uû_G8Çn\r–5'Ql§]==ü$vœ{ù" ›˪A䑘 ðÚNWüsT§ÆÝª¹éNÁD€wQ(¼j€QËó:>ó\¶6e$é‡}dœY"$_sÇun9Á›òŹŒçþ‚ª@WfRkc<Ãö¥“l¡,EÆ”žÒ8XvòÀ°KÛc‹ÀP•å_¬ä¾ìEþz»úCçc>ÞŠ’¦fÆâ4¤œ³ydÁÊB¿M-"]زòÙ9ÄKk€öxø§mFÀ-&Úb àQŸOcè'NÖ¨Ö™kñÅŽÑÛÑBù×wÂ÷jpfÜÉtczí¥ñzÝ|?Ÿ—dk6J°0.ᣰR=°‡2!8FôR̘I¶òQ‹„–ås«)`߯ÕÞWöž„WóhV¾LuTqå ÷˜|+5¥]»0iZË>W=:ÆŸ ³¤Þ,Ï¨ë™ Š†ß©*HþÓܧ¸éb·áç °ªòñsbÚPóɱWå‚d}èL Ž|é”ÞYÍdþä•Õº'þ gĹr零ä;w®ÒÐL+v´R®Çt5(±x-´Òˆ”÷(¤«n w×ns{a6t&iÙ½¾>õqBâ*MÓl^_ÉÒ©jÈ /8Ø$G“' ¢·ÁPH²Xè;cúËl¤P#'åX£âDºu"·èfh“V…™öÒ-gJ1e€6÷»°˜êš©»&‹’LÞê0!DYÈûf¬/tcŒ’ðË©nˆ "n–n÷ÆDÂ5Î!ɧëÌkέ[@määÉ[+‚ø8±0j®*d0YÊ¿Sù¶Rv?pÅ,µ’ÆïW"$L 5ŒB¿pVýšzvrÞ"†w"\‰u¬rŸGËœó©HÇ—Ðö¶vÿ§HÌWɺ²Š‰#ò}“¶(T¡6ÅÜ®¥^~Pö˜buÊǬâјûÙÿ½¢8Ã^ ¹g‘w¦'àO -­ñJÓ7ÑÖþ-zì .-Ÿä€bmB¤¢NÒݲëAµ,03jwöÙ…k}`ffnàª<Ü—ŒHË»ƒ?5iõ Õw¤ØˆÛ»ÊM|k̾Z,0;$ÉtK8{G¡uP¨X½Ùåà®,U¹ÀŠ÷!®%£¶>¸jåS¶ò³"›ìÇÙÒ@IÅÙ;ФñÈ€ÿ&ë×õšRH»T`ñx7¾uåÂþé^Ã… FRŸòL²62˜€;´sPQÛ_etV¡ó`UØøOÚ;&Ф‘­gÈt˜éCjí•ÊàÜA¿¸ ™ïã gÿC|9ûB}^¹f|‘UÝVî],†íÖ¸2nZ¹§:'㣶mŸÜéÀ° @OÀ&4eÈá¬#™dV~Ìaè¾Içž~(sx_0÷(ß ã)OÍ`o®Kb5ž U%@6†p$Ø;¥¬þ“Àñã#ƒ·¼ipKu=¹‰Åä\è½fKWTí0Psð–Ñrã¦9Üþ×oÐÒìø4/—ÉûøS–úò,ì­ªQ´P$ñÿ:„ ±ýkévC0Ì·R/󼙣˜_»ìÿX)BŸ5®úoh­ç^À\‰õ8¹õ»<üD &A‡]t=3ܫͅ®ÿìN+Û ½´[wÌ\‰›¿úÔ‘dPºŠ t¾cÁÄ̃žÞ5u—ôüuyÔU:=ëþ:9óžµ=ô®¯`Ö$†ðï¬?DuÝôjAà#ðJý›mʹl¼ø—›ŒG‚Òù6|<ǧÁޏçdßd9æ´ÏÖÞÕ—MÔ¼£˜ZÛN çY­A½Ïøƒýu£¯ˆø0B”Nš>Û(_è}ö¼LéÛân~h4²U<¤œšT„\vsz»;›ræñ ˜P³]×¶Ì{I™ádÆKMþˆrFƒ]®¼M…žèzè†fˆÅYßê{ûDþZÆ”Bµ:np421UÄós¦ªâ§rJ=¼¿šü1 R€oQÝzµ&&P†ÓŽPHóüœ(½[+“¦CqÞ ¢R˜ÉPôác`~‚Lôäé+t™£%öTfºæPal—åCU lË”þ@˶@ÏÖ¥ÖÞ¡˜Ë9̇PÝ”{v`HúKQˆ`)ù1oâ;ªh‹..‡q"ËÎ5“:hújªe'Yè¥WO¤jÝ(4ÍÁ8¹”¬sãªVùÓg|Sl qP£ýÔúóf2ÎMö(è¼^•¡M¡ÙªZæpÆŒÍ$ž·PS0܇g·%–ÁüK^îÈÓ/'-¼ù˜:ôsIxfæwG "ûÕß<çˆw“M$iÇý^’ !×BKù‡,h¨{çùÈIš¢yYŠÉуÿתÞåòjû…”DÊ®s-òz¡£csr1ºûweAЈdì²Ýy݈fŸà—ü<2ûYïe¬Yüë€3 Î‹ø{P“-ÿÔV)dSÏÀÀ?jKÂÀÓ-£ÌCÅMZô#q…€÷¢lã¼Zšâ½´ÓFšÓ]ÝÜ?õNbk!kàú'ëƒ,ªüÎVt°Ñ÷­½¶ÐGýbt5 ¨øî&è0^H]E”–b × @‡£ÂEìªD»Ö!åÂú2 (5=VmVAõü&ÛH«“X–§T´*'VHkéÀXæD*VŠÓ‚¡’/;·¡>§@;Qÿï 7xrÄÄ5¶£› 3ø=‰¬V/7M{••Wôý÷¯c#o4—¬Ö‚[.uןÏíûÝ5›jœx‚â1Z\<;ë´—ü³wònÇ™&NFùm­Ý¾kw´ŠK©ußaMäæ©Ã±SK0†Öž^húX1Z¼ Ú»A®N2ðÌÀ¹Ý~ç¨v©Üwç‘Y¶,·j\J±ÿ|ºýÐWåÜ-#ýDµzŠbã^Z“r›BXX9û·eÃ0‰³‡ä\¢i9(¨*›&z2Š’àÔˆÓN?=›8l¡'‡¨(:DÇhßGô)7@µøEõœ8»ƒ¾¦Zìd5²iŸÆ¶A©'ªê3ë!„üÄCdŒ»ü?™&´nâËõMÍM´°q÷5`œ[µY9_|K¢ç¯¼O¦€†.,4³"¢&A¡BxãjuÔ~œ^ÏÇfyc­Ÿ…_gÀ°¤¦å=kìÒä*æ15Ç Í×¼Iò/ÞóÆšUþémš$YI¿¬º~" 8~x‚­gJ£¸]d·ž6Ã7±švñ¶.>먶G-Æy^Öu·»ªNï²ՂZÿÛ™'Mß¾Ð®Æ )´ÂF¹øänEKö]’Ó\kp…¨V²^Oa5¥3ì>ÝHeÿžU ‡Ä§/"ôôî²éE¹ÒaLÎ4€=½ÃMÿnqÙ"ç¶ÛŸíÑ¢ùä-ÿ>H%¹ËçÕc·¯˜ÝÉìÒF¯[Š$²á d¬9Ä‹±¸3ûÇA›Þùf}¹—Û)N@Ê’3e(£4ŸäŽç£°ý!Hð…r ?N™¡’ç¥N÷M~kC©-Ü!ñò.¦Ä= ûþ½Öˆ] ä«EÎlܲ žò. ºô,¡¥p¥÷¦²„בÈZžphþ} Å—Z¬•¡>Ûâ@ŽU™U3½Lg%=6Ú’à×3Pf&jœªÛáÝVæ‹ÆMCWt–»ô5\‘RÓó¦>ë:[O†PÝ‹ÏlÛl)ɳ²4ª ¦&’—Ì™EÞÐêù¥¾3ËÅ•ã¶Äb¥žy¾$¦Ê˜Ñ–Att|×`à]SXß:þÓ¦ò‰æˆ5I3ü–q¶Â?úç˜3ÒR§9ä°¿e¡ïÜŸ&'Ñngâ¦HpaឆŽ3MÜéëfUD1× Â(0Ý›BäÐfIŸfvµÙLÜA¿–ýµP)šfʸïW;¡üG¢H@ñ)¡äªæ+pŽU'æÜÅž#;R¯"éÅIy;BW~×~èÚ'îô»¨PfHçn Dp¿Oš–kãi#ãa‡0¦>ôœbAÕ“öEWãó)W}èÞ+]Ï1Åð¾Ï­Ðë¹.âWrÒyi1Ü«»oýŠØ®õ?0l—^Ø*¿‹JÛ^Ów=DÍêc|¾ÐLõPO7 mu»Ÿ)Åt ³êd2y5sú–÷™aÚHµ7ÝܲFc"È¢gªÍ©a°’9(K7¾@Óh¬N „f†O::•äôèXJN5þ§£òvp¦?í¢«Üššÿ9ÇÅ«3Ókµ-eÕpðLÚÔ´÷K(^Cï+ …§#Tz¿‡BàõñÊ÷s\CšA\ês-ˆ“s¶çQ±$’P%s²ZÓ_.üôTDJrÔVÞG@ðªa²ÐéêþÂâÃÈ Ü„sqõŸÅ‚ÃÞ뤢ÙL;1d6º]˜›Ûßd’ÅWyÏðžW,†½µŒè æÿZm÷\ÔP²ÀtzÅŒ-Þ€ÌWak±Rê _öX†]dv`å…‰(f’Ô#×—4‡‹=ÀPõ±FœL®¥"d‡»ó Óá7 ¦5` ª§¿—1´ˆÌèÁ’ Ú×Ë"QT:kœ×4?5Ûí*{ËÝ8DÜ14g2Çe¬Êõn¢u¦M:‘~ň?hwšýzÐY=/o]䣉·XGk@øÌöró´ø^%¨îk¥cSÝú°k%Ü&yŸïº"Õõ•’ñJŽÚ:­%Ô/ŽÊöÓ(wÊŒU“ü–»A‚œ'/Œ2Ê…P RI˜¦VñŸFÃSÏ~®:2`;fm{&¶¤œa£Q ôò¶9ÛÎä'AÃA_ƒéÃ䦂å q`%\ÌåúWËKk”ôáfYö„ëâxJGɈøÏy:1-H 1CKŠ“Ð}š¬ObÝž.¨ß¼Ùá›)ãµef³âu*H³Æ#Ÿnw„:a¯ÕPÝ툵ŠùÊ ¥Xj·]Md$Qޱ3Ó€Uô*loÈà:µ|â–ÑÚû>lÌÙ½Ýú‚Vzõ-è~6žPlµ*x4íƒ)W*›(Lå &‹1¨L©“ŸbóC­âI¬œ7²{ÛC`ZÛç«ÄQ}wl›â¶\½SQù™ KÞ²jÃN\3IÌR&ñXÙP´®Õ—Ô0pùBz¼v.ÿô¤úkXB&žSÕ©Ÿª _ã5oäXo ³Œ—k!u±”7³ø‘¾‹égÃÇf±’¿¯j`¤ºš¡ôJŸì»ò~Á­âį°fï·Ò12àîlþ8«>);@××ó»ïEW Üv’JÖ²¢´¡*™ÉWumnqõDÌò£d…¥˜¡de8Óü®ŽÜÅ(:ùÁÒ£Ý^Ü:ÐZ<èrw÷¥Êª¥³xØ–¦ÂöC?^­YüãW+ÍŠIÎTÔ €^¼|Ö"îKD)hRY Gä°»=X\#üɺճfWx1\Õ¹t¼æ„¶U}]ŠZÝ.ó!›¨±JB3µz¤y€^×Àl(bëSÃ0è–öc/Dηy4úgYãfbU cZ±ŠÞxÓ;¾‹%à„KÝ·´Œã4JßиŒ)âkvúËц*"‰9^̓’Kʦ6O§Š¯/íÿè½Ã¨eëe¿…bÌ»:ÑxëÏÌ>”rÀ&”£ÿbÚܨ÷F¶ß*[¾Ç6Þ8UÜËÇiNê6…’+ÍÇ}:’wŸámˆÁ‡_*:9ö8??Ó½ãäW‚Åœg8»°ÜÊÓòwu q úíÃ{­0¸öþ7-§ÚõÞ*=òJ»l•úbº·òy‹[@”FV,svn´@=¹aªàÍ×DÕ™ ›\Ã@àÄYS#LYÔþ]02HVÖˆœ×름šô«ÞձιZåÏnö]ekŸiñjÂø]ãчÖ]Tð\òX/¼r ~v,zŠÉØï;d[ǃþ¥€¥Ì*×P–ŽÄ¥­#Æwc-Æv×ìq‚Å€o¦’NÌž¼IäûkQ‰5z ø‚ÏÛm·4³æR 1Á̽Ӡ+‰Í!zﶇ¿Š„žøîúßɼK½-Üìm <j§b½r ²íɰ›³¾T Ûû"íÞ†÷i·«–c•pÌÖê½;ÿºÝ–T¸‡<]´rÉ%µJ÷cîå«ë +ø§‚5¾‰KÔ`¾´qÖM&Ç”üª(¿ TëO@~“ˆ. aNŒàcé¬röºúGŒèõ_¿Àv$—͉}–ß|Š :´Üw¢Þ;Í= ³Fë¤MÉÍiG3„Ó$šßyÆBÉmL]l„¥Ýͦ½÷Óëur'úô±h9Yo]XÀ)W¡mð} §D ¡S–àøö6ÿùÒ¾8|s^§ô–µGÝ”DÍžäªZçâ`oñ\­ƒŠod`s¿•ê^Ró1®kb8,§ÙÎ §k2Aü•{.M½âÄŸdèÙVç¡Z/<:ÝP‚@êÏÿŠ˜‡3š}ÒV˜˜Ý¢DLÊ¥*-û£C-å{„)¯ç‹äfÿyÛ-¹.”á _–NÁt—«qúüi£&Ì_”ø<òM׃JR’##»`i.Ô¤‹ßOk£¶Š}½Ÿ8u Ïÿn:’nܨ!UCï?™± …úÕµâ6ãAÊ7ˆ‘g7€–3¶xˆ¥/{ õzn\9ÞyÓöÛÝÊØT‚Z‡š r,N½é rèJ­XÎ:™Ž=9 SDp$’" 0Ò¾Ã×þ¡çk5q¶×]`÷î‡ð]Á&q@¥î¥á¢a5 ê¤ù–Ø íBƒüï ÌúbŽÒÁüã¡•ÿ­>ˆÓÞ²1 ûæRzÙ Ú ÁŒ.úƒr{ü „l³ð/iÜfýà½Å1“zWR;\ÚöœÖö(4mç ©j|YkDo5œö*(qŸ Ÿ¥cú¨Q‘Œõ¼”lÊžÂ6³|kAlüÁi8ÕqBêø«¡Ò¶kyñåbŠEÃ0š©¼8ôSSo£ï·™²Â®«kf/AîêäHR^h}¡QÃ×Zw×| u8Öù•¡gé.Ç+& ÕpLÌIé÷•”sýßÓÑöZ¡¬­N; Æ…^F\ÕéXôWf`{\DJîDŠ$WÃ2pý®š³ìmQWíOJ`]¼.Þô6@ g‹åLÞ'ÇqƒGvïòš‚2à»ûúŒŒV…ŠÉ²8CÞSs½§'f´_ºPLG¤L]~ã/Ûð±4~â(Ùi~(«77 ™·½_õ61;½ (»ÔÉ÷rÌCŸôj.+©k¸7ã—Ó…ÅçÌá"ò žÉ®2Ùg6  dÑ뤲h9°<‹væV‡ ò\âPë‹*rkr=g‚cóÔU˜ ™§SÌeú‘°©²2ÊÚr·Œ$3'!…— (ŠØ²€àÊÇ9ë&ª¤­ùÄÁšj7jœ!aÝp1ßÍß\ðЭ)Çšð$4±À=¨Á2áRÇBÛÒjÉ) Q¨½îñYx-SŸ´¹`Ó.QZ® -ÙƒOÇóY$fÔÐÁ¾°Ô]ÃcèóM«Aª]½™‚I2!ANr‘íâKiEaßy®ø_ëTyyÖ¥—’¼9¬ $âž5‰0WɤA掋Ÿ#¦h[míhÐï6Õ;™T4´éHçTKÆïM•år÷I.ª‡‘>d:•®E_€¶X+÷rå™KhSŠ3»R&œ>¶aåT[±Äo€î–]ààáøÀQe©”`tk<0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 cleartomark endstream endobj 827 0 obj 18490 endobj 828 0 obj 2156 endobj 829 0 obj 15802 endobj 830 0 obj 532 endobj 831 0 obj /MGSJYE+CMR10 endobj 832 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 /FontName 831 0 R /ItalicAngle 0 /StemV 69 /XHeight 431 /FontBBox [ -251 -250 1009 969 ] /Flags 4 /CharSet (/Lambda/ff/fi/fl/exclam/quotedblright/numbersign/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/equal/question/A/B/C/D/E/F/G/H/I/J/L/M/N/O/P/Q/R/S/T/U/V/W/X/bracketleft/quotedblleft/bracketright/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash) /FontFile 826 0 R >> endobj 6 0 obj << /Type /Font /Subtype /Type1 /FirstChar 0 /LastChar 127 /Widths 833 0 R /BaseFont 839 0 R /FontDescriptor 840 0 R >> endobj 833 0 obj [ 778 278 778 500 778 500 778 778 778 778 778 778 778 1000 500 500 778 778 778 778 778 778 778 778 778 778 778 778 1000 1000 778 778 1000 1000 500 500 1000 1000 1000 778 1000 1000 611 611 1000 1000 1000 778 275 1000 667 667 889 889 0 0 556 556 667 500 722 722 778 778 611 798 657 527 771 528 719 595 844 544 678 762 690 1201 820 796 696 817 847 606 545 626 613 988 713 668 725 667 667 667 667 667 611 611 444 444 444 444 500 500 389 389 278 500 500 611 500 278 833 750 833 417 667 667 778 778 444 444 444 611 778 778 778 778 ] endobj 834 0 obj << /Length 835 0 R /Length1 836 0 R /Length2 837 0 R /Length3 838 0 R >> stream %!PS-AdobeFont-1.1: CMSY10 1.0 %%CreationDate: 1991 Aug 15 07:20:57 % Copyright (C) 1997 American Mathematical Society. All Rights Reserved. 11 dict begin /FontInfo 7 dict dup begin /version (1.0) readonly def /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def /FullName (CMSY10) readonly def /FamilyName (Computer Modern) readonly def /Weight (Medium) readonly def /ItalicAngle -14.035 def /isFixedPitch false def end readonly def /FontName /HIYYBA+CMSY10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for dup 0 /minus put dup 3 /asteriskmath put dup 17 /equivalence put dup 20 /lessequal put dup 21 /greaterequal put dup 28 /lessmuch put dup 29 /greatermuch put dup 54 /negationslash put dup 58 /logicalnot put dup 94 /logicaland put dup 95 /logicalor put dup 102 /braceleft put dup 103 /braceright put dup 104 /angbracketleft put dup 105 /angbracketright put dup 106 /bar put dup 120 /section put readonly def /FontBBox{-29 -960 1116 775}readonly def /UniqueID 5000820 def currentdict end currentfile eexec ÙÖoc;„j—¶†©~E£Ðª/ ùÈ­éÙÀX¸~›id}S5žQ!gt¤ê¡âµŽÃkÑJc;•r´NŒ^ô¢¬µŠ ¦X€5¿.ØSyƒŠ– þ+'êIÃqV˜œ…â:¿r㚉#,Ùô#È ždèBZ£¾÷ÞÖ *R’*"7Ù¨ÝyÝçÓò¸—Ç=cîÍÚLIPsFŠ'Ñf> bôaöä ]fvÑÑ+QæAÁÔèâwdüOŒ¿[xìˆ"‡%ñÄS¦xõŠ~{×ÊpÒˆë¡õ|O ¿BÅÝÐÄÇâ/€G¾LÈã3hûÈ+N–g0Þ3²æ¸ËjäU±¯1‡ÿè¥~ø¦akœ·”Dìzq§»=÷U}.K¶˜Y碌à ֻ1?ÔÙCùŸ NÌŠ2Muµö–¸hŽë/åí4ÌÖÐG¤ã€m&v¨ˆ•ü.žðd¯ËÄ)%\‰éо óÀ.¯ušáÿ ?üôÇ¢ŽÿU]«gCÇ‚:^ÖÍïX^‰¸É•[ž9•Þf¢„ˆ&ŸO€sfyõæII¦Ó´µdFZ[?8:Åk:¤ã¿GÀ·ÔÕ¬,Ö×ááÅ‚Xà}¤ÚÊl/è7—zLBñ`µB¹Ê”€ÅšðÂù”—+Ð6ÀÃñ\ûÜ?bÏ>¶öl*¤cºV’9š)˜ðû‰Ó¬«³;ôª*¯b?Yô¿Z…Þ¢Ÿe–FþEhZ0µIö؜ªb'–j½p[¤&š-B Läh“d2IÎ'ÿ›íF¹9Xp÷‚EëŽùS9Xþp.%y¿´­1§"îdC¯b•]ð߃á–Y˜n¸·ùùLê¶µÌC쳇N;…~o¦›zÞ ¾.uÑÖ=½c-¤”´¿ÏGP%=bˆšUŸ¨y}ˆ£5U9ˆ lükS=WU«À( ’ß-¹à‹¢ÖçëÝ!ËJ ’‹…ß-Î-ç]†Þnw‡$Ƙ)$Y²ñEJ,Ÿ'‘&ÝS Þp®!ä,`‡´b Ké²ÙKQ£–µíÂå[£kKÄèy‡ ĈzO2Ê/'‡‹®„R¥—”Ÿµ7Äþ‚oÝ0œÙ[eu fñ.¤­9ªÂc#Àm_1~†úãº+€©ÒJ–ÂN^ kí2š²›™‚Úºxé†m½-Vˆ_¢oÒÈÁß3yxúHýÖÓ¶óð댲“¹îÿ\™î_²TÄ8N¤®k…h:¨ÄɆƒ%L´|cAœIÛ«”ZSÀ¡Å^ùÎù@l-gW,„˜‘±Ê©tMr»„ë£géÉ Ï0±("VÚ_3(÷ýyp ¹w¬CâÝš÷ áRw ‚ƙϺõ¬;$4L° ¢¯nILûg;¿ËÄÌóÏqOFÇ>[pÝòSG>«®!Á´‡©Ýó@¿G Î¡¯Œ¬°iÖÍ‚ z¦BÂÜì<¢~:‚µÖ¤ü½Doó‡þ%iž1õƨ(wÚÕܼÊF]ÁÿÒ…~ÏÞåðlDKÓ< Q*!ãsç0rê[yWêBTGgÍ9]Ñ¢W°ì‚r•Xd%”.ÕHeLŽ-‘kÆPê5¨ƒÜsõE•)‡æ>°Ímº®bÓ?ŠQ™§’¶ ºœÉí2N3!V>åô™ 1<§iøÍXñé…§â9j(Ôw>˜ù`†9áfNR¢—?ùt1 á\Þàoàå †î¹™ÛøŸÎÏoê¼b—`xð­ìkÅ^ÆRžÞ%Ìy"…¹,å *TÝlÏ'b¥Hî+ª`ôŽÿpCÿ¶ÞÁ¥…™˜˜¦ZíŒÊbŽŒ^ƒøí^0ñ^¢´a«R{€æëoH÷7ç ¨¦ -¼<=‡rPS‚nðO0§$³¿ïç“^ñƒ¸¬JYPtÔÛÈwR•WkaRǵ• =Úâí¡ê*ŽªX;î ‘í_Š–pÇKo±Stss×_÷‰¹lqŒúŠ"A~xå73L¬/Èù†~]¨oL*‚6á†W×B÷3wBËüxü®ø|îŠÁ­©H\lq³¶!U•¿Z€…•¼Ùv-QÄj`‡`¿?W±°ÅOVêÖ5ä‹P?{­W{ÏnЫ‹8Yx‘í¿²‡/£vÌûÚêYò`™1úûPZbäV }¬Â1“”~écGòؾüˆH3AôÕG'¶/Ma'Ür:ÿn-Ñaª_!—“(÷„,4¿Ùœlç ¥0sÒ†ÔEÒ0U'ì%–%¦Pµý‰ÚìØ¼U…'­×7¬DŸÈ£Œž‹S¨Ãoü Cú‰Ò[aj žyZØ`É^pF‚Ñ[‹BÝMdâmSÈ>žÆÆRdèÅx2ζ ž0†nûi™Úo“¸Ôe’#ýÐDü®?8ؘñ£¤¼Ô[L³9#6Ìr£å¶’€×¾ô‘ +ïEk0~Q´£_âà€ÂJíÊ:ZÏÎ×à/nˆû¦åš*?,V¾K“Ñ~'¨˜DT‡TCÊè«‚ô·ÒET–F {¾›„h˜¥BPìXeçG•›…´¥ËÕO¸„ê‚2½ÕÃÞÁØÄ%¢ hEEûF?¨P}ãÃ*øN_¸€âä¹I§P÷sw¸AÕ¨w9cÓ †‡mQ2çÅ64e)> òÊ(¯ m±Z´Á|vä\Ä©Xù³MFêŽÅ41}`8÷±°‘1kØO–ÑdßíSË)ÜJ?N†Õüô˜Ì‘\j¯*Bæ ´ÙVÕÇx—.:H®ß=ôH¿ö±@€Ê6hN‘<4­t°óªVwÜ© ¯ø©¨'s8Jè޸쒤Šñ›8Z4v>¦^fsmØ* Œ»¬‘iZĺÓòºð·Ó¦Öúº²Í>B¿-ó-û6Â_Y"ýbªÈÎQÄêi´s‰óJEzõTpdo¤Üd3л—gŒ×(x‡Ÿ@’3U‘œ:]jxûí¾^Ó@7“<æH…©þÁòº‚y‹R=Ùò9½@å¡gtlR«½]*òÜDT£éy2“‚`€ÁÎÈ3¯†ÄÃùŽ_ ^åE§êÊ|ÐÎñIºìcÒýŠj†÷Œ×ìOt…v ª÷éÔ—<† krÝt~ÚYú–‡ýÔãËLȵ.Ÿê»åBTÓST1·ÆÖ×Ã#ÈÿÂ36ÒâêØBã’¦(›µ‚9lnê,¨€†‹ýÙg—íd˜ô¯Qäï„yr’E`Z‹÷²r.Òpÿr¤)Æ®]|{8gF ŽW„CS|glç;ßVß²yúyZ Œ}ì¥Î3¯€®<20×’BcpIK§ê lç6¿µÂúwŒ«9ͰËÐ'IžŸ‘¶'·QHZ.yõ𤶱X¼ÂÃKân† Ö‰K®¸sxæîcÎÖ&ï9E†>ÈtLƒ‡&¦ì÷Ê'kCm[Ïm8n·à‡Áiû¦v϶Ú;›¹ÈwE5¤IMÍ 6‰ù—0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 cleartomark endstream endobj 835 0 obj 4632 endobj 836 0 obj 1146 endobj 837 0 obj 2954 endobj 838 0 obj 532 endobj 839 0 obj /HIYYBA+CMSY10 endobj 840 0 obj << /Ascent 750 /CapHeight 683 /Descent 0 /FontName 839 0 R /ItalicAngle -14 /StemV 85 /XHeight 431 /FontBBox [ -29 -960 1116 775 ] /Flags 4 /CharSet (/minus/asteriskmath/equivalence/lessequal/greaterequal/lessmuch/greatermuch/negationslash/logicalnot/logicaland/logicalor/braceleft/braceright/angbracketleft/angbracketright/bar/section) /FontFile 834 0 R >> endobj 15 0 obj << /Type /Pages /Count 6 /Parent 841 0 R /Kids [3 0 R 23 0 R 40 0 R 61 0 R 75 0 R 93 0 R] >> endobj 116 0 obj << /Type /Pages /Count 6 /Parent 841 0 R /Kids [106 0 R 119 0 R 131 0 R 145 0 R 153 0 R 171 0 R] >> endobj 188 0 obj << /Type /Pages /Count 6 /Parent 841 0 R /Kids [182 0 R 190 0 R 199 0 R 211 0 R 216 0 R 227 0 R] >> endobj 241 0 obj << /Type /Pages /Count 6 /Parent 841 0 R /Kids [237 0 R 244 0 R 252 0 R 263 0 R 557 0 R 673 0 R] >> endobj 752 0 obj << /Type /Pages /Count 1 /Parent 841 0 R /Kids [741 0 R] >> endobj 841 0 obj << /Type /Pages /Count 25 /Kids [15 0 R 116 0 R 188 0 R 241 0 R 752 0 R] >> endobj 842 0 obj << /Type /Outlines /First 567 0 R /Last 670 0 R /Count 9 >> endobj 670 0 obj << /Title 671 0 R /A 669 0 R /Parent 592 0 R /Prev 667 0 R >> endobj 667 0 obj << /Title 668 0 R /A 666 0 R /Parent 592 0 R /Prev 664 0 R /Next 670 0 R >> endobj 664 0 obj << /Title 665 0 R /A 663 0 R /Parent 592 0 R /Prev 661 0 R /Next 667 0 R >> endobj 661 0 obj << /Title 662 0 R /A 660 0 R /Parent 592 0 R /Prev 658 0 R /Next 664 0 R >> endobj 658 0 obj << /Title 659 0 R /A 657 0 R /Parent 592 0 R /Prev 655 0 R /Next 661 0 R >> endobj 655 0 obj << /Title 656 0 R /A 654 0 R /Parent 592 0 R /Prev 652 0 R /Next 658 0 R >> endobj 652 0 obj << /Title 653 0 R /A 651 0 R /Parent 592 0 R /Prev 649 0 R /Next 655 0 R >> endobj 649 0 obj << /Title 650 0 R /A 648 0 R /Parent 592 0 R /Prev 646 0 R /Next 652 0 R >> endobj 646 0 obj << /Title 647 0 R /A 645 0 R /Parent 592 0 R /Prev 643 0 R /Next 649 0 R >> endobj 643 0 obj << /Title 644 0 R /A 642 0 R /Parent 592 0 R /Prev 640 0 R /Next 646 0 R >> endobj 640 0 obj << /Title 641 0 R /A 639 0 R /Parent 592 0 R /Prev 637 0 R /Next 643 0 R >> endobj 637 0 obj << /Title 638 0 R /A 636 0 R /Parent 592 0 R /Prev 634 0 R /Next 640 0 R >> endobj 634 0 obj << /Title 635 0 R /A 633 0 R /Parent 592 0 R /Prev 631 0 R /Next 637 0 R >> endobj 631 0 obj << /Title 632 0 R /A 630 0 R /Parent 592 0 R /Prev 628 0 R /Next 634 0 R >> endobj 628 0 obj << /Title 629 0 R /A 627 0 R /Parent 592 0 R /Prev 625 0 R /Next 631 0 R >> endobj 625 0 obj << /Title 626 0 R /A 624 0 R /Parent 592 0 R /Prev 622 0 R /Next 628 0 R >> endobj 622 0 obj << /Title 623 0 R /A 621 0 R /Parent 592 0 R /Prev 619 0 R /Next 625 0 R >> endobj 619 0 obj << /Title 620 0 R /A 618 0 R /Parent 592 0 R /Prev 616 0 R /Next 622 0 R >> endobj 616 0 obj << /Title 617 0 R /A 615 0 R /Parent 592 0 R /Prev 613 0 R /Next 619 0 R >> endobj 613 0 obj << /Title 614 0 R /A 612 0 R /Parent 592 0 R /Prev 610 0 R /Next 616 0 R >> endobj 610 0 obj << /Title 611 0 R /A 609 0 R /Parent 592 0 R /Prev 607 0 R /Next 613 0 R >> endobj 607 0 obj << /Title 608 0 R /A 606 0 R /Parent 592 0 R /Prev 604 0 R /Next 610 0 R >> endobj 604 0 obj << /Title 605 0 R /A 603 0 R /Parent 592 0 R /Prev 601 0 R /Next 607 0 R >> endobj 601 0 obj << /Title 602 0 R /A 600 0 R /Parent 592 0 R /Prev 598 0 R /Next 604 0 R >> endobj 598 0 obj << /Title 599 0 R /A 597 0 R /Parent 592 0 R /Prev 595 0 R /Next 601 0 R >> endobj 595 0 obj << /Title 596 0 R /A 594 0 R /Parent 592 0 R /Next 598 0 R >> endobj 592 0 obj << /Title 593 0 R /A 591 0 R /Parent 842 0 R /Prev 588 0 R /First 595 0 R /Last 670 0 R /Count -26 >> endobj 588 0 obj << /Title 589 0 R /A 587 0 R /Parent 842 0 R /Prev 585 0 R /Next 592 0 R >> endobj 585 0 obj << /Title 586 0 R /A 584 0 R /Parent 842 0 R /Prev 582 0 R /Next 588 0 R >> endobj 582 0 obj << /Title 583 0 R /A 581 0 R /Parent 842 0 R /Prev 579 0 R /Next 585 0 R >> endobj 579 0 obj << /Title 580 0 R /A 578 0 R /Parent 842 0 R /Prev 576 0 R /Next 582 0 R >> endobj 576 0 obj << /Title 577 0 R /A 575 0 R /Parent 842 0 R /Prev 573 0 R /Next 579 0 R >> endobj 573 0 obj << /Title 574 0 R /A 572 0 R /Parent 842 0 R /Prev 570 0 R /Next 576 0 R >> endobj 570 0 obj << /Title 571 0 R /A 569 0 R /Parent 842 0 R /Prev 567 0 R /Next 573 0 R >> endobj 567 0 obj << /Title 568 0 R /A 566 0 R /Parent 842 0 R /Next 570 0 R >> endobj 843 0 obj << /Names [(NOS) 590 0 R] /Limits [(NOS) (NOS)] >> endobj 844 0 obj << /Kids [843 0 R] >> endobj 845 0 obj << /Dests 844 0 R >> endobj 846 0 obj << /Type /Catalog /Pages 841 0 R /Outlines 842 0 R /Names 845 0 R /PageMode /UseOutlines >> endobj 847 0 obj << /Creator (TeX) /Producer (pdfTeX-0.13d) /CreationDate (D:20010308005100) >> endobj xref 0 848 0000000000 65535 f 0000001690 00000 n 0000001727 00000 n 0000001196 00000 n 0000000009 00000 n 0000001176 00000 n 0000234651 00000 n 0000214708 00000 n 0000203637 00000 n 0000191021 00000 n 0000183457 00000 n 0000174908 00000 n 0000001335 00000 n 0000158485 00000 n 0000001503 00000 n 0000240562 00000 n 0000004913 00000 n 0000004991 00000 n 0000007959 00000 n 0000007998 00000 n 0000042829 00000 n 0000004952 00000 n 0000005030 00000 n 0000003942 00000 n 0000001874 00000 n 0000003921 00000 n 0000153747 00000 n 0000004112 00000 n 0000004246 00000 n 0000004380 00000 n 0000004514 00000 n 0000004647 00000 n 0000004781 00000 n 0000016288 00000 n 0000028002 00000 n 0000028042 00000 n 0000042749 00000 n 0000042789 00000 n 0000053221 00000 n 0000008037 00000 n 0000006428 00000 n 0000005153 00000 n 0000006407 00000 n 0000006626 00000 n 0000006760 00000 n 0000006892 00000 n 0000140962 00000 n 0000007024 00000 n 0000007158 00000 n 0000007292 00000 n 0000007425 00000 n 0000007559 00000 n 0000007693 00000 n 0000007827 00000 n 0000010893 00000 n 0000010932 00000 n 0000010971 00000 n 0000011009 00000 n 0000011047 00000 n 0000016249 00000 n 0000011085 00000 n 0000010777 00000 n 0000008172 00000 n 0000010756 00000 n 0000137230 00000 n 0000016327 00000 n 0000023880 00000 n 0000028082 00000 n 0000031067 00000 n 0000016366 00000 n 0000019982 00000 n 0000020021 00000 n 0000020060 00000 n 0000020099 00000 n 0000016405 00000 n 0000014155 00000 n 0000011243 00000 n 0000014134 00000 n 0000014381 00000 n 0000014515 00000 n 0000014648 00000 n 0000014780 00000 n 0000014914 00000 n 0000015047 00000 n 0000015181 00000 n 0000015315 00000 n 0000015448 00000 n 0000015582 00000 n 0000015715 00000 n 0000015848 00000 n 0000015981 00000 n 0000016115 00000 n 0000020138 00000 n 0000018720 00000 n 0000016551 00000 n 0000018699 00000 n 0000018908 00000 n 0000019041 00000 n 0000019175 00000 n 0000019308 00000 n 0000019442 00000 n 0000019577 00000 n 0000019712 00000 n 0000019847 00000 n 0000031026 00000 n 0000023920 00000 n 0000022750 00000 n 0000020284 00000 n 0000022728 00000 n 0000022938 00000 n 0000023072 00000 n 0000023206 00000 n 0000023340 00000 n 0000023475 00000 n 0000023610 00000 n 0000023746 00000 n 0000240671 00000 n 0000027961 00000 n 0000028122 00000 n 0000026833 00000 n 0000024044 00000 n 0000026811 00000 n 0000027021 00000 n 0000027156 00000 n 0000027291 00000 n 0000027424 00000 n 0000027557 00000 n 0000027691 00000 n 0000027826 00000 n 0000033195 00000 n 0000031107 00000 n 0000030036 00000 n 0000028258 00000 n 0000030014 00000 n 0000030216 00000 n 0000030351 00000 n 0000030486 00000 n 0000030621 00000 n 0000030757 00000 n 0000030891 00000 n 0000033154 00000 n 0000038131 00000 n 0000038213 00000 n 0000046200 00000 n 0000033236 00000 n 0000032735 00000 n 0000031243 00000 n 0000032713 00000 n 0000032883 00000 n 0000033018 00000 n 0000038172 00000 n 0000048789 00000 n 0000038254 00000 n 0000036418 00000 n 0000033372 00000 n 0000036396 00000 n 0000036638 00000 n 0000036773 00000 n 0000036909 00000 n 0000037045 00000 n 0000037181 00000 n 0000037317 00000 n 0000037453 00000 n 0000037588 00000 n 0000037724 00000 n 0000037860 00000 n 0000037996 00000 n 0000042910 00000 n 0000042869 00000 n 0000046159 00000 n 0000042951 00000 n 0000041766 00000 n 0000038401 00000 n 0000041744 00000 n 0000041946 00000 n 0000042079 00000 n 0000042212 00000 n 0000042346 00000 n 0000042482 00000 n 0000042615 00000 n 0000051648 00000 n 0000046241 00000 n 0000045597 00000 n 0000043098 00000 n 0000045575 00000 n 0000045753 00000 n 0000045888 00000 n 0000046023 00000 n 0000240788 00000 n 0000048830 00000 n 0000048225 00000 n 0000046389 00000 n 0000048203 00000 n 0000048381 00000 n 0000048517 00000 n 0000048653 00000 n 0000051607 00000 n 0000051689 00000 n 0000051730 00000 n 0000050756 00000 n 0000048978 00000 n 0000050734 00000 n 0000050928 00000 n 0000051064 00000 n 0000051199 00000 n 0000051335 00000 n 0000051471 00000 n 0000053180 00000 n 0000056454 00000 n 0000059555 00000 n 0000053261 00000 n 0000052907 00000 n 0000051889 00000 n 0000052886 00000 n 0000053047 00000 n 0000056495 00000 n 0000056036 00000 n 0000053397 00000 n 0000056014 00000 n 0000056184 00000 n 0000134230 00000 n 0000056318 00000 n 0000065499 00000 n 0000069290 00000 n 0000059596 00000 n 0000062751 00000 n 0000059635 00000 n 0000058559 00000 n 0000056656 00000 n 0000058537 00000 n 0000058739 00000 n 0000058875 00000 n 0000059011 00000 n 0000059147 00000 n 0000059283 00000 n 0000059419 00000 n 0000062792 00000 n 0000062475 00000 n 0000059796 00000 n 0000062453 00000 n 0000062615 00000 n 0000240905 00000 n 0000065458 00000 n 0000065540 00000 n 0000064894 00000 n 0000062951 00000 n 0000064872 00000 n 0000065050 00000 n 0000065186 00000 n 0000065322 00000 n 0000069331 00000 n 0000069372 00000 n 0000068296 00000 n 0000065699 00000 n 0000068274 00000 n 0000068476 00000 n 0000068611 00000 n 0000068747 00000 n 0000068882 00000 n 0000069018 00000 n 0000069154 00000 n 0000116462 00000 n 0000116503 00000 n 0000074834 00000 n 0000069508 00000 n 0000074812 00000 n 0000077286 00000 n 0000077421 00000 n 0000077556 00000 n 0000077691 00000 n 0000077827 00000 n 0000077963 00000 n 0000078099 00000 n 0000078234 00000 n 0000078369 00000 n 0000078504 00000 n 0000078640 00000 n 0000078775 00000 n 0000078909 00000 n 0000079045 00000 n 0000079179 00000 n 0000079313 00000 n 0000079447 00000 n 0000079581 00000 n 0000079716 00000 n 0000079851 00000 n 0000079986 00000 n 0000080121 00000 n 0000080256 00000 n 0000080391 00000 n 0000080527 00000 n 0000080660 00000 n 0000080793 00000 n 0000080927 00000 n 0000081062 00000 n 0000081196 00000 n 0000081331 00000 n 0000081467 00000 n 0000081603 00000 n 0000081739 00000 n 0000081873 00000 n 0000082009 00000 n 0000082144 00000 n 0000082279 00000 n 0000082414 00000 n 0000082550 00000 n 0000082685 00000 n 0000082819 00000 n 0000082955 00000 n 0000083090 00000 n 0000083225 00000 n 0000083361 00000 n 0000083497 00000 n 0000083633 00000 n 0000083768 00000 n 0000083902 00000 n 0000084037 00000 n 0000084172 00000 n 0000084306 00000 n 0000084441 00000 n 0000084576 00000 n 0000084711 00000 n 0000084847 00000 n 0000084983 00000 n 0000085119 00000 n 0000085255 00000 n 0000085391 00000 n 0000085527 00000 n 0000085663 00000 n 0000085797 00000 n 0000085932 00000 n 0000086067 00000 n 0000086202 00000 n 0000086337 00000 n 0000086472 00000 n 0000086607 00000 n 0000086741 00000 n 0000086876 00000 n 0000087012 00000 n 0000087148 00000 n 0000087284 00000 n 0000087418 00000 n 0000087552 00000 n 0000087687 00000 n 0000087822 00000 n 0000087958 00000 n 0000088094 00000 n 0000088230 00000 n 0000088366 00000 n 0000088501 00000 n 0000088637 00000 n 0000088773 00000 n 0000088909 00000 n 0000089044 00000 n 0000089180 00000 n 0000089315 00000 n 0000089451 00000 n 0000089585 00000 n 0000089718 00000 n 0000089851 00000 n 0000089985 00000 n 0000090121 00000 n 0000090257 00000 n 0000090393 00000 n 0000090529 00000 n 0000090664 00000 n 0000090799 00000 n 0000090934 00000 n 0000091070 00000 n 0000091206 00000 n 0000091342 00000 n 0000091477 00000 n 0000091613 00000 n 0000091749 00000 n 0000091884 00000 n 0000092020 00000 n 0000092155 00000 n 0000092290 00000 n 0000092425 00000 n 0000092561 00000 n 0000092697 00000 n 0000092832 00000 n 0000092964 00000 n 0000093096 00000 n 0000093229 00000 n 0000093363 00000 n 0000093497 00000 n 0000093632 00000 n 0000093767 00000 n 0000093902 00000 n 0000094037 00000 n 0000094173 00000 n 0000094309 00000 n 0000094445 00000 n 0000094580 00000 n 0000094716 00000 n 0000094852 00000 n 0000094988 00000 n 0000095124 00000 n 0000095260 00000 n 0000095394 00000 n 0000095530 00000 n 0000095665 00000 n 0000095800 00000 n 0000095936 00000 n 0000096070 00000 n 0000096204 00000 n 0000096339 00000 n 0000096475 00000 n 0000096610 00000 n 0000096746 00000 n 0000096881 00000 n 0000097013 00000 n 0000097148 00000 n 0000097283 00000 n 0000097419 00000 n 0000097555 00000 n 0000097690 00000 n 0000097826 00000 n 0000097962 00000 n 0000098097 00000 n 0000098233 00000 n 0000098369 00000 n 0000098503 00000 n 0000098638 00000 n 0000098771 00000 n 0000098905 00000 n 0000099040 00000 n 0000099175 00000 n 0000099309 00000 n 0000099444 00000 n 0000099577 00000 n 0000099713 00000 n 0000099848 00000 n 0000099984 00000 n 0000100119 00000 n 0000100253 00000 n 0000100388 00000 n 0000100523 00000 n 0000100659 00000 n 0000100795 00000 n 0000100930 00000 n 0000101065 00000 n 0000101200 00000 n 0000101335 00000 n 0000101470 00000 n 0000101603 00000 n 0000101738 00000 n 0000101873 00000 n 0000102009 00000 n 0000102144 00000 n 0000102280 00000 n 0000102416 00000 n 0000102551 00000 n 0000102686 00000 n 0000102820 00000 n 0000102954 00000 n 0000103086 00000 n 0000103221 00000 n 0000103357 00000 n 0000103492 00000 n 0000103628 00000 n 0000103763 00000 n 0000103899 00000 n 0000104035 00000 n 0000104171 00000 n 0000104307 00000 n 0000104443 00000 n 0000104578 00000 n 0000104714 00000 n 0000104850 00000 n 0000104984 00000 n 0000105119 00000 n 0000105254 00000 n 0000105389 00000 n 0000105524 00000 n 0000105660 00000 n 0000105795 00000 n 0000105930 00000 n 0000106066 00000 n 0000106202 00000 n 0000106336 00000 n 0000106472 00000 n 0000106608 00000 n 0000106744 00000 n 0000106880 00000 n 0000107016 00000 n 0000107152 00000 n 0000107286 00000 n 0000107421 00000 n 0000107557 00000 n 0000107693 00000 n 0000107827 00000 n 0000107961 00000 n 0000108095 00000 n 0000108230 00000 n 0000108364 00000 n 0000108496 00000 n 0000108631 00000 n 0000108766 00000 n 0000108901 00000 n 0000109036 00000 n 0000109172 00000 n 0000109308 00000 n 0000109444 00000 n 0000109580 00000 n 0000109716 00000 n 0000109851 00000 n 0000109986 00000 n 0000110120 00000 n 0000110255 00000 n 0000110390 00000 n 0000110526 00000 n 0000110661 00000 n 0000110797 00000 n 0000110933 00000 n 0000111068 00000 n 0000111204 00000 n 0000111336 00000 n 0000111469 00000 n 0000111604 00000 n 0000111739 00000 n 0000111874 00000 n 0000112008 00000 n 0000112143 00000 n 0000112278 00000 n 0000112412 00000 n 0000112547 00000 n 0000112682 00000 n 0000112816 00000 n 0000112951 00000 n 0000113086 00000 n 0000113221 00000 n 0000113355 00000 n 0000113490 00000 n 0000113625 00000 n 0000113760 00000 n 0000113893 00000 n 0000114029 00000 n 0000114163 00000 n 0000114298 00000 n 0000114434 00000 n 0000114570 00000 n 0000114706 00000 n 0000114842 00000 n 0000114978 00000 n 0000115114 00000 n 0000115250 00000 n 0000115386 00000 n 0000115522 00000 n 0000115657 00000 n 0000115791 00000 n 0000115926 00000 n 0000116059 00000 n 0000116194 00000 n 0000116329 00000 n 0000118065 00000 n 0000117072 00000 n 0000116639 00000 n 0000117051 00000 n 0000117252 00000 n 0000117388 00000 n 0000117523 00000 n 0000117658 00000 n 0000117793 00000 n 0000117929 00000 n 0000118179 00000 n 0000244429 00000 n 0000118220 00000 n 0000118252 00000 n 0000244336 00000 n 0000118294 00000 n 0000118336 00000 n 0000244243 00000 n 0000118378 00000 n 0000118406 00000 n 0000244150 00000 n 0000118449 00000 n 0000118477 00000 n 0000244057 00000 n 0000118520 00000 n 0000118549 00000 n 0000243964 00000 n 0000118592 00000 n 0000118632 00000 n 0000243871 00000 n 0000118675 00000 n 0000118707 00000 n 0000243778 00000 n 0000118750 00000 n 0000132118 00000 n 0000118775 00000 n 0000243659 00000 n 0000118816 00000 n 0000118857 00000 n 0000243580 00000 n 0000118900 00000 n 0000118944 00000 n 0000243487 00000 n 0000118987 00000 n 0000119036 00000 n 0000243394 00000 n 0000119079 00000 n 0000119123 00000 n 0000243301 00000 n 0000119166 00000 n 0000119212 00000 n 0000243208 00000 n 0000119254 00000 n 0000119296 00000 n 0000243115 00000 n 0000119338 00000 n 0000119388 00000 n 0000243022 00000 n 0000119430 00000 n 0000119475 00000 n 0000242929 00000 n 0000119518 00000 n 0000119569 00000 n 0000242836 00000 n 0000119611 00000 n 0000119659 00000 n 0000242743 00000 n 0000119701 00000 n 0000119737 00000 n 0000242650 00000 n 0000119780 00000 n 0000119833 00000 n 0000242557 00000 n 0000119876 00000 n 0000119936 00000 n 0000242464 00000 n 0000119978 00000 n 0000120031 00000 n 0000242371 00000 n 0000120073 00000 n 0000120121 00000 n 0000242278 00000 n 0000120163 00000 n 0000120211 00000 n 0000242185 00000 n 0000120253 00000 n 0000120301 00000 n 0000242092 00000 n 0000120343 00000 n 0000120391 00000 n 0000241999 00000 n 0000120433 00000 n 0000120485 00000 n 0000241906 00000 n 0000120528 00000 n 0000120588 00000 n 0000241813 00000 n 0000120631 00000 n 0000120679 00000 n 0000241720 00000 n 0000120722 00000 n 0000120786 00000 n 0000241627 00000 n 0000120829 00000 n 0000120895 00000 n 0000241534 00000 n 0000120938 00000 n 0000120990 00000 n 0000241441 00000 n 0000121033 00000 n 0000121083 00000 n 0000241348 00000 n 0000121125 00000 n 0000121165 00000 n 0000241269 00000 n 0000121207 00000 n 0000132160 00000 n 0000122826 00000 n 0000121257 00000 n 0000122804 00000 n 0000123470 00000 n 0000123606 00000 n 0000123742 00000 n 0000123878 00000 n 0000124014 00000 n 0000124149 00000 n 0000124284 00000 n 0000124420 00000 n 0000124555 00000 n 0000124691 00000 n 0000124826 00000 n 0000124960 00000 n 0000125094 00000 n 0000125228 00000 n 0000125363 00000 n 0000125497 00000 n 0000125630 00000 n 0000125764 00000 n 0000125900 00000 n 0000126036 00000 n 0000126169 00000 n 0000126304 00000 n 0000126438 00000 n 0000126572 00000 n 0000126707 00000 n 0000126842 00000 n 0000126975 00000 n 0000127110 00000 n 0000127245 00000 n 0000127380 00000 n 0000127515 00000 n 0000127651 00000 n 0000127786 00000 n 0000127921 00000 n 0000128057 00000 n 0000128192 00000 n 0000128327 00000 n 0000128462 00000 n 0000128597 00000 n 0000128732 00000 n 0000128867 00000 n 0000129002 00000 n 0000129137 00000 n 0000129272 00000 n 0000129407 00000 n 0000129542 00000 n 0000129677 00000 n 0000129813 00000 n 0000129949 00000 n 0000130084 00000 n 0000130220 00000 n 0000130356 00000 n 0000130491 00000 n 0000130627 00000 n 0000130763 00000 n 0000130899 00000 n 0000131035 00000 n 0000131171 00000 n 0000131307 00000 n 0000131443 00000 n 0000131578 00000 n 0000131713 00000 n 0000131848 00000 n 0000131983 00000 n 0000134138 00000 n 0000132870 00000 n 0000132274 00000 n 0000132849 00000 n 0000133066 00000 n 0000133199 00000 n 0000133333 00000 n 0000133464 00000 n 0000133599 00000 n 0000133734 00000 n 0000133869 00000 n 0000134004 00000 n 0000241022 00000 n 0000134366 00000 n 0000134913 00000 n 0000136918 00000 n 0000136940 00000 n 0000136961 00000 n 0000136982 00000 n 0000137003 00000 n 0000137034 00000 n 0000137365 00000 n 0000137923 00000 n 0000140643 00000 n 0000140665 00000 n 0000140686 00000 n 0000140708 00000 n 0000140729 00000 n 0000140759 00000 n 0000141097 00000 n 0000141631 00000 n 0000153331 00000 n 0000153354 00000 n 0000153376 00000 n 0000153398 00000 n 0000153419 00000 n 0000153451 00000 n 0000153882 00000 n 0000154421 00000 n 0000158134 00000 n 0000158156 00000 n 0000158177 00000 n 0000158199 00000 n 0000158220 00000 n 0000158252 00000 n 0000158620 00000 n 0000159153 00000 n 0000174234 00000 n 0000174257 00000 n 0000174279 00000 n 0000174302 00000 n 0000174323 00000 n 0000174356 00000 n 0000175043 00000 n 0000175581 00000 n 0000183054 00000 n 0000183076 00000 n 0000183098 00000 n 0000183120 00000 n 0000183141 00000 n 0000183171 00000 n 0000183592 00000 n 0000184125 00000 n 0000190646 00000 n 0000190668 00000 n 0000190690 00000 n 0000190712 00000 n 0000190733 00000 n 0000190765 00000 n 0000191155 00000 n 0000191693 00000 n 0000203189 00000 n 0000203212 00000 n 0000203234 00000 n 0000203256 00000 n 0000203277 00000 n 0000203309 00000 n 0000203771 00000 n 0000204307 00000 n 0000214273 00000 n 0000214295 00000 n 0000214317 00000 n 0000214339 00000 n 0000214360 00000 n 0000214390 00000 n 0000214842 00000 n 0000215378 00000 n 0000233975 00000 n 0000233998 00000 n 0000234020 00000 n 0000234043 00000 n 0000234064 00000 n 0000234095 00000 n 0000234785 00000 n 0000235329 00000 n 0000240068 00000 n 0000240090 00000 n 0000240112 00000 n 0000240134 00000 n 0000240155 00000 n 0000240187 00000 n 0000241099 00000 n 0000241192 00000 n 0000244508 00000 n 0000244576 00000 n 0000244615 00000 n 0000244653 00000 n 0000244762 00000 n trailer << /Size 848 /Root 846 0 R /Info 847 0 R >> startxref 244858 %%EOF qprint-1.0.dfsg.2/qprint.w000066400000000000000000001155201111262404100154520ustar00rootroot00000000000000% % Q P R I N T % % by John Walker % http://www.fourmilab.ch/ % % What's all this, you ask? Well, this is a "literate program", % written in the CWEB language created by Donald E. Knuth and % Silvio Levy. This file includes both the C source code for % the program and internal documentation in TeX. Processing % this file with the CTANGLE utility produces the C source file, % while the CWEAVE program emits documentation in TeX. The % current version of these programs may be downloaded from: % % http://www-cs-faculty.stanford.edu/~knuth/cweb.html % % where you will find additional information on literate % programming and examples of other programs written in this % manner. % % If you don't want to wade through all these details, don't % worry; this distribution includes a .c file already % extracted and ready to compile. If "make" complains that it % can't find "ctangle" or "cweave", just "touch *.c" % and re-make--apparently the process of extracting the files % from the archive messed up the date and time, misleading % make into believing it needed to rebuild those files. @** Introduction. \vskip 15pt \centerline{\ttitlefont QPRINT} \vskip 10pt \centerline{\titlefont Encode or decode file as MIME Quoted-Printable (RFC~1521)} \vskip 15pt \centerline{\pdfURL{by John Walker}{http://www.fourmilab.ch/}} \vskip 15pt \centerline{This program is in the public domain.} \vskip 15pt This program is a filter which encodes and decodes files in the ``Quoted-Printable'' form as defined in RFC~1521. This is a MIME content encoding intended primarily for text whose content consists primarily of ASCII printable characters. This encoding distinguishes white space and end of line sequences from other binary codes which don't correspond to ASCII printable characters. It's possible to encode a binary file in this form by specifying the \.{-b} or \.{--binary} and, when appropriate the \.{-p} or \.{--paranoid} options, but it's a pretty dopey thing to do; \pdfURL{{\tt base64}}{http://www.fourmilab.ch/webtools/base64/} encoding is far better when the input data are known to be binary. \vskip 30pt @d REVDATE "5th March 2001" @** Program global context. Let's start by declaring global definitions and program-wide variables and including system interface definitions. @d TRUE 1 @d FALSE 0 @d LINELEN 72 /* Encoded line length (max 76) */ @d MAXINLINE 256 /* Maximum input line length */ @c #include "config.h" /* System-dependent configuration */ @h @@/ @@/ @@/ @@/ @ Because we may be built on an EBCDIC system, we can't assume that quoted characters generate the ASCII character codes we require for output. The following definitions provide the ASCII codes for characters we need in the program. @d ASCII_HORIZONTAL_TAB 9 /* Horizontal tab */ @d ASCII_LINE_FEED 10 /* Line feed */ @d ASCII_CARRIAGE_RETURN 13 /* Carriage return */ @d ASCII_SPACE 32 /* Space */ @d ASCII_0 48 /* Digit 0 */ @d ASCII_EQUAL_SIGN 61 /* Equal sign */ @d ASCII_A 65 /* Letter A */ @d ASCII_LOWER_CASE_A 97 /* Letter a */ @ We include the following POSIX-standard C library files. Conditionals based on a probe of the system by the \.{configure} program allow us to cope with the peculiarities of specific systems. @= #include #include #include #ifdef HAVE_STRING_H #include #else #ifdef HAVE_STRINGS_H #include #endif #endif #ifdef HAVE_GETOPT #ifdef HAVE_UNISTD_H #include #endif #else #include "getopt.h" /* No system \.{getopt}--use our own */ #endif @ The following include files are needed in Win32 builds to permit setting already-open I/O streams to binary mode. @= #ifdef _WIN32 #define FORCE_BINARY_IO #include #include #endif @ These variables are global to all procedures; many are used as ``hidden arguments'' to functions in order to simplify calling sequences. We'll declare additional global variables as we need them in successive sections. @= typedef unsigned char byte; /* Byte type */ static FILE *fi; /* Input file */ static FILE *fo; /* Output file */ @** Encoding. The following sections handle encoding the input stream into a Quoted-Printable output stream. @ Procedure |output_line_break| outputs the standard RFC 822 line break sequence of carriage-return, line-feed and resets the current output line length to zero. @c static void output_line_break(void) { static char line_break[3] = { ASCII_CARRIAGE_RETURN, ASCII_LINE_FEED, 0 }; fputs(line_break, fo); current_line_length = 0; } @ Procedure |check_line_length| determines whether |chars_required| will fit in the current line. If not, a ``soft line break'' consisting of a trailing ASCII equal sign and the end of line sequence must be appended. Note that since the final ``\.{=}'' in a soft line break counts against the maximum line length (|LINELEN|), we must break a line one character early so as to leave room for a subsequent soft line break. The carriage-return / line-feed at the end of the line {\it does not} count against the maximum line length. @c static void check_line_length(int chars_required) { if ((current_line_length + chars_required) >= (LINELEN - 1)) { putc(ASCII_EQUAL_SIGN, fo); output_line_break(); } current_line_length += chars_required; } @ Procedure |emit_literally| outputs a non white space character which doesn't need encoding to the output stream. @c static void emit_literally(int ch) { check_line_length(1); putc(ch, fo); } @ Procedure |emit_hex_encoded| outputs character |ch| encoded as an equal sign followed by two ASCII characters encoded as hexadecimal. @c static void emit_hex_encoded(int ch) { static char hex[16] = { ASCII_0, ASCII_0 + 1, ASCII_0 + 2, ASCII_0 + 3, ASCII_0 + 4, ASCII_0 + 5, ASCII_0 + 6, ASCII_0 + 7, ASCII_0 + 8, ASCII_0 + 9, ASCII_A, ASCII_A + 1, ASCII_A + 2, ASCII_A + 3, ASCII_A + 4, ASCII_A + 5 }; check_line_length(3); putc(ASCII_EQUAL_SIGN, fo); putc(hex[(ch >> 4) & 0xF], fo); putc(hex[ch & 0xF], fo); } @ Procedure |encode| encodes the file opened as |fi| into Quoted-Printable, writing the output to |fo|. This simply reads the input file character by character and calls |emit_encoded_character| to write encoded characters to the output stream. This isn't entirely squeaky-clean in that if the character we pass to |emit_encoded_character| is the first character of an end of line sequence, we may look ahead to see if it's a CR/LF or LF/CR. But since the code which makes this check pushes back characters not part of a two byte end of line sequence, there's no need to worry about such detail at this level. @c static void encode(void) { int i, ch; @;@\ while ((ch = getc(fi)) != EOF) { @; } @; @; } @ The |character_class| indicates which rule in the RFC (with some extensions) governs given octet codes being encoded as Quoted-Printable. @+= typedef enum { Rule_1, Rule_2, Rule_3, Rule_4, Rule_EBCDIC } character_encoding_rule; static character_encoding_rule character_class[256]; /* Character class (by rule in RFC) */ @ Fill the |character_class| array with the classification of characters in terms which rule in the RFC definition of Quoted-Printable encoding governs their handling. Note that in all code which initialises this table we must specify ASCII codes numerically rather than as quoted |char| constants, which will be incorrrect when the program is built on an EBCDIC system. @= @; @; @; @; @; @ Initially set the |character_class| of all characters to Rule 1 (General 8-bit representation). This is the default for characters not otherwise specified. @= for (i = 0; i <= 255; i++) { character_class[i] = Rule_1; } @ Rule 2 governs ``Literal representation''--characters with code it's safe to represent in ASCII. @= for (i = 33; i <= 60; i++) { character_class[i] = Rule_2; } for (i = 62; i <= 126; i++) { character_class[i] = Rule_2; } @ Rule 3 governs handling of the ``white space'' character codes for horizontal tab (HT) and space. @= character_class[ASCII_HORIZONTAL_TAB] = Rule_3; /* Horizontal tab */ character_class[ASCII_SPACE] = Rule_3; /* Space */ @ Rule 4 applies to end of line sequences in the input file, depend upon the host system's end of line convention. When encoding pure binary data, these characters {\it must} be encoded in general 8-bit representation according to Rule 1. @= character_class[ASCII_LINE_FEED] = Rule_4; /* Line feed */ character_class[ASCII_CARRIAGE_RETURN] = Rule_4; /* Carriage return */ @ ASCII characters with no EBCDIC equivalent or whose EBCDIC code differs from that in ASCII must be quoted according to Rule 1 for maximal compatibility with EBCDIC systems. We flag these characters (which would otherwise fall under Rule 2) to permit optional encoding for EBCDIC destination systems. @= character_class[33] = /* |'!'| */ character_class[34] = /* |'"'| */ character_class[35] = /* |'#'| */ character_class[36] = /* |'$'| */ character_class[64] = /* |'@@'| */ character_class[91] = /* |'['| */ character_class[92] = /* |'\\'| */ character_class[93] = /* |']'| */ character_class[94] = /* |'^'| */ character_class[96] = /* |'\`'| */ character_class[123] = /* |'{'| */ character_class[124] = /* |'|'| */ character_class[125] = /* |'}'| */ character_class[126] = Rule_EBCDIC; /* |'~'| */ @ Output character |ch| to the output stream, encoded as required. If |paranoid| is set, we encode all printable ASCII character as hexadecimal escapes. If |EBCDIC_out| is set, we quote ASCII characters which aren't present in EBCDIC. If |binary_input| is set, end of line sequences are also quoted. @= switch (character_class[ch]) { case Rule_1: /* General 8-bit representation: encode as =XX */ @; emit_hex_encoded(ch); break; case Rule_2: /* Literal representation: character doesn't need encoding */ @; if (paranoid) { emit_hex_encoded(ch); } else { emit_literally(ch); } break; case Rule_3: /* White space: may not occur at end of line */ if (paranoid) { emit_hex_encoded(ch); } else { @; /* Flush already-pending white space */ pending_white_space = ch; /* Set this white space as pending */ } break; case Rule_4: /* Line break sequence */ if (binary_input) { /* If we're treating the input as a pure binary file, we must encode end of line characters as hexadecimal rather than converting them to the canonical end of line sequence. */ @; emit_hex_encoded(ch); } else { @; /* We mustn't end a line with white space. If there is pending white space at the end of line, emit it hex encoded before the end of line sequence. */ if (pending_white_space != 0) { emit_hex_encoded(pending_white_space); pending_white_space = 0; } output_line_break(); } break; case Rule_EBCDIC: @; /* If we're generating EBCDIC-compatible output, quote the ASCII characters which differ in EBCDIC. */ if (EBCDIC_out || paranoid) { emit_hex_encoded(ch); } else { emit_literally(ch); } break; } @ Procedure |is_end_of_line_sequence| tests whether the character |ch| is the first character of an end of line sequence and, if so, digests any subsequent characters also part of the end of line sequence. Returns |TRUE| if an end of line sequence is present and |FALSE| otherwise. @c static int is_end_of_line_sequence(int ch) { if ((ch == ASCII_CARRIAGE_RETURN) || (ch == ASCII_LINE_FEED)) { @; return TRUE; } return FALSE; } @ To comply with Rule 5 (Soft Line Breaks), we need to keep track of the length of output lines as we assemble them and break them so they don't exceed |LINELEN| characters. @+= static int current_line_length = 0; /* Length of current line */ @ In the interest of readability, we want to encode white space (|Rule_3|) characters: spaces and horizontal tabs as themselves wherever possible, but since we must cope with transfer agents which add and delete trailing white space at will, we must ensure that the last character of each encoded line is never significant white space. We accomplish this by deferring output of white space by storing its character code in |pending_white_space| and emitting it unencoded only upon discovering that there's a subsequent non white space character. If, at end of line, we discover there's white space pending, we must encode it as Hex with |emit_hex_encoded| according to Rule 1. @+= static int pending_white_space = 0; /* Pending white space character if nonzero */ @ Before emitting a non-end-of-line character, regardless of how encoded, we must check for pending white space and, if present, flush it to the output stream. Since we're guaranteed at this point that it isn't at the end of line, there's no need to encode it. @= if (pending_white_space != 0) { emit_literally(pending_white_space); pending_white_space = 0; } @ We must cope with all the end of line sequences which may be used by various systems. We apply the following rule: an end of line sequence begins with either a carriage return or line feed, optionally followed by a the other of the potential end of line characters. Any other character (including a duplicate of the character which introduced the sequence) is pushed back onto the input stream for subsequent processing. In this code |ch| is the first character of the end of line sequence. @= { int chn = getc(fi); if (chn != EOF) { if ((chn == ASCII_LINE_FEED) || (chn == ASCII_CARRIAGE_RETURN)) { if (chn == ch) { ungetc(chn, fi); } } else { ungetc(chn, fi); } } } @ If the file being encoded doesn't end with an end of line sequence, we must emit a soft line break followed by the canonical end of line sequence to guarantee the last encoded output line {\it is} properly terminated. @= if (current_line_length > 0) { putc(ASCII_EQUAL_SIGN, fo); output_line_break(); } @** Decoding. The following sections handle decoding of a Quoted-Printable input stream into a binary output stream. @ Procedure |decode| decodes a Quoted-Printable encoded stream from |fi| and emits the binary result on |fo|. @c static void decode(void) { int ch, ch1, ch2; while ((ch = read_decode_character()) != EOF) { switch (ch) { case ASCII_EQUAL_SIGN: /* `\.{=}': Encoded character or soft end of line */ @; if (ch != EOF) { putc(ch, fo); } break; case ASCII_CARRIAGE_RETURN: /* CR: End of line sequence */ case ASCII_LINE_FEED: /* LF: End of line sequence */ @; putc('\n', fo); /* Output end of line in system EOL idiom */ break; default: /* Character not requiring encoding */ putc(ch, fo); break; } } } @ When we encounter an equal sign in the input stream there are two possibilities: it may introduce two characters of ASCII representing an 8-bit octet in hexadecimal or, if followed by an end of line sequence, it's a ``soft end-of-line'' introduced to avoid emitting a long longer than the number of chracters prescribed by the |LINELEN| constraint. We look forward in the input stream and return EOF if this equal sign denotes a soft end-of-line or the character code given by the two subsequent hexadecimal digits. While the RFC prescribes that all letters representing hexadecimal digits be upper case, conforming to the recommendation for ``robust implementations'', we accept lower case letters in their stead. @= ch1 = read_decode_character(); @; if (is_end_of_line_sequence(ch1)) { ch = EOF; } else { int n1, n2; n1 = hex_to_nybble(ch1); ch2 = read_decode_character(); n2 = hex_to_nybble(ch2); if (n1 == EOF || n2 == EOF) { @; decode_errors++; } ch = (n1 << 4) | n2; } @ There are lots of ways of defining ``ASCII white space,'' but RFC~1521 explicitly states that only ASCII space and horizontal tab characters are deemed white space for the purposes of Quoted-Printable encoding. @= ((ch1 == ASCII_SPACE) || (ch1 == ASCII_HORIZONTAL_TAB)) @ Some systems pad text lines with white space (ASCII blank or horizontal tab characters). This may result in a line encoded with a ``soft line break'' at the end appearing, when decoded, with white space between the supposedly-trailing equal sign and the end of line sequence. If white space follows an equal sign escape, we ignore it up to the beginning of an end of line sequence. Non-white space appearing before we sense the end of line is an error; these erroneous characters are ignored. @= while (@) { ch1 = read_decode_character(); if (is_end_of_line_sequence(ch1)) { break; } if (!@) { @; decode_errors++; ch1 = ASCII_SPACE; /* Fake a space and soldier on */ } } @ On systems which support 64-bit file I/O, we want to be able to issue error messages with addresses that aren't truncated at 32 bits, but we may find ourselves confronted with a compiler which doesn't support |unsigned long long| 64-bit integers, or on a system such as the Alpha where |unsigned long| is itself 64 bits in length. The \.{configure} script determines the length of the |unsigned long long| and |unsigned long| types, setting the length of |unsigned long long| to 0 if the compiler does not support it. Based on the results of these tests, we define the type to be used for file addresses and which format to use when printing them. @+= #if (SIZEOF_UNSIGNED_LONG == 8) || (SIZEOF_UNSIGNED_LONG_LONG == 0) /* |unsigned long| on this machine is 64 bits or the compiler doesn't support |unsigned long long|. In either of these rather different cases we want to use |unsigned long| for file addresses. */ typedef unsigned long file_address_type; #define FILE_ADDRESS_FORMAT_LENGTH "l" #else /* Compiler supports |unsigned long long| and |unsigned long| is not 64 bits. Use |unsigned long long| for file addresses. */ typedef unsigned long long file_address_type; #define FILE_ADDRESS_FORMAT_LENGTH "ll" #endif @ Error messages during the decoding process are much more useful if they identify the position in the stream where the error was identified. We keep track of the position in the stream in |decode_input_stream_position|. We use the variable |decode_errors| to keep track of the number of errors in the decoding process. Even if the user has suppressed error messages, this permits us to return a status indicating that one or more decoding errors occurred. @+= static file_address_type decode_input_stream_position = 0; static long decode_errors = 0; @ We need to pre-declare the function |read_decode_character| for those who call it before we introduce it in the source code. @+= static int read_decode_character(void); @ Procedure |read_decode_character| reads the next character from the input stream and advances the position counter in the stream, |decode_input_stream_position|. @c static int read_decode_character(void) { int ch; ch = getc(fi); if (ch != EOF) { decode_input_stream_position++; } return ch; } @ We also must pre-declare |hex_to_nybble| for the same reasons. @+= static int hex_to_nybble(int ch); @ Procedure |hex_to_nybble| converts an ASCII hexadecimal digit character to its binary 4 bit value. An argument which cannot be converted returns |EOF|. @c static int hex_to_nybble(int ch) { if ((ch >= ASCII_0) && (ch <= (ASCII_0 + 9))) { return ch - '0'; } else if ((ch >= ASCII_A) && (ch <= (ASCII_A + 5))) { return 10 + (ch - ASCII_A); } else if ((ch >= ASCII_LOWER_CASE_A) && (ch <= (ASCII_LOWER_CASE_A + 5))) { return 10 + (ch - ASCII_LOWER_CASE_A); } return EOF; } @ If we encounter an equal sign that isn't either at the end of a line (denoting a ``soft line break'') or followed by two hexadecimal digits, we increment the number of decoding errors detected and, unless suppressed by the \.{-n} option, as indicated by the variable |errcheck|, issue an error message on standard output. We print the escape sequence as ASCII characters if possible, but if we're running on a non-ASCII system or one or more of the characters following the equal sign isn't printable, we show the hexadecimal values of the characters. @= if (errcheck) { if (@ && Character_is_printable_ISO_8859(ch1) && Character_is_printable_ISO_8859(ch2)) { @.Error: bad equal sign escape@> fprintf(stderr, "Error: bad equal sign escape \"=%c%c\" at byte %" @| FILE_ADDRESS_FORMAT_LENGTH @| "u (0x%" @| FILE_ADDRESS_FORMAT_LENGTH @| "X) of input.\n", ch1, ch2, decode_input_stream_position - 3, decode_input_stream_position - 3); } else { /* Characters after the equal sign are not printable. Display them in hexadecimal. */ fprintf(stderr, "Error: bad equal sign escape \"= 0x%02X 0x%02X\" at byte %" @| FILE_ADDRESS_FORMAT_LENGTH @| "u (0x%" @| FILE_ADDRESS_FORMAT_LENGTH @| "X) of input.\n", ch1, ch2, decode_input_stream_position - 3, decode_input_stream_position - 3); } } @ Another possible decoding error is the presence of a non white space character between the equal sign introducing a soft line break and the end of line sequence which follows it. In order to cope with systems which may pad text lines with white space, white space is permitted between the trailing equal sign and end of line, but once we've seen one white space character following an equal sign, every subsequent character up to the end of line must also be white space. In the following code |ch1| is the invalid character detected in the soft line break. @= if (errcheck) { if (@ && Character_is_printable_ISO_8859(ch1)) { @.Error: invalid $\ldots$ soft line break@> fprintf(stderr, "Error: invalid character \"%c\" in soft line break sequence at byte %" @| FILE_ADDRESS_FORMAT_LENGTH @| "u (0x%" @| FILE_ADDRESS_FORMAT_LENGTH @| "X) of input.\n", ch1, decode_input_stream_position - 1, decode_input_stream_position - 1); } else { /* Invalid character is not not printable. Display it in hexadecimal. */ fprintf(stderr, "Error: invalid character \"0x%02X\" in soft line break sequence at byte %" @| FILE_ADDRESS_FORMAT_LENGTH @| "u (0x%" @| FILE_ADDRESS_FORMAT_LENGTH @| "X) of input.\n", ch1, decode_input_stream_position - 1, decode_input_stream_position - 1); } } @** Utilities. @ The vast majority of users will run this program on ASCII-based systems, but we must also cope with EBCDIC systems. When issuing error messages, we'd like to be able to include ASCII characters from the input stream in certain cases, but we can't do this on EBCDIC systems without including a necessarily incomplete conversion table which would be absurdly excess baggage for a little program like this. We compromise by falling back to hexadecimal display when running on non-ASCII systems. But how do we discern this? The following expression tests a compiler-generated character for equality with its character code in ASCII. This will fail on EBCDIC systems, permitting us to generate the variant messages. @= ('a' == 0x61) @ Even on an ASCII-based system we mustn't include non-printing characters in error messages. Once we've established the system is ASCII using |@| we must further test that the character falls within the printable range for ISO 8859 Latin-1. @d Character_is_printable_ISO_8859(c) (((((c) >= 0x20) && ((c) <= 0x7E)) || ((c) >= 0xA1))) @** Command line parsing. @ The following global variables represent command-line options. @+= static int decoding = FALSE; /* Decoding (TRUE) or encoding (FALSE) */ static int encoding = FALSE; /* Encoding (TRUE) or decoding (FALSE) */ static int binary_input = FALSE; /* Treat input as a binary file ? */ static int errcheck = TRUE; /* Check decode input for errors ? */ static int EBCDIC_out = FALSE; /* Generate EBCDIC-compatible output */ static int paranoid = FALSE; /* Paranoid output: quote {\it everything} */ @ We use |getopt| to process command line options. This permits aggregation of options without arguments and both \.{-d}{\it arg} and \.{-d} {\it arg} syntax. We support GNU-style ``\.{--}'' extended options which aren't directly supported by |getopt| through the following subterfuge: if the main option letter is ``\.{--}'', we convert the following letter to upper case, which permits us to discriminate it in the option processing |case| statement, which in many cases will simply be a fall-through into the same code we use for the regular option beginning with a single minus sign. If we need to further disambiguate extended options, this must be done in the case processing the extended option. @= for (;;) { opt = getopt(argc, argv, "bdeinpu-:"); if (opt == -1) { break; } if (opt == '-') { /* If this is an extended ``\.{--}'' option, take the first letter (if it so be) after the second dash and translate it to upper case so we can distinguish it in the |case| statement which follows. */ if (islower(optarg[0])) { opt = toupper(optarg[0]); } } switch (opt) { @q Note the idiom used to properly align multiple cases @> @q falling through to the same code. Keep this in mind @> @q when the case comes up again. @> case 'b':@; /* \.{-b} \.{--binary} Binary input file */ case 'B':@/ binary_input = TRUE; break; case 'C': /* \.{--copyright} */ printf("This program is in the public domain.\n"); return 0; case 'd':@; /* \.{-d} \.{--decode} Decode */ case 'D':@/ decoding = TRUE; break; case 'e': /* \.{-e} Encode */ encoding = TRUE; break; case 'E': /* \.{--encode} or \.{--ebcdic} */ @; break; case 'H': /* \.{--help} */ usage(); return 0; case 'i': /* \.{-i} EBCDIC-compatible output */ EBCDIC_out = TRUE; break; case 'n':@; /* \.{-n} \.{--noerrcheck} Suppress error checking */ case 'N':@/ errcheck = FALSE; break; case 'p':@; /* \.{-p} \.{--paranoid} Paranoid: quote even printable characters */ case 'P':@/ paranoid = TRUE; break; case 'u':@; /* \.{-u} Print how-to-call information */ case '?':@/ usage(); return 0; case 'V': /* \.{--version} */ @; return 0; default: /* Invalid extended option */ @.Invalid option@> fprintf(stderr, "Invalid option: --%s\n", optarg); return 2; } } @ There are two extended options which begin with ``\.{--e}'': \.{--ebcdic} and \.{--encode}. We must distinguish them by looking at the second letter of the option. @= switch (optarg[1]) { case 'b': /* \.{--ebcdic} */ EBCDIC_out = TRUE; break; case 'n': /* \.{--encode} */ encoding = TRUE; break; default: @.Invalid option@> fprintf(stderr, "Invalid option: --%s\n", optarg); return 2; } @ After processing the command-line options, we need to check them for consistency, for example, that the user hasn't simultaneously asked us to encode and decode a file. @= if (encoding && decoding) { @.Cannot both encode and decode@> fprintf(stderr, "Cannot simultaneously encode and decode.\n"); return 2; } if (!(encoding || decoding)) { @.Please specify encode or decode@> fprintf(stderr, "Please specify --encode (-e) or --decode (-d).\n"); return 2; } @ This code is executed after |getopt| has completed parsing command line options. At this point the external variable |optind| in |getopt| contains the index of the first argument in the |argv[]| array. The first two arguments specify the input and output file. If either argument is omitted or ``\.{-}'', standard input or output is used. On systems which distinguish text and binary I/O (for end of line translation), we always open the input file in binary mode. The output file is opened in binary mode when encoding (since the standard requires RFC 822 CR/LF end of line convention regardless of that used by the host system), but text mode while decoding, since output should conform to the system's end of line convention. @= f = 0; for (; optind < argc; optind++) { cp = argv[optind]; switch (f) { /** Warning! On systems which distinguish text mode and binary I/O (MS-DOS, Macintosh, etc.) the modes in these open statements will have to be made conditional based upon whether an encode or decode is being done, which will have to be specified earlier. But it's worse: if input or output is from standard input or output, the mode will have to be changed on the fly, which is generally system and compiler dependent. 'Twasn't me who couldn't conform to Unix CR/LF convention, so don't ask me to write the code to work around Apple and Microsoft's incompatible standards. **/ case 0: if (strcmp(cp, "-") != 0) { if ((fi = fopen(cp, #ifdef FORCE_BINARY_IO "rb" #else "r" #endif )) == NULL) { @.Cannot open input file@> fprintf(stderr, "Cannot open input file %s\n", cp); return 2; } #ifdef FORCE_BINARY_IO in_std = FALSE; #endif } f++; break; case 1: if (strcmp(cp, "-") != 0) { if ((fo = fopen(cp, #ifdef FORCE_BINARY_IO (decoding && (!binary_input)) ? "w" : "wb" #else "w" #endif )) == NULL) { @.Cannot open output file@> fprintf(stderr, "Cannot open output file %s\n", cp); return 2; } #ifdef FORCE_BINARY_IO out_std = FALSE; #endif } f++; break; default: @.Too many file names@> fprintf(stderr, "Too many file names specified.\n"); usage(); return 2; } } @ Procedure |usage| prints how-to-call information. @c static void usage(void) { @.Usage...@> printf("%s -- Encode/decode file as Quoted-Printable. Call:\n", PRODUCT); printf(" %s [-e / -d] [options] [infile] [outfile]\n", PRODUCT); printf("\n"); printf("Options:\n"); printf(" -b, --binary Treat input as pure binary file\n"); printf(" --copyright Print copyright information\n"); printf(" -d, --decode Decode Quoted-Printable encoded file\n"); printf(" -e, --encode Encode file into Quoted-Printable\n"); printf(" -i, --ebcdic EBCDIC-compatible encoding output\n"); printf(" -n, --noerrcheck Ignore errors when decoding\n"); printf(" -p, --paranoid Paranoid: quote even printable characters\n"); printf(" -u, --help Print this message\n"); printf(" --version Print version number\n"); printf("\n"); printf("by John Walker\n"); printf("http://www.fourmilab.ch/\n"); } @ Show program version information in response to the \.{--version} option. @= printf("%s %s\n", PRODUCT, VERSION); printf("Last revised: %s\n", REVDATE); printf("The latest version is always available\n"); printf("at http://www.fourmilab.ch/webtools/qprint/\n"); @** Main program. The exit status returned by the main program is 0 for normal completion, 1 if an error occurred in decoding, and 2 for invalid options or file name arguments. @c int main(int argc, char *argv[]) { extern char *optarg; /* Imported from |getopt| */ extern int optind; int f, opt; #ifdef FORCE_BINARY_IO int in_std = TRUE, out_std = TRUE; #endif char *cp; /* Some C compilers don't allow initialisation of static variables such as |fi| and |fo| with their library's definitions of |stdin| and |stdout|, so we initialise them at runtime. */ fi = stdin; fo = stdout; @;@\ @;@\ @;@\ @;@\ if (decoding) { decode(); } else { encode(); } return decode_errors ? 1 : 0; } @ On Win32, if a binary stream is the default of |stdin| or |stdout|, we must place this stream, opened in text mode (translation of CR to CR/LF) by default, into binary mode (no EOL translation). If you port this code to other platforms which distinguish between text and binary file I/O (for example, the Macintosh), you'll need to add equivalent code here. The following code sets the already-open standard stream to binary mode on Microsoft Visual C 5.0 (Monkey C). If you're using a different version or compiler, you may need some other incantation to cancel the text translation spell. @= #ifdef FORCE_BINARY_IO if (in_std) { #ifdef _WIN32 _setmode(_fileno(fi), O_BINARY); #endif } if (((!decoding) || binary_input) && out_std){ #ifdef _WIN32 _setmode(_fileno(fo), O_BINARY); #endif } #endif @** Index. The following is a cross-reference table for \.{qprint}. Single-character identifiers are not indexed, nor are reserved words. Underlined entries indicate where an identifier was declared. qprint-1.0.dfsg.2/wretch.bin000066400000000000000000001100241111262404100157250ustar00rootroot00000000000000  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ                                                      !   !"   !"#   !"#$   !"#$%   !"#$%&   !"#$%&'   !"#$%&'(   !"#$%&'()   !"#$%&'()*   !"#$%&'()*+   !"#$%&'()*+,   !"#$%&'()*+,-   !"#$%&'()*+,-.   !"#$%&'()*+,-./   !"#$%&'()*+,-./0   !"#$%&'()*+,-./01   !"#$%&'()*+,-./012   !"#$%&'()*+,-./0123   !"#$%&'()*+,-./01234   !"#$%&'()*+,-./012345   !"#$%&'()*+,-./0123456   !"#$%&'()*+,-./01234567   !"#$%&'()*+,-./012345678   !"#$%&'()*+,-./0123456789   !"#$%&'()*+,-./0123456789:   !"#$%&'()*+,-./0123456789:;   !"#$%&'()*+,-./0123456789:;<   !"#$%&'()*+,-./0123456789:;<=   !"#$%&'()*+,-./0123456789:;<=>   !"#$%&'()*+,-./0123456789:;<=>?   !"#$%&'()*+,-./0123456789:;<=>?@   !"#$%&'()*+,-./0123456789:;<=>?@A   !"#$%&'()*+,-./0123456789:;<=>?@AB   !"#$%&'()*+,-./0123456789:;<=>?@ABC   !"#$%&'()*+,-./0123456789:;<=>?@ABCD   !"#$%&'()*+,-./0123456789:;<=>?@ABCDE   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEF   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFG   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGH   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHI   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJK   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKL   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLM   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMN   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNO   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOP   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQR   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRS   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRST   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTU   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUV   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVW   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWX   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXY   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ab   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abc   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcd   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcde   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdef   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefg   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefgh   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghi   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghij   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijk   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijkl   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklm   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmn   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmno   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnop   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopq   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqr   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrs   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrst   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstu   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuv   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvw   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwx   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxy   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹Œ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹Œ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œž   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ    !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿À   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂà   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊË   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖר   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞß   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßà   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàá   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâã   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãä   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäå   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæç   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçè   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèé   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéê   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêë   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëì   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìí   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíî   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîï   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïð   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñò   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòó   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóô   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷ø   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øù   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùú   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúû   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûü   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüý   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ Des récipients solidement assujettis étaient destinés à contenir l'eau et les vivres nécessaires aux trois voyageurs; ceux-ci pouvaient même se procurer le feu et la lumière au moyen de gaz emmagasiné dans un récipient spécial sous une pression de plusieurs atmosphères. Il suffisait de tourner un robinet, et pendant six jours ce gaz devait éclairer et chauffer ce confortable véhicule. On le voit, rien ne manquait des choses essentielles à la vie et même au bien-être. De plus, grâce aux instincts de Michel Ardan, l'agréable vint se joindre à l'utile sous la forme d'objets d'art; il eût fait de son projectile un véritable atelier d'artiste, si l'espace ne lui eût pas manqué. Du reste, on se tromperait en supposant que trois personnes dussent se trouver à l'étroit dans cette tour de métal. Elle avait une surface de cinquante-quatre pieds carrés à peu près sur dix pieds de hauteur, ce qui permettait à ses hôtes une certaine liberté de mouvement. Ils n'eussent pas été aussi à leur aise dans le plus confortable wagon des États-Unis. Des récipients solidement assujettis étaient destinés à contenir l'eau et les vivres nécessaires aux trois voyageurs; ceux-ci pouvaient même se procurer le feu et la lumière au moyen de gaz emmagasiné dans un récipient spécial sous une pression de plusieurs atmosphères. Il suffisait de tourner un robinet, et pendant six jours ce gaz devait éclairer et chauffer ce confortable véhicule. On le voit, rien ne manquait des choses essentielles à la vie et même au bien-être. De plus, grâce aux instincts de Michel Ardan, l'agréable vint se joindre à l'utile sous la forme d'objets d'art; il eût fait de son projectile un véritable atelier d'artiste, si l'espace ne lui eût pas manqué. Du reste, on se tromperait en supposant que trois personnes dussent se trouver à l'étroit dans cette tour de métal. Elle avait une surface de cinquante-quatre pieds carrés à peu près sur dix pieds de hauteur, ce qui permettait à ses hôtes une certaine liberté de mouvement. Ils n'eussent pas été aussi à leur aise dans le plus confortable wagon des États-Unis. Des récipients solidement assujettis étaient destinés à contenir l'eau et les vivres nécessaires aux trois voyageurs; ceux-ci pouvaient même se procurer le feu et la lumière au moyen de gaz emmagasiné dans un récipient spécial sous une pression de plusieurs atmosphères. Il suffisait de tourner un robinet, et pendant six jours ce gaz devait éclairer et chauffer ce confortable véhicule. On le voit, rien ne manquait des choses essentielles à la vie et même au bien-être. De plus, grâce aux instincts de Michel Ardan, l'agréable vint se joindre à l'utile sous la forme d'objets d'art; il eût fait de son projectile un véritable atelier d'artiste, si l'espace ne lui eût pas manqué. Du reste, on se tromperait en supposant que trois personnes dussent se trouver à l'étroit dans cette tour de métal. Elle avait une surface de cinquante-quatre pieds carrés à peu près sur dix pieds de hauteur, ce qui permettait à ses hôtes une certaine liberté de mouvement. Ils n'eussent pas été aussi à leur aise dans le plus confortable wagon des États-Unis. qprint-1.0.dfsg.2/wretch.c000066400000000000000000000074311111262404100154060ustar00rootroot00000000000000/*2:*/ #line 31 "wretch.w" #include "config.h" #define REVDATE "26th February 2001" \ #define TRUE 1 #define FALSE 0 #define LINELEN 72 \ #define ASCII_TAB 9 #define ASCII_LINE_FEED 10 #define ASCII_CARRIAGE_RETURN 13 #define ASCII_SPACE 32 #define ASCII_0 48 #define ASCII_EQUAL_SIGN 61 #define ASCII_A 65 #define ASCII_LOWER_CASE_A 97 \ \ #line 34 "wretch.w" /*4:*/ #line 60 "wretch.w" #include #include #include #ifdef HAVE_STRING_H #include #else #ifdef HAVE_STRINGS_H #include #endif #endif /*:4*/ #line 36 "wretch.w" /*5:*/ #line 75 "wretch.w" #ifdef _WIN32 #define FORCE_BINARY_IO #endif /*:5*/ #line 37 "wretch.w" /*6:*/ #line 84 "wretch.w" typedef unsigned char byte; static FILE*fo; /*:6*/ #line 38 "wretch.w" /*:2*//*10:*/ #line 124 "wretch.w" static char*verne_test_text[]= { "Des récipients solidement assujettis étaient destinés à contenir l'eau", "et les vivres nécessaires aux trois voyageurs; ceux-ci pouvaient même", "se procurer le feu et la lumière au moyen de gaz emmagasiné dans un", "récipient spécial sous une pression de plusieurs atmosphères. Il", "suffisait de tourner un robinet, et pendant six jours ce gaz devait", "éclairer et chauffer ce confortable véhicule. On le voit, rien ne", "manquait des choses essentielles à la vie et même au bien-être. De", "plus, grâce aux instincts de Michel Ardan, l'agréable vint se joindre", "à l'utile sous la forme d'objets d'art; il eût fait de son projectile", "un véritable atelier d'artiste, si l'espace ne lui eût pas manqué. Du", "reste, on se tromperait en supposant que trois personnes dussent se", "trouver à l'étroit dans cette tour de métal. Elle avait une surface", "de cinquante-quatre pieds carrés à peu près sur dix pieds de hauteur,", "ce qui permettait à ses hôtes une certaine liberté de mouvement. Ils", "n'eussent pas été aussi à leur aise dans le plus confortable wagon des", "États-Unis.", NULL }; /*:10*//*14:*/ #line 187 "wretch.w" static void emit_selected_end_of_line_sequence(int which) { switch(which){ case 0: /*13:*/ #line 177 "wretch.w" putc(ASCII_CARRIAGE_RETURN,fo); putc(ASCII_LINE_FEED,fo); /*:13*/ #line 192 "wretch.w" ; break; case 1: putc(ASCII_LINE_FEED,fo); putc(ASCII_CARRIAGE_RETURN,fo); break; case 2: putc(ASCII_CARRIAGE_RETURN,fo); break; case 3: putc(ASCII_LINE_FEED,fo); break; } } /*:14*//*17:*/ #line 236 "wretch.w" int main(int argc,char*argv[]) { int i,j; fo= fopen("wretch.bin", #ifdef FORCE_BINARY_IO "wb" #else "w" #endif ); /*8:*/ #line 98 "wretch.w" for(i= 0;i<256;i++){ putc(i,fo); } /*:8*/ #line 250 "wretch.w" ; /*9:*/ #line 111 "wretch.w" for(i= 0;i<256;i++){ for(j= 0;j<=i;j++){ putc(j,fo); } /*13:*/ #line 177 "wretch.w" putc(ASCII_CARRIAGE_RETURN,fo); putc(ASCII_LINE_FEED,fo); /*:13*/ #line 116 "wretch.w" ; } /*:9*/ #line 251 "wretch.w" ; /*11:*/ #line 151 "wretch.w" for(i= 0;verne_test_text[i]!=NULL;i++){ fputs(verne_test_text[i],fo); /*13:*/ #line 177 "wretch.w" putc(ASCII_CARRIAGE_RETURN,fo); putc(ASCII_LINE_FEED,fo); /*:13*/ #line 154 "wretch.w" ; } /*:11*/ #line 252 "wretch.w" ; /*12:*/ #line 162 "wretch.w" for(i= 0;verne_test_text[i]!=NULL;i++){ fputs(verne_test_text[i],fo); if(verne_test_text[i+1]==NULL){ /*13:*/ #line 177 "wretch.w" putc(ASCII_CARRIAGE_RETURN,fo); putc(ASCII_LINE_FEED,fo); /*:13*/ #line 166 "wretch.w" ; }else{ fputc((i&1)?ASCII_SPACE:ASCII_TAB,fo); } } /*:12*/ #line 253 "wretch.w" ; /*15:*/ #line 216 "wretch.w" for(i= 0;verne_test_text[i]!=NULL;i++){ fputs(verne_test_text[i],fo); emit_selected_end_of_line_sequence(i&3); } /*:15*/ #line 254 "wretch.w" ; /*16:*/ #line 226 "wretch.w" for(i= 0;i<=3;i++){ for(j= 0;j<=3;j++){ emit_selected_end_of_line_sequence(i); emit_selected_end_of_line_sequence(j); } } /*:16*/ #line 255 "wretch.w" ; return 0; } /*:17*/ qprint-1.0.dfsg.2/wretch.w000066400000000000000000000174501111262404100154340ustar00rootroot00000000000000% % W R E T C H % The Ink-Stained Wretch % % A Torture Test for QPRINT % % by John Walker % http://www.fourmilab.ch/ @** Introduction. \vskip 15pt \centerline{\ttitlefont WRETCH} \vskip 10pt \centerline{\titlefont Torture Test for \.{QPRINT}} \vskip 15pt \centerline{\pdfURL{by John Walker}{http://www.fourmilab.ch/}} \vskip 15pt \centerline{This program is in the public domain.} \vskip 30pt @d REVDATE "26th February 2001" @** Program global context. @d TRUE 1 @d FALSE 0 @d LINELEN 72 /* Encoded line length (max 76) */ @c #include "config.h" /* System-dependent configuration */ @h @@/ @@/ @@/ @ Because we may be built on an EBCDIC system, we can't assume that quoted characters generate the ASCII character codes we require for output. The following definitions provide the ASCII codes for characters we need in the program. @d ASCII_TAB 9 /* Tab */ @d ASCII_LINE_FEED 10 /* Line feed */ @d ASCII_CARRIAGE_RETURN 13 /* Carriage return */ @d ASCII_SPACE 32 /* Space */ @d ASCII_0 48 /* Digit 0 */ @d ASCII_EQUAL_SIGN 61 /* Equal sign */ @d ASCII_A 65 /* Letter A */ @d ASCII_LOWER_CASE_A 97 /* Letter a */ @ We include the following POSIX-standard C library files. Conditionals based on a probe of the system by the \.{configure} program allow us to cope with the peculiarities of specific systems. @= #include #include #include #ifdef HAVE_STRING_H #include #else #ifdef HAVE_STRINGS_H #include #endif #endif @ The following include files are needed in Win32 builds to force binary mode for the output file. @= #ifdef _WIN32 #define FORCE_BINARY_IO #endif @ These variables are global to all procedures; many are used as ``hidden arguments'' to functions in order to simplify calling sequences. @= typedef unsigned char byte; /* Byte type */ static FILE *fo; /* Output file */ @** Executable program. @ Our first test is one of the most fundamental: can we correctly represent all 256 binary codes? Note that this test assumes we're encoding the file in binary mode, as otherwise the potential end of line codes will be encoded according to the vagaries of the host system. @= for (i = 0; i < 256; i++) { putc(i, fo); } @ Next, we probe the interactions between binary codes and end of line sequences in various modes by emitting a sequence of lines with lengths ranging from 0 through 256 characters, each containing binary characters in the corresponding range. Encoding this in text mode is a very dubitable operation, but it should produce reproducible results on all platforms. @= for (i = 0; i < 256; i++) { for (j = 0; j <= i; j++) { putc(j, fo); } @; } @ The following excerpt from Jules Verne's {\it De la terre \`a la lune} serves as a test of our handling of routine Latin-1 characters with embedded white space and line breaks. @c static char *verne_test_text[] = { "Des récipients solidement assujettis étaient destinés à contenir l'eau", "et les vivres nécessaires aux trois voyageurs; ceux-ci pouvaient même", "se procurer le feu et la lumière au moyen de gaz emmagasiné dans un", "récipient spécial sous une pression de plusieurs atmosphères. Il", "suffisait de tourner un robinet, et pendant six jours ce gaz devait", "éclairer et chauffer ce confortable véhicule. On le voit, rien ne", "manquait des choses essentielles à la vie et même au bien-être. De", "plus, grâce aux instincts de Michel Ardan, l'agréable vint se joindre", "à l'utile sous la forme d'objets d'art; il eût fait de son projectile", "un véritable atelier d'artiste, si l'espace ne lui eût pas manqué. Du", "reste, on se tromperait en supposant que trois personnes dussent se", "trouver à l'étroit dans cette tour de métal. Elle avait une surface", "de cinquante-quatre pieds carrés à peu près sur dix pieds de hauteur,", "ce qui permettait à ses hôtes une certaine liberté de mouvement. Ils", "n'eussent pas été aussi à leur aise dans le plus confortable wagon des", "États-Unis.", NULL }; @ We commence our excursion into Latin-1 with a simple case: the Jules Verne text above output as individual lines with an end of line sequence between each. @= for (i = 0; verne_test_text[i] != NULL; i++) { fputs(verne_test_text[i], fo); @; } @ Next, let's abuse the program by reiterating our Latin-1 text as a single text line. This will force soft line breaks in all kinds of circumstances by the program. @= for (i = 0; verne_test_text[i] != NULL; i++) { fputs(verne_test_text[i], fo); if (verne_test_text[i + 1] == NULL) { @; } else { /* Alternate space and tab line separators to be nasty. */ fputc((i & 1) ? ASCII_SPACE : ASCII_TAB, fo); } } @ Write an ASCII carriage return / line feed sequence to the output file. @= putc(ASCII_CARRIAGE_RETURN, fo); putc(ASCII_LINE_FEED, fo); @ We also want to test input with all of the different end of line sequences we may encounter in input. The following procedure accepts an argument between 0 and 3 which determines which of the sequences is emitted. @c static void emit_selected_end_of_line_sequence(int which) { switch (which) { case 0: /* CR LF */ @; break; case 1: /* LF CR */ putc(ASCII_LINE_FEED, fo); putc(ASCII_CARRIAGE_RETURN, fo); break; case 2: /* CR */ putc(ASCII_CARRIAGE_RETURN, fo); break; case 3: /* LF */ putc(ASCII_LINE_FEED, fo); break; } } @ We begin verification of correct operation with variant end of line sequences by generating the Verne quotation with successive lines terminated by the variant sequences in rotation. @= for (i = 0; verne_test_text[i] != NULL; i++) { fputs(verne_test_text[i], fo); emit_selected_end_of_line_sequence(i & 3); } @ Moving right along, we next generate a sequence of blank lines in all combinations of end of line conventions. @= for (i = 0; i <= 3; i++) { for (j = 0; j <= 3; j++) { emit_selected_end_of_line_sequence(i); emit_selected_end_of_line_sequence(j); } } @ Main program. @c int main(int argc, char *argv[]) { int i, j; fo = fopen("wretch.bin", #ifdef FORCE_BINARY_IO "wb" #else "w" #endif ); @; @; @; @; @; @; return 0; } @** Index. The following is a cross-reference table for \.{wretch}. Single-character identifiers are not indexed, nor are reserved words. Underlined entries indicate where an identifier was declared.